diff --git a/Data_Cleaning_Sharks[Moises_Vargas].ipynb b/Data_Cleaning_Sharks[Moises_Vargas].ipynb new file mode 100644 index 00000000..1a129b4b --- /dev/null +++ b/Data_Cleaning_Sharks[Moises_Vargas].ipynb @@ -0,0 +1,7154 @@ +{ + "cells": [ + { + "cell_type": "code", + "execution_count": 1, + "id": "e0685e38", + "metadata": {}, + "outputs": [], + "source": [ + "import re\n", + "from datetime import datetime \n", + "\n", + "import numpy as np \n", + "import pandas as pd" + ] + }, + { + "cell_type": "code", + "execution_count": 2, + "id": "86e6f676", + "metadata": {}, + "outputs": [], + "source": [ + "sharks = pd.read_csv('./attacks.csv', encoding= 'unicode_escape')" + ] + }, + { + "cell_type": "markdown", + "id": "55c5bacd", + "metadata": {}, + "source": [ + "# 1. Data exploration" + ] + }, + { + "cell_type": "code", + "execution_count": 3, + "id": "f6222edb", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 25723 entries, 0 to 25722\n", + "Data columns (total 24 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Case Number 8702 non-null object \n", + " 1 Date 6302 non-null object \n", + " 2 Year 6300 non-null float64\n", + " 3 Type 6298 non-null object \n", + " 4 Country 6252 non-null object \n", + " 5 Area 5847 non-null object \n", + " 6 Location 5762 non-null object \n", + " 7 Activity 5758 non-null object \n", + " 8 Name 6092 non-null object \n", + " 9 Sex 5737 non-null object \n", + " 10 Age 3471 non-null object \n", + " 11 Injury 6274 non-null object \n", + " 12 Fatal (Y/N) 5763 non-null object \n", + " 13 Time 2948 non-null object \n", + " 14 Species 3464 non-null object \n", + " 15 Investigator or Source 6285 non-null object \n", + " 16 pdf 6302 non-null object \n", + " 17 href formula 6301 non-null object \n", + " 18 href 6302 non-null object \n", + " 19 Case Number.1 6302 non-null object \n", + " 20 Case Number.2 6302 non-null object \n", + " 21 original order 6309 non-null float64\n", + " 22 Unnamed: 22 1 non-null object \n", + " 23 Unnamed: 23 2 non-null object \n", + "dtypes: float64(2), object(22)\n", + "memory usage: 4.7+ MB\n" + ] + } + ], + "source": [ + "#Primero identificamos que tipo de información tenemos en la data\n", + "#Se puede observar que se tienen diferentes valores nulos\n", + "sharks.info()" + ] + }, + { + "cell_type": "code", + "execution_count": 4, + "id": "48a3d197", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex ', 'Age', 'Injury', 'Fatal (Y/N)', 'Time',\n", + " 'Species ', 'Investigator or Source', 'pdf', 'href formula', 'href',\n", + " 'Case Number.1', 'Case Number.2', 'original order', 'Unnamed: 22',\n", + " 'Unnamed: 23'],\n", + " dtype='object')" + ] + }, + "execution_count": 4, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Vemos el nombre de las columnas \n", + "sharks.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 5, + "id": "d496663c", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Case Number 66.170353\n", + "Date 75.500525\n", + "Year 75.508300\n", + "Type 75.516075\n", + "Country 75.694903\n", + "Area 77.269370\n", + "Location 77.599813\n", + "Activity 77.615364\n", + "Name 76.316915\n", + "Sex 77.697003\n", + "Age 86.506240\n", + "Injury 75.609377\n", + "Fatal (Y/N) 77.595926\n", + "Time 88.539439\n", + "Species 86.533453\n", + "Investigator or Source 75.566614\n", + "pdf 75.500525\n", + "href formula 75.504412\n", + "href 75.500525\n", + "Case Number.1 75.500525\n", + "Case Number.2 75.500525\n", + "original order 75.473312\n", + "Unnamed: 22 99.996112\n", + "Unnamed: 23 99.992225\n", + "dtype: float64" + ] + }, + "execution_count": 5, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks.isnull().mean() * 100 #Identificamos el porcentaje de valores nulos, cada columna tiene un buen porcentaje\n", + " #el plan es mantener la mayor cantidad de observaciones posibles. " + ] + }, + { + "cell_type": "code", + "execution_count": 6, + "id": "29918494", + "metadata": {}, + "outputs": [], + "source": [ + "#Creamos una copia del df original\n", + "sharks_clean=sharks.copy()" + ] + }, + { + "cell_type": "markdown", + "id": "09cc6b0a", + "metadata": {}, + "source": [ + "# 2. Delete duplicated columns and filling ```NaN``` values plan:" + ] + }, + { + "cell_type": "markdown", + "id": "a90fe69b", + "metadata": {}, + "source": [ + "*The unnamed columns 22 and 23 should be dropped, because are almost entirely null." + ] + }, + { + "cell_type": "code", + "execution_count": 7, + "id": "658d1d92", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex ', 'Age', 'Injury', 'Fatal (Y/N)', 'Time',\n", + " 'Species ', 'Investigator or Source', 'pdf', 'href formula', 'href',\n", + " 'Case Number.1', 'Case Number.2', 'original order', 'Unnamed: 22',\n", + " 'Unnamed: 23'],\n", + " dtype='object')" + ] + }, + "execution_count": 7, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 8, + "id": "a0903cb1", + "metadata": {}, + "outputs": [], + "source": [ + "sharks_clean.drop(columns=['Unnamed: 22',\n", + " 'Unnamed: 23'], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 9, + "id": "9aefc4e3", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex ', 'Age', 'Injury', 'Fatal (Y/N)', 'Time',\n", + " 'Species ', 'Investigator or Source', 'pdf', 'href formula', 'href',\n", + " 'Case Number.1', 'Case Number.2', 'original order'],\n", + " dtype='object')" + ] + }, + "execution_count": 9, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean.columns #Se puede observar que el nombre de las columnas tiene espacios entre palabras o al final. " + ] + }, + { + "cell_type": "code", + "execution_count": 10, + "id": "05bf323a", + "metadata": {}, + "outputs": [], + "source": [ + "#Procedemos a eliminar los espacios en el nombre de columnas \n", + "sharks_clean.columns = sharks_clean.columns.str.strip()" + ] + }, + { + "cell_type": "code", + "execution_count": 11, + "id": "d8e11b39", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Case Number', 'Date', 'Year', 'Type', 'Country', 'Area', 'Location',\n", + " 'Activity', 'Name', 'Sex', 'Age', 'Injury', 'Fatal (Y/N)', 'Time',\n", + " 'Species', 'Investigator or Source', 'pdf', 'href formula', 'href',\n", + " 'Case Number.1', 'Case Number.2', 'original order'],\n", + " dtype='object')" + ] + }, + "execution_count": 11, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "column_names=sharks_clean.columns\n", + "column_names" + ] + }, + { + "cell_type": "markdown", + "id": "2582f63a", + "metadata": {}, + "source": [ + "*Due to the relevance of the ```\"Species\"``` column in the data set, we cannot drop this column, even when the percentage of ```NaN```'s there is near to 50%" + ] + }, + { + "cell_type": "code", + "execution_count": 12, + "id": "1129f38f", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "count 3464\n", + "unique 1549\n", + "top White shark\n", + "freq 163\n", + "Name: Species, dtype: object" + ] + }, + "execution_count": 12, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean['Species'].describe()" + ] + }, + { + "cell_type": "markdown", + "id": "3a9846dc", + "metadata": {}, + "source": [ + "* The column ```\"Time\"``` and ```\"Year\"``` seems to be irrelevant. However we will explore it further." + ] + }, + { + "cell_type": "code", + "execution_count": 13, + "id": "2e3abd84", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
TimeYear
018h002018.0
114h00 -15h002018.0
207h452018.0
3NaN2018.0
4NaN2018.0
\n", + "
" + ], + "text/plain": [ + " Time Year\n", + "0 18h00 2018.0\n", + "1 14h00 -15h00 2018.0\n", + "2 07h45 2018.0\n", + "3 NaN 2018.0\n", + "4 NaN 2018.0" + ] + }, + "execution_count": 13, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean[['Time', 'Year']].head()" + ] + }, + { + "cell_type": "code", + "execution_count": 14, + "id": "d997ebcd", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "RangeIndex: 25723 entries, 0 to 25722\n", + "Data columns (total 2 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Time 2948 non-null object \n", + " 1 Year 6300 non-null float64\n", + "dtypes: float64(1), object(1)\n", + "memory usage: 402.0+ KB\n" + ] + } + ], + "source": [ + "sharks_clean[['Time', 'Year']].info()" + ] + }, + { + "cell_type": "markdown", + "id": "738e433a", + "metadata": {}, + "source": [ + "* The columns ```\"Country\"```, ```\"Area\"``` and ```\"Location\"``` are related, so it might be possible to infer the missing values one from the others." + ] + }, + { + "cell_type": "code", + "execution_count": 15, + "id": "012ed301", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
3387NaNCaribbean SeaBetween St. Kitts & Nevis
3605NaNNaNFlorida Strait
4266NaNBetween Comores & MadagascarGeyser Bank
4498NaNCaribbean SeaBetween Cuba & Costa Rica
4639NaNNaN225 miles east of Hong Kong
5020NaNFrench Southern TerritoriesÎle Saint-Paul
5425NaNNaNNear the equator
5810NaNNaNSanta Cruz
6137NaNSt HelenaLanding Place
6155NaNNaNCarlisle Bay
6206NaNNaNIn a river feeding into the Bay of Bengal
\n", + "
" + ], + "text/plain": [ + " Country Area \\\n", + "3387 NaN Caribbean Sea \n", + "3605 NaN NaN \n", + "4266 NaN Between Comores & Madagascar \n", + "4498 NaN Caribbean Sea \n", + "4639 NaN NaN \n", + "5020 NaN French Southern Territories \n", + "5425 NaN NaN \n", + "5810 NaN NaN \n", + "6137 NaN St Helena \n", + "6155 NaN NaN \n", + "6206 NaN NaN \n", + "\n", + " Location \n", + "3387 Between St. Kitts & Nevis \n", + "3605 Florida Strait \n", + "4266 Geyser Bank \n", + "4498 Between Cuba & Costa Rica \n", + "4639 225 miles east of Hong Kong \n", + "5020 Île Saint-Paul \n", + "5425 Near the equator \n", + "5810 Santa Cruz \n", + "6137 Landing Place \n", + "6155 Carlisle Bay \n", + "6206 In a river feeding into the Bay of Bengal " + ] + }, + "execution_count": 15, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean.loc[(sharks_clean[\"Country\"].isnull()) & (sharks_clean[\"Location\"].notnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 16, + "id": "b0bfe73b", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
3387NaNCaribbean SeaBetween St. Kitts & Nevis
3603PANAMACaribbean SeaGolfo de los Mosquitos
4439COLUMBIACaribbean SeaCartegena
4498NaNCaribbean SeaBetween Cuba & Costa Rica
5210CUBACaribbean Sea20 miles from Havana
\n", + "
" + ], + "text/plain": [ + " Country Area Location\n", + "3387 NaN Caribbean Sea Between St. Kitts & Nevis\n", + "3603 PANAMA Caribbean Sea Golfo de los Mosquitos\n", + "4439 COLUMBIA Caribbean Sea Cartegena\n", + "4498 NaN Caribbean Sea Between Cuba & Costa Rica\n", + "5210 CUBA Caribbean Sea 20 miles from Havana" + ] + }, + "execution_count": 16, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean.loc[(sharks_clean[\"Area\"]=='Caribbean Sea') & (sharks_clean[\"Location\"].notnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "markdown", + "id": "4089c834", + "metadata": {}, + "source": [ + "# 4. Filling values in ```\"Injury\"``` and ```\"Fatal(Y/N)\"``` heuristically" + ] + }, + { + "cell_type": "code", + "execution_count": 17, + "id": "104b013d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 no injury to occupant, outrigger canoe and pad...\n", + "1 minor injury to left thigh\n", + "2 injury to left lower leg from surfboard skeg\n", + "3 minor injury to lower leg\n", + "4 lacerations to leg & hand shark provoked incident\n", + " ... \n", + "25718 NaN\n", + "25719 NaN\n", + "25720 NaN\n", + "25721 NaN\n", + "25722 NaN\n", + "Name: Injury, Length: 25723, dtype: object" + ] + }, + "execution_count": 17, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean[\"Injury\"].str.lower()" + ] + }, + { + "cell_type": "code", + "execution_count": 18, + "id": "ee4023ed", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InjuryFatal (Y/N)
76FATALNaN
84FATAL, but death was probably due to drowningNaN
159Fatal, coroner unable to determine if the dive...NaN
437FATAL, but shark involvement prior to death un...NaN
874FATALNaN
1495FATAL, but shark involvement prior to death un...NaN
1563FATAL, shark involvement prior to death is unc...NaN
1879PRESUMED FATAL, body not recoveredNaN
1947Fatal or drowned & remains scavenged by sharkNaN
2025Non-fatalNaN
2230FATALNaN
2660FATALNaN
2674FATALNaN
2791FATALNaN
2890FATAL, but shark involvement prior to death co...NaN
2897Forced at gunpoint to jump overboard. Presume...NaN
2953FATALNaN
3095FATAL, but shark involvement prior to death wa...NaN
3112FATAL or scavenging by 3 m tiger shark (may ha...NaN
3532Fatal or scavenging by \"a pack of sharks\"NaN
3811FATALNaN
3947FATAL, probable drowning & post mortem scavengingNaN
4211FATAL, but shark involvement not confirmedNaN
4213FATAL, but was it an accident or infanticide?NaN
4501Fatal or drowning or scavengingNaN
4780FATALNaN
4900Although listed as an uprovoked fatal attack b...NaN
4901Although listed as an uprovoked fatal attack ...NaN
4934Reported to be FATAL and involve a 6m white s...NaN
5116FATAL, presumed taken by shark/sNaN
5196FATALNaN
5218FATAL, but shark involvement prior to death un...NaN
5329Fatal, drowning or scavengingNaN
5396FATAL?NaN
5425FATALNaN
5439FATAL, but shark involvement prior to death wa...NaN
5499FATALNaN
5577FATALNaN
5578FATALNaN
5590Reported fatal, but this is a questionable inc...NaN
5671Fatal, probable drowningNaN
5692Fatal, but death may have been due to drowningNaN
5695Fatal, but death may have been due to drowningNaN
5806FATALNaN
5825FATALNaN
5891FATALNaN
5906FATALNaN
5918Shark bit canoe in half & bit man. Note: There...NaN
5920FATALNaN
5951Presumed FATALNaN
6104FATALNaN
6164FATALNaN
\n", + "
" + ], + "text/plain": [ + " Injury Fatal (Y/N)\n", + "76 FATAL NaN\n", + "84 FATAL, but death was probably due to drowning NaN\n", + "159 Fatal, coroner unable to determine if the dive... NaN\n", + "437 FATAL, but shark involvement prior to death un... NaN\n", + "874 FATAL NaN\n", + "1495 FATAL, but shark involvement prior to death un... NaN\n", + "1563 FATAL, shark involvement prior to death is unc... NaN\n", + "1879 PRESUMED FATAL, body not recovered NaN\n", + "1947 Fatal or drowned & remains scavenged by shark NaN\n", + "2025 Non-fatal NaN\n", + "2230 FATAL NaN\n", + "2660 FATAL NaN\n", + "2674 FATAL NaN\n", + "2791 FATAL NaN\n", + "2890 FATAL, but shark involvement prior to death co... NaN\n", + "2897 Forced at gunpoint to jump overboard. Presume... NaN\n", + "2953 FATAL NaN\n", + "3095 FATAL, but shark involvement prior to death wa... NaN\n", + "3112 FATAL or scavenging by 3 m tiger shark (may ha... NaN\n", + "3532 Fatal or scavenging by \"a pack of sharks\" NaN\n", + "3811 FATAL NaN\n", + "3947 FATAL, probable drowning & post mortem scavenging NaN\n", + "4211 FATAL, but shark involvement not confirmed NaN\n", + "4213 FATAL, but was it an accident or infanticide? NaN\n", + "4501 Fatal or drowning or scavenging NaN\n", + "4780 FATAL NaN\n", + "4900 Although listed as an uprovoked fatal attack b... NaN\n", + "4901 Although listed as an uprovoked fatal attack ... NaN\n", + "4934 Reported to be FATAL and involve a 6m white s... NaN\n", + "5116 FATAL, presumed taken by shark/s NaN\n", + "5196 FATAL NaN\n", + "5218 FATAL, but shark involvement prior to death un... NaN\n", + "5329 Fatal, drowning or scavenging NaN\n", + "5396 FATAL? NaN\n", + "5425 FATAL NaN\n", + "5439 FATAL, but shark involvement prior to death wa... NaN\n", + "5499 FATAL NaN\n", + "5577 FATAL NaN\n", + "5578 FATAL NaN\n", + "5590 Reported fatal, but this is a questionable inc... NaN\n", + "5671 Fatal, probable drowning NaN\n", + "5692 Fatal, but death may have been due to drowning NaN\n", + "5695 Fatal, but death may have been due to drowning NaN\n", + "5806 FATAL NaN\n", + "5825 FATAL NaN\n", + "5891 FATAL NaN\n", + "5906 FATAL NaN\n", + "5918 Shark bit canoe in half & bit man. Note: There... NaN\n", + "5920 FATAL NaN\n", + "5951 Presumed FATAL NaN\n", + "6104 FATAL NaN\n", + "6164 FATAL NaN" + ] + }, + "execution_count": 18, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Con este filtro vemos que se tuvieron lesiones fatales, por lo que podemos pasar una Y a la columna Fatal (Y/N).\n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].str.lower().str.contains(\"fatal\", na=False)) & (sharks_clean[\"Fatal (Y/N)\"].isnull()),[\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 19, + "id": "fab84887", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InjuryFatal (Y/N)
6FATALY
58FATALY
59FATALY
64FATALY
76FATALY
.........
6297FATALY
6298FATALY
6299FATALY
6300FATALY
6301FATAL. \"Shark bit him in half, carrying away t...Y
\n", + "

1362 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Injury Fatal (Y/N)\n", + "6 FATAL Y\n", + "58 FATAL Y\n", + "59 FATAL Y\n", + "64 FATAL Y\n", + "76 FATAL Y\n", + "... ... ...\n", + "6297 FATAL Y\n", + "6298 FATAL Y\n", + "6299 FATAL Y\n", + "6300 FATAL Y\n", + "6301 FATAL. \"Shark bit him in half, carrying away t... Y\n", + "\n", + "[1362 rows x 2 columns]" + ] + }, + "execution_count": 19, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# #reemplazamos los valores de NaN con Y en la columna Fatal (Y/N) si la columna injury contiene Fatal y comprobamos \n", + "sharks_clean[\"Fatal (Y/N)\"] = np.where((sharks_clean[\"Injury\"].str.lower().str.contains(\"fatal\", na=False)), 'Y', sharks_clean[\"Fatal (Y/N)\"])\n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].str.lower().str.contains(\"fatal\", na=False)) & (sharks_clean[\"Fatal (Y/N)\"].notnull()),[\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 20, + "id": "0899b8cb", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InjuryFatal (Y/N)
6140NaNY
\n", + "
" + ], + "text/plain": [ + " Injury Fatal (Y/N)\n", + "6140 NaN Y" + ] + }, + "execution_count": 20, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# #Revisamos si se tiene en la columna Fatal (Y/N) el valor Y \n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].isnull()) & (sharks_clean[\"Fatal (Y/N)\"]=='Y'),[\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 21, + "id": "36e6c87a", + "metadata": {}, + "outputs": [], + "source": [ + "# Con base en identificar que el ataque fue Fatal, reemplazamos el NaN de la columna Injury con FATAL\n", + "sharks_clean[\"Injury\"] = np.where(sharks_clean[\"Fatal (Y/N)\"]=='Y', 'fatal', sharks_clean[\"Injury\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 22, + "id": "8a3c8323", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InjuryFatal (Y/N)
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Injury, Fatal (Y/N)]\n", + "Index: []" + ] + }, + "execution_count": 22, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "# #Revisamos si se tiene en la columna Fatal (Y/N) el valor Y \n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].isnull()) & (sharks_clean[\"Fatal (Y/N)\"]=='Y'),[\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 23, + "id": "f06965fa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InjuryFatal (Y/N)
27Multiple severe injuries to arms and leg, leg ...NaN
79Lacerations to right ankle, foot & toeNaN
98Lacerations to left footNaN
107Abrasions and cuts to sole of footNaN
115Foot injuredNaN
.........
6126human remains (male) found in shark’s gutNaN
6147Lacerations to arm & legNaN
6157Partial hominid remains recovered from shark, ...NaN
6158Struck on thighNaN
6232A 4.3 m [14'] shark made threat display. No in...NaN
\n", + "

480 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Injury Fatal (Y/N)\n", + "27 Multiple severe injuries to arms and leg, leg ... NaN\n", + "79 Lacerations to right ankle, foot & toe NaN\n", + "98 Lacerations to left foot NaN\n", + "107 Abrasions and cuts to sole of foot NaN\n", + "115 Foot injured NaN\n", + "... ... ...\n", + "6126 human remains (male) found in shark’s gut NaN\n", + "6147 Lacerations to arm & leg NaN\n", + "6157 Partial hominid remains recovered from shark, ... NaN\n", + "6158 Struck on thigh NaN\n", + "6232 A 4.3 m [14'] shark made threat display. No in... NaN\n", + "\n", + "[480 rows x 2 columns]" + ] + }, + "execution_count": 23, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Revisamos si las lesiones no fueron fatales y si hay NaN en la columna de Fatal\n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].notnull()) & (sharks_clean[\"Fatal (Y/N)\"].isnull()),[\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 24, + "id": "eb1e3e81", + "metadata": {}, + "outputs": [], + "source": [ + "#Sustituimos los valores nulos en Fatal, a partir de no identificira la palabra Fatal en injury. \n", + "sharks_clean['Fatal (Y/N)'] = np.where((sharks_clean[\"Injury\"].notnull()) & (sharks_clean[\"Fatal (Y/N)\"].isnull()), 'N', sharks_clean[\"Fatal (Y/N)\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 25, + "id": "687b96b4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
InjuryFatal (Y/N)
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Injury, Fatal (Y/N)]\n", + "Index: []" + ] + }, + "execution_count": 25, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Revisamos la sustitución de los valores Nan de Fatal \n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].notnull()) & (sharks_clean[\"Fatal (Y/N)\"].isnull()),[\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 26, + "id": "b5a339b2", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberInjuryFatal (Y/N)
12702008.04.20.aNaNUNKNOWN
22501997.06.07NaNUNKNOWN
22671996.12.29NaNUNKNOWN
26481990.00.00NaNUNKNOWN
30381981.03.00NaNUNKNOWN
32981973.08.27NaNUNKNOWN
34341969.05.22NaNUNKNOWN
37121964.01.01.bNaNUNKNOWN
38381962.02.02NaNUNKNOWN
38411962.01.26NaNUNKNOWN
40601959.09.26.aNaNUNKNOWN
45171949.03.00NaNUNKNOWN
49761932.11.09NaNUNKNOWN
61531755.00.00NaNUNKNOWN
61651638.00.00.RNaNUNKNOWN
61661637.00.00.RNaNUNKNOWN
61671617.00.00.RNaNUNKNOWN
61711555.00.00NaNUNKNOWN
61721554.00.00NaNUNKNOWN
6277ND.0025NaNUNKNOWN
\n", + "
" + ], + "text/plain": [ + " Case Number Injury Fatal (Y/N)\n", + "1270 2008.04.20.a NaN UNKNOWN\n", + "2250 1997.06.07 NaN UNKNOWN\n", + "2267 1996.12.29 NaN UNKNOWN\n", + "2648 1990.00.00 NaN UNKNOWN\n", + "3038 1981.03.00 NaN UNKNOWN\n", + "3298 1973.08.27 NaN UNKNOWN\n", + "3434 1969.05.22 NaN UNKNOWN\n", + "3712 1964.01.01.b NaN UNKNOWN\n", + "3838 1962.02.02 NaN UNKNOWN\n", + "3841 1962.01.26 NaN UNKNOWN\n", + "4060 1959.09.26.a NaN UNKNOWN\n", + "4517 1949.03.00 NaN UNKNOWN\n", + "4976 1932.11.09 NaN UNKNOWN\n", + "6153 1755.00.00 NaN UNKNOWN\n", + "6165 1638.00.00.R NaN UNKNOWN\n", + "6166 1637.00.00.R NaN UNKNOWN\n", + "6167 1617.00.00.R NaN UNKNOWN\n", + "6171 1555.00.00 NaN UNKNOWN\n", + "6172 1554.00.00 NaN UNKNOWN\n", + "6277 ND.0025 NaN UNKNOWN" + ] + }, + "execution_count": 26, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Ya no hay valores nulos en la columna de Fatal cuando se tiene información en la columna de Injury\n", + "#Sin embargo, aparecen en Fatal valares de UNKNOWN y en la de Injury, no aparece nada, por lo que se determina\n", + "#ponerlo igual en Injury\n", + "sharks_clean.loc[(sharks_clean[\"Injury\"].isnull()) & (sharks_clean[\"Fatal (Y/N)\"].notnull()),['Case Number',\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 27, + "id": "7d0720b7", + "metadata": {}, + "outputs": [], + "source": [ + "sharks_clean[\"Injury\"] = np.where((sharks_clean[\"Injury\"].isnull()) & (sharks_clean[\"Fatal (Y/N)\"].notnull()), 'UNKNOWN', sharks_clean[\"Injury\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 28, + "id": "dc1ac005", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberInjuryFatal (Y/N)
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Case Number, Injury, Fatal (Y/N)]\n", + "Index: []" + ] + }, + "execution_count": 28, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks_clean.loc[(sharks_clean[\"Injury\"].isnull()) & (sharks_clean[\"Fatal (Y/N)\"]=='UNKNOWN'),['Case Number',\"Injury\", \"Fatal (Y/N)\"]]" + ] + }, + { + "cell_type": "code", + "execution_count": 29, + "id": "307beea0", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 8702 entries, 0 to 25722\n", + "Data columns (total 22 columns):\n", + " # Column Non-Null Count Dtype \n", + "--- ------ -------------- ----- \n", + " 0 Case Number 8702 non-null object \n", + " 1 Date 6301 non-null object \n", + " 2 Year 6299 non-null float64\n", + " 3 Type 6297 non-null object \n", + " 4 Country 6251 non-null object \n", + " 5 Area 5846 non-null object \n", + " 6 Location 5761 non-null object \n", + " 7 Activity 5757 non-null object \n", + " 8 Name 6091 non-null object \n", + " 9 Sex 5736 non-null object \n", + " 10 Age 3471 non-null object \n", + " 11 Injury 6294 non-null object \n", + " 12 Fatal (Y/N) 6294 non-null object \n", + " 13 Time 2948 non-null object \n", + " 14 Species 3464 non-null object \n", + " 15 Investigator or Source 6284 non-null object \n", + " 16 pdf 6301 non-null object \n", + " 17 href formula 6300 non-null object \n", + " 18 href 6301 non-null object \n", + " 19 Case Number.1 6301 non-null object \n", + " 20 Case Number.2 6301 non-null object \n", + " 21 original order 6308 non-null float64\n", + "dtypes: float64(2), object(20)\n", + "memory usage: 1.5+ MB\n" + ] + }, + { + "data": { + "text/plain": [ + "Case Number 0.000000\n", + "Date 27.591358\n", + "Year 27.614342\n", + "Type 27.637325\n", + "Country 28.165939\n", + "Area 32.820041\n", + "Location 33.796828\n", + "Activity 33.842795\n", + "Name 30.004597\n", + "Sex 34.084119\n", + "Age 60.112618\n", + "Injury 27.671800\n", + "Fatal (Y/N) 27.671800\n", + "Time 66.122730\n", + "Species 60.193059\n", + "Investigator or Source 27.786716\n", + "pdf 27.591358\n", + "href formula 27.602850\n", + "href 27.591358\n", + "Case Number.1 27.591358\n", + "Case Number.2 27.591358\n", + "original order 27.510917\n", + "dtype: float64" + ] + }, + "execution_count": 29, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Se identifican diversa filas con valores Nullos, por lo que se procede a elimnar estas\n", + "#A partir de la column con menor número de valores nulos, asignaremos a una nueva variable sharks2\n", + "sharks2=sharks_clean.dropna(axis=0,subset=['Case Number'])\n", + "sharks2\n", + "sharks2.info()\n", + "sharks2.isnull().mean() * 100" + ] + }, + { + "cell_type": "markdown", + "id": "121f92f5", + "metadata": {}, + "source": [ + "# 5. Filling values in ```\"Country\"```, ```\"Area\"``` and ```\"Location\"``` heuristically" + ] + }, + { + "cell_type": "code", + "execution_count": 30, + "id": "1a5ebb31", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
110BAHAMAS40 miles off Grand Bahama IslandNaN
151USAFloridaNaN
171BAHAMASGreat ExumaNaN
174REUNIONSaint-AndreNaN
180BAHAMASBiminiNaN
............
6244BAHAMASAndros IslandsNaN
6255MARSHALL ISLANDSBikini AtollNaN
6274ITALYAdriatic SeaNaN
6287FIJIMoala IslandNaN
6298AUSTRALIAWestern AustraliaNaN
\n", + "

290 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Country Area Location\n", + "110 BAHAMAS 40 miles off Grand Bahama Island NaN\n", + "151 USA Florida NaN\n", + "171 BAHAMAS Great Exuma NaN\n", + "174 REUNION Saint-Andre NaN\n", + "180 BAHAMAS Bimini NaN\n", + "... ... ... ...\n", + "6244 BAHAMAS Andros Islands NaN\n", + "6255 MARSHALL ISLANDS Bikini Atoll NaN\n", + "6274 ITALY Adriatic Sea NaN\n", + "6287 FIJI Moala Island NaN\n", + "6298 AUSTRALIA Western Australia NaN\n", + "\n", + "[290 rows x 3 columns]" + ] + }, + "execution_count": 30, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Para llenar los valores nulos de Area y Location primero identificamos si tenemos al menos dos valores\n", + "sharks2.loc[(sharks_clean[\"Country\"].notnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].isnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 31, + "id": "c72dd427", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
110BAHAMAS40 miles off Grand Bahama IslandNaN
151USAFloridaNaN
171BAHAMASGreat ExumaNaN
174REUNIONSaint-AndreNaN
180BAHAMASBiminiNaN
............
6244BAHAMASAndros IslandsNaN
6255MARSHALL ISLANDSBikini AtollNaN
6274ITALYAdriatic SeaNaN
6287FIJIMoala IslandNaN
6298AUSTRALIAWestern AustraliaNaN
\n", + "

290 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Country Area Location\n", + "110 BAHAMAS 40 miles off Grand Bahama Island NaN\n", + "151 USA Florida NaN\n", + "171 BAHAMAS Great Exuma NaN\n", + "174 REUNION Saint-Andre NaN\n", + "180 BAHAMAS Bimini NaN\n", + "... ... ... ...\n", + "6244 BAHAMAS Andros Islands NaN\n", + "6255 MARSHALL ISLANDS Bikini Atoll NaN\n", + "6274 ITALY Adriatic Sea NaN\n", + "6287 FIJI Moala Island NaN\n", + "6298 AUSTRALIA Western Australia NaN\n", + "\n", + "[290 rows x 3 columns]" + ] + }, + "execution_count": 31, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].isnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 32, + "id": "1ae4be3f", + "metadata": {}, + "outputs": [], + "source": [ + "#sharks2[\"Location\"] = np.where((sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].isnull()), 'UNKNOWN', sharks2[\"Location\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 33, + "id": "9027bb77", + "metadata": {}, + "outputs": [], + "source": [ + "#sharks2.loc[(sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].notnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 34, + "id": "b47e6111", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\2141105125.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks2['Location'].fillna(sharks2['Area'], inplace=True)\n" + ] + } + ], + "source": [ + "#Se sustituyen los valores nulos de la columna de Location con los valores de la columna Area.\n", + "sharks2['Location'].fillna(sharks2['Area'], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 35, + "id": "84097b7d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
Case NumberDateYearTypeCountryAreaLocationActivityNameSex...Fatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2original order
02018.06.2525-Jun-20182018.0BoatingUSACaliforniaOceanside, San Diego CountyPaddlingJulie WolfeF...N18h00White sharkR. Collier, GSAF2018.06.25-Wolfe.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.252018.06.256303.0
12018.06.1818-Jun-20182018.0UnprovokedUSAGeorgiaSt. Simon Island, Glynn CountyStandingAdyson McNeelyF...N14h00 -15h00NaNK.McMurray, TrackingSharks.com2018.06.18-McNeely.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.182018.06.186302.0
22018.06.0909-Jun-20182018.0InvalidUSAHawaiiHabush, OahuSurfingJohn DengesM...N07h45NaNK.McMurray, TrackingSharks.com2018.06.09-Denges.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.092018.06.096301.0
32018.06.0808-Jun-20182018.0UnprovokedAUSTRALIANew South WalesArrawarra HeadlandSurfingmaleM...NNaN2 m sharkB. Myatt, GSAF2018.06.08-Arrawarra.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.082018.06.086300.0
42018.06.0404-Jun-20182018.0ProvokedMEXICOColimaLa TiclaFree divingGustavo RamosM...NNaNTiger shark, 3mA .Kipper2018.06.04-Ramos.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.042018.06.046299.0
..................................................................
86980NaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
86990NaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
87000NaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
87010NaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
25722xxNaNNaNNaNNaNNaNNaNNaNNaNNaN...NaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "

8702 rows × 22 columns

\n", + "
" + ], + "text/plain": [ + " Case Number Date Year Type Country \\\n", + "0 2018.06.25 25-Jun-2018 2018.0 Boating USA \n", + "1 2018.06.18 18-Jun-2018 2018.0 Unprovoked USA \n", + "2 2018.06.09 09-Jun-2018 2018.0 Invalid USA \n", + "3 2018.06.08 08-Jun-2018 2018.0 Unprovoked AUSTRALIA \n", + "4 2018.06.04 04-Jun-2018 2018.0 Provoked MEXICO \n", + "... ... ... ... ... ... \n", + "8698 0 NaN NaN NaN NaN \n", + "8699 0 NaN NaN NaN NaN \n", + "8700 0 NaN NaN NaN NaN \n", + "8701 0 NaN NaN NaN NaN \n", + "25722 xx NaN NaN NaN NaN \n", + "\n", + " Area Location Activity \\\n", + "0 California Oceanside, San Diego County Paddling \n", + "1 Georgia St. Simon Island, Glynn County Standing \n", + "2 Hawaii Habush, Oahu Surfing \n", + "3 New South Wales Arrawarra Headland Surfing \n", + "4 Colima La Ticla Free diving \n", + "... ... ... ... \n", + "8698 NaN NaN NaN \n", + "8699 NaN NaN NaN \n", + "8700 NaN NaN NaN \n", + "8701 NaN NaN NaN \n", + "25722 NaN NaN NaN \n", + "\n", + " Name Sex ... Fatal (Y/N) Time Species \\\n", + "0 Julie Wolfe F ... N 18h00 White shark \n", + "1 Adyson McNeely F ... N 14h00 -15h00 NaN \n", + "2 John Denges M ... N 07h45 NaN \n", + "3 male M ... N NaN 2 m shark \n", + "4 Gustavo Ramos M ... N NaN Tiger shark, 3m \n", + "... ... ... ... ... ... ... \n", + "8698 NaN NaN ... NaN NaN NaN \n", + "8699 NaN NaN ... NaN NaN NaN \n", + "8700 NaN NaN ... NaN NaN NaN \n", + "8701 NaN NaN ... NaN NaN NaN \n", + "25722 NaN NaN ... NaN NaN NaN \n", + "\n", + " Investigator or Source pdf \\\n", + "0 R. Collier, GSAF 2018.06.25-Wolfe.pdf \n", + "1 K.McMurray, TrackingSharks.com 2018.06.18-McNeely.pdf \n", + "2 K.McMurray, TrackingSharks.com 2018.06.09-Denges.pdf \n", + "3 B. Myatt, GSAF 2018.06.08-Arrawarra.pdf \n", + "4 A .Kipper 2018.06.04-Ramos.pdf \n", + "... ... ... \n", + "8698 NaN NaN \n", + "8699 NaN NaN \n", + "8700 NaN NaN \n", + "8701 NaN NaN \n", + "25722 NaN NaN \n", + "\n", + " href formula \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "... ... \n", + "8698 NaN \n", + "8699 NaN \n", + "8700 NaN \n", + "8701 NaN \n", + "25722 NaN \n", + "\n", + " href Case Number.1 \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.25 \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.18 \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.09 \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.08 \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.04 \n", + "... ... ... \n", + "8698 NaN NaN \n", + "8699 NaN NaN \n", + "8700 NaN NaN \n", + "8701 NaN NaN \n", + "25722 NaN NaN \n", + "\n", + " Case Number.2 original order \n", + "0 2018.06.25 6303.0 \n", + "1 2018.06.18 6302.0 \n", + "2 2018.06.09 6301.0 \n", + "3 2018.06.08 6300.0 \n", + "4 2018.06.04 6299.0 \n", + "... ... ... \n", + "8698 NaN NaN \n", + "8699 NaN NaN \n", + "8700 NaN NaN \n", + "8701 NaN NaN \n", + "25722 NaN NaN \n", + "\n", + "[8702 rows x 22 columns]" + ] + }, + "execution_count": 35, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2" + ] + }, + { + "cell_type": "code", + "execution_count": 36, + "id": "b68f99e1", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
2956NaNEnglish ChannelEnglish Channel
3387NaNCaribbean SeaBetween St. Kitts & Nevis
4018NaNBetween Timor & Darwin, AustraliaBetween Timor & Darwin, Australia
4231NaNNear the Andaman & Nicobar IslandsNear the Andaman & Nicobar Islands
4266NaNBetween Comores & MadagascarGeyser Bank
4498NaNCaribbean SeaBetween Cuba & Costa Rica
4700NaNOff South American coastOff South American coast
4712NaN300 miles east of St. Thomas (Virgin Islands)300 miles east of St. Thomas (Virgin Islands)
5020NaNFrench Southern TerritoriesÎle Saint-Paul
5612NaNMediterranean SeaMediterranean Sea
5742NaNGulf of CaliforniaGulf of California
5808NaNWestern BanksWestern Banks
6137NaNSt HelenaLanding Place
6175NaNIonian SeaIonian Sea
6177NaNIonian SeaIonian Sea
\n", + "
" + ], + "text/plain": [ + " Country Area \\\n", + "2956 NaN English Channel \n", + "3387 NaN Caribbean Sea \n", + "4018 NaN Between Timor & Darwin, Australia \n", + "4231 NaN Near the Andaman & Nicobar Islands \n", + "4266 NaN Between Comores & Madagascar \n", + "4498 NaN Caribbean Sea \n", + "4700 NaN Off South American coast \n", + "4712 NaN 300 miles east of St. Thomas (Virgin Islands) \n", + "5020 NaN French Southern Territories \n", + "5612 NaN Mediterranean Sea \n", + "5742 NaN Gulf of California \n", + "5808 NaN Western Banks \n", + "6137 NaN St Helena \n", + "6175 NaN Ionian Sea \n", + "6177 NaN Ionian Sea \n", + "\n", + " Location \n", + "2956 English Channel \n", + "3387 Between St. Kitts & Nevis \n", + "4018 Between Timor & Darwin, Australia \n", + "4231 Near the Andaman & Nicobar Islands \n", + "4266 Geyser Bank \n", + "4498 Between Cuba & Costa Rica \n", + "4700 Off South American coast \n", + "4712 300 miles east of St. Thomas (Virgin Islands) \n", + "5020 Île Saint-Paul \n", + "5612 Mediterranean Sea \n", + "5742 Gulf of California \n", + "5808 Western Banks \n", + "6137 Landing Place \n", + "6175 Ionian Sea \n", + "6177 Ionian Sea " + ] + }, + "execution_count": 36, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].notnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 37, + "id": "cba5bb3c", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\1151901827.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks2[\"Country\"] = np.where((sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].str.contains('Australia')), 'Australia', sharks2[\"Country\"])\n" + ] + } + ], + "source": [ + "# Se sutituye el valor nulo de Countru, si en Area aparcee Australia\n", + "sharks2[\"Country\"] = np.where((sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].str.contains('Australia')), 'Australia', sharks2[\"Country\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 38, + "id": "b07d19b8", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\2601397532.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks2[\"Country\"] = np.where((sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].notnull()), 'unknown', sharks2[\"Country\"])\n" + ] + } + ], + "source": [ + "#Los valore nulos de Country que no se pueden inferir a partir de la información de Area y Location se sustituyen por unknown\n", + "sharks2[\"Country\"] = np.where((sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].notnull()), 'unknown', sharks2[\"Country\"])" + ] + }, + { + "cell_type": "code", + "execution_count": 39, + "id": "5a6681aa", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
32NEW CALEDONIANaNMagenta Beach, Noumea
33BAHAMASNaNBimini
48NEW CALEDONIANaNNouville
59LIBYANaNGars Garabulli
90SOLOMON ISLANDSNaNOwarigi Island
............
6161FRANCENaNNice
6181CANADANaNGrand Banks
6237SINGAPORENaNKeppel Harbor, 2 miles from Singapore city ce...
6257NORTH PACIFIC OCEANNaNWake Island
6300PANAMANaNPanama Bay 8ºN, 79ºW
\n", + "

209 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Country Area \\\n", + "32 NEW CALEDONIA NaN \n", + "33 BAHAMAS NaN \n", + "48 NEW CALEDONIA NaN \n", + "59 LIBYA NaN \n", + "90 SOLOMON ISLANDS NaN \n", + "... ... ... \n", + "6161 FRANCE NaN \n", + "6181 CANADA NaN \n", + "6237 SINGAPORE NaN \n", + "6257 NORTH PACIFIC OCEAN NaN \n", + "6300 PANAMA NaN \n", + "\n", + " Location \n", + "32 Magenta Beach, Noumea \n", + "33 Bimini \n", + "48 Nouville \n", + "59 Gars Garabulli \n", + "90 Owarigi Island \n", + "... ... \n", + "6161 Nice \n", + "6181 Grand Banks \n", + "6237 Keppel Harbor, 2 miles from Singapore city ce... \n", + "6257 Wake Island \n", + "6300 Panama Bay 8ºN, 79ºW \n", + "\n", + "[209 rows x 3 columns]" + ] + }, + "execution_count": 39, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"].isnull()) & (sharks2[\"Location\"].notnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 40, + "id": "9d24ae34", + "metadata": {}, + "outputs": [], + "source": [ + "#Los valores nulos de Area, sabiendo que se tiene Contry y localidad se sustituyen con Location\n", + "sharks2.loc[sharks2['Area'].isnull(), 'Area']=sharks2['Location']" + ] + }, + { + "cell_type": "code", + "execution_count": 41, + "id": "be4307e6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
3605NaNFlorida StraitFlorida Strait
4639NaN225 miles east of Hong Kong225 miles east of Hong Kong
5425NaNNear the equatorNear the equator
5810NaNSanta CruzSanta Cruz
6155NaNCarlisle BayCarlisle Bay
6206NaNIn a river feeding into the Bay of BengalIn a river feeding into the Bay of Bengal
\n", + "
" + ], + "text/plain": [ + " Country Area \\\n", + "3605 NaN Florida Strait \n", + "4639 NaN 225 miles east of Hong Kong \n", + "5425 NaN Near the equator \n", + "5810 NaN Santa Cruz \n", + "6155 NaN Carlisle Bay \n", + "6206 NaN In a river feeding into the Bay of Bengal \n", + "\n", + " Location \n", + "3605 Florida Strait \n", + "4639 225 miles east of Hong Kong \n", + "5425 Near the equator \n", + "5810 Santa Cruz \n", + "6155 Carlisle Bay \n", + "6206 In a river feeding into the Bay of Bengal " + ] + }, + "execution_count": 41, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].notnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 42, + "id": "b96f9019", + "metadata": {}, + "outputs": [], + "source": [ + "#Como se tienen valores nulos de Country sin saber Area y Location, se identifican con unknown estas columnas\n", + "sharks2.loc[(sharks2[\"Country\"].isnull()) & (sharks2[\"Area\"].notnull()) & (sharks2[\"Location\"].notnull()), 'Country']='unknown'" + ] + }, + { + "cell_type": "code", + "execution_count": 43, + "id": "6353b1e5", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
56BAHAMASNaNNaN
101BAHAMASNaNNaN
132BAHAMASNaNNaN
296BAHAMASNaNNaN
370FIJINaNNaN
............
6280AUSTRALIANaNNaN
6291ASIA?NaNNaN
6293AUSTRALIANaNNaN
6294AUSTRALIANaNNaN
6295AUSTRALIANaNNaN
\n", + "

211 rows × 3 columns

\n", + "
" + ], + "text/plain": [ + " Country Area Location\n", + "56 BAHAMAS NaN NaN\n", + "101 BAHAMAS NaN NaN\n", + "132 BAHAMAS NaN NaN\n", + "296 BAHAMAS NaN NaN\n", + "370 FIJI NaN NaN\n", + "... ... ... ...\n", + "6280 AUSTRALIA NaN NaN\n", + "6291 ASIA? NaN NaN\n", + "6293 AUSTRALIA NaN NaN\n", + "6294 AUSTRALIA NaN NaN\n", + "6295 AUSTRALIA NaN NaN\n", + "\n", + "[211 rows x 3 columns]" + ] + }, + "execution_count": 43, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"].isnull()) & (sharks2[\"Location\"].isnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "code", + "execution_count": 44, + "id": "4e5d906a", + "metadata": {}, + "outputs": [], + "source": [ + "#Se tienen los valores en Country pero no se conoce area y loction, por lo que se sustituyen los NAN con unknown en Area\n", + "sharks2.loc[(sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"].isnull()) & (sharks2[\"Location\"].isnull()), 'Area']='unknown'\n" + ] + }, + { + "cell_type": "code", + "execution_count": 45, + "id": "ce3c96bf", + "metadata": {}, + "outputs": [], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"]== 'unknown') & (sharks2[\"Location\"].isnull()), 'Location']='unknown'" + ] + }, + { + "cell_type": "code", + "execution_count": 46, + "id": "b50d3756", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
CountryAreaLocation
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Country, Area, Location]\n", + "Index: []" + ] + }, + "execution_count": 46, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2.loc[(sharks2[\"Country\"].notnull()) & (sharks2[\"Area\"].isnull()) & (sharks2[\"Location\"].isnull()),[\"Country\", \"Area\", 'Location']]" + ] + }, + { + "cell_type": "markdown", + "id": "94b173aa", + "metadata": {}, + "source": [ + "# 6. Cleaning and parsing the column ```\"Date\"```" + ] + }, + { + "cell_type": "code", + "execution_count": 47, + "id": "e763cf9e", + "metadata": {}, + "outputs": [ + { + "name": "stdout", + "output_type": "stream", + "text": [ + "\n", + "Int64Index: 8702 entries, 0 to 25722\n", + "Series name: Date\n", + "Non-Null Count Dtype \n", + "-------------- ----- \n", + "6301 non-null object\n", + "dtypes: object(1)\n", + "memory usage: 394.0+ KB\n" + ] + } + ], + "source": [ + "sharks2['Date'].info()" + ] + }, + { + "cell_type": "code", + "execution_count": 48, + "id": "d04a6ece", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "8702" + ] + }, + "execution_count": 48, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "len(sharks2)" + ] + }, + { + "cell_type": "code", + "execution_count": 49, + "id": "822070b2", + "metadata": {}, + "outputs": [], + "source": [ + "from datetime import datetime\n" + ] + }, + { + "cell_type": "markdown", + "id": "92887503", + "metadata": {}, + "source": [ + "# 7. Droping the column ```\"Case Number\"```, ```\"Year\"``` and ```\"original order\"```." + ] + }, + { + "cell_type": "code", + "execution_count": 50, + "id": "21fcdf81", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\2762797309.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks2.drop(columns=[\"Case Number\", \"Year\", \"original order\"], inplace=True)\n" + ] + } + ], + "source": [ + "sharks2.drop(columns=[\"Case Number\", \"Year\", \"original order\"], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 51, + "id": "cdef27be", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2
025-Jun-2018BoatingUSACaliforniaOceanside, San Diego CountyPaddlingJulie WolfeF57No injury to occupant, outrigger canoe and pad...N18h00White sharkR. Collier, GSAF2018.06.25-Wolfe.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.252018.06.25
118-Jun-2018UnprovokedUSAGeorgiaSt. Simon Island, Glynn CountyStandingAdyson McNeelyF11Minor injury to left thighN14h00 -15h00NaNK.McMurray, TrackingSharks.com2018.06.18-McNeely.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.182018.06.18
209-Jun-2018InvalidUSAHawaiiHabush, OahuSurfingJohn DengesM48Injury to left lower leg from surfboard skegN07h45NaNK.McMurray, TrackingSharks.com2018.06.09-Denges.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.092018.06.09
308-Jun-2018UnprovokedAUSTRALIANew South WalesArrawarra HeadlandSurfingmaleMNaNMinor injury to lower legNNaN2 m sharkB. Myatt, GSAF2018.06.08-Arrawarra.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.082018.06.08
404-Jun-2018ProvokedMEXICOColimaLa TiclaFree divingGustavo RamosMNaNLacerations to leg & hand shark PROVOKED INCIDENTNNaNTiger shark, 3mA .Kipper2018.06.04-Ramos.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.042018.06.04
............................................................
8698NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
8699NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
8700NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
8701NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
25722NaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaNNaN
\n", + "

8702 rows × 19 columns

\n", + "
" + ], + "text/plain": [ + " Date Type Country Area \\\n", + "0 25-Jun-2018 Boating USA California \n", + "1 18-Jun-2018 Unprovoked USA Georgia \n", + "2 09-Jun-2018 Invalid USA Hawaii \n", + "3 08-Jun-2018 Unprovoked AUSTRALIA New South Wales \n", + "4 04-Jun-2018 Provoked MEXICO Colima \n", + "... ... ... ... ... \n", + "8698 NaN NaN NaN NaN \n", + "8699 NaN NaN NaN NaN \n", + "8700 NaN NaN NaN NaN \n", + "8701 NaN NaN NaN NaN \n", + "25722 NaN NaN NaN NaN \n", + "\n", + " Location Activity Name Sex Age \\\n", + "0 Oceanside, San Diego County Paddling Julie Wolfe F 57 \n", + "1 St. Simon Island, Glynn County Standing Adyson McNeely F 11 \n", + "2 Habush, Oahu Surfing John Denges M 48 \n", + "3 Arrawarra Headland Surfing male M NaN \n", + "4 La Ticla Free diving Gustavo Ramos M NaN \n", + "... ... ... ... ... ... \n", + "8698 NaN NaN NaN NaN NaN \n", + "8699 NaN NaN NaN NaN NaN \n", + "8700 NaN NaN NaN NaN NaN \n", + "8701 NaN NaN NaN NaN NaN \n", + "25722 NaN NaN NaN NaN NaN \n", + "\n", + " Injury Fatal (Y/N) \\\n", + "0 No injury to occupant, outrigger canoe and pad... N \n", + "1 Minor injury to left thigh N \n", + "2 Injury to left lower leg from surfboard skeg N \n", + "3 Minor injury to lower leg N \n", + "4 Lacerations to leg & hand shark PROVOKED INCIDENT N \n", + "... ... ... \n", + "8698 NaN NaN \n", + "8699 NaN NaN \n", + "8700 NaN NaN \n", + "8701 NaN NaN \n", + "25722 NaN NaN \n", + "\n", + " Time Species Investigator or Source \\\n", + "0 18h00 White shark R. Collier, GSAF \n", + "1 14h00 -15h00 NaN K.McMurray, TrackingSharks.com \n", + "2 07h45 NaN K.McMurray, TrackingSharks.com \n", + "3 NaN 2 m shark B. Myatt, GSAF \n", + "4 NaN Tiger shark, 3m A .Kipper \n", + "... ... ... ... \n", + "8698 NaN NaN NaN \n", + "8699 NaN NaN NaN \n", + "8700 NaN NaN NaN \n", + "8701 NaN NaN NaN \n", + "25722 NaN NaN NaN \n", + "\n", + " pdf \\\n", + "0 2018.06.25-Wolfe.pdf \n", + "1 2018.06.18-McNeely.pdf \n", + "2 2018.06.09-Denges.pdf \n", + "3 2018.06.08-Arrawarra.pdf \n", + "4 2018.06.04-Ramos.pdf \n", + "... ... \n", + "8698 NaN \n", + "8699 NaN \n", + "8700 NaN \n", + "8701 NaN \n", + "25722 NaN \n", + "\n", + " href formula \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "... ... \n", + "8698 NaN \n", + "8699 NaN \n", + "8700 NaN \n", + "8701 NaN \n", + "25722 NaN \n", + "\n", + " href Case Number.1 \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.25 \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.18 \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.09 \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.08 \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.04 \n", + "... ... ... \n", + "8698 NaN NaN \n", + "8699 NaN NaN \n", + "8700 NaN NaN \n", + "8701 NaN NaN \n", + "25722 NaN NaN \n", + "\n", + " Case Number.2 \n", + "0 2018.06.25 \n", + "1 2018.06.18 \n", + "2 2018.06.09 \n", + "3 2018.06.08 \n", + "4 2018.06.04 \n", + "... ... \n", + "8698 NaN \n", + "8699 NaN \n", + "8700 NaN \n", + "8701 NaN \n", + "25722 NaN \n", + "\n", + "[8702 rows x 19 columns]" + ] + }, + "execution_count": 51, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks2" + ] + }, + { + "cell_type": "code", + "execution_count": 52, + "id": "371a03ed", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2
025-Jun-2018BoatingUSACaliforniaOceanside, San Diego CountyPaddlingJulie WolfeF57No injury to occupant, outrigger canoe and pad...N18h00White sharkR. Collier, GSAF2018.06.25-Wolfe.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.252018.06.25
118-Jun-2018UnprovokedUSAGeorgiaSt. Simon Island, Glynn CountyStandingAdyson McNeelyF11Minor injury to left thighN14h00 -15h00NaNK.McMurray, TrackingSharks.com2018.06.18-McNeely.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.182018.06.18
209-Jun-2018InvalidUSAHawaiiHabush, OahuSurfingJohn DengesM48Injury to left lower leg from surfboard skegN07h45NaNK.McMurray, TrackingSharks.com2018.06.09-Denges.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.092018.06.09
308-Jun-2018UnprovokedAUSTRALIANew South WalesArrawarra HeadlandSurfingmaleMNaNMinor injury to lower legNNaN2 m sharkB. Myatt, GSAF2018.06.08-Arrawarra.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.082018.06.08
404-Jun-2018ProvokedMEXICOColimaLa TiclaFree divingGustavo RamosMNaNLacerations to leg & hand shark PROVOKED INCIDENTNNaNTiger shark, 3mA .Kipper2018.06.04-Ramos.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.042018.06.04
............................................................
6297Before 1903UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNfatalYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0005ND.0005
6298Before 1903UnprovokedAUSTRALIAWestern AustraliaWestern AustraliaPearl divingAhmunMNaNfatalYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0004ND.0004
62991900-1905UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNfatalYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0003ND.0003
63001883-1889UnprovokedPANAMAPanama Bay 8ºN, 79ºWPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNfatalYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0002ND.0002
63011845-1853UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15fatalYNaNNaNS.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0001ND.0001
\n", + "

6272 rows × 19 columns

\n", + "
" + ], + "text/plain": [ + " Date Type Country Area \\\n", + "0 25-Jun-2018 Boating USA California \n", + "1 18-Jun-2018 Unprovoked USA Georgia \n", + "2 09-Jun-2018 Invalid USA Hawaii \n", + "3 08-Jun-2018 Unprovoked AUSTRALIA New South Wales \n", + "4 04-Jun-2018 Provoked MEXICO Colima \n", + "... ... ... ... ... \n", + "6297 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6298 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6299 1900-1905 Unprovoked USA North Carolina \n", + "6300 1883-1889 Unprovoked PANAMA Panama Bay 8ºN, 79ºW \n", + "6301 1845-1853 Unprovoked CEYLON (SRI LANKA) Eastern Province \n", + "\n", + " Location Activity \\\n", + "0 Oceanside, San Diego County Paddling \n", + "1 St. Simon Island, Glynn County Standing \n", + "2 Habush, Oahu Surfing \n", + "3 Arrawarra Headland Surfing \n", + "4 La Ticla Free diving \n", + "... ... ... \n", + "6297 Roebuck Bay Diving \n", + "6298 Western Australia Pearl diving \n", + "6299 Ocracoke Inlet Swimming \n", + "6300 Panama Bay 8ºN, 79ºW NaN \n", + "6301 Below the English fort, Trincomalee Swimming \n", + "\n", + " Name Sex Age \\\n", + "0 Julie Wolfe F 57 \n", + "1 Adyson McNeely F 11 \n", + "2 John Denges M 48 \n", + "3 male M NaN \n", + "4 Gustavo Ramos M NaN \n", + "... ... .. ... \n", + "6297 male M NaN \n", + "6298 Ahmun M NaN \n", + "6299 Coast Guard personnel M NaN \n", + "6300 Jules Patterson M NaN \n", + "6301 male M 15 \n", + "\n", + " Injury Fatal (Y/N) \\\n", + "0 No injury to occupant, outrigger canoe and pad... N \n", + "1 Minor injury to left thigh N \n", + "2 Injury to left lower leg from surfboard skeg N \n", + "3 Minor injury to lower leg N \n", + "4 Lacerations to leg & hand shark PROVOKED INCIDENT N \n", + "... ... ... \n", + "6297 fatal Y \n", + "6298 fatal Y \n", + "6299 fatal Y \n", + "6300 fatal Y \n", + "6301 fatal Y \n", + "\n", + " Time Species Investigator or Source \\\n", + "0 18h00 White shark R. Collier, GSAF \n", + "1 14h00 -15h00 NaN K.McMurray, TrackingSharks.com \n", + "2 07h45 NaN K.McMurray, TrackingSharks.com \n", + "3 NaN 2 m shark B. Myatt, GSAF \n", + "4 NaN Tiger shark, 3m A .Kipper \n", + "... ... ... ... \n", + "6297 NaN NaN H. Taunton; N. Bartlett, p. 234 \n", + "6298 NaN NaN H. Taunton; N. Bartlett, pp. 233-234 \n", + "6299 NaN NaN F. Schwartz, p.23; C. Creswell, GSAF \n", + "6300 NaN NaN The Sun, 10/20/1938 \n", + "6301 NaN NaN S.W. Baker \n", + "\n", + " pdf \\\n", + "0 2018.06.25-Wolfe.pdf \n", + "1 2018.06.18-McNeely.pdf \n", + "2 2018.06.09-Denges.pdf \n", + "3 2018.06.08-Arrawarra.pdf \n", + "4 2018.06.04-Ramos.pdf \n", + "... ... \n", + "6297 ND-0005-RoebuckBay.pdf \n", + "6298 ND-0004-Ahmun.pdf \n", + "6299 ND-0003-Ocracoke_1900-1905.pdf \n", + "6300 ND-0002-JulesPatterson.pdf \n", + "6301 ND-0001-Ceylon.pdf \n", + "\n", + " href formula \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "... ... \n", + "6297 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6298 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6299 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6300 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6301 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " href Case Number.1 \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.25 \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.18 \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.09 \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.08 \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.04 \n", + "... ... ... \n", + "6297 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0005 \n", + "6298 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0004 \n", + "6299 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0003 \n", + "6300 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0002 \n", + "6301 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0001 \n", + "\n", + " Case Number.2 \n", + "0 2018.06.25 \n", + "1 2018.06.18 \n", + "2 2018.06.09 \n", + "3 2018.06.08 \n", + "4 2018.06.04 \n", + "... ... \n", + "6297 ND.0005 \n", + "6298 ND.0004 \n", + "6299 ND.0003 \n", + "6300 ND.0002 \n", + "6301 ND.0001 \n", + "\n", + "[6272 rows x 19 columns]" + ] + }, + "execution_count": 52, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "#Una vez que se elimina la columna de Case Number, tambien se dropean los valores nulos de las filas de Country, Area y Location\n", + "sharks3=sharks2.dropna(axis=0,subset=['Country'])\n", + "sharks3" + ] + }, + { + "cell_type": "markdown", + "id": "599cab34", + "metadata": {}, + "source": [ + "# 8. Filling values for ```\"Name\"``` and ```\"Investigator or Source\"```" + ] + }, + { + "cell_type": "code", + "execution_count": 53, + "id": "01fa288f", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2
606206-Jul-1842ProvokedUSANew JerseyAbsecon, Atlantic CountyHarassing a sharkmaleNaNNaNLacerations to leg PROVOKED INCIDENTNNaNNaNNew York Evening Post, 7/11/18421842.07.06-Absecon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...1842.07.061842.07.06
21001-Oct-2016UnprovokedUSAFloridaNew Smyrna Beach, Volusia CountySurfngmaleM32Minor injuriesN17h30NaNOrlando Sentinel, 10/2/20162016.10.01-NSB.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2016.10.012016.10.01
\n", + "
" + ], + "text/plain": [ + " Date Type Country Area \\\n", + "6062 06-Jul-1842 Provoked USA New Jersey \n", + "210 01-Oct-2016 Unprovoked USA Florida \n", + "\n", + " Location Activity Name Sex Age \\\n", + "6062 Absecon, Atlantic County Harassing a shark male NaN NaN \n", + "210 New Smyrna Beach, Volusia County Surfng male M 32 \n", + "\n", + " Injury Fatal (Y/N) Time Species \\\n", + "6062 Lacerations to leg PROVOKED INCIDENT N NaN NaN \n", + "210 Minor injuries N 17h30 NaN \n", + "\n", + " Investigator or Source pdf \\\n", + "6062 New York Evening Post, 7/11/1842 1842.07.06-Absecon.pdf \n", + "210 Orlando Sentinel, 10/2/2016 2016.10.01-NSB.pdf \n", + "\n", + " href formula \\\n", + "6062 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "210 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " href Case Number.1 \\\n", + "6062 http://sharkattackfile.net/spreadsheets/pdf_di... 1842.07.06 \n", + "210 http://sharkattackfile.net/spreadsheets/pdf_di... 2016.10.01 \n", + "\n", + " Case Number.2 \n", + "6062 1842.07.06 \n", + "210 2016.10.01 " + ] + }, + "execution_count": 53, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.loc[sharks3['Name'].isnull().value_counts()]" + ] + }, + { + "cell_type": "code", + "execution_count": 54, + "id": "df89ff8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameInvestigator or Source
32NaNLes Nouvelles Caledoniennes, 4/10/2018
86NaNB. Myatt, GSAF
124NaNLinfo, 7/3/2017
154NaNDaytona Beach News-Journal, 4/17/2017
184NaNBrisbane Times,1/13/2017
.........
6185NaNDi Candia, 2004
6197NaNC. Moore, GSAF
6218NaNG. Van Grevelynghe
6237NaNV.M. Coppleson (1958), p.266
6278NaNG. Van Grevelynghe
\n", + "

209 rows × 2 columns

\n", + "
" + ], + "text/plain": [ + " Name Investigator or Source\n", + "32 NaN Les Nouvelles Caledoniennes, 4/10/2018\n", + "86 NaN B. Myatt, GSAF\n", + "124 NaN Linfo, 7/3/2017\n", + "154 NaN Daytona Beach News-Journal, 4/17/2017\n", + "184 NaN Brisbane Times,1/13/2017\n", + "... ... ...\n", + "6185 NaN Di Candia, 2004\n", + "6197 NaN C. Moore, GSAF\n", + "6218 NaN G. Van Grevelynghe\n", + "6237 NaN V.M. Coppleson (1958), p.266\n", + "6278 NaN G. Van Grevelynghe\n", + "\n", + "[209 rows x 2 columns]" + ] + }, + "execution_count": 54, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.loc[(sharks3[\"Name\"].isnull()) & (sharks3[\"Investigator or Source\"].notnull()),[\"Name\", 'Investigator or Source']]" + ] + }, + { + "cell_type": "code", + "execution_count": 55, + "id": "e5947802", + "metadata": { + "scrolled": true + }, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\2234689627.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3.loc[sharks3['Name'].isnull(), 'Name']=sharks3['Investigator or Source']\n" + ] + } + ], + "source": [ + "#Sustituir los valores nulos de la columna Name con los de Investigator or source\n", + "sharks3.loc[sharks3['Name'].isnull(), 'Name']=sharks3['Investigator or Source']" + ] + }, + { + "cell_type": "code", + "execution_count": 56, + "id": "96b7e915", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\3472576363.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3.loc[sharks3['Investigator or Source'].isnull(), 'Investigator or Source']=sharks3['Name']\n" + ] + } + ], + "source": [ + "#Sustituir los valores nulos de la columna Investigator or source con la de los valores de name\n", + "sharks3.loc[sharks3['Investigator or Source'].isnull(), 'Investigator or Source']=sharks3['Name']" + ] + }, + { + "cell_type": "code", + "execution_count": 57, + "id": "279d4d42", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
NameInvestigator or Source
\n", + "
" + ], + "text/plain": [ + "Empty DataFrame\n", + "Columns: [Name, Investigator or Source]\n", + "Index: []" + ] + }, + "execution_count": 57, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.loc[(sharks3[\"Name\"].isnull()) & (sharks3[\"Investigator or Source\"].notnull()),[\"Name\", 'Investigator or Source']]" + ] + }, + { + "cell_type": "code", + "execution_count": 58, + "id": "867c8e60", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2
025-Jun-2018BoatingUSACaliforniaOceanside, San Diego CountyPaddlingJulie WolfeF57No injury to occupant, outrigger canoe and pad...N18h00White sharkR. Collier, GSAF2018.06.25-Wolfe.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.252018.06.25
118-Jun-2018UnprovokedUSAGeorgiaSt. Simon Island, Glynn CountyStandingAdyson McNeelyF11Minor injury to left thighN14h00 -15h00NaNK.McMurray, TrackingSharks.com2018.06.18-McNeely.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.182018.06.18
209-Jun-2018InvalidUSAHawaiiHabush, OahuSurfingJohn DengesM48Injury to left lower leg from surfboard skegN07h45NaNK.McMurray, TrackingSharks.com2018.06.09-Denges.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.092018.06.09
308-Jun-2018UnprovokedAUSTRALIANew South WalesArrawarra HeadlandSurfingmaleMNaNMinor injury to lower legNNaN2 m sharkB. Myatt, GSAF2018.06.08-Arrawarra.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.082018.06.08
404-Jun-2018ProvokedMEXICOColimaLa TiclaFree divingGustavo RamosMNaNLacerations to leg & hand shark PROVOKED INCIDENTNNaNTiger shark, 3mA .Kipper2018.06.04-Ramos.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.042018.06.04
............................................................
6297Before 1903UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleMNaNfatalYNaNNaNH. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0005ND.0005
6298Before 1903UnprovokedAUSTRALIAWestern AustraliaWestern AustraliaPearl divingAhmunMNaNfatalYNaNNaNH. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0004ND.0004
62991900-1905UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelMNaNfatalYNaNNaNF. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0003ND.0003
63001883-1889UnprovokedPANAMAPanama Bay 8ºN, 79ºWPanama Bay 8ºN, 79ºWNaNJules PattersonMNaNfatalYNaNNaNThe Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0002ND.0002
63011845-1853UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15fatalYNaNNaNS.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0001ND.0001
\n", + "

6272 rows × 19 columns

\n", + "
" + ], + "text/plain": [ + " Date Type Country Area \\\n", + "0 25-Jun-2018 Boating USA California \n", + "1 18-Jun-2018 Unprovoked USA Georgia \n", + "2 09-Jun-2018 Invalid USA Hawaii \n", + "3 08-Jun-2018 Unprovoked AUSTRALIA New South Wales \n", + "4 04-Jun-2018 Provoked MEXICO Colima \n", + "... ... ... ... ... \n", + "6297 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6298 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6299 1900-1905 Unprovoked USA North Carolina \n", + "6300 1883-1889 Unprovoked PANAMA Panama Bay 8ºN, 79ºW \n", + "6301 1845-1853 Unprovoked CEYLON (SRI LANKA) Eastern Province \n", + "\n", + " Location Activity \\\n", + "0 Oceanside, San Diego County Paddling \n", + "1 St. Simon Island, Glynn County Standing \n", + "2 Habush, Oahu Surfing \n", + "3 Arrawarra Headland Surfing \n", + "4 La Ticla Free diving \n", + "... ... ... \n", + "6297 Roebuck Bay Diving \n", + "6298 Western Australia Pearl diving \n", + "6299 Ocracoke Inlet Swimming \n", + "6300 Panama Bay 8ºN, 79ºW NaN \n", + "6301 Below the English fort, Trincomalee Swimming \n", + "\n", + " Name Sex Age \\\n", + "0 Julie Wolfe F 57 \n", + "1 Adyson McNeely F 11 \n", + "2 John Denges M 48 \n", + "3 male M NaN \n", + "4 Gustavo Ramos M NaN \n", + "... ... .. ... \n", + "6297 male M NaN \n", + "6298 Ahmun M NaN \n", + "6299 Coast Guard personnel M NaN \n", + "6300 Jules Patterson M NaN \n", + "6301 male M 15 \n", + "\n", + " Injury Fatal (Y/N) \\\n", + "0 No injury to occupant, outrigger canoe and pad... N \n", + "1 Minor injury to left thigh N \n", + "2 Injury to left lower leg from surfboard skeg N \n", + "3 Minor injury to lower leg N \n", + "4 Lacerations to leg & hand shark PROVOKED INCIDENT N \n", + "... ... ... \n", + "6297 fatal Y \n", + "6298 fatal Y \n", + "6299 fatal Y \n", + "6300 fatal Y \n", + "6301 fatal Y \n", + "\n", + " Time Species Investigator or Source \\\n", + "0 18h00 White shark R. Collier, GSAF \n", + "1 14h00 -15h00 NaN K.McMurray, TrackingSharks.com \n", + "2 07h45 NaN K.McMurray, TrackingSharks.com \n", + "3 NaN 2 m shark B. Myatt, GSAF \n", + "4 NaN Tiger shark, 3m A .Kipper \n", + "... ... ... ... \n", + "6297 NaN NaN H. Taunton; N. Bartlett, p. 234 \n", + "6298 NaN NaN H. Taunton; N. Bartlett, pp. 233-234 \n", + "6299 NaN NaN F. Schwartz, p.23; C. Creswell, GSAF \n", + "6300 NaN NaN The Sun, 10/20/1938 \n", + "6301 NaN NaN S.W. Baker \n", + "\n", + " pdf \\\n", + "0 2018.06.25-Wolfe.pdf \n", + "1 2018.06.18-McNeely.pdf \n", + "2 2018.06.09-Denges.pdf \n", + "3 2018.06.08-Arrawarra.pdf \n", + "4 2018.06.04-Ramos.pdf \n", + "... ... \n", + "6297 ND-0005-RoebuckBay.pdf \n", + "6298 ND-0004-Ahmun.pdf \n", + "6299 ND-0003-Ocracoke_1900-1905.pdf \n", + "6300 ND-0002-JulesPatterson.pdf \n", + "6301 ND-0001-Ceylon.pdf \n", + "\n", + " href formula \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "... ... \n", + "6297 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6298 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6299 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6300 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6301 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " href Case Number.1 \\\n", + "0 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.25 \n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.18 \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.09 \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.08 \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.04 \n", + "... ... ... \n", + "6297 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0005 \n", + "6298 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0004 \n", + "6299 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0003 \n", + "6300 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0002 \n", + "6301 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0001 \n", + "\n", + " Case Number.2 \n", + "0 2018.06.25 \n", + "1 2018.06.18 \n", + "2 2018.06.09 \n", + "3 2018.06.08 \n", + "4 2018.06.04 \n", + "... ... \n", + "6297 ND.0005 \n", + "6298 ND.0004 \n", + "6299 ND.0003 \n", + "6300 ND.0002 \n", + "6301 ND.0001 \n", + "\n", + "[6272 rows x 19 columns]" + ] + }, + "execution_count": 58, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3" + ] + }, + { + "cell_type": "markdown", + "id": "b975ac55", + "metadata": {}, + "source": [ + "# 9. Tiding column ```\"Activity\"``` by extracting verbs in gerund." + ] + }, + { + "cell_type": "code", + "execution_count": 59, + "id": "5f81c56d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False 5735\n", + "True 537\n", + "Name: Activity, dtype: int64" + ] + }, + "execution_count": 59, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3[\"Activity\"].isnull().value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 60, + "id": "78f0a04a", + "metadata": {}, + "outputs": [], + "source": [ + "#sharks3.loc[(sharks3[\"Activity\"].str.endswith('ing')),[\"Name\", 'Investigator or Source', 'Activity']]" + ] + }, + { + "cell_type": "markdown", + "id": "6d79738c", + "metadata": {}, + "source": [ + "# 10. Create a Predictor Function and with it, filling NaN values in Columns ```\"Age\"``` and ```\"Activity\"```." + ] + }, + { + "cell_type": "code", + "execution_count": 61, + "id": "7470378d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True 3465\n", + "False 2807\n", + "Name: Age, dtype: int64" + ] + }, + "execution_count": 61, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Age'].notnull().value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 62, + "id": "61dd32d9", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\1389379414.py:5: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3['Age']=sharks3['Age'].interpolate(method=\"pad\", limit=2807)\n" + ] + } + ], + "source": [ + "#Interpolation with help of padding simply means filling missing values with the same value present \n", + "#above them in the dataset. If the missing value is in the first row then this method will not work. \n", + "#While using this technique you also need to specify the limit which means how many NaN values \n", + "#to fill. Se realizará la interpolación con edad y actividad.\n", + "sharks3['Age']=sharks3['Age'].interpolate(method=\"pad\", limit=2807)" + ] + }, + { + "cell_type": "code", + "execution_count": 63, + "id": "f01dbcc8", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "17 327\n", + "18 311\n", + "16 301\n", + "19 295\n", + "15 267\n", + " ... \n", + ">50 1\n", + "adult 1\n", + "9 & 12 1\n", + "? & 19 1\n", + "74 1\n", + "Name: Age, Length: 157, dtype: int64" + ] + }, + "execution_count": 63, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Age'].value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 64, + "id": "bde4c0ac", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\2710860962.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3['Activity']=sharks3['Activity'].interpolate(method=\"pad\", limit=2807)\n" + ] + } + ], + "source": [ + "sharks3['Activity']=sharks3['Activity'].interpolate(method=\"pad\", limit=2807)" + ] + }, + { + "cell_type": "code", + "execution_count": 65, + "id": "88701db4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "True 6272\n", + "Name: Activity, dtype: int64" + ] + }, + "execution_count": 65, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Activity'].notnull().value_counts()" + ] + }, + { + "cell_type": "markdown", + "id": "d8d58d61", + "metadata": {}, + "source": [ + "# 11. Use this Predictor for filling ```NaN```'s in Area " + ] + }, + { + "cell_type": "code", + "execution_count": 66, + "id": "833739c6", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "" + ] + }, + "execution_count": 66, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Area'].notnull().value_counts" + ] + }, + { + "cell_type": "markdown", + "id": "015e15a0", + "metadata": {}, + "source": [ + "# 12. Filling values for column ```\"Species\"```: Unfortunately we could not apply the Predictor in this case because there are no enough information in the data set" + ] + }, + { + "cell_type": "code", + "execution_count": 67, + "id": "b45689df", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False 3456\n", + "True 2816\n", + "Name: Species, dtype: int64" + ] + }, + "execution_count": 67, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Species'].isnull().value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 68, + "id": "94150caf", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\3253187636.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3['Species']= sharks3['Species'].interpolate(method=\"pad\", limit=2816)\n" + ] + } + ], + "source": [ + "sharks3['Species']= sharks3['Species'].interpolate(method=\"pad\", limit=2816)" + ] + }, + { + "cell_type": "code", + "execution_count": 69, + "id": "be458853", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "False 6272\n", + "Name: Species, dtype: int64" + ] + }, + "execution_count": 69, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Species'].isnull().value_counts()" + ] + }, + { + "cell_type": "code", + "execution_count": 70, + "id": "97aed9b7", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "White shark 267\n", + "Shark involvement prior to death unconfirmed 249\n", + "Invalid 209\n", + "Shark involvement prior to death was not confirmed 190\n", + "Shark involvement not confirmed 147\n", + " ... \n", + "Possiby white shark 1\n", + "Tiger shark, 3.7 m [12'], (tooth fragment recovered from wound) 1\n", + "Two 3 m [10'] oceanic whitetip sharks 1\n", + "Tiger shark, 3 m to 4.9 m [10' to 16'] 1\n", + "Raggedtooth shark, 2.7 m [9'] 1\n", + "Name: Species, Length: 1548, dtype: int64" + ] + }, + "execution_count": 70, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Species'].value_counts()" + ] + }, + { + "cell_type": "markdown", + "id": "aaabc108", + "metadata": {}, + "source": [ + "# 13. Droping irrelevant rows based on ```NaN```'s counting by columns" + ] + }, + { + "cell_type": "code", + "execution_count": 71, + "id": "a61b7e8d", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Date 0.000000\n", + "Type 0.063776\n", + "Country 0.000000\n", + "Area 0.000000\n", + "Location 0.000000\n", + "Activity 0.000000\n", + "Name 0.015944\n", + "Sex 8.976403\n", + "Age 0.000000\n", + "Injury 0.111607\n", + "Fatal (Y/N) 0.111607\n", + "Time 53.061224\n", + "Species 0.000000\n", + "Investigator or Source 0.015944\n", + "pdf 0.000000\n", + "href formula 0.015944\n", + "href 0.000000\n", + "Case Number.1 0.000000\n", + "Case Number.2 0.000000\n", + "dtype: float64" + ] + }, + "execution_count": 71, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.isnull().mean() * 100 #Se identifica que la columna Time sigue teniendo un alto \n", + "#porcentaje de valores nulos, por lo que se eliminara la misma" + ] + }, + { + "cell_type": "code", + "execution_count": 72, + "id": "b2c1fc34", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal (Y/N)TimeSpeciesInvestigator or Sourcepdfhref formulahrefCase Number.1Case Number.2
6277FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6278FalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6279FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6280FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6281FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6282FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6283FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6284FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6285FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6286FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6287FalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6288FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6289FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6290FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6291FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6292FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6293FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6294FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6295FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6296FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6297FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6298FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6299FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6300FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
6301FalseFalseFalseFalseFalseFalseFalseFalseFalseFalseFalseTrueFalseFalseFalseFalseFalseFalseFalse
\n", + "
" + ], + "text/plain": [ + " Date Type Country Area Location Activity Name Sex Age \\\n", + "6277 False False False False False False False False False \n", + "6278 False False False False False False False True False \n", + "6279 False False False False False False False False False \n", + "6280 False False False False False False False False False \n", + "6281 False False False False False False False False False \n", + "6282 False False False False False False False False False \n", + "6283 False False False False False False False False False \n", + "6284 False False False False False False False False False \n", + "6285 False False False False False False False False False \n", + "6286 False False False False False False False False False \n", + "6287 False False False False False False False True False \n", + "6288 False False False False False False False False False \n", + "6289 False False False False False False False False False \n", + "6290 False False False False False False False False False \n", + "6291 False False False False False False False False False \n", + "6292 False False False False False False False False False \n", + "6293 False False False False False False False False False \n", + "6294 False False False False False False False False False \n", + "6295 False False False False False False False False False \n", + "6296 False False False False False False False False False \n", + "6297 False False False False False False False False False \n", + "6298 False False False False False False False False False \n", + "6299 False False False False False False False False False \n", + "6300 False False False False False False False False False \n", + "6301 False False False False False False False False False \n", + "\n", + " Injury Fatal (Y/N) Time Species Investigator or Source pdf \\\n", + "6277 False False True False False False \n", + "6278 False False True False False False \n", + "6279 False False True False False False \n", + "6280 False False True False False False \n", + "6281 False False True False False False \n", + "6282 False False True False False False \n", + "6283 False False True False False False \n", + "6284 False False True False False False \n", + "6285 False False True False False False \n", + "6286 False False True False False False \n", + "6287 False False True False False False \n", + "6288 False False True False False False \n", + "6289 False False True False False False \n", + "6290 False False True False False False \n", + "6291 False False True False False False \n", + "6292 False False True False False False \n", + "6293 False False True False False False \n", + "6294 False False True False False False \n", + "6295 False False True False False False \n", + "6296 False False True False False False \n", + "6297 False False True False False False \n", + "6298 False False True False False False \n", + "6299 False False True False False False \n", + "6300 False False True False False False \n", + "6301 False False True False False False \n", + "\n", + " href formula href Case Number.1 Case Number.2 \n", + "6277 False False False False \n", + "6278 False False False False \n", + "6279 False False False False \n", + "6280 False False False False \n", + "6281 False False False False \n", + "6282 False False False False \n", + "6283 False False False False \n", + "6284 False False False False \n", + "6285 False False False False \n", + "6286 False False False False \n", + "6287 False False False False \n", + "6288 False False False False \n", + "6289 False False False False \n", + "6290 False False False False \n", + "6291 False False False False \n", + "6292 False False False False \n", + "6293 False False False False \n", + "6294 False False False False \n", + "6295 False False False False \n", + "6296 False False False False \n", + "6297 False False False False \n", + "6298 False False False False \n", + "6299 False False False False \n", + "6300 False False False False \n", + "6301 False False False False " + ] + }, + "execution_count": 72, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.isnull().tail(25)" + ] + }, + { + "cell_type": "code", + "execution_count": 73, + "id": "e1548419", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\2275880297.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3.drop(columns=['Time'], inplace=True)\n" + ] + } + ], + "source": [ + "#Se eliminará la columna 'Time'\n", + "sharks3.drop(columns=['Time'], inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 74, + "id": "d5d60c70", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Date 0.000000\n", + "Type 0.063776\n", + "Country 0.000000\n", + "Area 0.000000\n", + "Location 0.000000\n", + "Activity 0.000000\n", + "Name 0.015944\n", + "Sex 8.976403\n", + "Age 0.000000\n", + "Injury 0.111607\n", + "Fatal (Y/N) 0.111607\n", + "Species 0.000000\n", + "Investigator or Source 0.015944\n", + "pdf 0.000000\n", + "href formula 0.015944\n", + "href 0.000000\n", + "Case Number.1 0.000000\n", + "Case Number.2 0.000000\n", + "dtype: float64" + ] + }, + "execution_count": 74, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.isnull().mean() * 100" + ] + }, + { + "cell_type": "markdown", + "id": "29dba28e", + "metadata": {}, + "source": [ + "# 15. Assing boolean values fo column ```\"Fatal (Y/N)\"```." + ] + }, + { + "cell_type": "code", + "execution_count": 75, + "id": "c8ab72cf", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\4264681464.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3['Fatal (Y/N)']=np.where((sharks3['Fatal (Y/N)']=='Y'), True, sharks3['Fatal (Y/N)'])\n" + ] + } + ], + "source": [ + "#Asignamos a los Y como True\n", + "sharks3['Fatal (Y/N)']=np.where((sharks3['Fatal (Y/N)']=='Y'), True, sharks3['Fatal (Y/N)'])" + ] + }, + { + "cell_type": "code", + "execution_count": 76, + "id": "f799c351", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "0 N\n", + "1 N\n", + "2 N\n", + "3 N\n", + "4 N\n", + " ... \n", + "6297 True\n", + "6298 True\n", + "6299 True\n", + "6300 True\n", + "6301 True\n", + "Name: Fatal (Y/N), Length: 6272, dtype: object" + ] + }, + "execution_count": 76, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3['Fatal (Y/N)']" + ] + }, + { + "cell_type": "code", + "execution_count": 77, + "id": "35b905fe", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\738350410.py:2: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame.\n", + "Try using .loc[row_indexer,col_indexer] = value instead\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3['Fatal (Y/N)']=np.where((sharks3['Fatal (Y/N)']=='N'), False, sharks3['Fatal (Y/N)'])\n" + ] + } + ], + "source": [ + "# #Asignamos a los diferentes de Y como False\n", + "sharks3['Fatal (Y/N)']=np.where((sharks3['Fatal (Y/N)']=='N'), False, sharks3['Fatal (Y/N)'])" + ] + }, + { + "cell_type": "markdown", + "id": "d65d5c7e", + "metadata": {}, + "source": [ + "# 16. Changing column names and Re-indexing" + ] + }, + { + "cell_type": "code", + "execution_count": 78, + "id": "17720a50", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Date', 'Type', 'Country', 'Area', 'Location', 'Activity', 'Name',\n", + " 'Sex', 'Age', 'Injury', 'Fatal (Y/N)', 'Species',\n", + " 'Investigator or Source', 'pdf', 'href formula', 'href',\n", + " 'Case Number.1', 'Case Number.2'],\n", + " dtype='object')" + ] + }, + "execution_count": 78, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 79, + "id": "b5910f98", + "metadata": {}, + "outputs": [ + { + "name": "stderr", + "output_type": "stream", + "text": [ + "C:\\Users\\52555\\AppData\\Local\\Temp\\ipykernel_28076\\4209344751.py:1: SettingWithCopyWarning: \n", + "A value is trying to be set on a copy of a slice from a DataFrame\n", + "\n", + "See the caveats in the documentation: https://pandas.pydata.org/pandas-docs/stable/user_guide/indexing.html#returning-a-view-versus-a-copy\n", + " sharks3.rename(columns={'Fatal (Y/N)': 'Fatal_(Y/N)', 'Investigator or Source':'Investigator_or_Source',\n" + ] + } + ], + "source": [ + "sharks3.rename(columns={'Fatal (Y/N)': 'Fatal_(Y/N)', 'Investigator or Source':'Investigator_or_Source',\n", + " 'href formula' : 'href_formula', 'Case Number.1' : 'Case_Number.1', \n", + " 'Case Number.2':'Case_Number.2'}, inplace=True)" + ] + }, + { + "cell_type": "code", + "execution_count": 80, + "id": "3971e2d4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/plain": [ + "Index(['Date', 'Type', 'Country', 'Area', 'Location', 'Activity', 'Name',\n", + " 'Sex', 'Age', 'Injury', 'Fatal_(Y/N)', 'Species',\n", + " 'Investigator_or_Source', 'pdf', 'href_formula', 'href',\n", + " 'Case_Number.1', 'Case_Number.2'],\n", + " dtype='object')" + ] + }, + "execution_count": 80, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.columns" + ] + }, + { + "cell_type": "code", + "execution_count": 92, + "id": "27c8aa71", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal_(Y/N)SpeciesInvestigator_or_Sourcepdfhref_formulahrefCase_Number.1Case_Number.2
125-Jun-2018BoatingUSACaliforniaOceanside, San Diego CountyPaddlingJulie WolfeF57No injury to occupant, outrigger canoe and pad...FalseWhite sharkR. Collier, GSAF2018.06.25-Wolfe.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.252018.06.25
218-Jun-2018UnprovokedUSAGeorgiaSt. Simon Island, Glynn CountyStandingAdyson McNeelyF11Minor injury to left thighFalseWhite sharkK.McMurray, TrackingSharks.com2018.06.18-McNeely.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.182018.06.18
309-Jun-2018InvalidUSAHawaiiHabush, OahuSurfingJohn DengesM48Injury to left lower leg from surfboard skegFalseWhite sharkK.McMurray, TrackingSharks.com2018.06.09-Denges.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.092018.06.09
408-Jun-2018UnprovokedAUSTRALIANew South WalesArrawarra HeadlandSurfingmaleM48Minor injury to lower legFalse2 m sharkB. Myatt, GSAF2018.06.08-Arrawarra.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.082018.06.08
504-Jun-2018ProvokedMEXICOColimaLa TiclaFree divingGustavo RamosM48Lacerations to leg & hand shark PROVOKED INCIDENTFalseTiger shark, 3mA .Kipper2018.06.04-Ramos.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.042018.06.04
.........................................................
6268Before 1903UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleM16fatalTrueSaid to involve a grey nurse shark that leapt ...H. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0005ND.0005
6269Before 1903UnprovokedAUSTRALIAWestern AustraliaWestern AustraliaPearl divingAhmunM16fatalTrueSaid to involve a grey nurse shark that leapt ...H. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0004ND.0004
62701900-1905UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelM16fatalTrueSaid to involve a grey nurse shark that leapt ...F. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0003ND.0003
62711883-1889UnprovokedPANAMAPanama Bay 8ºN, 79ºWPanama Bay 8ºN, 79ºWSwimmingJules PattersonM16fatalTrueSaid to involve a grey nurse shark that leapt ...The Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0002ND.0002
62721845-1853UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15fatalTrueSaid to involve a grey nurse shark that leapt ...S.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0001ND.0001
\n", + "

6272 rows × 18 columns

\n", + "
" + ], + "text/plain": [ + " Date Type Country Area \\\n", + "1 25-Jun-2018 Boating USA California \n", + "2 18-Jun-2018 Unprovoked USA Georgia \n", + "3 09-Jun-2018 Invalid USA Hawaii \n", + "4 08-Jun-2018 Unprovoked AUSTRALIA New South Wales \n", + "5 04-Jun-2018 Provoked MEXICO Colima \n", + "... ... ... ... ... \n", + "6268 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6269 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6270 1900-1905 Unprovoked USA North Carolina \n", + "6271 1883-1889 Unprovoked PANAMA Panama Bay 8ºN, 79ºW \n", + "6272 1845-1853 Unprovoked CEYLON (SRI LANKA) Eastern Province \n", + "\n", + " Location Activity \\\n", + "1 Oceanside, San Diego County Paddling \n", + "2 St. Simon Island, Glynn County Standing \n", + "3 Habush, Oahu Surfing \n", + "4 Arrawarra Headland Surfing \n", + "5 La Ticla Free diving \n", + "... ... ... \n", + "6268 Roebuck Bay Diving \n", + "6269 Western Australia Pearl diving \n", + "6270 Ocracoke Inlet Swimming \n", + "6271 Panama Bay 8ºN, 79ºW Swimming \n", + "6272 Below the English fort, Trincomalee Swimming \n", + "\n", + " Name Sex Age \\\n", + "1 Julie Wolfe F 57 \n", + "2 Adyson McNeely F 11 \n", + "3 John Denges M 48 \n", + "4 male M 48 \n", + "5 Gustavo Ramos M 48 \n", + "... ... .. .. \n", + "6268 male M 16 \n", + "6269 Ahmun M 16 \n", + "6270 Coast Guard personnel M 16 \n", + "6271 Jules Patterson M 16 \n", + "6272 male M 15 \n", + "\n", + " Injury Fatal_(Y/N) \\\n", + "1 No injury to occupant, outrigger canoe and pad... False \n", + "2 Minor injury to left thigh False \n", + "3 Injury to left lower leg from surfboard skeg False \n", + "4 Minor injury to lower leg False \n", + "5 Lacerations to leg & hand shark PROVOKED INCIDENT False \n", + "... ... ... \n", + "6268 fatal True \n", + "6269 fatal True \n", + "6270 fatal True \n", + "6271 fatal True \n", + "6272 fatal True \n", + "\n", + " Species \\\n", + "1 White shark \n", + "2 White shark \n", + "3 White shark \n", + "4 2 m shark \n", + "5 Tiger shark, 3m \n", + "... ... \n", + "6268 Said to involve a grey nurse shark that leapt ... \n", + "6269 Said to involve a grey nurse shark that leapt ... \n", + "6270 Said to involve a grey nurse shark that leapt ... \n", + "6271 Said to involve a grey nurse shark that leapt ... \n", + "6272 Said to involve a grey nurse shark that leapt ... \n", + "\n", + " Investigator_or_Source pdf \\\n", + "1 R. Collier, GSAF 2018.06.25-Wolfe.pdf \n", + "2 K.McMurray, TrackingSharks.com 2018.06.18-McNeely.pdf \n", + "3 K.McMurray, TrackingSharks.com 2018.06.09-Denges.pdf \n", + "4 B. Myatt, GSAF 2018.06.08-Arrawarra.pdf \n", + "5 A .Kipper 2018.06.04-Ramos.pdf \n", + "... ... ... \n", + "6268 H. Taunton; N. Bartlett, p. 234 ND-0005-RoebuckBay.pdf \n", + "6269 H. Taunton; N. Bartlett, pp. 233-234 ND-0004-Ahmun.pdf \n", + "6270 F. Schwartz, p.23; C. Creswell, GSAF ND-0003-Ocracoke_1900-1905.pdf \n", + "6271 The Sun, 10/20/1938 ND-0002-JulesPatterson.pdf \n", + "6272 S.W. Baker ND-0001-Ceylon.pdf \n", + "\n", + " href_formula \\\n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "... ... \n", + "6268 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6269 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6270 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6271 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6272 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " href Case_Number.1 \\\n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.25 \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.18 \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.09 \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.08 \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.04 \n", + "... ... ... \n", + "6268 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0005 \n", + "6269 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0004 \n", + "6270 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0003 \n", + "6271 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0002 \n", + "6272 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0001 \n", + "\n", + " Case_Number.2 \n", + "1 2018.06.25 \n", + "2 2018.06.18 \n", + "3 2018.06.09 \n", + "4 2018.06.08 \n", + "5 2018.06.04 \n", + "... ... \n", + "6268 ND.0005 \n", + "6269 ND.0004 \n", + "6270 ND.0003 \n", + "6271 ND.0002 \n", + "6272 ND.0001 \n", + "\n", + "[6272 rows x 18 columns]" + ] + }, + "execution_count": 92, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3.reindex(columns =['Date', 'Type', 'Country', 'Area', 'Location', 'Activity', 'Name',\n", + " 'Sex', 'Age', 'Injury', 'Fatal_(Y/N)', 'Species',\n", + " 'Investigator_or_Source', 'pdf', 'href_formula', 'href',\n", + " 'Case_Number.1', 'Case_Number.2'])" + ] + }, + { + "cell_type": "code", + "execution_count": 93, + "id": "8071ead4", + "metadata": {}, + "outputs": [ + { + "data": { + "text/html": [ + "
\n", + "\n", + "\n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + " \n", + "
DateTypeCountryAreaLocationActivityNameSexAgeInjuryFatal_(Y/N)SpeciesInvestigator_or_Sourcepdfhref_formulahrefCase_Number.1Case_Number.2
125-Jun-2018BoatingUSACaliforniaOceanside, San Diego CountyPaddlingJulie WolfeF57No injury to occupant, outrigger canoe and pad...FalseWhite sharkR. Collier, GSAF2018.06.25-Wolfe.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.252018.06.25
218-Jun-2018UnprovokedUSAGeorgiaSt. Simon Island, Glynn CountyStandingAdyson McNeelyF11Minor injury to left thighFalseWhite sharkK.McMurray, TrackingSharks.com2018.06.18-McNeely.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.182018.06.18
309-Jun-2018InvalidUSAHawaiiHabush, OahuSurfingJohn DengesM48Injury to left lower leg from surfboard skegFalseWhite sharkK.McMurray, TrackingSharks.com2018.06.09-Denges.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.092018.06.09
408-Jun-2018UnprovokedAUSTRALIANew South WalesArrawarra HeadlandSurfingmaleM48Minor injury to lower legFalse2 m sharkB. Myatt, GSAF2018.06.08-Arrawarra.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.082018.06.08
504-Jun-2018ProvokedMEXICOColimaLa TiclaFree divingGustavo RamosM48Lacerations to leg & hand shark PROVOKED INCIDENTFalseTiger shark, 3mA .Kipper2018.06.04-Ramos.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...2018.06.042018.06.04
.........................................................
6268Before 1903UnprovokedAUSTRALIAWestern AustraliaRoebuck BayDivingmaleM16fatalTrueSaid to involve a grey nurse shark that leapt ...H. Taunton; N. Bartlett, p. 234ND-0005-RoebuckBay.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0005ND.0005
6269Before 1903UnprovokedAUSTRALIAWestern AustraliaWestern AustraliaPearl divingAhmunM16fatalTrueSaid to involve a grey nurse shark that leapt ...H. Taunton; N. Bartlett, pp. 233-234ND-0004-Ahmun.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0004ND.0004
62701900-1905UnprovokedUSANorth CarolinaOcracoke InletSwimmingCoast Guard personnelM16fatalTrueSaid to involve a grey nurse shark that leapt ...F. Schwartz, p.23; C. Creswell, GSAFND-0003-Ocracoke_1900-1905.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0003ND.0003
62711883-1889UnprovokedPANAMAPanama Bay 8ºN, 79ºWPanama Bay 8ºN, 79ºWSwimmingJules PattersonM16fatalTrueSaid to involve a grey nurse shark that leapt ...The Sun, 10/20/1938ND-0002-JulesPatterson.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0002ND.0002
62721845-1853UnprovokedCEYLON (SRI LANKA)Eastern ProvinceBelow the English fort, TrincomaleeSwimmingmaleM15fatalTrueSaid to involve a grey nurse shark that leapt ...S.W. BakerND-0001-Ceylon.pdfhttp://sharkattackfile.net/spreadsheets/pdf_di...http://sharkattackfile.net/spreadsheets/pdf_di...ND.0001ND.0001
\n", + "

6272 rows × 18 columns

\n", + "
" + ], + "text/plain": [ + " Date Type Country Area \\\n", + "1 25-Jun-2018 Boating USA California \n", + "2 18-Jun-2018 Unprovoked USA Georgia \n", + "3 09-Jun-2018 Invalid USA Hawaii \n", + "4 08-Jun-2018 Unprovoked AUSTRALIA New South Wales \n", + "5 04-Jun-2018 Provoked MEXICO Colima \n", + "... ... ... ... ... \n", + "6268 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6269 Before 1903 Unprovoked AUSTRALIA Western Australia \n", + "6270 1900-1905 Unprovoked USA North Carolina \n", + "6271 1883-1889 Unprovoked PANAMA Panama Bay 8ºN, 79ºW \n", + "6272 1845-1853 Unprovoked CEYLON (SRI LANKA) Eastern Province \n", + "\n", + " Location Activity \\\n", + "1 Oceanside, San Diego County Paddling \n", + "2 St. Simon Island, Glynn County Standing \n", + "3 Habush, Oahu Surfing \n", + "4 Arrawarra Headland Surfing \n", + "5 La Ticla Free diving \n", + "... ... ... \n", + "6268 Roebuck Bay Diving \n", + "6269 Western Australia Pearl diving \n", + "6270 Ocracoke Inlet Swimming \n", + "6271 Panama Bay 8ºN, 79ºW Swimming \n", + "6272 Below the English fort, Trincomalee Swimming \n", + "\n", + " Name Sex Age \\\n", + "1 Julie Wolfe F 57 \n", + "2 Adyson McNeely F 11 \n", + "3 John Denges M 48 \n", + "4 male M 48 \n", + "5 Gustavo Ramos M 48 \n", + "... ... .. .. \n", + "6268 male M 16 \n", + "6269 Ahmun M 16 \n", + "6270 Coast Guard personnel M 16 \n", + "6271 Jules Patterson M 16 \n", + "6272 male M 15 \n", + "\n", + " Injury Fatal_(Y/N) \\\n", + "1 No injury to occupant, outrigger canoe and pad... False \n", + "2 Minor injury to left thigh False \n", + "3 Injury to left lower leg from surfboard skeg False \n", + "4 Minor injury to lower leg False \n", + "5 Lacerations to leg & hand shark PROVOKED INCIDENT False \n", + "... ... ... \n", + "6268 fatal True \n", + "6269 fatal True \n", + "6270 fatal True \n", + "6271 fatal True \n", + "6272 fatal True \n", + "\n", + " Species \\\n", + "1 White shark \n", + "2 White shark \n", + "3 White shark \n", + "4 2 m shark \n", + "5 Tiger shark, 3m \n", + "... ... \n", + "6268 Said to involve a grey nurse shark that leapt ... \n", + "6269 Said to involve a grey nurse shark that leapt ... \n", + "6270 Said to involve a grey nurse shark that leapt ... \n", + "6271 Said to involve a grey nurse shark that leapt ... \n", + "6272 Said to involve a grey nurse shark that leapt ... \n", + "\n", + " Investigator_or_Source pdf \\\n", + "1 R. Collier, GSAF 2018.06.25-Wolfe.pdf \n", + "2 K.McMurray, TrackingSharks.com 2018.06.18-McNeely.pdf \n", + "3 K.McMurray, TrackingSharks.com 2018.06.09-Denges.pdf \n", + "4 B. Myatt, GSAF 2018.06.08-Arrawarra.pdf \n", + "5 A .Kipper 2018.06.04-Ramos.pdf \n", + "... ... ... \n", + "6268 H. Taunton; N. Bartlett, p. 234 ND-0005-RoebuckBay.pdf \n", + "6269 H. Taunton; N. Bartlett, pp. 233-234 ND-0004-Ahmun.pdf \n", + "6270 F. Schwartz, p.23; C. Creswell, GSAF ND-0003-Ocracoke_1900-1905.pdf \n", + "6271 The Sun, 10/20/1938 ND-0002-JulesPatterson.pdf \n", + "6272 S.W. Baker ND-0001-Ceylon.pdf \n", + "\n", + " href_formula \\\n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "... ... \n", + "6268 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6269 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6270 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6271 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "6272 http://sharkattackfile.net/spreadsheets/pdf_di... \n", + "\n", + " href Case_Number.1 \\\n", + "1 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.25 \n", + "2 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.18 \n", + "3 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.09 \n", + "4 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.08 \n", + "5 http://sharkattackfile.net/spreadsheets/pdf_di... 2018.06.04 \n", + "... ... ... \n", + "6268 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0005 \n", + "6269 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0004 \n", + "6270 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0003 \n", + "6271 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0002 \n", + "6272 http://sharkattackfile.net/spreadsheets/pdf_di... ND.0001 \n", + "\n", + " Case_Number.2 \n", + "1 2018.06.25 \n", + "2 2018.06.18 \n", + "3 2018.06.09 \n", + "4 2018.06.08 \n", + "5 2018.06.04 \n", + "... ... \n", + "6268 ND.0005 \n", + "6269 ND.0004 \n", + "6270 ND.0003 \n", + "6271 ND.0002 \n", + "6272 ND.0001 \n", + "\n", + "[6272 rows x 18 columns]" + ] + }, + "execution_count": 93, + "metadata": {}, + "output_type": "execute_result" + } + ], + "source": [ + "sharks3" + ] + }, + { + "cell_type": "markdown", + "id": "45e3158c", + "metadata": {}, + "source": [ + "# 17. Exporting data frame as .csv file " + ] + }, + { + "cell_type": "code", + "execution_count": 96, + "id": "39ff846b", + "metadata": {}, + "outputs": [], + "source": [ + "from pathlib import Path\n", + "filepath = Path('Sharks_clean.csv') \n", + "filepath.parent.mkdir(parents=True, exist_ok=True) \n", + "sharks3.to_csv(filepath)" + ] + }, + { + "cell_type": "code", + "execution_count": null, + "id": "fa8e9711", + "metadata": {}, + "outputs": [], + "source": [] + } + ], + "metadata": { + "kernelspec": { + "display_name": "Python 3 (ipykernel)", + "language": "python", + "name": "python3" + }, + "language_info": { + "codemirror_mode": { + "name": "ipython", + "version": 3 + }, + "file_extension": ".py", + "mimetype": "text/x-python", + "name": "python", + "nbconvert_exporter": "python", + "pygments_lexer": "ipython3", + "version": "3.10.3" + } + }, + "nbformat": 4, + "nbformat_minor": 5 +} diff --git a/Sharks_clean.csv b/Sharks_clean.csv new file mode 100644 index 00000000..26a114e7 --- /dev/null +++ b/Sharks_clean.csv @@ -0,0 +1,6286 @@ +,Date,Type,Country,Area,Location,Activity,Name,Sex,Age,Injury,Fatal_(Y/N),Species,Investigator_or_Source,pdf,href_formula,href,Case_Number.1,Case_Number.2 +1,25-Jun-2018,Boating,USA,California,"Oceanside, San Diego County",Paddling,Julie Wolfe,F,57,"No injury to occupant, outrigger canoe and paddle damaged",False,White shark,"R. Collier, GSAF",2018.06.25-Wolfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.25-Wolfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.25-Wolfe.pdf,2018.06.25,2018.06.25 +2,18-Jun-2018,Unprovoked,USA,Georgia,"St. Simon Island, Glynn County",Standing,Adyson McNeely ,F,11,Minor injury to left thigh,False,White shark,"K.McMurray, TrackingSharks.com",2018.06.18-McNeely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.18-McNeely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.18-McNeely.pdf,2018.06.18,2018.06.18 +3,09-Jun-2018,Invalid,USA,Hawaii,"Habush, Oahu",Surfing,John Denges,M,48,Injury to left lower leg from surfboard skeg,False,White shark,"K.McMurray, TrackingSharks.com",2018.06.09-Denges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.09-Denges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.09-Denges.pdf,2018.06.09,2018.06.09 +4,08-Jun-2018,Unprovoked,AUSTRALIA,New South Wales,Arrawarra Headland,Surfing,male,M,48,Minor injury to lower leg,False,2 m shark,"B. Myatt, GSAF",2018.06.08-Arrawarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.08-Arrawarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.08-Arrawarra.pdf,2018.06.08,2018.06.08 +5,04-Jun-2018,Provoked,MEXICO,Colima,La Ticla,Free diving,Gustavo Ramos ,M,48,Lacerations to leg & hand shark PROVOKED INCIDENT,False,"Tiger shark, 3m",A .Kipper,2018.06.04-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.04-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.04-Ramos.pdf,2018.06.04,2018.06.04 +6,03-Jun-2018,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock, Ballina",Kite surfing,Chris …,M,48,"No injury, board bitten",False,"Tiger shark, 3m","Daily Telegraph, 6/4/2018",2018.06.03.b-FlatRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.03.b-FlatRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.03.b-FlatRock.pdf,2018.06.03.b,2018.06.03.b +7,03-Jun-2018,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Swimming,Jose Ernesto da Silva ,M,18,fatal,True,Tiger shark,"Diario de Pernambuco, 6/4/2018",2018.06.03.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.03.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.06.03.a-daSilva.pdf,2018.06.03.a,2018.06.03.a +8,27-May-2018,Unprovoked,USA,Florida,"Lighhouse Point Park, Ponce Inlet, Volusia County",Fishing,male,M,52,Minor injury to foot. PROVOKED INCIDENT,False,"Lemon shark, 3'","K. McMurray, TrackingSharks.com",2018.05.27-Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.27-Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.27-Ponce.pdf,2018.05.27,2018.05.27 +9,26-May-2018,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Walking,Cody High,M,15,Lower left leg bitten,False,"Bull shark, 6'","K.McMurray, TrackingSharks.com",2018.05.26.b-High.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.26.b-High.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.26.b-High.pdf,2018.05.26.b,2018.05.26.b +10,26-May-2018,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,male,M,12,Minor injury to foot,False,"Bull shark, 6'","K. McMurray, Tracking Sharks.com",2018.05.26.a-DaytonaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.26.a-DaytonaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.26.a-DaytonaBeach.pdf,2018.05.26.a,2018.05.26.a +11,24-May-2018,Provoked,AUSTRALIA,Queensland,Cairns Aquarium,Feeding sharks,male,M,32,Minor bite to hand by captive shark. PROVOKED INCIDENT,False,Grey reef shark,"ABC.net.au ,05/24/2018",2018.05.24-CairnsAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.24-CairnsAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.24-CairnsAquarium.pdf,2018.05.24,2018.05.24 +12,21-May-2018,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Boogie boarding,Trey de Boer,M,10,Injuries to lower right leg and foot,False,Grey reef shark,"C. Creswell, GSAF",2018.05.21-deBoer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.21-deBoer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.21-deBoer.pdf,2018.05.21,2018.05.21 +13,13-May-2018,Unprovoked,USA,South Carolina,"Hilton Head Island, Beaufort County",Swimming,Jei Turrell,M,10,Severe bite to right forearm,False,Grey reef shark,"C. Creswell, GSAF & K. McMurray TrackingSharks.com",2018.05.13.b-Turrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.13.b-Turrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.13.b-Turrell.pdf,2018.05.13.b,2018.05.13.b +14,13-May-2018,Invalid,ENGLAND,Cornwall,Off Land's End,Fishing,Max Berryman,M,21,Injured by teeth of a dead porbeagle shark he was tossing overboard.,False,Invalid incident,"K. McMurray, TrackingSharks.com",2018.05.13.a-Berryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.13.a-Berryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.13.a-Berryman.pdf,2018.05.13.a,2018.05.13.a +15,May 2018,Provoked,AUSTRALIA,Westerm Australia,Dugong Bay,Feeding sharks,Melisa Brunning,F,34,Shallow lacerations to finger PROVOKED INCIDENT,False,"Tawny nurse shark, 2m","Perth Now, 6/30/2018",2018.05.00-Brunning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.00-Brunning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.00-Brunning.pdf,2018.05.00,2018.05.00 +16,12-May-2018,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,male,M,34,"Minor injury, marks on board",False,"Tawny nurse shark, 2m","B.Jacob, Dispatch Live, 5/12/2018",2018.05.12-EastLondon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.12-EastLondon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.12-EastLondon.pdf,2018.05.12,2018.05.12 +17,09-May-2018,Questionable,AUSTRALIA,New South Wales,"Sharpes Beach, Ballina",Surfing,male,M,34,"No injury, surfboard damaged",False,Shark involvement not confirmed,"B. Myatt, GSAF",2018.05.09-SharpesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.09-SharpesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.05.09-SharpesBeach.pdf,2018.05.09,2018.05.09 +18,Reported 30-Apr-2018,Unprovoked,THAILAND,Hua Hin,Sai Noi Beach,Swimming,female,M,34,Minor injury to ankle,False,Shark involvement not confirmed,"K. McMurray, TrackingSharks.com",2018.04.30.R-Thailand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.30.R-Thailand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.30.R-Thailand.pdf,2018.04.30.R,2018.04.30.R +19,28-Apr-2018,Unprovoked,COSTA RICA,Cocos Island,Manuelita,Scuba diving,male,M,30,"No injury, shark bit scuba gear",False,Tiger shark,Costa Rica Star. 4/28/2018,2018.04.28.b-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.28.b-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.28.b-CostaRica.pdf,2018.04.28.b,2018.04.28.b +20,28-Apr-2018,Unprovoked,AUSTRALIA,Western Australia,Gearys Beach,Surfing,Adam Murray,M,30,"No injury, knocked off board by shark",False,Tiger shark,"B. Myatt, GSAF",2018.04.28.a-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.28.a-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.28.a-Murray.pdf,2018.04.28.a,2018.04.28.a +21,25-Apr-2018,Questionable,AUSTRALIA,New South Wales,Lennox Head,Surfing,Matthew Lee,M,30,No injury,False,Questionable,"B. Myatt, GSAF",2018.04.25.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.25.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.25.b-Lee.pdf,2018.04.25.b,2018.04.25.b +22,25-Apr-2018,Unprovoked,AUSTRALIA,Western Australia,"Surfers Point, Prevelly",Surfing,Rob Bruce,M,60,"No injury, knocked off board by shark",False,3 m shark,"B.Myatt, GSAF",2018.04.25.a-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.25.a-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.25.a-Bruce.pdf,2018.04.25.a,2018.04.25.a +23,24-Apr-2018,Unprovoked,AUSTRALIA,Western Australia,"South Point, Gracetown",Surfing,Nathan Burch,M,60,"No injury, shark struck his leg",False,"White shark, 3.5 m","B. Myatt, GSAF",2018.04.24-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.24-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.24-Burch.pdf,2018.04.24,2018.04.24 +24,23-Apr-2018,Unprovoked,MALDIVES,Alifu Alifu Atoll,Madoogali,Fishing,Ahmed Rasheed,M,32,5-inch cut to hand,False,Tiger shark,"K. McMurray, TrackingSharks.com",2018.04.23-Maldives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.23-Maldives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.23-Maldives.pdf,2018.04.23,2018.04.23 +25,22-Apr-2018,Unprovoked,SOUTH AFRICA,Western Cape Province,"Robberg Beach, Plettenberg Bay",Paddle-skiing,male,M,33,"No injury, shark bit hole in ski",False,"White shark, 2.5 m","Africa News Agency, 4/22/2018",2018.04.22-PlettenbergBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.22-PlettenbergBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.22-PlettenbergBay.pdf,2018.04.22,2018.04.22 +26,19-Apr-2018,Unprovoked,USA,Hawaii,"Shipwreck’s Beach, Keoneloa Bay, Kauai",Body boarding,Dylan McWilliams,M,29,Lacerations to right lower leg,False,6' shark,"The Garden Island, 4/19/2018",2018.04.19-McWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.19-McWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.19-McWilliams.pdf,2018.04.19,2018.04.19 +27,15-Apr-2018,Unprovoked,THAILAND,Hua Hin,Sai Noi Beach,Swimming,Werner Danielsen,M,54,Lacerations to foot and ankle,False,Juvenile bull shark,"Straits Times, 4/16/2018",2018.04.15.d-Thailand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.d-Thailand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.d-Thailand.pdf,2018.04.15.d,2018.04.15.d +28,15-Apr-2018,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Pablo de Melo,M,34,"Multiple severe injuries to arms and leg, leg subsequently surgically amputated",False,Juvenile bull shark,"Globo, 4/16/2018",2018.04.15.c-deMelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.c-deMelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.c-deMelo.pdf,2018.04.15.c,2018.04.15.c +29,15-Apr-2018,Unprovoked,AUSTRALIA,Western Australia,"Lefthanders, Margaret River Area",Surfing,Jason Longrass,M,41,Laceration to right thigh,False,Juvenile bull shark,"B.Myatt, GSAF",2018.04.15.b-Longrass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.b-Longrass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.b-Longrass.pdf,2018.04.15.b,2018.04.15.b +30,15-Apr-2018,Unprovoked,AUSTRALIA,Western Australia,"Cobblestones, Margaret River Area",Surfing,Alejandro Travaglini,M,37,Lacerations to legs,False,Juvenile bull shark,"B.Myatt, GSAF",2018.04.15.a-Travaglini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.a-Travaglini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.15.a-Travaglini.pdf,2018.04.15.a,2018.04.15.a +31,14-Apr-2018,Unprovoked,BAHAMAS,New Providence,Nirvana Beach,Surfing,Bruce Rowan,M,37,No Injury. Shark swam away with the surf board,False,Tiger shark,"Tribune242,",2018.04.14-Rowan.pff,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.14-Rowan.pff,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.14-Rowan.pff,2018.04.14,2018.04.14 +32,Reported 10-Apr-2018,Invalid,BRAZIL,Alagoas,"Praia de Sauaçuhy, Maceió",Fishing,Josias Paz,M,56,Injury to ankle from marine animal trapped in weir PROVOKED INCIDENT. ,False,Shark involvement not confirmed,"K. McMurray, TrackingSharks.com",2018.04.10.R-Paz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.10.R-Paz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.10.R-Paz.pdf,2018.04.10.R,2018.04.10.R +33,09-Apr-2018,Unprovoked,NEW CALEDONIA,"Magenta Beach, Noumea","Magenta Beach, Noumea",Windsurfing,"Les Nouvelles Caledoniennes, 4/10/2018",,56,"No injury, shark bit board",False,2 m shark,"Les Nouvelles Caledoniennes, 4/10/2018",2018.04.09-Magenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.09-Magenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.09-Magenta.pdf,2018.04.09,2018.04.09 +34,05-Apr-2018,Unprovoked,BAHAMAS,Bimini,Bimini,Swimming,Shane McConnell,M,12,"2 puncture wounds to left foot, abrasion to right foot",False,Bull shark,"K. McMurray, TrackingSharks.com",2018.04.05-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.05-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.05-McConnell.pdf,2018.04.05,2018.04.05 +35,03-Apr-2018,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Surfing,Ross Spowart,M,19,Lacerations to left knee & lower leg,False,White shark,"K. McMurray, TrackingSharks.com",2018.04.03-StFrancisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.03-StFrancisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.04.03-StFrancisBay.pdf,2018.04.02,2018.04.03 +36,31-Mar-2018,Unprovoked,USA,Hawaii,Kukio Beach,Stand-Up Paddleboarding,male,M,25,Injuries to right leg & hand,False,"Tiger shark, 12'","Khon2, 3/31/2018",2018.03.31-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.31-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.31-Hawaii.pdf,2018.03.31,2018.03.31 +37,14-Mar-2018,Unprovoked,AUSTRALIA,Western Australia,Waterman's Bay,Wading,Luke Guy & Finn Bald,M,10,Minor injuries to legs,False,Wobbegong shark,"B. Myatt, GSAF",2018.03.14-WatermansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.14-WatermansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.14-WatermansBay.pdf,2018.03.14,2018.03.14 +38,9-Mar-2018,Unprovoked,AUSTRALIA,Victoria,Lorne,Swimming,Rob Crossland,M,69,"No injury, said to have been charged by sharks several times",False,3.5 m shark,"B. Myatt, GSAF",2018.03.09.b-Crossland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.09.b-Crossland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.09.b-Crossland.pdf,2018.03.09.b,2018.03.09.b +39,9-Mar-2018,Unprovoked,AUSTRALIA,Victoria,Winkipop,Surfing,Lachie Brown,M,18,"Minor injury, ankle grazed",False,1.8 m shark,"B. Myatt, GSAF",2018.03.09.a-Weight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.09.a-Weight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.03.09.a-Weight.pdf,2018.03.09.a,2018.03.09.a +40,24-Feb-2018,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Scuba Diving,Elton Polly,M,38, The shark & man simply collided; neither were injured,False,Blacktip shark,"International Business Times, 3/1/2018",2018.02.24-Polly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.24-Polly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.24-Polly.pdf,2018.02.24,2018.02.24 +41,23-Feb-2018,Unprovoked,AUSTRALIA,New South Wales,"Little Congwong Beach, La Perouse ",Swimming,Anna Shurapey ,F,55,Laceratons to right leg & foot,False,"Juvenile white shark, 2.7 to 3.2 m","B. Myatt, GSAF",2018.02.23-Shurapey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.23-Shurapey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.23-Shurapey.pdf,2018.02.23,2018.02.23 +42,18-Feb-2018,Provoked,AUSTRALIA,Victoria,Westernport Bay,Kayak fishing for sharks,Brett Palmer,M,34,"Shark rammed kayak, no injury to occupant PROVOKED INCIDENT",False,"Juvenile white shark, 2.7 to 3.2 m","B. Myatt, GSAF",2018.02.17-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.17-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.17-Palmer.pdf,2018.02.17,2018.02.17 +43,15-Feb-2018,Unprovoked,AUSTRALIA,New South Wales,"Surf Beach, Kiama",Walking,Adam Hoare,M,35,Puncture wounds to leff foot & lower leg,False,"Bull shark, 2 m","B. Myatt, GSAF",2018.02.15-Hoare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.15-Hoare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.15-Hoare.pdf,2018.02.15,2018.02.15 +44,14-Feb-2018,Invalid,AUSTRALIA,Queensland,Mooloolaba Beach,Swimming,Sharna Babd,F,35,"Collision / No injury, no attack",False,Possibly a wobbegong,"Sunshine Coast Daily, 2/15/2018",2018.02.14-Babd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.14-Babd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.14-Babd.pdf,2018.02.14,2018.02.14 +45,11-Feb-2018,Invalid,BRAZIL,"Boi Island, Victoria",Espirito Santo,Cleaning fish,Rosalida Souza,F,46,Lacerations to 4 toes of right foot,False,"Injury believed caused by an eel, not a shark",TrackingSharks.com,2018.02.11-Rosilda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.11-Rosilda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.11-Rosilda.pdf,2018.02.11,2018.02.11 +46,03-Feb-2018,Unprovoked,ECUADOR,Galapagos Islands,Santa Fe Island,Snorkeling,Andrew Phipps Newman,M,45,Injuries to right foot,False,Galapagos shark?,"The Standard (UK), 2/6/2018",2018.02.03-Newman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.03-Newman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.03-Newman.pdf,2018.02.03,2018.02.03 +47,01-Feb-2018,Invalid,AUSTRALIA,Western Australia,"Avalon Point, Manurah",Spearfishing,Lucas Martin,M,14,"No injury no attack. This is considerd an ""encounter""",False,2m shark,"The West Australian, 2/2/2018",2018.02.01-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.01-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.02.01-Martin.pdf,2018.02.01,2018.02.01 +48,28-Jan-2018,Unprovoked,AUSTRALIA,Western Australia,Cone Bay,Spearfishing,male,M,18,Injuries to right leg,False,Bull shark,"ABC.net.au, 01/28/2018",2018.01.28-ConeBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.28-ConeBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.28-ConeBay.pdf,2018.01.28,2018.01.28 +49,21-Jan-2018,Unprovoked,NEW CALEDONIA,Nouville,Nouville,Spearfishing,male,M,40s,Injuries to abdomen and arm,False,"Bull shark, 3 m ",TrackingSharks.com,2018.01.21-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.21-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.21-NewCaledonia.pdf,2018.01.21,2018.01.21 +50,14-Jan-2018,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Diving,Mathew Vickers,M,40s,Severe laceration to left forearm,False,Grey reef shark. 2 m,"B. Myatt, GSAF",2018.01.14-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.14-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.14-Vickers.pdf,2018.01.14,2018.01.14 +51,13-Jan-2018,Unprovoked,AUSTRALIA,New South Wales,Martin Islet,Free diving,Callum Stewart,M,28,"No injury, shark took his swimfin",False,"White shark, 3.5 m","B. Myatt, GSAF",2018.01.13-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.13-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.13-Stewart.pdf,2018.01.13,2018.01.13 +52,12-Jan-2018,Unprovoked,BRAZIL,Fernando de Noronha,Conceicao Beach,Surfing,Ricardo Ferrari Bulhoes ,M,20,Minor injury to left forearm,False,small shark,TrackingSharks.com,2018.01.12-Bulhoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.12-Bulhoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.12-Bulhoes.pdf,2018.01.12,2018.01.12 +53,05-Jan-2018,Unprovoked,AUSTRALIA,Western Australia,"South Point, Gracetown",Surfing,Justin ,M,20,Foot bitten,False,Wobbegong shark?,"Perth Now, 1/6/2018",2018.01.05-Justin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.05-Justin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2018.01.05-Justin.pdf,2018.01.05,2018.01.05 +54,31-Dec-2017,Unprovoked,USA,Hawaii,"Hultin's Beach, Oahu",Surfing,Marjorie Mariano,F,54,Severe lacerations to left thigh & knee,False,Tiger shark,"J. Howard, Surfling Now, 1/2/2018",2017.12.31-Mariano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.31-Mariano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.31-Mariano.pdf,2017.12.31,2017.12.31 +55,30-Dec-2017,Unprovoked,USA,California,"Drakes Estero, Point Reyes, Marin County",Surfing,Natalie Jones,F,35,Foot bitten,False,Tiger shark,R. Collier,2017.12.30.Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.30.Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.30.Jones.pdf,2017.12.30,2017.12.30 +56,21-Dec-2017,Provoked,MALAYSIA,Sepang,Bagan Lalang Beach,Fishing / Wading,Sairol Harun,M,24,"Minor injury to thigh, PROVOKED INCIDENT",False,Juvenile nurse shark,TrackingSharks.com,2017.12.21-Harun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.21-Harun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.21-Harun.pdf,2017.12.21,2017.12.21 +57,09-Dec-2017,Unprovoked,BAHAMAS,unknown,unknown,Snorkeling,Sarah Illig-Carroll,F,25,Minor injury to arm,False,Nurse shark. 5',"Daily Star, 12/11/2017",2017.12.09-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.09-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.12.09-Carroll.pdf,2017.12.09,2017.12.09 +58,30-Nov-2017,Unprovoked,COSTA RICA,Cocos Island,Manuelita,Scuba Diving,__ Jimenez,M,26,Serious injury to leg,False,"Tiger shark, female",R. Arauz,2017.11.30.b-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.30.b-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.30.b-Jimenez.pdf,2017.11.30.b,2017.11.30.b +59,30-Nov-2017,Unprovoked,COSTA RICA,Cocos Island,Manuelita,Scuba diving,Rohina Bhandari,F,49,fatal,True,"Tiger shark, female",R. Arauz,2017.11.30.a-Bhandari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.30.a-Bhandari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.30.a-Bhandari.pdf,2017.11.30.a,2017.11.30.a +60,Reported 25-Nov-2017,Sea Disaster,LIBYA, Gars Garabulli, Gars Garabulli,2 boats capsized,31 migrants,,49,fatal,True,Some drowned but other may have been killed by blue sharks,"TG Com 24, 11/25/2017",2017.11.25.R-Libya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.25.R-Libya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.25.R-Libya.pdf,2017.11.25.R,2017.11.25.R +61,24-Nov-2017,Unprovoked,USA,California,"Stillwater Cove, Monterey County",Spearfishing,Grigor Azatian,M,25,Right leg bitten,False,"White shark, 4.6 m","R. Collier, GSAF",2017.11.24-Azatian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.24-Azatian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.24-Azatian.pdf,2017.11.24,2017.11.24 +62,18-Nov-2017,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Kaia Anderson,F,14,Heel bitten,False,"White shark, 4.6 m","Florida Today, 11/21/2017",2017.11.18-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.18-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.18-Anderson.pdf,2017.11.18,2017.11.18 +63,13-Nov-2017,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Surfing,Charlie Fry,M,25,Puncture wounds to left shoulder,False,2 m shark,"B. Myatt, GSAF",2017.11.13-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.13-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.13-Fry.pdf,2017.11.13,2017.11.13 +64,04-Nov-2017,Unprovoked,CUBA,Holquin Province,Guardalavaca Beach,Night bathing,Jesús Cabrera González ,M,22,fatal,True,Tiger shark,TrackingSharks.com,2017.11.04-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.04-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.11.04-Cuba.pdf,2017.11.04,2017.11.04 +65,Reported 31-Oct-2017,Unprovoked,AUSTRALIA,Queensland,Magnetic Island,Snorkeling,Jack Tolley,M,7,Calf injured,False,Cookiecutter shark,"Townsville Bulletin, 10/31/2017",2017.10.21.R-Tolley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.21.R-Tolley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.21.R-Tolley.pdf,2017.10.31.R,2017.10.31.R +66,28-Oct-2017,Unprovoked,AUSTRALIA,New South Wales,Birubi Point,Surfing,male,M,31,Minor injury to foot,False,"Wobbegong shark, 1 m","B. Myatt, GSAF",2017.10.28-Birubi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.28-Birubi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.28-Birubi.pdf,2017.10.28,2017.10.28 +67,26-Oct-2017,Unprovoked,USA,Hawaii,"White Plains Beach, Oahu",Stand-Up Paddleboarding,male,M,31,No injury but shark bit SUP,False,"Wobbegong shark, 1 m","Hawaii News Now, 10/27/2017",2017.10.26-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.26-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.26-Oahu.pdf,2017.10.26,2017.10.26 +68,23-Oct-2017,Unprovoked,MAURITIUS,Pamplemousses ,Le Goulet,Swimming,male,M,31,Minor injury to foot,False,"Wobbegong shark, 1 m","J. LeBlanc, GSAF",2017.10.23.c-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.23.c-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.23.c-Mauritius.pdf,2017.10.23.c,2017.10.23.c +69,23-Oct-2017,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing ,Jason Hartl,M,17,Lacerations to left foot,False,"Wobbegong shark, 1 m","WPBF News, 10/24/2017",2017.10.23.b-Hartl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.23.b-Hartl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.23.b-Hartl.pdf,2017.10.23.b,2017.10.23.b +70,23-Oct-2017,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Swimming,Susan Peteka,F,60,Severe lacerations to left hand & wrist,False,"Wobbegong shark, 1 m","Palm Beach Post, 11/1/2017",2017.10.23.a-Peteka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.23.a-Peteka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.23.a-Peteka.pdf,2017.10.23.a,2017.10.23.a +71,22-Oct-2017,Unprovoked,AUSTRALIA,South Australia,Normanville,Kayaking / Fishing,Sarah Williams,F,15,Minor injuries,False,"White shark, 4.5 m","Nine News, 10/22/2017",2017.10.22-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.22-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.22-Williams.pdf,2017.10.22,2017.10.22 +72,21-Oct-2017,Unprovoked,NEW ZEALAND,North Island,"Off Tapuna Beach, Auckand",Kayaking,David Lomas,M,15,"No injury, shark shook kayak x3 ",False,2 m shark,"New Zealand Herald, 10/22/2017",2017.10.21-Lomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.21-Lomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.21-Lomas.pdf,2017.10.21,2017.10.21 +73,18-Oct-2017,Unprovoked,USA,Florida,"Lantana Beach, Palm Beach County",Swimming,Carlos Iribam,M,15,Puncture wounds & lacerations to foot,False,"Spinner shark, 4 to 5 feet","WPTV, 10/19/2017",2017.10.18-Iribam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.18-Iribam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.18-Iribam.pdf,2017.10.18,2017.10.18 +74,09-Oct-2017,Unprovoked,USA,Hawaii,"Davidsons Beach, Kekaha, Kauai",Surfing,Mitch Milan,M,54,Lacerations to left hand,False,"Tiger shark, 8 to 10 feet","Hawaii News Now, 10/10/2017",2017.10.09-Milan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.09-Milan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.09-Milan.pdf,2017.10.09,2017.10.09 +75,05-Oct-2017,Unprovoked,USA,Hawaii,"Kama‘ole Beach Park, Maui ",Snorkeling,female,F,40,Abrasions,False,8' shark,"Maui Now, 10/5/2017",2017.10.05-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.05-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.05-Hawaii.pdf,2017.10.05,2017.10.05 +76,01-Oct-2017,Invalid,SOUTH AFRICA,Western Cape Province,Dyer Island,Scuba Diving,Bradley Fick,M,31,fatal,True,Death may have been due to drowning,"All Africa, 10/11/2017 ",2017.10.01-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.01-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.10.01-Fick.pdf,2017.10.01,2017.10.01 +77,25-Sep-2017,Unprovoked,USA,Florida,"Hanna Park, Jacksonville, Duval County",Surfing,Justin White,M,31,Lacerations to lower left leg and foot,False,5' shark,"News4Jax, 9/26/2017",2017.09.25.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.25.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.25.b-White.pdf,2017.09.25.b,2017.09.25.b +78,25-Sep-2017,Unprovoked,AUSTRALIA,Western Australia,Gracetown,Surfing,Catherine Vissers,M,31,"No injury, board damaged by shark",False,"White shark, 3.5 m","Stab Magazine, 9/26/2017",2017.09.25.a-Vissers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.25.a-Vissers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.25.a-Vissers.pdf,2017.09.25.a,2017.09.25.a +79,24-Sep-2017,Invalid,USA,New York,Rockaway,Surfing,Michah Behrend,M,33,"Lacerations to right ankle, foot & toe",False,Questionable,"S. Curatolo-Wageman, GSAF",2017.09.24.b-Behrend.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.24.b-Behrend.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.24.b-Behrend.pdf,2017.09.24.b,2017.09.24.b +80,24-Sep-2017,Unprovoked,USA,Florida,Fort Worth,Surfing,male,M,33,Laceration to upper arm,False,4' to 5' shark,"Sun Sentinel, 9/24/2017",2017.09.24.a-FortWorth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.24.a-FortWorth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.24.a-FortWorth.pdf,2017.09.24.a,2017.09.24.a +81,20-Sep-2017,Unprovoked,USA,Florida,Palm Beach County,Surfing,Richard Inniss,M,33,Minor lacerations to sole of left foot,False,4' to 5' shark,"WPTV, 9/25/2017",2017.09.20-Inniss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.20-Inniss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.20-Inniss.pdf,2017.09.20,2017.09.20 +82,16-Sep-2017,Unprovoked,SPAIN,Canary Islands,Gran Canaria ,Body surfing,male,M,13,Lacerations to right foot,False,"Porbeagle, 1.5 m",Turismo La Aldea,2017.09.16.b-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.16.b-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.16.b-GrandCanary.pdf,2017.09.16.b,2017.09.16.b +83,16-Sep-2017,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,28,Lacerations to left foot,False,"Porbeagle, 1.5 m","Orlando Sentinel, 9/16/2017",2017.09.16.a-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.16.a-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.16.a-Volusia.pdf,2017.09.16.a,2017.09.16.a +84,15-Sep-2017,Invalid,SOUTH AFRICA,Western Cape Province,Hawston,Scuba Diving,Wayon Love,M,25,fatal,True,"Porbeagle, 1.5 m","Ground Up, 9/20/2017",2017.09.15.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.15.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.15.b-Love.pdf,2017.09.15.b,2017.09.15.b +85,15-Sep-2017,,SAMOA, Upolu Island,Nofoali’i,Fishing,male,M,25,Injuries to hands and legs,False,"Porbeagle, 1.5 m","Samoa Observer, 9/16/2017",2017.09.15.a-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.15.a-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.15.a-Samoa.pdf,2017.09.15.a,2017.09.15.a +86,Sep-2017,Boating,AUSTRALIA,Westerm Australia,Esperance,Fishing,"B. Myatt, GSAF",,25,"sharks rammed boats, no injury to occupants",False,"White shark, 3.5m","B. Myatt, GSAF",2017.09.14-EsperanceBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.14-EsperanceBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.14-EsperanceBoats.pdf,2017.09.14,2017.09.14 +87,13-Sep-2017,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Benjamin Loyd,M,18,Lacerations to left foot,False,5' to 6' shark,"TrackingSharks.com, 10/22/2017",2017.09.13-Loyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.13-Loyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.13-Loyd.pdf,2017.09.13,2017.09.13 +88,10-Sep-2017,Unprovoked,AUSTRALIA,Westerm Australia,Sam's Creek area,Swimming,male,M,18,Minor injuries,False,5' to 6' shark,"West Australian, 9/11/2017",2017.09.10.b-Samson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.10.b-Samson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.10.b-Samson.pdf,2017.09.10.b,2017.09.10.b +89,10-Sep-2017,Unprovoked,AUSTRALIA,New South Wales,Iluka Beach,Surfing,Abe McGrath,M,35,Minor lacerations to right hip,False,"White shark, 3 to 3.5m ","B. Myatt, GSAF",2017.09.10.a-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.10.a-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.10.a-McGrath.pdf,2017.09.10.a,2017.09.10.a +90,Reported 06-Sep-2017,Unprovoked,SOLOMON ISLANDS,Owarigi Island,Owarigi Island,Spearfishing,Bartholmew,M,35,Foot bitten,False,"White shark, 3 to 3.5m ",BBC,2017.09.06-Bartholomew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.06-Bartholomew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.06-Bartholomew.pdf,2017.09.06.R,2017.09.06.R +91,03-Sep-2017,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,"Swimming, poaching abalone",Sivuyile Xelela,M,35,fatal,True,"White shark, 3 to 3.5m ","All Africa, 10/11/2017",2017.09.03.b-Xelela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.03.b-Xelela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.03.b-Xelela.pdf,2017.09.03.b,2017.09.03.b +92,03-Sep-2017,Unprovoked,JAPAN,Shizuoka Prefecture,Iwata City,Surfing,male,M,42,Injury to ankle & feet,False,"White shark, 3 to 3.5m ","Japan Today, 9/4/2017",2017.09.03.a-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.03.a-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.03.a-Japan.pdf,2017.09.03.a,2017.09.03.a +93,02-Sep-2017,Unprovoked,USA,Florida,"Marathon, Monroe County",Swimming,Ervin Maccarty,M,42,Lacerations to abdomen,False,Nurse shark,NewsFlare,2017.09.02.c-Maccarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.02.c-Maccarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.02.c-Maccarty.pdf,2017.09.02.c,2017.09.02.c +94,02-Sep-2017,Unprovoked,USA,Texas,"South Padre Island, Cameron County",Swimming,female,F,42,Lacerations to foot,False,Nurse shark,"Brownsville Herald, 9/5/2017",2017.09.02.b-SouthPadre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.02.b-SouthPadre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.02.b-SouthPadre.pdf,2017.09.02.b,2017.09.02.b +95,02-Sep-2017,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chase Elmore,M,17,Minor injury to right hand,False,Nurse shark,"Click Orlando, 9/2/2017",2017.09.02.a-Elmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.02.a-Elmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.09.02.a-Elmore.pdf,2017.09.02.a,2017.09.02.a +96,29-Aug-2017,Unprovoked,AUSTRALIA,Victoria,Cathedral Rock,Surfing,Marcel Brundler,M,37,"No injury, board bitten",False,"White shark, 3 m","B. Myatt, GSAF",2017.08.27-Brundler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.27-Brundler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.27-Brundler.pdf,2017.08.29,2017.08.29 +97,27-Aug-2017,Unprovoked,USA,Florida,Bathtub Beach ,Wading,Violet Veatch,F,3,Leg injured,False,"White shark, 3 m","Sun Sentinel, 8/27/2017",2017.08.27-Veatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.27-Veatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.27-Veatch.pdf,2017.08.27,2017.08.27 +98,26-Aug-2017,Invalid,SPAIN,Castellón,Grao de Moncofa,Swimming,female,F,11,Lacerations to left foot,False,Shark involvement questionable,"El Periodico Mediterraneo, 8/27/2017",2017.08.26.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.26.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.26.b-Spain.pdf,2017.08.26.b,2017.08.26.b +99,26-Aug-2017,Unprovoked,NEW ZEALAND,North Island,Off Tutukaka,Canoeing,Matt Kensington,M,11,"No injury, shark bit canoe",False,Shark involvement questionable,"C.Black, GSAF",2017.08.26.a-Kensington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.26.a-Kensington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.26.a-Kensington.pdf,2017.08.26.a,2017.08.26.a +100,23-Aug-2017,Unprovoked,USA,Massachusetts,"Marconi Beach, Wellfleet, Barnstable County",SUP,Cleveland Bigelow,M,69,Not injured by shark but board bitten,False,"White shark, 5' to 7'","Cape Cod Times, 8/23/2017",2017.08.23-Bigelow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.23-Bigelow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.23-Bigelow.pdf,2017.08.23,2017.08.23 +101,18-Aug-2017,Unprovoked,BAHAMAS,unknown,unknown,Spearfishing,male,M,69,Hand injured,False,5' shark,"CBS12, 8/18/2017",2017.08.18-JupiterDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.18-JupiterDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.18-JupiterDiver.pdf,2017.08.18,2017.08.18 +102,10-Aug-2017,Unprovoked,USA,South Carolina,"Sea Pines Resort, Hilton Head Island, Beaufort County",Swimming,Linton Suttle,M,13,Minor cuts to sole & toes of left foot,False,Possibly a juvenile blacktip shark,"C. Creswell, GSAF",2017.08.10-Suttle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.10-Suttle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.10-Suttle.pdf,2017.08.10,2017.08.10 +103,05-Aug-2017,Unprovoked,EGYPT,Red Sea Protectorate,Marsa Ghalib,Snorkeling,Kirsten Schachinger,F,20,Bite to right leg/hip,False,"Oceanic whitetip shark, 1.8 to 2 m","Egyptian government, 8/5/2017",2017.08.05-Schachinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.05-Schachinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.05-Schachinger.pdf,2017.08.05,2017.08.05 +104,03-Aug-2017,Provoked,USA,Massachusetts,"Menauhant Beach, Falmouth, +Barnstable County",Fishing,male,M,34,Foot bitten by landed shark PROVOKED INCIDENT,False,4' shark,"MassLive, 8/4/2017",2017.08.03-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.03-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.03-Massachusetts.pdf,2017.08.03,2017.08.03 +105,01-Aug-2017,Boating,USA,California,"Between Pescadero Point & Bean Hollow Beach, San Mateo County",Kayaking / Fishing,Patrick Conroy,M,34,"No injury, bow of kayak bitten",False,"White shark, 10'","R. Collier, GSAF",2017.08.01-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.01-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.08.01-Conroy.pdf,2017.08.01,2017.08.01 +106,31-Jul-2017,Unprovoked,USA,Florida,"Jacksonvlle, Duval County",Skimboarding,Colton McCarty,M,15,Lacerations to lower leg,False,"White shark, 10'","K. McMurray, Tracking Sharks",2017.07.31.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.31.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.31.pdf,2017.07.31,2017.07.31 +107,29-Jul-2017,Invalid,USA,South Carolina,"Hilton Head Island, Beaufort County",Swimming,Johnny Simatacolos,M,10,Abrasions and cuts to sole of foot,False,A small shark,"C. Creswell, GSAF",2017.07.29.c-Simatacolos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.29.c-Simatacolos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.29.c-Simatacolos.pdf,2017.07.29.c,2017.07.29.c +108,29-Jul-2017,Unprovoked,USA,South Carolina,"DeBordieu Colony, Georgetown County",Swimming,female x 2,F,12,Bite to left thigh / minor injury,False,A small shark,"C. Creswell, GSAF",2017.07.29.a-Georgetown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.29.a-Georgetown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.29.a-Georgetown.pdf,2017.07.29.a,2017.07.29.a +109,27-Jul-2017,Unprovoked,BAHAMAS,New Providence District,Rose Island,Snorkeling,female,F,12,Foot & ankle injured,False,A small shark,"R. Rolle, Tribune 242, 7/28/2017",2017.07.27-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.27-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.27-Bahamas.pdf,2017.07.27,2017.07.27 +110,Reported 26-Jul-2017,Unprovoked,BAHAMAS,40 miles off Grand Bahama Island,40 miles off Grand Bahama Island,Spearfishing,Michael Massey,M,12,Severe lacerations to left hand,False,A small shark,"RevistaJaraysedal.es, 7/26/2017",2017.07.26.R-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.26.R-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.26.R-Massey.pdf,2017.07.26.R,2017.07.26.R +111,24-Jul-2017,Unprovoked,"ST HELENA, British overseas territory",Ascension Island,English Bay,Surfing,Kawika Matsu,M,37,Torso bitten,False,A small shark,"Telegraph UK, 7/28/2017",2017.07.24-Matsu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.24-Matsu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.24-Matsu.pdf,2017.07.24,2017.07.24 +112,23-Jul-2017,Unprovoked,USA,New Jersey,Ventnor,Surfing,Isabella Smith,F,37,Minor injury to hand,False,Sandtiger shark 2',A. Smith,2017.07.23.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.23.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.23.b-Smith.pdf,2017.07.23.b,2017.07.23.b +113,23-Jul-2017,Unprovoked,SPAIN,Majorca,"Estanys Beach, Colonia de Sant",Swimming,female,F,37,Abrasion to arm from shark's rough skin,False,Blue shark 6',"Daily Record, 7/24/2017",2017.07.23.a-Majorca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.23.a-Majorca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.23.a-Majorca.pdf,2017.07.23.a,2017.07.23.a +114,22-Jul-2017,Unprovoked,USA,Florida,"Snipes Point, Monroe County",Swimming,female,F,40,Foot bitten,False,"""A small shark""","NBC Miami, 7/23/2017",2017.07.22-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.22-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.22-Keys.pdf,2017.07.22,2017.07.22 +115,20-Jul-2017,Invalid,USA,South Carolina,"Hilton Head Island, Beaufort County",Swimming,Ellie Rogier,F,8,Foot injured,False,Shark involvement not confirmed,"C. Creswell, GSAF",2017.07.20.c-Rogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.20.c-Rogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.20.c-Rogier.pdf,2017.07.20.c,2017.07.20.c +116,20-Jul-2017,Boating,USA,California,"Stearns Wharf, Santa Barbara",Kayaking,Bret Jackson,M,40,"No injury, kayak bitten",False,"White shark, 11' to 13'","R. Collier, GSAF",2017.07.20.b-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.20.b-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.20.b-Jackson.pdf,2017.07.20.b,2017.07.20.b +117,20-Jul-2017,Unprovoked,USA,California,"Seal Rock, Goleta Beach, Santa Barbara",SUP,Rolf Geyling,M,50,"No injury, shark bit paddleboard",False,"White shark, 8' to 10'","R. Collier, GSAF",2017.07.20.a-Geyling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.20.a-Geyling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.20.a-Geyling.pdf,2017/07.20.a,2017.07.20.a +118,14-Jul-2017,Unprovoked,USA,Washington,"South Beach, Westport, Grays Harbor County",Surfing,MK,M,50,Pulled off board by shark but no injury,False,"White shark, 9'","R. Collier, GSAF",2017.07.14.b-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.14.b-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.14.b-Washington.pdf,2017.07.14.b,2017.07.14.b +119,14-Jul-2017,Unprovoked,AUSTRALIA,Western Australia,Floreat Beach,Surfing,male,M,50,"Minor injury, grazed by shark",False,"White shark, 9'",male,2017.07.14.a-Floreat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.14.a-Floreat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.14.a-Floreat.pdf,2017.07.14.a,2017.07.14.a +120,11-Jul-2017,Boating,USA,California,"Santa Cruz, Santa Cruz County",Kayaking,Steve Lawson,M,50,"No injury, kayak bitten",False,White shark,"R. Collier, GSAF",2017.07.11-Lawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.11-Lawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.11-Lawson.pdf,2017.07.11,2017.07.11 +121,09-Jul-2017,Unprovoked,USA,Florida,"Haulover Beach, Miami-Dade County",Swimming,Elvin Lanza,M,46,Lower legs bitten,False,"Bull shark, 4' to 5'","Miami-Beach Patch, 7/9/2017",2017.07.09-Lanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.09-Lanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.09-Lanza.pdf,2017.07.09,2017.07.09 +122,Reported 07-Jul-2017,Provoked,MEXICO,Tabasco,"Sánchez Magallanes, Cárdenas",Fishing,Andres Ovando Rodriguez,M,32,Hand bitten by hooked shark PROVOKED INCIDENT,False,"Tiger shark, 100 kg","Tabasco Hoy, 7/7/2017",2017.07.07.R-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.07.R-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.07.R-Rodriguez.pdf,2017.07.07.R,2017.07.07.R +123,07-Jul-2017,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Reef, East London",Surfing,Zoe Stein,F,13,"No injury, shark bit surfboard",False,"White shark, 2.5 m","Dispatch Live, 7/7/2027",2017.07.07-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.07-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.07-Stein.pdf,2017.07.07,2017.07.07 +124,02-Jul-2017,Invalid,COMOROS,Anjouan,Moya,Fishing,"Linfo, 7/3/2017",,13,"Skull found in shark, a probable drowning & scavenging",False,Shark involvement prior to death not confirmed,"Linfo, 7/3/2017",2017.07.02-Comoros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.02-Comoros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.07.02-Comoros.pdf,2017.07.02,2017.07.02 +125,29-Jun-2017,Invalid,USA,South Carolina,Wrightsville Beach,Fishing,male,M,13,"Arm injured by hook, not by a shark",False,No shark invovlement ,"C. Creswell, GSAF",2017.06.29-Wrightsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.29-Wrightsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.29-Wrightsville.pdf,2017.06.29,2017.06.29 +126,21-Jun-2017,Unprovoked,USA,South Carolina,"South Forest Beach, Hilton Head Island, Beaufort County",Swimming,Olivia Wallhauser,F,16,Left foot bitten,False,No shark invovlement ,"C. Creswell, GSAF",2017.06.21-Wallhauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.21-Wallhauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.21-Wallhauser.pdf,2017.06.21,2017.06.21 +127,19-Jun-2017,Unprovoked,USA,Florida,"Singer Island, Palm Beach County",Surfing,male,M,16,1 to 2-inch laceration behind knee,False,No shark invovlement ,"CBS12, 6/19/2017",2017.06.19-SingerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.19-SingerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.19-SingerIsland.pdf,2017.06.19,2017.06.19 +128,18-Jun-2017,Unprovoked,USA,South Carolina,"Burkes Beach, Hilton Head, Beaufort County",Swimming,Regan Readnour,F,14,Leg bitten,False,"Bull shark, 4' to 5'","C. Creswell, GSAF",2017.06.18.b-Readnour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.18.b-Readnour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.18.b-Readnour.pdf,2017.06.18.b,2017.06.18.b +129,18-Jun-2017,Unprovoked,REUNION,Roches Noire,Roches Noire,Body boarding,Julien,M,34,"No injury, shark bit surfboard ",False,"Bull shark, 2m","Clincanoo, 6/19/2017",2017.06.18.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.18.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.18.a-Reunion.pdf,2017.06.18.a,2017.06.18.a +130,17-Jun-2017,Unprovoked,SPAIN,Ibiza Island,Playa d’en Bossa,Swimming,male,M,82,2-inch laceration to hand,False,"Bull shark, 2m","Diario de Ibiza, 6/17/'2017",2017.06.17-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.17-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.17-Spain.pdf,2017.06.17,2017.06.17 +131,2017.06.05,Unprovoked,FRENCH POLYNESIA,Marquesas,"Atuona Bay, Hiva Oa Island",Surfing,male,M,82,Injuries to hand and wrist,False,"Bull shark, 2m","Tahiti Infos, 6/6/2017",2017.06.05-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.05-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.05-FrenchPolynesia.pdf,2017.06.05,2017.06.05 +132,Reported 14-Jun-2017,Unprovoked,BAHAMAS,unknown,unknown,Feeding sharks,Carly,F,82,Fingernail pulled off ,False,"Bull shark, 2m","AOL.UK, 6/14/2017",2017.06.14.R-Carly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.14.R-Carly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.14.R-Carly.pdf,2017.06.14.R,2017.06.14.R +133,11-Jun-2017,Unprovoked,AUSTRALIA,Western Australia,"Point Casuarina, Bunbury",Body boarding,Paul Goff,M,48,"No injury, board bitten",False,"White shark, 4 m","WA Today, 6/11/2017",2017.06.11-Goff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.11-Goff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.11-Goff.pdf,2017.06.11,2017.06.11 +134,10-Jun-2017,Unprovoked,AUSTRALIA,Victoria,"Flinders, Mornington Penisula",Surfing,female,F,48,"No injury, knocked off board",False,Seven-gill shark,Victoria Shark Reports,2017.06.10.b-Flinders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.10.b-Flinders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.10.b-Flinders.pdf,2017.06.10.b,2017.06.10.b +135,10-Jun-2017,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Bryan Brock,M,19,Laceration to left foot,False,Seven-gill shark,"Daytona Beach News-Journal, 6/10/2017",2017.06.10.a-Brock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.10.a-Brock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.10.a-Brock.pdf,2017.06.10.a,2017.06.10.a +136,Reported 07-Jun-2017,Unprovoked,UNITED KINGDOM,South Devon,Bantham Beach,Surfing ,Rich Thomson,M,30,"Bruise to leg, cuts to hand sustained when he hit the shark",False,"3m shark, probably a smooth hound","C. Moore, GSAF",2017.06.07.R-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.07.R-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.07.R-Thomson.pdf,2017.06.07.R,2017.06.07.R +137,04-Jun-2017,Unprovoked,USA,Florida,"Middle Sambo Reef off Boca Chica, Monroe County",Spearfishing,Parker Simpson,M,30,Laceration to shin,False,8' shark,"Nine News, 6/7/2017",2017.06.04-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.04-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.04-Simpson.pdf,2017.06.04,2017.06.04 +138,02-Jun-2017,Unprovoked,BAHAMAS,New Providence ,Athol Island,Snorkeling,Tiffany Johnson,F,32,Right forearm severed ,False,Tiger shark,"Tribune 242, 6/2/2017",2017.06.02-Johnson.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.02-Johnson.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.06.02-Johnson.pdf ,2017.06.02,2017.06.02 +139,30-May-2017,Provoked,USA,South Carolina,"Awendaw, Charleston County",Touching a shark,Mackenzie Higgins,F,20,Right hand bitten by hooked shark PROVOKED INCIDENT,False,3' shark,"C. Creswell, GSAF",2017.05.30-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.30-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.30-Higgins.pdf,2017.05.30,2017.05.30 +140,28-May-2017,Unprovoked,USA,Florida,Off Jupiter,Feeding sharks,Randy Jordan,M,20,Lacerations to right arm,False,Tiger shark,"M. Michaelson, GSAF",2017.05.28-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.28-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.28-Jordan.pdf,2017.05.28,2017.05.28 +141,27-May-2017,Invalid,AUSTRALIA,New South Wales,Evans Head,Fishing ,Terry Selwood,M,73,Abrasion to right forearm from pectoral fin of a shark that leapt into his boat,False,Tiger shark,"B. Myatt, GSAF",2017.05.27-Selwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.27-Selwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.27-Selwood.pdf,2017.05.27,2017.05.27 +142,12-May-2017,Unprovoked,UNITED ARAB EMIRATES,"Sharjah, ",Khor Fakkan,Spearfishing,Al Beloushi ,M,41,Right leg severely bitten,False,Tiger shark,"Gulf News, 5/13/2017",2017.05.12-Beloushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.12-Beloushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.12-Beloushi.pdf,2017.05.12,2017.05.12 +143,Reported 06-May-2017,Provoked,AUSTRALIA,Queensland,Weipa,Attempting to lasso a shark,Josh Neille,M,29,Thigh nipped PROVOKED INCIDENT,False,9' shark,"The Sun, 5/6/2017",2017.05.06.R-Neille.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.06.R-Neille.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.06.R-Neille.pdf,2017.05.06.R,2017.05.06.R +144,05-May-2017,Unprovoked,MEXICO,Baja California Sur,"Los Arbolitos, Cabo Pulmo",Snorkeling,Andres Rozada,M,33,fatal,True,9' shark,J. Rozada,2017.05.06-Rozada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.06-Rozada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.06-Rozada.pdf,2017.06.06,2017.05.06 +145,03-May-2017,Invalid,USA,California,"Sunset Beach, Orange County",Surfing,Sophia Raab,F,18,"Laceration to thigh, likely caused by surfboard fin",False,Shark involvement highly doubtful,"R. Collier, GSAF",2017.05.03-Raab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.03-Raab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.03-Raab.pdf,2017.05.03,2017.05.03 +146,29-Apr-2017,Unprovoked,USA,California,"San Onofre, San Diego County ",Swimming,Leeanne Ericson,F,18,Major injury to posterior thigh,False,Shark involvement highly doubtful,"R. Collier, GSAF",2017.04.29.d-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.d-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.d-Ericson.pdf,2017.04.29.d,2017.04.29.d +147,29-Apr-2017,Unprovoked,SOUTH AFRICA,Western Cape Province,"Keurbooms, Plettenberg Bay",Surfing,male,M,14,Minor injury to right calf,False,Shark involvement highly doubtful,"J. de Villiars, News24, 4/29/2017",2017.04.29.c-Plett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.c-Plett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.c-Plett.pdf,2017.04.29.c,2017.04.29.c +148,29-Apr-2017,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Surfing,Holly Dyar,F,33,Left foot bitten,False,Shark involvement highly doubtful,"C. Creswell, GSAF",2017.04.29.b-Dyar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.b-Dyar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.b-Dyar.pdf,2017.04.29.b,2017.04.29.b +149,29-Apr-2017,Unprovoked,REUNION,Saint-Leu,Pointe au Sal,Body boarding,Adrien Dubosc,M,28,fatal,True,Shark involvement highly doubtful,"Clicanoo, 4/29/2017",2017.04.29.a-Dubosc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.a-Dubosc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.29.a-Dubosc.pdf,2017.04.29.a,2017.04.29.a +150,27-Apr-2017,Unprovoked,NEW ZEALAND,South Island,"Porpoise Bay, Catlins",Body boarding,female,F,20s,Puncture wounds & laceration above knee,False,Shark involvement highly doubtful,"C.Black, GSAF",2017.04.27-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.27-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.27-NZ.pdf,2017.04.27,2017.04.27 +151,26-Apr-2017,Invalid,USA,Florida,Florida,Photo shoot,Molly Cavelli,F,20s,Alleged laceration to left ankle,False,No shark invovlement - it ws a publicity stunt,"The Sun, 5/6/2017",2017.05.26-Cavelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.26-Cavelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.05.26-Cavelli.pdf,2017.04.26,2017.04.26 +152,22-Apr-2017,Unprovoked,"ST HELENA, British overseas territory",Ascension Island,English Bay,Snorkeling,Frankie Gonsalves,F,40,Calf & foot bitten,False,No shark invovlement - it ws a publicity stunt,"Daily Mail, 4/25/2017",2017.04.22-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.22-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.22-Gonsalves.pdf,2017.04.22,2017.04.22 +153,20-Apr-2017,Invalid,USA,South Carolina,Georgetown County,Swimming,male,M,40,Laceration & puncture wounds to left foot,False,Shark involvement not confirmed,"C. Creswell, GSAF",2017.04.20-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.20-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.20-PawleysIsland.pdf,2017.04.20,2017.04.20 +154,17-Apr-2017,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,"Daytona Beach News-Journal, 4/17/2017",,40,Minor bite to the foot,False,Shark involvement not confirmed,"Daytona Beach News-Journal, 4/17/2017",2017.04.17.b-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.17.b-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.17.b-Volusia.pdf,2017.04.17.b,2017.04.17.b +155,17-Apr-2017,Unprovoked,AUSTRALIA,Western Australia,Kelpies near Wylie Bay,Surfing,Laeticia Brouwer,F,17,fatal,True,White shark,"B. Myatt, GSAF",2017.04.17.a Brouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.17.a Brouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.17.a Brouwer.pdf,2017.04.17.a,2017.04.17.a +156,14-Apr-2017,Unprovoked,USA,Hawaii,"Kekaha Beach, Kauai",Surfing,Baboo,M,28,Lower right leg severely injured,False,"Tiger shark, 12'","Hawaii News Now, 4/14/2017",2017.04.14-Baboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.14-Baboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.14-Baboo.pdf,2017.04.14,2017.04.14 +157,13-Apr-2017,Unprovoked,USA,Florida,"Hanna Park, Jacksonville, Duval County",Surfing,Keeanan Perry ,M,17,Lacerations to right foot,False,"Tiger shark, 12'","News4Jax, 4/14/2017",2017.04.13-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.13-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.13-Perry.pdf,2017.04.13,2017.04.13 +158,12-Apr-2017,Unprovoked,USA,Florida,St. Augustine,Surfing,Kerry Keyton,F,17,Lacerations to right foot,False,"Tiger shark, 12'","The Surf Station, 4/13/2017",2017.04.12.b-Keyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.12.b-Keyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.12.b-Keyton.pdf,2017.04.12.b,2017.04.12.b +159,12-Apr-2017,Invalid,SOUTH AFRICA,KwaZulu-Natal,Protea Banks,Scuba Diving,Leopold Mairhuber,M,68,fatal,True,Shark involvement prior to death not confirmed,"E. Ritter, GSAF",2017.04.12.a-Mairhuber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.12.a-Mairhuber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.12.a-Mairhuber.pdf,2017.04.12.a,2017.04.12.a +160,11-Apr-2017,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Denise Holz-Oosterveld,F,35,Calf bitten,False,Shark involvement prior to death not confirmed,"WFTV, 4/11/2017",2017.04.11-Oosterveld.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.11-Oosterveld.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.11-Oosterveld.pdf ,2017.04.11,2017.04.11 +161,10-Apr-2017,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Paddle boarding,female,F,10,Laceration to calf,False,Shark involvement prior to death not confirmed,"Brevard Times, 4/10/2017",2017.04.10.b-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.10.b-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.10.b-Melbourne.pdf,2017.04.10.b,2017.04.10.b +162,10-Apr-2017,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,Heather Orr,F,21,Minor injury to left hand,False,Shark involvement prior to death not confirmed,"Brevard Times, 4/10/2017",2017.04.10.a-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.10.a-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.10.a-Orr.pdf,2017.04.10.a,2017.04.10.a +163,06-Apr-2017,Unprovoked,USA,Florida,"Daytona, Volusia County",Swimming,Kody Stephens,M,16,Foot injured,False,Shark involvement prior to death not confirmed,"Bradenton Herald, 4/7/2017",2017.04.07-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.07-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.07-Stephens.pdf,2017.04.06,2017.04.06 +164,05-Apr-2017,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Melanie Lawson,F,51,"Thigh nipped, minor injury",False,Shark involvement prior to death not confirmed,"AJC, 4/5/2017",2017.04.05-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.05-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.05-NSB.pdf,2017.04.05,2017.04.05 +165,02-Apr-2017,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Kakaying,Gavin Kleiden,M,39,"No injury, shark bit off stern of kayak",False,Shark involvement prior to death not confirmed,"Philly.com, 4/3/2017",2017.04.02.b-Kleiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.02.b-Kleiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.02.b-Kleiden.pdf,2017.04.02.b,2017.04.02.b +166,02-Apr-2017,Unprovoked,USA,Florida,"Destin, Okaloosa County",Swimming,Caitlyn Taylor,F,17,Lacerations to thighs,False,"Bull shark, 5' to 7'",Okaloosa County Sheriff's Office,2017.04.02.a-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.02.a-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.04.02.a-Taylor.pdf,2017.04.02.a,2017.04.02.a +167,27-Mar-2017,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Nesbit,M,58,Minor injury to left foot,False,"Bull shark, 5' to 7'","Orlando Sentinel, 3/27/2017",2017.03.27-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.27-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.27-NSB.pdf,2017.03.27,2017.03.27 +168,19-Mar-2017,Unprovoked,AUSTRALIA,New South Wales,The Farm,Body boarding,Gonzalo Fernandez,M,30,Minor,False,"Bull shark, 5' to 7'","Illawarra Mercury, 1/19/2017",2017.03.19-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.19-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.19-Fernandez.pdf,2017.03.19,2017.03.19 +169,18-Mar-2017,Boating,USA,California,Monterey Bay,Kayaking,Brian Correira,M,30,"No injury, kayak bitten",False,White shark,"R. Collier, GSAF",2017.03.18-Correira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.18-Correira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.18-Correira.pdf,2017.03.18,2017.03.18 +170,11-Mar-2017,Unprovoked,PHILIPPINES,Luzon Island,"Villamar, Caoayan",Spearfishing,Benan Reintegrado,M,25,Right thigh injured ,False,10' shark,"ABS-CBN, 3/13/2017",2017.03.11-Reintegrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.11-Reintegrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.11-Reintegrado.pdf,2017.03.11,2017.03.11 +171,Reported 09-Mar-2017,Unprovoked,BAHAMAS,Great Exuma,Great Exuma,Washing hands,George Keywood,M,58,Abrasions & lacerations to left leg and hand,False,Lemon shark,"Kent Live, 3/9/2017",2017.03.09-Keywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.09-Keywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.03.09-Keywood.pdf,2017.03.09,2017.03.09 +172,25-Feb-2017,Unprovoked,AUSTRALIA,Western Australia,Mauds Point,Snorkeling,female,F,58,Hand bitten,False,"Bull shark, 1.5","Perth Now, 2/27/2017",2017.02.25-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.25-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.25-WesternAustralia.pdf,2017.02.25,2017.02.25 +173,24-Feb-2017,Unprovoked,AUSTRALIA,Western Australia,"Falcon Bay Beach, Mandurah",Surfing,male,M,58,"No injury, shark struck board",False,"Bull shark, 1.5","Perth Now, 2/24/2017",2017.02.24-Mandurah,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.24-Mandurah,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.24-Mandurah,2017.02.24,2017.02.24 +174,21-Feb-2017,Unprovoked,REUNION,Saint-Andre,Saint-Andre,Body boarding,Alexandre Naussance,M,26,fatal,True,"Bull shark, 1.5","Surfline, 2/21/2017",2017.02.21-Naussance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.21-Naussance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.21-Naussance.pdf,2017.02.21,2017.02.21 +175,17-Feb-2017,Unprovoked,AUSTRALIA,Queensland,Eva Rock,Spearfishing,Glenn Dickson,M,26,Left leg severely bitten,False,"Bull shark, 1.5","Courier Mail, 2/18/2017",2017.02.17-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.17-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.17-Dickson.pdf,2017.02.17,2017.02.17 +176,11-Feb-2017,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,male,M,22,Injury to hand,False,"Bull shark, 1.5","Florida Today, 2/11/2017",2017.02.11-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.11-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.11-MelbourneBeach.pdf,2017.02.11,2017.02.11 +177,06-Feb-2017,Provoked,BRAZIL,Pernambuco,Fernando de Noronha Marine Park,Grabbing shark for a selfie,female,F,22,"Minor injury to finger, PROVOKED INCIDENT",False,Lemon shark pup,"O Popular, 2/7/2017",2017.02.06.b-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.06.b-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.06.b-Brazil.pdf,2017.02.06.b,2017.02.06.b +178,06-Feb-2017,Boating,SOUTH AFRICA,KwaZulu-Natal,Eastmoor Crescent Beach,Kayak fishing,Murray Van Wyk,M,22,"Shark damaged kayak, no injury to occupant",False,Tiger shark,"The Citizen, 2/8/2017",2017.02.06.a-Umhlanga-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.06.a-Umhlanga-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.06.a-Umhlanga-kayak.pdf,2017.02.06.a,2017.02.06.a +179,01-Feb-2017,Boating,USA,South Carolina,16 miles off Hilton Head,Tagging sharks,Chip Michelove & crew,,22,"Shark bit boat, no injury to occupants",False,"White shark, female, 14'","YouTube, 2/2/2017",2017.02.01.b-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.01.b-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.01.b-Boat.pdf,2017.02.01.b,2017.02.01.b +180,01-Feb-2017,Unprovoked,BAHAMAS,Bimini,Bimini,Scuba Diving,Freek Vonk,M,37,Lacerations to upper right arm,False,Caribbean reef shark,"Dutch News, 2/2/2017",2017.02.01.a-Vonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.01.a-Vonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.02.01.a-Vonk.pdf,2017.02.01.a,2017.02.01.a +181,24-Jan-2017,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Arthur Andrade,M,21,Minor laceration to ring finger,False,Caribbean reef shark,"K. McMurray, Tracking Sharks",2017.01.24-Andrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.24-Andrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.24-Andrade.pdf,2017.01.24,2017.01.24 +182,22-Jan-2017,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,male,M,Teen,Puncture wounds to lower arm or hand,False,Caribbean reef shark,"TCPalm, 1/22/2017",2017.01.22-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.22-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.22-VeroBeach.pdf,2017.01.22,2017.01.22 +183,21-Jan-2017,Unprovoked,AUSTRALIA,Queensland,"Boot Reef, Torres Strait",Scuba Diving,Craig de Wit,M,55,"Multiple injuries to arm, wrist and torso",False,"Bull shark, 4 m","ABC, 1/21/2017",2017.01.21-MurrayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.21-MurrayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.21-MurrayIsland.pdf,2017.01.21,2017.01.21 +184,13-Jan-2017,Unprovoked,AUSTRALIA,Queensland,Clairview,Swimming,"Brisbane Times,1/13/2017",M,57,Injury to hand,False,"Bull shark, 4 m","Brisbane Times,1/13/2017",2017.01.13.b-Clairview.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.13.b-Clairview.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.13.b-Clairview.pdf,2017.01.13.b,2017.01.13.b +185,13-Jan-2017,Unprovoked,USA,Florida,Jensen Beach,Swimming,a lifeguard,M,57,Minor injury to hand,False,"Bull shark, 4 m",WPTV. 1/13/2017,2017.01.13.a-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.13.a-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.13.a-JensenBeach.pdf,2017.01.13.a,2017.01.13.a +186,09-Jan-2017,Unprovoked,INDONESIA,Bali,Balian Beach,Surfing,Daniel Moore,M,48,Injury to right wrist & forearm,False,"Bull shark, 1 m","Daily Mail, 1/11/2017",2017.01.09-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.09-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.09-Moore.pdf,2017.01.09,2017.01.09 +187,Reported 08-Jan-2017,Invalid,AUSTRALIA,Queensland,Queensland,Spearfishing,Kerry Daniel,M,35,"No attack, shark made a threat display",False,Bull shark,Liquid Vision 1/8/2017,2017.01.08.R-KerryDaniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.08.R-KerryDaniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.08.R-KerryDaniel.pdf,2017.01.08.R,2017.01.08.R +188,05-Jan-2017,Unprovoked,USA,Florida,"Blockhouse Beach, Brevard County",Wading,male,M,47,Minor injuries to foot,False,Bull shark,"Florida Today, 1/5/2017",2017.01.05-Brevard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.05-Brevard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.05-Brevard.pdf,2017.01.05,2017.01.05 +189,03-Jan-2017,Invalid,AUSTRALIA,New South Wales,Merimbula,Wading,Mitchell Collins,M,20,Minor injuries to foot & toes,False,Shark involvement not confirmed,"Illawarra Mercury, 1/7/2017",2017.01.03-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.03-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2017.01.03-Collins.pdf,2017.01.03,2017.01.03 +190,27-Dec-2016,Unprovoked,USA,Florida,"Avalon State Park Beach, North Hutchinson Island, St Lucie County",Surfing,Zack Davis,M,16,Lacerations to right forearm,False,Shark involvement not confirmed,"TCPalm, 12/28/2016",2016.12.27-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.27-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.27-Davis.pdf,2016.12.27,2016.12.27 +191,24-Dec-2016,Unprovoked,AUSTRALIA,Western Australia,"Bundegi Sanctuary Zone, Ningaloo",Snorkeling,female,F,16,Buttock bitten,False,a small shark,"Perth Now, 12/28/2016",2016.12.24-Ningaloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.24-Ningaloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.24-Ningaloo.pdf,2016.12.24,2016.12.24 +192,19-Dec-2016,Unprovoked,SOUTH AFRICA,Western Cape Province,"Keurbooms Lagoon, Plettenberg Bay",Surf skiing ,Ben Swart,M,55,"No injury, but ski severely damaged",False,"White shark, 4 m","The Citizen, 12/19/2016",2016.12.19-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.19-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.19-Swart.pdf,2016.12.19,2016.12.19 +193,14-Dec-2016,Unprovoked,AUSTRALIA,Western Australia,Trigg Beach,Free diving,Tim Roberts,M,61,Punctures to left foot/ankle,False,"White shark, 4 m","Perth Now, 12/15/2016",2016.12.14-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.14-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.14-Roberts.pdf,2016.12.14,2016.12.14 +194,11-Dec-2016,Unprovoked,FRENCH POLYNESIA,Tuamotos,Takapoto Atoll,Fishing,male,M,40s,Hand injured?,False,"White shark, 4 m","Tahiti Info, 12/12/2016",2015.12.11.b-Takapoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11.b-Takapoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11.b-Takapoto.pdf,2016.12.11.b,2016.12.11.b +195,11-Dec-2016,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Shane Garthwait,M,19,Cuts to right ankle & foot,False,Shark involvement not confirmed,"News Journal, 12/15/2016",2016.12.11.a-Garthwait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.11.a-Garthwait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.11.a-Garthwait.pdf,2016.12.11.a,2016.12.11.a +196,06-Dec-2016,Provoked,AUSTRALIA,New South Wales,Merimbula,Surf fishing,Jesse Phillips,M,20,Lacerations to both hands while attempting to land a hooked shark PROVOKED INCIDENT,False,"Wobbegong shark, 2m",Bay 93.9 Geelong,2016.12.06-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.06-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.06-Phillips.pdf,2016.12.06,2016.12.06 +197,01-Dec-2016,Unprovoked,AUSTRALIA,New South Wales,Booti Booti National Park,Surfing,Colin Rowland,M,65,Injuries to foot & arm,False,White shark,"B. Myatt, GSAF",2016.12.01-Rowland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.01-Rowland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.12.01-Rowland.pdf,2016.12.01,2016.12.01 +198,28-Nov-2016,Provoked,AUSTRALIA,Victoria,Queenscliff,Fishing,Rod McFarlane,M,73,Laceration to right hand by hooked & gaffed shark. PROVOKED INCIDENT,False,"Broadnose sevengill shark, 1.5 m","ABC News, 11/28/2016",2016.11.28-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.11.28-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.11.28-Fisherman.pdf,2016.11.28,2016.11.28 +199,14-Nov-2016,Unprovoked,USA,Hawaii,"Kamaole Beach Park I, Maui",Floating,Barbara Zawacki,F,58,Injuries to right calf and thigh,False,Tiger shark,"Maui News, 11/14/2016",2016.11.14-Zawacki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.11.14-Zawacki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.11.14-Zawacki.pdf,2016.11.14,2016.11.14 +200,30-Oct-2016,Unprovoked,USA,Florida,"Mayport Naval Station Beach, Duval County",Surfing,Daniel Adams,M,41,Lacerations to right foot and ankle,False,Tiger shark,"First Coast News, 10/31/2016",2016.10.30-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.30-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.30-Adams.pdf,2016.10.30,2016.10.30 +201,29-Oct-2016,Unprovoked,USA,Florida,Mayport Naval Station Duval County,Surfing,Derrick Shoup,M,42,Lacerations to right hand,False,Tiger shark,"First Coast News, 10/31/2016",2016.10.29-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.29-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.29-Shoup.pdf,2016.10.29,2016.10.29 +202,24-Oct-2016,Unprovoked,AUSTRALIA,New South Wales,Broken Head Beach,Surfing,Jade Fitzpatrick,M,36,Lacerations to left thigh,False,Tiger shark,"Daily Mail, 10/24/2016",2016.10.24-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.24-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.24-Fitzpatrick.pdf,2016.10.24,2016.10.24 +203,21-Oct-2016,Unprovoked,USA,Hawaii,"Hooipa Beach Park, Maui",Surfing,Federico Jaime,M,36,Left arm and leg injured,False, 6' to 8' shark,"Surfline, 10/23/2016",2016.10.21-Hookipa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.21-Hookipa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.21-Hookipa.pdf,2016.10.21,2016.10.21 +204,15-Oct-2016,Unprovoked,AUSTRALIA,Queensland,"Kings Beach, Caloundra",Surfing,Cooper Hallam,M,36,Torso nipped,False, 6' to 8' shark,"Daily Mail, 10/16/2016",2016.10.15-Hallam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.15-Hallam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.15-Hallam.pdf,2016.10.15,2016.10.15 +205,14-Oct-2016,Unprovoked,USA,Hawaii,"Charlie Young Beach, Kihei, Maui",Snorkeling,female,F,66,Injuries to left calf,False, 6' to 8' shark,Maui News,2016.10.14-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.14-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.14-Maui.pdf,2016.10.14,2016.10.14 +206,13-Oct-2016,Invalid,MEXICO,Guadalupe Island,Guadalupe Island,Cage Diving,Ming Chan,M,66,"Shark breached cage, no injury to diver",False,White shark,YouTube,2016.10.13.R-Breach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.13.R-Breach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.13.R-Breach.pdf,2016.10.13.R,2016.10.13.R +207,12-Oct-2016,Unprovoked,AUSTRALIA,New South Wales,"Sharpes Beach, Ballina",Surfing,Seneca Rus,M,25,Minor wound to lower right leg & surfboard bitten,False,White shark,"Courier Mail, 10/12/2016",2016.10.12-SenecaRus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.12-SenecaRus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.12-SenecaRus.pdf,2016.10.12,2016.10.12 +208,10-Oct-2016,Unprovoked,USA,Oregon,"Indian Beach, Ecola State Park, Clatsop County",Surfing,Joseph Tanner,M,29,Wounds to upper thigh and lower leg,False,White shark,"UP Beacon, 10/12/2016",2016.10.10-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.10-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.10-Tanner.pdf,2016.10.10,2016.10.10 +209,02-Oct-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,21,Cuts to dorsal surface of left foot,False,White shark,"Orlando Sentinel, 10/2/2016",2016.10.02-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.02-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.02-NSB.pdf,2016.10.02,2016.10.02 +210,01-Oct-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfng,male,M,32,Minor injuries,False,White shark,"Orlando Sentinel, 10/2/2016",2016.10.01-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.01-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.10.01-NSB.pdf,2016.10.01,2016.10.01 +211,26-Sep-2016,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Ballina",Surfing,Cooper Allen,M,17,4 deep lacerations to thigh,False,"White shark, 3.5 m","ABC.net.au, 09/26/2016",2016.09.26-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.26-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.26-Allen.pdf,2016.09.26,2016.09.26 +212,18-Sep-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,16,Minor injury to thigh,False,"White shark, 3.5 m","Orlando Sentinel, 9/19/2016",2016.09.18.c-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.c-NSB.pdf,2016.09.18.c,2016.09.18.c +213,18-Sep-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chucky Luciano,M,36,Lacerations to hands,False,"White shark, 3.5 m","Orlando Sentinel, 9/19/2016",2016.09.18.b-Luciano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.b-Luciano.pdf,2016.09.18.b,2016.09.18.b +214,18-Sep-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,43,Lacerations to lower leg,False,"White shark, 3.5 m","Orlando Sentinel, 9/19/2016",2016.09.18.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.18.a-NSB.pdf,2016.09.18.a,2016.09.18.a +215,17-Sep-2016,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Yuma,M,43,"No injury, board bitten",False,"White shark, 3.5 m","R. Collier, GSAF",2016.09.17.b-Yuma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17.b-Yuma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17.b-Yuma.pdf,2016.09.17.b,2016.09.17.b +216,17-Sep-2016,Unprovoked,AUSTRALIA,Victoria,Thirteenth Beach,Surfing,Rory Angiolella,M,43,Struck by fin on chest & leg,False,"White shark, 3.5 m","The Age, 9/18/2016",2016.09.17.a-Angiolella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17.a-Angiolella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.17.a-Angiolella.pdf,2016.09.17.a,2016.09.17.a +217,16-Sep-2016,Unprovoked,AUSTRALIA,Victoria,Bells Beach,Surfing,male,M,43,No injury: Knocked off board by shark,False,2 m shark,"The Age, 9/16/2016",2016.09.16-BellsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.16-BellsBeach.pdf,2016.09.16,2016.09.15 +218,15-Sep-2016,Boating,AUSTRALIA,Western Australia,Bunbury,Fishing,Occupant: Ben Stratton,,43,Shark rammed boat. No injury to occupant,False,2 m shark,"West Australian, 9/15/2016",2016.09.15.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.15.R-boat.pdf,2016.09.15.R,2016.09.15.R +219,11-Sep-2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Wading,male,M,60s,Minor injury to arm,False,3' to 4' shark,"News4Jax, 9/11/2016",2016.09.11-PonteVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.11-PonteVedra.pdf,2016.09.11,2016.09.11 +220,07-Sep-2016,Unprovoked,USA,Hawaii,"Makaha, Oahu",Swimming,Lulu Bagnol,F,51,Severe lacerations to shoulder & forearm,False,"Tiger shark, 10'","Hawaii News Now, 9/7/2016",2016.09.07-Bagnol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Bagnol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.07-Bagnol.pdf,2016.09.07,2016.09.07 +221,06-Sep-2016,Unprovoked,NEW CALEDONIA,North Province,Koumac,Kite surfing,David Jewell,M,50,fatal,True,"Tiger shark, 10'","TVANouvelles, 9/6/2016",2016.09.06-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.06-Jewell.pdf,2016.09.06,2016.09.06 +222,05-Sep-2016,Unprovoked,USA,South Carolina,"Kingston Plantation, Myrtle Beach, Horry County",Boogie boarding,Rylie Williams,F,12,Lacerations & punctures to lower right leg,False,"Tiger shark, 10'","C. Creswell, GSAF",2016.09.05.b-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.b-Williams.pdf,2016.09.05.b,2016.09.05.b +223,05-Sep-2016,Unprovoked,AUSTRALIA,Western Australia,Injidup ,Surfing,Fraser Penman,M,12,"No inury, board broken in half by shark",False,"Tiger shark, 10'","Perth Now, 9/5/2016",2016.09.05.a-Penman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.05.a-Penman.pdf,2016.09.05.a,2016.09.05.a +224,04-Sep-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body boarding,Austin Moore,M,9,Foot bitten,False,"Tiger shark, 10'","Orlando Sentinel, 9/7/2016",2016.09.04-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.04-Moore.pdf,2016.09.04,2016.09.04 +225,01-Sep-2016,Unprovoked,USA,California,"Refugio State Beach, Santa Barbara County",Spearfishing,Tyler McQuillen ,M,22,Two toes broken & lacerated,False,"White shark, 8' to 10'","R. Collier, GSAF",2016.09.01-McQuillen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.01-McQuillen.pdf,2016.09.01,2016.09.01 +226,Sep-2016,Invalid,MEXICO,Guadalupe Island,Guadalupe Island,Cage Diving,K. Yonker,,22,"No injury to divers, white shark breached cage",False,Invalid,K. Yonker,2016.09.00-Breach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.00-Breach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.09.00-Breach.pdf,2016.09.00,2016.09.00 +227,29-Aug-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Sam Cumiskey ,M,25,Lacerations to right foot,False,"Bull shark, 6'","News Channel 8, 8/30/16",2016.08.29.b-Cumiskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.b-Cumiskey.pdf,2016.08.29.b,2016.08.29.b +228,29-Aug-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,37,Minor injury to ankle,False,"Bull shark, 6'","News Channel 8, 8/30/16",2016.08.29.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.29.a-NSB.pdf,2016.08.29.a,2016.08.29.a +229,27-Aug-2016,Unprovoked,REUNION,Boucan Canot,Boucan Canot,Surfing,Laurent Chardard ,M,20,"Right arm severed, ankle severely bitten ",False,"Bull shark, 3.5 m","LaDepeche, 8/29/2016",2016.08.27-Chardard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.27-Chardard.pdf,2016.08.27,2016.08.27 +230,25-Aug-2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Wading,David Cassetty,M,49,Minor injury to ankle,False,"Bull shark, 3.5 m","First Coast News, 7/25/2016",2016.08.25-Cassetty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.25-Cassetty.pdf,2016.08.25,2016.08.25 +231,07-Aug-2016,Unprovoked,BAHAMAS,New Providence Island,Nassau,Snorkeling,Johnny Stoch,M,15,Lacerations to left leg,False,"Bull shark, 3.5 m","ABC, 8/11/2016",2016.08.07-Stoch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.07-Stoch.pdf,2016.08.07,2016.08.07 +232,06-Aug-2016,Unprovoked,USA,Hawaii,Maui,SUP Foil boarding,Connor Baxter,M,21,"No inury, shark & board collided",False,"Tiger shark, 10' ","SUP, 8/9/2015",2016.08.06-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.08.06-Baxter.pdf,2016.08.06,2016.08.06 +233,04-Aug-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Tyler,M,22,Big toe bitten,False,Blacktip shark,"News 965, 8/5/2016",2016.06.04-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Tyler.pdf,2016.08.04,2016.08.04 +234,29-Jul-2016,Unprovoked,SPAIN,Alicante Province,Arenales del Sol,Swimming,male,M,40,Lacerations to right hand,False,Blue shark,"Informacion.es, 7/29/2016",2016.07.29-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.29-Spain.pdf,2016.07.29,2016.07.29 +235,28-Jul-2016,Unprovoked,CHINA,Hong Kong,Hong Kong,Swimming,Justus Franz,M,72,Lacerations to leg,False,Blue shark,"Klassick, 7/28/2016",2016.07.28.R-Franz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28.R-Franz.pdf,2016.07.28.R,2016.07.28.R +236,28-Jul-2016,Boating,AUSTRALIA,Western Australia,Near Albany,Kayaking,Ian Watkins,M,72,"No injury, shark nudged kayak repeatedly",False,White shark,"ABC Australia, 7/28/2016",2016.07.28-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.28-Watkins.pdf,2016.07.28,2016.07.28 +237,27-Jul-2016,Provoked,USA,Florida,"Florida Keys, Monroe County",Lobstering,Warren Sapp,M,43,Laceration to left forearm PROVOKED INCIDENT,False,"Nurse shark, 4'","Tampa Bay Times, 7/27/2016",2016.07.27-Sapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.27-Sapp.pdf,2016.07.27,2016.07.27 +238,26-Jul-2016,Unprovoked,AUSTRALIA,New South Wales,"Sharpes Beach, Ballina",Surfing,Curran See & Harry Lake,M,18,"No injury. Leg rope severed, knocked off board by shark",False,"Nurse shark, 4'","Gold Coast Bulletin, 7/28/2016",2016.07.26-Ballina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.26-Ballina.pdf,2016.07.26,2016.07.26 +239,24-Jul-2016,Unprovoked,JAPAN,Kochi Prefecture,Irino Beach,Surfing,male,M,29,Lacerations to left leg,False,"Nurse shark, 4'","Japan Times, 7/25/2016",2016.07.24-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.24-Japan.pdf,2016.07.24,2016.07.24 +240,23-Jul-2016,Unprovoked,AUSTRALIA,Tasmania,Clifton Beach,Surfing,Zebulon Critchlow,M,36,Calf bumped but no injury,False,"Nurse shark, 4'","C. Black, GSAF",2016.07.23.b-Critchlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.b-Critchlow.pdf,2016.07.23.b,2016.07.23.b +241,23-Jul-2016,Unprovoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Spearfishing,Steve Cutbirth,M,36,Lacerations to face and right leg,False,"Bull shark, 6'","KWTX, 7/23/2016",2016.07.23.a-Cutbirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23.a-Cutbirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.23-Cutbirth.pdf,2016.07.23.a,2016.07.23.a +242,20-Jul-2016,Provoked,AUSTRALIA,Queensland,"20 k off The Spit, off the Gold Coast",Fishing,Scott van Burck,M,31,Laceration to left calf from hooked shark PROVOKED INCIDENT,False,"reef shark, 1m","Nine News, 7/20/2016",2016.07.20-Burck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.20-Burck.pdf,2016.07.20,2016.07.20 +243,17-Jul-2016,Boating,USA,Alabama,8 miles off Mobile,Fishing in Alabama Deep Fishing Rodeo,Occupant: Ben Raines,,31,"No injury, shark bit trolling motor",False,"Tiger shark, 10' ","Al.com, 7/19/2016",2016.07.17-Gulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.17-Gulf.pdf,2016.07.17,2016.07.17 +244,16-Jul-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,F,9,Minor injury to leg,False,"Tiger shark, 10' ","Orlando Sentinel, 7/21/2016",2016.07.16.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.b-NSB.pdf,2016.07.16.b,2016.07.16.b +245,16-Jul-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,F,11,Minor injury to toes,False,"Tiger shark, 10' ","Orlando Sentinel, 7/21/2016",2016.07.16.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.16.a-NSB.pdf,2016.07.16.a,2016.07.16.a +246,15-Jul-2016,Unprovoked,USA,California,"Surfside, Orange County",Kite surfing,Lee Frees,M,61,"No injury, board damaged",False,"White shark, 10' to 12'","R. Collier, GSAF",2016.07.15.b-Frees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.15.b-Frees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.15.b-Frees.pdf,2016.07.15.b,2016.07.15.b +247,15-Jul-2016,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Swimming,male,M,61,Puncture wounds to foot,False,"White shark, 10' to 12'","C. Creswell, GSAF",2016.07.15.a-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.15.a-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.15.a-MyrtleBeach.pdf,2016.07.15.a,2016.07.15.a +248,Reported 14-Jul-2016,Unprovoked,BAHAMAS,Tiger Beach,Tiger Beach,Scuba Diving,Michael Dornellas,M,61,Face bruised when partly blind shark collided with him,False,"Lemon shark, 9'","GrindTV, 7/14/2016",2016.07.14.R-TigerBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.14.R-TigerBeach.pdf,2016.07.14.R,2016.07.14.R +249,Reported 08-Jul-2016,Unprovoked,SPAIN,Canary Islands,"Las Teresitas, Tenerife",Wading,female,F,10,"5 tiny puncture marks to lower leg, treated with hydrogen peroxide",False,Angel shark,La Opinion de Tenerife,2016.07.08.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08.R-Spain.pdf,2016.07.08.R,2016.07.08.R +250,08-Jul-2016,Boating,USA,California,"Capitola, Santa Cruz County",Fishing for squid,Mark Davis,M,10,"No injury. Hull bitten, tooth fragment recovered",False,White shark,"R. Collier, GSAF",2016.07.08-CapitolaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.08-CapitolaBoat.pdf,2016.07.08,2016.07.08 +251,07-Jul-2016,Provoked,USA,Massachusetts,"Off Gloucester, Essec County",Fishing,Roger Brissom,M,59,Fin of hooked shark injured fisherman's forearm. . PROVOKED INCIDENT,False,dogfish shark,Salem News 7/8/2016,2016.07.07.b-Brissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.b-Brissom.pdf,2016.07.07.b,2016.07.07.b +252,07-Jul-2016,Boating,USA,California,"Off Palos Verdes peninsula, Los Angeles County",Fishing for sharks,24' boat Shark Tagger Occupant Keith Poe,M,59,"No injury. Hull bitten, tooth fragment recovered",False,White shark,"R. Collier, GSAF",2016.07.07.a-PoeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.07.a-PoeBoat.pdf,2016.07.07.a,2016.07.07.a +253,06-Jul-2016,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,female,F,42,"Buttocks, thigh, left hand & wrist injured",False,White shark,"Florida Today, 7/6/2016",2016.07.06-Njwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.06-Njwoman.pdf,2016.07.06,2016.07.06 +254,04-Jul-2016,Provoked,AUSTRALIA,Queensland,Palm Cove ,Fishing,Nathan Oliver,M,34,Right thigh injured by hooked pregnant female shark PROVOKED INCIDENT,False,Tawny nurse shark,"Cairns Post, 7/9/2016",2016.07.04-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.07.04-Oliver.pdf,2016.07.04,2016.07.04 +255,27-Jun-2016,Unprovoked,USA,South Carolina,Sullivan's Island,Fishing,male,M,35,Minor injury,False,3' to 4' shark,"C. Creswell, GSAF",2016.06.27-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.27-Sullivans.pdf,2016.06.27,2016.06.27 +256,25-Jun-2016,Unprovoked,USA,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Surfing,male,M,11,Foot injured,False,3' to 4' shark,"C. Creswell, GSAF",2016.06.25-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.25-AtlanticBeach.pdf,2016.06.25,2016.06.25 +257,24-Jun-2016,Unprovoked,COLUMBIA,Isla Provedencia,Isla Provedencia,Scuba Diving,Arturo Velez,M,59,Severe bite to right hand,False,"Caribbean reef shark, 4.5'",Dr. A. Velez,2016.06.24-Velez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.24-Velez.pdf,2016.06.24,2016.06.24 +258,23-Jun-2016,Unprovoked,SOUTH AFRICA,Western Cape Province,Ryspunt,Spearfishing,Rene Nel,M,43,Injuries to left leg & right hand,False,White shark,"News 24, 6/23/2016",2016.06.23-Nel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Nel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.23-Nel.pdf,2016.06.23,2016.06.23 +259,21-Jun-2016,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Floating,Jeff Schott,M,42,Lacerations and punctures to foot,False,3' to 5' shark,"C. Creswell, GSAF",2016.06.21.b-Schott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.b-Schott.pdf,2016.06.21.b,2016.06.21.b +260,21-Jun-2016,Unprovoked,USA,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Wading,male,M,42,Injuries to right calf,False,3' to 5' shark,"Florida Today, 6/22/2016",2016.06.21.a-SatelliteBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.21.a-SatelliteBeach.pdf,2016.06.21.a,2016.06.21.a +261,15-Jun-2016,Unprovoked,USA,Hawaii,"Kalapaki Beach, Kauai",Surfing,male,M,42,Single puncture wound to arm,False,3' to 4' shark,"West Hawaii Today, 6/16/2016",2016.06.15.b-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.b-Kauai.pdf,2016.06.15.b,2016.06.15.b +262,15-Jun-2016,Provoked,AUSTRALIA,Western Australia,Coral Bay,Spearfishing,Brad Vale,M,19,No injury but shark punctured his wetsuit after he prodded it with his spear PROVOKED INCIDENT,False,5' shark,"Perth Now, 6/16/2016",2016.06.15.a-Vale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.15.a-Vale.pdf,2016.06.15.a,2016.06.15.a +263,14-Jun-2016,Unprovoked,USA,Texas,"Pirates Beach, Galveston",Floating in tube,Marin Alice Melton,F,6,Injury to lower leg,False,3' to 4' shark,"Click2Houston, 6/14/2016",2016.06.14-Melton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.14-Melton.pdf,2016.06.14,2016.06.14 +264,11-Jun-2016,Unprovoked,USA,North Carolina,"Atlantic Beach, Emerald Isle, Carteret County",Standing,Dillon Bowen,M,19,Laceration to wrist,False,3' shark,"C. Creswell, GSAF",2016.06.11-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.11-Bowen.pdf,2016.06.11,2016.06.11 +265,07-Jun-2016,Invalid,USA,South Carolina,"Folly Beach, Charleston County",Surfing,Jack O'Neill,M,27,"No injury, board damaged",False,Said to involve an 8' shark but more likely damage caused by debris,"C. Creswell, GSAF",2016.06.07-Oneill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.07-Oneill.pdf,2016.06.07,2016.06.07 +266,05-Jun-2016,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Swimming,male,M,64,Leg bitten,False,Said to involve an 8' shark but more likely damage caused by debris,"Daytona Beach News-Journal, 6/5/2016",2016.06.05.b-Flagler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.b-Flagler.pdf,2016.06.05.b,2016.06.05.b +267,05-Jun-2016,Unprovoked,AUSTRALIA,Western Australia,Mindarie,Diving,Doreen Collyer,F,60,fatal,True,3+ m shark,"B. Myatt, GSAF",2016.06.05.a-Collyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.05.a-Collyer.pdf,2016.06.05.a,2016.06.05.a +268,04-Jun-2016,Unprovoked,EGYPT,Suez,Ain Sokhna,Swimming,Omar Abdel Qader,M,23,"Leg severely bitten, surgically amputated",False,Mako shark,"Ahram Online, 6/4/2016",2016.06.04-Qader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.04-Qader.pdf,2016.06.04,2016.06.04 +269,02-Jun-2016,Unprovoked,AUSTRALIA,New South Wales,Kingscliff,Spearfishing,Waade Madigan and Dr Seyong Kim ,M,23,"No injury, but sharks repeatedly hit their fins and guns",False,Bronze whaler sharks x 3,"Gold Coast Bulletin, 6/4/2016",2016.06.02.b-Matigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.b-Matigan.pdf,2016.06.02.b,2016.06.02.b +270,02-Jun-2016,Unprovoked,NEW CALEDONIA," Côte-Blanche, Nouméa "," Côte-Blanche, Nouméa ",Kite surfing,Pierre de Rotalier,M,23,Laceration to heel,False,3 m shark,"Les Nouvelles Caledoniennes, 6/3/2016",2016.06.02.a-Pierre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.06.02.a-Pierre.pdf,2016.06.02.a,2016.06.02.a +271,31-May-2016,Unprovoked,AUSTRALIA,Western Australia,"Falcon Beach, Mandurah",Surfing,Ben Gerring,M,29,fatal,True,White shark,"Perth Now, 5/31/2016",2016.05.31-Gerring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.31-Gerring.pdf,2016.05.31,2016.05.31 +272,29-May-2016,Unprovoked,USA,California,"Corona Del Mar, Newport, Orange County",Swimming," Maria Korcsmaros +",F,52,Injuries to arm and shoulder,False,White shark,"R. Collier, GSAF",2016.05.29.b-Corona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.b-Corona.pdf,2016.05.29.b,2016.05.29.b +273,29-May-2016,Unprovoked,USA,Florida,"Neptune, Duval County",Swimming,male,M,13,Injury to posterior right leg,False,5' shark,"News4Jax, 5/29/2016",2016.05.29.a-Neptune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.29.a-Neptune.pdf,2016.05.29.a,2016.05.29.a +274,22-May-2016,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,Mary Marcus,F,57,Puncture wounds to thigh,False,5' shark,"Florida Today, 5/22/2016",2016.05.22-Marcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.22-Marcus.pdf,2016.05.22,2016.05.22 +275,21-May-2016,Unprovoked,USA,Florida,"St. Petersburg, Pinellas County",Swimming,Krystal Magee,F,22,Lacerations and puncture wounds to foot and ankle,False,"Bull shark, 4' to 5'","ABC Action News, 6/15/2016",2016.05.21.b-Magee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.b-Magee.pdf,2016.05.21.b,2016.05.21.b +276,21-May-2016,Unprovoked,USA,Florida,"Hugenot Beach , Jacksonville, Duval County",Swimming,female,F,11,"Back, arm & hand injured",False,"Bull shark, 4' to 5'","Action News Jax, 5/23/2016",2016.05.21.a-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.21.a-Girl.pdf,2016.05.21.a,2016.05.21.a +277,18-May-2016,Unprovoked,USA,Florida,"Ponte Vedra, St. Johns County",Swimming,Mark Wilson,M,48,Ankle bitten,False,"Blacktip shark, 4'","News4Jax, 5/19/2016",2016.05.18-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.18-Wilson.pdf,2016.05.18,2016.05.18 +278,15-May-2016,Provoked,USA,Florida,"Boca Raton, Palm Beach County",Teasing a shark,female,F,23,Arm grabbed PROVOKED INCIDENT,False,"Nurse shark, 2'","CBS News, 5/16/2016",2016.05.15-Boca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.15-Boca.pdf,2016.05.15,2016.05.15 +279,03-May-2016,Unprovoked,USA,Hawaii,"Wailea Beach, Maui",Floating,male,M,59,Minor lacerations to right shoulder,False,"Nurse shark, 2'","Maui Now, 5/3/2016",2016.05.03-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.03-Maui.pdf,2016.05.03,2016.05.03 +280,02-May-2016,Provoked,NEW ZEALAND,North Island,Cormandel,Fishing,male,M,39,Foot bitten by landed shark PROVOKED INCIDENT,False,"Mako shark, 1.5 m [5'] ",Radio New Zealand 5/3/2016,2016.05.02-NZ-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.05.02-NZ-pdf,2016.05.02,2016.05.02 +281,25-Apr-2016,Unprovoked,INDONESIA,Bali,Balian,Surfing,Ryan Boarman,M,24,Elbow bitten,False,"Bull shark, 6'","News.com.au, 4/26/2016",2016.04.25-Boarman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.25-Boarman.pdf,2016.04.25,2016.04.25 +282,23-Apr-2016,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kelton Beardall,M,15,Minor injury to left foot,False,"Bull shark, 6'","News4Jax, 4/23/2016",2016.04.23-Beardall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.23-Beardall.pdf,2016.04.23,2016.04.23 +283,22-Apr-2016,Unprovoked,SOUTH AFRICA,Western Cape Province,"Robberg Beach, Plettenberg Bay",Surf-skiing,Dave Manson,M,15,"No injury, surf-ski bitten",False,White shark,"Knysna-Plett Herald, 4/22/2016",2016.04.22-Manson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.22-Manson.pdf,2016.04.22,2016.04.22 +284,19-Apr-2016,Unprovoked,AUSTRALIA,New South Wales,"First Sun Beach, Byron Bay",Swimming,Zak Kedem,M,12,Minor puncture wound to foot,False,Wobbegong shark,"Gold Coast Bulletin, 4/19/2016",2016.04.19-Kedem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.19-Kedem.pdf,2016.04.19,2016.04.19 +285,18-Apr-2016,Provoked,FRENCH POLYNESIA,Tuamotos,Makemo Atoll,Spearfishing,Hoata Iotua,M,22,Laceration to knee by speared shark PROVOKED INCIDENT,M,"Grey reef shark, 2 m","TNTV News, 4/19/2016",2016.04.18.b-Iotua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18.b-Iotua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18.b-Iotua.pdf,2016.04.18.b,2016.04.18.b +286,18-Apr-2016,Provoked,FRENCH POLYNESIA,Tuamotos,Makemo Atoll,Spearfishing,Teva Tokoragi,M,26,"Severe lacerations to right forearm, hand and calf from speared shark PROVOKED INCIDENT",False,"Grey reef shark, 2 m","Tahiti Infos, 4/19/2016",2016.04.18.a-Tokoragi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18.a-Tokoragi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.18.a-Tokoragi.pdf,2016.04.18.a,2016.04.18.a +287,13-Apr-2016,Unprovoked,USA,Florida,"Off Singer Island, Palm Beach County",Spearfishing,Kyle Senkowicz,M,26,Multiple bites to right arm,False,"Bull shark, 7'","Palm Beach Post, 4/13/2016",2016.04.13-Senkowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.13-Senkowicz.pdf,2016.04.13,2016.04.13 +288,09-Apr-2016,Unprovoked,NEW CALEDONIA,Grand Terre,Poe Beach,Walking,Nicole Malignon,F,69,fatal,True,"Tiger shark, 2.5 m",Les Nouvelles Caledonnie. 4/11/2016,2016.04.09-Malignon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.09-Malignon.pdf,2016.04.09,2016.04.09 +289,08-Apr-2016,Invalid,CAPE VERDE,Boa Vista Island,Boa Vista Island,Walking,a British citizen,M,60,"""Serious""",False,Shark involvement not confirmed,L.O.Guttke,2016.04.08-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.08-CapeVerde.pdf,2016.04.08,2016.04.08 +290,07-Apr-2016,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Fishing,Jonathan Lester,M,34,Left hand bitten,False,5' to 6' shark,Jonathan Lester,2016.04.07.b-Lester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.b-Lester.pdf,2016.04.07.b,2016.04.07.b +291,07-Apr-2016,Invalid,USA,Florida,"Corners Beach, Jupiter, Palm Beach County",SUP,Maximo Trinidad,M,34,Fell off board when spinner shark leapt from the water next to him. No injury to surfer,False,5' to 6' shark,YouTube,2016.04.07.a-Trinidad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.04.07.a-Trinidad.pdf,2016.04.07.a,2016.04.07.a +292,31-Mar-2016,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,J. Orr,F,46,Minor injury to left foot,False,5' to 6' shark,"Maui Now, 3/31/2016",2016.03.31-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.31-Orr.pdf,2016.03.31,2016.03.31 +293,30-Mar-2016,Unprovoked,AUSTRALIA,New South Wales,Bombo Beach,Surfing,Brett Connellan,M,22,Severe injury to thigh,False,5' to 6' shark,"Daily Telegraph, 3/30/2016",2016.03.30-Connellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.30-Connellan.pdf,2016.03.30,2016.03.30 +294,28-Mar-2016,Unprovoked,USA,Florida,"Fort Myers Beach, Lee County",Surfing,Nick Kawa,M,Teen,Minor injury to arm. Possibly caused by smalll nurse shark,False,Shark involvement not confirmed,"Fox 35, 3/30/2015",2016.03.28.b-Kawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.28.b-Kawa.pdf,2016.03.28.b,2016.03.28.b +295,28-Mar-2016,Unprovoked,AUSTRALIA,New South Wales,North Cronulla Beach,Surfing,Roie Smyth,M,41,"No injury, board dented",False,Shark involvement not confirmed,"B. Myatt, GSAF",2013.03.28.a-Smyth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.28.a-Smyth.pdf,2016.03.28.a,2016.03.28.a +296,26-Mar-2016,Provoked,BAHAMAS,unknown,unknown,Surfing,Henry Kreckman ,M,9,Minor injury to chest PROVOKED INCIDENT,False,"Nurse shark, 2.5-ft","Wisconsin State Journal, 4/2/2016",2016.03.26-Kreckman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.26-Kreckman.pdf,2016.03.26,2016.03.26 +297,13-Mar-2016,Invalid,USA,California,"Bolsa Chica State Park, Orange County",Surfing,unknown,,9,Board reportedly bumped by shark. No injury,False,Shark involvement not confirmed,"Orange County Register, 3/13/2016",2016.03.13-BolsaChicaSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.13-BolsaChicaSurfer.pdf,2016.03.13,2016.03.13 +298,11-Mar-2016,Unprovoked,USA,Florida,"Vero Beach, St. Lucie County",Body surfing,Daniel Kenny,M,19,Lacerations to right foot and ankle,False,Shark involvement not confirmed,"WCBV-5, 3/31/206",2016.03.11-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.11-Kenny.pdf,2016.03.11,2016.03.11 +299,10-Mar-2016,Unprovoked,Fiji,Vanua Levu,Vanua Levu,Diving for beche-de-mer,Maika Tabua,M,45,fatal,True,Shark involvement not confirmed,"Fiji Sun, 3/12/2016",2016.03.10-Tabua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.10-Tabua.pdf,2016.03.10,2016.03.10 +300,04-Mar-2016,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Diving for beche-de-mer,male,M,12,Superficial injury to foot,False,Shark involvement not confirmed,WPTV. 3/4/2016,2016.03.04-OCPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.04-OCPark.pdf,2016.03.04,2016.03.04 +301,Reported 03-Mar-2016,Unprovoked,AUSTRALIA,South Australia,Wrights Bay,Fishing,Lee Taplin,M,12,Puncture wounds to right calf,False,Bronze whaler,"9 News, 3/1/2016",2016.03.03.R-Taplin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.03.R-Taplin.pdf,2016.03.03.R,2016.03.03.R +302,02-Mar-2016,Unprovoked,BRAZIL,Santa Catarina State,Escalerio Beach Balneário Camboriú,Swimming,Rafael Hermes Thomas,M,41,Minor injury to head,False,Sandtiger shark,"Misones Online, 3/4/2016",2016.03.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.03.02-Thomas.pdf,2016.03.02,2016.03.02 +303,22-Feb-2016,Unprovoked,NEW CALEDONIA,South Province,"Ricaudy Reef, Noumea",Kite surfing,Adrian *,M,21,Puncture wounds to right thigh,False,Sandtiger shark,"Les Nouvelles Calédoniennes, 2/23/2016",2016.02.22-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.22-Noumea.pdf,2016.02.22,2016.02.22 +304, 19-Feb-2016,Unprovoked,NEW CALEDONIA,South Province,Yate,Spearfishing,male,M,31,Forearm bitten,False,Sandtiger shark,"Les Nouvelles Calédoniennes, 2/19/2016",2016.02.19-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.19-NewCaledonia.pdf,2016.02.19,2016.02.19 +305,12-Feb-2016,Unprovoked,DOMINICAN REPUBLIC,Altagracia Province,"Bavaro Beach, Punta Cana",Wading,Patricia Howe,F,31,Avulsion injury to lower leg,False,Sandtiger shark,S. Harris,2016.02.12-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.12-Howe.pdf,2016.02.12,2016.02.12 +306,Reported 10-Feb-2016,Invalid,CAYMAN ISLANDS,Grand Cayman,Stingray City Bar,Feeding stingrays?,Richard Branson,M,65,Minor injury to wrist from Southern stingray,False,No shark involvement,R. Branson,2016.02.10.R-Branson-stingray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.10.R-Branson-stingray.pdf,2016.02.10.R,2016.02.10.R +307,10-Feb-2016,Invalid,AUSTRALIA,Tasmania,Nettley Bay,Surfing,male,M,65,"No injury, knocked off board",False,No shark involvement,"C. Black, GSAF",2016.02.11-NettleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.11-NettleyBay.pdf,2016.02.10,2016.02.10 +308,05-Feb-2016,Unprovoked,AUSTRALIA,Queensland,Stradbroke Island,Walking,female,F,45,Foot nipped,False,No shark involvement,"Courier Mail, 2/5/2016",2016.02.05-Stradbroke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.05-Stradbroke.pdf,2016.02.05,2016.02.05 +309,04-Feb-2016,Unprovoked,AUSTRALIA,New South Wales,Hams Beach,Windsurfing,Andrew Morris,M,40,"No injury, shark bit board",False,No shark involvement,"B. Myatt, GSAF",2016.02.04-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.04-Morris.pdf,2016.02.04,2016.02.04 +310,02-Feb-2016,Unprovoked,BRAZIL,Balneário Camboriú,Estaleirinho beach,Swimming,Rafael Hermes Thomas,M,41,Lacerations to scalp,False,Sandtiger shark,"Globo, 2/3/2016",2016.02.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.02-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.02.02-Thomas.pdf,2016.02.02,2016.02.02 +311,29-Jan-2016,Boating,SOUTH AFRICA,KwaZulu-Natal,KwaZulu-Natal,Kayak fishing,Dev De Lange,M,41,"No injury, shark capsized kayak",False,Sandtiger shark,"Nine News, 2/1/2016",2016.01.29-DeLange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.29-DeLange.pdf,2016.01.29,2016.01.29 +312,28-Jan-2016,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai",Surfing,male,M,41,Lacerations to both hands,False,"Reef shark, 5'",KHON2. 1/28/2016,2016.01.28-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.28-Kauai.pdf,2016.01.28,2016.01.28 +313,25-Jan-2016,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai, ",Surfing,Kaya Waldman,F,15,No injury,False,"Reef shark, 5'","The Garden Island, 2/2/2016",2016.01.25-Waldman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.25-Waldman.pdf,2016.01.25,2016.01.25 +314,24-Jan-2016,Unprovoked,USA,Texas,Off Surfside,Spearfishing,Keith Love,M,15,"Bruised ribs & tail bone, speargun broken and wetsuit cut",False,Bull sharks x 2,K. Love,2016.01.24.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.b-Love.pdf,2015.01.24.b,2016.01.24.b +315,24-Jan-2016,Boating,UNITED ARAB EMIRATES,Fujairah Emirate,35 miles off Fujairah,Fishing,Occupants: Hamza Humaid Al Sahra’a & 5 crew,M,15,"No injury to occupants, shark leapt into boat",False,Mako shark,"Gulf News, 1/25/2016",2016.01.24.a-UAEboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.24.a-UAEboat.pdf,2016.01.24.a,2016.01.24.a +316,23-Jan-2016,Unprovoked,USA,Hawaii,"Wailea Beach, Maui",Paddle boarding,Matt Mason,M,48,No injury,False,"Tiger shark, 14'","Grand Forks Herald, 1/27/2915",2016.01.23-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.23-Mason.pdf,2016.01.23,2016.01.23 +317,Reported 11-Jan-2016,Unprovoked,AUSTRALIA,Queensland,"Happy Valley Beach, Caloundra",Surfing,Shane Hilder,M,48,Laceration to right foot,False,Wobbegong shark,"ABC Sunshine Coast, 1/11/2016",2016.01.11.R-Hilder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.11.R-Hilder.pdf,2016.01.11.R,2016.01.11.R +318,05-Jan-2016,Unprovoked,AUSTRALIA,Queensland,Heron Island,Wading,Nicolas Davis,M,11,Laceration to right calf,False,Blacktip shark,"Nine News, 1/5/2016",2016.01.05-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.05-Davis.pdf,2016.01.05,2016.01.05 +319,02-Jan-2016,Unprovoked,AUSTRALIA,Queensland,Miall Island,Spearfishing,Allan Countryman,M,31,Lacerations to arms & leg,False,3 m shark,"Courier Mail, 1/2/2016",2016.01.02-Countryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2016.01.02-Countryman.pdf,2016.01.02,2016.01.02 +320,26-Dec-2015,Boating,SOUTH AFRICA,KwaZulu-Natal,Westbrook Beach,Kayak Fishing,Occupant: Grant Wardell,M,31,"No injury, kayak damaged",False,"White shark, 3 m","Traveller24, 12/26/2015",2015.12.26-Wardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.26-Wardell.pdf,2015.12.26,2015.12.26 +321,25-Dec-2015,Unprovoked,SPAIN,Grand Canary Island,"Arinaga Beach, Aguimes, Gran Canaria",Swimming,Cristina Ojeda-Thies ,F,38,Lacerations to left forearm,False,"Silky shark, 6.5'","Diaro de Visos, 12/26/2015",2015.12.25-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.25-GrandCanary.pdf,2015.12.25,2015.12.25 +322,22-Dec-2015,Unprovoked,USA,Hawaii,La'aloa Beach Park,Paddle boarding,Robert Ford,M,71,"No injury, shark bit board",False,9' shark,"West Hawaii Today, 12/23/2015",2015.12.22-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.22-Ford.pdf,2015.12.22,2015.12.22 +323,21-Dec-2015,Unprovoked,AUSTRALIA,New South Wales,Bondi Beach,Surfing,Dean Norburn,M,43,"No injury, shark leapt on surfboard",False,"Bronze whaler shark, 6'","The Telegraph, 12/22/;2015",2015.12.21.b-Norburn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.b-Norburn.pdf,2015.12.21.b,2015.12.21.b +324,21-Dec-2015,Unprovoked,BRAZIL,Pernambuco,Fernano de Noronha,Scuba diving,Márcio de Castro Palma ,M,32,Right hand & part of forearm removed,False,"Tiger shark, 1.5 m ","Fox News, 12/22/2015",2015.12.21.a-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.21.a-Brazil.pdf,2015.12.21.a,2015.12.21.a +325,19-Dec-2015,Unprovoked,ARUBA,Boat capsized,Boat capsized,Sea disaster,Adrian Esteban Rafael,M,58,fatal,True,"Tiger shark, 1.5 m ","Fox News, 12/11/2015",2015.12.19-Aruba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.19-Aruba.pdf,2015.12.19,2015.12.19 +326,13-Dec-2015,Boating,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,6 m boat: occupants Stephen & Andrew Crust,,58,"No injury, shark rammed boat & bit motor",False,"White shark, 3.5 m","Courier Mail, 12/15/2015",2015.12.13-Crust-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.13-Crust-Boat.pdf,2015.12.13,2015.12.13 +327,11-Dec-2015,Unprovoked,BAHAMAS,Off Andros Island,Off Andros Island,Lobster fishing,Richard Pinder,M,26,"Bitten on thigh, abdomen & hand",False,Bull shark,"Nassau Guardian, 12/12/2015",2015.12.11-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.11-Pinder.pdf,2015.12.11,2015.12.11 +328,08-Dec-2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mpande,Swimming / Wading,Tamsin Scott,F,22,Lacerations to both hands and forearms,False,Bull shark,"The Bulletin, 12/17/2015",2015.12.08-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.12.08-Scott.pdf,2015.12.08,2015.12.08 +329,20-Nov-2015,Unprovoked,ECUADOR,Galapagos Islands,"Punta Vicente Roca, Isabella Island",Snorkeling,Graham Hurley,M,55,Lacerations to left calf,False,Galapagos shark,G. Hurley,2015.11.20-Hurley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.20-Hurley.pdf,2015.11.20,2015.11.20 +330,16-Nov-2015,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Aaron Conti,M,55,Right heel injured,False,Galapagos shark,WFTV. 11/17/2015,2015.11.16-Conti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.16-Conti.pdf,2015.11.16,2015.11.16 +331,15-Nov-2015,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Swimming,S.R.B.,F,55,Leg injured,False,Galapagos shark,"Palm Beach Post, 11/16/2015",2015.11.15.b-SRB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-SRB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.b-SRB.pdf,2015.11.15.b,2015.11.15.b +332,15-Nov-2015,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,Allen Engelman,M,28,Lacerations to hand,False,"Spinner shark, 7'","5WPTV, 11/15/2015",2015.11.15.a-Engelman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.15.a-Engelman.pdf,2015.11.15.a,2015.11.15.a +333,10-Nov-2015,Unprovoked,AUSTRALIA,New South Wales,East Ballina,Surfing,Sam Morgan,M,20,Injury to left thigh,False,"Bull shark, 2.8 to 3.1 m","The Sydney Morning Herald, 11/11/2015",2015.11.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.10-Morgan.pdf,2015.11.10,2015.11.10 +334,07-Nov-2015,Invalid,USA,Florida,"Paradise Beach, Melbourne, Brevard County",Surfing,Ryla Underwood,F,9,Lower left leg injured,False,Shark involvement not confirmed,"Fox25Orlando, 11/7/2015",2015.11.07-Underwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.07-Underwood.pdf,2015.11.07,2015.12.23 +335,03-Nov-2015,Unprovoked,USA,Hawaii,"Kehena Beach, Hawaii",Swimming,Paul O'Leary,M,54,Laceration to right ankle,False,Shark involvement not confirmed,"Hawaii News Now, 11/4/2015",2015.11.03-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.03-O'Leary.pdf,2015.11.03,2015.11.03 +336,01-Nov-2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Wading,Jill Kruse,F,28,Injury to right ankle/calf & hand,False,3' to 5' shark,"USA Today, 11/1/2015",2015.11.01.b-Kruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.b-Kruse.pdf,2015.11.01.b,2015.11.01.b +337,01-Nov-2015,Unprovoked,MOZAMBIQUE,Inhambane Province,Maxixe,Fishing,Albino Ernesto,M,19,"Arms severely injured, surgically amputated",False,3' to 5' shark,"Coastweek, 12/3/2015",2015.11.01.a-Ernesto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.11.01.a-Ernesto.pdf,2015.11.01.a,2015.11.01.a +338,30-Oct-2015,Unprovoked,AUSTRALIA,Western Australia,Bald Island,Spearfishing,Norman Galli,M,50,Minor injury,False,3' to 5' shark,"Perth Now, 10/30/2015",2015.10.30-Galli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.30-Galli.pdf,2015.10.30,2015.10.30 +339,28-Oct-2015,Unprovoked,USA,Hawaii,"Malaka, Oahu",Body boarding,Raymond Senensi,M,10,"Lacerations & puncture wounds to right thigh, calf & ankle",False,3' to 5' shark,"Star Advertiser, 10/28/2015",2015.10.28-Senensi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.28-Senensi.pdf,2015.10.28,2015.10.28.a +340,25-Oct-2015,Unprovoked,SOUTH AFRICA,Western Cape Province,Stil Bay,Surfing,Stuart Anderson,M,42,"Lacerations to right calf, knee & hip",False,"White shark, 3 to 3.5m ","News 24, 10/26/2015",2015.10.25-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.25-Anderson.pdf,2015.10.25,2015.10.25 +341,21-Oct-2015,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Michael Salinger,M,21,Lacerations to left hand,False,5' shark,"ClickOrlando.com, 10/21/2015",2015.10.21-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.21-Playalinda.pdf,2015.10.21,2015.10.21 +342,19-Oct-2015,Unprovoked,USA,Florida,"Deerfield Beach, Broward County",Surfing,Peter Kirn,M,21,Left foot bitten,False,"Spinner shark, 5'","NBC6.com, 10/19/2015",2015.10.19-Kirn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.19-Kirn.pdf,2015.10.19,2015.10.19 +343,17-Oct-2015,Unprovoked,MOZAMBIQUE,Inhambane Province,"Nahaduga, Inhambane Bay",Fishing for shrimp,Albertina Cavel,F,35,fatal,True,"Spinner shark, 5'",Xinhua News Agency,2015.10.17.c-Cavel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.c-Cavel.pdf,2015.10.17.c,2015.10.17.c +344,17-Oct-2015,Invalid,USA,Hawaii,"Waikiki, ",Surfing,male,M,32,Left foot bitten by eel,False,No shark involvement,"KHON2, 10/17/2015",2015.10.17.b.-Hawaii. pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.b.-Hawaii. pdf,2015.10.17.b,2015.10.17.b +345,17-Oct-2015,Unprovoked,USA,Hawaii,"Lanikai Beach, Kailua, Oahu",Swimming,Tony Lee,M,44,Severe injuries to lower legs. Foot later surgically amputated.,False,"Tiger shark, 7'","KHON2, 10/17/2015",2015.10.17.a-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.17.a-Lee.pdf,2015.10.17.a,2015.10.17.a +346,13-Oct-2015,Boating,USA,California,"Off Leffingwell Landing, San Luis Obispo County",Kayak Fishing,Jordan Pavacich,M,44,"No injury, shark rammed kayak repeatedly",False,Hammerhead sp.,"The Tribune, 10/28/2015",2015.10.13-Pavacich-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.13-Pavacich-kayak.pdf,2015.10.13,2015.10.13 +347,09-Oct-2015,Unprovoked,USA,South Carolina,"Shipyard Beach Club, Hilton Head Island, Beaufort County",Boogie boarding,Meti Kershner,F,9,Laceration to forearm,False,Hammerhead sp.,"C. Creswell, GSAF",2015.10.09.b-Kershner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.b-Kershner.pdf,2015.10.09.b,2015.10.09.b +348,09-Oct-2015,Unprovoked,USA,Hawaii,"Leftovers, Oahu",Surfing,Colin Cook,M,25,"Left leg severed below the knee, defense injuries to left hand",False,"Tiger shark, 13' ","Hawaii News Now, 10/9/2015",2015.10.09.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.09.a-Cook.pdf,2015.10.09.a,2015.10.09.a +349,08-Oct-2015,Unprovoked,MOZAMBIQUE,Inhambane Province,"Maxixe, Inhambane Bay",Fishing,Alberto Rafael,M,25,"Arm severely injured, surgically amputated",False,"Tiger shark, 13' ",Club of Mozambique,2015.10.08-Rafael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.08-Rafael.pdf,2015.10.08,2015.10.08 +350,07-Oct-2015,Unprovoked,AUSTRALIA,Western Australia,Pyramids Beach,Surfing,Eli Zawadzki,M,18,Foot injured,False,"Tiger shark, 13' ","Daily Mail, 10/7/2015",2015.10.07-Zawadzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.07-Zawadzki.pdf,2015.10.07,2015.10.07 +351,05-Oct-2015,Unprovoked,USA,Florida,"Pepper Park Beach, St. Lucie County",Body boarding,male,M,22,2 lacerations to ankle,False,"Tiger shark, 13' ","WPBF.com, 10/6/2015",2015.10.05.b-FtPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.b-FtPierce.pdf,2015.10.05.b,2015.10.05.b +352,05-Oct-2015,Unprovoked,USA,Texas,Galveston,Wading,Gregory Slaughter,M,13,Foot & hands bitten,False,4' to 5' shark,"Houston Chronicle, 10/5/2015",2015.10.05.a-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05.a-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.05-Slaughter.pdf,2015.10.05.a,2015.10.05.a +353,04-Oct-2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Phillip Tarasovic,M,14,Severe lacerations to left hand,False,"Blacktip shark, 4' to 5'","CNN, 10/4/2015",2015.10.04-Tarasovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.10.04-Tarasovic.pdf,2015.10.04,2015.10.04 +354,29-Sep-2015,Unprovoked,USA,Florida,"Vilano Beach, St. Johns County",Surfing,"David Morrison, Jr.",M,22,"Laceration to heel, puncture wounds to dorsum of foot",False,"Blacktip shark, 5' to 6'","First Coast News, 9/30/2015",2015.09.29-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.29-Morrison.pdf,2015.09.29,2015.09.29 +355,26-Sep-2015,Unprovoked,AUSTRALIA,Queensland,"Russel Island, Frankland Group",Snorkeling,female,F,7,Laceration to leg,False,"Blacktip shark, 5' to 6'","The Cairns Post, 9/28/2015",2015.09.26-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.26-QLD.pdf,2015.09.26,2015.09.26 +356,24-Sep-2015,Boating,USA,California,"Horseshoe Rock, Santa Barbara County",Kayak fishing,Darren Kenney,M,7,"No injury, kayak damaged",False,"White shark, 19'",R. Collier,2015.09.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.24-Kenney.pdf,2015.09.24,2015.09.24 +357,20-Sep-2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,14,Minor injury to left ankle,False,juvenile shark,"Orlando Sentinel, 9/20/2015",2015.09.20.d-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.d-NSB.pdf,2015.09.20.d,2015.09.20.d +358,20-Sep-2015,Unprovoked,USA,Hawaii,"Upolu Point, North Kohala, Big Island",Spearfishing, Braxton Rocha,M,27,Severe laceration to left leg,False,"Tiger shark, 13'","Big Island Video, 9/20/2015",2015.09.20.c-Braxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.c-Braxton.pdf,2015.09.20.c,2015.09.20.c +359,20-Sep-2015,Unprovoked,USA,Florida,"Fernandina Beach, Amelia Island, Nassau County",Wading,"Joshua Bitner, Jr.",M,12,Significant injuries to leg,False,4' shark,"News4Jax, 9/21/2015",2015.09.20.b-Bitner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.b-Bitner.pdf,2015.09.20.b,2015.09.20.b +360,20-Sep-2015,Unprovoked,USA,Florida,"Vilano Beach, St. Johns County",Photographing fish,Filippo Schiavo ,M,16,Injury to right hand / wrist,False,4' shark,"News4JAX, 9/21/2015",2015.09.20.a-Schiavo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.20.a-Schiavo.pdf,2015.09.20.a,2015.09.20.a +361,19-Sep-2015,Boating,USA,California,"Gaviota State Beach, Santa Barbara County",Kayak Fishing,Mark McCracken,M,16,No injury,False,Hammerhead shark,"NBC News, 9/22/2015",2015.09.19-McCracken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.19-McCracken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.19-McCracken.pdf,2015.09.19,2015.09.19 +362,18-Sep-2015,Unprovoked,USA,Florida,"Big Talbot Island, Duval County",Swimming,Peter Vergenz ,M,16,Lacerations to calf,False,Hammerhead shark,"Action News Jax, 9/23/2015",2015.09.18-Vergenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.18-Vergenz.pdf,2015.09.18,2015.09.18 +363,17-Sep-2015,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Bryan Liebetrau,M,20,Injury to right foot,False,Hammerhead shark,"News4JAX, 9/15/2015",2015.09.17-Liebetrau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.17-Liebetrau.pdf,2015.09.17,2015.09.17 +364,08-Sep-2015,Unprovoked,AUSTRALIA,New South Wales,North Shelly Beach,Surfing,Justin Daniels,M,42,Minor laceration to hand,False,6' shark,"ABC News, 9/8/2015",2015.09.08-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.08-Daniels.pdf,2015.09.08,2015.09.08 +365,06-Sep-2015,Unprovoked,USA,California,"El Pescador Beach, Los Angeles County",Stand-Up Paddleboarding,Caterina Gennaro,F,50,"No injury, shark struck board, tossing her into the sea",False,"White shark, 11' to 12'","R. Collier, GSAF",2015.09.06-Gennaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.06-Gennaro.pdf,2015.09.06,2015.09.06 +366,05-Sep-2015,Provoked,USA,California,"Deer Creek Beach, Ventura County",Kayak Fishing,Dylan Marks,M,29,Laceration to dorsum of foot by hooked shark PROVOKED INCIDENT,False,Hammerhead shark.,"R. Collier, GSAF",2015.09.05-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.05-Marks.pdf,2015.09.05,2015.09.05 +367,04-Sep-2015,Unprovoked,AUSTRALIA,New South Wales,Hallidays Point,Surf-skiing,David Quinliven,M,62,Inuries to lower left leg & ankle,False,"White shark, 2.5 m","The Sydney Morning Herald, 9/4/2015",2015.09.04-Quinliven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.04-Quinliven.pdf,2015.09.04,2015.09.04 +368,03-Sep-2015,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Surf-skiing,Chip Wagner,M,62,Right foot bitten,False,4' shark?,"C. Creswell, GSAF",2015.09.03-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.03-Wagner.pdf,2015.09.03,2015.09.03 +369,01-Sep-2015,Unprovoked,THAILAND,Phuket,Karon Beach,Wading,Jane Neame,F,37,Left foot & ankle bitten,False,small shark,"Phuket Gazette, 9/1/2015",2015.09.01-Neame.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.01-Neame.pdf,2015.09.01,2015.09.01 +370,Sep-2015,Unprovoked,FIJI,unknown,unknown,Spearfishing,Viliame Lautiki,M,37,Leg bitten,False,Tiger shark,"Fiji Times, 2/8/2016",2015.09.00-Lautiki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.09.00-Lautiki.pdf,2015.09.00,2015.09.00 +371,29-Aug-2015,Unprovoked,USA,California,"Morro Strand State Beach, San Luis Obispo County",Surfing,Elinor Dempsey,F,54,"No injury, surfboard bitten",False,"White shark, 11' to 12'","R. Collier, GSAF",2015.08.29.b-Dempsey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.b-Dempsey.pdf,2015.08.29.b,2015.08.29.b +372,29-Aug-2015,Unprovoked,USA,California,"Morro Bay, San Luis Obispo County",Surfing,Daniel Phillips,M,21,"No injury, shark struk sufer's leg and his board",False,"White shark, 10' to 12' ","R. Collier, GSAF",2015.08.29.a-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.29.a-Phillips.pdf,2015.08.29.a,2015.08.29.a +373,22-Aug-2015,Invalid,USA,Florida,"Cocoa Beach, Brevard County",Surfing,young boy,M,21,Wound to right lower leg,False,Shark involvement not confirmed,"Brevard Times, 8/22/2015",2015.08.22.b-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.b-CocoaBeach.pdf,2015.08.22.b,2015.08.22.b +374,22-Aug-2015,Unprovoked,AUSTRALIA,New South Wales,Lighthouse Beach,Surfing,Dale Carr,M,38,Severe laceration to left buttock & thigh,False,Shark involvement not confirmed,"Daily Telegraph, 8/22/2015",2015.08.22.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.22.a-Carr.pdf,2015.08.22.a,2015.08.22.a +375,20-Aug-2015,Unprovoked,USA,South Carolina,"Murrells Inlet, Georgetown County",Surfing,Dylan Peyton,M,15,"Injuries to left calf, arm and hand",False,4' shark,"C. Creswell, GSAF",2015.08.20-Peyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.20-Peyton.pdf,2015.08.20,2015.08.20 +376,19-Aug-2015,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Walking,Kaley Szarmack,F,10,Lacerations to right leg,False,3' shark,"ABC News, 8/21/2015",2015.08.19-Szsarmack,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.19-Szsarmack,2015.08.19,2015.08.19 +377,18-Aug-2015,Boating,USA,California,Santa Barbara County,Kayak Fishing,Connor Lyon,M,22,"No injury, kayak bitten",False,"White shark, 13'","R. Collier, GSAF",2015.08.18.b-Lyon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.b-Lyon.pdf,2015.08.18.b,2015.08.18.b +378,18-Aug-2015,Invalid,SPAIN,Alicante,"Poniente Beach, Benidorm",Swimming,male,M,10,Minor injury when he attempted to touch a fish. ,False,Shark involvement not confirmed,"The Local, 8/18/2015",2015.08.18.a-Benidorm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.18.a-Benidorm.pdf,2015.08.18.a,2015.08.18.a +379,10-Aug-2015,Provoked,USA,California,Cortes Bank,Spearfishing,Richard Shafer,M,57,Right hand bitten PROVOKED INCIDENT,False,Hammerhead shark. 6' to 7',"NBC San Diego, 8/13/2015",2015.08.10-Shafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.08.10-Shafer.pdf,2015.08.10,2015.08.10 +380,31-Jul-2015,Unprovoked,AUSTRALIA,New South Wales,Evans Head,Surfing,Craig Ison,M,52,"Lacerations and puncture wounds to hip, thigh, arm and hand",False,White shark,"Daily Telegraph, 7/31/2015",2015.07.31-Ison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.31-Ison.pdf,2015.07.31,2015.07.31 +381,28-Jul-2015,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Thomas McCall,M,47,Minor inuries to toes,False,White shark,YouTube,2015.07.28-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.28-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.28-McCall.pdf,2015.07.28,2015.07.28 +382,27-Jul-2015,,AUSTRALIA,Victoria,Tyrendarra Beach,Surfing,male,M,40,Injury to hand,False,White shark,male,2015.07.27-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.27-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.27-Victoria.pdf,2015.07.27,2015.07.27 +383,26-Jul-2015,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Shawn Warrilow,M,25,Minor injury to sole of foot,False,"Blacktip or spinner shark, 4'",CBS 7/27/2015,2015.07.26.b-Warrilow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.b-Warrilow.pdf,2015.07.26.b,2015.07.26.b +384,26-Jul-2015,Invalid,USA,South Carolina,"Edisto Beach, Colleton County",Floating,female,F,35,"2' cut to dorsum of foot, 2 puncture wounds to sole",False,"Thought to involve a 3' to 4' shark, but shark involvement not confirmed","C. Creswell, GSAF, ABC 11, 7/27/2015",2015.07.26.a-Edisto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.26.a-Edisto.pdf,2015.07.26.a,2015.07.26.a +385,25-Jul-2015,Unprovoked,AUSTRALIA,Tasmania,"Lachan Island, Mercury Passage",Scallop diving on hookah,Damien Johnson,M,46,fatal,True,"White shark, 3.9 to 4.2 m","C. Black, GSAF",2015.07.25-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.25-Johnson.pdf,2015.07.25,2015.07.25 +386,23-Jul-2015,Provoked,USA,California,"La Jolla, San Diego County",Kayak Fishing,Austin Lorber,M,31,No injury to occupant. Kayak bitten by gaffed shark. PROVOKED INCIDENT,False,"Mako shark, 100-lb","NBC San Diego, 7/27/2015",2015.07.23.b-Lorber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.b-Lorber.pdf,2015.07.23.b,2015.07.23.b +387,23-Jul-2015,Unprovoked,AUSTRALIA,Victoria,Tyrendarra Beach near Portland,Surfing,male,M,40,Left hand bitten,False,"Bronze whaler shark, 1.5m","ABC News, 7/27/2015",2015.07.23.a-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.23.a-Victoria.pdf,2015.07.23.a,2015.07.23.a +388,22-Jul-2015,Unprovoked,REUNION,St. Leu,St. Leu,Surfing,Rodolphe Arriéguy,M,45,Arm bitten,False,"Bull shark, 2m",Zig Zag Surfing Magazine,2015.07.22-Arrieguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.22-Arrieguy.pdf,2015.07.22,2015.07.22 +389,19-Jul-2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey's Bay,Surfing,Mick Fanning,M,34,No injury,False,White shark,"BBC, 7/20/2015",2015.07.19-Fanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.19-Fanning.pdf,2015.07.19,2015.07.19 +390,10-Jul-2015,Unprovoked,USA,California,"Huntington Beach, Orange County",Surfing,Danny Miskin,M,38,"No injury, shark bumped & damaged board",False,"White shark, 7'","KTLA, 7/10/2015",2015.07.10-Miskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.10-Miskin.pdf,2015.07.10,2015.07.10 +391,08-Jul-2015,Invalid,USA,California,"Huntington Beach, Orange County",Treading water,Eugene Finney,M,39,Laceration to back,False,Shark involvement not cofirmed,"Sentinel & Enterprise.com, 10/4/2015",2015.07.08-Finney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.08-Finney.pdf,2015.07.08,2015.07.08 +392,06-Jul-2015,Invalid,FRENCH POLYNESIA,Bora Bora,Bora Bora,Swimming,Joe Termini,M,39,Parallel lacerations to torso inconsistent with shark bite,False,No shark involvement,"Hollywood Life, 7/6/2015",2015.07.06-Termini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.06-Termini.pdf,2015.07.06,2015.07.06 +393,04-Jul-2015,Unprovoked,BAHAMAS,Grand Bahama Island,"Port Lucaya, Freeport",Spearfishing,Katie Hester,F,23,Lacerations to lower leg & ankle,False,6' shark,"ABC action News, 7/7/2015",2015.07.04.b-Hester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.b-Hester.pdf,2015.07.04.b,2015.07.04.b +394,04-Jul-2015,Unprovoked,USA,North Carolina,"Off Surf City, Pender County",Spearfishing,a marine,M,32,Lacerations to right hand & forearm,False,6' shark,"C. Creswell, GSAF",2015.07.04.a-Marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.04.a-Marine.pdf,2015.07.04.a,2015.07.04.a +395,03-Jul-2015,Unprovoked,AUSTRALIA,New South Wales,Lennox Head,Surfing,Michael Hoile,M,52,"No injury, shark bit surfboard",False,White shark,"Northern Star, 7/3/2015",2015.07.03-Hoile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.03-Hoile.pdf,2015.07.03,2015.07.03 +396,02-Jul-2015,Unprovoked,AUSTRALIA,New South Wales,East Ballina,Body boarding ,Matt Lee,M,32,Significant injuries to lower legs,False,White shark,"Northern Star, 7/2/2015",2015.07.02-Matt-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.02-Matt-Lee.pdf,2015.07.02,2015.07.02 +397,01-Jul-2015,Unprovoked,USA,North Carolina,"Ocracoke, Lifeguard Beach, National Park Service, Hyde County",Swimming,Andrew Costello,M,68,"Injuries to torso, hip, lower leg & hands",False,6' to 7' shark,"C. Creswell, GSAF",2015.07.01-Costello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.07.01-Costello.pdf,2015.07.01,2015.07.01 +398,30-Jun-2015,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock, Yamba",Surfing,Steve,M,68,Hand bitten,False,6' to 7' shark,"The Telegraph, 7/8/2015",2015.06.30.b-Steve.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.b-Steve.pf,2015.06.30.b,2015.06.30.b +399,30-Jun-2015,Unprovoked,USA,South Carolina,"Isle of Palms County Park, Isle of Palms, Charleston County",Playing in the water,Kysen Weakley,M,12,Shallow lacerations & puncture to lateral left leg,False,4' to 5' shark,"C. Creswell, GSAF",2015.06.30.a.pdf-Weakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.30.a.pdf-Weakley.pdf,2015.06.30.a,2015.06.30.a +400,27-Jun-2015,Unprovoked,USA,North Carolina,"Rodanthe, Dare County",Swimming,John Cole,M,18,"Injuries to right calf, buttock and both hands",False,Bull shark,"C. Creswell, WRAL, 6/27/2015",2015.06.27.b-Rodanthe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.b-Rodanthe.pdf,2015.06.27.b,2015.06.27.b +401,27-Jun-2015,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay near Knysna,Body Boarding,Caleb Swanepoel,M,19,"Right leg severed, multiple lacerations to left leg",False,White shark,"NSRI, 6/27/205",2015.06.27.a-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27.a-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.27-Swanepoel.pdf,2015.06.27.a,2015.06.27.a +402,26-Jun-2015,Invalid,USA,Florida,"Jacksonville Beach, Duval County",Swimming,female,F,19,Minor lacerations to leg,False,Shark involvement not confirmed,"Action News Jax, 6/26/2015",2015.06.26.c-Jacksonville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.c-Jacksonville.pdf,2015.06.26.c,2015.06.26.c +403,26-Jun-2015,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lookout Beach, Plettenberg Bay",Surfing,Dylan Reddering,M,23,Multiple lacerations to torso & leg,False,"White shark, 2m to 3 m",Zig Zag Surfing Magazine,2015.06.26.b-Reddering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.b-Reddering.pdf,2015.06.26.b,2015.06.26.b +404,26-Jun-2015,Unprovoked,USA,South Carolina,"South Beach, Hunting Island State Park, Beaufort County",Standing,"Lance Donahue, Jr",M,43,Puncture wounds to foot,False,4' shark,"C. Creswell, GSAF; WCNC, 6/26/2015",2015.06.26.a-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.26.a-Donahue.pdf,2015.06.26.a,2015.06.26.a +405,Reported 25-Jun-2015,Provoked,AUSTRALIA,Western Australia,Rottnest Island,Swimming,Stephen,M,19,Minor lacerations to forearm when he grabbed shark by its tail PROVOKED INCIDENT,False,Wobbegong shark,"West Australian Police, 6/25/2015",2015.06.25.R-Stephen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25.R-Stephen.pdf,2015.06.25.R,2015.06.25.R +406,25-Jun-2015,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Body surfing?,Patrick Thornton,M,47,Multiple lacerations to back,False,Wobbegong shark,"C. Creswell, GSAF",2015.06.25-Avon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.25-Avon.pdf,2015.06.25,2015.06.25 +407,24-Jun-2015,Unprovoked,USA,North Carolina,Surf City,Swimming,Brady Noyes,M,6,Minor injury to foot,False,Sandtiger shark,"C. Creswell, GSAF",2015.06.24.b-Noyes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.b-Noyes.pdf,2015.06.24.b,2015.06.24.b +408,24-Jun-2015,Invalid,AUSTRALIA,Western Australia,Denmark,Surfing,Lily Kumpe,F,37,"Bruises and abrasions to face, chin, chest, both shins & feet and cut to right hand when her surfboard was struck with force",False,White shark,"L. Kumpe, R. Mcauley",2015.06.24.a-Kumpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.24.a-Kumpe.pdf,2015.06.24.a,2015.06.24.a +409,23-Jun-2015,Unprovoked,USA,South Carolina,"St. Helena Island, Beaufort County",Standing,male,M,9,Minor injury to calf ,False,small shark,"C. Creswell, GSAF; R. Lurye, Island Packet",2015.06.23-Davenport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.23-Davenport.pdf,2015.06.23,2015.06.23 +410,19-Jun-2015,Unprovoked,PUERTO RICO,Off Cabo Rojo,Off Cabo Rojo,Spearfishing,Benjamin Rios,M,36,Injury to hand,False,small shark,"Yahoo News, 6/19/2015",2015.06.19-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.19-Rios.pdf,2015.06.19,2015.06.19 +411,17-Jun-2015,Unprovoked,USA,Florida,Daytona Beach Shores,Swimming,Gavin Simpson,M,10,Minor injury to calf ,False,small shark,"WTXL TV, 6/17/2015",2015.06.17-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.17-Simpson.pdf,2015.06.17,2015.06.17 +412,14-Jun-2015,Unprovoked,USA,North Carolina,"Oak Island, Brunswick County",Wading,Hunter Treschel,M,16,Arm amputated below shoulder,False,Bull shark,"C. Creswell, GSAF",2015.06.14.b-Treschel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.b-Treschel.pdf,2015.06.14.b,2015.06.14.b +413,14-Jun-2015,Unprovoked,USA,North Carolina,"Oak Island, Brunswick County",Wading,Kiersten Yow,F,12,Left arm amputated at elbow & severe injury to leg,False,Bull shark,"C. Creswell, GSAF",2015.06.14.a-Yow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.14.a-Yow.pdf,2015.06.14.a,2015.06.14.a +414,13-Jun-2015,Unprovoked,USA,California,Off San Diego,Wading,Elke Specker,F,12,Severe laceration to leg,False,Mako shark,"Courthouse News Service, 11/14/2016",2015.06.13-Specker,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.13-Specker,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.13-Specker,2015.06.13,2015.06.13 +415,11-Jun-2015,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Boogie boarding,girl,F,13,Minor lacerations to foot,False,4' shark,"C. Creswell, GSAF",2015.06.11-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.11-OceanIsle.pdf,2015.06.11,2015.06.11 +416,07-Jun-2015,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Playing,Lucas Vertullo,M,11,Lacerations to right calf,False,"Bull shark, 5'","Florida Today, 6/7/2015",2015.06.07-Vertullo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.07-Vertullo.pdf,2015.06.07,2015.06.07 +417,05-Jun-2015,Unprovoked,USA,Florida,Fort Lauderdale,Attempting to rescue a shark,female,F,17,Puncture wound to finger,False,small nurse shark,"7 News, 6/5/2015",2015.06.05-FortLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.05-FortLauderdale.pdf,2015.06.05,2015.06.05 +418,01-Jun-2015,Unprovoked,REUNION,Le Port,Folette,Surfing,Eddy Chaussalet,M,47,Left forearm bitten,False,"Bull shark, 2.5 m","Clincanoo, 6/1/2015",2015.06.01-Chaussalet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.06.01-Chaussalet.pdf,2015.06.01,2015.06.01 +419,29-May-2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Standing,Ashlyn Gilpin,F,14,Left foot bitten,False,"Bull shark, 2.5 m","Orlando Sentinel, 5/29/2015",2015.05.29.b-Gilpin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.b-Gilpin.pdf,2015.05.29.b,2015.05.29.b +420,29-May-2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Dakota Hatfield,F,19,Minor lacerations to dorsum of right foot,False,"Bull shark, 2.5 m","ClickOrlando, 5/29/2015",2015.05.29.a-Hatfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.29.a-Hatfield.pdf,2015.05.29.a,2015.05.29.a +421,25-May-2015,Unprovoked,FRENCH POLYNESIA,Rangiroa,Avatoru Pass,Spearfishing,male,M,19,Lacerations to right forearm,False,1m to 1.2 m shark,Polynésie 1ère. 5/262015,2015.05.25-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.25-Rangiroa.pdf,2015.05.25,2015.05.25 +422,24-May-2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,Alysa Whetro,F,13,"Puncture wounds to lower left leg and ankle, shallow lacerations to foot, deep laceration to Achilles tendon",False,1m to 1.2 m shark,"WFTV, 5/27/2015",2015.05.24-Wheatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.24-Wheatro.pdf,2015.05.24,2015.05.24 +423,20-May2015,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Matthew Zaccaria,M,18,2 puncture wounds to dorsum of left foot,False,5' shark,"WFTV, 5/20/2015",2015.05.20-Zaccaria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.20-Zaccaria.pdf,2015.05.20,2015.05.20 +424,15-May-2015,Unprovoked,USA,South Carolina,Sullivan's Island,Surfing,male,M,30,Laceration to foot ,False,6' shark,"News 2, 5/15/2015",2015.05.15-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.15-Sullivans.pdf,2015.05.15,2015.05.15 +425,09-May-2015,Unprovoked,NEW CALEDONIA,Kouare ,Kouare ,Snorkeling,Yves Berthelot,M,50,fatal,True,"Bull shark, 3.5 m",Les Nouvelles Caledonnie,2015.05.09-Berthelot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.09-Berthelot.pdf,2015.05.09,2015.05.09 +426,07-May-2015,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,Josh Green,M,50,"Lacerations to lower left leg, ankle & foot",False,"Bull shark, 3.5 m","KnightNews.com, 5/9/2015",2015.05.07-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.07-Green.pdf,2015.05.07,2015.05.07 +427,03-May-2015,Unprovoked,AUSTRALIA,New South Wales,Saltwater Beach,Surfing,Bruce Lucas,M,50,Injuries to left arm & right hand,False,White shark,"ABC, 5/3/2015",2015.05.03-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.03-Lucas.pdf,2015.05.03,2015.05.03 +428,02-May-2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Diving,Mathieu Dasnois,M,29,"Injuries to leg, left arm & both hands",False,"White shark, 3.5 m","DispatchLive, 5/4/2015",2015.05.02-Dasnois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.02-Dasnois.pdf,2015.05.02,2015.05.02 +429,29-Apr-2015,Unprovoked,USA,Hawaii,Kanahena Cove ,Snorkeling,Margaret Cruse,F,65,fatal,True,"White shark, 3.5 m","Star Advertiser, 4/30/2015",2015.04.29-Cruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.29-Cruse.pdf,2015.04.29,2015.04.29 +430,26-Apr-2015,Unprovoked,USA,Florida,"Resident's Beach, Marco Island",Wading,Carsten Jessen,M,63,Lacerations to left calf,False,3- to 4-foot shark,"ABC-7, 4/27/2015",2015.04.26-Jessen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.26-Jessen.pdf,2015.04.26,2015.04.26 +431,25-Apr-2015,Unprovoked,AUSTRALIA,South Australia,Fishery Bay,Surfing,Chris Blowes ,M,26,Leg severed at mid-thigh,False,"White shark, 6 m","The Advertiser, 4/25/2015",2015.04.25-Blowes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.25-Blowes.pdf,2015.04.25,2015.04.25 +432,24-Jun-2015,Unprovoked,AUSTRALIA,New South Wales,"Belongil Beach, Byron Bay",Surf skiing ,Woody Vidgens,M,71,"No injury, knocked off ski",False,"White shark, 3 m","Echo Daily, 6/25/2015",2015.04.24.c-Vidgens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.24.c-Vidgens.pdf,2015.04.24.c,2015.04.24.c +433,13-Apr-2015,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Photographing the shark,Mark Rackley,M,48,Lacerations to shoulder and left bicep,False,"Blue shark, 8 to 9 feet","Miami Herald, 4/25/2015",2015.04.13-Rackley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.13-Rackley.pdf,2015.04.13,2015.04.13 +434,12-Apr-2015,Unprovoked,REUNION,Saint-Gilles-les-Bains,Cap Homard,Surfing,Elio Canestri,M,13,fatal,True,Bull shark,"Le Huffington Post, 4/15/2015",2015.04.12-Canestri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.12-Canestri.pdf,2015.04.12,2015.04.12 +435,11-Apr-2015,Unprovoked,AUSTRALIA,New South Wales,McKenzies Beach,Paddle boarding,male,M,13,Ankle injured,False,Bull shark,"Surf Life Saving, 4/11/2015",2015.04.11-McKenzie-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.11-McKenzie-Surfer.pdf,2015.04.11,2015.04.11 +436,03-Apr-2015,Unprovoked,USA,Florida,"3 miles off Jupiter, Palm Beach County",Spearfishing,Rick Neumann,M,70,Injuries to head & torso,False,Bull shark,"ABC Action News, 4/6/2015",2015.04.03-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.04.03-Neumann.pdf,2015.04.03,2015.04.03 +437,29-Mar-2015,Invalid,ITALY,Sardinia,Sardinia,Diving,Eugenio Masala,M,43,fatal,True,Shark involvement not cofirmed,"A. de Maddalena, GSAF",2015.03.29-Masala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.29-Masala.pdf,2015.03.29,2015.03.29 +438,31-Mar-2015,Invalid,BRAZIL,Pernambuco,"Praia del Chifre, Olinda",Surfing,Diego Gomes Mota,M,23,Injury to left thigh from unidentified species of fish; injuries inconsistent with shark bite,False,No shark involvement,"Globo, 3/31/2015",2015.03.31-Mota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.31-Mota.pdf,2015.03.31,2015.03.31 +439,26-Mar-2015,Boating,SOUTH AFRICA,Eastern Cape Province,Yellow Sands Point,Kayak Fishing,Kayak: Occupant Kelly Janse van Rensburg,M,36,No injury but kayak bitten,False,"White shark, 4 m","Times Live, 4/1/2015",2015.03.26-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.26-VanRensburg.pdf,2015.03.26,2015.03.26 +440,21-Mar-2015,Unprovoked,EGYPT,Marsa Alam,Marsa Alam,Swimming,male,M,52,fatal,True,Mako shark,"E. Ritter, GSAF",2015.03.21-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.21-Egypt.pdf,2015.03.21,2015.03.21 +441,18-Mar-2015,Unprovoked,USA,Hawaii,Hapuna Beach,Standing / Snorkeling,Ken Grasing,M,58,Lacerations to left forearm. Lacerations to left hand and thigh,False,"Tiger shark, 8 to 12 feet","KMBC, 3/19/2015",2015.03.18-Grasing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.18-Grasing.pdf,2015.03.18,2015.03.18 +442,16-Mar-2015,Unprovoked,FRENCH POLYNESIA,Bora Bora,Anau,Hand feeding sharks,male,M,9,Hand bitten,False,Blacktip shark,"Radio1, 3/16/2015",2015.03.16-Bora-Bora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.16-Bora-Bora.pdf,2015.03.16,2015.03.16 +443,11-Mar-2015,Boating,AUSTRALIA,New South Wales,"Julian Rocks, Byron Bay",Fishing,Dinghy: Occupant Robbie Graham,M,9,Bruised in falling overboard as shark bumped boat,False,Blacktip shark,"Northern Star, 3/13/2015",2015.03.11-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.11-Graham.pdf,2015.03.11,2015.03.11 +444,10-Mar-2015,Provoked,MEXICO,Sinaloa,Mazlatan,Fishing,David Villegas Mora,M,36,Right hand bitten by hooked shark PROVOKED INCIDENT,False,Blacktip shark,"Noreste, 3/10/2015",2015.03.10-Mora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.10-Mora.pdf,2015.03.10,2015.03.10 +445,07-Mar-2015,Unprovoked,FRENCH POLYNESIA,Central Tuamotu,"Tupapati, Hikueru Atoll",Sitting in the water,male,M,18 months,Thigh bitten,False,Blacktip Reef shark ,"Radio1, 3/9/2015",2015.03.07-18-month.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.03.07-18-month.pdf,2015.03.07,2015.03.07 +446,15-Feb-2015,Boating,ATLANTIC OCEAN,unknown,unknown,Transatlantic Rowing,"Avalon, a carbon kevlar monohull: 8 occupants",,18 months,"No injury, shark bit rudder",False,White shark,"Yorkshire Post, 3/16/2014",2015.02.15-Avalon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.15-Avalon.pdf,2015.02.15,2015.02.15 +447,14-Feb-2015,Unprovoked,REUNION,d’Étang-Salé,Ravine Mula,Swimming,Talon Bishop,F,22,fatal,True,"Tiger shark, 3.5 m","L'Yonne Républicaine, 2/14/2015",2015.02.14-Bishop.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.14-Bishop.pdf ,2015.02.14,2015.02.14 +448,09-Feb-2015,Unprovoked,AUSTRALIA,New South Wales,Shelly Beach,Surfing,Tadashi Nakahara,M,41,fatal,True,3.5 to 4 m shark,"The Telegraph, 2/9/2015",2015.02.09-Nakahara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.09-Nakahara.pdf,2015.02.09,2015.02.09 +449,08-Feb-2015,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Byron Bay",Surfing,Jacob Reitman,M,35,Laceration & puncture wounds to right flank & hip,False,2 m to 3 m shark,"The Telegraph, 2/8/2015",2015.02.08-Reitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.08-Reitman.pdf,2015.02.08,2015.02.08 +450,05-Feb-2015,Unprovoked,AUSTRALIA,New South Wales,Mereweather Beach,Bodysurfing,Ben McPhee,M,35,5 minor puncture wounds to lower left leg,False,1.8 m shark,"The Telegraph, 1/6/2015",2015.02.05-McPhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.02.05-McPhee.pdf,2015.02.05,2015.02.05 +451,30-Jan-2015,Boating,AUSTRALIA,Queensland,"Nerang River, Surfer's Paradise",Rowing,Racing scull: Occupant Trevor Carter,M,57,"No injury, shark's teeth scratched hull",False,"Bull shark, 1.3 m","Gold Coast Bulletin, 1/31/2015",2015.01.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.20-Carter.pdf,2015.01.30,2015.01.30 +452,27-Jan-2015,Provoked,USA,Hawaii,Lahaina,Shark fishing,Michael Pollard,M,20,Lacerations to calf by hooked shark PROVOKED INCIDENT,False,4' shark,"Huffington Post, 1/28/2015",2015.01.27-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.27-Pollard.pdf,2015.01.27,2015.01.27 +453,24-Jan-2015,Unprovoked,AUSTRALIA,New South Wales,Flat Rock,Surfing,Hamish Murray,M,20,"No injury, surfboard dented",False,4' shark,"Northern Star, 1/26/2015",2015.01.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.24-Murray.pdf,2015.01.24,2015.01.24 +454,23-Jan-2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon Beach,Floating,Christiaan Nel,M,24,Foot bitten,False,4' shark,"Daily Dispatch, 1/31/2015",2015.01.23-Nel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.23-Nel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.23-Nel.pdf,2015.01.23,2015.01.23 +455,19-Jan-2015,Boating,USA,Florida,Off Panama City,Fishing,22-ft boat. Occupant Captain Scott Fitzgerald,M,24,No injury but shark bit trolling motor & rammed boat,False,White shark,"The Panhandle, 1/20/2015",2015.01.19.b-Fitzgerald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.b-Fitzgerald-boat.pdf,2015.01.19.b,2015.01.19.b +456,19-Jan-2015,Invalid,AUSTRALIA,New South Wales,"Wategos Beach, Byon Bay",Surfing & filming dolphins,Diane Ellis,F,24,Board snapped in two,False,Shark involvement not confirmed,"ABC North Coast, 1/21/2015",2015.01.19.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.19.a-Ellis.pdf,2015.01.19.a,2015.01.19.a +457,17-Jan-2015,Boating,AUSTRALIA,New South Wales,Off Blacksmith Beach,Fishing,Boat: occupants: Tim Watson & Allan de Sylva,M,24,"Shark bumped boat, no injury to occupants",False,5 m shark,"The Sydney Morning Herald, 1/18/2015",2015.01.17-Watson-Tinny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.17-Watson-Tinny.pdf,2015.01.17,2015.01.17 +458,16-Jan-2015,Unprovoked,AUSTRALIA,New South Wales,"Mollymook Beach, Bannister Head",Filming,Sam Smith,M,17,Bitten on hand & wrist,False,1.5 m shark,"Milton-Ulladulla Times, 1/16/2015",2015.01.16-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.16-Smith.pdf,2015.01.16,2015.01.16 +459,08-Jan-2015,Invalid,USA,Florida,Florida,Swimming after falling overboard,Rob Konrad,M,38,"During his 16-hour swim to shore, he was circled by a shark but it did not injure him",False,No shark involvement,"UPI, 1/12/2015",2015.01.08-Konrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.08-Konrad.pdf,2015.01.08,2015.01.08 +460,06-Jan-2015,Unprovoked,BAHAMAS,Abaco Islands,"Tahiti Beach, Elbow Cay",Snorkeling,Lacy Webb,F,34,Severe bite to right flank,False,White shark or oceanic whitetip shark,"Britt Martin; Local10, 1/7/2015",2015.01.06-Webb-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.06-Webb-Martin.pdf,2015.01.06,2015.01.06 +461,03-Jan-2015,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Chintsa East Beach,Surfing,Jason Krafft,M,15,"Lacerations to lower left leg, puncture wounds to sole of left foot",False,"Raggedtooth shark, 1.3 m","Dispatch Online, 1/7/2015",2015.01.03-Krafft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.03-Krafft.pdf,2015.01.03,2015.01.03 +462,01-Jan-2015,Unprovoked,USA,Florida,"Windsor Beach, Indian River County",Surfing,male,M,12,Leg bitten,False,"""A small shark""","WPTV-West Palm Beach, 1/2/2015",2015.01.01-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.01.01-Child.pdf,2015.01.01,2015.01.01 +463,29-Dec-2014,Unprovoked,AUSTRALIA,New South Wales,Bherwerre Beach,Surfing,Jeff Brown,,12,Lacerations to both feet,False,2 m shark,"South Coast Register, 12/29/2014",2014.12.29.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/N56702014.12.29.b-Brown.pdf,2014.12.29.b,2014.12.29.b +464,29-Dec-2014,Unprovoked,AUSTRALIA,Western Australia,Three Stripes near Cheynes Beach,Spearfishing,Jay Muscat,M,17,fatal,True,"White shark, 4 to 5 m","The West Australian, 12/29/2014",2014.12.29.a-Muscat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.29.a-Muscat.pdf,2014.12.29.a,2014.12.29.a +465,28-Dec-2014,Sea Disaster,GREECE,33 nautical miles off Othonoi Island,33 nautical miles off Othonoi Island,Spearfishing,Passenger ferry Norman Atlantic,,17,"Of 9 bodies recovered, one was bitten by a shark",False,Shark involvement prior to death still to be determined,"Greek Reporter, 1/13/2015",2014.12.28.d-NormanAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.d-NormanAtlantic.pdf,2014.12.28.d,2014.12.28.d +466,28-Dec-2014,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Swimming,"5 people claimed to have been injured by a ""baby"" shark",,17,Minor cuts on feet,False,Shark involvement not confirmed & highly unlikely,"IOL News, 12/29/2014",2014.12.28.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.c-Durban.pdf,2014.12.28.c,2014.12.28.c +467,28-Dec-2014,Unprovoked,USA,California,"Montaña de Oro State Park, San Luis Obispo County ",Surfing,Kevin Swanson,M,50,Injury to hip/leg,False,"White shark, 8' to 10'","R. Collier, GSAF",2014.12.28.b-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.b-Swanson.pdf,2014.12.28.b,2014.12.28.b +468,28-Dec-2014,Provoked,AUSTRALIA,Victoria,Paradise Beach,Fishing,male,M,40s,Laceration to calf when he fell on shark he had caught PROVOKED INCIDENT,False,1.5 m shark,"ABC.net.au, 12/28/2014",2014.12.28.a-ParadiseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.28.a-ParadiseBeach.pdf,2014.12.28.a,2014.12.28.a +469,Reported 23-Dec-2014,Unprovoked,JAPAN,unknown,unknown,Diving / Filming,male,M,40s,"No injury, shark snagged its teeth in diver's suit",False,Goblin shark,"Maxisciences.com, 12/23/2014",2014.12.23.R-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.23.R-GoblinShark.pdf,2014.12.23.R,2014.12.23.R +470,15-Dec-2014,Unprovoked,AUSTRALIA,Queensland,Rudder Reef,Spearfishing,Daniel Smith,M,17,fatal,True,Tiger shark,"Herald Sun, 12/15/2014",2014.12.15-DanielSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.15-DanielSmith.pdf,2014.12.15,2014.12.15 +471,Reported 03-Dec-2014,Provoked,SPAIN,Granada,Off Motril,Fishing for blue sharks,male,M,17,Glancing bite to wrist from netted shark PROVOKED INCIDENT,False,Tiger shark,"ABCandalucia, 12/3/2014",2014.12.03.R-Spanish-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.12.03.R-Spanish-fisherman.pdf,2014.12.03.R,2014.12.03.R +472,29-Nov-2014,Unprovoked,AUSTRALIA,Western Australia,"Pyramids Beach, Port Bouvard",Surfing,Cameron Pearman,M,13,Minor injuries to right leg,False,Tiger shark,"The Sydney Morning Herald, 11/29/2014",2014.11.29-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.29-Pearman.pdf,2014.11.29,2014.11.29 +473,20-Nov-2014,Provoked,MAURITIUS,Cargados Carajos Shoals (St. Brandon),Cargados Carajos Shoals (St. Brandon),Fishing,Rameshwar Ram Dhauro,M,39,fatal,True,Tiger shark,A. R. Ramjatan ,2014.11.20-Mauritius.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.20-Mauritius.pdf ,2014.11.20,2014.11.20 +474,19-Nov-2014,Boating,AUSTRALIA,Western Australia,Freo,Fishing,Boat: occupants: David Lock & his father,M,39,"Shark chasing fish bumped boat, no injury to occupants",False,White shark,"The West Australian, 11/20/2014",2014.11.19-Freo.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.19-Freo.pdf ,2014.11.19,2014.11.19 +475,Reported 17-Nov-2014,Boating,USA,California,"Franklin Point, San Mateo County",Fishing,Boat: occupants: Matt Mitchell & 2 other people,,39,"Shark bumped boat, no injury to occupants",False,White shark,"Inquisitr, 11/17/2014",2014.11.17-CA-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.17-CA-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.17-CA-Fishermen.pdf,2014.11.17,2014.11.17 +476,16-Nov-2014,Unprovoked,USA,Florida,"Indian Harbor Beach, Brevard County",Surfing,male,M,44,Laceration to left hand,False,2' shark,"USA Today, 11/16/2014",2014.11.16-IndianHarbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.16-IndianHarbor.pdf,2014.11.16,2014.11.16 +477,13-Nov-2014,Unprovoked,USA,Hawaii,"Airplane Beach, Lahina, West Maui",Snorkeling,Andrew Haas,M,53,Laceration to left upper leg,False,1.5 m shark,"G. Kubota, Star Advertiser, 11/13/2014",2014.11.13-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.13-Hawaii.pdf,2014.11.13,2014.11.13 +478,10-Nov-2014,Unprovoked,AUSTRALIA,New South Wales,Moonee Beach,Surfing,male,M,53,Minor injury to lower leg and foot,False,1.5 m shark,"Norhern Rivers Echo, 11/10/2014",2014.11.10-Moonee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.10-Moonee.pdf,2014.11.10,2014.11.10 +479,08-Nov-2014,Unprovoked,USA,Florida,"Fort Pierce Inlet State Park, St. Lucie County",Surfing,Ryan Shapiro,M,18,Minor injuries to hand & arm ,False,1.5 m shark,WPTV.com,2014.11.08-FortPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.11.08-FortPierce.pdf,2014.11.08,2014.11.08 +480,31-Oct-2014,Unprovoked,USA,Hawaii,"North Kohala, Hawaii County",Surfing,McKenzie Clark,F,34,Lacerations to fingers,False,"Tiger shark, 12'","L. Kubota, Hawaii News Now, 10/31/2014",2014.10.31-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.31-Clark.pdf,2014.10.31,2014.10.31 +481,29-Oct-2014,Provoked,AUSTRALIA,New South Wales,Wallabi Point,Surfing,Ryan Hunt,M,20,Laceration to dorsum of left foot when he stepped on the shark PROVOKED INCIDENT,False,"Tiger shark, 12'","The Sydney Morning Herald, 10/30/2014",2014.10.29-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.29-Hunt.pdf,2014.10.30,2014.10.30 +482,22-Oct-2014,Unprovoked,USA,Hawaii,"Kihei, Maui",Stand-Up Paddleboarding,Kim Lawrence,F,20,"No injury, paddleboard bitten",False,Tiger shark,"Hawaii News Now, 10/22/2014",2014.10.22-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.22-Lawrence.pdf,2014.10.22,2014.10.22 +483,20-Oct-2014,Unprovoked,USA,Hawaii,"Kahului, Maui",Stand-Up Paddleboarding,male,M,20,"No injury, paddleboard bitten",False,Tiger shark,"The Maui News, 10/21/2014",2014.10.20-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.20-Maui.pdf,2014.10.20,2014.10.20 +484,19-Oct-2014,Boating,USA,California,"Leadbetter Beach, Santa Barbara County",Canoeing,Tara Burnley,F,20,"No injury to occupant, canoe bitten",False,Tiger shark,"R. Collier, GSAF",2014.10.19-Tara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.19-Tara.pdf,2014.10.19,2014.10.19 +485,18-Oct-2014,Unprovoked,USA,Hawaii,"Maalaea, South Maui",Surfing,Kaleo Roberson ,M,20,"No injury, surfboard bitten",False,12' to 14' shark,"Star Advertiser, 10/18/2014",2014.10.18-Roberson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.18-Roberson,2014.10.18,2014.10.18 +486,17-Oct-2014,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Surfing,Kirra-Belle Olsson,F,13,"Lacerations to left calf & ankle, puncture wounds to left foot",False,1 m shark,"Sydney Morning Herald, 10/17/2014","2014.10.17-Olsson, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.17-Olsson, pdf",http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,2014.10.17,2014.10.17 +487,14-Oct-2014,Unprovoked,USA,South Carolina,"Hilton Head Island, Beaufort County",Standing in inner tube,Kyra Bandy,F,7,Lacerations to left foot,False,"Bull shark, 3' to 4'","TheIndyChannel, 10/16,2014",2014.10.14-Bandy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.14-Bandy.pdf,2014.10.14,2014.10.14 +488,12-Oct-2014,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Body surfing or Boogie boarding,female,F,7,Laceration to right hand/wrist,False,"Bull shark, 3' to 4'","Florida Today, 10/13/2014",2014.10.12-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.12-Melbourne.pdf,2014.10.12,2014.10.12 +489,11-Oct-2014,Boating,AUSTRALIA,Western Australia,"Castle Rock, north of Dunsborough",Kayaking,"Inflatable kayak Occupants: Andrej Kultan & Steve Hopkins. + +",M,7,"Kayak deflated, no injury to occupants",False,"Bull shark, 3' to 4'","Perth Now, 10/11/2014",2014.10.11-Dunsborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.11-Dunsborough.pdf,2014.10.11,2014.10.11 +490,05-Oct-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Ross,M,29,Foot bitten,False,Blacktip shark,"WESH2, 10/6/2014",2014.10.05.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.b-Ross.pdf,2014.10.05.b,2014.10.05.b +491,07-Oct-2014,Unprovoked,USA,Florida,"Cherie Down Park, Brevard County",Fishing,female,F,40,Thigh bitten,False,Blacktip shark,"Click Orlando, 10/7/2014",2014.10.07-CherieDownPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.07-CherieDownPark.pdf,2014.10.07,2014.10.07 +492,05-Oct-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Hilton Mantooth,M,15,Foot bitten,False,Blacktip shark,"WESH2, 10/6/2014",2014.10.05.a-Mantooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.05.a-Mantooth.pdf,2014.10.05.a,2014.10.05.a +493,03-Oct-2014,Boating,USA,California,Santa Barbara County,Kayaking,Ryan Howell,M,15,"No injury to occupant, shark/s holded kayak",False,"White shark, 18' to 20'","R. Collier, GSAF",2014.10.03.b-Kayaks2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.03.b-Kayaks2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.03.b,2014.10.03.b +494,03-Oct-2014,Boating,USA,California,Santa Barbara County,Kayaking ,Raul Armenta ,M,15,"No injury to occupant, shark/s holded kayak",False,White shark,"R. Collier, GSAF",2014.10.03.a-Kayaks1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.03.a-Kayaks1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.03.a,2014.10.03.a +495,02-Oct-2014,Unprovoked,USA,California,"Walls Beach, Vandenberg AFB, Santa Barbara County",Surfing,M.M.,M,28,Lacerations to knee,False,8' to 10' shark,"R. Collier, GSAF",2014.10.02.b-Vandenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.b-Vandenberg.pdf,2014.10.02.b,2014.10.02.b +496,02-Oct-2014,Unprovoked,AUSTRALIA,Western Australia,"Kelpids Beach, Wylie Bay, Esperance",Surfing,Sean Pollard,M,23,"Left arm & right hand severed, lacerations to both legs",False,"2 white shark: 13' & 9""8""","9News, 2/15/2015",2014.10.02.a-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.10.02.a-Pollard.pdf,2014.10.02.a,2014.10.02.a +497,21-Sep-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jordan Lefebvre,M,23,Minor injury to left foot,False,"2 white shark: 13' & 9""8""","NBC2 News, 9/21/2014",2014.09.21-Lefebvre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.21-Lefebvre.pdf,2014.09.21,2014.09.21 +498,Reported 12-Sep-2014,Unprovoked,FRENCH POLYNESIA,Moorea,Tiahura Lagoon,Feeding fish,female,F,36,Thumb & finger nipped,False,Blacktip shark,"LeDepeche, 9/12/2014",2014.09.12.R-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.12.R-Moorea.pdf,2014.09.13.R,2014.09.13.R +499,13-Sep-2014,Invalid,USA,California,"Manresa State Beach, Santa Cruz County",Surfing,Beau Browning,M,36,"A hoax, no shark involvement",False,No shark involvement,"R. Collier, GSAF",2014.09.13-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.13-Browning.pdf,2014.09.13,2014.09.13 +500,09-Sep-2014,Unprovoked,AUSTRALIA,New South Wales,"Clarkes Beach, Byron Bay",Swimming,Paul Wilcox,M,50,fatal,True,7' shark,"BBC, 9/9/2014",2014.09.09-Wilcox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.09-Wilcox.pdf,2014.09.09,2014.09.09 +501,06-Sep-2014,Unprovoked,USA,Alabama,"Katrina Cut, Dauphin Island, Mobile County",Fishing ,Jamie Robson,M,43,Leg bitten,False,Bull shark,"Fox10TV.com, 9/7/2014",2014.09.06-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.06-Robson.pdf,2014.09.06,2014.09.06 +502,03-Sep-2014,Boating,USA,Massachusetts,"Manomet Point, Plymouth, Plymouth County",Kayaking ,Ida Parker & Kristen Orr,F,20s,"No injury, shark bit kayak",False,"White shark, 12' to 14'","Boston Globe, 9/4/2014",2014.09.03-Plymouthkayakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.03-Plymouthkayakers.pdf,2014.09.03,2014.09.03 +503,02-Sep-2014,Provoked,USA,Florida,"Fletcher Beach, Hutchinson Island, Martin County",Fishing,male,M,52,Bitten twice on the leg by a shark he was attempting to free from his line PROVOKED INCIDENT,False,3' to 4' shark,"WPBF.com, 9/2/2014",2014.09.02-FletcherBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.02-FletcherBeach.pdf,2014.09.02,2014.09.02 +504,Sep-2014,Unprovoked,SPAIN,Catalonia,Salou,Playing with an air mattress,male,M,16,Lacerations to right hand,False,3' to 4' shark,"A. Brenneka, Shark Attack Survivors",2014.09.00-Salou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.09.00-Salou.pdf,2014.09.00,2014.09.00 +505,31-Aug-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Alexandra Masterson,F,13,Injury to left calf,False,Spinner shark,"Sun Sentinel, 8/31/2014",2014.08.31-Masterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.31-Masterson.pdf,2014.08.31,2014.08.31 +506,29-Aug-2014,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Brendan Murphy,M,17,Lacerations to shin,False,Spinner shark or blacktip shark,"Click Orlando, 9/12/2014",2014.08.29.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.b-Murphy.pdf,2014.08.29.b,2014.08.29.b +507,29-Aug-2014,Invalid,USA,Florida,"Atlantic Beach, Duval County",Surfing,child,,17,Shark involvement not confirmed,False,Shark involvement not confirmed,"Orlando Sentinel, 8/31/2014",2014.08.29.a-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.29.a-AtlanticBeach.pdf,2014.08.29.a,2014.08.29.a +508,28-Aug-2014,Provoked,USA,Maryland,Assateague National Seashore,Fishing,Mathew Vickers,M,33,Lacerations to foot by hooked shark PROVOKED INCIDENT,False,Shark involvement not confirmed,"Delmarva Now, 8/29/2014",2014.08.28-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.28-Vickers.pdf,2014.08.28,2014.08.28 +509,27-Aug-2014,Unprovoked,SPAIN,Alicante,Benidorm,Swimming,Raquel Martin,F,30s,Minor lacerations to posterior lower leg,False,small shark,"Diario Informacion, 8/29/2014",2014.08.27.c-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.c-Spain.pdf,2014.08.27.c,2014.08.27.c +510,27-Aug-2014,Unprovoked,USA,North Carolina,"Figure Eight Island, New Hanover County",Surfing,Hunter Anderson,M,29,Laceration to left hand,False,4' to 6' shark,"C. Creswell, GSAF",2014.08.27.b-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.b-Anderson.pdf,2014.08.27.b,2014.08.27.b +511,27-Aug-2014,Unprovoked,USA,South Carolina,"Surfside Beach, Horry County",Standing,female,F,29,Heel bitten,False,4' to 6' shark,"C. Creswell, GSAF",2014.08.27.a-Surfside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.27.a-Surfside.pdf,2014.08.27.a,2014.08.27.a +512,Reported 25-Aug-2014,Provoked,USA,Florida,Apalachicola Bay ,Fishing for sharks,John Wiley,M,29,Lacerations to forearm from hooked shark PROVOKED INCIDENT,False,"Bull shark, 4.5' ","Nooga.com, 8/25/2014",2014.08.25.R-Wiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.25.R-Wiley.pdf,2014.08.25,2014.08.25 +513,24-Aug-2014,Unprovoked,USA,North Carolina,"Off Masonboro Island, New Hanover County",Kite boarding,Miller Diggs,,29,Laceration to left foot,False,4' shark,"C. Creswell, GSAF; WWAY, 8/24/2014",2014.08.24-Diggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.24-Diggs.pdf,2014.08.24,2014.08.24 +514,16-Aug-2014,Unprovoked,AUSTRALIA,Western Australia,Gnaraloo,Spearfishing,Adam Haling ,M,31,Lacerations to face and neck,False,reef shark,"Herald Sun, 8/21/2014",2014.08.16-Haling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.16-Haling.pdf,2014.08.16,2014.08.16 +515,12-Aug-2014,Unprovoked,USA,Florida,"3 to 4 miles west of Indian Pass, Gulf County",Standing,Kyle Hayes,M,31,Puncture wounds and lacerations to left thigh and knee,False," Bull shark, 8'","K. Hayes / Brewton Standard, 8/19/2014",2014.08.15-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.15-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.12-Hayes.pdf,2014.08.12,2014.08.12 +516,10-Aug-2014,Unprovoked,USA,Florida,"Hallandale Beach, Broward County",Standing,male,M,26,Puncture wounds & lacerations to foot,False," Bull shark, 8'","CBS Miami, 8/11/1014",2014.08.10-Hallandale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.10-Hallandale.pdf,2014.08.10,2014.08.10 +517,09-Aug-2014,Unprovoked,BAHAMAS,unknown,unknown,Spearfishing,Andrew Hindley,M,26,Puncture wounds to right foot and ankle,False,"Bull shark, 9' to 10'",A. Hindley / M. Michaelson,"2014.08.09.R-Hindley, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09.R-Hindley, pdf",2014.08.09.R,2014.08.09.R +518,09-Aug-2014,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Swimming,Krama Fordham,F,10,Puncture wounds to right foot & ankle,False,"Bull shark, 9' to 10'","Florida Today, 8/9/2014",2014.08.09-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.09-CocoaBeach.pdf,2014.08.09,2014.08.09 +519,08-Aug-2014,Unprovoked,USA,Louisiana,"Lake Ponchartain off Southshore Harbor, New Orleans",Swimming,Trent Trentacosta,M,7,Minor lacerations to left heel and big toe,False," Bull shark, 5'","The Times-Picayune, 8/9/2014",2014.08.08-Trentacosta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-Trentacosta.pdf,2014.08.08,2014.08.08 +520,06-Aug-2014,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Boogie boarding,Riley Harris,M,10,Lacerations to right leg & foot,False,4' tp 5' shark,"C. Creswell, GSAF; WCSC. 8/6/2014",2014.08.14-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.14-Harris.pdf,2014.08.06,2014.08.06 +521,05-Aug-2014,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,female,F,45,Lacerations to foot,False,4' tp 5' shark,"Inquisitr, 8/7/2014",2014.08.05-Tulip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.05-Tulip.pdf,2014.08.05,2014.08.05 +522,02-Aug-2014,Unprovoked,USA,Florida,"South of Cocoa Beach, Brevard County",Surfing,male,M,50s,Foot bitten,False,4' tp 5' shark,"Florida Today, 8/8/2014",2014.08.08-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.08-CocoaBeach.pdf,2014.08.02,2014.08.02 +523,02-Aug-2014,Unprovoked,USA,Florida,"Table Beach, Brevard County",Boogie boarding,Christian Sanhueza,M,8,Laceration to ankle,False,4' tp 5' shark,"Florida Today, 8/2/2014",2014.08.02-Sanhueza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.02-Sanhueza.pdf,2014.08.02,2014.08.02 +524,01-Aug-2014,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Surfing,Matthew Smithers,M,20,Lower limbs & thigh bitten,False,White shark,"NSRI, 8/1/2014",2014.08.01-Smithers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.08.01-Smithers.pdf,2014.08.01,2014.08.01 +525,27-Jul-2014,Unprovoked,USA,North Carolina,"Sunset Beach, Brunswick County",Swimming,male,M,Teen,Left foot bitten,False,Possibly juvenile tiger shark,"C. Creswell, GSAF",2014.07.27-SunsetBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.27-SunsetBeach.pdf,2014.07.27,2014.07.27 +526,22-Jul-2014,Unprovoked,REUNION,Saint-Leu,Saint-Leu,Surfing,Vincent Rintz,M,51,Lacerations to right wrist & calf,False,1.8 metre shark,"BFM-tv, 7/22/2014",2014.07.22-Rintz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.22-Rintz.pdf,2014.07.22,2014.07.22 +527,21-Jul-2014,Unprovoked,USA,Florida,"Indialantic, Brevard County",Standing,Aayden Crick,M,8,Lacerations to right knee,False,1.8 metre shark,"ClickOrlando, 7/22/2014",2014.07.21-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.21-Crick.pdf,2014.07.21,2014.07.21 +528,20-Jul-2014,Unprovoked,SPAIN,Canary Islands,"Teresita, Santa Cruz, Tenerife",Wading,child,,8,Minor injury,False,Angel shark,"DiariodeAvisos, 7/25/2014",2014.07.20-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.20-Tenerife.pdf,2014.07.20,2014.07.20 +529,16-Jul-2014,Unprovoked,USA,Hawaii,"Paia Bay, Maui",Swimming,male,M,61,Lacerations to left foot,False,6' to 8' shark,"Maui Now, 7/16/2014",2014.07.16-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.16-Maui.pdf,2014.07.16,2014.07.16 +530,14-Jul-2014,Unprovoked,USA,Florida,Okaloosa Island,Swimming,Terrell Moore,M,39,Puncture wounds to foot,False,4' shark,"W. Victora, Daily News, 7/15/2014",2014.07.14-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.14-Moore.pdf,2014.07.14,2014.07.14 +531,13-Jul-2014,Invalid,BAHAMAS,West End,Tiger Beach,Shark diving,John Petty,M,63,"Missing after a dive, shark involvement considered probable, but not confirmed",False,Shark involvement not confirmed,"Outside, 7/14/2014",2014.07.13-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.13-Petty.pdf,2014.07.13,2014.07.13 +532,12-Jul-2014,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Body surfing,Carson Jewell,M,63,Lacerations to hand and wrist,False,Shark involvement not confirmed,"C. Creswell, GSAF",2014.07.12-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.12-Jewell.pdf,2014.07.12,2014.07.12 +533,9-Jul-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tristan Durham,M,14,Lacerations to foot,False,Shark involvement not confirmed,"WESH.com, 7/9/2014",2014.07.09-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.09-Durham.pdf,2014.07.09,2014.07.09 +534,5-Jul-2014,Provoked,USA,California,"Manhattan Beach, Los Angeles County",Swimming,Steve Robles,M,14,PROVOKED INCIDENT Torso bitten by shark hooked by an angler,False," White shark, 7' ","R. Collier, GSAF / M Michaelson, SRI ",2014.07.05.b-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.b-Robles.pdf,2014.07.05.b,2014.07.05.b +535,5-Jul-2014,Unprovoked,USA,California,"Oceano Dunes State Beach, San Luis Obispo County",Surfing,R.J.,M,14,"No injury, surboard bitten",False," White shark, 7' ","R. Collier, GSAF",2014.07.05.a-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.05.a-Surfer.pdf,2014.07.05.a,2014.07.05.a +536,3-Jul-2014,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Body surfing,Christian Fairbourne,M,19,Right hand bitten,False,4' to 5' shark,"C. Creswell, GSAF Live5News, 7/3/2014",2014.07.03-Fairbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.07.03-Fairbourne.pdf,2014.07.03,2014.07.03 +537,Reported 27-Jun-2014,Boat,ST. MARTIN,20 miles from shore,20 miles from shore,Transatlantic Rowing,Victor Mooney,M,48,His boat was holed by a shark,False,Oceanic whitetip shark',"Star Advertiser, 6/272014; Goree Challenge.com",2014.06.27-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.27-Mooney.pdf,2014.06.27.R,2014.06.27.R +538,25-Jun-2014,Unprovoked,BAHAMAS,Abaco Islands,Abaco Islands,Spearfishing,Mark Adams,M,42,No injury but shark took his pole spear,False,"Caribbean reef shark, 7' to 8'","A. Brenneka, Shark Attack Survivors, M. Adams",2014.06.25-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.25-Adams.pdf,2014.06.25,2014.06.25 +539,18-Jun-2014,Unprovoked,AUSTRALIA,South Australia,"Middleton Point, Fleurieu Peninsula",Surfing,Max Longhurst ,M,42,"No injury, surfboard 'attacked'",False,"Caribbean reef shark, 7' to 8'","The Times, 6/19/2014",2014.06.18.b-Longhurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.b-Longhurst.pdf,2014.06.18.b,2014.06.18.b +540,18-Jun-2014,Unprovoked,AUSTRALIA,South Australia,"Middleton Point, Fleurieu Peninsula",Body boarding,Jesse McKinnon,M,15,Lacerations to knee,False,"Caribbean reef shark, 7' to 8'","The Advertiser, 6/19/2014",2014.06.18.a-McKinnon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.18.a-McKinnon.pdf,2014.06.18.a,2014.06.18.a +541,Reported 17-Jun-2014,Provoked,AUSTRALIA,Western Australia,Horizontal Falls,Petting a shark,Ric Wright,M,15,Lacerations to right hand by captive shark PROVOKED INCIDENT,False," Lemon shark, 3.5 m","Meribula News, 6/17/2014",2014.06.17.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.17.R-Wright.pdf,2014.06.17.R,2014.06.17.R +542,09-Jun-2014,Unprovoked,BRAZIL,500 km off the coast of Pernambuco,500 km off the coast of Pernambuco,Fishing,Sunarko,M,43,Severe injury to arm,False," Lemon shark, 3.5 m","msn, 6/11/2014",2014.06.09.c-Sunarko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.c-Sunarko.pdf,2014.06.09.c,2014.06.09.c +543,09-Jun-2014,Unprovoked,USA,Delaware,"Cape Henlopen State Park, Sussex County",Standing,Andrew Vance,M,16,"Abrasion to right hand, lacerations to left forearm",False," Sandbar shark, 3' to 4'","News Journal (Wilmington, Del), 6/11/2014",2014.06.09.b-Vance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.b-Vance.pdf,2014.06.09.b,2014.06.09.b +544,09-Jun-2014,Unprovoked,AUSTRALIA,South Australia,"Parsons Beach, Fleurieu Peninsula",Body boarding,Scott Berry,M,39,Minor injury to torso,False,"Bronze whaler shark, 1.5m","The Australian, 6/9/2014",2014.06.09.a-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09.a-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.09-Berry.pdf,2014.06.09.a,2014.06.09.a +545,08-Jun-2014,Unprovoked,JAPAN,Atsumi peninsula,Aichi,Surfing,Tsuyoshi Takahashi,M,43,Left arm bitten,False,"Bronze whaler shark, 1.5m","Sky News, 6/10/2013",2014.06.08-Takahashi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.08-Takahashi.pdf,2014.06.08,2014.06.08 +546,07-Jun-2014,Unprovoked,USA,Texas,"West Beach, Galveston",Kneeling in the water,Mikaela Amezaga Medina,F,14,Shallow lacerations & puncture wounds below shoulder,False,"Bronze whaler shark, 1.5m","Inquisitr.com, 6/9/2014",2014.06.07-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.07-Medina.pdf,2014.06.07,2014.06.07 +547,01-Jun-2014,Unprovoked,USA,Florida,Fort Lauderdale,Swimming,Jessica Vaughn,F,22,Laceration to right lower leg,False,Bull shark,"Local10.com, 6/1/2014",2014.06.01.c-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.c-Vaughn.pdf,2014.06.01.c,2014.06.01.c +548,01-Jun-2014,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Bob Smith,M,22,Lacerations & puncture wounds to ankle and foot,False,Bull shark,"Newcastle Herald, 6/3/2014",2014.06.01.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.b-Smith.pdf,2014.06.01.b,2014.06.01.b +549,01-Jun-2014,Unprovoked,USA,Palmyra Atoll,Palmyra Atoll,Tagging sharks,female,F,37,Laceration to left hand,False,Blacktip Reef shark ,U.S. Coast Guard,2014.06.01.a-PalmyraAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.06.01.a-PalmyraAtoll.pdf,2014.06.01.a,2014.06.01.a +550,24-May-2014,Unprovoked,AUSTRALIA,Queensland,Nerang River near Chevron Island,Fell into the water,Bianca Freeman,F,29,Lacerations to legs,False," Bull shark, 1.2m ","Gold Coast Bulletin, 4/27/2014",2014.05.27.R-Freeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.27.R-Freeman.pdf,2014.05.27.R,2014.05.27.R +551,23-May-2014,Unprovoked,FRANCE,Wallis and Futuna,Wallis Island,Scuba diving,Eric Barnabas,M,29,Lacerations to left thigh and hip,False,3m shark,Facebook.com,2014.05.23-Barnabas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.23-Barnabas.pdf,2014.05.23,2014.05.23 +552,22-May-2014,Provoked,AUSTRALIA,New South Wales,The Australian Shark and Ray Centre,Teasing a shark,male,M,10,Cut to tip of finger by a captive shark PROVOKED INCIDENT,False," Tawney nurse shark, 1m","Newcastle Herald, 5/22/2014",2014.05.22-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.22-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.22-Aquarium.pdf,2014.05.22,2014.05.22 +553,15-May-2014,Unprovoked,USA,Florida,"Juan Ponce de León Landing, Melbourne Beach, Brevard County",Body boarding,Amy Tatsch,F,38,Calf bitten,False," Tawney nurse shark, 1m","M. Michaelson, Shark Research Institute",2014.05.15-Tatsch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.15-Tatsch.pdf,2014.05.15,2014.05.15 +554,14-May-2014,Unprovoked,AUSTRALIA,South Australia,"Elliston, Eyre Peninsula",Surfing,Andrew McLeod,M,35,"No injury, but surfboard severely damaged",False," white shark, 15' ","N. Davies, The Advertiser, 5/114/2014","2014.05.14-McLeod, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf","http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.14-McLeod, pdf",2014.05.14,2014.05.14 +555,13-May2014,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Wading,Mihaela Cosa,F,44,Lacerations and puncture wounds to right foot,False," white shark, 15' ","M. Michaelson, Shark Research Institute",2014.05.13-Cosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.13-Cosa.pdf,2014.05.13,2014.05.13 +556,11-May-2014,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Surfing,Ayden Meadows,M,12,Puncture wounds to right thigh,False,Shark involvement not confirmed,"Savannah Morning News, 5/12/2014",2014.05.11-Meadows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.11-Meadows.pdf,2014.05.11,2014.05.11 +557,Reported 10-May-2014,Invalid,USA,Florida,"Bethel Shoals, Indian River County",Diving,Jimmy Roseman,M,12,"No injury. No attack. 12' white shark appeared curious, not aggressive & departed when prodded by spear",False,No shark involvement,"Metro, 5/10/2014",2014.05.10.R-Roseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.10.R-Roseman.pdf,2014.05.10.R,2014.05.10.R +558,06-May-2014,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Kimberly Popp,F,40,Lacerations to left foot,False,4' to 5' shark,"The Island Packet, 5/7/2014",2014.05.06-Popp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.06-Popp.pdf,2014.05.06,2014.05.06 +559,04-May-2014,Unprovoked,SOUTH AFRICA,Western Cape Province,Simonstown,Diving,"Sunday Times, 5/5/2014",,40,4-inch laceration to arm,False,Cow shark,"Sunday Times, 5/5/2014",2015.05.04-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.04-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2015.05.04-CowShark.pdf,2013.05.04,2014.05.04 +560,01-May-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Shane Nolet,M,23,Laceration to right hand and cuts on fingertips,False,3' shark,"Wesh.com, 5/2/2014",2014.05.01-Nolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.05.01-Nolet.pdf,2014.05.01,2014.05.01 +561,24-Apr-2014,Unprovoked,AUSTRALIA,Western Australia,"South Passage, south of Coral Bay",Spearfishing,male,M,23,Minor injury,False,reef shark?,"9 News, 4/24/2014",2014.04.24-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.24-WA.pdf,2014.04.24,2014.04.24 +562,22-Apr-2014,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming,male,M ,42,Laceration & puncture wounds to right foot,False,reef shark?,"R. Neale, Florida Today, 4/22/2014",2014.04.22-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.22-CocoaBeach.pdf,2014.04.22,2014.04.22 +563,15-Apr-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Justin Davidson,M,25,Minor lacerations to left foot,False,reef shark?,"Daytona Beach News-Journal, 4/15/2014",2014.04.15-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.15-NSB.pdf,2014.04.15,2014.04.15 +564,Reported 12-Apr-2014,Boat,SOUTH AFRICA,unknown,unknown,Shark watching,Inflatable boat,,25,"No injury to occupants, shark bit pontoon",False,White shark,"You Tube, posted 4/12/2014",.2014.04.12.R-inflatable,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable,http://sharkattackfile.net/spreadsheets/pdf_directory/.2014.04.12.R-inflatable,2014.04.12.R,2014.04.12.R +565,12-Apr-2014,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Fishing,Lionel McDougall,M,25,Lacerations to leg & hand by hooked shark PROVOKED INCIDENT,False," Raggedtooth shark, 2m","The Citizen, 4/12/2014",2014.04.12-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.12-McDougall.pdf,2014.04.12,2014.04.12 +566,04-Apr-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,teen,Minor puncture wounds to lower left leg,False," Raggedtooth shark, 2m","News 13, 4/4/2014",2014.04.04.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.b-NSB.pdf,2014.04.04.b,2014.04.04.b +567,04-Apr-2014,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,teen,Lacerations to foot,False," Raggedtooth shark, 2m","News 13, 4/4/2014",2014.04.04.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.04.a-NSB.pdf,2014.04.04.a,2014.04.04.a +568,03-Apr-2014,Unprovoked,AUSTRALIA,New South Wales,Tathra,Swimming,Christine Armstrong,F,63,fatal,True,3 m to 4 m white shark,"B. Myatt, GSAF",2014.04.03-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.04.03-Armstrong.pdf,2014.04.03,2014.04.03 +569,29-Mar-2014,Invalid,AUSTRALIA,Western Australia,Off Dawesville Cut,Diving for lobsters,Michael McGregor,M,38,Shark bites may have been post mortem,False,Shark involvement prior to death not confirmed,"The West Australian, 4/2/2014",2014.03.29-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.29-WesternAustralia.pdf,2014.03.29,2014.03.29 +570,22-Mar-2014,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St Johns",Swimming,Friedrich Burgstaller.,M,66,fatal,True,2 m shark,"Austrian Independent, 3/24/2014",2014.03.22.b-SecondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.b-SecondBeach.pdf,2014.03.22.b,2014.03.22.b +571,22-Mar-2014,Unprovoked,USA,Florida,Delray Beach,Kite Surfing,Kurt Hoffman,M,66,Lacerations to left forearm,False,4' to 5' shark,"TC Palm, 3/23/2014",2014.03.22.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.22.a-Hoffman.pdf,2014.03.22.a,2014.03.22.a +572,21-Mar-2014,Unprovoked,USA,Florida,Macarthur State Park,Surfing,Sebastian Cozzen,M,9,Lacerations to toes and heel of right foot,False,4' to 5' shark,"E. Guy, WPBF, 3/26/2014",2014.03.21-Cozzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.21-Cozzen.pdf,2014.03.21,2014.03.21 +573,18-Mar-2014,Unprovoked,NEW CALEDONIA,Baie de Sainte-Marie,Baie de Sainte-Marie,Kite Surfing,Laurent Borgna ,M,42,Lacerations to calf,False,4' to 5' shark,"A. Brenneka, Shark Attack Surviors",2014.03.18.c-Borgna,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.c-Borgna,2014.03.18.c,2014.03.18.c +574,18-Mar-2014,Unprovoked,AUSTRALIA,Victoria,Winkipop Beach,Surfing,Mark Byrne,M,42,Shark leapt onto surfboard; surfer uninjured ,False,4' to 5' shark,"New7 Melbourne, 3/19/2014",2014.03.18.b-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18.b-Byrne.pdf,2014.03.18.b,2014.03.18.b +575,18-Mar-2014,Invalid,AUSTRALIA,New South Wales,Lennox Head,Surfing,Nyxie Ryan,F,10,"Injuries to wrist/hand by a mackerel, not a shark",False,No shark involvement,"Brisbane Times, 3/18/2014",2014.03.18-NSW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.18-NSW.pdf,2014.03.18,2014.03.18 +576,12-Mar-2014,Unprovoked,AUSTRALIA,New South Wales,Lighthouse Beach,Swimming,Mike Porter,M,10,Minor lacerations to foot,False,Wobbegong shark,"N. Keene, The Daily Telegraph, 3/13/2014",2014.03.12-LightouseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.12-LightouseBeach.pdf,2014.03.12,2014.03.12 +577,13-Mar-2014,Invalid,CAYMAN ISLANDS,unknown,unknown,Scuba diving / culling lionfish,Jason Dimitri,M,10,"Caribbean reef shark buzzed him. No injury, no attack. ",False,Invalid,"You Tube, posted 4/12/2014",2014.03.13-Dimitri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.13-Dimitri.pdf,2014.03.13,2014.03.13 +578,02-Mar-2014,Unprovoked,USA,Florida,"Santa Lucea Beach, South Hutchinson Island, St. Lucie County",Surfing,Dylan Fugitt,M,21,Lacerations to toes,False,Blacktip or spinner shark?,"L.Gordon, CBS 12, 3/3/2014",2014.03.02-Fugitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.03.02-Fugitt.pdf,2014.03.02,2014.03.02 +579,20-Feb-2014,Unprovoked,FRENCH POLYNESIA,Society Islands,Huahine,Kitesurfing,male,M,21,Lacerations to lower leg,False,Blacktip reef shark ,"A. Brenneka, Shark Attack Survivors",2014.02.20-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.20-FrenchPolynesia.pdf,2014.02.20,2014.02.20 +580,Reported 17-Feb-2014,Boating,PAPUA NEW GUINEA,unknown,unknown,Sailing,OneDLL,M,21,"No injury to occupants, hull bitten",False,Blacktip reef shark ,"Sail-World.com, 2/17/2014",2014.02.17.R-OneDLL,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.17.R-OneDLL,2014.02.17,2014.02.17 +581,08-Feb-2014,Unprovoked,AUSTRALIA,South Australia,"Goldsmith Beach, Yorke Peninsula",Spearfishing / Free diving,Sam Kellett ,M,28,fatal,True,Blacktip reef shark ,"The Advertiser, 2/9/2014",2014.02.08-Kellett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.08-Kellett.pdf,2014.02.08,2014.02.08 +582,07-Feb-2014,Provoked,TRINIDAD & TOBAGO,Trinidad,Trinidad,Fishing,Simon Torres,M,28,Possibly a PROVOKED INCIDENT,False,Blacktip reef shark ,"Trinidad Guardian, 2/11/2014",2014.02.07.b-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.07.b-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.02.07.b,2014.02.07.b +583,07-Feb-2014,Unprovoked,NEW ZEALAND,South Island,Porpoise Bay,Surfing,Darren Mills,M,28,Lacerations to leg,False,7-gill shark?,"New Zealand Herald, 2/7/2014",2014.02.07-PorpoiseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.02.07-PorpoiseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.02.07,2014.02.07 +584,26-Jan-2014,Provoked,AUSTRALIA,New South Wales,Umina Beach,Fishing,Richard O'Connor,M,28,Lacerations to ring and pinky fingers of his left hand by hooked shark PROVOKED INCIDENT,False,1m shark,"Daily Telegraph, 1/29/2014",2014.01.26-O'Connor.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.26-O'Connor.pf,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.01.26,2014.01.26 +585,25-Jan-2014,Unprovoked,NEW ZEALAND,South Island,Garden Bay near Cosy Nook,Spearfishing,James Grant,M,24,Minor injury to left lower leg & heel,False,7-gill shark,"Stuff.co.nz,1/27/2014",2014.01.25-Grant,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.25-Grant,http://sharkattackfile.net/spreadsheets/pdf_directory/w014.01.25-Grant.pdf,2014.01.25,2014.01.25 +586,04-Jan-2014,Sea Disaster,JAPAN,Okinawa Prefecture,Off Miyako Island,Sea disaster,Rianto,M,31,5 cm bite to left foot,False,7-gill shark,"Focus Taiwan, 1/7/2014",2014.01.04-Rianto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.01.04-Rianto.pdf,pdf_directory2014.01.04-Riano.pdf ,2014.01.04,2014.01.04 +587,2014,Unprovoked,USA,Hawaii,Hawaii,Free diving / Photographing pilot whales,male,M,31,"""Minor laceration to shoulder""",False,Oceanic whitetip shark,You Tube,2014.00.00.b-OceanicWhitetip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00.b-OceanicWhitetip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00.b-OceanicWhitetip.pdf,2014.00.00.b,2014.00.00.b +588,2014,Boating,NEW ZEALAND,Stewart Island,Stewart Island,Filming a documentary,Dinghy. Occupants: Jeff Kurr and Andy Casagrande,,31,"No injury to occupants, shark nudged and bit boat",False,"White shark, 6 m",Discovery Channel,2014.00.00-Jeff-Andy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2014.00.00-Jeff-Andy.pdf,2014.00.00,2014.00.00 +589,25-Dec-2013,Unprovoked,NEW CALEDONIA,North Province,"Lindéralique, Hienghène",Snorkeling,Loïc Merlet,M,37,Leg bitten,False,Reported to involve a bull shark,"Les Novelles Caledonie, 12/26/2014",2013.12.25-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.25-NewCaledonia.pdf ,2013.12.25,2013.12.25 +590,16-Dec-2013,Unprovoked,SOUTH AFRICA,Western Cape Province,Die Platt,Surfing,Thomas Browne,M,19,Injuries to left thigh,False,"White shark, 3m ","Cape Argus, 12/16/2013",2013.12.16-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.16-Browne.pdf,2013.12.16,2013.12.16 +591,13-Dec-2013,Unprovoked,KIRIBATI,740 miles SE of Tarawa Atoll,740 miles SE of Tarawa Atoll,Attempting to remove fishing net from submerged object,male,M,35,Severe injury to arm,False,"White shark, 3m ","Coast Guard News, 12/16/2013",2013.12.13-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.13-Kiribati.pdf,2013.12.13,2013.12.13 +592,11-Dec-2013,Unprovoked,USA,Hawaii,"Ninole Bay, Hawaii County",Boogie boarding,male,M,29,Lacerations to right hand & knee,False,"Tiger shark, 10' to 12'","Big Island Now, 12/11/2013",2013.12.11-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.11-Hawaii.pdf,2013.12.11,2013.12.11 +593,10-Dec-2013,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Bobby Baughman,M,30,Right foot bitten,False,4' to 6' shark,"Florida Today, 12/10/2103",2013.12.10-Baughman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.10-Baughman.pdf,2013.12.10,2013.12.10 +594,05-Dec-2013,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,male,M,26,"Puncture wounds to hand, laceration to leg",False," Wobbegong shark, 1.6 to 1.8m ","The Sydney Morning Herald, 12/5/2013",2013.12.05-PortMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.05-PortMacquarie.pdf,2013.12.05,2013.12.05 +595,02-Dec-2013,Unprovoked,USA,Hawaii,"Between Makena & Molokini, Maui",Kayaking / Fishing,Patrick Briney,M,57,fatal,True," Wobbegong shark, 1.6 to 1.8m ","C. Sugidono, The Maui News, 12/2/2013",2013.12.02-Briney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.12.02-Briney.pdf,2013.12.02,2013.12.02 +596,30-Nov-2013,Unprovoked,AUSTRALIA,New South Wales,"Riecks Point, Campbell’s Beach, ",Body boarding,Zac Young,M,19,fatal,True,"Tiger shark, 3m ","The Sydney Morning Herald, 11/30/2013",2013.11.30-ZacYoung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.30-ZacYoung.pdf,2013.11.30,2013.11.30 +597,29-Nov2013,Unprovoked,USA,Hawaii,"Keawekapu Beach, Kihei, Maui",Snorkeling,female,F,58,Right calf bitten,False,"Tiger shark, 3m ","L. Fujimoto, Maui News, 11/29/2013",2013.11.29-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.29-Maui.pdf,2013.11.29,2013.11.29 +598,23-Nov-2013,Unprovoked,AUSTRALIA,Western Australia,Gracetown,Surfing,Chris Boyd,M,35,fatal,True,Thought to involve a white shark,"J. Baily; Perth Now, 11/23/2013",2013.11.23.a-Boyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.23.a-Boyd.pdf,2013.11.23.a,2013.11.23.a +599,22-Nov-2013,Unprovoked,USA,Oregon,"Gleneden Beach, Lincoln County",Surfing,Andrew Gardiner,M,25,"No injury, board bitten",False,"White shark, 10 '",R. Collier,2013.11.22-Gardiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.22-Gardiner,2013.11.22,2013.11.22 +600,12-Nov-2013,Unprovoked,AUSTRALIA,Western Australia,"Trigg Beach, Perth",Surfing,Shaun Daly,M,25,"No injury, board bumped by shark",False,Reported to involve a white shark,"West Australian, 11/13/2013",2013.11.12-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.12-Daly,2013.11.12,2013.11.12 +601,10-Nov-2013,Provoked,BAHAMAS,Off Cape Eleuthera,Off Cape Eleuthera,Shark fishing,male,M,77,Injuries to arm & leg by hooked shark PROVOKED INCIDENT,False,Reported to involve a white shark,"Jamaica Observer, 11/11/2013",2013.11.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.10-Bahamas,2013.11.10,2013.11.10 +602,07-Nov-2013,Unprovoked,USA,New Jersey,"Bay Head, Ocean County",Body boarding,Quinn Gates,M,16,"No injury, swim fin bitten",False,Reported to involve a white shark,"S. Nagiewicz, SRI; Star Ledger, 11/9/2013",2013.11.07.b-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.b-Gates,2013.11.07.b,2013.11.07.b +603,07-Nov-2013,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Sandor Melian,M,16,Foot bitten,False,Reported to involve a white shark,"Space Coast Daily, 11/11/2013",2013.11.07.a-Melian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.11.07.a-Melian,2013.11.07.a,2013.11.07.a +604,31-Oct-2013,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui",Kiteboarding,Christian Brandon,M,46,Severe bite to right calf & anklel,False,Tiger shark,"Maui TV, 10/31/2013",2013.10.31-ChristianBrandon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.31-ChristianBrandon,2013.10.31,2013.10.31 +605,28-Oct-2013,Unprovoked,AUSTRALIA,Western Australia,Turquoise Bay,Snorkeling,Glenda Simmons,F,60,Lacerations to right arm,False,"Blacktip reef shark, 1m","AAP, 10/28/2013",2013.10.28-Simmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.28-Simmons,2013.10.28,2013.10.28 +606,26-Oct-2013,Unprovoked,REUNION,d’Étang-Salé,Ravine Mula,Body boarding,Gicquel Tanguy,M,24,Right leg severed,False,Thought to involve a bull shark,"Global Post, 10/26/2013",2013.10.26.b-Tanguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.b-Tanguy,2013.10.26.b,2013.10.26.b +607,26-Oct-2013,Unprovoked,AUSTRALIA,Western Australia,"Little Island, near Hillarys",Diving for crayfish,Todd Robinson,M,24,"No injury, swim fin shredded",False,Reported to involve a 4 m white shark,"Sky News, 10/26/2013",2013.10.26.a-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.26.a-Robinson.pdf,2013.10.26.a,2013.10.26.a +608,24-Oct-2013,Unprovoked,AUSTRALIA,New South Wales,South Narrabeen Beach,Surfing,Anthony Joyce,M,41,Injuries to right foot,False,Wobbegong shark,"A. Brenneka, Shark Attack Survivors",2013.10.24-Joyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.24-Joyce.pdf,2013.10.24,2013.10.24 +609,23-Oct-2013,Unprovoked,USA,Hawaii,"Waiehu, Maui",Diving ,Shane Mills,M,45,"3"" laceration to left hip",False,"Whitetip reef shark, 4' to 6'","Maui News, 10/23/2013",2013.10.23-ShaneMills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.23-ShaneMills.pdf,2013.10.23,2013.10.23 +610,20-Oct-2013,Unprovoked,USA,Hawaii,"Pila'a Beach, Kaua'i",Surfing,Jeff Horton,M,25,"No injury, shark bit surfboard",False,Tiger shark,"B. Buley, The Garden Island, 10/22/2013",2013.10.20-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.20-Horton.pdf,2013.10.20,2013.10.20 +611,19-Oct-2013,Unprovoked,USA,Florida,Miami Beach,Wading,Logan Hamby,M,6,Bitten on left calf & foot,False,Nurse shark?,K & D Hamby ,2013.10.19-Hamby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.19-Hamby.pdf,2013.10.19,2013.10.19 +612,11-Oct-2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Albatros Point, near Jeffrey's Bay",Swimming / snorkeling,Burgert Van Der Westhuizen,M,74,fatal,True,White shark,"JBayNews.com, 10/11/2013",2013.10.11-Vd-Westhuizen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.11-Vd-Westhuizen.pdf,2013.10.11,2013.10.11 +613,08-Oct-2013,Unprovoked,AUSTRALIA,Western Australia,"Off Poison Creek, Cape Arid",Diving for Abalone,Greg Pickering,M,55,"Injuries to torso, head and face",False,White shark,"Fox News, 10/9/2013",2013.10.08-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.08-Pickering.pdf,2013.10.08,2013.10.08 +614,06-Oct-2013,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Jay Scrivner,M,45,Laceration to thigh,False,"White shark, 8' to 10'","R. Collier, GSAF",2013.10.06-Scrivner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.06-Scrivner.pdf,2013.10.05,2013.10.05 +615,10-Oct-2013,Unprovoked,USA,Florida,"Destin, Okaloosa County",Wading,Zachary Tyke Standridge ,M,12,Lacerations to right forearm,False,Small bull shark,"Monroe County Advocate, 10/9/2013",2013.10.05-Standridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.10.05-Standridge.pdf,2013.10.05,2013.10.05 +616,29-Sep-2013,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,50,Lacerations to hand,False,Small bull shark,"Florida Today, 9/30/2013",2013.09.29.b-BrevardSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.b-BrevardSurfer.pdf,2013.09.29.b,2013.09.29.b +617,29-Sep-2013,Unprovoked,ISRAEL,Southern District,Ashdod,Diving,Erez Lev,M,27,Hand bitten ,False,Small bull shark,"Times of Israel, 9/30/2013",2013.09.29.a-Lev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.29.a-Lev.pdf,2013.09.29.a,2013.09.29.a +618, 25-Sep-2013,Unprovoked,USA,Florida,"Panama City, Bay County",Standing,Ethan Hand,M,7,Laceration and puncture wounds to ankle,False,Small bull shark,"C. Dobridnia, WMBB.com",2013.09.25-EthanHand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.25-EthanHand.pdf,2013.09.25,2013.09.25 +619, 21-Sep-2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,female,M,45,Lacerations to right foot,False,Small bull shark,"M. I. Johnson, Daytona Beach News Journal",2013.09.21.b-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.b-OrmondBeach.pdf,2013.09.21.b,2013.09.21.b +620, 21-Sep-2013,Unprovoked,USA,Florida,"Carlin Park, Jupiter, Palm Beach County",Surfing,Brandon Dugan,M,45,Lacerations to left foream,False,Small bull shark,News Channel 5,2013.09.21.a-Dugan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.21.a-Dugan.pdf,2013.09.21.a,2013.09.21.a +621, 14-Sep-2013,Unprovoked,USA,Florida,"Casino Beach, Pensacola, Escambia County",Swimming,Trevor Kalck,M,21,Lacerations to right foot,False,Bull shark,"E. Ritter, GSAF",2013.09.14-Kalck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.14-Kalck.pdf,2013.09.14,2013.09.14 +622, 12-Sep-2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Storm Portman,F,13,Heel bitten,False,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.12-Portman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.12-Portman.pdf,2013.09.12,2013.09.12 +623,08-Sep-2013,Unprovoked,USA,South Carolina,"St. Helena Island, Beaufort County",Surfing,female,F,13,No details,UNKNOWN,3' shark,"WIS-TV, 9/9/2013",2013.09.08-St-Helena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.08-St-Helena.pdf,2013.09.08,2013.09.08 +624, 07-Sep-2013,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,John Graham,M,43,Foot bitten when he accidentally jumped onto the shark PROVOKED INCIDENT,False,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.07.b-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.b-Graham.pdf,2013.09.07.b,2013.09.07.b +625, 07-Sep-2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Marco Edmundo Cardiel,M,25,"Minor injury, shin bitten",False,3' shark,"Orlando Sentinel, 9/7/2013",2013.09.07.a-Cardiel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.07.a-Cardiel.pdf,2013.09.07.a,2013.09.07.a +626, 02-Sep-2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,Raushod Floyd,M,17,Shoulder bitten,False,3' shark,"WFTV, 9/2/2013",2013.09.02-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.02-Floyd.pdf,2013.09.02,2013.09.02 +627, 01-Sep-2013,Provoked,USA,Florida,Key West Aquarium,Swimming,female,M,3,Arm bitten by captive shark PROVOKED INCIDENT,False,Nurse shark,"KeyNews, 8/4/2013",2013.09.01-KeyWestAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01-KeyWestAquarium.pdf,2013.09.01.c,2013.09.01.c +628, 01-Sep-2013,Unprovoked,BAHAMAS,unknown,unknown,Swimming,boy,M,3,Leg injured,False,Nurse shark,"WFTV, 9/2/2013",2013.09.01.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.b-Bahamas.pdf,2013.09.01.b,2013.09.01.b +629, 01-Sep-2013,Unprovoked,USA,Florida,"St Augustine Beach, St Johns County",Casting a net,Connor Baker,M,9,Lacerations to left calf,False,4' shark,"WTEV 47, 9/1/2013",2013.09.01.a-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.09.01.a-Baker.pdf,2013.09.01.a,2013.09.01.a +630,31-Aug-2013,Unprovoked,BAHAMAS,Freetown Beach,Freetown Beach,Spearfishing,Bryan Collins,M,9,Lower left leg bitten,False,Blacktip shark,Bryan Collins,2013.08.31.b-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.b-Collins.pdf,2013.08.31.b,2013.08.31.b +631,31-Aug-2013,Unprovoked,USA,California,"Butterfly Beach, Montecito, Santa Barbara County",Swimming,Nick Kennedy,M,9,Foot bitten,False,Salmon shark,R. Collier,2013.08.31.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.31.a-Kennedy.pdf,2013.08.31.a,2013.08.31.a +632,29-Aug-2013,Invalid,USA,California,Catalina Channel,Marathon swimming,Charlotte Brynn,F,47,"Puncture wound to torso. Reported as a bite by a leopard shark, the tooth fragment appears to be that of a bony fish",False,No shark involvement,"Stowe Reporter, 9/5/2013",2013.08.29-Brynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.29-Brynn.pdf,2013.08.29,2013.08.29 +633,26-Aug-2013,Provoked,FRANCE,Bay of Biscay,Bay of Biscay,Longline fishing for sharks,Ramon Arufe,M,50,Laceration to right arm from hooked shark PROVOKED INCIDENT,False,"Mako shark, 5'","Diariovasco.com, 8/28/2013",2013.08.26-Arufe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.26-Arufe.pdf,2013.08.26,2013.08.26 +634, 25-Aug-2013,Unprovoked,USA,Florida,"Winterhaven Park, Ponce Inlet, Volusia County",Boogie boarding,Riley Breihan,F,11,Minor injury to left lower leg & heel,False,"Mako shark, 5'","Daytona Beach News-Journal, 8/28/2013",2013.08.25-OttoLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-OttoLee.pdf,2013.08.25.b,2013.08.25.b +635, 25-Aug-2013,Unprovoked,AUSTRALIA,New South Wales,Smiths,Wrangling a shark,Otto Lee,M,11,Lacerations to left forearm,False,"Mako shark, 5'","Great Lakes Advocate, 8/28/2013",2013.08.25-Breihan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.25-Breihan.pdf,2013.08.25,2013.08.25 +636, 18-Aug-2013,Unprovoked,USA,Hawaii,Pohoiki ,Surfing,Jimmy Napeahi,M,16,Lacerations to buttocks & thigh,False,"Mako shark, 5'","T. Mori, KHON2, 8/18/2013",2013.08.18-Napeahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.18-Napeahi.pdf,2013.08.18,2013.08.18 +637,17-Aug-2013,Unprovoked,USA,California,"Pillar Point, Half-Moon Bay, San Mateo County",Surfing,Wendi Zuccaro,F,16,"No injury, shark bumped surfboard",False,White shark,R. Collier,2013.08.17-Zaccaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.17-Zaccaro.pdf,2013.08.17,2013.08.17 +638, 14-Aug-2013,Unprovoked,USA,Hawaii,"Makenat, Maui",Snorkeling,Jana Lutteropp,F,20,fatal,True,Tiger shark?,"KHON2, 8/15/2013",2013.08.14-Lutteropp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.14-Lutteropp.pdf,2013.08.14,2013.08.14 +639, 13-Aug-2013,Unprovoked,USA,Hawaii,"Ka'a Point, Maui",Kiteboarding,Morgan Flannery,F,19,No injury & not on board. Board adrift when bitten by shark,False,Tiger shark?,"Maui News, 8/14/2013",2013.08.13-Flannery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.13-Flannery.pdf,2013.08.13,2013.08.13 +640,11-Aug-2013,Unprovoked,USA,South Carolina,Folly Beach,Surfing,Tyson Royston,M,10,"No injury, shark became entangled in his surfboard leash",False,"Bull shark, 8'","Post and Courier, 8/11/2013",2013.08.11-Royston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.11-Royston.pdf,2013.08.11,2013.08.11 +641,Reported 08-Aug-2013,Unprovoked,SOUTH AFRICA,unknown,unknown,Attempting to free the shark,Tyler,M,10,"Unknown, but survived",False,Blacktip shark,"WebProNews/Science, 8/8/2013",2013.08.08-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.08-Tyler.pdf,2013.08.08.R,2013.08.08.R +642, 05-Aug-2013,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Fishing,Christian Mercurio,M,17,Minor injury to foot & shin,False,"Bull shark, 6' to 8'","NBC2 News, 8/5/2013",2013.08.05-Mercurio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.08.05-Mercurio.pdf,2013.08.05,2013.08.05 +643, 31-Jul-2013,Unprovoked,USA,Hawaii,"Ulua Beach, Maui",Snorkeling,Evonne Cashman,F,56,"Lacerations to hand, face and torso",False,"Bull shark, 6' to 8'","Maui Now, 7/31/2013",2013.07.31-Cashmani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.31-Cashmani.pdf,2013.07.31,2013.07.31 +644, 30-Jul-2013,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Ty Bretz,M,32,Foot bitten,False,"Bull shark, 6' to 8'","A. Brenneka, Shark Attack Survivors; C. Creswell, GSAF",2013.07.30-Bretz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.30-Bretz.pdf,2013.07.30,2013.07.30 +645,28-Jul-2013,Unprovoked,BAHAMAS,Abaco Islands,Scotland Cay,Spearfishing,Erik Norrie,M,40,Leg bitten,False,6' shark,"CBS Miami, 8/1/2013",2013.07.29.c-Norrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.c-Norrie.pdf,2013.07.29.c,2013.07.29.c +646, 29-Jul-2013,Unprovoked,MEXICO,Quintana Roo,Quintana Roo,Wading,Bonnie Davis,F,40,Hip bitten,False,6' shark,"A. Brenneka, Shark Attack Survivors",2013.07.29.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.b-Davis.pdf,2013.07.29.b,2013.07.29.b +647, 29-Jul-2013,Unprovoked,USA,Hawaii,"White Plains Beach, Oahu",Surfing,Kiowa Gatewood,M,18,Lower leg bitten,False,"Tiger shark, 8' to 10' ","Hawaii News Now, 7/29/2013",2013.07.29.a-Gatewood,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.29.a-Gatewood,2013.07.29.a,2013.07.29.a +648,28-Jul-2013,Unprovoked,BAHAMAS,Exuma Islands,Compass Cay,Cleaning fish,male,M,64,Bitten on left hand,False,Nurse shark,"Tribune 242, 7/28/2013",2013.07.28.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.b-Bahamas.pdf,2013.07.28.b,2013.07.28.b +649,28-Jul-2013,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Diving,male,M,50,Bitten on rear lower extremities,False,Nurse shark,"News Channel 5, 7/28/2013",2013.07.28.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.28.a-Bahamas.pdf,2013.07.28.a,2013.07.28.a +650, 22-Jul-2013,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Bruna Silva Gobbi ,F,18,fatal,True,Nurse shark,"G! Pernambuco, 7/22/2013",2013.07.22-Gobbi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.22-Gobbi.pdf,2013.07.22,2013.07.22 +651,19-Jul-2013,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Walking in surf,Laura Havrylkoff,F,50,Lacerations and abrasions to foot and ankle,False,Nurse shark,"A. Brenneka, Shark Attack Survivors; L. Havrylkoff",2013.07.19-Havrylkoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.19-Havrylkoff.pdf,2013.07.19,2013.07.19 +652,Reported 17-Jul-2013,Unprovoked,USA,Florida,"Butler Beach, St Augustine, St. Johns County",Swimming ,male,M,teen,4 cuts to posterior calf,False,Nurse shark,"Florida Today, 7/17/2013",2013.07.17-StAugustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.17-StAugustine.pdf,2013.07.17.R,2013.07.17.R +653,15-Jul-2013,Unprovoked,REUNION,Saint-Paul,Le cimetière marin,Swimming & snorkeling,Sarah Roperh,F,15,fatal,True,Nurse shark,"Clicanoo, 7/15/2013",2013.07.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.15-Reunion.pdf,2013.07.15,2013.07.15 +654,14-Jul-2013,Unprovoked,DIEGO GARCIA,unknown,unknown,Swimming,Fernando Licay,M,33,fatal,True,Nurse shark,"Sun Star, 7/18/2013",2013.07.14-Licay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.14-Licay.pdf,2013.07.14,2013.07.14 +655,11-Jul-2013,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Wading,Barbara Corey,F,63,Right foot bitten,False,Nurse shark,"C. Creswell, GSAF, WWAY-TV, 7/12/2013",2013.07.11-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.11-Corey.pdf,2013.07.11,2013.07.11 +656,07-Jul-2013,Invalid,SPAIN,Catalonia,"Sant Marti d’Empuries Beach, L’Escala",Swimming,Thierry Frennet,M,48,"Scrape to right forearm. Frennet says inflicted by a blue shark, but authorities question shark involvement",False,Shark involvement not confirmed,"DH.be, 7/11/2013",2013.07.09-Frennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.09-Frennet.pdf,2013.07.09,2013.07.09 +657,02-Jul-2013,Unprovoked,AUSTRALIA,Victoria,"Flinders, Mornington Penisula",Body surfing,Jimmy McDonald-Jones,M,29,"No injury, holes in wetsuit ",False,Shark involvement not confirmed,"Herald Sun, 7/3/2013",2013.07.02-McDonald-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.07.02-McDonald-Jones.pdf,2013.07.02,2013.07.02 +658,30-Jun-2013,Unprovoked,TAIWAN,Taitung ,Taitung ,Fishing,male,M,29,Right thigh bitten,False,Shark involvement not confirmed,"China Post, 7/1/2013",2013.06.30-TaiwaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.30-TaiwaneseFisherman.pdf,2013.06.30,2013.06.30 +659,27-Jun-2013,Invalid,JAMAICA,Kingston Parish,Port Royal,Fishing,Kevin,M,20,Probable drowning with post-mortem bites,False,Shark involvement prior to death not confirmed,Shark Attack Survivors,2013.06.27-Kevin-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.27-Kevin-Jamaica.pdf,2013.06.27,2013.06.27 +660,25-Jun-2013,Boating,USA,California,"Pacific State , San Mateo County",Kayaking / Fishing,Micah Flanaburg,M,20,"No injury, kayak scratched",False,White shark,R. Collier,2013.06.25.c-Flanaberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.c-Flanaberg.pdf,2013.06.25.c,2013.06.25.c +661,25-Jun-2013,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,Colleen Malone,M,20,Lacerations to left foot,False,"Possibly a Bull shark, 3'","Action News, 7/25/2013",2013.06.25.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.b-Malone.pdf,2013.06.25.b,2013.06.25.b +662,25-Jun-2013,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Swimming,Joshua Watson,M,14,"Bitten on lower right leg, reported as a minor injury",False,4' to 5' shark,"C. Creswell, GSAF",2013.06.25.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.25.a-Watson.pdf,2013.06.25.a,2013.06.25.a +663,18-Jun-2013,Unprovoked,USA,Hawaii,Kona Coast State Park,Swimming,James Kerrigan,M,28,Right thigh & calf bitten,False,"Tiger shark, 14'","Hawaii News Now, 6/18/2013",2013.06.18-Kerrigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.18-Kerrigan.pdf,2013.06.18,2013.06.18 +664,17-Jun-2013,Unprovoked,USA,Texas,"Surfside Beach, Brazoria County",Swimming,Garrett Sebesta ,M,15,Left leg & hand bitten,False,"Tiger shark, 14'","ABC News, 6/18/2013",2013.06.17-Sebesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.17-Sebesta.pdf,2013.06.17,2013.06.17 +665,16-Jun-2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Queensberry Bay,Surfing,Kevin Bracey,M,15,Lacerations to knee,False,"Tiger shark, 14'","Dispatch Online, 6/19/2013",2013.06.16-Bracey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.16-Bracey.pdf,2013.06.16,2013.06.16 +666,15-Jun-2013,Unprovoked,USA,Florida,"Atlantic Beach, Duval County",Surfing,female,F,15,Lacerations to left ankle,False,"Tiger shark, 14'","ActionNewsJax.com, 6/15/2013",2013.06.15-LaFlam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.15-LaFlam.pdf,2013.06.15,2013.06.15 +667,Reported 14-Jun-2013,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Allison Foreman,F,10,Puncture marks to hand,False,4' to 5' shark,"WMBF News, 6/14/2013",2013.06.14.R-Foreman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.14.R-Foreman.pdf,2013.06.14.R,2013.06.14.R +668,06-Jun-2013,Provoked,USA,Florida,"Off Snipe Point, Florida Keys, Monroe County",Fishing for sharks,Walter Kefauver,M,58,Left hand bitten as he attempted to remove hook from shark PROVOKED INCIDENT,False,"Lemon shark, 4'","CBS Miami, 6/6/2013",2013.06.06.b-Kefauver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.b-Kefauver.pdf,2013.06.06.b,2013.06.06.b +669,06-Jun-2013,Unprovoked,AUSTRALIA,New South Wales,Target Beach,Surfing,Steve Adamson,M,58,"No injury, board damaged",False,6' shark,"A. Brenneka, Shark Attack Survivors",2013.06.06.a-Adamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.06.06.a-Adamson.pdf,2013.06.06.a,2013.06.06.a +670,27-May-2013,Unprovoked,USA,Hawaii,"Halewia, Oahu",Diving,Tali Ena,M,32,Lacerations to right hand,False,Galapagos shark,"A. Brenneka, Shark Attack Survivors",2013.05.27.b-Ena.pdf,pdf-directory/2013.05.27.b-Ena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.b-Ena.pdf,2013.05.27.b,2013.05.27.b +671,27-May-2013,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Swimming,Kyle Kirkpatrick,M,11,Right foot bitten,False,Galapagos shark,"Fox News, 5/28/2013",2013.05.27.a-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27.a-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.27-Kirkpatrick.pdf,2013.05.27.a,2013.05.27.a +672,23-May-2013,Unprovoked,BRAZIL,Pernambuco,Coral Cove Beach,Swimming,José Rogério da Silva,M,41,fatal,True,Galapagos shark,"JC Online, 6/6/2013",2013.05.25.b-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.25.b-daSilva.pdf,2013.05.23.b,2013.05.23.b +673,23-May-2013,Provoked,PALESTINIAN TERRITORIES,Gaza,Gaza,Fishing,Hamed Salah,M,30,Two fingers lost PROVOKED INCIDENT,False,Galapagos shark,"Ma'an News Agency, 5/25/2013",2013.05.23-Salah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.23-Salah.pdf,2013.05.23.a,2013.05.23.a +674,14-May-2014,Unprovoked,ECUADOR,Santa Cruz Island,"Playa Brava, Turtle Bay",Surfing,Intriago Diego,M,29,Superficial injury to left calf,False,Galapagos shark,"El Universo, 5/16/2013",2013.05.14-Diego.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.14-Diego.pdf,2013.05.14,2013.05.14 +675,08-May-2013,Invalid,USA,California,"Tourmaline Surf Park, San Diego County",Surfing,Brandon Beaver,M,42,Shark bites were post-mortem,False,Invalid,"Sacramento Bee, 6/4/2013",2013.05.08.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.b-Beaver.pdf,2013.05.08.b,2013.05.08.b +676,08-May-2013,Unprovoked,REUNION,Saint-Gilles,Brisant Beach,Body boarding,Stéphane Berhamel,M,36,fatal,True,Bull shark,A. Morel,2013.05.08.a-Berhamel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.08.a-Berhamel.pdf,2013.05.08.a,2013.05.08.a +677,04-May-2013,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Adler,M,16,Lacerations to left foot and ankle,False,a small shark,"Local News 10, 5/5/2013",2013.05.04-Adler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.05.04-Adler.pdf,2013.05.04.a,2013.05.04.a +678,28-Apr-2013,Provoked,AUSTRALIA,New South Wales,Emerald Beach,Fishing,Ted Collins,M,16,Foot bitten by landed shark PROVOKED INCIDENT,False,"Wobbegong, 2m","Coffs Coast Advocate, 5/4/2013",2013.04.28-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.28-Collins.pdf,2013.04.28,2013.04.28 +679,24-Apr-2013,Unprovoked,MEXICO,Quintana Roo,"Seagull Beach, Cancun",Swimming,Isabella Carchia,F,34,Avulsion injury to lower right leg,False,Tiger shark,"I. Carchia; A. Brenneka, Shark Attack Survivors; Novedades 4/24/2013",2013.04.24-Carchia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.24-Carchia.pdf,2013.04.24,2013.04.24 +680,21-Apr-2013,Unprovoked,AUSTRALIA,New South Wales,Crowdy Head,Fishing,Alan Saunders,M,51,Puncture wounds and lacerations to both legs,False,"Grey nurse shark, 3m","7NewsSydney, 4/22/2013",2013.04.21-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.21-Saunders.pdf,2013.04.21,2013.04.21 +681,17-Apr-2013,Unprovoked,USA,Florida,"Near Boynton Beach, Palm Beach County",Playing in the surf,Colten Cicarelli,M,9,Lacerations to right foot,False,3' shark,"News Channel 5, 4/18/2013",2013.04.17-Cicarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.17-Cicarelli.pdf,2013.04.17,2013.04.17 +682,14-Apr-2013,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Free diving,male,M,9,"""Light scratch on hand/wrist area""",False,Blue shark,"Cape Argus, 4/16/2013",2013.04.14-FalseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.14-FalseBay.pdf,2013.04.14,2013.04.14 +683,13-Apr-2013,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joshua White,M,21,Minor lacerations to right hand,False,Bull shark,"News13, 4/14/2013",2013.04.13.b-JoshuaWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.b-JoshuaWhite.pdf,2013.04.13.b,2013.04.13.b +684,13-Apr-2013,Unprovoked,GUAM,unknown,unknown,Surfing,Nae Deok Kim,M,40,fatal,True,Bull shark,"Pacific News Center, 4/15/2013",2013.04.13.a-NaeDeokKim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.13.a-NaeDeokKim.pdf,2013.04.13.a,2013.04.13.a +685,10-Apr-2013,Unprovoked,FRENCH POLYNESIA,Tuamotus,"North Pass, Fakarava",Kite boarding,Nick Eitel,M,53,"Underside of board, fins and, harness were damaged, and left hip, thigh and buttock sustained puncture wounds",False,Possibly a blacktip reef shark,N. Eitel,2013.04.10-Eitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.10-Eitel.pdf,2013.04.10,2013.04.10 +686,04-Apr-2013,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,male,M,50,Lacerations to hand,False,Possibly a blacktip reef shark,"A. Brenneka, Shark Attack Survivors; TC Palm, 4/7/2013",2013.04.04-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.04-JensenBeach.pdf,2013.04.04,2013.04.04 +687,Reported 02-Apr-2013,Invalid,AUSTRALIA,Western Australia,Perth,Swimming,Martin Tann,M,24,Disappeared. No evidence that he was taken by a shark,False,shark involvement not confirmed,"WA Today, 4/4/2013",2013.04.02.R-Tann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.R-Tann.pdf,2013.04.02.R,2013.04.02.R +688,02-Apr-2013,Unprovoked,USA,Hawaii,Ka’anapali Shores,Surfing,male,M,58,Right thigh bitten,False,4' shark,"Maui Now, 4/2/2013",2013.04.02.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.04.02.a-Hawaii.pdf,2013.04.02.a,2013.04.02.a +689,31-Mar-2013,Invalid,AUSTRALIA,New South Wales,Terrigal Beach,Surfing,Richard Tognetti,M,47,Never happened; it was a hoax,False,No shark involvement,"Limelight Magazine, 4/1/2013",2013.03.31-Tognetti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.31-Tognetti.pdf,2013.03.31,2013.03.31 +690,29-Mar-2013,Unprovoked,SEYCHELLES,Ile Platte,Ile Platte,Free diving,Richard Parkinson,M,34,Lacerations to left foot,False,No shark involvement,"E. Ritter, GSAF",2013.03.29-Parkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.29-Parkinson.pdf,2013.03.29,2013.03.29 +691,Reported 21-Mar-2013,Unprovoked,BELIZE,unknown,unknown,Snorkeling,Monika Wanis,F,34,Toe injured,False,Nurse shark,"H. Fairchild, The Lantern, 3/21/2013",2013.03.21.R-Wanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.R-Wanis.pdf,2013.03.21.R,2013.03.21.R +692,21-Mar-2013,Unprovoked,BAHAMAS,Eleuthera,Savannah Sound,Fly fishing,Kerry Anderson,M,50,Left foot bitten,False,Nurse shark,"13wham.com, 3/22/2013",2013.03.21.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.21.a-Bahamas.pdf,2013.03.21,2013.03.21 +693,16-Mar-2013,Provoked,SOUTH AFRICA,Western Cape Province,De Mond,Fishing - 'tag & release',Kobus Koeberg,M,30,Lacerations to left calf and heel from hooked shark PROVOKED INCIDENT,False,"Raggedtooth shark, 1.5 m",National Sea Rescue Institute,2013.03.16.b-Koeberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.b-Koeberg.pdf,2013.03.16.b,2013.03.16.b +694,16-Mar-2013,Unprovoked,SOUTH AFRICA,Western Cape Province,Hawston Beach,Surfing,Troy Henri,M,30,"No injury, surfboard bitten",False,"Raggedtooth shark, 1.5 m","Cape Times, 3/19/2013",2013.03.16.a-Henri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.16.a-Henri.pdf,2013.03.16.a,2013.03.16.a +695,12-Mar-2013,Unprovoked,JAMAICA,St. Catherine,Pillikin Red Light area ,Spearfishing,George Facey,M,68,fatal,True,"Tiger shark, 4.8 m","R. Turner & A. Williams, Jamaica Star, 3/13/2013 ",2013.03.12-Facey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.12-Facey.pdf,2013.03.12,2013.03.12 +696,10-Mar-2013,Unprovoked,AUSTRALIA,Western Australia,African Reef off Geraldton,Spearfishing,Adam Thomason,M,28,Laceration to left hand,False,"Bronze whaler shark, 2.5m","The West Australian, 3/13/2013",2013.03.10.b-Thomason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.b-Thomason.pdf,2013.03.10.b,2013.03.10.b +697,10-Mar-2013,Unprovoked,PHILIPPINES,Palawan,Off Likas Island,Swimming to shore with floatioon devices after boat engine conked out,Alvin Lovido & John Paul Mangaoang,M,28 & 26,Minor leg injuries,False,"""small sharks""","E. Badilla, InterAksyon.com, 3/15/2013",2013.03.10.a-PhilippineMarines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.10.a-PhilippineMarines.pdf,2013.03.10.a,2013.03.10.a +698,03-Mar-2013,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Swimming,Fundile Nogumla,M,39,Injuries to arms & hands,False,"""small sharks""","Daily Dispatch, 3/4/2013",2013.03.03-Nogumla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.03.03-Nogumla.pdf,2013.03.03,2013.03.03 +699,27-Feb-2013,Unprovoked,NEW ZEALAND,North Island,Muriwai,Swimming,Adam Strange,M,46,fatal,True,"White shark, 4m","New Zealand Herald, 2/27/2013",2013.02.27-Strange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.27-Strange.pdf,2013.02.27,2013.02.27 +700,21-Feb-2013,Unprovoked,USA,Hawaii,"Ka'anapali, Honokowai, Maui",Surfing,Hawaiisharks.com,,46,Lacerations to right leg,False,reef shark?,Hawaiisharks.com,2013.02.21.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.b-Hawaii.pdf,2013.02.21.b,2013.02.21.b +701,21-Feb-2013,Unprovoked,USA,Hawaii,"Paia Bay, Maui",Surfing,Jacob Lanskey,M,46,"No injury, shark bit rail of foam board",False,reef shark?,Hawaiisharks.com,2013.02.21.a-Lansky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.21.a-Lansky.pdf,2013.02.21.a,2013.02.21.a +702,10-Feb-2013,Unprovoked,USA,Florida,"""Stuart Rocks"", Martin County",Surfing,Cole Taschman,M,16,Lacerations to right hand,False,"Blacktip shark, 4' to 5'","Palm Beach Post, 2/12/2013",2013.02.10-Taschman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.10-Taschman.pdf,2013.02.10,2013.02.10 +703,09-Feb-2013,Unprovoked,FRENCH POLYNESIA,Society Islands,"Tapu, a dive site on the outer reefs of Bora Bora",Scuba diving,Zohar Kritzer ,M,48,Lacerations to right arm & thigh,False,Lemon shark,"A. Brenneka, Shark Attack Survivors; Les Nouvelles Caledoniennes, 2/21/2013",2013.02.09-Kritzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.09-Kritzer.pdf,2013.02.09,2013.02.09 +704,01-Feb-2013,Unprovoked,JAMAICA,Kingston Parish,Pedro Cays,Scuba diving,male,M,18,Knee bitten,False,Lemon shark,"The Gleaner, 2/1/2013",2013.02.01-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.02.01-Jamaica.pdf,2013.02.01,2013.02.01 +705,26-Jan-2013,Boat,AUSTRALIA,Victoria,Cape Nelson,Fishing,"Occupants: Andrew & Ben Donegan & Joel Ryan, ",M,18,"No injury to occupants, shark bit propeller",False,"White shark, 5m","7NewsMelbourne, 1/28/2013",2013.01.26-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.26-boat.pdf,2013.01.26,2013.01.26 +706,25-Jan-2013,Unprovoked,AUSTRALIA,Queensland,Noosa,Surfing,Matthew Cassaigne,M,18,Lacerations to neck,False,"White shark, 5m",sharkattackfile.info,2013.01.25-Cassaigne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.25-Cassaigne.pdf,2013.01.25,2013.01.25 +707,Reported 21-Jan-2013,Invalid,AUSTRALIA,Queensland,Bullcock Beach,Dragging stranded shark into deeper water,Paul Marshallsea,M,62,"No injury, a 3 m blue shark merely snapped at the man.",False,"White shark, 5m","The Guardian, 1/21/2013",2013.01.21.R-Marshallsea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.21.R-Marshallsea.pdf,2013.01.21.R,2013.01.21.R +708,16-Jan-2013,Unprovoked,USA,Hawaii,Kiholo Bay,Surfing,Paul Santos,M,43,Left forearm bitten ,False,"Tiger shark, 15'","Hawaii 24/7, 1/16/2013",2013.01.16-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.16-Santos.pdf,2013.01.16,2013.01.16 +709,13-Jan-2013,Unprovoked,NEW ZEALAND,Mercury Islands,Great Mercury Island,Spearfishing,Kim Bade,M,43,Minor cut on finger,False,"Bronze whaler shark, 3m","Bay of Plenty Times, 1/18/2013",2013.01.13-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.13-Bade.pdf,2013.01.13,2013.01.13 +710,05-Jan-2013,Unprovoked,AUSTRALIA,Western Australia,Near Legendre Island,Spearfishing / Free diving,Jake Swaffer,M,26,Calf & shin bitten ,False,"Bronze whaler shark, 3m","Perth Now, 1/7/2013",2013.01.05-Swaffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2013.01.05-Swaffer.pdf,2013.01.05,2013.01.05 +711,31-Dec-2012,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,male,M,26,Lower leg or ankle bitten,False,"Bronze whaler shark, 3m","TC Palm, 12/31/2012",2012.12.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.31-JensenBeach.pdf,2012.12.31,2012.12.31 +712,30-Dec-2012,Unprovoked,AUSTRALIA,New South Wales,Between Dee Why and Long Reef,Surfing,Danny Sheather,M,23,"No injury, chunk missing from surfboard",False,2.5 m shark,"The Daily Telegraph, 12/31/2012",2012.12.30-Sheather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.30-Sheather.pdf,2012.12.30,2012.12.30 +713,28-Dec-2012,Unprovoked,AUSTRALIA,New South Wales,"Kylie's Beach, Diamond Head",Paddle boarding,Luke Allan,M,29,Lacerations to thigh and hand,False,"Bull shark, 2m ","Port Macqquarie News, 12/28/2012",2012.12.28-Luke-Allan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.28-Luke-Allan.pdf,2012.12.28,2012.12.28 +714,25-Dec-2012,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. John's,Swimming,Liya Sibili,M,20,fatal,True,Tiger shark,"SAPA, 12/27/2012",2012.12.25-Sibili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.25-Sibili.pdf,2012.12.25,2012.12.25 +715,19-Dec-2012,Unprovoked,AUSTRALIA,Western Australia,Trigg Beach,Surfing,Richard Wands,M,32,No injury,False,"Tiger shark, 6'","The West Ausralian, 12/20/2012",2012.12.19-Wands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.19-Wands.pdf,2012.12.19,2012.12.19 +716,05-Dec-2012,Unprovoked,USA,Hawaii,Kauai,Surfing,"""Lorrin""",M,60,Lacerations to left foot,False,10' shark,"Hawaii News Now, 11/5/2012",2012.12.05-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.05-Kauai.pdf,2012.12.05,2012.12.05 +717,02-Dec-2012,Unprovoked,AUSTRALIA,New South Wales,Green Island,Spearfishing,male,M,31,Minor puncture wounds to knee,False,Sandtiger shark,"ABC News, 12/2/2012",2012.12.02-Green-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.02-Green-Island.pdf,2012.12.02,2012.12.02 +718,December 2012,Unprovoked,NEW ZEALAND,South Island,"Sunday Cove, Fiordland",Scuba diving,Jenny Oliver,F,25,"No injury, shark grabbed hood",False,Seven-gill shark,"Stuff.co.nz, 1/18/2013",2012.12.00-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.12.00-Oliver.pdf,2012.12.00,2012.12.00 +719,30-Nov-2012,Unprovoked,USA,Hawaii,"Kihei, Maui",Snorkeling,Thomas Floyd Kennedy ,M,61,Lacerations to thigh & lower left leg,False,"Tiger shark, 10'","KHON2, 11/30/2012",2012.11.30-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.30-Kennedy.pdf,2012.11.30,2012.11.30 +720,27-Nov-2012,Invalid,AUSTRALIA,Queensland,Mooloolaba,Snorkeling,"Fraser Coast Chronicle, 11/27/2012",M,20,"Injury to ankle caused by a stingray, not a shark",False,No shark involvement,"Fraser Coast Chronicle, 11/27/2012",2012.11.27-stingray_accident.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.27-stingray_accident.pdf,2012.11.27,2012.11.27 +721,22-Nov-2012,Unprovoked,MEXICO,Sinaloa,Nuevo Altata,Swimming,Fernando Cardenas Garcia,M,32,fatal,True,2.5 m shark,"El Universal, 11/22/2012",2012.11.22-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.22-Garcia.pdf,2012.11.22,2012.11.22 +722,19-Nov-2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Kai Rittgers,M,14,Minor lacerations to left foot & heel,False,2' to 3' shark,"Florida Today, 11/19/2012",2012.11.19-Rittgers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.19-Rittgers.pdf,2012.11.19,2012.11.19 +723,04-Nov-2012,Unprovoked,USA,Hawaii,"Makena Landing, Maui",Diving,Mark Riglos,M,30,Right lower leg and foot bitten,False,"Tiger shark, 15'","Hawaii News Now, 11/5/2012",2012.11.04.b-Riglos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.b-Riglos.pdf,2012.11.04.b,2012.11.04.b +724,04-Nov-2012,Unprovoked,USA,Hawaii,"Davidson's Surf Break, Kekaha, Kaua'i",Surfing,male,M,43,"No injury, surfboard bitten",False,"Tiger shark, 8'",Kaua'i Police Department,2012.11.04.a-Kekaha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.11.04.a-Kekaha.pdf,2012.11.04.a,2012.11.04.a +725,30-Oct-2012,Unprovoked,USA,California,"Humboldt Bay, Eureka, Humboldt County",Surfing,Scott Stephens,M,25,Multiple lacerations to torso,False,White shark,"R. Collier; Redwood Times, 11/5/2012",2012.10.30-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.30-Stephens.pdf,2012.10.30,2012.10.30 +726,27-Oct-2012,Unprovoked,USA,Hawaii,"Makena Landing, Maui",Swimming,Mariko Haugen ,F,51,"Puncture wounds to thigh, defense wounds to hand",False,"Tiger shark, 10' to 12' ","MauiNow.com, 10/28/2012",2012.10.27-Haugen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.27-Haugen.pdf,2012.10.27,2012.10.27 +727,23-Oct-2012,Unprovoked,USA,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Francisco Javier Solorio Jr,M,39,fatal,True,"White shark, 15' to 16' ",R. Collier,2012.10.23-Solorio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.23-Solorio.pdf,2012.10.23,2012.10.23 +728,19-Oct-2012,Unprovoked,USA,Florida,"Seaport, Brevard County",Surfing,female,F,35,Left calf bitten,False,"White shark, 15' to 16' ","Brevard Times, 10/19/2012",2012.10.19-BrevardCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.19-BrevardCounty.pdf,2012.10.19,2012.10.19 +729,18-Oct-2012,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,24,Minor bite to ankle,False,"White shark, 15' to 16' ","WESH.com, 10/18/2012",2012.10.18.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.b-PonceInlet.pdf,2012.10.18.b,2012.10.18.b +730,18-Oct-2012,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui",Paddle boarding,David Peterson,M,55,"No injury, board bitten",False,6' to 8' shark,"Maui News, 10/18/2012",2012.10.18.a-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.18.a-Peterson.pdf,2012.10.18.a,2012.10.18.a +731,16-Oct-2012,Invalid,USA,Florida,Hobe Sound,Paddle boarding,male,M,55,Laceration to toe,False,Shark involvement not confirmed,"WPTV, 10/16/2012",2012.10.16-HobeSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.16-HobeSound.pdf,2012.10.16,2012.10.16 +732,Reported 11-Oct-2012,Unprovoked,NIGERIA,Delta,Oboro,Bathing,Mrs. Torugbene-Ere Aboh,F,38,Laceration to right leg,False,Shark involvement not confirmed,"The Osun Defender, 10/11/2012",2012.10.11.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.11.R-Nigeria.pdf,2012.10.11.R,2012.10.11.R +733,10-Oct-2012,Unprovoked,USA,California,"Davenport Landing, Santa Cruz County",Windsurfing,Gunner Proppe,M,42,"No ijnury to boardrider, shark struck board breaking the mast",False,Shark involvement not confirmed,R. Collier,2012.10.07-Proppe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.07-Proppe.pdf,2012.10.07,2012.10.07 +734,02-Oct-2012,Unprovoked,AUSTRALIA,Western Australia,"Mullaloo Beach, Perth",Bodyboarding,Andrew Gavriliu,M,11,"No injury, but swim fin bitten & torn",False,2m shark,"The West Australian, 10/4/2012",2012.10.02-Gavriliu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.10.02-Gavriliu.pdf,2012.10.02,2012.10.02 +735,25-Sep-2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Brandon Taylor,M,21,Lacerations to left forearm,False,5' shark,"The Examiner, 9/26/2012",2012.09.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.25-Taylor.pdf,2012.09.25,2012.09.25 +736,24-Sep-2012,Unprovoked,USA,Florida,"Spanish House Beach, Brevard County",Surfing,Brandon Murray,M,22,Left foot bitten,False,4' shark,"TC Palm, 9/26/2012",2012.09.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.24-Murray.pdf,2012.09.24,2012.09.24 +737,16-Sep-2012,Unprovoked,USA,Florida," Cocoa Beach, Brevard County",Surfing,male,M,52,Foot bitten,False,4' shark,"Florida Today, 9/16/2012",2012.09.16-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.16-CocoaBeach.pdf,2012.09.16,2012.09.16 +738,10-Sep-2012,Unprovoked,TONGA,Vava'u,Eueiki Island,Swimming,Kylie Maguire,F,29,Injuries to thighs & buttocks,False,Possibly a 3 m bull shark,"Northern Star, 9/13/2012",2012.09.10-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.10-Maguire.pdf,2012.09.10,2012.09.10 +739,09-Sep-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,teen,,19,Minor injury to elbow,False,Possibly a 3 m bull shark,"Daytona Beach News Journal, 9/9/2012",2012.09.09-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.09-NSB.pdf,2012.09.09,2012.09.09 +740,08-Sep-2012,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Surfing,Matthew Fowler,M,25,Right foot bitten,False,Possibly a 3 m bull shark,Shark Attack Survivors,2012.09.08.b-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.b-Fowler.pdf,2012.09.08.b,2012.09.08.b +741,08-Sep-2012,Unprovoked,USA,Florida,"South Beach, Miami-Dade County",Swimming,male,M,25,Lacerations to right calf,False,Possibly a 3 m bull shark,"Miami CBS Local, 9/8/2012",2012.09.08.a-SouthBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.08.a-SouthBeach.pdf,2012.09.08.a,2012.09.08.a +742,06-Sep-2012,Unprovoked,USA,Florida,"Neptune Beach, Duval County",Surfing,James Fyfe,M,30s,Right calf bitten,False,Possibly a 3 m bull shark,"New4Jax, 9/7/2012",2012.09.06.b-Fyfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.b-Fyfe.pdf,2012.09.06.b,2012.09.06.b +743,06-Sep-2012,Unprovoked,USA,Florida,"St. Augustine Beach, St. John's County",Surfing,Andrew Birchall,M,37,Lacerations to foot,False,Possibly a 3 m bull shark,"WFTV, 9/4/2012",2012.09.06.a-Birchall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.06.a-Birchall.pdf,2012.09.06.a,2012.09.06.a +744,04-Sep-2012,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,male,M,32,Puncture wounds to hand,False,Possibly a 3 m bull shark,"WFTV, 9/4/2012",2012.09.04-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.04-MelbourneBeach.pdf,2012.09.04,2012.09.04 +745,02-Sep-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,female,F,8,Puncture wounds to calf and hand,False,3.5' to 4' shark,"WYTV, 9/3/2012",2012.09.02.b-NSB-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.b-NSB-girl.pdf,2012.09.02.b,2012.09.02.b +746,02-Sep-2012,Provoked,USA,Hawaii,"Spreckelsville, Maui",Spearfishing,M. Malabon,,8,Minor laceration to hand PROVOKED INCIDENT,False,"Tiger shark, 10' to 12' ",HawaiiNow.com,2012.09.02.c-Malabon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.c-Malabon.pdf,2012.09.02.b,2012.09.02.b +747,02-Sep-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming or boogie boarding,female,F,56,Puncture wound to left ankle,False,3.5' to 4' shark,"WYTV, 9/3/2012",2012.09.02.a-NSB-Woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.09.02.a-NSB-Woman.pdf,2012.09.02.a,2012.09.02.a +748,31-Aug-2012,Provoked,SCOTLAND,Inner Hebrides,Off the Isle of Islay,Shark fishing,Hamish Currie,M,53,"No injury, shoe bitten by hooked and landed shark PROVOKED INCIDENT",False,"Porbeagle shark, 7'","The Mirror, 8/31/2012",2012.08.31.R-Hamish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.31.R-Hamish.pdf,2012.08.31,2012.08.31 +749,28-Aug-2012,Unprovoked,AUSTRALIA,Western Australia,Red Bluff near Quobba Station,Surfing,Jon Hines,M,34,Lacerations to torso and arm,False,"Porbeagle shark, 7'","T. Peake, GSAF",2012.08.28-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.28-Hines.pdf,2012.08.28,2012.08.28 +750,26-Aug-2012,Unprovoked,BRAZIL,Pernambuco,"Coral Cove, Cabo de Santo Agostinho",Swimming,Tiago José de Oliveira da Silva ,M,18,fatal,True,"Porbeagle shark, 7'","JC Online, 8/30/2012",2012.08.26-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.26-Brazil.pdf,2012.08.26,2012.08.26 +751,15-Aug-2012,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Wading or swimming,"male, a tourist from Germany",M,31,Lacerations to leg,False,"Porbeagle shark, 7'","Fox 10, 8/17/2012",2012.08.15-GulfShoresSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.15-GulfShoresSwimmer.pdf,2012.08.15,2012.08.15 +752,11-Aug-2012,Boating,AUSTRALIA,Western Australia,Ocean Reef,Fishing,dinghy,,31,"No injury, shark grabbed outboard motor",False,4.5 m shark,"Perth Now, 8/11/2012",2012.08.11-FishingBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.11-FishingBoat.pdf,2012.08.11,2012.08.11 +753,08-Aug-2012,Unprovoked,USA,Florida,Key Largo,Free diving ,"David Lowe, Sr.",M,56,Lacerations to little finger of left hand,False,"Lemon shark, 4' to 5' ",D. Lowe,2012.08.09-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.09-Lowe.pdf,2012.08.09,2012.08.09 +754,06-Aug-2012,Unprovoked,REUNION,Saint Leu,Saint Leu,Surfing,Fabien Bujon,M,39,Right hand and foot severed,False,Bull shark,"Linfo.re, 8/5/2012",2012.08.05-Bujon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.05-Bujon.pdf,2012.08.05,2012.08.05 +755,04-Aug-2012,Unprovoked,FRENCH POLYNESIA,Tuamotus,Kaukura Atoll,Spearfishing,Téophane Tauiratea,M,39,Shoulder bitten,False,"Lemon shark, 2.5m to 3m ","A. Brenneka, Shark Attack Survivors; Les Nouvelles calédoniennes, 9/6/2012",2012.08.04-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.08.04-FrenchPolynesia.pdf,2012.08.04,2012.08.04 +756,31-Jul-2012,Unprovoked,USA,California,"Topanga Beach, Los Angeles County",Surfing,Jared Tennison,M,17,"No injury, surfer knocked off board when shark struck surfboard",False,"Lemon shark, 2.5m to 3m ",R. Collier,2012.07.31.b-Tennison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.b-Tennison.pdf,2012.07.31.b,2012.07.31.b +757,31-Jul-2012,Unprovoked,AUSTRALIA,South Australia,Streaky Bay,Surfing,John Campion,M,48,Lacerations to torso & arm,False,White shark or bronze whaler,"T. Conlin, Adelaide Now, 7/31/2012",2012.07.31.a-Campion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.31.a-Campion.pdf,2012.07.31.a,2012.07.31.a +758,30-Jul-2012,Unprovoked,USA,Hawaii,"Maha‘ulepu Beach, Kauai",Surfing,Steve Stotts,M,44,Left foot bitten,False,White shark or bronze whaler,"T. LaVenture, The GardenIsland.com",2012.07.30.b-Stotts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.b-Stotts.pdf,2012.07.30.b,2012.07.30.b +759,30-Jul-2012,Unprovoked,USA,Massachusetts,"Ballston Beach, Truro, Cape Cod",Body surfing,Chris Myers,M,50,Lacerations to both legs below the knees,False,Thought to involve a white shark,"A. Costellano, ABC News, 7/31/202",2012.07.30.a-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.30.a-Myers.pdf,2012.07.30.a,2012.07.30.a +760,24-Jul-2012,Invalid,USA,North Carolina,"Ocean Isle, Brunswick County",Body surfing,male,M,12,Shark involvement unconfirmed,False,Shark involvement not confirmed,"C. Creswell, GSAF",2012.07.24-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.24-OceanIsle.pdf,2012.07.24,2012.07.24 +761,23-Jul-2012,Unprovoked,REUNION,Trois-Bassins,Trois-Bassins,Surfing,Alexandre Rassiga,M,22,fatal,True,Shark involvement not confirmed,"Clicanoo.re, 7/23/20122",2012.07.23-Rassica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.23-Rassica.pdf,2012.07.23,2012.07.23 +762,21-Jul-2012,Invalid,TRINIDAD & TOBAGO,Trinidad,"Off Radix Village, Mayoro County",Swimming,Shaka Galera,M,24,Probable drowning with post-mortem bite,False,Shark involvement not confirmed,"Trinidad Express, 8/3/2012",2012.07.21-Galera-drowning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.21-Galera-drowning.pdf,2012.07.21,2012.07.21 +763,19-Jul-2012,Invalid,CANADA,British Colombia,"Tofino, Vancouver",Surfing,Kaitlin Dakers,F,23,"Lacerations to 2 fingers, but shark involvement unconfirmed",False,"Salmon shark suspected, but unlikely","CBC News, 7/23/2012",2012.07.19-Dakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.19-Dakers.pdf,2012.07.19,2012.07.19 +764,14-Jul-2012,Unprovoked,AUSTRALIA,Western Australia,Off Wedge Island,Surfing,Ben Linden,M,24,fatal,True,"White shark, 5m","WA News, 7/15/2012",2012.07.14-Linden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.14-Linden.pdf,2012.07.14,2012.07.14 +765,08-Jul-2012,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Swimming,Tracy Fasick,F,43,Lacerations to right ankle and calf,False,"White shark, 5m","A. Brenneka, SharkAttackSurvivors.com; T.Fasick",2012.07.08-Fasick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.08-Fasick.pdf,2012.07.08,2012.07.08 +766,07-July-2012,Unprovoked,BAHAMAS,Eleuthera,Eleuthera,Spearfishing,Sean Connelly,M,43,Lacerations to right leg,False,"White shark, 5m",S. Connelly,2012.07.07.c-Connelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.c-Connelly.pdf,2012.07.07.c,2012.07.07.c +767,07-Jul-2012,Invalid,AUSTRALIA,Victoria,Ship's Graveyard off Point Lonsdale,Scuba diving,Karen Lee,F,42,Cause of death was drowning & preceded shark involvement,False,"White shark, 5m","Aleks Devic, Herald Sun, 7/11/2012",2012.07.07.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.b-Lee.pdf,2012.07.07.b,2012.07.07.b +768,07-Jul-2012,Boating,USA,California,"Pleasure Point, Santa Cruz County",Kayaking,M.C.,M,52,"No injury, kayak bitten",False,14' to 18'shark,R. Collier,2012.07.07.a-SantaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.07.a-SantaCruz.pdf,2012.07.07.a,2012.07.07.a +769,06-Jul-2012,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sandstrand, Jongensfontein",Surfing,Jacque Mostert,M,29,Lacerattions to left thigh & knee,False,15' shark,"NSRI, 7/6/2012",2012.07.06-Mostert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.07.06-Mostert.pdf,2012.07.06,2012.07.06 +770,Reported 28-Jun-2012,Invalid,CROATIA,Buccari Bay,Buccari Bay,Swimming,"Il Gazzettino, 6/28/2012",,60,"Leg struck. Initally reported as a shark attack, but involved a swordfish",False,No shark involvement,"Il Gazzettino, 6/28/2012",2012.06.28.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.28.R-Croatia.pdf,2012.06.28.R,2012.06.28.R +771,26-Jun-2012,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Swimming,Nickolaus Bieber ,M,6,Thigh bitten,False,possibly a bull shark,"WPTV.com, 6/26/2012",2012.06.26.c-Bieber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.c-Bieber.pdf,2012.06.26.c,2012.06.26.c +772,26-Jun-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,26,Nip to left foot,False,possibly a bull shark,"H. Frederick, Headline Surfer, 6/26/2012",2012.06.26.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.b-NewSmyrnaBeach.pdf,2012.06.26.b,2012.06.26.b +773,26-Jun-2012,Unprovoked,USA,Hawaii,"Kahana Beach, Maui",Sitting in the water,Sage St. Clair,F,16,Laceration to left calf,False,a small reef shark,"Hawaii News Now, 6/26/2012",2012.06.26.a-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.26.a-StClair.pdf,2012.06.26.a,2012.06.26.a +774,22-Jun-2012,Unprovoked,AUSTRALIA,Tasmania,South Cape Bay,Surfing,James Barthy,M,16,"Knocked off board, shark bit nose off surfboard",False,a small reef shark,J. Barthy,2012.06.22.b-Barthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.b-Barthy.pdf,2012.06.22.b,2012.06.22.b +775,22-Jun-2012,Unprovoked,USA,Florida,"Bathtub Reef Beach, Stuart, Martin County",Swimming,Patrick McInerney,M,12,Minor injury,False,a small reef shark,WPTV.com,2012.06.22.a-McInerney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.22.a-McInerney.pdf,2012.06.22.a,2012.06.22.a +776,20-Jun-2012,Unprovoked,AUSTRALIA,Western Australia,"Mullaloo Beach, Perth",Surf skiing ,Martin Kane,M,62,"No injury, ski severely damaged",False,3 m shark,"Perth Now, 6/20/2012",2012.06.20-Kane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.20-Kane.pdf,2012.06.20,2012.06.20 +777,19-Jun-2012,Invalid,USA,South Carolina,"Myrtle Beach, Horry County",Standing,Matthew Breen,M,16,"Laceration to foot. Injured by a stingray, not a shark",False,No shark involvement,C. Creswell,2012.06.19-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.19-MyrtleBeach.pdf,2012.06.19,2012.06.19 +778,18-Jun-2012,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Wading,Brooklyn Daniel,F,6,Numerous puncture wounds to leg ,False,No shark involvement,C. Creswell,2012.06.18-Daniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.18-Daniel.pdf,2012.06.18,2012.06.18 +779,15-Jun-2012,Provoked,USA,Florida,"Summerland Key, Monroe County",Fishing,male,M,23,Superficial injury to calf by hooked shark PROVOKED ACCIDENT,False,Nurse shark,WSVN-TV,2012.06.15-SummerlandKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.15-SummerlandKey.pdf,2012.06.15,2012.06.15 +780,14-Jun-2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,female,F,18,Foot & hand bitten,False,small blacktip shark?,C. Creswell,2012.06.14.d-female-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.d-female-MyrtleBeach.pdf,2012.06.14.d,2012.06.14.d +781,14-Jun-2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,18,Minor injury,False,Shark involvement not confirmed,C. Creswell,2012.06.14.c-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.c-MyrtleBeach.pdf,2012.06.14.c,2012.06.14.c +782,14-Jun-2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,male,M,18,Calf bitten,False,small blacktip shark?,C. Creswell,2012.06.14.b-male-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.b-male-MyrtleBeach.pdf,2012.06.14.b,2012.06.14.b +783,14-Jun-2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,Jordon Garosalo,M,16,Laceration to right foot,False,Blacktip shark ,C. Creswell,2012.06.14.a-Garosalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.14.a-Garosalo.pdf,2012.06.14.a,2012.06.14.a +784,12-Jun-2012,Unprovoked,AUSTRALIA,Victoria,Port Campbell,Surfing,Mike Higgins,M,42,Laceration to right foot,False,1.5 m shark,"Herald Sun, 6/13/2012",2012.06.12-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.12-Higgins.pdf,2012.06.12,2012.06.12 +785,10-Jun-2012,Provoked,ITALY,Sardinia,Muravera,Attempting to rescue an injured & beached shark,Giorgio Zara,M,57,Lower left leg injured PROVOKED ACCIDENT,2017,"Blue shark, 2.5m","D. Puddo, 6/11/2012",2012.06.10-Zara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.10-Zara.pdf,2012.06.10,2012.06.10 +786,03-Jun-2012,Unprovoked,AUSTRALIA,New South Wales,"Redhead Beach, Newcastle",Surf skiing ,Mark Ayre,M,30,"No injury, ski bitten",False,"White shark, 2 m","Newcastle Herald, 6/6/2012",2012.06.03-Ayre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.03-Ayre.pdf,2012.06.03,2012.06.03 +787,02-Jun-2012,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Surfing,Angelina DelRosso,F,12,Laceration to thigh,False,"White shark, 2 m","J. Horton, West Volusia Bulletin, 6/6/2012",2012.06.02.b-DelRosso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.b-DelRosso.pdf,2012.06.02.b,2012.06.02.b +788,02-Jun-2012,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Boogie Boarding,Ryan Orellana-Maczynski ,M,25,Severe laceration to foot,False,"White shark, 2 m",C. Creswell,2012.06.02.a-Maczynski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.06.02.a-Maczynski.pdf,2012.06.02.a,2012.06.02.a +789,31-May-2012,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Wading,Megan Konkler,F,33,Foot bitten,False,"18"" to 24"" shark",C. Creswell,2012.05.31-Konkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.31-Konkler.pdf,2012.05.31,2012.05.31 +790,29-May-2012,Unprovoked,MEXICO,Guerrero," Boca de la Leña, La Unión",Free diving / spearfishing,Benigno Medina Navarrete ,M,46,Left hand severed,False,"Bull shark, 3m","El Sol ee Morelia, 5/30/2012",2012.05.29-Navarrette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.29-Navarrette.pdf,2012.05.29,2012.05.29 +791,23-May-2012,Unprovoked,USA,Florida,"Jacksonville, Duval County",Surfing,Chad Refro,M,22,Lacerations to foot,False,4' to 5' shark,"First Coast News, 5/24/2012",2012.05.23-Renfro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.23-Renfro.pdf,2012.05.23,2012.05.23 +792,20-May-2012,Boating,USA,Hawaii,"Iroquiois Point, Oahu",Kayak Fishing,Jerry Gallardo,M,22,"No injury, teethmarks in kayak",False,"Tiger shark, 8' to 9' ","Hawaii Now, 5/25/2012",2012.05.20-Gallardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.20-Gallardo.pdf,2012.05.20,2012.05.20 +793,16-May-2012,Unprovoked,FIJI,Matacucu Reef ,Matacucu Reef ,Spearfishing,Tevita Naborisi ,M,20,Lacerations to head,False,"Tiger shark, 8' to 9' ","Fiji Times, 5/17/2012",2012.05.16-Naborisi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.16-Naborisi.pdf,2012.05.16,2012.05.16 +794,12-May-2012,Boating,USA,California,"Leffingwell Landing, Cambria, San Luis Obispo County",Kayaking / Fishing,Joey Nocchi,M,30,"No injury, kayaker fell in the water when kayak bitten by a shark",False,White shark,R. Collier,2012.05.12-Nocchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.12-Nocchi.pdf,2012.05.12,2012.05.12 +795,09-May-2012,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,Karin Ulrike Stei,F,47,Upper left thigh bitten,False,White shark,News Channel 5,2012.05.09-Stei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.09-Stei.pdf,2012.05.09,2012.05.09 +796,06-May-2012,Unprovoked,USA,California,Off Catalina Island,Paddle boarding,Rose McKereghan,F,15,"No injury, shark bit paddleboard",False,White shark,"R. Collier, A. Brenneka",2012.05.06-McKereghan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.05.06-McKereghan.pdf,2012.05.06,2012.05.06 +797,19-Apr-2012,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Justin Ellingham,M,28,Lacerations to hand,False,5' shark,"MyFoxOrlando, 4/19/2012",2012.04.19.b-Ellingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.b-Ellingham.pdf,2012.04.19.b,2012.04.19.b +798,19-Apr-2012,Unprovoked,SOUTH AFRICA,Western Cape Province,Caves near Kogel Bay,Body boarding,David Lilienfeld ,M,20,fatal,True,"White shark, 4 m to 5m ","News 24, 4/19/2012",2012.04.19.a-Lilienfeld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.19.a-Lilienfeld.pdf,2012.04.19.a,2012.04.19.a +799,11-Apr-2012,Boating,AUSTRALIA,South Australia,"Dolphin Bay, Innes National Park",Kayaking,Michael Demasi,M,27,Minor wound to his thigh when shark bit kayak,False,"White shark, 6m ","Adelaide Now, 4/12/2012",2012.04.11-Demasi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.11-Demasi.pdf,2012.04.11,2012.04.11 +800,03-Apr-2012,Unprovoked,USA,Hawaii,"Leftovers near Chun's Reef, Oahu",Surfing,Joshua Holley,M,28,Lacerations to left foot,False,"Tiger shark, 10' ","Hawaii News Now, 4/3/2012",2012.04.03-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.03-Holley.pdf,2012.04.03,2012.04.03 +801,Apr-2013,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Surfing,Dylan Hapworth,M,28,Right shin bitten,False,a small shark,"Morning Sentinel, 4/20/2012",2012.04.00-Hapworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.04.00-Hapworth.pdf,2012.04.00,2012.04.00 +802,31-Mar-2012,Unprovoked,AUSTRALIA,Western Australia,Stratham Beach,Scuba diving,Peter Kurmann,M,33,fatal,True,"White shark, 4m ","Associated Press, 3/31/2012",2012.03.31-Kurmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.31-Kurmann.pdf,2012.03.31,2012.03.31 +803,24-Mar-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joey Coppola,M,21,Minor lacerations to foot,False,"White shark, 4m ","H. Frederick, NSB News, 3/24/2012",2012.03.24-Coppola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.24-Coppola.pdf,2012.03.24,2012.03.24 +804,22-Mar-2012,Boating,AUSTRALIA,Western Australia,Kalbarri,Crayfishing,crayfish boat. Occupants: Dave & Mitchell Duperouzel: ,,21,"No injury to occupants. Shark bit propelle, rope & crayfish float",False,White shark,"Sydney Morning Herald, 3/22/2012",2012.03.22-Kalbarri-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.22-Kalbarri-fishermen.pdf,2012.03.22,2012.03.22 +805,20-Mar-2012,Unprovoked,AUSTRALIA,Queensland,Nobby's Beach,Surfing,Billy O'Leary,M,20,Lacerations to left calf,False,Possibly a bull shark,"Courier Mail, 3/20/2012",2012.03.20-OLeary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.20-OLeary.pdf,2012.03.20,2012.03.20 +806,15-Mar-2012,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Surfing,Frank Wacha,M,61,Left forearm bitten,False,Possibly a 5' to 6' bull shark,"WPBF.com, 3/16/2012",2012.03.15-Wacha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.15-Wacha.pdf,2012.03.15,2012.03.15 +807,14-Mar-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Sydney Levy,F,15,Bitten on ankle,False,4' to 5' shark,"C. Graham, Daytona Beach News-Journal, 3/14/2012",2012.03.14.b-Levy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.b-Levy.pdf,2012.03.14.b,2012.03.14.b +808,14-Mar-2012,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nick Romano,M,17,Bitten on calf,False,4' to 5' shark,"C. Graham, Daytona Beach News-Journal, 3/14/2012",2012.03.14.a-Romano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.14.a-Romano.pdf,2012.03.14.a,2012.03.14.a +809,06-Mar-2012,Unprovoked,NEW ZEALAND,North Island,"Opunake, Taranake",Surfing,Peter Garrett,M,17,Lacerations to left calf,False,4' to 5' shark,"NZ Herald, 3/7/2012",2012.03.06.b-Garrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.b-Garrett.pdf,2012.03.06.b,2012.03.06.b +810,06-Mar-2012,Provoked,AUSTRALIA,Victoria,"Shipwreck Cove, Melbourne Aquarium","Diving, feeding sharks",female,F,34,Superficial lacerations to right side of face PROVOKED ACCIDENT,False,"Tawny nurse shark, 40cm","The Age, 3/6/2012",2012.03.06.a-MelbourneAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.06.a-MelbourneAquarium.pdf,2012.03.06.a,2012.03.06.a +811,05-Mar-2012,Unprovoked,REUNION,Saint-Benoit,Port de la Marine,Body boarding,Gerard Itema,M,31,"No injury, board bitten",False,"Tawny nurse shark, 40cm","Clicanoo, 3/5/2012",2012.03.05-Itema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.05-Itema.pdf,2012.03.05,2012.03.05 +812,04-Mar-2012,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Kite Surfing,Justin Worral,M,19,Lacerations to left calf,False,4' shark,Brevard Times,2012.03.04-Worrall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.04-Worrall.pdf,2012.03.04,2012.03.04 +813,03-Mar-2012,Invalid,SAUDI ARABIA,Tabuk Province,Off Duba,Attempting to Kite surf from Egypt to Saudi Arabia,Jan Lisewski,M,42,Harassed by sharks but not injured by them,False,4' shark,"Polskie Radio, 3/5/2012",2012.03.03-Lisewski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.03-Lisewski.pdf,2012.03.03,2012.03.03 +814,01-Mar-2012,Provoked,CHILE,Antofagasta Province,Antofagasta,Fishing (illegally),Paye León Salomón,M,42,Hand injured PROVOKED INCIDENT,False,4' shark,"Soychile.cl, 3/1/2012",2012.03.01-Salomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.03.01-Salomon.pdf,2012.03.01,2012.03.01 +815,26-Feb-2012,Provoked,USA,Florida,"Palm Beach Inlet, Palm Beach County",Kite Surfing,Jason Lasser,M,42,Laceration to right foot when he struck a shark PROVOKED INCIDENT,False,Spinner shark,"Aspen Daily News, 2/29/2012",2012.02.26-Lasser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.26-Lasser.pdf,2012.02.26,2012.02.26 +816,25-Feb-2012,Unprovoked,AUSTRALIA,New South Wales,Broughton Island,Fishing,male,M,42,Laceration to left foot,False,Grey nurse shark,"B. Smee, Newcastle Herald, 2/27/2012",2012.02.25-BroughtonIslandFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.25-BroughtonIslandFisherman.pdf,2012.02.25,2012.02.25 +817,20-Feb-2012,Boat,SOUTH AFRICA,Western Cape Province,Strandfontein,Fishing,8m inflatable boat. Occupants: Bhad Battle & Kevin Overmeyer,,42,"No injury to occupants, boat damaged",False,"White shark, 7m","Cape Argus, 2/21/2012",2012.02.20-StrandfonteinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.20-StrandfonteinBoat.pdf,2012.02.20,2012.02.20 +818,06-Feb-2012,Unprovoked,AUSTRALIA,Queensland,Wurtulla,Surfing,Nick Ferguson,M,29,"No injury, but fin lost from surfboard",False,"White shark, 7m","Sunshine Coast Daily, 2/7/2012",2012.02.06-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.02.06-Ferguson.pdf,2012.02.06,2012.02.06 +819,27-Jan-2012,Unprovoked,USA,Hawaii,Lanai,Snorkeling,J. Graden,,29,"No injury, shark bit swim fin",False,6' to 8' shark,HawaiiNow.com,2012.01.27-NV-Graden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.27-NV-Graden.pdf,2012.01.27,2012.01.27 +820,19-Jan-2012,Unprovoked,AUSTRALIA,Western Australia,Coral Bay,Snorkeling,David Pickering,M,26,Lacerations to right forearm,False,"Tiger shark, 3m","Sydney Morning Herald, 1/20/2012",2012.01.19-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.19-Pickering.pdf,2012.01.19,2012.01.19 +821,Reported 22-Jan-2012,Unprovoked,BAHAMAS,Cat Island,Cat Island,"Diving, photographing sharks",Russell Easton,M,26,"No injury, shark grabbed his camera",False,Tiger shark,"Evening Chronicle, 1/23/2012",2012.01.22.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.22.R-Bahamas.pdf,2012.01.22.R,2012.01.22.R +822,18-Jan-2012,Provoked,TAIWAN,Taitung ,Taimali,Fishing,male,M,24,Bitten on left thigh PROVOKED ACCIDENT,False,"Blue shark, 70-kg blue shark",Taiwan television,2012.01.18.b-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.b-Taiwan.pdf,2012.01.18.b,2012.01.18.b +823,18-Jan-2012,Unprovoked,AUSTRALIA,New South Wales,Redhead Beach,Surfing,Glen Folkard,M,44,Lacerations to thigh,False,"White shark, 2.7 m",V. Peddemors,2012.01.18.a-Folkard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.18.a-Folkard.pdf,2012.01.18.a,2012.01.18.a +824,15-Jan-2012,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Lungisani Msungubana,M,25,fatal,True,Thought to involve a bull shark,"News 24, 1/15/2012; R. Bonorchis, Bloomberg News, 1/16/2012",2012.01.15-Msungubana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.15-Msungubana.pdf,2012.01.15,2012.01.15 +825,13-Jan-2012,Unprovoked,USA,Oregon,"Lincoln City, Lincoln County",Surfing,Steve Harnack,M,53,"No injury, surfboard damaged",False,White shark,R. Collier,2012.01.13-Harnack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.13-Harnack.pdf,2012.01.13,2012.01.13 +826,03-Jan-2012,Unprovoked,AUSTRALIA,New South Wales,North Avoca Beach,Surfing,Mike Wells,M,28,Right forearm and wrist injured,False,2 m shark,"Daily Telegraph, 1/3/2012",2012.01.03-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.03-Wells.pdf,2012.01.03,2012.01.03 +827,02-Jan-2012,Unprovoked,AUSTRALIA,Queensland,Duranbah,Spearfishing,Hugo Silva,M,34,"No injury, punctures to swim fin",False,Allegedly a 4 m tiger shark,"A. Brenneka, goldcoast.com.au, 1/3/2012",2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2012.01.02-Hugo-Ricardo-Mendes-da-Silva.pdf,2012.01.02,2012.01.02 +828,31-Dec-2011,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Spearfishing,male,M,34,Hand injured,False,Allegedly a 4 m tiger shark,"Palm Beach Post, 12/31/2011",2011.12.31-Jupiter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.31-Jupiter.pdf,2011.12.31,2011.12.31 +829,Reported 26-Dec-2011,Invalid,ANTIGUA,St John's,Fort James Beach,Swimming,"Veron Edwards, Sr. ",M,34,Bitten on right hand & wrist,False,Shark involvement not confirmed,"D. Francis, Caribarena, 12/26/2011",2011.12.26.R-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.26.R-Edwards.pdf,2011.12.26.R,2011.12.26.R +830,25-Dec-2011,Unprovoked,ECUADOR,Santa Elena,Barandúa Beach,Surfing,Félix Júnior Lainez Trejos,M,23,Lacerations to left thigh and calf,False,Shark involvement not confirmed,"A. Brenneka, SharkAttackSurvivors.com",2011.12.25-Trejos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.25-Trejos.pdf,2011.12.25,2011.12.25 +831,23-Dec-2011,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Will Futato,M,27,Laceration to ankle,False,Shark involvement not confirmed,"Daytona Beach News-Journal, 12/24/2011",2011.12.23-Futato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.23-Futato.pdf,2011.12.23,2011.12.23 +832,21-Dec-2011,Provoked,USA,Hawaii,"Makahuena Point, Kauai",Canoeing,Keone Miyake,M,27,"No injury, after kayak collided with the shark, it bit the rudder PROVOKED INCIDENT",False,7' to 8' shark ,"A. Brenneka, SharkAttackSurvivors.com",2011.12.21.b-Miyake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.b-Miyake.pdf,2011.12.21.b,2011.12.21.b +833,21-Dec-2011,Boating,SOUTH AFRICA,Eastern Cape Province,"Noordhoek, Port Elizabeth",Kayak Fishing,Werner Coetzee,M,35,No injury but kayak dented,False,7' to 8' shark ,"Port Elizabeth Herald, 12/22/2011",2011.12.21.a-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.21.a-Coetzee.pdf,2011.12.21.a,2011.12.21.a +834,11-Dec-2011,Unprovoked,AUSTRALIA,New South Wales,Angourie,Surfing,Steve King,M,51,5 puncture wounds to thigh,False,"White shark, 2.5m","Daily Examiner, 12/11/2011",2011.12.11-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.11-King.pdf,2011.12.11,2011.12.11 +835,07-Dec-2011,Invalid,SOUTH AFRICA,KwaZulu-Natal,Between Sodwana & Cape Vidal,Surf skiing ,Richard Kohler,M,51,"No injury, ski damaged",False,Shark involvement not confirmed,"Durban Daily News, 12/8/2011",2011.12.07.b-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.b-Kohler.pdf,2011.12.07.b,2011.12.07.b +836,07-Dec-2011,Unprovoked,AUSTRALIA,New South Wales,Maroubra,Surfing,Ronald Mason,M,14,Minor injuries to left leg ,False,Wobbegong shark,"The Australian, 12/12/2011",2011.12.07.a-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.07.a-Mason.pdf,2011.12.07.a,2011.12.07.a +837,06-Dec-2011,Unprovoked,USA,Oregon,Seaside Cove,Surfing,female,F,14,Minor injury to calf ,False,Wobbegong shark,"Seaside Signal, 12/6/2011",2011.12.06-Seaside-Oregon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.06-Seaside-Oregon.pdf,2011.12.06,2011.12.06 +838,05-Dec-2011,Invalid,AUSTRALIA,Queensland,Bushy Ilet,Spearfishing,Dave Fordson,,14,Killed by a shark or crocodile.,False,Shark involvement not confirmed,"H. Beck, Cairns.com, 12/7/2011",2011.12.05-Forsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.05-Forsden.pdf,2011.12.05,2011.12.05 +839,02-Dec-2011,Unprovoked,AUSTRALIA,New South Wales,Broken Head,Surfing,Milton Carter,M,63,Torn shoulder ligament as result of collision with shark,False,Shark involvement not confirmed,"Northern Star, 12/3/2011",2011.12.02-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.12.02-Carter.pdf,2011.12.02,2011.12.02 +840,29-Nov-2011,Unprovoked,INDONESIA,Bali,Tabanan,Surfing,Marc Andrews,M,18,Lacerations to right hand,False,Shark involvement not confirmed,"Daily Telegraph, 11/30/2011",2011.11.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.29-Andrews.pdf,2011.11.29,2011.11.29 +841,28-Nov-2011,Unprovoked,AUSTRALIA,Queensland,Peregian,Swimming,Eamon Kriz,M,10,Puncture marks to foot,False,Wobbegong shark?,"Sunshire Coast Daily, 12/1/2011 ",2011.11.28-Kriz-not-on-spreadsheet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.28-Kriz-not-on-spreadsheet.pdf,2011.11.28,2011.11.28 +842,22-Nov-2011,Boating,USA,California,Pigeon Point,Kayaking,Harry Pali,M,10,"No injury, kayak bitten",False,"White shark, 15' to 16'",R. Collier,2011.11.22-Harry-Pali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.22-Harry-Pali.pdf,2011.11.22,2011.11.22 +843,Reported 20-Nov-2011,Unprovoked,PAPUA NEW GUINEA,East New Britain,Pigeon Island,Scuba diving,male,M,10,"No injury, shark collided with diver",False,"White shark, 15' to 16'","you Tube, Shark Attack at 57 metres",2011.11.20.R-PigeonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.20.R-PigeonIsland.pdf,2011.11.20.R,2011.11.20.R +844,12-Nov-2011,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre Beach, Olinda",Surfing,Jerônimo Pereira da Paz ,M,35,Legs bitten,False,"White shark, 15' to 16'","H. Nickel & A. Brenneka, SharkAttackSurvivors.com",2011.11.12-Periera-Pernambuco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.12-Periera-Pernambuco.pdf,2011.11.12,2011.11.12 +845,11-Nov-2011,Unprovoked,REUNION,Bois-Blanc ,Sainte-Rose,Free diving / spearfishing,Jean-Paul Delaunay,M,42,Left foot bitten,False,"White shark, 15' to 16'","H. Nickel & A. Brenneka, SharkAttackSurvivors.com",2011.11.11-Delaunay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.11.11-Delaunay.pdf,2011.11.11,2011.11.11 +846, 29-Oct-2011,Unprovoked,USA,California,"Marina State Beach, Monterey County",Surfing,Eric Tarantino,M,27,"Lacerations to right wrist, foream & neck",False,White shark,R. Collier,2011.10.29-Tarantino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.29-Tarantino.pdf,2011.10.29.,2011.10.29. +847,Reported 28-Oct-2011,Unprovoked,SCOTLAND,Moray,Spey Bay,Surfing,Andrew Rollo,M,26,"No injury, shark bumped leg & board. ",False,8' to 10' shark,"Daily Record, 10/28/2011",2011.10.28.R-Rollo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28.R-Rollo.pdf,2011.10.28.R,2011.10.28.R +848, 29-Oct-2011,Provoked,SOUTH AFRICA,KwaZulu-Natal,"uShaka Aquarium, Durban",Diving,"Durban Radio, 10/29/2011",,26,Arm bitten by captive shark PROVOKED INCIDENT,False,Raggedtooth shark,"Durban Radio, 10/29/2011",2011.10.28-uShaka-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.28-uShaka-Aquarium.pdf,2011.10.28.,2011.10.28. +849,22-Oct-2011,Unprovoked,AUSTRALIA,Western Australia,Rottnest Island,Diving,George Wainwright,M,32,fatal,True,"White shark, 10'","Sky News, 10/22/2011",2011.10.22-Wainwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.22-Wainwright.pdf,2011.10.22,2011.10.22 +850,20-Oct-2011,Unprovoked,USA,Oregon,"Newport, Lincoln County",Surfing,Bobby Gumm,M,41,"No injury, shark bit surfboard",False,"White shark, 15'",R. Collier,2011.10.20-Gumm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.20-Gumm.pdf,2011.10.20,2011.10.20 +851,19-Oct-2011,Unprovoked,AUSTRALIA,Victoria,Elwood Beach,Diving,Andrew Houston ,M,50,Small bruise to calf,False,"Port Jackson shark, 1m","The Age, 10/20/2011",2011.10.19-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.19-Houston.pdf,2011.10.19,2011.10.19 +852,11-Oct-2011,Unprovoked,USA,Florida,Cape Canaveral,Surfing,Tim Riley,M,50,Foot bitten,False,3' shark,T. Riley,2011.10.11-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.11-Riley.pdf,2011.10.11,2011.10.11 +853,10-Oct-2011,Unprovoked,USA,Oregon,Seaside,Surfing,Doug Niblack,M,50,No injury,False,10' to 12' shark,"R.Collier; KATU News, 10/11/2011",2011.10.10-Niblack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.10-Niblack.pdf,2011.10.10,2011.10.10 +854,09-Oct-2011,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Swimming,Bryn Martin,M,64,fatal,True,10' to 12' shark,"Perth Now, 10/11/2011",2011.10.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.09-Martin.pdf,2011.10.09,2011.10.09 +855,05-Oct-2011,Boating,REUNION,Cap La Houssaye,Cap La Houssaye,Canoeing,Jean-Pierre Castellani ,M,51,No injury to occupant,False,2 to 2.5 m shark,"Clicanoo, 10/5/2011",2011.10.05-Castellani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.05-Castellani.pdf,2011.10.05,2011.10.05 +856,02-Oct-2011,Unprovoked,USA,Florida,"Santa Maria Island, Manatee County",Wade fishing,Javier Perez,M,51,Minor injury to thigh,False,2 to 2.5 m shark,"Herald Tribune, 10/2/2011",2011.10.02-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.02-Perez.pdf,2011.10.02,2011.10.02 +857,01-Oct-2011,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Wade fishing,Victor Meade,M,29,Lacerations to right wrist and middle finger,False,2 to 2.5 m shark,WKRG,2011.10.01-Meade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.10.01-Meade.pdf,2011.10.01,2011.10.01 +858,30-Sep-2011,Invalid,USA,Puerto Rico,Hatillo Beach,Surfing,Rafael Colón Casanova,M,27,Lacerations to lower right leg ,False,No shark involvement,"El Nuevodia, 9/30/2011",2011.09.30-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.30-Casanova.pdf,2011.09.30,2011.09.30 +859,28-Sep-2011,Provoked,DOMINICAN REPUBLIC,Samaná Province,Playa Jackson ,Fishing,Leocadio Reyes Sarante,M,48,Severe injuries to left arm PROVOKED INCIDENT,False,No shark involvement,"Hoy Digital, 9/28/2011",2011.09.28.b-Sarante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.b-Sarante.pdf,2011.09.28.b,2011.09.28.b +860,28-Sep-2011,Unprovoked,SOUTH AFRICA,Western Cape Province,Clovely Beach,Swimming,Michael Cohen,M,43,"Right leg severed, left leg lacerated",False,White shark,"News 24, 9/29/2011",2011.09.28.a-Cohen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.28.a-Cohen.pdf,2011.09.28.a,2011.09.28.a +861,24-Sep-2011,Unprovoked,USA,Florida,"Santa Maria Island, Manatee County",Spearfishing,C.J. Wickersham,M,21,Laceration to left thigh,False,"Bull shark, 6'","Herald Tribune, 9/24/2011",2011.09.24.b-Wickersham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.b-Wickersham.pdf,2011.09.24.b,2011.09.24.b +862,24-Sep-2011,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Jumping in the waves,"Isaac O'Hara, ",M,5,Laceration to left thigh,False,"Bull shark, 6'","Sun News, 9/26/2011",2011.09.24.a-O'Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.24.a-O'Hara.pdf,2011.09.24.a,2011.09.24.a +863,20-Sep-2011,Boat,USA,Hawaii,Kauai,Canoeing,Tom Bartlett,M,5,"No injury, canoe bitten by shark",False,"Bull shark, 6'","R. Mizutani, KHON2, 9/23/2011",2011.09.20-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.20-Bartlett.pdf,2011.09.20,2011.09.20 +864,19-Sep-2011,Unprovoked,REUNION,Saint-Gilles,Boucan-Canot,Body boarding,Mathieu Schiller ,M,38,fatal,True,"Bull shark, 6'",zinfos974,2011.09.19-Schiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.19-Schiller.pdf,2011.09.19,2011.09.19 +865,17-Sep-2011,Unprovoked,KENYA,Coast Province,"Mama Ngina Beach, Mombasa ",Swimming,"Mombasa411, 9/20/2011",M,17,fatal,True,"Bull shark, 6'","Mombasa411, 9/20/2011",2011.09.17-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.17-Kenya.pdf,2011.09.17,2011.09.17 +866,16-Sep-2011,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Daniel Jorgensen,M,25,Lacerations to arm,False,4' to 6' shark,"Daytona Beach News-Journal, 9/16/2011",2011.09.16-Jorgensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.16-Jorgensen.pdf,2011.09.16,2011.09.16 +867,11-Sep-2011,Unprovoked,USA,California,"Samoa Beach, Humboldt County",Surfing,Benjie Rose,M,37,"No injury, board bitten",False,4' to 6' shark,R. Collier,2011.09.11.b-Benji-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.b-Benji-Rose.pdf,2011.09.11.b,2011.09.11.b +868,11-Sep-2011,Unprovoked,PAPUA NEW GUINEA,Central Province,"Hula, near Port Moresby",Kite Surfing,Thomas Viot,M,30,Lacerations to right leg,False,"Tiger shark, 2m","Sydney Morning Herald, 9/12/2011",2011.09.11.a-Viot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.11.a-Viot.pdf,2011.09.11.a,2011.09.11.a +869,04-Sep-2011,Unprovoked,USA,Hawaii,"Nimitz State Beach, Oahu",Surfing,M. Filipe,,30,"No injury, shark bit surfboard",False,"Tiger shark, 2m","KITV.com, 9/4/2011",2011.09.04.b-Felipe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.b-Felipe.pdf,2011.09.04.b,2011.09.04.b +870,04-Sep-2011,Unprovoked,AUSTRALIA,Western Australia, Bunker Bay,Body boarding,Kyle James Burden,M,21,fatal,True,White shark,"Sunshine Coast Daily, 9/5/2011",2011.09.04.a-Burden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.04.a-Burden.pdf,2011.09.04.a,2011.09.04.a +871,02-Sep-2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Daniel True,M,19,Lacerations to ankle & foot,False,"6' shark, possibly a blactip or spinner shark","WESH.com, 9/2/2011",2011.09.02-True.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.09.02-True.pdf,2011.09.02,2011.09.02 +872,31-Aug-2011,Unprovoked,USA,Florida,Crescent Beach St. Johns County,Surfing,Shane Lancaster,M,19,Lacerations to lower leg,False,6' shark,"News4JAX, 9/1/2011",2011.08.31-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.31-Lancaster.pdf,2011.08.31,2011.08.31 +873,28-Aug-2011,Invalid,AUSTRALIA,Queensland,Fantome Island,Swimming,Rooster,M,48,fatal,True,Shark involvement prior to death not confirmed,"Courier Pigeon, 8/30/2011",2011.08.28-Roosteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28-Roosteer.pdf,2011.08.28.b,2011.08.28.b +874,28-Aug-2011,Unprovoked,USA,Texas,"Grass Island, Aransas County",Wade Fishing,Mary Locklear,F,39,"Lacerations to anterior left shin, abrasion to posteior right leg",False,Shark involvement prior to death not confirmed,M. Locklear,2011.08.28.a-Locklear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.28.a-Locklear.pdf,2011.08.28.a,2011.08.28.a +875,26-Aug-2011,Unprovoked,RUSSIA,Primorsky Krai,Slavyanka,"Standing, collecting sea stars",Pavel Nechaev ,M,39,Superficial laceration to shoulder,False,Shark involvement prior to death not confirmed,"Voice of Russia, 8/27/2011",2011.08.26-Nechaev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.26-Nechaev.pdf,2011.08.26,2011.08.26 +876,24-Aug-2011 ,Unprovoked,USA,North Carolina,"Buxton Beach, Dare County",Surfing,Kevin Dinneen,M,21,Lacerations to foot,False,Shark involvement prior to death not confirmed,Shark Times,2011.08.24.b-Dinneen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.b-Dinneen.pdf,2011.08.24.b,2011.08.24.b +877,24-Aug-2011 ,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Surfing,male,M,10,Heel bitten,False,Shark involvement prior to death not confirmed,"WECT.com, 8/24/2011",2011.08.24.a-Holden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.24.a-Holden.pdf,2011.08.24.a,2011.08.24.a +878,23-Aug-2011,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lookout Beach, near the Keurbooms river mouth in Plettenberg Bay",Surfing,Tim van Heerden,M,49,fatal,True,"White shark, >6'","News24, 8/23/2011",2011.08.23-VanHeerden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.23-VanHeerden.pdf,2011.08.23,2011.08.23 +879,18-Aug-2011,Unprovoked,RUSSIA,"Peter the Great Bay, Khasan, Primorsky Krai (Far East)",Zheltukhin Island,Swimming,Valery Sidorovich ,M,16,"Lacerations to hip, thigh and knee",False,"White shark, >6'","Ria Novosti, 8/18/2011",2011.08.18-Siderovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.18-Siderovich.pdf,2011.08.18,2011.08.18 +880,17-Aug-2011,Unprovoked,USA,North Carolina,"Kure Beach, New Hanover County",Wading,Trang Aronian,F,20s,Lacerations to foot,False,Possibly a 5' to 6' sandtiger shark,C. Creswell,2011.08.17.c-Aronian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.c-Aronian.pdf,2011.08.17.c.,2011.08.17.c. +881,17-Aug-2011,Invalid,USA,North Carolina,"Wrightsville Beach, New Hanover County",Wading,"C. Creswell, GSAF; Wway, 8/17/2011",M,12,Abrasions to left hand,False,Shark involvement not confirmed,"C. Creswell, GSAF; Wway, 8/17/2011",2011.08.17.b-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.b-child.pdf,2011.08.17.b.,2011.08.17.b. +882,17-Aug-2011,Unprovoked,RUSSIA,"Telyakovsky Bay, Khasan, Primorsky Krai (Far East)",Vityaz,Swimming,Denis Udovenko,M,25,Hands severed,False,4 m shark,"AsiaOne, 8/17/2011",2011.08.17.a-Udovenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.17.a-Udovenko.pdf,2011.08.17.a,2011.08.17.a +883,16-Aug-2011,Unprovoked,FRENCH POLYNESIA,Society Islands,"Teahupoo, Tahiti",Surfing,Adam 'Biff' D'Esposito,M,32,"No injury, board bitten",False,Grey reef shark ,Sharksurvivors.com,2011.08.16.c-D'Esposito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.c-D'Esposito.pdf,2011.08.16.c,2011.08.16.c +884,16-Aug--2011,Unprovoked,USA,Puerto Rico, Vieques,Floating ,Lydia Strunk,M,27,Lacerations to lower right leg and foot,False,Grey reef shark ,"El Nuevodia, 7/17/2011",2011.08.16.b-Strunk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.b-Strunk.pdf,2011.08.16.b,2011.08.16.b +885,16-Aug-2011,Unprovoked,SEYCHELLES,Praslin,Anse Lazio ,Swimming or Snorkeling,Ian Martin Redmond,M,30,fatal,True,"Bull shark, 6'","P. Cahalan, The Independent, 8/17/2011",2011.08.16.a-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.16.a-Redmond.pdf,2011.08.16.a,2011.08.16.a +886,15-Aug-2011,Invalid,USA,South Carolina,"Myrtle Beach, Horry County",Playing in the surf,Rudy Varney ,M,7,Puncture wounds to foot,False,Shark involvement not confirmed,"C. Creswell; Carolina Live, 8/15/2011",2011.08.15-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.15-Varney.pdf,2011.08.15,2011.08.15 +887,11-Aug--2011,Unprovoked,USA,North Carolina,Beaufort Inlet,Swimming,Don White,M,54,Lower right leg bitten,False,Shark involvement not confirmed,"Eyewitness News 9, 8/12/011",2011.08.11-DonnieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.11-DonnieWhite.pdf,2011.08.11,2011.08.11 +888,01-Aug-2011,Unprovoked,SEYCHELLES,Praslin,Anse Lazio ,Diving,Nicolas Virolle ,M,36,fatal,True,Shark involvement not confirmed,"Gulf News, 8/2/2011; Clicanoo, 8/4/2011",2011.08.01-Virolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.08.01-Virolle.pdf,2011.08.01,2011.08.01 +889,31-Jul-2011,Invalid,BRAZIL,Pernambuco,Praia do Pina,Swimming,Gabriel Alves dos Santos ,M,14,Cause of death may have been drowning; remains scavenged by sharks,False,Shark involvement prior to death not confirmed,surfguru.com.br ,2011.07.31-GabrielAlves-dos-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.31-GabrielAlves-dos-Santos.pdf,2011.07.31,2011.07.31 +890,30-Jul-2011,Sea Disaster,PHILIPPINES,unknown,unknown,Sea disaster,"Fishing vessel. Occupants Gerry Malabago, Mark Anthony Malabago & 2 others",M,43,The two Malabagos were bitten by sharks but survived. The other occupants of the boat were rescued.,False,Shark involvement prior to death not confirmed,"ABS-CBN News, 8/17/2011",2011.07.30-Malabago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.30-Malabago.pdf,2011.07.30,2011.07.30 +891,25-Jul-2011,Unprovoked,USA,New Jersey,"Egg Harbor, Atlantic County",Wade Fishing,Eric Aubrey,M,43,"No injury, shark bit boot",False,Shark involvement prior to death not confirmed,"NBC, 7/28/2011",2011.07.25-Aubrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.25-Aubrey.pdf,2011.07.25,2011.07.25 +892,22-Jul-2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Cintza Beach, East London",Surfing,Denver Struwig,M,29,Upper left arm & right leg bitten,False,"White shark, 3m to 4m","Zigzag, 7/22/2011",2011.07.22-Struwig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.22-Struwig.pdf,2011.07.22,2011.07.22 +893,19-Jul-2011,Unprovoked,USA,North Carolina,"Ocracoke Island, Hyde County",Boogie Boarding,Lucy Magnum,F,6,Lower right leg & foot bitten,False,"White shark, 3m to 4m","C. Creswell, GSAF; WITN.com",2011.07.19-Mangum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.19-Mangum.pdf,2011.07.19,2011.07.19 +894,15-Jul-2011,Boating,REUNION,Saint-Gilles,Brisants. ,Kayaking or Wave skiing,male,M,6,No injury,False,"White shark, 3m to 4m","Le Post, 7/19/2011",2011.07.15-Reunion-kayaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.15-Reunion-kayaker.pdf,2011.07.15,2011.07.15 +895,13-Jul-2011,Unprovoked,USA,Texas,"South Padre Island, Cameron County",Surf fishing,Eugenio González Paez,M,6,Lacerations to left foot,False,"White shark, 3m to 4m",E.G. Paez,2011.07.13.b-Paez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13.b-Paez.pdf,2011.07.13.b,2011.07.13.b +896,13-Jul-2011,Unprovoked,BAHAMAS,Grand Bahama Island,Off Lucaya,Scuba diving,male,M,54,Injuries to arm,False,"White shark, 3m to 4m","Royal Bahamas Police Force, 7/13/2011",2011.07.13-diver-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.13-diver-Bahamas.pdf,2011.07.13.a,2011.07.13.a +897,07-Jul-2011,Unprovoked,USA,Texas,"Sunday Beach, Matagorda Island, Calhoun County",Swimming,Nicholas Vossler,M,12,Foot bitten,False,"White shark, 3m to 4m","A. Acosta, Victoria Advocate, 7/9/2011",2011.07.07.b-Vossler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.b-Vossler.pdf,2011.07.07.b,2011.07.07.b +898,07-Jul-2011,Unprovoked,USA,Texas,"Mustang Island, Nueces County",Wade Fishing,Shawn Hamilton,M,14,Lacerations to right foot,False,"White shark, 3m to 4m","J. Martinez, Corpus Christi Caller Times, 7/19/2011",2011.07.07.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.07.a-Hamilton.pdf,2011.07.07.a,2011.07.07.a +899,06-Jul-2011,Unprovoked,REUNION,Saint-Gilles,Roches Noires,Surfing,Arnaud Dussel ,M,16,Minor injuries: scratches on nose & ankle. Board broken in two,False,"White shark, 3m to 4m","V. Boyer, Le Journal de l’île de la Réunion, 7/7/2011",2011.07.06-Arnaud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.06-Arnaud.pdf,2011.07.06,2011.07.06 +900,05-Jul-2011,Unprovoked,COLUMBIA,Sucre,"Libertad, San Onofre",Kayaking,Andrés Tulio Amaya Vidal ,M,17,"Right arm bitten, defense wounds to left hand",False,"White shark, 3m to 4m","El Universal, 7/6/2011",2011.07.05-Vidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.07.05-Vidal.pdf,2011.07.05,2011.07.05 +901,30-Jun-2011,Unprovoked,TURKS & CAICOS,Middle Caicos,Mudjin Harbor,Snorkeling,Tyler Cyronak ,M,28,Lacerations to left shoulder and back,False,"White shark, 3m to 4m","T. Cyronak, R. Collier",2011.06.30-Cryonak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.30-Cryonak.pdf,2011.06.30,2011.06.30 +902,29-Jun-2011,Unprovoked,BRAZIL,Pernambuco,Praia do Pina,Surfing,Malisson Lima ,M,21,Lacerations to right thigh,False,"White shark, 3m to 4m","USA Today, 6/29/2011",2011.06.29-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.29-Brazil.pdf,2011.06.29,2011.06.29 +903,28-Jun-2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Aliwal Shoal,Scuba diving,Paolo Stanchi,M,22,Severe lacerations to hands and left leg,False,"Bull shark, 3m female","Surfline.com, 6/28/2011",2011.06.28-Stanchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.28-Stanchi.pdf,2011.06.28,2011.06.28 +904,26-Jun-2008,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Playing in the surf,Cassidy Cartwright ,F,10,Ankle bitten,False,"Bull shark, 6'",C. Creswell & G. Hubbell,2011.06.26-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.26-Cartwright.pdf,2011.06.26,2011.06.26 +905,24-Jun-2011,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Doug Green,M,10,Shark leapt onto surfboard; surfer uninjured ,False,"White shark, 5' k",R. Collier,2011.06.24-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.24-Green.pdf,2011.06.24,2011.06.24 +906,21-Jun-2011,Unprovoked,USA,Florida,"Perdido Key, Escambia County",Jet skiing,Tyler McConnell,M,20,Lacerations to foot and ankle,False,"White shark, 5' k","B. Raines, Press-Register, 6/21/2011",2011.06.21-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.21-McConnell.pdf,2011.06.21,2011.06.21 +907,19-Jun-2011,Unprovoked,TURKS & CAICOS,Caicos Bank,French Cay,Spearfishing,Cefor Lewis,M,35,Right calf bitten,False,5' shark,"fptci.com, 6/23/2011",2011.06.19.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.b-Lewis.pdf,2011.06.19.b,2011.06.19.b +908,19-Jun-2011,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Kevin Moraga,M,15,fatal,True,5' shark,"D. Martinez, Tico Times, 6/21/2011",2011.06.19.a-Moraga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.19.a-Moraga.pdf,2011.06.19.a,2011.06.19.a +909,15-Jun-2011,Unprovoked,REUNION,Saint-Gilles-les-Bains,Boucan-Canot,Boogie Boarding,Eddie Aubert,M,31,fatal,True,5' shark,"Surfprevention.com, 6/16/2011",2011.06.15-Auber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.15-Auber.pdf,2011.06.15,2011.06.15 +910,Reported 14-Jun-2011,Boating,UNITED KINGDOM,Cornwall,St. Ives,Fishing,16' Dreamcatcher. Occupant: Ian Bussus,,31,"No injury, shark slammed into boat",False,"Oceanic whitetip shark, 7'","G. Box-Turnbull, Daily Mirror, 6/14/2011",2011.06.14.R-St.Ives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.14.R-St.Ives.pdf,2011.06.14.R,2011.06.14.R +911,12-Jun-2011,Unprovoked,USA,Florida,"Off Jupiter Inlet, Palm Beach County",Scuba diving,Daniel Webb,M,28,Lacerations to right calf,False,"Blacktip shark, 4'","WPTV, 6/13/2011",2011.06.12-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.12-Webb.pdf,2011.06.12,2011.06.12 +912,Reported 06-Jun-2011,Unprovoked,COLUMBIA,San Andrés archipelago,Albuquerque Cay,Spearfishing,Jhon Jairo James,M,24,Injuries to right hand and forearm,False,"Blacktip shark, 4'","Il Isleno.com, 6/6/2011",2011.06.06.R-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.R-James.pdf,2011.06.06.R,2011.06.06.R +913,06-Jun-2011,Unprovoked,USA,California,"La Jolla, San Diego County",Spearfishing,Justin Schlaefli,M,28,"No injury, minor damage to wetsuit",False,"Sevengill shark, 6' to 8'",R. Collier,2011.06.06.b-Schlaefli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.b-Schlaefli.pdf,2011.06.06.b,2011.06.06.b +914,06-Jun-2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Alan McIntosh,M,19,Puncture wound to calf,False,3' to 4' shark,"L. Lelis, Orlando Sentinel, 6/7/2011",2011.06.06.a-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.06.a-McIntosh.pdf,2011.06.06.a,2011.06.06.a +915,01-Jun-2011,Unprovoked,MALAYSIA,Kedah,Palau Payar,Snorkeling,Canadian teen,F,19,Laceration to dorsum of right foot,False,Blacktip reef shark ,meglognature.blogspot.com,2011.06.01-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.06.01-Malaysia.pdf,2011.06.01,2011.06.01 +916,30-May-2011,Unprovoked,USA,Texas,"Follett's Island, Brazoria County",Standing or boogie boardin,Kori Robertson,F,22,Lacerations & punctures to right thigh ,False,Blacktip reef shark ,"KHOU.com, 5/31/2011",2011.05.30-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.30-Robertson.pdf,2011.05.30,2011.05.30 +917,29-May-2011,Unprovoked,SOUTH AFRICA,Western Cape Province,Robberg Beach,Surfing,Clinton Nelson,M,33,"No injury, board bumped by shark",False,White shark,"The George Herald, 5/30/2011",2011.05.29-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.29-Nelson.pdf,2011.05.29,2011.05.29 +918,25-May-2011,Unprovoked,USA,Hawaii,"Lyman Beach, Kailua-Kona",Surfing,Theresa Fernandez,F,33,"No injury, board bitten",False,"Tiger shark, 10'","Star Advertiser, 5/26/2011",2011.05.25-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.25-Fernandez.pdf,2011.05.25,2011.05.25 +919,22-May-2011,Unprovoked,USA,Hawaii,"Lyman Beach, Kailua-Kona",Paddle boarding,Alaina DeBina,F,33,"No injury, board bitten",False,Tiger shark,"Hawaii News Now, 5/22/2011",2011.05.22-DeBina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.22-DeBina.pdf,2011.05.22,2011.05.22 +920,21-May-2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Levan Point,Spearfishing,Warren Smart,M,28,fatal,True,Zambesi shark,"News 24, 5/21/2011",2011.05.21.b-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.b-Smart.pdf,2011.05.21.b,2011.05.21.b +921,13-May-2011,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Body surfing,Bob Brown,M,86,Lacerations to left foot & ankle,False,Zambesi shark,"News 4, 5/16/2011",2011.05.13.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.b-Brown.pdf,2011.05.13.b,2011.05.13.b +922,21-May-2011,Unprovoked,NEW CALEDONIA,North Province,Kendec,Kite Boarding,Nathan ____,M,15,fatal,True," Tiger shark, 2.8m","Radio New Zealand & Les Nouvelles Caledoniennes, 5/23/2011",2011.05.21.a-Nathan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.21.a-Nathan.pdf,2011.05.21.a,2011.05.21.a +923,13-May-2011,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Adrian Bronson,M,37,Minor injury; puncture wounds to calf,False," Tiger shark, 2.8m","L. Lelis, Orlando Sentinel, 5/13/2011",2011.05.13.a-Bronson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.13.a-Bronson.pdf,2011.05.13.a,2011.05.13.a +924,10-May-2011,Provoked,USA,Florida,Miami,Fishing ,Brian Storch,M,37,Laceration to arm by captive shark PROVOKED INCIDENT,False,"Sandbar shark, 8'","News 7, 5/11/2011",2011.05.10-Storch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.10-Storch.pdf,2011.05.10,2011.05.10 +925,Reported 07-May-2011,Invalid,UNITED ARAB EMIRATES (UAE),Umm al Qaywayan Province,Khor Fakkan ,Fishing ,Mustafa Al Hammadi,M,43,"Erroneously reported on several internet sites as a ""shark attack"", it was the shark 8', 300-kg mako shark that was attacked, not the fisherman",False,Invalid,"Emirates 24/7 News, 5/7/2011",2011.05.07.R-UAE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.07.R-UAE.pdf,2011.05.07.R,2011.05.07.R +926,04-May-2011,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Palm Beach,Spearfishing,Trevor Burger,M,37,Calf bitten,False,Invalid,"The Witness, 5/10/2011",2011.05.04-Burger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.05.04-Burger.pdf,2011.05.04,2011.05.04 +927,26-Apr-2011,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Spearfishing,Anthony Segrich,M,32,Calf bitten,False,"Bull shark, 12'","J. Wigham III, Palm Beach Post, 4/27/2011",2011.04.26-Seagrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.26-Seagrich.pdf,2011.04.26,2011.04.26 +928,23-Apr-2011,Unprovoked,AUSTRALIA,Western Australia,Red Bluffs,Washing sand off a speared fish,Marcus van der Vyver,M,17,Heel bitten,False,"reef shark, 1.5m","T. Peake, GSAF",2011.04.23-VanderVyver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.23-VanderVyver.pdf,2011.04.23,2011.04.23 +929,22-Apr-2011,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing ,Ronald White,M,49,Minor puncture wounds,False,1' to 2' shark,S. Petersohn,2011.04.22-RonWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.22-RonWhite.pdf,2011.04.22,2011.04.22 +930,16-Apr-2011,Unprovoked,NEW ZEALAND,South Island,Snapper Point,Surfing,Laine Hobson,M,41,Puncture to left hand,False,possibly a bronze whaler shark,"R.D. Weeks, GSAF",2011.04.16-Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.16-Hobson.pdf,2011.04.16,2011.04.16 +931,13-Apr-2011,Unprovoked,INDONESIA,Bali,Balian,Surfing,Joe Ferrar,M,41,Lacerations to forearm,False," Bull shark, 2.5 m","A.Brenneka, SharkAttackSurvivors.com",2011.04.12-Ferrar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.12-Ferrar.pdf,2011.04.12,2011.04.12 +932,08-Apr-2011,Unprovoked,FIJI,Vitu Levu,"Malake Island, Ra Province",Diving,Etuate Caucau ,M,27,Minor injuries to left leg and hand,False," Bull shark, 2.5 m","Bula Namaste, 4/10/2011",2011.04.08-Caucau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.04.08-Caucau.pdf,2011.04.08,2011.04.08 +933,Reported 29-Mar-2011,Provoked,USA,Texas,Matagorda Beach,"Standing, holding shark pup",Orlando,M,27,Minor laceration to shoulder from captive shark PROVOKED INCIDENT,False,Blacktip shark pup,"You Tube, Baby Blacktip Shark Attack - How NOT to hold a shark.",2011.03.29.R-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.29.R-Orlando.pdf,2011.03.29.R,2011.03.29.R +934,24-Mar-2011,Unprovoked,MEXICO,Quintana Roo,"Gaviotas Beach, Cancun",Swimming,Liuba Taran,F,27,Lower leg & foot bitten,False,Bull shark,"Canadian press, 3/25/2011",2011.03.24-Taran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.24-Taran.pdf,2011.03.24,2011.03.24 +935,23-Mar-2011,Unprovoked,AUSTRALIA,New South Wales,Crowdy Head,Surfing,David Pearson,M,48,Severe injury to left forearm,False,"Bull shark, 2.5m","Nine News, 3/24/2011",2011.03.23-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.23-Pearson.pdf,2011.03.23,2011.03.23 +936,21-Mar-2011,Unprovoked,MEXICO,Quintana Roo,Quintana Roo,Swimming,Andrew Masternak ,M,46,Right foot bitten,False,"Bull shark, 2.5m","Mississauga.net, 3/29/2011",2011.03.21.b-Masternak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.b-Masternak.pdf,2011.03.21.b,2011.03.21.b +937,21-Mar-2011,Unprovoked,FIJI,Nukudamu ,Nukudamu ,Diving / fishing,Metereti Jeke,M,30,"Left forearm severely bitten, surgically amputated",False,"Bull shark, 2.5m","Fiji Times Online, 3/24/2011",2011.03.21.a-Jeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.21.a-Jeke.pdf,2011.03.21.a,2011.03.21.a +938,16-Mar-2011,Unprovoked,AUSTRALIA,New South Wales,"Jimmys Beach, Port Stephens",Wakeboarding,Lisa Mondy,F,24,"Severe injuries to head, neck, shoulder & upper left arm",False,3 m to 4 m shark,"The Sydney Morning Herald, 3/17/2011",2011.03.16-Mondy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.16-Mondy.pdf,2011.03.16,2011.03.16 +939,Reported 10-Mar-2010,Invalid,EGYPT,South Sinai Peninsula,Sharm-el-Sheikh,Wakeboarding,female,F,24,"Apparent drowning, and subsequent scavenging by 16' tiger shark",False,3 m to 4 m shark,"Swindon Advertiser, 3/10/2011 ",2011.03.10.R-Sharm-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.R-Sharm-scavenging.pdf,2011.03.10.R,2011.03.10.R +940,10-Mar-2011,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Prem Puri,M,24,"No injury, surboard broken",False,3 m to 4 m shark,"Northern Star, 3/11/2011",2011.03.10.a-Puri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.03.10.a-Puri.pdf,2011.03.10,2011.03.10 +941,Reported 28-Feb-2011,Provoked,AUSTRALIA,Queensland,Between ,Fishing,Shane Nyari,M,36,Lacerations to right hand by hooked shark PROVOKED INCIDENT,False,"Bull shark, 2m","C. Eksander, GSAF",2011.02.28.R-Nyari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.28.R-Nyari.pdf,2011.02.28.R,2011.02.28.R +942,23-Feb-2011,Unprovoked,NEW CALEDONIA, Loyalty Islands,"Bay of Bweedro, Ouvéa",Spearfishing,Jean-Luc Majele,M,21,Lacerations to left forearm,False,1.5 m shark,"Les Nouvelles Caledoniennes, 2/25/2011",2011.02.23-Jean-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.23-Jean-Luc.pdf,2011.02.23,2011.02.23 +943,18-Feb-2011,Unprovoked,REUNION,Saint Gilles ,Trois-Roches,Surfing,Eric Dargent ,M,32,Left leg severed at the knee,False,1.5 m shark,"Clicanoo.com, 2/21/2011",2011.02.19-Dargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.19-Dargent.pdf,2011.02.19,2011.02.19 +944,17-Feb-2011,Unprovoked,AUSTRALIA,South Australia,Off Perforated Island near Coffin Bay,Diving for abalone,Peter Clarkson,M,49,fatal,True,White shark x 2,"T. Peake, GSAF",2011.02.17-Clarkson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.17-Clarkson.pdf,2011.02.17,2011.02.17 +945,13-Feb-2011,Provoked,AUSTRALIA,Queensland,Sunshine Beach,Fishing,male,M,49,Lacerations to calf by hooked shark PROVOKED INCIDENT,False,1 m shark,"Courier-Mail, 2/14/2011",2011.02.13-SunshineBeach-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.13-SunshineBeach-angler.pdf,2011.02.13,2011.02.13 +946,12-Feb-2011,Unprovoked,AUSTRALIA,Western Australia,Exmouth,Snorkeling,Allen ___,M,58,Arm bitten,False,1 m shark,"T. Peake, GSAF",2011.02.12-Exmouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.12-Exmouth.pdf,2011.02.12,2011.02.12 +947,Reported 04-Feb-2011,Provoked,MEXICO,Colima,"Manzanillo, Revillagigedo Islands",Shark fishing on the Ricardo Astorga,Porfirio Lugo Camacho ,M,58,Left foot bitten PROVOKED INCIDENT,False,1 m shark,"AngelGuardianMX, 2/4/2011",2011.02.04.R-Camacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.04.R-Camacho.pdf,2011.02.04.R,2011.02.04.R +948,02-Feb-2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Sundays River Mouth, Port Elizabeth",Surf fishing,Johannes Jonk,M,37,Right leg bitten,False,1 m shark,"Iafrica.com, 2/2/2011",2011.02.02-Jonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.02.02-Jonk.pdf,2011.02.02,2011.02.02 +949,31-Jan-2011,Unprovoked,MEXICO,Quintana Roo,Cancun,Swimming,Nicole Moore,F,38,"Leg, forearm & hand severely bitten",False,6' shark,"El Diario de Yucatan, 2/1/2011",2011.01.31-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.31-Moore.pdf,2011.01.31,2011.01.31 +950,28-Jan-2011,Provoked,MEXICO,Colima,Revillagigedo Islands,Shark fishing on the Don Agustín-VI. ,C. Pedro Luis Beltrán Camargo ,M,25,Left eg bitten PROVOKED INCIDENT,False,6' shark,"Sun Sentinel, 1/30/2011",2011.01.28-Camargo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.28-Camargo.pdf,2011.01.28,2011.01.28 +951,26-Jan-2011,Unprovoked,BAHAMAS,West End,Tiger Beach,Scuba diving,Jim Abernethy,M,55,Arm bitten ,False,Caribbean reef shark,J. Abernethy,2011.01.26-Abernethy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.26-Abernethy.pdf,2011.01.26,2011.01.26 +952,20-Jan-2011,Invalid,AUSTRALIA,New South Wales,Cudgen Creek ,Swimming,Mia Merlini,F,7,Lacerations to both legs,False,Shark involvement not confirmed,"L. Brodnik, Tweed News, 1/22/2011",2011.01.20-Merlini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.20-Merlini.pdf,2011.01.20,2011.01.20 +953,15-Jan-2011,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Zama Ndamase,M,16,fatal,True,Shark involvement not confirmed,"The Mercury, 1/15/211",2011.01.15-Ndamase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.15-Ndamase.pdf,2011.01.15,2011.01.15 +954,Reported 12-Jan 2011,Unprovoked,MEXICO,Quintana Roo,Xcalak ,Attempting to fix motor,Juan Miguel Infante Ramírez,M,37,Bitten on leg and groin,False,Shark involvement not confirmed,Sharksurvivors.com,2011.01.12.R-Infante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.12.R-Infante.pdf,2011.01.12.R,2011.01.12.R +955,03-Jan-2011,Boat,AUSTRALIA,Western Australia,Busselton,Fishing,"A 'tinnie"". Occupants :Paul Sweeny, Paul Nieuwkerdk, John and Mark Kik ",,37,"No injury, shark nudged boat and bit propeller",False,White shark,"S. Gordon, Sky News, 1/4/2011",2011.01.03-BusseltonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2011.01.03-BusseltonBoat.pdf,2011.01.03,2011.01.03 +956,26-Dec-2010,Unprovoked,USA,Hawaii," Kahului, Maui",Body boarding,Vaun Stover-French ,M,16,"Lacerations to his lower left leg, calf, foot & ankle",False,6' shark,"J. Howard, Surfing, 12/27/2010",2010.12.26-Stover-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.26-Stover-French.pdf,2010.12.26,2010.12.26 +957,17-Dec-2010,Unprovoked,FIJI,Vitu Levu,Sigatoka,Surfing,Jordi Gracia ,M,16,Lacerations to foot,False,6' shark,"Fiji Times Online, 12/19/2010",2010.12.17-Gracia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.17-Gracia.pdf,2010.12.17,2010.12.17 +958,11-Dec-2010,Unprovoked,USA,Hawaii,"Tavares Bay, Maui",Surfing,Andrew Wilson,M,46,Lacerations to right foot,False,6' shark,"Maui News, 12/14/2010",2010.12.11-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.11-Wilson.pdf,2010.12.11,2010.12.11 +959,05-Dec-2010,Unprovoked,EGYPT,South Sinai Peninsula,"Middle Garden, Sharm el-Shiekh",Snorkeling,Renate Seiffert,F,70,fatal,True,"Oceanic whitetip shark, 2.5m ","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.05-Renate- Seiffert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.05-Renate- Seiffert.pdf,2010.12.05,2010.12.05 +960,Reported 03-Dec-2010,Unprovoked,INDONESIA,Bali,Balian,Surfing,Wei Ong,M,70,Lacerations to right hand,False,"Oceanic whitetip shark, 2.5m ","M. Trott, Indo Surf Life, 12/5/2010",2010.12.03.R-Ong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.03.R-Ong.pdf,2010.12.03.R,2010.12.03.R +961,01-Dec-2010,Unprovoked,EGYPT,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Yevgeniy (Eugene) Trishkin ,M,54,Both arms severely bitten,False,Mako shark ,"M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.01.b-Yevgeniy-Trishkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.b-Yevgeniy-Trishkin.pdf,2010.12.01.b,2010.12.01.b +962,01-Dec-2010,Unprovoked,EGYPT,South Sinai Peninsula,"Ras Nasrani, Sharm el-Sheikh",Snorkeling,Viktor Koliy ,M,46,Lacerations to right leg,False,Mako shark,"M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.12.01.a-Viktor-Koliy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.12.01.a-Viktor-Koliy.pdf,2010.12.01.a,2010.12.01.a +963,30-Nov-2010,Unprovoked,EGYPT,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Lyudmila Stolyarova ,F,70,"Foot severed, Right forearm severed, lacerations to left hand (defense wounds)",False,"Oceanic whitetip shark, 2.5m, female","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.11.30.b-Lyudmila-Stolyarova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.b-Lyudmila-Stolyarova.pdf,2010.11.30.b,2010.11.30.b +964,30-Nov-2010,Unprovoked,EGYPT,South Sinai Peninsula,"Coral Bay, Sharm el-Sheikh",Snorkeling,Olga Martsinko ,F,48,Foot and arm bitten,False,"Oceanic whitetip shark, 2.5m, female","M. Levine, R. Collier, E. Ritter, M. Fouda, et al",2010.11.30.a-Olga Marsyenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.30.a-Olga Marsyenko.pdf,2010.11.30.a,2010.11.30.a +965,Reported 27-Nov-2010,Unprovoked,SAMOA,unknown,unknown,Fishing,male,M,47,Serious wounds to chest,False,"Oceanic whitetip shark, 2.5m, female","Samoa Observer, 11/27/2010",2010.11.27.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.R-Samoa.pdf,2010.11.27.R,2010.11.27.R +966,27-Nov-2010,Invalid,AUSTRALIA,Western Australia,Native Dog Beach,Swimming,Michael Utley,M,47,Death may have been due to drowning,False,Shark involvement not confirmed,"mailonline.com, 12/2/2010",2010.11.27.a-Utley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.27.a-Utley.pdf,2010.11.27,2010.11.27 +967,19-Nov-2010,Provoked,USA,Palmyra Atoll,Palmyra Atoll,Snorkeling,Kydd Pollock,M,33,Head bitten by netted shark PROVOKED INCIDENT,False,Shark involvement not confirmed,"Sunday News, 12/12/2010",2010.11.19-Pollock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.19-Pollock.pdf,2010.11.19,2010.11.19 +968,15-Nov-2010,Unprovoked,DOMINICAN REPUBLIC,Boca Chica,Boca Chica,Diving,Pinales Pedro Zapata,M,21,fatal,True,Shark involvement not confirmed,"Dominican Today, 11/15/2010",2010.11.15-Zapata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.15-Zapata.pdf,2010.11.15,2010.11.15 +969,14-Nov-2010,Unprovoked,INDONESIA,Bali,Balian,Surfing,male,M,21,Hand bitten ,False,Shark involvement not confirmed,Bali Waves,2010.11.14-Bali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.14-Bali.pdf,2010.11.14,2010.11.14 +970,Reported 12-Nov-2010,Boat,AUSTRALIA,Western Australia,Between Carnac and Garden Islands,Fishing,4-m runabout. Occupant: Allen Gade,M,21,No injury to occupant. Shark rammed bottom of the boat,False,White shark,R. Hidding,2010.11.12.R-Gade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.11.12.R-Gade.pdf,2010.11.12.R,2010.11.12.R +971,30-Oct-2010,Unprovoked,AUSTRALIA,Western Australia,Off Garden Island,Snorkeling,Elyse Frankcom,F,20,Torso and left buttock bitten,False,White shark,"Perth Now, 10/30/2010",2010.10.30-Francom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.30-Francom.pdf,2010.10.30,2010.10.30 +972,Reported 28-Oct-2010,Unprovoked,AUSTRALIA,Western Australia,Cheynes Beach,Spearfishing,Deacon Plant,M,20,"No injury, shark head-butted diver's thigh",False,White shark,"Albany & Great Southern Weekender, 10/28/2010",2010.10.28.R-Plant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.R-Plant.pdf,2010.10.28.R,2010.10.28.R +973,28-Oct-2010,Unprovoked,USA,Oregon,Florence,Surfing,Seth Mead,M,20,No injury to surfer,False,White shark,R. Collier,2010.10.28.a-SethMead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.28.a-SethMead.pdf,2010.10.28,2010.10.28 +974,25-Oct-2010,Provoked,AZORES,350 miles from Faial Island,350 miles from Faial Island,Fishing,crewman from the Gedi,M,20,PROVOKED INCIDENT? ,False,White shark,"Jornal Diario, 10/26/2010",2010.10.25-Gedi-crewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.25-Gedi-crewman.pdf,2010.10.25,2010.10.25 +975,23-Oct-2010,Unprovoked,USA,Maine,"Burnt Cove near Eastport, Washington County",Scuba diving,Scott MacNichol,M,30,"No injury to diver, shark bit his video camera",False,"Porbeagle shark, 8' ","Bangor Daily News, 10/27/2010",2010.10.23-MacNichol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23-MacNichol.pdf,2010.10.23.b,2010.10.23.b +976,23-Oct-2010,Unprovoked,AUSTRALIA,Western Australia,Wedge Island,Kite Surfing,Liam Walker,M,14,Lacerations to lower right leg,False,"Porbeagle shark, 8' ",Sharksurvivors.com,2010.10.23.a-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.23.a-Walker.pdf,2010.10.23.a,2010.10.23.a +977,22-Oct-2010,Unprovoked,USA,California,"Surf Beach, Vandenberg AFB, Santa Barbara County",Body boarding,Lucas Ransom,M,19,fatal,True,"White shark, 14' to 18' ",R. Collier,2010.10.22-Ransom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.22-Ransom.pdf,2010.10.22,2010.10.22 +978,20-Oct-2010,Unprovoked,EGYPT,South Sinai Peninsula,Sharm el-Sheikh ,Snorkeling,Elena Rubanovich.,F,19,Multiple lacerations to left leg and foot,False,"White shark, 14' to 18' ",M. Salem; Y. Sobolev,2010.10.20-Rubanovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.20-Rubanovich.pdf,2010.10.20,2010.10.20 +979,09-Oct-2010,Unprovoked,AUSTRALIA,New South Wales,Mullaway Headland,Surfing,Ken Turk,M,22,Foot bitten,False,"Bull shark, 1.4m ","The Coffs Coast Advocate, 10/16/2010",2010.10.09-Turk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.09-Turk.pdf,2010.10.09,2010.10.09 +980,02-Oct-2010,Unprovoked,BAHAMAS,Exuma Islands,Exuma Islands,Snorkeling,Jose Molla,M,22,Calf bitten,False,Lemon shark,Sharksurvivors.com,2010.10.02.b-Molla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.b-Molla.pdf,2010.10.02.b,2010.10.02.b +981,02-Oct-2010,Unprovoked,BAHAMAS,Abaco Islands,Elbow Cay,Surfing,Jane Engle,F,22,Bitten between left ankle & knee,False,Possibly a 6' lemon shark,"The Tribune, 10/4/2010",2010.10.02.a-Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.02.a-Engle.pdf,2010.10.02.a,2010.10.02.a +982,01-Oct-2010,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, Strand",Surfing,male,M,Teen,3 lacerations to foot,False,Possibly a 6' lemon shark,"News24.com, 10/1/2010",2010.10.01-Melkbaai-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.10.01-Melkbaai-surfer.pdf,2010.10.01,2010.10.01 +983,27-Sep-2010,Unprovoked,USA,Oregon,Winchester Bay,Surfing,David Lowden,M,29,"No injury, surfboard rammed",False,White shark,R. Collier,2010.09.27-Lowden-COLLIER.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.27-Lowden-COLLIER.pdf,2010.09.27,2010.09.27 +984,24-Sep-2010,Unprovoked,USA,Virginia,Sandridge Beach,Surfing,Caleb Kauchak,M,18,Bite to left ankle and knee,False,White shark,"K.Adams, The Virginian Pilot, 9/24/2010",2010.09.24-Kauchak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.24-Kauchak.pdf,2010.09.24,2010.09.24 +985,21-Sep-2010,Unprovoked,SOUTH AFRICA,Western Cape Province,Between Dyer Island and Pearly Beach,Swimming,Khanyisile Momoza ,M,29,fatal,True,White shark,"Cape Argus, 9/25/2010",2010.09.21-Momoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.21-Momoza.pdf,2010.09.21,2010.09.21 +986, 13-Sep-2010,Unprovoked,AUSTRALIA,New South Wales,Fraser's Reef,Surfing,Jake Davis,M,15,Lacerations and puncture wounds to leg and foot,False,2m shark,"Daily Telegraph, 9/16/2010",2010.09.13-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.13-Davis.pdf,2010.09.13,2010.09.13 +987,07-Sep-2010,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Swimming,Jason Whitworth,M,27,Lacerations to left wrist,False,3' shark,"St. Augustine Record, 9/9/2010",2010.09.07-Whitworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.07-Whitworth.pdf,2010.09.07,2010.09.07 +988,Reported 06-Sep-2010,Unprovoked,TONGA,Ha'api ,Ha'api ,Swimming / Whale Watching,Bjørn Jensen,M,24,Puncture wounds to right foot,False,3' shark,"New Zealand Herald, 9/6/2010",2010.09.06.R-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.06.R-Jensen.pdf,2010.09.06.R,2010.09.06.R +989, 04-Sep-2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kris Kerr,M,24,"No injury, shark charged surfboard",False,3' shark,"CBS News, 9/10/2010",2010.09.04-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.04-Kerr.pdf,2010.09.04,2010.09.04 +990,03-Sep-2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Coffman,M,24,Lacerations to right hand ,False,3' shark,"S. Petersohn; Daytona Beach News-Journal, 9/3/2010",2010.09.03.b-Coffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.b-Coffman.pdf,2010.09.03.b,2010.09.03.b +991,03-Sep-2010,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Heald,M,24,Left thigh bitten,False,3' shark,"S. Petersohn; M. Johnson, Daytona Beach News-Journal, 9/3/2010",2010.09.03.a-Heald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.03.a-Heald.pdf,2010.09.03.a,2010.09.03.a +992,02-Sep-2010,Unprovoked,SOLOMON ISLANDS,Western Province,Western Province,Surfing,Benjamin D'Emden,M,34,Lacerations to face and neck,False,3' shark,"The Daily Telegraph, 9/3/2010",2010.09.02-D'Emden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.09.02-D'Emden.pdf,2010.09.02,2010.09.02 +993,29-Aug-2010,Invalid,BAHAMAS,Exuma Islands,"Off Jaws Beach, New Providence Island",Swimming after boat became disabled,Judson Newton,M,43,"His partial remains were recovered from a 12' tiger shark on September 5, 2010. Cause of death was thought to be drowning",False,Shark involvement prior to death was not confirmed,"P.Nunez, Tribune",2010.08.29-Newton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.29-Newton.pdf,2010.08.29,2010.08.29 +994,18-Aug-2010,Unprovoked,USA,Florida,Crescent Beach St. Johns County,Boogie Boarding,Seth Shorten,M,10,Minor injuries to foot,False,Shark involvement prior to death was not confirmed,"Gainesville Sun, 8/18/2010",2010.08.18-Shorten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.18-Shorten.pdf,2010.08.18,2010.08.18 +995,17-Aug-2010,Unprovoked,AUSTRALIA,Western Australia,Cowaramup Bay,Surfing,Nicholas Edwards,M,31,fatal,True,White shark,"The Australian, 8/17/2010",2010.08.17-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.17-Edwards.pdf,2010.08.17,2010.08.17 +996,14-Aug-2010,Boating,USA,California,"Pigeon Point, San Mateo County",Kayak Fishing,Adam Coca,M,45,"No injury, kayak bitten",False,White shark,"Mercury News, 8/15/2010",2010.08.14-Coca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.14-Coca.pdf,2010.08.14,2010.08.14 +997,10-Aug-2010,Provoked,AUSTRALIA,Queensland,"Three Mile Creek, Townsville",Fishing,female,F,45,Leg bitten by hooked shark PROVOKED INCIDENT,False,White shark,"Courier-Mail, 8/10/2010",2010.08.10.b-Townsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.b-Townsville.pdf,2010.08.10.b,2010.08.10.b +998,10-Aug-2010,Unprovoked,SOUTH KOREA,Jeju Province,Jeju Island,Swimming,Jaylee Pierce,F,16,Lacerations to left lower leg,False,White shark,"J. Williamson, Texarkana Gazette, 9/20/2010",2010.08.10.a-Pierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.10.a-Pierce.pdf,2010.08.10,2010.08.10 +999,08-Aug-2010,Unprovoked,AUSTRALIA,New South Wales,Crescent Head,Surfing,Rick Carroll,M,47,Left foot bitten,False,White shark,"Macleay Argus, 8/10/2010",2010.08.08-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.08-Carroll.pdf,2010.08.08,2010.08.08 +1000,07-Aug-2010,Unprovoked,USA,North Carolina,"Figure Eight Island, Wilmington, New Hanover County",Surfing,Josh Clement,M,25,Left foot bitten,False,White shark,"C. Creswell, GSAF",2010.08.07.b-Clement.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.b-Clement.pdf,2010.08.07.b,2010.08.07.b +1001,07-Aug-2010,Unprovoked,MALTA,"Off Fort St. Elmo, Valetta","Off Fort St. Elmo, Valetta",Windsurfing,David Bonavia,M,35,"No injury, sail bitten",False,3 m shark,"A. Buttigieg, GSAF",2010.08.07.a-Bonavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.07.a-Bonavia.pdf,2010.08.07.a,2010.08.07.a +1002,05-Aug-2010,Invalid,USA,Florida,"Bethune Beach, Volusia County",Swimming,Judy Fischman,F,35,Minor abrasions to legs when she was lifted on the back of a large marine animal,False,Shark involvement not confirmed,"Daytona Beach News-Journal, 8/7/2010",2010.08.05-Fischman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.05-Fischman.pdf,2010.08.05,2010.08.05 +1003,02-Aug-2010,Boating,USA,California,"Near oil rig Hondo, 5 nm from Gaviota, Santa Barbara County",Kayaking,Duane Strosaker,M,35,"No injury, kayak bitten",False,"White shark, 15'","R. Collier, GSAF",2010.08.02.b-Strosaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.b-Strosaker.pdf,2010.08.02.b,2010.08.02.b +1004,02-Aug-2010,Unprovoked,USA,Florida,"Micklers Landing, St. Johns County",Standing,Kimberly Presser,F,37,Lacerations to forearm,False,3' to 4' shark,"News4JAX, 8/2/2010",2010.08.02.a-Presser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.08.02.a-Presser.pdf,2010.08.02.a,2010.08.02.a +1005,25-Jul-2010,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Standing,Alex Stamm,M,16,Lacerations to right lower leg,False,4' shark,"C. Creswell, GSAF",2010.07.25-Stamm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.25-Stamm.pdf,2010.07.25,2010.07.25 +1006,23-Jul-2010,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Clayton Schulz,M,20,Left foot bitten,False,4' shark,"C. Creswell, GSAF",2010.07.23-Schulz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.23-Schulz.pdf,2010.07.23,2010.07.23 +1007,19-Jul-2010,Unprovoked,USA,South Carolina,Myrtle Beach,Swimming,Josh Myers,M,10,Minor lacerations to left calf,False,Possibly a small blacktip shark,"C. Creswell, GSAF",2010.07.19-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.19-Myers.pdf,2010.07.19,2010.07.19 +1008,17-Jul-2010,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Swimming,Kendall Parker,F,13,Lacerations to right forearm,False,"Sandtiger shark, 4' to 5'","C. Creswell, GSAF",2010.07.17.b-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.b-Parker.pdf,2010.07.17.b,2010.07.17.b +1009,17-Jul-2010,Unprovoked,USA,Florida,New Smyrna Beach,Surfing,Jimmy Johnston,M,55,Minor lacerations to right foot,False,A small spinner shark,S. Petersohn,2010.07.17.a-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.17.a-Johnston.pdf,2010.07.17.a,2010.07.17.a +1010,16-Jul-2010,Provoked,SPAIN,Grand Canary Island,"Sardina del Norte, Gáldar",Swimming,male,M,9,Lacerations to left foot when he stepped on the shark PROVOKED INCIDENT,False,Angel shark,"gáldahora, 7/16/2010",2010.07.16.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.b-Spain.pdf,2010.07.16.b,2010.07.16.b +1011,16-Jul-2010,Unprovoked,USA,Texas,Galveston,Fishing,Charlie Gauzer,M,9,Leg bitten,False,Angel shark,"NY Post, 7/16/2010",2010.07.16.a-Gauzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.16.a-Gauzer.pdf,2010.07.16.a,2010.07.16.a +1012,11-Jul-2010,Provoked,USA,Florida,"Lauderdale-by-the-Sea, Broward County",Fishing,male,M,9,Small laceration to forearm from netted shark PROVOKED INCIDENT,False,"Nurse shark, juvenile ","News 7, 7/13/2010",2010.07.11-Lauderdale-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.11-Lauderdale-fisherman.pdf,2010.07.11,2010.07.11 +1013,04-Jul-2010,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Two Mile Reef, Sodwana Bay",Snorkeling,Sarah Haiden,F,21,Left leg bitten,False,"Nurse shark, juvenile ",The Sowetan. 7/9/2010,2010.07.04-Haiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.04-Haiden.pdf,2010.07.04,2010.07.04 +1014,03-Jul-2010,Provoked,USA,New York,Off Long Island,Fishing,Frank Joseph,M,20,Laceration to right bicep by hooked shark PROVOKED INCIDENT,False,"Blue shark, 7'",NBC,2010.07.03-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.03-Joseph.pdf,2010.07.03,2010.07.03 +1015,02-Jul-2010,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Surfing,Derek Crane,M,19,Laceration to left foot,False,4' shark,R. Collier,2010.07.02.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.b-Crane.pdf,2010.07.02.b,2010.07.02.b +1016,02-Jul-2010,Unprovoked,USA,California,"Dog Patch, San Onofre",Stand-Up Paddleboarding,David Bull,M,48,"No injury, board bumped by shark",False,8' shark,R. Collier,2010.07.02.a-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.07.02.a-Bull.pdf,2010.07.02.a,2010.07.02.a +1017,27-Jun-2010,Unprovoked,USA,Texas,"Eight Mile Beach, Galveston",Surfing,Chad Rogers,M,20,Lacerations to right foot,False,"Bull shark, 5'",KMBC,2010.06.27-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.27-Rogers.pdf,2010.06.27,2010.06.27 +1018,25-Jun-2010,Unprovoked,USA,South Carolina,Fripp Island,Boogie Boarding,Ella Morris,F,6,Laceration to leg,False,"Bull shark, 5'","C. Creswell, GSAF",2010.06.25.b-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.b-Morris.pdf,2010.06.25.b,2010.06.25.b +1019,25-Jun-2010,Unprovoked,USA,North Carolina,"Topsail Island, Pender County",Swimming,Carley Schlentz,F,13,Laceration to left foot,False,"Bull shark, 5'","C. Creswell, GSAF",2010.06.25.a-Schlentz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.25.a-Schlentz.pdf,2010.06.25.a,2010.06.25.a +1020,15-Jun-2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Huynh Nhu Hoang,M,17,Laceration to left foot,False,1 m shark,"Thanh Nien News, 5/15/2010",2010.06.15-Hoang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.15-Hoang.pdf,2010.06.15,2010.06.15 +1021,10-Jun-2010,Unprovoked,USA,Florida,Jacksonville,Boogie Boarding,Hannah Mayo-Foster,F,18,Lacerations to left calf and foot,False,4' shark,"Gwinnett Daily Post, 6/10/2010",2010.06.10-Mayo-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.10-Mayo-Foster.pdf,2010.06.10,2010.06.10 +1022,06-Jun-2010,Unprovoked,AUSTRALIA,Western Australia,"Conspicuous Beach, near Walpole",Surfing,Michael Bedford,M,40,Severe laceration to right knee,False,4' shark,"The West Australian, 6/7/2010",2010.06.06-Bedford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.06-Bedford.pdf,2010.06.06,2010.06.06 +1023,Jun-2010,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Surfing,Matt Searcy,M,20,Lacerations to left foot,False,4' shark,"Florida Times-Union, 7/28/2010",2010.06.00-Searcy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.06.00-Searcy.pdf,2010.06.00,2010.06.00 +1024,30-May-2010,Provoked,USA,Florida,Off Tarpon Springs,Fishing,Mike Seymore,M,49,Laceration to left calf by hooked shark PROVOKED INCIDENT,False,"Lemon shark, 4'",tbo.com,2010.05.30-Seymore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.30-Seymore.pdf,2010.05.30,2010.05.30 +1025,18-May-2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Rescuing,Nguyen Thi Thu Thao,F,58,Minor laceration to leg,False,20 to 30kg shark,"Thanh Nien, 5/21/2010",2010.05.18.c-Thao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.c-Thao.pdf,2010.05.18.c,2010.05.18.c +1026,18-May-2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Thi Tanh ,F,60,Severe lacerations to left foot,False,20 to 30kg shark,"Thanh Nien, 5/21/2010",2010.05.18.b-Thanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.b-Thanh.pdf,2010.05.18.b,2010.05.18.b +1027,18-May-2010,Unprovoked,AUSTRALIA,New South Wales,Point Plomer,Surfing,Craig Gibson,M,60,Superficial lacerations to lower left leg,False,20 to 30kg shark,"Macleay Argus, 5/2/2010",2010.05.18.a-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.18.a-Gibson.pdf,2010.05.18.a,2010.05.18.a +1028,03-May-2010,Unprovoked,MADAGASCAR,Antsiranana Province," Ambatolaoka, Nosy Be Island",Scuba diving,Michel Touzet,M,59,Lacerations to arm & chest,False,20 to 30kg shark,M.Touzel; Shark Attack Survivors,2010.05.03-Touzet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.03-Touzet.pdf,2010.05.03,2010.05.03 +1029,01-May-2010,Unprovoked,USA,Florida,New Smyrna Beach,Wading,Caitlin Dubois,F,10,Minor puncture wounds to right ankle,False,4' shark,"S. Petersohn;J. Wheeler, 13 News, 5/4/2010",2010.05.01-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.05.01-Dubois.pdf,2010.05.01,2010.05.01 +1030,28-Apr-2010,Provoked,USA,Florida,Hanalei Bay,Measuring sharks,Kirk Gastrich,M,29,Arm bitten PROVOKED INCIDENT ,False,"Lemon shark, 6'","D. Guevara, WSVN-TV, 4/28/2010",2010.04.28-Gatrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.28-Gatrich.pdf,2010.04.28,2010.04.28 +1031,19-Apr-2010,Unprovoked,USA,Hawaii,"Hanalei Bay, Kauai",Surfing,Jim Rawlinson,M,68,"No injury, surfboard bitten",False,14' shark,"R. Collier, Honolulu Advertiser, 4/23/2010",2010.04.19-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.19-Rawlinson.pdf,2010.04.19,2010.04.19 +1032,13-Apr-2010,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"East Beach, Port Alfred",Surfing,Brendan Denton,M,35,Both feet bitten,False,2 m shark,"Dispatch Now, 4/13/2010",2010.04.13-Denton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.13-Denton.pdf,2010.04.13,2010.04.13 +1033,04-Apr-2010,Unprovoked,EGYPT,Sinai Peninsula,Sharm el-Sheikh ,Swimming / treading water,James Elliott,M,24,Lacerations to left ankle and foot,False,"Oceanic whitetip shark, 6'","J. Elliott; Blackpool Gazette, 4/16/2010",2010.04.04-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.04.04-Elliot.pdf,2010.04.04,2010.04.04 +1034, 27-Mar-2010,Unprovoked,REUNION,Saint-Benoit,Bittern,Surfing,Oliver Schorebreak,M,34,"No injury, board bitten",False,1.5 m shark,"C. Ekstander, GSAF",2010.03.27-Schorebreak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.03.27-Schorebreak.pdf,2010.03.27,2010.03.27 +1035,190Feb-2010,Unprovoked,NEW ZEALAND,South Island,Tahunanui Beach,Swimming,Paul Baird,M,34,Bruised but otherwise unhurt,False,Possibly a blue shark,"Nelson Mail, 2/23/2010",2010.02.19-Baird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.19-Baird.pdf,2010.02.19,2010.02.19 +1036,16-Feb-2010,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Yellow Sands Point,Surfing,Michal du Plessis ,M,34,Lacerations to right leg,False,3 m shark,"Die Burger, 2/18/2010",2010.02.16-duPlessis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.16-duPlessis.pdf,2010.02.16,2010.02.16 +1037,15-Feb-2010,Unprovoked,FIJI,Off Vanua Levu,Nara Reef,Scuba diving,Henry Usimewa,M,19,fatal,True,3 m shark,"Fiji Times, 2/17/2010",2010.02.15-Usimewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.15-Usimewa.pdf,2010.02.15,2010.02.15 +1038,13-Feb-2010,Unprovoked,AUSTRALIA,Queensland,"Dent Island, Whitsundays",Snorkeling,Patricia Trumbull,F,60,Lacerations to legs & buttocks,False,2 m shark,"Sydney Morning Herald, 2/14/2010",2010.02.13-Trumbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.13-Trumbull.pdf,2010.02.13,2010.02.13 +1039,11-Feb-2010,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale Beach, Sydney",Surfing,Paul Welsh,M,46,"Minor injury, lacerations to left lower leg",False,"Wobbegong shark, 1.6m","John West, Taronga Zoo",2010.02.11-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.11-Welsh.pdf,2010.02.11,2010.02.11 +1040,Reported 06-Feb-2010,Provoked,NEW ZEALAND,South Island,Cosy Nook,Spearfishing,Aaron Muilwyk,M,46,"No injury, shark bit his speargun after he used it to prod the shark PROVOKED INCIDENT",False,2 m to 3 m shark,"Southland Times, 2/6/2010",2010.02.06.R-Muilwyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.R-Muilwyk.pdf,2010.02.06.R,2010.02.06.R +1041,06-Feb-2010,Unprovoked,AUSTRALIA,New South Wales,Turners' Beach,Body boarding,Dean Everson,M,18,"No injury, shark & board collided",False,"White shark, 2.5m","K. Matthews, Lismore Northern Star, 2/10/2010",2010.02.06.b-Everson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.b-Everson.pdf,2010.02.06.b,2010.02.06.b +1042,06-Feb-2010,Provoked,USA,Florida,Riviera Beach,Surf fishing / wading,male,M,18,Leg bitten while trying to free a hooked shark PROVOKED INCIDENT,False,"Spinner shark, 6'","WPTV.com, 2/7/2010",2010.02.06.a-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.06.a-RivieraBeach.pdf,2010.02.06.a,2010.02.06.a +1043,04-Feb-2010,Invalid,GUAM,Merizo,Achang Reef,Spearfishing (free diving),Andrew Duenas,M,31,Shark bites were post-mortem,False,Invalid,"B. Kelman, Pacific Daily News, 2/9/2010",2010.02.04-Duenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.04-Duenas.pdf,2010.02.04,2010.02.04 +1044,03-Feb-2010,Unprovoked,USA,Florida,"Stuart, Martin County",Kite Boarding,Stephen Howard Schafer,M,38,fatal,True,Invalid,"TC Palm, 2/3/2010",2010.02.03-Schafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.03-Schafer.pdf,2010.02.03,2010.02.03 +1045,01-Feb-2010,Provoked,NEW ZEALAND,South Island,Oreti Beach,Boogie Boarding,Lydia Ward,F,14,Stepped on shark PROVOKED INCIDENT,False,1.5 m shark,"R.D. Weeks, GSAF; K. Ritchie, ABC News, 2/1/2010",12.26,http://sharkattackfile.net/spreadsheets/pdf_directory/12.26,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.02.01-Ward.pdf,2010.02.01,2010.02.01 +1046,31-Jan-2010,Unprovoked,BRAZIL,Rio Grande Do Sul,"Atlantis Beach, near Tramandai",Surfing,Andrei Johann,M,29,Foot bitten,False,Thought to involve a juvenile hammerhead shark,"C. Eksander, GSAF",2010.01.30-Andrei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.30-Andrei.pdf,2010.01.30,2010.01.30 +1047,27-Jan-2010,Unprovoked,AUSTRALIA,Queensland,Archie's Beach,Surfing,Ashley Ramage,M,29,"No injury, surfboard bitten",False,Thought to involve a juvenile hammerhead shark,"C. Ekstander, GSAF; Bundberg News-Mail, 1/29/2010",2010.01.27-Ramage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.27-Ramage.pdf,2010.01.27,2010.01.27 +1048,22-Jan-2010,Unprovoked,UNITED ARAB EMIRATES (UAE),Dubai,"Umm Suqeim Beach, Dubai",Surfing,Michael Geraghty,M,54,Laceration to bottom of foot,False,Thought to involve a juvenile hammerhead shark,"C. Eksander, GSAF",2010.01.22.b-Geraghty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.b-Geraghty.pdf,2010.01.22.b,2010.01.22.b +1049,22-Jan-2010,Unprovoked,AUSTRALIA,Victoria,Geelong,Surfing,Dr. Pat Lockie,M,54,Lacerations to right hand ,False,Thought to involve a juvenile hammerhead shark,"C. Dickens, Geelong Advertiser, 1/25/2010",2010.01.22.a-Lockie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.22.a-Lockie.pdf,2010.01.22.a,2010.01.22.a +1050,12-Jan-2010,Unprovoked,SOUTH AFRICA,Western Province,Fish Hoek,Standing,Lloyd Skinner,M,37,fatal,True,White shark,"L. Cohen, Times Live, 1/12/2010",2010.01.12-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.12-Skinner.pdf,2010.01.12,2010.01.12 +1051,09-Jan-2010,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Snorkeling,Reenie Morrissey ,F,9,2 sets of minor lacerations below her right knee,False,"Whitetip reef shark, 1m","Courier-Mail, 1/10/2009",2010.01.09.d-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.d-Morrissey.pdf,2010.01.09.d,2010.01.09.d +1052,09-Jan-2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Snorkeling,female,F,9,Minor injuries,False,"Whitetip reef shark, 1m","C. Eksander, GSAF",2010.01.09.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.c-woman.pdf,2010.01.09.c,2010.01.09.c +1053,09-Jan-2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Snorkeling,Mang Duc Hanh,M,9,Right wrist bitten,False,"Whitetip reef shark, 1m","C. Eksander, GSAF",2010.01.09.b-Hanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.b-Hanh.pdf,2010.01.09.b,2010.01.09.b +1054,09-Jan-2010,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Bathing,Nguyen Minh Tuan ,M,9,Left arm bitten twice,False,"Whitetip reef shark, 1m","C. Eksander, GSAF",2010.01.09.a-Tuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.09.a-Tuan.pdf,2010.01.09.a,2010.01.09.a +1055,06-Jan-2010,Unprovoked,USA,Florida,Elliot Key,Spearfishing,Dreice Chirino,M,32,Lacerations to arm,False,"Whitetip reef shark, 1m","WSVN-TV, 1/7/2010",2010.01.06-Chirino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.06-Chirino.pdf,2010.01.06,2010.01.06 +1056,05-Jan-2010,Unprovoked,SOUTH AFRICA,Eastern Province,"Nahoon, East London",Surfing,male,M,32,"No injury, reportedly knocked of his board by a shark",False,"Whitetip reef shark, 1m","C. Eksander, GSAF",2010.01.05-Nahoon-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2010.01.05-Nahoon-surfer.pdf,2010.01.05,2010.01.05 +1057,29-Dec-2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Wading,Simon Bruce,M,20,Lacerations to left foot,False,"Whitetip reef shark, 1m","News24.com, 12/31/2009",2009.12.29-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.29-Bruce.pdf,2009.12.29,2009.12.29 +1058,26-Dec-2009,Provoked,AUSTRALIA,New South Wales,Avoca Beach,Swimming,John Sojoski ,M,55,Lacerations to lower left leg after stepping on the shark PROVOKED INCIDENT,False,"Whitetip reef shark, 1m","Express Advocate, 12/26/2009",2009.12.26-Sojoski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.26-Sojoski.pdf,2009.12.26,2009.12.26 +1059,22-Dec-2009,Unprovoked,MOZAMBIQUE,Maputo Province,Ponta do Ouro,Swimming,Peter Fraser,M,27,Multiple lacerations to right torso & arm. Defense wounds on hands,False,"Zambesi shark, 2m ","Beeld, 12/29/2009",2009.12.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.22-Fraser.pdf,2009.12.22,2009.12.22 +1060,20-Dec-2009,Boating,AUSTRALIA,Queensland,Mudjimba Island,Kayaking,2 males,M,27,"No injury to occupants, kayak bumped by shark",False,"Zambesi shark, 2m ","C. Eksander, GSAF",2009.12.20.b-Queensland-Kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.b-Queensland-Kayak.pdf,2009.12.20.b,2009.12.20.b +1061,20-Dec-2009,Unprovoked,AUSTRALIA,Queensland,Lamont Reef,Spearfishing,John Pengelly,M,18,Lacerations to hand & forearm,False,"Bull shark, 3m","Brisbane Times, 12/20/2009",2009.12.20.a-Pengelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.20.a-Pengelly.pdf,2009.12.20.a,2009.12.20.a +1062,18-Dec-2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Paddling on kneeboard,Tshintshekile Nduva,M,22,fatal,True,"Bull shark, 3m","B. Jordan & A. Ferreira, Times Live, 12/21/2009",2009.12.18.a-Nduva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.a-Nduva.pdf,2009.12.18,2009.12.18 +1063,18-Dec-2009,Invalid,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Surfing,Lance Morris,M,22,"Minor lacerations to left leg. nitially reported as a shark bite, but involved a barracuda",False,No shark involvement,"M. Addison, C. Eckstander, GSAF",2009.12.18.b-Morris-barracuda bite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.18.b-Morris-barracuda bite.pdf,2009.12.18,2009.12.18 +1064,16-Dec-2009,Unprovoked,NEW ZEALAND,South Island,Clark Island,Swimming to shore from capsized kayak,Maurice Bede Philips,M,24,fatal,True,"White shark, 2.8 to 3 m ","R.D. Weeks, GSAF",2009.12.16-Philips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.16-Philips.pdf,2009.12.16,2009.12.16 +1065,13-Dec-2009,Unprovoked,AUSTRALIA,New South Wales,Coffee Head,Surfing,Nigel Hughes,M,39,Laceration to big toe,False,"White shark, 2.8 to 3 m ","Northern Star, 12/14/2009",2009.12.13-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.13-Hughes.pdf,2009.12.13,2009.12.13 +1066,12-Dec-2009,Boating,AUSTRALIA,New South Wales,Hawks Nest Beach,Rowing,Surf boat with 5 lifesavers on board,,39,No injury to occupants; shark bit steering oar,False,White shark,"Herald Sun, 12/13/2009",2009.12.12-Ross-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.12-Ross-boat.pdf,2009.12.12,2009.12.12 +1067,05-Dec-2009,Provoked,USA,New Jersey,"Adventure Aquarium, Camden",Diving,Robert Large,M,58,Lacerations & puncture wounds to right calf & ankle when diver accidentally backed into the shark PROVOKED INCIDENT,False,"Sandtiger shark, 8'","R. Large; Philadelphia Daily News, 4/22/2010",2009.12.06-Large.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.12.06-Large.pdf,2009.12.06,2009.12.06 +1068,25-Nov-2009,Invalid,USA,California,"Huntington Beach, Orange County",Surfing,Kenneth Hall,M,49,Puncture wounds to right foot,False,Shark involvement not confirmed,"R. Collier, GSAF",2009.11.25-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.25-Hall.pdf,2009.11.25,2009.11.25 +1069,24-Nov-2009,Unprovoked,USA,Florida,"Lori Wilson Park, Cocoa Beach, Brevard County",Wading,Garrett Gollihugh,M,10,Left foot bitten,False,6' shark,My Fox Orlando,2009.11.24-Gollighugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.24-Gollighugh.pdf,2009.11.24,2009.11.24 +1070,16-Nov-2009,Unprovoked,USA,California,"Loch Lomond, Marin County",Fishing,James White,M,31,Puncture wounds and minor lacerations to dorsal surface of his left hand,False,Thresher shark,"R. Collier, GSAF",2009.11.16.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.b-White.pdf,2009.11.16.b,2009.11.16.b +1071,16-Nov-2009,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Steven Burdelski,M,22,Foot bitten,False,Thresher shark,"A. Pefley, Channel 12 News",2009.11.16.a-Burdelski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.16.a-Burdelski.pdf,2009.11.16.a,2009.11.16.a +1072,13-Nov-2009,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Melissa Hardcastle,F,27,Foot bitten,False,Thresher shark,"C. Scofield, WPTV.com",2009.11.13-Hardcastle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.13-Hardcastle.pdf,2009.11.13,2009.11.13 +1073,11-Nov-2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,18,Foot bitten,False,4' shark,Captain S. Petersohn,2009.11.11-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.11-NewSmyrnaBeach.pdf,2009.11.11,2009.11.11 +1074,08-Nov-2009,Unprovoked,AUSTRALIA,South Australia,Second Valley,Kayaking,Dean Brougham,M,25,Ankle bitten,False,2 m shark,"Adelaide Now, 11/19/2009",2009.11.08-Brougham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.08-Brougham.pdf,2009.11.08,2009.11.08 +1075,05-Nov-2009,Unprovoked,USA,California,"Davenport, Santa Cruz County",Surfing,Eric Geiselman,M,21,"No injury, board broken in half",False,2 m shark,R. Collier,2009.11.05-Geiselman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.11.05-Geiselman.pdf,2009.11.05,2009.11.05 +1076,30-Oct-2009,Boating,AUSTRALIA,Victoria,Portland,Kayaking,Rhys Gadsden,M,27,"No injury, shark bit kayak",False,"White shark, 4m","The Age, 10/31/2009",2009.10.30-Gadsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.30-Gadsden.pdf,2009.10.30,2009.10.30 +1077,Reported 29-Oct-2009,Unprovoked,MOZAMBIQUE,Inhambane Province,Off Vilanculo,Spearfishing,Mark Rogotzki ,M,27,Left ankle & foot bitten,False,Zambesi shark,R. Allen; J. Little,2009.10.29.R-Rogotzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.29.R-Rogotzki.pdf,2009.10.29.R,2009.10.29.R +1078,28-Oct-2009,Unprovoked,AUSTRALIA,New South Wales,Lennox Heads,Paddle-boarding,Zahli Lowe,F,17,"No injury, shark bit rear of paddleboard",False,Zambesi shark,"Northern Star, 10/30/2009",2009.10.28-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.28-Lowe.pdf,2009.10.28,2009.10.28 +1079,24-Oct-2009,Unprovoked,USA,California,"San Onofre, San Diego County ",Surfing,Scott Barton,M,17,"3 puncture wounds to big toe of left foot, and laceration on arch of foot",False,Zambesi shark,R. Collier,2009.10.24-Scott-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.24-Scott-Barton.pdf,2009.10.24,2009.10.24 +1080,19-Oct-2009,Unprovoked,USA,Hawaii,"Kalama Park, Maui",Surfing,Scott Henrich,M,54,Bitten on upper right thigh & right ankle,False,6' to 8' shark,"Star Bulletin, 10/19/2009",2009.10.19-Henrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.19-Henrich.pdf,2009.10.19,2009.10.19 +1081,18-Oct-2009,Unprovoked,PANAMA,Bocas,Playa La Cabaña ,Wading,female,F,10,Arm & torso bitten,False,6' to 8' shark,A. Blaker,2009.10.18-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.18-Panama.pdf,2009.10.18,2009.10.18 +1082,17-Oct-2009,Provoked,SCOTLAND,Fife,Deep Sea World Aquarium,Diving,male,M,23,15-20 puncture wounds to arm by captive shark PROVOKED INCIDENT ,False,Angel shark,"Telegraph.co.uk, 10/18/2009",2009.10.17-DeepSeaWorld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.17-DeepSeaWorld.pdf,2009.10.17,2009.10.17 +1083,Reported 14-Oct-2009,Unprovoked,AUSTRALIA,Western Australia,Western Australia,Diving,Matt Bowen,M,23,Severe lacerations to lower right leg,False,"Bull shark, 10'","BBC News, 10/19/2009",2009.10.14.R-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.14.R-Bowen.pdf,2009.10.14.R,2009.10.14.R +1084,09-Oct-2009,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Bernard Wagor,M,23,Laceration to shin of left leg,False,"Bull shark, 10'",R. Collier,2009.10.09-Wagor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.09-Wagor.pdf,2009.10.09,2009.10.09 +1085,02-Oct-2009,Provoked,UNITED KINGDOM,Devon,Mewstone Rock,Fishing,male,M,39,Injury to forearm from shark's spine PROVOKED INCIDENT ,False,Spurdog,"The Herald, 10/2/2009",2009.10.02-UK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.10.02-UK.pdf,2009.10.02,2009.10.02 +1086,26-Sep-2009,Unprovoked,USA,Florida,"Key Colony Beach, Monroe County",Swimming,Daniel Callahan,M,39,Laceration to right foot,False,"Bull shark, 8'",keysnet.com,2009.09.26-Callahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.26-Callahan.pdf,2009.09.26,2009.09.26 +1087,18-Sep-2009,Unprovoked,VIETNAM,unknown,unknown,Swimming,Nguyen Quang Vinh ,M,39,Lower right leg bitten,False,"Bull shark, 8'","H. Trong & U. Phuong,.Saigon Daily, 1/13/2010",2009.09.18-Vinh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.18-Vinh.pdf,2009.09.18,2009.09.18 +1088,15-Sep-2009,Provoked,SOMALIA,300 miles off the coast ,300 miles off the coast ,Fishing,a Spanish sailor,M,39,Arm bitten PROVOKED INCIDENT ,False,"Bull shark, 8'","SMCM, 9/20/2009",2009.09.15-SpanishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.15-SpanishSailor.pdf,2009.09.15,2009.09.15 +1089,13-Sep-2009,Provoked,BRAZIL,Pernambuco,"Piedade, Recife",Fishing,Maurício da Silva Monteiro,M,34,fatal,True,"Bull shark, 8'","C. Ekstander, GSAF",2009.09.13-Monteiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.13-Monteiro.pdf,2009.09.13,2009.09.13 +1090,12-Sep-2009,Invalid,USA,North Carolina,"Corolla, Currituck County",Swimming,Richard A Snead,M,60,fatal,True,Shark involvement prior to death not confirmed,"C. Creswell, GSAF ",2009.09.12-Snead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.12-Snead.pdf,2009.09.12,2009.09.12 +1091,07-Sep-2009,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife","Swimming, attempting to rescue a girl believed to be drowning",Geovanni Tiago Barbosa ,M,15,fatal,True,Shark involvement prior to death not confirmed,"C. Eksander, GSAF",2009.09.07-Barbosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.07-Barbosa.pdf,2009.09.07,2009.09.07 +1092,02-Sep-2009,Invalid,NEVIS,Castle Beach,Castle Beach,Swimming,Brian Mills,M,15,Death was due to drowning. Two days later his remains were recovered from a 12' tiger shark,False,Invalid,Dr. C. Jacobs; J. Daniel,2009.09.02-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.02-Mills.pdf,2009.09.02,2009.09.02 +1093,01-Sep-2009,Provoked,SOLOMON ISLANDS,Makira-Ulawa Province,"Kirakira, Makira Island (formerly San Cristobal)",Fishing,male,M,15,Injuries to face & neck PROVOKED INCIDENT,False,Invalid,"Solomon Star, 9/4/2009",2009.09.01-Kirakira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.09.01-Kirakira.pdf,2009.09.01,2009.09.01 +1094,30-Aug-2009,Unprovoked,USA,California,"Huntington Beach, Orange County",Surfing,Cory Hedgepeth,M,15,No injury,False,4' shark,"R. Collier, GSAF",2009.08.30-Hedgepeth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.30-Hedgepeth.pdf,2009.08.30,2009.08.30 +1095,29-Aug-2009,Unprovoked,SOUTH AFRICA,Western Cape Province,Glentana,Surfing,Gerhard van Zyl,M,25,fatal,True,White shark,"Cape Argus, 8/30/2009, p.1",2009.08.29-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.29-VanZyl.pdf,2009.08.29,2009.08.29 +1096,25-Aug-2009,Unprovoked,USA,California,"Terramar Beach, Carlsbad, San Diego County",Swimming,Bethany Edmund,F,22,Puncture wounds to left foot & calf,False,"White shark, 5' to 6' juvenile ","R. Collier, GSAF",2009.08.25-Edmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.25-Edmund.pdf,2009.08.25,2009.08.25 +1097,11-Aug-2009,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Alkantstrand ,Body boarding,Jeandre Nagel,M,22,"No injury, shark bit bodyboard",False,"White shark, 2m",Zululand Observer,2009.08.11-Nagel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.11-Nagel.pdf,2009.08.11,2009.08.11 +1098,10-Aug-2009,Unprovoked,USA,Florida,"Ponce, Volusia County",Swimming,A visitor from Spain,M,26,Puncture marks on left foot,False,"White shark, 2m",S. Petersohn,2009.08.10-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.10-Volusia.pdf,2009.08.10,2009.08.10 +1099,06-Aug-2009,Unprovoked,USA,Hawaii,Kawa'a ,Surfing,Dylan Crawford,M,26,"No injury, surfboard bitten",False,"Tiger shark, 12","Big Island Weekly, 8/19/2009",2009.08.06-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.06-Crawford.pdf,2009.08.06,2009.08.06 +1100,01-Aug-2009,Unprovoked,USA,Louisiana,"Curlew Island, Breton Sound",Wade Fishing,"Chris Haynes, Jr.",M,56,Right ankle & foot bitten,False,Bull shark?,Clarion Ledger,2009.08.01-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.08.01-Haynes.pdf,2009.08.01,2009.08.01 +1101,31-July-2009,Unprovoked,BAHAMAS,Abaco Islands,Spanish Cay,Spearfishing,Derek Mitchell,M,14,Lacerations to calf,False,Bull shark,WPTV.com,2009.07.31-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.31-Mitchell.pdf,2009.07.31,2009.07.31 +1102,30-Jul-2009,Unprovoked,AUSTRALIA,New South Wales,Broken Head,Surfing,Zac Skyring,M,14,Left forearm grazed & puncture marks in wetsuit,False,Bull shark,"Lismore Northern Star, 7/31/2009",2009.07.30-Skyring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.30-Skyring.pdf,2009.07.30,2009.07.30 +1103,29-Jul-2009,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Hoang Thi Thuy Hong ,F,41,Foot bitten,False,Bull shark,"CandOnline, 1/15/2020",2009.07.29-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.29-Hong.pdf,2009.07.29,2009.07.29 +1104,Reported 24-Jul-2009,Unprovoked,KENYA,Mombasa,Likoni Channel,Washing his feet,male,M,41,fatal,True,Bull shark,"Standard Digital, 7/24/2009",2009.07.24.R-Likoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.R-Likoni.pdf,2009.07.24.R,2009.07.24.R +1105,24-Jul-2009,Unprovoked,USA,Texas,South Padre Island,Wading,Deidre Casas,F,14,Lacerations to anterior left lower leg,False,Bull shark,KRGV.com,2009.07.24.b-Casas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.b-Casas.pdf,2009.07.24.b,2009.07.24.b +1106,24-Jul-2009,Invalid,SPAIN,Catalunya,Sant Salvador,Swimming,"ABC-Spain, 7/25/2009",F,11,Laceration to left foot,False,Shark involvement questionable,"ABC-Spain, 7/25/2009",2009.07.24.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.24.a-Spain.pdf,2009.07.24.a,2009.07.24.a +1107,22-Jul-2009,Unprovoked,USA,North Carolina,Holden Beach. Brunswick County,Swimming,Julia Anne Mittleberg,F,26,Laceration to left foot,False,Shark involvement questionable,"C. Creswell, GSAF",2009.07.22.b-Mittleberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.b-Mittleberg.pdf,2009.07.22.b,2009.07.22.b +1108,22-Jul-2009,Unprovoked,USA,Florida,"Intracoastal Waterway, St. Petersburg",Swimming,Jenna James,F,19,Laceration to lower right leg,False,Shark involvement questionable,"J. Eager; R. Reyes, Tampa Tribune, 7/22/2009",2009.07.22.a-JennaJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.22.a-JennaJames.pdf,2009.07.22.a,2009.07.22.a +1109,18-Jul-2009,Unprovoked,VIETNAM,Binh Dinh Province,Quy Nhon ,Swimming,Nguyen Quang Huynh,M,57,Severe bite to right leg,False,Shark involvement questionable,"C. Eksander, GSAF",2009.07.18-Haynh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.18-Haynh.pdf,2009.07.18,2009.07.18 +1110,11-Jul-2009,Provoked,BAHAMAS,unknown,unknown,Spearfishing,John Cooper,M,57,Leg bitten by shark that had been shot in the head by another diver PROVOKED INCIDENT,False,"Caribbean reef shark, 6'","Fox News, 7/14/2009",2009.07.11.b-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.b-Cooper.pdf,2009.07.11.b,2009.07.11.b +1111,11-Jul-2009,Unprovoked,USA,California,"San Onofre, San Diego County ",Paddle-surfing,Brian Hovnanian,M,57,"No injury, shark collided with surfer & board",False,5' shark,R. Collier,2009.07.11.a-Hovnanian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.11.a-Hovnanian.pdf,2009.07.11.a,2009.07.11.a +1112,07-Jul-2009,Unprovoked,SOUTH AFRICA,Western Cape Province,"Jogensfontein, Stilbaai",Surfing,Paul Buckley,M,37,Leg bitten,False,5' shark,"Weekend Post, 7/8/2009",2009.07.07-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.07-Buckley.pdf,2009.07.07,2009.07.07 +1113,05-Jul-2009,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Boogie Boarding,female,F,12,Right ankle bitten,False,5' shark,S. Petersohn,2009.07.05-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.05-Daytona.pdf,2009.07.05,2009.07.05 +1114,04-Jul-2009,Provoked,USA,Florida,"Biscayne National Park, Miami",Swimming,Carmen Dominguez ,F,43,Thigh injured by hooked shark PROVOKED INCIDENT,False,"Nurse shark, 6'","Miami Herald, 7//4/2009",2009.07.04-Miami.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.07.04-Miami.pdf,2009.07.04,2009.07.04 +1115,27-Jun-2009,Unprovoked,AUSTRALIA,New South Wales,"Seven Mile Beach, Gerroa",Surfing,Les Wade,M,52,2-inch laceration to upper left arm,False,"Thought to involve a Bronze whale shark, 2m","Brisbane Times, 6/28/2009",2009.06.27-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.27-Wade.pdf,2009.06.27,2009.06.27 +1116,21-Jun-2009,Invalid,USA,California,"Shell Beach, San Luis Obispo County",Surfing,male,M,26,Puncture wounds to foot,False,Shark involvement not confirmed,"San Luis Obispo Tribune, 6/24/2009",2009.06.21-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.21-California.pdf,2009.06.21,2009.06.21 +1117,16-Jun-2009,Invalid,USA,Florida,"Melbourne Beach, Brevard County",Crawling,Kevin Crowley,M,14,2-inch laceration to upper left arm,False,"Shark involvement probable, but not confirmed","Florida Today, 1/17/2009",2009.06.16-Crowley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.16-Crowley.pdf,2009.06.16,2009.06.16 +1118,Reported 14-Jun-2009,Provoked,VIETNAM,unknown,unknown,Fishing for sharks,Tran Van Quy,M,14,Hand bitten by hooked shark PROVOKED INCIDENT,False,White shark,"Tin Tuc online, 6/14/2009",2009.06.14.R-Quy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.14.R-Quy.pdf,2009.06.14.R,2009.06.14.R +1119,02-Jun-2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Scuba diving,"Nil, a dive guide",M,14,Lacerations to left hand,False,Oceanic whitetip shark,"E. Ritter, GSAF",2009.06.02.b-Nil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.b-Nil.pdf,2009.06.02.b,2009.06.02.b +1120,02-Jun-2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Scuba diving,"Luc, a Belgian diver",M,14,3 cm laceration to shoulder,False,Oceanic whitetip shark,"E. Ritter, GSAF",2009.06.02.a-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.02.a-Luc.pdf,2009.06.02.a,2009.06.02.a +1121,01-Jun-2009,Unprovoked,EGYPT,St. Johns Reef,Habili Gafar,Snorkeling,Katrina Tipio,F,50,fatal,True,"Oceanic whitetip shark, 2.5 to 3m","A. Hamada; E.Ritter, GSAF",2009.06.01-Tipio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.06.01-Tipio.pdf,2009.06.01,2009.06.01 +1122,31-May-2009,Provoked,TAIWAN,Off Green Island,Onboard the fishing vessel Chin Sheng Fa 13 ,Fishing,Zhang Sanqian,M,46,Lacerations to knee & left lower leg by electrocuted captive shark PROVOKED INCIDENT,False,80 kg shark,"Taiwan News, 5/21/09",2009.05.31-Sangian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.31-Sangian.pdf,2009.05.31,2009.05.31 +1123,25-May-2009,Provoked,USA,Florida,"Clearwater Beach, Pinellas County",Swimming,Dana Joseph,M,46,Right foot bitten,False,5' to 8' shark,"Tampa Bay online, 5/26/2009",2009.05.25-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.25-Joseph.pdf,2009.05.25,2009.05.25 +1124,17-May-2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Provido,M,31,Lacerations to left leg & foot,False,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.17-Provido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.17-Provido.pdf,2009.05.17,2009.05.17 +1125,16-May-2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Bryan Heath,M,49,Lacerations to right foot,False,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.16.b-Heath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.b-Heath.pdf,2009.05.16.b,2009.05.16.b +1126,16-May-2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Bryant,M,55,Lacerations to right hand,False,blacktip or spinner shark,"S. Petersohn, GSAF",2009.05.16.a-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.16.a-Bryant.pdf,2009.05.16.a,2009.05.16.a +1127,12-May-2009,Provoked,GUAM,North Region,Ritidian Point,Spearfishing,Jonathan Leon Guerrero,M,27,Speared shark bit his forearm PROVOKED INCIDENT,False,"Blacktip shark, 4'","N. Delgado, Pacific News Center; KUAM.com",2009.05.12-Guerrero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.12-Guerrero.pdf,2009.05.12,2009.05.12 +1128,06-Mar-2009,Provoked,BAHAMAS,Exuma Islands,Exuma Islands,Spearfishing,Luis Hernandez,M,48,Lacerations to right forearm after he poked the shark with his spear PROVOKED INCIDENT ,False,7' shark,"Sun Sentinel, 5/8/2009",2009.05.06-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.05.06-Hernandez.pdf,2009.05.06,2009.05.06 +1129,28-Apr-2009,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Spearfishing,Alicia,F,48,Multiple lacerations to right foot & ankle,False,7' shark,Alicia,2009.04.28-Alicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.28-Alicia.pdf,2009.04.28,2009.04.28 +1130,Reported 25-Apr-2009,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Drew Senner,M,48,No injury,False,7' shark,"R. Collier, GSAF",2009.04.25.R-Senner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.25.R-Senner.pdf,2009.04.25.R,2009.04.25.R +1131,21-Apr-2009,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,20,3 puncture wounds to posterior right ankle,False,7' shark,"S. Petersohn, GSAF",2009.04.21-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.21-NSB.pdf,2009.04.21,2009.04.21 +1132,20-Apr-2009,Unprovoked,PHILIPPINES,Batangas province,Mabini,Swimming,Gerald Perez,M,23,Legs bitten,False,7' shark,"Abs-cbnNEWS.com, 4/22/2009",2009.04.20-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.20-Perez.pdf,2009.04.20,2009.04.20 +1133,19-Apr-2009,Unprovoked,USA,Florida,"Carlin Park, Jupiter Inlet",Surfing,Bruce Klinker,M,52,Left foot bitten,False,7' shark,"UPI, 4/20/2009",2009.04.19-Klinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.19-Klinker.pdf,2009.04.19,2009.04.19 +1134,17-Apr-2009,Unprovoked,USA,Florida,"Walton Rocks, St Lucie County",Surfing,Alexander Wagner,M,31,Laceration to forearm,False,2' to 3' shark,"TC Palm, 4/17/09",2009.04.17-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.17-Wagner.pdf,2009.04.17.,2009.04.17. +1135,11-Apr-2009,Invalid,USA,Hawaii,Kona,Spearfishing,Paolo Dominici,M,49,Missing,False,Shark involvement not confirmed,"CBS, 4/14/2009",2009.04.11-Dominici.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.11-Dominici.pdf,2009.04.11,2009.04.11 +1136,12-Apr-2009,Unprovoked,AUSTRALIA,New South Wales,Fingal Bay,Surf skiing ,Heath Milne,M,40,"No injury, catapulted into the water & ski damage",False,2' to 3' shark,"Port Stephens Examiner, 4/15/2009",2009.04.12-Milne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.12-Milne.pdf,2009.04.12,2009.04.12 +1137,06-Apr-2009,Invalid,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Swimming,Odwa Hlanganisela,M,24,Body not recovered,False,Shark involvement not confirmed,"Daily Dispatch, 4/10/2009",2009.04.06.b-Hlanganisela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.b-Hlanganisela.pdf,2009.04.06.b,2009.04.06.b +1138,06-Apr-2009,Unprovoked,USA,California,San Diego County,Spearfishing,"Raymundo Ayus, Jr.",M,24,Shark struck him but the diver was not injured,False,"White shark, 12' to 15' female",R. Collier,2009.04.06.a-Ayus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.06.a-Ayus.pdf,2009.04.06.a,2009.04.06.a +1139,03-Apr-2009,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Wading,Jack May,M,15,Lacerations to right foot and ankle,False,"White shark, 12' to 15' female","Cape Coral News, 4/3/2009",2009.04.03-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.04.03-May.pdf,2009.04.03,2009.04.03 +1140,27-Mar-2009,Provoked,SOUTH AFRICA,Eastern Cape Province,2-3 km north of Sunday's River mouth,Fishing ,Tony Dell,M,59,Calf bitten while helping angler measure the shark during fishing competition PROVOKED INCIDENT,False,Raggedtooth shark,"The Herald (Port Elizabeth), 3/27/2007",2009.03.27-TonyDell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.27-TonyDell.pdf,2009.03.27,2009.03.27 +1141,21-Mar-2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Surfing,Luyolo Mangele,M,16,fatal,True,Raggedtooth shark,"Daily Dispatch, 3/22/2009",2009.03.21-Mangele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.21-Mangele.pdf,2009.03.21,2009.03.21 +1142,20-Mar-2009,Unprovoked,AUSTRALIA,New South Wales,Blue Bay,Surfing,Calvin Galbraith,M,17,"Laceration to right foot, puncture wounds to calf",False,Bronze whaler shark?,"Madurah Mail, 3/26/2009",2009.03.20-BatemansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.20-BatemansBay.pdf,2009.03.20,2009.03.20 +1143,19-Mar-2009,Unprovoked,AUSTRALIA,New South Wales,South Broulee,Surfing,male,M,17,"No injury, shark damaged surfboard",False,Bronze whaler shark?,"ABC News, 3/19/2009",2009.03.19.b-SouthBroulee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.b-SouthBroulee.pdf,2009.03.19.b,2009.03.19.b +1144,19-Mar-2009,Unprovoked,AUSTRALIA,New South Wales,Bateman's Bay,Surfing,Bernadette Davis,F,17,"No injury, shark bit nose of surfboard",False,Bronze whaler shark?,"Canberra Times, 3/20/2009",2009.03.19.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.19.a-Davis.pdf,2009.03.19.a,2009.03.19.a +1145,18-Mar-2009,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,female,F,17,Minor bite to ankle,False,3' to 4' shark,"S. Petersohn, GSAF",2009.03.18.a-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.18.a-PonceInlet.pdf,2009.03.18.a,2009.03.18.a +1146,Reported 17-Mar-2009,Unprovoked,MALAYSIA,Strait of Malacca,Pulau Payar Island,Feeding fish,female,F,17,Minor injury,False,Blacktip reef shark pup,"C. Johansson, GSAF",2009.03.17.R-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.R-Malaysia.pdf,2009.03.17.R,2009.03.17.R +1147,17-Mar-2009,Unprovoked,USA,Hawaii,Alenuihaha Channel,Swimming,Mike Spaulding,M,61,"Minor injury, bite chest and left calf",False,Thought to involve a cookie cutter shark,"B. Perry, Maui News, 3/18/2009",2009.03.17.a-Spaulding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.17.a-Spaulding.pdf,2009.03.17,2009.03.17 +1148,Reported 16-Mar-2009,Provoked,AUSTRALIA,Western Australia,"The Natural Jetty, Rottnest Island",Wading,male,M,21,Thigh bitten when he trod on the shark PROVOKED INCIDENT,False,"Wobbegong shark, 60cm","The West, 3/16/2009",2009.03.16.R-Rottnest-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.16.R-Rottnest-Island.pdf,2009.03.16.R,2009.03.16.R +1149,06-Mar-2009,Unprovoked,NEW CALEDONIA,South Province,Bourail,Surfing,Kevin Hannecart,M,19,fatal,True,"Wobbegong shark, 60cm","Les Nouvelles Caledoniennes, 3/7-10/2009",2009.03.06-Hannecart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.06-Hannecart.pdf,2009.03.06,2009.03.06 +1150,02-Mar-2009,Provoked,SOUTH AFRICA,Western Cape Province,Off Cape Point,Fishing,Gabriel Fernandez,M,40,Lacerations to arm and 2 fingers by hooked shark PROVOKED INCIDENT,False,"Blue shark, 1m","Cape Times, 3/3/2009",2009.03.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.02-Fernandez.pdf,2009.03.02,2009.03.02 +1151,01-Mar-2009,Boatomg,NEW ZEALAND,North Island,Taranaki,Fishing,"boat, occupants: Boyd Rutherford & Hamish Roper",M,40,"No injury to occupants, shark bit propeller",False,"Blue shark, 1m","Taranaki Daily News, 3/3/2009",2009.03.01-Taranaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Taranaki.pdf,2009.03.01.b,2009.03.01.b +1152,01-Mar-2009,Unprovoked,AUSTRALIA,New South Wales,Avalon,Surfing,Andrew Lindop,M,15,Lacerations to leg,False,2.6 m shark,"Sunday Telegraph, 3/1/2009",2009.03.01-Lindop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.03.01-Lindop.pdf,2009.03.01.a,2009.03.01.a +1153,22-Feb-2009,Unprovoked,AUSTRALIA,Queensland,Batt Reef,Fishing,male,M,15,Severe laceration to finger,False,2.6 m shark,"The Australian, 2/22/2009",2009.02.22-BattReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.22-BattReef.pdf,2009.02.22,2009.02.22 +1154,18-Feb-2009,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, near Port Macquarie",Surfing,Glen Lockery,M,15,"No injury to surfer, but the nose of his board was broken",False,2.6 m shark,"Daily Telegraph, 2/24/2009",2009.02.18-Lockery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.18-Lockery.pdf,2009.02.18,2009.02.18 +1155,12-Feb-2009,Unprovoked,AUSTRALIA,New South Wales,"Bondi Beach, Sydney",Surfing,Glen Orgias,M,33,Severe injury to hand ,False,"White shark, 2.5m ",The Sydney Morning Herald 2/24/2009,2009.02.12-Orgias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.12-Orgias.pdf,2009.02.12,2009.02.12 +1156,11-Feb-2009,Unprovoked,AUSTRALIA,New South Wales,"Garden Point, Woolloomooloo Sydney Harbour","Diving, but on the surface when bitten by the shark",Paul Degelder,M,31,Severe injuries to right hand & right thigh. Right hand surgically amputated & his right leg a week later,False,"Bull shark, 2.7 m ","ABC News, 2/11/2009",2009.02.11-Degelder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.11-Degelder.pdf,2009.02.11,2009.02.11 +1157,08-Feb-2009,Sea Disaster,USA,Puerto Rico,Quebradillas,Air Disaster,occupant of a Cessna 206,M,31,fatal,True,"Bull shark, 2.7 m ","C. Ekstander, GSAF",2009.02.08-PuertoRicoAirCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.08-PuertoRicoAirCrash.pdf,2009.02.08,2009.02.08 +1158,07-Feb-2009,Unprovoked,AUSTRALIA,New South Wales,Cellito Beach,Surfing,Durwin Keg,M,41,"No injury, surfboard dented",False,"White shark, 12' ","D. Keg; Herald Sun, 2/8/2009",2009.02.07.b-Keg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.b-Keg.pdf,2009.02.07.b,2009.02.07.b +1159,07-Feb-2009,Unprovoked,AUSTRALIA,New South Wales,Sandon,Surfing,Joe Kennard,M,41,"No injury, flung from surfboard by the shark",False,"White shark, 12' ","A. Vlastaras, Daily Examiner, 3/9/2009",2009.02.07.a-Kennard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.02.07.a-Kennard.pdf,2009.02.07.a,2009.02.07.a +1160,Reported 27-Jan-2009,Provoked,AZORES,Onboard the fishing vessel Nuevo Cedes ,Onboard the fishing vessel Nuevo Cedes ,Fishing,A Spanish fisherman,M,49,Left forearm bitten PROVOKED INCIDENT,False,"White shark, 12' ","C. Johansson, GSAF",2009.01.27.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.27.R-Azores.pdf,2009.01.27.R,2009.01.27.R +1161,Reported 26-Jan-2009,Invalid,BRAZIL,Praia do Olho d'Aqua,Praia do Olho d'Aqua,Fishing,Luciano Guimaraes dos Santos,M,17,Probable drowning with post-mortem bites,False,Shark involvement prior to death was not confirmed,"Jornal Pequeno, 1/26/2009",2009.01.26.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.26.R-Brazil.pdf,2009.01.26.R,2009.01.26.R +1162,25-Jan-2009,Unprovoked,CUBA,Guantanamo Province,Guantanamo Bay,Spearfishing,John Emory,M,15,Severe lacerations to lower left leg,False,Bull shark,"J. Emory; Caribbean Net, 4/142009",2009.01.25-Emory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.25-Emory.pdf,2009.01.25,2009.01.25 +1163,24-Jan-2009,Boat,NEW ZEALAND,North Island,Alderman Islands,Fishing,7.2 m boat. Occupant Kelvin Travers,,15,"No injury to occupant, shark removed small auxiliary outboard motor",False,Bull shark,"NZ Herald, 1/26/2009",2009.01.24.c-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.c-NewZealand.pdf,2009.01.24.c,2009.01.24.c +1164,24-Jan-2009,Unprovoked,AUSTRALIA,New South Wales,"Surf Beach, Batemans Bay",Swimming,Jeremy McDonagh,M,19,Hand injured,False,Bull shark,"ABC News, 1/28/2009",2009.01.24.b-McDonough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.b-McDonough.pdf,2009.01.24.b,2009.01.24.b +1165,24-Jan-2009,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Swimming,Sikhanyiso Bangilizwe,M,25,fatal,True,Tiger shark,"Daily Dispatch, 1/26/2009",2009.01.24.a-Bangalizwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.24.a-Bangalizwe.pdf,2009.01.24.a,2009.01.24.a +1166,23-Jan-2009,Invalid,BRAZIL,Maranhão,Olho d'Água ,Swimming,Luciano Guimarães dos Santos ,M,17,"Drowned, body scavenged by shark",False,Invalid,"Jornal Pequeno, 1/26/2009",2009.01.23-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.23-Santos.pdf,2009.01.23,2009.01.23 +1167,18-Jan-2009,Boat,AUSTRALIA,Victoria,Off Tower Hill,Fishing,Occupants: Scott & John Fulton,M,17,"No injury to occupants, shark bit propeller",False,"White shark, 5.5 m ","The Standard, 1/20/2009",2009.01.18-Fulton-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.18-Fulton-boat.pdf,2009.01.18,2009.01.18 +1168,16-Jan-2009,Unprovoked,NEW ZEALAND,South Island,Karitane Beach,Surfing,Tane Tokona,M,17,"No injury, bumped off board by the shark",False,"White shark, 5.5 m ","R. Weeks, GSAF",2009.01.16-Tokana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.16-Tokana.pdf,2009.01.16,2009.01.16 +1169,Reported 13-Jan-2009,Unprovoked,SOUTH AFRICA,Western Cape Province,"Shark Alley, off Gansbaai",Surfing,4 poachers ,,17,fatal,True,White sharks,"ABC News, 1/13/2009",2009.01.13.R-Poachers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.13.R-Poachers.pdf,2009.01.13.R,2009.01.13.R +1170,12-Jan-2009,Unprovoked,AUSTRALIA,New South Wales,"Windang, Lake Illawara",Snorkeling,Steven Fogarty,M,24,Puncture wounds to right calf,False,"Dusky shark, 2m","T. Peake, GSAF",2009.01.12-Fogarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.12-Fogarty.pdf,2009.01.12,2009.01.12 +1171,11-Jan-2009,Unprovoked,AUSTRALIA,Tasmania,Binalong Bay,Surfing,Hannah Mighall,F,13,Severe lacerations to right leg,False,"White shark, 5m","P. Kemp, GSAF; C. Black pp. 169-177",2009.01.11.b-Mighall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.b-Mighall.pdf,2009.01.11.b,2009.01.11.b +1172,11-Jan-2009,Unprovoked,AUSTRALIA,New South Wales,Fingal Beach,Surfing,Jonathan Beard,M,31,Left thigh severely bitten,False,"White shark, 3.5m","T. Peake, GSAF",2009.01.11.a-Beard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.11.a-Beard.pdf,2009.01.11.a,2009.01.11.a +1173, 10-Jan-2009,Boat,NEW ZEALAND,North Island,Hawkes Bay,Fishing,Bry & David Mossman & 2 friends,,31,"No injury to occupants, shark hit boat & bit outboard motor",False,"Mako shark, 3m","New Zealand Herald, 1/10/2009",2009.01.10.R-Mossman-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.R-Mossman-boat.pdf,2009.01.10.R,2009.01.10.R +1174,10-Jan-2009,Unprovoked,ECUADOR,Galapagos Islands,Isla Isabella,Surfing,Gonzalo Vásquez Alcívar ,M,22,Right lower leg bitten & defense wounds to hand,False,"Mako shark, 3m","C. Johansson, GSAF",2009.01.10.a-Alcivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.10.a-Alcivar.pdf,2009.01.10.a,2009.01.10.a +1175,06-Jan-2009,Unprovoked,NEW ZEALAND,North Island,Haumoana ,Swimming,Greg Sims,M,49,Posterior thigh bitten,False,Broadnose sevengill shark,"R. Weeks, GSAF",2009.01.06-Sims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.06-Sims.pdf,2009.01.06,2009.01.06 +1176,Jan-2009,Unprovoked,CUBA,Guantanamo Province,Guantanamo,Spearfishing,John,,49,Lacerations to right calf,False,Bull shark,"C. Johansson, GSAF",2009.01.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2009.01.00-Cuba.pdf,2009.01.00,2009.01.00 +1177,30-Dec-2008,Invalid,AUSTRALIA,Western Australia,Port Kennedy Beach,Crabbing,5 m aluminum dinghy - occupants Mr. & Mrs. Paul Vickery,,49,"Reports said a shark attacked the dinghy, but Vickery said it did not",False,No shark involvement,"Ninemsn, 12/30/2008",2008.12.30-Vickery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.30-Vickery.pdf,2008.12.30,2008.12.30 +1178,27-Dec-2008,Boating,AUSTRALIA,Tasmania,near Schouten Island,Yacht race,Wild Oats XI,,49,No injury to occupants - shark became entangled in aft rudder,False,2 m shark,"Sydney Morning Herald, 12/28/2008",2008.12.27.d-WildOats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.d-WildOats.pdf,2008.12.27.d,2008.12.27.d +1179,27-Dec-2008,Unprovoked,AUSTRALIA,New South Wales,Seal Rocks,Boogie Boarding,Bayden Schumann,M,10,"No injury, shark tore his swim fin",False,2 m shark,"T. Peake, GSAF",2008.12.27.c-Schumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.c-Schumann.pdf,2008.12.27.c,2008.12.27.c +1180,27-Dec-2008,Boating,AUSTRALIA,New South Wales,"Long Reef, north of Sydney",Kayaking,Steve Kulcsar,M,29,"No injury, shark struck kayak, catapulting him into the water",False,"White shark, 4m to 5m ","Canberra Times, 12/28/2008",2008.12.27.b-Kulcsar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.b-Kulcsar.pdf,2008.12.27.b,2008.12.27.b +1181,27-Dec-2008,Unprovoked,AUSTRALIA,Western Australia,Port Kennedy Beach,Snorkeling,Brian Guest,M,51,fatal,True,4 to 5m white shark,"T. Peake, GSAF",2008.12.27.a-Guest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.27.a-Guest.pdf,2008.12.27.a,2008.12.27.a +1182,20-Dec-2008,Boating,USA,California,"Dillon Beach, Marin County",Kayaking,Tony Johnson,M,51,"No injury, shark struck paddle",False,White shark,R. Collier,2008.12.20-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.20-Johnson.pdf,2008.12.20,2008.12.20 +1183,14-Dec-2008,Unprovoked,NEW ZEALAND,North Island,Maraetai,Fishing,Ken Lindberg,M,51,Lacerations to left calf and ankle,False,Bronze whaler shark?,"R.D. Weeks, GSAF",2008.12.14-Lindberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.14-Lindberg.pdf,2008.12.14,2008.12.14 +1184,10-Dec-2008,Provoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing,Luke Parker,M,15,"Lacerations to knees, thigh and hip by hooked shark PROVOKED iNCIDENT ",False,"Raggedtooth shark, 2m","The Herald, 12/12/2008",2008.12.10-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.10-Parker.pdf,2008.12.10,2008.12.10 +1185,06-Dec-2006,Boating,AUSTRALIA,New South Wales,Mowarry Point,Fishing,"6 m Seaduce - Occupants: Allen Roberts, Jason Savage & Rob Lindsay.",,15,Shark bit boats sea anchor,False,"White shark, 4.5 to 5 m ",S. Chenhall,2008.12.06-boat_Seaducer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.06-boat_Seaducer.pdf,2008.12.06,2008.12.06 +1186,Dec-2008,Unprovoked,MOZAMBIQUE,Inhambane Province,Chidenguele,Spearfishing,Darryl Kriel,M,15,fatal,True,Zambesi shark?,J. Little,2008.12.00-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.12.00-Kriel.pdf,2008.12.00,2008.12.00 +1187,28-Nov-2008,Unprovoked,EGYPT,Red Sea,Elphinstone Reef,Scuba diving,female diver,F,15,Lacerations to fingers,False,Oceanic whitetip shark,"E. Ritter, GSAF",2008.11.28-ElphinstoneReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.28-ElphinstoneReef.pdf,2008.11.28,2008.11.28 +1188,25-Nov-2008,Sea Disaster,PHILIPPINES,Batanes Provine,Luzon Strait,Sinking of the cargo ship Mark Jason,4 crew,M,15,"Of the 20 crew, 4 were bitten by shark. None of their iinjuries were life-threatening",False,Oceanic whitetip shark,"C. Johansson, GSAF",2008.11.25-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.25-Philippines.pdf,2008.11.25,2008.11.25 +1189,24-Nov-2008,Unprovoked,ECUADOR,Galapagos Islands,Santa Cruz,Sinking of the cargo ship Mark Jason,a Danish tourist,F,15,Leg bitten,False,Oceanic whitetip shark,ecuadorinmediato.com,2008.11.24-Galapagos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.24-Galapagos.pdf,2008.11.24,2008.11.24 +1190,09-Nov-2008,Boating,AUSTRALIA,South Australia,North Haven,Fishing,"C. Johansson, GSAF",M,15,"No injury to occupant, shark bit dinghy & motor",False,Bronze whaler shark,"C. Johansson, GSAF",2008.11.09.b-dinghy-NorthHaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.b-dinghy-NorthHaven.pdf,2008.11.09.b,2008.11.09.b +1191,09-Nov-2008,Sea Disaster,TAIWAN,50 miles off Kaohsiung,50 miles off Kaohsiung,Fishing boat swamped in storm,Chen Te-hsing,M,45,fatal,True,Bronze whaler shark,"Reuters, 11/10/2008",2008.11.09.a-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.09.a-Taiwan.pdf,2008.11.09.a,2008.11.09.a +1192,06-Nov-2008,Unprovoked,PHILIPPINES,Luzon,"off Paoay, Ilocos Norte Province",Fishing,Joel Bacud,M,39,fatal,True,Bronze whaler shark,"Sun Star, 11/08/2008",2008.11.06-Bacud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.11.06-Bacud.pdf,2008.11.06,2008.11.06 +1193,22-Oct-2008,Provoked,AUSTRALIA,New South Wales,"Oceanworld, Manley",Scuba diving,Steve Cloke,M,34,Small laceration to head from captive shark,False,"Grey nurse shark, 3m","Herald, 10/22/2008",2008.10.22-Clote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.22-Clote.pdf,2008.10.22,2008.10.22 +1194,21-Oct-2008,Unprovoked,NEW CALEDONIA,unknown,unknown,Spearfishing,Nicolas Wright,M,24,Legs bitten,False,Lemon shark,"C. Johansson, GSAF",2008.10.21-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.21-Wright.pdf,2008.10.21,2008.10.21 +1195,12-Oct-2008,Provoked,AUSTRALIA,Northern Territory,Darwin,Fishing,Geoff Johnson,M,50,Right leg injured by hook and hooked shark PROVOKED INCIDENT,False," reef shark, 1.8m","Northern Territory News, 10/14/2008",2008.10.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.12-Johnson.pdf,2008.10.12,2008.10.12 +1196,11-Oct-2008,Unprovoked,AUSTRALIA,New South Wales,Lake Macquarie,Surfing,male,M,15,"No injury, board damaged",False," reef shark, 1.8m","Herald, 10/12/2008",2008.10.11-LakeMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.11-LakeMacquarie.pdf,2008.10.11,2008.10.11 +1197,08-Oct-2008,Unprovoked,USA,Florida,"Santa Rosa Beach, Walton County",Fishing,Hudson Anthony,M,11,Lacerations,False," reef shark, 1.8m","L. Garlngton, Memphis Commercial Appeal, 10/9/2008",2008.10.08-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.08-Anthony.pdf,2008.10.08,2008.10.08 +1198,06-Oct-2008,Unprovoked,CROATIA," Split-Dalmatia Count,","Smokvina Bay, Vis Island",Spearfishing,Damjan Pecek ,M,43,Calf bitten,False,5 m white shark,A. De Maddalena,2008.10.06-Pecek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.10.06-Pecek.pdf,2008.10.06,2008.10.06 +1199,28-Sep-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Logan,M,44,Small puncture wounds to the heel of left foot,False,5 m white shark,S. Petersohn,2008.09.28.b-Logan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.b-Logan.pdf,2008.09.28.b,2008.09.28.b +1200,28-Sep-2008,Unprovoked,USA,Florida,Bethune Beach,Surfing,David Carr,M,40,Right foot bitten,False,+3' shark,S. Petersohn,2008.09.28.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.28.a-Carr.pdf,2008.09.28.a,2008.09.28.a +1201,15-Sep-2008,Provoked,AUSTRALIA,Northern Territory,Near Croker Island,Swimming,Quentin Gorrell,M,43,Right hand lacerated by netted shark PROVOKED INCIDENT,False,Bronze whaler shark,"Northern Territory News, 9/18/2008",2008.09.15-Gorrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.15-Gorrell.pdf,2008.09.15,2008.09.15 +1202,14-Sep-2008,Unprovoked,USA,Florida,"Ormond-by-the-Sea, Volusia County",Swimming,S. Petersohn,M,32,Lacerations to foot,False,2' to 3' juvenile shark,S. Petersohn,2008.09.14-Ormond-by-the-Sea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.14-Ormond-by-the-Sea.pdf,2008.09.14,2008.09.14 +1203,09-Sep-2008,Unprovoked,USA,Hawaii,"Ka'a'awa, Oahu",Surfing,Todd Murashige,M,40,Bitten on right thigh & calf,False,Tiger shark,"Honolulu Advertiser, 9/10/08",2008.09.09-Murashige.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.09-Murashige.pdf,2008.09.09,2008.09.09 +1204,08-Sep-2008,Unprovoked,USA,California,"Surf Beach, Lompoc, Santa Barbara County",Surfing,Kyle K.,M,40,"No injury to surfer, board bitten",False,"White shark, 14' to 16' ",R. Collier,2008.09.08-Kyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.08-Kyle.pdf,2008.09.08,2008.09.08 +1205,07-Sep-2008,Unprovoked,AUSTRALIA,New South Wales,"Clarks Beach, Byron Bay",Surfing,John Morgan,M,51,Shark became tangled in his surfboard leash. The surfer was not injured,False,3 m shark,"Mailonline.com, 9/8/2008",2008.09.07-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.07-Morgan.pdf,2008.09.07,2008.09.07 +1206,06-Sep-2008,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,43,Minor injury to foot,False,3 m shark,"S. Petersohn, GSAF",2008.09.06.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.b-NSB.pdf,2008.09.06.b,2008.09.06.b +1207,06-Sep-2008,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,male,M,15,Minor injury to foot,False,3 m shark,"S. Petersohn, GSAF",2008.09.06.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.06.a-NSB.pdf,2008.09.06.a,2008.09.06.a +1208,01-Sep-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joe McGauley,M,52,Shark bumped right ankle,False,4' shark,J. McGauley,2008.09.01-McGauley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.01-McGauley.pdf,2008.09.01,2008.09.01 +1209,Sep-2008,Unprovoked,USA,Florida,Hutchinson Island,Surfing,Daryl Zbar,M,52,Right hand bitten,False,4' shark,"C. Johannson, GSAF",2008.09.00-Zbar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.09.00-Zbar.pdf,2008.09.00,2008.09.00 +1210,30-Aug-2008,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Ben Vining,M,29,"No injury, bumped off board by the shark",False,4' shark,"C. Johansson, GSAF",2008.08.30.c-Vining.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.c-Vining.pdf,2008.08.30.c,2008.08.30.c +1211,30-Aug-2008,Invalid,USA,Hawaii,"McKenzie Beach Park in Pahoa, Hawai'i ",Swimming,Kameron Brown,M,27,Death was probably due to drowning,False,Shark involvement not confirmed,"D. Nakaso, Honolulu Advertiser, 8/31/2008",2008.08.30.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.b-Brown.pdf,2008.08.30.b,2008.08.30.b +1212,30-Aug-2008,Provoked,ENGLAND,North Devon, Lundy Island,Fishing,Stephen Perkins,M,52,Wrist bitten by hooked shark PROVOKED INCIDENT,False,Blue shark,"Telegraph.co.uk, 9/1/2008",2008.08.30.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.30.a-Perkins.pdf,2008.08.30.a,2008.08.30.a +1213,28-Aug-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Thomas Gold,M,19,Superfical cut to left ankle,False,Blue shark,"S. Petersohn, GSAF",2008.08.28-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.28-Gold.pdf,2008.08.28,2008.08.28 +1214,27-Aug-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Alexander Zgura,M,26,Lacerations to lower left leg,False,6' shark,"S. Petersohn, GSAF",2008.08.27-Zgura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.27-Zgura.pdf,2008.08.27,2008.08.27 +1215,24-Aug-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County","Swimming, towing surfboard",Jacob Shoup,M,20,Minor injury to left foot,False,6' shark,"S. Petersohn, GSAF",2008.08.24-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.24-Shoup.pdf,2008.08.24,2008.08.24 +1216,24-Aug-2008,Invalid,USA,North Carolina,"Surf City, Topsail Island, Pender County",Surfing,Jessica Brothers,F,20,Calf bitten,False,Shark involvement not confirmed,"C. Creswell, GSAF",2008.08.22-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.22-Brothers.pdf,2008.08.22,2008.08.22 +1217,20-Aug-2008,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Jack Miller,M,47,3 lacerations to forearm,False,Shark involvement not confirmed,News-Press.com ,2008.08.20-JackMiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.20-JackMiller.pdf,2008.08.20,2008.08.20 +1218,18-Aug-2008,Invalid,USA,South Carolina,"North Myrtle Beach, Horry County",Swimming,male,M,7,Minor injuries,False,Shark involvement not confirmed,C. Creswell,2008.08.18-boy-SC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.18-boy-SC.pdf,2008.08.18,2008.08.18 +1219,16-Aug-2008,Unprovoked,USA,US Virgin Islands,Buck Island,Treading water,Elizabeth Riggs,F,38,Severe lacerations to left foot,False,8' bull shark or Caribbean reef shark,"M. Levne, GSAF",2008.08.16-Riggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.16-Riggs.pdf,2008.08.16,2008.08.16 +1220,12-Aug-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Emma Klopchin ,F,13,Puncture wounds & 3-inch laceration to right calf,False,8' bull shark or Caribbean reef shark,"S. Petersohn, GSAF",2008.08.12-Klopchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.12-Klopchin.pdf,2008.08.12,2008.08.12 +1221,11-Aug-2008,Unprovoked,USA,Hawaii,"Ala Moana Beach Park, Oah'u",Diving,male,M,13,"No injury, shark grabbed his bag of fish",False,"Tiger shark, 12'","Honolulu Advertiser, 8/13/2008",2008.08.11-AlaMoana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.08.11-AlaMoana.pdf,2008.08.11,2008.08.11 +1222,30-Jul-2008,Unprovoked,AUSTRALIA,Victoria,Levys Beach,Surfing,Aaron Seare,M,31,"No injury, surfboard leash severed",False,8' white shark or 7-gill shark,"Herald Sun, 7/31/2008",2008.07.30-Seare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30-Seare.pdf,2008.07.30.R,2008.07.30.R +1223,Reported 30-Jul-2008,Unprovoked,SOUTH AFRICA,unknown,unknown,Surfing,Michael Rutzen,M,31,Lacerations to fingers,False,White shark,http://www.youtube.com/watch?v=0jVJFXlapWY&feature=related,2008.07.30.R-Rutzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.30.R-Rutzen.pdf,2008.07.30,2008.07.30 +1224,27-Jul-2008,Unprovoked,PANAMA,San Carlos,Playa Teta,Swimming or surfing,Gerardo Solis ,M,31,5 lacerations to left foot,False,3' shark,"International Herald Tribune, 7/28/2008",2008.07.27-Solis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.27-Solis.pdf,2008.07.27,2008.07.27 +1225,26-Jul-2008,Unprovoked,MEXICO,Cabo San Lucas,Cabo San Lucas,Swimming,Ryan Seacrest,M,33,3 puncture wounds to toe,False,2' shark,"Fox News, 7/28/2008",2008.07.26.b-Seacrest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.b-Seacrest.pdf,2008.07.26.b,2008.07.26.b +1226,26-Jul-2008,Unprovoked,USA,Hawaii,"Honokowai, Maui",Swimming,U. Mataafa,M,33,Minor injury,False,2' to 3' reef shark,"Maui News, 7/27/2008",2008.07.26.a-Maui,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.26.a-Maui,2008.07.26.a,2008.07.26.a +1227,25-Jul-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Ethan Fulton,M,17,Right foot bitten,False,2' to 3' reef shark,"S. Petersohn, GSAF",2008.07.25.b-Fulton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.b-Fulton.pdf,2008.07.25.b,2008.07.25.b +1228,25-Jul-2008,Unprovoked,USA,Hawaii,"Lahilahi Point, Oahu",Snorkeling,Kaori Fiack ,F,44,Forearm bitten ,False,2' to 3' reef shark,"Honolulu Star Bulletin, 7/26/2008",2008.07.25.a-Fiack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.25.a-Fiack.pdf,2008.07.25.a,2008.07.25.a +1229,24-Jul-2008,Unprovoked,USA,North Carolina,"Surf City, Topsail Island, Pender County",Wading,Jake Martin,M,9,Minor lacerations to toe,False,3' shark,"C. Creswell, GSAF",2008.07.24.b-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.b-Martin.pdf,2008.07.24.b,2008.07.24.b +1230,24-Jul-2008,Unprovoked,USA,North Carolina,"Topsail Island, Pender County",Wading,Madeline Sinsley ,F,8,Lacerations to dorsum of right foot ,False,3' to 4' shark,"C. Creswell, GSAF",2008.07.24.a-Sinsley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.24.a-Sinsley.pdf,2008.07.24.a,2008.07.24.a +1231,23-Jul-2008,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Troy Zettle,M,15,Foot bitten after he stepped on the shark PROVOKED INCIDENT,False,3' to 4' shark,"S. Petersohn, GSAF",2008.07.23-Zettle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.23-Zettle.pdf,2008.07.23,2008.07.23 +1232,19-Jul-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,S.A.,M,16,Lacerations to lower left leg,False,4' shark,"S. Petersohn, GSAF",2008.07.19-NewSmyrnaBach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.19-NewSmyrnaBach.pdf,2008.07.19,2008.07.19 +1233,18-Jul-2008,Unprovoked,EGYPT,Daedalus Reef,Daedalus Reef,Diving,Russian male,M,16,Leg severed,False,Oceanic whitetip shark,Ocean7,2008.07.18-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.18-RedSea.pdf,2008.07.18,2008.07.18 +1234,13-Jul-2008,Invalid,USA,North Carolina,"Carolina Beach, New Hanover County",Body surfing,Donald Griffin,M,52,"Bruises, abrasions and some spinal and nerve damage when collided with marine animal, possibly a shark or dolphin.",False,Shark involvement not confirmed,"C. Creswell, GSAF",2008.07.13-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.13-Griffin.pdf,2008.07.13,2008.07.13 +1235,11-Jul-2008,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Surfing,male,M,24,Laceration to foream,False,Shark involvement not confirmed,"C. Creswell, GSAF",2008.07.11-Isle-of-Palms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.11-Isle-of-Palms.pdf,2008.07.11,2008.07.11 +1236,09-Jul-2008,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Bailleigh Foster,F,14,Lacerations to right foot,False,Shark involvement not confirmed,"C. Creswell, GSAF",2008.07.09-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.09-Foster.pdf,2008.07.09,2008.07.09 +1237,05-Jul-2008,Unprovoked,USA,South Carolina,"Litchfield Beach, Georgetown County",Swimming,J.L.,F,17,Lacerations to right foot,False,Shark involvement not confirmed,"C. Creswell, GSAF",2008.07.05-Lunti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.05-Lunti.pdf,2008.07.05,2008.07.05 +1238,Late Jul-2008,Boating,UNITED KINGDOM,Sussex,"Rock-a-Nore, Hastings",Rowing an inflatable dinghy,Occupants: Luke Jones & James Sequin ,M,16,Shark leapt into & damaged the dinghy but no injury to occupants,False,"Starry smoothhound shark, 1m","Hastings Observer, 8/1/2008",2008.07.00-UK-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.07.00-UK-dinghy.pdf,2008.07.00,2008.07.00 +1239,28-Jun-2008,Invalid,USA,Hawaii,"Kamilo Point, Hawai'i",Wading,Nathan Labarios,M,53,Probable drowning with post-mortem bites,False,Shark involvement prior to death not confirmed,"Honolulu Star Bulletin, 6/30/2008",2008.06.28.c-Labarios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.c-Labarios.pdf,2008.06.28.c,2008.06.28.c +1240,28-Jun-2008,Unprovoked,BAHAMAS,Abaco Islands,Abaco Islands,Spearfishing,Max Briggs,M,42,Lacerations to calf,False,"Bull shark, 6' to 7'","M. Briggs; C. Johansson, GSAF",2008.06.28.b-Briggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.b-Briggs.pdf,2008.06.28.b,2008.06.28.b +1241,28-Jun-2008,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surf skiing ,Kobus Maritz,M,46,"No injury, ski bitten",False,"White shark, 2m",Kobus Maritz,2008.06.28.a-Maritz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.28.a-Maritz.pdf,2008.06.28.a,2008.06.28.a +1242,Reported 26-Jun-2008,Unprovoked,SOUTH AFRICA,Western Cape Province,Struis Bay,Spearfishing (free diving),Kevin Macghie ,M,46,No injury,False,"White shark, 4.5m",D. Inggs; Gletwyn Rubidge’s Spearfishing and Freediving blog,2008.06.26.R-Macghie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.R-Macghie.pdf,2008.06.26.R,2008.06.26.R +1243,26-Jun-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,29,Minor laceration to foot,False,"White shark, 4.5m",S. Petersohn,2008.06.26.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.b-NSB.pdf,2008.06.26.b,2008.06.26.b +1244,26-Jun-2008,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Preston Pearman,M,37,Lacerations to hand,False,4.5 to 5' shark,"P. Pearman; C. Creswell, GSAF",2008.06.26.a-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.26.a-Pearman.pdf,2008.06.26.a,2008.06.26.a +1245,24-Jun-2008,Unprovoked,BRAZIL,Bahia,Guarajuba,Surfing,Ricardo Garcia Santo Sé  ,M,37,"No injury, board bitten",False,4.5 to 5' shark,"O Globo, 6/25/2008",2008.06.24-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.24-Brazil.pdf,2008.06.24,2008.06.24 +1246,21-Jun-2008,Boating,USA,California,"West Cove, Catalina Island",Kayaking,Bettina Pereira,F,40," No injury. Shark bumped kayak, flinging her into the water. ",False,"White shark, 15'","R. Collier, GSAF",2008.06.21-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.21-Pereira.pdf,2008.06.21,2008.06.21 +1247,20-Jun-2008,Unprovoked,USA,Florida,"Fernandina Beach, Nassau County",Wading,Jennifer Cation,F,35,Lacerations to lower right calf,False,"White shark, 15'","News-Leader, 6/21/2008",2008.06.20-Cation.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.20-Cation.pdf,2008.06.20,2008.06.20 +1248,11-Jun-2008,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre, Olinda",Surfing,Juan Rodrigues Galvao ,M,14,Laceration to left leg & foot,False,"White shark, 15'","O Globo, 6/12/2008",2008.06.11-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.11-Rodrigues.pdf,2008.06.11,2008.06.11 +1249,07-Jun-2008,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Body surfing,John Vasbinder,M,40,Lacerations & abrasions to right hand,False,"White shark, 15'","TC Palm, 6/20/08",2008.06.07-Vasbinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.07-Vasbinder.pdf,2008.06.07,2008.06.07 +1250,Reported 02-Jun-2008,Boating,SCOTLAND,Easter Ross,Balintore Bay,Fishing,"12' boat, 2 occupants",,40,No injury to occupants; shark struck their boat,False,Basking shark,"C. Johansson, GSAF",2008.06.02.R-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.02.R-Scotland.pdf,2008.06.02.R,2008.06.02.R +1251,01-Jun-2008,Unprovoked,USA,South Carolina,Cherry Grove,Body surfing,Madi Taff,F,15,Foot bitten,False,5' shark,"C. Creswell, GSAF",2008.06.01.b-Taff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01.b-Taff.pdf,2008.06.01.b,2008.06.01.b +1252,01-Jun-2008,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife",Swimming,Wellington dos Santos ,M,14,"Hand severed, buttocks bitten",False,Bull shark,Associated Press,2008.06.01-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.06.01-Santos.pdf,2008.06.01.a,2008.06.01.a +1253,26-May-2008,Unprovoked,USA,North Carolina,"Hammocks Beach State Park, Bear Island, Onslow County",Surfing,William Early,M,9,Biceps & lower arm bitten,False,Bull shark,"C. Creswell, GSAF",2008.05.26-Early.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.26-Early.pdf,2008.05.26,2008.05.26 +1254,24-May-2008,Sea Disaster,BAHAMAS,Grand Bahama Island,Off West End,Sea Disaster,unknown,M,9,Boat capsized in squall. 2 bodies scavenged by sharks,False,Tiger sharks in area,Associated Press,2008.05.24.b-BahamasBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.b-BahamasBoat.pdf,2008.05.24.b,2008.05.24.b +1255,24-May-2008,Unprovoked,MEXICO,Guerro,Playa Linda,Surfing,Bruce Grimes,M,49,Lacerations to right forearm and hand,False,3 m shark,Associated Press,2008.05.24.a-Grimes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.24.a-Grimes.pdf,2008.05.24.a,2008.05.24.a +1256,23-May-2008,Unprovoked,MEXICO,Guerro,Pantla Beach,Surfing,Osvaldo Mata Valdovinos ,M,21,fatal,True,2 m shark,Reuters,2008.05.23-Mata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.23-Mata.pdf,2008.05.23,2008.05.23 +1257,14-May-2008,Unprovoked,FIJI,Yasawa Islands,Turtle Island,Night diving,Aisake Sadole,M,28,fatal,True,2 m shark,"Fiji Times, 5/15/2008",2008.05.14-Sidole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.14-Sidole.pdf,2008.05.14,2008.05.14 +1258,10-May-2008,Unprovoked,AUSTRALIA,Western Australia,Albany,Swimming,Jason Cull,M,37,Severe lacerations to left leg,False,"White shark, 4m","Perth Now, 5/10/2008",2008.05.10-JasonCull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.10-JasonCull.pdf,2008.05.10,2008.05.10 +1259,07-May-2008,Unprovoked,NEW CALEDONIA,North Province,Hienghène,Fishing,male,M,40,Lower legs bitten,False,2 small bull sharks,"C. Johansson, GSAF",2008.05.07.b-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.b-NewCaledonia.pdf,2008.05.07.b,2008.05.07.b +1260,07-May-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Zane Atcha,M,6,2 inch laceration to left lower calf.,False,2 small bull sharks,"M. Johnson, Daytona News-Journal, 5/8/2008; S. Petersohn",2008.05.07.a-Atcha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.07.a-Atcha.pdf,2008.05.07.a,2008.05.07.a +1261,01-May-2008,Provoked,SOUTH AFRICA,unknown,unknown,Fishing,male,M,24,Leg bitten by shark taken aboard Japanese trawler PROVOKED INCIDENT,False,2 small bull sharks,National Sea Rescue Institute,2008.05.01-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.05.01-fisherman.pdf,2008.05.01,2008.05.01 +1262,28-Apr-2008,Unprovoked,MEXICO,Guerro,Troncones Beach,Surfing,Adrian Ruiz,M,24,fatal,True,Tiger shark,Surfline.com,2008.04.28.b-Ruiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.b-Ruiz.pdf,2008.04.28.b,2008.04.28.b +1263,28-Apr-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,David Alger,M,18,3-inch laceration to dorsal surface of left foot,False,4' shark,S. Petersohn,2008.04.28.a-Alger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.28.a-Alger.pdf,2008.04.28.a,2008.04.28.a +1264,27-Apr-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Adam Tobin,M,24,Calf bitten,False,4' shark,S. Petersohn,2008.04.27-Tobin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.27-Tobin.pdf,2008.04.27,2008.04.27 +1265,26-Apr-2008,Unprovoked,NEW CALEDONIA,North Province,Poindimié,Swimming,Olivier Vilain ,M,32,Lacerations to left foot,False,"Bull shark, 1.8m","Les Nouvelles Calédonie, 4/28/2008 & 4/29/2008",2008.04.26.b-Vilain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.b-Vilain.pdf,2008.04.26.b,2008.04.26.b +1266,26-Apr-2008,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Mark Pattison,M,21,Puncture wounds to right foot PROVOKED INCIDENT,False,"Bull shark, 1.8m",S. Petersohn,2008.04.26.a-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.26.a-Pattison.pdf,2008.04.26.a,2008.04.26.a +1267,25-Apr-2008,Unprovoked,USA,California,"Solana Beach, San Diego County",Swimming,Dave Martin,M,66,fatal,True,"White shark, 12' to 15'",R. Collier,2008.04.25-DaveMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.25-DaveMartin.pdf,2008.04.25,2008.04.25 +1268,20-Apr-2008,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,female,M,14,Cuts & punctures to right foot,False,"White shark, 12' to 15'","S. Petersohn, GSAF ",2008.04.20.b-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.b-Girl.pdf,2008.04.20.b,2008.04.20.b +1269,20-Apr-2008,Unprovoked,AUSTRALIA,New South Wales,Crescent Head,Surfing,Jamie Adlington,M,14,UNKNOWN,UNKNOWN,"Tiger shark, 2.3m ","T. Peake, GSAF",2008.04.20.a-Adlington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.20.a-Adlington.pdf,2008.04.20.a,2008.04.20.a +1270,Reported 19-Apr-2008,Invalid,SOUTH AFRICA,KwaZulu-Natal,Aliwal Shoal,Free-diving,Jean-Francois Avenier,M,14,"As he pushd the shark away from his camera, his finger was cut on a tooth",False,"Tiger shark, 13' female",J. Avenier,2008.04.19.R-Avenier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.19.R-Avenier.pdf,2008.04.19.R,2008.04.19.R +1271,18-Apr-2008,Invalid,MEXICO,Quintana Roo,"Delfines Beach, Cancun",Swimming,Joram Galleros Villanueva,M,32,Probable drowning with post-mortem bites,False,"Reported by media as shark attack, but shark involvement prior to death was not confirmed",C.Johansson,2008.04.18-Villanueva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.18-Villanueva.pdf,2008.04.18,2008.04.18 +1272,17-Apr-2008,Invalid,AUSTRALIA,Queensland,"Duranbah, Greenmount Beach",Surfing,David Weale,M,19,2 puncture wounds to leg,False,Shark involvement not confirmed; thought to be a barracuda bite,"C. Johansson, GSAF",2008.04.17-Weale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.17-Weale.pdf,2008.04.17,2008.04.17 +1273,15-Apr-2008,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Bobby Phillips,M,30,Puncture wounds to right foot,False,1.5' to 2' shark,B. Phillips,2008.04.15-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.15-Phillips.pdf,2008.04.15,2008.04.15 +1274,Reported 09-Apr-2008,Unprovoked,FIJI,unknown,unknown,Spearfishing,Rutu Meli,M,30,Left forearm bitten ,False,1.5' to 2' shark,"C. Johansson, GSAF; Orange County Register 4/9/2009",2008.04.09.R-Meli-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.09.R-Meli-Fiji.pdf,2008.04.09.R,2008.04.09.R +1275,25-Mar-2008,Unprovoked,USA,Florida,"Palm Beach Shores, Palm Beach County",Wading,Nick Canganelli,M,15,Shin bitten,False,6' shark,"The Plain Dealer, 4/1/2008",2008.03.25-Canganelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.25-Canganelli.pdf,2008.03.25,2008.03.25 +1276,Reported 08-Apr-2008,Unprovoked,USA,Florida,"1.4 miles south of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Surfing,"News 13,4/8/2008",,15,Foot bitten,False,6' shark,"News 13,4/8/2008",2008.04.08.R-NSB-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.R-NSB-2.pdf,2008.04.08.R,2008.04.08.R +1277,08-Apr-2008,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Ballina",Body boarding,Peter Edmonds,M,16,fatal,True,Bull shark,"T. Peake, GSAF; NSW Police Force",2008.04.08.a-Edmonds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.08.a-Edmonds.pdf,2008.04.08,2008.04.08 +1278,03-Apr-2008,Unprovoked,USA,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Joey Giangrasso,M,18,Right foot & ankle bitten,False,Bull shark,"S. Petersohn, GSAF ",2008.04.03-Giangrasso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.04.03-Giangrasso.pdf,2008.04.03,2008.04.03 +1279,28-Mar-2008,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Fishing from surfski,Jacques Peens,M,39,Right leg bitten,False,Bull shark,"C. Johansson, GSAF",2008.03.28.c-Peens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.c-Peens.pdf,2008.03.28.c,2008.03.28.c +1280,28-Mar-2008,Unprovoked,USA,Florida,"New Smyrna Beach / Ponce Inlet, Volusia County",Surfing,Mark Lemelin,M,52,Foot bitten,False,4' to 5' shark,"S. Petersohn, GSAF ",2008.03.28.b-Lemelin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.b-Lemelin.pdf,2008.03.28.b,2008.03.28.b +1281,28-Mar-2008,Unprovoked,USA,Florida,"Near Cocoa Beach, Brevard County",Boogie Boarding,Teresa Holloway,M,52,Right foot bitten,False,a small shark,"D. MacAnnally, Eyewitness News ",2008.03.28.a-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.28.a-Holloway.pdf,2008.03.28.a,2008.03.28.a +1282,23-Mar-2008,Unprovoked,USA,Florida,"South of Ponce de Leon Jetty, New Smyrna Beach, Volusia County",Walking out of the water after surfing,male,M,13,Three small lacerations/ punctures to right foot,False,2.5' shark,"S. Petersohn, GSAF ",2008.03.23-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.23-NewSmyrnaBeach.pdf,2008.03.23,2008.03.23 +1283,21-Mar-2008,Unprovoked,USA,Florida,"Beachway Avenue Approach, New Smyrna Beach, Volusia County",Wading,male,M,14,Two 3-inch lacerations to right ankle,False,2.5' shark,"S. Petersohn, GSAF ",2008.03.21-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.21-NewSmyrnaBeach.pdf,2008.03.21,2008.03.21 +1284,15-Mar-2008,Unprovoked,USA,Florida,"Lovers Key State Park, Bonita Springs, Lee County",Jet skiing,male,M,8,Minor injury,False,Shark involvement not confirmed,News-Press.com ,2008.03.15-BonitaSprings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.15-BonitaSprings.pdf,2008.03.15,2008.03.15 +1285,07-Mar-2008,Unprovoked,USA,California," Huntington Beach, Orange County",Surfing,Thomas Larkin,M,27,"No injury to surfer, surfboard bitten by the shark",False,White shark,R. Collier,2008.03.07-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.03.07-Larkin.pdf,2008.03.07,2008.03.07 +1286,24-Feb-2008,Unprovoked,BAHAMAS,Northern Bahamas,"Dive site known as ""The End of the Map""",Diving,Markus Groh,M,49,fatal,True,"A bull shark, according to some of the divers on the boat","Sun-Sentinel, 2/25/2008",2008.02.24-Groh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.24-Groh.pdf,2008.02.24,2008.02.24 +1287,Reported 21-Feb-2008,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Spearfishing,Apia Hauta,M,26,Lacerations to face,False,"A bull shark, according to some of the divers on the boat","Independent News Online, 2/21/2008",2008.02.21.R-Hauta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.21.R-Hauta.pdf,2008.02.21.R,2008.02.21.R +1288,15-Feb-2008,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Harold Bradner,M,25,Lacerations to foot,False,"A bull shark, according to some of the divers on the boat","S. Petersohn, GSAF",2008.02.15-Bradner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.15-Bradner.pdf,2008.02.15,2008.02.15 +1289,07-Feb-2008,Unprovoked,AUSTRALIA,New South Wales,Horseshoe Bay,Surfing,Fiona Casey,F,14,Abrasions to elbow; collided with shark,False,1 m shark,"T. Peake, GSAF",2008.02.07-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.07-Casey.pdf,2008.02.07,2008.02.07 +1290,06-Feb-2008,Unprovoked,USA,Florida,"Opposite Patrick Air Force Base, Brevard County",Surf-skiing,Unidentified,M,14,Lacerations to foot,False,3' shark,"Vero Beach Press Journal, 2/7/2008",2008.02.06-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.02.06-Surfer.pdf,2008.02.06,2008.02.06 +1291,2008.01.30,Provoked,JAPAN,Tokyo Bay,Tokyo Bay,Diving,L Compagno,M,14,"No injury, captive shark attempted to bite diver's arm PROVOKED INCIDENTt",False,"Goblin shark, 4.2'",L Compagno,2008.01.30-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.30-GoblinShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.30-GoblinShark.pdf,2008.01.30,2008.01.30 +1292,29-Jan-2008,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Suncoast Pirates Beach, Durban",Surf-skiing,Wayne Symington,M,42,"No injury to surf-skiier, shark holed ski",False,"Blacktip shark, 2m","The Mercury, 2/1/2008",2008.01.29-Symington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.29-Symington.pdf,2008.01.29,2008.01.29 +1293,27-Jan-2008,Provoked,AUSTRALIA,Queensland,200 km east of Coolangatta ,Accidentally stood on hooked shark's tail before attempting to gut it ,Jarryd Tinson ,M,20,Laceration to left knee PROVOKED INCIDENT,False,"Mako shark, 90kg",News.com.au,2008.01.27-Tinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.27-Tinson.pdf,2008.01.27,2008.01.27 +1294,Reported 19-Jan-2008,Invalid,NEW ZEALAND,South Island,Marfells Beach,Wading,Matthew O'Neill,M,20,"Stingray envenomation, not a shark",False,No shark involvement,"R.D. Weeks, GSAF",2008.01.19.R-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.19.R-O'Neill.pdf,2008.01.19.R,2008.01.19.R +1295,14-Jan-2008,Boat,NEW ZEALAND,North Island,Omaha Beach,Attempting to chase shark out to sea,inflatable rescue boat. Occupants: Lauren Johnson &. Kris O'Neill,,20,"No injury to occupants, pontoon punctured",False,"Bronze whaler shark, 4m","TV3; R.D. Weeks, GSAF",2008.01.14-inflatable-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.14-inflatable-boat.pdf,2008.01.14,2008.01.14 +1296,10-Jan-2008,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Jordan Marsden,M,20,Left foot bitten,False,a small shark,"Forida Today, 1/18/2008; Channel 9 News",2008.01.10-Marsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.01.10-Marsden.pdf,2008.01.10,2008.01.10 +1297,Fall 2008,Provoked,USA,Florida,"Off Fort Pierce, St. Lucie County",Fishing for snapper,Johnny Silva,M,20,Minor injury to hand by hooked shark PROVOKED INCIDENT,False,"Nurse shark, 10'",Extremecoast.com/ 1/30/2009,2008.00.00.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.b-Silva.pdf,2008.00.00.b,2008.00.00.b +1298,Summer-2008,Unprovoked,MEXICO,Baja California,Playas de Tijuana,Surfing,Chase Edwards,M,26,Leg bitten,False,Possibly a hammerhead shark,"San Diego Reader, 1/7/2009",2008.00.00.a-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2008.00.00.a-Edwards.pdf,2008.00.00.a,2008.00.00.a +1299,21-Dec-2007,Unprovoked,ECUADOR,Galapagos Islands,San Cristobal Island,Surfing,Sam Judd,M,24,Lacerations & puncture wounds to left thigh,False,3 m shark,"R. D. Weeks, GSAF; Radio New Zealand",2007.12.21-Judd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.21-Judd.pdf,2007.12.21,2007.12.21 +1300,19-Dec-2007,Invalid,BRITISH VIRGIN ISLANDS,Green Bay,Green Bay,Scuba diving,Wayne Francis Johanning,M,53,Shark bites were post-mortem,False,Invalid,"C. Johannson, GSAF",2007.12.19-Johanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.19-Johanning.pdf,2007.12.19,2007.12.19 +1301,18-Dec-2007,Unprovoked,AUSTRALIA,New South Wales,Jimmy's Beach,Surfing,Ben Morcom,M,31,Severe lacerations to right buttock,False,2 m shark,"Daily Telegraph, 12/18/2007",2007.12.18-Morcom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.18-Morcom.pdf,2007.12.18,2007.12.18 +1302,15-Dec-2007,Unprovoked,AUSTRALIA,Queensland,South Stradbroke Island,Swimming,Josh Edwards,M,teen,Lacerations to hand,False,"""a small shark""",goldcoast.com.au,2007.12.15-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.15-Edwards.pdf,2007.12.15,2007.12.15 +1303,14-Dec-2007,Invalid,AUSTRALIA,New South Wales,Bondi ,Swimming,Scott Wright,M,34,Lacerations to left forearm,False,Not a shark attack; it was a hoax,"Sydney Morning Herald, 12/16/2007",2007.12.14-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.14-Wright.pdf,2007.12.14,2007.12.14 +1304,10-Dec-2007,Unprovoked,USA,Hawaii,"Waialua Bay, O'ahu",Surfing,Valentino Ramirez,M,52,"No injury, shark bit surfboard ",False,Tiger shark,"Honolulu Advertiser, 12/12/2007",2007.12.10-Ramirez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.10-Ramirez.pdf,2007.12.10,2007.12.10 +1305,09-Dec-2007,Unprovoked,NEW ZEALAND,South Island,Kaikoura,Surfing,Olivia Hislop,F,52,"No injury, shark bit surfboard & severed leash",False,Tiger shark,"NZ Herald, 12/11/2007",2007.12.09-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.09-Hislop.pdf,2007.12.09,2007.12.09 +1306,07-Dec-2007,Unprovoked,BRAZIL,Pernambuco,Itamaracá,Removing fish from a trap,Malvis Cristino de Souza,M,28,20 cm injury to left foot,False,2.27 m shark,"JC online, 12/8/2007",2007.12.07-Malvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.12.07-Malvis.pdf,2007.12.07,2007.12.07 +1307,18-Nov-2007,Provoked,AUSTRALIA,Western Australia,In a tidal creek 5 km from Wickham,Fishing,male,M,32,Minor injury to finger by netted shark PROVOKED INCIDENT,False,reef shark,"thewest.com.au, 11/19/2007",2007.11.18-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.18-WA.pdf,2007.11.18,2007.11.18 +1308,08-Nov-2007,Unprovoked,AUSTRALIA,New South Wales,"Wategos Beach, Byon Bay",Surfing,Craig Evans,M,32,"No injury, teethmarks in board & torn wetsuit",False,reef shark,"Northern Star, 11/10/2007",2007.11.08-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.08-Evans.pdf,2007.11.08,2007.11.08 +1309,07-Nov-2007,Unprovoked,SOUTH AFRICA,Western Cape Province,The Strand,Surfing,Andrew Smith,M,14,Lacerations to feet,False,1.5 to 2 m shark,"The Times (Cape Town), 11/9/2007",2007.11.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.07-Smith.pdf,2007.11.07,2007.11.07 +1310,06-Nov-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Fox,M,21,Cut to right knee,False,4' to 5' shark,"S. Petersohn; GSAF' Central Florida News, 11/7/2006",2007.11.06-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.06-Fox.pdf,2007.11.06,2007.11.06 +1311,04-Nov-2007,Unprovoked,USA,Florida,"Round Island Park, Indian River County",Surfing,Jeffrey Nolan,M,42,Lacerations to right leg,False,5' shark,"T.C. Palm, 11/4/2007 & 11/5/2007",2007.11.04-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.04-Nolan.pdf,2007.11.04,2007.11.04 +1312,03-Nov-2007,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Surfing,Lee Mellin,M,37,Lacerations to thigh,False,"White shark, 3m to 4m",Daily Dispatch,2007.11.03-Mellin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.03-Mellin.pdf,2007.11.03,2007.11.03 +1313,November 2011,Invalid,MEXICO,Baja California,Guadalupe Island,Shark diving,Patrick Walsh & Paul Damgaard ,M,37,White shark breached cage. No injury to occupants,False,Invalid,Today Show,2007.11.00-cage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.11.00-cage.pdf,2007.11.00,2007.11.00 +1314,29-Oct-2007,Unprovoked,USA,Hawaii,"Wailea, Maui",Floating,Aaron Finley,M,32,Lacerations to left lower leg,False,Tiger shark,KHNL8.com,2007.10.29-Finley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.29-Finley.pdf,2007.10.29,2007.10.29 +1315,15-Oct-2007,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Surf-skiing,Linda Whitehurst,F,52,small laceration to wrist,False,"White shark, 2.5m ","Sydney Morning Herald, 10/15/2007",2007.10.15-Whitehurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.15-Whitehurst.pdf,2007.10.15,2007.10.15 +1316,13-Oct-2007,Unprovoked,AUSTRALIA,Queensland,Holmes Reef,Spearfishing,Adam Wood,M,31,Laceration to calf,False,Bronze whaler shark,"news.com.au, 10/14/2007",2007.10.13-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.13-Wood.pdf,2007.10.13,2007.10.13 +1317,07-Oct-2007,Unprovoked,USA,California,"Venice Pier, Venice, Los Angeles County",Surfing,Sam Bendall,M,22,4 scratches on left hand,False,3' to 4' shark,R. Collier,2007.10.07-Bendall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.07-Bendall.pdf,2007.10.07,2007.10.07 +1318,06-Oct-2007,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,E.H.,M,16,Severe lacerations to right hand,False,"Blacktip shark, 5'",E. H.,2007.10.06-EH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.10.06-EH.pdf,2007.10.06,2007.10.06 +1319,30-Sep-2007,Unprovoked,USA,California,"Santa Monica, Los Angeles County",Surfing,Andrew Sinagra,M,16,Puncture wound to foot,False,"Blacktip shark, 5'",R. Collier,2007.09.30.c-Sinagra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.c-Sinagra.pdf,2007.09.30.c,2007.09.30.c +1320,30-Sep-2007,Sea Disaster,PHILIPPINES,Palawan,Off Cagayancillo,"The 426-ton cargo ship Mia, laden with cement, capsized in heavy seas ","Cebu Daily News, 10/3/2007",M,16,fatal,True,"Blacktip shark, 5'","Cebu Daily News, 10/3/2007",2007.09.30.b-Mia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.b-Mia.pdf,2007.09.30.b,2007.09.30.b +1321,30-Sep-2007,Unprovoked,NEW CALEDONIA,Loyalty Islands,"Bay of Luengoni, Lifou Island",Swimming,Stéphanie Belliard ,F,23,fatal,True,Tiger shark,"Les Nouvelles Caledoniennes, 10/1/2007 ",2007.09.30.a-Belliard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.30.a-Belliard.pdf,2007.09.30.a,2007.09.30.a +1322,28-Sep-2007,Unprovoked,BAHAMAS,Grand Bahama Island,Sweetings Cay,Spearfishing,Leslie Gano,F,48,Thigh bitten,False,Caribbean reef shark,"A. Brenneka, SharkAttackSurvivors.com",2007.09.28-Gano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.28-Gano.pdf,2007.09.28,2007.09.28 +1323,27-Sep-2007,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Sue Snyder,F,48,"No injury to surfer, surfboard bitten",False,White shark,R. Collier,2007.09.27.b-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.b-Snyder.pdf,2007.09.27.b,2007.09.27.b +1324,27-Sep-2007,Unprovoked,EGYPT,Red Sea,Daedalus Reef ,Swimming,Kristina Aleksandrova,F,18 or 20,"Severe lacerations to lower left leg, ankle and foot",False,Oceanic whitetip sharks were in the vicinity,"E. Ritter & Y. Sobolev, GSAF; M. Salem ",2007.09.27.a-Aleksandrova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.27.a-Aleksandrova.pdf,2007.09.27.a,2007.09.27.a +1325,22-Sep-2007,Invalid,USA,Florida,Jupiter Inlet,Scuba diving,Nikki Cuomo,F,18 or 20,Shark involvement prior to death unconfirmed,False,Shark involvement prior to death was not confirmed,"Florida Today, 12/14/2007",2007.09.22.b-Cuomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.b-Cuomo.pdf,2007.09.22.b,2007.09.22.b +1326,22-Sep-2007,Unprovoked,USA,Florida,Huguenot Park,Surfing,"R.Duffy, First Coast News. 9/23/2007",F,18 or 20,Laceration to foot,False,4' shark,"R.Duffy, First Coast News. 9/23/2007",2007.09.22.a-HuguenotPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.22.a-HuguenotPark.pdf,2007.09.22.a,2007.09.22.a +1327,20-Sep-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tyler Robertson,M,23,Small lacerations to bottom of right big toe,False,3' shark,"S. Petersohn, GSAF",2007.09.20-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.20-Robertson.pdf,2007.09.20,2007.09.20 +1328,17-Sep-2007,Unprovoked,SOLOMON ISLANDS,Marovo Lagoon,Kicha Island,Spearfishing,Corey Howell,M,23,Left thigh bitten,False,Gray reef shark,L. Choquette,2007.09.17-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.17-Corey.pdf,2007.09.17,2007.09.17 +1329,16-Sep-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading?,Jack Calogero,M,56,Laceration to right heel,False,Gray reef shark,"S. Petersohn, GSAF",2007.09.16.b-Calogero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.b-Calogero.pdf,2007.09.16.b,2007.09.16.b +1330,16-Sep-2007,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Jessica Riley,F,Teen,"No injury, surfboard bitten",False,9.5' shark?,wsbtv.com,2007.09.16.a-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.16.a-Riley.pdf,2007.09.16.a,2007.09.16.a +1331,13-Sep-2007,Unprovoked,USA,Florida,"Lauderdale-by-the-Sea, Broward County",Snorkeling,Brandon Chapman,M,14,"Minor injury, shark latched onto his abdomen",False,"Nurse shark, 2' to 3' ","Miami Herald, 9/13/2007; Sun-Sentinel, 9/14/2007",2007.09.13-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.13-Chapman.pdf,2007.09.13,2007.09.13 +1332,08-Sep-2007,Unprovoked,USA,Florida,"Pepper Park Beach, St. Lucie County",Wading,Carolyn Griffin,F,58,Puncture wounds & 2-inch laceration to calf,False,"Nurse shark, 2' to 3' ","First Coast News, 9/11/2007",2007.09.08-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.08-Griffin.pdf,2007.09.08,2007.09.08 +1333,05-Sep-2007,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Colette Wilson,F,36,Laceration to right big toe,False,"Nurse shark, 2' to 3' ","S. Petersohn, GSAF",2007.09.05-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.05-Wilson.pdf,2007.09.05,2007.09.05 +1334,04-Sep-2007,Unprovoked,USA,South Carolina,Sullivan's Island,Standing,Rory Corr,M,15,Lacerations to left calf and both feet ,False,"Nurse shark, 2' to 3' ","C. Creswell, GSAF; J. Johnson, Post and Courier, 9/26/2007",2007.09.04-Corr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.04-Corr.pdf,2007.09.04,2007.09.04 +1335,03-Sep-2007,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Jumping,female,F,12,Tiny punctures to arm,False,"18"" to 24"" shark","S. Petersohn, GSAF",2007.09.03.b-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.b-Daytona.pdf,2007.09.03.b,2007.09.03.b +1336,03-Sep-2007,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Swimming,Dominco Iaciofano,M,58,"3"" laceration to left forearm",False,Possibly a spinner shark,"S. Wyman, Sun-Sentinel, 9/3/2007; Local10.com",2007.09.03.a-Iaciofano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.09.03.a-Iaciofano.pdf,2007.09.03.a,2007.09.03.a +1337,28-Aug-2007,Unprovoked,USA,Hawaii,"Ka'a'awa, Oahu",Body boarding,Joshua Sumait,M,15,Laceration to right heel,False,"Tiger shark, 10' to 12' ","Honolulu Advertiser, 8/29/2007",2007.08.28.b-Sumait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.b-Sumait.pdf,2007.08.28.b,2007.08.28.b +1338,28-Aug-2007,Unprovoked,USA,California,"Marina State Beach, Monterey County",Surfing,Todd Endris,M,24,Lacerations to thigh & torso,False,"White shark, 12'",R. Collier,2007.08.28.a-Endris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.28.a-Endris.pdf,2007.08.28.a,2007.08.28.a +1339,26-Aug-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joseph Coursey,M,54,Left hand bitten,False,3' shark,"S. Petersohn, GSAF ",2007.08.26-Coursey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.26-Coursey.pdf,2007.08.26,2007.08.26 +1340,25-Aug-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Taylor Smith,M,27, 6 lacerations to left hand,False,3' shark,"S. Petersohn, GSAF; WESH 2 News",2007.08.25-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.25-Smith.pdf,2007.08.25,2007.08.25 +1341,22-Aug-2007,Provoked,USA,North Carolina,North Carolina Aquarium at Fort Fisher,Diving,Bruce Pennington,M,27,Minor injury from captive shark PROVOKED INCIDENT,False,Sand shark,"Clay Creswell, GSAF; WECT TV6",2007.08.22-Pennington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.22-Pennington.pdf,2007.08.22,2007.08.22 +1342,20-Aug-2007,Provoked,USA,Delaware,"Indian River Inlet, Rehoboth Beach",Fishing,male,M,27,Forearm bitten by hooked shark PROVOKED INCIDENT,False,Sandtiger shark,"Delaware Coast Press, 8/24/2007",2007.08.20-DelawareFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.20-DelawareFisherman.pdf,2007.08.20,2007.08.20 +1343,19-Aug-2007,Unprovoked,USA,Florida,"Islamorada Founder's Park, Plantation Key, Monroe County",Swimming,Chris Olstad,M,52,Torso bitten,False,Sandtiger shark,"Miami Herald, 8/20/2007",2007.08.19.c-Olstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.c-Olstad.pdf,2007.08.19.c,2007.08.19.c +1344,19-Aug-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,16,Foot bitten,False,4' to 5' shark,"S. Petersohn, GSAF",2007.08.19.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.b-NewSmyrnaBeach.pdf,2007.08.19.b,2007.08.19.b +1345,19-Aug-2007,Unprovoked,USA,South Carolina,"Lakewood Campground, Grand Strand, Horry County",Playing,male,M,7,Right calf bitten,False,4' to 5' shark,"C. Creswell, GSAF",2007.08.19.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.19.a-boy.pdf,2007.08.19.a.,2007.08.19.a. +1346,15-Aug-2007,Unprovoked,USA,Florida,Sarasota Bay,Floating near boat & observing bioluminesce,Andrea Lynch,M,20,Puncture wounds to torso,False,Possibly a 6' bull shark,"Charlotte Observer, 8/18/2007",2007.08.15-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.15-Lynch.pdf,2007.08.15,2007.08.15 +1347,12-Aug-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,15,"Minor injury, small lacerations to right foot",False, ,"S. Petersohn, GSAF",2007.08.12-girl-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.12-girl-NewSmyrnaBeach.pdf,2007.08.12,2007.08.12 +1348,11-Aug-2007,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Walking out of the water after surfing,Matthew Barton,M,19,"Minor injury, lacerations to left ankle & foot ",False, ,"S. Petersohn, GSAF",2007.08.11-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.11-Barton.pdf,2007.08.11,2007.08.11 +1349,09-Aug-2007,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Noah Green,M,30,Lacerations to right foot,False, ,"C. Creswell, GSAF",2007.08.09.b-NoahGreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.b-NoahGreen.pdf,2007.08.09.b,2007.08.09.b +1350,09-Aug-2007,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Boogie Boarding,Chase Crawford,M,9,Lacerations to lower leg & ankle,False, ,"C. Creswell, GSAF",2007.08.09.a-ChaseCrawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.09.a-ChaseCrawford.pdf,2007.08.09.a,2007.08.09.a +1351,07-Aug-2007,Unprovoked,USA,Florida,"Islamorada, Monroe County",Jumped into the water,Ashley Silverman,F,19,Lacerations to arm,False,Possibly a 10' bull shark,"Miami Herald, 8/8/2007",2007.08.07-Silverman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.08.07-Silverman.pdf,2007.08.07,2007.08.07 +1352,29-Jul-2007,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Jeffrey Clark,M,51,Minor injury to shoulder,False,Possibly a 10' bull shark,"S. Petersohn, GSAF",2007.07.29-JeffreyClark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.29-JeffreyClark.pdf,2007.07.29,2007.07.29 +1353,28-Jul-2007,Unprovoked,USA,California,"Imperial Beach, San Diego County",Surfing,Jordan Springer,M,20,"No injury, shark bit surfboard",False,Possibly a 10' bull shark,R. Collier,2007.07.28-Springer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.28-Springer.pdf,2007.07.28,2007.07.28 +1354,22-Jul-2007,Unprovoked,USA,California,"Malibu, Los Angeles County",Surf paddling,Vic Calandra,M,20,"No injury, surfboard bumped by shark for 20 minutes",False,"White shark, 12' ",R. Collier,2007.07.22-Calandra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.22-Calandra.pdf,2007.07.22,2007.07.22 +1355,21-Jul-2007,Boating,USA,California,"Bean Hollow State Beach, San Mateo County",Kayak Fishing,Dan Prather,M,20,"No injury, kayak bitten",False,White shark,"R. Collier; San Francisco Chronicle, 7/23/2007; NorCal Kayak Anglers",2007.07.21-DanPrather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.21-DanPrather.pdf,2007.07.21,2007.07.21 +1356,19-Jul-2007.b,Unprovoked,USA,Hawaii,"Bellows Beach near Wailea Point, O’ahu",Snorkeling,Harvey Miller,M,36,Left calf severely bitten,False, ,"Honolulu Advertiser, 7/20/2007; Honolulu Star Bulletin, 7/20/2007",2007.07.19.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.b-Miller.pdf,2007.07.19.b,2007.07.19.b +1357,19-Jul-2007.a,Unprovoked,AUSTRALIA,Territory of Cocos (Keeling) Islands,Direction Island,Wading,Angus Chapman,M,15,Calf bitten,False,"Bronze whaler shark, 1.5 m ","The Western Australian, 7/20/2007",2007.07.19.a-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.19.a-Chapman.pdf,2007.07.19.a,2007.07.19.a +1358,18-Jul-2007,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Swimming,Matt Baker,M,14,Right calf bitten,False,2' to 3' shark,"C. Creswell, GSAF",2007.07.18.b-MattBaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.b-MattBaker.pdf,2007.07.18.b,2007.07.18.b +1359,18-Jul-2007,Provoked,NORWAY,Oslo Fjord,Sjøstrand,Scuba diving,Odd Ingebretsen,M,48,PROVOKED INCIDENT No injury. Diver touched 'dead' shark; shark bit his equipment-covered arm,False,"3' small spotted catshark, Scyliorhinus canicula","Aftenposten, 7/18/2007",2007.07.18.a-Ingelbretsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.18.a-Ingelbretsen.pdf,2007.07.18.a,2007.07.18.a +1360,17-Jul-2007,Invalid,USA,California,"Faria Beach, Ventura County",Swimming,Susan Levy,F,43,Foot injured. Shark involvment uncomfirmed,False,Shark involvement not confirmed,R. Collier,2007.07.17.b-SusanLevy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.b-SusanLevy.pdf,2007.07.17.b,2007.07.17.b +1361,17-Jul-2007,Unprovoked,USA,North Carolina,"Atlantic Beach, Carteret County",Wading,female,F,30,Lacerations to right thigh & left foot,False,5' shark,"C. Creswell, GSAF",2007.07.17.a-NC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.17.a-NC.pdf,2007.07.17.a,2007.07.17.a +1362,10-Jul-2007,Unprovoked,BAHAMAS,Abaco Islands,Allan-Pensacola Cay,Spearfishing,Joanie Regan,F,48,"Lacerations to thumb, ring and pinky fingers of right hand ",False,"Bull shark, 5' ",J. Regan,2007.07.10-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.10-Regan.pdf,2007.07.10,2007.07.10 +1363,05-Jul-2007,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Chaz Cecil,M,18,Right foot bitten,False,"Bull shark, 5' ","S. Petersohn, GSAF",2007.07.05-Cecil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.05-Cecil.pdf,2007.07.05,2007.07.05 +1364,04-Jul-2007,Unprovoked,REUNION,Boucan Canot,Boucan Canot,Body boarding,Vincent Bouju,M,17,Minor injuries to thigh & knee ,False,2 m shark,"clicanoo.com, 7/5/2007",2007.07.04-Bouju.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.04-Bouju.pdf,2007.07.04,2007.07.04 +1365,Jul-2007,Invalid,SENEGAL,unknown,unknown,Murder,Alex Takyi,,17,,,Questionable Incident,"Daily Guide, 8/20/2007",2007.07.00-Takyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.07.00-Takyi.pdf,2007.07.00,2007.07.00 +1366,30-Jun-2007,Provoked,USA,Florida,Marques Island,Removing hook from shark,Samuel Gruber,M,17,Lacerations to right hand by hooked shark PROVOKED INCIDENT,False,"Lemon shark, 6' female ",S. Gruber; SharkAttackSurvivors.com,2007.06.30.b-Gruber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.b-Gruber.pdf,2007.06.30.b,2007.06.30.b +1367,30-Jun-2007,Unprovoked,USA,California,"Will Rogers State Beach, Los Angeles County",Swimming,Katina Zinner,F,17,Hand bitten,False,"Lemon shark, 6' female ",R. Collier,2007.06.30.a-Zinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.30.a-Zinner.pdf,2007.06.30.a,2007.06.30.a +1368,25-Jun-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Justin Lewis,M,20,6 to 8 puncture wounds to right hand,False,4' shark,"S. Petersohn, GSAF",2007.06.25-JustinLewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.25-JustinLewis.pdf,2007.06.25,2007.06.25 +1369,24-Jun-2007,Unprovoked,USA,Hawaii,"Silva's Channel, Mokuleia, O'ahu",Surfing,E. Yamada,M,20,"No injury, board damaged",False,Tiger shark,"G. Lee, KGMB9.com",2007.06.24-Yamada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.24-Yamada.pdf,2007.06.24,2007.06.24 +1370,17-Jun-2007,Invalid,USA,Florida,"Vilano Beach, St. Johns County",Surfing,Kasey Schmidt,F,9,Superficial injuries to upper leg may have been caused by surfboard fin,False,Shark involvement not confirmed,"St Augustine Record, 6/19/2007",2007.06.17-CaseySchmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.17-CaseySchmidt.pdf,2007.06.17,2007.06.17 +1371,12-Jun-2007,Unprovoked,USA,Florida,"Turtle Beach, Siesta Key, Sarasota County",Swimming,Jeanne Schaefer ,F,9,Right foot bitten,False,3' to 4' shark,"R.B. Hackney, Sun-Sentinel, 7/13/2007",2007.06.12-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.12-Schaefer.pdf,2007.06.12,2007.06.12 +1372,05-Jun-2007,Unprovoked,AUSTRALIA,New South Wales,"Shelly Beach, Crescent Head",Surfing,Jack Moir,M,9,Lacerations to leg & ankle,False,3' to 4' shark,"S. Williams, Daily Telegraph, 6/7/2007",2007.06.05-JackMoir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.06.05-JackMoir.pdf,2007.06.05,2007.06.05 +1373,26-May-2007,Unprovoked,USA,South Carolina,Garden City,Wading,Susan Dornquast,F,9,Lacerations to lower leg,False,3' to 4' shark,"C. Creswell, GSAF; Hilton Head Island Packet, 5/27/2007",2007.05.26-Dornquast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.26-Dornquast.pdf,2007.05.26,2007.05.26 +1374,24-May-2007,Provoked,USA,Virginia,"Virginia Aquarium & Marine Science Center, Virginia Beach ",Reviving a sedated shark,Beth Firchau,F,40,Left shin bitten by captive shark PROVOKED INCIDENT,False,A 10-year-old 94-pound pregnant blacktip reef shark,WAVY-TV10-News,2007.05.24-Firchau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.24-Firchau.pdf,2007.05.24,2007.05.24 +1375,Reported 17-May-2007,Provoked,ENGLAND,Kent,Folkestone,Fishing,Phil Tanner,M,38,Bitten on the nose by a hooked shark PROVOKED INCIDENT,False,"Lesser spotted dogfish, Scyliorhinus canicula, less than 80 cm in length","V. Wheeler, The Sun, 5/17/2007",2007.05.17.R-PhilTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.17.R-PhilTanner.pdf,2007.05.17.R,2007.05.17.R +1376,16-May-2007,Unprovoked,AUSTRALIA,Western Australia,"Warra Beach, Coral Bay",Wading,Becky Cooke,F,38,Left heel & calf bitten,False,2.5 m shark,"The Western Australian, 5/16/2007",2007.05.16-BeckyCooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.16-BeckyCooke.pdf,2007.05.16,2007.05.16 +1377,12-May-2007,Unprovoked,AUSTRALIA,Victoria,Warrnambool,Surfing,Blake French,M,19,"No injury, shark's fin caught his leg",False,10' shark,"The Standard, 5/15/2007",2007.05.12-BlakeFrench.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.12-BlakeFrench.pdf,2007.05.12,2007.05.12 +1378,10-May-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jennifer Manis,F,21,Knee bitten,False,4' to 5' shark,J. Manis,2007.05.10-Manis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.10-Manis.pdf,2007.05.10,2007.05.10 +1379,Reported 09-May-2007,Unprovoked,SEYCHELLES,Bird Island,Bird Island,Snorkeling,male,M,21,No injury,False,"White shark, 2m ",Seychelles Forum,2007.05.09.R-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.09.R-Seychelles.pdf,2007.05.09.R,2007.05.09.R +1380,08-May-2007,Invalid,AUSTRALIA,New South Wales,Kingscliff Beach,Swimming,male,M,45,Shark involvement prior to death unconfirmed,False,Shark involvement prior to death was not confirmed,"NineMSNews, 5/10/2007",2007.05.08-KingscliffBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.08-KingscliffBeach.pdf,2007.05.08,2007.05.08 +1381,07-May-2007,Unprovoked,USA,Hawaii,"Keawakapu Beach, Maui",Snorkeling,Peller Marion,F,63,Right foot bitten,False,"Tiger shark, 14' ","G. Kubota, Honolulu Star Bulletin, 5/8/2007",2007.05.07.b-PellerMarion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.b-PellerMarion.pdf,2007.05.07.b,2007.05.07.b +1382,07-May-2007,Unprovoked,USA,Florida,Naples,Swimming,Hans Pruss,M,68,Circular bite on left thigh,False,6' to 8' shark,"Naples News, 5/10/2007",2007.05.07.a-HansPruss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.07.a-HansPruss.pdf,2007.05.07.a,2007.05.07.a +1383,04-May-2007,Sea Disaster,TURKS & CAICOS,Providenciales,Providenciales,Sea Disaster,Haitian refugees perished when their boat capsized in choppy seas,,68,fatal,True,6' to 8' shark,CNN,2007.05.04-HaitianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.04-HaitianRefugees.pdf,2007.05.04,2007.05.04 +1384,May-2007,Provoked,BAHAMAS,Bimini Islands,Bimini Islands,Shark tagging,Sabrina Garcia,F,20,Lacerations to right upper arm by captive shark PROVOKED INCIDENT,False,"Lemon shark, >1 m ",S. Garcia,2007.05.00-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.05.00-Garcia.pdf,2007.05.00,2007.05.00 +1385,26-Apr-2007,Unprovoked,AUSTRALIA,Queensland,"Mornington Island, Gulf of Carpentaria",Swimming / jumping off a jetty,Lorraine,F,13,Lower leg & foot injured,False,"""a small shark""","news.com.au, 4/29/2007",2007.04.26-Lorraine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.26-Lorraine.pdf,2007.04.26,2007.04.26 +1386,22-Apr-2007,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Matthew Honyak,M,12,Left foot bitten,False,blacktip or spinner shark,"Sun-Sentinel, 4/23/2007",2007.04.22-Honyak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.22-Honyak.pdf,2007.04.22,2007.04.22 +1387,20-Apr-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chad Guthrie,M,24,Lacerations to left index finger & thumb ,False,3' to 4' shark,"Florida Today, 4/21/2007",2007.04.20-ChadGuthrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.20-ChadGuthrie.pdf,2007.04.20,2007.04.20 +1388,Reported 13-Apr-2007,Boat,USA,Florida,"Florida Keys, Monroe County",Fishing,boat: 48' charter boat GonFishin V ,,24,"No injury to occupants, shark holed the transom-mounted livewell ",False,"Bull shark, 10' ","Florida Today, 4/13/2007; A. Brenneka",2007.04.13.R-GonFishin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.13.R-GonFishin.pdf,2007.04.13.R,2007.04.13.R +1389,09-Apr-2007,Unprovoked,NEW CALEDONIA,South Province,Dumbéa,Surfing,Olivier Bertholom,M,26,Left foot bitten,False,Tiger shark,"Les Nouvelles Calédoniennes, 4/11/2007",2007.04.09-Bertholom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.09-Bertholom.pdf,2007.04.09,2007.04.09 +1390,01-Apr-2007,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Playing on a sandbar,Jack LoMedico,M,7,Lacerations & puncture wounds to right calf,False,Tiger shark,"S. Petersohn, GSAF; WESH 2, 4/1/2007; Local6news.com, 4/3/2007",2007.04.01-Lomedico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.04.01-Lomedico.pdf,2007.04.01,2007.04.01 +1391,31-Mar-2007,Unprovoked,USA,Florida,"Normandy Beach, Hutchinson Island, St. Lucie County",Surfing,Larry Olson,M,27,Lacerations to right ankle ,False,3' shark,"Palm Beach Post, 3/31/2007; Sun Sentinel, 4/3/2007",2007.03.31.b-Olson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.b-Olson.pdf,2007.03.31.b,2007.03.31.b +1392,31-Mar-2007,Unprovoked,USA,Florida,"Waveland Beach, Hutchinson Island, St. Lucie County",Surfing,male,M,9,Minor cuts to right buttock & thigh,False,3' shark,"Palm Beach Post, 3/31/2007",2007.03.31.a-Waveland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.31.a-Waveland.pdf,2007.03.31.a,2007.03.31.a +1393,22-Mar-2007,Unprovoked,YEMEN,Muhafazat Hadramawt,Ras-Alkalb,Murder,At least 29 (and possibly another 71) Somali & Ethiopian refugees,,9,fatal,True,3' shark,"United Nations High Commission for Refugees, 3/26/2007",2007.03.22-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.22-EthiopianRefugees.pdf,2007.03.22,2007.03.22 +1394,21-Mar-2007,Unprovoked,USA,Florida,Jupiter Inlet,Surfing,Sam Chief,M,11,Punctures & lacerations to right calf & calf,False,4' to 5' shark,"TCPalm, 3/23/2007 ",2007.03.21-Chief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.21-Chief.pdf,2007.03.21,2007.03.21 +1395,20-Mar-2007,Unprovoked,AUSTRALIA,New South Wales,South Golden Beach,Surfing,Jodie Cooper,F,42,Lacerations to 3 fingers of left hand ,False,1.5 m shark,"Gold Coast Bulletin, 3/21/2007",2007.03.20-JodieCooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.20-JodieCooper.pdf,2007.03.20,2007.03.20 +1396,Reported 14-Mar-2007,Provoked,USA,Florida,Delray Beach,Shark fishing,Gregory Kuehlewind ,M,42,Right hand bitten by hooked shark PROVOKED INCIDENT,False,5' shark,Associated Press,2007.03.14.R-Kuehlewind.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.14.R-Kuehlewind.pdf,2007.03.14.R,2007.03.14.R +1397,12-Mar-2007,Unprovoked,AUSTRALIA,Queensland,"Moore Park, north of Bundaberg",Swimming,Mary Jane Ryan,F,59,"Bruises to arm and hand, laceration to lower leg & minor injuries to foot",False,2 to 2.5 m shark,ABC News Online,2007.03.12-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.12-Ryan.pdf,2007.03.12,2007.03.12 +1398,11-Mar-2007,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Surfing,Adam McMichael,M,29,Lacerations to right forearm & hand,False,2 to 2.5 m shark,"J. Ashton, T.C. Palm, 3/12/2007",2007.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.11-McMichael.pdf,2007.03.11,2007.03.11 +1399,Reported 05-Mar-2007,Provoked,NEW ZEALAND,Cook islans,Penhryn Island,Spearfishing,Turua William Maretapu,M,16,Leg bitten by shark after he shot at it & missed PROVOKED INCIDENT,False,Tiger shark,"R. Weeks, GSAF",2007.03.05.R-Maretapu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.03.05.R-Maretapu.pdf,2007.03.05.R,2007.03.05.R +1400,04-Feb-2007,Invalid,COSTA RICA,unknown,unknown,Swimming,Jason Cash,M,36,Death due to drowning. Shark bite may have been postmortem,False,Shark involvement prior to death was not confirmed,"The Argus, 3/2/2007",2007.02.04-Cash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.04-Cash.pdf,2007.02.04,2007.02.04 +1401,03-Feb-2007,Unprovoked,AUSTRALIA,New South Wales,Shelly Beach,Boogie Boarding,Matthew McIntosh,M,26,Lacerations to lower left leg & ankle ,False,Shark involvement prior to death was not confirmed,"P. Immerz, SharkProject; P. Kemp, GSAF",2007.02.03-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.03-McIntosh.pdf,2007.02.03,2007.02.03 +1402,Feb-2007,Unprovoked,NEW CALEDONIA,Loyalty Islands,Ouvéa,Spearfishing,male,M,26,Survived,False,Shark involvement prior to death was not confirmed,"Les Nouvelles Caledoniennes, ",2007.02.00-Ouvea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.02.00-Ouvea.pdf,2007.02.00,2007.02.00 +1403,25-Jan-2007,Unprovoked,NEW CALEDONIA,North Province,Kaala-Gomen ,Spearfishing (free diving),Jesse Jizdny,M,30,Leg bitten,False,Tiger shark,"Les Nouvelles Caledoniennes, 1/29/2007",2007.01.25.b-Jizdny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.b-Jizdny.pdf,2007.01.25.b,2007.01.25.b +1404,25-Jan-2007,Boat,USA,Florida,100 miles off Ft. Myers Beach,Shrimping,boat: 69.5' trawler Christy Nichole ,,30,"A large shark rammed boat, breaking prop shaft. No injury to occupants but boat sank several hours later",False,14' shark,"P. Morales, News-Press, 2/5/2007",2007.01.25.a-ChristyNichole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.25.a-ChristyNichole.pdf,2007.01.25.a,2007.01.25.a +1405,23-Jan-2007,Unprovoked,AUSTRALIA,New South Wales,Cape Howe,Diving,Eric Nerhus,M,41,Head & torso bitten,False,"White shark, 3m","NZ Herald, 1/23/2007",2007.01.23-Nerhus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.23-Nerhus.pdf,2007.01.23,2007.01.23 +1406,19-Jan-2007,Invalid,AUSTRALIA,New South Wales,Brunswick Heads,Swimming,Thomas Houghton,M,20,Shark involvement prior to death unconfirmed,False,Shark involvement prior to death was not confirmed,"Northern Star, 1/24/2007",2007.01.19-Houghton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.19-Houghton.pdf,2007.01.19,2007.01.19 +1407,14-Jan-2007,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. John's",Swimming / Body Surfing,Sibulele Masiza,M,24,fatal,True,Tiger shark,"G. Cliff, Natal Sharks Board; East London Dispatch, 1/18/2007",2007.01.14-Masiza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.14-Masiza.pdf,2007.01.14,2007.01.14 +1408,09-Jan-2007,Unprovoked,AUSTRALIA,New South Wales,Sandbar Beach,Surfing,David Sparkes,M,24,"No injury, shark damaged surfboard",False,2.4 m shark,"J. Watson, Great Lakes Your Guide",2007.01.09-Sparkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.09-Sparkes.pdf,2007.01.09,2007.01.09 +1409,07-Jan-2007,Invalid,USA,New York,"Smith Point, Long Island",Surfing,Wayne Brodsky,M,54,No injury,False,"24"" to 30"" shark",W. Brodsky,2007.01.07-Brodsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.07-Brodsky.pdf,2007.01.07,2007.01.07 +1410,01-Jan-2007,Unprovoked,USA,Hawaii,"Majors Bay, Kaua'i",Surfing,Rich Reed,M,24,"No injury, shark removed piece of surfboard",False,"6' to 8' shark, possibly a tiger shark","P. Immerz, SharkProject.org; J. TenBruggencate, Honolulu Advertiser, 1/5/2007",2007.01.05-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2007.01.05-Reed.pdf,2007.01.05,2007.01.05 +1411,18-Dec-2006,Unprovoked,AUSTRALIA,Victoria,"Winki Pop, Bells Beach",Surfing,Peter Galvin,M,25,Left leg bitten,False,2.5 to 3 m shark,"P. Kemp, GSAF",2006.12.18-Galvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.18-Galvin.pdf,2006.12.18,2006.12.18 +1412,11-Dec-2006,Unprovoked,NEW ZEALAND,North Island,"Raglan, Manu Bay",Surfing,Elliot Paerata-Reid ,M,10,Foot bitten,False,2 to 3 m shark,"R.D. Weeks, GSAF",2006.12.11-Reid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.11-Reid.pdf,2006.12.11,2006.12.11 +1413,10-Dec-2006,Unprovoked,USA,California,"Dillon Beach, Marin County",Surfing,Royce Fraley,M,43,"Minor injuries, surfboard bitten",False,"White shark, 12' to 15' ","P. Immerz; R. Collier; San Francisco Chronicle, 12/11/2006 ",2006.12.10-Frailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.10-Frailey.pdf,2006.12.10,2006.12.10 +1414,06-Dec-2006,Provoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Fishing,Peter Willoughby,M,25,"Hand, thigh & calf bitten by hooked shark PROVOKED INCIDENT",False,"Raggedtooth shark, 150-kg","C. Johansson; Pretoria News, 12/8/2006",2006.12.06-Willoughby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.06-Willoughby.pdf,2006.12.06,2006.12.06 +1415,02-Dec-2006,Unprovoked,AUSTRALIA,Western Australia,Wharton Beach,Body boarding,Zac Golebiowski,M,15,"Right leg severed, left leg lacerated",False,"White shark, 5m ","P. Kemp, GSAF, Sunday Mail, 12/3/2006",2006.12.02-Golebiowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.12.02-Golebiowski.pdf,2006.12.02,2006.12.02 +1416,25-Nov-2006,Sea Disaster,PHILIPPINES,Surigao del Norte,"Off Bilisan Point, Hinatuarn Island",Sea Disaster,Sinking of the m.v.Leonida,,15,fatal,True,"White shark, 5m ","Manila Bulletin Online, 11/27/2006",2006.11.25-Leonida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.25-Leonida.pdf,2006.11.25,2006.11.25 +1417,11-Nov-2006,Unprovoked,USA,Hawaii,"Kihei, Maui",Swimming,Kyle Gruen,M,29,Laceration to left thigh & left hand,False,2 m to 3 m shark,"Honolulu Advertiser, 11/12/2006; B. Nicholson",2006.11.11-Gruen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.11-Gruen.pdf,2006.11.11,2006.11.11 +1418,09-Nov-2006,Provoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Canoeing,Richard Tebutt,M,29,Left arm lacerated when he grabbed shark by its tail PROVOKED INCIDENT,False,"Bull shark, 1.5m ","P. Immerz, SharkProject",2006.11.09-Tebutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.11.09-Tebutt.pdf,2006.11.09,2006.11.09 +1419,31-Oct-2006,Unprovoked,USA,Oregon,"Siletz River mouth, Lincoln County",Surfing,Tony Perez,M,22,"No injury, surfboard bitten",False,"White shark, 16' ",R. Collier,2006.10.31-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.31-Perez.pdf,2006.10.31,2006.10.31 +1420,16-Oct-2006,Unprovoked,USA,Florida,Sebastian Inlet,Fishing,"Blaise Castellano, Jr.",M,15,Lower right leg and foot bitten,False,"White shark, 16' ","K. Kridel, Herald Tribune, 10/21/2006",2006.10.16-Castellano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.16-Castellano.pdf,2006.10.16,2006.10.16 +1421,10-Oct-2006,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Kyle Cody,M,20,Left ankle bitten,False,"White shark, 16' ","S. Petersohn, GSAF",2006.10.10-Cody.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.10-Cody.pdf,2006.10.10,2006.10.10 +1422,07-Oct-2006,Unprovoked,USA,Texas,"Isla Blanca Park, South Padre Island",Surfing,Freddy Torres,M,20,Lacerations to lower left leg,False,1' to 4' shark,"M. Martinez, KGBT4",2006.10.07-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.07-Torres.pdf,2006.10.07,2006.10.07 +1423,05-Oct-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Playing soccer in the water,Stephen Münoz,M,18,Lacerations to foot,False,3' to 3.5' shark,"S. Petersohn, GSAF",2006.10.05-Munoz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.05-Munoz.pdf,2006.10.05,2006.10.05 +1424,Oct-2006,Unprovoked,BAHAMAS,New Providence Island,Nassau,Free diving / modeling,Renata Foucre,F,26,Puncture wounds to left foot,False,3' to 3.5' shark,"J. Lambiet, Palm Beach Post, 10/22/2006",2006.10.00.b-Foucre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.b-Foucre.pdf,2006.10.00.b,2006.10.00.b +1425,Oct-2006,Unprovoked,GULF OF ADEN,Between Somalia & Yemen,Between Somalia & Yemen,Murder,5 Ethiopian refugees,,26,fatal,True,3' to 3.5' shark,"United Nations High Commission for Refugees, 10/20/2006",2006.10.00.a-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.10.00.a-EthiopianRefugees.pdf,2006.10.00.a,2006.10.00.a +1426,30-Sep-2006,Invalid,SOUTH AFRICA,Western Cape Province,Miller's Point,Spearfishing,Joseph Johnston,M,36,No injury; 4m white shark made a threat display,False,Invalid,"Cape Argus, 10/2/2006",2006.09.30-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.30-Johnston.pdf,2006.09.30,2006.09.30 +1427,29-Sep-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Andrews ,M,19,Big toe bitten,False,Invalid,"S. Petersohn, GSAF",2006.09.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.29-Andrews.pdf,2006.09.29,2006.09.29 +1428,Reported 18-Sep-2006,Provoked,USA,Florida,"Off Key Largo, Monroe County",Diving / Kissing the shark,Dave Marcel,M,19,Lacerations to upper lip PROVOKED INCIDENT,False,Nurse shark,"CBS-4, 9/18/2006",2006.09.18.R-DaveMarcel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.18.R-DaveMarcel.pdf,2006.09.18.R,2006.09.18.R +1429,16-Sep-2006,Unprovoked,USA,North Carolina,Onslow Beach,Surfing,Jake Poland,M,16,Laceration to left thigh,False,Nurse shark,"C. Creswell, GSAF",2006.09.16-JakePoland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.16-JakePoland.pdf,2006.09.16,2006.09.16 +1430,14-Sep-2006,Unprovoked,USA,Florida,"Singer Island, Riviera Beach",Swimming,William Carol,M,55,Minor injury to left hand,False,Spinner shark,WFTV.com,2006.09.14-Carol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.14-Carol.pdf,2006.09.14,2006.09.14 +1431,11-Sep-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Dennis Macy,M,52,Left torso grazed,False,5' shark,"S. Petersohn, GSAF",2006.09.11-Macy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.11-Macy.pdf,2006.09.11,2006.09.11 +1432,04-Sep-2006,Invalid,AUSTRALIA,Queensland,Great Barrier Reef ,Diving,Steve Irwin,M,44,"Killed by a stingray, not a shark - a tragedy for his family and marine wildlife",False,No shark involvement,"Sydney Morning Herald, CNN & internet",2006.09.04-SteveIrwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.04-SteveIrwin.pdf,2006.09.04,2006.09.04 +1433,03-Sep-2006,Unprovoked,BRAZIL,unknown,unknown,Diving,Darlan dos Santos Luz ,M,20,fatal,True,No shark involvement,"JC Online, 6/26/2023",2006.09.03.b-Darlan-dos-Santos-Luz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.b-Darlan-dos-Santos-Luz.pdf,2006.09.03.b,2006.09.03.b +1434,03-Sep-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Christopher Duncan,M,33,Puncture wounds and cuts to right thigh,False,3' shark,"S. Petersohn, GSAF",2006.09.03.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.03.a-Duncan.pdf,2006.09.03.a,2006.09.03.a +1435,02-Sep-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,male,M,12 or 13,Arm bitten,False,3' shark,"S. Petersohn, GSAF",2006.09.02.b-Child-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.b-Child-NSB.pdf,2006.09.02,2006.09.02 +1436,02-Sep-2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Noordhoek,Surfing,Steven Harcourt-Wood,M,37,"No injury, shark rammed surfboard",False,"White shark, 3.5m ","Cape Times, 9/3/2006",2006.09.02.a-Harcourt-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.09.02.a-Harcourt-Wood.pdf,2006.09.02,2006.09.02 +1437,29-Aug-2006,Unprovoked,USA,Oregon,"Florence, Lane County",Surfing,Tom Larson,M,23,Laceration & puncture wounds to foot,False,"White shark, 3.5m ","R. Collier, GSAF; Register-Guard, 8/31/2006",2006.08.29.b-Larson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.b-Larson.pdf,2006.08.29.b,2006.08.29.b +1438,29-Aug-2006,Unprovoked,AUSTRALIA,South Australia,"Pennington Bay, Kangaroo Island",Surfing,Brad Jamieson ,M,23,"No injury, shark towed surfer & board",False,"Bronze whaler shark, 6'","P. Kemp, GSAF; S. Black, The Islander, 9/7/2006",2006.08.29.a-Jamieson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.29.a-Jamieson.pdf,2006.08.29.a,2006.08.29.a +1439,27-Aug-2006,Unprovoked,REUNION,Saint-Gilles-les-Bains,"Les Aigrettes, near Boucan-Canot",Body boarding,Gérald Préau,M,27,Laceration to right calf & heel,False,"Bronze whaler shark, 6'","G. Vitry; G. Holt, scubaradio; Clicanoo, 8/28/2006 & 8/29/2006",2006.08.27-Gerald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.27-Gerald.pdf,2006.08.27,2006.08.27 +1440,22-Aug-2006,Invalid,BRAZIL,Pernambuco,Pina,Body boarding,Tatiano Silva de Melo,M,17,Shark bites may have been post mortem,False,Shark involvement prior to death was not confirmed,JC Oline 8/24/2006,2006.08.22.b-Melo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Melo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22-IsaulCoba.pdf,2006.08.22.b,2006.08.22.b +1441,22-Aug-2006,Invalid,BELIZE,Ambergris Caye,Near Ramon's Village,Spearfishing,Isaul Coba,M,34,Shark involvement prior to death not confirmed,False,Shark involvement prior to death was not confirmed,C. Johansson,2006.08.22.a-Coba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.a-Coba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.22.b-Brazil-incomplete.pdf,2006.08.22.a,2006.08.22.a +1442,20-Aug-2006,Sea Disaster,ITALY,Lampedusa Island,Lampedusa Island,Sea Disaster,a refugee,M,34,fatal,True,Shark involvement prior to death was not confirmed,IM/LR,2006.08.20.b-Lampedusa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20.b-Lampedusa.pdf,2006.08.20.b,2006.08.20.b +1443,20-Aug-2006,Unprovoked,REUNION,Saint-Pierre,Pointe du Diable,Surfing,Sébastien Émond,M,34,fatal,True,Shark involvement prior to death was not confirmed,P. Immerz ,2006.08.20-Emond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.20-Emond.pdf,2006.08.20.a,2006.08.20.a +1444,15-Aug-2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Danger Reef,Surfing,Richard Whitaker,M,34,"No injury, surfboard leash severed",False,5 m shark,A. Brenneka,2006.08.15-RichardWhitaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.15-RichardWhitaker.pdf,2006.08.15,2006.08.15 +1445,13-Aug-2006,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sunrise Beach, Muizenberg",Lifesaving drill,Achmat Hassiem,M,24,Foot severed,False,White shark,P. Immerz ,2006.08.13-Hassiem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.13-Hassiem.pdf,2006.08.13,2006.08.13 +1446,Aug-2006,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Wading,Miriam Picklesimer,F,59,Lacerations & punctures to left foot,False,White shark,"C. Creswell, GSAF",2006.08.00.b-Picklesimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.b-Picklesimer.pdf,2006.08.00.b,2006.08.00.b +1447,Early Aug-2006,Unprovoked,REUNION,Le Port,Le Port,Spearfishing,male,M,59,Thigh bitten,False,"Bull shark, 1.5m ","Clicanoo, 8/29/2006",2006.08.00.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.08.00.a-Reunion.pdf,2006.08.00.a,2006.08.00.a +1448,31-Jul-2006,Provoked,USA,Kentucky,"Newport Aquarium, Newport",Touching sharks,12 people,,59,"Minor injuries, similar to paper cuts from the captive sharks PROVOKED INCIDENTS",False,small catsharks,"Cincinatti News, 7/31/2006",2006.07.31.R-NewportAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.R-NewportAquarium.pdf,2006.07.31.R,2006.07.31.R +1449,31-Jul-2006,Unprovoked,USA,Oregon,Oswald State Park,Surfing,Robert Martin,M,41,Minor injury,False,White shark?,"R. Collier, GSAF",2006.07.31.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.31.a-Martin.pdf,2006.07.31.a,2006.07.31.a +1450,29-Jul-2006,Invalid,USA,California,"Broad Beach, Malibu, Los Angeles County",Boogie Boarding,Bruce Lurie,M,41,"Bruises, laceration to head, spinal cord injury & neck broken at C5/C6 ",False,"Thought to involve a mako shark, but possibly a sea lion","R. Colier, GSAF",2006.07.29.b-Lurie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.b-Lurie.pdf,2006.07.29.b,2006.07.29.b +1451,29-Jul-2006,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Surfing,Matt Wishengrad,M,15,Foot bitten,False,"Thought to involve a mako shark, but possibly a sea lion",WFTV.com,2006.07.29.a-Wishengrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.29.a-Wishengrad.pdf,2006.07.29.a,2006.07.29.a +1452,28-Jul-2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Fish Hoek,Surf-skiing,Lyle Maarsdorp,M,19,"No injury, surf ski bitten",False,"White shark, 3m to 4m","Cape Argus, 7/29/2006",2006.07.28-Maasdorp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.28-Maasdorp.pdf,2006.07.28,2006.07.28 +1453,25-Jul-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,14,Minor lacerations to right foot,False, ,"S. Petersohn, GSAF",2006.07.25-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.25-NSB.pdf,2006.07.25,2006.07.25 +1454,23-Jul-2006,Unprovoked,USA,Texas,"Sargent Beach, Matagorda County",Surf fishing,R.K. Halbert,M,14,Right foot bitten,False,"Bull shark, 4' to 5' ",KHOU.com,2006.07.23-Halbert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.23-Halbert.pdf,2006.07.23,2006.07.23 +1455,Reported 17-Jul-2006,Invalid,AUSTRALIA,Torres Strait,Western Province,Surf fishing,"The Torres News, 7/17/2006",,14,8 shark-bitten bodies washed ashore,False,Shark involvement prior to death was not confirmed,"The Torres News, 7/17/2006",2006.07.17.R-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.R-TorresStrait.pdf,2006.07.17.R,2006.07.17.R +1456,17-Jul-2006,Unprovoked,USA,South Carolina,"Singleton Beach, Hilton Head Island, Beaufort County",Standing,Dallas Jackson,M,49,Left ankle & foot bitten,False,"Angel shark, 1.2m "," C. Creswell, GSAF",2006.07.17.a-DallasJackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.17.a-DallasJackson.pdf,2006.07.17,2006.07.17 +1457,13-Jul-2006,Invalid,SPAIN,Alicante,San Juan Beach ,Swimming,female,F,7,Hand & wrist severely bitten,False,"Shark involvement not confirmed, injury may have been caused by a bluefish",C. Johansson,2006.07.13-girl-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.13-girl-Spain.pdf,2006.07.13,2006.07.13 +1458,12-Jul-2006,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Swimming,female,F,21,Ankle & foot bitten,False,"Shark involvement not confirmed, injury may have been caused by a bluefish"," C. Creswell, GSAF",2006.07.12-KiawahIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.12-KiawahIsland.pdf,2006.07.12,2006.07.12 +1459,10-Jul-2006,Unprovoked,BRAZIL,Pernambuco,Body recovered at Goiana,Swimming,Unidentified,M,21,fatal,True,Bull or tiger shark,"Qualittas; F. Hazin; N. Souza; Folho de Pernambuco, 7/12/2006",2006.07.10-Goiana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.10-Goiana.pdf,2006.07.10,2006.07.10 +1460,09-Jul-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,40,Dorsum of left foot bitten,False,Bull or tiger shark,"S. Petersohn, GSAF",2006.07.09.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.b-NewSmyrnaBeach.pdf,2006.07.09.b,2006.07.09.b +1461,09-Jul-2006.,Unprovoked,USA,Florida,"Ponte Vedra Beach, St Johns County",Walking,male,M,11,Lower leg & ankle bitten,False,Bull or tiger shark,"Orlando Sentinel, 7/9/2006",2006.07.09.a-PontaVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.09.a-PontaVedra.pdf,2006.07.09.a,2006.07.09.a +1462,08-Jul-2006,Unprovoked,USA,South Carolina,"Debordieu Beach, Georgetown County",Body boarding,Caelin Lacy ,F,14,Foot bitten,False,5' to 6' spinner or bull shark,"C. Creswell, GSAF",2006.07.08.b-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.b-Lacy.pdf,2006.07.08.b,2006.07.08.b +1463,08-Jul-2006,Unprovoked,USA,Florida,"Playalinda Beach, Canaveral National Seashore, Brevard County",Swimming,male,M,13,Right calf bitten,False,5' to 6' spinner or bull shark,Orlando Sentinel,2006.07.08.a-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.07.08.a-Playalinda.pdf,2006.07.08.a,2006.07.08.a +1464,July 2006,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Spearfishing,Bebe Hall,F,28,Lacerations & puncture wound to arm,False,"1.8 m blacktip ""reef"" shark","Swimming World Magazine, 2 July 2006",2006.06.30.b-Bebe-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.b-Bebe-Hall.pdf,2006.06.30.b,2006.06.30.b +1465,July 2006,Unprovoked,USA,Florida,"Florida Keys, Monroe County",Spearfishing,Gary Hall,M,35,Minor injuries,False,"1.8 m blacktip ""reef"" shark","Swimming World Magazine, 2 July 2006",2006.06.30.a-GaryHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.30.a-GaryHall.pdf,2006.06.30.a,2006.06.30.a +1466,27-Jun-2006,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Body boarding,Juliette Shipp,F,9,Right calf bitten,False,"1.8 m blacktip ""reef"" shark", P. Immerz,2006.06.27-Shipp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.27-Shipp.pdf,2006.06.27,2006.06.27 +1467,26-Jun-2006,Provoked,USA,Florida,Fort Myers,Fishing,male,M,9,Non-swimmer pulled off pier& into the water by a hooked shark PROVOKED INCIDENT,False,"1.8 m blacktip ""reef"" shark","News Press, 6/27/2006",2006.06.26-FtMyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.26-FtMyers.pdf,2006.06.26,2006.06.26 +1468,24-Jun-2006,Unprovoked,BAHAMAS,Andros Islands,Mangrove Cay,Spearfishing,Whitefield Rolle,M,25,Right arm severely bitten,False,"1.8 m blacktip ""reef"" shark","A. Brenneka; Nassau Guardian, 6/30/2006",2006.06.24-Rolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.24-Rolle.pdf,2006.06.24,2006.06.24 +1469,20-Jun-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Elizabeth Schelk,F,22,2-inch puncture wounds on right foot,False,Possibly a 1' to 3' blacktip or spinner shark," S. Petersohn, GSAF; P. Immerz",2006.06.20-Schelk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.20-Schelk.pdf,2006.06.20,2006.06.20 +1470,18-Jun-2006,Unprovoked,BRAZIL,Pernambuco,"Punta Del Chifre Beach, Olinda",Body boarding,Humberto Pessoa Batista,M,27,fatal,True,Possibly a 1' to 3' blacktip or spinner shark,globalsurfnews.com,2006.06.18-Batista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.18-Batista.pdf,2006.06.18,2006.06.18 +1471,17-Jun-2006,Unprovoked,USA,California,"Monterey, Monterey County",Scuba diving,Jon Piatt,M,43,"No injury, shark bit scuba tank boot",False,Possibly a 1' to 3' blacktip or spinner shark,R. Collier,2006.06.17-Piatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.17-Piatt.pdf,2006.06.17,2006.06.17 +1472,15-Jun-2006,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Mike Milea,M,24,Four 1-inch puncture wounds on left foot ,False,2' to 3' shark,"S. Petersohn, GSAF",2006.06.15-Milea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.15-Milea.pdf,2006.06.15,2006.06.15 +1473,07-Jun-2006,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Playing,Megan Wallis,F,7,Lacerations & puncture wounds to left foot & buttocks,False,3' to 4' shark,"C. Creswell, GSAF; Islandpacket.com, 6/7/2006",2006.06.07-Wallis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.07-Wallis.pdf,2006.06.07,2006.06.07 +1474,05-Jun-2006,Unprovoked,AUSTRALIA,South Australia,Waitpinga,Surfing,Peter Dunn,M,40,"No injury, knocked off surfboard",False,14' white shark,"P.Kemp, GSAF; Sunday Mail (Adelaide), 6/11/2006, p.17",2006.06.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.06.05-Dunn.pdf,2006.06.05,2006.06.05 +1475,31-May-2006,Unprovoked,USA,Hawaii,O'ahu,Spearfishing,Ron Deguilmo,M,26,"4"" laceration to left forearm",False,"Tiger shark, 8' to 12'","P. Immerz; Honolulu Advertiser, 6/1/2006",2006.05.31-Deguilmo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.31-Deguilmo.pdf,2006.05.31,2006.05.31 +1476,28-May-2006,Provoked,USA,Hawaii,French Frigate Shoals,Tagging sharks,"25' rigid-hulled inflatable boat, HI-2",,26,"No injury to occupants, boat damaged by hooked shark PROVOKED INCIDENT",False,"Tiger shark, 15' female","Honolulu Advertiser, 5/29/2006",2006.05.28-HI-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.28-HI-2.pdf,2006.05.28,2006.05.28 +1477,27-May-2006,Unprovoked,USA,Hawaii,"North Shore, O'ahu",Surfing,Bret Desmond,M,31,"No injury, shark bumped surfboard",False,"Tiger shark, 15' female",R. Collier,2006.05.27-Desmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.27-Desmond.pdf,2006.05.27,2006.05.27 +1478,24-May-2006,Provoked,USA,Hawaii,Lanai,Spearfishing,Andres Balmacda,M,15,Knee bitten after diver poked shark PROVOKED INCIDENT,False,"Grey reef shark, 5' to 8' ","Maui News, 5/26/2006",2006.05.24-Balmacda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.24-Balmacda.pdf,2006.05.24,2006.05.24 +1479,21-May-2006,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Rogério Antônio de Carvalho,M,33,"Injuries to left thigh, calf & foot",False,"Grey reef shark, 5' to 8' ","Avisa Nordland, 5/22/2006",2006.05.21-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.21-Carvalho.pdf,2006.05.21,2006.05.21 +1480,19-May-2006,Unprovoked,USA,Guam,Gun Beach,Scuba diving,Japanese female,F,30s,Laceration to leg,False,"Tiger shark, 10' to 12'",R. Segal,2006.05.19-Guam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.19-Guam.pdf,2006.05.19,2006.05.19 +1481,05-May-2006,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Scuba diving,male,M,30s,Small lacerations to arm,False,"Tiger shark, 10' to 12'","Florida Today, 5/10/2006",2006.05.10-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.10-CocoaBeach.pdf,2006.05.10,2006.05.10 +1482,04-May-2006,Unprovoked,USA,Florida,"Hutchinson Island, St. Lucie County",Swimming,Rachel King,F,20s,2 lacerations on lower right leg,False,"Tiger shark, 10' to 12'","TCPalm.com, 5/4/2006 ",2006.05.04-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.04-King.pdf,2006.05.04,2006.05.04 +1483,02-May-2006,Provoked,AUSTRALIA,Queensland,"Moffat Beach, Caloundra",Snorkeling,male,M,46,Abrasion & 6 puncture wounds on chest after grabbing the shark by its tail PROVOKED INCIDENT,False,"Wobbegong shark, 2 m ","Sunshine Coast Daily, 5/4/2006",2006.05.02-Caloundra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.05.02-Caloundra.pdf,2006.05.02,2006.05.02 +1484,Reported 23-Apr-2006,Invalid,USA,Florida,"Alligator Reef off Islamorada, Monroe County",Snorkeling,male,M,46,Shark bites post mortem,False,Invalid,"KRT Wire, 4/24/2006",2006.04.23.R-Islamorada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.23.R-Islamorada.pdf,2006.04.23.R,2006.04.23.R +1485,21-Apr-2006,Unprovoked,USA,Florida,"Sebastian Inlet, Brevard County",Surfing,T. Davis Bunn,M,54,Feet bitten,False,Invalid,Local 6 News,2006.04.21-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.21-Bunn.pdf,2006.04.21,2006.04.21 +1486,19-Apr-2006,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,Megan Prescott,F,13,3 tiny punctures & small lacerations on right ankle,False,Invalid,"Orlando Sentinel, 4/20/2006; Yahoo News; S. Petersohn",2006.04.19-Prescott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.19-Prescott.pdf,2006.04.19,2006.04.19 +1487,13-Apr-2006,Provoked,USA,Florida,"Port of the Islands, Collier County",Fishing,a sport fisherman,M,35,3 to 4 cm laceration on foot from hooked shark brought on board PROVOKED INCIDENT,False,"Bull shark, 4' to bull shark","Naples News, 4/13/2006",2006.04.13-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.13-fisherman.pdf,2006.04.13,2006.04.13 +1488,11-Apr-2006,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Surfing,Luke Cook,M,15,Minor laceration to left foot,False,"Bronze whaler shark, a juvenile ","Daily Telegraph, 4/12/2006",2006.04.11-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.11-Cook.pdf,2006.04.11,2006.04.11 +1489,09-Apr-2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Body boarding,Stuart Duffie,M,15,Leg bitten,False,"Raggedtooth shark, 2.5 m to 3 m ",J. Visser,2006.04.09.b-Duffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.b-Duffin.pdf,2006.04.09.b,2006.04.09.b +1490,09-Apr-2006,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,José Ivair Pereira,M,35,Left leg bitten,False,Tiger shark,"Diario de Pernambuco, 4/10/2006",2006.04.09.a-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.09.a-Pereira.pdf,2006.04.09.a,2006.04.09.a +1491,03-Apr-2006,Unprovoked,USA,Florida,"Marco Island, Collier County",Wading,Paul Ausum,M,11,Minor injury to right hand & thigh,False,Tiger shark,CBS Broadcasting,2006.04.03-Ausum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.04.03-Ausum.pdf,2006.04.03,2006.04.03 +1492,Reported 28-Mar-2006,Unprovoked,Sierra Leone,Western Area,"Lumely Beach, Freetown",Fishing,4 fishermen,M,11,fatal,True,"3 m, 600-kg shark",Reuters,2006.03.28.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.28.R-SierraLeone.pdf,2006.03.28.R,2006.03.28.R +1493,23-Mar-2006,Unprovoked,USA,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Surfing,Elizabeth Dunn,F,28,5 puncture wounds in left calf,False,"Tiger shark, 10' ",Honolulu Advertiser,2006.03.23-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.23-Dunn.pdf,2006.03.23,2006.03.23 +1494,22-Mar-2006,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,Lorenzo Kroutz ,M,17,fatal,True,Shark involvement prior to death was not confirmed,"Cape Times, 3/24/2006, p.3",2006.03.22-Koutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.22-Koutz.pdf,2006.03.22,2006.03.22 +1495,18-Mar-2006,Unprovoked,FIJI,Vitu Levu,Sigatoka,Surfing,Paul Sue,M,21,Lacerations to right hand,False,"Tiger shark, 5' ","R.D. Weeks, GSAF; Fiji Sun, 3/19/2006",2006.03.19-PaulSue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.19-PaulSue.pdf,2006.03.19,2006.03.19 +1496,15-Mar-2006,Unprovoked,AUSTRALIA,New South Wales,"Bondi, Sydney",Surfing,Blake Mohair,M,15,"No injury, shark nudged surfboard",False,"Bronze whaler shark, 2 m","The Australian, 3/15/2006",2006.03.15-Moclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.03.15-Moclair.pdf,2006.03.15,2006.03.15 +1497,27-Feb-2006,Unprovoked,USA,Hawaii,"Makena, Maui",Standing,Nikky Raleigh,F,15,Deep laceration to right calf,False,5' to 7' shark,"G.T. Kubota, Star Bulletin, 2/28/2006",2006.02.27-Raleigh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.27-Raleigh.pdf,2006.02.27,2006.02.27 +1498,23-Feb-2006,Invalid,USA,Hawaii,"Makena, Maui",Free diving,Anthony Moore,M,45,Forensic examination suggested diver drowned & afterwards his body was bitten by a shark/s,False,Invalid,http://www.kesq.com,2006.02.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.23-Moore.pdf,2006.02.23,2006.02.23 +1499,13-Feb-2006,Unprovoked,AUSTRALIA,Queensland,"Golden Beach, Caloundra",Wading,male,M,18,Lacerations to foot,False,Invalid,"G. Stolz, Courier-Mail, 2/14/2006",2006.02.13-GoldenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.13-GoldenBeach.pdf,2006.02.13,2006.02.13 +1500,12-Feb-2006,Unprovoked,AUSTRALIA,Queensland,"Point Vernon, Hervey Bay",Swimming,male,M,18,Puncture wound on arm,False,Invalid,"G. Stolz, Courier-Mail, 2/14/2006",2006.02.12.b-HerveyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.b-HerveyBay.pdf,2006.02.12.b,2006.02.12.b +1501,12-Feb-2006,Boating,AUSTRALIA,South Australia,"Brighton Beach, Adelaide",Fishing,"Josh Francou, Michael Brister & Paul Bahr",M,18,No injury to occupants; shark nudged the 5.3 m boat,False,4.5 m white shark,Port Adelaide Football Club,2006.02.12.a-Franco_boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.12.a-Franco_boat.pdf,2006.02.12.a,2006.02.12.a +1502,08-Feb-2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Jason Noades,M,15,2 bite marks on right calf,False,Raggedtooth shark,"M. Kabeli, Dispatch Online.com; G. Brett & K. Cole, EL Museum",2006.02.08-Noades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.08-Noades.pdf,2006.02.08,2006.02.08 +1503,01-Feb-2006,Unprovoked,TONGA,Vava'u,Tu’anuku,Swimming,Tessa Horan,F,24,fatal,True,Tiger shark,D. Clem; www.matangitonga.to,2006.02.01.b-Horan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.b-Horan.pdf,2006.02.01.b,2006.02.01.b +1504,01-Feb-2006,Boating,USA,Hawaii,"Off Pu'u Ola'l, Makena, Maui",Kayaking,Dan Lankheit,M,57,No injury to occupant; shark bumped the kayak repeatedly for 15 minutes,False,12' to 18' shark,"R. Collier, GSAF; Honolulu Advertiser, 2/1/2006",2006.02.01.a-Lankheit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.02.01.a-Lankheit.pdf,2006.02.01.a,2006.02.01.a +1505,Reported 28-Jan-2006,Boating,ATLANTIC OCEAN,300 miles from Antigua,300 miles from Antigua,Competing in the Woodvale Atlantic Rowing Race,"Mayabrit, an ocean rowing boat. Occupants: Andrew Barnett & J.C.S. Brendana",M,46 & 34,No injury to occupants; shark rammed boat repeatedly,False,12' shark,"N. Bevan, icwales.icnetwork.co.uk, 1/28/2006",2006.01.28.R-Mayabrit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.28.R-Mayabrit.pdf,2006.01.28.R,2006.01.28.R +1506,25-Jan-2006,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Coffee Bay,Spearfishing,Michael Vriese,M,34,Right arm bitten,False,12' shark,"Geremy Cliff, NSB",2006.01.25-Vriese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.25-Vriese.pdf,2006.01.25,2006.01.25 +1507,23-Jan-2006,Boating,ATLANTIC OCEAN,800 miles from land,800 miles from land,Competing in the Woodvale Atlantic Rowing Race,"Rowgirls, an ocean rowing boat. Occupants: Sally Kettle, Claire Mills & Sue McMillan",F,"28, 23 & 30","No injury to occupants; a shark, accidentally caught in a line, threatened to rip out the transom",False,12' shark,"Northants News, 1/25/2006",2006.01.23-Rowgirls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.23-Rowgirls.pdf,2006.01.23,2006.01.23 +1508,18-Jan-2006,Unprovoked,USA,California,"Santa Cruz, Santa Cruz County",Night Surfing,Mario Lari,M,"28, 23 & 30","No injury, but 2 small nicks on wetsuit",False,12' shark,R. Collier,2006.01.18-Lari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.18-Lari.pdf,2006.01.18,2006.01.18 +1509,15-Jan-2006,Unprovoked,AUSTRALIA,Western Australia,"Off City Beach, Perth",Scuba diving,Bernie Williams,M,52,Lacerations to left elbow,False,3.5 m white shark,"T. Peake, GSAF",2006.01.15-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.15-Williams.pdf,2006.01.15,2006.01.15 +1510,11-Jan-2006,Invalid,BAHAMAS,Grand Bahama Island,Sandy Cay,Diving for lobsters,Hayward Thomas & Shalton Barr,M,52,"No injury, divers felt threatened by 10' pregnant female tiger shark & killed the shark",False,Invalid,"Bahama Journal, 1/13/2006",2006.01.11-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.11-Bahamas.pdf,2006.01.11,2006.01.11 +1511,07-Jan-2006,Unprovoked,AUSTRALIA,Queensland,"Amity Point, North Stradbroke Island",Swimming,Sarah Whiley,F,21,fatal,True,Bull shark,"T. Peake, GSAF",2006.01.07-Whiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.07-Whiley.pdf,2006.01.07,2006.01.07 +1512,04-Jan-2006,Unprovoked,USA,Florida,"Round Island Park, Indian River County",Surfing,male,M,21,3 puncture wounds in right wrist & hand,False,4' shark,"A. Neal, scripps.com",2006.01.04-IndianRiverSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.04-IndianRiverSurfer.pdf,2006.01.04,2006.01.04 +1513,01-Jan-2006,Unprovoked,SOUTH AFRICA,Western Cape Province,Soetwater,Diving for crayfish,John Williams,M,49,Lacerations to little finger,False,Said to involve a 1.5 m shark,"J.P. Botha, GSAF",2006.01.01-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2006.01.01-Williams.pdf,2006.01.01,2006.01.01 +1514,24-Dec-2005,Unprovoked,USA,Oregon,"Tillamook Head, Clatsop County",Surfing,Brian Anderson,M,30,Lacerations to ankle & calf,False,White shark,"R. Collier, GSAF; L.A. Times, 12/25/2005",2005.12.24-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.24-Anderson.pdf,2005.12.24,2005.12.24 +1515,21-Dec-2005,Unprovoked,USA,Hawaii,"Keawakapu Beach, Maui",Swimming,Jonathan Genant,M,29,Left hand bitten,False,Tiger shark, San Francisco Gate 2/21/2005,2005.12.21-Genant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.21-Genant.pdf,2005.12.21,2005.12.21 +1516,20-Dec-2005,Boating,ATLANTIC OCEAN,600 nm west of the Canary Islands,600 nm west of the Canary Islands,Competing in the Woodvale Atlantic Rowing Race,"7 m boat, occupants: Tara Remington & Iain Rudkin",,29,"No injury to occupants, shark rammed boat for 15 minutes",False,3 m shark,"R.D. Weeks, GSAF; NZ Herald, 12/21/2005",2005.12.20-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.20-rowboat.pdf,2005.12.20,2005.12.20 +1517,11-Dec-2005,Unprovoked,AUSTRALIA,Queensland,St. Crispin Reef,Spearfishing,Glenn Simpson,M,44,Right forearm & elbow bitten,False,Whitetip reef shark,"Courier-Mail, 12/12/2005",2005.12.11-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.11-Simpson.pdf,2005.12.11,2005.12.11 +1518,Reported 06-Dec-2005,Boat,AUSTRALIA,South Australia,"Middle Beach, 40 km north of Adelaide",Fishing,"5.4 m fibreglass boat, occupants: Robert & James Hogg",,44,"No injury to occupants, hydrofoil of outboard motor bitten ",False,4 m white shark,"Melbourne Herald Sun, 12/5/2005",2005.12.05.R-HoggBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.12.05.R-HoggBoat.pdf,2005.12.05.R,2005.12.05.R +1519,Reported 29-Nov-2005,Unprovoked,USA,Florida,"Cape San Blas, Gulf County",Surfing,John Larsen,M,teen,Left foot bitten,False,4 m white shark,wpmi.com,2005.11.29.R-Larsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.29.R-Larsen.pdf,2005.11.29.R,2005.11.29.R +1520,27-Nov-2005,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Blake Perry,M,23,Right thumb & palm lacerated,False,4' shark,"S. Petersohn, GSAF",2005.11.27-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.27-Perry.pdf,2005.11.27,2005.11.27 +1521,25-Nov-2005,Boat,AUSTRALIA,Victoria,"6 km off Collendina, south of Melbourne",Fishing,"4.5 m boat, occupant: Rodney Lawn",,23,"No injury to occupant, shark bit outboard motor",False,3 m white shark,"Sunday Mail (QLD), 11/27/2005, p.30",2005.11.25.c-boat-Lawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.c-boat-Lawn.pdf,2005.11.25.c,2005.11.25.c +1522,25-Nov-2005,Unprovoked,AUSTRALIA,Victoria,Flinders,Surfing,Tom Burke,M,18,"2 lacerations on leg, each 4"" to 5"" long",False,1.8 m shark,"Sydney Morning Herald, 11/25/2005",2005.11.25.b-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.b-Burke.pdf,2005.11.25.b,2005.11.25.b +1523,25-Nov-2005,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Ashley Milford,M,26,"Cut on finger, board bitten",False,1.8 m shark,Dispatch online,2005.11.25.a-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.25.a-Milford.pdf,2005.11.25.a,2005.11.25.a +1524,24-Nov-2005-,Unprovoked,NEW CALEDONIA,Loyalty Islands,Maré,Spearfishing,Emile,,26,Arm bitten,False,1.8 m shark,"Les Nouvelles Caledoniennes, 11/29/2005",2005.11.24-Emile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.24-Emile.pdf,2005.11.24,2005.11.24 +1525,21-Nov-2005,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Surfing,a male from Miami,M,30s,Left foot bitten,False,4' shark,Stuart News,2005.11.21-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.21-JensenBeach.pdf,2005.11.21,2005.11.21 +1526,20-Nov-2005,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kevin Spradlin,M,17,Lacerations to right thigh,False,4' shark,"S. Petersohn, GSAF",2005.11.20-Spradlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.20-Spradlin.pdf,2005.11.20,2005.11.20 +1527,Reported 16-Nov-2005,Boat,NEW CALEDONIA,unknown,unknown,Surfing,3.8-m boat with 3 people on board,,17,"No injury to occupants, shark lifted bow of boat 3 times",False,4.5 m white shark,"Le Quotidien, 11/16/2005, p.62",2005.11.16.R-boat-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.16.R-boat-NewCaledonia.pdf,2005.11.16.R,2005.11.16.R +1528,15-Nov-2005,Provoked,SOUTH AFRICA,Eastern Cape Province,Aston Bay,Fishing for sharks,Ivan Gerger,M,32,Lacerations to hands & right leg when he tried to pull shark from the water PROVOKED INCIDENT,False,"Raggedtooth shark, 2.5m ",J. Visser,2005.11.15-Gerger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.15-Gerger.pdf,2005.11.15,2005.11.15 +1529,12-Nov-2005,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Lance Cameron,M,18,Puncture wounds to right foot,False,6' shark,"S. Petersohn, GSAF",2005.11.12-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.12-Cameron.pdf,2005.11.12,2005.11.12 +1530,02-Nov-2005,Unprovoked,USA,California,"Mavericks, Half Moon Bay, San Mateo County",Surfing,Tim West,M,25,"No injury, board bitten",False,6' shark,"R. Collier, GSAF",2005.11.02.b-West.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.b-West.pdf,2005.11.02.b,2005.11.02.b +1531,02-Nov-2005,Unprovoked,USA,California,"Ocean Beach, San Francisco, San Francisco County",Surfing,Jake Daneman,M,26,"No injury, board bumped",False,12' to 14' white shark,"R. Collier, GSAF",2005.11.02.a-Daneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.11.02.a-Daneman.pdf,2005.11.02.a,2005.11.02.a +1532,29-Oct-2005,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,male,M,15,Puncture wounds to foot,False,2' to 3' shark,"Sentinel, 1-/30/2005",2005.10.29-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.29-PonceInlet.pdf,2005.10.29,2005.10.29 +1533,25-Oct-2005,Unprovoked,ST. MAARTIN,Simpson Bay,Sunterra Beach,Standing,James Bumpers,M,55,Lower right leg lacerated,False,2' shark,"M. Levine, GSAF",2005.10.25-Bumpers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.25-Bumpers.pdf,2005.10.25,2005.10.25 +1534,22-Oct-2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Uilenkraalsmond (near Gansbaai),Standing / Surfing,Christiaan van Zyl,M,20,Right foot bitten,False,3 m shark,Cape Times,2005.10.22-vanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.22-vanZyl.pdf,2005.10.22,2005.10.22 +1535,21-Oct-2005,Unprovoked,USA,California,"Klamath River mouth, Del Norte County",Surfing,Chad Reiker,M,36,No injury,False,White shark,"R. Collier, GSAF",2005.10.21-Reiker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.21-Reiker.pdf,2005.10.21,2005.10.21 +1536,19-Oct-2005,Unprovoked,USA,California,"Salmon Beach, Sonoma County",Surfing,Megan Halavais,F,20,Leg bitten,False,18' white shark,"R. Collier, GSAF; Bay City Newswire",2005.10.19-Halavais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.19-Halavais.pdf,2005.10.19,2005.10.19 +1537,15-Oct-2005,Provoked,USA,Florida,"Ponce Inlet, Volusia County",Wading,N.W.,M,15,Minor cuts to dorsum & sole of left foot when he stepped on shark PROVOKED INCIDENT,False,18' white shark,"S. Petersohn, GSAF; Florida Today, 10/16/2005 ",2005.10.15-NW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.15-NW.pdf,2005.10.15,2005.10.15 +1538,13-Oct-2005,Unprovoked,USA,Hawaii,"Honokowai, Maui",Surfing,Clayton Sado,M,22,"No injury, surfboard bitten",False,"Tiger shark, less than 10'",Hawaii Department of Land and Natural Resources,2005.10.13-Sado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.13-Sado.pdf,2005.10.13,2005.10.13 +1539,11-Oct-2005,Unprovoked,GRAND CAYMAN,East Wall,Jack McKenney's Canyon,Scuba diving,Lea Ann Hughes,F,57,No injury ,False,Caribbean reef sharks,"L.A.Hughes; G. Holt, Scubaradio.com",2005.10.11-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.11-Hughes.pdf,2005.10.11,2005.10.11 +1540,06-Oct-2005,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Treading water/ Surfing,Charles Hutson,M,48,Five 1-inch lacerations to left foot,False,Caribbean reef sharks,"S. Petersohn, GSAF",2005.10.06-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.06-Hutson.pdf,2005.10.06,2005.10.06 +1541,03-Oct-2005,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Diving,Nixon Pierre,M,35,Lacerations to right side of face,False,Caribbean reef sharks,"E. Ritter, GSAF; A. Armbrister, Freeport News, 10/3/2005",2005.10.03-Nixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.03-Nixon.pdf,2005.10.03,2005.10.03 +1542,01-Oct-2005,Unprovoked,SOUTH AFRICA,Western Cape Province,"Sunny Cove, Fish Hoek",Surf-skiing,Trevor Wright,M,52,"No injury, shark bit ski",False,White shark,"Cape Argus, Cape Times, 10/3/2005",2005.10.01-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.10.01-Wright.pdf,2005.10.01,2005.10.01 +1543,Reported 27-Sep-2005,Unprovoked,AUSTRALIA,New South Wales,Arakoon's Little Bay,Surfing,Wal Lewis,M,28,"No injury, knocked off board",False,"Tiger shark, 3 m ","Macleay Argues, 9/27/2005",2005.09.27.R- Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.27.R- Lewis.pdf,2005.09.27.R,2005.09.27.R +1544,24-Sep-2005,Unprovoked,AUSTRALIA,South Australia,Kangaroo Island,Surfing,Josh Berris,M,26,Lacerations to legs,False,14' to 16' white shark,"T. Peake, GSAF",2005.09.24-Berris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.24-Berris.pdf,2005.09.24,2005.09.24 +1545,23-Sep-2005,Unprovoked,AUSTRALIA,Western Australia,"Scarborough Beach, Perth",Surfing,Brad Satchell,M,44, No injury,False,Bronze whaler shark,"T. Peake, GSAF",2005.09.23-Satchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.23-Satchell.pdf,2005.09.23,2005.09.23 +1546,22-Sep-2005,Invalid,USA,Florida,"Tigertail Beach, Collier County",Surfing,Charlie Corrado,M,44,Lacerations to dorsum of left foot,False,Shark involvement not confirmed,"A. Galabinski, Marco Island Sun Times, 9/22/2005",2005.09.22-Corrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.22-Corrado.pdf,2005.09.22,2005.09.22 +1547,20-Sep-2005,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Body surfing,Clair Parrett,F,68,"Injuries to fingers, calf & heel",False,3' to 4' shark,"C. Creswell, GSAF; K. Galliard, Sun News, 9/21/2005",2005.09.20-Parrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.20-Parrett.pdf,2005.09.20,2005.09.20 +1548,11-Sep-2005,Unprovoked,USA,South Carolina,Folly Beach,Surfing,"Greg Norton, Jr.",M,18,fatal,True,3' to 4' shark,"Post & Courier, 9/12/2005",2005.09.11-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.11-Norton.pdf,2005.09.11,2005.09.11 +1549,07-Sep-2005,Unprovoked,AUSTRALIA,New South Wales,"Park Beach, Coff's Harbour",Standing,Blake Garnett,M,15,Left foot & ankle lacerated,False,3' to 4' shark,"Sydney Morning Herald, 9/9/2005",2005.09.07-Garnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.07-Garnett.pdf,2005.09.07,2005.09.07 +1550,05-Sep-2005,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Wading,Elizabeth Gardner,F,18,Calf severely lacerated,False,Bull shark,"Clay Creswell, GSAF",2005.09.05-Gardner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.05-Gardner.pdf,2005.09.05,2005.09.05 +1551,04-Sep-2005,Unprovoked,AUSTRALIA,South Australia,"Fishery Bay, Eyre Peninsula",Surfing,Jake Heron,M,40,Lacerations to right arm & thigh,False,4 m [13'] white shark,"C.Jenkin, Courier-Mail, 9/5/2005",2005.09.04-Heron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.04-Heron.pdf,2005.09.04.a,2005.09.04.a +1552,02-Sep-2005,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Standing / Surfing,Frances Grause,M,62,Right foot bitten,False,4 m [13'] white shark,"S. Petersohn, GSAF",2005.09.02.b-Grause.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.b-Grause.pdf,2005.09.02.b,2005.09.02.b +1553,02-Sep-2005,Provoked,THAILAND,On deck of fishing trawler 100 nautical miles offshore,On deck of fishing trawler 100 nautical miles offshore,Removing shark from net,"Ham, a Cambodian migrant worker",M,21,fatal,True,"2 m [6.75'] shark, 200-kg shark T","Africa online, citing the Bangkok Post",2005.09.02.a-Ham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.09.02.a-Ham.pdf,2005.09.02.a,2005.09.02.a +1554,24-Aug-2005,Unprovoked,AUSTRALIA,South Australia,Glenelg ,Scuba diving,Jarrod Stehbens,M,23,fatal,True,White shark,"Adelaide Advertiser, 8/26/2005",2005.08.24.b-Stehbens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.b-Stehbens.pdf,2005.08.24.b,2005.08.24.b +1555,24-Aug-2005,Unprovoked,USA,California,"Scripps, LaJolla, San Diego County",Surfing,Tony Simmonson,M,37,Lower right leg lacerated,False,juvenile white shark,"R. Collier, GSAF ",2005.08.24.a-Simmonson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.24.a-Simmonson.pdf,2005.08.24.a,2005.08.24.a +1556,22-Aug-2005,Invalid,USA,South Carolina,"6th Avenue North, Myrtle Beach, Horry County","Boogie boarding, kicked at object in the water",Nicholas House,M,17,"Laceration to knee, possibly by a small blacktip shark",False,Shark involvement not confirmed,"Clay Creswell, GSAF",2005.08.22-House.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.22-House.pdf,2005.08.22,2005.08.22 +1557,21-Aug-2005,Unprovoked,USA,South Carolina,"34th Avenue North, Myrtle Beach, Horry County",Swimming,Jacob Kolessar,M,8,Bitten underneath left arm,False,Possibly a sandbar shark or small blacktip shark,"Clay Creswell, GSAF",2005.08.21-Kolessar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.21-Kolessar.pdf,2005.08.21,2005.08.21 +1558,19-Aug-2005,Unprovoked,USA,Texas,Crystal Beach (east of Galveston),Walking,Julian Elizondo,M,12,Left foot bitten,False,Possibly a sandbar shark or small blacktip shark,"Clay Creswell, GSAF; Houston Chronicle, 8/20/2005",2005.08.19-Elizondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.19-Elizondo.pdf,2005.08.19,2005.08.19 +1559,14-Aug-2005,Invalid,SOUTH AFRICA,Western Cape Province,"Milnerton Lagoon, Cape Town",Walking,"J. Eager, scubaradio.com; Cape Times, 8/15/2005",,12,Human foot recovered from the water,False,Shark involvement prior to death was not confirmed,"J. Eager, scubaradio.com; Cape Times, 8/15/2005",2005.08.14-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.14-foot.pdf,2005.08.14,2005.08.14 +1560,12-Aug-2005,Unprovoked,USA,North Carolina,"Carolina Beach off Texas Avenue, New Hanover County",Surfing,Chris O'Connor,M,16,Laceration on right wrist & crescent of puncture wounds on forearm ,False,1.8 m [6'] shark,"C. Creswell, GSAF",2005.08.12-ChrisO'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.12-ChrisO'Connor.pdf,2005.08.12,2005.08.12 +1561,6-Aug-2005,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Michael Lamb,M,14,Puncture wounds on left foot ,False,1.8 m [6'] shark,"C. Creswell, GSAF",2005.08.06-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.06-Lamb.pdf,2005.08.06,2005.08.06 +1562,1-Aug-2005,Invalid,Seychelles,Inner Islands,Off North Island,Fishing,Rolly Lesperance,M,14,fatal,True,Invalid,D. Rowat,2005.08.01-Lesperance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.08.01-Lesperance.pdf,2005.08.01,2005.08.01 +1563,27-Jul-2005,Unprovoked,USA,Florida,"Off Zelda Boulevard, Daytona Beach, Volusia Countyy",Wading,Nicole Carlos,F,13,Laceration on the back of left hand & toothmarks on wrist,False,Invalid,"D. Salamone, GSAF",2005.07.27-Carlos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.27-Carlos.pdf,2005.07.27,2005.07.27 +1564,23-Jul-2005,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Bob Thompson,M,61,"Right foot: Toes and back of foot, minor injury",False,Invalid,"D. Salamone, GSAF",2005.07.23-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.23-Thompson.pdf,2005.07.23,2005.07.23 +1565,22-Jul-2005,Invalid,USA,Florida,"Quarter mile south of Ponce de Leon Inlet, Volusia County",Surfing,Matthew Pearce,M,25,"Straight 2.5"" laceration on top of left ankle",False,Shark involvement not confirmed,"D. Salamone, GSAF",2005.07.22-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.22-Pearce.pdf,2005.07.22,2005.07.22 +1566,17-Jul-2005,Invalid,LIBERIA,unknown,unknown,Swimming,Valentyn Onuk,M,25,Presumed to have drowned until his body washed ashore 2 weeks later with shark bites,False,Shark involvement prior to death was not confirmed,"R.D. Weeks, GSAF",2005.07.17.b-Onuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.b-Onuk.pdf,2005.07.17.b,2005.07.17.b +1567,17-Jul-2005,Provoked,CHINA,Shanghai,"Ocean World, Changfeng Park",Scuba diving in aquarium tank,Zhang Liang ,M,24,2 small cuts on right ear & head when he collided with the captive shark. PROVOKED INCIDENT,False,3.5 m [11.5']shark,"Shanghai Star, 7/21/2005",2005.07.17.a-Liang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.17.a-Liang.pdf,2005.07.17.a,2005.07.17.a +1568,Reported 15-Jul-2005,Invalid,AUSTRALIA,unknown,unknown,Scuba diving in aquarium tank,"Jeff Wells claimed he rescued his ""daughter"" from a 4 m tiger shark",,24,"A hoax - No shark was involved and Wells' ""daughter"" was his business partner Eileen Purchase who injured her finger on his boat",False,No shark involvement,"Sunday Mail, 15/7/2005",2005.07.15.R- Hoax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.R- Hoax.pdf,2005.07.15.R,2005.07.15.R +1569,15-Jul-2005,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Swimming,Chris Humphrey,M,22,Lacerations of left forearm,False,[4.5' to 5'] shark,"C. Creswell, GSAF",2005.07.15.a-Humphrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.15.a-Humphrey.pdf,2005.07.15,2005.07.15 +1570,13-Jul-2005,Unprovoked,USA,Texas,"Port Bolivar, Galveston County",Holding onto an inflatable boat,Lydia Paulk,F,14,Left foot bitten,False,[4' to 5'],"C. Creswell, GSAF",2005.07.13-Paulk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.13-Paulk.pdf,2005.07.13,2005.07.13 +1571,1-Jul-2005,Unprovoked,USA,Florida,"Boca Grande, Lee County",Standing,Armin Trojer,M,19,Ankle bitten,False,[4' to 5'],"E. Ritter, GSAF",2005.07.01-Trojer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.07.01-Trojer.pdf,2005.07.01,2005.07.01 +1572,27-Jun-2005,Unprovoked,USA,Florida,"Cape San Blas, Gulf County",Fishing,Craig Adam Hutto,M,16,"Leg severely bitten, surgically amputated",False,Bull shark,"E. Ritter, GSAF",2005.06.27-Hutto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.27-Hutto.pdf,2005.06.27,2005.06.27 +1573,25-Jun-2005,Unprovoked,USA,Florida,"Destin, Walton County",Swimming with boogie board,Jamie Marie Daigle ,F,14,fatal,True,1.8 m [6'] bull shark,"E. Ritter, GSAF",2005.06.25-Daigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.25-Daigle.pdf,2005.06.25,2005.06.25 +1574,22-Jun-2005,Unprovoked,VANUATU,Malampa Province,Atchin Island off Malakula,Swimming,Alysha Margaret Webster,F,7,fatal,True,"On 8/13/2005 anglers from New Zealand caught a 2.8 m [9'3""], 140-kg [309-lb] shark at the same spot. It was believed this was the same shark that killed Alysha","R.D. Weeks, GSAF; New Zealand Herald, 6/23/2005",2005.06.22-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.22-Webster.pdf,2005.06.22,2005.06.22 +1575,20-Jun-2005,Unprovoked,MEXICO ,Baja California,San Luis beach,Surfing,Frank Johnson,M,7,Left foot bitten,False,"On 8/13/2005 anglers from New Zealand caught a 2.8 m [9'3""], 140-kg [309-lb] shark at the same spot. It was believed this was the same shark that killed Alysha",http://www.signonsandiego.com/news/mexico/20050622-1621-mexico-sharkattack.html,2005.06.21-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.21-Johnson.pdf,2005.06.21,2005.06.21 +1576,18-Jun-2005,Invalid,USA,Hawaii,Maui,Swimming,Brad Grissom,M,49,"No injury, 2.1m [7'] tiger shark approached swimmer who repelled it with his fist",False,Invalid,www.mauinews.com,2005.06.18-Grissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.18-Grissom.pdf,2005.06.18,2005.06.18 +1577,16-Jun-2005,Unprovoked,USA,Florida,"Howard E. Futch Memorial Park at Paradise Beach, Brevard County",Swimming,male,M,20,Foot bitten,False,"Unknown, but it was reported that a shark tooth was recovered from the wound",Local6.com,2005.06.16-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.16-male.pdf,2005.06.16,2005.06.16 +1578,13-Jun-2005,Unprovoked,SOUTH KOREA,South Ch'ungch'ong Province,Dando/Kaeui Island ,Diving,Lee,F,38,Knee bitten,False,3 m [10'] white shark,"Korea Times, 6/13/2005 ",2005.06.13-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.13-Lee.pdf,2005.06.13,2005.06.13 +1579,07-Jun-2005,Unprovoked,USA,South Carolina,"Kiawah Island, Charleston County",Boogie boarding,Catherine Cochrane,F,11,Foot lacerated,False,3 m [10'] white shark,"C. Creswell, GSAF; N. Kenney, NewsChannel 19",2005.06.07-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.07-Cochrane.pdf,2005.06.07,2005.06.07 +1580,05-Jun-2005,Invalid,USA,New Jersey,"Surf City, Long Beach Island, Ocean County",Surfing,Ryan Horton,M,17,Dorsum of foot/ankle injured by surfboard skeg or other inanimate object.,False,"Mr. Burgess of ISAF announced the injury was the bite of a 1.8 m [6'], 2- to 3-year old white shark. Subsequent investigation revealed there was no shark involvement in this incident","Mr. Horton; R. Collier, R. Fernicola; M. Levine, E. Ritter, GSAF ",2005.06.05-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.05-Horton.pdf,2005.06.05,2005.06.05 +1581,04-Jun-2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Miller's Point,Spearfishing (Free diving),Henri Murray,M,22,fatal,True,White shark,News24.com; SABC; H. Steele,2005.06.04-HenriMurray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.04-HenriMurray.pdf,2005.06.04,2005.06.04 +1582,02-Jun-2005,Unprovoked,USA,Texas,"Mustang Island, Corpus Christi",Wading,male,M,6,Two 2-inch lacerations on right foot,False,White shark,KRIS6 News,2005.06.02-Texas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.06.02-Texas.pdf,2005.06.02,2005.06.02 +1583,28-May-2005,Unprovoked,USA,Florida,Daytona Beach Shores,Swimming,Alfonso Garcia,M,33,Left foot bitten,False,"""small shark""","Daytona Beach News Journal, 5/29/2005; Orlando Sentinel, 5/30/2005, p.B3",2005.05.28-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.28-Garcia.pdf,2005.05.28,2005.05.28 +1584,27-May-2005,Unprovoked,USA,Florida,"Sand Key Beach, Clearwater, Pinellas County",Crouching in 2' of water,Michelle Smith,F,33,Right arm & torso bitten,False,"18"" to 36"" shark","D.Wilhoit, The Ledger, 5/29/ 2005",2005.05.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.27-Smith.pdf,2005.05.27,2005.05.27 +1585,25-May-2005,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Surfing,Jay Catherall ,M,32,Left buttock & legs lacerated ,False,Raggedtooth shark,"C. Prince, East London Daily Dispatch, 5/26/2005; SABC News",2005.05.25-Catherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.25-Catherall.pdf,2005.05.25,2005.05.25 +1586,15-May-2005,Unprovoked,AUSTRALIA,Queensland,50 km east of Townsville,Spearfishing,Ben Edelstein,M ,32,Severe injury to lower leg,False,Blacktip shark,"J. Anderson, Townsville Bulletin, 5/21/2005 ",2005.05.15-Edelstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.15-Edelstein.pdf,2005.05.15,2005.05.15 +1587,14-May-2005,Boating,USA,Hawaii,"North Kihei, Maui",Kayaking,J. Bailey,,32,"No injury, shark bit kayak",False,"Tiger shark, 8' to 9' ",Hawaii Department of Land and Natural Resources,2005.05.14-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.14-Bailey.pdf,2005.05.14,2005.05.14 +1588,03-May-2005,Unprovoked,MADAGASCAR,unknown,unknown,Fishing,Sochidjin,M,32,Thigh bitten,False,2.5 m shark,"Clicanoo, 5/6/2005, 5/7/2005",2005.05.03-Sochodjin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.03-Sochodjin.pdf,2005.05.03,2005.05.03 +1589,02-May-2005,Sea Disaster,USA,South Carolina,Off Sullivans Island,Sea Disaster,Boat: 14' Sunfish. Occupants Josh Long & Troy Driscoll,M,Teens,No injury,False,2.5 m shark,"Gaffney Ledger, 5/2/2005",2005.05.02.R-NC-boysAdrift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.R-NC-boysAdrift.pdf,2005.05.02.R,2005.05.02.R +1590,02-May-2005,Unprovoked,USA,Hawaii,"Noreiga's, Maui",Surfing,Scott Hoyt,M,47,"No injury, board damaged",False,"Tiger shark, 3 m [10']","T. Hurley, Honolulu Advertiser; L. Fujimoto, Maui News, 5/3/2005 ",2005.05.02.a-Hoyt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.05.02.a-Hoyt.pdf,2005.05.02,2005.05.02 +1591,25-Apr-2005,Provoked,AUSTRALIA,New South Wales,Bermagui,Fishing,male,M,25,Laceration on left thigh PROVOKED INCIDENT,False,"Mako shark, 1.5 m [5'] ","Brisbane Courier Mail, 4/26/2005",2005.04.25-deckhand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.25-deckhand.pdf,2005.04.25,2005.04.25 +1592,17-Apr-2005,Unprovoked,AUSTRALIA,New South Wales,Crookhaven,Fishing,"Illawarra Mercury, 4/17/2005",,25,Shark-bitten surfboard found adrift,False,"Mako shark, 1.5 m [5'] ","Illawarra Mercury, 4/17/2005",2005.04.17.a-Crookhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.17.a-Crookhaven.pdf,2005.04.17.R,2005.04.17.R +1593,16-Apr-2005,Unprovoked,AUSTRALIA,Northern Territory,Bremer Island,Spearfishing,Clayton Deane,M,20,Minor cuts above his right eye,False,2 m [6.75'] copper shark,"G. McLean, Northern Territory News; Sunday Territorian, 4/17/2005, p.6",2005.04.16.b-Deane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.b-Deane.pdf,2005.04.16.b,2005.04.16.b +1594,16-Apr-2005,Unprovoked,AUSTRALIA,New South Wales,Bronte Beach,Surfing,Simon Letch,M,40,"No injury, board bitten",False,Bronze whaler shark,The Sun; Illwarra Mercury; Yahoo News,2005.04.16.a-Letch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.16.a-Letch.pdf,2005.04.16.a,2005.04.16.a +1595,13-Apr-2005,Unprovoked,USA,Florida,"Crescent Beach, Sarasota County",Wading,Jessica Lynch,F,70,Right lower leg bitten,False,1.8 m [6'] blacktip shark,Herald Tribune.com,2005.04.13-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.13-Lynch.pdf,2005.04.13,2005.04.13 +1596,09-Apr-2005,Invalid,USA,Florida,"Central Gulf Coast, St. John County",Surfing,Glenn Henderson,M,52,Foot injured ,False,Shark involvement not confirmed,"WTSP TampaBays10.com; First Coast News, April 10, 2005 ",2005.04.09-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.09-Henderson.pdf,2005.04.09,2005.04.09 +1597,07-Apr-2005,Unprovoked,USA,Texas,"Isla Blanca Park, South Padre Island, Cameron County",Surfing,Gianluca Ferrario ,M,37,Left foot bitten ,False,Shark involvement not confirmed,"G. Ferrario; J. Mendoza, Cameron County Parks; The Herald (Brownsville), 4/11/2005",2005.04.07-GianlucaFerrario.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.07-GianlucaFerrario.pdf,2005.04.07,2005.04.07 +1598,06-Apr-2005,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Jessica Abe,F,37,Left calf injured,False,small hammerhead shark,WJXT News4Jax.com,2005.04.06.a-Abe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.a-Abe.pdf,2005.04.06,2005.04.06 +1599,06-Apr-2005,Invalid,HONDURAS,Bay Islands,Utila,SCUBA Diving,female,F,37,"Laceration on siide of calf, small laceration on thigh, large bruise on other leg inside the knee, knuckle of hand abraded",False,Shark involvement not confirmed,"J. Engel, SRI & S. Fox, Deep Blue",2005.04.06.b-Utila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.04.06.b-Utila.pdf,2005.04.06,2005.04.06 +1600,28-Mar-2005,Unprovoked,SOUTH AFRICA,Western Cape Province,Noordhoek,Surfing,Chris Sullivan,M,32,"Lacerations to right calf, puncture wounds on right foot",False,4 m [13'] shark,"ITN, 3/30/2005",2005.03.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.28-Sullivan.pdf,2005.03.28,2005.03.28 +1601,Reported 27-Mar-2005,Unprovoked,AUSTRALIA,New South Wales,New South Wales,Surfing,Chris Parker,M,32,"No injury, shark rammed surfboard",False,4 m [13'] shark,"Sunday Age, 3/27/2005",2005.03.27.R-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.27.R-Parker.pdf,2005.03.27.R,2005.03.27.R +1602,25-Mar-2005,Unprovoked,VENEZUELA,Punta Caracas,Punta Caracas,Surfing,Jokin Leizaola,M,32,Right leg bitten,False,4 m [13'] shark,"A. Brenneka, GSAF",2005.03.25-Leizaola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.25-Leizaola.pdf,2005.03.25,2005.03.25 +1603,19-Mar-2005,Unprovoked,AUSTRALIA,Western Australia,"Wreck Point, Abrolhos Islands",Snorkeling,Geoffrey Brazier,M,26,fatal,True,6 m [20'] white shark,"T. Peake, GSAF",2005.03.19-Brazier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.19-Brazier.pdf,2005.03.19,2005.03.19 +1604,12-Mar-2005,Provoked,USA,New Mexico,"Albuquerue Aquarium, Albuquerue",Diving in aquarium display tank,Ken Pitts,M,45,2 punctures on forearm as captive shark collided with diver PROVOKED INCIDENT,False,"Sandtiger shark, 2.1 m [7'] ","H. Casman; T. Dukart, KOBTV",2005.03.12-Pitts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.12-Pitts.pdf,2005.03.12,2005.03.12 +1605,10-Mar-2005,Invalid,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Diving in aquarium display tank,Anthony Arnachallan ,M,51,Bites by 2.5 m tiger shark were post mortem,False,Invalid,"J. Govander, Nokia Sea Rescue, SAPA",2005.03.10-Arnachallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.10-Arnachallan.pdf,2005.03.10,2005.03.10 +1606,09-Mar-2005,Provoked,NEW ZEALAND,North Island,"Waiapu River mouth , East Cape",Fishing,"Chris Haenga, Wayne Rangihuna & Tamahau Tibble",M,51,"No injury, netted shark dragged them 350 metres out to sea PROVOKED INCIDENT",False,"Bronze whaler shark, 4.3 m [14'] ","R.D. Weeks, GSAF",2005.03.09-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.09-fishermen.pdf,2005.03.09,2005.03.09 +1607,05-Mar-2005,Unprovoked,SOLOMON ISLANDS,Santa Isabel Province,Santa Isabel Province,Diving,male,M,51,Thighs bitten,False,"Bronze whaler shark, 4.3 m [14'] ","Solomon Star, 3/9/2005",2005.03.05-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.03.05-SolomonIslands.pdf,2005.03.05,2005.03.05 +1608,26-Feb-2005,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Swimming,Nathan Shaxson,M,18,Finger bitten,False,Bull shark,Queensland Times,2005.02.26-Shaxson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.26-Shaxson.pdf,2005.02.26,2005.02.26 +1609,22-Feb-2005,Provoked,USA,Florida,"Long Key, Monroe County",Spearfishing,Alex Mumzhiu,M,18,Speared shark bit his chest PROVOKED INCIDENT,False,"Nurse shark, 3' ",http://www.foldabikes.com/CurrentEvents/Story/Florida.html,2005.02.22-AlexMumzhiu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.22-AlexMumzhiu.pdf,2005.02.22,2005.02.22 +1610,16-Feb-2005,Unprovoked,USA,Hawaii,"Rocky Point, north shore of O'ahu",Surfing,Greg Long,M,18,"No injury, knocked off board, shark bit board",False,"Tiger shark, 2.4 m [8']"," R. Collier, GSAF; T. Winters, Honolulu Advertiser, 2/17/2005 ",2005.02.16-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.16-Long.pdf,2005.02.16,2005.02.16 +1611,13-Feb-2005,Unprovoked,USA,Florida,Fort Lauderdale,Spearfishing,male,M,18,Hand bitten,False,1.8 m [6'] Caribbean reef shark,J. Herrera,2005.02.13-FtLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.13-FtLauderdale.pdf,2005.02.13,2005.02.13 +1612,04-Feb-2005,Unprovoked,BRAZIL,Bahia,Ilhéus,Surfing,Antonio de Carvalho Miguel Pereira ,M,12,Right thigh & ankle injured,False,1.8 m [6'] Caribbean reef shark,"Orlando Sentinel, 2/5/2005, p.A6",2005.02.04-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.02.04-Pereira.pdf,2005.02.04,2005.02.04 +1613,20-Jan-2005,Unprovoked,CUBA,Santiago de Cuba Province,Uvero,Swimming,Hurdenis Jérez ,M,19,Left foot severed,False,3 m [10'] shark,Cuba News,2005.01.20-Jerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.20-Jerez.pdf,2005.01.20,2005.01.20 +1614,19-Jan-2005,Provoked,AUSTRALIA,Victoria,Port Phillip Bay,Spearfishing,Julian McLaughlin,M,19,No injury. Towed by speared shark PROVOKED INCIDENT,False,3 m shark,Herald Sun News,2005.01.19-McLaughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.19-McLaughlin.pdf,2005.01.19,2005.01.19 +1615,14-Jan-2005,Provoked,AUSTRALIA,Victoria,Blairgowrie,Attempting to drive shark away from sailing regatta,dinghy,,19,"No injury to occupants, one of the boat's flotation tanks holed PROVOKED INCIDENT",False,"Bronze whaler shark, 2 m to 3 m [6.75' to 10'] ",Herald Sun News,2005.01.14-raceboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.14-raceboat.pdf,2005.01.14,2005.01.14 +1616,08-Jan-2005,Boating,NEW ZEALAND,North Island,Taupiri Bay,Fishing from a kayak,Paul Morris,M,39,"No injury, kayak bumped repeatedly",False,White shark,"R. Collier & R.D. Weeks, GSAF ",2005.01.08-PaulMorris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2005.01.08-PaulMorris.pdf,2005.01.08,2005.01.08 +1617,26-Dec-2004,Invalid,SRI LANKA,Eastern Province,Pasikudha,"Swept out to sea by the tsunami, she clung to a log for 24 hours",Sylvia Lucas,F,11,No injury,False,No shark involvement,"R.D. Weeks, GSAF",2004.12.26-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.26-Lucas.pdf,2004.12.26,2004.12.26 +1618,16-Dec-2004,Unprovoked,AUSTRALIA,South Australia,"West Beach, Adelaide",Scurfing (surfboard being towed behind a boat),Nick Peterson,M,18,fatal,True,4.5 m & 5 m white shark ,"P. Kemp & T. Peake, GSAF",2004.12.16-Peterson-draft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.16-Peterson-draft.pdf,2004.12.16,2004.12.16 +1619,11-Dec-2004,Unprovoked,AUSTRALIA,Queensland,Opal Reef,Spearfishing,Mark Thompson,M,38,fatal,True,Bull shark,"Weekend Australian, 2/17/2005, et al.",2004.12.11-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.12.11-Thompson.pdf,2004.12.11,2004.12.11 +1620,27-Nov-2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Llewellyn Maske,M,20,3 lacerations on foot,False,Raggedtooth shark,J. Eager,2004.11.27-Maske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.27-Maske.pdf,2004.11.27,2004.11.27 +1621,26-Nov-2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie,Playing,Arno de Bruyn,M,16,Lacerations on lower leg & foot,False,Raggedtooth shark,J. Eager,2004.11.26-ArnoDeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.26-ArnoDeBruyn.pdf,2004.11.26,2004.11.26 +1622,15-Nov-2004,Unprovoked,SOUTH AFRICA,Western Cape Province,"Fish Hoek, False Bay",Swimming,Tyna Webb,F,77,fatal,True,6 m [20'] white shark,"J.P. Botha, GSAF",2004.11.15-TynaWebb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.15-TynaWebb.pdf,2004.11.15,2004.11.15 +1623,11-Nov-2004,Unprovoked,USA,California,"Bunkers, Humboldt Bay, Eureka, Humboldt County",Surfing,Brian Kang,lli,38,"Lacerations to hand, knee & thigh ",False,5.5 m [18'] white shark,"R. Collier, GSAF ",2004.11.11.b-Kang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.b-Kang.pdf,2004.11.11.b,2004.11.11.b +1624,11-Nov-2004,Unprovoked,VANUATU,Malampa Province,Malakula (Malakula Island),Snorkeling,a German tourist (male),M,30s,Thigh bitten,False,5.5 m [18'] white shark,"R. Harris, M.D., T. Peake, GSAF",2004.11.11.a-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.11.a-Vanuatu.pdf,2004.11.11.a,2004.11.11.a +1625,Nov-2004,Unprovoked,NEW CALEDONIA,North Province,Koumac,Diving,Unknown,,30s,Forearm bitten,False,3 m shark,"Les Nouvelles Caledoniennes, 11/19/2004",2004.11.00-Koumac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.11.00-Koumac.pdf,2004.11.00,2004.11.00 +1626,31-Oct-2004,Unprovoked,CUBA,Camaguey Province,Santa Lucia,Diving,male,M,40,Left forearm bitten,False,2.5 m [8.25'] bull shark,"E. Ritter, GSAF",2004.10.31-CubanSharkFeed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.31-CubanSharkFeed.pdf,2004.10.31,2004.10.31 +1627,30-Oct-2004,Invalid,NEW ZEALAND,North Island,Whangarei,Diving,"New Zealand Herald, 11/24/2004/15/2004",,40,No injury,False,Invalid,"New Zealand Herald, 11/24/2004/15/2004",2004.10.30.x-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.x-NewZealand.pdf,2004.10.30.x,2004.10.30.x +1628,30-Oct-2004,Unprovoked,SOUTH AFRICA,Western Cape Province,Gansbaai,Chumming for white sharks,Andre Hartman,M,52,Right ankle & foot lacerated,False,2 m [6.75'] white shark,"J.P. Botha, GSAF",2004.10.30.a-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.30.a-Hartman.pdf,2004.10.30.a,2004.10.30.a +1629,21-Oct-2004,Unprovoked,AUSTRALIA,New South Wales,Stockton Beach,Surfing,John Gresham,M,59,Right foot lacerated,False,"Bronze whaler shark, 2.4 m [8'] ","The Border Mail, 10/23/2004",2004.10.21-Gresham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.21-Gresham.pdf,2004.10.21,2004.10.21 +1630,10-Oct-2004,Unprovoked,USA,California,"Limantour Beach, Point Reyes National Seashore",Surfing,Paul de Jung,M,59,Lower leg bitten,False,1.8 m to 2.4 m [6' to 8'] white shark,"R. Collier, GSAF",2004.10.10-deJung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.10-deJung.pdf,2004.10.10,2004.10.10 +1631,09-Oct-2004,Unprovoked,USA,Hawaii,Moloka'i,Spearfishing,Davy Sanada,M,34,Left shoulder bitten,False,"Tiger shark, 2.4 m to 3.7 m [8' to 12'] ","The Maui News, 10/10/2004 ",2004.10.09.b-Sanada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.b-Sanada.pdf,2004.10.09.b,2004.10.09.b +1632,09-Oct-2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey’s Bay,Surfing,Wayne Monk,M,34,Puncture wounds on right foot,False,"Raggedtooth shark, 1.5 to 2 m [5' to 6.75']","Sunday Argus, 10/10/2004; W. Steenkamp, Cape Times 10/9/2004",2004.10.09.a-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.09.a-Monk.pdf,2004.10.09.a,2004.10.09.a +1633,06-Oct-2004,Unprovoked,REUNION,Conservatória District,"P' tit Paris, Saint-Pierre",Body boarding,Vincent Motais ,M,15,"Leg severely bitten, surgically amputated",False,Thought to involve a 2.5 m bull or tiger shark,Federation Francaise de Surf,2004.10.06-Motais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.06-Motais.pdf,2004.10.06,2004.10.06 +1634,02-Oct-2004,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Surfing,Ben Ikola,M,16,"No injury, knocked off surfboard",False,Thought to involve a 2.5 m bull or tiger shark,"R. Collier, GSAF",2004.10.02-Ikola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.02-Ikola.pdf,2004.10.02,2004.10.02 +1635,01-Oct-2004,Unprovoked,USA,California,"Lifeguard Tower 16, Huntington Beach, Orange County",Surfing,Chuck Wilson,M,40,"No injury, shark struck board & spun it around",False,Thought to involve a 2.5 m bull or tiger shark,"R. Collier, GSAF",2004.10.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.10.01-Wilson.pdf,2004.10.01,2004.10.01 +1636,25-Sep-2004,Boat,AUSTRALIA,Queensland,Batt Reef,Spearfishing/ filming,"inflatable dinghy, occupants: Ben Cropp, J. Harding & T. Fleischman",,40,"No injury to occupants, boat damaged",False,"Tiger shark, 3 m [10'] ","R. Collier, GSAF",2004.09.25-CroppBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.25-CroppBoat.pdf,2004.09.25,2004.09.25 +1637,20-Sep-2004,Unprovoked,USA,Oregon,Gold Beach,Surfing,Seth Mead,M,26,Leg bitten,False,White shark,"S. Mead, R. Collier, J. Eager, B. Middleton",2004.09.20-Mead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.20-Mead.pdf,2004.09.20,2004.09.20 +1638,10-Sep-2004,Invalid,USA,Texas,South Padre Island,Surf fishing,male,M,26,Minor scratch on calf,False,Shark involvement questionable,M. Shields,2004.09.10-SouthPadreIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.10-SouthPadreIsland.pdf,2004.09.10,2004.09.10 +1639,08-Sep-2004,Unprovoked,BRAZIL,Pernambuco,"Pina, Recife",Swimming,Unidentified,,26,fatal,True,Shark involvement questionable,JCOnline,2004.09.08-Pina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.08-Pina.pdf,2004.09.08,2004.09.08 +1640,04-Sep-2004,Unprovoked,USA,South Carolina ,"North of Apache Pier, Myrtle Beach, Horry County",Jumping,Megan Durham,F,17,Left knee & leg bitten,False,2.4 m [8'] shark,"C. Creswell, GSAF",2004.09.04-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.09.04-Durham.pdf,2004.09.04,2004.09.04 +1641,29-Aug-2004,Unprovoked,USA,Florida,"New Smyrna Beach / Cape Canaveral National Seashore, Brevard County",Walking,Debbie Salamone,F,38,Heel bitten,False,2.4 m [8'] shark,"T. Jerome, GSAF; Daytona Beach News Journal, 8/31/2004",2004.08.29-Salamone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.29-Salamone.pdf,2004.08.29,2004.08.29 +1642,21-Aug-2004,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Bathing,Wagner da Silva,M,24,Calf bitten & both hands injured,False,"Tiger shark, 1.5 m ","P. M. Lopes, GSAF, 8/22/2004",2004.08.21-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.21-daSilva.pdf,2004.08.21,2004.08.21 +1643,20-Aug-2004,Unprovoked,USA,California,"204s, San Clemente, Orange County",Surfing,Shannon Lehman,M,24,Foot bitten,False,0.9 m to 1.2 m [3' to 4'] white shark,"R. Collier, GSAF",2004.08.20-Lehmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.20-Lehmann.pdf,2004.08.20,2004.08.20 +1644,15-Aug-2004,Unprovoked,USA,California,"Kibesillah, Mendocino County",Diving,Randy Fry,M,50,fatal,True,4.9 m to 5.5 m [16' to 18'] white shark,"R. Collier & L. Levine, GSAF",2004.08.15-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.15-Fry.pdf,2004.08.15,2004.08.15 +1645,06-Aug-2004,Unprovoked,USA,Florida,"Big Bayou, St. Petersburg, Pinellas County ",Swimming,James Tiffee,M,47,"Back, buttocks, left hand & left side of face bitten",False,1.2 m [4'] shark,"T. Jerome, GSAF",2004.08.06-Tiffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.06-Tiffee.pdf,2004.08.06,2004.08.06 +1646,03-Aug-2004,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Spearfishing,male,M,30,Minor puncture wounds to leg,False,1.2 m [4'] shark,"T. Peake, GSAF",2004.08.03-ByronBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.03-ByronBay.pdf,2004.08.03,2004.08.03 +1647,Aug-2004,Boat,SOUTH AFRICA,KwaZulu-Natal,Park Rynie,Fishing,boat x 2,,30,No injury to occupants; boat damaged,False,3 m to 4 m [10' to 13'] white shark,"J. Eager, scubaradio.com",2004.08.00-SAboats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.08.00-SAboats.pdf,2004.08.00,2004.08.00 +1648,31-Jul-2004,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Kelly Getzfread,F,20,Right foot bitten,False,3 m to 4 m [10' to 13'] white shark,"C. Creswell, GSAF",2004.07.31-Getzfread.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.31-Getzfread.pdf,2004.07.31,2004.07.31 +1649,30-Jul-2004,Unprovoked,RUSSIA,Kuril Islands in the Pacific,"Kunashir Island, 70 km from northern Japan",Diving & fishing with net,Vladimir Skutelnik,M,20,Thigh & calf bitten,False,White shark,"M. Gozum & J. Eager, scubaradio.com",2004.07.30-Skutelnik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.30-Skutelnik.pdf,2004.07.30,2004.07.30 +1650,28-Jul-2004,Unprovoked,USA,North Carolina,"Rodanthe, Dare County",Surfing,Catherine Delneo,F,28,Right calf bitten,False,White shark,"C.Delneo, C. Creswell, M. Levine, R. Collier, GSAF",2004.07.28-Delneo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.28-Delneo.pdf,2004.07.28,2004.07.28 +1651,27-Jul-2004,Unprovoked,USA,North Carolina,"Carolina Beach, New Hanover County",Swimming,Alexis Huesgen,F,13,Right forearm & wrist lacerated,False,1.8 m [6'] shark,"C. Creswell, GSAF",2004.07.27.b-Huesgen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.b-Huesgen.pdf,2004.07.27.b,2004.07.27.b +1652,27-Jul-2004,Unprovoked,USA,Texas,Galveston Island,Swimming,Erika Hailey,F,19,Right foot bitten,False,1.2 m to 1.5 m [4' to 5'] shark,KETK56 News,2004.07.27.a-Hailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.27.a-Hailey.pdf,2004.07.27.a,2004.07.27.a +1653,25-Jul-2004,Unprovoked,USA,Texas,"Bryan Beach, Brazoria County",Wading / fishing & carrying a bag of fish,Aaron Perez,M,11,Right forearm nearly severed and bites above & below the right knee,False,Bull shark,KRISTV.com,2004.07.25-AaronPerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.25-AaronPerez.pdf,2004.07.25,2004.07.25 +1654," 19-Jul-2004 Reported to have happened ""on the weekend""",Boating,AUSTRALIA,Western Australia,"7 km off Trigg surf beach, Perth",Fishing,"boat, occupants: Mike Taylor & his son, Jack, age 9 ",,11,"No injury to occupants; shark mouthed motor, severed anchor line",False,4 m [13'] white shark,"Channel 9; Northern Territory News, 7/20/2004, p.10 ",2004.07.19.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.19.R-boat.pdf,2004.07.19.R,2004.07.19.R +1655,15-Jul-2004 ,Unprovoked,JAPAN,Wakayama Prefecture,Susami,Fishing for squid aboard the trawler Shikishima-Maru when the shark leapt into the boat,Yuji Torimi,M,51,Suffered broken ribs when the shark's tail fin slammed into his chest,False,"Longfin mako shark, 3.5 m [11.5'], 350-kg [772-lb] ","Mainichi Shimbun, 7/17/2004 ",2004.07.15-Torimi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.15-Torimi.pdf,2004.07.15,2004.07.15 +1656,10-Jul-2004,Unprovoked,AUSTRALIA,Western Australia,"Lefthanders Beach, Margaret River",Surfing,Bradley Adrian Smith,M,30,fatal,True,"2 sharks, 4.5 m & 3 m ","T. Peake, GSAF",2004.07.10-BradSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.10-BradSmith.pdf,2004.07.10,2004.07.10 +1657,02-Jul-2004,Unprovoked,EGYPT,Sinai Peninsula,The lagoon at Dahab,Snorkeling,"Mirjam Buser, a Swiss tourist",F,Teen,Hand severed,False,"""black tipped"" shark","E. Ritter, GSAF; iwindsurf.co.uk",2004.07.02.b-MiriamBuser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.b-MiriamBuser.pdf,2004.07.02.b,2004.07.02.b +1658,02-Jul-2004,Unprovoked,USA,Alabama,"Gulf Shores Beach, Baldwin County",Wading,Trenton Martin,M,7,Right foot lacerated,False,4' to 5' shark,"C. Creswell, GSAF",2004.07.02.a-TrentonMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.07.02.a-TrentonMartin.pdf,2004.07.02.a,2004.07.02.a +1659,26-Jun-2004,Unprovoked,USA,California,"San Onofre State Beach, San Diego County",Surfing,Kelly French,M,45,"No injury, shark struck his board",False,"9'2"" white shark",R. Collier; GSAF,2004.06.26.b-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.b-French.pdf,2004.06.26.b,2004.06.26.b +1660,26-Jun-2004,Invalid,AUSTRALIA,Western Australia,Floreat Beach,Crayfishing,Gavin Duncan,M,45,"No injury, shark made threat displays & diver fended it off with his speargun",False,Invalid,"T. Peake, GSAF; Sunday Times (Perth) 6/27/2004, p.11",2004.06.26.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.26.a-Duncan.pdf,2004.06.26.a,2004.06.26.a +1661,14-Jun-2004,Unprovoked,USA,Florida,"Disney / Vero Beach, Indian River County",In water with diving seabirds,girl,F,45,Foot bitten,False,Invalid,Global Lifeguards,2004.06.14-Disney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.14-Disney.pdf,2004.06.14,2004.06.14 +1662,10-Jun-2004,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Body boarding,Tom O'Brien,M,17,Ankle & foot lacerated,False,"Bronze whaler shark, 2.5 m [8.25'] ","T. Peake, GSAF",2004.06.10.b-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.b-O'Brien.pdf,2004.06.10.b,2004.06.10.b +1663,10-Jun-2004,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming,Mitchell Anderson,M,8,Right wrist & left arm lacerated,False,1.2 m [4'] shark,"T. Jerome, GSAF; Daytona Beach News Journal,, 6/11/2004, p.1C",2004.06.10.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.10.a-Anderson.pdf,2004.06.10.a,2004.06.10.a +1664,02-Jun-2004,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,"Swimming, poaching perlemoen",Nkosinathi Mayaba,M,21,fatal,True,White shark,"J. Smetherham & B. Ndenze, Cape Times",2004.06.02-Mayabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.06.02-Mayabai.pdf,2004.06.02,2004.06.02 +1665,29-May-2004,Unprovoked,USA,Texas,"Pirate's Beach, Galveston Island",Wading,Ryan Eckstrum,M,16,Puncture wounds on shin,False,0.9 m to 1.5 m [3' to 5'] shark,J. David,2004.05.29-Eckstrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.29-Eckstrum.pdf,2004.05.29,2004.05.29 +1666,23-May-2004,Unprovoked,BRAZIL,Pernambuco,Piedade Beach,Swimming,Walmir Pereira da Silva,M,17,"Left hand, foot severed & left calf & arm bitten",False,Bull shark,"P. M. Lopes, GSAF; JC, 5/24/2004",2004.05.23.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.b-Silva.pdf,2004.05.23.b,2004.05.23.b +1667,28-May-2004,Unprovoked,USA,California,"Salmon Creek, Sonoma County",Surfing,"Bernard 'Butch' Connor, Jr.",M,44,No injury,False,2.4 m to 3.7 m [8' to 12'] shark,"R. Collier, GSAF; B. Connor, Jr.",2004.05.28-Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.28-Connor.pdf,2004.05.28,2004.05.28 +1668,23-May-2004,Unprovoked,USA,Florida,"St. Augustine, St. John's County",Boogie-boarding / swimming,male,M,9,Calf & foot lacerated,False,2.4 m to 3.7 m [8' to 12'] shark,News4Jax,2004.05.23.a - St.Augustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.23.a - St.Augustine.pdf,2004.05.23.a,2004.05.23.a +1669,22-May-2004,Invalid,USA,Florida,St. Augustine St. Johns County,Swimming,male,M,9,Single puncture wound on the foot,False,Shark involvement not confirmed,"T. Jerome, GSAF",2004.05.22.c-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.c-male.pdf,2004.05.22.c,2004.05.22.c +1670,22-May-2004,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Swimming,Michaela Grogan,F,9,Foot bitten,False,Shark involvement not confirmed,First Coast News,2004.05.22.b-Grogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.b-Grogan.pdf,2004.05.22.b,2004.05.22.b +1671,22-May-2004,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Wading,Naiane Barbosa Bringel,F,24,Hips & thighs bitten,False,Shark involvement not confirmed,"P.M. Lopes, GSAF, JC, 5/23/2004",2004.05.22.a-Bringel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.22.a-Bringel.pdf,2004.05.22.a,2004.05.22.a +1672,18-May-2004,Provoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Free diving & spearfishing,Wolfgang Leander,M,63,Left forearm bitten PROVOKED INCIDENT,False,"1,5 m [5'] Caribbean reef shark (Carcharhinus perezi)","W. Leander, M. Levine, GSAF",2004.05.18-Leander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.18-Leander.pdf,2004.05.18,2004.05.18 +1673,04-May-2004,Unprovoked,USA,Texas,Channel between South Padre Island & Padre Island National Seashore,Tandem surfing,Rachel Gore,M,28,"No injury, board bitten",False,"Mako shark, 1.8 m [6']",G. Gore & M. Sturdevant,2004.05.04-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.04-Gore.pdf,2004.05.04,2004.05.04 +1674,01-May-2004,Unprovoked,BRAZIL,Pernambuco,Piedade ,Swimming,Orlando Oscar da Silva,M,22,fatal,True,"Mako shark, 1.8 m [6']","JCOnline, 5/2/2004",2004.05.01-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.05.01-Orlando.pdf,2004.05.01,2004.05.01 +1675,26-Apr-2004,Unprovoked,AUSTRALIA,New South Wales,"Latitude Reef, near Forster",Diving,Chai Griffin,M,22,Puncture wounds on wrist,False,"Wobbegong shark, 1.2 m [4'] k","T. Peake, GSAF",2004.04.26-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.26-Griffin.pdf,2004.04.26,2004.04.26 +1676,22-Apr-2004,Boat,NEW ZEALAND,North Island,Motunui,Fishing,boat Live N Hope,,22,"No injury to occupants, boat scratched by shark",False,"White shark, 5.5 m [18']","T. Peake, GSAF",2004.04.22-boatLive'N-Hope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.22-boatLive'N-Hope.pdf,2004.04.22,2004.04.22 +1677,13-Apr-2004,Unprovoked, TONGA,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water, male 2,M,22,fatal,True,small sharks,"New Zealand Herald, 4/15/2004",2004.04.13.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.b-Tonga.pdf,2004.04.13.b,2004.04.13.b +1678,13-Apr-2004,Invalid, TONGA,Nuku'alofa,30 nautical miles offshore,Five men on makeshift raft after their 10 m fishing boat capsized and sank in rough seas. Survivors rescued after 7.5 hours in the water,male 1,M,22,fatal,True,Questionable Incident,"New Zealand Herald, 4/15/2004",2004.04.13.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.13.a-Tonga.pdf,2004.04.13.a,2004.04.13.a +1679,07-Apr-2004,Unprovoked,USA,Hawaii,"Kahana Beach, Maui",Surfing,Willis McInnis,M,57,fatal,True,Tiger shark,"L. Fujimoto, B. Perry & M. Tanji, Maui News ",2004.04.07-McInnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.07-McInnis.pdf,2004.04.07,2004.04.07 +1680,05-Apr-2004,Unprovoked,SOUTH AFRICA,Western Cape Province,"Surfers' Corner, Muizenberg, False Bay",Surfing,J.P. Andrew,M,16,"Left leg lacerated, right leg severed above the knee ",False,5 m [16.5'] white shark,"L. Compagno & E. Ritter, GSAF",2004.04.05-JP-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.05-JP-Andrew.pdf,2004.04.05,2004.04.05 +1681,04-Apr-2004,Invalid,USA,Hawaii,Velzyland,Surfing,Courtney Marcher,F,22,"Disappeared, surfboard washed ashore, marks on leash suggested shark involvement ",False,Shark involvement prior to death was not confirmed,"R. Antone, Honolulu Star Bulletin",2004.04.04-CourtneyMarcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.04.04-CourtneyMarcher.pdf,2004.04.04,2004.04.04 +1682,31-Mar-2004,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,Todd Rapp,M,26,Right foot bitten,False,Shark involvement prior to death was not confirmed,"D. Davies, Palm Beach Post, 6/3/2004",2004.03.31.b-Rapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.b-Rapp.pdf,2004.03.31.b,2004.03.31.b +1683,31-Mar-2004,Unprovoked,USA,Florida,"Stuart Rocks, Martin County",Surfing,Chance Dean,M,20,15 puncture wounds on foot,False,1.2 m [4'] bull shark,"T. Jerome, GSAF; Palm Beach Post, 4/1/2004",2004.03.31.a-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.31.a-Dean.pdf,2004.03.31.a,2004.03.31.a +1684,29-Mar-2004,Unprovoked,BRAZIL,Pernambuco,Piedade Beach,Body boarding,Alcindo de Souza Leão Júnior,M,22,"Lower left leg bitten, surgically amputated",False,bull shark,"P.M. Lopes, GSAF; Diaro, 3/30/2004",2004.03.29-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.29-Souza.pdf,2004.03.29,2004.03.29 +1685,28-Mar-2004,Unprovoked,USA,Florida,"Pelican Beach Park, Satellite Beach, Brevard County",Surfing,male,M,22,Heel bitten,False,bull shark,"J.D. Gallop, Florida Today",2004.03.28-PelicanBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.28-PelicanBeach.pdf,2004.03.28,2004.03.28 +1686,27-Mar-2004,Unprovoked,REUNION,Saint-Benoît,Spot de la gare,Surfing,Rémy Lorion,M,20,Right thigh bitten,False,2.5 m shark,"Clicanoo, le journal de l'Ile de la Réunion",2004.03.27.b-Lorion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.b-Lorion.pdf,2004.03.27.b,2004.03.27.b +1687,27-Mar-2004,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Peter G. Hoffman,M,61,Minor lacerations & abrasions on forearm,False,2.5 m shark,"T. Jerome, GSAF",2004.03.27.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.27.a-Hoffman.pdf,2004.03.27.a,2004.03.27.a +1688,14-Mar-2004,Unprovoked,USA,Hawaii,Punaluu,Snorkeling,C. Mooney,F,61,Lacerations to left foot,False,1.8 m [6'] shark,Hawaii Department of Land and Natural Resources,2004.03.24-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.24-Mooney.pdf,2004.03.24,2004.03.24 +1689,22-Mar-2004,Unprovoked,NEW ZEALAND,North Island,Te Arai Point,Spearfishing,Marc Fraser & Blair Fraser,M,61,No injury,False,Bronze whaler shark,J. Edgar,2004.03.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.22-Fraser.pdf,2004.03.22,2004.03.22 +1690,16-Mar-2004,Unprovoked,USA,Hawaii,"Kalihiwai Beach, Kauai",Surfing,Bruce Orth,M,51,"No injury, board bitten",False,"Tiger shark, 2.4 m to 3 m [8' to 10'] ",The Hawaii Channel,2004.03.16-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.16-Orth.pdf,2004.03.16,2004.03.16 +1691,06-Mar-2004,Unprovoked,AUSTRALIA,Western Australia,5 nm off Cervantes,Spearfishing,Greg Pickering,M,47,Shin & calf bitten,False,"Bronze whaler shark, 1.5 m [5'] ","T. Peake, GSAF; Sunday Times (Perth) 3/7/2004, p.19",2004.03.06-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.03.06-Pickering.pdf,2004.03.06,2004.03.06 +1692,29-Feb-2004,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Swimming,Edimilson Henrique dos Santos,M,29,fatal,True,"Bronze whaler shark, 1.5 m [5'] ","P. M. Lopez, GSAF; Northern Territory News, 3/2/2004, p.11",2004.02.29-dosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.29-dosSantos.pdf,2004.02.29,2004.02.29 +1693,26-Feb-2004,Unprovoked,NEW ZEALAND,"South Island, near Karitane north of Dunedin",South Beach,Surfing,Chris Blair,M,15,Thigh lacerated,False,2 m [6.75'] sevengill shark,"R.D. Weeks, GSAF; NZ Herald",2004.02.26-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.26-Blair.pdf,2004.02.26,2004.02.26 +1694,21-Feb-2004,Unprovoked,AUSTRALIA,New South Wales,"Taree, Old Bar Beach",Swimming,male,M,15,Three toes lacerated,False,2 m [6.75'] sevengill shark,Manning River Times,2004.02.21-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.21-Taree.pdf,2004.02.21,2004.02.21 +1695,16-Feb-2004,Invalid,AUSTRALIA,Queensland,"Fido's Reef, 300 m east of Cook Island. Cook Island is 2 miles from Tweed Heads, Gold Coast",Free diving & spearfishing,Mark Bryant,M,31,"Disappeared while diving, may have suffered shallow water blackout. Searchers observed large tiger sharks & whaler sharks in the area",False,Shark involvement not confirmed,"news.com.au; Northern Territory News, 2/18/2004, p.10; Sunday Territorian, 2/22/2004, p.9; ",2004.02.16-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.16-Bryant.pdf,2004.02.16,2004.02.16 +1696,14-Feb-2004,Unprovoked,EGYPT,"Coral Bay, Sharm-el-Sheikh","Coral Bay, Sharm-el-Sheikh",Snorkeling, male,M,31,fatal,True,Shark involvement not confirmed,divernet.com,2004.02.14-Sinai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.14-Sinai.pdf,2004.02.14,2004.02.14 +1697,11-Feb-2004,Unprovoked,AUSTRALIA,New South Wales,Caves Beach,Snorkeling,Luke Tresoglavic,M,22,Leg bitten,False,"60 cm [23.6""] blind or brown shark","T. Peake, GSAF",2004.02.11-Tresoglavic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.02.11-Tresoglavic.pdf,2004.02.11,2004.02.11 +1698,25-Jan-2004,Unprovoked,AUSTRALIA,Western Australia,Binningup,Scuba diving,Allan Oppert,M,46,Left leg bitten,False,4 m to 5 m [13' to 16.5'] white shark,"T. Peake, GSAF",2004.01.25-Oppert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.25-Oppert.pdf,2004.01.25,2004.01.25 +1699,23-Jan-2004,Unprovoked,URUGUAY,Rocha,Ensenada de la Coronilla,Surfing,Marcos González Selayaran ,M,21,Puncture wounds to dorsum of right foot,False,Possibily a 1.5 to 2 m sandtiger shark,C.M. Prigioni el al,2004.01.23-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.23-Uruguay.pdf,2004.01.23,2004.01.23 +1700,22-Jan-2004,Invalid,NEW ZEALAND,Northlands,90 Mile Beach,Boogie boarding,male,M,21,"No injury, swim fin damaged",False,Shark involvement doubtful,The Northlands,2004.01.22.R-90MileBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.22.R-90MileBeach.pdf,2004.01.22,2004.01.22 +1701,21-Jan-2004,Unprovoked,VENEZUELA,Anzoategui,"Playa Colorada Beach, Mochima National Park, only 200 m west of Santa Cruz Beach",Swimming,Stefan Moeller,M,21,Lower back & hand bitten,False,"Bull shark, 1.65 m [5'5""] was speared & killed","D. Ramierez, GSAF ",2004.01.21.b-Moeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.b-Moeller.pdf,2004.01.21.b,2004.01.21.b +1702,21-Jan-2004,Unprovoked,VENEZUELA,Anzoategui,"Santa Cruz Beach, Mochima National Park, 250 km from Caracas",Spearfishing,Alside Raphael Morales Gonzalez,M,40,Right leg bitten,False,"Bull shark, 132-kg [291-lb] ","D. Ramierez, GSAF ",2004.01.21.a-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.21.a-Gonzalez.pdf,2004.01.21.a,2004.01.21.a +1703,Reported 15-Jan-2004 ,Boating,SOUTH AFRICA,KwaZulu-Natal,Ballito,Surf skiing,Dave Hamilton-Brown & Ant Rowan,M,40,"No injury to occupants, stern of ski bitten",False,"Mako shark, 3 m to 4 m [10' to 13'] ",surfski.co.nz,2004.01.15.R-Ballito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.15.R-Ballito.pdf,2004.01.15.R,2004.01.15.R +1704,12-Jan-2004,Unprovoked,AUSTRALIA,New South Wales,Bushrangers Pass at Bass Point,Diving,Bruce Flynn & his dive buddy,M,40,"No injury, swim fin ripped off",False,"Raggedtooth shark, 3.5 m [11.5'] ","T. Peake, GSAF",2004.01.12-Flynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.12-Flynn.pdf,2004.01.12,2004.01.12 +1705,07-Jan-2004,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"West Beach, Port Alfred",Surfing,Alan Horsfield,M,22,Foot lacerated,False,Raggedtooth shark,"A. Cobb & E. Ritter, GSAF",2004.01.07-Horsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.07-Horsfield.pdf,2004.01.07,2004.01.07 +1706,03-Jan-2004,Invalid,NEW ZEALAND,North Island,"Whiritoa, Eastern Cormandel",Kayaking (returning from spearfishing),a male from Waikato,M,22,"No injury, no attack, shark took fish from back of kayak",False,Invalid,"R.D. Weeks, GSAF; Waikto Times, 1/4/2004 ",2004.01.03.b-WaikatoMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.b-WaikatoMale.pdf,2004.01.03.b,2004.01.03.b +1707,03-Jan-2004,Sea Disaster,EGYPT,Sinai Peninsula,Off Sharm El-Sheikh,Air disaster. Flash Airlines Boeing 737 crashed into the Red Sea,135 passengers & 13 crew,,22,fatal,True,Invalid,"Scotsman, 1/4/2004",2004.01.03.a-RedSeaAirDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.01.03.a-RedSeaAirDisaster.pdf,2004.01.03.a,2004.01.03.a +1708,2004,Unprovoked,AUSTRALIA,Western Australia,Redgate Beach,Surfing,Jack Carlsen,M,22,No inury,False,Invalid,J. Carlsen,2004.00.00-Carlsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2004.00.00-Carlsen.pdf,2004.00.00,2004.00.00 +1709,31-Dec-2003,Boating,SOUTH AFRICA,KwaZulu-Natal,Salt Rock ,Surfing,skiboat,,22,No injury to occupants,False,Shortfin mako shark,Natal Sharks Board,2003.12.31-SaltRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.31-SaltRock.pdf,2003.12.31,2003.12.31 +1710,26-Dec-2003,Invalid,USA,Florida,"Miami, Dade County",Swimming,Richard Hansell,M,28,Knee lacerated,False,Questionable Incident,"The Times (London), 12/27/2003, p.4",2003.12.26-Hansell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.26-Hansell.pdf,2003.12.26,2003.12.26 +1711,13-Dec-2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Swimming,male,M,13,Foot bitten,False,Questionable Incident,"Florida Today (Melbourne), 12/14/2003",2003.12.13.b-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.b-boy.pdf,2003.12.13.b,2003.12.13.b +1712,13-Dec-2003,Unprovoked,NEW ZEALAND,Cook Islands,Pukapuka Northern Group,Swimming / shipwreck,Teta Vaotiare,M,45,fatal,True,Questionable Incident,R. Weeks; Cook Islands Government News Release,2003.12.13.a-Vaotiare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.13.a-Vaotiare.pdf,2003.12.13.a,2003.12.13.a +1713,08-Dec-2003,Unprovoked,AUSTRALIA,Victoria,Collendina Beach east of Ocean Grove,Surfing amid a shoal of sharks,Sam Myer,M,36,"No inury, shark caught leash attached to surfer's ankle & towed him a short distance",False,Questionable Incident,"J. Eager, scubaradio.com",2003.12.08-Myer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.12.08-Myer.pdf,2003.12.08,2003.12.08 +1714,30-Nov-2003,Unprovoked,AUSTRALIA,Western Australia,Perth? (Margaret River District),Swimming,Shane Scott,M,36,"After biting Halverson, it bit Scott's thigh",False,"Wobbegong shark, 1.2 m [4'] ","J. Eager, scubaradio.com",2003.11.30.b-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.b-Scott.pdf,2003.11.30.b,2003.11.30.b +1715,30-Nov-2003,Unprovoked,AUSTRALIA,Western Australia,Perth? (Margaret River District),Swimming,Josh Halverson ,M,36,Hand & foot bitten,False,"Wobbegong shark, 1.2 m [4'] ","J. Eager, scubaradio.com",2003.11.30.a-Halverson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.30.a-Halverson.pdf,2003.11.30.a,2003.11.30.a +1716,27-Nov-2003,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Seldon Jee,M,21,fatal,True,"Tiger shark, 4 m [13'] ?","E. Ritter, GSAF",2003.11.27-Jee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.27-Jee.pdf,2003.11.27,2003.11.27 +1717,22-Nov-2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Taylor Trumbauer,F,35,Severe abrasion to left lateral calf,False,4' shark,T. Trumbauer,2003.11.22-Trumbauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.22-Trumbauer.pdf,2003.11.22,2003.11.22 +1718,12-Nov-2003 ,Unprovoked,INDIA,Tamil Nadu,"Mahabalipuram beach, 37 km south of Chennai",Swimming or surfing,Mark Moquin,M,35,Left index finger lacerated,False,Tiger shark?," P.C.V. Kumar; A. Patil, GSAF ",2003.11.12-Moquin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12-Moquin.pdf,2003.11.12.b,2003.11.12.b +1719,12-Nov-2003,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Josh Crawford,M,24,Lacerations to hand,False,Tiger shark?,"S. Petersohn, GSAF",2003.11.12.a-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.12.a-NV-Crawford.pdf,2003.11.12.a,2003.11.12.a +1720,06-Nov-2003,Unprovoked,EGYPT,Sinai Peninsula,"Sha’ab Mahmud, Ras Mohamed Park",Snorkeling,Igor Fedorov ,M,24,Hand/elbow injured,False,2.5 oceanic whitetip shark,N. Pankratov,2003.11.06.b-Fedorov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.b-Fedorov.pdf,2003.11.06.b,2003.11.06.b +1721,06-Nov-2003,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Karridene,Surf skiing,2 people on ski,,24,"No injury to occupants, hull of ski bitten",False,White shark,Natal Sharks Board,2003.11.06.a-Karridene.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.06.a-Karridene.pdf,2003.11.06.a,2003.11.06.a +1722,01-Nov-2003,Unprovoked,AUSTRALIA,New South Wales,"Seal Rocks, north of Newcastle",Standing,male,M,24,Minor lacerations to leg & foot,False,White shark,"The Sun; 11/2/2003, p.9",2003.11.01-SealRocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.01-SealRocks.pdf,2003.11.01,2003.11.01 +1723,Nov-2003,Provoked,PANAMA,Pearl Islands,Pearl Islands,Spearfishing,Richard Hatch,M,24,Left forearm bitten PROVOKED INCIDENT,False,"Nurse shark, 60 cm to 90 cm [2' to 3'] ","J. Eager, scubaradio.com",2003.11.00-RichardHatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.11.00-RichardHatch.pdf,2003.11.00,2003.11.00 +1724,31-Oct-2003,Unprovoked,USA,Florida,"Ponte Vedra Beach, St. Johns County",Surfing,Adam Gray,M,18,Left foot (sole) bitten,False,1.2 m to 1.5 m [4' to 5'] shark,"D. Dixon, Florida Times-Union, 11/8/2003 ",2003.10.31.c-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.c-Gray.pdf,2003.10.31.c,2003.10.31.c +1725,31-Oct-2003,Unprovoked,AUSTRALIA,New South Wales,"Lighthouse Beach, Seal Rocks",Surfing,Nick Anthony,M,22,Left ankle & foot lacerated,False,"1.5 m [5'] shark, either a bronze whaler or a grey nurse shark",ABC News Australia,2003.10.31.b-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.b-Anthony.pdf,2003.10.31.b,2003.10.31.b +1726,31-Oct-2003,Unprovoked,USA,Hawaii,"Tunnels surf break off Makua Beach, Kaua'i",Surfing,Bethany Hamilton,F,13,Left arm severed below shoulder,False,"Tiger shark, 14' "," E. Ritter, GSAF ",2003.10.31.a-BethanyHamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.31.a-BethanyHamilton.pdf,2003.10.31.a,2003.10.31.a +1727,27-Oct-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeffrey Hauser,M,46,Laceration on right ankle & heel,False,"Tiger shark, 14' ","S. Petersohn, GSAF",2003.10.27-Hauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.27-Hauser.pdf,2003.10.27,2003.10.27 +1728,24-Oct-2003,Invalid,USA,Hawaii,Honolua Bay,Snorkeling,Don Keener,M,56,Left forearm lacerated,False,Shark involvement not confirmed,"Timothy Hurley, Advertiser Maui County Bureau",2003.10.24-DonKeener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.24-DonKeener.pdf,2003.10.24,2003.10.24 +1729,14-Oct-2003,Unprovoked,USA,Florida,Near Patrick Air Force Base Brevard County,Surfing,male,M,19,Foot bitten,False,1.2 m [4'] shark,WFTV.com,2003.10.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.14-male.pdf,2003.10.14,2003.10.14 +1730,06-Oct-2003,Invalid,USA,Florida,Palm Beach?,Swimming to shore from boat or kayak,male,M,19,fatal,True,Shark involvement prior to death was not confirmed,"E. Pace, FSAF",2003.10.06-NV-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.06-NV-PalmBeach.pdf,2003.10.06,2003.10.06 +1731,05-Oct-2003,Unprovoked,USA,Florida,"Ocean Reef Park, Singer Island, Palm Beach County",Surfing,female,F,19,Minor puncture wounds in hand,False,Shark involvement prior to death was not confirmed,"J. Eager, scubaradio.com",2003.10.05.e-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.e-female.pdf,2003.10.05.e,2003.10.05.e +1732,05-Oct-2003,Unprovoked,USA,Florida,"Stuart Park Beach, Martin County",Surfing,male,M,18,5 to 6 lacerations on right foot & ankle,False,Shark involvement prior to death was not confirmed,"Vero Beach Press Journal (FL) 10/6/2003; Stuart News, 10/6/2003",2003.10.05.d-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.d-surfer.pdf,2003.10.05.d,2003.10.05.d +1733,05-Oct-2003,Provoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Surfing,Rick Eckstein,M,30,Left ankle bitten when he stepped on the shark PROVOKED INCIDENT,False,Shark involvement prior to death was not confirmed,"S. Petersohn, GSAF",2003.10.05.c-Eckstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.c-Eckstein.pdf,2003.10.05.c,2003.10.05.c +1734,05-Oct-2003,Unprovoked,USA,Florida,"Crawford Road beach approach at New Smyrna Beach, Volusia County",Sitting on surfboard,John Demartino,M,50,Left foot bitten,False,Shark involvement prior to death was not confirmed,"S. Petersohn, GSAF; J. Eager, scubaradio.com",2003.10.05.b-DeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.b-DeMartino.pdf,2003.10.05.b,2003.10.05.b +1735,05-Oct-2003,Unprovoked,USA,Hawaii,"Cove Beach / Kalama Beach, Kihei, Maui",Wading near a fishing net,Clara Alo,F,41,"Left thigh abraded, right knee and right index finger injured",False,"1.2 m [4'] ""grey-colored shark""","G. Kubota, Star Bulletin",2003.10.05.a-Clara-Alo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.10.05.a-Clara-Alo.pdf,2003.10.05.a,2003.10.05.a +1736,29-Sep-2003,Unprovoked,FIJI,Taveuni,Welagi coastal reef off Drekeniwai,Wading to shore from his boat,Epeli Mate,M,40,fatal,True,"1.2 m [4'] ""grey-colored shark""","R. Weeks, GSAF; Fiji Times, 10/2/2003; Fiji TV",2003.09.29-Mate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.29-Mate.pdf,2003.09.29,2003.09.29 +1737,28-Sep-2003,Unprovoked,USA,Florida,"North Hutchinson Island, St. Lucie Couny",Surfing,Stephen Johnson,M,16,Arm lacerated,False,"1.2 m [4'] ""grey-colored shark""","7News Online; Vero Beach Press Journal, Fort Pierce Tribune, Stuart News, 10/1/2003",2003.09.28-S.Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.28-S.Johnson.pdf,2003.09.28,2003.09.28 +1738,21-Sep-2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Jimmy Arnold,M,21,Left foot bitten,False,"1.2 m [4'] ""grey-colored shark""","S. Petersohn, GSAF; Daytona Beach News Journal, 9/22/2003, p.1C",2003.09.21-Jimmy-Arnold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.21-Jimmy-Arnold.pdf,2003.09.21,2003.09.21 +1739,19-Sep-2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,David Cales,M,19,Left heel lacerated,False,"1.2 m [4'] ""grey-colored shark""","S. Petersohn, GSAF",2003.09.19-DavidCales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.19-DavidCales.pdf,2003.09.19,2003.09.19 +1740,17-Sep-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,A.B.,M,17,3 puncture wounds on left foot,False,"1.2 m [4'] ""grey-colored shark""","S. Petersohn, GSAF",2003.09.17-AB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.17-AB.pdf,2003.09.17,2003.09.17 +1741,14-Sep-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Williams,M,30,Left foot: lacerations on heel and sole,False,3' shark,"S. Petersohn, GSAF",2003.09.14.c-JasonWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.c-JasonWilliams.pdf,2003.09.14.c,2003.09.14.c +1742,14-Sep-2003,Boat,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Fishing ,"inflatable boat, occupants: Rudolf Bokelmann and Sakkie Vermeulen",,36 & 26,"No injury to occupants, shark bit boat",False,2 m cow shark,"E. Ritter, GSAF ",2003.09.14.b-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.b-CowShark.pdf,2003.09.14.b,2003.09.14.b +1743,14-Sep-2003,Invalid,USA,Florida,"Bathtub Reef Beach, Martin County",Swimming,female,F,8 or 10,Puncture wounds on inner thigh,False,Shark involvement doubtful,"Fort Pierce Tribune, 9/15/2003",2003.09.14.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.14.a-girl.pdf,2003.09.14.a,2003.09.14.a +1744,13-Sep-2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County ",Body boarding,Aaron Edelson,M,18,Left calf avulsion,False,6' shark,"S. Petersohn, GSAF; News Journal Online; Orlando Sentinel, 9/15/2003, p.B2; R. Weiss, Daytona Beach News Journal, 9/15/2001, p.3C",2003.09.13.b-Edelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.b-Edelson.pdf,2003.09.13.b,2003.09.13.b +1745,13-Sep-2003,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County","Standing, stepped on shark",Joe Davis,M,15,Ankle lacerated,False,7' shark,"P. Caston, Post & Courier",2003.09.13.a-JoeDavis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.13.a-JoeDavis.pdf,2003.09.13.a,2003.09.13.a +1746,12-Sep-2003,Unprovoked,SOUTH AFRICA,Western Cape Province,Near the wreck of the Kakapo off Noordhoek Beach,Body boarding,David Bornman,M,19,fatal,True,White shark,"E. Ritter, GSAF; http://www.wavescape.co.za/top_bar/locals_only9.htm ",2003.09.12-Bornman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.12-Bornman.pdf,2003.09.12,2003.09.12 +1747,Sep-2003,Unprovoked,USA,Florida,"Boca Grande, Lee County",Wade-fishing,male,M,19,2 lacerations on each side of Achilles tendon,False,White shark,"B. Stout, News-Press, 9/24/2003",2003.09.00-wade-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.09.00-wade-fisherman.pdf,2003.09.00,2003.09.00 +1748,29-Aug-2003,Provoked,USA,Texas,1.5 miles off Surfside ,Fishing,Saul Gonzalez,M,19,PROVOKED INCIDENT Hooked shark pulled onboard bit his arm ,False,1.2 m [4'] bull shark,http://www.dfw.com/mld/startelegram/news/state/6656592.htm?1c,2003.08.29-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.29-Gonzalez.pdf,2003.08.29,2003.08.29 +1749,19-Aug-2003,Unprovoked,USA,California,"Avila Beach, San Luis Obispo County","Swimming, wearing black wetsuit & swim fins",Deborah Franzman,F,50,fatal,True,4.5 m to 5.5 m [15' to 18'] white shark,"R. Collier, GSAF ",2003.08.19-Franzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.19-Franzman.pdf,2003.08.19,2003.08.19 +1750,12-Aug-2003,Invalid,USA,California,"Venice Beach, Los Angeles County",Swimming,male,M,31,Left ankle lacerated,False,Shark involvement not confirmed,ABC News,2003.08.12-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.12-VeniceBeach.pdf,2003.08.12,2003.08.12 +1751,08-Aug-2003,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey’s Bay,Sitting on surfboard,Joseph Krone,M,16,"No injury, wetsuit torn & board bitten",False,3.5 m [11.5'] white shark,"E. Ritter, GSAF http://sport.iafrica.com/news/261271.htm ",2003.08.08-Krone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.08.08-Krone.pdf,2003.08.08,2003.08.08 +1752,Reported 26-Jul-2003,Unprovoked,AUSTRALIA,Northern Territory,Nhulunbuy,Surf skiing,Martin Gunda,M,37,"No injury, flung into water when shark bit rudder of ski",False,3.5 m [11.5'] white shark,"Northern Territory News, 7/26/2003, p.1",2003.07.26.R-Gunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.26.R-Gunda.pdf,2003.07.26.R,2003.07.26.R +1753,20-Jul-2003,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,John McGovern,M,18,Laceration to little finger of right hand,False,3.5 m [11.5'] white shark,"S. Petersohn, GSAF",2003.07.20-McGovern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.20-McGovern.pdf,2003.07.20,2003.07.20 +1754,15-Jul-2003,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,C.K.,F,15,Heel & sole of left foot,False,3.5 m [11.5'] white shark,"S. Petersohn, GSAF",2003.07.15-CK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.15-CK.pdf,2003.07.15,2003.07.15 +1755,10-Jul-2003,Unprovoked,BAHAMAS,Abaco Islands,Bakers Bay,Spearfishing,Richard Horton,M,58,Right thigh bitten,False,Unidentified species,"M. Levine, GSAF; Associated Press, 7/12/03",2003.07.09-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.09-Horton.pdf,2003.07.09,2003.07.09 +1756,05-Jul-2003,Provoked,USA,Florida,"Near New Smyrna Jetty, Volusia County","Walking, carrying surfboard & stepped on shark",P.L.,M,10,3 puncture wounds on right lateral ankle PROVOKED INCIDENT,False,2' shark,"S. Petersohn, GSAF",2003.07.05.b-PL.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.b-PL.pdf,2003.07.05.b,2003.07.05.b +1757,05-Jul-2003,Unprovoked,USA,Florida,"Canova Beach, Brevard County",Surfing,James Ingram,M,21,Left foot bitten,False,1.5 m to 1.8 m [5' to 6'] shark,Vero Beach Press Journal (FL) 7/9/2003,2003.07.05.a-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.05.a-Ingram.pdf,2003.07.05.a,2003.07.05.a +1758,04-Jul-2003,Unprovoked,BAHAMAS,Abaco Islands,10 miles west of Walker’s Cay,Spearfishing,Benjamin Brown,M,39,Left calf bitten,False,2.1 m [7'] bull shark,"Associated Press, 7/12/03; Palm Beach Post, 7/7/2003 ",2003.07.04-BenBrown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.04-BenBrown.pdf,2003.07.04,2003.07.04 +1759,Jul-2003,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Spearfishing,Mark Marks,M,39,Laceration to toe,False,8' great hammerhead shark,M. Marks,2003.07.00.c-MarkMarks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.c-MarkMarks.pdf,2003.07.00.c,2003.07.00.c +1760,Late Jul-2003,Unprovoked,FRENCH POLYNESIA,Society Islands,Moorea,Spearfishing,male,M,39,Leg bitten,False,8' great hammerhead shark,Noonsite.com,2003.07.00.b-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.b-Moorea.pdf,2003.07.00.b,2003.07.00.b +1761,Jul-2003,Unprovoked,NEW ZEALAND,Cook Islands,Beveridge Reef,Snorkeling,Allen --,M,39,Chest & buttocks bitten,False,Grey reef shark,R. & J. Zorro; Noonsite.com,2003.07.00.a-BeveridgeReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.07.00.a-BeveridgeReef.pdf,2003.07.00.a,2003.07.00.a +1762,30-Jun-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,E.W.,M,17,Right foot & toes lacerated,False,Unidentified species,"S. Petersohn, GSAF",2003.06.30-EW..pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.30-EW..pdf,2003.06.30,2003.06.30 +1763,26-Jun-2003,Unprovoked,USA,Florida,St Augustine Beach. St. Johns County,Surfing,Shelby Tostevin,M,15,Ankle lacerated,False,106 cm [3.5'] shark,Local6.com,2003.06.26-Tostevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.26-Tostevin.pdf,2003.06.26,2003.06.26 +1764,24-Jun-2003,Unprovoked,BRAZIL,Pernambuco,"Piedade, Recife",Surfing,Moses Nunes de Albuquerque Junior,M,15,fatal,True,106 cm [3.5'] shark,"JCOnline, 6/23/2012",2003.06.24.c-MosesAlbuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.c-MosesAlbuquerque.pdf,2003.06.24.c,2003.06.24.c +1765,24-Jun-2003,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Standing,Hannah Hathaway,F,12,2 lacerations to the thigh,False,“small brown shark”,"Florida Today, 6/26/ 2003; WKMG Local 6",2003.06.24.b-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.b-Hathaway.pdf,2003.06.24.b,2003.06.24.b +1766,24-Jun-2003,Unprovoked,USA,Hawaii,"Makua Beach, Oahu",Swimming with pod of dolphins,John Marrack,M,60,Right foot bitten,False,3.7 m to 4.3 m [12' to 14'] shark,Honolulu Advertiser,2003.06.24.a-Marrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.24.a-Marrack.pdf,2003.06.24.a,2003.06.24.a +1767,22-Jun-2003,Unprovoked,USA,Johnston Atoll,Johnston Atoll,Swimming,George Fahey,M,51,Left leg bitten,False,Unidentified species,"H. Edwards, GSAF; The Hawaai Channel",2003.06.22-Fahey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.22-Fahey.pdf,2003.06.22,2003.06.22 +1768,19-Jun-2003,Unprovoked,USA,North Carolina,"Masonboro Island, New Hanover County",Surfing ,Chris White,M,33,Hand bitten ,False,"""sand shark""","C. Creswell, GSAF",2003.06.19-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.19-White.pdf,2003.06.19,2003.06.19 +1769,08-Jun-2003,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,J.D.,,15,6 puncture wounds to left ankle,False,"""sand shark""","S. Petersohn, GSAF",2003.06.08-JD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.08-JD.pdf,2003.06.08,2003.06.08 +1770,Jun-2003,Invalid,USA,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,22,Foot lacerated,False,Shark involvement not confirmed,J. Eager,2003.06.00-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.06.00-PawleysIsland.pdf,2003.06.00,2003.06.00 +1771,25-May-2003,Unprovoked,USA,Florida,"Coral Cove Park, Jupiter Inlet, Palm Beach County",Surfing,"Kris ""Cutty"" Kildosher",M,18,Left foot lacerated,False,Shark involvement not confirmed,Local 6 News,2003.05.25-Kildosher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.25-Kildosher.pdf,2003.05.25,2003.05.25 +1772,14-May-2003,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Wading,Joshua Brust,M,22,Left foot bitten,False,3' to 5' shark,"S. Petersohn, GSAF; Orlando Sentinel, 5/16;2003, p.C3",2003.05.14-Brust.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.14-Brust.pdf,2003.05.14,2003.05.14 +1773,10-May-2003,Unprovoked,USA,Hawaii,Between Magic Sands Beach and Kahaluu Beach on the Kona coast,Swimming,Koa Paulo,M,20,Right calf & heel bitten,False,1.8 m [6'] reef shark - or a 2.1 m to 2.4 m [7' to 8'] grey-colored shark,WestHawaiiToday.com,2003.05.10-Paulo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.10-Paulo.pdf,2003.05.10,2003.05.10 +1774,07-May-2003,Provoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Gerald Gaskins,M,34,Multiple bites to foot after jumping off surfboard onto shark PROVOKED INCIDENT,False,4' to 5' shark,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal. 5/8/2003, p.1C; Tampa Tribune, 5/8/2003",2003.05.07-Gaskins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.07-Gaskins.pdf,2003.05.07,2003.05.07 +1775,03-May-2003,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Walking,A.J.,F,9,Laceration to right lower leg,False,4' to 5' shark,"S. Petersohn, GSAF",2003.05.03-AJ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.03-AJ.pdf,2003.05.03,2003.05.03 +1776,May-2003,Unprovoked,PHILIPPINES,Baatan,Limay,Walking,a resident of Barangay Luz,,9,Arm severed,False,White shark,"D. Cervantes, Star",2003.05.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.05.00-Philippines.pdf,2003.05.00,2003.05.00 +1777,26-Apr-2003,Provoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Killing sharks,male,M,9,Shallow lacerations to left thigh PROVOKED INCIDENT,False,White shark,"P.M. Lopes, GSAF",2003.04.26-Rio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.26-Rio.pdf,2003.04.26,2003.04.26 +1778,25-Apr-2003,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming ,Felipe Tavares Marinho,M,16,Bitten on finger,False,White shark,Web ProWire,2003.04.25-Marinho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.25-Marinho.pdf,2003.04.25,2003.04.25 +1779,23-Apr-2003,Unprovoked,BRAZIL,Pernambuco,"Pau Amarelo Beach, Paulista District (17 km from Recife)",Surfing,Tiago Augusto da Silva Machado,M,17,"Hand & foot lacerated, lower left leg severely bitten, necessitating surgical amputation",False,Bull shark,"P. M. Lopes, GSAF; N. Souza da Silva; JC, 4/24/2003",2003.04.23.b-Machado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.b-Machado.pdf,2003.04.23.b,2003.04.23.b +1780,23-Apr-2003,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,male,M,7,Right hand lacerated,False,Bull shark,Local 6 News,2003.04.23.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.23.a-boy.pdf,2003.04.23.a,2003.04.23.a +1781,21-Apr-2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County ",Surfing,Ralph Sammis,M,36,Right leg bitten,False,Unidentified species,"Local 6 News; St. Petersburg Times, 4/22/2003; The Eagle, 4/24/2003 ",2003.04.21.b-Sammis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.b-Sammis.pdf,2003.04.21.b,2003.04.21.b +1782,21-Apr-2003,Unprovoked,USA,Florida,"Shepard Park, Cocoa Beach, Brevard County ",Surfing,male,M,17,Survived,False,Unidentified species,"Orlando Sentinel, 4/22/2003, B3",2003.04.21.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.21.a-surfer.pdf,2003.04.21.a,2003.04.21.a +1783,20-Apr-2003,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Tommy Ryan,M,30,Left foot bitten,False,Unidentified species,"Orlando Sentinel, 4/22/2003, B3 + ",2003.04.20.c-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.c-Ryan.pdf,2003.04.20.c,2003.04.20.c +1784,20-Apr-2003,Unprovoked,USA,Florida,"Sunglow Pier, Daytona Beach Shores, Volusia County",Surfing,Jeff Albright,M,23,Small lacerations to foot,False,0.9 m to 1.2 m [3' to 4'] shark,"S. Petersohn, GSAF; Local6.com; Daytona Beach News-Journal . 4/21/2003, p.1C",2003.04.20.b-Albright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.b-Albright.pdf,2003.04.20.b,2003.04.20.b +1785,20-Apr-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Flowers,M,18,Left ankle bitten or right foot,False,Unidentified species,"S. Petersohn, GSAF; Local 6 News; S. Frederick, Daytona Beach News Journal, 4/28/2003, p.1C; Orlando Sentinel, 4/22/2003, p.B3",2003.04.20.a-StephenFlowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.20.a-StephenFlowers.pdf,2003.04.20.a,2003.04.20.a +1786,19-Apr-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County ",Jumping,S.D.,M,11,Left foot bitten,False,A “small” shark,"S. Petersohn, GSAF; S. Frederick, Daytona Beach News Journal, 4/21/2003, p.1C; J. Waymer, Florida Today (Melbourne), 4/19/2003",2003.04.19-SD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.19-SD.pdf,2003.04.19,2003.04.19 +1787,18-Apr-2003,Unprovoked,USA,Florida,"North Beach, Patrick AFB, Brevard County",Surfing,male,M,12,2 lacerations on left thigh,False,Unidentified species,"Local 6 News; Tallahassee Democrat (FL) 4/19/2003; J. Waymer, Florida Today (Melbourne), 4/19/2003 ",2003.04.18-PatrickAFB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.18-PatrickAFB.pdf,2003.04.18,2003.04.18 +1788,15-Apr-2003,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Swimming (using a float),"male, a tourist from Venezuela",M,20,Left calf lacerated,False,"15 cm to 20 cm [6"" to 8""] bite diameter just below left knee","Florida Today (Melbourne), 4/16/2003; Orlando Sentinel, 4/16/2003, p.B3",2003.04.15-Venezuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.15-Venezuela.pdf,2003.04.15,2003.04.15 +1789,11-Apr-2003,Unprovoked,VENEZUELA,Nueva Esparta,"El Yaqu, Isla de Margarita",Surfing,Yann Perras,M,28,"Right foot bitten, left leg severed",False,"Mako shark, 3 m [10']","E. Ritter & M. Levine, GSAF",2003.04.11-YannPerras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.11-YannPerras.pdf,2003.04.11,2003.04.11 +1790,09-Apr-2003,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Damien Share,M,28,Arm lacerated,False,"Mako shark, 3 m [10']",D. Share,2003.04.09-Share.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.09-Share.pdf,2003.04.09,2003.04.09 +1791,04-Apr-2003,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,"Frederick Jordan, Jr.",M,50,Left hand and wrist bitten,False,4' to 5' shark,"S. Petersohn, GSAF",2003.04.04-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.04.04-Jordan.pdf,2003.04.04,2003.04.04 +1792,10-Mar-2003,Provoked,USA,Florida,"Petting Tank, Florida Aquarium, Tampa, Hillsborough County",Petting captive sharks,Julie Menke,F,50,Hand nipped PROVOKED INCIDENT,False,60 cm [2'] captive shark,"Florida Aquarium; Miami Herald, 3/13/2002 ",2003.03.10-Menke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.03.10-Menke.pdf,2003.03.10,2003.03.10 +1793,27-Feb-2003,Unprovoked,NEW ZEALAND,Southland,East side of Bench Island in the Foveaux Strait,Scuba diving,Alistair Kerr,M,44,Arm lacerated (shark made 3 strikes),False,2.5 m [8.25'] white shark,"R.D. Weeks & Mark Marks, GSAF; New Zealand Herald",2003.02.27-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.27-Kerr.pdf,2003.02.27,2003.02.27 +1794,15-Feb-2003,Unprovoked,AUSTRALIA,South Australia,"Goolwa Beach, Fleurieu Peninsula",Wading,Damien Smith,M,37,Ankle lacerated,False,"""a small shark""","T. Peake, GSAF, surfsouthoz.com, 3/38/2003",2003.02.15.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.b-Smith.pdf,2003.02.15.b,2003.02.15.b +1795,15-Feb-2003,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Swimming,James Bailey,M,54,Left hand bitten,False,Species unidentified,"J. Eager, scubaradio.com",2003.02.15.a-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.15.a-Bailey.pdf,2003.02.15.a,2003.02.15.a +1796,11-Feb-2003,Unprovoked,AUSTRALIA,New South Wales,"Coogee Bay, near Sydney",Swimming,Tom Plumridge,M,24,"Puncture wounds on heel, legs and buttocks",False,Thought to involve a 2 m [6.75'] grey nurse shark,"T. Peake, GSAF",2003.02.11-Plumridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.11-Plumridge.pdf,2003.02.11,2003.02.11 +1797,08-Feb-2003,Unprovoked,AUSTRALIA,Queensland,Burleigh Lake on the Gold Coast,Swimming,Bob Purcell,M,84,fatal,True,Thought to involve a >2 m [6.75'] bull shark,"T. Peake, GSAF; Sunday Territorian, 2/9/2003, p.9",2003.02.08-Purcell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.02.08-Purcell.pdf,2003.02.08,2003.02.08 +1798,17-Jan-2003,Invalid,SOUTH AFRICA,Western Cape Province,"Near the lagoon at Table View, Cape Peninsula",Unknown,male,M,14,Probable scavenging. The boy disappeared while at the beach on January 1st. His decomposed shark-bitten body washed ashore January 17th,False,Shark involvement prior to death was not confirmed,IOL.co.za,2003.01.17-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.17-scavenging.pdf,2003.01.17,2003.01.17 +1799,03-Jan-2003,Unprovoked,COSTA RICA,North Pacific coast,Playa Tamarindo ,Surfing,Ross Menking,M,14,Lower right leg lacerated,False,"Bull shark, 7'",A.M. Costa Rica,2003.01.03-Menking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.03-Menking.pdf,2003.01.03,2003.01.03 +1800,02-Jan-2003,Unprovoked,AUSTRALIA,Western Australia,Left break at the ‘Hot Spot’ at Sheringa Beach,Surfing,Gabrielle Eason,F,14,"No injury, but her surfboard was bitten",False,"Bronze whaler shark, 2.5 m [8.25'] ","T. Peake, GSAF",2003.01.02-Eason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2003.01.02-Eason.pdf,2003.01.02,2003.01.02 +1801,29-Dec-2002,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef (near Upolu Bay),Snorkeling,"Lienne Schellekens, ",F,18,Left arm lacerated,False,Reported to involve a hammerhead shark,"T. Peake, GSAF; Mercury (Hobart), 12/30/2002, p.10",2002.12.29-Schellekens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.29-Schellekens.pdf,2002.12.29,2002.12.29 +1802,24-Dec-2002,Unprovoked,SOUTH AFRICA,Western Cape Province,Scarborough,Snorkeling,Craig Bovim,M,25,Forearms lacerated,False,"White shark, 4 m white shark",IOL.co.za,2002.12.24-Bovim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.24-Bovim.pdf,2002.12.24,2002.12.24 +1803,21-Dec-2002,Unprovoked,AUSTRALIA,Queensland,Depth of 40 m on the wreck of the St. Paul off Brisbane,Scuba diving,Jai Hennessey,M,26,Groin bitten,False,"Wobbegong shark, 1m",GC Online. Note: same diver's swim fin was bitten 3 weeks earlier by a 2 m [6.75'] wobbegong shark,2002.12.21-Hennessey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.21-Hennessey.pdf,2002.12.21,2002.12.21 +1804,20-Dec-2002,Invalid,AUSTRALIA,Queensland,Golden Beach,Swimming,Bayne Doyle,M,11,Foot lacerated,False,"Shark involvement not confirmed, injury may be due to a stingray","T. Peake, GSAF",2002.12.20-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.20-Doyle.pdf,2002.12.20,2002.12.20 +1805,16-Dec-2002,Unprovoked,AUSTRALIA,Queensland,Miami Lake,Swimming,Beau Martin,M,23,fatal,True,Bull shark,"T. Peake, GSAF; Northern Territory News, 12/20/2002, p.9",2002.12.16-BeauMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.16-BeauMartin.pdf,2002.12.16,2002.12.16 +1806,01-Dec-2002,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Aylson Gadelha,M,19,fatal,True,Bull shark,O. Gadig,2002.12.01-Gadelha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.12.01-Gadelha.pdf,2002.12.01,2002.12.01 +1807,28-Nov-2002,Unprovoked,MICRONESIA,Caroline Islands,"Pision Reef, Truk",Scuba diving,Kevin --,M,19,Minor injury to right calf,False,Blacktip shark,J. Connick,2002.11.28.b-Kevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.b-Kevin.pdf,2002.11.28.b,2002.11.28.b +1808,28-Nov-2002,Unprovoked,USA,California,"Salmon Creek, Sonoma County",Body boarding,Michael Casey,M,48,Both legs severely lacerated,False,3 m to 4.5 m [10' to 15'] white shark,"R. Collier, GSAF; Press Report: Santa Rosa Press Democrat ",2002.11.28.a-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.28.a-Casey.pdf,2002.11.28.a,2002.11.28.a +1809,17-Nov-2002,Unprovoked,USA,Hawaii,Ka'anapali,Swimming,Julie Glance ,F,34,Right shoulder forarm & wrist bitten,False,2.4 m to 3 m [8' to 10'] grey colored shark,San Francisco Gate,2002.11.17-Glance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.17-Glance.pdf,2002.11.17,2002.11.17 +1810,14-Nov-2002,Unprovoked,TURKS & CAICOS,Caicos Bank,French Cay,Snorkeling,Michelle Glenn,F,41,"Right upper am, shoulder & back severely bitten",False,1.8 m to 2.1 m [6' to 7']  Caribbean Reef Shark ,"M. Glenn, Local 10 News; Miami Herald, 11/28/2002",2002.11.14-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.14-Glenn.pdf,2002.11.14,2002.11.14 +1811,11-Nov-2002,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Joshua Johnson,M,21,1.5-inch laceration,False,6' shark,"S. Petersohn, GSAF",2002.11.11-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.11-Johnson.pdf,2002.11.11,2002.11.11 +1812,02-Nov-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,A.H.,M,16,Puncture wounds on right foot,False,3' to 4' shark,"S. Petersohn, GSAF",2002.11.02-AH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.02-AH.pdf,2002.11.02,2002.11.02 +1813,Nov-2002,Unprovoked,FRENCH POLYNESIA,Society Islands,Tetiaroa,"Fishing, standing in 2' of water",Scott Heywood,M,52,Shin bruised,False,3' to 4' shark,S. Heywood,2002.11.00-Heywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.11.00-Heywood.pdf,2002.11.00.a,2002.11.00.a +1814,30-Oct-2002,Unprovoked,USA,Hawaii,"Kama'ole Beach Park I, Kihei, Maui",Swimming,Karen Miller,F,60,Left foot bitten ,False,A “small” shark,J. Crites,2002.10.30-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.30-Miller.pdf,2002.10.30,2002.10.30 +1815,14-Oct-2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Jaboatão dos Guararapes City, Recife",Swimming,Luis Soares de Arruda,M,36,fatal,True,Possibly a bull shark or tiger shark,"P.M. Lopes, GSAF",2002.10.14-Arruda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.14-Arruda.pdf,2002.10.14,2002.10.14 +1816,11-Oct-2002,Unprovoked,USA,Florida,"Opposite main gate at Patrick Air Force Base, Cape Canaveral, Brevard County",Surfing,male,M,21,Left foot bitten,False,Possibly a bull shark or tiger shark,"Florida Today, 10/12/2002 ",2002.10.11-CapeCanaveral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.11-CapeCanaveral.pdf,2002.10.11,2002.10.11 +1817,05-Oct-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Darren Harrity,M,14,Abrasions on right hand & deep laceration on middle finger,False,Blacktip or spinner shark,"D. Harrity; S. Petersohn, GSAF; L. Lelis, Orlando Sentinel",2002.10.05.b-DarrenHarrity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.b-DarrenHarrity.pdf,2002.10.05.b,2002.10.05.b +1818,05-Oct-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Ivan Rios ,M,35,Heel & back of right knee lacerated,False,3.5' to 4.5' shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/22/2003, p.1C",2002.10.05.a-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.05.a-Rios.pdf,2002.10.05.a,2002.10.05.a +1819,03-Oct-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Cheyne Kehoe ,M,18,Left hand lacerated and abraded,False,3.5' to 4' shark,"S. Petersohn, GSAF; Local 6 News; Orlando Sentinel, 10/4/2002, p.B3",2002.10.03-Kehoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.10.03-Kehoe.pdf,2002.10.03,2002.10.03 +1820,30-Sep-2002,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Matt Crawford,M,47,Right hand severely lacerated,False,4' to 5' shark,"S. Petersohn, GSAF; J. Eager, scubaradio.com; P.Balona, Vero Beach Press Journal, 5/10/2003, p.1C",2002.09.30-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.30-Crawford.pdf,2002.09.30,2002.09.30 +1821,29-Sep-2002,Unprovoked,USA,Florida,"Sebastian Inlet, Brevard County",Surfing,Dave Fogelberg,M,32,Left hand bitten,False,4' to 5' shark,"Local 6 News; P. Balona, Vero Beach Press Journal, 10/2/2002",2002.09.29-Fogelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.29-Fogelberg.pdf,2002.09.29,2002.09.29 +1822,27-Sep-2002,Unprovoked,USA,Hawaii,"Kahala, O'ahu",Fishing from Surfboard,Arnold Lum,M,55,"No injury, surfboard bitten ",False,1.2 m [4'] blacktip shark,"C. Lum & J. Widner, Honolulu Advertiser",2002.09.27.c-Lum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.c-Lum.pdf,2002.09.27.c,2002.09.27.c +1823,27-Sep-2002,Provoked,USA,Florida,"Key Largo, Monroe County",Fishing,Jose Diaz,M,  ,Left thumb lacerated PROVOKED INCIDENT,False,1.8 m [6'] blacktip shark,"J. Eager, scubaradio.com",2002.09.27.b-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.b-Diaz.pdf,2002.09.27.b,2002.09.27.b +1824,27-Sep-2002,Provoked,TONGA,Vava'u,Swimming with humpback whales,Swimming,Felipe Tonga ,M, ,Thigh lacerated PROVOKED INCIDENT,False,"Tiger shark, 1.5 m [5']k",C. Butterfield,2002.09.27.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.27.a-Tonga.pdf,2002.09.27.a,2002.09.27.a +1825,21-Sep-2002,Unprovoked,USA,Oregon,Cape Kiwanda,Boogie boarding or Surfing,Garry Turner,M,24, Ankle lacerated,False,2.4 m [8'] shark,"R. Collier, GSAF ",2002.09.21.b-GarryTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.b-GarryTurner.pdf,2002.09.21.b,2002.09.21.b +1826,21-Sep-2002,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Reed Richards,M,35,No injury,False,3 m to 3.7 m [10' to 12'] shark,"R. Collier , GSAF",2002.09.21.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.21.a-Richards.pdf,2002.09.21.a,2002.09.21.a +1827,16-Sep-2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Jaboatão dos Guararapes City",Swimming,Fabrício José de Carvalho,M,19,"Left thigh bitten, leg surgically amputated",False,Bull or tiger shark,"P.M. Lopes, GSAF",2002.09.16.b-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.b-Carvalho.pdf,2002.09.16.b,2002.09.16.b +1828,16-Sep-2002,Unprovoked,USA,Hawaii,"Hideaways Beach, Princeville, Kaua'i",Body boarding,Hawaii Department of Land and Natural Resources,,19,"No injury, shark fin seen just before board ripped away & dragged out to sea",False,Bull or tiger shark,Hawaii Department of Land and Natural Resources,2002.09.16.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.16.a-Hawaii.pdf,2002.09.16.a,2002.09.16.a +1829,13-Sep-2002,Unprovoked,SOUTH AFRICA,Western Cape Province,"Glencairn, False Bay",Surf skiing,Paul Mauger (or Major),M,47,No injury,False,White shark,Multiple internet sources,2002.09.13-Mauger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.13-Mauger.pdf,2002.09.13,2002.09.13 +1830,09-Sep-2002,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Boogie boarding,Sean M. Erwin,M,20,Bitten above & below right knee,False,4' to 6' shark,"S. Petersohn, GSAF; Orlando Sentinel, 9/10/2002, p.B3; Daytona Beach News Journal, 9/10/2002, p.1C ",2002.09.09-Erwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.09-Erwin.pdf,2002.09.09,2002.09.09 +1831,05-Sep-2002,Provoked,USA,Florida,"Daytona Beach Shores, Volusia County","Wading, when he stepped on the shark",Alex Lancaster,M,36,2 small puncture wounds on left foot PROVOKED INCIDENT,False,1' to 2' hammerhead or bonnethed shark,"S. Petersohn, GSAF",2002.09.05-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.09.05-Lancaster.pdf,2002.09.05,2002.09.05 +1832,28-Aug-2002,Unprovoked,USA,Hawaii,"Kewalo Basin Channel, O'ahu",Surfing,Shawn Farden,M,16,Left foot lacerated ,False,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","G. Kubota, Honolulu Star Bulletin",2002.08.28-Farden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.28-Farden.pdf,2002.08.28,2002.08.28 +1833,17-Aug-2002,Unprovoked,USA,Alabama,"Gulf of Mexico, 65 miles offshore from Mobile",Swimming,Kimberly McClain,F,29,Both arms & leg bitten,False,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","J. Eager, scubaradio.com",2002.08.17-McLean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.17-McLean.pdf,2002.08.17,2002.08.17 +1834,14-Aug-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Paxton Vinyard,M,27,Big toe bitten,False,0.9 m to 1.2 m [3' to 4'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/15/2002, p.B3",2002.08.14-Vinyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.14-Vinyard.pdf,2002.08.14,2002.08.14 +1835,11-Aug-2002,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Surfing,Brad Milliken,M,15,Lacerations on heel & dorsum of right foot,False,"Nurse shark, 1.5 m [5'] ","Stuart News, 8/12/2002",2002.08.11-Milliken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.11-Milliken.pdf,2002.08.11,2002.08.11 +1836,07-Aug-2002,Unprovoked,USA,Florida,"Ponce De Leon Inlet, Volusia County",Standing,David Brennen Smith,M,15,Ankle & leg lacerated,False,"Nurse shark, 1.5 m [5'] ","S. Petersohn, GSAF; J. Eager; A. Caldwell, Orlando Sentinel, 8/8/2002, p.B1",2002.08.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.07-Smith.pdf,2002.08.07,2002.08.07 +1837,Reported 06-Aug-2002,Provoked,UNITED KINGDOM,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,Rob Bennett,M,30,Hand bitten by captive shark PROVOKED INCIDENT,False,"Sandtiger shark, 3 m [10'] ","Evening Standard (London, England)",2002.08.06-Bennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.06-Bennet.pdf,2002.08.06.R,2002.08.06.R +1838,05-Aug-2002,Unprovoked,USA,North Carolina,"Topsail Beach, Pender County",Standing,Robert Pollan,M,14,Leg lacerated,False,1.2 m to 1.5 m [4' to 5'] shark,"Wisconsin State Journal; C. Creswell, GSAF",2002.08.05-Pollan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.08.05-Pollan.pdf,2002.08.05,2002.08.05 +1839,26-Jul-2002,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Surfing,T.J. Nimmons,M,13,Heel bitten,False,1.2 m [4'] blacktip or sandbar shark,"C. Creswell, GSAF; The State (Columbia, SC) 7/28/2002 ; Sun News (Myrtle Beach), 7/28/2002",2002.07.26-Nimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.26-Nimmons.pdf,2002.07.26,2002.07.26 +1840,20-Jul-2002,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Mary Katherine Strong,F,15,Calf bitten,False,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ","C. Creswell, GSAF",2002.07.20-Strong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.20-Strong.pdf,2002.07.20,2002.07.20 +1841,10-Jul-2002,Provoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Josh Nichtro,M,19,2 small lacerations on left lower leg when he jumped off board and landed on the shark PROVOKED INCIDENT,False,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ","S. Petersohn, GSAF",2002.07.10-Nichtro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.10-Nichtro.pdf,2002.07.10,2002.07.10 +1842,09-Jul-2002,Provoked,USA,Maryland,"100 miles off Ocean City, Maryland, in 7000' of water",Shark Fishing,Captain Billy Verbanas,M,41,fatal,True,"Mako shark, 400-lb ",Life in Legacy ,2002.07.09.b-Verbanas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.b-Verbanas.pdf,2002.07.09.b,2002.07.09.b +1843,10-Jul-2002,Unprovoked,BRAZIL,Pernambuco,"Piedade Beach, Recife",Surfing,Mário César Carneiro da Silva,M,22,Right hand severed,False,Bull or tiger shark,"P.M. Lopes, GSAF",2002.07.09.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.09.a-daSilva.pdf,2002.07.09.a,2002.07.09.a +1844,04-Jul-2002,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Standing,Avery Olearczyk,F,9,"Calf, foot & hand bitten",False,"1.2 m to 1.5 m [4' to 5'] shark, possibly a bull shark","Miami Herald, 7/7/2002 ",2002.07.04-Olearczyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.07.04-Olearczyk.pdf,2002.07.04,2002.07.04 +1845,20-Jun-2002,Unprovoked,AUSTRALIA,Queensland,Sunshine Beach,Surfing,male,M,30,minor injury to foot,False,"1.2 m to 1.5 m [4' to 5'] shark, possibly a bull shark","AAP, 6/20/2002",2002.06.20.b-surfer-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.b-surfer-QLD.pdf,2002.06.20.b,2002.06.20.b +1846,20-Jun-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,female,F,11,Small lacerations on right lower leg,False,"1.2 m to 1.5 m [4' to 5'] shark, possibly a bull shark","S. Petersohn, GSAF",2002.06.20.a-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.20.a-female.pdf,2002.06.20.a,2002.06.20.a +1847,16-Jun-2002,Invalid,INDONESIA,"Shark caught in Indonesia, offloaded to trawler that docked at Samut Prakan, 20 miles south of Bangkok, Thailand","Shark caught in Indonesia, offloaded to trawler that docked at Samut Prakan, 20 miles south of Bangkok, Thailand",Swimming,espn.go.com,,11,Human remains (right forearm & leg) recovered from 3.7m [12'] tiger shark’s gut. Forensic examination suggested the remains had been consumed by the shark one to two weeks earlier,False,Shark involvement prior to death was not confirmed,espn.go.com,2002.06.16-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.16-Indonesia.pdf,2002.06.16,2002.06.16 +1848,Reported 13-Jun-2002,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Brooker Island , Calvados Chain",Swimming,"PNG Post-Courier, 6/13/2002, p.5",,11,"Arm severely lacerated, surgically amputated",False,Shark involvement prior to death was not confirmed,"PNG Post-Courier, 6/13/2002, p.5",2002.06.13-R.2-beche-de-mer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13-R.2-beche-de-mer.pdf,2002.06.13.R2,2002.06.13.R2 +1849,Reported 13-Jun-2002,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Gawa Reefs, Sudest Island",Attempting to retreive a dinghy,an elementary school teacher,,11,fatal,True,Shark involvement prior to death was not confirmed,"PNG Post-Courier, 6/13/2002, p.5",2002.06.13.R.1-schoolteacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.13.R.1-schoolteacher.pdf,2002.06.13.R1,2002.06.13.R1 +1850,11-Jun-2002,Unprovoked,USA,Hawaii,"Anini Beach, Kaua'i",Sitting on surfboard,C. Levin,,11,"No injury, shark bit side of surfboard",False,"Tiger shark, 2.4 m to 2.7 m [8' to 9'] ",Hawaii Department of Land and Natural Resources,2002.06.11.b-Levin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.b-Levin.pdf,2002.06.11.b,2002.06.11.b +1851,10-Jun-2002,Unprovoked,USA,Florida,"St Augustine Beach, St Johns County",Surfing,Jason Smith,M,28,Right hand lacerated,False,0.9 m to 1.2 m [3' to 4'] shark; Tooth fragment recovered from hand,"Orlando Sentinel, 6/12/2002, pp. B2 & B5; Florida Times-Union, 6/10/2002",2002.06.11.a-JasonSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.11.a-JasonSmith.pdf,2002.06.11.a,2002.06.11.a +1852,09-Jun-2002,Unprovoked,USA,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Craig Taylor,M,50,6-inch gash on right foot,False,  ,"S. Petersohn, GSAF; S. Pedicini, Orlando Sentinel, 6/13/2002., p.B1 & 6/12/2002, p.B2",2002.06.09.b-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.b-Taylor.pdf,2002.06.09.b,2002.06.09.b +1853,09-Jun-2002,Unprovoked,USA,Florida,"Jensen Beach, Martin County ",Swimming,Corey Brooks,M,10,Right calf lacerated,False,  ,"ESPN; Orlando Sentinel, 6/12/2002, p.B2",2002.06.09.a-Brooks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.09.a-Brooks.pdf,2002.06.09.a,2002.06.09.a +1854,03-Jun-2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal between Port Edward and Port St Johns,Off Mkhambati ,Snorkeling (filming the sardine run),Tony White,M,50,Upper arm bitten,False,1.5 to 2.5 m [5' to 8.25'] copper shark,T. White,2002.06.03-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.06.03-White.pdf,2002.06.03,2002.06.03 +1855,31-May-2002,Unprovoked,USA,California,"Stinson Beach, Marin County",Surfing,Lee Fontan,M,24,Lacerated leg & back,False,3.7 m to 4.3 m [12' to 14'] white shark,San Francisco Gate,2002.05.31.b-Fontan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.b-Fontan.pdf,2002.05.31.b,2002.05.31.b +1856,31-May-2002,Unprovoked,USA,Florida,"St. George Island (near Apachicola), Franklin County",Floating on a raft,Matt Tichenor,M,16,Lacerated foot,False,1 m shark,"South Florida Sun-Sentinel; Orlando Sentinel, 6/3/2002, p.B.2; Miami Herald, 6/3/2002",2002.05.31.a-Tichenor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.31.a-Tichenor.pdf,2002.05.31.a,2002.05.31.a +1857,22-May-2002,Provoked,USA,Florida,"a pier at the end of Caxambas Drive, Marco Island ","Fishing, removing the shark from his line",male,M,55,Leg bitten by hooked shark PROVOKED INCIDENT,False,3' blacktip shark,"News-Press, 5/23/2002",2002.05.22.b-MarcoIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.b-MarcoIsland.pdf,2002.05.22.b,2002.05.22.b +1858,22-May-2002,Unprovoked,USA,Florida,"Atlantic Avenue, Palm Beach County",Playing in the surf with his 2 dogs,Sean Oliver,M,35,"2-inch wound on dorsum of right foot, 1-inch wound on sole",False,3' blacktip shark,"Palm Beach Post, 5/24 & 26/2002",2002.05.22.a-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.22.a-Oliver.pdf,2002.05.22.a,2002.05.22.a +1859,Reported 21-May-2002,Unprovoked,COSTA RICA,Guanacaste,Playa Grande,Surfing,Nick Wallace,M,35,Toothmarks in board & his swim trunks,False,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ",Surfline.com,2002.05.21.R-Wallace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.R-Wallace.pdf,2002.05.21.R,2002.05.21.R +1860,21-May-2002,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Tewatewa Island,Collecting beche-de-mer,Billy Leonard,M,14,Wrist lacerated,False,"Bull shark, 1.8 m to 2.1 m [6' to 7'] ","PNG Post-Courier, 6/13/2002, p.5",2002.05.21.a-Leonard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.21.a-Leonard.pdf,2002.05.21,2002.05.21 +1861,13-May-2002,Unprovoked,USA,Florida,"Ten Thousand Islands National Wildlife Refuge, Collier County",Fishing,Fermin Gallegos,M,31,Laceration to arm.,False,2.1 m to 2.4 m [7' to 8'] shark,South Florida Sun-Sentinel; Southwest Florida Digest,2002.05.13-Gallegos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.13-Gallegos.pdf,2002.05.13,2002.05.13 +1862,10-May-2002,Unprovoked,BRAZIL,Pernambuco,"Pina, Recife",Surfing,Paulo Fernandes Alves Ferreira,M,40,Leg injured,False,2.1 m to 2.4 m [7' to 8'] shark,"JCOnline, 5/11/2002",2002.05.10-PauloFernandesAlvesFerreira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.10-PauloFernandesAlvesFerreira.pdf,2002.05.10,2002.05.10 +1863,07-May-2002,Provoked,AUSTRALIA,Northern Territory,Darwin,Fishing from prawn trawler,Richard Morris,M,20,Netted shark injured his am & 6 fingers PROVOKED INCIDENT,False,2.1 m to 2.4 m [7' to 8'] shark,"Northern Territory News, 5/29/2002, p.7",2002.05.07-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.05.07-Morris.pdf,2002.05.07,2002.05.07 +1864,30-Apr-2002,Unprovoked,AUSTRALIA,South Australia,"Smoky Bay, near Ceduna, on the Eyre Peninsula",Scallop diving (using surface-supplied air & a POD) ,Paul Buckland,M,23,fatal,True,"White shark, 6m [20']","T. Peake, GSAF",2002.04.30-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.30-Buckland.pdf,2002.04.30,2002.04.30 +1865,21-Apr-2002,Invalid,AUSTRALIA,New South Wales,26 nautical miles out to sea off Lake Macquarie,Fishing (Drowned 2-Apr-2002),Mr. Kang Suk Lee,M,52,"Drowned, his remains were found in a 3m [10'], 368 kg [811-lb] tiger shark",False,Invalid,Newcastle Herald. 10/3/2002,2002.04.21-KangSukLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.21-KangSukLee.pdf,2002.04.21,2002.04.21 +1866,20-Apr-2002,Unprovoked,USA,Florida,"St. Augustine Beach, St. Johns County","Surfing, but standing in water alongside board",Robert Stinson,M,34,Left foot bitten,False,1.2 m [4'] shark,"Miami Herald, 4/25/2002; Florida Times-Union, 4/23/2002",2002.04.20-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.20-Stinson.pdf,2002.04.20,2002.04.20 +1867,18-Apr-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Nolan Sutliff,M,28,Left foot bitten,False,1.2 m [4'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/19/2002, p.G1; Daytona Beach News Journal, 4/19/2002, p.1C",2002.04.18-Sutliff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.18-Sutliff.pdf,2002.04.18,2002.04.18 +1868,12-Apr-2002,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle",Swimming,John Schneider,M,45,Foot bitten,False,1.2 m [4'] shark,"T. Peake, GSAF",2002.04.12-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.12-Schneider.pdf,2002.04.12,2002.04.12 +1869,09-Apr-2002,Unprovoked,BAHAMAS,Abaco Islands,Walkers Cay,Standing,Erich Ritter,M,43,Calf bitten,False,"Bull shark, 400-lb ","E. Ritter, GSAF",2002.04.09-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.09-Ritter.pdf,2002.04.09,2002.04.09 +1870,02-Apr-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,male,M,41,Two half-inch lacerations on right heel and one near small toe,False,3' shark,"S. Petersohn, GSAF",2002.04.02-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.02-male.pdf,2002.04.02,2002.04.02 +1871,01-Apr-2002,Unprovoked,USA,Florida,"Lauderdale-By-The-Sea, Broward County",Swimming / Wading,Matthew May,M,29,Upper left arm bitten,False,0.9 m [3'] shark,"Orlando Sentinel, 4/2/2002, p.B3; Miami Herald, 4/2/2002",2002.04.01-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.04.01-May.pdf,2002.04.01,2002.04.01 +1872,25-Mar-2002,Unprovoked,USA,Hawaii,"Brenecke Beach, Po'ipu, Kaua'i",Body-boarding,Hoku Aki,M,17,Left leg severed below knee,False,Tiger shark,"G. Kubota, Honolulu Star Bulletin",2002.03.25.b-HokuAki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.b-HokuAki.pdf,2002.03.25.b,2002.03.25.b +1873,25-Mar-2002,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Wading,Ms Tori Lawrence,F,11,Foot bitten,False,  ,"Orlando Sentinel, 3/26/2002, p.B2; Miami Herald, 3/26/2002",2002.03.25.a-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.25.a-Lawrence.pdf,2002.03.25.a,2002.03.25.a +1874,24-Mar-2002,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Fábio Fernandes Silva,M,16,fatal,True,  ,JCOnline,2002.03.24-FabioFernandesSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.24-FabioFernandesSilva.pdf,2002.03.24,2002.03.24 +1875,19-Mar-2002,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming / boogie boarding,John Sadler,M,20,Punctures on left foot and foot ,False,4' shark,"S. Petersohn, GSAF; Orlando Sentinel, 3/20/2002, p.B2",2002.03.19-Sadler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.19-Sadler.pdf,2002.03.19,2002.03.19 +1876,15-Mar-2002,Unprovoked,USA,Florida,"Deerfield Beach (near Boca Raton), Broward County",Snorkeling,Robert Land,M,39,Arm bitten,False,"Nurse shark, 1m ",ezboard.com,2002.03.15.b-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.b-Land.pdf,2002.03.15.b,2002.03.15.b +1877,15-Mar-2002,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,31,Several puncture wounds on lower right leg,False,"Spinner shark, 3' to 4' ","S. Petersohn, GSAF; Orlando Sentinel, 3/16/2002, p.C.2",2002.03.15.a-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.15.a-male-surfer.pdf,2002.03.15.a,2002.03.15.a +1878,03-Mar-2002,Invalid,NEW CALEDONIA,Loyalty Islands,Lifou,Spearfishing,Yves Koidrin,M,44,fatal,True,Shark involvement prior to death unconfired,"Les Nouvelles Caledoniennes, 3/11/2002",2002.03.03-Yves-Koidrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.03.03-Yves-Koidrin.pdf,2002.03.03,2002.03.03 +1879,23-Feb-2002,Unprovoked,TURKS & CAICOS,unknown,unknown,Capsized fishing boat,John Sutton,M,44,fatal,True,Shark involvement prior to death unconfired,sharkattacks.com,2002.02.23-Sutton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.23-Sutton.pdf,2002.02.23,2002.02.23 +1880,16-Feb-2002,Unprovoked,AUSTRALIA,Queensland,Sunshine Beach,Surfing,Kirk Koster,M,30 or 36,Heel / foot bitten,False,"1.5 m [5'] ""whaler shark""","Sunday Mail (QLD), 2/17/2002, p.13; T. Peake, GSAF; AAP (Australia)",2002.02.16-Koster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.16-Koster.pdf,2002.02.16,2002.02.16 +1881,11-Feb-2002,Unprovoked,FIJI,Cikobia Island (north of Vanua Levu),Cikobia Island (north of Vanua Levu),Surfing,Jokini Rasoki,M,15,fatal,True,"1.5 m [5'] ""whaler shark""",Press Report dated 2-14-2002,2002.02.11-Rasoki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.11-Rasoki.pdf,2002.02.11,2002.02.11 +1882,07-Feb-2002,Boating,AUSTRALIA,New South Wales,Paramatta River (near Sydney),Kayaking,Paul McNamara,M,35,Stern of kayak bitten/chest bruised ,False,C. leucas tooth fragment recovered from kayak,"T. Peake, GSAF",2002.02.07-McNamara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.02.07-McNamara.pdf,2002.02.07,2002.02.07 +1883,30-Jan-2002,Unprovoked,AUSTRALIA,New South Wales,Just north of Fingal Spit,Surfing,Andrew Cribb,M,20,Bruises & minor cuts,False,"Tiger shark, 3 m [10']","T. Peake, GSAF",2002.01.30.b-Cribb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.b-Cribb.pdf,2002.01.30.b,2002.01.30.b +1884,30-Jan-2002,Unprovoked,AUSTRALIA,Western Australia,Collie River ,Swimming,Shayne Calliss,M,32,15 cm wound on inner thigh,False,"Tiger shark, 3 m [10']","T. Peake, GSAF; D. Green",2002.01.30.a-Calliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.30.a-Calliss.pdf,2002.01.30.a,2002.01.30.a +1885,04-Jan-2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Harbor,Fishing,Imraan Sheik,M,16,Leg bitten & surgically amputated,False,Zambesi shark?,"G. Gifford, GSAF",2002.01.04-Sheik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.04-Sheik.pdf,2002.01.04,2002.01.04 +1886,03-Jan-2002,Unprovoked,BRAZIL,Pernambuco,Candeias,Swimming,Unidentified,,16,fatal,True,Zambesi shark?,JCOnline,2002.01.03-Candeias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.03-Candeias.pdf,2002.01.03,2002.01.03 +1887,01-Jan-2002,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Surf skiing,Michael van Niekerk,M,26,Foot & calf bitten,False,Unidentified,ioL.co.za,2002.01.01.b-vanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.b-vanNiekerk.pdf,2002.01.01.b,2002.01.01.b +1888,01-Jan-2002,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Thomas Holmes,M,35,Lacerations to buttocks & thigh,False,"Tiger shark, 1.8 m [6'] ","G. Kubota, Star Bulletin",2002.01.01.a-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2002.01.01.a-Holmes.pdf,2002.01.01.a,2002.01.01.a +1889,21-Dec-2001,Invalid,AUSTRALIA,Western Australia,"Honeycombs, 250 km south of Perth",Surfing,Shane Dickson,M,36,"No injury, 2 m to 2.5 m [6.75' to 8.25'] shark made a threat display",False,"Tiger shark, 1.8 m [6'] ",sharkattacks.com,2001.12.21-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.12.21-Dickson.pdf,2001.12.21,2001.12.21 +1890,23-Nov-2001,Unprovoked,AUSTRALIA,New South Wales,"Flat Rock Beach, Lennox Head",Surfing,Roger Frankland,M,49,"No Injury, shark hit board",False,Bronze whaler shark,"T. Peake, GSAF",2001.11.23-Frankland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.23-Frankland.pdf,2001.11.23,2001.11.23 +1891,14-Nov-2001,Unprovoked,USA,Hawaii,"Kapalua, Maui",Surfing,M. Schweitzer,,49,"No injury, portion of board's lower surface removed",False,Bronze whaler shark,Hawaii Department of Land and Natural Resources,2001.11.14-Schweitzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.14-Schweitzer.pdf,2001.11.14,2001.11.14 +1892,07-Nov-2001,Invalid,AUSTRALIA,Western Australia,"Leighton Beach, south of North Cottesloe",Surf-skiing,male,M,49,"No injury, fell off ski after possibly colliding with a shark",False,Bronze whaler shark,"T. Peake, GSAF",2001.11.07-LeightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.11.07-LeightonBeach.pdf,2001.11.07,2001.11.07 +1893,07-Oct-2001,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Salt Rock ,Kite-Boarding,Alwin van Breda,M,49,No injury,False,"Mako shark, 2 m [6.75'] ",NSB,2001.10.07-vanBreda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.07-vanBreda.pdf,2001.10.07,2001.10.07 +1894,02-Oct-2001,Unprovoked,AUSTRALIA,Queensland,200 miles offshore,Snorkeling,Katherine Jones,F,20,Lacerations to right forearm & shoulder injured,False,Bronze whaler shark?,K. Jones,2001.10.02-Katherine-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.10.02-Katherine-Jones.pdf,2001.10.02,2001.10.02 +1895,30-Sep-2001,Unprovoked,MEXICO,Guerrero,Ixtapa,Body surfing,Brian Lavelle,M,26,Hand injured,False,"Tiger shark, 1.8 m [6']",T. Carlson,2001.09.30.b-Lavelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.b-Lavelle.pdf,2001.09.30.b,2001.09.30.b +1896,30-Sep-2001,Boat,AUSTRALIA,Queensland,"Moreton Bay, NE of Brisbane ",Body surfing,"boat: inflatable boat, occupant: Matt George, owner",M,31,No injury from shark,False,4 m [13'] white shark,"T. Peake, GSAF ",2001.09.30.a-MattGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.30.a-MattGeorge.pdf,2001.09.30.a,2001.09.30.a +1897,24-Sep-2001,Provoked,USA,Florida,"Ponce Inlet, Volusia County","Surfing, fell off surfboard & stepped on the shark.",male,M,21,PROVOKED INCIDENT Several small lacerations on left foot ,False,4' shark,"S. Petersohn, GSAF",2001.09.24-male_Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.24-male_Ponce.pdf,2001.09.24,2001.09.24 +1898,18-Sep-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Blaise Mosler,M,14,"1"" to 2"" cuts on right ankle & foot",False,4' shark,"Orlando Sentinel, 9/20/2001, p.D2; S. Frederick, Daytona Beach News Journal, 9/19/2001, p.1C",2001.09.18-Mosler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.18-Mosler.pdf,2001.09.18,2001.09.18 +1899,16-Sep-2001,Invalid,USA,Florida,"2 miles off Pompano Beach, Broward County",Wreck / Technical diving,Eric Reichardt,M,42,fatal,True,Questionable incident - shark bite may have precipitated drowning,D. Fleshler,2001.09.16-Reichardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.16-Reichardt.pdf,2001.09.16,2001.09.16 +1900,15-Sep-2001,Unprovoked,USA,Florida,A quarter mile north of Fort Pierce Inlet,Boogie boarding,Cory Hock,M,6½,"2 lacerations on lower back, punctures on buttock",False,2' to 3.5' shark,"G. Hock, M. Levine, GSAF; Orlando Sentinel, 9/18/2001, p.D2",2001.09.15.b-Hock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.b-Hock.pdf,2001.09.15.b,2001.09.15.b +1901,15-Sep-2001,Unprovoked,USA,North Carolina,"North Topsail Beach, Onslow County",Surfing,"Dale Fulcher, Jr.",M,16,Foot bitten,False,2' to 3.5' shark,"Clay Creswell, GSAF; Topsail Voice, 9/19/2001",2001.09.15.a-Fulcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.15.a-Fulcher.pdf,2001.09.15.a,2001.09.15.a +1902,13-Sep-2001,Provoked,UNITED KINGDOM,Cheshire,"Blue Planet Aquarium, Ellesmere Port",Diving,"Daily Post, 9/14/2001",M,16,Head bitten by captive shark PROVOKED INCIDENT,False,12' sandtiger shark,"Daily Post, 9/14/2001",2001.09.13-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.13-Aquarium.pdf,2001.09.13,2001.09.13 +1903,08-Sep-2001,Provoked,USA,Florida,"Everglades National Park, Monroe County",Fishing,male,M,44,Fingers & leg lacerated by hooked shark PROVOKED INCIDENT,False,12' sandtiger shark,"Orlando Sentinel, 9/9/2001",2001.09.08-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.08-angler.pdf,2001.09.08,2001.09.08 +1904,07-Sep-2001,Unprovoked,USA,Florida,"Key Biscayne, Dade County",Walking in shallows,Patrick Homer,M,13,Minor injury to left leg,False,12' sandtiger shark,"Miami Herald, 9/8/2001",2001.09.07.b-Homer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.b-Homer.pdf,2001.09.07.b,2001.09.07.b +1905,07-Sep-2001,Invalid,USA,South Carolina,"Waites Island, Horry County",Swimming,Jackie Boyce,F,13,Left hand injured,False,Shark involvement not confirmed,"Sun News (Myrtle Beach, SC) , 9/11/2001; The State (Columbia, SC), 9/12/2001",2001.09.07.a-Boyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.07.a-Boyce.pdf,2001.09.07.a,2001.09.07.a +1906,03-Sep-2001,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming ,Sergi Zaloukaev,M,28,fatal,True,A large white shark was filmed by divers on a local wreck 2 days prior to the incident.,"M. Levine, GSAF ",2001.09.03.b-Sergei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.b-Sergei.pdf,2001.09.03.b,2001.09.03.b +1907,03-Sep-2001,Unprovoked,USA,North Carolina,"Avon, Hatteras Island, Outer Banks, Dare County",Swimming,Natalia (Natasha) Slobonskaya,F,23,Left buttock & foot severed,False,A large white shark was filmed by divers on a local wreck 2 days prior to the incident.,"M. Levine, GSAF ",2001.09.03.a-Natasha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.03.a-Natasha.pdf,2001.09.03.a,2001.09.03.a +1908,02-Sep-2001,Unprovoked,USA,Florida,"Mayport Naval Station, Jacksonville, Duval Country",Wading,William Moseley,M,20,Right calf lacerated,False,1.5 m [5'] shark,"Orlando Sentinel, 9/4/2001, p.B2; Florida Times-Union, 9/5/2001",2001.09.02-Moseley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.02-Moseley.pdf,2001.09.02,2001.09.02 +1909,01-Sep-2001,Unprovoked,USA,Virginia,"Sandbridge Beach, Princess Anne County",Swimming ,David Peltier,M,10,fatal,True,bull shark,"M. Levine, GSAF ",2001.09.01-Peltier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.09.01-Peltier.pdf,2001.09.01,2001.09.01 +1910,31-Aug-2001,Unprovoked,BAHAMAS,Abaco Islands,North of Grand Cay,Spearfishing,Nick Raich,M,44,Torso lacerated,False,3 m [10'] bull shark,G. Atkinson,2001.08.31-Raich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.31-Raich.pdf,2001.08.31,2001.08.31 +1911,29-Aug-2001,Unprovoked,USA,Florida,"Coquina Beach, Anna Maria Island, Manatee County",Standing,Kristi Herzberg,F,29,Punctures & lacerations on elbow & forearm,False,3 m [10'] bull shark,"Sarasota Herald-Tribune, 8/31/2001",2001.08.29-Herzberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.29-Herzberg.pdf,2001.08.29,2001.08.29 +1912,27-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,William Goettel,M,69,Heel lacerated,False,3 m [10'] bull shark,"S. Petersohn, GSAF; CNN; M.I. Johnson, Daytona Beach News Journal, 8/28/2001, p.1A",2001.08.27-Goettel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.27-Goettel.pdf,2001.08.27,2001.08.27 +1913,26-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,Ben Gibbs,M,18,Thigh & foot bitten,False,3 m [10'] bull shark,"Miami Herald, 8/26/2001; S. Mussenden, Orlando Sentinel, 8/26/2002, p.B1",2001.08.26-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.26-Gibbs.pdf,2001.08.26,2001.08.26 +1914,25-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie Boarding,male,M,18,Upper left thigh & right foot bitten,False,3 m [10'] bull shark,"S. Petersohn, Miami Herald, 8/26/2001",2001.08.25-boogie-boarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.25-boogie-boarder.pdf,2001.08.25,2001.08.25 +1915,22-Aug-2001,Unprovoked,USA,Florida,"Daytona, Volusia County ",Surfing,Lowell Lutz,M,17,Foot lacerated,False,a small shark,"M. Giusti, Daytona Beach News Journal, 8/23/2001, p.1A",2001.08.22-Lutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.22-Lutz.pdf,2001.08.22,2001.08.22 +1916,21-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Omar Oyarce,M,27,Thigh lacerated,False,a small shark,"S. Petersohn, GSAF; L.Lelis, Orlando Sentinel, 8/22/2001, p.D.1",2001.08.21-Oyarce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.21-Oyarce.pdf,2001.08.21,2001.08.21 +1917,19-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Kurrek,M,32,Cuts on right foot,False,a small shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.19.c-Kurrek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.c-Kurrek.pdf,2001.08.19.c,2001.08.19.c +1918,19-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Becky Chapman,F,17,Lacerations to lower leg,False,a small shark,"E. Ritter & S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; L.Lelis, Orlando Sentinel, 8/22/2001, p.D.1",2001.08.19.b-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.b-Chapman.pdf,2001.08.19.b,2001.08.19.b +1919,19-Aug-2001,Unprovoked,USA,Florida,"Wilbur-by-the-Sea, Volusia County",Surfing,female,F,17,Left foot lacerated,False,a small shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.19.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.19.a-girl.pdf,2001.08.19.a,2001.08.19.a +1920,18-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jeff White,M,20,Cuts on right foot,False,Possibly a blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.c-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.c-White.pdf,2001.08.18.c,2001.08.18.c +1921,18-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jaison Valentin,M,19,Back of left hand gashed,False,"3' shark, possibly a blacktip or spinner shark","S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.b-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.b-Valentine.pdf,2001.08.18.b,2001.08.18.b +1922,18-Aug-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Dylan Feindt,M,19,Left ankle bitten,False,"Blacktip shark, 5' to 6' ","S. Petersohn, GSAF; Orlando Sentinel, 8/20/2001, p.B1; Daytona Beach News Journal, 8/20/2001, p.1A",2001.08.18.a-Feindt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.18.a-Feindt.pdf,2001.08.18.a,2001.08.18.a +1923,16-Aug-2001,Unprovoked,BAHAMAS,Grand Bahama Island,"High Rock, 25 to 30 miles east of Freeport",Spearfishing,Kent Bonde,M,43,Calf bitten,False,1.9 m [6.5'] bull shark,"E. Ritter, GSAF; 8/17/2001, p.A9",2001.08.16-Bonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.16-Bonde.pdf,2001.08.16,2001.08.16 +1924,12-Aug-2001,Unprovoked,THAILAND,Rayong Province,Laem Mae Pim Beach,Fell off banana boat,O. Jaimaung & friend,M,21 & ?,Legs bitten,False,3 m [10'] shark,O. Jaimuang,2001.08.12-Jaimuang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.12-Jaimuang.pdf,2001.08.12,2001.08.12 +1925,05-Aug-2001,Unprovoked,USA,South Carolina,"Near 70th Avenue, Myrtle Beach, Horry County",Fell off banana boat,female,F,21 & ?,Toe bitten,False,3 m [10'] shark,"C. Creswell, GSAF",2001.08.05-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.05-female.pdf,2001.08.05,2001.08.05 +1926,04-Aug-2001,Unprovoked,BAHAMAS,Grand Bahama Island,Freeport,Swimming,Krishna Thompson,M,36,"Leg bitten, later surgically amputated above the knee",False,3 m [10'] shark,"Orlando Sentinel, 8/7/2001, p.D3; 8/8/2001, p.D2",2001.08.04-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.04-Thompson.pdf,2001.08.04,2001.08.04 +1927,03-Aug-2001,Boating,ITALY,Rimini,Rimini,Fishing,boat; occupants: T & G Longhi,,36,No Injury to occupants,False,3 m [10'] shark,MEDSAF,2001.08.03-Longhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.08.03-Longhi.pdf,2001.08.03,2001.08.03 +1928,26-Jul-2001,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Fishing,female,F,36,Survived,False,3 m [10'] shark,SAF,2001.07.26-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.26-female.pdf,2001.07.26,2001.07.26 +1929,25-Jul-2001,Unprovoked,USA,Florida,"Taverniier, Monroe County",Fishing,male,M,36,Minor injury,False,3 m [10'] shark,"Key West Citizen, 7/26/2001",2001.07.25-FloridaKeys-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.25-FloridaKeys-male.pdf,2001.07.25,2001.07.25 +1930,24-Jul-2001,Unprovoked,USA,Florida,"Marathon , Monroe County",Fishing,female,F,36,2 bites behind knee,False,Nurse shark,"Key West Citizen, 7/26/2001",2001.07.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.24-female.pdf,2001.07.24,2001.07.24 +1931,21-Jul-2001,Boating,USA,Massachusetts,Chatham Island,Fishing,"boat, occupants: Joseph Fitzback & 6 passengers",,36,No Injury to occupants; shark bumped the boat ,False,"Mako shark, 14' ",GSAF,2001.07.21-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.21-Massachusetts.pdf,2001.07.21,2001.07.21 +1932,15-Jul-2001,Unprovoked,USA,Florida,"Santa Rosa Island, Escambia County",Surfing,Michael Waters ,M,48,Left foot & heel lacerated,False,"Mako shark, 14' ","CNN; Pensacola News Journal; R. Suriano, Otlando Sentinel, 7/17/2001, p.D.1",2001.07.15.b-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.b-Waters.pdf,2001.07.15.b,2001.07.15.b +1933,15-Jul-2001,Unprovoked,USA,Florida,"Amelia Island, Nassau County",Boogie boarding,Tim Flanigan,M,18,Foot lacerated,False,0.9 m [3'] shark,"The Enquirer (Cincinnati), 7/17/2001 ",2001.07.15.a-Flanigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.15.a-Flanigan.pdf,2001.07.15.a,2001.07.15.a +1934,06-Jul-2001,Unprovoked,MEXICO,Baja California,Ensenada,Surfing,Tim Fabel,M,42,Foot bitten,False,0.9 m [3'] shark,KGTV,2001.07.06.b-Fabel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.b-Fabel.pdf,2001.07.06.b,2001.07.06.b +1935,06-Jul-2001,Unprovoked,USA,Florida,Gulf Islands National Seashore,Swimming,Jesse Arbogast,M,8,"Arm severed, surgically reattached",False,"Bull shark, 2.3 m [7.5'] ","E. Ritter, GSAF",2001.07.06.a-Arbogast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.06.a-Arbogast.pdf,2001.07.06.a,2001.07.06.a +1936,03-Jul-2001,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County ",Swimming,"C. Creswell, GSAF",,8,Hand bitten,False,"Bull shark, 2.3 m [7.5'] ","C. Creswell, GSAF",2001.07.03-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.03-SouthCarolina.pdf,2001.07.03,2001.07.03 +1937,Jul-2001,Unprovoked,USA,Georgia,"Jekyll Island, Glynn County",Floating face-down in knee-deep water,John Davis,M,35,2-inch cut on dorsum of left foot,False,"Bull shark, 2.3 m [7.5'] ","Atlanta Journal-Constitution, 9/5/2001; Florida Times-Union, 9/5/2001",2001.07.00-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.07.00-Davis.pdf,2001.07.00,2001.07.00 +1938,12-Jun-2001,Unprovoked,USA,Texas,Padre Island National Seashore,Swimming,Jared Black,M,14,Leg lacerated,False,1.5 m [5'] shark,"Houston Chronicle, 6/17/2001",2001.06.12-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.12-Black.pdf,2001.06.12,2001.06.12 +1939,10-Jun-2001,Provoked,USA,California,Catalina Island,Spearfishing,Bill McNair,M,52,"No injury. Shark made threat display, then diver shot the shark PROVOKED INCIDENT",False,"White shark, 2.4 m to 3 m [8' to 10'] ","R. Collier, GSAF",2001.06.10-McNair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.10-McNair.pdf,2001.06.10,2001.06.10 +1940,09-Jun-2001,Invalid,AUSTRALIA,New South Wales,Lord Howe Island (island group 440 miles northeast of Sydney),Hiking on the beach,Arthur Applet,M,75,Remains recovered from gut of a 3.7 m [12'] tiger shark,False,Shark involvement prior to death was not confirmed,Times Online,2001.06.09-Applet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.09-Applet.pdf,2001.06.09,2001.06.09 +1941,03-Jun-2001,Unprovoked,USA,South Carolina,"Off 21st Avenue, Isle of Palms, Charleston County",Wading,Mary Pound,F,29,3 puncture wounds on each side of her left hand,False,2' shark,"C. Creswell, GSAF, Charleston Post & Courier, 6/4/2001",2001.06.03-MaryPound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.06.03-MaryPound.pdf,2001.06.03,2001.06.03 +1942,29-May-2001,Unprovoked,USA,Texas,Galveston Island,Wading,male,M,16,Survived,False,2' shark,sharkattacks.com,2001.05.29-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.29-Galveston.pdf,2001.05.29,2001.05.29 +1943,23-May-2001,Unprovoked,USA,South Carolina,"Coligny Beach, Hilton Head, Beaufort County",Swimming,Tripp Choate,M,11,Shin lacerated,False,1.2 m to 1.5 m [4.5' to 5'] shark,"C. Creswell, GSAF",2001.05.23-Choate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.23-Choate.pdf,2001.05.23 ,2001.05.23 +1944,20-May-2001,Unprovoked,USA,South Carolina,"Fripp Island, Beaufort County",Swimming,Michael Heidenreich,M,11,5.5-inch laceration on calf,False,1.2 m to 1.5 m [4.5' to 5'] shark,"Charlotte Observer, 5/23/2001, p.5B; Greenville News, 5/26/2001",2001.05.20-Heidenreich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.20-Heidenreich.pdf,2001.05.20,2001.05.20 +1945,18-May-2001,Provoked,PHILIPPINES,Zamboanga del Sur Province,Zamboanga del Sur Province,Shark fishing,Amir Badi,M,24,Arm bitten PROVOKED INCIDENT,False,1.2 m to 1.5 m [4.5' to 5'] shark,AFP,2001.05.18-Badi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.18-Badi.pdf,2001.05.18,2001.05.18 +1946,11-May-2001,Invalid,MADAGASCAR,Shipwrecked Ferry M/V Samsonnette,Shipwrecked Ferry M/V Samsonnette,Shark fishing,French national,M,24,fatal,True,Shark involvement prior to death was not confirmed,GDACS (Global Disaster Alert & Coordination System),2001.05.11-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.11-Madagascar.pdf,2001.05.11,2001.05.11 +1947,08-May-2001,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,David van Staden,M,26,Leg bitten,False,"White shark, 2.7 m to 3 m [9' to 10'] ","East London Daily Dispatch, 5/9/2001",2001.05.08-Van Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.08-Van Staden.pdf,2001.05.08,2001.05.08 +1948,04-May-2001,Unprovoked,AUSTRALIA,New South Wales,Noraville,Surfing,Michael Valentine,M,33 or 37,"Chest lacerated, surfboard bitten",False,"White shark, 2.7 m to 3 m [9' to 10'] ","Newcastle Herald; Sunday Mail (QLD), 5/6/2001, p.46; Sunday Territorian, 5/6/2001, p.8",2001.05.04-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.04-Valentine.pdf,2001.05.04,2001.05.04 +1949,03-May-2001,Unprovoked,USA,Florida,"Jacksonville, Duval County",Surfing,John McCall,M,45,Foot lacerated ,False,1.2 m to 1.5 m [4' to 5'] shark,"J. Eager, scubaradio.com; J. Gaudin, GSAF",2001.05.03-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.03-McCall.pdf,2001.05.03,2001.05.03 +1950,May-2001,Unprovoked,FIJI,Taveuni,Taveuni,"Spearfishing, carrying his catch",male,M,45,fatal,True,1.2 m to 1.5 m [4' to 5'] shark,FijiTV,2001.05.00-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.05.00-Fiji.pdf,2001.05.00,2001.05.00 +1951,28-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,male,M,14,4 small lacerations on lower right leg,False,1.2 m to 1.5 m [4' to 5'] shark,"S. Petersohn, GSAF",2001.04.28-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.28-NV-NewSmyrnaBeach.pdf,2001.04.28,2001.04.28 +1952,13-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jonathan Bush,M,16,Foot & ankle lacerated,False,1.2 m to 1.5 m [4' to 5'] shark,"J. Eager, scubaradio.com; Orlando Sentinel, April 14, 2001, p.A1",2001.04.13.b-Bush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.b-Bush.pdf,2001.04.13.b,2001.04.13.b +1953,13-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Andrew Barron,M,12,Right foot & ankle lacerated,False,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.13.a-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.13.a-Barron.pdf,2001.04.13.a,2001.04.13.a +1954,12-Apr-2001,Unprovoked,USA,Florida,"Waveland Beach, Hutchinson Island, St Lucie County",Surfing,male,M,mid-30s,Right ankle & lower leg lacerated,False,Possibly a juvenile blacktip or spinner shark,"M. Large, Stuart News, 4/13/2001 ",2001.04.12.e-WavelandBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.e-WavelandBeach.pdf,2001.04.12.e,2001.04.12.e +1955,12-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Richard Spence,M,38,Foot & ankle lacerated,False,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.d-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.d-Spence.pdf,2001.04.12.d,2001.04.12.d +1956,12-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Emmet Browning,M,21,Small cuts on big & pinky toes of left foot,False,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.c-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.c-Browning.pdf,2001.04.12.c,2001.04.12.c +1957,12-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body boarding,"John Fasio, Jr ",M,12,Foot & ankle lacerated,False,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.b-Fasio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.b-Fasio.pdf,2001.04.12.b,2001.04.12.b +1958,12-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Richard Lloyd,M,22,Foot lacerated,False,Possibly a 1.5 m [5'] blacktip or spinner shark,"S. Petersohn, GSAF; Orlando Sentinel, 4/14/2001, p.A1",2001.04.12.a-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.12.a-Lloyd.pdf,2001.04.12.a,2001.04.12.a +1959,11-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Elren Thresher,M,19,Minor cuts on right heel & foot,False,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF; scubaradio.com; Orlando Sentinel, 4/14/2001, p.A1",2001.04.11.d-Thresher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.d-Thresher.pdf,2001.04.11.d,2001.04.11.d +1960,11-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach / Waveland, Volusia County",Surfing,Jordan Carter,M,22,Lacerations to top & bottom of left foot,False,Possibly a juvenile blacktip or spinner shark,"S. Petersohn, GSAF",2001.04.11.c-NV-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.c-NV-Carter.pdf,2001.04.11.c,2001.04.11.c +1961,11-Apr-2001,Unprovoked,USA,Hawaii,"Ewa Beach, O'ahu",Surfing,Gilbert Dano,M,22,Minor punctures & lacerations on left hand ,False,"1 m shark, possibly whitetip reef shark",Honolulu Star Bulletin,2001.04.11.a-Dano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.11.a-Dano.pdf,2001.04.11.a,2001.04.11.a +1962,10-Apr-2001,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,a surfer from Port Orange,,16,Foot lacerated,False,Possibly a juvenile blacktip or spinner shark,"Orlando Sentinel, 4/14/2001, p.A1",2001.04.10-PortOrangeSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.10-PortOrangeSurfer.pdf,2001.04.10,2001.04.10 +1963,08-Apr-2001,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,Dunstan Hogan,M,46,"Thigh, hip & buttock bitten",False,"White shark, 2.7 m [9'] ","M. Smale, P.E. Museum ",2001.04.08.b-Hogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.b-Hogan.pdf,2001.04.08.b,2001.04.08.b +1964,08-Apr-2001,Provoked,AUSTRALIA,New South Wales,Bronte Beach,Snorkeling,Andranik Markossian,M,46,Wrist lacerated PROVOKED INCIDENT,False,Wobbegong shark,"ABC News; Northern Territory News, 4/9/2001, p.2",2001.04.08.a-Markossian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.08.a-Markossian.pdf,2001.04.08.a,2001.04.08.a +1965,05-Apr-2001,Unprovoked,USA,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Standing alongside surfboard,Jason Bartholem,M,26,Minor lacerations to dorsum of left foot,False,"""small shark""","S. Petersohn, GSAF",2001.04.05-Bartholem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.05-Bartholem.pdf,2001.04.05,2001.04.05 +1966,02-Ap-2001,Unprovoked,BRAZIL,Rio Grande de Norte,"Praia de Camapum, Macau",Batin,A.C.C.,F,12,Left thigh bitten,False,"""small shark""",M. Szpilman,2001.04.02.b-ACC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.b-ACC.pdf,2001.04.02.b,2001.04.02.b +1967,02-Apr-2001,Unprovoked,AUSTRALIA,New South Wales,Nambucca River Entrance,Surfing,Richard Ellis,M,40,Calf bitten,False,Bronze whaler shark,"T. Peake, GSAF",2001.04.02.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.04.02.a-Ellis.pdf,2001.04.02.a,2001.04.02.a +1968,23-Mar-2001,Unprovoked,USA,Hawaii,"Sandy Beach, Oahu",Body-boarding,Michael Mendez,M,40,"Minor cuts on left hand, body board bitten",False,Bronze whaler shark,Hawaii Department of Land and Natural Resources,2001.03.23-Mendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.23-Mendez.pdf,2001.03.23,2001.03.23 +1969,09-Mar-2001,Unprovoked,USA,Florida,"Coral Cove Park, Jupiter Island, Martin County",Surfing,Chad Hooker,M,40,Fingers & hand lacerated,False,"Spinner shark, 1.2 m to 1.5 m [4' to 5'] ",Shark Survivor. Inc.,2001.03.09-Hooker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.09-Hooker.pdf,2001.03.09,2001.03.09 +1970,08-Mar-2001,Invalid,BRAZIL,Bahia,Nova Vicosa,Attempting to catch a crocodile,V.A.F.,M,12,Lacerations below the knee,False,Shark involvement not confirmed,M. Szpilman,2001.03.08-VAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.08-VAF.pdf,2001.03.08,2001.03.08 +1971,03-Mar-2001,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Swimming,Carlo Alberto Brasileiro,M,20,fatal,True,Shark involvement not confirmed,"JC, 3/7/2001; Orlando Sentinel, 3/9/2001, p.A13",2001.03.03-Brasileiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.03-Brasileiro.pdf,2001.03.03,2001.03.03 +1972,Mar-2001,Sea Disaster,CARIBBEAN SEA,Between St. Maarten & Anguilla,Between St. Maarten & Anguilla,Sinking of the 40' Esperanza off St. Maartin with 36 refugees on board,Unknown,,20,fatal,True,"Tiger shark, 8' ","C. Johansson, GSAF",2001.03.00-Anguilla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.03.00-Anguilla.pdf,2001.03.00,2001.03.00 +1973,26-Feb-2001,Boating,AUSTRALIA,Western Australia,Albany (incident took place 200 metres from swimmers),Fishing for whiting,"5 m boat, occupants: Don & Margaret Stubbs",,20,No injury to occupants,False,"White shark, 5 m [16.5'] ",Illwara Mercury,2001.02.26-BOAT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.26-BOAT.pdf,2001.02.26,2001.02.26 +1974,11-Feb-2001,Invalid,MALAYSIA,Off the western coast of peninsular Malaysia,Pulau Pangkor (Pangkor Island),Unknown,female,F,20,Bones recovered by fishermen in 300-kg [662-lb] white shark’s gut,False,Shark involvement prior to death was not confirmed,Associated Press,2001.02.11-Pangkor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.11-Pangkor.pdf,2001.02.11,2001.02.11 +1975,04-Feb-2001,Unprovoked,AUSTRALIA,New South Wales,Broome Head,Surfing,Mark Butler,M,40,Leg bitten,False,"Bronze whaler shark, 2.5 m [8.25'] k","Daily Dispatch, 2/6/2001",2001.02.04-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.02.04-Butler.pdf,2001.02.04,2001.02.04 +1976,Reported 24-Jan-2001,Boating,AUSTRALIA,New South Wales,South West Rocks,Kayaking,Mark Elkinton,M,35,"No injury, shark rammed & bit kayak",False,5 m shark,"Daily Telegraph 1/24/2001, p.19",2001.01.24.R-Elkinton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.R-Elkinton.pdf,2001.01.24.R,2001.01.24.R +1977,24-Jan-2001,Unprovoked,CUBA,Holquin Province,Off Blau Costa Verde resort,Swimming,Mrs. Soile Hamalainen,F,55,Left arm bitten,False,2 m [6.75'] shark,"Trip Advisor, et al.",2001.01.24.a-Hamalainen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.24.a-Hamalainen.pdf,2001.01.24,2001.01.24 +1978,21-Jan-2001,Boating,AUSTRALIA,South Australia,Adelaide,Fishing,"6 m boat, occupants John Winslet & customers",,55,No injury to occupants,False,"White shark, 4.3 m [14'] ","Northern Territory News, 1/22/2001, p.8",2001.01.21-FishingBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.21-FishingBoats.pdf,2001.01.21 ,2001.01.21 +1979,09-Jan-2001,Unprovoked,USA,California,"Sunset Cliffs, San Diego",Surfing,Larry McCash,M,55,"Foot bruised, board dinged",False,"1.8 m to 2.4 m [6' to 8'] ""black finned shark""",M. Sanders,2001.01.09-McCash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.09-McCash.pdf,2001.01.09,2001.01.09 +1980,06-Jan-2001,Boating,NEW ZEALAND,North Island,Sandy Bay/Whananaki,Kayaking,Dr. Michael Hogan ,M,55,"No injury, kayak bitten",False,White shark,C. Duffy,2001.01.06-MikeHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2001.01.06-MikeHogan.pdf,2001.01.06,2001.01.06 +1981,24-Dec-2000,Unprovoked,AUSTRALIA,Queensland,Flinders Cay,Scuba diving,male,M,23,Hand bitten,False,White shark,"Daily Telegraph, 12/26/2000, p.7",2000.12.24-FlindersDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.24-FlindersDiver.pdf,2000.12.24,2000.12.24 +1982,12-Dec-2000,Unprovoked,FIJI,Taveuni,Garden Island Resort,Swimming back from anchored sailboat,Michael Loxton,M,47,fatal,True,6 m [20'] shark,multiple internet sources,2000.12.12-Loxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.12-Loxton.pdf,2000.12.12,2000.12.12 +1983,11-Dec-2000,Boating,AUSTRALIA,South Australia,"3 km off Port Victoria, Yorke Peninsula",Fishing for whiting,"3.5 -metre fibreglass boat, occupants: Harry Ulbrich and another fisherman",,47,No injury to occupants,False,"White shark, 4.5 m [14'9""] ","The Dominion, 12/13/2000; Northern Territory News, 12/13/2000, p.9",2000.12.11- boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.11- boat.pdf,2000.12.11,2000.12.11 +1984,05-Dec-2000,Unprovoked,CANADA,New Brunswick,Bay of Fundy,Diving for sea urchins,Daniel MacDonald,M,30,No injury,False,"Porbeagle shark, 3 m [10']rk","A. Martin; Telegraph-Journal, 12/8/2000",2000.12.05-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.05-MacDonald.pdf,2000.12.05,2000.12.05 +1985,03-Dec-2000,Unprovoked,AUSTRALIA,Queensland,"Sykes Reef, Great Barrier Reef",Spearfishing,Chris Hogan,M,38,Left elbow and forearm bitten,False,"Bronze whaler shark, 2.5 m [8.25'] ","N. Leys; Daily Telegraph, 12/4/2000.p.3",2000.12.03-ChrisHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.03-ChrisHogan.pdf,2000.12.03,2000.12.03 +1986,Dec-2000,Unprovoked,NEW ZEALAND,Cook Islands,"Arorangi, Rarotonga",Surfing,female,F,38,fatal,True,"Bronze whaler shark, 2.5 m [8.25'] ","C. Tini, R.D. Weeks, GSAF",2000.12.00 - Arorangi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.12.00 - Arorangi.pdf,2000.12.00,2000.12.00 +1987,21-Nov-2000,Unprovoked,AUSTRALIA,Queensland,Orpheus Island,Diving (shell maintenance),George Lyons,M,28,"No injury, wetsuit & swimfin torn",False,"Tiger shark, 4 m ","Courier-Mail, 11/24/2000, p.3",2000.11.21-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.21-Lyons.pdf,2000.11.21,2000.11.21 +1988,20-Nov-2000,Invalid,AUSTRALIA,South Australia,Ceduna,Shipwrecked,Danny Thorpe,M,47,"Missing, thought to have been taken by a shark",False,Shark involvement not confirmed,"T. Peake, GSAF",2000.11.20-Thorpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.20-Thorpe.pdf,2000.11.20,2000.11.20 +1989,17-Nov-2000,Unprovoked,USA,Florida,"Bonita Springs, Lee County",Swimming,Colin Shadforth,M,73,Right calf lacerated,False,1.2 m to 1.8 m [4' to 6'] shark,"South Florida Sun Sentinel, 11/19/2000, p.6B",2000.11.18-Shadforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.18-Shadforth.pdf,2000.11.18,2000.11.18 +1990,10-Nov-2000,Invalid,USA,Florida,"Vaughn Beach, Flagler County",Walking,Eileen Skeie,F,27,No injury,False,Invalid,E. Skeie,2000.11.10-Skeie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.10-Skeie.pdf,2000.11.10,2000.11.10 +1991,06-Nov-2000,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Swimming,Dirk Avery,M,52,Leg & feet lacerated,False,"White shark, 4.9 m [16'] ","B. May, AAP; G. Thiel",2000.11.06.b-Avery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.b-Avery.pdf,2000.11.06.b,2000.11.06.b +1992,06-Nov-2000,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Swimming,Ken Crew,M,49,fatal,True,"White shark, 5 m [16.5'] ","B. May, AAP; G. Thiel",2000.11.06.a-KenCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.06.a-KenCrew.pdf,2000.11.06.a,2000.11.06.a +1993,04-Nov-2000,Unprovoked,USA,California,"1/4 to 1/2 m north of the jetty at Bunkers, Eureka, Humboldt County",Surfing,Casey Stewman,M,27,Both thighs bitten,False,"White shark, 2.4 m to 3 m [8' to 10'] ","J. Ramsay, California Fish & Game; R. Collier",2000.11.04-Stewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.11.04-Stewman.pdf,2000.11.04,2000.11.04 +1994,29-Oct-2000,Boat,AUSTRALIA,Queensland,Peel Island,Fishing ,"boat, occupant: Paul Kelly",,31,"No Injury to occupant, shark holed and sank boat",False,White shark,"T. Peake, GSAF",2000.10.29-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.29-Kelly.pdf,2000.10.29,2000.10.29 +1995,20-Oct-2000,Unprovoked,USA,Florida,"Fort Pierce Inlet State Park, St Lucie County",Surfing,Jason Licamele,M,23,Leg lacerated,False,White shark,"Stuart News, 10/21/2000",2000.10.20-Licamele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.20-Licamele.pdf,2000.10.20,2000.10.20 +1996,18-Oct-2000,Unprovoked,USA,Hawaii,Olowalu,Swimming / snorkeling,Henrietta Musselwhite,F,56,Right side of back / torso lacerated,False,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",GSAF,2000.10.18-Musselwhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.18-Musselwhite.pdf,2000.10.18,2000.10.18 +1997,14-Oct-2000,Unprovoked,USA,Florida,"South Beach, Sebastian, Indian River County",Swimming,Norman Payne,M,69,Right hand lacerated,False,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ","D. Robinson, Vero Beach Press Journal, 10/17/2000, p.A4",2000.10.14-Payne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.14-Payne.pdf,2000.10.14,2000.10.14 +1998,09-Oct-2000,Unprovoked,USA,Florida,"Lake Worth Inlet/West Palm Beach, Palm Beach County",Surfing,Matt Kraskiewicz,M,17,Foot lacerated,False,2.1 to 2.4 m [7' to 8'] shark,"South Florida Sun-Sentinel, 10/11/2000",2000.10.09-Kraskiecwicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.09-Kraskiecwicz.pdf,2000.10.09,2000.10.09 +1999,06-Oct-2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Austin White,M,23,Fingers lacerated,False,"Blacktip shark, 2' ","SharkSurvivor.com; M.I.Johnson, Daytona Beach News Journal, 10/7/2000, p.1A; Daytona News Journal, 10/8/2000, p.4B",2000.10.06.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.b-White.pdf,2000.10.06.b,2000.10.06.b +2000,06-Oct-2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Taylor Holley,M,11,Right foot & heel lacerated,False,"Blacktip shark, 2' ","S. Petersohn, GSAF; M.I.Johnson, Daytona Beach News Journal, 10/7/2000, p.1A; Bradenton Herald 10/8/2000, ",2000.10.06.a-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.06.a-Holley.pdf,2000.10.06.a,2000.10.06.a +2001,02-Oct-2000,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Surfing,Mark Taylor,M,24,Upper left arm lacerated,False,"Blacktip shark, 2' ","The State (Columbia), 10/6/2000, p.A6",2000.10.02-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.10.02-Taylor.pdf,2000.10.02,2000.10.02 +2002,29-Sep-2000,Unprovoked,USA,California,"Mavericks, Half Moon Bay, San Mateo County",Sitting on surfboard,Peck Euwer,M,24,No injury,False,"White shark, 4.3 m [14']","P. Euwer, Ocean.com; D.W. Cole & M. DesJardins, Santa Cruz Sentinel",2000.09.29-Euwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.29-Euwer.pdf,2000.09.29,2000.09.29 +2003,25-Sep-2000,Unprovoked,AUSTRALIA,South Australia,"Black Point, Eyre Peninsula",Surfing,Jevan Wright,M,17,fatal,True,White shark,"T. Peake, GSAF",2000.09.25-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.25-Wright.pdf,2000.09.25,2000.09.25 +2004,24-Sep-2000,Unprovoked,AUSTRALIA,South Australia,Cactus Beach near Penong,Surfing,Cameron Bayes,M,25,fatal,True,"White shark, 4 m to 5 m [13' to 16.5'] ","T. Peake, GSAF",2000.09.24-Bayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.24-Bayes.pdf,2000.09.24,2000.09.24 +2005,19-Sep-2000,Provoked,AUSTRALIA,New South Wales,Wollongong,Fell onto dead shark,boy,M,12,Foot lacerated from toe to heel when he tripped on shark during fishing competition PROVOKED INCIDENT,False,100-kg [221-lb] dead blue shark,Illwara Mercury. 9/19/2000,2000.09.18-boy_provoked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.18-boy_provoked.pdf,2000.09.18,2000.09.18 +2006,16-Sep-2000,Unprovoked,OKINAWA,Miyako Island,Sunayama Beach,Surfing,Takayuki Miura,M,31,fatal,True,"White shark, 2.5 m ",M. Shimbun; japanupdate.com,2000.09.16.b-Miura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.b-Miura.pdf,2000.09.16.b,2000.09.16.b +2007,16-Sep-2000,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Surfing,"C. Creswell, GSAF",,31,fatal,True,"White shark, 2.5 m ","C. Creswell, GSAF",2000.09.16.a-NV-IsleOfPalms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.16.a-NV-IsleOfPalms.pdf,2000.09.16.a,2000.09.16.a +2008,15-Sep-2000,Unprovoked,USA,Florida,"Fort Pierce Inlet, St Lucie County",Standing / surfing,Gary Smith,M,49,Right lower leg & ankle lacerated,False,"White shark, 2.5 m ","SharkSurvivor.com.; The Stuart (FL) News, 9/19/2000",2000.09.15-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.15-Smith.pdf,2000.09.15,2000.09.15 +2009,12-Sep-2000,Unprovoked,USA,Florida,"Sebastian Inlet, Indian River or Brevard County",Surfing,Brenda Fried,F,26,Puncture wounds on knee,False,"White shark, 2.5 m ","SharkSurvivor.com; Florida Today, 9/13/2000",2000.09.12-Fried.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.12-Fried.pdf,2000.09.12,2000.09.12 +2010,11-Sep-2000,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County",Swimming / Body surfing,Jason Armstrong,M,25,Finger lacerated,False,60 cm to 90 cm [2' to 3'] shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/12/2000, p.1.A; Orlando Sentinel, 9/12/2000, p.D2",2000.09.11-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.11-Armstrong.pdf,2000.09.11,2000.09.11 +2011,10-Sep-2000,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Swimming,male,M,8,Minor injury to arm and hand,False,60 cm to 90 cm [2' to 3'] shark,"Fort Pierce Tribune, 9/12/2000",2000.09.10.b-Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.b-Boy.pdf,2000.09.10.b,2000.09.10.b +2012,10-Sep-2000,Unprovoked,SOUTH AFRICA,Western Cape Province,Dyer Island,Free diving,Gary Adkison,M,48,Swim fin bitten,False,"White shark, 3.5 m [11.5'] male ","E. Ritter, GSAF",2000.09.10.a-Adkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.10.a-Adkinson.pdf,2000.09.10.a,2000.09.10.a +2013,08-Sep-2000,Unprovoked,TANZANIA,"Coco Beach, Dar-es-Salaam (Reported as the 5th fatality in 3 months at Coco Beach)","Coco Beach, Dar-es-Salaam (Reported as the 5th fatality in 3 months at Coco Beach)",Swimming,Godfrey Msemwa,M,28,fatal,True,Thought to involve a Zambesi shark,E. Matechi; A. Mbogora ,2000.09.08.c-Msemwa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.c-Msemwa.pdf,2000.09.08.c,2000.09.08.c +2014,08-Sep-2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Terrill Crane,M,40,Left foot lacerated ,False,1.5 m [5'] shark,"S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal, 9/19/2000, p.1A; Orlando Sentinel, 9/9/2000 , p.D2",2000.09.08.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.b-Crane.pdf,2000.09.08.b,2000.09.08.b +2015,08-Sep-2000,Unprovoked,REUNION,Saint-Pierre,Pic du Diable ,Surfing,Karim Maan,M,27,Left arm bitten,False,"Tiger shark, 3 m [10'] ","Clicanoo, le journal de l'Ile de la Réunion; Northern Territory News, 9/12/2000, p.6",2000.09.08.a-KarimMaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.08.a-KarimMaan.pdf,2000.09.08.a,2000.09.08.a +2016,Early Sep-2000,Unprovoked,TANZANIA,"Coco Beach, Dar-es-Salaam","Coco Beach, Dar-es-Salaam",Swimming,T. Thierry,,27,fatal,True,Thought to involve a Zambesi shark,T. Thierry,2000.09.00-CocoBeach4.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.09.00-CocoBeach4.pdf,2000.09.00.b,2000.09.00.b +2017,31-Aug-2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Rickey Johnson,M,47,Punctures & lacerations on right foot,False,A 2' shark was seen in the area by witnesses,"S. Petersohn, GSAF",2000.08.31-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.31-Johnson.pdf,2000.08.31,2000.08.31 +2018,30-Aug-2000,Unprovoked,USA,Florida,"Boca Ciega Bay, Tampa, Pinellas County",Jumped into the water,Thaddeus Kubinski,M,69,fatal,True,"Thought to involve a 2.7 m [9'], 400-lb bull shark","E. Ritter, GSAF; Charlotte Observer, 9/1/2000, p.4A; Orlando Sentinel, 8/31/2000, p.A19",2000.08.30-Kubinski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.30-Kubinski.pdf,2000.08.30,2000.08.30 +2019,Reported 27-Aug-2000,Provoked,USA,Alaska,Prince William Sound,Conducting research,Bruce Wright,M,69,Leg bitten by netted shark PROVOKED INCIDENT,False,Salmon shark,B.A. Wright,2000.08.27.R-BruceWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.27.R-BruceWright.pdf,2000.08.27.R,2000.08.27.R +2020,21-Aug-2000,Unprovoked,USA,North Carolina,"Bouges Bank, Emerald Isle, Carteret County",Swimming out to porpoises ,male,M,69,"Severe gash to left hand above wrist, almost severing hand",False,Salmon shark,"C. Creswell, GSAF; Wilmington Morning Star; Charlotte Observer, 8/23/2000, p.2B",2000.08.21-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.21-male.pdf,2000.08.21,2000.08.21 +2021,15-Aug-2000,Unprovoked,USA,Hawaii,"Kanaha Beach, Maui","Windsurfing, but sitting on his board",Jean Alain Goenvec,M,53,Left calf lacerated,False,"Tiger shark, 3.7 m to 4.5 m [12' to 14'9""] ",Maui.net,2000.08.15-Goenvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.15-Goenvec.pdf,2000.08.15,2000.08.15 +2022,13-Aug-2000,Unprovoked,USA,Florida,"South Jacksonville Beach, Duval County",Surfing / Wading,Jason Wuss,M,27,Minor lacerations to the dorsum of the right foot,False,juvenile shark,"Florida Times-Union, 8/14/2000; Orlando Sentinel, 8/15/2000, p.D3",2000.08.13-JasonWuss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.13-JasonWuss.pdf,2000.08.13,2000.08.13 +2023,12-Aug-2000,Unprovoked,USA,Florida,"St. Augustine, St. Johns County",Standing,Margaret White,F,44,Severely bitten on lower leg ,False,"Blacktip shark, 2.4 m to 3 m [8' to 10'] ",M. White,2000.08.12-MargaretWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.12-MargaretWhite.pdf,2000.08.12,2000.08.12 +2024,11-Aug-2000,Invalid,USA,North Carolina,"Emerald Isle, Carteret County",Swimming ,Daniel Macatee,M,44,fatal,True,Shark involvement not confirmed, F. Schwartz,2000.08.11-Macatee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.11-Macatee.pdf,2000.08.11,2000.08.11 +2025,10-Aug-2000,Invalid,USA,Florida,Florida Keys,Attempting to illegally enter the USA,Juan & Alex Bueno,M,23 & 20,Shark involvement probably post-mortem,False,Shark involvement prior to death was not confirmed,Press clippings,2000.08.10-BuenoBrothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.10-BuenoBrothers.pdf,2000.08.10,2000.08.10 +2026,Aug-2000,Unprovoked,TANZANIA,"Coco Beach, Dar-es-Salaam","Coco Beach, Dar-es-Salaam",Swimming,T. Thierry,,23 & 20,fatal,True,Thought to involve a Zambesi shark,T. Thierry,2000.08.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.08.00-NV-Tanzania.pdf,2000.08.00,2000.08.00 +2027,25-Jul-2000,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,male,M,5,Minor laceration on left leg,False,Thought to involve a Zambesi shark,"M. Johnson, Daytona Beach News Journal",2000.07.25-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.25-male.pdf,2000.07.25,2000.07.25 +2028,22-Jul-2000,Unprovoked,USA,Florida,"Big Pine Key, Monroe County ",Snorkeling,Andrea Nani,F,45,Leg pinched,False,"Nurse shark, 1.5 m [5']","E. Ritter, GSAF",2000.07.22-Nani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.22-Nani.pdf,2000.07.22,2000.07.22 +2029,17-Jul-2000,Unprovoked,USA,North Carolina,"Oceanic Pier, Wrightsville Beach, New Hanover County",Surfing,Patrick G. Bruff,M,16,Foot lacerated,False,"Nurse shark, 1.5 m [5']","C. Creswell, GSAF; Charlotte Observer, 7/20/2000, p.1A & 8/23/2000, p.2B; F. Schwartz, p.23",2000.07.17-Bruff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.17-Bruff.pdf,2000.07.17,2000.07.17 +2030,16-Jul-2000,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Surfing,Tim Poynter,M,14,Minor lacerations on foot,False,1.8 m [6'] grey-colored shark,"C. Creswell, GSAF; Charlotte Observer, 7/20/2000, p.1A",2000.07.16.b-Poynter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.b-Poynter.pdf,2000.07.16.b,2000.07.16.b +2031,16-Jul-2000,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Shannon Ainslie,M,15,Hand lacerated,False,1.8 m [6'] grey-colored shark,"A. Gifford, GSAF; Orlando Sentinel, 7/19/2000, p.A11 ",2000.07.16.a-Ainslie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.16.a-Ainslie.pdf,2000.07.16.a,2000.07.16.a +2032,15-Jul-2000,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Surfing,male,M,18,"No injury, flung off board",False,1.8 m [6'] grey-colored shark,"A. Gifford, GSAF",2000.07.15.b-NV-CapeRecife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.b-NV-CapeRecife.pdf,2000.07.15.b,2000.07.15.b +2033,15-Jul-2000,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,South of Durban,Surfing,Ian Barnes,M,18,No Injury,False,1.8 m [6'] grey-colored shark,"A. Gifford, GSAF",2000.07.15.a-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.15.a-Barnes.pdf,2000.07.15.a,2000.07.15.a +2034,12-Jul-2000,Unprovoked, TONGA,Minerva Reef,Treated at Nuku-alofa,Scuba diving,Christian Eckoff,M,69,Left arm bitten,False,"Grey reef shark, 2 m [6.75'] ",www.spearfishingsa.co.za,2000.07.12-Eckoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.12-Eckoff.pdf,2000.07.12,2000.07.12 +2035,10-Jul-2000,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,M.A.,M,13,Minor laceration & 3 punctures to right foot,False,"Grey reef shark, 2 m [6.75'] ","S. Petersohn, GSAF; M. I. Johnson; H. Frederick, Daytona Beach News Journal, 7/11/2000, p.1A",2000.07.10-MA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.10-MA.pdf,2000.07.10,2000.07.10 +2036,09-Jul-2000,Unprovoked,USA,Florida,"Neptune Avenue, Ormond Beach, Volusia County",Swimming ,Anthony Zent,M,41,Knee & calf lacerated,False,"Grey reef shark, 2 m [6.75'] ","S. Petersohn, GSAF: H. Frederick, Daytona Beach News Journal, 7/11/2000, p.1A; Orlando Sentinel, 7/10/2000, p.C3; A. Givens, Orlando Sentinel, 7/11/2000, p.D1",2000.07.09-Zent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.09-Zent.pdf,2000.07.09,2000.07.09 +2037,07-Jul-2000,Unprovoked,USA,Texas,"Mustang Island, Corpus Christi",Jumping,Robby Doolittle,M,5,Ankle & foot lacerated,False,"Lemon shark, 2.1 m to 2.4 m [7' to 8'] ","K. Hastings, Dallas Morning News",2000.07.07-Doolittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.07-Doolittle.pdf,2000.07.07,2000.07.07 +2038,06-Jul-2000,Unprovoked,USA,North Carolina,"Pine Island, Corolla, Currituck County",Playing,Ashley Walker,F,12,Calf lacerated,False,"Tiger shark, 0.9 m to 1.5 m [3' to 5'] ?","Charlotte Observer, 7/20/2000, p.1A",2000.07.06-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.06-Walker.pdf,2000.07.06,2000.07.06 +2039,04-Jul-2000,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Niesha Peterson,F,20,Left inner thigh,False,"Tiger shark, 0.9 m to 1.5 m [3' to 5'] ?","S. Petersohn, GSAF",2000.07.04.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.b-Peterson.pdf,2000.07.04.b,2000.07.04.b +2040,04-Jul-2000,Unprovoked,USA,Florida,"Artifical reef 3 miles off Manatee Beach, Manatee County","Spearfishing, holding mesh bag with speared fish",Beverly Comstock,F,55,Lower right calf lacerated,False,"Nurse shark, 1.2 m [4'] ","V. Mannix, Bradenton Herald, 8/3/2000, p.1 ",2000.07.04.a-Comstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.04.a-Comstock.pdf,2000.07.04.a,2000.07.04.a +2041,02-Jul-2000,Unprovoked,USA,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Wading,Amber Benningfield,F,13,Left calf & hand lacerated,False,0.9 m [3'] shark,"S. Petersohn, GSAF; M.Guisti, Daytona Beach News Journal, 7/3/2000, p.6C; Orlando Sentinel, 7/3/2000,p.C3",2000.07.02.b-Benningfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.b-Benningfield.pdf,2000.07.02.b,2000.07.02.b +2042,02-Jul-2000,Unprovoked,USA,Florida,"Smyrna Dunes Park, New Smyrna Beach, Volusia County",Standing,Danielle Shidemantle,F,19,Left thigh lacerated,False,"0.9 m [3'] shark, probably a blacktip or spinner shark","S. Petersohn; M.Guisti, Daytona Beach News Journal, 7/3/2000, p.6C; Orlando Sentinel, 7/3/2000,p.C3",2000.07.02.a-Shidemantle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.02.a-Shidemantle.pdf,2000.07.02.a,2000.07.02.a +2043,Jul-2000,Unprovoked,TANZANIA,"Coco Beach, Dar-es-Salaam","Coco Beach, Dar-es-Salaam",Swimming,T. Thierry,,19,fatal,True,Thought to involve a Zambesi shark,T. Thierry,2000.07.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.07.00-NV-Tanzania.pdf,2000.07.00,2000.07.00 +2044,30-Jun-2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Swimming,male,M,19,fatal,True,Thought to involve a Zambesi shark,Squali.org,2000.06.30-NV-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.30-NV-PNG.pdf,2000.06.30,2000.06.30 +2045,29-Jun-2000,Boat,NEW ZEALAND,North Island,"Papamoa Beach, Bay of Plenty",Fishing,"inflatable dinghy, occupants: Craig Ward & Gavin John Halse",M,19,"No injury, shark bit the dinghy",False,"Mako shark, 2 m [6.75'] ","R. D. Weeks, GSAF",2000.06.29-Halse-Ward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.29-Halse-Ward.pdf,2000.06.29,2000.06.29 +2046,19-Jun-2000,Unprovoked,USA,Florida,"Seminole Avenue, Ormond Beach, Volusia County",Standing,Jacob Alegood,M,52,Right ankle lacerated,False,"Mako shark, 2 m [6.75'] ","S. Petersohn, GSAF; M. I. Johnson, Daytona Beach News Journal; Orlando Sentinel, 6/20/2000, p.D3",2000.06.19-Alegood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.19-Alegood.pdf,2000.06.19,2000.06.19 +2047,13-Jun-2000,Boat,USA,Florida,"Pensacola Bay, Escambia County",Sailing,22' pleasure boat,,52,"No injury to occupants, boat's rear platform bitten",False,"Bull shark, 2.4 m [8']","Mobile Register 6/14/2000; Charlotte Observer, 6/15/2000, p.8A",2000.06.13-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.13-boat.pdf,2000.06.13,2000.06.13 +2048,10-Jun-2000,Unprovoked,USA,Texas,"J.P. Luby Surf Park, Corpus Christi",Surfing,Kenny Alexander,M,17,Foot lacerated,False,"Blacktip shark, 1.2 m to 1.8 m [4' to 6'] ",GSAF,2000.06.10-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.10-Alexander.pdf,2000.06.10,2000.06.10 +2049,09-Jun-2000,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Swimming,Richard Whatley,M,55,Puncture wounds on right hip and arm,False,Bull shark?,"Orlando Sentinel, 6/10/2000, p.A20 & 6/11/2000, p.A22; T. Allen, pp.74-75Jun 10, 2000. pg. A.20",2000.06.09.b-Watley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.b-Watley.pdf,2000.06.09.b,2000.06.09.b +2050,09-Jun-2000,Unprovoked,USA,Alabama,"Gulf Shores, Baldwin County",Swimming ,Chuck Anderson,M,44,Right forearm severed surgically amputated above elbow,False,Bull shark,"Orlando Sentinel, 6/10/2000, p.A20 & 6/11/2000, p.A22; T. Allen, pp.74-75Jun 10, 2000. pg. A.20",2000.06.09.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.09.a-Anderson.pdf,2000.06.09.a,2000.06.09.a +2051,02-Jun-2000,Unprovoked,USA,Florida,"27th Avenue, New Smyrna Beach, Volusia County",Snorkeling,Brian Alcorn,M,13,Right forearm lacerated,False,Bull shark,"S. Petersohn, GSAF; D. Brannon; M.I. Johnson, Daytona Beach News Journal, 6/3/2000, p.1C",2000.06.02-Alcorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.02-Alcorn.pdf,2000.06.02,2000.06.02 +2052,Early Jun-2000,Unprovoked,TANZANIA,"Coco Beach in Oyster Bay, 7 km north of Dar-es-Salaam","Coco Beach in Oyster Bay, 7 km north of Dar-es-Salaam",Swimming,male,M,13,fatal,True,Thought to involve a Zambesi shark,T. Thierry,2000.06.00-CocoBeach1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.06.00-CocoBeach1.pdf,2000.06.00,2000.06.00 +2053,13-May-2000,Sea Disaster,NEW CALEDONIA,South Province,Mont Dore,"Air Disaster - Piper aircraft crashed into the sea, killing all on board",3 people,,13,fatal,True,Tiger sharks & bull sharks (20 sharks in all),"W. Leander; Les Nouvelles Caledoniennes, 5/15/2000",2000.05.13-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.13-aircraft.pdf,2000.05.13,2000.05.13 +2054,09-May-2000,Invalid,AUSTRALIA,Victoria,"Koonya Beach, Melbourne","Air Disaster - Piper aircraft crashed into the sea, killing all on board",Severed human foot washed ashore (in sneaker with 2 Velcro closures),,13,Probable drowning,False,Shark involvement prior to death was not confirmed,"T. Peake, GSAF",2000.05.09-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.09-foot.pdf,2000.05.09,2000.05.09 +2055,07-May-2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Standing,Adam,M,9,Left leg & ankle bitten,False,Shark involvement prior to death was not confirmed,Reuters; Papua New Guinea Post-Courier,2000.05.07.b-Adam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.b-Adam.pdf,2000.05.07.b,2000.05.07.b +2056,07-May-2000,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Long Island near Madang, about 500 km (310 miles) north of the South Pacific nation's capital of Port Moresby",Diving,male,M,9,fatal,True,Shark involvement prior to death was not confirmed,Reuters; Papua New Guinea Post-Courier,2000.05.07.a-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.05.07.a-diver.pdf,2000.05.07.a,2000.05.07.a +2057,14-Apr-2000,Unprovoked,USA,Florida,"On the south side of Ponce Inlet, Volusia County",Walking,Adam Metz,M,34,Left foot lacerated,False,Shark involvement prior to death was not confirmed,"Scott Petersohn, GSAF; M. Johnson; Daytona Beach News-Journal, 4/16/2000, p.3B",2000.04.14-Metz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.14-Metz.pdf,2000.04.14,2000.04.14 +2058,09-Apr-2000,Unprovoked,USA,Florida,"Municipal Beach, Riviera Beach, Palm Beach County",Boogie boarding / wading,teen,M,34,Puncture marks on right thigh,False,Shark involvement prior to death was not confirmed,"The Palm Beach Post, 4/11/2000, p.4B ",2000.04.09-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.04.09-boy.pdf,2000.04.09,2000.04.09 +2059,31-Mar-2000,Unprovoked,USA,Florida,Santa Rosa Sound Escambia County,Fishing,Dave Edwards,M,34,"No Injury, bumped by shark",False,Shark involvement prior to death was not confirmed,"R. Aiden Martin, GSAF; Pensacola News Journal & Orlando Sentinel, 5/9/2000, p.D.5",2000.03.31-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.31-Edwards.pdf,2000.03.31,2000.03.31 +2060,30-Mar-2000,Unprovoked,AUSTRALIA,Queensland,"Main Beach, Gold Coast",Swimming,Anrija (Andy) Rojcezic,M,26,Left calf bitten,False,2.5 m shark,"T. Peake, GSAF",2000.03.30-Rojcevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.30-Rojcevic.pdf,2000.03.30,2000.03.30 +2061,26-Mar-2000,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Boogie boarding,Heather Van Olst,F,14,Right knee lacerated,False,1.8 m [6'] shark,"Stuart News, 3/28/2000; Jupiter Couier, 3/29/2000",2000.03.26-VanOlst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.26-VanOlst.pdf,2000.03.26,2000.03.26 +2062,24-Mar-2000,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Barry Pasonski,M,37,Left hand bitten,False,1.2 m [4'] shark,"Orlando Sentinel, 3/25/2000, p.D.3 ",2000.03.24-Pasonski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.24-Pasonski.pdf,2000.03.24,2000.03.24 +2063,15-Mar-2000,Unprovoked,NEW CALEDONIA,North Province,Poum,Spearfishing,Gilbert Bui Van Minh,M,35,fatal,True,Tiger shark?,"Les Nouvelles Caledoniennes, 3/16/2000",2000.03.15-GilbertBui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.15-GilbertBui.pdf,2000.03.15,2000.03.15 +2064,14-Mar-2000,Unprovoked,AUSTRALIA,New South Wales,"McMasters Beach, Central Coast",Surfing,Craig Ruth,M,35,No Injury,False,"Tiger shark, 4 m [13'] ?","Sydney Morning Herald, 3/16/2000 ",2000.03.14-Ruth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.14-Ruth.pdf,2000.03.14,2000.03.14 +2065,10-Mar-2000,Boating,AUSTRALIA,New South Wales,Parramatta River,Rowing,boat of Scot's College rowers,,35,No Injury to occupants,False,2 m to 2.5 m [6.75' to 8.25'] shark,"Sydney Morning Herald, ",2000.03.10-rowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.10-rowers.pdf,2000.03.10,2000.03.10 +2066,09-Mar-2000,Boating,AUSTRALIA,New South Wales,Parramatta River,Rowing,boat of Al Hattersly,,35,No injury to occupants; oar bitten,False,2 m to 2.5 m [6.75' to 8.25'] shark,Sydney Morning Herald,2000.03.09-Oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.09-Oar.pdf,2000.03.09,2000.03.09 +2067,Reported 03-Mar-2000,Invalid,NEW ZEALAND,North Island,Between the Kakanui River and Campbell's Bay,Kayaking,Ricky Stringer,M,27,Reported as shark attack but probable drowning ,False,Shark involvement questionable,"R. D. Weeks, GSAF",2000.03.03.R-Stringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.03.R-Stringer.pdf,2000.03.03.R,2000.03.03.R +2068,02-Mar-2000,Unprovoked,AUSTRALIA,New South Wales,"Taronga Wharf, Athol Bay, Sydney Harbor",Swimming,Jack Dasey,M,27,Survived,False,Shark involvement questionable,Sydney Morning Herald,2000.03.02-Dasey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.02-Dasey.pdf,2000.03.02,2000.03.02 +2069,Mar-2000,Unprovoked,USA,Louisiana,Midnight Lump (38 miles offshore),Spearfishing,Kurt Bickel,M,39,"No injury to diver, speargun damaged",False,"Shortfin mako shark, 3 m to 3.4 m [10' to 11'] ","R. Collier, GSAF",2000.03.00.a-Bickel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.03.00.a-Bickel.pdf,2000.03.00,2000.03.00 +2070,21-Feb-2000,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Spearfishing,male,M,27,Right calf bitten,False,"Shortfin mako shark, 3 m to 3.4 m [10' to 11'] ","The Palm Beach Post, 2/22/2000",2000.02.21-male-Riviera Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.21-male-Riviera Beach.pdf,2000.02.21,2000.02.21 +2071,19-Feb-2000,Unprovoked,SOUTH AFRICA,Western Cape Province,Struis Bay,Body surfing,Dr. Weich,M,27,Foot bitten,False,"White shark, 2.5 m ","C. Creswell, GSAF",2000.02.19-Weich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.19-Weich.pdf,2000.02.19,2000.02.19 +2072,14-Feb-2000,Provoked,ENGLAND,Worcestershire,The Fountain Pub in Tenbury Wells,Feeding prawns to captive sharks,"Paul Smith, a chef",M,27,Fingers bitten PROVOKED INCIDENT,False,"Miami, a 60 cm blacktip shark and two 60 cm bamboo catsharks","The Sun (London), 2/17/2000",2000.02.14-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.14-Smith.pdf,2000.02.14,2000.02.14 +2073,03-Feb-2000,Unprovoked,NEW ZEALAND,South Island,Oreti Beach (reported as the 4th person bitten in NZ in 2000),Surfing,Michael Petas,M,12,"No injury, wetsuit punctured",False,"Miami, a 60 cm blacktip shark and two 60 cm bamboo catsharks","Waikato Times; Southland Times, 10/23/1999, p.1",2000.02.03-Petas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.03-Petas.pdf,2000.02.03,2000.02.03 +2074,01-Feb-2000,Unprovoked,AUSTRALIA,South Australia,"Point Sinclair, Cactus Beach near Penong",Surfing,Anthony Hayes,M,26,Hand bitten,False,3 m [10'] shark,"T. Peake, GSAF",2000.02.01-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.02.01-Hayes.pdf,2000.02.01,2000.02.01 +2075,Reported 28-Jan-2000,Boat,REUNION,Saint Pierre,Saint Pierre,Canoe with 3 men onboard sank,Boulabhaï Ishmael,M,26,fatal,True,3 m [10'] shark,B.L. du Vendre,2000.01.28.R-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.28.R-Reunion.pdf,2000.01.28.R,2000.01.28.R +2076,05-Jan-2000,Unprovoked,THAILAND,Phang nga Province,Phang nga Island,Diving,Stephan Kahl,M,35,fatal,True,3 m [10'] shark,A. Xuereb,2000.01.05-Kahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.01.05-Kahl.pdf,2000.01.05,2000.01.05 +2077,2000,Boat,USA,Florida,"Boca Grande, Lee County",Fishing for tarpon,"boat: occupant, Terry Winters",M,35,No injury to occupant; shark bit propeller,False,Hammerhead shark,"B. Stout, News-Press, 7/2/2005",2000.00.00-BocaGrandeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/2000.00.00-BocaGrandeBoat.pdf,2000.00.00,2000.00.00 +2078,31-Dec-1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Surfing,Tim Wild,M,15,Six puncture wounds on leg,False,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000",1999.12.31.c-Wildl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.c-Wildl.pdf,1999.12.31.c,1999.12.31.c +2079,31-Dec-1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Swimming,Jennifer McDowell,F,13,Arm bitten,False,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000; Waikato Times, 2/5/2000",1999.12.31.b-McDowell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.b-McDowell.pdf,1999.12.31.b,1999.12.31.b +2080,31-Dec-1999,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Bathing,Genna Hayward ,F,12,A cut on her hand,False,Sevengill shark,"R.D. Weeks, GSAF; The Otago Daily Times, 1/2/2000",1999.12.31.a-Hayward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.31.a-Hayward.pdf,1999.12.31.a,1999.12.31.a +2081,26-Dec-1999,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Alton Cicero da Silva,M,18,"Leg bitten, surgically amputated",False,"Thought to involve a white, bull or tiger shark","L. A. Pereira & J. Morris; JC, 12/27/1999",1999.12.26-Cicero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.26-Cicero.pdf,1999.12.26,1999.12.26 +2082,14-Dec-1999,Invalid,USA,California,"Off Ventura, Anacapa & Santa Cruz Islands",Scuba diving,Joo Whan Hong,M,18,"Presumed taken by a shark, but forensic evidence suggested otherwise.",False,Shark involvement not confirmed,R. Collier,1999.12.14-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.14-Hong.pdf,1999.12.14,1999.12.14 +2083,06-Dec-1999,Invalid,BRAZIL,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay",Spearfishing,Frederico Nóbrega (aka Derico) ,M,39,"Lateral right thigh bitten. Thought to involve a 1.2 to 1.5 m tubarão da gralha preta - a blacktip shark, C. limbatus",False,Shark involvement not confirmed,L. A. Pereira ,1999.12.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.06-Brazilian-diver.pdf,1999.12.06,1999.12.06 +2084,02-Dec-1999,Unprovoked,USA,Florida,"Boynton Beach, Palm Beach County",Surfing,male,M,35,Right arm & fingers lacerated,False,Shark involvement not confirmed,"The Palm Beach Post,12/3/1999 ",1999.12.02-BoyntonBeach-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.12.02-BoyntonBeach-surfer.pdf,1999.12.02,1999.12.02 +2085,30-Nov-1999,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Jeremiah Wyche,M,19,Lacerations to hand & wrist,False,Shark involvement not confirmed,"A. Brenneka, Shark Attack Survivors; The Palm Beach Post,12/3/1999 ",1999.11.30-Wyche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.30-Wyche.pdf,1999.11.30,1999.11.30 +2086,23-Nov-1999,Unprovoked,USA,Hawaii,"Big Island off Kona Village Resort, North Kona",Swimming,Laurie Boyette,F,51,"Buttock bitten, hands lacerated",False,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ","G. Kubota, Star Bulletin",1999.11.23-Boyette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.23-Boyette.pdf,1999.11.23,1999.11.23 +2087,15-Nov-1999,Unprovoked,USA,California,"Waddell Reef, Santa Cruz County",Surfing (sitting on his board),Jack Wolf,M,51,"No injury, board bitten",False,White shark,"R. Collier, pp.166-167",1999.11.15-JackWolf_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.15-JackWolf_Collier.pdf,1999.11.15,1999.11.15 +2088,13 -Nov-1999,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Surfing,Sean Grenfell,M,35,Lower legs lacerated,False,"White shark, 3 m [10'] ","G. Cliff, NSB",1999.11.13-Grenfell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.13-Grenfell.pdf,1999.11.13,1999.11.13 +2089,06-Nov-1999,Unprovoked,BRAZIL,Rio de Janeiro,"Rio de Janeiro, Guanabara Bay","Spearfishing, but swimming at surface",male,M,39,Upper right thigh bitten,False,1.3 to 1.6 m shark,O. Gadig,1999.11.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.06-Brazilian-diver.pdf,1999.11.06,1999.11.06 +2090,Nov-1999,Unprovoked,MARSHALL ISLANDS,Alinglaplap Atoll,Island J4H,Swimming,Dally Bayo,M,12,Lacerations to leg,False,"Grey reef shark, 1.2 m [4'] ",www.svcherokee.com/pages/ Ailingilaplap.htm,1999.11.00.b-Bayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.b-Bayo.pdf,1999.11.00.b,1999.11.00.b +2091,Nov-1999,Unprovoked,MARSHALL ISLANDS,Alinglaplap Atoll,Island J4H,Swimming, Morson Daniel,M,12,Lacerations to buttocks,False,"Grey reef shark, 1.2 m [4'] ",www.svcherokee.com/pages/ Ailingilaplap.htm,1999.11.00.a-Morson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.11.00.a-Morson.pdf,1999.11.00.a,1999.11.00.a +2092,30-Oct-1999,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Body boarding,Keven Dolsky,M,45,Right foot lacerated,False,"Grey reef shark, 1.2 m [4'] ","S. Petersohn, GSAF",1999.10.30.b-Dolsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.b-Dolsky.pdf,1999.10.30.b,1999.10.30.b +2093,30-Oct-1999,Unprovoked,USA,Florida,"Gulfstream Park beach, Palm Beach County",Body surfing,Troy Jesse,M,13,"Shark bit 8"" chunk from swim fin",False,"Grey reef shark, 1.2 m [4'] ","C. Lambert, Palm Beach Post, 10/31/1999, p.3C",1999.10.30.a-TroyJesse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.30.a-TroyJesse.pdf,1999.10.30.a,1999.10.30.a +2094,20-Oct-1999,Unprovoked,USA,Florida,"Pet Den, Satellite Beach, Brevard County",Surfing,David Hunt,M,13,Lacerations to right hand & wrist,False,"Lemon shark, 2.7 m [9'] ",W. Schauman,1999.10.20-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.20-Hunt.pdf,1999.10.20,1999.10.20 +2095,01-Oct-1999,Unprovoked,USA,Hawaii,Old Kona Airport State Park,"Surfing, lying on surfboard",Jesse Spencer,M,16,Right arm bitten,False,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",Star Bulletin,1999.10.01-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.10.01-Spencer.pdf,1999.10.01,1999.10.01 +2096,29-Sep-1999,Unprovoked,USA,Florida,"South side of Ponce de Leon Inlet, Volusia County",Wading to shore after surfing,Joel A. Borges,M,22,3 one-inch lacerations to sole of right foot,False,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ","S. Petersohn, GSAF",1999.09.29-Borges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.29-Borges.pdf,1999.09.29,1999.09.29 +2097,24-Sep-1999,Boating,ITALY,Adriatic Sea,San Benedetto,Fishing,Boat “Coca Cola”,,22,No Injury to occupants,False,Said to involve a 7 m [23'] white shark,"Orlando Sentinel, 9/28/1999, p.A12",1999.09.24-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.24-boat.pdf,1999.09.24,1999.09.24 +2098,19-Sep-1999,Unprovoked,USA,California,"North of Pidgeon Point, San Mateo County",Kayaking,Tod Wallersheim,M,37,"No injury, but kayak scraped & dented",False,White shark,R. Collier,1999.09.18-Wallersheim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.18-Wallersheim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.18-Wallersheim.pdf,1999.09.18,1999.09.18 +2099,Reported 16-Sep-1999,Unprovoked,USA,Florida,"Cape Canaveral, Brevard County",Wading,Janet Ferguson,F,61,Thigh (posterior) bitten,False,Unidentified,"Evening News (Edinburgh, Scotland)",1999.09.16-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.16-Ferguson.pdf,1999.09.16,1999.09.16 +2100,10-Sep-1999,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Wading,Taylor Warnock,F,10,Toes lacerated,False,Unidentified,"C. Creswell, GSAF",1999.09.10-Warnock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.10-Warnock.pdf,1999.09.10,1999.09.10 +2101,05-Sep-1999,Unprovoked,USA,Florida,"Fort Pierce Inlet, St. Lucie County",Surfing,Mike Sprague,M,13,Right foot bitten,False,1.5 m to 1.8 m [5' to 6'] shark,"Orlando Sentinel, 9/8/1999, p.D3; Allen, p.65",1999.09.05-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.05-Sprague.pdf,1999.09.05,1999.09.05 +2102,04-Sep-1999,Provoked,USA,Florida,"World Typhoon Lagoon, Disney Water Park, Orange County",Wading,Troy Patterson,M,7,Left knee nipped by captive shark PROVOKED INCIDENT,False,0.9 m [3'] shark,"K. Morelli, Tampa Tribune, 9/6/1999",1999.09.04.b-Patterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.b-Patterson.pdf,1999.09.04.b,1999.09.04.b +2103,04-Sep-1999,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Wading with surfboard,Tony Crabtree,M,39,Right foot bitten,False,0.9 m [3'] shark,"S. Petersohn, GSAF; Daytona Beach News Journal, 9/5/1999, p.7B ",1999.09.04.a-Crabtree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.09.04.a-Crabtree.pdf,1999.09.04.a,1999.09.04.a +2104,26-Aug-1999,Unprovoked,USA,Florida,"Bethune Beach, south of New Smyrna Beach, Volusia County",Surfing,Chris Ayers,M,28,3-inch laceration to right foot,False,"""a small shark""","S. Petersohn, GSAF; Orlando Sentinel, 8/27/1999, p.D3; Miami Herald, 8/28/1999",1999.08.26-Ayers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.26-Ayers.pdf,1999.08.26,1999.08.26 +2105,24-Aug-1999,Unprovoked,USA,North Carolina,"Fort Fisher, New Hanover County",Surfing,male,M,28,Foot injured,False,"""a small shark""","Wilmington Star, 8/25/1999, C. Creswell, GSAF",1999.08.24-FortFisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.24-FortFisher.pdf,1999.08.24,1999.08.24 +2106,23-Aug-1999,Unprovoked,MARSHALL ISLANDS,Ralik Chain,Kwajalein Atoll,Fishing,Jeffery Joel,M,23,Lacerations to left leg,False,7' shark,"Kwajalein Hourglass, 8/27/1999",1999.08.23-Joel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.23-Joel.pdf,1999.08.23,1999.08.23 +2107,21-Aug-1999,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,G.C.,M,17,Small lacerations to right foot,False,7' shark,"S. Petersohn, GSAF",1999.08.21-GC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.21-GC.pdf,1999.08.21,1999.08.21 +2108,16-Aug-1999,Unprovoked,USA,South Carolina,"Grand Strand, Myrtle Beach, Horry County",Lying prone in 2' of water,Christopher (Will) Handley,M,10,"Ear lacerated, cuts on scalp, back, arm & shoulder ",False,1.8 m [6'] shark,"Charlotte Observer, 8/18/1999, p.4C; J. Kennedy, ProQuest; Sun News (Myrtle Beach), 8/19/1999; Richmond Times Dispatch, 8/19/1999",1999.08.16-Handley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.16-Handley.pdf,1999.08.16,1999.08.16 +2109,05-Aug-1999,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Charles Adkins,M,62,Right ankle & heel lacerated,False,4' to 5' shark,"S. Petersohn, Orlando Sentinel, 8/6/1999; M.I. Johnson, Daytona Beach News Journal, 8/6/1999, p.3C ",1999.08.05-Adkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-Adkins.pdf,1999.08.05.a,1999.08.05.a +2110,05-Aug-1999,Unprovoked,BAHAMAS,Abaco Islands,Grand Cay,Spearfishing & holding catch,Kevin King,M,35,Right arm bitten,False,2.7 m [9'] bull shark or Caribbean reef shark,"South Florida Sun-Sentinel, 8/7/1999, p.1A; Palm Beach Post, 8/7/1999",1999.08.05-KevinKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.08.05-KevinKing.pdf,1999.08.05,1999.08.05 +2111,29-Jul-1999,Unprovoked,SOUTH AFRICA,Western Cape Province,Kogebaai,Surfing,Sergio Capri,M,42,Right thigh bitten,False,"White shark, 3 m to 5 m [10' to 16.5'] ","A. Gifford, GSAF",1999.07.29-Capri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.29-Capri.pdf,1999.07.29,1999.07.29 +2112,26-Jul-1999,Unprovoked,USA,Florida,"Two miles off Key Colony Beach, Monroe County",Swimming with dolphins,Michael Knowles,M,43,Ankle bitten,False,"Bull shark, 2.1 m [7']","M. Lynch; Miami Herald, 7/28/1999 ",1999.07.26-Knowles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.26-Knowles.pdf,1999.07.26,1999.07.26 +2113,21-Jul-1999,Unprovoked,USA,Hawaii,Honoli'i in Hilo (west side of Big Island),Surfing,Griffith Yamaguchi,M,43,Right thigh & buttock bitten,False,"Tiger shark, 1.8 m to 2.4 m [6' to 8'] ",Star Bulletin,1999.07.21-Yamaguchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.21-Yamaguchi.pdf,1999.07.21,1999.07.21 +2114,15-Jul-1999,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay (near Knysna),Boogie boarding,Hercules Pretorius,M,14,fatal,True,White shark,"A. Gifford, GSAF",1999.07.15-Pretorius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.15-Pretorius.pdf,1999.07.15,1999.07.15 +2115,06-Jul-1999,Unprovoked,USA,South Carolina,Charleston,Boogie boarding,Shannon Morsy,M,14,Five cuts on his heel,False,White shark,Channel 9 News Charlotte,1999.07.06-NV-Morsy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.06-NV-Morsy.pdf,1999.07.06,1999.07.06 +2116,04-Jul-1999,Unprovoked,USA,Florida,"Pensacola Beach, Escambia County",Wading in school of baitfish,Lisa Alexander,F,30,Lacerations knee to ankle,False,"Blacktip shark, 1.8 m [6'] ","Pensacola News Journal, 7/5/1999 ",1999.07.04-LisaAlexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.04-LisaAlexander.pdf,1999.07.04,1999.07.04 +2117,03-Jul-1999,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Cintsa East, East London",Surfing,Colin Grey,M,29,Leg & board bitten,False,"White shark, 4 m [13'] ","A. Gifford, GSAF",1999.07.03-Grey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.07.03-Grey.pdf,1999.07.03,1999.07.03 +2118,19-Jun-1999,Unprovoked,USA,Florida,"11 miles off Dog Island in the Gulf of Mexico, Franklin County",Adrift in a life jacket,Robert Bass,M,20,9-inch gash in left foot ,False,1.2 m [4'] shark,"Orlando Sentinel, 6/21/1999, p.B.3",1999.06.19-Bass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.19-Bass.pdf,1999.06.19,1999.06.19 +2119,17-Jun-1999,Unprovoked,USA,Florida,"South of Ponce Inlet, Volusia County",Surfing,Lucas Bryant,M,21,Right hand and wrist lacerated,False,3' to 4' shark,"S. Petersohn, GSAF",1999.06.17-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.17-Bryant.pdf,1999.06.17,1999.06.17 +2120,12-Jun-1999,Unprovoked,USA,Florida,"Atlantiic Beach, Duval County",Swimming,male,M,41,8-inch bite on calf,False,3' to 4' shark,"Florida Times-Union, 6/13/1999",1999.06.12-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.12-AtlanticBeach.pdf,1999.06.12,1999.06.12 +2121,09-Jun-1999,Unprovoked,USA,Florida,"Atlantic Dunes Park, Delray Beach, Palm Beach County",Splashing / wading,Ryan Welborn,M,5,Knee lacerated,False,Blacktip or spinner shark,"Palm Beach Post, 6/10/1999",1999.06.09-Wellborn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.06.09-Wellborn.pdf,1999.06.09,1999.06.09 +2122,29-May-1999,Unprovoked,AUSTRALIA,South Australia,"Hardwicke Bay, Yorke Peninsula",Windsurfing,Tony Donoghue,M,22,fatal,True,Thought to involve a white shark,J. Morris,1999.05.29-Donoghue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.29-Donoghue.pdf,1999.05.29,1999.05.29 +2123,01-May-1999,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Charles Heitor Barbosa Pires,M,21,Leg & hands bitten,False,"Tiger shark, 2.5 m [8.25']","P.M. Lopez, GSAF; O. Gadig; JC, 5/3/1999",1999.05.01-Pires.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.05.01-Pires.pdf,1999.05.01,1999.05.01 +2124,22-Apr-1999,Unprovoked,MAURITIUS,Grand Baie,Pointe aux Canonniers,Swimming,Sylvia Lanner,F,41,Thigh bitten,False,"Grey reef shark, 1.5 m ",Sylvia Lanner,1999.04.22-Lanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.22-Lanner.pdf,1999.04.22,1999.04.22 +2125,11-Apr-1999,Unprovoked,REUNION,L' Etang Salé-les-Bains,Roche-aux-Oiseaux,Swimming after being swept into sea by a large wave,Guy Oudin,M,52,fatal,True,3 bull sharks,G. Van Grevelynghe,1999.04.11-Oudin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.11-Oudin.pdf,1999.04.11,1999.04.11 +2126,01-Apr-1999,Unprovoked,USA,Florida,"Hobe Sound Beach, Palm Beach County",Surfing,male,M,14,Ankle bitten,False,3 bull sharks,"Palm Beach Post, 4/1/1999",1999.04.01-HobeSoundSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.04.01-HobeSoundSurfer.pdf,1999.04.01,1999.04.01 +2127,Reported 18-Mar-1999 ,Unprovoked,NEW ZEALAND,South Island,Codfish Island (Whenua Hau) west of Stewart Island,Spearfishing & diving for paua,Zane Smith,M,14,No injury,False,"Sevengill shark, 2.4 m [8'] ","Southland Times, 3/18/1999",1999.03.18.R-ZaneSmith-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.R-ZaneSmith-X.pdf,1999.03.18.R,1999.03.18.R +2128,18-Mar-1999,Provoked,BRAZIL,Rio Grande de Norte,Atol das Rochas,Scientific research (Dr. Sonny Gruber's student),Dan Cartamil,M,14,Grabbed small shark & it bit him PROVOKED INCIDENT,False,"Sevengill shark, 2.4 m [8'] ","internet, expedition ",1999.03.18.b-Cartamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.b-Cartamil.pdf,1999.03.18.b,1999.03.18.b +2129,18-Mar-1999,Unprovoked,USA,Hawaii,"Olowalu side of Lahina, Maui ","Swimming, towing a kayak",Navid Davoudabai,F,29,fatal,True,"Sevengill shark, 2.4 m [8'] ","L. Fujimoto; G. Kubota, Star Bulletin",1999.03.18.a-Davoodabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.18.a-Davoodabai.pdf,1999.03.18.a,1999.03.18.a +2130,14-Mar-1999,Unprovoked,NEW CALEDONIA,Loyalty Islands,Ouvea,Spearfishing,Blaise Wouanena,M,29,Multiple injuries,False,200 to 300 kg shark,"W. Leander; Les Nouvelles Caledoniennes, 3/15/1999",1999.03.14.b-Wouanena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.b-Wouanena.pdf,1999.03.14.b,1999.03.14.b +2131,14-Mar-1999,Provoked,NEW ZEALAND,unknown,unknown,Fishing,Mr. Spain,M,28,Right thigh bitten PROVOKED INCIDENT,False,"Mako shark, 1.3 m gaffed ","C. Creswell, GSAF",1999.03.14.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.14.a-Spain.pdf,1999.03.14.a,1999.03.14.a +2132,08-Mar-1999,Unprovoked,USA,Hawaii,"Kealia Beach, Kaua'i",Body surfing or body boarding,Jonathan Allen,M,18,Bruised right leg,False,"Mako shark, 1.3 m gaffed ",G. Balazs,1999.03.08-NV-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.08-NV-Allen.pdf,1999.03.08,1999.03.08 +2133,05-Mar-1999,Unprovoked,USA,Hawaii,"Quarter mile offshore in Kaanapali, West Maui",Swimming near pod of whales,Robyne Knutson,F,29,Tissue removed knee to thigh,False,3.7 m to 4.6 m [12' to 15'] shark seen in the vicinity,"S. Waterman, GSAF; L. Fujimoto; G. Kubota, Star Bulletin",1999.03.05-Knutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.03.05-Knutson.pdf,1999.03.05,1999.03.05 +2134,26-Feb-1999,Boating,USA,North Carolina,Frying Pan Shoals,Cruising," 28' sport fishing boat, Bird Dog",,29,"No injury to occupants, boat sank after colliding with shark",False,Basking shark,"Wilmington Star, 2/26/1999, C. Creswell, GSAF",1999.02.26.R-BirdDog.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.26.R-BirdDog.pdf,1999.02.26.R,1999.02.26.R +2135,23-Feb-1999,Unprovoked,AUSTRALIA,New South Wales,Scotts Head,Surfing,male,M,35,"Left hand & forearm bitten, board bitten",False,Bronze whaler or tiger shark,"Daily Telegraph, 2/24/1999, p.3; Orlando Sentinel, 2/24/1999, p.A10",1999.02.23-ScottsHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.23-ScottsHead.pdf,1999.02.23,1999.02.23 +2136,03-Feb-1999,Unprovoked,USA,Florida,"Hobe Sound, Martin County",Surfing,Kenny Burns,M,25,Left hand bitten,False,Spinner shark,"The Palm Beach Post, 2/5/1999; St. Petersburg Times, 2/6/1999",1999.02.03-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.02.03-KennyBurns.pdf,1999.02.03,1999.02.03 +2137,29-Jan-1999,Unprovoked,MAURITIUS,Belle-Mare,Belle-Mare,Spearfishing,Rajkumar Mansaram,M,47,Legs & torso injured,False,Bull shark,J.M. Langlois,1999.01.29-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.29-Mauritius.pdf,1999.01.29,1999.01.29 +2138, 13-Jan-1999,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Beach,Paddle Skiing,Evan Ridge,M,47,"No Injury, ski bitten",False,"White shark, 4 m [13'] ",The Citizen,1999.01.13-Ridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.13-Ridge.pdf,1999.01.13,1999.01.13 +2139,01-Jan-1999,Boating,NEW ZEALAND,North Island,"Papamoa, near Tauranga, Bay of Plenty",Inflatable boat,"The Dominion, 1/8/1999, p.3I",,47,No injury to occupant: boat lost,False,"White shark, 4 m [13'] ","The Dominion, 1/8/1999, p.3I",1999.01.07-NZ-inflatable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.07-NZ-inflatable.pdf,1999.01.07,1999.01.07 +2140,Reported 03-Jan-1999,Invalid,AUSTRALIA,Northern Territory,Gulf of Carpenteria,Fishing,Donna Turcotte,F,37,"Cut foot, but injury caused by fishing line, not the shark",False,Shark involvement not confirmed,"Sunday Mail, 3/1/1999",1999.01.03.R-Turcotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03.R-Turcotte.pdf,1999.01.03.R,1999.01.03.R +2141,03-Jan-1999,Unprovoked,REUNION,Saint-Leu,Pointe au Sel,Spearfishing,G. Van Grevelynghe,,37,fatal,True,Bull shark,G. Van Grevelynghe,1999.01.03-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.01.03-ReunionIsland.pdf,1999.01.03,1999.01.03 +2142,1999,Unprovoked,SOUTH AFRICA,Western Cape Province,"Hospital Rock, Dyers Island",Spearfishing,Healy Lootz,M,30,Heel lacerated,False,"White shark, 4.6 m [15'] ",V. Van der Merwe,1999.00.00.b-Lootz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.b-Lootz.pdf,1999.00.00.b,1999.00.00.b +2143,1999,Invalid,USA,Virginia,"Sandridge Beach, Virginia Beach, Princess Anne County",Body surfing,male,M,30,Abrasions,False,Shark involvement not confirmed,male,1999.00.00.a-NV-SandridgeBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1999.00.00.a-NV-SandridgeBeach.pdf,1999.00.00.a,1999.00.00.a +2144,24-Dec-1998,Provoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Andy Thompson,M,19,Left foot bitten after he accidentally stepped on the shark PROVOKED INCIDENT ,False,Shark involvement not confirmed,"S. Petersohn, GSAF; Daytona Beach News Journal, 1/1/1999, p.6C; 9",1998.12.24-AndyThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.24-AndyThompson.pdf,1998.12.24,1998.12.24 +2145,22-Dec-1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Standing,Megan O'Leary,F,21,2 puncture wounds in left leg,False,Shark involvement not confirmed,"The Advertiser, 12/23/1998, p.3; Daily Telegraph, 12/23/1998, p.17",1998.12.22-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.22-O'Leary.pdf,1998.12.22,1998.12.22 +2146,Reported 20-Dec-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"King's Beach, Port Elizabeth",Surfing,Greg Harrison,M,18,Leg bitten,False,Possibly a white shark,"G. Cliff, NSB; Sunday Times, 12/20/1998 ",1998.12.20.R-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.20.R-Harrison.pdf,1998.12.20.R,1998.12.20.R +2147,18-Dec-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Splashing,Douw van der Merwe,M,14,Right leg bitten,False,Possibly a white shark,"Sunday Times, 12/20/1998",1998.12.18-vanderMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.18-vanderMerwe.pdf,1998.12.18,1998.12.18 +2148,15-Dec-1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Surfing,"Animal Attack Files, 12/19/1998",F,21,Leg injured,False,Possibly a white shark,"Animal Attack Files, 12/19/1998",1998.12.15-female surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.12.15-female surfer.pdf,1998.12.15,1998.12.15 +2149,21-Nov-1998,Unprovoked,USA,Florida,"Ocean Beach, Jaycee Park, Vero Beach, Indian River County",Swimming,James Willie Tellasmon,M,9,fatal,True,Tiger shark,E. Ritter. GSAF,1998.11.21-Tellasmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.21-Tellasmon.pdf,1998.11.21,1998.11.21 +2150,14-Nov-1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Larry Foor,M,14,Right foot bitten,False,1.2 m [4'] shark,"S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 11/19/1998, p.D1; Daytona Beach News Journal, 11/15/1998, p.4C",1998.11.14-LarryFoor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.14-LarryFoor.pdf,1998.11.14,1998.11.14 +2151,11-Nov-1998,Unprovoked,USA,Florida,"South Beach Park, Indian River County",Walking,male,M,13,Survived,False,"A ""small shark""",press report,1998.11.11-NV-IndianRiverCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.11-NV-IndianRiverCounty.pdf,1998.11.11,1998.11.11 +2152,05-Nov-1998,Unprovoked,USA,Oregon,Winchester Bay,Surfing,Dale Inskeep,M,32,No injury,False,"White shark, 5 m to 6 m [16.5' to 20'] ","R. Collier, pp.165-166",1998.11.05-Inskeep_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.05-Inskeep_Collier.pdf,1998.11.05,1998.11.05 +2153,02-Nov-1998,Provoked,JAPAN,Southern Japan,460 miles off Iwakuni,Fishing for tuna,Tadashi Kodama,M,52,PROVOKED INCIDENT Knee bitten by shark trapped in net,False,6' shark,"Deseret News, 11/3/1998, p.A7",1998.11.02.b-Kodama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.b-Kodama.pdf,1998.11.02.b,1998.11.02.b +2154,02-Nov-1998,Unprovoked,BRAZIL,Pernambuco," Boa Viagem Beach, Recife",Surfing,Claudio Roberto Florencio de Freitas,M,22,fatal,True,Though to involve a white shark,O. Gadig & A. Xureb,1998.11.02.a-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.11.02.a-deFrietas.pdf,1998.11.02.a,1998.11.02.a +2155,24-Oct-1998,Unprovoked,USA,Florida,"Jupiter Beach, Palm Beach County",Swimming,Jessica Stephens,F,17,Minor lacerations on right ankle & foot,False,Though to involve a white shark,"Sun Sentinel. Fort Lauderdale, 10/25/1998, p.3B",1998.10.24-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.24-Stephens.pdf,1998.10.24,1998.10.24 +2156,18-Oct-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Glengariff,Surfing,Liam Victor,M,30,"No injury, surfboard bitten",False,Though to involve a white shark,"East London Daily Dispatch, 10/20/1998",1998.10.18-Victor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.18-Victor.pdf,1998.10.18,1998.10.18 +2157,10-Oct-1998,Unprovoked,USA,Florida,"Sebastian Inlet, Indian River County",Surfing,Jarod Ruszkowski ,M,30,Right hand bitten,False,Though to involve a white shark,"Sarasota Herald-Tribune, 10/13/1998 ",1998.10.10-Ruszkowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.10-Ruszkowski.pdf,1998.10.10,1998.10.10 +2158,04-Oct-1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem Beach, Recife",Surfing,Júlio César de Barros Correia,M,17,Right leg bitten,False,Though to involve a white shark,"Folha de S.Paul, 6/10/1998",1998.10.04-JulioCesarDeBarrosCorreia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.04-JulioCesarDeBarrosCorreia.pdf,1998.10.04,1998.10.04 +2159,01-Oct-1998,Unprovoked,REUNION,Saint-Benoît,Saint-Benoît,Diving,G. Van Grevelynghe,,17,Survived,False,Though to involve a white shark,G. Van Grevelynghe,1998.10.01.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.b-Reunion.pdf,1998.10.01.b,1998.10.01.b +2160,01-Oct-1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Diving,Mike Duncan,M,28,2 one-inch lacerations in left foot,False,Though to involve a white shark,S. Petersohn,1998.10.01.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.10.01.a-Duncan.pdf,1998.10.01.a,1998.10.01.a +2161,27-Sep-1998,Unprovoked,USA,Florida,"The Rocks, Hutchinson Island, Martin County",Surfing,Kai Haire,M,6,Puncture wounds to leg,False,Though to involve a white shark,"The Stuart (FL) News, 9/29/1998",1998.09.27-KaiHaire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.27-KaiHaire.pdf,1998.09.27,1998.09.27 +2162,22-Sep-1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jade Blackstock,M,18,Left arm lacerated,False,Though to involve a white shark,"S. Petersohn, GSAF",1998.09.22-Blackstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.22-Blackstock.pdf,1998.09.22,1998.09.22 +2163,Reported 16-Sep-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kowie River,Fishing / washing bait off hands,Grant Rielly,M,18,Laceration to right foot,False,Though to involve a white shark,"Daily Dispatch, 9/16/1998",1998.09.16.R-Rielly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.16.R-Rielly.pdf,1998.09.16.R,1998.09.16.R +2164,14-Sep-1998,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Danny Hoopes,M,28,Right foot bitten,False,1.8 m [6'] shark,"P. Sheth, Fort Pierce Tribune, 9/15/1998",1998.09.14-DannyHoopes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.14-DannyHoopes.pdf,1998.09.14,1998.09.14 +2165,Sep-1998,Provoked,SENEGAL,Cap Vert Peninsula,Yoff Island,Spearfishing,A.D,M,25,Bitten by harpooned shark PROVOKED INCIDENT,False,1.5 m shark,S. Trape,1998.09.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.09.00-Senegal.pdf,1998.09.00,1998.09.00 +2166,30-Aug-1998,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,J. Howington,M,26,Toes lacerated,False,3' to 4' shark,"S. Petersohn, GSAF",1998.08.30-Howington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.30-Howington.pdf,1998.08.30,1998.08.30 +2167,27-Aug-1998,Invalid,ITALY,Marches region,12 miles off Senigallia (Adriatic Sea),Fishing,30' cabin cruiser owned by Stefano Catalani,,26,"No injury; no attack, shark ate the bait hanging over the side of the boat",False,Invalid,MEDSAF,1998.08.27-Catalani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.27-Catalani.pdf,1998.08.27,1998.08.27 +2168,26-Aug-1998,Unprovoked,USA,California,"Stinson Beach, Marin County",Boogie boarding,Jonathan Kathrein,M,16,"Thigh, buttocks & lower back lacerated",False,"White shark, 5 m to 6 m [16.5' to 20'] ","R. Collier, pp.163-164 ",1998.08.26-Kathrein_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.26-Kathrein_Collier.pdf,1998.08.26,1998.08.26 +2169,Reported 23-Aug-1998,Unprovoked,USA,Virginia,Virginia Beach,Spearfishing,male,M,16,Lacerations to left hand,False,"Dusky shark, 12' ",Dan,1998.08.23.R-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.23.R-VirginiaBeach.pdf,1998.08.23.R,1998.08.23.R +2170,15-Aug-1998,Unprovoked,BAHAMAS,Berry Islands,Ambergris Cay,Spearfishing,Kevin Paffrath,M,28,Calf bitten,False,"Caribbean reef shark, 1.2 m to 1.5 m [4' to 5'] ","E. Ritter, GSAF",1998.08.15-Paffrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.15-Paffrath.pdf,1998.08.15,1998.08.15 +2171,13-Aug-1998,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Body-boarding,Robert Parcus,M,11,Left calf injured,False,4.5' to 5' shark,"A. Buttigieg, GSAF",1998.08.13-Parcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.13-Parcus.pdf,1998.08.13,1998.08.13 +2172,12-Aug-1998,Provoked,SOUTH AFRICA,Transvaal,"National Zoological Gardens Aquarium, Pretoria",Moving a shark in a net ,Kobus Goosen,M,11,Lacerations to right shin PROVOKED INCIDENT,False,"Sandtiger shark, 2 m, male ","Daily Dispatch, 8/13/1998",1998.08.12-Goosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.12-Goosen.pdf,1998.08.12,1998.08.12 +2173,01-Aug-1998,Unprovoked,SOUTH AFRICA,Western Cape Province,"Buffalo Bay, near Knysna",Surfing (or body boarding),Ross Taylor,M,19,Legs bitten,False,"White shark, 4 m [13'] ","Daily Record (Glasgow, Scotland), 8/3/1998",1998.08.01.b-RossTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.b-RossTaylor.pdf,1998.08.01.b,1998.08.01.b +2174,01-Aug-1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Pringle Bay,Spearfishing,Christian Lombard,M,24,Leg bitten,False,"White shark, 4.9 m [16']","Daily Record (Glasgow, Scotland), 8/3/1998",1998.08.01.a-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.08.01.a-Lombard.pdf,1998.08.01.a,1998.08.01.a +2175,26-Jul-1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Rodrigo Rocha Menezes,M,24,Lacerations to left foot,False,"White shark, 4.9 m [16']",JCOnline,1998.07.26-Menezes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.26-Menezes.pdf,1998.07.26,1998.07.26 +2176,25-Jul-1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Rinto,M,13,Calf bitten,False,"White shark, 4.9 m [16']","S. Petersohn, GSAF; Orlando Sentinel, 7/24/1998 & 7/27/1998 ",1998.07.25-Rinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.25-Rinto.pdf,1998.07.25,1998.07.25 +2177,06-Jul-1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Wading,Clark Thomas (father / rescuer),M,47,Right leg bitten,False,"Raggedtooth shark, 1.2 m [4'] ","A. Gifford, GSAF",1998.07.06.b-ClarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.b-ClarkThomas.pdf,1998.07.06.b,1998.07.06.b +2178,11-Jul-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Surfing,Darren James,M,16,Knee bitten,False,5' to 6' shark,"East London Daily Dispatch, 7/13/1998",1998.07.11-DarrenJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.11-DarrenJames.pdf,1998.07.11,1998.07.11 +2179,06-Jul-1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Surfing,Mark Thomas,M,10,Right leg bitten,False,"Raggedtooth shark, 1.2 m [4'] ","A. Gifford, GSAF",1998.07.06.a-MarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.07.06.a-MarkThomas.pdf,1998.07.06.a,1998.07.06.a +2180,28-Jun-1998,Unprovoked,AUSTRALIA,South Australia,South Neptune Island,Free diving for abalone,Doug Chesser,M,26,fatal,True,Thought to involve a 5.5 m white shark named Kong,R.W. Byard,1998.06.28-Chesser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.28-Chesser.pdf,1998.06.28.a,1998.06.28.a +2181,22-Jun-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Gonubie, 13 km northeast of East London",Body Boarding,Anton deVos,M,20,fatal,True,White shark,"A. Gifford, GSAF",1998.06.22-deVos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.22-deVos.pdf,1998.06.22,1998.06.22 +2182,08-Jun-1998,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Brian Catarra,M,18,"2-inch laceration on dorsum of foot, 1-inch laceration on sole.",False,White shark,"S. Petersohn, GSAF",1998.06.08-Catarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.08-Catarra.pdf,1998.06.08,1998.06.08 +2183,05-Jun-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffrey's Bay,Surfing,Danny Bravier,M,18,Survived,False,White shark,"A. Gifford, GSAF",1998.06.05-Bravier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.06.05-Bravier.pdf,1998.06.05,1998.06.05 +2184,30-May-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Pollock Beach,Surfing,Jamie Harrington,M,17,Minor laceration on foot,False,White shark,"A. Gifford, GSAF",1998.05.30-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.30-Harrington.pdf,1998.05.30,1998.05.30 +2185,29-May-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Sardinia Bay near Port Elizabeth,Body boarding,Marc Jucker,M,15,Right shoulder & arm bitten,False,3 m to 4 m [10' to 13'] white shark,"A. Gifford, GSAF",1998.05.29.b-Jucker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.b-Jucker.pdf,1998.05.29.b,1998.05.29.b +2186,29-May-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Body boarding,Jan-Henrick Opperman,M,16,Leg bitten,False,Unidentified,"A. Gifford, GSAF",1998.05.29.a-Opperman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.29.a-Opperman.pdf,1998.05.29.a,1998.05.29.a +2187,25-May-1998,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jack Mounteer,M,40,4 lacerations on the sole of his right foot,False,"Lemon shark, 1.5 m [5'], identified by the surfer","S. Petersohn, GSAF; Orlando Sentinel, 5/26/1998, p.C.3; Daytona Beach News Journal, 5/26/1998, p.2D",1998.05.25-Mounteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.25-Mounteer.pdf,1998.05.25,1998.05.25 +2188,16-May-1998,Unprovoked,USA,Florida,"Pecks Lake, Martin County",Swimming,Janelle Dickinson,F,14,Ankle & foot bitten,False,"1.8 m [6'] shark, possibly a blacktip","The Stuart (FL) News, 5/17/1998",1998.05.16.c-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.c-Dickinson.pdf,1998.05.16.c,1998.05.16.c +2189,16-May-1998,Unprovoked,USA,Florida,"Walden Rocks, St. Lucie County",Swimming / surfing,Roger Moore,M,24,Left arm & wrist lacerated,False,"1.8 m [6'] shark, possibly a blacktip","The Stuart (FL) News, 5/17/1998",1998.05.16.b-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.b-Moore.pdf,1998.05.16.b,1998.05.16.b +2190,16-May-1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Keurbooms,Body boarding,Neal Stephenson,M,22,"Lower legs bitten, foot severed",False,4 m [13'] white shark,"A. Gifford, GSAF",1998.05.16.a-Stephenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.05.16.a-Stephenson.pdf,1998.05.16.a,1998.05.16.a +2191,26-Apr-1998,Unprovoked,MOZAMBIQUE,Gaza,"Bilene Bay, 180 km north of Maputo",Towing rubber dinghy,Wilma van Molendorff,F,35,fatal,True,3 m [10'] shark,"A. Gifford, GSAF",1998.04.26-VonMollendorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.26-VonMollendorf.pdf,1998.04.26,1998.04.26 +2192,21-Apr-1998,Unprovoked,USA,Oregon,Gleneden Beach,Surfing (lying prone on his board),John Forse,M,50,Right thigh bitten,False,5 m [16.5'] white shark,"R. Collier, pp.161-163",1998.04.21-Forse_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.21-Forse_Collier.pdf,1998.04.21,1998.04.21 +2193,17-Apr-1998,Provoked,USA,Florida,"Marathon, Monroe County",Scuba diving,Kevin Morrison,M,16,"He grabbed shark's tail, shark bit his chest & held on. PROVOKED INCIDENT",False,"Nurse shark, 0.9 m [3'] ","CNN; Orlando Sentinel, 4/18/1998, p.D7; Tallahassee Democrat, 4/19/1998",1998.04.17-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.17-Morrison.pdf,1998.04.17,1998.04.17 +2194,01-Apr-1998,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming ,Unidentified,M,16,fatal,True,"Nurse shark, 0.9 m [3'] ","JC, 4/2/1998",1998.04.01-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.01-BoaViagem.pdf,1998.04.01,1998.04.01 +2195,Apr-1998,Unprovoked,NEW CALEDONIA,Île de Sable,Île de Sable,Swimming ,W. Leander,,16,Calf bitten,False,"Nurse shark, 0.9 m [3'] ",W. Leander,1998.04.00-NewCaledonia-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.04.00-NewCaledonia-Fisherman.pdf,1998.04.00,1998.04.00 +2196,31-Mar-1998,Unprovoked,USA,Florida,"Jensen Beach Park, Martin County",Swimming,male,M,40,Heel lacerated,False,"Nurse shark, 0.9 m [3'] ","The Stuart (FL) News, 4/1/1998",1998.03.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.31-JensenBeach.pdf,1998.03.31,1998.03.31 +2197,15-Mar-1998,Unprovoked,SOUTH AFRICA,Western Cape Province,Saldanha Bay,Snorkeling – hunting crayfish and abalone,Kevin Dewey,M,33,Lower leg lacerated,False,3 m [10'] white shark,C. Maxwell,1998.03.15-Dewey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.15-Dewey.pdf,1998.03.15,1998.03.15 +2198,08-Mar-1998,Unprovoked,USA,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming or paddle boarding,Rick Welch,M,32,6 puncture wounds to right calf,False,5' spinner shark,"Jupiter Courier, 3/11/1998",1998.03.08-Welch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.03.08-Welch.pdf,1998.03.08.a,1998.03.08.a +2199,23-Feb-1998,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,Gordon Wilson,M,32,Hands bitten,False,Spinner shark,"Palm Beach Post, 2/24/1998",1998.02.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.02.23-Wilson.pdf,1998.02.23,1998.02.23 +2200,Reported 28-Jan-1998,Invalid,AUSTRALIA,New South Wales,Whale Beach,Spearfishing,male,M,31,"Missing, thought to have been taken by a shark",False,Shark involvement not confirmed,"Daily Telegraph, 1/28/1998.p.2",1998.01.28.R-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.R-spearfisherman.pdf,1998.01.28.R ,1998.01.28.R +2201,Jan-1998,Unprovoked,NEW CALEDONIA,South Province,l'Anse-Vata,Windsurfing,Frederic Marechal,M,31,"No injury, board bumped & fin damaged",False,1.7 m shark,"W. Leander, Les Nouvelles Caledoniennes, 1/301998",1998.01.28.a-Frederic_Marechal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.28.a-Frederic_Marechal.pdf,1998.01.28.a,1998.01.28.a +2202,25-Jan-1998,Unprovoked,REUNION,Grand'Anse,Grand'Anse,Bathing,Philippe Blu,M,31,fatal,True,1.7 m shark,G. Van Grevelynghe,1998.01.25.b-Blu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.b-Blu.pdf,1998.01.25.b,1998.01.25.b +2203,25-Jan-1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,Glenn Vosloo,M,21,Calf & foot lacerated,False,1.7 m shark,"A. Gifford, GSAF",1998.01.25.a-Vosloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.25.a-Vosloo.pdf,1998.01.25.a,1998.01.25.a +2204,17-Jan-1998,Unprovoked,AUSTRALIA,South Australia,Middleton Beach,Surfing,Greg Anderson,M,21,20 punctures in right foot,False,1.7 m shark,"Sunday Mail (QLD), 1/18/1998, p.22; Hobart Mercury, 1/19/1998, p.41",1998.01.17-GregAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.17-GregAnderson.pdf,1998.01.17,1998.01.17 +2205,14-Jan-1998,Unprovoked,MOZAMBIQUE,Maputo Province,Ponta do Ouro,Surfing,Roberto Zornada,M,23,Leg bitten,False,Small dusky shark or blackfin shark,"A. Gifford, GSAF ",1998.01.14-Zornada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.01.14-Zornada.pdf,1998.01.14,1998.01.14 +2206,1998,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Hole-in-the Wall,Surfing,M…,M,28,fatal,True,Small dusky shark or blackfin shark,BL Meel / B. Myatt,1998.00.00.c-Transkei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.c-Transkei.pdf,1998.00.00.c,1998.00.00.c +2207,1998,Unprovoked,REUNION,Beaufonds,Beaufonds,Diving,G. Van Grevelynghe,,28,fatal,True,Small dusky shark or blackfin shark,G. Van Grevelynghe,1998.00.00.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.b-Reunion.pdf,1998.00.00.b,1998.00.00.b +2208,1998 ,Unprovoked,USA,Virginia,"Wreck of the Navy Barge, 22 miles SE of Rudee ",Spearfishing on scuba & transferring fish onto a stringer,male,M,28,Shark grasped diver's gloved hand. Glove was soaked with fish blood & slime,False,sandtiger shark,"J. Musick,",1998.00.00.a-VirginiaBargeSpearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1998.00.00.a-VirginiaBargeSpearfisherman.pdf,1998.00.00.a,1998.00.00.a +2209,28-Dec-1997,Unprovoked,SOUTH AFRICA,Western Cape Province,"Pringle Bay, 44 miles southeast of Cape Town",Spearfishing,Ian James Hill,M,39,fatal,True,White shark,"A. Gifford, GSAF",1997.12.28.b-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.b-Hill.pdf,1997.12.28.b,1997.12.28.b +2210,28-Dec-1997,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. Francis Bay,Sitting on surfboard,Stuart Buchanan,M,39,Calf bitten,False,White shark,"A. Gifford, GSAF",1997.12.28.a-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.28.a-Buchanan.pdf,1997.12.28.a,1997.12.28.a +2211,25-Dec-1997,Invalid,USA,Florida,"Fort Lauderdale, Broward County",Sitting on surfboard,Gerd Olofsson,F,29,"Ankle bitten, but shark involvement unconfirmed",False,Shark involvement not confirmed,"Miami Herald, 12/27/1997",1997.12.25.b-Olofsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.b-Olofsson.pdf,1997.12.25.b,1997.12.25.b +2212,25-Dec-1997,Unprovoked,USA,Florida,"Hollywood Beach, Broward County",Swimming,Samuel Lussier,M,8,Left leg gashed knee to ankle,False,Shark involvement not confirmed,"Orlando Sentinel, 12/27/1997, p.D.3; Globe Newspaper Company",1997.12.25.a-Lussier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.12.25.a-Lussier.pdf,1997.12.25.a,1997.12.25.a +2213,09-Nov-1997,Unprovoked,AUSTRALIA,Western Australia,Albany,Scuba diving (submerged riding a scooter),Kevin Hulkes,M,42,Left arm lacerated when shark grabbed scooter,False,White shark,"Daily Telegraph, 11/12/1997, p.5",1997.11.09-Hulkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.09-Hulkes.pdf,1997.11.09,1997.11.09 +2214,Reported 05-Nov-1997,Unprovoked,USA,Florida,Florida,Swimming,"James Ogilvy, 31st in line for the British Throne",M,32,Thigh bitten,False,White shark,"The Mirror (London), 11/5/1997",1997.11.05.R-Ogilvy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.R-Ogilvy.pdf,1997.11.05.R,1997.11.05.R +2215, 05-Nov-1997,Invalid,AUSTRALIA,New South Wales,Botany Bay?,Unknown,Luke McIntyre,M,21,5 m white shark obsrved feeding on remains 6 days later,False,Shark involvement prior to death suspected but not confirmed,"Courier-Mail, 12/7/1998, p.3",1997.11.05.a-McIntyre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.11.05.a-McIntyre.pdf,1997.11.05,1997.11.05 +2216,28-Oct-1997,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe Beach, Perth",Surf-skiing,Brian Sierakowski & Barney Hanrahan,M,51,"Sierakowski suffered a minor facial injury, ski bitten in half by shark",False,5.5 m [18'] white shark,"Reuters Limited, et al",1997.10.28.b-Sierakowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.b-Sierakowski.pdf,1997.10.28.b,1997.10.28.b +2217,28-Oct-1997,Unprovoked,USA,Hawaii,"Waiokapua Bay/Majors Bay, Brennecke Beach, Poipu, Kaua'i Island",Body boarding or surfing,Mike Coots,M,19,"Both legs bitten, right leg severed at mid-calf & defense wounds on right hand",False,"Tiger shark, 4 m to 4.3 m [13' to 14'] ","Yahoo News Canada, 8/16/2012",1997.10.28.a-Coots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.28.a-Coots.pdf,1997.10.28.a,1997.10.28.a +2218,24-Oct-1997,Unprovoked,USA,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Luis Morales,M,23,"5"" gash in foot",False,Possibly a blacktip shark,"Fort Pierce News, 10/25/1997 & 10/31/1997",1997.10.24-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.24-Morales.pdf,1997.10.24,1997.10.24 +2219,21-Oct-1997,Unprovoked,USA,Florida,"North Jetty, Fort Pierce Inlet State Park, St. Lucie County",Surfing,Jacob McBee,M,12,Left foot bitten,False,1.2 m to 1.5 m [4' to 5'] shark,"Fort Pierce News, 10/24/1997, p.A2",1997.10.21-McBee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.21-McBee.pdf,1997.10.21,1997.10.21 +2220,Reported 11-Oct-1997,Boat,SOUTH AFRICA,Eastern Cape Province,Off Port Alfred,Fishingat,Andre Marais & Tony Jensen,,12,"No injury, hooked shark bit their 4.8 m inflatable boat",False,Soupfin shark,"Daily Dispatch, 10/11/1997",1997.10.11.R-Jensen-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.11.R-Jensen-Marais.pdf,1997.10.11.R,1997.10.11.R +2221,04-Oct-1997,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Tara Stalnaker,F,14,Laceration & 3 puncture wounds to anterior right thigh,False,Soupfin shark,"S. Petersohn, GSAF; Orlando Sentinel, 10/5/1997, p.B.3; J. Bozzo; Daytona Beach News Journal, 10/6/1997, p.3D ",1997.10.04.b-Stalnaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.10.04.b-Stalnaker.pdf,1997.10.04,1997.10.04 +2222,16-Sep-1997,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Pedro Fernandes da Silva,M,20,fatal,True,Soupfin shark,JCOnline,1997.09.16-PedroFernandesDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.16-PedroFernandesDaSilva.pdf,1997.09.16,1997.09.16 +2223,09-Sep-1997,Unprovoked,USA,Florida,Volusia County ,Surfing,G.D.,M,12,Laceration to right foot,False,Soupfin shark,"S. Petersohn, GSAF",1997.09.09-Dietlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.09-Dietlin.pdf,1997.09.09,1997.09.09 +2224,08-Sep-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,,17,2 small lacerations to bottom of foot,False,small blacktip shark,"Daytona News-Journal, 9/9/1997",1997.09.08-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.08-NSB.pdf,1997.09.08,1997.09.08 +2225,06-Sep-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Robert Lange,M,20,Lacerations to lower left leg,False,small blacktip shark,"S. Petersohn, GSAF",1997.09.06-Lange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.09.06-Lange.pdf,1997.09.06,1997.09.06 +2226,30-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Hoyas,M,18,Lacerations on right ankle & heel,False,small blacktip shark,"S. Petersohn, GSAF",1997.08.30-Hoyas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.30-Hoyas.pdf,1997.08.30,1997.08.30 +2227,27-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Walking / surfing,Anthony Aleno,M,22,"2"" laceration on left heel",False,small blacktip shark,"S. Petersohn, GSAF",1997.08.27-Aleno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.27-Aleno.pdf,1997.08.27,1997.08.27 +2228,24-Aug-1997,Unprovoked,USA,California,"Clam Beach, near Eureka, Humboldt County",Surfing (sitting on his board),Scott Yerby,M,29,Leg & hand bitten,False,5 m [16.5'] white shark,"R. Collier, pp.159-160",1997.08.24-Yerby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.24-Yerby_Collier.pdf,1997.08.24,1997.08.24 +2229,14-Aug-1997,Invalid,MEXICO,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mike Jonatis,M,28,fatal,True,Shark involvement prior to death was not confirmed,"Charlotte Observer, 8/22/2997, p.7C & 8C; York Observer, 8/22/1997, p.2Y; UWSports.com",1997.08.14.b-Joniatis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.b-Joniatis.pdf,1997.08.14.b,1997.08.14.b +2230,14-Aug-1997,Unprovoked,MEXICO,Quintana Roo,"Santa Rosa, Cozumel",SCUBA diving,Mac Lupold,M,33,fatal,True,"Tiger shark, 5.2 m [17']","Charlotte Observer, 8/22/2997, p.7C & 8C; York Observer, 8/22/1997, p.2Y; UWSports.com",1997.08.14.a- Lupold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.14.a- Lupold.pdf,1997.08.14.a,1997.08.14.a +2231,11-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Floating on raft,L.B.,F,12,Small lacerations on right lower leg,False,"Tiger shark, 5.2 m [17']","S. Petersohn, GSAF",1997.08.11.c-NV-L.B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.c-NV-L.B.pdf,1997.08.11.c,1997.08.11.c +2232,11-Aug-1997,Unprovoked,EGYPT,Red Sea,Safaga,Fishing,Nagah Attalah Al Sayed ,M,17,Seriously injured,False,"Tiger shark, 5.2 m [17']","Middle East Times, 8/15/1997",1997.08.11.b-ElSayed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.b-ElSayed.pdf,1997.08.11.b,1997.08.11.b +2233,11-Aug-1997,Unprovoked,EGYPT,Red Sea,Safaga,Fishing,Ayman Abul Hassan,M,16,fatal,True,Thought to involve an oceanic whitetip shark or a white shark,"Middle East Times, 8/15/1997",1997.08.11.a-Hassan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.11.a-Hassan.pdf,1997.08.11.a,1997.08.11.a +2234,10-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,N. F.,M,17,Lacerations to foot,False,Thought to involve an oceanic whitetip shark or a white shark,"S. Petersohn, GSAF",1997.08.10-NV-N.F.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.10-NV-N.F.pdf,1997.08.10,1997.08.10 +2235,09-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,17,Lacerations to right foot,False,Thought to involve an oceanic whitetip shark or a white shark,"S. Petersohn, GSAF",1997.08.09-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.09-NV-NewSmyrnaBeach.pdf,1997.08.09,1997.08.09 +2236,05-Aug-1997,Unprovoked,USA,Texas,"East Beach, Galveston",Wading,female,F,10,Wrist & am bitten,False,1 m shark,"Austin American Statesman, 8/7/1997, p.C8",1997.08.05-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.05-Galveston.pdf,1997.08.05,1997.08.05 +2237,04-Aug-1997,Unprovoked,USA,Florida,"Carysfort Lighthouse, Key Largo, Monroe County",Wade-fishing,Pete Swenson,M,10,Left forearm & wrist bitten,False,1.5 m [5'] shark,"Miami Herald, 8/29/1997",1997.08.04-Swenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.04-Swenson.pdf,1997.08.04,1997.08.04 +2238,02-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Body surfing,Rodigo Cesar,M,17,Top of left foot bitten,False,juvenile shark,"S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 8/3/1997, B3",1997.08.02.b-Cesar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.b-Cesar.pdf,1997.08.02.b,1997.08.02.b +2239,02-Aug-1997,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading / Surfing,Matthew Perny,M,19,Top of left foot bitten,False,"""juvenile shark""","S. Petersohn, GSAF; D. Catron, Orlando Sentinel, 8/3/1997, B3",1997.08.02.a-Perny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.08.02.a-Perny.pdf,1997.08.02.a,1997.08.02.a +2240,27-Jul-1997,Unprovoked,AUSTRALIA,Queensland,"Pincushion, north of Maroochydore Beach",Surfing,Neil Davey,M,19,Leg lacerated,False,"""juvenile shark""","Courier-Mail, 7/28/1997, p.5",1997.07.27-Davey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.27-Davey.pdf,1997.07.27,1997.07.27 +2241,21-Jul-1997,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Breezy Point, Ntlonyana",Surfing,Mark Penches,M,25,fatal,True,4.5 m white shark,"A. Gifford, GSAF, G. Cliff, NSB",1997.07.21-Penches.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.21-Penches.pdf,1997.07.21,1997.07.21 +2242,17-Jul-1997,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,José Roberto Paraizo de Albuquerque,M,25,Survived,False,4.5 m white shark,JCOnline,1997.07.17.b-Albuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.17.b-Albuquerque.pdf,1997.07.17,1997.07.17 +2243,14-Jul-1997,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Standing,Flint Cowden,M,50,Left calf bitten,False,Blacktip shark,"Charlotte Observer, 7/17/1997, p.2C; C. Creswell, GSAF",1997.07.14-Cowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.14-Cowden.pdf,1997.07.14,1997.07.14 +2244,12-Jul-1997,Unprovoked,OKINAWA,Miyako,Hirara,Fishing for octopus,Shizuo Nakachi,M,55,fatal,True,White shark,"Okinawa Weekly Times, 7/19/1997 editon; Ryukyu Shrimpo News (Japan)",1997.07.12-Nakachi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.12-Nakachi.pdf,1997.07.12,1997.07.12 +2245, 2-Jul-1997,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jurandir Amorim Silva,,55,Right thigh bitten,False,White shark,"D. Duarte; Globo, 7/2/1997",1997.07.02-Jurandir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.07.02-Jurandir.pdf,1997.07.02.R,1997.07.02.R +2246,24-Jun-1997,Unprovoked,USA,Hawaii,"Sunset Beach, Oahu",Spearfishing / night diving,L. Molina,M,55,Leg bitten just above ankle,False,2.4 m [8'] shark,Hawaii Department of Land and Natural Resources,1997.06.24-Molina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.24-Molina.pdf,1997.06.24,1997.06.24 +2247,15-Jun-1997,Unprovoked,FIJI,Taveuni,Off a small island 5 km from Garden Island Resort,Snorkeling,Liz Rogers,F,47,"Bitten on inner thigh, leg surgically amputated",False,"Tiger shark, 2.7m [9']","R. D. Weeks, GSAF; Otago Daily Times, 6/17/1997, p.2; Sport Diver Magazine, Dec97/Jan98, p.8",1997.06.15-LizRogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.15-LizRogers.pdf,1997.06.15,1997.06.15 +2248,09-Jun-1997,Unprovoked,USA,Florida, Palm Beach County,Surfing,Michael Massey,M,18,Laceration to left upper arm,False,Possibly a spinner shark,"Palm Beach Post, 6/12/1997",1997.06.09-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.09-Massey.pdf,1997.06.09,1997.06.09 +2249,07-Jun-1997,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana, Rio de Janeiro",Bathing,José Luiz Lipiani,M,18,UNKNOWN,UNKNOWN,Possibly a spinner shark,"Globo, 6/9/1997",1997.06.07-NV-Lipiani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.07-NV-Lipiani.pdf,1997.06.07,1997.06.07 +2250,02-Jun-1997,Unprovoked,USA,Florida,"Daytona Beach Shores, Volusia County","Body surfing, stood up on sandbar",Doug Amelio,M,33,4 lacerations above left ankle,False,1.2 m [4'] shark (spinner shark?),"S. Petersohn, GSAF; D. Treen; Florida Times-Union, 6/3/1997; Miami Herald, 6/3/1997",1997.06.02-Amelio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.06.02-Amelio.pdf,1997.06.02,1997.06.02 +2251,31-May-1997,Unprovoked,USA,Florida,In Gulf of Mexico 17 miles off Weeki Wachee ,Spearfishing,Dave Medvec,M,35,Right thigh punctured,False,4' shark,"R. Nelson, St. Petersburg Times, 6/6/1997",1997.05.31.c-Medvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.c-Medvec.pdf,1997.05.31.c,1997.05.31.c +2252,31-May-1997,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Robert Fuller,M,34,Left elbow bitten,False,Possibly a sand shark,"A. Mikula, Daytona Beach News-Journal, 6/1/199, p.2C",1997.05.31.b-Fuller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.b-Fuller.pdf,1997.05.31.b,1997.05.31.b +2253,31-May-1997,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Johnny Bowden,M,12,Left ankle bitten,False,Possibly a sand shark,"A. Mikula, Daytona Beach News-Journal, 6/1/1997, p.2C",1997.05.31.a-Bowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.31.a-Bowden.pdf,1997.05.31.a,1997.05.31.a +2254,26-May-1997,Unprovoked,BAHAMAS,Abaco Islands,Powell Cay,Spearfishing,Wilber Wood,M,54,Right arm bitten,False,Possibly a Caribbean reef shark,"The Mirror (London); Orlando Sentinel, 5/28, 1997, p.C3",1997.05.26-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.26-Wood.pdf,1997.05.26,1997.05.26 +2255,17-May-1997,Unprovoked,BAHAMAS,Abaco Islands,Walkers Cay,Spearfishing,Robert Gunn,M,54,Leg bitten,False,Possibly a Caribbean reef shark,"Miami Herald, 5/18/1997",1997.05.17-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.05.17-Gunn.pdf,1997.05.17,1997.05.17 +2256,20-Apr-1997,Unprovoked,BRAZIL,Rio de Janeiro,"Manguinhos, Ilha Feia, Búzios",Windsurfing,João Pedro Portinari Leão,M,22,Lower left leg & ankle bitten,False,3.7m to 4.2 m white shark,"O. Gadig; Globo, 4/24/1997",1997.04.20-Leao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.04.20-Leao.pdf,1997.04.20,1997.04.20 +2257,28-Feb-1997,Unprovoked,AUSTRALIA,Queensland,"Carrara, Nerang River",Swimming,Joanna Salmon,F,21,Left leg biten,False,a small shark,"The Advertiser, 3/1/1997, p.12",1997.02.28.b-Salmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.b-Salmon.pdf,1997.02.28.b,1997.02.28.b +2258,28-Feb-1997,Unprovoked,AUSTRALIA,Queensland,Whitsunday Passage,Scuba diving,Gerald Rauch,M, 30,Left arm bitten,False,"Tiger shark, 2m to 3m ","The Advertiser, 3/1/1997, p.12",1997.02.28.a-Rauch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.28.a-Rauch.pdf,1997.02.28.a,1997.02.28.a +2259,21-Feb-1997,Unprovoked,USA,Hawaii,"Sunset Beach, O'ahu",Scuba diving,Gersome Perreno,M, 30,No details,UNKNOWN,"Tiger shark, 2m to 3m ",G. Balazs,1997.02.21-NV-Perreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.21-NV-Perreno.pdf,1997.02.21,1997.02.21 +2260,20-Feb-1997,Unprovoked,REUNION,L'Etang-Sale,L'Etang-Sale,Scuba diving,Laurent Lebon,M, 30,Hand injured,False,"Tiger shark, 2m to 3m ","LeQuotidien, 12/4/1999",1997.02.20-Lebon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.20-Lebon.pdf,1997.02.20,1997.02.20 +2261,03-Feb-1997,Boat,AUSTRALIA,New South Wales,"Iron Cove, Sydney",Rowing ,Andree Moscari,F,49,"Bruised, when shark struck scull & catapulted her into the water",False,"Tiger shark, 2m to 3m ","J. Delvecchio & D. Sygall, Sydney Morning Herald, 2/4/1997, p.2",1997.02.03-Mocsari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.02.03-Mocsari.pdf,1997.02.03,1997.02.03 +2262,25-Jan-1997,Unprovoked,AUSTRALIA,Queensland,"Whitehaven Beach, Whitsundays Island",Snorkeling,Derek Burrows,M,27,"Left leg lacerated, punctures to right leg",False,1.8 m to 2.1 m [6' to 7'] shark,"Sunday Mail (QLD), 1/26/1997, p.2; Hobart Mercury, 1/27/1997, p.2",1997.01.25-Burrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.25-Burrows.pdf,1997.01.25,1997.01.25 +2263,20-Jan-1997,Unprovoked,AUSTRALIA,Western Australia,Geraldton,Windsurfing,Werner Schonhofer,M,41,fatal,True,"Tiger shark, 4.5 m [14'9""]","Daily Telegraph, 1/22/1997, p.1; H. Edwards, p.14-15",1997.01.20.a-Schonhofer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.20.a-Schonhofer.pdf,1997.01.20,1997.01.20 +2264,03-Jan-1997,Unprovoked,REUNION,la Pointe-au-Sel,la Pointe-au-Sel,Spearfishing,David Lonne,M,41,fatal,True,Bull shark,"Clicanoo, le journal de l'Ile de la Réunion",1997.01.03-Lonne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.03-Lonne.pdf,1997.01.03.a,1997.01.03.a +2265,01-Jan-1997,Boat,AUSTRALIA,Victoria,"Seal Rocks, Phillip Island",Watching seals,"Inflatable dinghy, occupants: Jasmine Wigley, Greg Wilkie, Phil Rourke & Fleur Anderson",,41,"No injury to occupants, shark bit 2 of the dinghy's 3 floation chambers",False,White shark,"The Advertiser, 1/3/1997, p.7",1997.01.01-Seal-island-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1997.01.01-Seal-island-boat.pdf,1997.01.01,1997.01.01 +2266,29-Dec-1996,Unprovoked,AUSTRALIA,Queensland,Coolum Beach,Surfing,Blair Hall,M,18,UNKNOWN,UNKNOWN,White shark,"The Advertiser, 12/30/1996, p.3",1996.12.29-BlairHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.29-BlairHall.pdf,1996.12.29,1996.12.29 +2267,10-Dec-1996,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Duck Pond, Sardina Bay near Port Elizabeth",Surfing,Steven Cross,M,18,Elbow bitten,False,White shark,"A. Gifford, GSAF",1996.12.10-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.10-Cross.pdf,1996.12.10,1996.12.10 +2268,Dec-1996,Unprovoked,NEW CALEDONIA,unknown,unknown,Spearfishing,Charles Wadra,M,18,fatal,True,White shark,W. Leander,1996.12.00.b-Wadra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.b-Wadra.pdf,1996.12.00.b,1996.12.00.b +2269,Dec-1996,Unprovoked,NEW CALEDONIA,South Province,L'llot Maetre,Attempting to attract dolphins,female,F,18,Hand bitten,False,White shark,W. Leander,1996.12.00.a-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.12.00.a-NewCaledonia.pdf,1996.12.00.a,1996.12.00.a +2270,29-Nov-1996,Unprovoked,USA,California,"Salmon Creek Beach, Sonoma County",Surfing,Greg Ferry,M,45,Single laceration on ankle & board bitten,False,3 m to 5 m [10' to 16.5'] white shark,"R. Collier, p.158",1996.11.29-Ferry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.29-Ferry_Collier.pdf,1996.11.29.a,1996.11.29.a +2271,18-Nov-1996,Unprovoked,USA,Florida,"Coral Cove Park, Palm Beach County",Surfing,Adam Urban ,M,26,Right foot bitten,False,3 m to 5 m [10' to 16.5'] white shark,"Jupiter Courier, 11/20/1996",1996.11.18-Urban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.11.18-Urban.pdf,1996.11.18,1996.11.18 +2272,28-Oct-1996,Unprovoked,BRAZIL,Pernambuco,Barra de Jangada,Surfing,Gilvan Jaime de Freitas Júnior,,26,Leg bitten,False,3 m to 5 m [10' to 16.5'] white shark,D. Duarte,1996.10.28.b-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.b-deFrietas.pdf,1996.10.28.b,1996.10.28.b +2273,28-Oct-1996,Unprovoked,BRAZIL,Pernambuco,Barra de Jangada,Surfing,Luis Henrique Messias,M,26,Survived,False,3 m to 5 m [10' to 16.5'] white shark,JCOnline,1996.10.28.a-Messias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.28.a-Messias.pdf,1996.10.28.a,1996.10.28.a +2274,09-Oct-1996,Unprovoked,OKINAWA,Miyako Island,Boragawa Beach,Swimming or snorkeling,male,M,26,fatal,True,3 m to 5 m [10' to 16.5'] white shark,"Okinawa Weekly Times, 10/14/1996 ",1996.10.09-Okinawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.09-Okinawa.pdf,1996.10.09,1996.10.09 +2275,05-Oct-1996,Unprovoked,USA,California,"Dillon Beach, Marin County",Surfing,Mark Quirt,M,22,Lower leg bitten,False,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.156-157",1996.10.05-Quirt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.05-Quirt_Collier.pdf,1996.10.05.,1996.10.05. +2276,03-Oct-1996,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Aric Hollingsworth,M,21,"4"" laceration on left forearm",False,1.2 m [4'] shark,"Orlando Sentinel, 10/4/1996",1996.10.03.b-Hollingsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.b-Hollingsworth.pdf,1996.10.03.b,1996.10.03.b +2277,03-Oct-1996,Unprovoked,USA,California,"North Salmon Creek Beach, Sonoma County",Surfing,Kennon Cahill,M,31,"No Injury, shark struck his board",False,5 m [16.5'] white shark,R. Collier http://www.sharkresearchcommittee.com/unprovoked_surfer.htm,1996.10.03.a-Cahill_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.03.a-Cahill_Collier.pdf,1996.10.03.a,1996.10.03.a +2278,Oct-1996,Unprovoked,BRAZIL,Pernambuco,Pernambuco,Surfing,Josebias Dias,,31,Survived,False,5 m [16.5'] white shark,D. Duarte,1996.10.00-NV-Josebias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.10.00-NV-Josebias.pdf,1996.10.00,1996.10.00 +2279,18-Sep-1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Robert Gary,M,14,4 or 5 lacerations on left ankle,False,5 m [16.5'] white shark,"S. Petersohn, GSAF; Orlando Sentinel, 9/19/1996, p.D3; Tallahassee Democrat, 9/20/1996",1996.09.18-RobertGary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.18-RobertGary.pdf,1996.09.18,1996.09.18 +2280,06-Sep-1996,Unprovoked,NEW ZEALAND,Chatham Islands ,Waihere Bay,Diving for abalone,Vaughn Hill,M,23,"Back, arms & wrist severely lacerated",False,White shark,"R.D. Weeks, GSAF; Otago Daily Times, 9/7/1996, p.2 +",1996.09.06.b-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.b-Vaughn.pdf,1996.09.06.b,1996.09.06.b +2281,06-Sep-1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing / Swimming,John Perkins,M,19,Small puncture wounds and lacerations on right leg just below knee,False,"""a young shark""","S. Petersohn, GSAF; Orlando Sentinel , 9//7/1996; Daytona Beach News Journal, 9/7/1996, p.4C ",1996.09.06.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.06.a-Perkins.pdf,1996.09.06.a,1996.09.06.a +2282,02-Sep-1996,Unprovoked,USA,Florida,"Behune Beach, Volusia County",Standing,William (or Richard) Schwall,M,5,Right foot bitten,False,"""a young shark""","S. Petersohn, GSAF; Orlando Sentinel , 9//7/1996; Daytona Beach News Journal, 9/7/1999, p.4C",1996.09.02.b-Schwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.b-Schwall.pdf,1996.09.02.b,1996.09.02.b +2283,02-Sep-1996,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Sitting on surfboard,Chris Volz,M,28,Small lacerations on left foot,False,"""a young shark""","S. Petersohn, GSAF; Daytona Beach News Journal, 9/3/1999, pp. 2D & 4D, 9/7/1999, p.4C",1996.09.02.a-Volz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.02.a-Volz.pdf,1996.09.02.a,1996.09.02.a +2284,01-Sep-1996,Invalid,USA,South Carolina,"Garden City Beach, Horry County",Boogie boarding,female,F,28,Minor injuries to foot,False,Shark involvement not confirmed,"The Sun, 9/2/1996",1996.09.01.b-GardenCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.b-GardenCity.pdf,1996.09.01.b,1996.09.01.b +2285,01-Sep-1996,Provoked,SOUTH AFRICA,KwaZulu-Natal,Hibberdene,Spearfishing,Gyula Plaganyi,M,29,No injury PROVOKED INCIDENT,False,White shark,"A. Gifford, GSAF",1996.09.01.a-Plaganyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.09.01.a-Plaganyi.pdf,1996.09.01.a,1996.09.01.a +2286,29-Aug-1996,Unprovoked,USA,Hawaii,"Paukukalo, Maui",Body Boarding,"David Nanod, Jr.",M,19,Right calf bitten,False,"Tiger shark, 2.4 m [8'] ","Allen, p.117",1996.08.29-Nanod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.29-Nanod.pdf,1996.08.29,1996.08.29 +2287,13-Aug-1996,Unprovoked,USA,California,"Bird Rock, Tomales Point",Free diving for abalone,Colum Tinley,M,36,"Left shoulder, forearm, hand & abdomen lacerated",False,6 m [20'] white shark,"R. Collier, pp.154-155 ",1996.08.13-Tinley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.13-Tinley_Collier.pdf,1996.08.13,1996.08.13 +2288,11-Aug-1996,Unprovoked,USA,Florida,"Bayshore Garden, Sarasota Bay, Sarasota County",Wade fishing,Jason King,M,21,"No injury, towed by shark that grabbed stringer of fish tied to his waist",False,1.8 m to 2.1 m [6' to 7'] hammerhead shark,"Bradenton Herald, 8/12/1996, p.L2",1996.08.11-Jason King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.08.11-Jason King.pdf,1996.08.11,1996.08.11 +2289,26-Jul-1996,Unprovoked,USA,Florida,"Wiggins Pass, Collier County",Standing,a German girl,F,8,Survived,False,1.8 m to 2.1 m [6' to 7'] hammerhead shark,Press clipping,1996.07.26-NV-WigginsPass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.26-NV-WigginsPass.pdf,1996.07.26,1996.07.26 +2290,23-Jul-1996,Unprovoked,OKINAWA,Miyako,Hirara City,Swimming,Mr. Moriyoshi Takehara,M,52,fatal,True,5 m [16.5'] white shark,"press clippings ; Okinawa Weekly Times, 10/14/1996 ",1996.07.23.b-Takehara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.b-Takehara.pdf,1996.07.23.b,1996.07.23.b +2291,23-Jul-1996,Unprovoked,EGYPT / ISRAEL,"South Sinai, Gulf of Aqaba","1 km off the mouth of Marsa Bereika, north of Ras Mohammed",Free diving with a pod of dolphins,Martin Christopher Richardson,M,52,"Bitten on back, shoulder & chest",False,said to involve an oceanic whitetip shark,"Daily Telegraph, 7/26/1996, p.15; K. Lavalli & O. Goffman",1996.07.23.a-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.23.a-Richardson.pdf,1996.07.23.a,1996.07.23.a +2292,21-Jul-1996,Unprovoked,USA,Massachusetts,"Truro (Cape Cod), Barnstable County",Swimming,James Orlowski,M,46,Lacerations to left leg & right foot ,False,6' shark,"Associated Press, 7/23/1996",1996.07.21-Orlowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.21-Orlowski.pdf,1996.07.21,1996.07.21 +2293,20-Jul-1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,K.O.,M,9,Laceration to right arm,False,6' shark,"S. Petersohn, GSAF",1996.07.20-K.O.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.20-K.O.pdf,1996.07.20,1996.07.20 +2294,14-Jul-1996,Unprovoked,USA,Hawaii,"Nakalele Point, Maui",Swimming,Trimurti Day,,9,No details,UNKNOWN,6' shark,G. Balazs,1996.07.14-NV-TrimurtiDay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.14-NV-TrimurtiDay.pdf,1996.07.14,1996.07.14 +2295,10-Jul-1996,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Andrew Lewis,M,18,Right foot bitten,False,6' shark,"S. Petersohn, GSAF",1996.07.10-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.10-Lewis.pdf,1996.07.10,1996.07.10 +2296,04-Jul-1996,Unprovoked,USA,Florida,"Public Beach, Siesta Key, Sarasota County",Standing,Carol Diliberto,F,63,Laceration on left foot,False,5' to 6' shark,"G. Nansen; Sarasota Herald-Tribune (FL), 7/5/1996",1996.07.04.b-Dilberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.b-Dilberto.pdf,1996.07.04.b,1996.07.04.b +2297,04-Jul-1996,Unprovoked,BAHAMAS,Cat Cay,Cat Cay,Diving,Michael Beach,M,24,Left leg lacerated,False,5' to 6' shark,"G. Nansen, D. McGee; Miami Herald, 7/5/1996 ",1996.07.04.a-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.07.04.a-Beach.pdf,1996.07.04.a,1996.07.04.a +2298,25-Jun-1996,Unprovoked,USA,South Carolina,"Fripp Island, Beaufort County",Body surfing,Beth Shannon,F,24,"Lacerations to left shin, heel & foot",False,5' to 6' shark,"C. Creswell, GSAF; Macon Telegraph, 6/17/1996",1996.06.25-Shannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.25-Shannon.pdf,1996.06.25,1996.06.25 +2299,06-Jun-1996,Unprovoked,AUSTRALIA,Victoria,"Suicide Point, Point Leo",Surfing,George Lucas,M,24,"No injury, board bitten",False,4 m white shark,"P. Anderson, Herald Sun, 6/8/1996, p.7 ",1996.06.06-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.06-Lucas.pdf,1996.06.06,1996.06.06 +2300,04-Jun-1996,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Surfing,Justin Sanders,M,24,Survived,False,4 m white shark,ZigZag Magazine,1996.06.04-JustinSanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.06.04-JustinSanders.pdf,1996.06.04,1996.06.04 +2301,28-May-1996,Unprovoked,SOUTH AFRICA,Western Cape Province,"The Steps, Wilderness",Surfing,Donovan Köhne,M,17,Leg bitten,False,2.5 m [8.25'] white shark ,"A. Gifford, GSAF",1996.05.28-Kohne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.28-Kohne.pdf,1996.05.28,1996.05.28 +2302,24-May-1996,Invalid,AUSTRALIA,New South Wales,"Wreck of paddle steamer, Koputai, 6 km off Bondi Beach",Tech diving ,Pat Bowring,M,45,fatal,True,Shark involvement prior to death suspected but not confirmed,"Daily Telegraph, 5/29/1996, p.5 & 6/8/1996, p.15; H. Edwards, pp. 9-15",1996.05.24-Bowring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.24-Bowring.pdf,1996.05.24,1996.05.24 +2303,18-May-1996,Unprovoked,USA,Florida,"South of Ponce Inlet, Volusia County",Surfing,Mike Rebel,M,22,Right foot & ankle bitten,False,1.2 m [4'] shark,"S. Petersohn, GSAF; Orlando Sentinel; Daytona Beach News Journal, 5/19/1996, p.1A ",1996.05.18-Rebel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.18-Rebel.pdf,1996.05.18,1996.05.18 +2304,10-May-1996,Unprovoked,SOUTH KOREA,unknown,unknown,Shell Diving,Lee Kwan-seok,M,33,fatal,True,1.2 m [4'] shark,Y. Choi & K. Nakaya,1996.05.10-LeeKwan-seok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.10-LeeKwan-seok.pdf,1996.05.10,1996.05.10 +2305,07-May-1996,Unprovoked,USA,Florida,"Shark Shallows, Ponce Inlet, Volusia County",Surfing,Jimmy Grunewald,M,27,Left foot & leg bitten,False,60 cm to 90 cm [2' to 3'] blacktip or spinner shark,"S. Petersohn, GSAF; G. Nansen; P.LaMee, Orlando Sentinel, 5/8/1996, p.B3; Daytona Beach News Journal, 5/8/1996, p.1D",1996.05.07-Grunewald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.05.07-Grunewald.pdf,1996.05.07,1996.05.07 +2306,28-Apr-1996,Unprovoked,USA,Hawaii,"La'ie Point, O'ahu",Surfing,Wayne Leong,M,27,No details,UNKNOWN,60 cm to 90 cm [2' to 3'] blacktip or spinner shark,G. Balazs,1996.04.28.b-Leong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.28.b-Leong.pdf,1996.04.28.b,1996.04.28.b +2307,25-Apr-1996,Unprovoked,AUSTRALIA,New South Wales,Mona Vale,Swimming,Luke Baker,M,11,Puncture wounds on upper left thigh ,False,Wobbegong shark,"Daily Telegraph, 4/26/1996, p.9",1996.04.25.b-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.b-Baker.pdf,1996.04.25.b,1996.04.25.b +2308,25-Apr-1996,Unprovoked,AUSTRALIA,New South Wales,Mona Vale,Swimming,Aya Hamaea ,F,16,Puncture wounds on leg ,False,Wobbegong shark,"Daily Telegraph, 4/26/1996, p.9",1996.04.25.a-Hamaea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.25.a-Hamaea.pdf,1996.04.25.a,1996.04.25.a +2309,07-Apr-1996,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Marcos Santana Silva,M,16,fatal,True,Wobbegong shark,JCOnline,1996.04.07-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.04.07-Silva.pdf,1996.04.07,1996.04.07 +2310,05-Mar-1996,Unprovoked,AUSTRALIA,Queensland,Heron Island,Swimming breast stoke,Jean Hotchkiss ,F,47,Left arm & leg lacerated,False,Tiger shark,"Advertiser, 3/6/1996, p.9; Daily Mail (London), 3/9/1996 ",1996.03.05-Hotchkiss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.05-Hotchkiss.pdf,1996.03.05,1996.03.05 +2311,Mar-1996,Unprovoked,AUSTRALIA,New South Wales,Lord Howe Island,Fishing in knee-deep water,male,M,7,Left calf bitten,False,1.5 m [5'] shark,"J. Royle, et. al. (1997)",1996.03.00-LordHoweIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.03.00-LordHoweIsland.pdf,1996.03.00,1996.03.00 +2312,26-Feb-1996,Unprovoked,AUSTRALIA,New South Wales,"Charles Street Wharf, Parramatta River",Dived naked into the water on a bet,Darren Good,M,24,Left leg & right testicle bitten,False,Bronze whaler shark,"Daily Telegraph, 2/29/1996, p.5; H. Edwards, pp.31-32",1996.02.26-Good.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.26-Good.pdf,1996.02.26,1996.02.26 +2313,Reported 19-Feb-1996,Provoked,USA,Missouri,St. Louis,Swimming in fish tank,Kathi Peters,F,32,5 punctures to hand from captive shark PROVOKED INCIDENT,False,nurse shark,"Deseret News, 2/19/1996; European Stars and Stripes, 2/20/1996",1996.02.19.R-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.19.R-Peters.pdf,1996.02.19.R,1996.02.19.R +2314,09-Feb-1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,Swimming in fish tank,a father of six,M,32,fatal,True,nurse shark,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.c-PNGfather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.c-PNGfather.pdf,1996.02.10.c,1996.02.10.c +2315,09-Feb-1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,Swimming in fish tank,College student,,32,Thigh,False,nurse shark,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.b-CollegeStuden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.b-CollegeStuden.pdf,1996.02.10.b,1996.02.10.b +2316,09-Feb-1996,Unprovoked,PAPUA NEW GUINEA,Madang Province,Madang,Diving ,schoolboy,,14,fatal,True,nurse shark,"Sunday Mail (QLD), 2/11/1996, p.28",1996.02.10.a-PNGschoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.10.a-PNGschoolboy.pdf,1996.02.10.a,1996.02.10.a +2317,05-Feb-1996,Sea Disaster,DOMINICAN REPUBLIC,12 miles off the north coast,Boeing 757 enroute from Porta Plata,Boeing 757 enroute from Porta Plata plunged into the sea,No survivors. 189 people were lost,,14,fatal,True,nurse shark,Press reports,1996.02.05-aircraftDominican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.05-aircraftDominican.pdf,1996.02.05,1996.02.05 +2318,04-Feb-1996,Unprovoked,AUSTRALIA,New South Wales,"Ned's Beach, Lord Howe Island",Swimming,a South Australian boy,M,7,Ankles injured,False,"""reef shark""","The Advertiser, 2/6/1996, p.2; Daily Telegraph, 2/5/1996, p.9",1996.02.04-boy-7.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.02.04-boy-7.pdf,1996.02.04,1996.02.04 +2319,23-Jan-1996,Provoked,USA,Florida,"Florida Keys, Monroe County",Wading,Christopher Riley,M,33,Shark bit his leg after he grabbed its tail & wouldn't let go PROVOKED INCIDENT,False,"Nurse shark, 0.9 m [3'] ","Miami Herald, 1/25/1996",1996.01.23-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.23-Riley.pdf,1996.01.23,1996.01.23 +2320,22-Jan-1996,Unprovoked,AUSTRALIA,Queensland,"Brown's Inlet, Broadwater",Swimming,Jasmine Cox,F,13,Lacerations to left calf,False,Bronze whaler shark,"Daily Telegraph, 1/23/1996, p.3",1996.01.22-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.22-Cox.pdf,1996.01.22,1996.01.22 +2321,16-Jan-1996,Unprovoked,USA,Hawaii,"Ka’eleki’I Point, Maui",Swimming with mask & snorkel,Robert Rogowicz,M,53,Lacerations to left foot & right shin,False,Possibly a tiger shark,"G. Ambrose, pp.48-53",1996.01.16-Rogowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.16-Rogowicz.pdf,1996.01.16,1996.01.16 +2322,14-Jan-1996,Unprovoked,AUSTRALIA,Western Australia,"Mutton Bird Island, Albany",Swimming with mask & snorkel,Marris,,53,No details,UNKNOWN,Possibly a tiger shark,"T. Peake, GSAF",1996.01.14.b-NV-Marris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.14.b-NV-Marris.pdf,1996.01.14.b,1996.01.14.b +2323,12-Jan-1996,Boating,AUSTRALIA,New South Wales,Eight-mile reef off Port Kembla,Chumming for sharks,"Mini Haa Haar, fiberglass boat, occupants: William Catton, Anthony Green, Tony & Kylie Barnes",,53,"No injury to occupants; shark rammed, bit & sank boat ",False,"Mako shark, 4.3 m [14']","Sunday Mail, 1/14/1996, p.2; A. MacCormick, pp.95-96",1996.01.12-MiniHaaHaar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.12-MiniHaaHaar.pdf,1996.01.12,1996.01.12 +2324,10-Jan-1996,Unprovoked,REUNION,Saint-Paul ,Embouchure de l'étang de Saint Paul,Surfing,Grégory Bénèche,M,25,fatal,True,"Tiger shark, 300-kg [662-lb] ","Clicanoo, le journal de l'Ile de la Réunion",1996.01.10-Beneche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.01.10-Beneche.pdf,1996.01.10,1996.01.10 +2325,1996,Unprovoked,FIJI,Taveuni,Taveuni,Surfing,male,M,25,fatal,True,"Tiger shark, 2.5 m [8.25'] ","R. Weeks, GSAF; Otago Daily Times, 6/18/1997",1996.00.00.b-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.b-Fiji.pdf,1996.00.00.b,1996.00.00.b +2326,1996,Unprovoked,USA,North Carolina,North Carolina,Surfing,male,M,25,Survived,False,Tiger shark,SAF,1996.00.00.a-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1996.00.00.a-NV-NorthCarolina.pdf,1996.00.00.a,1996.00.00.a +2327,18-Dec-1995,Unprovoked,USA,Hawaii,Southwest of O'ahu,Surfing,Carlton Taniyama,M,25,No details,UNKNOWN,Tiger shark,G. Balazs,1995.12.18-NV-Taniyama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.12.18-NV-Taniyama.pdf,1995.12.18,1995.12.18 +2328,11-Nov-1995,Unprovoked,NEW ZEALAND,"Chatham Islands, east of New Zealand","Chatham Islands, east of New Zealand","Diving, gathering shellfish",Kina Scollay,M,22,Leg & chest lacerated,False,5 m [16.5'] white shark,"R.D. Weeks, GSAF",1995.11.29-Scollay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.29-Scollay.pdf,1995.11.29,1995.11.29 +2329,25-Nov-1995,Invalid,USA,Hawaii,"Ha'ena, Kaua'i","Diving, gathering shellfish",Wendall Olanolan,M,22,Minor injury,False,Shark involvement not confirmed,G. Balazs,1995.11.25.b-NV-Olanolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.b-NV-Olanolan.pdf,1995.11.25.b,1995.11.25.b +2330,25-Nov-1995,Unprovoked,NORTHERN ARABIAN SEA,unknown,unknown,Fell off aircraft carrier,"Zacharay Mayo, a U.S. Marine",M,22,"Minor injuries, bites on fingers & toes. Rescued by Pakistani fishermen",False,Shark involvement not confirmed,CNN,1995.11.25.a-Mayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.25.a-Mayo.pdf,1995.11.25.a,1995.11.25.a +2331,17-Nov-1995,Unprovoked,AUSTRALIA,Queensland,Great Keppel Island,Fell off aircraft carrier,Roberto Giordan,M,22,Survived,False,Shark involvement not confirmed,"A. Brenneka, sharkattacksurvivors.com",1995.11.17-Giordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.11.17-Giordan.pdf,1995.11.17,1995.11.17 +2332,Reported 28-Oct-1995,Unprovoked,USA,Florida,Florida,Boogie boarding,Matthew Beyrer,M,13,Lacerations to right foot,False,Shark involvement not confirmed,"Flagler/Palm Coast News Tribune, 10/28/1995",1995.10.28.R-Beyrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.28.R-Beyrer.pdf,1995.10.28.R,1995.10.28.R +2333,21-Oct-1995,Unprovoked,USA,Florida,"North Beach, St. Lucie County",Surfing,John Foley,M,17,Foot bitten,False,Shark involvement not confirmed,"I. Nordemar, Fort Pierce Tribune, 10/25/1995",1995.10.21-Foley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.21-Foley.pdf,1995.10.21,1995.10.21 +2334,11-Oct-1995,Unprovoked,AUSTRALIA,Queensland,"Pialba, Hervey Bay",Playing / standing,Lisa Mott,F,15,Laceration to thigh,False,4 m shark,"Herald Sun, 10/12/1995, p.9",1995.10.11-Mott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.11-Mott.pdf,1995.10.11,1995.10.11 +2335,01-Oct-1995,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Surfing,Stephen Massfeller,M,39,Right arm injured,False,1.2 m to 1.5 m [4' to 5'] shark,"Orlando Sentinel, 10/2/1995, p. C1; Ocala Star Banner, 10/3/1995",1995.10.01-Massfeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.10.01-Massfeller.pdf,1995.10.01,1995.10.01 +2336,30-Sep-1995,Unprovoked,USA,Florida,"Crescent Beach, St. Augustine, St. Johns County",Surfing,Jon Grace,M,14,4 punctures in left foot,False,1.5 to 1.8 m [5' to 6'] shark,"St. Petersburg Times, 10/3/1995",1995.09.30.b-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.b-Grace.pdf,1995.09.30.b,1995.09.30.b +2337,30-Sep-1995,Unprovoked,USA,Florida,"North Beach, Hutchinson Island, St. Lucie County",Surfing,Ryan Evans,M,17,Leg & ankle bitten,False,1.5 to 1.8 m [5' to 6'] shark,"The Palm Beach Post, 10/1/1995",1995.09.30.a-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.30.a-Evans.pdf,1995.09.30.a,1995.09.30.a +2338,28-Sep-1995,Unprovoked,USA,California,"Davenport Landing, Santa Cruz County",Windsurfing,Mike Sullivan,M,25,"Right foot bruised, board bitten",False,4 m [13'] white shark,"R. Collier, pp.153-154",1995.09.28-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.28-Sullivan_Collier.pdf,1995.09.28,1995.09.28 +2339,19-Sep-1995,Unprovoked,USA,Florida,"Matanzas Bay Inlet, St. Johns County",Surfing,Gavin Korth,M,19,Left arm & hand lacerated,False,1.8 m [6'] shark,"Orlando Sentinel, 9/20/1995, p.C.3",1995.09.19-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.19-Korth.pdf,1995.09.19.,1995.09.19. +2340,17-Sep-1995,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jill Varney,F,19,Left elbow and bicep bitten,False,1.8 m [6'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 9/18/1995, p.C.3",1995.09.17-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.17-Varney.pdf,1995.09.17,1995.09.17 +2341,16-Sep-1995,Unprovoked,REUNION,Saint-Denis,Saint-Denis,Body-boarding,Jerome Pruneaux,M,19,fatal,True,1.8 m [6'] shark,"LeQuotidien, 12/4/1999",1995.09.16-Pruneaux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.16-Pruneaux.pdf,1995.09.16,1995.09.16 +2342,13-Sep-1995,Unprovoked,USA,Florida,"Alligator Reef, off Islamorada, Monroe County",Scuba diving,William Covert,M,25,fatal,True,3 m to 3.7 m [10' to 12'] bull shark,"G. Hubbell; J. Castro; Ocala Star-Banner, 9/22/1995; Orlando Sentinel, 9/23/1995, p.D1 +",1995.09.13-Covert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.13-Covert.pdf,1995.09.13,1995.09.13 +2343,11-Sep-1995,Unprovoked,AUSTRALIA,Western Australia,"Honeymoon Island, near Hopetown",Abalone diving using Hookah (near calving whales),David Alan Weir,M,29,fatal,True,White shark,"The Advertiser, 9/13/1995, p.2; H. Edwards, pp.1-8",1995.09.11-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.11-Weir.pdf,1995.09.11,1995.09.11 +2344,03-Sep-1995,Unprovoked,USA,California,"Shelter Cove, Humboldt County",Abalone diving using Hookah (resting on the surface),Brian Hillenburg,M,32,Lower leg bitten,False,3 m to 4 m [10' to 13'] white shark,"R. Collier, pp.151-153",1995.09.03-Hillenburg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03-Hillenburg_Collier.pdf,1995.09.03.b,1995.09.03.b +2345,03-Sep-1995,Invalid,USA,North Carolina,"Bald Head Island, Brunswick County",Swimming,male,M,9,Laceration to lower leg,False,Shark involvement not confirmed,"Wilmington MorningStar, 9/5/1995",1995.09.03.a-BaldHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.09.03.a-BaldHead.pdf,1995.09.03.a,1995.09.03.a +2346,31-Aug-1995,Unprovoked,USA,Florida,"North Beach Inlet, St. Lucie County",Surfing,Jason Cablish,M,19,Left hand & forearm bitten,False,1.2 m to 1.5 m [4' to 5'] shark,"Fort Pierce Tribune, 9/1/1995",1995.08.31.b-Cablish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.b-Cablish.pdf,1995.08.31.b,1995.08.31.b +2347,31-Aug-1995,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",On a float,Robert Hall,M,44,Puncture wounds on ankle & leg,False,1.2 m to 1.5 m [4' to 5'] shark,"The State (Colombia, SA) 9/1/1995; Charlotte Observer, 9/2/1995, p.4C",1995.08.31.a-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.31.a-Hall.pdf,1995.08.31.a,1995.08.31.a +2348,27-Aug-1995,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Aluisio Francisco da Silva Filho,M,44,Survived,False,1.2 m to 1.5 m [4' to 5'] shark,JCOnline,1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.27-AluisioFranciscoDeSilvaFilho.pdf,1995.08.27,1995.08.27 +2349,26-Aug-1995,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Brian Korth,M,16,Left elbow bitten,False,5' shark,"Gainsville Sun, 8/30/1995",1995.08.26.b-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.b-Korth.pdf,1995.08.26/b,1995.08.26/b +2350,26-Aug-1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Dwight Irvin,M,18,4 puncture wounds on right pinky finger,False,"""a small shark""","S. Petersohn, GSAF; C. Lancaster, Orlando Sentinel, 8/27/1995, p.B5; Ocala Star Banner, 8/28/1995",1995.08.26.a-DwightIrvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.26.a-DwightIrvin.pdf,1995.08.26.a,1995.08.26.a +2351,25-Aug-1995,Unprovoked,USA,North Carolina,"Off Masonboro Island, New Hanover County",Swimming,Michael Greenwood,M,16,Left arm bitten,False,1.2 m to 1.5 m [4' to 5'] shark,"Charlotte Observer, 8/27/1995, p.2B",1995.08.25-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.25-Greenwood.pdf,1995.08.25,1995.08.25 +2352,22-Aug-1995,Unprovoked,USA,North Carolina,"Wrightsville Beach, New Hanover County",Swimming ,Scott Hall,M,23,Right foot bitten,False,"""sand"" shark","C. Creswell, GSAF",1995.08.22.b-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.b-Hall.pdf,1995.08.22.c,1995.08.22.c +2353,22-Aug-1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County",Surfing,Jason Barzo,M,19,Bottom of left foot gashed,False,"""small shark""","C. Lancaster, Orlando Sentinel, 8/24/1995, p.D1",1995.08.22.a-Barzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.22.a-Barzo.pdf,1995.08.22.a,1995.08.22.a +2354,21-Aug-1995,Unprovoked,USA,North Carolina,Cape Lookout Bight,Diving,"C. Creswell, GSAF",,19,No injury,False,Two 1.2 m to 1.5 m [4' to 5'] sharks,"C. Creswell, GSAF",1995.08.21-CapeLookoutBight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.21-CapeLookoutBight.pdf,1995.08.21,1995.08.21 +2355,19-Aug-1995,Unprovoked,TONGA,Vava’u,Near Tapana Island,Fishing,Laukau Lile,M,18,Upper left thigh avulsed ,False,"""small shark""","S. Fonea, M.D.",1995.08.19-Lile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.19-Lile.pdf,1995.08.19,1995.08.19 +2356,15-Aug-1995,Unprovoked,USA,Florida,"Daytona Beach, Volusia County ",Wading,James Oatley,M,20,Thigh lacerated,False,1.8 m [6'] shark,"S. Petersohn, GSAF; Bradenton Herald & Ocala Star Banner, 8/17/1995; London Daily Star, 8/19/1995",1995.08.15-Oatley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.15-Oatley.pdf,1995.08.15,1995.08.15 +2357,13-Aug-1995,Invalid,USA,North Carolina,"Emerald Isle, Carteret County",Swimming,Kyle Dickens,M,15,Death resulted fom drowning; tiger shark bites were post-mortem,False,Invalid,"J. L. Almeida, M.D.",1995.08.13.a-Dickens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.13.a-Dickens.pdf,1995.08.13.a,1995.08.13.a +2358,10-Aug-1995,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,male,M,20,Laceration to left heel,False,Invalid,"News-Journal, 8/11/1995",1995.08.10.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.b-PonceInlet.pdf,1995.08.10.b,1995.08.10.b +2359,10-Aug-1995,Unprovoked,USA,South Carolina,"Ocean Lakes Campground, south of Myrtle Beach, Horry County","""Riding waves on a board""",Venus Lindsey ,F,14,Left foot bitten,False,Blacktip shark,"Charlotte Observer, 8/12/1995, p.1C; C . Creswell, GSAF",1995.08.10.a-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.10.a-Venus.pdf,1995.08.10.a,1995.08.10.a +2360,07-Aug-1995,Unprovoked,USA,Florida,"Ponce de Leon Inlet, Volusia County ",Body boarding,Matt Sturgis,M,12,Multiple bites on right leg and knee,False,1.2 m to 1.5 m [4' to 5'] shark,"S. Petersohn, GSAF; Orlando Sentinel, 8/9/1995, p.C.1; Miami Herald, 8/9/1995",1995.08.07-MattSturgis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.07-MattSturgis.pdf,1995.08.07,1995.08.07 +2361,01-Aug-1995,Invalid,TONGA,Vava’u,Neiafu,Fishing,Jim McManus,M,12,Finger broken when 1.8 m [6'] hooked grey reef shark grabbed his catch,False,Invalid,"J. McManus, M. Levine, GSAF",1995.08.01-McManus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.01-McManus.pdf,1995.08.01,1995.08.01 +2362,Aug-1995,Invalid,USA,California,"Carmel, Monterey County",Diving,Marco Carme,M,12,Torso bitten by 4 m [13'] white shark,False,Invalid,"Reported in Oct issue of Diver magazine, possibly confused with Marco Flagg incident",1995.08.00-Carme.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.08.00-Carme.pdf,1995.08.00,1995.08.00 +2363,28-Jul-1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,12,Left foot bitten,False,Invalid,"P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.e-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.e-male-surfer.pdf,1995.07.28.e,1995.07.28.e +2364,28-Jul-1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,male,M,12,Minor laceration on lower leg,False,Invalid,"C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.d-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.d-male-surfer.pdf,1995.07.28.d,1995.07.28.d +2365,28-Jul-1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Patrick Moore,M,18,Laceration to heel,False,Invalid,"S. Petersohn, GSAF; C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.c-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.c-Moore.pdf,1995.07.28.c,1995.07.28.c +2366,28-Jul-1995,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Eric Kozak,M,18,2-inch laceration to lower right leg ,False,Invalid,"S. Petersohn, GSAF; C. Lancaster & M. Losey, Orlando Sentinel, 7/29/1995, p.A1; P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.28.b-Kozak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.b-Kozak.pdf,1995.07.28.b,1995.07.28.b +2367,28-Jul-1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",Standing,male,M,12,Hand bitten (minor injury),False,Invalid,"C. Creswell, GSAF",1995.07.28.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.28.a-boy.pdf,1995.07.28.a,1995.07.28.a +2368,24-Jul-1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",Swimming,female,F,7,Right foot bitten,False,Invalid,"Charlotte Observer, 7/29/1995, p.3C",1995.07.24.a-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.24.a-PawleysIsland.pdf,1995.07.24,1995.07.24 +2369,23-Jul-1995,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Body boarding,male,M,47,Foot bitten,False,Invalid,"P. LaMee, Orlando Sentinel, 8/12/1995, p.D.1",1995.07.23-NSB-bodyboarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.23-NSB-bodyboarder.pdf,1995.07.23,1995.07.23 +2370,07-Jul-1995,Unprovoked,BRAZIL,Pernambuco,Candeias,Surfing,Clélio Rosendo Falcão Filho,M,18,fatal,True,Invalid,JCOnline,1995.07.07-Filhol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.07-Filhol.pdf,1995.07.07,1995.07.07 +2371,08-Nov-1984,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie River Mouth,Surfing,Wayne Monk ,M,14,Wetsuit lacerated,False,Invalid,"W. Monk, M. Levine, GSAF",1984.11.08-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.08-Monk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.08-Monk.pdf,1984.11.08,1984.11.08 +2372,06-Jul-1995,Unprovoked,USA,Texas,Port Aransas,Surfing,Mark George,M,34,Foot bitten,False,Invalid,"Associated Press, 7/8/1995",1995.07.06-MarkGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.06-MarkGeorge.pdf,1995.07.06,1995.07.06 +2373,03-Jul-1995,Provoked,USA,Mississippi,"Cat Island, Harrison County",Fishing,Cheryl Lowman,F,32,Minor laceration to leg from a hooked shark PROVOKED INCIDENT,False,Blacktip shark,"Sun Herald, 7/4/1995",1995.07.03-Lowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.03-Lowman.pdf,1995.07.03,1995.07.03 +2374,Early Jul-1995,Provoked,USA,South Carolina,"Off 29th Avenue, Myrtle Beach, Horry County",Jumped off surfboard & landed on the shark,Roberto Perez,M,32,Foot bitten PROVOKED INCIDENT,False,Blacktip shark,"Aiken Standard, 8/12/1995",1995.07.00-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.07.00-Perez.pdf,1995.07.00,1995.07.00 +2375,30-Jun-1995,Unprovoked,USA,California,"Bluefish Cove, Pt. Lobos State Park, Monterey County",Scuba diving (ascending using scooter),Marco Flagg,M,31,"Forearm, abdomen & upper leg lacerated",False,6 m [20'] white shark,"R. Collier, pp.149-151 ",1995.06.30-MarcoFlagg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.30-MarcoFlagg_Collier.pdf,1995.06.30,1995.06.30 +2376,24-Jun-1995,Unprovoked,USA,California,"LaJolla Shores, San Diego County",Kayaking,female,F,31,Minor injuries,False,White shark (tooth fragment recovered),"R. Collier, pp.148-149 ",1995.06.24-LaJolla_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.24-LaJolla_Collier.pdf,1995.06.24,1995.06.24 +2377,23-Jun-1995,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Playing / jumping,Joshua Bradley,M,13,Ankle bitten,False,"""sand"" shark","C. Creswell, GSAF",1995.06.23-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.23-Bradley.pdf,1995.06.23,1995.06.23 +2378,17-Jun-1995,Unprovoked,USA,South Carolina,"Garden City Beach, Horry County",Surfing,Jim Whitney,M,13,Foot bitten,False,"""sand"" shark","C. Creswell, GSAF; Charlotte Observer, 8/12/1995",1995.06.17.b-Whitney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.b-Whitney.pdf,1995.06.17.b,1995.06.17.b +2379,17-Jun-1995,Unprovoked,USA,Florida,"Jensen Beach Park, Martin County",Swimming,Paul Lucas,M,45,Right leg bitten,False,1.8 m [6'] shark,"Orlando Sentinel, 6/19/1995, p.B3; Fort Pierce Tribune, 6/19/1995; The Palm Beach Post - June 18, 1995 ",1995.06.17.a-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.17.a-Lucas.pdf,1995.06.17.a,1995.06.17.a +2380,16-Jun-1995,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Swimming,Amber Delmans,F,10,Leg bitten,False,6' shark,"Orlando Sentinel, 6/19/1995, p.B3; Fort Pierce Tribune, 6/19/1995",1995.06.16-Delmans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.16-Delmans.pdf,1995.06.16,1995.06.16 +2381,14-Jun-1995,Unprovoked,USA,Hawaii,"Opposite Grand Wailea Resort, Wailea, Maui",Swimming,Donald Bloom,M,38,Puncture wounds & scratches to torso & left leg ,False,"Tiger shark, 3.7 m [12'] ","G. Ambrose, pp.41-47",1995.06.14-Bloom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.14-Bloom.pdf,1995.06.14,1995.06.14 +2382,13-Jun-1995,Unprovoked,HONG KONG,Clearwater Bay,First Beach,Swimming,Wong Kwai-yung,F,45,fatal,True,Though to involve a tiger shark,"J. Wong & R.D. Weeks, GSAF; Daily Telegraph Mirror, 6/14/1995, p.42",1995.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.13-HongKong.pdf,1995.06.13,1995.06.13 +2383,02-Jun-1995,Unprovoked,HONG KONG,New Territories,Sheung Sze Wan Beach,Swimming,Herman Lo Cheuk-Yuet,M,29,fatal,True,1.8 m to 2.1 m [6' to 7'] shark,"J. Wong, GSAF; Daily Telegraph Mirror, 6/14/1995, p.42 ",1995.06.02-Herman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.06.02-Herman.pdf,1995.06.02,1995.06.02 +2384,31-May-1995,Unprovoked,HONG KONG,New Territories,Sai Kung Beach,Diving,Tso Kam-Sun,,44,fatal,True,1.8 m to 2.1 m [6' to 7'] shark,"J. Wong, GSAF; Daily Telegraph Mirror, 6/3/1995; ",1995.05.31-Tso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.31-Tso.pdf,1995.05.31,1995.05.31 +2385,26-May-1995,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Surfing,Brent Enck,M,15,Left foot bitten,False,Possibly a bull shark,"Fort Pierce Tribune, 5/31/1995",1995.05.26-Enck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.26-Enck.pdf,1995.05.26,1995.05.26 +2386,24-May-1995,Unprovoked,FIJI,Yasawa Islands,Waya Island,Sleeping in anchored boat,Kinijioji Vindovi,M,69,fatal,True,3.7 m [12'] shark,"Another report of the same or similar incident states that a 15' shark leapt into a boat, injuring all 4 people on board",1995.05.24-Vindovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.24-Vindovi.pdf,1995.05.24,1995.05.24 +2387,18-May-1995,Unprovoked,AUSTRALIA,Western Australia,"Bernier Island, Shark Bay",Sleeping in anchored boat,Hutchins,,69,No details,UNKNOWN,3.7 m [12'] shark,"T. Peake, GSAF",1995.05.18-NV-Hutchins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.18-NV-Hutchins.pdf,1995.05.18,1995.05.18 +2388,12-May-1995,Unprovoked,SOUTH KOREA,Jangkodo Island,Jangkodo Island,Diving for abalone,Kim Sun-sim,F,44,fatal,True,4 m shark,Y. Choi & K. Nakaya,1995.05.12-Sun-Shim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.05.12-Sun-Shim.pdf,1995.05.12,1995.05.12 +2389,16-Apr-1995,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",Diving for abalone,C.M.,M,12,"Dorsum of right hand bitten, a probable bluefish bite",False,Invalid,"S. Petersohn, GSAF",1995.04.16-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.16-CM.pdf,1995.04.16,1995.04.16 +2390,13-Apr-1995,Unprovoked,USA,Florida,"Ormond Beach, Volusia County",Diving for abalone,Mark Degraff,M,20,Puncture wounds on right foot,False,Invalid,"S. Petersohn, GSAF",1995.04.13-NV-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.13-NV-OrmondBeach.pdf,1995.04.13,1995.04.13 +2391,09-Apr-1995,Unprovoked,AUSTRALIA,New South Wales,"Honeysuckle Point, Eden",Diving,David Malone,M,20,"No injury, shark took swimfin",False,Wobbegong shark,"Daily Telegraph 55/9/1996, p.7",1995.04.09.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.b-Malone.pdf,1995.04.09.b,1995.04.09.b +2392,09-Apr-1995,Unprovoked,JAPAN,Aichi Prefecture,Atsumi Peninsula,Scuba diving for bivalves,Shintaro Hara,M,47,fatal,True,6 m [20'] white shark,K. Nakaya,1995.04.09.a-Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.04.09.a-Hara.pdf,1995.04.09.a,1995.04.09.a +2393,21-Mar-1995,Unprovoked,AUSTRALIA,New South Wales,"Clark Island, Sydney Harbour",Surf skiing,Mary Meagher,F,47,"No injury, knocked off board by shark",False,6 m [20'] white shark,"Deseret News, 3/24/1995 ",1995.03.21-Meagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.21-Meagher.pdf,1995.03.21,1995.03.21 +2394,11-Mar-1995,Unprovoked,AUSTRALIA,South Australia,Cactus Beach,Surfing,Andy McBain,M,35,Left arm lacerated,False,"Bronze whaler shark, 2 m ","Advertiser, 3/13/1995, p.1 & 7/22/1995, p.13",1995.03.11-McBain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.11-McBain.pdf,1995.03.11,1995.03.11 +2395,05-Mar-1995,Unprovoked,BRAZIL,Maranhão,"Praia do Olho D'Água, São Luis",Swimming,E.S.,,35,fatal,True,"Bronze whaler shark, 2 m ",M. Szpilman,1995.03.05-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.03.05-Brazil.pdf,1995.03.05,1995.03.05 +2396,19-Feb-1995,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kidd’s Beach,Swimming,Johan Deetlefs,M,22,Lacerations to lower leg & foot,False,Raggedtooth shark,"A. Gifford, GSAF ",1995.02.19-Deetlefs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.19-Deetlefs.pdf,1995.02.19,1995.02.19 +2397,Feb-1995,Unprovoked,VENEZUELA,unknown,unknown,Wind surfing,Justin James,M,22,Right ankle & foot bitten,False,Raggedtooth shark,"A. Brenneka, sharkattacksurvivors.com",1995.02.00-JustinJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.02.00-JustinJames.pdf,1995.02.00,1995.02.00 +2398,24-Jan-1995,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Swimming,Mthokozisi Cedrick Mpanza,M,14,fatal,True,"Tiger shark, 1.8 m [6'] ","A. Gifford, GSAF",1995.01.24-Mpanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.24-Mpanza.pdf,1995.01.24,1995.01.24 +2399,02-Jan-1995,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Humberto Moraes de Souza,M,17,Foot bitten,False, ,"San Jose Mercury News, 1/6/1995, p.12A",1995.01.02-H.de-SouzaMoraes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.01.02-H.de-SouzaMoraes.pdf,1995.01.02,1995.01.02 +2400,1995,Invalid,SOUTH AFRICA,unknown,unknown,Diving,Karl Sacks,M,33,Reportedly lost lower right leg as result of shark bite,False,Shark involvement not confirmed,"S. Hughes, Daily Star (UK), 6/10/2010",1995.00.00.e-Sacks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.e-Sacks.pdf,1995.00.00.e,1995.00.00.e +2401,1995,Provoked,AUSTRALIA,Queensland,Gladstone Reef,Snorkeling,male,M,33,"No injury, grabbed byshark after he pulled its tail PROVOKED INCIDENT",False,Leopard shark,"Shark-L, 9/13/1996",1995.00.00.d-Gladstone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.d-Gladstone.pdf,1995.00.00.d,1995.00.00.d +2402,1995,Invalid,USA,North Carolina,Carolina Beach,Scuba diving,Nunley,M,33,Death resulted fom drowning; shark bites were post-mortem,False,Invalid,"C. Creswell, GSAF",1995.00.00.c-Nunley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.c-Nunley.pdf,1995.00.00.c,1995.00.00.c +2403,1995,Unprovoked,USA,South Carolina,"Pawleys Island, Georgetown County",Scuba diving,male,M,33,No details,UNKNOWN,Invalid,"C. Creswell, GSAF; ISAF 2793",1995.00.00.b-NV-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1995.00.00.b-NV-PawleysIsland.pdf,1995.00.00.b,1995.00.00.b +2404,30-Dec-1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Body boarding,Fritz Van Zyl,M,26,"No injury, board bitten",False,5.5 m [18'] white shark,"M. Levine, GSAF; M. Marks",1994.12.30-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.30-VanZyl.pdf,1994.12.30,1994.12.30 +2405,18-Dec-1994,Unprovoked,USA,Hawaii,"Kinikini, Mana, Kaua'i","Surfing, sitting on board",Anonymous,,26,"No injury, shark bit surfboard",False,5.5 m [18'] white shark,Hawaii Department of Land and Natural Resources,1994.12.18-Kaui-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.18-Kaui-surfer.pdf,1994.12.18,1994.12.18 +2406,13-Dec-1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Tiago Costa de Lima,M,26,Survived,False,5.5 m [18'] white shark,JCOnline; M. Szpilman,1994.12.13-TiagoCostaDaLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.13-TiagoCostaDaLima.pdf,1994.12.13,1994.12.13 +2407,11-Dec-1994,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Jorge de Oliveira Andrade,M,26,Right thigh bitten,False,5.5 m [18'] white shark,D. Duarte,1994.12.11-JorgeDeOliveiraAndrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.11-JorgeDeOliveiraAndrade.pdf,1994.12.11,1994.12.11 +2408,Reported 10-Dec-1994 ,Unprovoked,VANUATU,Tafea Province,Aniwa Island,Surfing,"Vanuatu Weekly Hebdomadaire, 12/10/1994, p.6",,26,No details,UNKNOWN,5.5 m [18'] white shark,"Vanuatu Weekly Hebdomadaire, 12/10/1994, p.6",1994.12.10-NV-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.10-NV-Vanuatu.pdf,1994.12.10,1994.12.10 +2409,09-Dec-1994,Invalid,AUSTRALIA,Queensland,"Hinchinbrook Channel, Queensland",Murder victim,Peter Saibura,M,44,Shark scavenged on his corpse,False,Invalid,"Courier Mail, 3/30/1995",1994.12.09.b-Saibura-murder victim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.b-Saibura-murder victim.pdf,1994.12.09.b,1994.12.09.b +2410,09-Dec-1994,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Commercial diver (submerged or treading water),James Robinson,M,42,fatal,True,5 m to 5.5 m [16.5' to 18'] white shark,"R. Collier, pp.147-148; Orlando Sentinel, 12/10/1994, p.A3",1994.12.09.a-Robinson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.09.a-Robinson_Collier.pdf,1994.12.09.a,1994.12.09.a +2411,01-Dec-1994,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,Laudenilson Gomes de Lima,M,42,fatal,True,5 m to 5.5 m [16.5' to 18'] white shark," San Jose Mercury News, 1/6/1995, p.12A ",1994.12.01-LaudenilsonGomesDeLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.12.01-LaudenilsonGomesDeLima.pdf,1994.12.01,1994.12.01 +2412,25-Nov-1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Spearfishing,Anton Bosman,M,42,No injury,False,"Raggedtooth shark, 2.7 m [9'] ","A. Gifford, GSAF",1994.11.25-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.25-Bosman.pdf,1994.11.25.a,1994.11.25.a +2413,13-Nov-1994,Unprovoked,USA,Hawaii,"Off the Hanalei River, Kaua'i","Surfing, paddling seawards",Kathleen McCarthy Lunn ,F,34,Right thigh & board bitten,False,2.7 m [9'] shark,"G. Balazs; G. Ambrose, pp.24-29",1994.11.13-Lunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.13-Lunn.pdf,1994.11.13,1994.11.13 +2414,06-Nov-1994,Unprovoked,USA,Hawaii,"Kealia Beach, Kaua'i",Surfing,C. Stokes,,34,"No injury, shark bit surfboard",False,2.7 m [9'] shark,Hawaii Department of Land and Natural Resources,1994.11.06.a-Stokes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.11.06.a-Stokes.pdf,1994.11.06.a,1994.11.06.a +2415,18-Oct-1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Unidentified,,34,Survived,False,2.7 m [9'] shark,JCOnline,1994.10.18-Piedade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.18-Piedade.pdf,1994.10.18,1994.10.18 +2416,17-Oct-1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Surfing,Ednaldo Jose da Silva,M,34,Survived,False,2.7 m [9'] shark,JCOnline,1994.10.17-EdnaldoJoseDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.17-EdnaldoJoseDaSilva.pdf,1994.10.17,1994.10.17 +2417,09-Oct-1994,Provoked,USA,Florida,"Bill Baggs Cape Florida State Recreation Area, Miami-Dade County",Wading,Mariel Parker ,F,9,Ankle bitten when she accidently stepped on the shark PROVOKED INCIDENT,False,Thought to involve a small sand shark,"Miami Herald, 10/9/1994",1994.10.08-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.08-Parker.pdf,1994.10.08,1994.10.08 +2418,05-Oct-1994,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Scott Dulmage,M,16,Foot bitten,False,Thought to involve a small sand shark,"Orlando Sentinel, 10/5/1994, p.B3",1994.10.05-ScottDulmage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.10.05-ScottDulmage.pdf,1994.10.05,1994.10.05 +2419,26-Sep-1994,Unprovoked,USA,South Carolina,"North Forest Beach, near Hilton Head, Beaufort County",Swimming,Lioubov Kozarinova,F,30,Right side of abdomen & left hand bitten,False,Thought to involve a small sand shark,"Atlanta Journal-Constitution, 9/27/1994; Charlotte Observer, 9/27/1994, p.1C",1994.09.26-Kozarinova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.26-Kozarinova.pdf,1994.09.26,1994.09.26 +2420,21-Sep-1994,Unprovoked,USA,Oregon,"Short Sand Beach, Oswald West State Park",Surfing,Rob MacKenzie,M,43,"No injury, surfboard bitten",False,5 m [16.5'] white shark,R. Collier+M2079,1994.09.21-MacKenzie_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.21-MacKenzie_Collier.pdf,1994.09.21,1994.09.21 +2421,Reported 11-Sep-1994,Sea Disaster,USA,Florida,Florida Straits,Adrift on refugee raft,2 Cuban brothers,M,7 & 31,fatal,True,5 m [16.5'] white shark,"Sunday Herald Sun, 9/11/1994, p.25",1994.09.11.R-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.11.R-CubanRefugees.pdf,1994.09.11.R,1994.09.11.R +2422,05-Sep-1994,Unprovoked,USA,Hawaii,Makaha Surf Beach,Jumped off rocks into white water,Rose Ann Savea,F,12,Left calf bitten,False,Small shark,Dr. P. Bjorkman,1994.09.05-RoseAnnSavea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.09.05-RoseAnnSavea.pdf,1994.09.05,1994.09.05 +2423,22-Aug-1994,Unprovoked,JAPAN,Kagoshima Prefecture,Tatsugo-cho,Jumped off rocks into white water,Nagisa Yasuhara,,12,Survived,False,Small shark,K. Nakaya,1994.08.22-Yashuhara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.08.22-Yashuhara.pdf,1994.08.22,1994.08.22 +2424,24-Jul-1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Carlos Frederico Gomes Martins,M,15,Left foot severed,False,Small shark,C.F.G. Martins; JCOnline,1994.07.24-Carlos_Martins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.24-Carlos_Martins.pdf,1994.07.24,1994.07.24 +2425,09-Jul-1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Alessandro Gomes de Souza,M,15,fatal,True,Small shark,JCOnline,1994.07.09.d-AlessandroGomesDeSouza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.d-AlessandroGomesDeSouza.pdf,1994.07.09.d,1994.07.09.d +2426,09-Jul-1994,Unprovoked,REUNION,Saint-Denis,Barachois,Windsurfing,Thierry Boulay,M,24,fatal,True,3 to 3.5 m [10' to 11.5'] bull shark,G. Van Grevelynghe,1994.07.09.c-Boulay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.c-Boulay.pdf,1994.07.09.c,1994.07.09.c +2427,09-Jul-1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Bruce Corby,M,22,fatal,True,4 m [13'] white shark,"A Gifford, GSAF",1994.07.09.b-Corby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.b-Corby.pdf,1994.07.09.b,1994.07.09.b +2428,09-Jul-1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Surfing,Andrew Carter,M,31,Buttock & leg bitten,False,4 m [13'] white shark,"A. Gifford, GSAF",1994.07.09.a-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.09.a-Carter.pdf,1994.07.09.a,1994.07.09.a +2429,08-Jul-1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Sandro Paulo dos Santos,M,31,Survived,False,4 m [13'] white shark,JCOnline,1994.07.08.b-SandroPaulosDosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.b-SandroPaulosDosSantos.pdf,1994.07.08.b,1994.07.08.b +2430,08-Jul-1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Michael Post ,M,15,Right calf lacerated,False,"""small shark""","P. LaMee, Orlando Sentinel, 9/4/1995, p. D3",1994.07.08.a-MichaelPost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.07.08.a-MichaelPost.pdf,1994.07.08.a,1994.07.08.a +2431,24-Jun-1994,Unprovoked,BAHAMAS,Grand Bahama Island,Freeport,Spearfishing,Alton Curtis,M,30,Forearm severely bitten,False,1.8 m [6'] shark,"Miami Herald, 7/9/1994",1994.06.24-Curtis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.06.24-Curtis.pdf,1994.06.24,1994.06.24 +2432,31-May-1994,Unprovoked,USA,Florida,"Ponce Inlet, Volusia County",Surfing,Steve Polack,M,24,Foot lacerated,False,1.8 m [6'] shark,"C. Lancaster, Orlando Sentinel, 6/1/1994, p.C1",1994.05.31.b-Polack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.b-Polack.pdf,1994.05.31.b,1994.05.31.b +2433,31-May-1994,Unprovoked,USA,Florida," Daytona Beach, Volusia County",Surfing,Alex Reeber,M, 28,Right foot lacerated,False,1.2 m [4'] spinner shark,"C. Lancaster, Orlando Sentinel, 6/1/1994, p.C1; P.LaMee, Orlando Sentinel, 9/4/1995, p.C.3",1994.05.31.a-Reeber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.31.a-Reeber.pdf,1994.05.31.a,1994.05.31.a +2434,28-May-1994,Unprovoked,USA,Florida,"3 miles east of Jacksonville Beach, Duval County",Spearfishing,James Plumer,M,35,Shoulder bitten,False,2.1 m [7'] shark,"Miami Herald, 5/30/1994; Tampa Tribune; Bradenton Herald, Bradenton Herald, 5/30/1994",1994.05.28-Plumer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.28-Plumer.pdf,1994.05.28,1994.05.28 +2435,24-May-1994,Unprovoked,USA,Florida,"Spessard Holland Park, Melbourne Beach, Brevard County",Wading,female,F,36,Lower left calf & ankle lacerated,False,1.2 m [4'] shark,"Tampa Tribune, 5/26/1994; Bradenton Herald, 5/26/1994",1994.05.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.24-female.pdf,1994.05.24,1994.05.24 +2436,23-May-1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Jim Sellmer,M,26,Gash on ankle,False,1.2 m [4'] shark,"Orlando Sentinel, 5/24/1994, p. C3 & 5/25/ 1994, p. D.3",1994.05.23-Sellmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.23-Sellmer.pdf,1994.05.23,1994.05.23 +2437,15-May-1994,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Joel Tatro,M,22,Right knee lacerated,False,>1.8 m [6'] shark,"Orlando Sentinel, 5/16/1994",1994.05.15-Tatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.05.15-Tatro.pdf,1994.05.15,1994.05.15 +2438,Reported 16-Apr-1994,Invalid,USA,California,"Sunset Cliffs, San Diego, San Diego County",Surfing,Michele Von Emster,F,25,Not a shark attack; possibly murder. Body recovered 4-16-1994 minus severed leg. Blue shark bites were post-mortem,False,Invalid,"R. Collier; McCormick, p.147",1994.04.16-Emster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.16-Emster.pdf,1994.04.16,1994.04.16 +2439,15-Apr-1994,Unprovoked,REUNION,Saint-Joseph,Lieu-dit Cayenne,Surfing,G. Van Grevelynghe,,25,fatal,True,"3 m [10'], 200-kg [441-lb] bull shark",G. Van Grevelynghe,1994.04.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.15-Reunion.pdf,1994.04.15,1994.04.15 +2440,06-Apr-1994,Unprovoked,BAHAMAS,Rum Cay,Rum Cay,Wading,Scott Curatolo-Wagemann,M,20?,Lower right leg bitten,False,2' to 3' shark,S. Curatolo-Wagemann; SharkSurvivors.com,1994.04.06-Wagemann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.06-Wagemann.pdf,1994.04.06,1994.04.06 +2441,03-Apr-1994,Unprovoked,USA,Florida,"Miami Beach, Dade County",Freediving for seashells,Raul Tozo,M,71,Left shoulder lacerated,False,2' to 3' shark,"Miami Herald, 4/5/1994",1994.04.03-Tozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.03-Tozo.pdf,1994.04.03,1994.04.03 +2442,02-Apr-1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Charles De Wet Reis,M,71,fatal,True,4.9 m white shark,"L Compagno, GSAF",1994.04.02-dwRies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.04.02-dwRies.pdf,1994.04.02,1994.04.02 +2443,23-Mar-1994,Unprovoked,CHILE,300 miles east of Easter Island,300 miles east of Easter Island,Swimming alongside NOAA research vessel Discoverer,Heather Boswell,F,19,Leg severed mid-thigh,False,"3.6 m [11'9""] white shark","H. Boswell, M. Levine & E. Ritter, GSAF",1994.03.23.b-Boswell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.b-Boswell.pdf,1994.03.23.b,1994.03.23.b +2444,23-Mar-1994,Unprovoked,CHILE,300 miles East of Easter Island,300 miles East of Easter Island,Swimming alongside NOAA research vessel Discoverer,Phil Buffington,M,19,Thigh bitten,False,"3.6 m [11'9""] white shark","H. Boswell, M. Levine, GSAF",1994.03.23.a-Buffington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.23.a-Buffington.pdf,1994.03.23.a,1994.03.23.a +2445,07-Mar-1994,Provoked,USA,California,California,Removing shark from tank in nightclub ,Steve Rosebloome,M,33,Arm lacerated by captive shark PROVOKED INCIDENT,False,"Lemon shark, 4' ","A. MacCormick, p.227",1994.03.07-Rosenbloome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.07-Rosenbloome.pdf,1994.03.07,1994.03.07 +2446,01-Mar-1994,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Surfing,Albano Gomes Dias Filho,M,25,Leg bitten,False,2 m shark,"O. Gadig, BRASAF",1994.03.01-Albano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.03.01-Albano.pdf,1994.03.01,1994.03.01 +2447,27-Feb-1994,Unprovoked,SOUTH AFRICA,Western Cape Province,Saxon Reef,Spearfishing,Gary Lieberman,M,25,Swim fin bitten,False,3 m [10'] shark,"G. Lieberman, M. Levine, GSAF",1994.02.27-Lieberman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.27-Lieberman.pdf,1994.02.27,1994.02.27 +2448,19-Feb-1994,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Edwin Riley III,M,23,Left foot bitten,False,1.2 m [4'] shark,"Palm Beach Post, 2/20/1994",1994.02.19-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.19-Riley.pdf,1994.02.19,1994.02.19 +2449,13-Feb-1994,Provoked,USA,Hawaii,Kailua Bay,Fishing,J. Magbanua,M,23,Arm bitten while trying to secure shark caught by navy personnel from vessel PROVOKED INCIDENT,False,1.2 m [4'] shark,Hawaii Department of Land and Natural Resources,1994.02.13-Magbanua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.13-Magbanua.pdf,1994.02.13,1994.02.13 +2450,12-Feb-1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Beachview Holiday Resort,Surfing,Kevin Anderson,M,15,Leg bitten ,False,3 m [10'] white shark,"A. Gifford, GSAF",1994.02.12-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.12-Anderson.pdf,1994.02.12,1994.02.12 +2451,Feb-1994,Unprovoked,NEW CALEDONIA,South Province,Cap Goulvain,Fishing,Laurent Manuireva,,15,fatal,True,3 m [10'] white shark,W. Leander,1994.02.00-Manuireva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.02.00-Manuireva.pdf,1994.02.00,1994.02.00 +2452,31-Jan-1994,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Sérgio Adriano Gomes Silva,M,15,Right leg bitten,False,3 m [10'] white shark,"M. Szpilman, p.139",1994.01.31.b-SG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.b-SG.pdf,1994.01.31.b,1994.01.31.b +2453,31-Jan-1994,Unprovoked,USA,Hawaii,"Velzyland, north shore of O'ahu",Surfing,Jim Broach,M,15,fatal,True,Tiger shark,"G. Balazs; Allen, p.109",1994.01.31.a-Broach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.31.a-Broach.pdf,1994.01.31.a,1994.01.31.a +2454,30-Jan-1994,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon Beach, East London",Windsurfing,Andy Austin,M,44,Calf bitten,False,Tiger shark,"A. Gifford, GSAF",1994.01.30-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.30-Austin.pdf,1994.01.30,1994.01.30 +2455,Reported 12-Jan-1994,Boat,AUSTRALIA,Western Australia,Albany,Fishing,"5 m aluminum boat, occupants: Ben Turnbull, Lia & Neville Parker",,44,"No injury to occupants, shark bit anchor and ladder",False,White shark,"Advertiser, 1/12/1994, p.18",1994.01.12.R-Turnbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.12.R-Turnbull.pdf,1994.01.12.R,1994.01.12.R +2456,09-Jan-1994,Unprovoked,AUSTRALIA,Queensland,"Katana Downs Reach, Brisbane River","Swimming, after falling off towed kneeboard",Gary Cochrane,M,23,Hamstring bitten,False,1.5 m shark,"Advertiser, 1/12/1994,p.18",1994.01.09-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.09-Cochrane.pdf,1994.01.09,1994.01.09 +2457,03-Jan-1994,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Hibberdene,Swimming ,Ian Galbraith,M,33,Foot bitten,False,"1.3 m [4'3""] shark","G. Cliff, NSB",1994.01.03-Galbraith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.01.03-Galbraith.pdf,1994.01.03,1994.01.03 +2458,Last incident of 1994 in Hong Kong,Unprovoked,HONG KONG,unknown,unknown,Playing volleyball with friends,female,F,33,Both legs lacerated,False,Tiger shark said to be 5 to 7 m [16.5' to 23'] ,J. Wong,1994.00.00.b-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.b-NV-HongKong.pdf,1994.00.00.b,1994.00.00.b +2459,1994,Unprovoked,USA,Florida,"Flagler Beach, Flagler County",Surfing,Jeff Weakley,M,33,Foot bitten,False,Tiger shark said to be 5 to 7 m [16.5' to 23'] ,Jeff Weakley,1994.00.00.a--JeffWeakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1994.00.00.a--JeffWeakley.pdf,1994.00.00.a,1994.00.00.a +2460,Dec-1993,Unprovoked,USA,Hawaii,Waipo,Surfing,Daniel McMoyler,M,33,fatal,True,"On 11-Jan-1994, his remains washed ashore. A 2.4 m [8'] tiger shark thought to be involved","Allen, pp.109-110",1993.12.00-McMoyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.12.00-McMoyler.pdf,1993.12.00,1993.12.00 +2461,28-Nov-1993,Unprovoked,USA,Florida,"North Beach Jetty, St Lucie County",Swimming,Scott Johnson,M,30,"""Minor cuts to left leg""",False,"On 11-Jan-1994, his remains washed ashore. A 2.4 m [8'] tiger shark thought to be involved","Fort Pierce Tribune, 11/30/1993",1993.11.28-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.28-Johnson.pdf,1993.11.28,1993.11.28 +2462,21-Nov-1993,Unprovoked,AUSTRALIA,Western Australia, A pearl farm in Roebuck Bay,Hookah diving,Richard Peter Bisley,M,27,fatal,True,Tiger shark caught 6 days later with diver’s remains in its gut,"H. Edwards, pp.135-137",1993.11.21-Bisley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.21-Bisley.pdf,1993.11.21,1993.11.21 +2463,12-Nov-1993,Unprovoked,USA,Hawaii,"Horners, Wailua, Kaua'i","Surfing, paddling shorewards",David Silva,M,27,Left leg severely bitten,False,Tiger shark caught 6 days later with diver’s remains in its gut,Nova transcript; Hawaii Department of Land and Natural Resources ,1993.11.12-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.12-Silva.pdf,1993.11.12,1993.11.12 +2464,Nov-1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Stamding,Russian male,M,27,fatal,True,Tiger shark caught 6 days later with diver’s remains in its gut,"A. MacCormick, pp.3-4; Orlando Sentinel, 12/1/1993, p.A9",1993.11.00-RussianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.11.00-RussianMale.pdf,1993.11.00,1993.11.00 +2465,30-Oct-1993,Unprovoked,USA,California,"""Bunkers"" Eureka, Humboldt County",Surfing,Robert Williams,M,26,Serious injury to left leg,False,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, pp.144-145",1993.10.30-Williams_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.30-Williams_Collier.pdf,1993.10.30,1993.10.30 +2466,26-Oct-1993,Unprovoked,USA,Florida,"Treasure Shores Beach, Indian River County",Swimming,Dawn Schaumann (6.5 months pregnant),F,26,Thigh & hand lacerated,False,3 m [10'] bull shark,"W. Schaumann; Orlando Sentinel, 10/27/1993, p.B6 ",1993.10.26-Schauman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.26-Schauman.pdf,1993.10.26,1993.10.26 +2467,10-Oct-1993,Boating,USA,California,"Goat Rock, Bodega Bay, Sonoma County?",Kayaking,Rosemary Johnson,F,34,"No Injury, Kayak holed",False,>6 m [20'] white shark,"R. R. Collier, pp.143-144; A. MacCormick, pp.98-99",1993.10.10-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.10-Johnson_Collier.pdf,1993.10.10,1993.10.10 +2468,Oct-1993,Unprovoked,USA,Hawaii,"Mouth of Wallua River, Kaua'i",Surfing,"A. MacCormick, p.197",,34,Serious leg wounds,False,Tiger shark,"A. MacCormick, p.197",1993.10.00-WalluaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.10.00-WalluaRiver.pdf,1993.10.00,1993.10.00 +2469,30-Sep-1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Swimming,Edward J. Nicholson,M,21,fatal,True,Tiger shark," Houston Chronicle, 10/9/1993; Times of London, 11/25/1993, et al",1993.09.30-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.30-Nicholson.pdf,1993.09.30,1993.09.30 +2470,26-Sep-1993,Unprovoked,SOUTH AFRICA,Western Cape Province,Danger Point,Spearfishing,Wimpie Bouwer,M,36,Calf lacerated,False,3 m [10'] white shark,"A. Gifford, GSAF",1993.09.26-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.26-Bouwer.pdf,1993.09.26,1993.09.26 +2471,16-Sep-1993,Unprovoked,EL SALVADOR,La Libertad,near El Cocal Beach,Surfing,Jose Diter Roque ,,15,Left leg gashed,False,3.7 m [12'] white shark,"Tampa Tribune, 9/18/1993",1993.09.16.b-Roque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.b-Roque.pdf,1993.09.16.b,1993.09.16.b +2472,16-Sep-1993,Unprovoked,EL SALVADOR,La Libertad,El Cocal Beach,Surfing,Mauricio Guzman Castaneda,M,17,fatal,True,3.7 m [12'] white shark,"Tampa Tribune, 9/18/1993",1993.09.16.a-Castaneda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.16.a-Castaneda.pdf,1993.09.16.a,1993.09.16.a +2473,14-Sep-1993,Unprovoked,USA,Florida,"Huguenot Memorial Park, Duval County",Wading,Arthur Quick,M,19,Left foot bitten,False,3' shark,"Orlando Sentinel, 9/17/1993, p. B.6; Miami Herald, 9/17/1993; Ocala Star Banner, 9/17/1993",1993.09.14-Quick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.14-Quick.pdf,1993.09.14,1993.09.14 +2474,09-Sep-1993,Unprovoked,USA,Florida,"Little Talbot Island, Jacksonville, Duval County",Wading,Jerry McInarnay,M,16,Left foot bitten,False,3' shark,"Orlando Sentinel, 9/17/1993, p. B.6",1993.09.09-McInarnay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.09-McInarnay.pdf,1993.09.09,1993.09.09 +2475,03-Sep-1993,Unprovoked,SPAIN,Costa Blanca,"Playa de las Arenas, Valencia ",Swimming,Jorge Durich Heredia (or Hernandez),M,69,"Thigh bitten, toes of left foot severed",False,1.2 m [4'] shark,"Orlando Sentinel, 9/5/1993, p. A.22 citing El Pais newspaper",1993.09.03-Heredia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.09.03-Heredia.pdf,1993.09.03,1993.09.03 +2476,21-Aug-1993,Unprovoked,BAHAMAS,Walkers Cay,"Matinella Reef, 15 to 20 miles west of Walkers Cay",Spearfishing,William Barnes,M,51,Leg bitten,False,1.8 m [6'] blacktip shark or Caribbean reef shark,"South Florida Sun Sentinel, 8/22/1993, p. 1A; Palm Beach Post, 8/22/1993",1993.08.21-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.21-Barnes.pdf,1993.08.21,1993.08.21 +2477,Reported 19-Aug-1993,Unprovoked,USA,Florida,"Bethune Beach, Volusia County",Surfing,Shawn Bushong ,,13,Right foot bitten,False,1.8 m [6'] blacktip shark or Caribbean reef shark,"Deseret News, 8/19/1993",1993.08.19.R-Bushong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.R-Bushong.pdf,1993.08.19.R,1993.08.19.R +2478, 19-Aug-1993,Unprovoked,USA,Hawaii,"Paukukalo, Maui","Surfing, paddling seawards",Reggie Williams,M,13,Abrasions & board bitten,False,1.8 m [6'] blacktip shark or Caribbean reef shark,"G. Balazs; T. Allen, p.117; Hawaii Department of Land and Natural Resources",1993.08.19.a-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.19.a-Williams.pdf,1993.08.19,1993.08.19 +2479,15-Aug-1993,Boat,USA,California,Between Santa Cruz Island and Santa Barbara,Watching the shark feeding on a dead pinniped,21 m sportfishing vessel Seabiscuit. Occupants: Captain Louie Abbott & 2 dozen anglers,,13,No injury to occupants; shark circled boat repeatedly then rammed the vessel 3 times,False,">6 m white shark, according to witnesses","R. Collier, p.174",1993.08.15.b-Seabiscuit-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.b-Seabiscuit-Collier.pdf,1993.08.15.b,1993.08.15.b +2480,15-Aug-1993,Unprovoked,USA,North Carolina,Pamlico Sound,Riding floatation device,Petra Rijoes,F,19,Severe lacerations to abdomen & thighs,False,Bull shark,"Charlotte Observer, 8/19/1993, p.2C; F. Schwartz, p.23",1993.08.15.a-Rijoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.15.a-Rijoes.pdf,1993.08.15.a,1993.08.15.a +2481,14-Aug-1993,Boat,AUSTRALIA,Western Australia,Off Rottnest Island,Fishing,5.4 m boat ,,19,"No injury to occupants. Shark struck boat, lifting the outboard motor",False,6 m [20'] white shark,"A. Sharpe, p.134",1993.08.14-Rottnest-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.14-Rottnest-boat.pdf,1993.08.14,1993.08.14 +2482,12-Aug-1993,Unprovoked,USA,California,"Abalone Point, Westport Union Landing, Mendocino County",Free diving for abalone (ascending),David R. Miles,M,39,Severe bites to head & shoulder,False,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.140-142; Orlando Sentinel, 10/2/1992, p.A3",1993.08.12-Miles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.12-Miles_Collier.pdf,1993.08.12,1993.08.12 +2483,Aug-1993,Unprovoked,NEW CALEDONIA,South Province,Ile Moro,Fishing for lobsters,Thierry Kouathe,M,39,fatal,True,5.5 m to 6 m [18' to 20'] white shark,W. Leander,1993.08.00.b-Kouathe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.b-Kouathe.pdf,1993.08.00.b,1993.08.00.b +2484,Aug-1993,Boat,EL SALVADOR,La Libertad,La Libertad,Oyster fishing,"boat, occupants: 2 men",,39,fatal,True,White shark?,"Tampa Tribune, 9/18/1993",1993.08.00.a-El-Salvador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.08.00.a-El-Salvador.pdf,1993.08.00.a,1993.08.00.a +2485,30-Jul-1993,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Surfing,Ralph LeRoux,M,28,Puncture wounds on chest,False,4 m [13'] white shark,"A. Gifford, GSAF",1993.07.30-LeRoux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.30-LeRoux.pdf,1993.07.30,1993.07.30 +2486,07-Jul-1993,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Playing,Melissa Rodrigues,F,12,Right knee bitten,False,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ","G. Taylor, Orlando Sentinel, 7/8/1993 edtion, p. B1; P. LaMee, Orlando Sentinel, 7/9/1993 edtion, p.B3",1993.07.07-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.07.07-Rodrigues.pdf,1993.07.07,1993.07.07 +2487,30-Jun-1993,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Robson Antonio R. Santos,M,12,fatal,True,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ",JCOnline,1993.06.30-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.30-BoaViagem.pdf,1993.06.30,1993.06.30 +2488,29-Jun-1993,Unprovoked,REUNION,Saint-Paul,Cap de la Marianne,Body boarding,Theirry Mercredi,M,16,Note: see 1992.06.28,False,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ","Quotidien, 4/12/1999",1993.06.29-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.29-Mercredi.pdf,1993.06.29,1993.06.29 +2489,11-Jun-1993,Unprovoked,HONG KONG,New Territories,Silverstrand,Swimming,Kwong Kong-hing ,M,61,fatal,True,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ",J. Wong,1993.06.11.b-Kwong Kong-hing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.b-Kwong Kong-hing.pdf,1993.06.11.b,1993.06.11.b +2490,11-Jun-1993,Unprovoked,MEXICO,Quintana Roo,"Santa Rosa Shallows, Cozumel",Scuba diving,Mary Eggemeyer,F,42,fatal,True,"1.8 m to 2.4 m [6' to 8'] shark, tooth fragments recovered ","Dallas Morning News, 6//15/1993",1993.06.11.a-Eggemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.11.a-Eggemeyer.pdf,1993.06.11.a,1993.06.11.a +2491,10-Jun-1993,Unprovoked,USA,Hawaii,"Goats Island (Moku’auia Island), Malaekahana State Recreation Area, Laie, O'ahu",Paddling on surfboard or body board,Jonathan Mozo,M,22,Feet & ankles bitten,False,Thought to involve a tiger shark,"G. Ambrose, pp.61-68; J. Borg, p.83",1993.06.10-Mozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.10-Mozo.pdf,1993.06.10,1993.06.10 +2492,09-Jun-1993,Unprovoked,AUSTRALIA,New South Wales,"Julian Rocks, Byron Bay",Scuba diving,John Ford,M,31,fatal,True,Remains recovered from 5.5 m [18'] white shark,"A. MacCormick, p.56; H. Edwards, pp.11 & 159",1993.06.09-JohnFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.09-JohnFord.pdf,1993.06.09,1993.06.09 +2493,05-Jun-1993,Unprovoked,AUSTRALIA,Tasmania,Tenth Island (King Island),Scuba diving at seal colony,Teresa Cartwright,F,34,fatal,True,5 m [16.5'] white shark,"Telegraph Mirror (Sydney), June 7, 1993; H. Edwards, p.156; C. Black pp. 167-169",1993.06.05-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.05-Cartwright.pdf,1993.06.05,1993.06.05 +2494,01-Jun-1993,Unprovoked,HONG KONG,New Territories,Sheung Sz Wan,Swimming,Yan Sai-wah,M,42,fatal,True,5 m [16.5'] white shark,"J. Wong; A. MacCormick, p.235; A. Sharpe, p.34",1993.06.01-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.01-HongKong.pdf,1993.06.01,1993.06.01 +2495,Jun-1993,Unprovoked,USA,North Carolina,"Hamstead, Pender County",Swimming,Suzanne Pferrer,F,60's,"No injury, bumped by shark",False,6' shark,C. Creswell,1993.06.00-Pferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.06.00-Pferrer.pdf,1993.06.00,1993.06.00 +2496,Late May 1993,Unprovoked,HONG KONG,"On the Kowloon penisula, south of Sai Kung",Silverstrand,Swimming,female,F,60's,fatal,True,6' shark,"J. Wong; A. Sharpe, p.34",1993.05.00.b-Kowloon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.b-Kowloon.pdf,1993.05.00.b,1993.05.00.b +2497,May 1993,Unprovoked,SOMALIA,Banaadir Region,"Arroyo Beach, Mogadishu",Swimming,French female,F,60's,fatal,True,6' shark,"A. MacCormick, pp.3-4; Orlando Sentinel, 112/1/1993, p.A9",1993.05.00.a-Frenchfemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.05.00.a-Frenchfemale.pdf,1993.05.00.a,1993.05.00.a +2498,Apr-1993,Invalid,AUSTRALIA,Tasmania,Barren Joey Island,Spearfishing,Tony Szolomiak,M,32,No injury ,False,Invalid,"C. Black & T. Peake, GSAF",1993.04.00-Szolomiak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.04.00-Szolomiak.pdf,1993.04.00,1993.04.00 +2499,27-Mar-1993,Unprovoked,BRAZIL,Pernambuco,Paiva,Surfing,José Ricardo C. Gouveia,M,32,Survived,False,Invalid,JCOnline,1993.03.27-JoseRicardoGouveia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.27-JoseRicardoGouveia.pdf,1993.03.27,1993.03.27 +2500,22-Mar-1993,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Floating on his back,Ken Dannewitz,M,25,Both feet lacerated,False,Invalid,"Orlando Sentinel, 3/25/1993. p. B5",1993.03.22-Dannewitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.22-Dannewitz.pdf,1993.03.22,1993.03.22 +2501,17-Mar-1993,Unprovoked,JAPAN,Ehime Prefecture,Iyo,Floating on his back,Yuji Yamamoto,,25,Survived,False,Possiby white shark,K. Nakaya,1993.03.17-Yamamoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.17-Yamamoto.pdf,1993.03.17,1993.03.17 +2502,14-Mar-1993,Unprovoked,USA,Hawaii,"Paradise Bay (next to Wailua Bay), Maui",Paddling on surfboard,Roddy Lewis,M,35,Lower legs lacerated ,False,"Tiger shark, 3.7 m [12'], (tooth fragment recovered from wound)","J. Borg, p.83; G. Ambrose, pp.30-40",1993.03.14-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.14-Lewis.pdf,1993.03.14,1993.03.14 +2503,12-Mar-1993,Unprovoked,USA,California,"Linda Mar Beach, Pedro Point, San Mateo County",Free diving & spearfishing (ascending),Don Berry,M,55,"No injury, swim fin bitten",False,White shark,"R. Collier, p.140",1993.03.12-Berry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.12-Berry_Collier.pdf,1993.03.12,1993.03.12 +2504,Mar-1993,Unprovoked,NEW CALEDONIA,South Province,Île de Casey,Swimming,Frederic Dolbeau,,55,Hip bitten,False,White shark,W. Leander,1993.03.00-Dolbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.03.00-Dolbeau.pdf,1993.03.00,1993.03.00 +2505,19-Feb-1993,Sea Disaster,TONGA,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Haumole Faing'a ,M,55,Puncture wounds to right thigh,False,White shark,"Tongan Chronicle, 2/26/1993",1993.02.19-Fainga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.19-Fainga.pdf,1993.02.19,1993.02.19 +2506,18-Feb-1993,Sea Disaster,TONGA,Tongapatu Group,Between 'Ata and Tongapatu,Sea disaster,Siale Sime,M,55,Foot bitten,False,1.5 m [5'] shark,"Tongan Chronicle, 2/26/1993",1993.02.18-SialeSime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.18-SialeSime.pdf,1993.02.18,1993.02.18 +2507,04-Feb 1993,Provoked,AUSTRALIA,Queensland,Mooloolaba,Fishing,John Bonell,M,69,"Legs lacerated, puncture wound in hand from hooked shark hauled onboard PROVOKED INCIDENT",False,"Bronze whaler shark, 1.5 m ","Courier-Mail, 2/5/1993, p.7",1993.02.04-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.02.04-Bonnell.pdf,1993.02.04,1993.02.04 +2508,23-Jan-1993,Unprovoked,BRAZIL,Pernambuco,Piedade,Body boarding,Charles Roberto Soares Veras,M,15,Left leg bitten,False,"Bronze whaler shark, 1.5 m ",D. Duarte,1993.01.23-Veras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.23-Veras.pdf,1993.01.23,1993.01.23 +2509,05-Jan-1993,Unprovoked,AUSTRALIA,Queensland,"Line Reef, northeast of Hamilton Island, Whitsundays",Spearfishing,Daniel Lance McNally,M,21,"6"" laceration to left forearm",False,1.5 m shark,"Courier-Mail, 1/6/1993, p.1",1993.01.05-McNally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.05-McNally.pdf,1993.01.05,1993.01.05 +2510,04-Jan-1993,Boating,CARIBBEAN SEA,Off Dominican Republic,Off Dominican Republic, ,"canoe, occupants: Chris Newman & Stewart Newman",M,32 & 30,"No injury to occupants. Sharks, attracted to offal from slaughtered dolphin, attacked & damaged their canoe",False,Two 3 m [10'] oceanic whitetip sharks,"A. MacCormick, p.100",1993.01.04-DominicanRepublic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.04-DominicanRepublic.pdf,1993.01.04,1993.01.04 +2511,02-Jan-1993,Unprovoked,USA,Oregon,"Bastendorf Beach, Coos County",Surfing,William Weaver,M,29,"No injury, shark bit board",False,6 m [20'] white shark,"R. Collier, pp.138-139; Mark Marks",1993.01.02-Weaver_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.01.02-Weaver_Collier.pdf,1993.01.02,1993.01.02 +2512,Fall 1993,Unprovoked,ANGOLA,West Africa,West Africa,Surfing,John Doyle,M,29,Right Leg bitten,False,3 m [10'] white shark,Internet report,1993.00.00.d-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.d-Doyle.pdf,1993.00.00.d,1993.00.00.d +2513,Between May & Nov-1993,Unprovoked,SOMALIA,Banaadir Region,Mogadishu,Surfing,several Somali children,,29,fatal,True,3 m [10'] white shark,"Orlando Sentinel, 112/1/1993, p.A9",1993.00.00.c - Somali children.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.c - Somali children.pdf,1993.00.00.c,1993.00.00.c +2514,1993,Unprovoked,TONGA,Vava’u,Between Ofu & Fafini Islands,Spearfishing,A diver from Spain,,30,Left buttock and thigh bitten,False,3 m [10'] white shark,Drs. S. Fonea & A. Carafa,1993.00.00.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.b-Tonga.pdf,1993.00.00.b,1993.00.00.b +2515,1993,Unprovoked,USA,Florida,"Key West, Monroe County",Snorkeling,press report,,30,Survived,False,Lemon shark,press report,1993.00.00.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1993.00.00.a-NV-KeyWest.pdf,1993.00.00.a,1993.00.00.a +2516,28-Dec-1992,Unprovoked,USA,Hawaii,"Honomuni, Moloka'i","Standing in waist-deep water, helping his father tend a gill net containing dead fish",Pahu Tanaka,M,10,Right leg bruised & abraded,False,"Tiger shark, 2.4 m [8']","J. Borg, p.82",1992.12.28-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.28-Tanaka.pdf,1992.12.28,1992.12.28 +2517,23-Dec-1992,Unprovoked,USA,Hawaii,"Chun's Reef, Laniakea, O'ahu",Lying on surfboard,Gary M. Chun,M,30,"Minor lacerations to hand, 15"" crescent-shaped piece removed from surfboard",False,"Tiger shark, 3 m to 4.9 m [10' to 16'] ","L. Taylor (1993), pp.114-115; Orlando Sentinel, 12/25/1992, p.A20",1992.12.23-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.12.23-Chun.pdf,1992.12.23,1992.12.23 +2518,29-Nov-1992,Unprovoked,USA,California,"San Onofre, San Diego County ",Spearfishing / free diving,John Regan,M,31,10 puncture wounds to right calf,False,"Mako shark, 1.8 m [6'] ","R. Collier, p.xxvi; H. Viders, Alert Diver Magazine",1992.11.29-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.29-Regan.pdf,1992.11.29,1992.11.29 +2519,25-Nov-1992,Unprovoked,USA,Florida,"Brevard County, a mile north of Sebastian Inlet",Surfing,Matthew Robertson Paul,M,19,Forearm & hand bitten; tooth fragments of the shark were recovered from the surfer's hand,False,6' to 7' blacktip shark,"M. R. Paul; Orlando Sentinel, 11/28/1992; Fort Pierce Tribune, 11/30/1992 ",1992.11.25-Paul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.25-Paul.pdf,1992.11.25.a,1992.11.25.a +2520,23-Nov-1992,Unprovoked,USA,Florida,Florida,Surfing,Larry Bush,M,24,Right ankle bitten,False,1.8 m [6'] shark,"Fort Pierce Tribune, 11/24/1992 & 11/30/1992; Palm Beach Post, 11/25/1992",1992.11.23-LarryBush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.23-LarryBush.pdf,1992.11.23,1992.11.23 +2521,14-Nov-1992,Boating,USA,California,"Ano Nuevo, San Mateo County",Kayaking,Ken Kelton,M,46,"No injury, kayak bitten",False,5 m to 6 m white shark,"R. Collier, p.137",1992.11.14-Kelton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.14-Kelton_Collier.pdf,1992.11.14,1992.11.14 +2522,Reported 12-Nov-1992,Unprovoked,FIJI,Wakaya Island,Wakaya Island,Scuba diving,Chad Smith,M,30,Left arm lacerated,False,3 m hammerhead shark,"Herald Sun, 11/12/1992, p.39",1992.11.12.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.12.R-Smith.pdf,1992.11.12.R,1992.11.12.R +2523,11-Nov-1992,Unprovoked,USA,California,"San Nicholas Island, Santa Barbara County",Scuba diving (submerged),Kenny Crane,M,40,Foot punctured,False,Unidentified shark,"R. Collier, pp.136-137",1992.11.11-Crane_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.11-Crane_Collier.pdf,1992.11.11,1992.11.11 +2524,06-Nov-1992,Unprovoked,USA,Florida,"North Jetty Park, Fort Pierce, St Lucie County",Surfing,Josh Greinstein ,M,17,Heel bitten,False,Unidentified shark,"P.Owers, Fort Pierce Tribune, 11/7/1992 ",1992.11.05.b-Greinstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.b-Greinstein.pdf,1992.11.05.b,1992.11.05.b +2525,05-Nov-1992,Unprovoked,USA,Hawaii,"Kea'au Beach Park, O'ahu",Body boarding,Aaron A. Romento,M,18,fatal,True,"Tiger shark, 3 m to 3.7 m [10' to 12'] ","Dr. P. Bjokman; Palm Beach Post, 11/7/1992 ",1992.11.05.a-Romento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.11.05.a-Romento.pdf,1992.11.05.a,1992.11.05.a +2526,29-Oct-1992,Unprovoked,USA,California,"Castle Rock, San Miguel Island, Santa Barbara County",Hookah diving for sea urchins,Andy Schupe,M,40,Foot & swim fin punctured,False,2.5 m [8.25'] white shark,"R. Collier, pp.135-136 ",1992.10.29-Schupe_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.29-Schupe_Collier.pdf,1992.10.29,1992.10.29 +2527,22-Oct-1992,Unprovoked,USA,Hawaii,"Lanaikea, O'ahu",Surfing,Rick (Eric) Gruzinsky,M,28,"Chest & arm bruised & scratched, 15"" crescent-shaped piece removed from board",False,"Tiger shark, 4.3 m [14'] ","Orlando Sentinel, 10/24/1992, p.A5; G. Ambrose, pp.54-60; A. MacCormick, p.195; J. Borg, p.82; L. Taylor (1993), pp.114-115",1992.10.22-Gruzinsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.22-Gruzinsky.pdf,1992.10.22,1992.10.22 +2528,15-Oct-1992,Unprovoked,AUSTRALIA,New South Wales,Avalon Beach,Scuba diving,Dave Gannicott,M,28,Minor injury while delivering pup of female shark caught in a net,False,Grey nurse shark,"Orlando Sentinel, 10/15/1992, p.A3",1992.10.15-Gannicott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.15-Gannicott.pdf,1992.10.15,1992.10.15 +2529,11-Oct-1992,Unprovoked,BRAZIL,Maranhão,"Praia de São Marcus, Sáo Luiz",Boogie boarding,M.C.,,28,Legs bitten,False,Grey nurse shark,M. Szpilman,1992.10.11-MC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.11-MC.pdf,1992.10.11,1992.10.11 +2530,01-Oct-1992,Unprovoked,AUSTRALIA,Queensland,"North Point Beach, Moreton Island",Surfing,Michael Docherty,M,28,fatal,True,4.2 m white shark,"Daily Telegraph (Sydney) 10/2/1992 ; Orlando Sentinel, 10/2/1992, p.A3; A. Sharpe, p.108; A. MacCormick, p.197",1992.10.01-Docherty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.10.01-Docherty.pdf,1992.10.01,1992.10.01 +2531,18-Sep-1992,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Body boarding,Eduardo Rodrigues da Cruz,M,28,Left leg severely bitten,False,4.2 m white shark,D. Duarte;,1992.09.18-Cruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.18-Cruz.pdf,1992.09.18,1992.09.18 +2532,13-Sep-1992,Unprovoked,USA,Oregon,"Gold Beach, Curry County",Surfing,Jerad Brittain,M,20,Minor bruises,False,4 m to 5 m [13' to 16.5'] white shark ,"R. Collier, pp.134-135 ",1992.09.13-Brittain_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.13-Brittain_Collier.pdf,1992.09.13,1992.09.13 +2533,11-Sep-1992,Unprovoked,USA,Florida,"South Jetty, New Smyrna Beach, Volusia County",Standing,Tracie Langbein,F,18,Right ankle & calf bitten,False,4 m to 5 m [13' to 16.5'] white shark ,"Orlando Sentinel, 5/20/1993, p.B3; P.LaMee, Orlando Sentinel, 9/4/1995, p.C.3",1992.09.11-Langbein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.11-Langbein.pdf,1992.09.11,1992.09.11 +2534,10-Sep-1992,Unprovoked,BRAZIL,Pernambuco,"Boa Viagem, Recife",Swimming,Enoque Pereira dos Santos,M,18,fatal,True,4 m to 5 m [13' to 16.5'] white shark ,D. Duarte,1992.09.10-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.10-BoaViagem.pdf,1992.09.10,1992.09.10 +2535,Sep-1992,Unprovoked,USA,Florida,St Lucie County,Surf fishing,male,M,18,"Foot bitten, 8 stitches needed to repair the wound",False,4 m to 5 m [13' to 16.5'] white shark ,"Fort Pierce Tribune, 11/24/1992 & 11/30/1992",1992.09.00-surf-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.09.00-surf-fisherman.pdf,1992.09.00,1992.09.00 +2536,29-Aug-1992,Unprovoked,BAHAMAS,Abaco Islands,Double Breasted Cays ,"Snorkeling, carrying a speared fish in her hand",Valerie Fortunato ,F,34,Left hand bitten,False,1.8 m [6'] blacktip shark,"C. Dummitt, Palm Beach Post. 9/3/1992",1992.08.29-Fortunato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.29-Fortunato.pdf,1992.08.29,1992.08.29 +2537,25-Aug-1992,Unprovoked,AUSTRALIA,South Australia,"Lipson Cove, Tumby Bay",Surfing,Jason Bates,M,17,"Minor cuts, sufboard bitten",False,4 m white shark,"Advertiser, 8/28/1992, p.3; J. West, ASAF",1992.08.25-Bates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.25-Bates.pdf,1992.08.25,1992.08.25 +2538,21-Aug-1992,Invalid,USA,Hawaii,"Twin Arches, Hana Ranch, Maui",Fell from cliff while fishing & disappeared in strong current,Chester N. Shishido,M,17,Body recovered next morning. Injuries appeared to be inflicted post mortem,False,Questionable incident,"J. Borg, p.82; L. Taylor (1993), pp.114-115",1992.08.21-Shishido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.21-Shishido.pdf,1992.08.21,1992.08.21 +2539,18-Aug-1992,Unprovoked,USA,California,"Klamath River, Del Norte County",Surfing,Keith Caruso,M,22,"No injury, board bitten",False,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.132-133",1992.08.18-Caruso_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.18-Caruso_Collier.pdf,1992.08.18,1992.08.18 +2540,17-Aug-1992,Provoked,USA,Florida,"Manalapan, Palm Beach County",Snorkeling,Rod Duguid,M,26,"Grabbed metal leader to shark, shark clamped on & bit left bicep PROVOKED INCIDENT",False,"Nurse shark, 3', 20-lb ","J.A. Plunkett, Miami Herald, 8/19/1992, p.1B",1992.08.17-Duguid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.17-Duguid.pdf,1992.08.17,1992.08.17 +2541,Aug-1992,Invalid,USA,Florida,St. Lucie County,Fisherman,male,M,26,No details,False,Questionable incident,"Fort Pierce Tribune, 11/30/1992",1992.08.00-NV-StLucieFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.08.00-NV-StLucieFisherman.pdf,1992.08.00,1992.08.00 +2542,23-Jul-1992,Invalid,USA,Hawaii,"Wai'anae, O'ahu","Zosimo & his son, Jeffrey Popa, failed to return from overnight fishing trip in a 14' boat, Boat apparently sank, debris recovered but his son & boat were never found",Zosimo Popa,M,26,"Death due to drowning. His body, tied to floating ice chest, had 2 small post-mortem bites due to cookie cutter shark",False,Invalid,"J. Borg, p.81; L. Taylor (1993), pp.114-115",1992.07.23-Popa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.23-Popa.pdf,1992.07.23,1992.07.23 +2543,21-Jul-1992,Unprovoked,USA,Florida,"Manasota Beach, Sarasota County",Standing,Ann Suits,F,42,Lacerations to left foot,False,"""a small shark""","Sarasota Herald-Tribune, 7/23/1992 ",1992.07.21-Suits.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.21-Suits.pdf,1992.07.21,1992.07.21 +2544,08-Jul-1992,Unprovoked,BRAZIL,Maranhão,"Praia da Marcela, São Marcos Bay",Surfing,L.G,M,42,Arm bitten,False,"""a small shark""",M. Szpilman,1992.07.08.b-LG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.b-LG.pdf,1992.07.08.b,1992.07.08.b +2545,08-Jul-1992,Unprovoked,BRAZIL,Maranhão,"Praia da Marcela, São Marcos Bay",Surfing,M.C.,M,42,"Lower leg bitten, surgically amputated",False,"""a small shark""",M. Szpilman,1992.07.08.a-MS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.07.08.a-MS.pdf,1992.07.08.a,1992.07.08.a +2546,28-Jun-1992,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Ubiratan Martins Gomes,M,42,fatal,True,"""a small shark""",D .Duarte,1992.06.28.b-Piedade-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.b-Piedade-Brazil.pdf,1992.06.28.b,1992.06.28.b +2547,28-Jun-1992,Unprovoked,REUNION,Saint-Paul,Cap de la Marianne,Surfing,Theirry Mercredi,M,16,fatal,True,Bull shark or lemon shark,G. Van Grevelynghe,1992.06.28.a-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.28.a-Mercredi.pdf,1992.06.28.a,1992.06.28.a +2548,19-Jun-1992,Unprovoked,VANUATU,Malampa Province,"Port Sandwich, Malakula",Swimming,Andrea Rush,F,21,Right leg was bitten above and below the knee and an artery was punctured,False,Bull shark or lemon shark,"A. Rush; R. D. Weeks, GSAF; Otago Daily Times, 6/20/1992",1992.06.19-AndreaRush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.19-AndreaRush.pdf,1992.06.19,1992.06.19 +2549,17-Jun-1992,Boat,JAPAN,Ehime Prefecture,"1.5 km north of Igata-cho, 60 km south of Matsyama",Preparing to fish for jack-mackerel,"5.75 m wooden boat, occupant: Yoshaiaki Ueda",,21,"No inujury to occupant. Shark bit boat repeatedly, leaving 2 teeth in the bottom keel of the boat",False,"White shark, identification by K. Nakaya","K. Nakaya; Orlando Sentinel, 6/18/1992, p. A3",1992.06.17-Ueda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.17-Ueda.pdf,1992.06.17,1992.06.17 +2550,Jun-1992,Unprovoked,REUNION,Saint-Paul,Saint-Paul,Diving,G. Van Grevelynghe,,21,Survived,False,Mako shark,G. Van Grevelynghe,1992.06.00-ReunionDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.06.00-ReunionDiver.pdf,1992.06.00,1992.06.00 +2551,31-May-1992,Invalid,USA,North Carolina ,Wreck of the U-352 ,Scuba diving ,Mike Weathers,M,45,Disappeared. His ripped dive jacket was recovered,False,Shark involvement prior to death was not confirmed,"Charlotte Observer, 6/24/1992, p.1C & 8/8/1992, p.2C",1992.05.31-Weathers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.31-Weathers.pdf,1992.05.31,1992.05.31 +2552,22-May-1992,Unprovoked,REUNION,Saint-Joseph,Lieu-dit Cayenne,Surfing,Emmanuel Nativel,M,45,fatal,True,"Tiger shark, 3 m to 4 m [10' to 13'] ",G. Van Grevelynghe,1992.05.22-Nativel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.22-Nativel.pdf,1992.05.22,1992.05.22 +2553,May 1992,Unprovoked,MEXICO,Mexico / Caribbean Sea,Isla Mujeres,Scuba diving & filming,Nick Caloyianis,M,45,"Fingers, hand & arm bitten",False,"Tiger shark, 3 m to 4 m [10' to 13'] ","T. Allen, p.238",1992.05.00-Caloyianis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.05.00-Caloyianis.pdf,1992.05.00,1992.05.00 +2554,24-Apr-1992,Unprovoked,NEW ZEALAND,Antarctic Ocean,"Meteorologic Station on Campbell Island, 370 nautical miles south of New Zealand",Snorkeling,Mike Fraser,M,45,"Right forearm severed, left forearm lacerated & broken",False,"4 m [13'], 590-kg white shark","M. Fraser; R. Weeks, GSAF",1992.04.24-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.24-Fraser.pdf,1992.04.24,1992.04.24 +2555,09-Apr-1992,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Gordon Harmer,M,35,Punctures & lacerations on lower leg,False,>2 m shark,"G. Harmer; M. Levine, GSAF",1992.04.09-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.04.09-Harmer.pdf,1992.04.09,1992.04.09 +2556,28-Mar-1992,Unprovoked,USA,Hawaii,"Cannons, at Ha'ena on the north shore of Kaua'i Island","Surfing, paddling seawards",Jude Chamberlin,F,36,"Foot bitten, crescent of bitemarks in both sides of board",False,Tiger shark,"G. Ambrose, pp.18-23; J. Borg, p.81; L. Taylor (1993), pp.112-113",1992.03.28-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.28-Chamberlin.pdf,1992.03.28,1992.03.28 +2557,10-Mar-1992,Unprovoked,AUSTRALIA,Victoria,Point Lonsdale,Surfing,Mark Jepson,M,17,"Right thigh, back & hand lacerated",False,"Bronze whaler shark, 3 m","Herald Sun, 1/7/1993; A. Sharpe, p.116",1992.03.10-Jepson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.10-Jepson.pdf,1992.03.10,1992.03.10 +2558,08-Mar-1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Hookah diving for pen shells ,Kazuta Harada,M,41,fatal,True,"5 m [16.5'] white shark, identification by K. Nakaya","K. Nakaya; Orlando Sentinel, 3/20/1992, p.A10 & 6/18/1992, p. A3",1992.03.08.c-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.c-Harada.pdf,1992.03.08.c,1992.03.08.c +2559,08-Mar-1992,Boat,JAPAN,Ehime Prefecture,"Nagahama-cho, 40 km southwest of Matsuyama ","Fishing for yellowtail, Seriola quinqueradiata",wooden boat of Yoshihiro Takasaki,,41,No injury to boat or occupant,False,"5 m [16.5'] white shark, identification by K. Nakaya",K. Nakaya,1992.03.08.b-Takasaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.b-Takasaki.pdf,1992.03.08.b,1992.03.08.b +2560,08-Mar-1992,Unprovoked,USA,Oregon,"Winchester Bay, Douglas County",Surfing (sitting on his board),Mike Allman,M,21,"Left shoulder & side bitten, board broken",False,Said to involve a 6 m to 7 m [20' to 23'] white shark,"R. Collier, pp.130-132; M. Marks",1992.03.08.a-Allman-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.03.08.a-Allman-Collier.pdf,1992.03.08.a,1992.03.08.a +2561,19-Feb-1992,Unprovoked,USA,Hawaii,"Leftovers, near Waimea Bay, O'ahu",Body boarding,Brian Adona,M,21,fatal,True,Tiger shark?,"J. Borg, pp.80-81; L. Taylor (1993), pp.112-113. Note: Hawaii Department of Land and Natural Resources lists date as 2/1/1992",1992.02.19 - Adona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.19 - Adona.pdf,1992.02.19,1992.02.19 +2562,14-Feb-1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Diving for pen shells,Koji Harada,M,21,"No injury, steel diving helmet bitten 3 times",False,5 m [16.5'] shark,K. Nakaya,1992.02.14-Koji-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.14-Koji-Harada.pdf,1992.02.14,1992.02.14 +2563,09-Feb-1992,Invalid,AUSTRALIA,Tasmania,"Clifton Beach, southwest of Hobart",Surfing,Wayne Fitzpatrick,M,19,"No injury, shark allegedly took his surfboard & slashed his wetsuit. Shark involvement questionable",False,Questionable incident,"C. Black, GSAF; Advertiser, 2/11/1992, p.2; ",1992.02.09-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.02.09-Fitzpatrick.pdf,1992.02.09,1992.02.09 +2564,29-Jan-1992,Unprovoked,REUNION,La Saline-les-Bains,Revine-3-Bassins,Spearfishing,Richard Carnoy,M,19,Survived,False,1.8 m grey shark,G. Van Grevelynghe,1992.01.29.b-Carnoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.b-Carnoy.pdf,1992.01.29.b,1992.01.29.b +2565,29-Jan-1992,Unprovoked,AUSTRALIA,New South Wales,Tweed Heads,Boogie boarding,John Bayliss (or Ballis),M,19,Right leg lacerated,False,"Bronze whaler shark, 2.3 m [7.5'] ","Advertiser, 1/30/1992, p.7 & 2/1/1992, p.4",1992.01.29.a-Bayliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.29.a-Bayliss.pdf,1992.01.29.a,1992.01.29.a +2566,23-Jan-1992,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Swimming ,Noor-Mubeen Shaik,M,19,Right foot lacerated,False,"Zambesi shark, 1.7 m [5.5'] ","G. Cliff, NSB",1992.01.23-Shaik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.23-Shaik.pdf,1992.01.23,1992.01.23 +2567,08-Jan-1992,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sheffield Beach,Spearfishing,Daniel Van Huysteen,M,36,Left cheek lacerated,False,Possibly a 1.5 m [5'] blacktip shark,"A. Gifford, GSAF",1992.01.08-vanHuysteen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.08-vanHuysteen.pdf,1992.01.08,1992.01.08 +2568,06-Jan-1992,Unprovoked,MAURITIUS,Mahebourg,Mahebourg,Fishing,male,M,36,Survived,False,Grey reef shark,D. deSpeville,1992.01.06-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.06-Mauritius.pdf,1992.01.06,1992.01.06 +2569,03-Jan-1992,Unprovoked,JAPAN,Ehime Prefecture,Matsuyama,Fishing,male,M,36,Survived,False,Grey reef shark,K. Nakaya,1992.01.03-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.03-Japan.pdf,1992.01.03,1992.01.03 +2570,Jan-1992,Invalid,JAPAN,Sea of Japan,Kanazawa?,Fishing,Mikado Nakamura,,36,Survived. questionable incident,False,Questionable incident,K. Nakaya,1992.01.00-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.01.00-Nakamura.pdf,1992.01.00,1992.01.00 +2571,1992,Unprovoked,FIJI,Tavenui,Tavenui,Fishing,Stephen Davies,M,33,fatal,True,Questionable incident,"A.Bull, www.stuff.com.nz",1992.00.00-NV-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1992.00.00-NV-Davies.pdf,1992.00.00,1992.00.00 +2572,04-Dec-1991,Unprovoked,USA,California,"Shelter Cover, north of Fort Bragg, Shelter Cove, Mendocino County",Hookah diving for sea urchins,David Abernathy,M,25,"No injury, shark became tangled in hose & towed him 100'",False,6 m [20'] white shark,"R. Collier, pp.129-130; Mark Marks; S. Waterman ",1991.12.04-Abernathy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.12.04-Abernathy_Collier.pdf,1991.12.04,1991.12.04 +2573,26-Nov-1991,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Martha Joy Morrell,F,41,fatal,True,"Tiger shark, 2.4 m 3.4 m [8' to 11'] ","J. Borg, pp.1-3; A. MacCormick, p.151; L. Taylor (1993), pp.112-113",1991.11.26.b-Morrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.b-Morrell.pdf,1991.11.26.b,1991.11.26.b +2574,26-Nov-1991,Unprovoked,USA,Hawaii,"Olowalu, Maui",Snorkeling,Louise Sourisseau,F,41,Right calf abraded,False,"Tiger shark, 2.4 m 3.4 m [8' to 11'] ","J. Borg, p.80; A. MacCormick, p.151; L. Taylor (1993), pp.112-113",1991.11.26.a-Sourisseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.26.a-Sourisseau.pdf,1991.11.26.a,1991.11.26.a +2575,19-Nov-1991,Unprovoked,USA,Hawaii,"Maliko Point, Maui","Fishing from rocks, swept out to sea by large wave & treading water",Suk Kyu (Steve) Park,M,41,fatal,True,"Tiger shark, 3.7 m [12'] ","J. Borg, pp.79-80; L. Taylor (1993), pp.110-111",1991.11.19-Park.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.19-Park.pdf,1991.11.19,1991.11.19 +2576,14-Nov-1991,Provoked,USA,Florida,Near Port Canaveral Coast Guard Base,Fishing,John Saenza,M,41,Hand bitten as he was cleaning hooked shark PROVOKED INCIDENT,False,2.4 m [8'] shark,"D.E. Owens, Orlando Sentinel, 11/15/1991",1991.11.14-Saenza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.14-Saenza.pdf,1991.11.14,1991.11.14 +2577,Nov-1991,Unprovoked,AUSTRALIA,Western Australia,"Backbeach, Halls Head",Boogie boarding,Chad Wittorff,M,14,Calf scratched & chunk bitten from board,False,"""small shark""","A. Sharpe, pp.135-136",1991.11.00-Wittorff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.11.00-Wittorff.pdf,1991.11.00,1991.11.00 +2578,12-Oct-1991,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Cliff Turner,M,21,Right foot & ankle lacerated,False,1.8 m [6'] shark,"Orlando Sentinel, 10/13/1991",1991.10.12-CliffTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.12-CliffTurner.pdf,1991.10.12,1991.10.12 +2579,05-Oct-1991,Unprovoked,USA,California,"Horseshoe Reef, Scott Creek, Davenport, Santa Cruz County",Surfing,John Ferrerira,M,32,"Arm, shoulder & back bitten",False,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.126-128 ; Orlando Sentinel, 10/6/1991, p.A8 & 10/10/ 1991, p.A8 ",1991.10.05-Ferreira_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.10.05-Ferreira_Collier.pdf,1991.10.05,1991.10.05 +2580,19-Sep-1991,Invalid,BAHAMAS,Bimini,Bimini,Spearfishing,Omar Karim Huneidi,M,32,"Initally reported as a shark attack, forensic examination concluded cause of death was drowning",False,Invalid,"E. Pace, FSAF; Sun Sentinel, 9/22/1991, p.3B",1991.09.19-Huneidi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.19-Huneidi.pdf,1991.09.19,1991.09.19 +2581,08-Sep-1991,Unprovoked,AUSTRALIA,South Australia,"Snapper Point, Aldinga Beach, Adelaide",Scuba diving,Jonathon Lee,M,19,fatal,True,4 m [13'] white shark,"Advertiser, 1/31/1992, p.5; A. Sharpe, pp.127-128 ",1991.09.08-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.09.08-Lee.pdf,1991.09.08,1991.09.08 +2582,30-Aug-1991,Provoked,AUSTRALIA,Queensland,"On board the Japanese longline trawler Fukuya No.38, 100 nm northeast of Brisbane",Finning the shark that bit him,A Japanese fisherman from Miyagi,M,36,"Shark bit his arm, nearly severing it PROVOKED INCIDENT",False,"3 m [10'], 270- kg [595-lb] shark","A. Sharpe, pp.107-108",1991.08.30-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.30-fisherman.pdf,1991.08.30,1991.08.30 +2583,26-Aug-1991,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Swimming,Brad Hibshman,M,23,Deep cuts on lower leg,False,sand shark,"Charlotte Observer, 8/27/1991, p.1B",1991.08.26-Hibshman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.26-Hibshman.pdf,1991.08.26,1991.08.26 +2584,12-Aug-1991,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Wading,Jacquelyn Johnson,F,10,Bite to left thigh & calf,False,3' shark,"Vero Beach Press Journal, 8/13/1991, E. Pace, FSAF",1991.08.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.12-Johnson.pdf,1991.08.12,1991.08.12 +2585,09-Aug-1991,Provoked,USA,Florida,Florida Bay,Fishing,Captain John Donnell,M,10,Laceration to right forearm PROVOKED INCIDENT,False,"Lemon shark, 30-lb ","Miami Herald, 8/10/1991, p.2B",1991.08.09-Donnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.08.09-Donnell.pdf,1991.08.09,1991.08.09 +2586,30-Jul-1991,Boating,ITALY,Ligurian Sea,"Portofino, 20 miles offshore, Tigullio Bay, Santa Margherita Ligure (Liguria)",Canoeing,Ivana Iacaccia,F,40,No Injury to occupant; canoe bitten,False,4 m [13'] white shark,"Stars & Stripes, 8/5/1991, p.8; A. De Maddalena; Graffione (1991), Fergusson (1996), Angela et al. (1997)",1991.07.30-Ivana-Iacaccia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.30-Ivana-Iacaccia.pdf,1991.07.30,1991.07.30 +2587,27-Jul-1991,Unprovoked,USA,Florida,"John Pennekamp Marine Park, Monroe County",Snorkeling,Jim Yarber,M,39,Arm bitten,False,"2.1 m [7'], 140-lb reef shark","Miami Herald, 7/31/1991",1991.07.27-Yarber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.27-Yarber.pdf,1991.07.27,1991.07.27 +2588,18-Jul-1991,Unprovoked,USA,Florida,150 miles from Crystal River,Swimming from makeshift raft to life vest after fishing boat sank,Larry Myers,M,42,Punctures in lower abdomen & groin ,False,1.8 m [6'] blacktip shark,"Orlando Sentinel, 7/23/1991, p.A1",1991.07.18-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.18-Myers.pdf,1991.07.18,1991.07.18 +2589,07-Jul-1991,Unprovoked,USA,Florida,"South Miami Beach, Dade County",Swimming,Jorge Garcia,M,22,Arm bitten,False,1.8 m [6'] blacktip shark,"E. Pace, FSAF",1991.07.07-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.07-Garcia.pdf,1991.07.07,1991.07.07 +2590,01-Jul-1991,Unprovoked,REUNION,L'Etang-Salé,"Ravine des Sables, Saint Leu",Surfing,Alain Curco-Llovéra,M,30,Left arm severed,False,"Tiger shark, 3 to 4 m [10' to 13'] ","R.D. Weeks, GSAF, p.303; G. Van Grevelynghe",1991.07.01.b-Llovera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.b-Llovera.pdf,1991.07.01.b,1991.07.01.b +2591,01-Jul-1991,Unprovoked,USA,California,"8.5 miles south of Ano Nuevo State Reserve, Davenport County",Surfing,Eric Larsen,M,32,"Forearm, upper thigh, knee & ankle lacerated",False,5 m [16.5'] white shark,"R. Collier, pp.124-126 ; San Jose Mercury, 7/4/1991; Orlando Sentinel, 7/4/1991, p.A21; 10/6/1991, p.A22 + ",1991.07.01.a-Larsen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.01.a-Larsen_Collier.pdf,1991.07.01.a,1991.07.01.a +2592,July 1991,Unprovoked,USA,Virginia,"Croatan Beach, Virginia Beach, ",Boogie boarding,Michael Hootman,M,13,Severe laceration to foot,False,Shark involvement not confirmed,"Virginia Beach Beacon, 10/15/1991",1991.07.00-Hootman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.07.00-Hootman.pdf,1991.07.00,1991.07.00 +2593,29-Jun-1991,Unprovoked,HONG KONG,"Basalt Island, 9km from Silverstrand","Basalt Island, 9km from Silverstrand",Boogie boarding,male,M,22,fatal,True,Shark involvement not confirmed,J. Wong,1991.06.29-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.29-NV-HongKong.pdf,1991.06.29,1991.06.29 +2594,28-Jun-1991,Unprovoked,HONG KONG,Kowloon Peninsula,Sai Kung,Fishing,male,M,22,fatal,True,Shark involvement not confirmed,"A. MacCormick, pp.103-104 & 235",1991.06.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.28-HongKong.pdf,1991.06.28,1991.06.28 +2595,26-Jun-1991,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Surfing,Joe Bosque,M,18,Hand bitten,False,Shark involvement not confirmed,"Miami Herald, 6/28/1991, p.5B",1991.06.26-JoeBosque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.26-JoeBosque.pdf,1991.06.26,1991.06.26 +2596,07-Jun-1991,Unprovoked,USA,Florida,"Tampa Bay, Hillsborough County",Swimming behind sailboat,Rick Le Prevost,M,31,"Left ankle, calf, thigh and abdomen bitten",False,2.7 m [9'] bull or lemon shark,"Orlando Sentinel; 6/9/1991, p.B3; Ocala Star-Banner, 6/8/1991; St. Petersburg Times, 11/28/1991 ",1991.06.07.b-LePrevost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.b-LePrevost.pdf,1991.06.07.b,1991.06.07.b +2597,07-Jun-1991,Unprovoked,HONG KONG,Port Shelter,"Silverstrand Beach, near Hung Hau ",Swimming ,Yeung Tam-ho (female),F,65,fatal,True,"Tiger shark, >3 m [10']","Sunday Mail, 6/9/91, p.28",1991.06.07.a-YeungTam-ho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.06.07.a-YeungTam-ho.pdf,1991.06.07.a,1991.06.07.a +2598,26-May-1991,Unprovoked,USA,Hawaii,"Ma'ili Beach, O'ahu",Sitting on surfboard,Frank (Scott) Betz,M,23,Right calf bitten,False,2.4 m [8'] shark,"J. Borg, p.79; L. Taylor (1993), pp.110-111",1991.05.26-Betz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.26-Betz.pdf,1991.05.26,1991.05.26 +2599,19-May-1991,Unprovoked,SOUTH AFRICA,Western Cape Province,Gordon’s Bay,Scuba diving,Coen Marais,M,23,"No injury, tank scratched by shark",False,"3.5 m [11.5'] female white shark named ""Notchfin""","M. Levine, GSAF",1991.05.19-Marais-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.05.19-Marais-Jordaan.pdf,1991.05.19,1991.05.19 +2600,24-Apr-1991,Provoked,BRAZIL,Pernambuco,"Praia de Pau Amarelo, Recife",Fishing,L.F.,,23,2 fingers severed by netted shark PROVOKED INCIDENT,False,"170-kg, 2.8 m shark",M. Szpilman,1991.04.24-PauAmarelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.24-PauAmarelo.pdf,1991.04.24,1991.04.24 +2601,16-Apr-1991,Provoked,USA,Maryland,Baltimore Aquarium,Diving,a senior aquarist,,23,Minor injury by captive shark PROVOKED INCIDENT,False,7' female shark,"Washington Post, 4/20/1991",1991.04.16-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16-Kohler.pdf,1991.04.16.b,1991.04.16.b +2602,16-Apr-1991,Unprovoked,USA,Florida,"South of Ponce Inlet, New Smyrna Beach, Volusia County","Surfing, collided with shark",David Kohler,M,22,Right thigh,False,1.2 m to 1.5 m [4' to 5'] shark,"Orlando Sentinel, 4/18/199, p.B3",1991.04.16.b-BaltimoreAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.16.b-BaltimoreAquarium.pdf,1991.04.16.a,1991.04.16.a +2603,03-Apr-1991,Unprovoked,USA,Hawaii,"One'ula Beach Park, 'Ewa Beach, O'ahu",Sitting on surfboard,Todd R. Wenke,M,22,Deep lacerations to calf & ankle,False,"""Shark had a very large girth""","J. Borg, p.79; L. Taylor (1993), pp.110-111",1991.04.03-Wenke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.04.03-Wenke.pdf,1991.04.03,1991.04.03 +2604,03-Mar-1991,Unprovoked,AUSTRALIA,New South Wales,Bass Point,Scuba diving,John Puljak,M,18,Lacerations to arm & leg,False,"Grey nurse shark, 2 m","Sunday Advertiser, 3/5/1991, p.2",1991.03.03-Puliak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.03.03-Puliak.pdf,1991.03.03,1991.03.03 +2605,24-Feb-1991,Unprovoked,USA,Oregon,"Neskowin, Tillamook County",Surfing,Tony Franciscone,M,38,Calf lacerated & board bitten,False,5.5 m [18'] white shark,"R. Collier, pp.122-123",1991.02.24-Franciscone_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.24-Franciscone_Collier.pdf,1991.02.24,1991.02.24 +2606,12-Feb-1991,Unprovoked,SOUTH AFRICA,Western Cape Province,Miller’s Point,Spearfishing,Edward Hayman,M,20,Foot & swim fin bitten,False,5.5 m [18'] white shark,"M. Levine, GSAF",1991.02.12-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.02.12-Hayman.pdf,1991.02.12,1991.02.12 +2607,19-Jan-1991,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming,Michael Sproule,M,35,"Hands, legs & buttocks lacerated",False,5.5 m [18'] white shark,"Sunday Mail, 1/20/1991, p.1",1991.01.19-Sproule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.19-Sproule.pdf,1991.01.19,1991.01.19 +2608,09-Jan-1991,Unprovoked,AUSTRALIA,Western Australia,Scarborough,Surf-skiing,Grant Kenny,M,35,"No injury, shark brushed ski",False,4 m shark,"Courier-Mail, 1/10/1991, p.5",1991.01.09-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.09-Kenny.pdf,1991.01.09,1991.01.09 +2609,Jan-1991,Unprovoked,AUSTRALIA,Queensland,Pelican Banks near Gladstone,Surfing (or sailboarding),Tony Hodgson,M,22,Survived,False,2 m shark,"Courier-Mail, 3/25/1991, p.4",1991.01.00-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1991.01.00-Hodgson.pdf,1991.01.00,1991.01.00 +2610,26-Dec-1990,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Surfing (or sailboarding),male,M,22,Survived,False,Questionable incident,Unverified report,1990.12.26-NV-SouthAfrica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.12.26-NV-SouthAfrica.pdf,1990.12.26,1990.12.26 +2611,28-Nov-1990,Unprovoked,AUSTRALIA,Queensland,Nerang River,Swimming ,Michael Pignolet,M,26,"Abdomen, hip, leg & arm bitten",False,1.5 m shark,"Herald Sun, 11/30/1990, p.34",1990.11.28-Pignolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.28-Pignolet.pdf,1990.11.28,1990.11.28 +2612,03-Nov-1990,Unprovoked,USA,California,"Monastery Beach, Carmel Bay, Monterey County",Scuba diving (but on surface),Eloise Tavares,F,26,Leg bitten,False,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, p.122",1990.11.03-Tavares_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.03-Tavares_Collier.pdf,1990.11.03,1990.11.03 +2613,01-Nov-1990,Unprovoked,USA,Florida,"Spanish River Park Beach, Palm Beach County",Surfing,James Cornell,M,24,"Ear, shoulder, arm, wrist & ear injured",False,5' shark,"Palm Beach Post, 11/3/1990; Miami Herald, 11/2/1990 ",1990.11.01-Cornell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.11.01-Cornell.pdf,1990.11.01,1990.11.01 +2614,30-Oct-1990,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Robert Spratt,M,50,"Hand & wrist bitten, tooth fragments in wound",False,1.8 m [6'] shark ,"S. Jacobson, Orlando Sentinel, 11/1/1990, p. B1; St. Petersburg Times, 11/1/1990; Miami Herald, 11/1/1990",1990.10.30.b-RobertSpratt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.b-RobertSpratt.pdf,1990.10.30.b,1990.10.30.b +2615,30-Oct-1990,Unprovoked,USA,Florida,"Indialantic, Brevard County",Surfing,Mark Evans,M,18,Cuts on left foot ,False,1.8 m [6'] shark ,"S. Jacobson, Orlando Sentinel, 11/1/1990 ",1990.10.30.a-Mark Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.30.a-Mark Evans.pdf,1990.10.30.a,1990.10.30.a +2616,27-Oct-1990,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming,Craig Coleman,M,26,Buttocks & hip bitten,False,1.8 m [6'] shark ,"Sunday Mail (QLD), 10/28/1990, p.1",1990.10.27-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.27-Coleman.pdf,1990.10.27,1990.10.27 +2617,25-Oct-1990,Unprovoked,AUSTRALIA,South Australia,Goolwa Beach,Surfing,male,M,26,Lacerations to foot,False,1.8 m [6'] shark ,"The News, 10/26/1990",1990.10.25-Goolwa-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.25-Goolwa-Surfer.pdf,1990.10.25,1990.10.25 +2618,20-Oct-1990,Unprovoked,USA,Florida,"North end of County Beach, Palm Beach County",Surfing,Carl Demers,M,25,Wrist bitten,False,4' spinner shark,"Palm Beach Post, 10/22/1990 ",1990.10.20-Demers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.20-Demers.pdf,1990.10.20,1990.10.20 +2619,15-Oct-1990,Unprovoked,USA,Hawaii,"Hanalei Point, Kaua'i",Surfing,Greg Filtzer,M,43,"No Injury, board bitten",False,"Tiger shark, 3.7 m [12'] ","G.. Filtzer; G. Ambrose, pp.8-17; J. Borg, p.64",1990.10.15-Filzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.15-Filzer.pdf,1990.10.15,1990.10.15 +2620,12-Oct-1990,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Gabe Martino,M,19,Superficial injuries to left foot & ankle,False,1.8 m to 2.4 m [6' to 8'] shark,"S.L. Jackson, Palm Beach Post, 10/13/1990 ",1990.10.12-GabeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.10.12-GabeMartino.pdf,1990.10.12,1990.10.12 +2621,15-Sep-1990,Unprovoked,SOUTH AFRICA,Western Cape Province,Oudekraal,Spearfishing,Nasri Gasant,M,26,Right hand lacerated,False,5 m [16.5'] white shark,"P. v.d. Walt; G. Cliff, NSB",1990.09.15-Gasant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.15-Gasant.pdf,1990.09.15,1990.09.15 +2622,08-Sep-1990,Unprovoked,USA,California,"Russian Gulch, Jenner, Sonoma County","Free diving / spearfishing, from paddleboard & floating on the surface",Rodney Orr,M,49,"Shark rammed & overturned paddleboard, knocking him into water & bit his head, lacerating his face & neck",False,White shark,R. Collier pp.120-121,1990.09.08-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.08-Orr_Collier.pdf,1990.09.08,1990.09.08 +2623,05-Sep-1990,Boating,USA,California,"Trinidad State Beach, Humboldt County",Kayaking,Matt Hinton,M,44,"No injury, kayak capsized",False,2.5 m to 3 m [8.25' to 10'] white shark,"R. Collier, pp118-119 ",1990.09.05 - Hinton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.09.05 - Hinton_Collier.pdf,1990.09.05,1990.09.05 +2624,30-Aug-1990,Invalid,USA,Florida,"Juno Beach / North Palm Beach, Palm Beach County",SCUBA diving,Michael Mortimer,M,30,"Disappeared, body recovered with large bite on thigh",False,Shark involvement prior to death could not be determined,"Miami Herald, 9/6/1990; Orlando Sentinel, 9/7/1990, p.B4",1990.08.30-Mortimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.30-Mortimer.pdf,1990.08.30,1990.08.30 +2625,28-Aug-1990,Unprovoked,USA,California,"Trinidad Head, Humboldt County",Surfing,Rodney Swan,M,22,4 punctures on leg & board bitten,False,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.116-118",1990.08.28-Swan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.28-Swan_Collier.pdf,1990.08.28,1990.08.28 +2626,19-Aug-1990,Unprovoked,USA,Texas,"Mustang Island, Nueces County",Surfing,male,M,22,Minor cuts to foot,False,5 m to 6 m [16.5' to 20'] white shark,"Dallas Morning News, 8//22/1990",1990.08.19.b-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.b-Surfer.pdf,1990.08.19.b,1990.08.19.b +2627,19-Aug-1990,Unprovoked,USA,Texas,"Near Port Aransas, Nueces County",Wade fishing,Jimmy Allen,M,18,Minor injury,False,5 m to 6 m [16.5' to 20'] white shark,"Dallas Morning News, 8//22/1990",1990.08.19.a-b-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.08.19.a-b-Allen.pdf,1990.08.19.a,1990.08.19.a +2628,22-Jul-1990,Unprovoked,USA,Texas,"Mustang Island State Park, Nueces County",Wading,Barbara Green,F,53,10-inch laceration to right foot,False,5 m to 6 m [16.5' to 20'] white shark,"Paris News, 7/23/1990",1990.07.22-Greem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.22-Greem.pdf,1990.07.22,1990.07.22 +2629,08-Jul-1990,Unprovoked,USA,Florida,"Perdido Key near the Florida Panhandle, Escambia County",Surfing,Scott Holloway,M,17,Minor injury to left ankle & foot,False,5 m to 6 m [16.5' to 20'] white shark,"Orlando Sentinel, 7/8/1990, p.B.1",1990.07.08-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.07.08-Holloway.pdf,1990.07.08,1990.07.08 +2630,24-Jun-1990,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Scuba diving (but on surface),Monique Price,F,21,fatal,True,"4.5 m [14'9""] white shark","A Gifford, G. Cliff, GSAF",1990.06.24 - Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.24 - Price.pdf,1990.06.24,1990.06.24 +2631,23-Jun-1990,Unprovoked,BAHAMAS,Bimini,Bimini,Spearfishing,Bruce Cease,M,38,Left forearm bitten,False,1.2 m to 1.5 m [4' to 5'] shark,"Miami Herald, 6/25/1990",1990.06.23-Cease.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.06.23-Cease.pdf,1990.06.23,1990.06.23 +2632,13-May-1990,Provoked,SOUTH AFRICA,KwaZulu-Natal,Protea Reef,Fishing,"skiboat Double One, occupants: Anton & Michelle Gets, Ray Whitaker, John & Lyn Palmer",,38,"No injury to occupants, hooked shark freed itself, then rammed stern of boat PROVOKED INCIDENT",False,"6 m, 600-kg shark","G. Charter, GSAF",1990.05.13-DoubleOne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.13-DoubleOne.pdf,1990.05.13,1990.05.13 +2633,10-May-1990,Unprovoked,AUSTRALIA,Queensland,Outer Barrier Reef near Port Douglas,Snorkeling, Sydney woman,F,30s,Lacerations,False,2 m hammerhead,"Courier-Mail, 5/11/1990, p.1",1990.05.10.b-Sydney-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.b-Sydney-woman.pdf,1990.05.10,1990.05.10 +2634,10-May-1990,Unprovoked,AUSTRALIA,Queensland,Outer Barrier Reef near Port Douglas,"Snorkeling, possibly holding a fish",German male,M,30s,Lacerations,False,2 m hammerhead,"Courier-Mail, 5/11/1990, p.1",1990.05.10.a-German-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.10.a-German-male.pdf,1990.05.10,1990.05.10 +2635,06-May-1990,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cintsa East,Resting on surfboard,Richard Forrester,M,22,Thigh severely lacerated,False,"5.5 m [18'] white shark, identified by witnesses & tooth marks","R. Forrester, M. Levine, GSAF",1990.05.06-Forrester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.05.06-Forrester.pdf,1990.05.06,1990.05.06 +2636,14-Apr-1990,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Lying on surfboard & paddling,Conrad Botha,M,23,Leg bitten,False,"2.3 m [7.5'] white shark, identified by M. Smale",M. Smale,1990.04.14-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.14-Botha.pdf,1990.04.14,1990.04.14 +2637,09-Apr-1990,Unprovoked,AUSTRALIA,Queensland,Greenmount Beach,Surfing,Mark Fleming,M,31,"Lacerations & abrasions, board bitten in half",False,"Tiger shark, 3 m ","Herald, 4/10/1990, p.4 & 4/11/1990, p.1",1990.04.09-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.09-Fleming.pdf,1990.04.09,1990.04.09 +2638,08-Apr-1990,Unprovoked,AUSTRALIA,Queensland,"Dingo Reef, 80 nm off Townsville",Free diving for trochus,Robert Bullen,M,37,fatal,True,"Tiger shark, 3 m ","Courier-Mail, 4/12/1990, p.5",1990.04.08-Bullen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.08-Bullen.pdf,1990.04.08,1990.04.08 +2639,07-Apr-1990,Unprovoked,AUSTRALIA,Queensland,Fingal Beach,Surfing,"male, an American tourist",M,37,"No injury, board broken in two",False,3 m shark,"Herald, 4/10/1990, p.4",1990.04.07-AmericanTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.07-AmericanTourist.pdf,1990.04.07,1990.04.07 +2640,06-Apr-1990,Unprovoked,AUSTRALIA,Queensland,Fingal Beach,Surfing,Tony Patton,M,29,"No injury, board bitten",False,3 m shark,"Herald, 4/10/1990, p.4",1990.04.06-TonyPatton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.06-TonyPatton.pdf,1990.04.06,1990.04.06 +2641,01-Apr-1990,Unprovoked,USA,Hawaii,"Silver (Silva) Channels, Waialua, O'ahu",Sitting on surfboard,Everett Peacock,M,29,"Ankle lacerated, lower left leg severely abraded ",False,3 m shark,"J. Borg, p.79; L. Taylor (1993), pp.110-111",1990.04.01-Peacock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.04.01-Peacock.pdf,1990.04.01,1990.04.01 +2642, 24-Mar-1990,Unprovoked,FIJI,Laucala Island,Laucala Island,Swimming,Ola Stillman Rockefeller,M,30,Lacerations to right leg,False,3 m shark,"The News, 3/27/1990, p.6",1990.03.24-Rockefeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.24-Rockefeller.pdf,1990.03.24,1990.03.24 +2643,05-Mar-1990,Unprovoked,REUNION,Sainte-Marie,Baie de la Mare,Surfing,Wagner Cataldo-Beugleu,M,30,Survived,False,3 m [10'] bull shark,G. Van Grevelynghe,1990.03.05-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.03.05-Reunion.pdf,1990.03.05,1990.03.05 +2644,17-Feb-1990,Unprovoked,USA,Hawaii,"Mokapu, Kane'ohe Marine Air Corps Station, O'ahu",Scuba diving & spearfishing,Roy T. Tanaka,M,30,fatal,True,Two sharks seen in vicinity: 2.4 m & 4.25 m [8' & 14'] TL,"J. Borg, pp.78-79; L. Taylor (1993) pp.110-111",1990.02.17-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.17-Tanaka.pdf,1990.02.17,1990.02.17 +2645,05-Feb-1990,Unprovoked,USA,Florida,"Monster Hole, Sebastian Inlet, Indian River County",Board sailing,Bruce Ferguson,M,33,Foot bitten,False,Two sharks seen in vicinity: 2.4 m & 4.25 m [8' & 14'] TL,"Orlando Sentinel, Feb 9, 1990. pg. B.3",1990.02.05-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.02.05-Ferguson.pdf,1990.02.05,1990.02.05 +2646,12-Jan-1990,Unprovoked,USA,California,"Montera Beach, San Mateo County",Surfing (sitting on his board),Sean Sullivan,M,33,"No injury, board bitten",False,3 m to 4 m [10' to 13'] white shark,"J. McCosker & R.N. Lea; R. Collier, p. 116 ; A. MacCormick, p.67",1990.01.12-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.01.12-Sullivan_Collier.pdf,1990.01.12,1990.01.12 +2647,1990,Unprovoked,USA,Florida,"Pensacola, Escambia County",Surfing,male,M,17,UNKNOWN,UNKNOWN,3 m to 4 m [10' to 13'] white shark,male,1990.00.00-NV-Pensacola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1990.00.00-NV-Pensacola.pdf,1990.00.00,1990.00.00 +2648,19-Dec-1989,Provoked,USA,Hawaii,"90 miles east of Hilo, Hawai'i",On board 51' fishing vessel One Ki,George Sohswel,M,17,Left leg & foot bitten by shark brought onboard. PROVOKED INCIDENT,False,3 m to 4 m [10' to 13'] white shark,"J. Borg, p.78; L. Taylor (1993), pp.108-109",1989.12.19-Sohswel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.19-Sohswel.pdf,1989.12.19,1989.12.19 +2649,03- Dec-1989,Unprovoked,AUSTRALIA,Northern Territory,Gove Peninsula near Darwin,On board 51' fishing vessel One Ki,Ryan Johnson,M,17,"No details, ""recovering in Darwin Hospital""",UNKNOWN,"Tiger shark, 2m ","Courier-Mail, 12/6/1989",1989.12.03-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.03-Johnson.pdf,1989.12.03,1989.12.03 +2650,02-Dec-1989,Invalid,AUSTRALIA,Queensland,Fraser Island,Swimming,Michael Preston,M,27,"Swept out to sea, feared taken by shark",False,Shark involvement prior to death was not confirmed,"The Advertiser, 12/4/1989, p.2",1989.12.02-Preston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.12.02-Preston.pdf,1989.12.02,1989.12.02 +2651,22-Nov-1989,Unprovoked,AUSTRALIA,Victoria,Kilcunda,Surfing,Gary White,M,32,Thigh bitten,False,White shark,"Courier-Mail, 11/24/1989, p.3; J. West, ASAF",1989.11.22-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.22-White.pdf,1989.11.22,1989.11.22 +2652,18-Nov-1989,Unprovoked,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Free diving & spearfishing,Gerjo Van Niekerk,M,29,fatal,True,White shark,"M. Levine, GSAF",1989.11.18-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.18-VanNiekerk.pdf,1989.11.18,1989.11.18 +2653,12-Nov-1989,Invalid,USA,Hawaii,"Ehukai Beach Park, Sunset Beach, O'ahu","Wading, knocked down & swept away by large waves",Edward Malek,M,29,Lower porton of body recovered 3 days later. Note: rare sighting of shark made at same beach on 11-5-1989 ,False,Shark involvement prior to death was not confirmed,"J. Borg, p.78; L. Taylor (1993), pp.108-109",1989.11.12-Malek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.12-Malek.pdf,1989.11.12,1989.11.12 +2654,02-Nov-1989,Unprovoked,AUSTRALIA,Queensland,Mermaid Waters,Swimming in canal,Kristoffer Fredriksen,M,10,Left ankle broken & lacerated,False,"2 m shark, possibly a bronze whaler","Courier-Mail, 11/7/1989, p.3",1989.11.02-Fredriksen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.11.02-Fredriksen.pdf,1989.11.02,1989.11.02 +2655,Reported 29-Oct-1989,Unprovoked,AUSTRALIA,Northern Territory,Edith Falls,Swimming,Christine Kaesler,F,31,Puncture marks to right calf,False,"2 m shark, possibly a bronze whaler","Sunday Mail, 10/29/1989",1989.10.29.R-Kaesler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.29.R-Kaesler.pdf,1989.10.29.R,1989.10.29.R +2656,22-Oct-1989,Unprovoked,AUSTRALIA,Tasmania,Shelly Point ,Surfing,Steven Jillet,M,17,"No injury, board bitten",False,2.7 m [9'] white shark,"Hobart Mercury, 10/23/1989, p.1; C. Black, pp 163-167",1989.10.22-Jillet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.22-Jillet.pdf,1989.10.22,1989.10.22 +2657,14-Oct-1989,Invalid,USA,Hawaii,"Kahe Point, O'ahu",Scuba diving,"Ray Mehl, Jr.",M,17,"Disappeared 15 minutes into shallow dive. Decapitated body minus arm found by divers the following morning, then a large tiger shark appeared and consumed most of remains",False,Shark involvement suspected but not confirmed,"Washington Post, 10/17/1989, J. Borg, pp.77-78; L. Taylor (1993), pp.108-109",1989.10.14-Mehl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.14-Mehl.pdf,1989.10.14,1989.10.14 +2658,11-Oct-1989,Unprovoked,USA,Texas,Surfside Beach,Surfing,Jason Largent,M,12,Foot & leg bitten,False,4' shark,"Austin American Statesman, 10/13/1989, p.B6",1989.10.11-Largent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.11-Largent.pdf,1989.10.11,1989.10.11 +2659,08-Oct-1989,Invalid,USA,North Carolina,"Between Wrightsville Beach & Carolina Beach, New Hanover County",Diving,Doug Nunnally,M,49,fatal,True,Shark involvement suspected but not confirmed,"C. Creswell, GSAF & Search & Rescue diver, New Hanover County; F. Schwartz ",1989.10.08-Nunnally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.08-Nunnally.pdf,1989.10.08,1989.10.08 +2660,01-Oct-1989,Unprovoked,AUSTRALIA,Victoria,"Surfers Point, Phillip Island",Surfing,John Benson,M,49,No details,UNKNOWN,White shark,"J. West, ASAF",1989.10.01-Benson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.10.01-Benson.pdf,1989.10.01,1989.10.01 +2661,17-Sep-1989,Unprovoked,SOUTH AFRICA,Western Cape Province,"Smitswinkel, False Bay",Free diving,Gerjo Van Niekerk,M,29,Chest lacerated,False,"White shark, identified by tooth pattern","G.v.Niekerk, C. Walker, M.Levine, GSAF",1989.09.17-GerjoVanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.17-GerjoVanNiekerk.pdf,1989.09.17,1989.09.17 +2662,13-Sep-1989,Provoked,USA,Florida,"Gulf of Mexico, 22 miles from Pensacola","Fishing, stepped on hooked shark's head",Charles N. Swafford,M,51,Bitten by hooked shark PROVOKED INCIDENT,False,150-lb shark,"Miami Herald, 9/15/1989",1989.09.13-Swafford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.13-Swafford.pdf,1989.09.13,1989.09.13 +2663,10-Sep-1989,Boat,USA,California,"Off Palos Verdes Estates, Los Angeles",Observing a shark feeding on a carcass of a humpback whale,11.6 m fibreglass boat. Occupants: Tony DeCriston & Dan Fink,,51,No injury to occupants. Shark bit boat's swim step & repeatedly pushed the boat away whenever if came within 4 to 5 m of the whale carcass,False,4 to 5 m white shark,R. Collier,1989.09.10-DeCristo_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.10-DeCristo_Collier.pdf,1989.09.10,1989.09.10 +2664,09-Sep-1989,Unprovoked,USA,California,"Southeast Farallon Island, Farallon Islands",Hookah diving for abalone (descending),Mark Tisserand,M,38,Leg bitten,False,4 m to 5 m [13' to 16.5'] white shark,"R. Collier, pp.110-112 ",1989.09.09-Tisserand_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09-Tisserand_Collier.pdf,1989.09.09.b,1989.09.09.b +2665,09-Sep-1989,Unprovoked,USA,North Carolina,"Salvo, Dare County",Surfing,Robert Ballard,M,31,fatal,True,Sandbar shark,"C. Creswell, GSAF",1989.09.09.a-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.09.a-Ballard.pdf,1989.09.09.a,1989.09.09.a +2666,03-Sep-1989,Provoked,USA,California,24 km off Santa Catalina Island in the Channel Islands,Filming 5' blue shark,Larry Stroup,M,46,Hand & both arms bitten PROVOKED INCIDENT,False,Blue Shark ,"R. Collier, p. xxvi; Orlando Sentinel, 9/6/1989, p.3A",1989.09.03-Stroup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.09.03-Stroup.pdf,1989.09.03,1989.09.03 +2667,29-Aug-1989,Provoked,AUSTRALIA,Queensland,SeaWorld Theme Park,Feeding fish,Mike Richardson,M,30,Left leg bitten by captive shark PROVOKED INCIDENT,False,Grey nurse shark,"The Canberra Times, 9/1/1989",1989.08.29-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.29-Richardson.pdf,1989.08.29,1989.08.29 +2668,22-Aug-1989,Unprovoked,USA,Florida,"St Augustine, St Johns County",Swimming,Anthony McKnight,M,21,3 wounds on left hand,False,1.2 m [4'] shark,"Orlando Sentinel, 8/24/1989. p.B1",1989.08.22.b-McKnight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.b-McKnight.pdf,1989.08.22.b,1989.08.22.b +2669,22-Aug-1989,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Niko von Broembsen,M,21,Multiple Injuries,False,>3.4 m [11'] white shark,"N.v.Broembsen; M. Levine, GSAF",1989.08.22.a-vonBroembsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.22.a-vonBroembsen.pdf,1989.08.22.a,1989.08.22.a +2670,13-Aug-1989,Unprovoked,AUSTRALIA,New South Wales,Lennox Head,Surfing,Michael Guy,M,17,"No injury, shark took chunk out of surfboard",False,"Bronze whaler shark, 3 m [10'] ","Sydney Morning Herald, 8/14/1989, p.3; Courier Mail, 8/19/1989, p.2",1989.08.13-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.13-Guy.pdf,1989.08.13,1989.08.13 +2671,09-Aug-1989,Unprovoked,BAHAMAS,Great Exuma Island,Highborn Cay,Spearfishing,Judy St. Clair,F,31,Severe hand and arm injuries; right hand surgically amputated,False,"Bronze whaler shark, 3 m [10'] ","Orlando Sentinel, 8/10/1989, pp B3 & B5; Palm Beach Post, 8/15/1989 +",1989.08.09-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.09-StClair.pdf,1989.08.09,1989.08.09 +2672,Reported 06-Aug-1989,Provoked,AUSTRALIA,Queensland,Moreton Bay,Fishing for sharks,Vic Hislop,M,41,Laceration to arm PROVOKED INCIDENT,False,3.5 m white shark,"Sunday Mail, 8/6/1989",1989.08.06.R-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.08.06.R-Hislop.pdf,1989.08.06.R,1989.08.06.R +2673,27-Jul-1989,Invalid,BERMUDA,unknown,unknown,Scuba diving,Russian male,M,35,fatal,True,Shark involvement suspected but not confirmed,"LA Times, 7/28/1989",1989.07.27-SovietDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.27-SovietDiver.pdf,1989.07.27,1989.07.27 +2674,20-Jul-1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Edward Razzano,M,34,Torso bitten,False,2.5 m [8.25'] white shark," E. Razzano & R. Joseph; M. Levine, GSAF",1989.07.20-Razzano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.20-Razzano.pdf,1989.07.20,1989.07.20 +2675,19-Jul-1989,Unprovoked,REUNION,Sainte-Suzanne,Temple Tamoule,Surfing,Bruno Giraud ,M,34,fatal,True,2.5 m [8.25'] white shark,"Clicanoo, le journal de l'Ile de la Réunion",1989.07.19-Giraud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.19-Giraud.pdf,1989.07.19,1989.07.19 +2676,14-Jul-1989,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,John O'Brien,M,16,5-inch gash on left leg,False,2.5 m [8.25'] white shark,"Orlando Sentinel, 7/17/1989",1989.07.14-JohnO'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.14-JohnO'Brien.pdf,1989.07.14,1989.07.14 +2677,07-Jul-1989,Unprovoked,USA,Texas,"Sargent Beach, Matagorda County",Playing ,Rene Richbourg,F,9,Leg bitten,False,4' shark,"Austin American Statesman, 7/11/1989, B4 & 10/13/1989, p.B6",1989.07.07-Richbourg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.07.07-Richbourg.pdf,1989.07.07,1989.07.07 +2678,29-Jun-1989,Unprovoked,USA,Hawaii,"Anahola, Kaua'i",Fell off surfboard 20' from shore,Anthony Paden,M,9,Foot & ankle severely bitten,False,4' shark,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.06.29-Paden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.29-Paden.pdf,1989.06.29,1989.06.29 +2679,17-Jun-1989,Unprovoked,USA,Louisiana,40 miles off Cocodrie,Spearfishing,Carl Loe,M,45,Puncture wounds & lacerations to both legs,False,1.8 m [6'] sandtiger shark,"The Advocate (Baton Rouge, La.), 6/21/1989",1989.06.17-Loe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.17-Loe.pdf,1989.06.17,1989.06.17 +2680,06-Jun-1989,Unprovoked,ITALY,Tuscany,"Marinella, between Punta Blanca & Marine del Carrara ",Windsurfing (urinating on his board),Ezio Bocedi,M,45,Upper right thigh bitten,False,3 m [10'] white shark,"I. Fergusson, MEDSAF",1989.06.06-Bocedi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.06-Bocedi.pdf,1989.06.06,1989.06.06 +2681,05-Jun-1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Jeffreys Bay,Surfing,Roniel Jacobs,M,16,"No injury, board bitten",False,3 m [10'] white shark,"R. Jacobs, R. Joseph; M. Levine, GSAF ",1989.06.05-Jacobs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.05-Jacobs.pdf,1989.06.05,1989.06.05 +2682,03-Jun-1989,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie,Free diving,Leon Krouse,M,28,Forearm bitten,False,2.5 m [8.25'] white shark,"M. Levine, L. Krouse, P. Sachs, GSAF",1989.06.03-Krouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.03-Krouse.pdf,1989.06.03,1989.06.03 +2683,Jun-1989,Invalid,JAPAN,Sea of Japan,Sea of Japan,Free diving,male,M,28,"Doubtful incident, needs investigation",False,2.5 m [8.25'] white shark,K. Nakaya,1989.06.00-Sea-of-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.06.00-Sea-of-Japan.pdf,1989.06.00,1989.06.00 +2684,23-Apr-1989,Unprovoked,USA,Florida,"Loggerhead Park, Juno Beach, Palm Beach County",Swimming,Scott Scherger,M,19,Right calf bitten,False,1.2 m [4'] shark,"Palm Beach Post, April 27, 1989 ",1989.04.23-Scherger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.23-Scherger.pdf,1989.04.23,1989.04.23 +2685,12-Apr-1989,Unprovoked,USA,Washington,"Pacific Beach, Grays Harbor County",Surfing (lying prone on his board),Robert Harms,M,19,Forearm bitten,False,White shark,"R. Collier, p.110; J. McCosker & R.N. Lea ",1989.04.12-Harms_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.12-Harms_Collier.pdf,1989.04.12,1989.04.12 +2686,09-Apr-1989,Boat,USA,California,"Monterey Bay, Monterey County",Surfing (lying prone on his board),10.7 m boat. Occupants: John Capella & friends,,19,No injury to occupants. Shark rammed boat 4 times,False,5 m to 7 m white shark,R. Collier,1989.04.09-Capella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.09-Capella.pdf,1989.04.09,1989.04.09 +2687,03-Apr-1989,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Paddling on surfboard,Sam McLain,M,19,Calf lacerated,False,5 m to 7 m white shark,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.04.03-McLain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.03-McLain.pdf,1989.04.03,1989.04.03 +2688,Apr-1989,Unprovoked,USA,Hawaii,"Kekaha Beach, Kaua'i",Paddling on surfboard,William P. Allen,M,19,"Board rammed by shark, skegs knocked loose & 5' strip of fiberglass torn off, thigh scratched by shark’s teeth",False,5 m to 7 m white shark,"J. Borg, p.77; L. Taylor (1993), pp.108-109",1989.04.00-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.04.00-Allen.pdf,1989.04.00,1989.04.00 +2689,09-Mar-1989,Unprovoked,AUSTRALIA,South Australia,"Waitpinga Beach, near Victor Harbor, Encounter Bay",Surfing,Matthew Foale,M,27,fatal,True,2 m [6.75'] white shark,"Courier-Mail, 3/11/1989, p.5; J. West, ASAF",1989.03.09-Foale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.09-Foale.pdf,1989.03.09,1989.03.09 +2690,04-Mar-1989,Boating,AUSTRALIA,Western Australia,Near Broome in Roebuck Bay,Kayaking,Kim Courtenay ,M,27,"No injury, but the kayak was bitten by the shark",False,"Tiger shark, 3.5 m ","K. Courtenay; T. Peake, GSAF",1989.03.04-Courtenay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.03.04-Courtenay.pdf,1989.03.04,1989.03.04 +2691,19-Feb-1989,Provoked,SOUTH AFRICA,Western Cape Province,Western Cape Province,Fishing,Kobus de Jager,M,27,Thigh lacerated & abraded PROVOKED INCIDENT,False,3 m [10'] gaffed shark,"Sunday Times, 2/19/1989",1989.02.19.R-DeJager.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.19.R-DeJager.pdf,1989.02.19,1989.02.19 +2692,15-Feb-1989,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Windsurfing,Nico Abel,M,26,Foot bruised & minor lacerations,False,3 m [10'] gaffed shark,"G. Cliff, NSB",1989.02.15-Abel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.15-Abel.pdf,1989.02.15,1989.02.15 +2693,02-Feb-1989,Unprovoked,ITALY,Tyrrhenian Sea,"Golfo di Baratti, near Piombino (Tuscany)","Scuba diving, but swimming on surface",Luciano Costanzo,M,47,fatal,True,6 m [20'] white shark,"A. De Maddalena; Cappelletti (1989a), Bertuccelli (1989), Giudici & Fino (1989), Biagi (1989), Albertarelli (1989); I. Fergusson, MEDSA; C. Moore, GSAF",1989.02.02-Constanzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.02.02-Constanzo.pdf,1989.02.02,1989.02.02 +2694,26-Jan-1989,Invalid,USA,California,"Latigo Point / Paradise Cove, west of Malibu, Los Angeles County",Kayaking,Roy Jeffrey Stoddard,M,24,Reported by media as shark attack but forensic evidence indicated the kayaker died prior to any shark involvement,False,Invalid,"R. Collier, pp.106-109",1989.01.26.b-Stoddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.b-Stoddard.pdf,1989.01.26.b,1989.01.26.b +2695,26-Jan-1989,Unprovoked,USA,California,"Latigo Point / Paradise Cove,west of Malibu, Los Angeles County",Kayaking,Tamara McAllister,F,24,fatal,True,5 m [16.5'] white shark,"R. Collier, pp.106-109",1989.01.26.a-McAllister_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.26.a-McAllister_Collier.pdf,1989.01.26.a,1989.01.26.a +2696,20-Jan-1989,Unprovoked,USA,Hawaii,"Waialua Beach, Moloka'i",Body boarding,Earl Dunnam,M,10,Foot bitten,False,1.8 m to 2.4 m [6' to 8'] hammerhead shark,"J. Borg, p.77",1989.01.20.b-Dunnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.b-Dunnam.pdf,1989.01.20.b,1989.01.20.b +2697,20-Jan-1989,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Lifesaving drill,Sudesh Sarjoo,M,19,Thigh bitten,False,1.8 m to 2.4 m [6' to 8'] hammerhead shark,"S. Sarjoo, M. Levine, G. Thompson, G. Charter, M. Anderson-Read, G. Cliff & S. Dudley, GSAF",1989.01.20.a-Sarjoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.20.a-Sarjoo.pdf,1989.01.20.a,1989.01.20.a +2698,08-Jan-1989,Unprovoked,USA,Hawaii,"Wailua, Kaua'i",Swimming in strong current with 3 others when he disappeared,Ken Ahlstrand,M,19,fatal,True,1.8 m to 2.4 m [6' to 8'] hammerhead shark,"J. Borg, p.77; L. Taylor (1993), pp.106-107",1989.01.08-Ahlstrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.08-Ahlstrand.pdf,1989.01.08,1989.01.08 +2699,03-Jan-1989,Unprovoked,AUSTRALIA,New South Wales,"Half Tide Beach, Evans Head",Surfing with dolphins,Adam Maguire (McGuire),M,17,"Abdomen lacerated, surfboard holed",False,"Tiger shark, 4 m [13'] ","Courier Mail, 1/4/1989, p.1; Herald, 1-4/1989, p.1; Miami Herald, 1/5/1989; A. Sharpe, p.87",1989.01.03-McGuire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.01.03-McGuire.pdf,1989.01.03,1989.01.03 +2700,1989,Unprovoked,PAPUA NEW GUINEA,New Ireland,Kavieng,"Scuba diving, hand feeding sharks",Dinah Halstead,F,17,Thigh & calf bitten,False,7' silvertip shark,"S. Waterman, GSAF",1989.00.00.b-Halstead,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.b-Halstead,1989.00.00.b,1989.00.00.b +2701,1989,Unprovoked,USA,Virginia,"Coral Gardens Reef, 6 miles SSE of Chicoteague Inlet",Spearfishing using scuba & trailing a string of bleeding fish,male,M,17,"No injury, shark grabbed his fish and chased him to the boat",False,7' silvertip shark,J. Musick,1989.00.00.a-Virginia-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00.a-Virginia-spearfisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1989.00.00-Virginia-spearfisherman.pdf,1989.00.00.a,1989.00.00.a +2702,15-Dec-1988,Unprovoked,CHILE,Valpariso Province,Valpariso,Skindiving,Juan Tapia-Avalos,M,17,fatal,True,16' white shark,J. McCosker & A. Engana,1988.12.15-Avalos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.12.15-Avalos.pdf,1988.12.15,1988.12.15 +2703,08-Nov-1988,Sea Disaster,AUSTRALIA,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Bruce Coucom,M,17,fatal,True,16' white shark,"H. Edwards, pp.115-116",1988.11.08-BruceCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.08-BruceCoucom.pdf,1988.11.08,1988.11.08 +2704,07-Nov-1988,Sea Disaster,AUSTRALIA,Queensland,"Off North Keppel Island, off Yeppoon","The Christie V sank on 11/6/1988, survivors were adrift on a dinghy",Cedric Coucom,M,62,fatal,True,16' white shark,"H. Edwards, pp.115-116",1988.11.07-CedricCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.11.07-CedricCoucom.pdf,1988.11.07,1988.11.07 +2705,24-Oct-1988,Sea Disaster,PHILIPPINES,Viscayan Sea,Viscayan Sea,The MV Dona Marilyn sank in Typhoon Unsang with the loss of 389 lives,"Straits Times, 11/5/1988",,62,fatal,True,16' white shark,"Straits Times, 11/5/1988",1988.10.24-DonaMarilyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.24-DonaMarilyn.pdf,1988.10.24,1988.10.24 +2706,23-Oct-1988,Unprovoked,USA,Oregon,"Indian Beach, Ecola State Park, just north of Cannon Beach, Clatsop County ",Surfing (sitting on his board),Wyndham Kapan,M,21,Leg bitten & femur fractured,False,5.5 m to 6 m [18' to 20'] white shark,"R. Collier, pp.104-106",1988.10.23-Kapan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.23-Kapan_Collier.pdf,1988.10.23,1988.10.23 +2707,22-Oct-1988,Unprovoked,AUSTRALIA,Victoria,Phillip Island,Surfing,John Wonham,M,38,Lacerations to right leg,False,7' shark,"Miami Herald, 10/26/1988",1988.10.22-Wonham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.22-Wonham.pdf,1988.10.22,1988.10.22 +2708,14-Oct-1988,Unprovoked,USA,Florida,"Boca Raton, Palm Beach County",Surfing,Aaron Shulman,M,15,Lacerations to left thigh,False,6' shark,"Boca Raton News, 10/15/1988",1988.10.14-Shulman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.14-Shulman.pdf,1988.10.14,1988.10.14 +2709,11-Oct-1988,Unprovoked,USA,Florida,"Fort Pierce, St. Lucie County ",Surfing,John L. Goodson,M,30,Left leg lacerated,False,1.2 m to 1.5 m [4' to 5'] shark,"St. Petersburg Times 10/13/1988, p.2B",1988.10.11-Goodson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.11-Goodson.pdf,1988.10.11,1988.10.11 +2710,10-Oct-1988,Unprovoked,USA,Florida,"Playalinda, Brevard County",Surfing,Patrick Turowski,M,23,Hand lacerated,False,1.2 m to 1.5 m [4' to 5'] shark,"G. Taylor, Orlando Sentinel, 10/12/1988, p.D3",1988.10.10-Turowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.10-Turowski.pdf,1988.10.10,1988.10.10 +2711,06-Oct-1988,Unprovoked,AUSTRALIA,South Australia,Moama Beach,Surfing,Murray Taylor,M,15,Lower right leg lacerated,False,1.2 m to 1.5 m [4' to 5'] shark,"Herald, 10/7/1988, p.5; Hobart Mercury, 10/8/1988, p.3",1988.10.06-MurrayTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.06-MurrayTaylor.pdf,1988.10.06,1988.10.06 +2712,Oct-1988,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Wading,Sally Jo Scott,F,23,Leg lacerated,False,1.2 m [4'] shark,C.L. Call,1988.10.00-SallyJoScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.10.00-SallyJoScott.pdf,1988.10.00,1988.10.00 +2713,28-Sep-1988,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Chris Garvin,M,21,Lacerations to foot,False,5' shark,"News-Journal, 9/29/1988",1988.09.28-Garvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.28-Garvin.pdf,1988.09.28,1988.09.28 +2714,13-Sep-1988,Unprovoked,USA,Florida,"Shell Island Panama City Beach, Bay County",Walking,Dennis & Ann Hadden,F,21,Dennis' hand injured; Ann's right forearm bitten,False,1.8 m [6'] shark,"M. Womack, News Herald; Orlando Sentinel, 9/18/1988, p. B4",1988.09.13.b-Hadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.b-Hadden.pdf,1988.09.13.b,1988.09.13.b +2715,13-Sep-1988,Unprovoked,USA,Florida,"Shell Island Panama City Beach, Bay County",Snorkeling,John P. Martin ,M,38,fatal,True,3 m [10'] bull shark,"M. Womack, News Herald",1988.09.13.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.09.13.a-Martin.pdf,1988.09.13.a,1988.09.13.a +2716,22-Aug-1988,Provoked,USA,Louisiana,New Orleans,Diving in Sharkey's Reef restaurant’s aquarium,Wiley Beevers,M,38,Arm bitten by captive shark PROVOKED INCIDENT,False,"Tiger shark, 1.8 m [6']","New Orleans Times-Picayune, 8/23/1988; Orlando Sentinel. Orlando, Fla.: Aug 24, 1988. p.. A.8; Miami Herald, 8/24/1988",1988.08.22.b-Beevers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.b-Beevers.pdf,1988.08.22.b,1988.08.22.b +2717,22-Aug-1988,Unprovoked,ITALY,Manfredonia ,Ippocampo,Diving in Sharkey's Reef restaurant’s aquarium,male,M,16,Survived,False,"Tiger shark, 1.8 m [6']","C. Moore, GSAF",1988.08.22.a-Ippocampo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.22.a-Ippocampo.pdf,1988.08.22.a,1988.08.22.a +2718,19-Aug-1988,Unprovoked,JAPAN,Tokyo Prefecture,Ogasawara Islands,Diving in Sharkey's Reef restaurant’s aquarium,male,M,16,Survived,False,"Tiger shark, 1.8 m [6']",K. Nakaya,1988.08.19-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.19-Japan.pdf,1988.08.19,1988.08.19 +2719,11-Aug-1988,Unprovoked,USA,California,"Klamath River, Del Norte County",Surfing,Carl Lafazio,M,27,Thigh bitten,False,2.4 m to 3 m [8' to 10'] white shark,"R. Collier, pp.102-104",1988.08.11-LaFazio_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.08.11-LaFazio_Collier.pdf,1988.08.11,1988.08.11 +2720,23-Jul-1988,Unprovoked,BAHAMAS,unknown,unknown,Free diving & spearfishing ,Kenny Isham,M,27,Hand bitten,False,2 m to 2.5 m shark,"E. Pace, FSAF",1988.07.23-Isham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.23-Isham.pdf,1988.07.23,1988.07.23 +2721,19-Jul-1988,Unprovoked,BAHAMAS,unknown,unknown,Spearfishing on scuba,Larry Press,M,28,Cheek bitten,False,1.5 m [5'] Caribbean reef shark,"E. Pace, FSAF",1988.07.19-Press.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.19-Press.pdf,1988.07.19,1988.07.19 +2722,17-Jul-1988,Unprovoked,BAHAMAS,unknown,unknown,Diving,Doug Perrine,M,35,Right palm lacerated,False,1.5 m [5'] Caribbean reef shark,"E. Pace, FSAF",1988.07.17-Perrine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.17-Perrine.pdf,1988.07.17,1988.07.17 +2723,11-Jul-1988,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,female,F,15,Punctures & deep scratches to foot & buttock,False,1.5 m [5'] Caribbean reef shark,"Miami Herald, 7/12/1988, p.1B",1988.07.11-female_Jensen Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.11-female_Jensen Beach.pdf,1988.07.11,1988.07.11 +2724,04-Jul-1988,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Boogie boarding,Ray Bourgeois,M,37,Punctures to lower left leg & foot,False,1.5 m [5'] Caribbean reef shark,"News-Journal, 7/5/1988",1988.07.04.b-Bourgeois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.b-Bourgeois.pdf,1988.07.04.b,1988.07.04.b +2725,04-Jul-1988,Unprovoked,BAHAMAS,unknown,unknown,Snorkeling,Lowell Nickerson,M,37,Leg lacerated,False,1.5 m [5'] shark,"E. Pace, GSAF",1988.07.04.a-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.04.a-Nickerson.pdf,1988.07.04.a,1988.07.04.a +2726,Jul-1988,Unprovoked,BAHAMAS,unknown,unknown,Spearfishing,Peter Albury,M,37,Lacerations to arm,False,1.5 m [5'] shark,"E. Pace, GSAF",1988.07.00-Albury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.07.00-Albury.pdf,1988.07.00,1988.07.00 +2727,16-Jun-1988,Unprovoked,SOUTH AFRICA,Western Cape Province,Sculphoek,Spearfishing,Willie van Rensberg,M,36,Left arm lacerated,False,White shark,"W.v.Rensberg, M. Levine, GSAF",1988.06.19-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.19-VanRensburg.pdf,1988.06.19,1988.06.19 +2728,16-Jun-1988,Unprovoked,USA,North Carolina,"Ocracoke, Hyde County",Scuba diving,male,M,42,Survived,False,Sandtiger shark,"C. Creswell, GSAF",1988.06.16-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.16-diver.pdf,1988.06.16,1988.06.16 +2729,09-Jun-1988,Unprovoked,USA,South Carolina,"Sea Pines Beach Club, Hilton Head, Beaufort County",Sittting in water with his child,Mark Dotter,M,37,Left leg bitten,False,Sand shark?,"Charlotte Observer, 6/11/1988, p.1B",1988.06.09-Dotter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.09-Dotter.pdf,1988.06.09,1988.06.09 +2730,05-Jun-1988,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jason Jones,M,12,Four lacerations to his ankle,False,Sand shark?,"Orlando Sentinel, 6/7/1988, p.D2",1988.06.05-JasonJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.05-JasonJones.pdf,1988.06.05,1988.06.05 +2731,01-Jun-1988,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Etienne DeCora,M,25,Cuts to right foot and ankle,False,1.8 m to 2.4 m [6' to 8'] shark,"Orlando Sentinel, 6/2/1988, p.B2; P. LaMee, Orlando Sentinel, 6/3/1992, p.D2 ",1988.06.01-DeCora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.06.01-DeCora.pdf,1988.06.01,1988.06.01 +2732,27-May-1988,Unprovoked,SOUTH KOREA,unknown,unknown,Shell diving,Ko Bong-ae (female),F,38,fatal,True,1.8 m to 2.4 m [6' to 8'] shark,Y. Choi & K. Nakaya,1988.05.27-Ko Bong-se.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.27-Ko Bong-se.pdf,1988.05.27,1988.05.27 +2733,10-May-1988,Unprovoked,USA,Florida,"Paradise Beach Park, Brevard County",Surfing,Philip Barone,M,31,Left foot bitten,False,1.8 m to 2.4 m [6' to 8'] shark,"M. Vosburgh, Orlando Sentinel, 5/12/1988, p.D.6",1988.05.10-Barone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.10-Barone.pdf,1988.05.10,1988.05.10 +2734,04-May-1988,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing / treading water,Lee Rhoades,M,29,Left leg & right foot bitten,False,1.8 m to 2.4 m [6' to 8'] shark,"Orlando Sentinel, 5/6/1988, D.2",1988.05.04-Rhoades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.05.04-Rhoades.pdf,1988.05.04,1988.05.04 +2735,28-Apr-1988,Unprovoked,REUNION,Saint-Louis,Embouchure de l'étang du Gol,pêcheur de bichiques,Jean-Felix Taochyn,M,29,fatal,True,1.8 m to 2.4 m [6' to 8'] shark,G. Van Grevelynghe,1988.04.28-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.28-Reunion.pdf,1988.04.28,1988.04.28 +2736,24-Apr-1988,Unprovoked,USA,California,"North of Morro Rock, San Luis Obispo County",Surfing,Mark Rudy,M,29,No Injury,False,White shark,"J. McCosker & R.N. Lea; R. Collier, p.102",1988.04.24-Rudy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.24-Rudy_Collier.pdf,1988.04.24,1988.04.24 +2737,15-Apr-1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Swimming,Robert Nicholson,M,24,Lacerations to left foot,False,White shark,"E. Pace, FSAF",1988.04.15.a-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.a-Nicholson.pdf,1988.04.15a,1988.04.15a +2738,15-Apr-1988,Invalid,USA,Hawaii,"Waihe'e, Maui",Onboard 21' powerboat that capsized in rough seas,Avery Goo,M,24,"Human remains, believed to be those of Mr. Goo, washed ashore along the Waihee shore several days later",False,Shark involvement prior to death was not confirmed,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1988.04.15.b-AveryGoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.15.b-AveryGoo.pdf,1988.04.15.b,1988.04.15.b +2739,14-Apr-1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Kenny Burns,M,14,Right hand bitten,False,Shark involvement prior to death was not confirmed,"St. Petersburg Times, 2/6/1999",1988.04.14.b-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.b-KennyBurns.pdf,1988.04.14.b,1988.04.14.b +2740,14-Apr-1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Joseph Costa,M,14,"6"" laceration to left foot",False,Shark involvement prior to death was not confirmed,"E. Pace, FSAF",1988.04.14.a-Costa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.14.a-Costa.pdf,1988.04.14.a,1988.04.14.a +2741,10-Apr-1988,Invalid,SOUTH AFRICA,KwaZulu-Natal,La Lucia,Windsurfing,female,F,14,"Arm washed ashore. scratch marks on the humerus indicated it had been bitten by a shark, but cause of death could not be determined.",False,Shark involvement prior to death was not confirmed,"G. Charter, NSB; M. Levine, GSAF",1988.04.10-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.04.10-arm.pdf,1988.04.10,1988.04.10 +2742,31-Mar-1988,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing ,Peggy Schaefer,F,30,Foot bitten,False,Shark involvement prior to death was not confirmed,"Milwaukee Journal, 4/12/1988",1988.03.31-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.31-Schaefer.pdf,1988.03.31,1988.03.31 +2743,25-Mar-1988,Unprovoked,USA,Hawaii,"Running Waters Beach, Ninini Point, Kaua'i",Body surfing,Aaron Kawado,M,30,Ankle bitten,False,Shark involvement prior to death was not confirmed,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1988.03.25-Kawado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.25-Kawado.pdf,1988.03.25,1988.03.25 +2744,16-Mar-1988,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Isipingo,Surfing,Sastri Naidoo,M,17,"Lower left leg bitten, hand lacerated",False,1.5 m to 2 m [5' to 6.75'] shark,"S. Naidoo, Dr. M. Raj, Dr. Motala, M. Levine, GSAF; G. Charter, B. Davis, NSB",1988.03.16-Naidoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.16-Naidoo.pdf,1988.03.16,1988.03.16 +2745,14-Mar-1988,Unprovoked,REUNION,Saint-Pierre,Pic du Diable,Surfing,Frédéric Mousseau,M,17,Laceration to hand,False,1.5 m to 2 m [5' to 6.75'] shark,G. Van Grevelynghe,1988.03.14-Mousseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.03.14-Mousseau.pdf,1988.03.14,1988.03.14 +2746, 15-Feb-1988,Boat,SOUTH AFRICA,KwaZulu-Natal,"Brighton Beach, Durban",Surfing,"Semi-rigid rescue boat: occupants, Edward Moolman & Chris Bezuidenhiut ",,17,"No injury to occupants, pontoon puctured",False,"Raggedtooth shark, 2 m ","Natal Mercury, 2/16/1988",1988.02.15-BrightonBeach-lifesavers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.15-BrightonBeach-lifesavers.pdf,1988.02.15,1988.02.15 +2747,14-Feb-1988,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Michael Schaeffer,M,20,Ankle bitten,False,"1 m ""grey-colored"" shark","M. Schaeffer, M. Levine, GSAF",1988.02.14-Schaeffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.14-Schaeffer.pdf,1988.02.14,1988.02.14 +2748,13-Feb-1988,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Lying atop surfboard,Belinda Van Schalkwyk,F,15,"Leg bitten, surgically amputated",False,Zambezi shark (tooth fragments recovered),"B. v.Schalkwyk, P. Thevenau, R. Rathgeber, M.D., M. Levine, GSAF; R. Dunning, G. Charter, B. Davis, R.B. Wilson, NSB ",1988.02.13-Belinda_vanSchalkwyck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.13-Belinda_vanSchalkwyck.pdf,1988.02.13,1988.02.13 +2749,12-Feb-1988,Boat,AUSTRALIA,Western Australia,18 km west of Bunbury,Drift fishing,"5.5 m fibreglass boat, occupants: Steven Piggott and Kelvin & Brendan Martin",,15,"No injury to occupants; shark leapt into boat, almost capsizing it and destroyed the inside of the boat",False,"Mako shark, 3 m [10'], 200-kg [441-lb] ","Sunday Mail (QLD), 2/14/1988, p.2; A. Sharpe, p.135",1988.02.12-Piggott boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.12-Piggott boat.pdf,1988.02.12,1988.02.12 +2750,02-Feb-1988,Unprovoked,Fiji,Vanua Levu,Vanua Levu,Diving,Qalo Moceyawa,M,22,Lacerations to left arm & waist,False,"Tiger shark, 3 m ","Sun, 2/5/1988, p.15",1988.02.02-Fiji-Moceyawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.02.02-Fiji-Moceyawa.pdf,1988.02.02,1988.02.02 +2751,27-Jan-1988,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Surfing,Charles Everitt,M,22,Minor injury to leg,False,Shark involvement not confirmed,"Natal Mercury, 1/30/1988",1988.01.27-Everitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.27-Everitt.pdf,1988.01.27,1988.01.27 +2752,21-Jan-1988,Invalid,AUSTRALIA,Torres Strait,Torres Strait,Fell overboard from the Taiwanese fishing trawler Lien Cheng Feu ,Lo-Ying-Chun,M,22,His remains were recovered from a shark caught by the trawler Ho Tai No.12 in March 1988,False,Shark involvement prior to death was not confirmed,"X. Maniguet, p.206",1988.01.21-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.21-Chun.pdf,1988.01.21,1988.01.21 +2753,14-Jan-1988,Provoked,USA,Louisiana,Louisiana,Fishing,Chip,M,22,Hand bitten by captured shark PROVOKED INCIDENT,False,Mako shark,"C. Johansson, GSAF",1988.01.14-Chip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.14-Chip.pdf,1988.01.14,1988.01.14 +2754,06-Jan-1988,Provoked,SOUTH AFRICA,Western Cape Province,Struisbaai,Attempting to lasso shark's tail,J.A. McKay,M,33,Foot lacerated by hooked shark PROVOKED INCIDENT,False,1.5 m copper shark,"M. Levine, GSAF",1988.01.06-McKay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.06-McKay.pdf,1988.01.06,1988.01.06 +2755,Reported 05-Jan-1988,Provoked,SOUTH AFRICA,Western Cape Province,Great Brak River,"Returning to shore, collided with shark","5 m inflatable boat, occupants: Kobus Potgieter & 5 friends",,33,"No injury to occupants; shark ripped off fibreglass hull, swamping boat PROVOKED INCIDENT",False,6 m shark,"Natal Mercury, 1/5/1988",1988.01.05-Potgeiter-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.01.05-Potgeiter-boat.pdf,1988.01.05.R,1988.01.05.R +2756,1988,Unprovoked,AUSTRALIA,New South Wales,Sydney,Surfing,Ryan Kwanten,M,12,Hand bitten,False,Wobbegong shark,"Star Pulse, 7/8/2010",1988.00.00.c-Kwanten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1988.00.00.c-Kwanten.pdf,1988.00.00.c,1988.00.00.c +2757,20-Dec-1987,Sea Disaster,PHILIPPINES,Mindoro,Off Manila,Ferry boat Dona Paz with 4431 passengers exploded & caught fire when she collided with an oil tanker ,BBC ,,12,fatal,True,Wobbegong shark,BBC ,1987.12.20-DonaPaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.20-DonaPaz.pdf,1987.12.20,1987.12.20 +2758,17-Dec-1987,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Timothy Knipper,M,16,Left calf bitten,False,1.8 m [6'] blacktip shark,"D. Filkins, Miami Herald, 12/18/1987, page 1PB; St. Petersburg Times, 12/18/1987",1987.12.17-Knipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.17-Knipper.pdf,1987.12.17,1987.12.17 +2759,13-Dec-1987,Invalid,AUSTRALIA,New South Wales,Shoalhaven,Surfing,female,F,16 to 18,"Remains recovered from 4 m, 420-kg, caught 13-Dec-1987k",False,Shark involvement prior to death was not confirmed,"Sunday Mail (QLD), 1/31/1988, p.2",1987.12.13-Shoalhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.12.13-Shoalhaven.pdf,1987.12.13,1987.12.13 +2760,21-Nov-1987,Unprovoked,USA,Florida,"North of Jupiter Inlet, Palm Beach County",Surfing,Brian Tyska ,M,15,Leg lacerated,False,Shark involvement prior to death was not confirmed,"St. Petersburg Times, 11/25/1987, p.2B",1987.11.21-Tyska.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.21-Tyska.pdf,1987.11.21,1987.11.21 +2761,Nov-1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,St. Lucia,Surfing, male,M,15,Possible drowning / scavenging,False,Shark involvement prior to death was not confirmed,NSB,1987.11.00-StLucia-scavengin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.11.00-StLucia-scavengin.pdf,1987.11.00,1987.11.00 +2762,26-Oct-1987,Unprovoked,USA,California,"Davenport Light, San Mateo County",Surfing,Conrad Brown,M,20,Buttock & leg bitten,False,2 m [6.75'] shark,"R. Collier, p.101",1987.10.26-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.26-Brown_Collier.pdf,1987.10.26,1987.10.26 +2763,25-Oct-1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Boogie boarding,Darrel Rowe,M,14,Abrasion to forearm,False,Questionable incident,D. Rowe,1987.10.25-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.25-Rowe.pdf,1987.10.25,1987.10.25 +2764,11-Oct-1987,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Spearfishing,Dawid Smit,M,21,Left thigh & calf lacerated,False,White shark,"G. Smit, P. Landsberg, M.D., M. Levine, GSAF",1987.10.11-DawidSmit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.11-DawidSmit.pdf,1987.10.11,1987.10.11 +2765,06-Oct-1987,Sea Disaster,DOMINICAN REPUBLIC,Between DR and Puerto Rico,Mona Passage,"Vessel caught fire & capsized, survivors in the water","Orlando Sentinel, 1/7/1987, p. A4; Time Magazinem 19.19.1987",,21,fatal,True,40 to 50 sharks attacked survivors in the water,"Orlando Sentinel, 1/7/1987, p. A4; Time Magazinem 19.19.1987",1987.10.06-refugee-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.10.06-refugee-boat.pdf,1987.10.06,1987.10.06 +2766,18-Sep-1987,Unprovoked,AUSTRALIA,South Australia,"Merino Rocks, Adelaide",Scuba Diving for scallops,Terrance Gibson,M,47,fatal,True,White shark,"A. Sharpe, p.127; J. West, ASAF",1987.09.18-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.18-Gibson.pdf,1987.09.18,1987.09.18 +2767,13-Sep-1987,Unprovoked,SOUTH AFRICA,Western Cape Province,Still Bay,Surfing,Peter McCallum,M,24,Torso lacerated,False,3.5 m [11.5'] white shark,"P. McCallum, M. Levine,GSAF; M.A. Reade, NSB",1987.09.13-McCallum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.09.13-McCallum.pdf,1987.09.13,1987.09.13 +2768,20-Aug-1987,Unprovoked,USA,Florida,"Satellite Beach, Brevard County",Wading,Gary Kritlow,M,12,Lower left leg lacerated,False,1.2 m to 1.5 m [4' to 5'] shark,"D. Scruggs, Orlando Sentinel, 8/21 & 22/1987",1987.08.20-Kritlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.20-Kritlow.pdf,1987.08.20,1987.08.20 +2769,15-Aug-1987,Unprovoked,USA,California,"Tunitas Beach, San Mateo County",Surfing (sitting on his board),Craig Rogers,M,40,Fingers & surfboard injured,False,5.7 m white shark,"R. Collier, pp.99-100 ",1987.08.15-Rogers_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.08.15-Rogers_Collier.pdf,1987.08.15,1987.08.15 +2770,21-Jul-1987,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Egor Emery,M,27,Right foot & ankle lacerated,False,3' to 4' shark,"Orlando Sentinel, 7/22/1987, p.D1; Miami Herald, 7/23/1987",1987.07.21-Emery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.21-Emery.pdf,1987.07.21,1987.07.21 +2771,12-Jul-1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Body surfing,Carol Viau,F,32,Left foot bitten,False,4' shark,"Dallas Morning News, 7//14/1987",1987.07.12.b-CarolViau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.b-CarolViau.pdf,1987.07.12.b,1987.07.12.b +2772,12-Jul-1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Wading,Brenda King,F,16,Puncture wounds to right foot,False,4' shark,"Dallas Morning News, 7//14/1987",1987.07.12.a-BrendaKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.12.a-BrendaKing.pdf,1987.07.12.a,1987.07.12.a +2773,11-Jul-1987,Boat,USA,South Carolina,Winyah Bay,Dropping anchor,"17' fishing boat. Occupants, Bubba DeMaurice, his wife & daughter",,16,No injury to occupants. Shark grabbed anchor ,False,12' shark,Great White Sharks of the Carolinas and Georgia by J. Hairr,1987.07.11-DeMaurice-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.11-DeMaurice-boat.pdf,1987.07.11,1987.07.11 +2774,09-Jul-1987,Unprovoked,BAHAMAS,Exuma Islands,Sampson Cay,Snorkeling,male from pleasure craft Press On Regardless,M,35,Right leg bitten,False,12' shark,"Miami Herald, 7/10/1987",1987.07.09-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.09-Bahamas.pdf,1987.07.09,1987.07.09 +2775,Jul-1987,Unprovoked,BAHAMAS,unknown,unknown,Spearfishing,Ken Austin,M,35,Puncture marks to torso,False,2.5 to 3 m shark,"E.Pace, FSAF",1987.07.00-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.07.00-Austin.pdf,1987.07.00,1987.07.00 +2776,13-Jun-1987,Provoked,USA,Florida,"Nest Key, Monroe County",Fishing,Josh Schrutt ,M,35,Left hand bitten by shark he was dragging ashore by its head PROVOKED INCIDENT,False,1.5 m [5'] blacktip shark,"Miami Herald, 6/14/1987",1987.06.13-Schrutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.06.13-Schrutt.pdf,1987.06.13,1987.06.13 +2777,25-May-1987,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Fishing,Josia McSpadden,M,12,"6"" cut to thigh",False,1.5 m to 1.8 m [5' to 6'] shark,"Charlotte Observer, 5/28/1987 ",1987.05.25-JosiaMcSpadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.25-JosiaMcSpadden.pdf,1987.05.25,1987.05.25 +2778,08-May-1987,Unprovoked,USA,Florida,"St Augustine, St. Johns County",Surfing,Robert Gault,M,12,Hand lacerated ,False,1.5 m to 1.8 m [5' to 6'] shark,"Orlando Sentinel, 5/10/1987",1987.05.08-Gault.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.08-Gault.pdf,1987.05.08,1987.05.08 +2779,06-May-1987,Provoked,AUSTRALIA,New South Wales,New South Wales,Fishing,Keith Appleby,M,34,3 fingers severed by metal trace as he tried to haul in a hooked shark. PROVOKED ACCIDENT,False,1.5 m to 1.8 m [5' to 6'] shark,"Courier Mail, 5/7/1987",1987.05.06-Appleby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.05.06-Appleby.pdf,1987.05.06,1987.05.06 +2780,19-Apr-1987,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port Shepstone,Fishing,Mr. Perumal,M,34,"Slipped off rocks & was treading water when he disappeared, body mutilated by shark/s",False,Shark involvement prior to death was not confirmed,"G. Charter, R. B. Wilson, G. Cliff, NSB",1987.04.19-Perumal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.19-Perumal.pdf,1987.04.19,1987.04.19 +2781,18-Apr-1987,Unprovoked,USA,Texas,"Mustang Island, near Port Aransas",Swimming,April Dawn Vogelino,F,16,Right arm severed above elbow,False,Shark involvement prior to death was not confirmed,"Orlando,Sentinel, 4/19/ 1988. p. A12; Miami Herald, 4/19/1988",1987.04.18-Vogelino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.18-Vogelino.pdf,1987.04.18,1987.04.18 +2782,15-Apr-1987,Unprovoked,USA,Hawaii,"Kailua-Kona, Hawai'i",Swimming from shore to anchored sailboat,Daniel Kennedy,M,16,fatal,True,Shark involvement prior to death was not confirmed,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1987.04.15-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.15-Kennedy.pdf,1987.04.15,1987.04.15 +2783,01-Apr-1987,Unprovoked,VANUATU,Malampa Province,Vao Island,Swimming,male,M,8,fatal,True,4.3 m shark,S. Combs,1987.04.01-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.04.01-Vanuatu.pdf,1987.04.01,1987.04.01 +2784,30-Mar-1987,Unprovoked,AUSTRALIA,Western Australia,Fourth Beach / Twilgth Beach,Surfing,Grantley Butcher,M,18,Calf lacerated,False,"Bronze whaler shark, 2 m to 3 m ","Courier-Mail, 4/2/1987, p.1; T. Peake, GSAF",1987.03.30.b-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.b-Butcher.pdf,1987.03.30.b,1987.03.30.b +2785,30-Mar-1987,Provoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Surfing,"3 m skiboat Talisman, occupants Dennis Langenhoven, Philip Schoeman, Ross Lindsay, Steven Riley & Peter Schuets",,18,"No injury to occupants, boat holed by hooked shark PROVOKED INCIDENT",False,3 m white shark,"T. Wallett; M. Levine, GSAF",1987.03.30.a-Talisman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.03.30.a-Talisman.pdf,1987.03.30.a,1987.03.30.a +2786,28-Feb-1987,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Windsurfing,Gary Landwirth,M,18,"Lacerations to toe, heel & ankle of right foot",False,Spinner shark,"Sun Sentinel. Fort Lauderdale, 3/2/1987, p. 4B",1987.02.28-Landwirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.28-Landwirth.pdf,1987.02.28,1987.02.28 +2787,19-Feb-1987,Sea Disaster,SOLOMON ISLANDS,Between Honiara & Isabel Island,Between Honiara & Isabel Island,The inter-island ferry Vula sank in heavy weather,2 people,,18,fatal,True,Spinner shark,"Courier Mail, 2/26/1987, p.2",1987.02.19-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.02.19-SolomonIslands.pdf,1987.02.19,1987.02.19 +2788,28-Jan-1987,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Eerste River,Spearfishing,Tommy Botha,M,30,Puncture wounds to right hand,False,>2.5 m [8.25'] white shark,"T. Botha, M. Levine, GSAF",1987.01.28-TommyBotha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.28-TommyBotha.pdf,1987.01.28,1987.01.28 +2789,06-Jan-1987,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Swimming,Alessandro Russo,M,37,Right leg lacerated,False,>2.5 m [8.25'] white shark,"Sydney Morning Herald; Courier-Mail 1/8/1987, p.2",1987.01.06-Russo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.01.06-Russo.pdf,1987.01.06,1987.01.06 +2790,1987,Invalid,MONTENEGRO,Adriatic Sea,"Mogren Beach, Budva",Jumped into the water from a cliff,a student from Belgrade,M,37,fatal,True,Doubtful / Unconfirmed attack / Unable to verify in local records,D. Ljusic,1987.00.00.b-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Budva.pdf,1987.00.00.b,1987.00.00.b +2791,1987,Boat,ITALY,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,Aniello Mattera and Giorgio Allori,M,37,No injury,False,White shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1987.00.00.a-boat-Mattera-Allori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.a-boat-Mattera-Allori.pdf,1987.00.00.a,1987.00.00.a +2792,31-Dec-1986,Unprovoked,SOUTH AFRICA,Western Cape Province,Agulhas Banks,Spearfishing,Pierre deWet,M,37,2 punctures in lower leg,False,"Raggedtooth shark, 2.5 m [8.25'] ","P. deWet, E. Lombard, M. Levine, GSAF",1986.12.31-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.31-deWet.pdf,1986.12.31,1986.12.31 +2793,22-Dec-1986,Unprovoked,SOUTH AFRICA,Western Cape Province,SAOU Strand,Body boarding,Richardt Anton Olls,M,21,fatal,True,3 m [10'] white shark,"G. Geldenhuys, W. Roos, Dr. Smallberger, Dr. C. Groble, Dr. J.H. B. de Lange, M. Levine, GSAF; R. Wilson, NSB ",1986.12.22-Olls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.22-Olls.pdf,1986.12.22,1986.12.22 +2794,11-Dec-1986,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Bob Earnhardt,M,40,Forearm bitten,False,1.8 m to 2.1 m [6' to 7'] spinner or blacktip shark,"Orlando Sentinel, 12/12/1986, p.A1",1986.12.11-Earnhardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.11-Earnhardt.pdf,1986.12.11,1986.12.11 +2795,06-Dec-1986,Unprovoked,BAHAMAS,Florida Straits,Off Cay Sal Banks,Adrift after ditching plane in the sea,Wyatt Walker,M,37,"No injury, bumped by sharks",False,1.8 m to 2.1 m [6' to 7'] spinner or blacktip shark,"Orlando Sentinel, 12/9/1986, p.D1",1986.12.06.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.b-Walker.pdf,1986.12.06.b,1986.12.06.b +2796,06-Dec-1986,Unprovoked,USA,California,"Monastery Beach, Carmel River State Park, Monterey Peninsula, Monterey California",Free diving & spearfishing (submerged),Frank Gallo,M,27,"Punctured lung, lacerations to shoulder, face, jaw, neck & forearm",False,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, pp.98-99; Atlanta Journal-Constitution, 12/7/1986",1986.12.06.a-Gallo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.06.a-Gallo.pdf,1986.12.06.a,1986.12.06.a +2797,04-Dec-1986,Invalid,SOUTH AFRICA,Western Cape Province,Platbank,Spearfishing,Rory O’Connor,M,22,"No injury, no attack, 1.8 m copper shark made threat displays",False,Invalid,"R. O'Connor, M. Levine, GSAF",1986.12.04-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.04-O'Connor.pdf,1986.12.04,1986.12.04 +2798,Dec-1986,Unprovoked,NEW CALEDONIA,I'le Ouen,I'le Ouen,Spearfishing,Maurice Lilloux,,22,Right leg bitten,False,Tiger shark,W. Leander,1986.12.00.b-Maurice_Lilloux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.12.00.b-Maurice_Lilloux.pdf,1986.12.00,1986.12.00 +2799,30-Nov-1986,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Brad Bowen,M,17,5' gash in leg,False,Tiger shark,"Orlando Sentinel, 11/30/1986",1986.11.30-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.30-Bowen.pdf,1986.11.30,1986.11.30 +2800,19-Nov-1986,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Keith Helm,M,26,Laceration to dorsum of left foot,False,Tiger shark,"E. Pace, FSAF",1986.11.19-Helm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.19-Helm.pdf,1986.11.19,1986.11.19 +2801,04-Nov-1986,Unprovoked,USA,Florida,"Tiger Shores Beach, Martin County",Surfing,Daniel Lund,M,23,Ankle bitten,False,Tiger shark,"Miami Herald, 11/5/1986",1986.11.04-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.11.04-Lund.pdf,1986.11.04,1986.11.04 +2802,17-Oct-1986,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga,NSB Meshing,Kliki Ndlazi,M,23,Minor lacerations & puncture wounds to right leg from netted shark taken onboard skiboat PROVOKED INCIDENT,False,"Raggedtooth shark, 1.96 m, 140-kg ","K. Ndlazi, R. Gardiner, NSB; M. Levine, GSAF",1986.10.17-Ndlazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.17-Ndlazi.pdf,1986.10.17,1986.10.17 +2803,03-Oct-1986,Unprovoked,USA,Florida,"Sanibel Island, Lee County",Swimming,Luz Helena Florez,F,6,Hip & thigh bitten,False,"Lemon shark, 1.8 m to 2.4 m [6' to 8'], tooth fragment recovered","E. Pace; C. Call; Orlando Sentinel, 10/6/1986, 10/11/1986 & 4/20, 1988",1986.10.03-Florez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.03-Florez.pdf,1986.10.03,1986.10.03 +2804,05-Oct-1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,St. Michaels,Racing ski,James Speirs,M,32,"No injury, ski bitten",False,1.6 m shark,"J. Spiers, M. Levine, GSAF; R. Dugmore, G. Cliff, NSB",1986.10.05-Spiers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.05-Spiers.pdf,1986.10.05,1986.10.05 +2805,01-Oct-1986,Unprovoked,AUSTRALIA,Western Australia,"Direction Island, Cocos Islands",Racing ski,Crawford,,32,No details,UNKNOWN,1.6 m shark,"T. Peake, GSAF",1986.10.01-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.01-NV-Crawford.pdf,1986.10.01,1986.10.01 +2806,Oct-1986,Unprovoked,USA,Florida,"Floridana Beach, Brevard County",Surfing,Ron Dubois,M,28,Laceration to right arm,False,Bull shark,"R.D. Weeks, GSAF; E. Pace, FSAF ",1986.10.00-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.10.00-Dubois.pdf,1986.10.00,1986.10.00 +2807,Reported 22-Sep-1986 ,Invalid,USA,Florida,"Pinellas Point, Tampa Bay",Surfing,"Orlando Sentinel, 9/22/1986",,28,Human hand recovered from 1.5 m [5'] blacktip shark's stomach,False,Shark involvement prior to death was not confirmed,"Orlando Sentinel, 9/22/1986",1986.09.22.R-hand-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.22.R-hand-in-shark.pdf,1986.09.22.R,1986.09.22.R +2808,Sep-1986,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County",Surfing,Anonymous,,28,Survived,False,Shark involvement prior to death was not confirmed,Orlando Sentinel. 9/20/1986,1986.09.00.b-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.b-surfer.pdf,1986.09.00.b,1986.09.00.b +2809,Sep-1986,Unprovoked,USA,Florida,"Ponce Inlet, New Smyrna Beach, Volusia County",Surfing,Anonymous,,18,Hand bitten,False,Shark involvement prior to death was not confirmed,Orlando Sentinel. 9/20/1986,1986.09.00.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.09.00.a-surfer.pdf,1986.09.00.a,1986.09.00.a +2810,19-Aug-1986,Unprovoked,USA,North Carolina,"Masonboro Inlet, New Hanover County",Surfing,J. McCorley,,16,Hand bitten,False,Shark involvement prior to death was not confirmed,"F. Schwartz, p.23",1986.08.19-McCorley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.19-McCorley.pdf,1986.08.19,1986.08.19 +2811,10-Aug-1986,Invalid,SOUTH AFRICA,Western Cape Province,Reef on seaward side of Geyser Island,Spearfishing,Phllip DeBruyn,M,35,"No injury, shark made threat display & impaled itself on spear ",False,Invalid,"P. DeBruyn, M. Levine, GSAF",1986.08.10-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.10-DeBruyn.pdf,1986.08.10,1986.08.10 +2812,03-Aug-1986,Unprovoked,AUSTRALIA,New South Wales,"North Head, Sydney Harbour",Scuba diving,Margaret Bowen Jones,F,35,Survived,False,Wobbegong shark,Australian Shark Attack File,1986.08.03-Bowen-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.03-Bowen-Jones.pdf,1986.08.03,1986.08.03 +2813,Aug-1986,Unprovoked,FRANCE,Gulf of Lyons,Gruissan,Scuba diving,MEDSAF,,35,Survived,False,Wobbegong shark,MEDSAF,1986.08.00-NV-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.08.00-NV-France.pdf,1986.08.00,1986.08.00 +2814,26-Jul-1986,Boat,AUSTRALIA,Western Australia,3 km west of Rottnest Island,Fishing,"5.4 m boat, occupant: Ivan Anderton",,35,"No injury to occupants. Shark bit motor, lifting stern a half-metre out of the water",False,Tooth fragment of a white shark recovered. Authorities believed shark was 6 m [20'] total length,"A. Sharpe, p.134",1986.07.26-boat-Anderton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.26-boat-Anderton.pdf,1986.07.26,1986.07.26 +2815,09-Jul-1986,Unprovoked,USA,South Carolina,"Myrtle Beach, Horry County",Fishing,Jack Serafino,M,8,Back of left thigh bitten,False,1.5 m [5'] shark,"Charlotte Observer, 9/9/1986 & 9/11/1986 ",1986.07.09-JackSerafino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.09-JackSerafino.pdf,1986.07.09,1986.07.09 +2816,Jul-1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Spearfishing,Ludwig Gerricke,M,26,Minor lacerations on left hand,False,1.2 m [4'] dusky shark,"L. Gerricke, M. Levine, GSAF ",1986.07.00.a-Gerricke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.07.00.a-Gerricke.pdf,1986.07.00.a,1986.07.00.a +2817,18-May-1986,Unprovoked,AUSTRALIA,New South Wales,"North Head, Sydney Harbour",Scuba diving,Daniel Neumann,M,26,Survived,False,Wobbegong shark,Australian Shark Attack File,1986.05.18-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.18-Neumann.pdf,1986.05.18,1986.05.18 +2818,15-May-1986,Unprovoked,SOUTH KOREA,unknown,unknown,Shell diving,male,M,26,fatal,True,Wobbegong shark,Y. Choi & K. Nakaya,1986.05.15-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.05.15-SouthKorea.pdf,1986.05.15,1986.05.15 +2819,20-Apr-1986,Unprovoked,USA,Hawaii,"Kaliiwi, Kauai","Fishing, fell from rocks & disappeared",Levi Chandler,M,26,fatal,True,Wobbegong shark,"J. Borg, p.76",1986.04.20-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.20-Chandler.pdf,1986.04.20,1986.04.20 +2820,Apr-1986,Unprovoked,SPAIN,Catalonia,Lloret-de-Mar,Diving,C. Moore. GSAF,M,26,Abrasions,False,2 m shark,C. Moore. GSAF,1986.04.00-Lloret-de-Mar-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.04.00-Lloret-de-Mar-diver.pdf,1986.04.00,1986.04.00 +2821,18-Mar-1986,Unprovoked,SPAIN,Cádiz,Tarifa ,Windsurfing,J. L Pérez-Díaz,M,26,Foot severed,False,3.5 m white shark,A. DeMaddalena. GSAF,1986.03.18-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.18-Diaz.pdf,1986.03.18,1986.03.18 +2822,15-Mar-1986,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Treading water,Anton Bouwer,M,26,Foot bitten,False,>1 m shark,"A. Bouwer, M. Levine, GSAF; E. Kerns, NSB",1986.03.15-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.15-Bouwer.pdf,1986.03.15,1986.03.15 +2823,5-Mar-1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"The Fence, King's Beach, Port Elizabeth",Surfing,McDonald van der Merwe,M,23,"No injury, board struck by shark",False,2 m [6.75'] shark,"Eastern Province Herald, 3/6/1986",1986.03.05-VanDerMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.03.05-VanDerMerwe.pdf,1986.03.05,1986.03.05 +2824,18-Feb-1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Surfing,Shaun Carcary,M,21,"No injury, board bitten",False,>2.4 m [8'] white shark,"S. Carcary, M. Levine, GSAF",1986.02.18-Carcary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.18-Carcary.pdf,1986.02.18,1986.02.18 +2825,17-Feb-1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape Recife,Surfing,John Fick,M,21,"No injury, knocked off board",False,>2.4 m [8'] white shark,"J. Fick, M. Levine, GSAF; Eastern Province Herald, 2/18/1986",1986.02.17-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.17-Fick.pdf,1986.02.17,1986.02.17 +2826,07-Feb-1986,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"King's Beach, Port Elizabeth",Swimming,Johan Fourie,M,46,Lower leg lacerated,False,Raggedtooth shark,"J. Fourie, M. Levine, GSAF; V. Cockroft, Dr. P. Schwartz",1986.02.07-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.07-Fourie.pdf,1986.02.07,1986.02.07 +2827,06-Feb-1986,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Michael Taljaard,M,29,2 punctures in upper arm,False,"Raggedtooth shark, 2 m [6.75'] ","M. Taljaard, M. Levine, GSAF",1986.02.06-Taljaard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.06-Taljaard.pdf,1986.02.06,1986.02.06 +2828,01-Feb-1986,Unprovoked,AUSTRALIA,Victoria,Jan Juc Beach,Surfing,David Adams,M,29,"No injury, knocked into water & board bitten",False,"Bronze whaler shark, 3.5 m ","Sun, 2/3/1986, p.4",1986.02.01-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.02.01-Adams.pdf,1986.02.01,1986.02.01 +2829,12-Jan-1986,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Christopher Blissel,M,22,Puncture wounds to both feet,False,Blacktip shark,"E. Pace, FSAF",1986.01.12-Blissel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.01.12-Blissel.pdf,1986.01.12,1986.01.12 +2830,1986,Unprovoked,USA,California,"Linda Mar Beach, Pedro Point, San Mateo County",Surfing,Max Lagao,M,16,"No injury, foot bumped",False,1.5 m [5'] shark,R. Collier,1986.00.00-Lagao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1986.00.00-Lagao.pdf,1986.00.00,1986.00.00 +2831,22-Dec-1985,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Garvies Beach,Surfing,Tony Moolman and another surfer,M,16,"Both surfers boards were bumped by sharks, Moolman sustained abrasions on his arm and leg",False,1.5 m [5'] shark,"M. Levine, GSAF",1985.12.22-GarviesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.22-GarviesBeach.pdf,1985.12.22,1985.12.22 +2832,10-Dec-1985,Unprovoked,USA,North Carolina,New Hanover County,Surfing,male,M,16,Survived,False,Sandtiger shark,"C. Creswell, GSAF",1985.12.10-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.12.10-NV-NorthCarolina.pdf,1985.12.10,1985.12.10 +2833,11-Nov-1985,Provoked,AUSTRALIA,Queensland,Gladstone,Fishing,Richard Lynch,M,16,Laceration to lower left leg by hooked shark PROVOKED INCIDENT,False,1m shark,"Courier Mail, 11/13/1985",1985.11.11-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.11-Lynch.pdf,1985.11.11,1985.11.11 +2834,05-Nov-1985,Boat,USA,California,"Southeast Farallon Island, Farallon Islands",Boat,3 m inflatable boat tied to buoy (no occupants),,16,2 semi-circular bites on aft starboard tube of boat,False,5.2 to 5.8 m white shark,"R. Collier, pp.178-179",1985.11.05-Klimley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.05-Klimley_Collier.pdf,1985.11.05,1985.11.05 +2835,03-Nov-1985,Provoked,USA,California,5 miles south of Redondo Beach,Fishing,Brad Koune,M,24,Forearm bitten by hooked shark PROVOKED INCIDENT,False,5.2 to 5.8 m white shark,"Los Angles Times, 11/5/1985",1985.11.03-Koune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.11.03-Koune.pdf,1985.11.03,1985.11.03 +2836,24-Oct-1985,Unprovoked,SOUTH AFRICA,Eastern Cape Province,East London,Body boarding,Patrick Gee,M,22,"Left leg severely lacerated, superficial lacerations of right leg, board damaged",False,2.5 m [8.25'] white shark,"P. Gee, Dr. K. A. Watt, M. Levine, GSAF; G. Cliff, NSB",1985.10.24-Gee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.24-Gee.pdf,1985.10.24,1985.10.24 +2837,22-Oct-1985,Unprovoked,USA,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,46,Minor injury to foot & ankle,False,2 m to 2.5 m [6.75' to 8.25'] sixgill or sevengill shark,"R. Collier, GSAF",1985.10.22-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.22-Johnson_Collier.pdf,1985.10.22,1985.10.22 +2838,18-Oct-1985,Unprovoked,USA,Hawaii,"Little Glass Shacks, Princeville, Kaua'i",Body boarding,Joe Thompson,M,33,"Right hand and part of forearm severed , left hand lacerated, right anterior side of board removed by shark",False,"Thought to involve a Tiger shark, 3.7 m [12'] ","Syracuse Journal-Herald, 10/21/1985; J. Borg, p.76; G. Ambrose, pp.1-10; L. Taylor (1993), pp.106-107",1985.10.18-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.18-Thomson.pdf,1985.10.18,1985.10.18 +2839,12-Oct-1985,Unprovoked,USA,Hawaii,"Barbers Point, O'ahu",Floating on inner tube after diving for lobster,Dominic Dela Cruz,M,24,Left arm lacerated,False,1.8 m to 2.4 m [6' to 8'] shark,"J. Borg, p.76; L. Taylor (1993), pp.106-107; Orlando Sentinel, 10/14/1985, p.A6",1985.10.12-DelaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.12-DelaCruz.pdf,1985.10.12,1985.10.12 +2840, 05-Oct-1985,Provoked,USA,Alabama,"Gulf Shores, Baldwin County",Fishing,Bruce Doss,M,24,Laceration to leg by hooked shark PROVOKED INCIDENT,False,"6', 100-lb shark","Syracuse Herald, 10/10/1985 ",1985.10.05-Doss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.10.05-Doss.pdf,1985.10.05,1985.10.05 +2841,28-Sep-1985,Unprovoked,USA,California,"Elephant Rock near Tomales Point, Marin County",Free diving & spearfishing (descending),Rolf Ridge,M,24,"Hip bumped by shark, no Injury",False,4 m to 5 m [13' to 16.5'] white shark,"J. McCosker & R.N. Lea; R. Collier, p.97",1985.09.28-Ridge_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.28-Ridge_Collier.pdf,1985.09.28,1985.09.28 +2842,08-Sep-1985,Invalid,SOUTH AFRICA,KwaZulu-Natal,T.O. Strand,Swimming,A.M.,M,21,Probable drowning / scavenging,False,Shark involvement prior to death was not confirmed,"G. Charter, D. Groger, NSB",1985.09.08.b-A.M.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.b-A.M.pdf,1985.09.08.b,1985.09.08.b +2843,08-Sep-1985,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Scuba diving,Morris M. Vorenberg,M,21,Laceration and 4 puncture wounds to left hand,False,1.8 m silky shark,"M. Vorenburg, GSAF",1985.09.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.08.a-Vorenberg.pdf,1985.09.08.a,1985.09.08.a +2844,05-Sep-1985,Invalid,USA,Florida,"Fort Pierce Inlet, St Lucie County",Swimming,Jeff Justice,M,17,Found to be a hoax,False,Invalid,"Orlando Sentinel, 9/7/1985 ; Miami Herald, 9/7/1985 ",1985.09.05-Justice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.09.05-Justice.pdf,1985.09.05,1985.09.05 +2845,22-Aug-1985,Unprovoked,USA,South Carolina,"Palmetto Dunes, Hilton Head, Beaufort County",Wading,Joseph Friedlander,M,87,Right calf bitten & less serious injury to left foot,False,Invalid,"Sumter Daily Item, 8/23/1985",1985.08.22-Friedlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.22-Friedlander.pdf,1985.08.22,1985.08.22 +2846,20-Aug-1985,Invalid,USA,Florida,"New Smyrna Beach, Volusia County",Wading,Danny Prendgeast,M,11,"3"" wound on thigh",False,Shark involvement not confirmed,"Orlando Sentinel, 8/21//1985, p. D.2",1985.08.20-Prendgeast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.20-Prendgeast.pdf,1985.08.20,1985.08.20 +2847,17-Aug-1985,Invalid,USA,Florida,"Bayport, Hernando County",Scuba diving,Thomas Robert Sewell,M,67,Body not recovered. 3 days later some of his equipment was found on seabed appeared damaged by a shark ,False,Shark involvement prior to death not confirmed,"E. Pace, GSAF; J. McAniff, NUADC; Orlando Sentinel, 12/6/1985; K Duffy, Daytona Beach News Journal, 8/26/2001",1985.08.17-Sewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.08.17-Sewell.pdf,1985.08.17,1985.08.17 +2848,25-Jul-1985,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Robin Lyons,F,13,Right calf bitten,False,Possibly a small hammerhead shark,"M. McKee,Orlando Sentinel, 7/30/1985, p.A1",1985.07.25.b-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.b-Lyons.pdf,1985.07.25.b,1985.07.25.b +2849,25-Jul-1985,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Jason Lee,M,15,Hand bitten,False,Possibly a small hammerhead shark,"M. McKee,Orlando Sentinel, 7/30/1985",1985.07.25.a-JasonLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.25.a-JasonLee.pdf,1985.07.25.a,1985.07.25.a +2850,21-Jul-1985,Boat,USA,California,"Off Shelter Cover (between Fort Bragg & Eureka), Humboldt County",Bottom fishing for lingcod & had hooked a fish,4.9 m fibreglass boat. Occupant: Jack Siverling,,15,"No injury to occupant, shark rammed boat catapulting it out of the water",False,5 m to 6 m [16.5' to 20'] white shark,"R. Collier, p.172",1985.07.21-Siverling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.21-Siverling_Collier.pdf,1985.07.21,1985.07.21 +2851,19-Jul-1985,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Playing in knee-deep water,Julie Steed,F,10,2/3rd of left calf removed,False,"Tiger shark, 2.4 m to 2.7 m [8' to 9'] ","Atlanta Journal-Constitution, 7/22&23/1985 ",1985.07.19-Steed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.19-Steed.pdf,1985.07.19,1985.07.19 +2852,Mid Jul-1985 or mid Jul-1986,Unprovoked,ITALY,Sicily,Punta Secca,Snorkeling,Neil Montoya,M,13,Contusion of left foot,False,"3 m to 3.6 m [10' to 11'9""] white shark","A. De Maddalena; De Maddalena (2001), N. Montoya (pers. comm.)",1985.07.00-Montoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.07.00-Montoya.pdf,1985.07.00,1985.07.00 +2853,26-May-1985,Unprovoked,USA,California,"Long Beach, Los Angeles County","Surfing, but lying prone on his board",Robert Rodriquez,M,13,Leg injured,False,Shark involvement not confirmed,"R. Collier, p.86",1985.05.26-Rodriquez_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.26-Rodriquez_Collier.pdf,1985.05.26,1985.05.26 +2854,08-May-1985,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umdhloti,Spearfishing,Sikketho Denge,M,39,"After diver shot shark attempting to take his catch, shark bit right arm & tore wetsuit PROVOKED INCIDENT",False,30-kg [66-lb] shark,"M. Levine, GSAF",1985.05.08-Denge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.05.08-Denge.pdf,1985.05.08,1985.05.08 +2855,16-Mar-1985,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,David Zarnowski,M,25,Hand bitten,False,30-kg [66-lb] shark,"E. Pace, FSAF",1985.03.16-NV-Zarnowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.16-NV-Zarnowski.pdf,1985.03.16,1985.03.16 +2856,03-Mar-1985,Unprovoked,AUSTRALIA,South Australia,"Wiseman’s Beach, Peake Bay, Port Lincoln",Free diving for scallops,Shirley Anne Durdin,F,33,fatal,True,6 m [20'] white shark,"A. MacCormick, pp.76-79; H. Edwards, p.155; A. Sharpe, pp.126-127; J. West, ASAF",1985.03.03-Durdin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.03.03-Durdin.pdf,1985.03.03,1985.03.03 +2857,18-Feb-1985,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Scuba Diving for lobster (at surface),Chris Massahos,M,29,Bruised,False,6 m [20'] white shark,"R. Collier, pp.95-96",1985.02.18-Massahos_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.18-Massahos_Collier.pdf,1985.02.18,1985.02.18 +2858,03-Feb-1985,Unprovoked,USA,Florida,"15 miles north of Sebastian Inlet, Brevard County",Surfing,Michael Mesiano,M,16,Right foot bitten,False,6 m [20'] white shark,"Miami Herald, 2/4/1985, p.6",1985.02.03-Mesiano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.02.03-Mesiano.pdf,1985.02.03,1985.02.03 +2859,27-Jan-1985,Unprovoked,SOUTH AFRICA,Western Cape Province,Struisbaai,Swimming,Marius Botha,M,15,"Right knee, calf and ankle lacerated",False,Raggedtooth shark,"M. Botha, M. Levine, GSAF",1985.01.27-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.27-Botha.pdf,1985.01.27,1985.01.27 +2860,18-Jan-1985,Invalid,SOUTH AFRICA,KwaZulu-Natal,Umzimkulu,Swimming,Herbert Base,M,15,Probable drowning / scavenging,False,Shark involvement prior to death was not confirmed,"G. Cliff, NSB",1985.01.18-Base.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.18-Base.pdf,1985.01.18,1985.01.18 +2861,17-Jan-1985,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umbogintwini,Surfing,Bruce Eldridge,M,18,Thigh & calf bitten,False,"3.5 m white shark, tooth fragments recovered","B. Eldridge, M. Levine, GSAF; G. Charter & B. Davis, NSB",1985.01.17-Eldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.17-Eldridge.pdf,1985.01.17,1985.01.17 +2862,16-Jan-1985,Boat,NEW ZEALAND,South Island,Christchurch,Investigating shark sighting,"small speedboat, occupan: Paul McNally",,18,"No injury to occupant, shark bit boat",False,6 m shark,"Courier-Mail, 1/17/1985",1985.01.16-McNally-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.16-McNally-boat.pdf,1985.01.16,1985.01.16 +2863,04-Jan-1985,Unprovoked,SOUTH AFRICA,Western Cape Province,"Buffels Bay, False Bay",Spearfishing,Donald James,M,34,Minor injury to torso,False,3.5 m [11.5'] white shark,"D. James, M. Levine, GSAF; G. Cliff, NSB",1985.01.04-DonJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.04-DonJames.pdf,1985.01.04,1985.01.04 +2864,Jan-1985,Unprovoked,NEW CALEDONIA,South Province,Amedee Island,Spearfishing,Jean Rene Mathelon,,34,Legs bitten ,False,Tiger shark,"W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",1985.01.00.b-Mathelon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.b-Mathelon.pdf,1985.01.00.b,1985.01.00.b +2865,Jan-1985,Provoked,SOUTH AFRICA,KwaZulu-Natal,Salt Rock,Spearfishing,Barry Allan Coppin,M,20,Upper right arm bitten after he shot the shark PROVOKED INCIDENT,False,1.5 m [5'] dusky shark,"B. Coppin, M. Levine, GSAF",1985.01.00.a-Coppin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.01.00.a-Coppin.pdf,1985.01.00.a,1985.01.00.a +2866,1985,Unprovoked,VANUATU,Malampa Province,"Port Sandwich Bay, Lamap, Malakula",Spearfishing,American child,M,20,fatal,True,1.5 m [5'] dusky shark,S. Combs,1985.00.00.f-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.f-Vanuatu.pdf,1985.00.00.f,1985.00.00.f +2867,1985,Unprovoked,IRAN,"Ramin, near Ahvaz","Ramin, near Ahvaz",Fishing,male,M,20,fatal,True,Bull shark,B. Coad & F. Papahn,1985.00.00.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1985.00.00.a-Fisherman.pdf,1985.00.00.a,1985.00.00.a +2868,03-Dec-1984,Boat,ITALY,Tyrrhenian Sea,"Marciana Marina, Isola d'Elba",Boat,A. De Maddalena; F. Serena (pers. Comm.),,20,No injury,False,White shark,A. De Maddalena; F. Serena (pers. Comm.),1984.12.03-boat-Elba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.12.03-boat-Elba.pdf,1984.12.03,1984.12.03 +2869,30-Nov-1984,Unprovoked,AUSTRALIA,Queensland,1 km off Black's Beach,Sailing on catamaran & fell into the water,Nicholas Bos,M,16,fatal,True,"Tiger shark, 4 m ","Courier-Mail, 12/1/1984, p.1; A. Sharpe, p.106",1984.11.30-NicholasBos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.30-NicholasBos.pdf,1984.11.30,1984.11.30 +2870,11-Nov-1984,Unprovoked,USA,Florida,"Jupiter Island Beach, Martin County",Surfing,Cooper Stetson,M,13,Left foot bitten,False,1.2 m [4'] shark,"Miami Herald, 11/18/1984",1984.11.11-Stetson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.11-Stetson.pdf,1984.11.11,1984.11.11 +2871,04-Nov-1984,Provoked,USA,Florida,"Fowey Rock, Key Biscayne",Spearfishing,Andres Ferro,M,29,"Speared shark bit diver's right knee, and lacerated right thigh & buttocks PROVOKED INCIDENT",False,"""a small shark""","Miami Herald, 11/5/1984",1984.11.04-Ferro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.11.04-Ferro.pdf,1984.11.04,1984.11.04 +2872,21-Oct-1984,Invalid,USA,Florida,"Wabasso Beach, Indian River County",Swimming,Larry Peebles,M,22,"Disappeared, 1 mile from where Sandra Fletcher was bitten. Death was due to drowning",False,Shark involvement prior to death was not confirmed,"Evening Independent, 10/24/1984, p.14; E. Pace, FSAF",1984.10.21.b-Peebles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.b-Peebles.pdf,1984.10.21.b,1984.10.21.b +2873,21-Oct-1984,Unprovoked,USA,Florida,"3 miles south of Sebastian Inlet State Park, Indian River County",Surfing or body surfing,Sandra Fletcher,F,23,"9"" laceration to right forearm ",False,1.5 m [5'] shark,"Miami Herald, 10/24/1984, p.17A",1984.10.21.a-Fletcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.21.a-Fletcher.pdf,1984.10.21,1984.10.21 +2874,17-Oct-1984,Invalid,USA,Florida,"Boynton Beach, Palm Beach County",Wading,Mary Dunn,F,77,"10"" laceration on leg",False,Shark involvement not confirmed; officials considered barracua,"Miami Herald, 10/18/1984, ",1984.10.17-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.17-Dunn.pdf,1984.10.17,1984.10.17 +2875,14-Oct-1984,Unprovoked,USA,Florida,"Bob Graham Beach, Martin County",Surfing,Thomas C. Westberg ,M,15,Left calf bitten,False,1.2 m [4'] blacktip shark,"Miami Herald, 10/16/1984",1984.10.14.a-Westberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.10.14.a-Westberg.pdf,1984.10.14.a,1984.10.14.a +2876,30-Sep-1984,Unprovoked,USA,Oregon,"""Turnaround"", Cape Kiwanda, Tillamook County",Surfing (sitting on his board),Robert Rice,M,25,"Abrasion on right foot, board bitten",False,3 m to 5 m [10' to 16.5'] white shark,"R. Collier, pp.94-95",1984.09.30.b-Rice_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.b-Rice_Collier.pdf,1984.09.30.b,1984.09.30.b +2877,30-Sep-1984,Unprovoked,USA,California,"Tomales Point, Marin County","Free diving , but surfacing",Paul Parsons,M,25,Legs & buttocks bitten,False,3 m to 4 m [10' to 13'] white shark,"R. Collier, pp.93-94",1984.09.30.a-Parsons_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.30.a-Parsons_Collier.pdf,1984.09.30.a,1984.09.30.a +2878,23-Sep-1984,Unprovoked,USA,Florida,Volusia County,Surfing,William Miller,M,17,Right foot bitten,False,3 m to 4 m [10' to 13'] white shark,"Miami Herald, 9/26/1984, p.2D",1984.09.23-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.23-Miller.pdf,1984.09.23,1984.09.23 +2879,22-Sep-1984,Unprovoked,USA,Florida,Florida,Swimming,male from Tampa,M,Elderly,Left foot lacerated,False,3 m to 4 m [10' to 13'] white shark,"Miami Herald, 9/26/1984, p.2D",1984.09.22.b-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.b-ElderlyMale.pdf,1984.09.22.b,1984.09.22.b +2880,22-Sep-1984,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Anthony Carter,M,16,Foot bitten,False,Hammerhead shark?+O2356,"Miami Herald, 9/26/1984, p.2D",1984.09.22.a-AnthonyCarter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.22.a-AnthonyCarter.pdf,1984.09.22.a,1984.09.22.a +2881,19-Sep-1984,Unprovoked,USA,Florida,Volusia County,Swimming,"Miami Herald, 9/26/1984, p.2D",,16,No details,UNKNOWN,Hammerhead shark?+O2356,"Miami Herald, 9/26/1984, p.2D",1984.09.19-VolusiaCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.19-VolusiaCounty.pdf,1984.09.19,1984.09.19 +2882,17-Sep-1984,Unprovoked,USA,California,"Mission Beach, San Diego County",Wading,Brian Cramer,M,16,Arm bitten,False,small blue shark,"R. Collier, p.93 ",1984.09.17-Cramer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.17-Cramer_Collier.pdf,1984.09.17,1984.09.17 +2883,15-Sep-1984,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Skindiving,Omar Conger,M,28,fatal,True,4.5 m to 5 m white shark,"R. Collier, p. 72",1984.09.15-Conger_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.15-Conger_Collier.pdf,1984.09.15,1984.09.15 +2884,11-Sep-1984,Provoked,MEXICO,Baja California,Guadalupe Island,Spearfishing,Harry Ingram,M,28,"No Injury, PROVOKED INCIDENT",False,4.5 m to 5.5m white shark,R. Collier,1984.09.11-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.09.11-Ingram.pdf,1984.09.11,1984.09.11 +2885,24-Aug-1984,Invalid,USA,Florida,"Off Crystal River, Citrus County",Boat capsized?,T. Washington,F,31,Death was due to drowning; body scavenged by a tiger shark,False,Invalid,"St. Petersburg Times, 11/20/1984",1984.08.24-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.24-Washington.pdf,1984.08.24,1984.08.24 +2886,07-Aug-1984,Unprovoked,INDONESIA,Bali,Bali,"Sea disaster, foundering of the cargo vessle M/V Dorolonda",9 crewmen,M,31,fatal,True,Invalid,"Courier Mail, 8/15/1984",1984.08.07-Dorolonda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.08.07-Dorolonda.pdf,1984.08.07,1984.08.07 +2887,24-Jul-1984,Unprovoked,USA,Texas,South Padre Island,Swimming,girl,F,13,Lacerations on right foot,False,Invalid,"A. MacCormick, pp.8-9",1984.07.24.b-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.b-girl.pdf,1984.07.24.b,1984.07.24.b +2888,24-Jul-1984,Unprovoked,USA,Texas,South Padre Island,Swimming,Carmen Gaytan,F,18,Legs severely lacerated,False,1.2 m [4'] shark,"A. MacCormick, pp.8-9",1984.07.24.a-Gaytan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.24.a-Gaytan.pdf,1984.07.24.a,1984.07.24.a +2889,22-Jul-1984,Invalid,SOUTH AFRICA,Western Cape Province,Cape Point,Spearfishing,Adrian Hayman,M,21,fatal,True,Shark involvement prior to death was not confirmed,"P. Landsberg, M.D.",1984.07.22-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.22-Hayman.pdf,1984.07.22,1984.07.22 +2890,01-Jul-1984,Unprovoked,USA,Florida,Florida,"During a shark fishing tournament, the 18' Boatem was capsized by waves, throwing 3 men into the water ",William McConnell,M,30,Leg abraded,False,Shark involvement prior to death was not confirmed,"New Orleans Times-Picayune, 3 July 1984; A. MacCormick, p.109-110",1984.07.01-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.01-McConnell.pdf,1984.07.01,1984.07.01 +2891,Jul-1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Rory O’Connor,M,30,"No injury, shark hit swim fin",False,Raggedtooth shark ,"R O'Connor, M. Levine, GSAF",1984.07.00-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.07.00-O'Connor.pdf,1984.07.00.a,1984.07.00.a +2892,15-Jun-1984,Unprovoked,SOUTH AFRICA,Western Cape Province,"Muizenberg, False Bay",Surfing,Selwyn Doran,M,27,"No injury, board bitten",False,2.4 m [8'] white shark,"The Argus, 6/16/1984",1984.06.15-Doran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.15-Doran.pdf,1984.06.15,1984.06.15 +2893,03-Jun-1984,Unprovoked,USA,Hawaii,"Kane'ohe Bay, O'ahu",Towing her sister on plastic ski board,Susan Buecher,F,13,Foot bitten,False,1.2 m to 1.5 m [4' to 5'] hammerhead shark,"J. Borg, p.76; L. Taylor (1993), pp.106-107",1984.06.03.b-Buecher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03.b-Buecher.pdf,1984.06.03.b,1984.06.03.b +2894,03-Jun-1984,Unprovoked,VANUATU,Malampa Province,"Atchin Island, off Malakula",Swimming,Felix Brem,M,20s,fatal,True,1.2 m to 1.5 m [4' to 5'] hammerhead shark,"Telegraph, 6/8/1984, p.12 ",1984.06.03-Brem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.06.03-Brem.pdf,1984.06.03,1984.06.03 +2895,31-May-1984,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Anton Bosman,M,28,Swim fin bitten,False,1.2 m to 1.5 m [4' to 5'] hammerhead shark,"A. Bosman, M. Levine, GSAF",1984.05.31-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.05.31-Bosman.pdf,1984.05.31,1984.05.31 +2896,17-Mar-1984,Invalid,SOMALIA,unknown,unknown,Murder,11 stoways,M,28,fatal,True,Shark involvement prior to death was not confirmed,"Courier Mail, 5/18/1984",1984.03.17-Eleven-stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.17-Eleven-stowaways.pdf,1984.03.17,1984.03.17 +2897,14-Mar-1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Surfing,Mark Benvick,M,28,"No injury, 8 pressure dings in surboard",False,Shark involvement prior to death was not confirmed,"G. Charter, NSB; M. Levine, GSAF",1984.03.14-Benvick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.14-Benvick.pdf,1984.03.14,1984.03.14 +2898,10-Mar-1984,Boat,SOUTH AFRICA,Eastern Cape Province,Swartkops River mouth,Rowing,"rowboat, occupant: Louis Beyers",M,28,"No injury to occupant, shark seized oar and disappeared with it.",False,2.5 m [8.25'] shark,"M. Levine, GSAF",1984.03.10-Beyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.10-Beyers.pdf,1984.03.10,1984.03.10 +2899,01-Mar-1984,Unprovoked,AUSTRALIA,Western Australia,Coral Bay,Rowing,Greenwood,,28,No details,UNKNOWN,2.5 m [8.25'] shark,"T. Peake, GSAF",1984.03.01-NV-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.03.01-NV-Greenwood.pdf,1984.03.01,1984.03.01 +2900,18-Feb-1984,Provoked,SOUTH AFRICA,Eastern Cape Province,"Paradise Beach, Jeffrey’s Bay",Fishing,Henri deVilliers Melville,M,28,Leg lacerated by hooked shark PROVOKED INCIDENT,False,"Raggedtooth shark, 56-kg [123-lb] ","M. Levine, GSAF; Eastern Province Herald, 6/28/1986",1984.02.18-Melville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.18-Melville.pdf,1984.02.18,1984.02.18 +2901,17-Feb-1984,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Shark tank at Oceanographic Research Insitute, Durban",Scuba diving,George Buckland,M,33,Punctures in wetsuit & left arm bruised by captive shark PROVOKED INCIDENT,False, 1.5 m [5'] dusky shark,"G. Buckland, M. Levine, GSAF",1984.02.17-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.17-Buckland.pdf,1984.02.17,1984.02.17 +2902,12-Feb-1984,Invalid,SOUTH AFRICA,Eastern Cape Province,St. George’s Strand,Scuba diving,"G. Charter, NSB",,33,"Human remains recovered, evidence of scavenging by shark/s",False,Shark involvement prior to death was not confirmed,"G. Charter, NSB",1984.02.12-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.12-StGeorgesStrand.pdf,1984.02.12,1984.02.12 +2903,11-Feb-1984,Unprovoked,AUSTRALIA,Queensland,Derwent Island,Spearfishing,Greg Pearce,M,27,Hand bitten,False,1.5 m white-tipped reef shark,"Courier-Mail, 2/14/1984, p.3",1984.02.11-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.02.11-Pearce.pdf,1984.02.11,1984.02.11 +2904,05-Jan-1984,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,Robert Tennent,M,14,Foot bitten,False,"Raggedtooth shark, 1 m ","R. Tennent, M. Levine, Dr. Dempers & K. Reynolds",1984.01.05-Tennent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.05-Tennent.pdf,1984.01.05,1984.01.05 +2905,04-Jan-1984,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umlaas Canal,Swimming,female,F,14,fatal,True,"Raggedtooth shark, 1 m ","G. Charter, B. Davis & G. Cliff, NSB",1984.01.04-UmlaasCanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.01.04-UmlaasCanal.pdf,1984.01.04,1984.01.04 +2906,1984,Provoked,USA,California,San Francisco,Steinhart Aquarium,Don C. Reed,M,14,Head mouthed by captive shark PROVOKED INCIDENT,False,Sevengill shark,D.C. Reed,1984.00.00.b-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.b-Reed.pdf,1984.00.00.b,1984.00.00.b +2907,1984,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Eric Schwarze,M,14,Right foot bitten,False,Sevengill shark,"M. Vosburgh, Orlando Sentinel, 5/28/1988 ",1984.00.00.a-Schwarze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1984.00.00.a-Schwarze.pdf,1984.00.00.a,1984.00.00.a +2908,30-Dec-1983,Invalid,GREECE,Andikira Fokithes,Andikira Fokithes,Spearfishing,Ioannis Chrysafis,M,36,"Coroner determined the man was killed by a boat propeller, not a tiger shark",False,Invalid,"Miami Herald, 1/4/1984; M. Bardanis",1983.12.30-Chrysafis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.30-Chrysafis.pdf,1983.12.30,1983.12.30 +2909,25-Dec-1983,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Surfing,Jeff Herrin,M,17,Left foot & thigh bitten,False,Invalid,"Palm Beach Post, 12/26/1983 ",1983.12.25-Herrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.25-Herrin.pdf,1983.12.25,1983.12.25 +2910,24-Dec-1983,Unprovoked,AUSTRALIA,South Australia,"Dangerous Reef, South Neptune Island",Scuba diving for abalone,Neil Williams,M,48,Fingers bitten,False,12' white shark,"T. Peake, GSAF",1983.12.24-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.24-Williams.pdf,1983.12.24,1983.12.24 +2911,22-Dec-1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Great Fish River,Swimming,Colin Biggs,M,16,"Left calf, ankle & foot lacerated",False,12' white shark,"C. Biggs, M. Levine, J. Mansfield, Dr. T. Counihan & Dr. Clement",1983.12.22-Biggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.22-Biggs.pdf,1983.12.22,1983.12.22 +2912,21-Dec-1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Swimming,Jack Heydenrych,M,47,Shin lacerated,False,"Raggedtooth shark, >1 m ","R. Horn, East London Aquarium; J. Heydenrych, M.Levine, GSAF",1983.12.21-Heydenrych.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.21-Heydenrych.pdf,1983.12.21,1983.12.21 +2913,07-Dec-1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,LaMercy,Swimming,male,M,47,"Two feet found in 1.74 m, 115-kg Zambesi shark, confirmed as a postmortem scavenging",False,Invalid,"R.B. Wilson , G. Cliff, B. Davis & G. Charter, NSB",1983.12.07-feet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.12.07-feet.pdf,1983.12.07,1983.12.07 +2914,21-Nov-1983,Sea Disaster,PHILIPPINES,Central Philippines,Central Philippines,Ferry boat sank,Arturo Garces,M,47,Left foot nipped,False,.5 m shark,"Montreal Gazette, 11/28/1983",1983.11.21-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.21-FerryDisaster.pdf,1983.11.21,1983.11.21 +2915,Reported 10-Nov-1983,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,Michael Burns,M,15,Laceration to left foot,False,Tiger shark,"St. Petersburg Times, 11/10/1983",1983.11.10.R-Michael-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.R-Michael-Burns.pdf,1983.11.10.R,1983.11.10.R +2916,10-Nov-1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Tongaat,Swimming,Pradisha Chanderpaul,F,15,Probable drowning and scavenging,False,Shark involvement prior to death was not confirmed,"R. Wilson, G. Cliff, Natal Sharks Board; GSAF",1983.11.10.a-Chanderpaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.11.10.a-Chanderpaul.pdf,1983.11.10,1983.11.10 +2917,17-Oct-1983,Unprovoked,USA,Florida,"Stuart Beach, Martin County",Surfing,Aryon Kalein,M,16,Puncture marks in leg & surfboard dinged,False,1.5 m [5'] shark,"Miami Herald, 10/21/1983, p.1C",1983.10.17.a-Kalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.17.a-Kalein.pdf,1983.10.17.a,1983.10.17.a +2918,13-Oct-1983,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Charles Hundley,M,20,Lacerations to left ankle,False,4.5' shark,"Daytona Beach Morning Journal, 10/21/1983",1983.10.13-Hundley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.10.13-Hundley.pdf,1983.10.13,1983.10.13 +2919,04-Sep-1983,Unprovoked,USA,Florida,"Off Lake Worth, Palm Beach County",Standing,Paul Kolodny,M,15,Abrasions to leg,False,4.5' shark,"E. Pace, FSAF",1983.09.04-Kolodny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.09.04-Kolodny.pdf,1983.09.04,1983.09.04 +2920,20-Aug-1983,Unprovoked,USA,Oregon,"Cape Kiwanda,Tillamook County",Surfing,Randy Weldon,M,15,"No injury, board bitten",False,White shark,"R.N. Lea & D. Miller; R. Collier, p.81",1983.08.20.b-RandyWeldon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.b-RandyWeldon.pdf,1983.08.20.b,1983.08.20.b +2921,20-Aug-1983,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Spearfishing,Attie Louw,M,29,Inner thighs lacerated,False,5 m [16.5'] white shark,"A. Louw, M. Levine, GSAF; G. Cliff, NSB",1983.08.20.a-Louw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.20.a-Louw.pdf,1983.08.20.a,1983.08.20.a +2922,15-Aug-1983,Unprovoked,USA,Virginia,"Virginia Beach, Princess Anne County",Swimming,Jill Redenbaugh,F,14,Foot bitten,False,Sand shark,"Washington Post, 8/16/1983",1983.08.15-Rendenbaugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.15-Rendenbaugh.pdf,1983.08.15,1983.08.15 +2923,13-Aug-1983,Provoked,USA,Florida,"Riviera Beach, Palm Beach County",Skindiving,Louis Goodman,M,14,Hand abraded when he grabbed shark's tail PROVOKED INCIDENT,False,Nurse shark,M. Vorenburg. GSAF,1983.08.13.b-Goodman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.b-Goodman.pdf,1983.08.13.b,1983.08.13.b +2924,13-Aug-1983,Unprovoked,USA,Florida,"6 miles south of Boca Chica Key, Monroe County ",Diving,Jackie Lynn,F,22,Right leg severely bitten,False,6' to 8' bull shark,"Miami Herald, 8/14/1983, p.1D ",1983.08.13.a-JackieLynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.13.a-JackieLynn.pdf,1983.08.13.a,1983.08.13.a +2925,06-Aug-1983,Boat,USA,Rhode Island,Rhode Island,Fishing,2 boats,,22,No injury to occupants,False,6' to 8' bull shark,"Providence Journal, 8/7/1983",1983.08.06-RI-boats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.08.06-RI-boats.pdf,1983.08.06,1983.08.06 +2926,26-Jul-1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Linda Ann Horton,F,21,fatal,True,"Tiger shark, 5 m [16.5']","B. Myatt, GSAF",1983.07.26-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Horton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.26-Horton.pdf,1983.07.26,1983.07.26 +2927,25-Jul-1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",Swimming from the New Venture ,Dennis Patrick Murphy,M,24,fatal,True,"Tiger shark, 5 m [16.5']","H. Edwards, pp. 103-104; A. MacCormick, pp.110-112",1983.07.25.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.b-Murphy.pdf,1983.07.25.b,1983.07.25.b +2928,25-Jul-1983,Sea Disaster,AUSTRALIA,Queensland,"Off Lodestone Reef, Great Barrier Reef, north of Townsville",14 m prawn trawler New Venture capsized & sank in heavy seas Three people in the water,Ray Boundy,M,28,"Left knee bitten, but survived",False,"Tiger shark, 5 m [16.5']","H. Edwards, pp.103-104; A. MacCormick, pp.110-112 ",1983.07.25.a-Boundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.25.a-Boundy.pdf,1983.07.25.a,1983.07.25.a +2929,15-Jul-1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Seal Point, Cape St. Francis",Surfing,Ward Walkup,M,28,Left arm injured by shark's tail as it swam beneath his board,False,3 m to 4 m [10' to 13'] shark,"M. Levine, GSAF",1983.07.15-NV-Walkup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.15-NV-Walkup.pdf,1983.07.15,1983.07.15 +2930,12-Jul-1983,Unprovoked,USA,Florida,"Caloosahatchee River, Lee County",Windsurfing,Sandy Komito,F,39,Left ankle nipped (3 punctures wounds),False,3.5' hammerhead shark,"Miami Herald, 7/14/1983, p.12A",1983.07.12.b-Komito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.b-Komito.pdf,1983.07.12.b,1983.07.12.b +2931,08-Jul-1983,Unprovoked,BAHAMAS,Abaco Islands,Green Turtle Cay,Spearfishing,Eric Gijsendorfer ,M,13,Lacerations to left calf,False,3.5' hammerhead shark,"Miami Herald, 7/13/1983, p.2D",1983.07.12.a-Gijsendorfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.12.a-Gijsendorfer.pdf,1983.07.12.a,1983.07.12.a +2932,05-Jul-1983,Unprovoked,USA,Florida,"Riviera Beach, Palm Beach County",Floating on air mattress,Steven Osterman,M,17,"No injury, shark bit air mattress, deflating it",False,3.5' hammerhead shark,"E.Pace, FSAF",1983.07.05-Osterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.07.05-Osterman.pdf,1983.07.05,1983.07.05 +2933,29-Jun-1983,Unprovoked,USA,Florida,"Off 12th Street, Miami Beach",Swimming,Howard Rosen,M,42,Left foot bitten,False,3.5' hammerhead shark,"Miami Herald, 6/30/1983, ",1983.06.29-Rosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.29-Rosen.pdf,1983.06.29,1983.06.29 +2934,22-Jun-1983,Unprovoked,BAHAMAS,Abaco Islands,"Off Sandy Point, Great Abaco Island",Spearfishing,Carl James Harth,M,15,fatal,True,3.5' hammerhead shark,"Chicago Tribune, 8/21/1983, p.B7",1983.06.22-Harth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.22-Harth.pdf,1983.06.22,1983.06.22 +2935,20-Jun-1983,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing & dangling foot in water amid baitfish,Barry Skinner,M,21,Left foot lacerated,False,3.5' hammerhead shark,"Miami Herald, 6/22/1983, p.2B",1983.06.20-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.20-Skinner.pdf,1983.06.20,1983.06.20 +2936,15-Jun-1983,Unprovoked,BAHAMAS,Carter Cay,Carter Cay,Surfing & dangling foot in water amid baitfish,Roger Yost,M,30,Lacerations to hand & foot,False,6' blacktip shark,"E. Pace, FSAF",1983.06.15-NV-Yost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-NV-Yost.pdf,1983.06.15,1983.06.15 +2937,15-Jun-1983,Invalid,ITALY,Northwest Italy,Riomaggiore (Ligura),Scuba diving,Roberto Piaviali,M,30,"No injury, 3 m shark ""harassed"" him at depth of 5 m",False,Questionable incident,MEDSAF,1983.06.15-Piaviali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.15-Piaviali.pdf,1983.06.15,1983.06.15 +2938,June 1983,Unprovoked,BAHAMAS,Berry Islands,Whale Cay,Spearfishing,Carl Starling,M,30,Lacerations to thigh & buttocks,False,Caribbean reef shark,"E. Pace, FSAF & M. Levine, GSAF",1983.06.00-Starling,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.06.00-Starling,1983.06.00,1983.06.00 +2939,31-May-1983,Unprovoked,USA,Florida,"Intracoastal Waterway, Boca Raton, Palm Beach County",Water-skiing,Andrew Swersky ,M,21,"Left calf, knee & hands lacerated",False,6' shark,"E. Pace; Miami Herald, 6/2/1983, p.10A",1983.05.31-Swersky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.31-Swersky.pdf,1983.05.31,1983.05.31 +2940,24-May 1983,Unprovoked,USA,Florida," Riviera Beach, Palm Beach County",Surfing,Dave Coulter,M,15,"Knocked off board by shark, no injury",False,6' shark,"E. Pace, FSAF",1983.05.24-Coulter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.24-Coulter.pdf,1983.05.24,1983.05.24 +2941,21-May-1983,Unprovoked,USA,Florida,"Haulover Inlet, Dade County",Surfing,Jonathan Popper,M,22,Right foot bitten,False,6' shark,"The Palm Beach Post, 3/15/1989; Miami Herald, 5/22/1983 & 3/15/1989",1983.05.21-Popper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.05.21-Popper.pdf,1983.05.21,1983.05.21 +2942,19-Apr-1983,Unprovoked,USA,Florida,Florida,Surfing,Arnold Schwarzwood,M,22,No details,UNKNOWN,6' shark,"M. Vorenberg, GSAF",1983.04.19-NV-Schwarzwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.19-NV-Schwarzwood.pdf,1983.04.19,1983.04.19 +2943,12-Apr-1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Fishing,Peter S. Venter,M,27,Puncture wounds to foot,False,"Raggedtooth shark, 1.5 m [5'] (tooth fragment recovered)","R. Horn, East London Aquarium; Natal Witness, 4/14/1983",1983.04.12-Venter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.12-Venter.pdf,1983.04.12,1983.04.12 +2944,02-Apr-1983,Unprovoked,USA,Florida,"Lake Worth Beach, Palm Beach County",Surfing,Mark Steins,M,16,Left foot bitten,False,"Raggedtooth shark, 1.5 m [5'] (tooth fragment recovered)","Miami Herald, 4/3/1983, p.2D",1983.04.02.b-MarkSteins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.b-MarkSteins.pdf,1983.04.02.b,1983.04.02.b +2945,02-Apr-1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Mpande,Surfing,white male,M,16,Survived,False,Questionable incident,"Unverified report, NSB",1983.04.02.a-Mapande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.04.02.a-Mapande.pdf,1983.04.02.a,1983.04.02.a +2946,30-Mar-1983,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Spearfishing,Warren Johnson,M,17,Right calf lacerated,False,1.8 m [6'] Zambezi shark,"W. Johnson, M. Levine, GSAF; G. Charter, B. Davis, G. Cliff, NSB; T. Wallett, pp.65-66",1983.03.30.a-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.30.a-Johnson.pdf,1983.03.30.a,1983.03.30.a +2947,22-Mar-1983,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Ian Johnson,M,17,"No injury, board bitten",False,Blacktip or spinner shark,"G. Cliff, NSB",1983.03.22-IanJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.22-IanJohnson.pdf,1983.03.22,1983.03.22 +2948,10-Mar-1983,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Dave Lowen,M,17,"Shark nudged board, no injury",False,Blacktip or spinner shark,"M. Vorenberg, GSAF",1983.03.10-Lowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.10-Lowen.pdf,1983.03.10,1983.03.10 +2949,Mar-1983,Unprovoked,NEW CALEDONIA,Loyalty Islands,"We, Lifou",Surfing,a teenager,,17,Calf bitten,False,"""a small shark""",W. Leander,1983.03.00-teenager-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.03.00-teenager-NewCaledonia.pdf,1983.03.00,1983.03.00 +2950,20-Feb-1983,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mtunzini,Paddleskiing,Peter Swart,M,16,Puncture wounds to buttocks,False,3 m [10'] shark,"G. Charter, B. Davis & G. Cliff; Natal Mercury 2/22/1983",1983.02.20-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.02.20-Swart.pdf,1983.02.20,1983.02.20 +2951,24-Jan-1983,Provoked,USA,South Carolina,60 miles southeast of Beaufort,Fishing,Chandler Wynn,M,43,Leg bitten by captive shark PROVOKED INCIDENT,False,3 m [10'] shark,"Wilmington MorningStar, 1/25/1983",1983.01.24-Wynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.24-Wynn.pdf,1983.01.24,1983.01.24 +2952,15-Jan-1983,Invalid,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Fishing,black male,M,43,fatal,True,Shark involvement prior to death was not confirmed,"G. Cliff & B. Davis, NSB",1983.01.15-Amanzimtoti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.15-Amanzimtoti.pdf,1983.01.15,1983.01.15 +2953,10-Jan-1983,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Windsurfing,Richard Crewe,M,22,Left foot lacerated,False,Shark involvement prior to death was not confirmed,"Mrs. Crewe, B. Lipschitz, M. Levine, GSAF",1983.01.10-Crewe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.10-Crewe.pdf,1983.01.10,1983.01.10 +2954,08-Jan-1983,Unprovoked,SOUTH AFRICA,Western Cape Province,Holbaai,Spearfishing,Philip DeBruyn,M,32,"No injury, rammed by shark",False,White shark,"P. deBruyn, M. Levine, GSAF",1983.01.08-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.01.08-DeBruyn.pdf,1983.01.08,1983.01.08 +2955,Ca. 1983,Unprovoked,unknown,English Channel,English Channel,Swimming,Padma Shri Taranath Narayan Shenoy,M,32,Left leg bitten,False,White shark,"Times of India, 2/5/2012",1983.00.00.d-Shenoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.d-Shenoy.pdf,1983.00.00.d,1983.00.00.d +2956,1983,Unprovoked,VANUATU,Malampa Province,"Off the beach opposite Atchin Island, Malakula",Ran into the water,Swedish tourist,M,32,fatal,True,White shark,S. Combs,1983.00.00.c-SwissTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.c-SwissTourist.pdf,1983.00.00.c,1983.00.00.c +2957,1983,Provoked,USA,North & South Carolina,North & South Carolina,Fishing,Commercial fishermen,M,32,Bitten on their feet by landed sharks / lacerations only PROVOKED INCIDENTS,False,Blue sharks,F. Schwartz,1983.00.00.b-Carolina-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1983.00.00.b-Carolina-Fishermen.pdf,1983.00.00.b,1983.00.00.b +2958,Nov-1982,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",In waist-deep water,male,M,32,Arm bitten,False,Blue sharks, F. Schwartz,1982.11.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.11.00-male.pdf,1982.11.00,1982.11.00 +2959,13-Oct-1982,Unprovoked,USA,Florida,North Dade- Interama area of Biscayne Bay,Windsurfing,Rob Savanello ,M,26,Left foot lacerated,False,1.5 m [5'] shark,"P. Hamm, Miami Herald, 10/15/1982",1982.10.13-Savanello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.10.13-Savanello.pdf,1982.10.13,1982.10.13 +2960,30-Sep-1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Russell Lindsay,M,16,"No injury, pressure ding on surfboard",False,1.5 m [5'] shark,"R. Horn, E.L. Aquarium",1982.09.30.b-Lindsay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.b-Lindsay.pdf,1982.09.30.b,1982.09.30.b +2961,30-Sep-1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Surfing,Howard Fawkes,M,16,"No Injury, surfboard bitten",False,"Believed to involve a 2.8 m [9'3""] white shark","M. Levine, GSAF; R. Horn, E.L. Aquarium; T. Wallett, p.46-47",1982.09.30.a-Fawkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.30.a-Fawkes.pdf,1982.09.30.a,1982.09.30.a +2962,27-Sep-1982,Unprovoked,USA,Florida,"Patrick Air Force Base, Brevard County",Surfing,John Cibelli,M,20,Laceration to lower left leg,False,1.5 m [5'] shark,"Miami Herald, 9/28/1982",1982.09.27-Cibelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.27-Cibelli.pdf,1982.09.27,1982.09.27 +2963,25-Sep-1982,Unprovoked,USA,California,"Monastery Beach, Carmel Bay, Monterey County",Diving,Bruce Lang,M,36,Lacerations to hand,False,White shark,R. Collier,1982.09.25-Lang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.25-Lang.pdf,1982.09.25,1982.09.25 +2964,19-Sep-1982,Unprovoked,USA,California,"Bear Harbor, Mendocino County",Free diving for abalone from Zodiac (submerged),Michael J. Herder,M,28,Upper left thigh & buttocks bitten,False,5 m to 6 m [16.5' to 20'] white shark,"R.N. Lea & D. Miller; Herder, p. 1-3; R. Collier, pp.89-91; A. MacCormick, pp.80-81",1982.09.19-Herder_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.19-Herder_Collier.pdf,1982.09.19,1982.09.19 +2965,04-Sep-1982,Invalid,USA,Florida,"Hollywood Beach, Broward County",Free diving for abalone from Zodiac (submerged),male,M,mid-20s,"Remains recovered from 2.7 m tiger shark, but shark involvement prior to death unknown",False,Shark involvement prior to death was not confirmed,"Z. Arocha, Miami Herald, 9/5/1982",1982.09.04-Remains-TigerShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.09.04-Remains-TigerShark.pdf,1982.09.04,1982.09.04 +2966,29-Aug-1982,Unprovoked,JAPAN,Kumamoto Prefecture,Ariake Bay,Free diving for abalone from Zodiac (submerged),Yako Yajima,M,mid-20s,fatal,True,Shark involvement prior to death was not confirmed,K. Nakaya,1982.08.29.c-Yajima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.c-Yajima.pdf,1982.08.29.c,1982.08.29.c +2967,29-Aug-1982,Invalid,USA,California,"Morro Rock, Morro Bay, San Obispo County",Surfing,John Buchanan,M,17,"No Injury, board bitten",False,Questionable incident; reported as shark attack but thought to involve a pinniped instead ,"R.N. Lea & D. Miller; R. Collier, pp.87-89 ",1982.08.29.b-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.b-Buchanan.pdf,1982.08.29.b,1982.08.29.b +2968,29-Aug-1982,Unprovoked,SOUTH AFRICA,Western Cape Province,Langebaan,Swimming,Verenia Keet,F,18,"Left knee, lower leg & foot bitten",False,Questionable incident; reported as shark attack but thought to involve a pinniped instead ,"V. Keet, M. Levine, GSAF",1982.08.29.a-Keet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.29.a-Keet.pdf,1982.08.29.a,1982.08.29.a +2969,Late Aug-1982,Unprovoked,TUNISIA,"Skanes, near Monaster","Skanes, near Monaster",Windsurfing,"male, a teen",M,18,Thigh lacerated,False,"2.1 m [7'] shark, possibly a spinner shark",MEDSAF,1982.08.00-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.08.00-Tunisia.pdf,1982.08.00,1982.08.00 +2970,31-Jul-1982,Invalid,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Boogie boarding,Riaan van Rensburg,M,20,"No injury, swim fin bitten",False,Invalid,"M. Levine, GSAF",1982.07.31-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.31-VanRensburg.pdf,1982.07.31,1982.07.31 +2971,24-Jul-1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Nahoon, East London",Paddleskiing,Brian ‘Archie’ Plumb,M,38,"No injury, ski bitten",False,"2.4 m [8'] white shark, species identity confirmed by tooth fragment","B. Plumb, M. Levine, GSAF; R. Horn, E.L. Aquarium; T. Wallett, p.46",1982.07.24.b-Plumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.b-Plumb.pdf,1982.07.24.b,1982.07.24.b +2972,24-Jul-1982,Unprovoked,USA,California,"Point Buchon, San Luis Obispo County",Paddle Boarding,Casimir Pulaski,M,26,"No Injury, board bitten",False,4.5 m to 5.5 m [14.7' to 18'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.86-87; G. Ambrose, pp.113-120",1982.07.24.a-Pulaski_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.24.a-Pulaski_Collier.pdf,1982.07.24.a,1982.07.24.a +2973,19-Jul-1982,Unprovoked,USA,Florida,"Stuart Beach, Martin County ",Swimming,Jonathan Orth,M,17,Left ankle bitten,False,0.9 m to 1.2 m [3' to 4'] shark,"Miami Herald, 7/21/1982, p.1D",1982.07.19-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.19-Orth.pdf,1982.07.19,1982.07.19 +2974, 11-Jul-1982,Invalid,USA,California,"Malibu, Los Angeles County",Swimming,Gerald Winkle,M,43,Laceration to left thigh,False,"Reported as a shark attack, the story was a hoax","Chronicle Telegram, 7/12/1982, p.A4; Daily Herald , 7/13/1982",1982.07.11-Winkle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.11-Winkle.pdf,1982.07.11,1982.07.11 +2975,01-Jul-1982,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Janet Babb,F,19,Laceration to left leg,False,"Reported as a shark attack, the story was a hoax","Daytona Beach Morning Journal, 7/2/1982",1982.07.01-Babb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.01-Babb.pdf,1982.07.01,1982.07.01 +2976,Jul-1982,Unprovoked,NEW CALEDONIA,South Province,"Sarcelle, Isle of Pines",Swimming,Rene Bull,,19,Left arm bitten,False,"Reported as a shark attack, the story was a hoax",W. Leander,1982.07.00-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.07.00-Bull.pdf,1982.07.00,1982.07.00 +2977,29-Jun-1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Ntlonyana Bay,Surfing,Alex Macun,M,27,fatal,True,"2.4 m [8'] white shark, species identity confirmed by witnesses & tooth pattern in surfboard","M. Levine, GSAF; R.B. Wilson, B. Davis, NSB; T. Wallett, p.46",1982.06.29-Macun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.29-Macun.pdf,1982.06.29,1982.06.29 +2978,26-Jun-1982,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Murray Branson,M,20,Left arm bitten,False,5' shark,"Chillicothe Constitution Tribune, 6/30/1982",1982.06.26.b-Branson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.b-Branson.pdf,1982.06.26.b,1982.06.26.b +2979,26-Jun-1982,Unprovoked,BAHAMAS,Andros Islands,North Rat Cay Reef,Spearfishing ,Philip Sweeting,M,19,Arm severed at elbow,False,"Lemon shark, 2 m [6'9""]","R. Attrill; R.D. Weeks, GSAF",1982.06.26.a-Sweeting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.26.a-Sweeting.pdf,1982.06.26.a,1982.06.26.a +2980, 25-Jun-1982,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County",Spearfishing ,Tara Dean,F,8,Foot bitten,False,"Lemon shark, 2 m [6'9""]","Wellsboro Gazette, 6/30/1982",1982.06.25-TaraDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.25-TaraDean.pdf,1982.06.25,1982.06.25 +2981,13-Jun-1982,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui","Sailboarding, fell into water 100 yards outside the breakwater",Scott Shoemaker,M,8,Thigh bitten 3 times,False,"1.2 m to 1.5 m [4' to 5'] ""reef shark""","J. Borg, p.76; L. Taylor (1993), pp.106-107; Windsurfing Magazine, Sept/Oct 1993",1982.06.13-Shoemaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.06.13-Shoemaker.pdf,1982.06.13,1982.06.13 +2982,May 1982,Invalid,USA,South Carolina,"Daws Island, Broad River (near Beaufort)","Sailboarding, fell into water 100 yards outside the breakwater","female, possibly victim of a small plane crash in the vicinity",F,Ca. 33,Human remains recovered from tiger shark,False,Shark involvement prior to death was not confirmed,"Clay Creswell, GSAF",1982.05.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.05.00-HumanRemains.pdf,1982.05.00,1982.05.00 +2983,10-Mar-1982,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Matthew McGrath,M,16,Elbow bitten,False,Shark involvement prior to death was not confirmed,"M. Vorenberg, GSAF",1982.03.10-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.10-McGrath.pdf,1982.03.10,1982.03.10 +2984,07-Mar-1982,Unprovoked,AUSTRALIA,New South Wales,"Tallow Beach, Byron Bay",Surfing,Allan Ford,M,20,fatal,True,Shark involvement prior to death was not confirmed,"A. Sharpe, pp.4, 86-87",1982.03.07-AllenFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.07-AllenFord.pdf,1982.03.07,1982.03.07 +2985,Mar-1982,Unprovoked,NEW CALEDONIA,unknown,unknown,Spearfishing,Gaston Torii,M,20,Arm bitten,False,Shark involvement prior to death was not confirmed,W. Leander,1982.03.00-Torii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.03.00-Torii.pdf,1982.03.00,1982.03.00 +2986,28-Feb-1982,Unprovoked,AUSTRALIA,Tasmania,South Cape Bay,Spearfishing,Geert Talen,M,32,fatal,True,5.5 m [18''] white shark,"C. Black, pp. 159-163",1982.02.28-Talen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.28-Talen.pdf,1982.02.28,1982.02.28 +2987,27-Feb-1982,Unprovoked,USA,Florida,"Hobe Sound, Palm Beach County",Surfing,Richard Bauer,M,18,Lacerations to left hand and forearm,False,4' to 5' shark,"Palm Beach Post, 3/2/1982 ",1982.02.27-Bauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.27-Bauer.pdf,1982.02.27,1982.02.27 +2988,17-Feb-1982,Provoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Fishing,J. Jordaan,M,18,Leg bitten above ankle by hooked shark taken aboard skiboat PROVOKED INCIDENT,False,4' to 5' shark,"Mossel Bay Advertiser, 2/19/1982",1982.02.17-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.17-Jordaan.pdf,1982.02.17,1982.02.17 +2989,14-Feb-1982,Unprovoked,USA,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Wading,Lisa Miller,F,18,Left leg bitten,False,4' to 5' shark,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1982.02.14.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.b-Miller.pdf,1982.02.14.b,1982.02.14.b +2990,14-Feb-1982,Unprovoked,USA,Hawaii,"White Plains Beach, Barbers Point, O'ahu",Swimming,female,F,18,Right foot bitten,False,4' to 5' shark,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1982.02.14.a-WhitePlainsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.14.a-WhitePlainsBeach.pdf,1982.02.14.a,1982.02.14.a +2991,13-Feb-1982,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Swimming,Gladys Sackville,F,75,fatal,True,4' to 5' shark,"M. Vorenberg, GSAF",1982.02.13-Sackville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.13-Sackville.pdf,1982.02.13,1982.02.13 +2992,07-Feb-1982,Unprovoked,USA,California,"Stillwater Cove, Sonoma County",Scuba diving (submerged),"Donald ""Harvey"" Smith",M,75,Calf & ankle bitten,False,5 m [16.5'] white shark,"R.N. Lea & D. Miller; R. Collier, p.86",1982.02.07.a-Smith_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.a-Smith_Collier.pdf,1982.02.07.a,1982.02.07.a +2993,07-Feb-1982,Unprovoked,USA,Florida,Elliot Key,Diving,Kim Seibel ,M,29,fatal,True,5 m [16.5'] white shark,"Miami Herald, 9/5/1982, p.1B",1982.02.07.b-Seibel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.02.07.b-Seibel.pdf,1982.02.07..b,1982.02.07..b +2994,29-Jan-1982,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mpekeweni,Swimming,Jeffrey Phillips-Page,M,20,Right shin & toe lacerated,False,Raggedtooth shark,"J. Phillips-Page, M. Levine, GSAF",1982.01.29-Phillips-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.01.29-Phillips-Page.pdf,1982.01.29,1982.01.29 +2995,1982,Boat,ITALY,Tyrrhenian Sea,"Lacona, Isola d'Elba",Boat,Giovanni Vuoso,M,20,No details,UNKNOWN,6 m [20'] white shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1982.00.00.c-boat-Vuoso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.c-boat-Vuoso.pdf,1982.00.00.c,1982.00.00.c +2996,1982,Boat,ITALY,Tyrrhenian Sea,"Biodola, Isola d'Elba",Fishing on a boat,Giuseppe Campodonico,M,20,No injury,False,White shark,"A. De Maddalena; Perfetti (1989), M. Zuffa (pers. Comm.)",1982.00.00.b-Campodonico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.b-Campodonico.pdf,1982.00.00.b,1982.00.00.b +2997,1982,Unprovoked,TUNISIA,Biserta,Bechateur,Spearfishing,English holiday-maker,,20,No details,UNKNOWN,White shark,MEDSAF,1982.00.00.a-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1982.00.00.a-Tunisia.pdf,1982.00.00.a,1982.00.00.a +2998,19-Dec-1981,Unprovoked,USA,California,"South Moss Beach, Spanish Bay, Monterey Peninsula",Surfing,Lewis Boren,M,24,fatal,True,7 m [23'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.84-85; A. MacCormick, p.220",1981.12.19-Boren_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.19-Boren_Collier.pdf,1981.12.19,1981.12.19 +2999,13-Dec-1981,Unprovoked,AUSTRALIA,Queensland,Green Island,Surfing,Zola Dale,,24,Abdomen lacerated,False,7 m [23'] white shark,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1981.12.13.b-NV-ZolaDale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.b-NV-ZolaDale.pdf,1981.12.13.b,1981.12.13.b +3000,13-Dec-1981,Unprovoked,USA,Hawaii,"Nimitz Beach, Barbers Point, O'ahu","Spearfishing, but swimming on surface",Melvin T. Toma,M,24,Right leg severely bitten,False,"Tiger shark, 3.7 m [12']","J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.12.13.a-Toma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.12.13.a-Toma.pdf,1981.12.13.a,1981.12.13.a +3001,30-Nov-1981,Unprovoked,REUNION,Saint-Philippe,Vicendo,Spearfishing,Lucien Mercier,M,24,Survived,False,"Tiger shark, 3.7 m [12']",G. Van Grevelynghe,1981.11.30-Mercier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.30-Mercier.pdf,1981.11.30,1981.11.30 +3002,19-Oct-1981,Provoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Inspecting teeth of supposedly dead (hooked & shot) shark,Callie Van Aswegan,M,24,Hand lacerated PROVOKED INCIDENT,False,"3.5 m [11.5'], 510-kg [1125-lb] hooked & shot white shark","M. Levine, GSAF",1981.10.19.b-VanAswegan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.b-VanAswegan.pdf,1981.10.19.b,1981.10.19.b +3003,09-Nov-1981,Unprovoked,USA,Hawaii,"La'au Point, Moloka'i",Diving to untangle a crab trap line from boat's propeller,Leo A. Ohai,M,59,Hand bitten,False,"2.1 m [7'] shark with ""a very flat head” that had followed the boat for 3 days","J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.11.09-Ohai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.11.09-Ohai.pdf,1981.11.09,1981.11.09 +3004,19-Oct-1981,Unprovoked,USA,Florida,"Jupiter Island, Brevard County",Swimming,Van Horn Ely,M,19,Hand & forearm bitten,False,1.8 m to 2.4 m [6' to 8'] shark,"Chronicle Telegram, 10/20/1981 ",1981.10.19.a-VanHornEly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.19.a-VanHornEly.pdf,1981.10.19.a,1981.10.19.a +3005,17-Oct-1981,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Surfing,Robert Conklin,M,19,No details,UNKNOWN,1.8 m to 2.4 m [6' to 8'] shark,"M. Vorenberg, GSAF",1981.10.17-NV-Conklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.17-NV-Conklin.pdf,1981.10.17,1981.10.17 +3006,16-Oct-1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Robert Keifling,M,17,Puncture wounds to left foot,False,1.8 m to 2.4 m [6' to 8'] shark,"The Bulletin, 10/19/1981",1981.10.16-Keifling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.16-Keifling.pdf,1981.10.16,1981.10.16 +3007,01-Oct-1981,Unprovoked,USA,Florida,"Playalinda Beach, Brevard County",Surfing,Scott Armstrong,M,24,Laceration to right leg,False,6' shark,"St. Petersburg Times, 10/3/1981",1981.10.01-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.10.01-Armstrong.pdf,1981.10.01,1981.10.01 +3008,28-Sep-1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Stan Wing,M,28,5 puncture marks to hip,False,6' shark,"St. Petersburg Times, 10/1/1981",1981.09.28-Wing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.28-Wing.pdf,1981.09.28,1981.09.28 +3009,27-Sep-1981,Unprovoked,USA,Florida,"Melbourne Beach, Brevard County",Surfing,James Smodell,M,28,Lacerations to right hand,False,6' shark,"Sarasota Herald-Tribune, 9/29/1981",1981.09.27-Smodell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.27-Smodell.pdf,1981.09.27,1981.09.27 +3010,15-Sep-1981,Unprovoked,USA,Florida,"Tampa Bay, Manatee County",Swimming,Mark Meeker,M,26,fatal,True,Said to involve a tiger shark or a hammerhead shark,"S. Pelham, M.D.; NY Times, 9/21/1981, p.18, col.1; E. Pace, FSAF",1981.09.15-Meeker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.15-Meeker.pdf,1981.09.15,1981.09.15 +3011,03-Sep-1981,Unprovoked,USA,Florida,"Patrick Air Force Base, Brevard County",Surfing,Richard Corrack,M,25,Lacerations to 2 fingers of left hand,False,Said to involve a tiger shark or a hammerhead shark,"St Petersburg Times, 9/5/1981",1981.09.03.b-Corrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.b-Corrack.pdf,1981.09.03.b,1981.09.03.b +3012,03-Sep-1981,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Douglas Christie,M,24,Laceration to foot,False,Said to involve a tiger shark or a hammerhead shark,"St Petersburg Times, 9/5/1981",1981.09.03.a-Christie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.09.03.a-Christie.pdf,1981.09.03.a,1981.09.03.a +3013,29-Aug-1981,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Stephen Drosdick,M,15,Laceration to left ankle,False,6' shark,"Pacific Stars and Stripes, 8/31/1981 ",1981.08.29-Drosdick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.29-Drosdick.pdf,1981.08.29,1981.08.29 +3014,24-Aug-1981,Provoked,USA,Florida,Gulf Island National Seashore Park,Spearfishing,Ted Best,M,19,"Shot shark, then it bit him. Puncture wounds on leg PROVOKED INCIDENT",False,"1.8 m [6'] shark, species identity questionable","A. MacCormick, pp.82-83, citing the New Orleans Times-Picayune, 8/25/1981",1981.08.24.b-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.b-Best.pdf,1981.08.24.b,1981.08.24.b +3015,24-Aug-1981,Invalid,USA,Hawaii,"Keaukaha, Hilo, Hawai'i",Fishing,Ernest Watson,M,19,Disappeared while fishing from shore. Leg found 7 days later wedged in rocks 150 yards offshore,False,Shark involvement prior to death remains unconfirmed,"J. Borg, p.75; L. Taylor (1993), pp.104-105",1981.08.24.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.24.a-Watson.pdf,1981.08.24.a,1981.08.24.a +3016,10-Aug-1981,Unprovoked,USA,Florida,"Marathon, Monroe County",Diving,Mike Barber,M,19,Bite to face,False,small nurse shark,"E. Pace, FSAF",1981.08.10.b-Barber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.b-Barber.pdf,1981.08.10.b,1981.08.10.b +3017,10-Aug-1981,Unprovoked,USA,Florida,"Ormond Beach / Daytona Beach, Volusia County","16' catamaran capsized previous night, occupants stayed with wreckage until morning, then attempted to swim ashore",Christy Wapniarski,F,19,fatal,True,small nurse shark,"E. Pace, GSAF; J. McAniff, SAF; A. MacCormick, pp.12 & 13; Orlando Sentinel, 12/6/1985; K Duffy, Daytona Beach News Journal, 8/26/2001",1981.08.10.a-Wapniarski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.10.a-Wapniarski.pdf,1981.08.10.a,1981.08.10.a +3018,07-Aug-1981,Unprovoked,BAHAMAS,Grand Bahama Island,"Gingerbread Reef, east of Little Isaac Island ",Snorkeling on surface,Robert Marx,M,53,Upper right arm bitten,False,Mako shark (tooth fragments recovered),"R. Marx, E. Clark; M. Levine, GSAF; Note: Marx says the incident took place in 8/8/1982 or 1983",1981.08.07-Marx.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.08.07-Marx.pdf,1981.08.07,1981.08.07 +3019,20-Jul-1981,Unprovoked,USA,Florida,"St. Petersburg Beach, Pinellas County",Swimming,Lisa Drenko,F,16,"Foot bitten between arch & big toe, no stitches required",False,"""sandshark""","E. Pace, GSAF",1981.07.20-NV-Drenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.20-NV-Drenko.pdf,1981.07.20,1981.07.20 +3020,18-Jul-1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Barry Van Der Helm,M,32,7 lacerations to right foot,False,Possibly a 1.8 m [6'] Zambezi shark,"B. V.D. Helm; R. Horn; M. Levine, GSAF",1981.07.18-vanderHelm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.18-vanderHelm.pdf,1981.07.18,1981.07.18 +3021,07-Jul-1981,Unprovoked,USA,Florida,Carter Cay,Spearfishing,Ed Cannette,M,32,Left foot & ankle lacerated,False,2.4 m [8'] shark,"E. Pace, GSAF",1981.07.07-NV-Cannette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.07-NV-Cannette.pdf,1981.07.07,1981.07.07 +3022,01-Jul-1981,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Clansthal,Catching sardines,John Wilson,M,32,Laceration to calf,False,"""gray shark""","Chronicle Telegram, 7/1/1981",1981.07.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.07.01-Wilson.pdf,1981.07.01,1981.07.01 +3023,Reported 15-Jun-1981,Boat,ENGLAND,Isle of Wight,Isle of Wight,Fishing,2 fishermen,M,32,Minor injuries from shark that leapt aboard their boat,False,"13', 400-lb thresher shark","The Times (London), 6/15/1981",1981.06.15.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.15.R-Isle-of-Wight.pdf,1981.06.15.R,1981.06.15.R +3024,12-Jun-1981,Invalid,USA,Hawaii,"Honoli'i Pali, Hilo Bay ('Alae Point), Hawai'i",Fishing,Preston D. Soley,M,32,"Probable drowning, 1.2 m [4'] shark hindered recovery of body",False,Shark involvement prior to death was not confirmed,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1981.06.12-Soley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.06.12-Soley.pdf,1981.06.12,1981.06.12 +3025,24-May-1981,Unprovoked,USA,Hawaii,"Ha'ena Beach Park, Kaua'i","Scuba diving, reportedly also spearfishing",Roger B. Garletts,M,32,fatal,True,Shark involvement prior to death was not confirmed,"J. Borg, p.87; L. Taylor (1993), pp.104-105",1981.05.24-Garletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.24-Garletts.pdf,1981.05.24,1981.05.24 +3026,23-May-1981,Unprovoked,SOUTH KOREA,Chungnam,Wae-yeon Island,Shell diving,Pak Kyong-sun ,F,27,fatal,True,6 m white shark,Y. Choi & K. Nakaya,1981.05.23-Pak-Kyong-sun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.23-Pak-Kyong-sun.pdf,1981.05.23,1981.05.23 +3027,20-May-1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Surfing,Mark Jury,M,27,"Shark & board collided. No injury, but board was dented",False,Raggedtooth shark,"M. Jury, M. Levine, GSAF",1981.05.20-Jury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.20-Jury.pdf,1981.05.20,1981.05.20 +3028,19-May-1981,Unprovoked,USA,Florida,"Sands Cut, Elliot Key",Free diving,Mohammed Rahimnejad,M,32,Massive tissue damage of left arm,False,Raggedtooth shark,J. McAniff; Miami Herald 5/22/1981,1981.05.19-Rahimnejad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.19-Rahimnejad.pdf,1981.05.19,1981.05.19 +3029,16-May-1981,Unprovoked,USA,Florida,"Jacksonville, Duval County",Diving,Carey Ford,M,32,Left arm bitten,False,Lemon shark,"E. Pace, FSAF",1981.05.16-NV-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.16-NV-Ford.pdf,1981.05.16,1981.05.16 +3030,10-May-1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,King’s Beach,Surfing,John Dunser,M,19,"No Injury, board bitten",False,"Raggedtooth shark, 2.5 m [8.25'] ","M. Smale, PE Museum",1981.05.10-Dunser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.10-Dunser.pdf,1981.05.10,1981.05.10 +3031,07-May-1981,Provoked,NAMIBIA,Eronogo Region,Walvis Bay,Finning the shark that bit him,Crewman of Taiwanese tuna boat Sin Shih Ki II,M,19,Lacerations PROVOKED INCIDENT,False,"Raggedtooth shark, 2.5 m [8.25'] ","M. Levine, GSAF; Natal Witness",1981.05.07.R-WalvisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.07.R-WalvisBay.pdf,1981.05.07,1981.05.07 +3032,08-Mar-1981,Sea Disaster,BERMUDA,unknown,unknown,Foundering of the Israeli freighter Mezada,"New York Times, 3/13/1981",,19,Next day 2 bodies recovered from sharks,False,"Raggedtooth shark, 2.5 m [8.25'] ","New York Times, 3/13/1981",1981.03.08-Mezada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.08-Mezada.pdf,1981.03.08,1981.03.08 +3033,05-May-1981,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Ntlonyane Bay,Surfing,Simon Hammerton,M,24,"Left leg bitten, surgically amputated",False,"Tiger shark, 2.1 m [7']","S. Hammerton, M. Levine, GSAF; W. Pople, G. Charter, NSB",1981.05.05-Hammerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.05.05-Hammerton.pdf,1981.05.05,1981.05.05 +3034,25-Mar-1981,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Standing / Wading,Christopher J. Auditore,M,19,"Lacerations on calf, ankle & heel",False,"1.2 m to 1.5 m [4' to 5'] bull, sandbar or dusky shark","M. Vorenberg, GSAF",1981.03.25-Auditore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.25-Auditore.pdf,1981.03.25,1981.03.25 +3035,24-Mar-1981,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Robert Thomas,M,24,Puncture wounds on right thigh,False,C. maculpinnis or C. limbatus,"M. Vorenberg, GSAF",1981.03.24-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.24-Thomas.pdf,1981.03.24,1981.03.24 +3036,04-Mar-1981,Unprovoked,CHILE,Coquimbo,"Bahia Totoralillo, 80 km north of Coquimbo",Free diving Spearfishing,Carlos Veraga M.,M,24,Foot & ankle bitten,False,White shark,J. McCosker & A.C. Engana,1981.03.04-Vergara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.04-Vergara.pdf,1981.03.04,1981.03.04 +3037,Mar-1981,Unprovoked,BRAZIL,Rio de Janeiro,Cabo Frio,Diving,"Globo, ",,24,UNKNOWN,UNKNOWN,White shark,"Globo, ",1981.03.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.03.00-Brazil.pdf,1981.03.00,1981.03.00 +3038,19-Feb-1981,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umtentweni,Swimming,Richard Guy,M,30,Foot lacerated,False,Juvenile dusky or blacktip shark,"R. Guy, M. Levine, GSAF",1981.02.19-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.19-Guy.pdf,1981.02.19,1981.02.19 +3039,16-Feb-1981,Unprovoked,AUSTRALIA,Western Australia,"Leighton Beach, north of Freemantle",Exercising his dog in the shallows,Steven Fawcett,M,30,Puncture wounds to foot,False,1 m hammerhead shark,"A. Sharpe, p.134",1981.02.16-Fawcett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.16-Fawcett.pdf,1981.02.16,1981.02.16 +3040,07-Feb-1981,Unprovoked,AUSTRALIA,Western Australia,"Parker's Point, Rottnest Island",Exercising his dog in the shallows,Filmer,,30,No details,UNKNOWN,1 m hammerhead shark,"T. Peake, GSAF",1981.02.07-NV-Filmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.07-NV-Filmer.pdf,1981.02.07,1981.02.07 +3041,02-Feb-1981,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Surfing,Michael A. Reist,M,15,Lacerations & punctures in left calf & ankle,False,1.8 m to 2.4 m [6' to 8'] hammerhead shark,"M. Vorenberg, GSAF",1981.02.02-Reist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.02-Reist.pdf,1981.02.02,1981.02.02 +3042,Feb-1981,Unprovoked,BRAZIL,Rio de Janeiro,Cabo Frio,Spearfishing,O. Gadig,,15,Left arm lacerated,False,1.8 m to 2.4 m [6' to 8'] hammerhead shark,O. Gadig,1981.02.00-CaboFrio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.02.00-CaboFrio.pdf,1981.02.00,1981.02.00 +3043,30-Jan-1981,Unprovoked,USA,Florida,20 miles from Mayport,Commercial spearfishing,Carey Ford,M,25,3 small punctures in scalp & ripped nostril,False,Tiger shark,J. McAniff,1981.01.30-CareyFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.30-CareyFord.pdf,1981.01.30,1981.01.30 +3044,01-Jan-1981,Invalid,SOUTH AFRICA,KwaZulu-Natal,Widenham,Swimming,Moonsamy Dayalan,M,23,Probable drowning & scavenging by 1.5 m tiger shark,False,Shark involvement prior to death was not confirmed,"W.O. Hutt; W. Pople, G. Charter, B. Davis, Natal Sharks Board",1981.01.01-Dayalan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.01.01-Dayalan.pdf,1981.01.01,1981.01.01 +3045,1981,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Surf-skiing,Warren Rowe,M,27,"No injury, ski bitten",False,"Tiger shark, 2.5 m ","Sunday Mail (QLD), 9/6/1987, p.10",1981.00.00.b-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.b-Rowe.pdf,1981.00.00.b,1981.00.00.b +3046,Summer of 1981,Unprovoked,GREECE,Pagasitikos Gulf,Pagasitikos Gulf,"Free diving / spearfishing, ",an Austrian tourist,M,27,Minor injury,False,"Tiger shark, 2.5 m ",M. Bardanis,1981.00.00.a-Austrian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1981.00.00.a-Austrian-diver.pdf,1981.00.00.a,1981.00.00.a +3047,12-30-1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Paddleskiing,Noel Yates,M,25,"No injury, paddleski bitten",False,3.5 m [11.5'] shark,"N. Yates, M. Levine, GSAF",1980.12.30-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.30-Yates.pdf,1980.12.30,1980.12.30 +3048,26-Dec-1980,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Paddleskiing,male,,25,Probable drowning & scavenging,False,Shark involvement prior to death was not confirmed,"Eastern Province Herald, 12/29/1980",1980.12.26-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.12.26-scavenging.pdf,1980.12.26,1980.12.26 +3049,24-Nov-1980,Unprovoked,REUNION,Grand'Anse,Petite-Ile,Spearfishing,Jean-Michel Pothin,M,22,Bitten twice,False,1.8 m [6'] white shark,G. Van Grevelynghe,1980.11.24-Pothin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.24-Pothin.pdf,1980.11.24,1980.11.24 +3050,18-Nov-1980,Unprovoked,AUSTRALIA,Western Australia,Lancelin,Swimming,"G.R. Bohan, an Able Seaman stationed on HMAS Stirling at Garden Island",M,22,"Right shoulder bitten, puncture wounds on chest & lacerations on his back",False,1.8 m [6'] white shark,"A. Sharpe, pp.133-134",1980.11.18-Bohan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.18-Bohan.pdf,1980.11.18,1980.11.18 +3051,17-Nov-1980,Invalid,SOUTH AFRICA,KwaZulu-Natal,Mnini,Swimming,Baba Sibaya,M,22,Probable drowning & scavenging,False,Shark involvement prior to death was not confirmed,"W.O. Hutt; G. Charter, B. Davis, Natal Sharks Board",1980.11.17-BabaSibaya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.17-BabaSibaya.pdf,1980.11.17,1980.11.17 +3052,11-Nov-1980,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming,Ibson Gomes Vieira ,M,16,fatal,True,Shark involvement prior to death was not confirmed,"JC Online, 6/25/2012",1980.11.11-Vieira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.11.11-Vieira.pdf,1980.11.11.,1980.11.11. +3053,27-Oct-1980,Unprovoked,USA,Oregon,Off Umpqua River,Surfing,Christopher Cowan,M,29,Thigh lacerated,False,4 m to 5 m [13' to 16.5'] white shark,"R.N. Lea & D. Miller; R. Collier, pp.83-84",1980.10.27-Cowan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.27-Cowan_Collier.pdf,1980.10.27,1980.10.27 +3054,17-Oct-1980,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,Curt Vikan,M,19,No injury,False,4 m to 5 m [13' to 16.5'] white shark,"R. N. Lea & D. Miller; R. Collier, pp.82-83",1980.10.17-Vikan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.10.17-Vikan_Collier.pdf,1980.10.17,1980.10.17 +3055,Reported 22-Aug-1980,Unprovoked,MEXICO,unknown,unknown,Diving in tuna net,Gerald Correria,M,22,fatal,True,4 m to 5 m [13' to 16.5'] white shark,"Valley Independent, 8/22/1980, p.16",1980.08.22.R-Correria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.22.R-Correria.pdf,1980.08.22.R,1980.08.22.R +3056,10-Aug-1980,Unprovoked,USA,North Carolina,"Ocean Isle, Brunswick County",Wading,Susan Waters,F,10,Bitten behind knee & lower leg,False,4 m to 5 m [13' to 16.5'] white shark,"Chronicle Telegram, 8/11/1980; F. Schwartz, p.23",1980.08.10-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.10-Waters.pdf,1980.08.10,1980.08.10 +3057,04-Aug-1980,Unprovoked,USA,Hawaii,"Puamana, Lahaina, Maui",Resting on body board,Mark Skidgel,M,10,Torso bitten,False,"Tiger shark, 4.3 m [14'] ","J. Borg, p.75; L. Taylor (1993), pp.104-105 - Note: SAF lists this as 8/10/1980",1980.08.04-Skidgel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.08.04-Skidgel.pdf,1980.08.04,1980.08.04 +3058,26-Jul-1980,Unprovoked,SPAIN,Canary Islands,"San Juan de la Rambla, Tenerife",Skin diving,Fuentes Gonzalez Escualo ,M,10,Thigh injured,False,Blue shark,C. Moore. GSAF,1980.07.26-Escualo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.26-Escualo.pdf,1980.07.26,1980.07.26 +3059,27-Jul-1980,Unprovoked,USA,New Jersey,"Ocean City, Cape May County",Body surfing,Jeff Moffat,M,15,Back bitten,False,Blue shark,J. Moffat; W. Ruderman,1980.07.27-Moffat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.27-Moffat.pdf,1980.07.27,1980.07.27 +3060,23-Jul-1980,Unprovoked,USA,Delaware,Dewey Beach,Standing,Phyllis Riley,F,22,"No injury, shark bit her bathing suit",False,4' to 8' shark,"Washington Post, 7/23/1980",1980.07.23-PhyllisRidley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.23-PhyllisRidley.pdf,1980.07.23,1980.07.23 +3061,Late Jul-1980,Unprovoked,USA,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County",Surfing,male,M,22,"No injury, bumped off board",False,4' to 8' shark,"C. Creswell, GSAF, J. Barnes",1980.07.00-NCsurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-NCsurfer.pdf,1980.07.00,1980.07.00 +3062,Early Jul-1980,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Tom Durrance,M,22,Lower leg bitten,False,4' to 8' shark,"Daytona Beach Morning Journal, 7/9/1980",1980.07.00-Durrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.07.00-Durrance.pdf,1980.07.00,1980.07.00 +3063,26-Jun-1980,Provoked,USA,California,"Off San Clemente Island, Los Angeles County",Scuba diving,Valerie Taylor,F,44,Laceration to lower leg PROVOKED INCIDENT,False,Blue shark,"The Australian Women's Weekly, 10/1/1980",1980.06.26-ValTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.06.26-ValTaylor.pdf,1980.06.26,1980.06.26 +3064,15-May-1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Fuller’s Bay,Surfing,Eric Stedman,M,22,"No injury, board bitten",False,1.8 m [6'] shark,"C. Vernon, G. Ross, P.E. Museum; M. Levine, GSAF",1980.05.15-Stedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.05.15-Stedman.pdf,1980.05.15,1980.05.15 +3065,25-Apr-1980,Provoked,JAMAICA,St. Mary's Parish,"Priestman's River area, East Portland",Spearfishing,Venus Goulbourne,M,22,Hand bitten by speared shark PROVOKED INCIDENT ,False,1.8 m [6'] shark,"The Gleaner, 7/27/1980",1980.04.25-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.25-Venus.pdf,1980.04.25,1980.04.25 +3066,22-Apr-1980,Sea Disaster,PHILIPPINES,Romblon Province,"Maestre de Campo Island, 120 miles south of Manila",Sinking of the ferryboat Don Juan,"Daily Collegian, 4/24/1980",,22,fatal,True,1.8 m [6'] shark,"Daily Collegian, 4/24/1980",1980.04.22-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.22-DonJuan.pdf,1980.04.22,1980.04.22 +3067,Apr-1980,Unprovoked,MEXICO,Sinaloa,Mazatlán,Body surfing,Kim Giambalvo,F,13,Right calf bitten,False,Tiger shark,K. Giambalvo-Sprague; R. Collier,1980.04.00-Giambalvo-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.04.00-Giambalvo-Sprague.pdf,1980.04.00,1980.04.00 +3068,29-Mar-1980,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umdhloti,Free diving,Ray Booth,M,52,fatal,True,Tiger shark,"W. Pople, G. Charter, B. Davis, Natal Sharks Board",1980.03.29-RayBooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.29-RayBooth.pdf,1980.03.29,1980.03.29 +3069,28-Mar-1980,Unprovoked,BRAZIL,Rio de Janeiro,"Copacabana Beach, Rio de Janiero",Swimming,J.M.,M,52,Right leg bitten,False,2 m shark,M. Szpilman,1980.03.28-JM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.28-JM.pdf,1980.03.28,1980.03.28 +3070,15-Mar-1980,Sea Disaster,PHILIPPINES,250 miles southwest of Manila,250 miles southwest of Manila,Sinking of the ferryboat Bongbong 1,2 women,F,52,fatal,True,2 m shark,"Valley Independent, 3/17/1980",1980.03.15-Bongbong1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.15-Bongbong1.pdf,1980.03.15,1980.03.15 +3071,11-Mar-1980,Provoked,SOUTH AFRICA,Western Cape Province,Velddrif,Fishing,Frederik Mannetjies Oom Binneman,M,61,Leg lacerated by netted shark PROVOKED INCIDENT,False,1.5 m [5'] hammerhead shark,"F.M. Binneman, P. Logan, M. Levine, GSAF",1980.03.11-Binneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.03.11-Binneman.pdf,1980.03.11,1980.03.11 +3072,31-Jan-1980,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Ballito,Body boarding,Shaun Wright,M,24,"Both hands & heel of left foot lacerated, right foot severed",False,"2.8 m [9'3""] white shark","M. Levine, GSAF; W. Pople, G. Charter, B. Davis, NSB; T. Wallett, p.60",1980.01.31-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.31-Wright.pdf,1980.01.31,1980.01.31 +3073,25-Jan-1980,Unprovoked,KENYA,Lamu Archipelago,South of Lamu Island,Spearfishing,Dennis Richard,M,29,Ankle & foot lacerated,False,2.2 m shark,J. E. Randall,1980.01.25-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.25-Richard.pdf,1980.01.25,1980.01.25 +3074,15-Jan-1980,Provoked,SOUTH AFRICA,KwaZulu-Natal,Anstey’s,Spearfishing,Les Winkworth,M,29,"No injury, rammed & catapulted from the water by shark after he shot at it & missed PROVOKED INCIDENT",False,"2 m [6'9""] Zambesi shark","L. Winkworth, M. Levine, GSAF",1980.01.15-Winkworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.15-Winkworth.pdf,1980.01.15,1980.01.15 +3075,13-Jan-1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Sardinia Bay,Swimming,Peter Clarke,M,29,Abrasion,False,Hammerhead shark,"Eastern Province Herald, 1/17/1980, M. Levine, GSAF",1980.01.13-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.13-Clarke.pdf,1980.01.13,1980.01.13 +3076,10-Jan-1980,Unprovoked,SOUTH AFRICA,Eastern Cape Province,King’s Beach,Swimming,Andy Austin,M,25,3 small punctures on arm,False,"Raggedtooth shark, 2 m [6'9""] ",M. Smale,1980.01.10-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.10-Austin.pdf,1980.01.10,1980.01.10 +3077,05-Jan-1980,Unprovoked,CHILE,Los Vilos,"Punta Negra, Pichidangui",Hookah Diving,Jose Larenas-Miranda,M,25,fatal,True,White shark,J. McCosker & A.C. Engana,1980.01.05-Miranda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.01.05-Miranda.pdf,1980.01.05,1980.01.05 +3078,Summer 1980,Provoked,NORTH ATLANTIC OCEAN,Onboard swordfish trawler,Onboard swordfish trawler,Gaffing netted shark,Sidney Hallett,M,34,Arm lacerated by gaffed shark PROVOKED INCIDENT,False,1.8 m [6'] dogfish,"A. Resciniti, pp.105-106",1980.00.00.d-Hallett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.d-Hallett.pdf,1980.00.00.d,1980.00.00.d +3079,1980s ,Invalid,GREECE,Island of Kos,Island of Kos,Surfing,male,M,34,Knee bitten,False,Said to involve a white shark but shark involvement not confirmed,MEDSAF,1980.00.00.c-NV-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.c-NV-Greece.pdf,1980.00.00.c,1980.00.00.c +3080,1980,Invalid,SOUTH AFRICA,Eastern Cape Province,Bonza Bay,Spearfishing,Sean Mitchley,M,20,No injury; 2 m shark made threat display and impaled itself on spear,False,Invalid,"P. Sachs, M. Levine, GSAF",1980.00.00.b-Mitchley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.b-Mitchley.pdf,1980.00.00.b,1980.00.00.b +3081,1980s ,Unprovoked,TONGA,Ha'api,Ha'ano Island,Spearfishing,A male from Muitoa,M,20s,Chest bitten,False,Invalid,Dr. S. Fonea,1980.00.00.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1980.00.00.a-Tonga.pdf,1980.00.00.a,1980.00.00.a +3082,21-Dec-1979,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kenton-on-Sea,Swimming,Carl Shemaly,M,18,Shin lacerated,False,Invalid,"M. Bowker; W. Pople, NSB",1979.12.21-Shemaly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.21-Shemaly.pdf,1979.12.21,1979.12.21 +3083,05-Dec-1979,Invalid,PORTUGAL,Madeira Islands,"Sao Jorge, Madeira Island",Spearfishing,Fernando Branco de Abreu,M,19,fatal,True,White shark?,C. Moore. GSAF,1979.12.00-Madeira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.00-Madeira.pdf,1979.12.00,1979.12.00 +3084, 01-Dec-1979,Unprovoked,SOUTH CHINA SEA,unknown,unknown,Diving,Peter Lee,M,32,Toothmarks on head & neck,False,6' shark,"Sydney Morning Herald, 12/6/1979 ",1979.12.01-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.12.01-Lee.pdf,1979.12.01,1979.12.01 +3085,27-Nov-1979,Unprovoked,USA,Oregon,"Haystack Rock, Cannon Beach, Clatsop County",Surfing,Kenny Doudt,M,20,Multiple major Injuries,False,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, p. 76-79; J. McCosker & R.N. Lea; K. Doudt",1979.11.27-KennyDoudt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.27-KennyDoudt_Collier.pdf,1979.11.27,1979.11.27 +3086,12-Nov-1979,Provoked,SOUTH AFRICA,Western Cape Province,Macassar,Shark fishing,"skiboat, occupants: Gustav Boettger, Clive Mason, Keith Murrison & Sweis Olivier",,20,"No injury to occupants; hooked shark tore out part of transom, bit skeg of motor and snapped the steel trace PROVOKED INCIDENT",False,"White shark, 5 m ",GSAF,1979.11.12-ski-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.11.12-ski-boat.pdf,1979.11.12,1979.11.12 +3087,22-Oct-1979,Provoked,SOUTH AFRICA,Eastern Cape Province,Algoa Bay,Fishing,Willie Dorfling,M,20,Bitten below right knee by hooked shark pulled onboard skiboat PROVOKED INCIDENT,False,"Raggedtooth shark, 50-kg [110-lb], 2 m [6.75'] gaffed ",GSAF,1979.10.22-Dorfling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.10.22-Dorfling.pdf,1979.10.22,1979.10.22 +3088,14-Sep-1979,Unprovoked,AUSTRALIA,New South Wales,Byron Bay,Scuba diving,Michael Oliver,M,18,Leg bitten,False,"""a small shark""","Canberra Times, 9/15/1979",1979.09.14-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.09.14-Oliver.pdf,1979.09.14,1979.09.14 +3089,28-Aug-1979,Unprovoked,HONG KONG,Mirs Bay,Mirs Bay,Freedom swimming,male,M,21,fatal,True,"""a small shark""","Sydney Morning Herald, 8/30/1979 ",1979.08.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.28-HongKong.pdf,1979.08.28,1979.08.28 +3090,26-Aug-1979,Unprovoked,HONG KONG,Ho Ha Wan Marine Park,Ho Ha Wan Marine Park,Freedom swimming,male,M,16,fatal,True,"""a small shark""","J. Wong, GSAF",1979.08.26-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.26-NV-HongKong.pdf,1979.08.26,1979.08.26 +3091,05-Aug-1979,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Kayaking,John P. Seiner,M,49,Lacerations to foot,False,"""a small shark""","Sarasota Herald Tribune, 8/9/1979",1979.08.05-Seiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.05-Seiner.pdf,1979.08.05,1979.08.05 +3092,03-Aug-1979,Unprovoked,THAILAND,Southern Thailand,Southern Thailand,Murdered by Thai pirates,male,M,49,fatal,True,"""a small shark""","The Canberra Times, 8/3/1979",1979.08.03.R-Pirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.08.03.R-Pirates.pdf,1979.08.03,1979.08.03 +3093,19-Jun-1979,Sea Disaster,USA,Florida,10 miles off Cape Canaveral,Floating with life preserver after his boat foundered,William Shaw,M,56,Lacerations to leg,False,"""a small shark""","Troy Record, 6/21/1979",1979.06.19-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.06.19-Shaw.pdf,1979.06.19,1979.06.19 +3094,27-May-1979,Invalid,USA,Florida,"Fort Walton Beach, Okaloosa County",Scuba diving,Captain Tommy Edward Neel,M,36,fatal,True,Shark involvement prior to death was not confirmed,"Post Standard, 5/29/1979, p.3",1979.05.27-Neel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.27-Neel.pdf,1979.05.27,1979.05.27 +3095,05 May 1979,Provoked,SOUTH AFRICA,Western Cape Province,"Hangklip, False Bay",Spearfishing,Piet Boonzaaier,M,25,Shark rammed diver after he shot it in the head PROVOKED INCIDENT,False,"White shark, 2.5 m [8.25'] ",Dr. P. Landsberg,1979.05.05-Boonzaaier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.05-Boonzaaier.pdf,1979.05.05,1979.05.05 +3096,03-May-1979,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Mbibi,Scuba diving,Alan Edly Symons,M,25,fatal,True,"White shark, 2.5 m [8.25'] ","W. Pople, G. Charter, B. Davis, NSB",1979.05.03-Symons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.03-Symons.pdf,1979.05.03,1979.05.03 +3097,May 1979,Unprovoked,NEW CALEDONIA,North Province,Ile Yandé (between Poum and Bélep),Fishing,"W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",,25,"Thigh severely injured, survived",False,"White shark, 2.5 m [8.25'] ","W. Leander; Les Nouvelles Caledoniennes, 3/17/2000",1979.05.00.c-fisherman-Yande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.c-fisherman-Yande.pdf,1979.05.00.c,1979.05.00.c +3098,May 1979,Unprovoked,NEW CALEDONIA,North Province,Balade,Fishing,Ferdinand Teanyouen,M,25,fatal,True,2 m shark,W. Leander,1979.05.00.b-Teanyouen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.05.00.b-Teanyouen.pdf,1979.05.00.b,1979.05.00.b +3099,08-Apr-1979,Unprovoked,USA,Florida,"Public Beach (Carlin Park), Jupiter, Palm Beach County",Swimming,Mark Beekler,M,24,Right foot & ankle lacerated,False,2 m shark,"M. Vorenberg, GSAF",1979.04.08.b-Beekler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.b-Beekler.pdf,1979.04.08.b,1979.04.08.b +3100,08-Apr-1979,Unprovoked,USA,Florida,"Municipal Beach, Boyton Beach, Palm Beach County",Body surfing,Robert Kennedy III,M,8,Right foot bitten,False,2 m shark,"M. Vorenberg, GSAF",1979.04.08.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.04.08.a-Kennedy.pdf,1979.04.08.a,1979.04.08.a +3101,24-Mar-1979,Unprovoked,USA,Florida,"Singer Island, Riviera Beach, Palm Beach County",Surfing,Donald A. Stewart,M,27,Foot & ankle bitten,False,Blacktip or spinner shark,"M. Vorenberg, GSAF",1979.03.24-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.24-Stewart.pdf,1979.03.24,1979.03.24 +3102,11-Mar-1979,Unprovoked,USA,California,"Ano Nuevo Island, San Mateo, County",Scuba diving (submerged),Calvin Sloan,M,27,"No injury, swim fin bitten",False,"White shark, 4 m to 5 m [13' to 16.5'] ","D. Miller & R. Collier, R. Collier, p.76",1979.03.11-CalvinSloan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.11-CalvinSloan_Collier.pdf,1979.03.11,1979.03.11 +3103,01-Mar-1979,Boat,SOUTH AFRICA,Western Cape Province,Seal Island,Scuba diving (submerged),Fishing boat,,27,No Injury,False,"White shark, 4 m to 5 m [13' to 16.5'] ",GSAF,1979.03.01-NV-SealIslandboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.01-NV-SealIslandboat.pdf,1979.03.01,1979.03.01 +3104,Mar-1979,Unprovoked,NEW CALEDONIA,Grand Terre,"Five Mile Beach, I'le Ouen",Spearfishing,Manuel Teau,M,27,fatal,True,"White shark, 4 m to 5 m [13' to 16.5'] ",W. Leander,1979.03.00-Teau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.03.00-Teau.pdf,1979.03.00,1979.03.00 +3105,21-Feb-1979,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,"Surfing, collided with shark",Charles Kantor,M,19,Punctures on left thigh,False,1.5 m to 2 m [5' to 6.75'] shark,"C. Kantor, Dr. Macrae, M. Levine, GSAF; G. Charter, NSB",1979.02.21-Kantor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.02.21-Kantor.pdf,1979.02.21,1979.02.21 +3106,1979,Unprovoked,USA,Hawaii,"South Kohala, Hawai'i",Fishing,elderly male,M,19,fatal,True,1.5 m to 2 m [5' to 6.75'] shark,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1979.00.00-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1979.00.00-ElderlyMale.pdf,1979.00.00,1979.00.00 +3107,29-Dec-1978,Unprovoked,AUSTRALIA,Queensland,Bribie Island,Fishing,Wayne Brown,M, ,Survived,False,1.5 m to 2 m [5' to 6.75'] shark,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1978.12.29-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.29-Brown.pdf,1978.12.29,1978.12.29 +3108,12-Dec-1978,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Sodwana,Spearfishing,Phillip 'Flip' Steenkamp,M,23,fatal,True,"White shark, 2.3 m [7.5'], tooth fragment recovered","M. Levine, GSAF; W. Pople, G. Charter, NSB; Dr. Marais; T. Wallett, pp.57-58",1978.12.12-Steenkamp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.12.12-Steenkamp.pdf,1978.12.12,1978.12.12 +3109,26-Nov-1978,Unprovoked,USA,Hawaii,"Ewa, O'ahu",Surfing,Wendell Cabunoc,M,23,Left arm bitten,False,2.4 m [8'] shark,"Star-Phoenix, 11/29/1978",1978.11.26-Cabunoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.26-Cabunoc.pdf,1978.11.26,1978.11.26 +3110,23-Nov-1978,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Surfing,Jorge Alvarez,M,17,Hand lacerated,False,2.4 m [8'] shark,"New York Times, 11/26/1978, p.24",1978.11.23-Alvarez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.11.23-Alvarez.pdf,1978.11.23,1978.11.23 +3111,21-Oct-1978,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Fishing camp, St. Lucia Estuary",Fishing,Mr. Kuppasamy,M,17,fatal,True,Shark involvement prior to death was not confirmed,"Natal Parks Board, J. Daniel; W. Pople, G. Charter, GSAF",1978.10.21-Kuppasamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.10.21-Kuppasamy.pdf,1978.10.21,1978.10.21 +3112,27-Sep-1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Miller's Point, False Bay",Spearfishing,Erik Lombard,M,27,"No injury, shark took his catch, then towed & pushed diver through the water ",False,"White shark, 3.7 m [12'] ","E. Lombard, M. Levine, GSAF",1978.09.27-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.27-Lombard.pdf,1978.09.27,1978.09.27 +3113,16-Sep-1978,Unprovoked,ITALY,Tyrrhenian Sea,Capo d'Anzio,Diving,Fabrizio Marini,M,27,No injury,False,"White shark, 5 m [16.5'] ",A. De Maddalena; Marini (1989),1978.09.16-Marini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.16-Marini.pdf,1978.09.16,1978.09.16 +3114,Reported 02-Sep-1978,Unprovoked,AUSTRALIA,Tasmania,"Cape Pillar, Storm Bay",Scuba diving for abalone,Jim Scott,M,34,Several broken ribs,False,15' shark,"Chronicle Telegram, 9/2/1978 ",1978.09.02.R-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.09.02.R-Scott.pdf,1978.09.02.R,1978.09.02.R +3115,05-Aug-1978,Unprovoked,USA,California,"Pajaro Dunes, Santa Cruz County",Wading,Pat DuNah,M,34,Punctures on leg (minor injury),False,"2 m [6'9""] shark","D. Miller & R. Collier, R. Collier, p.75 ",1978.08.05-DuNah_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.05-DuNah_Collier.pdf,1978.08.05,1978.08.05 +3116,Reported 01-Aug-1978,Unprovoked,USA,Florida,Florida Straits,Floating on inner tube raft,Ramon Cordoba,M,27,Minor injury to ankle,False,"2 m [6'9""] shark","Miami News, 8/1/1978",1978.08.01.R-Cordoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.08.01.R-Cordoba.pdf,1978.08.01.R,1978.08.01.R +3117,27-Jul-1978,Sea Disaster,USA,South Carolina,South Carolina,"Explosion destroyed 28' boat, survivors in the water ",Sam Boger,M,39,"No injury, his foot was bumped by a shark biting the body of a passenger that had drowned.",False,"2 m [6'9""] shark","NY Times, 7/28/1978, p.6, col.6",1978.07.27-Boger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.27-Boger.pdf,1978.07.27,1978.07.27 +3118,19-Jul-1978,Provoked,USA,California,"Newport Beach, Orange County",Fishing,Harry Griffet,M,27,Laceration to leg by hooked shark PROVOKED INCIDENT,False,"2 m [6'9""] shark","Fresno Bee, 7/19/1978",1978.07.19-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.07.19-Griffet.pdf,1978.07.19,1978.07.19 +3119,21-Jun-1978,Unprovoked,USA,Florida,"South of Neptune Beach, Duval County",Surfing,Fred Dean Hunt,M,20,Foot bitten,False,"2 m [6'9""] shark","Bryan Times, 6/23/1978",1978.06.21.b-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.b-Hunt.pdf,1978.06.21.b,1978.06.21.b +3120,21-Jun-1978,Unprovoked,USA,Florida,"Neptune Beach, Duval County",Surfing,Mack Shelton,M,17,Foot nipped,False,"2 m [6'9""] shark","Bryan Times, 6/23/1978",1978.06.21.a-Shelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.21.a-Shelton.pdf,1978.06.21.a,1978.06.21.a +3121,07-Jun-1978,Invalid,ITALY,Golfo de Venezia,Acqua alta research platform,Surfing,A. DeMaddalena,,17,"No injury, white shark struck platform",False,Invalid,A. DeMaddalena,1978.06.07-Platform.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.06.07-Platform.pdf,1978.06.07,1978.06.07 +3122,02-Apr-1978,Unprovoked,MARSHALL ISLANDS,Ralik Archipelago,Enewetak Atoll,Diving,Philip Light,M,25,Laceration to left hand,False,Invalid,"Modesto Bee, 4/4/1978",1978.04.02.b-Light.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.b-Light.pdf,1978.04.02.b,1978.04.02.b +3123,02-Apr-1978,Unprovoked,MARSHALL ISLANDS,Ralik Archipelago,Enewetak Atoll,Diving,Mike deGruy,M,23,Lacerations to right forearm ,False,Invalid,"Modesto Bee, 4/4/1978",1978.04.02.a-DeGruy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.02.a-DeGruy.pdf,1978.04.02.a,1978.04.02.a +3124,Apr-1978`,Unprovoked,AUSTRALIA,Tasmania,Beechford,Scuba diving,Colin Wrankmore,M,23,Thigh bitten,False,"Sevengill shark, 2.4 m","C. Black, pp. 157-159",1978.04.00-Wrankmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.04.00-Wrankmore.pdf,1978.04.00,1978.04.00 +3125,05-Mar-1978,Boat,SOUTH AFRICA,Eastern Cape Province,"Gulu Deep, East London",Scuba diving,"6 m skiboat, occupants: P.A. Reeder & crew",,23,"No injury to occupants; shark rammed boat 4 times, bit engine & cracked the hull",False,"Sevengill shark, 2.4 m",GSAF,1978.03.05-GuluDeep.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.03.05-GuluDeep.pdf,1978.03.05,1978.03.05 +3126,28-Feb-1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Seal Island, False Bay",Fishing for mackerel,"The June, occupants Bunny Pendelbury and crew of 6",,23,"Shark jumped in boat, but no injury to occupants",False,270 kg shark,"Eastern Province Herald, 3/2/1978",1978.02.28-PendleburyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.28-PendleburyBoat.pdf,1978.02.28,1978.02.28 +3127,19-Feb-1978,Unprovoked,SOUTH AFRICA,Western Cape Province,"Miller's Point, False Bay",Diving,Nicky Alberts,M,23,"No injury, rammed by shark",False,White shark,"Natal Mercury, 2/21/1978",1978.02.19-NickyAlberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.02.19-NickyAlberts.pdf,1978.02.19,1978.02.19 +3128,07-Jan-1978,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Glenashley,Surfing,Laurence Evans,M,17,"Left leg, ankle & foot bitten",False,Thought to involve a blacktip shark,"W. Pople, G. Charter, B. Davis, NSB",1978.01.17-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.17-Evans.pdf,1978.01.17,1978.01.17 +3129,06-Jan-1978,Invalid,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Surfing,"W. Pople, NSB",M,17,"Human head recovered from 3 m [10'] tiger shark’s gut, probable drowning / scavenging",False,Shark involvement prior to death was not confirmed,"W. Pople, NSB",1978.01.06.R-CapeVidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.01.06.R-CapeVidal.pdf,1978.01.06,1978.01.06 +3130,1978,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Sharon Wolfe Cranston,F,17,Foot bitten,False,Shark involvement prior to death was not confirmed,"The Beachside Resident, 9/19/2010",1978.00.00.b-Cranston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.b-Cranston.pdf,1978.00.00.b,1978.00.00.b +3131,1978,Unprovoked,VANUATU,Malampa Province,"Ranon, Ambryn",Swimming,Vanuatu Weekly Hebdomadaire,F,17,fatal,True,Shark involvement prior to death was not confirmed,"N. Bird, Tok Blong Pacific, 9/22/2003",1978.00.00.a-Bong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1978.00.00.a-Bong.pdf,1978.00.00.a,1978.00.00.a +3132,31-Dec-1977,Sea Disaster,USA,Hawaii,2 miles off Keahole Airport,"Swimming, after single-engine aircraft went down in the sea",Harold Corbett,M,49,Feet lacerated,False,Shark involvement prior to death was not confirmed,"NY Times, 1/3/1978, p.14, col.1",1977.12.31-Corbett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.31-Corbett.pdf,1977.12.31,1977.12.31 +3133,19-Dec-1977,Unprovoked,USA,Florida,"Hobe Sound, Palm Beach County",Surfing,Raymond Brockway,M,27,Laceration to right hand,False,Shark involvement prior to death was not confirmed,"Sarasota Herald-Tribune, 12/20/1977",1977.12.19.b-Brockway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.b-Brockway.pdf,1977.12.19.b,1977.12.19.b +3134,19-Dec-1977,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Qolera River,Surfing,Kim Pearce,M,18,"Both legs bitten, 2 days later gangrene necessitated surgical amputation of left leg at mid-thigh",False,"Tiger shark, 3 m [10']","K. Pearce, M. Levine, GSAF; W. Pople, B. Davis, G. Charter, NSB; T. Wallett, p.42",1977.12.19.a-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.19.a-Pearce.pdf,1977.12.19.a,1977.12.19.a +3135,Dec-1977,Boat,SOUTH AFRICA,Western Cape Province,"Macassar, False Bay",Fishing for bottom fish,"boat, occupant: Danie Schoeman",,18,No injury to occupant: shark bit boat's port chine,False,3 m [10'] white shark (Tooth recovered from boat),"T. Wallett, p.38",1977.12.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.12.00-Schoeman.pdf,1977.12.00,1977.12.00 +3136,12-Nov-1977,Provoked,SOUTH AFRICA,Western Cape Province,Klein River Lagoon,Standing,male,M,18,Shark lacerated his hand when he grabbed it by the tail PROVOKED INCIDENT,False,1.5 to 2 m [5' to 6.75'] shark,"Times of Hermanus, 11/16/1977",1977.11.12-KleinRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.11.12-KleinRiver.pdf,1977.11.12,1977.11.12 +3137,30-Oct-1977,Unprovoked,SOUTH AFRICA,Western Cape Province,"Bluegums Rock, Partridge Point",Spearfishing,Andre Hartman,M,25,"No injury, shark bit speargun & pushed diver through the water",False,"White shark, 5 m [16.5'] ","A. Hartman; M. Levine, GSAF",1977.10.30-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.10.30-Hartman.pdf,1977.10.30,1977.10.30 +3138,31-Aug-1977,Unprovoked,AUSTRALIA,South Australia,"Cactus Beach, near Ceduna",Surfing,Philip Horley,M,17,"Board rammed & bitten, left thigh lacerated",False,White shark,"The Age, 9/2/1977",1977.08.31-Horley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.31-Horley.pdf,1977.08.31,1977.08.31 +3139,23-Aug-1977,Unprovoked,AUSTRALIA,Queensland,"Buddina Beach, south of Noosa",Floating on an inflatable raft,George Walter,M,25,fatal,True,White shark,"The Age, 9/1/1977; A. Sharpe, p.104",1977.08.23-Walter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.23-Walter.pdf,1977.08.23,1977.08.23 +3140,19-Aug-1977,Boat,SOUTH AFRICA,Western Cape Province,Off Macassar Beach,Fishing,"6 m skiboat, occupants: Alex Mamacos, Noel Glintenkamp, Tony Mountifield & Dillon Alexandra",M,25,"Shark leapt into boat, pinning Mamacos beneath and fracturing his pelvis, then trashed the boat rendering it inoperable",False,White shark,"T. Wallett, pp.33-34",1977.08.19-Mamacos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.19-Mamacos.pdf,1977.08.19,1977.08.19 +3141,14-Aug-1977,Unprovoked,USA,California,"McClure Beach, near Tomales Point, Marin County",Free diving for abalone (surfacing),Glenn Friedman,M,20,Leg lacerated,False,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.73-74; J. McCosker & R.N. Lea ",1977.08.14-Friendman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.14-Friendman_Collier.pdf,1977.08.14,1977.08.14 +3142,05-Aug-1977,Invalid,USA,Florida,"St. Petersburg, Pinellas County",Wading,Michael Muradian,M,17,Lacerations to hip and leg,False,Shark involvement not confirmed,"St. Petersburg Independent, 8/8/1977",1977.08.05-Muradian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.08.05-Muradian.pdf,1977.08.05,1977.08.05 +3143,02-Jul-1977,Sea Disaster,USA,California,"Off San Diego, San Diego County",40' fishing boat sank,Steve Posey,M,21,Laceration to right hand,False,Shark involvement not confirmed,"The Times (San Mateo), 7/5/1977",1977.07.02-Posey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.07.02-Posey.pdf,1977.07.02,1977.07.02 +3144,26-Jun-1977,Provoked,USA,Florida,"12 miles northeast of Mayport, Duval County",Spearfishing / Scuba diving,Willie White,M,27,"PROVOKED INCIDENT Diver poked shark with spear, then shark bit his right foot",False,"Bull shark, 8","News Tribune, 6/28/1977 & 7/14/1977 ",1977.06.26-WillieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.26-WillieWhite.pdf,1977.06.26,1977.06.26 +3145,06-Jun-1977,Unprovoked,USA,Texas,Padre Island,Collecting fish from net,"Dan Baen, Jr.",M,25,Lacerations to wrist,False,"Bull shark, 4' to 5' ","Abilene Reporter-News, 6/9/1977",1977.06.06-Baen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.06.06-Baen.pdf,1977.06.06,1977.06.06 +3146,26-May-1977,Boat,SOUTH AFRICA,Western Cape Province,13 km off Knysna ,Fishing for yellowtail,"5 m skiboat Graanjan, occupants: Rudy van Graan, Jan de Waal Lombard",M,25,Lombard's thigh was lacerated by shark that leapt into boat ,False,"Mako shark, 2.3 m, 150-kg ","T. Wallett, pp.32-33",1977.05.26-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.26-Lombard.pdf,1977.05.26,1977.05.26 +3147,16-May-1977,Invalid,AUSTRALIA,Queensland,Southport,Fishing for yellowtail,Gordon Gibbs,M,25,"Missing, believed taken by a shark",False,"Mako shark, 2.3 m, 150-kg ","Courier-Mail, 10/2/1992, p.2",1977.05.16-NV-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.05.16-NV-Gibbs.pdf,1977.05.16,1977.05.16 +3148,26-Apr-1977,Unprovoked,AUSTRALIA,Queensland,Tallebudgera,Fishing for yellowtail,Gary Jones,M,25,Survived,False,"Mako shark, 2.3 m, 150-kg ","R. McKenzie, Sunday Mail, 9/6/1987, p.11",1977.04.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.26-Jones.pdf,1977.04.26,1977.04.26 +3149,21-Apr-1977,Unprovoked,USA,Hawaii,"Ka'anapali, Maui",Swimming,Ruskin Vest,M,25,Arm bitten,False,1.2 m [4'] shark,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1977.04.21-Vest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.04.21-Vest.pdf,1977.04.21,1977.04.21 +3150,17-Mar-1977,Unprovoked,SOUTH AFRICA,Western Cape Province,"Lappiesbaai Beach, Stilbaai",Swimming,Dr. Rolf Johan Lund,M,31,Right foot bitten,False,1.2 m [4'] shark,"R.J. Lund, M. Levine, GSAF; T. Wallett, pp.41-42",1977.03.17-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.17-Lund.pdf,1977.03.17,1977.03.17 +3151,13-Mar-1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Verdon Harrison,M,32,"His feet were bitten by sharks, but he was rescued by a charter boat that arrived on the scene just an hour and 15 minutes after the sharks first appeared, too late to save the lives of Hayes and Beaver",False,1.2 m [4'] shark,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.c-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.c-Harrison.pdf,1977.03.13.c,1977.03.13.c +3152,13-Mar-1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",Victor Beaver,M,74 ,fatal,True,1.2 m [4'] shark,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.b-Beaver.pdf,1977.03.13.b,1977.03.13.b +3153,13-Mar-1977,Sea Disaster,AUSTRALIA,Queensland,Near Moreton Island in Moreton Bay,"Their 9 m launch was run down by a 25,000-ton Japanese freighter on the night of 3-11-1977 & they drifted, clinging to an icebox for 2 days",John Hayes,M,45 ,fatal,True,1.2 m [4'] shark,"Sunday Mail (QLD), 10/11/1992, p.109; A. Sharpe, pp.103-104",1977.03.13.a-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.03.13.a-Hayes.pdf,1977.03.13.a,1977.03.13.a +3154,26-Feb-1977,Unprovoked,AUSTRALIA,New South Wales,"Kingscliffe Beach, south of Tweed Heads","Pushed surfmat of a young girl out of the shark's path, drawing shark's attention to his own board",Paul Howard,M,24,"Left hand, arm & leg lacerated, & shark bit chunk out of his surfboard",False,4 m [13'] shark,"Ruston Daily Leader, 2/28/1977; A. Sharpe, p.86",1977.02.26-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.26-Howard.pdf,1977.02.26,1977.02.26 +3155,04-Feb-1977,Invalid,AUSTRALIA,Victoria,Sorrento Back Beach,"Pushed surfmat of a young girl out of the shark's path, drawing shark's attention to his own board",male,M,24,Shark involvement prior to death was unconfirmed,False,Shark involvement prior to death was not confirmed,"The Age, 2/8/1977",1977.02.04-Sorrento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.04-Sorrento.pdf,1977.02.04,1977.02.04 +3156,Feb-1977,Unprovoked,NEW CALEDONIA,I'le Ouen,I'le Ouen,"Pushed surfmat of a young girl out of the shark's path, drawing shark's attention to his own board",Jean Blanchet,,24,Face & thorax bitten,False,Shark involvement prior to death was not confirmed,W. Leander,1977.02.00-Blanchet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.02.00-Blanchet.pdf,1977.02.00,1977.02.00 +3157,Jan-1977,Unprovoked,MEXICO,Guerrero,La Playa Hornos (near Acapulco),Swimming,Mexican male,M,24,fatal,True,Shark involvement prior to death was not confirmed,"A.Resciniti, p.107",1977.01.00-MexicanMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1977.01.00-MexicanMale.pdf,1977.01.00,1977.01.00 +3158,29-Dec-1976,Unprovoked,AUSTRALIA,Queensland,Caloundra,Swimming,Graham Archall,M,24,Survived,False,Shark involvement prior to death was not confirmed,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1976.12.29-Archall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.29-Archall.pdf,1976.12.29,1976.12.29 +3159,18-Dec-1976,Unprovoked,USA,California,"San Miguel Island, Santa Barbara County",Hookah diving for abalone (submerged),Jay Worrell,M,29,Buttocks & hip bitten,False,"White shark, 5.5 m [18'] ","D. Miller & R. Collier, R. Collier, pp.72-73; J. McCosker & R.N. Lea",1976.12.18-Worrell_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.12.18-Worrell_Collier.pdf,1976.12.18,1976.12.18 +3160,27-Nov-1976,Unprovoked,SOUTH AFRICA,Western Cape Province,Clifton,"Thrashing the water / imitating the shark victim from ""Jaws""",Geoffrey Kirkam Spence,M,19,Torso bitten,False,"White shark, 3 m [10'] k","G. Spence, M. Levine, P. Snydercombe, P. Schwartz, Rousseau, J. Wallace, R.M. Strover; T. Wallett, pp.42-47",1976.11.27-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.27-Spence.pdf,1976.11.27,1976.11.27 +3161,26-Nov-1976,Invalid,AUSTRALIA,Queensland,Southport Bar,"Thrashing the water / imitating the shark victim from ""Jaws""",Albert van Ryseen,,19,"Missing, believed taken by a shark, but not confirmed",False,Shark involvement prior to death was not confirmed,"Courier-Mail, 10/2/1992, p.2",1976.11.26-NV-vanRyseen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.26-NV-vanRyseen.pdf,1976.11.26,1976.11.26 +3162,25-Nov-1976,Unprovoked,USA,Florida,"Delray Beach, Palm Beach County",Surfing,Al Brenneka,M,19,"Right arm severed 1"" below elbow with extensive tissue loss 3"" above elbow",False,2.1 m [7'] lemon shark or bull shark,"A. Brenneka; E. Pace; NY Times, 11/26/1976, I, p.18, col.6",1976.11.25-Brenneka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.25-Brenneka.pdf,1976.11.25,1976.11.25 +3163,23-Nov-1976,Invalid,SOUTH AFRICA,KwaZulu-Natal,Warner Beach,Swimming,Jimmy Jackson,M,17,Laceration to foot,False,Questionable incident,Natal Mercury,1976.11.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.23-Jackson.pdf,1976.11.23,1976.11.23 +3164,Nov-1976,Provoked,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for white shark,"boat, occupant: Danie Schoeman",,17,"No injury to occupants. Hooked shark bit boat's transom, PROVOKED INCIDENT",False,"White shark, 4.8 m ","T. Wallett, p.37-38",1976.11.06-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.11.06-Schoeman.pdf,1976.11.06,1976.11.06 +3165,27-Oct-1976,Boat,SOUTH AFRICA,Western Cape Province,Gordon’s Bay,Boat,"7 m skiboat Alrehmah III, occupants: Adolph Schlechter & 3 friends",,17,"No injury to occupants, shark leapt on bow of boat",False,White shark,"T. Wallett, p.32",1976.10.27-AlremahII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.27-AlremahII.pdf,1976.10.27,1976.10.27 +3166,18-Oct-1976,Unprovoked,USA,California,"Moonstone Beach, Humboldt County",Surfing,William Kennedy,M,25,Leg bitten ,False,"White shark, 3 m to 4 m [10' to 13'] ","D. Miller & R. Collier, R. Collier, pp.70-71; J. McCosker & R.N. Lea",1976.10.18-Kennedy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.18-Kennedy_Collier.pdf,1976.10.18,1976.10.18 +3167,06-Oct-1976,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,Marshall Flanagan,M,20,Left thigh lacerated,False,"White shark, 3.5 m [11.5'], species identity confirmed by tooth fragment","M. Levine, GSAF; J. Wallace,ORI; T. Wallett, p.40-41",1976.10.06-Flanagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.10.06-Flanagan.pdf,1976.10.06,1976.10.06 +3168,22-Sep-1976,Sea Disaster,NEW CALEDONIA,Sarcelle,Sarcelle,Shipwreck,a small boat,,20,It was believed that survivors were killed by sharks,False,"White shark, 3.5 m [11.5'], species identity confirmed by tooth fragment",W. Leander,1976.09.22-NewCaledoniaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.22-NewCaledoniaBoat.pdf,1976.09.22,1976.09.22 +3169,19-Sep-1976,Unprovoked,AUSTRALIA,South Australia,"Point Lowly, north of Whyalla","Skindiving,",Darryl Richardson,M,27,"Right leg bitten below the knee, left ankle & foot lacerated",False,2.7 m [9'] shark,"A. Sharpe, p.125",1976.09.19-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.19-Richardson.pdf,1976.09.19,1976.09.19 +3170,17-Sep-1976,Sea Disaster,HONG KONG,South China Sea 200 miles from Hong Kong,South China Sea 200 miles from Hong Kong,"3,909-ton Panamanian freighter Chieh Lee sank in a typhoon","Daily Review, 9/21/1976",M,27,fatal,True,2.7 m [9'] shark,"Daily Review, 9/21/1976",1976.09.17-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.17-sailor.pdf,1976.09.17,1976.09.17 +3171,12-Sep-1976,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,"Michael Karras, Jr.",M,16,fatal,True,2.7 m [9'] shark,"Washington Post, 9/24/1976",1976.09.12.b-Michael-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.b-Michael-Karras.pdf,1976.09.12.b,1976.09.12.b +3172,12-Sep-1976,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming,"Ricky Karras, Jr.",M,16,fatal,True,2.7 m [9'] shark,"Washington Post, 9/24/1976",1976.09.12.a-Ricky-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.12.a-Ricky-Karras.pdf,1976.09.12.a,1976.09.12.a +3173,06-Sep-1976,Unprovoked,USA,Florida,"Sebastian, Indian River County",Surfing,Peter Ferrer,M,15,Laceration to left lower leg,False,"Tiger shark, 6' ",P. Ferrer,1976.09.06-Ferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.09.06-Ferrer.pdf,1976.09.06,1976.09.06 +3174,26-Aug-1976,Unprovoked,USA,North Carolina,"Emerald Isle Pier (near Morehead City), Carteret County","Surfing, fell off surfboard",Randy Hall,M,23,Right ankle & foot lacerated,False,"Tiger shark, 6' ","C. Creswell, GSAF; F. Schwartz, p.23",1976.08.26-RandyHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.26-RandyHall.pdf,1976.08.26,1976.08.26 +3175,24-Aug-1976,Unprovoked,USA,Oregon,Winchester Bay,Surfing,Mike Shook,M,19,"No injury, board bitten",False,"White shark, 4.5 m ","D. Miller & R. Collier; R. Collier, pp.69-70; J. McCosker & R.N. Lea ",1976.08.24-Shook_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.08.24-Shook_Collier.pdf,1976.08.24,1976.08.24 +3176,24-Jul-1976,Unprovoked,USA,Florida,St. Lucie County,Spearfishing,Charles Cook,M,24,Lacerations to forearms,False,"White shark, 4.5 m ","News-Tribune, 7/27/1976",1976.07.24-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.24-Cook.pdf,1976.07.24,1976.07.24 +3177,21-Jul-1976,Unprovoked,USA,Louisiana,Scofield - Sandy Point,Playing,Travis Raigan,M,10,Leg bitten,False,"White shark, 4.5 m ","Amarillo Globe-Times, 7/22/1976",1976.07.21-Ratigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.21-Ratigan.pdf,1976.07.21,1976.07.21 +3178,16-Jul-1976,Unprovoked,USA,Hawaii,"Maha'ulepu, Koloa, Kaua'i",Scuba diving,Stephen Curtis Powell,M,18,fatal,True,"White shark, 4.5 m ","The Argus, 7/19/1976; J. Borg, p.74; L. Taylor (1993), pp.102-103",1976.07.16-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.16-Powell.pdf,1976.07.16,1976.07.16 +3179,12-Jul-1976,Unprovoked,USA,Florida,St. Lucie County,Spearfishing,Bill Loughlin,M,23,"""lost part of a finger""",False,6' to 8' shark,"News-Tribune, 7/27/1976",1976.07.12-Loughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.07.12-Loughlin.pdf,1976.07.12,1976.07.12 +3180,23-Jun-1976,Unprovoked,USA,Florida,"St. Andrews State Park, Bay County",Skindiving,Paul Maurer,M,17,Lacerations to right arm,False,12' to 14' shark,"Albuquerque Journal, 6/25/1976 ",1976.06.23-Maurer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.23-Maurer.pdf,1976.06.23,1976.06.23 +3181,10-Jun-1976,Unprovoked,USA,Hawaii,"Kama'ole Beach, Park No. 1, Kihei, Maui",Swimming,Donald Gard,M,17,Leg & foot bitten,False,0.9 m to 1.5 m [3' to 5'] shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1976.06.10-Gard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.10-Gard.pdf,1976.06.10,1976.06.10 +3182,Reported 02-Jun-1976,Provoked,ITALY,Reggio Calabria Province,Bovalino,Fishing,Francisco Pelle,M,46,Shark rammed boat PROVOKED INCIDENT,False,"Blue shark, 2m ","C. Moore, GSAF",1976.06.02.R-Pelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.02.R-Pelle.pdf,1976.06.02.R,1976.06.02.R +3183,01-Jun-1976,Boat,AUSTRALIA,Queensland,Off Stradbroke Island,Sitting in bow of her father's 5 m boat,Debbie McMillan,F,46,"Shark jumped in boat, hitting her in the face & knocking her unconscious",False,1.5 m [5'] shark,"A. Sharpe, p.103",1976.06.01-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.06.01-McMillan.pdf,1976.06.01,1976.06.01 +3184,02-May-1976,Boat,SOUTH AFRICA,Western Cape Province,40 km off Cape Point,Competing in a light tackle game fishing,"6 m skiboat, occupants: Terry McManus, Dan Clark and Blackie Swart",,46,"Shark following hooked fish, rammed & holed boat",False,"Mako shark, 180-kg [397-lb]","The Argus, 5/3/1976",1976.05.02-McManus-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.05.02-McManus-boat.pdf,1976.05.02,1976.05.02 +3185,28-Apr-1976,Invalid,USA,Texas,Galveston Island,Competing in a light tackle game fishing,Unknown,,46,"Possible drowning victim, remains retrieved from 400-lb shark caught by fishermen on 28-Apr-1976",False,Shark involvement prior to death was not confirmed,"NY Times 4/30/1976, p.14, col.8",1976.04.28-HumanRemains-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.04.28-HumanRemains-Galveston.pdf,1976.04.28,1976.04.28 +3186,12-Mar-1976,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Standing,Glen Wright,M,21 or 26,Lacerations to left leg,False,Shark involvement prior to death was not confirmed,Winnipeg Free Press. 3/17/1976,1976.03.12.b-GlenWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.b-GlenWright.pdf,1976.03.12.b,1976.03.12.b +3187,12-Mar-1976,Boat,SOUTH AFRICA,Western Cape Province,Robberg Point,Fishing,"boat, occupants: Jacob Kruger & crew",,21 or 26,"No injury to occupants, shark buckled prop shaft",False,Whale shark,T. Wallett; GSAF,1976.03.12.a-Kruger-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.12.a-Kruger-boat.pdf,1976.03.12.a,1976.03.12.a +3188,09-Mar-1976,Boat,SOUTH AFRICA,Western Cape Province,"2 km from Macassar, False Bay",Fishing,5 m skiboat; Stephanie,,21 or 26,Shark breached hull of boat,False,White shark named “Spotty”,"T. Wallett, p.31",1976.03.09-Stephanie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.09-Stephanie.pdf,1976.03.09,1976.03.09 +3189,02-Mar-1976,Boat,SOUTH AFRICA,Western Cape Province,"2 km from Macassar, False Bay",Fishing,"5 m skiboat Stephanie, occupants: Fanie Schoeman and Brigadier Bronkhorst",,21 or 26,"Shark leapt into boat, hitting Fanie Schoeman on his back before sliding into the sea",False,White shark named “Spotty”,"T. Wallett, pp.30-31",1976.03.02-Stephanie-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.03.02-Stephanie-boat.pdf,1976.03.02,1976.03.02 +3190,03-Feb-1976,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Shark watching,"6 m boat Suki Saki, occupants: E.C. Landells & 2 friends",,21 or 26,"No injury to occupants, shark rammed bow, driving its head into the hull",False,2.5 m [8.25'] white shark,"T. Wallett, p.30",1976.02.03-Suki-Saki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.02.03-Suki-Saki.pdf,1976.02.03,1976.02.03 +3191,13-Jan-1976,Provoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Shark fishing,"6 m catamaran, occupants: Peter Robertson, Beauchamp Robertson, Gerald Spence & 3 crew",,21 or 26,"No injury to occupants, After shark was harpooned & shot, it holed the boat PROVOKED INCIDENT",False,4 m [13'] shark,T. Wallett,1976.01.13-catamaran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.13-catamaran.pdf,1976.01.13,1976.01.13 +3192,12-Jan-1976,Unprovoked,AUSTRALIA,Queensland,Harvey Bay,Shark fishing,Marlene Evler,F,21 or 26,Survived,False,4 m [13'] shark,"R. McKenzie, Coast Sun, 9/6/1987, p.11",1976.01.12-Evler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.12-Evler.pdf,1976.01.12,1976.01.12 +3193,11-Jan-1976,Provoked,SOUTH AFRICA,Western Cape Province,Kalk Bay,Fishing for snoek & yellowtail,"7 m fishing boat Metoo, occupants: Nicky & Paul Goles & 4 friends",,21 or 26,"Hooked shark leapt onboard & into fish well, which it smashed PROVOKED INCIDENT",False,"White shark, 3 m [10'] "," T. Wallett, p.30",1976.01.11-Metoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.11-Metoo.pdf,1976.01.11,1976.01.11 +3194,08-Jan-1976,Unprovoked,USA,Florida,"Off Fort Pierce, St Lucie County",Spearfishing / scuba diving,Hank Greenberg,M,25,Puncture wounds to head & neck,False,6' shark,"Naples Daily News, 1/9/1976",1976.01.08-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.08-Greenberg.pdf,1976.01.08,1976.01.08 +3195,02-Jan-1976,Unprovoked,NEW ZEALAND,North Island,"Te Kaha, East coast",Spearfishing,John Grainger Leith,M,25,fatal,True,Bronze whaler shark,"R.D. Weeks, GSAF; New Zealand Herald, 3/3/2001",1976.01.02-Leith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.01.02-Leith.pdf,1976.01.02,1976.01.02 +3196,1976,Unprovoked,USA,Hawaii,"Off Lahaina, Maui",Scuba diving,Danson Nakaima,M,25,fatal,True,Bronze whaler shark,"J. Borg, p.74; L. Taylor (1993), pp.104-105",1976.00.00.b-Nakaima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1976.00.00.b-Nakaima.pdf,1976.00.00.b,1976.00.00.b +3197,29-Dec-1975,Boat,AUSTRALIA,South Australia,Glenelg,Attempting to drive shark away from the beach,"rescue boat of the Glenelg Surf Club, captained by G.W. Scarfe",,25,"No injury, shark charged & rammed boat several times",False,2.4 m [8'] shark,"A. Sharpe, p.125",1975.12.29-RescueBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.29-RescueBoat.pdf,1975.12.29,1975.12.29 +3198,06-Dec-1975,Unprovoked,USA,California,Farallon Islands,Scuba diving & spearfishing,Robin Buckley (male),M,27,Leg bitten,False,White shark,"D. Miller & R. Collier, R. Collier, pp.67-69; J. McCosker & R.N. Lea; NY Times, 12/7/1975, p.30, col.1",1975.12.06-Buckley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.06-Buckley_Collier.pdf,1975.12.06,1975.12.06 +3199,02-Dec-1975,Provoked,AUSTRALIA,New South Wales,"Porpoise Pool, Tweed Heads",Filming & feeding captive sharks,John Strand,M,35,Tooth mark in left elbow PROVOKED INCIDENT,False,"Grey nurse shark, 10' ","J. Green, p.36",1975.12.02-Strand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.12.02-Strand.pdf,1975.12.02,1975.12.02 +3200,19-Nov-1975,Unprovoked,AUSTRALIA,New South Wales,"Queenscliff, Sydney",Standing,Peter Cole,M,20,Laceration to posterior thigh,False,5' shark,"The Age, 11/20/1975",1975.11.19.b-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.b-Cole.pdf,1975.11.19.b,1975.11.19.b +3201,19-Nov-1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Standing,Michael van den Berg,M,33,Left foot lacerated,False,Juvenile dusky shark,"G. Charter, B. Davis, NSB",1975.11.19.a-VanDenBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.19.a-VanDenBerg.pdf,1975.11.19.a,1975.11.19.a +3202,07-Nov-1975,Unprovoked,AUSTRALIA,Queensland,Lookout Point,Standing,John Haig,M,33,Puncture wounds in hand,False,Juvenile dusky shark,"R. McKenzie, Sunday Mail, 3/27/1994, p.107",1975.11.07-Haig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.07-Haig.pdf,1975.11.07,1975.11.07 +3203,02-Nov-1975,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Scott Lee Hurst,M,18,Foot bitten,False,6' shark,"NY Times, 11/6/1975, p.8",1975.11.02-Hurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.11.02-Hurst.pdf,1975.11.02,1975.11.02 +3204,21-Oct-1975,Invalid,USA,New Jersey,"Sandy Hook, Monmouth County",Surf fishing,"J. Stone; Asbury Park Press, 10/22/1975",M,18,"""Tooth marks"" in left leg",False,Shark involvement unconfirmed,"J. Stone; Asbury Park Press, 10/22/1975",1975.10.21-SandyHook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.21-SandyHook.pdf,1975.10.21,1975.10.21 +3205,12-Oct-1975,Unprovoked,AUSTRALIA,New South Wales,"Lennox Head, Ballina",Surfing,Barry Neale,M,20,"Cracked jaw & broken tooth, shark took chunk out of surfboard",False,Bronze whaler,"J. Green, p.36",1975.10.12-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.12-Neale.pdf,1975.10.12,1975.10.12 +3206,04-Oct-1975,Invalid,USA,California,"Seal Beach, Orange County",Surfing,Unconfirmed Report,,20,,,Questionable incident,Unconfirmed Report,1975.10.04-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.10.04-NV-California.pdf,1975.10.04,1975.10.04 +3207,Sep-1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Paddleskiing,Tony Meehan,M,21,Right foot & ankle lacerated,False,1.2 m [4'] shark,"G. Charter, NSB",1975.09.00-Meehan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.09.00-Meehan.pdf,1975.09.00,1975.09.00 +3208,17-Aug-1975,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Cape St. Francis,Surfing,David Robertson,M,19,Left leg & surfboard bitten,False,"White shark, 2.4 m [8']","D. Robertson, M. Levine, GSAF; J. Wallace, ORI; T. Wallett, p.40",1975.08.17-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.17-Robertson.pdf,1975.08.17,1975.08.17 +3209,12-Aug-1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Floating on a small orange raft ,Henry Peterson,M,20,"Calf bitten, leg surgically amputated below the knee Note: by late August, 3 more bathers had been bitten by sharks at Daytona Beach",False,1.5 m [5'] shark,"NY Times, 8/17/1975, p.27",1975.08.12-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.12-Peterson.pdf,1975.08.12,1975.08.12 +3210,09-Aug-1975,Unprovoked,USA,California,"Usal Creek, Bear Harbor, Mendocino County",Free diving for abalone,Gilbert Brown,M,44,"Shoulder, arm & hand lacerated",False,White shark,"D. Miller & R. Collier, R. Collier, pp.65-67; J. McCosker & R.N. Lea",1975.08.09-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.09-Brown_Collier.pdf,1975.08.09,1975.08.09 +3211,04-Aug-1975,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom swimming,male,M,24,"Leg bitten, surgically amputated",False,White shark,"Corpus Christi Times, 8/4/1975",1975.08.04-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.08.04-HongKong.pdf,1975.08.04,1975.08.04 +3212,30-Jul-1975,Sea Disaster,USA,Oregon,Oregon,Sea disaster,Grace Conger ,F,62,fatal,True,White shark,"Times, 8/1/1975, Yuma Daily Sun, 8/1/1975 ",1975.07.30.b-Conger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.b-Conger.pdf,1975.07.30.b,1975.07.30.b +3213,30-Jul-1975,Unprovoked,AUSTRALIA,Tasmania,"Fluted Cape, Bruny Island",Scuba diving for abalone,Robert Slack,M,37,fatal,True,White shark,"Times, 8/1/1975, Yuma Daily Sun, 8/1/1975; C. Black pp. 153-157 ",1975.07.30.a-Slack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.30.a-Slack.pdf,1975.07.30.a,1975.07.30.a +3214,26-Jul-1975.b,Unprovoked,USA,Florida,"Off Hutchinson Island, St Lucie County",Free diving,Charles Cook,M,24,Forearms lacerated,False,White shark,"News-Tribune, 7/28/1975",1975.07.26.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.b-Cook.pdf,1975.07.26.b,1975.07.26.b +3215,26-Jul-1975,Unprovoked,AUSTRALIA,Queensland,Maroochydore,Surfing,Gary Grace,M,21,Buttocks & leg bitten,False,12' shark,"Bucks County Courier Times, 7/28/1975; Sunday Mail (QLD), 1//7/1996,p.4; J. Green, p.36",1975.07.26.a-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.26.a-Grace.pdf,1975.07.26.a,1975.07.26.a +3216,23-Jul-1975,Unprovoked,USA,California,"Perch Rock, Point Conception, Santa Barbara County",Scuba diving for abalone (at surface),Robert Revstock,M,23,Legs bitten,False,"White shark, 5.8 m [19'] ","D. Miller & R. Collier; R. Collier, pp.64-65; G. Ambrose, pp.103 & 112 ",1975.07.23-Rebstock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.23-Rebstock_Collier.pdf,1975.07.23,1975.07.23 +3217,19-Jul-1975,Unprovoked,USA,California,"Point Conception, Santa Barbara County",Hookah diving for abalone,Gary Johnson,M,34,"No injury, swim fin torn",False,"White shark, 5m to 6m",R. Collier,1975.07.19-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.19-Johnson.pdf,1975.07.19,1975.07.19 +3218,15-Jul-1975,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Beverly White,F,14,Arm lacerated,False,1.2 m [4'] shark,"E. Ritter, GSAF",1975.07.15-BeverlyWhite-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.15-BeverlyWhite-X.pdf,1975.07.15,1975.07.15 +3219,5-Jul-1975,Provoked,AUSTRALIA,Western Australia,"15 km north of Lancelin, north of Perth",Spearfishing,Dennis Thompson,M,29,Speared shark bit his arm between elbow and shoulder PROVOKED INCIDENT,False,2.4 m [8'] whaler shark,"Washington Post, 7/7/1975",1975.07.05-DennisThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.05-DennisThompson.pdf,1975.07.05,1975.07.05 +3220,04-Jul-1975,Unprovoked,USA,Florida,"Indiatlantic, Brevard County",Surfing,Robert Clark,M,16,"Foot bitten, tendons damaged",False,2.4 m [8'] whaler shark,"NY Times, 7/6/1975, p.5",1975.07.04-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.07.04-Clark.pdf,1975.07.04,1975.07.04 +3221,23-Jun-1975,Unprovoked,USA,South Carolina,"Windy Hill, near Myrtle Beach, Horry County",Swimming ,Jim Krents,M,18,Lacerations to right foot,False,4' shark,"Morning Herald (Uniontown, PA), 7/2/1975",1975.06.23.b-Krents.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.b-Krents.pdf,1975.06.23.b,1975.06.23.b +3222,23-Jun-1975,Unprovoked,USA,South Carolina,"North Myrtle Beach, Horry County",Standing,Donna Hutson,F,15,Hand & wrist bitten,False,4' shark,"Morning Herald (Uniontown, PA), 6/26/1975",1975.06.23.a-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.23.a-Hutson.pdf,1975.06.23.a,1975.06.23.a +3223,15-Jun-1975,Unprovoked,USA,Alabama,5 miles off the coast,Swimming near his boat,William Wayne Daniels,M,27,Left leg bitten,False,4' shark,"The News, 6/16/1975",1975.06.15-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.15-Daniels.pdf,1975.06.15,1975.06.15 +3224,Reported 02-Jun-1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surfing,Jeffrey Hanrahan,M,20,"No injury, board bumped",False,4' shark,"Sarasota Herald Tribune, 6/2/1975",1975.06.02.R-Hanrahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.02.R-Hanrahan.pdf,1975.06.02.R,1975.06.02.R +3225,Jun-1975,Provoked,USA,Florida," New Smyrna Beach, Volusia County",Surfing,undated press clipping - see 1975.06.00.b,M,20,Slightly injured when he stepped on a shark PROVOKED INCIDENT,False,4' shark,undated press clipping - see 1975.06.00.b,1975.06.00.c-stepped-on-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.06.00.c-stepped-on-shark.pdf,1975.06.00.c,1975.06.00.c +3226,25-May-1975,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Edward Bassett,M,17,Right foot bitten,False,4' shark,"Sumter Daily Item, 7/9/1975",1975.05.25-Bassett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.25-Bassett.pdf,1975.05.25,1975.05.25 +3227,20-May 1975,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Bathing,Cindy Jones,F,10,Leg bitten,False,4' shark,"Pacifc Stars and Stripes, 6/3/1975",1975.05.20-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.05.20-Jones.pdf,1975.05.20,1975.05.20 +3228,25-Apr-1975,Invalid,ITALY,Genoa Province,Cervara,Scuba diving,Walter Sansoni,M,37,The press reported this as an attack by a white shark but the diver was the agressor,False,Invalid,"C. Moore, GSAF",1975.04.25-Sansoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.25-Sansoni.pdf,1975.04.25,1975.04.25 +3229,18-Apr-1975,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Scuba diving,Indian male,M,37,Probable drowning / scavenging,False,Shark involvement prior to death was not confirmed,"B. Davis, NSB",1975.04.18-IndianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.18-IndianMale.pdf,1975.04.18,1975.04.18 +3230,05-Apr-1975,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Spearfishing Competition,Kevin Thompson,M,37,"No injury, rammed by shark",False,"White shark, 600-kg [1323-lb]","Cape Times, 4/7/1975",1975.04.05-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.04.05-Thompson.pdf,1975.04.05,1975.04.05 +3231,29-Mar-1975,Invalid,SOUTH AFRICA,KwaZulu-Natal,Tongaat,Swimming,Indian male,M,37,Probable drowning / scavenging by a white shark,False,Shark involvement prior to death was not confirmed,"B. Davis, Natal Sharks Board",1975.03.29-Tongaat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.29-Tongaat.pdf,1975.03.29,1975.03.29 +3232,18-Mar-1975,Unprovoked,AUSTRALIA,Queensland,Mornington Island,Swimming,female,F,37,Hand bitten,False,Shark involvement prior to death was not confirmed,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1975.03.18-MorningtonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.18-MorningtonIsland.pdf,1975.03.18,1975.03.18 +3233,16-Mar-1975,Unprovoked,USA,Florida,"Clearwater Beach, Pinellas County",Floating in inner tube,William Hodges,M,14,Left leg & foot bitten,False,10' shark,"News Tribune, 5/17/1975",1975.03.16-Hodges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.16-Hodges.pdf,1975.03.16,1975.03.16 +3234,13-Mar-1975,Provoked,AUSTRALIA,Queensland,Southport Aquarium,Diving & force-feeding the shark,William Hookway,,18,Laceration to thigh by captive shark PROVOKED INCIDENT,False,"Bronze whaler shark, 6'","The Age, 3/14/1975",1975.03.13-Hookway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.13-Hookway.pdf,1975.03.13,1975.03.13 +3235,09-Mar-1975,Provoked,SOUTH AFRICA,Western Cape Province,"Boggomsbaai, Mossel Bay",Attempting to drag hooked shark ashore by its tail,Frans Swanepoel,M,18,Left leg bitten PROVOKED INCIDENT,False,1.5 m [5'] shark,"M. Levine, GSAF",1975.03.09-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.09-Swanepoel.pdf,1975.03.09,1975.03.09 +3236,Mar-1975,Sea Disaster,BANGLADESH,Ganges-Brahmaputra delta,Ganges-Brahmaputra delta,Ferry capsized,"M. McDiarmid, p.67",,18,fatal,True,1.5 m [5'] shark,"M. McDiarmid, p.67",1975.03.00-Bangladesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.03.00-Bangladesh.pdf,1975.03.00,1975.03.00 +3237,23-Feb-1975,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Bretton Russell Jones,M,16,Foot severed,False,1.5 m [5'] shark,"S. Jooste; B.R. Jones, M. Levine, GSAF; T. Wallett, pp.22-24",1975.02.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.23-Jones.pdf,1975.02.23,1975.02.23 +3238,Reported 14-Feb-1975,Boat,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Surfing,"hobiecat, occupants: Judy Lambert & a friend",,16,Shark bit rudder & hull,False,"Mako shark, 3 m [10'] ",GSAF,1975.02.14-Hobiecat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.14-Hobiecat.pdf,1975.02.14.R,1975.02.14.R +3239,10-Feb-1975,Unprovoked,AUSTRALIA,South Australia,(Point Sinclair) Penong,Swimming underwater from crayfish cage to a fishing bait,Wade Shipard,M,12,fatal,True,"White shark, 3 m [10'] "," A. Sharpe, pp.124-125; Sydney Morning Herald, 2/3/2001 ed.",1975.02.10-Shipard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.10-Shipard.pdf,1975.02.10,1975.02.10 +3240,09-Feb-1975,Unprovoked,AUSTRALIA,Victoria,Anglesea,Crayfishing,John Lear,M,45,Puncture wounds to right shoulder,False,"Carpet shark, 10' ","The Age, 2/11/1975",1975.02.09-Lear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.09-Lear.pdf,1975.02.09,1975.02.09 +3241,07-Feb-1975,Unprovoked,AUSTRALIA,Queensland,Currumbin Rock,Crayfishing,M. Worman,M,45,Survived,False,"Carpet shark, 10' ","J. Green, p. 36",1975.02.07-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.07-Worman.pdf,1975.02.07,1975.02.07 +3242,01-Feb-1975,Provoked,SOUTH AFRICA,Western Cape Province,"Beespens, False Bay",Fishing,Gerhard Visser,M,12,Foot bitten by shark he was gaffing PROVOKED INCIDENT,False,"Copper shark, 50-kg [110-b] ","The Argus, 2/3/1975",1975.02.01-Visser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.02.01-Visser.pdf,1975.02.01,1975.02.01 +3243,19-Jan-1975,Unprovoked,AUSTRALIA,South Australia,Coffin Bay,Surfing,David Barrowman,M,17,fatal,True,"Copper shark, 50-kg [110-b] ","J. West; Adelaide Advertiser, 1/20/1975; P. Kemp, GSAF",1975.01.19-Barrowman.pdf,,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.01.19-Barrowman.pdf,1975.01.19,1975.01.19 +3244,1975,Unprovoked,BERMUDA,unknown,unknown,Spearfishing,Geeteh Toussaint,M,25,Laceration to right ankle,False,8' blue shark,"E. Pace, FSAF",1975.00.00.b-Toussaint.pdf,#VALUE!,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.b-Toussaint.pdf,1975.00.00.b,1975.00.00.b +3245,1975,Unprovoked,REUNION,unknown,unknown,Spearfishing,a soldier,M,25,fatal,True,8' blue shark,Reunion Marine Observatory,1975.00.00.a-NV-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1975.00.00.a-NV-Reunion.pdf,1975.00.00.a,1975.00.00.a +3246,12-Dec-1974,Unprovoked,AUSTRALIA,Western Australia,Geographe Bay,Spearfishing,G. Allen,,32,Survived,False,8' blue shark,"J. Green, p.36",1974.12.10-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.12.10-Allen.pdf,1974.12.10,1974.12.10 +3247,01-Nov-1974,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Standing,Dwayne W. Ortwine,M,24,Laceration to foot,False,8' blue shark,"Daytona Beach Morning Journal, 11/2/1974",1974.11.01-Ortwine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.11.01-Ortwine.pdf,1974.11.01,1974.11.01 +3248,28-Sep-1974,Unprovoked,USA,California,"North of Point Sur, Monterey County",Surfing,Kirk Johnston,M,17,"Thigh, lower back and surfboard bitten",False,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.59-62, J. McCosker & R. N. Lea",1974.09.28-Johnston_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.28-Johnston_Collier.pdf,1974.09.28,1974.09.28 +3249,14-Sep-1974,Unprovoked,USA,California,"North Farallon Island, Farallon Islands",Hookah diving for abalone,Jon Holcomb,M,29,Major injuries,False,"White shark, 4 m to 5 m ","D. Miller & R. Collier, R. Collier, pp.57-59; J. McCosker & R.N. Lea",1974.09.14-Holcomb_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.14-Holcomb_Collier.pdf,1974.09.14,1974.09.14 +3250,07-Sep-1974,Unprovoked,ISRAEL,Red Sea,"North Beach, Eilat",Swimming,Beatrice Aharonowich,F,20,"Bitten 12 times: multiple lacerations on hands, arms, shoulder breast thigh, both legs, left forearm surgically amputated ",False,"Shortfin mako shark, 2.3 m [7.5'] ","The Times (London), 9/9/1974, p. 7; J. Randall & M. F. Levy (1976)",1974.09.07-Aharonowich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.07-Aharonowich.pdf,1974.09.07,1974.09.07 +3251,02-Sep-1974,Unprovoked,USA,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Jack Greenlaw,M,41,Minor injuries to hand,False,"White shark, 5 m to 6 m [16.5 to 20'] ","D. Miller & R. Collier, R. Collier, pp. 56-57; J. McCosker & R.N. Lea",1974.09.02.b-Greenlaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.b-Greenlaw.pdf,1974.09.02.b,1974.09.02.b +3252,02-Sep-1974,Unprovoked,USA,California,"Franklin Point, San Mateo County",Scuba diving (but on surface),Dale Webster,M,48,Minor bite on foot & swimfin,False,"White shark, 5 m to 6 m [16.5 to 20'] ","D. Miller & R. Collier, R. Collier, pp. 56-57; J. McCosker & R.N. Lea",1974.09.02.a.-DaleWebster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.02.a.-DaleWebster.pdf,1974.09.02.a,1974.09.02.a +3253,01-Sep-1974,Sea Disaster,AUSTRALIA,Queensland,"Junpinpin, off Stradbroke Island",3.3 m fishing boat sank. Treveluwe & Peter Hodgson (wearing lifejackets) were drifting in the current,Adrian Treveluwe,M,30,"Missing, believed taken by a shark",False,"White shark, 5 m to 6 m [16.5 to 20'] ","J. Green, p.36; A. Sharpe, pp.102-103",1974.09.01-Treveuwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.01-Treveuwe.pdf,1974.09.01,1974.09.01 +3254,Sep-1974,Unprovoked,USA,Oregon,Myers Creek,Surfing,Curt Brown,M,24,No injury,False,"White shark, 4.5 m ",R. Collier,1974.09.00-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.09.00-Brown_Collier.pdf,1974.09.00,1974.09.00 +3255,23-Aug-1974,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom Swimming,male,M,22,Survived,False,"White shark, 4.5 m ","Washington Post, 8/24/1974,p.D6",1974.08.23-FreedomSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.23-FreedomSwimmer.pdf,1974.08.23,1974.08.23 +3256,16-Aug-1974,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom swimming,male,M,22,fatal,True,"White shark, 4.5 m ","A. MacCormick, p.157",1974.08.16.c-Freedom swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.c-Freedom swimmer.pdf,1974.08.16.c,1974.08.16.c +3257,16-Aug-1974,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom swimming,Ho-Sin-Ming (male),M,19,Arm broken & severely lacerated,False,"White shark, 4.5 m ","A. MacCormick, p.157",1974.08.16.b-Ming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.b-Ming.pdf,1974.08.16.b,1974.08.16.b +3258,16-Aug-1974,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom swimming,Yee Wing Ping (male),M,18,Left foot bitten,False,"White shark, 4.5 m ","A. MacCormick, p.157",1974.08.16.a-Ping.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.16.a-Ping.pdf,1974.08.16.a,1974.08.16.a +3259,10-Aug-1974,Unprovoked,CROATIA, Split-Dalmatia County," Lokva Rogoznica, Omis",Freedom swimming,Rolf Schneider,M,21,fatal,True,"White shark, 5 m [16.5'] ",A. De Maddalena; R. Rocconi,1974.08.10-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.10-Schneider.pdf,1974.08.10,1974.08.10 +3260,05-Aug-1974,Unprovoked,USA,California,"San Gregorio Beach, San Mateo County",Surfing,Robert Sanders,M,21,Minor injuries to hand,False,"White shark, 5 m ",R.Collier,1974.08.05-Sanders_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.08.05-Sanders_Collier.pdf,1974.08.05,1974.08.05 +3261,26-Jul-1974,Unprovoked,USA,California,"Albion Cove, Albion, Mendocino County",Free diving for abalone (submerged),Robert Kehl,M,36,Minor bite on heel & swim fin bitten,False,"White shark, 5.5 m [18'] ","D. Miller & R. Collier, R. Collier, pp.54-56; J. McCosker & R.N. Lea",1974.07.26-Kehl_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.26-Kehl_Collier.pdf,1974.07.26,1974.07.26 +3262,20-Jul-1974,Unprovoked,USA,Georgia,"Back River, Savannah Beach, Chatham County",Swimming,John Carter,M,17,fatal,True,small sharks',"Rome News Tribune, 7/31/1974",1974.07.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.20-Carter.pdf,1974.07.20,1974.07.20 +3263,02-Jul-1974,Sea Disaster,USA,Florida ,Gulf of Mexico,Adrift after the sinking of the motor yacht Princess Dianne,Billy Horne,M,10,fatal,True,3.7 m [12'] sharks,"Wilmington Star, 7/3/1974, p.3A",1974.07.02-BillyHorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.07.02-BillyHorne.pdf,1974.07.02,1974.07.02 +3264,20-Jun-1974,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Swimming,Olive Heaton,F,61,Lacerations to hip and leg,False,3.7 m [12'] sharks,"Daytona Beach Morning Journal, 6/21/1974",1974.06.20-Heaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.06.20-Heaton.pdf,1974.06.20,1974.06.20 +3265,26-May-1974,Unprovoked,USA,California,"Tomales Point, Marin County",Free diving (but on surface),Leroy Hancock,M,45,Leg bitten,False,"White shark, 5 m [16.5']","D. Miller & R. Collier, R. Collier, p.53; J. McCosker & R.N. Lea",1974.05.26-Hancock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.05.26-Hancock_Collier.pdf,1974.05.26,1974.05.26 +3266,Reported 25-Apr-1974,Sea Disaster,BRAZIL,unknown,unknown,Fishing boat swamped in a storm,5 men,M,45,fatal,True,"White shark, 5 m [16.5']","Fresno Bee Republican, 4/25/1974",1974.04.25.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.25.R-Brazil.pdf,1974.04.25.R,1974.04.25.R +3267,20-Apr-1974,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Spearfishing,Andre Hartman,M,22,Left knee lacerated,False,"Raggedtooth shark, 1.5 m [5'] ","A. Hartman, M. Levine, GSAF; Cape Argus, 4/26/1974",1974.04.20-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.20-Hartman.pdf,1974.04.20,1974.04.20 +3268,14-Apr-1974,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Glengariff,Standing,Simon Parkin,M,19,Lower right leg lacerated,False,"Raggedtooth shark, 1.5 m [5'] ","S. Parkin, M. Levine, GSAF; T. Wallett, p.40",1974.04.14-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.14-Parkin.pdf,1974.04.14,1974.04.14 +3269,12-Apr-1974,Unprovoked,USA,Florida,"Haulover Beach, Miami-Dade County",Swimming,Stacie Alexander,F,11,Foot bitten,False,"Raggedtooth shark, 1.5 m [5'] ","Chicago Tribune, 4/13/1974",1974.04.12-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.12-Alexander.pdf,1974.04.12,1974.04.12 +3270,04-Apr-1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Surfing,Anthony Kenneth Baker,M,17,Right foot lacerated,False,Juvenile dusky shark,"A. Baker, M. Levine, GSAF; G. Charter & B. Davis, NSB; T. Wallett, p.21",1974.04.04-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.04.04-Baker.pdf,1974.04.04,1974.04.04 +3271,21-Mar-1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Surfing,James Arthur Gurr,M,21,"No injury, surfboard bitten",False,1.8 m [6'] shark,"J. Gurr, M. Levine, GSAF; G. Charter, NSB; T. Wallett, p.20",1974.03.21-Gurr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.21-Gurr.pdf,1974.03.21,1974.03.21 +3272,Mar-1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupant: Danie Schoeman",,21,"No injury to occupant, shark holed boat",False,White shark,"T. Wallett, p.37",1974.03.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.03.00-Schoeman.pdf,1974.03.00,1974.03.00 +3273,13-Feb-1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Damon Kendrick,M,14,"Right calf removed, leg surgically amputated below the knee",False,White shark,"D. Kendrick, S. Jooste, G. Charter, B. Davis, M. Levine, GSAF; T. Wallett, pp.18-19 ",1974.02.13.b-Kendrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.b-Kendrick.pdf,1974.02.13.b,1974.02.13.b +3274,13-Feb-1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amanzimtoti",Swimming,Joe Kool,M,19,Right shin lacerated,False,White shark,"J. Kool, S. Jooste; M. Levine, GSAF",1974.02.13.a-Kool.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.13.a-Kool.pdf,1974.02.13.a,1974.02.13.a +3275,Feb-1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for red fish,"skiboat, occupant: Danie Schoeman",,19,"No injury to occupant, but a shark chasing a hooked fish holed his boat above the waterline",False,5 m white shark,"T. Wallett, p.37",1974.02.00.b-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.b-Schoeman.pdf,1974.02.00.b,1974.02.00.b +3276,Early Feb-1974,Boat,SOUTH AFRICA,Western Cape Province,Macassar,Fishing for kob,"skiboat, occupants: Danie & Fanie Schoeman",,19,"No injury, shark leapt into boat & bit one of the boat's seats",False,White shark,"T. Wallett, pp.35-37",1974.02.00.a-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.02.00.a-Schoeman.pdf,1974.02.00.a,1974.02.00.a +3277,13-Jan-1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Sitting,James Viljoen,M,42,2 minor lacerations in foot,False,"Raggedtooth shark, 1 m ","Daily News (Durban), 1/29/1974; GSAF",1974.01.13-Viljoen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.13-Viljoen.pdf,1974.01.13,1974.01.13 +3278,09-Jan-1974,Unprovoked,AUSTRALIA,South Australia,Streaky Bay,Diving for abalone,Terry Manuel,M,26,fatal,True,White shark,"H. Hall; A. Sharpe, p.124;",1974.01.09-Manuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.09-Manuel.pdf,1974.01.09,1974.01.09 +3279,07-Jan-1974,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Cornelius “Les” Pyper,M,33,Knee & calf lacerated,False,2 m to 2.5 m [6.75' to 8.25'] shark,"L. Pyper, J. Bass, G. Charter; B. Davis, M. Levine, GSAF; T. Wallett, pp.17-18. ",1974.01.07.c-Pyper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.c-Pyper.pdf,1974.01.07.c,1974.01.07.c +3280,07-Jan-1974,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Oaulkurt-Pape,M,33,fatal,True,2 m to 2.5 m [6.75' to 8.25'] shark,"Johannesburg Star, 1/8/1974",1974.01.07.b-Oaulkurt-Pape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.b-Oaulkurt-Pape.pdf,1974.01.07.b,1974.01.07.b +3281,07-Jan-1974,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,male,M,32,fatal,True,2 m to 2.5 m [6.75' to 8.25'] shark,"P. Logan, GSAF",1974.01.07.a-Xai-Xai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.01.07.a-Xai-Xai.pdf,1974.01.07.a,1974.01.07.a +3282,Summer 1974,Unprovoked,AUSTRALIA,Western Australia,Emu Channel,Spearfishing,Glen Tunbridge,M,32,8 to 10 puncture marks around knee,False,"Bronze whaler shark, 4' ",G. Tunbridge,1974.00.00.b-Tunbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.b-Tunbridge.pdf,1974.00.00.b,1974.00.00.b +3283,1974,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,Preluka Harbour,Spearfishing,2 Czech tourists,,32,fatal,True,"Bronze whaler shark, 4' ",A. DeMaddalena,1974.00.00.a-2Tourists.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1974.00.00.a-2Tourists.pdf,1974.00.00.a,1974.00.00.a +3284,25-Dec-1973,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Spearfishing,Christiaan Weissig,M,41,"Right leg severed at knee, abrasion on left ankle",False,"Bronze whaler shark, 4' ","J. Bass; M Levine, GSAF",1973.12.25-Weissig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.25-Weissig.pdf,1973.12.25,1973.12.25 +3285,21-Dec-1973,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming ,Hans Reiner,M,20 ,fatal,True,"Bronze whaler shark, 4' ",Natal Witness Newspaper,1973.12.21-Reiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.21-Reiner.pdf,1973.12.21.b,1973.12.21.b +3286,Reported 18-Dec-1973,Unprovoked,PHILIPPINES,Luzon,Luzon,Swimming,Ron Arney,M,19,fatal,True,"Bronze whaler shark, 4' ","Washington Post, 12/19/1973",1973.12.19.R-Arney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.19.R-Arney.pdf,1973.12.19.R,1973.12.19.R +3287,18-Dec-1973,Unprovoked,USA,Hawaii,"Kalama Beach, Kihei, Maui",Swimming,Gary W. Floyd,M,19,Leg bitten,False,"Bronze whaler shark, 4' ","J. Borg, p.74; L. Taylor (1993), pp.102-103",1973.12.18-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.18-Floyd.pdf,1973.12.18,1973.12.18 +3288,Dec-1973,Unprovoked,MEXICO,Guerrero,Acapulco Bay,Swimming alongside yacht Mexico Fiesta,American male,M,20s,fatal,True,"Bronze whaler shark, 4' ","A.Resciniti, pp.107-108",1973.12.00-MexicanFiesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.12.00-MexicanFiesta.pdf,1973.12.00,1973.12.00 +3289,25-Nov-1973,Unprovoked,AUSTRALIA,Western Australia,Swan River,Swimming alongside yacht Mexico Fiesta,Copley,,20s,Survived,False,"Bronze whaler shark, 4' ","J. Green, p.36",1973.11.25-Copley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.25-Copley.pdf,1973.11.25,1973.11.25 +3290,24-Nov-1973,Unprovoked,USA,Florida,"Ormond By The Sea, Volusia County",Surfing,Chip Trout,M,13,Foot bitten,False,"Bronze whaler shark, 4' ","Daytona Beach Sunday News-Journal, 11/25/1973",1973.11.24-Trout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.24-Trout.pdf,1973.11.24,1973.11.24 +3291,03-Nov-1973,Unprovoked,AUSTRALIA,Queensland,Gin Arm Creek,Surfing,a Solomon Islander,M,13,Knee lacerated,False,"Bronze whaler shark, 4' ","R. McKenzie, Sunday Mail, 9/6/1987, p.11",1973.11.03-SolomonIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.11.03-SolomonIslander.pdf,1973.11.03,1973.11.03 +3292,29-Sep-1973,Sea Disaster,SOUTH AFRICA,KwaZulu-Natal,Mission Rocks,Being pulled to shore from wreck of 25-ton fishing vessel Alan S,male,M,13,fatal,True,"Bronze whaler shark, 4' ","Natal Mercury, 10/5/1973",1973.09.29-AlanS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.29-AlanS.pdf,1973.09.29,1973.09.29 +3293,14-Sep-1973,Unprovoked,BAHAMAS,Grand Bahama Island,"Memory Rock, 18 miles from NW end of the Island","Free diving, Spearfishing",Kevin G. Schlusemeyer,M,11,Left hand & forearm lacerated,False,7' to 8' bull shark,"M.Vorenberg, GSAF",1973.09.14-Schlusemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.14-Schlusemeyer.pdf,1973.09.14,1973.09.14 +3294,Reported 10-Sep-1973,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom Swimming,Tsang Kai-shing,M,20,fatal,True,7' to 8' bull shark,"Charleston Daily Mail, 9/10/1973",1973.09.10.R-Tsang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.10.R-Tsang.pdf,1973.09.10.R,1973.09.10.R +3295,09-Sep-1973,Unprovoked,MEXICO,Baja California,Guadalupe Island,"Free diving, Spearfishing",Al Schneppershoff,M,37,fatal,True,White shark,"Washington Post, 9/12/1973; J. McCosker & R.N. Lea",1973.09.09-Schneppershoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.09-Schneppershoff.pdf,1973.09.09,1973.09.09 +3296,Sep-1973,Unprovoked,EGYPT,Red Sea,Southern end of the Sinai Peninsula,"Free diving, Spearfishing",Soldier,M,37,Massive wound on right thigh with femur exposed,False,Tiger shark, M Levy,1973.09.00-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.09.00-Soldier.pdf,1973.09.00,1973.09.00 +3297,27-Aug-1973,Unprovoked,AUSTRALIA,Queensland,Palm Cove Beach,"Free diving, Spearfishing",G. Cole,,21,UNKNOWN,UNKNOWN,Tiger shark,"J. Green, p.36",1973.08.27-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.27-Cole.pdf,1973.08.27,1973.08.27 +3298,25-Aug-1973,Unprovoked,AUSTRALIA,Queensland,"Point Lookout, Stradbroke Island",Surfing,Bruce Lawlor (or Lawler),M,16,Right foot severed,False,12' shark,"L.A. Times, 8/16/1973, p.B4; R. McKenzie, Sunday Mail, 9/6/1987, p.11; J. Green, p.36",1973.08.25-Lawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.25-Lawler.pdf,1973.08.25,1973.08.25 +3299,16-Aug-1973,Unprovoked,USA,Virginia,False Cape,Crabbing (spearing crabs),Chris DeFord,M,17,Elbow bitten,False,1.5 m to 1.8 m [5' to 6'] blacktip shark,"A. MacCormick, p.11, cites New Orleans Times-Picayune, 8/17/1983 ",1973.08.16-DeFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.08.16-DeFord.pdf,1973.08.16,1973.08.16 +3300,13-Jun-1973,Unprovoked,HONG KONG,unknown,unknown,Freedom Swimming,2 youths,M,17,"One man was killed by a shark, the other was injured",False,1.5 m to 1.8 m [5' to 6'] blacktip shark,"The Age, 6/15/1973",1973.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.06.13-HongKong.pdf,1973.06.13,1973.06.13 +3301,04-Apr-1973,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Wading,John P.R. Nicholls,M,45,fatal,True,1.5 m to 1.8 m [5' to 6'] blacktip shark,"A.Resciniti, p.108",1973.04.04-Nicolls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.04.04-Nicolls.pdf,1973.04.04,1973.04.04 +3302,26-Mar-1973,Unprovoked,AUSTRALIA,Queensland,Palm Island,Wading,Stuart Baddock,M,45,Survived,False,1.5 m to 1.8 m [5' to 6'] blacktip shark,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1973.03.26-Baddock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.26-Baddock.pdf,1973.03.26,1973.03.26 +3303,05-Mar-1973,Unprovoked,MOZAMBIQUE,Gaza,"Chongeone, Xai Xai",Spearfishing,William C. Lamb,M,28,fatal,True,1.5 m to 1.8 m [5' to 6'] blacktip shark,"M. Levine, GSAF",1973.03.05-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.05-Lamb.pdf,1973.03.05,1973.03.05 +3304,Mar-1973,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Spearfishing,Kevin Cole,M,26,Hip bruised,False,"2 m shark, possibly a dusky or blacktip shark","D. Davies; K. Cole, M. Levine, GSAF",1973.03.00-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.03.00-Cole.pdf,1973.03.00,1973.03.00 +3305,27-Feb-1973,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Swimming,Dr. Leo Ephraim Fischer,,57,fatal,True,"2 m shark, possibly a dusky or blacktip shark","Reno Gazette, 4/8/1973; A.Resciniti, pp.108-109",1973.02.27-Ephraim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.02.27-Ephraim.pdf,1973.02.27,1973.02.27 +3306,21-Jan-1973,Provoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing from paddleski,C. Thackwray,M,57,Hooked & gaffed shark bit his right elbow PROVOKED INCIDENT,False,1 m shark,"M. Levine, GSAF",1973.01.21-Thackwray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.21-Thackwray.pdf,1973.01.21,1973.01.21 +3307,09-Jan-1973,Unprovoked,USA,Hawaii,"Ho'okipa Beach, Pa'ia, Maui",Surfing,Robert Sterling,M,57,Leg bitten,False,1.2 m to 1.8 m [4' to 6'] shark observed in area,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1973.01.09-Sterling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.01.09-Sterling.pdf,1973.01.09,1973.01.09 +3308,1973,Unprovoked,PALAU,Aulong Island,Aulong Channel,Scuba diving (submerged),Mitchell Warner,M,57,"No injury, shark grabbed scuba tank and descended to 110' before releasing him ",False,Tiger shark,M.P. Warner,1973.00.00.c-Warner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.c-Warner.pdf,1973.00.00.c,1973.00.00.c +3309,1973,Unprovoked,PALAU,Western Caroline Islands,Western Caroline Islands,Scuba diving & U/W photography,Bill Curtsinger,M,57,Hand & right shoulder lacerated,False,Grey reef shark," National Geographic, January 1995, p.56-57",1973.00.00.b-Curstinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.b-Curstinger.pdf,1973.00.00.b,1973.00.00.b +3310,1973,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Queensberry Bay,Surfing,Gordon Harmer,M,13,"No injury, surboard flung into air & dented",False,Grey reef shark,G. Harmer,1973.00.00.a-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1973.00.00.a-Harmer.pdf,1973.00.00.a,1973.00.00.a +3311,31-Dec-1972,Unprovoked,SOUTH AFRICA,Western Cape Province,Millers Point,Treading water,Charles Lubbe,M,29,Lower left leg & foot bitten,False,Grey reef shark,"J. Bass & A. Heydorn; Cape Argus, 1/2/1973",1972.12.31-Lubbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.31-Lubbe.pdf,1972.12.31,1972.12.31 +3312,26-Dec-1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Helmut Pfosse,M,25,"Hip, leg, arm, hand & shoulder bitten",False,2 m to 3 m shark,GSAF,1972.12.26-Pfosse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.26-Pfosse.pdf,1972.12.26,1972.12.26 +3313,25-Dec-1972,Unprovoked,MEXICO,Guerrero,"Revolcadero Beach, Acapulco",Body surfing,Gerald Soukoff,M,17,fatal,True,2 m to 3 m shark,"The Gleaner, 1/3/1973; A. Resciniti, p.109",1972.12.25-Sockoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.25-Sockoff.pdf,1972.12.25,1972.12.25 +3314,24-Dec-1972,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Swimming,Johan Brink,M,17,"No injury, swim fin bitten",False,"White shark, > 3 m [10']","J. Bass, ORI; M. Levine, GSAF",1972.12.24-Brink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.24-Brink.pdf,1972.12.24,1972.12.24 +3315,21-Dec-1972,Unprovoked,AUSTRALIA,Queensland,Currumbin Rock,Swimming,Mark Worman,M,17,Hand bitten,False,"White shark, > 3 m [10']","Canberra Times, 12/23/1972",1972.12.22-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.22-Worman.pdf,1972.12.22,1972.12.22 +3316,08-Dec-1972,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",Swimming,R. Bartlett,,24,PROVOKED INCIDENT,False,"White shark, > 3 m [10']","J. Green, p.36",1972.12.08-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.08-Bartlett.pdf,1972.12.08,1972.12.08 +3317,01-Dec-1972,Unprovoked,REUNION,Saint-Philippe,Basse Vallée,Spearfishing,G. Van Grevelynghe,,24,fatal,True,"White shark, > 3 m [10']",G. Van Grevelynghe,1972.12.01-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.12.01-Reunion.pdf,1972.12.01,1972.12.01 +3318,21-Oct-1972,Unprovoked,AUSTRALIA,Queensland,"Stevens Reef, 70 miles from Mackay",Spearfishing,Norman Hargreaves,M,24,Right arm bitten,False,"White shark, > 3 m [10']","R. McKenzie, Sunday Mail, 9/6/1987, p.11",1972.10.22-Hargreaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.22-Hargreaves.pdf,1972.10.22,1972.10.22 +3319,21-Oct-1972,Unprovoked,AUSTRALIA,New South Wales,Tabourie Beach,Surfing,Terry Cooper,M,19,Lacerations to thigh & buttocks,False,"Bronze whaler shark, 10' ","The Age, 10/23/1972",1972.10.21-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.21-Cooper.pdf,1972.10.21,1972.10.21 +3320,14-Oct-1972,Unprovoked,USA,US Virgin Islands,"St. Croix, Cane Bay",Scuba diving,Rodney Temple,M,19,fatal,True,Oceanic whitetip shark x 2,"H.D. Baldridge, pp.177 & 185",1972.10.14.b-Temple.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.b-Temple.pdf,1972.10.14.b,1972.10.14.b +3321,14-Oct-1972,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,Kenneth Hiles,M,17,Survived,False,Oceanic whitetip shark x 2,"Daytona Beach Morning Journal, 10/18/1972",1972.10.14.a-Hiles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.14.a-Hiles.pdf,1972.10.14.a,1972.10.14.a +3322,Reported 10-Oct-1972,Unprovoked,NEW ZEALAND,North Island,Wanganui,Swimming,Barry Kumara,M,17,"No injury, leg of jeans torn off",False,Oceanic whitetip shark x 2,"European Stars and Stripes, 10/10/1973 ",1972.10.10.R-Kumara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.10.10.R-Kumara.pdf,1972.10.10.R,1972.10.10.R +3323,09-Sep-1972,Unprovoked,USA,California,"Point Sur, Monterey County",Surfing,Hans Kretschmer,M,17,Legs & board bitten,False,"White shark, 6 m [20'] ","D. Miller & R. Collier, R. Collier, pp. 52-53; J. McCosker & R.N. Lea",1972.09.09-Kretschmer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.09-Kretschmer_Collier.pdf,1972.09.09,1972.09.09 +3324,04-Sep-1972,Invalid,MOZAMBIQUE,Maputo Province,Inhaca Island,Swimming,Yvonne Vladislavick,F,20,Feet injured,False,Questionable incident,"Daily News, 9/6/1972",1972.09.04-Vladislavick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.09.04-Vladislavick.pdf,1972.09.04,1972.09.04 +3325,29-Aug-1972,Unprovoked,USA,Florida,"Crescent Beach, St. Johns County",Surfing,Mark Van Leer,M,15,Left calf bitten,False,Questionable incident,"Ocala Star Banner, 8/30/1972",1972.08.29-VanLeer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.29-VanLeer.pdf,1972.08.29,1972.08.29 +3326,17-Aug-1972,Unprovoked,USA,Hawaii,"Waimanu, Honoka'a, Hawai'i",Spearfishing,Eric Fotherby,M,15,Forearm bitten,False,2.4 m [8'] shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1972.08.17-Fotherby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.17-Fotherby.pdf,1972.08.17,1972.08.17 +3327,08-Aug-1972,Unprovoked,AUSTRALIA,Tasmania,Tasman Island,Diving for abalone,Gordon Johnson,M,45,Left foot bitten,False,"White shark, 10'","The Age, 8/10/1972; J. Green, p.36; C. Black, pp 151-153",1972.08.08-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.08.08-Johnson.pdf,1972.08.08,1972.08.08 +3328,05-Jul-1972,Invalid,USA,California,"Laguna Beach, Orange County",Diving,Unconfirmed Report,,45,Sharks reportedly bit legs & fins ,False,Questionable incident,Unconfirmed Report,1972.07.05-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.07.05-NV-California.pdf,1972.07.05,1972.07.05 +3329,Reported 26-Jun-1972,Unprovoked,AUSTRALIA,Queensland,Pancake Creek,Diving,Kenneth Murchison,M,45,fatal,True,Questionable incident,"Canberra Times, 6/26/1972",1972.06.26.b-Murchison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.b-Murchison.pdf,1972.06.26.b,1972.06.26.b +3330,Reported 26-Jun-1972,Unprovoked,AUSTRALIA,Queensland,Pancake Creek,Diving,Ronald Kelly,M,45,fatal,True,Questionable incident,"Canberra Times, 6/26/1972",1972.06.26.a-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.26.a-Kelly.pdf,1972.06.26.a,1972.06.26.a +3331,10-Jun-1972,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Surfing,Richard Salick,M,22,Buttocks bitten,False,4.5' shark,P. Salick,1972.06.10-Salick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.06.10-Salick.pdf,1972.06.10,1972.06.10 +3332,28-May-1972,Unprovoked,USA,California,"Bird Rock, near Tomales Point, Marin County",Free diving for abalone,Helmut Himmrich,M,32,Bitten on legs & buttock,False,"White shark, 4.4 m to 5 m [14.5' to 16.5'] ","D. Miller & R. Collier, R. Collier, pp.48-50; Evening Tribune (San Diego) 7/17/1972; H.D. Baldridge, p.78; J. McCosker & R.N. Lea ",1972.05.28-Himmrich_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.28-Himmrich_Collier.pdf,1972.05.28,1972.05.28 +3333,06-May-1972,Unprovoked,FRENCH POLYNESIA,Tuamotus,Ahé Atoll,Spearfishing,B.T.,M,27,Thigh bitten,False,1.5 m grey reef shark,"M. Fouques, et.al, pp. 318-319",1972.05.06-BT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.05.06-BT.pdf,1972.05.06,1972.05.06 +3334,16-Apr-1972,Unprovoked,WESTERN SAMOA,Upolu Island,Nu’ulua,Swimming,"Alan Banner, Peace Corps volunteer",M,25,fatal,True,Thought to involve a tiger shark,J. Gregory,1972.04.16-Banner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.16-Banner.pdf,1972.04.16,1972.04.16 +3335,01-Apr-1972,Unprovoked,AUSTRALIA,Queensland,Wellington Point,Swimming,Sonja Kuelsen,F,25,Left leg bitten,False,Thought to involve a tiger shark,"R. McKenzie, Sunday Mail, 9/6/1987, p.11",1972.04.01.b-Kuelsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.b-Kuelsen.pdf,1972.04.01.b,1972.04.01.b +3336,01-Apr-1972,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Richard George Wilson,M,19,fatal,True,Thought to involve a tiger shark,Note: The Johannesburg Star initially recorded his name as Richard Wilson Gordon,1972.04.01.a-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.04.01.a-Wilson.pdf,1972.04.01.a,1972.04.01.a +3337,21-Mar-1972,Provoked,PACIFIC OCEAN ,unknown,unknown,Fishing,John Fairfax,M,33,Arm bitten by hooked shark PROVOKED INCIDENT,False,Thought to involve a tiger shark,NY Times 4/2/1972,1972.03.21-Fairfax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.21-Fairfax.pdf,1972.03.21,1972.03.21 +3338,16-Mar-1972,Unprovoked,USA,Hawaii,"Waihe'e, Wailuku, Maui",Spearfishing,"Adam Gomes, Jr.",M,33,Leg bitten,False,Thought to involve a tiger shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1972.03.16-Gomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.03.16-Gomes.pdf,1972.03.16,1972.03.16 +3339,20-Feb-1972,Unprovoked,AUSTRALIA,Victoria,"Wilson's Promontory, Waratah Bay",Surfing,Stuart Rogers,M,18,Laceration above knee,False,7' shark,"Sydney Morning Herald, 2/21/1972 ",1972.02.20-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.20-Rogers.pdf,1972.02.20,1972.02.20 +3340,12-Feb-1972,Unprovoked,AUSTRALIA,Tasmania,Elliot's Cove,Surfing,D. Trayling,,18,Survived,False,7' shark,"C. Black, GSAF; J. Green, p.36",1972.02.12-Trayling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.02.12-Trayling.pdf,1972.02.12,1972.02.12 +3341,01-Jan-1972,Unprovoked,SOUTH AFRICA,Eastern Cape Province,St. George’s Strand,Swimming,Jacob Nkomo,M,20,fatal,True,7' shark,"M. Levine, GSAF",1972.01.01.c-Nkomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.c-Nkomo.pdf,1972.01.01.c,1972.01.01.c +3342,01-Jan-1971,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Kosi Bay,Sitting in shallows,Janie Pelser,F,30,Foot bitten,False,Zambesi shark,"J. Bass & G. Hughes; J. Pelser, M. Levine, GSAF",1972.01.01.b-Pelser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.b-Pelser.pdf,1972.01.01.b,1972.01.01.b +3343,01-Jan-1971,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Standing,Robert Richard,M,24,"Leg severed at knee, hand severed, arms, torso & buttock severely lacerated",False,"White shark, 2.5 m [8.25'] ","J. Bass; M. Levine, GSAF",1972.01.01.a-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.01.01.a-Richard.pdf,1972.01.01.a,1972.01.01.a +3344,1972,Unprovoked,FRANCE,Antibes,Antibes,Swimming,C. Moore. GSAF,,24,Shoulder injured,False,White shark,C. Moore. GSAF,1972.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.b-Antibes.pdf,1972.00.00.b,1972.00.00.b +3345,1972,Unprovoked,MARSHALL ISLANDS,Illeginni Atoll,Illeginni Atoll,"Free diving, collecting shells",Alan Titchenal,M,24,Right hand & torso lacerated,False,1.8 m [6'] grey reef shark,"G. Ambrose, pp.78-86",1972.00.00.a-Titchenal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1972.00.00.a-Titchenal.pdf,1972.00.00.a,1972.00.00.a +3346,23-Dec-1971,Unprovoked,AUSTRALIA,New South Wales,Smokey Cape,"Free diving, collecting shells",G. Byron,,22,Survived,False,1.8 m [6'] grey reef shark,"J. Green, p.36",1971.12.23-Byron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.23-Byron.pdf,1971.12.23,1971.12.23 +3347,16-Dec-1971,Unprovoked,SOUTH AFRICA,Western Cape Province,"Fish Hoek, False Bay",Swimming,Cheryl Teague,F,16,Right forearm bitten,False,"White shark, 3 m [10']rk","C. Teague, M. Levine, GSAF; A. Heydorn, ORI; T. Wallett, p.40",1971.12.16-Teague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.16-Teague.pdf,1971.12.16,1971.12.16 +3348,05-Dec-1971,Unprovoked,AUSTRALIA,Queensland,Gladstone,Swimming,Gregory Carroll,M,20,fatal,True,"White shark, 3 m [10']rk","The Age, 12/9/1971",1971.12.05-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.12.05-Carroll.pdf,1971.12.05,1971.12.05 +3349,Reported 25-Nov-1971,Unprovoked,HONG KONG,Mirs Bay ,Mirs Bay ,Freedom Swimming,Chan Sze-king,M,20,"Left leg severely bitten, surgically amputated",False,"White shark, 3 m [10']rk","The Advocate, 11/25/1971; Post Crescent, 11/28/1971",1971.11.27-Tracy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.27-Tracy.pdf,1971.11.27,1971.11.27 +3350,27-Oct-1971,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",Freedom Swimming,K. Tracy,,20,PROVOKED INCIDENT,False,"White shark, 3 m [10']rk","J. Green, p.36",1971.11.25.R-Chan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.11.25.R-Chan.pdf,1971.11.25.R,1971.11.25.R +3351,23-Oct-1971,Unprovoked,USA,Florida,"Ft. Pierce, St Lucie County",Surfing,"Walter E. Milford, Jr.",M,18,"Right shoulder, arm & hand bitten",False,5' to 6' shark,"News Tribune, 10/25/1971 ",1971.10.23-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.23-Milford.pdf,1971.10.23,1971.10.23 +3352,14-Oct-1971,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Werner Bayer,M,25,Wrist & hand lacerated,False,1.5 m to 2 m shark,J. Bass,1971.10.14-Bayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.14-Bayer.pdf,1971.10.14,1971.10.14 +3353,02-Oct-1971,Unprovoked,USA,California,"Sea Ranch, Sonoma County",Scuba diving,Calvin Ward,M,30,Bitten on legs,False,"White shark, 5 m to 6 m [16.5' to 20'] ","D. Miller & R. Collier; R. Collier, p. 48",1971.10.02-Ward_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.10.02-Ward_Collier.pdf,1971.10.02,1971.10.02 +3354,25-Sep-1971,Unprovoked,USA,North Carolina,"Emerald Isle, Carteret County",Surfing,J. Horner,,17,Left foot injured,False,"White shark, 5 m to 6 m [16.5' to 20'] ","F. Schwartz, p.23",1971.09.25-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.25-Horner.pdf,1971.09.25,1971.09.25 +3355,07-Sep-1971,Unprovoked,CROATIA,Istria County,Ika,Swimming,Stanislav Klepa,M,34,fatal,True,White shark,"R. Rocconi & C. Moore, GSAF",1971.09.07-Klepa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.07-Klepa.pdf,1971.09.07,1971.09.07 +3356,05-Sep-1971,Unprovoked,AUSTRALIA,South Australia,Adelaide,Fishing,Leslie Oswald Harris,M,51,fatal,True,White shark,"J. West, Adelaide Advertiser, 9/7/1971, p.10; P. Kemp, GSAF",1971.09.05-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.09.05-Harris.pdf,1971.09.05,1971.09.05 +3357,21-Aug-1971,Provoked,AUSTRALIA,New South Wales,"Manly Marineland, Sydney",Scuba diving & feeding fish,Jim Allman,M,26,Eight puncture wounds to right leg by captive shark PROVOKED INCIDENT,False,"Grey nurse shark, 11'","Sydney Morning Herald, 8/22/1971",1971.08.21-Allman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.08.21-Allman.pdf,1971.08.21,1971.08.21 +3358,26-Jul-1971,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Wading,Michael Prather,M,8,Laceration to left ankle,False,"Grey nurse shark, 11'","Miami News, 7/27/1971",1971.07.26-Prather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.26-Prather.pdf,1971.07.26,1971.07.26 +3359,19-Jul-1971,Unprovoked,USA,California,"Point Purisima, Santa Barbara County",Hookah diving (submerged),Kenneth Gray,M,8,"Major injuries to head, buttocks & back",False,"White shark, 5.5 m to 6 m [18' to 20'] ","D. Miller & R. Collier, R. Collier, pp.51-52; J. McCosker & R.N. Lea",1971.07.19-Gray_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.07.19-Gray_Collier.pdf,1971.07.19,1971.07.19 +3360,30-Jun-1971,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Gideon Scheltema,M,21,Leg & surfboard bitten,False,"White shark, 3 m [10'], species identity confirmed by witnesses & tooth pattern in leg & board ","G. Scheltema, M. Levine, GSAF; J. Bass, ORI",1971.06.30-Scheltema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.30-Scheltema.pdf,1971.06.30,1971.06.30 +3361,01-Jun-1971,Unprovoked,BRITISH ISLES,South Devon,Beesands,Scuba diving,Jimmy Johnson,M,32,"No injury, said to have been attacked by shark but drove it away with a lobster hook",False,3.6 m porbeagle shark,J. Steel (1989),1971.06.01-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.06.01-Johnson.pdf,1971.06.01,1971.06.01 +3362,Reported 16-Apr-1971,Unprovoked,KENYA,Coast Province,Watamu,Swimming,a German tourist,M,16,Right foot bitten,False,"2 m [6'9""] shark",M. v. Schoor,1971.04.16-Watamu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.16-Watamu.pdf,1971.04.16R,1971.04.16R +3363,11-Apr-1971,Unprovoked,SOUTH AFRICA,Western Cape Province,Buffels Bay,Swimming,Theo Klein,M,>50,fatal,True,White shark according to tooth pattern and witnesses,"J. Wallace, ORI; M. Levine, GSAF; T. Wallett, pp.39-40",1971.04.11-TheoKlein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.11-TheoKlein.pdf,1971.04.11,1971.04.11 +3364,6-Apr-1971,Unprovoked,MEXICO,Guerrero,"Copacabana Beach, Acapulco",Surfing,Jimmy Rowe,M,19,fatal,True,White shark according to tooth pattern and witnesses,"A.Resciniti, p.109",1971.04.06-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.06-Rowe.pdf,1971.04.06,1971.04.06 +3365,5-Apr-1971,Unprovoked,VENEZUELA,unknown,unknown,Surfing,Alberto Mayora ,M,14,fatal,True,White shark according to tooth pattern and witnesses,H.D. Baldridge (1994) SAF Case #1646,1971.04.05.b-NV-A-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.b-NV-A-Mayora.pdf,1971.04.05.b,1971.04.05.b +3366,5-Apr-1971,Unprovoked,VENEZUELA,unknown,unknown,Surfing,Tarcisio Mayora,M,66,fatal,True,White shark according to tooth pattern and witnesses,H.D. Baldridge (1994) SAF Case #1646,1971.04.05.a-NV-T-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.05.a-NV-T-Mayora.pdf,1971.04.05.a,1971.04.05.a +3367,Late Apr-1971,Sea Disaster,MOZAMBIQUE,Between Beira & Maputo,Between Beira & Maputo,Wreck of the 1689-ton Portuguese coaster Angoche,"Sailed with 23 crew, half survived the explosion",,66,fatal,True,White shark according to tooth pattern and witnesses,"M. Levine, GSAF",1971.04.00-Angoche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.04.00-Angoche.pdf,1971.04.00,1971.04.00 +3368,30-Mar-1971,Unprovoked,NEW ZEALAND,South Island,Dunedin,Surfing,Barry Watkins,M,16,Lacerations to left leg ,False,"White shark, 4.6 m [15'] ","B. Watkins, R. D. Weeks, GSAF ",1971.03.30-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.03.30-Watkins.pdf,1971.03.30,1971.03.30 +3369,02-Jan-1971,Unprovoked,AUSTRALIA,Tasmania,Tasmania,Swimming,Ralph Painter,M,16,Torso lacerated,False,"White shark, 4.6 m [15'] ","C. Black, GSAF; H.D. Baldridge (1994) SAF Case #1650",1971.01.02-Painter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.01.02-Painter.pdf,1971.01.02,1971.01.02 +3370,1971,Unprovoked,AUSTRALIA,South Australia,Southport,Surfing,Tim Franklin,M,15,Severe lacerations to thigh,False,White shark,The Advertiser (undated),1971.00.00.c-Franklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.c-Franklin.pdf,1971.00.00.c,1971.00.00.c +3371,1971,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Surfing,Mr. Nagib,M,15,Survived,False,White shark,B. Coad,1971.00.00.b-Nagib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.b-Nagib.pdf,1971.00.00.b,1971.00.00.b +3372,1971,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Surfing,Mr. Kalantar,M,15,Survived,False,White shark,B. Coad,1971.00.00.a-Kalantar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1971.00.00.a-Kalantar.pdf,1971.00.00.a,1971.00.00.a +3373,17-Dec-1970,Unprovoked,MOZAMBIQUE,Inhambe Province,"Inhasoka, Inhambe Bay",Fishing for prawns,Castigo Litura,M,18,fatal,True,White shark,"GSAF; H.D. Baldridge, p.22",1970.12.17-Litura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.17-Litura.pdf,1970.12.17,1970.12.17 +3374,13-Dec-1970,Unprovoked,MOZAMBIQUE,Inhambe Province,"Inhambe Bay Estuary, 10 to 12 miles inland from the sea",Fishing for prawns,black male,M,18 to 22,fatal,True,White shark,"GSAF; H.D. Baldridge, p.22",1970.12.13-BlackMale-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.13-BlackMale-Mozambique.pdf,1970.12.13,1970.12.13 +3375,07-Dec-1970,Unprovoked,MICRONESIA,Namonuito Atoll,Pisarach (Pisaras),Fishing,Santiago Kapriel,M,18 to 22,Laceration to thigh,False,1.8 m shark,R.S. Jones,1970.12.07-Kapriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.07-Kapriel.pdf,1970.12.07,1970.12.07 +3376,03-Dec-1970,Sea Disaster,USA,Hawaii,Kauai,Shipwreck,Dikios Leopold,M,41,Right thigh lacerated,False,1.8 m shark,"The Argus, 12/7/1970, p.2",1970.12.03-Leopold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.12.03-Leopold.pdf,1970.12.03,1970.12.03 +3377,24-Oct-1970,Unprovoked,USA,Hawaii,"Brennecke Beach, Po'ipu, Kaua'i",Body surfing,James C. Mattan,M,41,Shoulder & arm bitten,False,1.8 m shark,"J. Borg, p.74; L. Taylor (1993), pp.102-103",1970.10.24-Mattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.24-Mattan.pdf,1970.10.24,1970.10.24 +3378,Oct-1970,Unprovoked,USA,Florida,"Matanzas Inlet, St Johns County",Surfing,Robbie Baker,M,41,Bitten on right leg above the ankle,False,1.8 m shark,"H. Wessel, Orlando Sentinel, 8/1/2001 ",1970.10.00-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.10.00-Baker.pdf,1970.10.00,1970.10.00 +3379,28-Sep-1970,Unprovoked,MICRONESIA,Eastern Caroline Islands,Truk Lagoon,Diving,Mike Uramai,M,43,Lacerations & punctures to right arm & shoulder ,False,1.8 to 2 m C. albimarginatus,R.S. Jones,1970.09.28-Urumai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.28-Urumai.pdf,1970.09.28,1970.09.28 +3380,13-Sep-1970,Provoked,PALAU,Western Caroline Islands (North Pacific Ocean),Outside barrier reef,Spearfishing,Aismerael Samsel,M,20,"Another diver shot shark, shark bit his left foream PROVOKED INCIDENT",False,1 m shark,"K.R.H. Read; H.D. Baldridge, p.192",1970.09.13-Samsel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.13-Samsel.pdf,1970.09.13,1970.09.13 +3381,05-Sep-1970,Unprovoked,USA,Florida,"Cocoa Beach, Brevard County",Floating on a raft,Reggie Hodgson,M,18,Laceration to left foot,False,1 m shark,"St. Petersburg Times, 9/7/1970, p.12B",1970.09.05-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.05-Hodgson.pdf,1970.09.05,1970.09.05 +3382,02-Sep-1970,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",Floating on a raft,David Cook,M,20,PROVOKED INCIDENT,False,1 m shark,"J. Green, p.36",1970.09.02-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.02-Cook.pdf,1970.09.02,1970.09.02 +3383,Sep-1970,Unprovoked,USA,South Carolina,South Carolina,Swimming,Gary Kirakas,M,20,Foot lacerated,False,"""Dog shark""","H.D. Baldridge (1994), SAF Case #1630",1970.09.00.c-Kirakas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.c-Kirakas.pdf,1970.09.00.c,1970.09.00.c +3384,Sep-1970,Unprovoked,USA,Florida,Pinellas County,Scuba diving,male,M,20,Calf / knee injured?,False,"""Dog shark""",SAF Case #1485,1970.09.00.a-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.09.00.a-NV-male.pdf,1970.09.00.a,1970.09.00.a +3385,02-Aug-1970,Invalid,unknown,Caribbean Sea,Between St. Kitts & Nevis,Sea Disaster Sinking of ferryboat Christina,"Rome News Tribune, 8/3/1970",,20,"Sharks scavenged on bodies, but no record of them injuring survivors ",False,Shark involvement prior to death was not confirmed,"Rome News Tribune, 8/3/1970",1970.08.02-Christina-ferryboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.08.02-Christina-ferryboat.pdf,1970.08.02,1970.08.02 +3386,22-Jun-1970,Provoked,USA,Florida,"Dania, Broward County",Fishing,William Faulkner,M,13,Bitten on calf by hooked shark PROVOKED INCIDENT,False,7.5' shark,Bridgeport Post 6/22/1970,1970.06.22-Faulkner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.22-Faulkner.pdf,1970.06.22,1970.06.22 +3387,15-Jun-1970,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Shark tank, Oceanographic Research Institute, Durban",Scuba Diving,Anand Govindsamy,M,25,2 cm laceration on knee PROVOKED INCIDENT,False,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","D. Davies; A.J. Bass, ORI",1970.06.15-Govindsamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.15-Govindsamy.pdf,1970.06.15,1970.06.15 +3388,13-Jun-1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Wading,Lincoln Alpheus,M,16,fatal,True,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","E. Pace, FSAF",1970.06.13.b-LincolnJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.b-LincolnJohn.pdf,1970.06.13.b,1970.06.13.b +3389,13-Jun-1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Wading,John Alpheus,M,18,fatal,True,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","E. Pace, FSAF",1970.06.13.a-AlpheusJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.13.a-AlpheusJohn.pdf,1970.06.13.a,1970.06.13.a +3390,Jun-1970,Sea Disaster,PHILIPPINES,200 nm southeast of Manila,200 nm southeast of Manila,Motor launch Baby Princesa capsized with 22 people on board,"The Daily Intelligencer, 6/12/1970, p.2; The Times (London), September 24, 1970",,18,fatal,True,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","The Daily Intelligencer, 6/12/1970, p.2; The Times (London), September 24, 1970",1970.06.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.06.00-Philippines.pdf,1970.06.00,1970.06.00 +3391,4-Apr-1970,Unprovoked,GRENADA,St. Andrew Parish,Grenville,Swimming,Rudolf Daily,M,14,fatal,True,"Raggedtooth shark, 2 m [6'9""], 5-year-old, captive female ","E. Pace, FSAF",1970.04.04-Daily.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.04-Daily.pdf,1970.04.04,1970.04.04 +3392,Apr-1970,Unprovoked,SOLOMON ISLANDS,unknown,unknown,Swimming,David Vota,M,14,No details,UNKNOWN,Wobbegong shark,H.D. Baldridge (1994) SAF Case #1655,1970.04.00.a-NV-Vota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.04.00.a-NV-Vota.pdf,1970.04.00.a,1970.04.00.a +3393,31-Mar-1970,Invalid,USA,Hawaii,"Waimea Bay, O'ahu",Body surfing,Ernie Reathaford,M,14,"Swept out to sea, 5.5 m [18'] shark seen in the vicinity, body not recovered. ",False,Shark involvement prior to death was not confirmed,"J. Borg, p.74",1970.03.31-Reathaford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.31-Reathaford.pdf,1970.03.31,1970.03.31 +3394,23-Mar-1970,Unprovoked,USA,Florida,Manatee County,Wading,Robert Fetterman,M,19,Foot & calf lacerated,False,Shark involvement prior to death was not confirmed,H.D. Baldridge (1994) SAF Case #1620,1970.03.23-Fetterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.03.23-Fetterman.pdf,1970.03.23,1970.03.23 +3395,23-Jan-1970,Unprovoked,MOZAMBIQUE,Limpopo River,3.2 km inland,Swimming,Zulu Soto,M,14,"Hands severed, forearm severely lacerated",False,Shark involvement prior to death was not confirmed,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.d-Soto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.d-Soto.pdf,1970.01.23.d,1970.01.23.d +3396,23-Jan-1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Betual Tivane,M,16,Leg severed at knee,False,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.c-Tivane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.c-Tivane.pdf,1970.01.23.c,1970.01.23.c +3397,23-Jan-1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Mabua Mogadura,M,12,"Arm severed, thigh bitten",False,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.b-Mogadura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.b-Mogadura.pdf,1970.01.23.b,1970.01.23.b +3398,23-Jan-1970,Unprovoked,MOZAMBIQUE,Limpopo River,"Gijana, 150 km inland",Swimming,Elissane Mobunda,M,10,Leg severed at knee,False,Zambesi shark,"Natal Daily News, 2/4/1970; D. Davies",1970.01.23.a-Mobunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.23.a-Mobunda.pdf,1970.01.23.a,1970.01.23.a +3399, 16-Jan-1970,Sea Disaster,EGYPT,Red Sea,A few miles south of Port Suez,Air disaster,pilot of Israeli skyhawk,M,10,fatal,True,Zambesi shark,"The Progress, 1/17/1970",1970.01.16-IsraeliPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.16-IsraeliPilot.pdf,1970.01.16,1970.01.16 +3400,10-Jan-1970,Unprovoked,MEXICO,Guerrero,Acapulco,Swimming,Jack Kardell,M,22,Leg bitten,False,Zambesi shark,"A. Resciniti, p.110",1970.01.10-Kardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.10-Kardell.pdf,1970.01.10,1970.01.10 +3401,Reported 09-Jan-1970,Unprovoked,ENGLAND,Devon,Teignmouth,Attempted to return injured shark to the sea,a fisherman,M,22,Leg bitten,False,8' blue shark,"Reading Eagle, 1/9/1970",1970.01.09.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.09.R-England.pdf,1970.01.09.R,1970.01.09.R +3402, Jan-1970,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,New Ireland Province,Freediving,Mosley,M,15,Lacerations to back,False,8' blue shark,"Brainerd Daily Dispatch, 1/13/1970",1970.01.00-NV-Mosley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.01.00-NV-Mosley.pdf,1970.01.00,1970.01.00 +3403,1970s,Unprovoked,SRI LANKA,Western Province,Colombo Harbor,Spearfishing / freediving,Hiran Wickremartne,M,15,Swim fins badly torn by the shark's teeth,False,8' blue shark,R. I. DeSilva.GSAF,1970.00.00.h-Wickremaratne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.h-Wickremaratne.pdf,1970.00.00.h,1970.00.00.h +3404,Late 1970s,Unprovoked,SPAIN,Canary Islands,"Icod de los Vinos, Tenerife",Spearfishing,C. Moore. GSAF,M,15,Minor injury,False,Blue shark,C. Moore. GSAF,1970.00.00.g-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.g-Tenerife.pdf,1970.00.00.g,1970.00.00.g +3405,Ca. 1970,Boat,ITALY,Sardinia,Golfo di Oristano,Fishing on a boat,male,M,15,No injury,False,White shark,A. De Maddalena; M. Cottiglia (pers. Comm.),1970.00.00.f-Sardinia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.f-Sardinia.pdf,1970.00.00.f,1970.00.00.f +3406,1970,Unprovoked,CROATIA,Zadar County,Novigrad,Spearfishing,Mr. Jurincic,M,15,No details,UNKNOWN,White shark,A. De Maddalena; A. Mojetta (pers. Comm.),1970.00.00.e-Jurincic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.e-Jurincic.pdf,1970.00.00.e,1970.00.00.e +3407,1970s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Washing cooking pans,female,F,28,Left hand severed,False,White shark,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.d-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.d-Shatt-al-Arab.pdf,1970.00.00.d,1970.00.00.d +3408,1970s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River near Abu al Khasib,Washing clothes on stairs,female,F,25,Left foot severed,False,White shark,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.c-Abu-a-Khasib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.c-Abu-a-Khasib.pdf,1970.00.00.c,1970.00.00.c +3409,1970s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Swimming,male,M,35,fatal,True,White shark,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.b-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.b-Shatt-al-Arab.pdf,1970.00.00.b,1970.00.00.b +3410,1970s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,"Fishing, trying to catch the end of his fishing line",male,M,35,Left hand bitten,False,White shark,B.W. Coad & L.A.J. Al-Hassan,1970.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1970.00.00.a-Shatt-al-Arab.pdf,1970.00.00.a,1970.00.00.a +3411,30-Nov-1969,Unprovoked,AUSTRALIA,Western Australia,"Swan River, 13 miles upstream",Swimming,Graham Cartwright,M,15,Left thigh lacerated,False,White shark,"Sydney Morning Herald, 12/1/1969 ",1969.11.30-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.30-Cartwright.pdf,1969.11.30,1969.11.30 +3412,11-Nov-1969,Unprovoked,USA,Hawaii,"Barber’s Point, O'ahu",Scuba diving for lobsters,D.R. McGinnis,M,15,"Abrasions on upper leg, laceration on ankle, scuba tank bitten",False,>2.4 m [8'] shark,"H.D. Baldridge, p.185; J. Borg, p.74; L. Taylor (1993), pp.102-103",1969.11.11-McGinnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.11-McGinnis.pdf,1969.11.11,1969.11.11 +3413,05-Nov-1969,Provoked,AUSTRALIA,New South Wales,"Marineland, Sydney",Scuba diving for lobsters,A. Robson,M,27,PROVOKED INCIDENT,False,>2.4 m [8'] shark,"J. Green, p.36",1969.11.05-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.11.05-Robson.pdf,1969.11.05,1969.11.05 +3414,14-Oct-1969,Unprovoked,USA,Hawaii,Hawaii,Diving,Richard Hegeman,M,27,No injury,False,Oceanic whitetip shark,H.D. Baldridge (1994) SAF Case #1579,1969.10.14-NV-Hegeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.10.14-NV-Hegeman.pdf,1969.10.14,1969.10.14 +3415,06-Sep-1969,Unprovoked,USA,California,"Bird Rock, Tomales Point, near Marin County / Sonoma County border",Free diving for abalone,Donald Joslin,M,53,Leg & ankle severely bitten,False,"White shark, 4.3 m 4.9 m [14' to 16'] ","D. Miller & R. Collier; R. Collier, pp.42-44; H.D. Baldridge, p.78;",1969.09.06-DonaldJoslin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.09.06-DonaldJoslin_Collier.pdf,1969.09.06,1969.09.06 +3416,29-Aug-1969,Unprovoked,USA,Florida,"North Beach, St. Lucie County",Floating on his back,D.C. Barnes,M,53,Laceration to right leg,False,"White shark, 4.3 m 4.9 m [14' to 16'] ","News Tribune, 8/30/1969",1969.08.29-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.29-Barnes.pdf,1969.08.29,1969.08.29 +3417,22-Aug-1969,Provoked,USA,Massachusetts,40 miles south of Nantucket,Fishing,Robert Eleniefsky,M,28,Leg bitten by netted shark PROVOKED INCIDENT,False,"White shark, 4.3 m 4.9 m [14' to 16'] ","Portsmouth Herald, 8/23/1969",1969.08.22-Eleniefsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.22-Eleniefsky.pdf,1969.08.22,1969.08.22 +3418,02-Aug-1969,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Surfing,John. Wilson,M,15,Lacerations to lower leg,False,"White shark, 4.3 m 4.9 m [14' to 16'] ","St. Petersburg Times, 8/3/1969; H.D. Baldridge (1994) SAF Case #1570",1969.08.02-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.02-Wilson.pdf,1969.08.02,1969.08.02 +3419,02-Aug-1969,Unprovoked,USA,Florida,"St. Petersburg, Pinnellas County",Body surfing,Robert Wamser,M,13,Lacerations to right lower leg & left arm and hand,False,4' shark,"NYTimes, 8/3/1969",1969.08.01-Wamser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.08.01-Wamser.pdf,1969.08.01,1969.08.01 +3420,27-Jul-1969,Provoked,ENGLAND,unknown,unknown,Body surfing,Eric Brown,M,13,Arm lacerated. Recorded as PROVOKED INCIDENT,False,4' shark,H.D. Baldridge (1994) SAF Case #1611,1969.07.27-NV-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.27-NV-Brown.pdf,1969.07.27,1969.07.27 +3421,22-Jul-1969,Provoked,USA,Florida,Florida Keys,Body surfing,Walter Griffin,M,13,Scrape on head. Recorded as PROVOKED INCIDENT,False,Nurse shark,H.D. Baldridge (1994) SAF Case #1603,1969.07.22-NV-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.22-NV-Griffin.pdf,1969.07.22,1969.07.22 +3422,20-Jul-1969,Unprovoked,USA,California,"Pigeon Point, San Mateo County",Freediving for abalone (at surface),Robert Colby,M,13,"Foot bitten, minor injury",False,"White shark, 5 m [16.5'] ","D. Miller & R. Collier; R. Collier, p. 42",1969.07.20-Colby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.07.20-Colby_Collier.pdf,1969.07.20,1969.07.20 +3423,27-Jun-1969,Unprovoked,USA,Florida,Florida Keys,Wading,Steven Benham,M,22,No details,UNKNOWN,"White shark, 5 m [16.5'] ",H.D.Baldridge (1994) SAF Case #1652,1969.06.27-NV-Benham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.27-NV-Benham.pdf,1969.06.27,1969.06.27 +3424,12-Jun-1969,Unprovoked,JAMAICA,Clarendon,Off Rocky Point,Diving,Dennis Washington,M,27,Multiple lacerations,False,"White shark, 5 m [16.5'] ","The Gleaner, 6/20/1969",1969.06.12-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.12-Washington.pdf,1969.06.12,1969.06.12 +3425,Jun-1969,Unprovoked,USA,Florida,Sarasota County,Wading,"John Holmes, Jr.",M,8,No injury,False,"White shark, 5 m [16.5'] ",H.D.Baldridge (1994) SAF Case #1609,1969.06.00-NV-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.06.00-NV-Holmes.pdf,1969.06.00,1969.06.00 +3426,25-May-1969,Provoked,USA,Texas,Packery Channel,Surf-fishing,Walter Barnett,M,8,Foot lacerated when he stepped on the shark PROVOKED INCIDENT,False,2' to 3' shark,"Corpus Christi Times, 5/26/1969; H.D.Baldridge (1994) SAF Case #1629",1969.05.25-Barnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.25-Barnett.pdf,1969.05.25,1969.05.25 +3427,24-May-1969,Provoked,USA,Florida,Sarasota County,Diving,Brian Martel,M,23,Laceration to buttocks Recorded as PROVOKED INCIDENT,False,Nurse shark,H.D.Baldridge (1994) SAF Case #1596,1969.05.24-NV-Martel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.24-NV-Martel.pdf,1969.05.24,1969.05.24 +3428,22-May-1969,Unprovoked,DOMINICAN REPUBLIC,unknown,unknown,Surfing,"Douglas Kuchn, Jr.",M,18,UNKNOWN,UNKNOWN,Nurse shark,H.D.Baldridge (1994) SAF Case #1607,1969.05.22-NV-Kuchn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.22-NV-Kuchn.pdf,1969.05.22,1969.05.22 +3429,14-May-1969,Unprovoked,AUSTRALIA,Queensland,Broomfield Reef,Surfing,J. Gillies,,18,Survived,False,Nurse shark,"J. Green, p.36",1969.05.14-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.05.14-Gillies.pdf,1969.05.14,1969.05.14 +3430,22-Apr-1969,Invalid,AUSTRALIA,New South Wales,"Kingscliffe Beach, south of Tweed Heads",Netting pilchards,David Anderson,M,18,No injury,False,"Considered a ""Doubtful"" incident","J. Green, p.36",1969.04.22-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.22-Anderson.pdf,1969.04.22,1969.04.22 +3431,19-Aug-1969,Provoked,USA,Florida,"Marathon, Monroe County",Fishing,Jack Horner,M,adult,Laceration to foot from dead shark PROVOKED INCIDENT,False,"Lemon shark, 9' ","Tri-City Herald, 4/21/1969",1969.04.19-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.04.19-Horner.pdf,1969.04.19,1969.04.19 +3432,25-Mar-1969,Provoked,AUSTRALIA,New South Wales,Newcastle,Fishing,William Hill,M,65,Foot lacerated. Recorded as PROVOKED INCIDENT,False,Mako shark,H.D.Baldridge (1994) SAF Case #1612,1969.03.25-NV-WilliamHill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.25-NV-WilliamHill.pdf,1969.03.25,1969.03.25 +3433,09-Mar-1969,Unprovoked,USA,Hawaii,"Makaha, O'ahu",Surfing,Licius Lee,M,16,Leg & surfboard bitten,False,"White shark, identified by tooth fragments in surfboard","J. Borg, p.73; L. Taylor (1993), pp.102-103",1969.03.09-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.03.09-Lee.pdf,1969.03.09,1969.03.09 +3434,Reported 17-Feb-1969,Provoked,AUSTRALIA,Tasmania,Taroona,Fishing,George Pacey,M,49,Lacerations to hand from hooked shark PROVOKED INCIDENT,False,7-gill shark,"C. Black, GSAF",1969.02.17.R-Pacey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.17.R-Pacey.pdf,1969.02.17.R,1969.02.17.R +3435,Feb-1969,Invalid,AUSTRALIA,Queensland,Cooktown,Hard hat diving,Elin Anderson,M,52,No details,False,Questionable incident,H.D.Baldridge (1994) SAF Case #1591,1969.02.00-NV-ElinAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.02.00-NV-ElinAnderson.pdf,1969.02.00,1969.02.00 +3436,27-Jan-1969,Unprovoked,AUSTRALIA,New South Wales,Beecroft Head,Freediving,Kevin Deacon,M,21,Abrasions and lacerations to lower right leg,False,Questionable incident,H.D.Baldridge (1994) SAF Case #1560,1969.01.27-Deacon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.27-Deacon.pdf,1969.01.27,1969.01.27 +3437,Jan-1969,Unprovoked,AUSTRALIA,Victoria,Port MacDonnel,Freediving,W.D. Simpson,M,21,Minor injury ,False,Carpet shark,"H.D.Baldridge (1994), SAF Case #1594",1969.01.00-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.01.00-Simpson.pdf,1969.01.00,1969.01.00 +3438,Winter 1969,Provoked,BAHAMAS,Eleuthera,Eleuthera,Sight-seeing,"14' boat, occupant: Jonathan Leodorn",,21,"No injury to occupants, shark grabbed prop, Leodorn hit shark with oar, shark bit oar in half PROVOKED INCIDENT",False,10' shark,"M. Vorenberg, p.154",1969.00.00-Leodorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1969.00.00-Leodorn.pdf,1969.00.00,1969.00.00 +3439,29-Dec-1968,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port St. John's,Freediving,John Domoney,M,21,No injury,False,Questionable incident,H.D.Baldridge (1994) SAF Case #1588. Note: Unable to verify in local records,1968.12.29-NV-Domoney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.29-NV-Domoney.pdf,1968.12.29,1968.12.29 +3440,26-Dec-1968,Provoked,AUSTRALIA,New South Wales,"Marineland Aquarium, Manley, Sydney",Feeding mullet to sharks,Peter Jones,M,27,Laceration to finger by a captive shark PROVOKED INCIDENT,False,"Grey nurse shark, 10' ","The Age, 12/27/1968",1968.12.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.26-Jones.pdf,1968.12.26,1968.12.26 +3441,25-Dec-1968,Unprovoked,NEW ZEALAND,South Island,"St. Clair Beach, Dunedin",Surfing,Gary Barton,M,17,"Hit in face by shark, arm abraded, surfboard bitten",False,White shark,"R. D. Weeks, GSAF; Otago Daily Times, 12/26/1968",1968.12.25-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.25-Barton.pdf,1968.12.25,1968.12.25 +3442,09-Dec-1968,Unprovoked,AUSTRALIA,South Australia,Thistle Island,Surfing,Dick O’Brien,M,17,Survived,False,White shark,"T. Peake, GSAF",1968.12.09-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.09-O'Brien.pdf,1968.12.09,1968.12.09 +3443,02-Dec-1968,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Bluff, Durban",Spearfishing,Chris Van Niekerk,M,28,"No injury, left elbow & torso bumped by sharks",False,"2 scalloped hammerhead sharks, 1.5 m & 1.8 m [5' & 6']","A. Heydorn, ORI",1968.12.02-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.02-VanNiekerk.pdf,1968.12.02,1968.12.02 +3444,Dec-1968,Invalid,SOUTH AFRICA,KwaZulu-Natal,KwaZulu-Natal,Spearfishing,Jasper Gwynn,M,30,No injury,False,Questionable incident,H.D. Baldridge (1994) SAF Case #1587; Unable to authenticate,1968.12.00-NV-Gwynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.12.00-NV-Gwynn.pdf,1968.12.00,1968.12.00 +3445,06-Nov-1968,Boat,SOUTH AFRICA,KwaZulu-Natal,Ramsgate,Fishing,"fishing boat, occupants: Simon Hlope & 4 other men",M,22,"Shark leapt into boat, landed on Hlope's back, then bit his left forearm",False,"90-kg ""blackfin"" shark","M. Levine, GSAF",1968.11.06-Hlope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.06-Hlope.pdf,1968.11.06,1968.11.06 +3446,04-Nov-1968,Sea Disaster,PAPUA NEW GUINEA,Madang Province,Madang Province,Wreck of the Storm King,male,,22,Remains recovered days later from shark,False,Shark involvement prior to death was not confirmed,"The Sydney Morning Herald, 11/9/1968",1968.11.04-StormKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.04-StormKing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.04-StormKing.pdf,1968.11.04,1968.11.04 +3447,02-Nov-1968,Provoked,AUSTRALIA,Western Australia,Western Australia,Wreck of the Storm King,Roy Rosser,M,16,Abrasion on shoulder Recorded as PROVOKED INCIDENT,False,Shark involvement prior to death was not confirmed,H.D. Baldridge (1994) SAF Case #1533,1968.11.02-NV-Rosser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.11.02-NV-Rosser.pdf,1968.11.02,1968.11.02 +3448,29-Oct-1968,Provoked,BAHAMAS,unknown,unknown,Wreck of the Storm King,John DeBry,M,16,Calf injured Recorded as PROVOKED INCIDENT,False,Shark involvement prior to death was not confirmed,H.D. Baldridge (1994) SAF Case #1565,1968.10.29-NV-DeBry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.29-NV-DeBry.pdf,1968.10.29,1968.10.29 +3449,13-Oct-1968,Unprovoked,USA,Florida,"Egmont Key, Hillsborough County",Spearfishing using Scuba,Jim C. Johnson,M,16,Swim fin bitten,False,3 m [10'] bull shark,"H.D. Baldridge, p.185",1968.10.13-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.13-Johnson.pdf,1968.10.13,1968.10.13 +3450,10-Oct-1968,Sea Disaster,PHILIPPINES,Moro Gulf,Moro Gulf,Sinking of the ferryboat Dumaguete ,a passenger,,16,Survived,False,3 m [10'] bull shark,"Fresno Bee Republican, 10/12/1968",1968.10.10-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.10.10-FerryDisaster.pdf,1968.10.10,1968.10.10 +3451,22-Sep-1968,Invalid,USA,Florida,"Riviera Beach, Palm Beach County",Surfing," M. Vorenberg, GSAF",,16,,,Shark involvement not confirmed," M. Vorenberg, GSAF",1968.09.22-NV-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.22-NV-RivieraBeach.pdf,1968.09.22,1968.09.22 +3452,15-Sep-1968,Unprovoked,NEW ZEALAND,South Island,Otago Harbor,Spearfishing,Graham Hitt,M,24,fatal,True,"White shark, 4.3 m [14'], (tooth fragment recovered)","R.D. Weeks, GSAF; Otago Daily Times, 9/16/1968; H.D. Baldridge, pp.18-19",1968.09.15-Hitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.09.15-Hitt.pdf,1968.09.15,1968.09.15 +3453,24-Aug-1968,Unprovoked,USA,Florida,Half mile north of Juno Beach Pier,Playing with a frisbee in the shallows,Colleen Chamberlin & Scott Chamberlin,,9 & 12,"Shark bumped Colleen, the nudged Scott, then bit Frisbee & swam away with it",False,a small hammerhead shark,"M. Vorenberg, GSAF",1968.08.24-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.24-Chamberlin.pdf,1968.08.24,1968.08.24 +3454,21-Aug-1968,Unprovoked,USA,Florida,Okaloosa County,Standing,Peter S. Ball,M,15,Leg & arm bitten,False,a small hammerhead shark,"Brownsville Herald, 8/14/1968; H.D.Baldridge, SAF Case #1553",1968.08.21-PeterBall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.21-PeterBall.pdf,1968.08.21,1968.08.21 +3455,13-Aug-1968,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Swimming,Blake Tenville,M,12,Finger severed,False,a small hammerhead shark,"H.D.Baldridge, SAF Case #1531",1968.08.13-Tennville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.13-Tennville.pdf,1968.08.13,1968.08.13 +3456,11-Aug-1968,Unprovoked,MALAYSIA,Johor,Pulau Aur,Leaving the water,Inche Bin Saini,,41,Hand lacerated,False,a small hammerhead shark,"H.D.Baldridge, SAF Case #1541",1968.08.11-NV-InceBinSaini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.11-NV-InceBinSaini.pdf,1968.08.11,1968.08.11 +3457,08-Aug-1968,Unprovoked,COLUMBIA,Magdalena Department,"Makuaka Caño, Taganga",Dynamite fishing,Abel Mattos Antoniou Vasquez,M,18,Lacerations to head,False,2 m shark,"SoHo.com, 11/19/2-11",1968.08.08-Vasquez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.08.08-Vasquez.pdf,1968.08.08,1968.08.08 +3458,27-Jul-1968,Unprovoked,USA,California,"Bodega Rock, Sonoma County",Free diving,Frank Logan,M,25,Major injury to torso,False,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, pp.41-42; H.D. Baldridge, p.76, 138, 191, 194, 206",1968.07.27-FrankLogan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.27-FrankLogan_Collier.pdf,1968.07.27,1968.07.27 +3459,23-Jul-1968,Unprovoked,USA,Florida,Florida Keys,Wading,H. Meacham,M,33,Abrasions on lower leg,False,"White shark, 4 m [13'] ","H.D.Baldridge, SAF Case #1542",1968.07.23-NV-Meacham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.23-NV-Meacham.pdf,1968.07.23,1968.07.23 +3460,16-Jul-1968,Unprovoked,USA,South Carolina,"Stono Inlet, near Charleston, Charleston County",Spearfishing using Scuba,Paul Hughes,M,33,Swimfin & knee bitten,False,4m [13'] shark,"H.D.Baldridge, p.284",1968.07.16-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.16-Hughes.pdf,1968.07.16,1968.07.16 +3461,10-Jul-1968,Unprovoked,BAHAMAS,Great Exuma Island,Children's Bay Cay near Rollerville,Small boat with 2 men onboard hit a submerged coral formation. Men began swimming to shore,male,M,33,fatal,True,4m [13'] shark,"Reported by F.S.T. Baker to M. Vorenberg, pp.154-155",1968.07.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.10-Bahamas.pdf,1968.07.10,1968.07.10 +3462,Jul-1968,Invalid,MEXICO,Baja California,Baja California,Small boat with 2 men onboard hit a submerged coral formation. Men began swimming to shore,Robert Slatzer,M,43,No injury,False,Not authenticated,"H.D.Baldridge, SAF Case #1613",1968.07.00-NV-Slatzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.07.00-NV-Slatzer.pdf,1968.07.00,1968.07.00 +3463,25-Jun-1968,Unprovoked,BAHAMAS,Eleuthera,Spanish Wells ,Spearfishing,Roy Pinder,M,17,"Bumped shoulder, bit head",False,1.5 m to 2 m [5' to 6.75'] Caribbean reef shark ,"H.D. Baldridge, p.260; Clark, p.87",1968.06.25-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.25-Pinder.pdf,1968.06.25,1968.06.25 +3464,09-Jun-1968,Unprovoked,USA,Florida,"Mullet Key, Pinellas County",Clamming,Peter Nash,M,17,Lacerations to lower right leg & andkle,False,1.5 m to 2 m [5' to 6.75'] Caribbean reef shark ,"Evening Indeipendent, 6/10/1968, p.3",1968.06.09-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.09-Nash.pdf,1968.06.09,1968.06.09 +3465,Jun-1968,Unprovoked,ENGLAND,unknown,unknown,Clamming,Roy Cloke,M,17,Arm severely lacerated,False,Blue shark,"H.D. Baldridge (1994), SAF Case #1515",1968.06.00-NV-Cloke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.06.00-NV-Cloke.pdf,1968.06.00,1968.06.00 +3466,18-May-1968,Invalid,TANZANIA,Mafia Island,Mafia Island,Schooner sank during a storm,R. Wharton,,17,"6 people rescued, 3 shark-scavenged bodies recovered, 14 people lost ",False,Shark involvement not confirmed,R. Wharton,1968.05.18-MafiaIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.18-MafiaIsland.pdf,1968.05.18,1968.05.18 +3467,May-1968,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,New Ireland Province,Standing,Tamuk Gilaba,M,17,Lower leg severely lacerated,False,Shark involvement not confirmed,H.D. Baldridge (1994) SAF Case #1520,1968.05.00-NV-Gilaba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.05.00-NV-Gilaba.pdf,1968.05.00,1968.05.00 +3468,29-Apr-1968,Invalid,USA,Florida,"Fort Lauderdale, Broward County",Wading,Frank Carrell,M,63,Foot severely injured,False,Shark involvement not confirmed,"News Journal, 5/1/1968",1968.04.29-Carrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.29-Carrell.pdf,1968.04.29,1968.04.29 +3469,20-Apr-1968,Unprovoked,USA,Florida,"Palm Beach Shores, Riviera Beach, Singer Island, Palm Beach County",Wading,Steven Samples,M,10,"Buttock, both legs & arm bitten",False,2.7 m [9'] silky shark,"M. Vorenberg, GSAF; R. Skocik, pp.168-169; H.D. Baldridge, p.203; Note: A. Resciniti, p.35, also refers to an earlier attack on a snorkeler. The shark bit the boy's calf and both swim fins.",1968.04.20-Samples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.20-Samples.pdf,1968.04.20,1968.04.20 +3470,15-Apr-1968,Unprovoked,AUSTRALIA,New South Wales,South Coast,"Diving. Shark “swallowed’ his hand, so he threw his other around the shark and went “shark-back riding” for 30 yards until the shark opened its jaws",Rodney Castle,M,21,Hand lacerated,False,"Bronze whaler shark, 1.8 m [6'] ","Sydney Morning Herald, 4/28/1968 ",1968.04.15-Castle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.15-Castle.pdf,1968.04.15,1968.04.15 +3471,Reported 11-Apr-1968,Unprovoked,PAPUA NEW GUINEA,Gulf Province,Orokolo Bay,Swimming,Hukolapa Laiokeke,M,7,fatal,True,"Bronze whaler shark, 1.8 m [6'] ","The Age, 4/11/1968, p.4",1968.04.11.R-Laiokeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.11.R-Laiokeke.pdf,1968.04.11.R,1968.04.11.R +3472,07-Apr-1968,Provoked,AUSTRALIA,New South Wales,Stockton Bight,Swimming,Ray Weaver,M,47,Foot lacerated Recorded as PROVOKED INCIDENT,False,"""Blue whaler"" (Galeolamna)","J. Green, p.36; H. D. Baldridge (1994) SAF Case #1528",1968.04.07-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.04.07-Weaver.pdf,1968.04.07,1968.04.07 +3473,25-Mar-1968,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Richards Bay,Wading & pushing dinghy toward the shallows,Almon Mtiyane,M,35,Left thigh lacerated,False,1.5 m to 1.8m [5' to 6'] shark,"J. Bass, H.A. Jones, A. Heydorn & D. Illing",1968.03.25-Mtiyane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.25-Mtiyane.pdf,1968.03.25,1968.03.25 +3474,10-Mar-1968,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Surfing,Jan Icyda,M,20,Foot lacerated,False,1.5 m to 1.8m [5' to 6'] shark,H.D. Baldridge (1994) SAF Case #1548,1968.03.10-Icyda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.10-Icyda.pdf,1968.03.10,1968.03.10 +3475,Mar-1968,Invalid,USA,Florida,Florida Keys,Treading water,Jared Voorhees,M,28,No injury,False,Invalid,H.D. Baldridge (1994) SAF Case #1530,1968.03.00-NV-Voorhees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.03.00-NV-Voorhees.pdf,1968.03.00,1968.03.00 +3476,26-Feb-1968,Unprovoked,USA,Florida,Palm Beach County,Surfing,Fred Hennessee,M,17,Foot lacerated,False,Invalid,"H.D. Baldridge, #1549",1968.02.26-Hennessee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.26-Hennessee.pdf,1968.02.26,1968.02.26 +3477,20-Feb-1968,Unprovoked,AUSTRALIA,Western Australia,Swan River,Swimming,Ingrid Germanis,F,14,Thigh lacerated,False,Invalid,"J. Green, p.36",1968.02.20-Germanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.20-Germanis.pdf,1968.02.20,1968.02.20 +3478,18-Feb-1968,Provoked,NEW ZEALAND,North Island,"Pilot Bay, Mt Maunganui ",Picking up shark by the tail,Lynne Campbell,F,14,Wrist bitten PROVOKED INCIDENT,False,3' shark,"R.D. Weeks, GSAF; Otago Daily Times, 2/20/1968; H.D. Baldridge (1994) SAF Case #1525",1968.02.18-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.18-Campbell.pdf,1968.02.18,1968.02.18 +3479,04-Feb-1968,Unprovoked,AUSTRALIA,South Australia,Cape Jervis,Spearfishing,Howard Forster,M,26,"No injury, speargun bitten",False,"Bronze whaler shark, 3 m [10'] ","H.D. Baldridge, p.199",1968.02.04-Forster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.04-Forster.pdf,1968.02.04,1968.02.04 +3480,02-Feb-1968,Unprovoked,AUSTRALIA,New South Wales,Brunswick Heads,Spearfishing,R. Vidler,,26,Survived,False,"Bronze whaler shark, 3 m [10'] ","J. Green, p.36",1968.02.02-Vidler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.02-Vidler.pdf,1968.02.02,1968.02.02 +3481,Feb-1968,Unprovoked,MOZAMBIQUE,unknown,unknown,Diving,Sergio Peres,,24,No injury,False,"Bronze whaler shark, 3 m [10'] ",H.D. Baldridge (1994) SAF Case #1522,1968.02.00-NV-Peres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.02.00-NV-Peres.pdf,1968.02.00,1968.02.00 +3482,17-Jan-1968,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Finschafen,Swimming,Awin Ieromia,,13,fatal,True,"Bronze whaler shark, 3 m [10'] ",H.D. Baldridge (1994) SAF Cases #1519 & #1584,1968.01.17-NV-Ieromia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.01.17-NV-Ieromia.pdf,1968.01.17,1968.01.17 +3483,1968,Unprovoked,COSTA RICA,Limón Province,Parismina,Swimming after his canoe capsized,male,M,13,fatal,True,"Bronze whaler shark, 3 m [10'] ","Kokomo Tribune, 5/11/1969",1968.00.00.c-Parisima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.c-Parisima.pdf,1968.00.00.c,1968.00.00.c +3484,1968,Invalid,USA,Florida,"Key West, Monroe County",Diving,Unverified,,13,"Recovered, said to involve a 1m nurse shark",False,Questionable incident,Unverified,1968.00.00.b-NV-KeyWestDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.b-NV-KeyWestDiver.pdf,1968.00.00.b,1968.00.00.b +3485,1968,Invalid,USA,Florida,"Jensen Beach, Martin County",Surfing,Unverified,,13,,,Questionable incident,Unverified,1968.00.00.a-NV-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1968.00.00.a-NV-JensenBeach.pdf,1968.00.00.a,1968.00.00.a +3486,30-Dec-1967,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Surfing,Brian Pearson,M,22,Right ankle & foot bitten,False,1.5 m to 1.8 m [5' to 6'] shark,"B. Pearson, M. Levine, GSAF",1967.12.30-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.30-Pearson.pdf,1967.12.30,1967.12.30 +3487,Reported 21-Dec-1967,Invalid,PAPUA NEW GUINEA,Central Province,Port Moresby,Spearfishing,Bob Valentine,M,32,No injury,False,Questionable incident,H.D. Baldridge (1994) ,1967.12.21.R-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.21.R-Valentine.pdf,1967.12.21.R,1967.12.21.R +3488,18-Dec-1967,Unprovoked,FIJI,unknown,unknown,Spearfishing,Tera Tetapana,M,27,Arm lacerated,False,Questionable incident,H.D.Baldridge (1994) SAF Case #1532,1967.12.18-NV-Tetapana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.18-NV-Tetapana.pdf,1967.12.18,1967.12.18 +3489,17-Dec-1967,Unprovoked,AUSTRALIA,Victoria,"Cheviot Beach, Portsea, Port Phillip Bay",Swimming,Prime Minister Harold Holt,M,59,fatal,True,Questionable incident,"H. Edwards, p.137-138",1967.12.17-PrimeMinister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.17-PrimeMinister.pdf,1967.12.17,1967.12.17 +3490,14-Dec-1967,Provoked,USA,unknown,unknown,Swimming,Joe Stinson,M,59,"Head, shoulder, arm lacerated. Recorded as PROVOKED INCIDENT",False,Questionable incident,H.D.Baldridge (1994) SAF Case #1566,1967.12.14-NV-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.12.14-NV-Stinson.pdf,1967.12.14,1967.12.14 +3491,30-Nov-1967,Provoked,AUSTRALIA,New South Wales,Wollongong,Freediving,Jeff Short,M,15,Recorded as PROVOKED INCIDENT,False,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1516,1967.11.30.b- NV-JeffShort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.b- NV-JeffShort.pdf,1967.11.30.b,1967.11.30.b +3492,30-Nov-1967,Unprovoked,AUSTRALIA,Queensland,Surfer's Paradise,Freediving,Jan Ligrov,M,18,Arm lacerated,False,Grey nurse shark,(1994) SAF Case #1524,1967.11.30.a-Ligrov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.30.a-Ligrov.pdf,1967.11.30.a,1967.11.30.a +3493,15-Nov-1967,Provoked,FIJI,unknown,unknown,Freediving,Stephen Wiltshire,M,21,Hand lacerated by speared shark PROVOKED INCIDENT,False,Grey nurse shark,H.D.Baldridge (1994) SAF Case #1537,1967.11.15-NV-Wiltshire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.15-NV-Wiltshire.pdf,1967.11.15,1967.11.15 +3494,04-Nov-1967,Sea Disaster,PHILIPPINES,Rombion Province,Off Sibuyan Island,Sinking of the M/V Mindoro during a typhoon,"Canberra Times, 11/9/1967",,21,fatal,True,Grey nurse shark,"Canberra Times, 11/9/1967",1967.11.04-Mindoro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.04-Mindoro.pdf,1967.11.04,1967.11.04 +3495,Nov-1967,Invalid,SOUTH AFRICA,KwaZulu-Natal,Brighton Beach,Sinking of the M/V Mindoro during a typhoon,female,F,21,"Bones and brightly colored bangles recovered 3.35 m, 145.5-kg tiger shark’s gut ",False,Shark involvement prior to death was not confirmed,"A. Heydorn, ORI",1967.11.00-BrightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.11.00-BrightonBeach.pdf,1967.11.00,1967.11.00 +3496,Reported 26-Oct-1967,Unprovoked,MEXICO,Veracruz,Veracruz,Swimming,"""a youth""",,21,fatal,True,Shark involvement prior to death was not confirmed,"Chicago Tribune, 10/27/1967",1967.10.26.R-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.26.R-Veracruz.pdf,1967.10.26.R,1967.10.26.R +3497,17-Oct-1967,Unprovoked,USA,Florida,"McArthur Beach, Singer Island, Palm Beach Shores",Standing on sandbar,Peter J. White,M,19,Left foot bitten,False,small blacktip shark,"M. Vorenberg, GSAF",1967.10.17-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.17-White.pdf,1967.10.17,1967.10.17 +3498,Oct-1967,Unprovoked,TONGA,unknown,unknown,Swimming,Toetuu Hopoi,M,17,Arm & leg bitten,False,small blacktip shark,H.D.Baldridge (1994) SAF Case #1480,1967.10.00-NV-Hopoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.10.00-NV-Hopoi.pdf,1967.10.00,1967.10.00 +3499,20-Sep-1967,Invalid,USA,Hawaii,"Kailua Bay, O'ahu",Boat capsized between O'ahu & Molokai,male,M,17,Remains found in a 3.4 m (11') tiger shark. Probable drowning & scavenging,False,Shark involvement prior to death was not confirmed,"J. Borg, p.73; L. Taylor (1993), pp.102-103",1967.09.20-male-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.20-male-Oahu.pdf,1967.09.20,1967.09.20 +3500,13-Sep-1967,Provoked,ITALY,Brindisi Province,Brindisi,Scuba diving,Romeo Guarini,M,21,"Diver shot the shark, then it injured his arm and broke his leg with its tail. PROVOKED INCIDENT",False,2 m shark,C. Moore. GSAF,1967.09.13-Guarini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.13-Guarini.pdf,1967.09.13,1967.09.13 +3501,07-Sep-1967,Provoked,PAPUA NEW GUINEA,New Ireland Province,New Ireland Province,Diving,Parang,,21,"No details, listed as PROVOKED INCIDENT",UNKNOWN,2 m shark,"H.D.Baldridge, SAF Case #1546",1967.09.07.b-NV-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.b-NV-Parang.pdf,1967.09.07.b,1967.09.07.b +3502,07-Sep-1967,Unprovoked,USA,Florida,"Key West, Monroe County",Spearfishing,,,21,Survived,False,2 m shark,,1967.09.07.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.07.a-NV-KeyWest.pdf,1967.09.07.a,1967.09.07.a +3503,06-Sep-1967,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Lambom Island,Spearfishing,Parang,M,21,fatal,True,2 m shark,"The Age, 9/7/1967 ",1967.09.06-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.06-Parang.pdf,1967.09.06,1967.09.06 +3504,01-Sep-1967,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Lamassa Island, 16 miles from Lambon Island",Spearfishing,Tony Kamage,M,23,fatal,True,3.7 m [12'] shark,"F. Dennis, pp.23-24",1967.09.01-Kamage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.09.01-Kamage.pdf,1967.09.01,1967.09.01 +3505,27-Aug-1967,Provoked,USA,California,Ventura,Pulling shark from the water,Jim Beatty,M,24,Nipped on shoulder by captive shark PROVOKED INCIDENT,False,5' blue shark,"Ventura County Ad-Visor, 8/31/1967",1967.08.27-Beatty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.27-Beatty.pdf,1967.08.27,1967.08.27 +3506,26-Aug-1967,Unprovoked,JAPAN,Kagawa Prefecture,Sakaide,Pulling shark from the water,Masanori Ishikawa,M,19,fatal,True,5' blue shark,K. Nakaya,1967.08.26-Ishikawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.26-Ishikawa.pdf,1967.08.26,1967.08.26 +3507,25-Aug-1967,Unprovoked,ITALY,Liguria," Marinella Sarzana, La Spezia ",Spearfishing on Scuba,Gian Paolo Porta Casucci,M,19,Minor injuries to face & forearm,False,5' blue shark,"C. Moore, GSAF",1967.08.25-Casucci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.25-Casucci.pdf,1967.08.25,1967.08.25 +3508,19-Aug-1967,Unprovoked,AUSTRALIA,Western Australia,Jurien Bay,"Spearfishing, dived to pick up a float line",Robert Bartle,M,23,fatal,True,White shark,"H. Edwards, pp.35-42; H.D. Baldridge, p.28; A. Sharpe, pp.132-133; A. MacCormick, p.86; J. West, ASAF",1967.08.19-Bartle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.19-Bartle.pdf,1967.08.19,1967.08.19 +3509,15-Aug-1967,Unprovoked,BERMUDA,Hamilton,Hamilton,Floating,Sue Ferguson,F,19,Right foot abraded & lacerated,False,White shark,"Gettysburg Times, 8/15/1967",1967.08.15-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.15-Ferguson.pdf,1967.08.15,1967.08.15 +3510,Reported 14-Aug-1967,Unprovoked,COLUMBIA,unknown,unknown,Floating,Thomas Walsh,M,19,3 fingers were bitten by a shark,False,White shark,"New York Times, 8/14/1967",1967.08.14.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.14.R-Walsh.pdf,1967.08.14.R,1967.08.14.R +3511,10-Aug-1967,Invalid,AUSTRALIA,New South Wales,Jervis Bay,Anti-sabotage night dive exercise alongside destroyer (Scuba diving),"J.T. Hales and Kenneth J. Hislop, Australian Navy frogmen",M,? & 19,"Disappeared, no trace of men or equipment, shark attack considered",False,Shark involvement prior to death was not confirmed,"H.D. Baldridge, p.184",1967.08.10-Hales-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.10-Hales-Hislop.pdf,1967.08.10,1967.08.10 +3512,07-Aug-1967,Unprovoked,USA,Florida,Near Key West,Spearfishing,Donald Ritter,M,15,Shark grasped thigh,False,"Nurse shark, 106 cm, 28-lb, male ","H.D. Baldridge, p.193; Clark, p.86",1967.08.07-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.07-Ritter.pdf,1967.08.07,1967.08.07 +3513,Aug-1967,Unprovoked,BAHAMAS,Out Islands,Andros Island,Photographing sharks underwater using Scuba,Richard Winer,M,41,"No injury, shark struck camera",False,1.5 m to 1.8 m [5' to 6'] sandbar shark,"H.D. Baldridge, p.185",1967.08.00.b-Winer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.b-Winer.pdf,1967.08.00.b,1967.08.00.b +3514,Aug-1967,Unprovoked,SENEGAL,Cap Vert Peninsula,Hann,Beach seine netting,B.D.,M,41,Ankle bitten,False,1.8 m shark,S. Trape,1967.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.08.00.a-Senegal.pdf,1967.08.00.a,1967.08.00.a +3515,29-Jul-1967,Unprovoked,USA,Florida,Florida Keys,Snorkeling,Joseph McGonigal,M,20,Foot lacerated,False,1.8 m shark,"H.D.Baldridge, SAF Case #1538",1967.07.29-NV-McGonigal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.29-NV-McGonigal.pdf,1967.07.29,1967.07.29 +3516,05-Jul-1967,Unprovoked,TURKEY,Mugla Province,Kucukada Island,Spearfishing,Gungor Guven,M,36,fatal,True,1.8 m shark,"C. Moore, GSAF",1967.07.05-Guven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.05-Guven.pdf,1967/07.05,1967.07.05 +3517,Jul-1967,Invalid,USA,South Carolina,South Carolina,Surfing,Tim Dowdy,M,18,Incident not confirmed,False,Questionable incident,H.D. Baldridge (1994) SAF Case #1637,1967.07.00-NV-Dowdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.07.00-NV-Dowdy.pdf,1967.07.00,1967.07.00 +3518,13-Jun-1967,Provoked,USA,Florida,"Key West, Monroe County",Spearfishing,Andres Puma (or Pruna),M,26,"After shark was speared & hit on head, it bit the diver’s foot PROVOKED INCIDENT",False,"Nurse shark, 1 m ","H.D. Baldridge, p.192; M. McDiarmid, p.70",1967.06.13-Pruna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.13-Pruna.pdf,1967.06.13,1967.06.13 +3519,Jun-1967,Provoked,ITALY,Sicily,Stretto di Messina,Fishing boat,A. De Maddalena; Giudici & Fino (1989),M,26,"No injury to occupants, harpooned shark sank boat PROVOKED INCIDENT",False,"White shark, 4 to 5 m [13' to 16.5'] ",A. De Maddalena; Giudici & Fino (1989),1967.06.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.06.00-Messina.pdf,1967.06.00,1967.06.00 +3520,13 or 30-May-1967,Provoked,AUSTRALIA,South Australia,Outer Harbor,Fishing boat,Rodney Baim,M,30,Thigh abraded & lacerated Recorded as PROVOKED INCIDENT,False,Bronze whaler shark,"J. Green, p.36; H. D. Baldridge (1994) SAF Case #1464",1967.05.13-NV-Baim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.13-NV-Baim.pdf,1967.05.13,1967.05.13 +3521,09-May-1967,Provoked,AUSTRALIA,Aquarium,Aquarium,Feeding a shark,Rod Stanley,M,22,Recorded as PROVOKED INCIDENT,False,Grey nurse shark,H.D.Baldridge (1994) SAF Case #1536,1967.05.09-NV-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.05.09-NV-Stanley.pdf,1967.05.09,1967.05.09 +3522,Apr-1967,Provoked,UNITED KINGDOM,Gibraltar,Gibraltar,Fishing,Bernard Venables,M,60,Tooth knocked out by hooked shark PROVOKED INCIDENT,False,Grey nurse shark,C. Moore. GSAF,1967.04.00-Venables-Gibraltar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.04.00-Venables-Gibraltar.pdf,1967.04.00,1967.04.00 +3523,20-Mar-1967,Provoked,NEW ZEALAND,North Island,Leigh,Freediving,Peter Clark,M,21,Abrasions to lower leg Recorded as PROVOKED INCIDENT,False,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1521,1967.03.20-NV-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.20-NV-Clark.pdf,1967.03.20,1967.03.20 +3524,19-Mar-1967,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Paradise Reef,Spearfishing,Len Jones,M,32,"Punctures in right buttock & thigh, abrasion on right forearm",False,"White shark, 3 m [10'] ","L. Jones, M. Levine, GSAF;. D'Aubrey, ORI",1967.03.19-LenJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.19-LenJones.pdf,1967.03.19,1967.03.19 +3525,12-Mar-1967,Provoked,AUSTRALIA,Victoria,Geelong,Spearfishing,Brian Marendaz,M,36,Speared shark lacerated his arm PROVOKED INCIDENT,False,Grey nurse shark,"H.D. Baldridge, SAF Case #1466",1967.03.12-NV-Marendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.12-NV-Marendez.pdf,1967.03.12,1967.03.12 +3526,10-Mar-1967,Invalid,AUSTRALIA,New South Wales,"Dover Heights, Sydney",Vehicle plunged over cliff into the water,passenger in an automobile,,36,fatal,True,Shark involvement prior to death was not confirmed,Evening Express (Cardiff),1967.03.10-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.10-passenger.pdf,1967.03.10,1967.03.10 +3527,09-Mar-1967,Unprovoked,NEW ZEALAND,South Island,St. Kilda Beach,Lifesaving drill,William Black,M,21,fatal,True,Thought to involve a white shark,"R.D. Weeks, GSAF; J. Garrick; West Australian (Perth), 3/10/1967",1967.03.09-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.09-Black.pdf,1967.03.09,1967.03.09 +3528,01-Mar-1967,Unprovoked,PAPUA NEW GUINEA,New Britain,"Barawon Beach, near Rabaul",Lifesaving drill,black male,M,14,Leg bitten,False,3.7 m [12'] shark,"F. Dennis, p.23; H.D. Baldridge (1994) SAF Case #1534",1967.03.01-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.03.01-boy.pdf,1967.03.01,1967.03.01 +3529,06-Feb-1967,Sea Disaster,MEXICO,Veracruz,Cabo Rojo,The shrimper Loless Maurine capsized in heavy seas & the men were swimming ashore ,Carlos Humberto Mendez & Esteban Robles,M,14,fatal,True,3.7 m [12'] shark,"Brownsville Herald, 1/28/1968",1967.02.06-Mendez-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.02.06-Mendez-Robles.pdf,1967.02.06,1967.02.06 +3530,27-Jan-1967,Boat,SOUTH AFRICA,Western Cape Province,Melkbosstrand,Fishing for rock lobster,"Lobster boat, occupants: Mr. P. Valentine & Mr. J. van Schalkwyk ",,14,"Holed & sank boat, 1 man flung into water but ignored by the shark",False,White shark or thresher shark,GSAF,1967.01.27-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.27-boat.pdf,1967.01.27,1967.01.27 +3531,22-Jan-1967,Provoked,SOUTH AFRICA,Western Cape Province,Whittle Rock False Bay,Spearfishing Competition,Ian Gericke,M,14,"No injury, shark bit support boat, removing pieces of wood after Gerricke shot it PROVOKED INCIDENT",False,2.1 m [7'] sandtiger shark,"H.D. Baldridge, p.128",1967.01.22-Gericke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.22-Gericke.pdf,1967.01.22,1967.01.22 +3532,21-Jan-1967,Unprovoked,MOZAMBIQUE,Bay of Maputo,Xefina Island,Swimming in the channel,Alberto Caravallo Santos,M,31,Right leg severely lacerated,False,2.1 m [7'] sandtiger shark,"M. Levine, GSAF",1967.01.21-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.21-Santos.pdf,1967.01.21,1967.01.21 +3533,06-Jan-1967,Provoked,AUSTRALIA,Victoria,Goolwa,Splashing,Gregory Loane,M,15,Foot bitten when he kicked shark PROVOKED INCIDENT,False,"""sand shark""",H.D.Baldridge (1994) SAF Case #1465,1967.01.06-NV-Loane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1967.01.06-NV-Loane.pdf,1967.01.06,1967.01.06 +3534,31-Dec-1966,Unprovoked,AUSTRALIA,Tasmania,"Piccaninny Point, 10 miles from Bicheno",Fishing,Alf Bosworth,M,30,"6"" laceration to left forearm ",False,2.1 m [7'] shark,"J. Green, p.35; Sun (Sydney), 1/3/1967",1966.12.31-Bosworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.31-Bosworth.pdf,1966.12.31,1966.12.31 +3535,27-Dec-1966,Provoked,AUSTRALIA,New South Wales,South West Rocks,Spearfishing,Robert Lusted,M,29,The shark bit the diver's leg after he shot it PROVOKED INCIDENT,False,"Grey nurse shark, 1.5 m [5'] ","Sun (Sydney), 12/29/1966; J. Green, p.36; H.D. Baldridge, p.166 ",1966.12.27.b-Lusted.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.b-Lusted.pdf,1966.12.27.b,1966.12.27.b +3536,27-Dec-1966,Unprovoked,AUSTRALIA,New South Wales,Trial Bay,Spearfishing,Lyle Fielding,M,19,Right hand lacerated,False,"Grey nurse shark, 1.5 m [5']","Sun (Sydney), 12/29/1966; J. Green, p.36",1966.12.27.a-Fielding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.27.a-Fielding.pdf,1966.12.27.a,1966.12.27.a +3537,26-Dec-1966,Unprovoked,SINGAPORE,Singapore,Singapore,Wading,Hussain Ali,M,39,Thigh bitten,False,"Grey nurse shark, 1.5 m [5']","H.D. Baldridge, SAF Case #1458",1966.12.26-NV-Hussain-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-NV-Hussain-Ali.pdf,1966.12.26,1966.12.26 +3538,26-Dec-1966,Unprovoked,AUSTRALIA,New South Wales,Coogee,Spearfishing,David Jensen,M,29,Right leg bitten,False,1.8 m [6'] shark,"Sun (Sydney), 12/29/1966; H.D. Baldridge, p.137",1966.12.26-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.12.26-Jensen.pdf,1966.12.26,1966.12.26 +3539,14-Nov-1966,Unprovoked,THAILAND,unknown,unknown,Spearfishing,Vinit Tantikarn,,28,No details,UNKNOWN,1.8 m [6'] shark,H.D. Baldridge (1994) SAF Case #1509,1966.11.14-NV-Tantikam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.14-NV-Tantikam.pdf,1966.11.14,1966.11.14 +3540,Early Nov-1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,New Ireland Province,A father bathing his smallest daughter when the shark bumped her out of his arms and carried her into deep water,Theresa Maineri,F,9 months,fatal,True,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.11.00-Maineri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.11.00-Maineri.pdf,1966.11.00,1966.11.00 +3541,30-Oct-1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Lamassa Island, 16 miles from Lambom Island",Swimming,Ridel Pogias (female),F,13,fatal,True,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.10.30-Pogias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.30-Pogias.pdf,1966.10.30,1966.10.30 +3542,19-Oct-1966,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Mission Beach, Lambon Island, near Duke of York Islands",Bathing,Dakel (female),F,8,fatal,True,3.7 m [12'] shark,"A. McNaught; Times-Courier (Lae, PNG), 12/10/1966; F. Dennis, p.23",1966.10.29-Dakel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.10.29-Dakel.pdf,1966.10.29,1966.10.29 +3543,27-Sep-1966,Unprovoked,AUSTRALIA,Queensland,"Broomfield Island, 11 miles from Heron Island on the Great Barrier Reef","Free diving, carrying speargun",Barry Dawson,M,32,Shoulder lacerated,False,"Bronze whaler shark, 2.1 m [7'], a tooth was embedded in the speargun ","B. Dawson, J.Green, pp.50-52; The Cairns Post, 9/28/1966 (Note: the press erroneously reported the diver's name as Davidson.)",1966.09.27-Dawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.27-Dawson.pdf,1966.09.27,1966.09.27 +3544,19-Sep-1966,Provoked,USA,Hawaii,50 miles NE of Honolulu,Fishing,Akiyoshi Morita,M,20,Left elbow or hand bitten PROVOKED INCIDENT,False,"Bronze whaler shark, 2.1 m [7'], a tooth was embedded in the speargun ","Japan Times, 9/23/1966; Mainichi News, 9/25/1966 edtion",1966.09.19-Morita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.19-Morita.pdf,1966.09.19,1966.09.19 +3545,18-Sep-1966,Invalid,AUSTRALIA,Western Australia,"Little Beach Reef, Bremer Bay",Spearfishing,John Marsh,M,20," The 2.9 m [9.5'] shark never made contact with him. No attack, no injury.",False,Invalid,"The West Australian (Perth), 9/14/1966; D. H.Baldridge, p.136; SAF Case #1424",1966.09.18-Marsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.18-Marsh.pdf,1966.09.18,1966.09.18 +3546,13-Sep-1966,Provoked,AUSTRALIA,Western Australia,Albany,Spearfishing,Terry Adams,M,20,Involved a speared shark but no other details PROVOKED INCIDENT,UNKNOWN,Invalid,"H.D.Baldridge, SAF Case #1425",1966.09.13-NV-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.13-NV-Adams.pdf,1966.09.13,1966.09.13 +3547,10-Sep-1966,Unprovoked,AUSTRALIA,Western Australia,Roe Reef off Rottnest Island,Spearfishing,Frank Paxman,M,43,No injury,False,"Mako shark, 1.9 m [6.5'] ","The West Australian (Perth), 9/14/1966; H.D.Baldridge, p.136",1966.09.10-Paxman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.10-Paxman.pdf,1966.09.10,1966.09.10 +3548,8-Sep-1966,Provoked,USA,Florida,"Florida Keys, Monroe County",Hunting crayfish ,David Redmond,M,14,Abdomen abraded when he seized shark PROVOKED INCIDENT,False,"Nurse shark, 2.5' ","San Antonio Express, 9/9/1966",1966.09.08-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.08-Redmond.pdf,1966.09.08.b,1966.09.08.b +3549,Sep- 1966,Invalid,BAHAMAS,Bimini Islands,Tongue of the Ocean,Diving / UW photography,Jerry Greenberg,M,14,"2.4 to 3 m [8' to 10'] oceanic whitetip shark buzzed him. No attack, no injury",False,Invalid, ISAF Case #1421,1966.09.00-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.09.00-Greenberg.pdf,1966.09.00,1966.09.00 +3550,28-Aug-1966,Boat,AUSTRALIA,Northern Territory,Darwin Harbour,Diving / UW photography,"catamaran, occupant: Neil Fowler",M,14,"No injury to occupant. Shark struck vessel, jamming centreboard",False,Invalid,"Adelaide Advertiser, 9/1/1966; SAF Case #1426",1966.08.28-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.28-Fowler.pdf,1966.08.28,1966.08.28 +3551,27-Aug-1966,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Netting sharks,"trawler Jacoba, occupant Jan van der Bent",M,14,"No attack, no injury to occupant: a 400-lb grey shark bit nets in the water ",False,Invalid,ISAF Case #1439,1966.08.27-Jacoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27-Jacoba.pdf,1966.08.27.b,1966.08.27.b +3552,27-Aug-1966,Unprovoked,BAHAMAS,Bimini Islands,Bimini Islands,Snorkeling,Patricia Hodge,F,18,"Survived, no details",False,Invalid,"P. Gilbert & H.D. Baldridge, SAF Case #1433",1966.08.27.a-NV-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.27.a-NV-Hodge.pdf,1966.08.27.a,1966.08.27.a +3553,23-Aug-1966,Unprovoked,NEW BRITAIN,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Swimming,Memilana Bokset (female - rescuer),F,13,fatal,True,A pack of 6 sharks,"Age (Melbourne), Hudderfield Daily Examiner (Yorkshire), Evening Press (Dublin), 8/23/196;; Irish News (Belfast), 8/24/1966; A. MacCormick, p.161",1966.08.21.b-Bokset.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.b-Bokset.pdf,1966.08.21.b,1966.08.21.b +3554,23-Aug-1966,Unprovoked,NEW BRITAIN,Duke of York Islands,"Butliwan Village, 15 miles north of Rabaul",Diving into water,Loding Etwat (female),F,9,fatal,True,A pack of 6 sharks,"Age (Melbourne), Hudderfield Daily Examiner (Yorkshire), Evening Press (Dublin), 8/23/1966; Irish News (Belfast), 8/24/1966; A. MacCormick, p.161",1966.08.21.a-Etwat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.21.a-Etwat.pdf,1966.08.21.a,1966.08.21.a +3555,16-Aug-1966,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,Bakar,Swimming,Josef Treliac,M,33,fatal,True,White shark,"R. Rocconi; A. De Maddalena & C. Moore, GSAF",1966.08.16-Treliac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.16-Treliac.pdf,1966.08.16,1966.08.16 +3556,14-Aug-1966,Unprovoked,TAIWAN,Ye Leow,Ye Leow,Lobster diving using Scuba,Jack W. Caldwell,M,33,"No injury, but shark struck his calf",False,1.5 m to 2.1 m [5' to 7'] shark,"H.D.Baldridge, p.184",1966.08.14-Caldwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.14-Caldwell.pdf,1966.08.14,1966.08.14 +3557,13-Aug-1966,Unprovoked,ITALY,Taranto province,"Pulsano, near Taranto",Attacked shark with fists,Cosimo Piccinni,M,21,Arm lacerated,False,"""small shark""","Evening Standard (London) 8/13/1966; Sunday Express (London), 8/14/1966",1966.08.13-CosimoPiccinni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.13-CosimoPiccinni.pdf,1966.08.13,1966.08.13 +3558,Mid Aug-1966,Invalid,USA,Delaware,Fenwick Island,Spearfishing on Scuba,Charles T. Henderson,M,26,"No attack, no injury, shark took speared fish & approached diver closely ",False,Invalid,H.D. Baldridge (1994) SAF Case #1440,1966.08.00.b-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.b-Henderson.pdf,1966.08.00.b,1966.08.00.b +3559,Aug-1966,Unprovoked,USA,Florida,"Municipal Bathing area, Riviera Beach, Palm Beach County",Wading,Shawn Carpenter,M,8,"No injury, mother lifted him from the water",False,Spinner or blacktip sharks,"M. Vorenberg, GSAF",1966.08.00.a-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.08.00.a-Carpenter.pdf,1966.08.00.a,1966.08.00.a +3560,31-Jul-1966,Unprovoked,USA,Texas,"South Jetty, Galveston",Diving for sand dollars,Robert W. Russell,M,16,Dorsum of right foot grazed,False,Lemon shark or sandtiger shark,"M. Vorenberg, H.D. Baldridge, p.191",1966.07.31-Russell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.31-Russell.pdf,1966.07.31,1966.07.31 +3561,19-Jul-1966,Provoked,USA,South Carolina,"Folly Beach, Charleston County",Killing a shark,Marvin Estridge,M,34,"Arm bitten, PROVOKED INCIDENT",False,4' shark,"News & Courier, 7/20/1966",1966.07.19-Estridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.19-Estridge.pdf,1966.07.19,1966.07.19 +3562,17-Jul-1966,Unprovoked,USA,Texas,"Point Comfort, Calhoun County",Fishing,Tommy Barilek,M,14,Lacerations to right foot,False,4' shark,"Victoria Advocate, 7/20/1966, p.8",1966.07.17.b-Barilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.b-Barilek.pdf,1966.07.17.b,1966.07.17.b +3563,17-Jul-1966,Unprovoked,TAIWAN,Northern Taiwan,Tamsui Beach,Swimming,Yang Ching-Hui,M,20,fatal,True,4' shark,"South China Morning Post (Hong Kong), 7/19/1966 ",1966.07.17.a-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.17.a-Yang.pdf,1966.07.17.a,1966.07.17.a +3564,14-Jul-1966,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Manus Island,Swimming,Sasa,F,25,fatal,True,4' shark,H.D.Baldridge (1994) SAF Case #1415,1966.07.14-NV-Sasa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.14-NV-Sasa.pdf,1966.07.14,1966.07.14 +3565,03-Jul-1966,Invalid,USA,Florida,"Key Biscayne, Miami, Dade County",Free diving,John Brothers,M,46,No injury. A 1.1 m [3.5'] blacktip shark shark made a threat display & bit gig,False,Invalid,"H.D. Baldridge, p.210",1966.07.03-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.03-Brothers.pdf,1966.07.03,1966.07.03 +3566,02-Jul-1966,Boat,CARIBBEAN SEA,Between USA & Cuba,Between USA & Cuba,Free diving,"rowboat, occupants: refugees fleeing Cuba",,46,"No injury to occupants, sharks bit chunks from boat",False,Invalid,P. Gilbert; SAF Case #1436,1966.07.02-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.07.02-CubanRefugees.pdf,1966.07.02,1966.07.02 +3567,22-Jun-1966,Provoked,USA,New Jersey,"Reeds Bay, Brigantine, Atlantic County",Clamming,Harry Hiksdal,M,15,3 lacerations on right leg by speared fish PROVOKED INCIDENT,False,"Local authorities speculated that the water was too cold for sharks, but a 2.1 m [7'], 200-lb pregnant sandbar shark was caught next day",Press clippings,1966.06.22-Hiksdal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.22-Hiksdal.pdf,1966.06.22,1966.06.22 +3568,11-Jun-1966,Provoked,USA,Florida,"Ft. Lauderdale, Broward County",Fishing,Burton Chamberlin,M,18,Hand & forearm bitten by hooked shark PROVOKED INCIDENT,False,1.2 m [4'] hammerhead shark,T. Bailey,1966.06.11-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.11-Chamberlin.pdf,1966.06.11,1966.06.11 +3569,04-Jun-1966,Unprovoked,USA,Texas,Bolivar Peninsula,Swimming,David N. Holmgreen,M,18,Punctures on thigh & buttock,False,a small shark,D. Holmgreen,1966.06.04-Holmgreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.04-Holmgreen.pdf,1966.06.04,1966.06.04 +3570,02-Jun-1966,Provoked,FRENCH POLYNESIA,Society Islands,Tahiti,Fishing,Faarei Tuhei,M,18,Arm lacerated by netted shark PROVOKED INCIDENT,False,a small shark,"H.D. Baldridge (1994), SAF Case #1434",1966.06.02-Tuhei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.06.02-Tuhei.pdf,1966.06.02,1966.06.02 +3571,20-May-1966,Sea Disaster,AUSTRALIA,New South Wales,Jervis Bay,Sinking of the dredge World Atlas,Kor Van Helden,M,40,fatal,True,a small shark," J. Green, p.35",1966.05.20.c-VanHelden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.c-VanHelden.pdf,1966.05.20.c,1966.05.20.c +3572,20-May-1966,Unprovoked,AUSTRALIA,New South Wales, Bellingen,Fishing,Colin Oxenbridge,M,40,Foot bitten,False,1.8 m [6'] shark,"Bellingen Courier-Sun; J. Green, p.35",1966.05.20.b-Oxenbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.b-Oxenbridge.pdf,1966.05.20.b,1966.05.20.b +3573,20-May-1966,Sea Disaster,AUSTRALIA,7 miles offshore on east coast of Australia,7 miles offshore on east coast of Australia,Shipwreck,"Daniel Mangel, seaman",M,38,fatal,True,Believed white shark and other smaller species of sharks involved.,Barker & Ritson,1966.05.20.a-Mangel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.20.a-Mangel.pdf,1966.05.20.a,1966.05.20.a +3574,16-May-1966,Invalid,USA,Florida,"Fernandina Beach, Nassau County",Spearfishing / Scuba diving,Steven Oschosky,M,24,"White shark, 3.7 m [12'] made threat display. No injury, no attack",False,Invalid,"H.D. Baldridge,p.184; SAF Case #1412",1966.05.16.b-Oschoskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.b-Oschoskey.pdf,1966.05.16.b,1966.05.16.b +3575,16-May-1966,Sea Disaster,PHILIPPINES,Off Cebu,Off Cebu,The passenger ship Pioneer Cebu capsized & sank in Typhoon Irma,male,M,24,fatal,True,Invalid,"Maryborough Chronicle (Queensland), Lancashire Evening Post 6/20/1966 ",1966.05.16.a-PioneerCebu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.05.16.a-PioneerCebu.pdf,1966.05.16.a,1966.05.16.a +3576,08-Apr-1966,Unprovoked,USA,Puerto Rico,Puerto Rico,Swimming,John Seaver,M,25,Foot lacerated,False,Invalid,H.D. Baldridge (1994) SAF Case #1483,1966.04.08-NV-Seaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.08-NV-Seaver.pdf,1966.04.08,1966.04.08 +3577,Apr-1966,Sea Disaster,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Overturned skiff,"Occupants: Jack Munro, Quinton Graham & Donald Shadler",M,25,Survived,False,Invalid,SAF Case #1413,1966.04.00-NV-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.04.00-NV-skiff.pdf,1966.04.00,1966.04.00 +3578,20-Mar-1966,Provoked,AUSTRALIA,New South Wales,Maroubra,Fishing (big game),"35' cruiser, Maluka II, occupants: Mr & Mrs E. Potts",,25,"No injury to occupants, hooked shark rammed boat, PROVOKED INCIDENT",False,"Alleged to involve a White shark, 7.6 m [25'] ",P. W. Gilbert; SAF Case #1435,1966.03.20-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.20-Maroubra.pdf,1966.03.20,1966.03.20 +3579,14-Mar-1966,Sea Disaster,SUDAN,Red Sea,Red Sea,"The World Liberty and the tanker Mosli collided. The Halcyon Breeze sent a lifeboat to the rescue, but it was smashed, throwing 6 men in the water.","G. Burns; Befast News-Letter, 3/30/1966",M,25,fatal,True,"Alleged to involve a White shark, 7.6 m [25'] ","G. Burns; Befast News-Letter, 3/30/1966",1966.03.12-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.03.12-RedSea.pdf,1966.03.12,1966.03.12 +3580,27-Feb-1966,Unprovoked,AUSTRALIA,New South Wales,Coledale Beach,Treading water,Raymond Short,M,13,"Left leg & lower right leg bitten, taken ashore with shark still grasping his leg",False,"White shark, 2.5 m [8.25'], an immature female, previously injured","T. B. Gorman & D.J. Dunatan, NSW State Fisheries Laboratories; H.D. Baldridge, p.58; A. Sharpe, pp.77-79; A. MacCormick, p.162",1966.02.27-Short.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.02.27-Short.pdf,1966.02.27,1966.02.27 +3581,29-Jan-1966,Provoked,SOUTH AFRICA,Western Cape Province,Strandfontein Beach,Helping men land a shark,John Campbell,M,33,Left leg lacerated by hooked shark PROVOKED INCIDENT,False,Copper shark,"Daily News, 2/31/1966; J. Penrith & J. D'Aubrey",1966.01.29-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.29-Campbell.pdf,1966.01.29,1966.01.29 +3582,25-Jan-1966,Sea Disaster,INDONESIA,North Sumatra,Near Belawan,wreck of the State Oil Company ship Permina,Sydney Daily Telegraph,,33,fatal,True,Copper shark,Sydney Daily Telegraph,1966.01.25-Permina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.25-Permina.pdf,1966.01.25,1966.01.25 +3583,22-Jan-1966,Unprovoked,USA,California,"Pebble Beach, Cypress Point, Monterey County",Free diving / spearfishing (resting on the surface),Donald Barthman,M,29,"Hand, arm & thigh bitten",False,"White shark, 3 m [10'] ","D. Miller & R. Collier; R. Collier, pp.40-41; H.D. Baldridge, p.76",1966.01.22-Barthman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.22-Barthman_Collier.pdf,1966.01.22,1966.01.22 +3584,15-Jan-1966,Unprovoked,AUSTRALIA,New South Wales,Bellambi,Spearfishing,Cornelius Meyer,M,30,Buttocks bitten,False,"Wobbegong shark, 5' ","The Age, 1/17/1966, p.1",1966.01.15-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.15-Meyer.pdf,1966.01.15,1966.01.15 +3585,14-Jan-1966,Sea Disaster,COLUMBIA,Off Cartagena,Off Cartagena,Colombian (Avianca) DC-4 airliner plunged into the sea 5 minutes after takeoff,"Virgin Islands Daily News, 1/17/1966; SAF Case #1399",,30,fatal,True,Shark involvement not confirmed,"Virgin Islands Daily News, 1/17/1966; SAF Case #1399",1966.01.14-AviancaCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.14-AviancaCrash.pdf,1966.01.14,1966.01.14 +3586,11-Jan-1966,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Riet River,Standing,Robin Michael Long,M,16,Right calf lacerated,False,1.5 m to 1.8 m [5' to 6'] Zambesi shark,"J.L.B. Smith, J. Wallace, M. Levine, GSAF",1966.01.11-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.11-Long.pdf,1966.01.11,1966.01.11 +3587,10-Jan-1966,Unprovoked,AUSTRALIA,Western Australia,Woodman Point,Jumped into the water,Marko Kovacich,M,43,"Lower leg nipped, arm bruised when he landed in boat",False,76 cm [2.5'] carpet shark,"West Australian (Perth), 1/20/1966 ",1966.01.10-Kovacich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.10-Kovacich.pdf,1966.01.10,1966.01.10 +3588,09-Jan-1966,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Body surfing,Dennis Vorster,M,15,Lower legs bitten,False,"1.8 m to 2 m [6' to 6'9""] shark","J. D’Aubrey, M. Levine, GSAF",1966.01.09-Vorster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.09-Vorster.pdf,1966.01.09,1966.01.09 +3589,08-Jan-1966,Unprovoked,NEW ZEALAND,North Island,"Oakura Beach, Taranaki",Body surfing ,Rae Marion Keightley (female),F,15,fatal,True,"1.8 m to 2 m [6' to 6'9""] shark","R.D. Weeks, GSAF; Dr. G. E. Walker",1966.01.08-Knightley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.08-Knightley.pdf,1966.01.08,1966.01.08 +3590,05-Jan-1966,Unprovoked,USA,Florida,"Hollywood, Broward County",Swimming,George A. C. Scherer,M,35,Thigh gashed,False,Hammerhead shark,J. Ulsh,1966.01.05-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.01.05-Scherer.pdf,1966.01.05,1966.01.05 +3591,Summer of 1996,Invalid,USA,California,"Huntington Beach, Orange County",Walking,Jane Derry,F,15,Minor lacerations & abrasions to lower leg. ,False,Shark involvement not confirmed,R. Collier,1966.00.00-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1966.00.00-Derry.pdf,1966.00.00,1966.00.00 +3592,28-Dec-1965,Unprovoked,AUSTRALIA,Western Australia,"Bathurst Reef, Rottnest Island","Spearfishing, but standing in knee-deep water",male,M,40,Thigh & swim fin bitten,False,1.8 m [6'] carpet shark,"Orange Daily (NSW), 12/29/1965; T. Peake, GSAF",1965.12.28-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.28-male.pdf,1965.12.28,1965.12.28 +3593,19-Dec-1965,Unprovoked,JOHNSTON ISLAND,unknown,unknown,Freediving,David Fellows,M,40,No injury,False,Grey reef shark,"H.D. Baldridge (1994), SAF Case #1617",1965.12.19-Fellows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.19-Fellows.pdf,1965.12.19,1965.12.19 +3594,10-Dec-1965,Boat,AUSTRALIA,South Australia,Cape Jervis,Fishing,19' clinker-built craft. Occupants: Ray Peckham & Mr. L.C. Wells,,40,No injury to occupants. Shark gouged planks of boat,False,15' shark,"Adelaide Advertiser, 12/11/1965, SAF Case 1345",1965.12.10-Jervisboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.12.10-Jervisboat.pdf,1965.12.10,1965.12.10 +3595,21-Nov-1965,Provoked,AUSTRALIA,Queensland,Near Brisbane,Fishing from 34' boat when pulled overboard by hooked shark,Gordon Hobrook,M,43,fatal,True,4.6 m [15'] shark,"Evening Press (Dublin, Ireland) 11/22/1965 ",1965.11.21.b-Holbrook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.b-Holbrook.pdf,1965.11.21.b,1965.11.21.b +3596,21-Nov-1965,Unprovoked,PACIFIC OCEAN ,"250 miles southwest of O'ahu, Hawaii",Japanese fishing boat Taihei Maru No.10,"Hauling dead shark aboard, when another shark leapt out of the water & bit him",Takashi Kameya,M,44,"Left forearm bitten, surgically amputated",False,4.6 m [15'] shark,"P. Resos & J. Souza, Pararescue, 76th Air Rescue Squadron, Hickam AFB, Hawaii",1965.11.21.a-Kameya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.21.a-Kameya.pdf,1965.11.21.a,1965.11.21.a +3597,03-Nov-1965,Invalid,PANAMA,Caribbean Sea,Golfo de los Mosquitos,Argentine Air Force C-54,68 people missing (crew & passengers) ,,44,2 life preservers had been bitten by sharks,False,Shark involvement not confirmed,Tropic Survival School ,1965.11.03.b-ArgentineAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.b-ArgentineAircraft.pdf,1965.11.03.b,1965.11.03.b +3598,03-Nov-1965,Unprovoked,AUSTRALIA,Queensland,Oak Beach,Surfing,Roy McGuffie,M,24,Puncture wounds to right thigh,False,"Grey nurse shark, 2.4 m [8'] ","Telegraph (Sydney), Mirror (Sydney), Post (Cairns), 11/4/1965; J. Green, p.35",1965.11.03.a-McGuffie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.11.03.a-McGuffie.pdf,1965.11.03.a,1965.11.03.a +3599,21-Oct-1965,Unprovoked,unknown,Florida Strait,Florida Strait,The boat Caribou II sank,Mario Castellanos,M,39,Survived,False,"Grey nurse shark, 2.4 m [8'] ","Lodi News Sentinel, 10/30/1965",1965.10.21-Castellanos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.21-Castellanos.pdf,1965.10.21,1965.10.21 +3600,16-Oct-1965,Unprovoked,BAHAMAS,New Providence Island,Nassau,Sunbathing on beach when he saw child being attacked by the shark,"Bruce Johnson, rescuer",M,32,Right arm & right leg bitten,False,"1.8 m [6'], 180-lb shark","St. Paul Dispatch, 10/27/1965",1965.10.16.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.b-Johnson.pdf,1965.10.16.b,1965.10.16.b +3601,16-Oct-1965,Unprovoked,BAHAMAS,New Providence Island,Nassau,Playing in the water,young girl,F,32,fatal,True,"1.8 m [6'], 180-lb shark","St. Paul Dispatch, 10/27/1965",1965.10.16.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.16.a-girl.pdf,1965.10.16.a,1965.10.16.a +3602,10-Oct-1965,Unprovoked,NEW BRITAIN,West coast,"Outside the reef off Moputu Village, near Talasea","Spearfishing, shot a turtle",Kaleva,M,15,fatal,True,2 sharks involved,Morning Herald (Sydney) 10/17/1965,1965.10.10-Kaleva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.10-Kaleva.pdf,1965.10.10,1965.10.10 +3603,Oct-1965,Unprovoked,PAPUA NEW GUINEA,New Britain,New Britain,Wading,John Guge,M,27,Toe severed,False,2 sharks involved,H.D. Baldridge (1994) SAF Case #1475,1965.10.00-NV-Guge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.10.00-NV-Guge.pdf,1965.10.00,1965.10.00 +3604,21-Sep-1965,Provoked,PAPUA NEW GUINEA,Madang Province,Sek Harbor,Spearing fish,"Dabek Orou, male",M,27,"Minor injury, speared shark lacerated his kneecap & leg PROVOKED INCIDENT",False,"""small shark""","South Pacific Post, 9/22/2965; SAF Case #1386",1965.09.21-Orou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.21-Orou.pdf,1965.09.21,1965.09.21 +3605,12-Sep-1965,Provoked,PAPUA NEW GUINEA,East Sepik,Moem Village near Wewak,Fishing (rod & line),Ilu,M,27,Leg & hand bitten by shark that had been speared by another fisherman PROVOKED INCIDENT,False,0.9 m [3'] shark,"The Times (London), ",1965.09.12-Ilu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.12-Ilu.pdf,1965.09.12,1965.09.12 +3606,08-Sep-1965,Unprovoked,MEXICO,Veracruz,Playa Villa del Mar,Fishing (rod & line),Miguel Salas Gonzalez,M,23,Leg & arm bitten,False,300-kg [662-lb] shark,F. Piskur; press clipping dated 9/9/1965,1965.09.08-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.09.08-Gonzalez.pdf,1965.09.08,1965.09.08 +3607,30-Aug-1965,Invalid,PHILIPPINES,"Grounded off Scarborough Shoals, 150 miles northwest of Manila in the South China Sea","Grounded off Scarborough Shoals, 150 miles northwest of Manila in the South China Sea","Arsinoe, a French tanker",French seaman,M,23,"One man was lost, but he may have drowned",False,Shark involvement not confirmed,"Manila Daily Bulletin, 9/3/1965; SAF Case #1388",1965.08.30-Arsinoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.30-Arsinoe.pdf,1965.08.30,1965.08.30 +3608,26-Aug-1965,Unprovoked,USA,New Jersey,"Steel Pier, Atlantic City, Atlantic County",Swimming,"James Bloodworth, Jr.",M,15,Right thigh lacerated,False,Shark involvement not confirmed,J. Bloodworth; Philadelphia Inquirer 8/27/1965,1965.08.26-Bloodworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.08.26-Bloodworth.pdf,1965.08.26,1965.08.26 +3609,30-Jul-1964,Provoked,BAHAMAS,Bimini Islands,Lerner Marine Lab,Attempting to anesthetize shark,Karl Kuchnow,M,15,Chest bitten PROVOKED INCIDENT,False,"Lemon shark, 0.5 m","H.D. Baldridge, p. 93",1965.07.30-Kuchnow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.30-Kuchnow.pdf,1965.07.30,1965.07.30 +3610,26-Jul-1965,Unprovoked,MEXICO,Veracruz,Mocambo,Bathing,Hector Serfio Trillio Jimenez,M,25,fatal,True,"Lemon shark, 0.5 m","Latin American Times (New York), 8/3/1965 ",1965.07.26-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.26-Jimenez.pdf,1965.07.26,1965.07.26 +3611,Reported 02-Jul-1965,Boat,BERMUDA,Hamilton,Hamilton,Bathing,"12' boat Sio Ag, occupant: John Riding",,25,"No injury to occupant, shark bit boat",False,"Lemon shark, 0.5 m","Daily Express, 7/2/1965; SAF Case #1375",1965.07.02.R-Riding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.07.02.R-Riding.pdf,1965.07.02.R,1965.07.02.R +3612,19-Jun-1965,Invalid,USA,Florida,"In front of Key Biscayne Beach Club, Key Biscayne",Wading,Eugene Rihl III,M,6,Parallel lacerations on right calf. Thought to be a barracuda bite ,False,Questionable incident,"Miami Herald, 6/20/1965; SAF Case #1372",1965.06.19-Rihl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.19-Rihl.pdf,1965.06.19,1965.06.19 +3613,18-Jun-1965,Invalid,USA,Florida,150 miles southeast of Cape Kennedy,"Diving, retrieving film package from Titan 3C rocket","Sgt James Lacasse & Sgt David Milsten, USAF divers",M,6,"No injury, chased by 4.6 m [15'] oceanic whitetip sharks",False,Invalid,"Evening Standard (London) 6/9/1965; Sunday Express (London), 6/20/1965 ",1965.06.18-TitanRocket.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.18-TitanRocket.pdf,1965.06.18,1965.06.18 +3614,09-Jun-1965,Unprovoked,MEXICO,Veracruz,Mocambo,Swimming,"Father Miguel de Jesus Chavez, a Catholic priest",M,38,"Right forearm severed, right leg bitten and surgically amputated",False,Invalid,J. Carranza (This is apparently a different case than 1965.05.00.a),1965.06.09-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.09-Chavez.pdf,1965.06.09,1965.06.09 +3615,Jun-1965,Unprovoked,PAPUA NEW GUINEA,Near Bougainville (North Solomons),Huhunoti Island,Spearfishing,"Mr. Belle Yang, a school teacher",M,38,Minor injury,False,Invalid,Age (Melbourne) 6/7/1965 ,1965.06.00-NV-Naruchima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-NV-Naruchima.pdf,1965.06.00.b,1965.06.00.b +3616,Jun-1965,Unprovoked,SOUTH PACIFIC OCEAN,unknown,unknown,Treading water,Kikio Naruchima,M,38,fatal,True, ,H.D.Baldridge (1994) SAF Case #1510,1965.06.00-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.06.00-Yang.pdf,1965.06.00,1965.06.00 +3617,29-May-1965,Unprovoked,MEXICO,Veracruz,Playa Mocambo,Swimming,Ignacio Millán,M,38,fatal,True, ,The News (Mexico City) 6/1/1965 ,1965.05.29-Millan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.29-Millan.pdf,1965.05.29,1965.05.29 +3618,28-May-1965,Unprovoked,MEXICO,Veracruz,Playa Mocambo,Swimming,Fidel Garcia Montero,M,38,fatal,True, ,The News (Mexico City) 6/1/1965,1965.05.28-Montero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.28-Montero.pdf,1965.05.28,1965.05.28 +3619,May-Jun-1965,Unprovoked,EGYPT,unknown,unknown,Standing,male,M,38,Leg bitten,False, ,Falconer-Barker,1965.05.00.c-Falconer-Barker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.c-Falconer-Barker.pdf,1965.05.00.c,1965.05.00.c +3620,May 1965,Unprovoked,JAMAICA,unknown,unknown,Diving,Ken Bernard,M,38,Minor injury,False, ,H.D.Baldridge (1994) SAF Case #1498,1965.05.00.b-NV-Bernard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.b-NV-Bernard.pdf,1965.05.00.b,1965.05.00.b +3621,May 1965,Unprovoked,MEXICO,Veracruz,Mocambo,Swimming,"Father Jose de Jesus Gomez, a priest",M,35,"Right arm severed, right leg bitten, not known if he survived",False, ,The News (Mexico City) 6/12/1965,1965.05.00.a-Gomez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.05.00.a-Gomez.pdf,1965.05.00.a,1965.05.00.a +3622,29-Apr-1965,Unprovoked,USA,Florida,"Hobe Sound, Martin County",Swimming,Morris M. Vorenberg,M,49,"Thighs abraded, puncture wounds in dorsal surface of left hand",False,Bull shark,"M. Vorenberg, GSAF",1965.04.29-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.29-Vorenberg.pdf,1965.04.29,1965.04.29 +3623,25-Apr-1965,Invalid,USA,California,"Pacifica, San Mateo County",Surfing,Michael Sammut,M,19,Drowned & his body was not recovered. Sharks seen in area later that day but no shark involvement in surfer's death,False,Invalid,"I. Marais, M. Levine, L. Jones, GSAF",1965.04.25-Sammut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.25-Sammut.pdf,1965.04.25,1965.04.25 +3624,10-Apr-1965,Unprovoked,USA,Florida,American Shoals off Key West,Spearfishing,Dr. J. D. Morgan,M,28,Left hand severely lacerated,False,"White shark, 10' to 12' ","J. D. Morgan, M.D. ",1965.04.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.10-Morgan.pdf,1965.04.10,1965.04.10 +3625,04-Apr-1965,Unprovoked,PALAU,Western Caroline Islands,Koror,Walking on reef,Barry Nakamura,M,8,Right leg bitten,False,"Tiger shark, tooth fragment recovered",P.T. Wilson,1965.04.04.b-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.b-Nakamura.pdf,1965.04.04.b,1965.04.04.b +3626,04-Apr-1965,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Paddling on surfboard,William F. Lachmund,M,17,Left hand punctured & lacerated,False,Blacktip or spinner shark,"M. Vorenberg, GSAF. R. Greer, M.D.",1965.04.04.a-Lachmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.04.04.a-Lachmund.pdf,1965.04.04.a,1965.04.04.a +3627,23-Mar-1965,Invalid,USA,Puerto Rico,60 miles offshore north of San Juan,Aircraft exploded,15 Royal Canadian Airforce crew & 1 passenger,M,17,"All 16 onboard perished, recovery efforts hampered by sharks",False,Shark involvement prior to death was not confirmed,Dr. S.D. Caller; SAF Case #1360,1965.03.23-CanadianAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.23-CanadianAircraft.pdf,1965.03.23,1965.03.23 +3628,14-Mar-1965,Unprovoked,USA,Florida,"Pompano Beach, Palm Beach County",Free diving,Rick MacNeilly,M,16,Survived,False,Mako shark,R. MacNeilly,1965.03.14-MacNeilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.03.14-MacNeilly.pdf,1965.03.14,1965.03.14 +3629,14-Feb-1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amatikulu,Treading water,Geoffrey Walter Black,M,25,"Abdomen, buttock, thigh, arm & hand bitten",False,"1.8 m [6'], 136-kg [300-lb] shark ","G.W. Black, M. Levine, GSAF; T. McHugh, A. Heydorn. J. D'Aubrey & P.H. Jacques; T. Wallett, pp.51-52",1965.02.14-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.14-Black.pdf,1965.02.14,1965.02.14 +3630,04-Feb-1965,Unprovoked,USA,Massachusetts,"Granite Pier, Rockport",Scuba diving,Ronald R. Powell,M,18,Punctures on left thigh,False,1.2 m [4'] shark,"R. Powell; Boston Traveler 2/11/1965; H.D. Baldridge, p.184",1965.02.04-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.02.04-Powell.pdf,1965.02.04,1965.02.04 +3631,25-Jan-1965,Invalid,USA,California,"Newport Beach, Orange County",Motor boat Rebel Belle lost,Jack A. Zittel,M,21,"Puncture marks on chest may have been post mortem, 4 other bodies in area were undamaged",False,Shark involvement prior to death was not confirmed,H.L. Johnson; SAF Case #1353,1965.01.25-RebelBelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.25-RebelBelle.pdf,1965.01.25,1965.01.25 +3632,23-Jan-1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Paddling rescue ski,Ronald Bowers,M,22,"No injury, ski bitten",False,"White shark, 3.7 m [12'] ","D. Davies, J. D'Aubrey & H. Haicker, ORI; M. Levine, GSAF",1965.01.23-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.23-Bowers.pdf,1965.01.23,1965.01.23 +3633,16-Jan-1965,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Body surfing,A.W.F. Patterson,M,20,Right thigh punctured,False,"White shark, 3.7 m [12'] ","D. Davies & J. D'Aubrey, GSAF",1965.01.16-AWFPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.16-AWFPatterson.pdf,1965.01.16,1965.01.16 +3634,10-Jan-1965,Unprovoked,AUSTRALIA,Victoria,"East of Station Pier, Port Melbourne",Swimming,Arthur Wootton,M,20,Thigh gashed,False,1.5 m [5'] shark,The Australian 1/11/1965,1965.01.10-Wootton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.10-Wootton.pdf,1965.01.10,1965.01.10 +3635,09-Jan-1965,Unprovoked,NEW GUINEA,Central Province,Off Gaire Village,Free diving,"Lohia Raho, a male",M,30,fatal,True,4.9 m [16'] whaler,"South Pacific Post (Port Moresby), 1/11/1965",1965.01.09-Raho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.01.09-Raho.pdf,1965.01.09,1965.01.09 +3636,Summer 1965,Unprovoked,USA,Texas,"Port Lavaca, Calhoun County",Dangling feet in the water,Thomas Darilek,M,13,Foot bitten,False,4.9 m [16'] whaler,"Victoria Advocate, 7/11/2011",1965.00.00.g-Darilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.g-Darilek.pdf,1965.00.00.g,1965.00.00.g +3637,1965,Provoked,USA,California,"Dana Point, San Clemente, Orange County",Surfing,Barry Berg,M,Teen,Puncture wounds to foot when he stepped on a shark PROVOKED INCIDENT,False,4.9 m [16'] whaler,"Orange County Register, 1/28/2998",1965.00.00.f-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.f-Berg.pdf,1965.00.00.f,1965.00.00.f +3638,Early 1965,Provoked,USA,Florida,"Between Palm & Salerno Inlets, Martin County",Collecting marine specimens,Frank ---,M,Teen,"No injury, shark tore his wetsuit after he grabbed it by the tail PROVOKED INCIDENT",False,"Nurse shark, 0.94 m to 1.2 m [3' to 4'] ","M. Vorenberg, GSAF",1965.00.00.e-Frank-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.e-Frank-RivieraBeach.pdf,1965.00.00.e,1965.00.00.e +3639,May-Jun-1965,Unprovoked,RED SEA,East of the Gulf of Aqaba,East of the Gulf of Aqaba,Standing in waist-deep water,male,M,Teen,Leg bitten three times,False,Small shark with white-tipped dorsal fin,Captain T. Falcon-Barker,1965.00.00.d-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.d-male.pdf,1965.00.00.d,1965.00.00.d +3640,May-Jun-1965,Unprovoked,EGYPT,South of Hurghada,South of Hurghada,"Spearfishing, but standing in the water",male,M,25 to 35,Ankle and thigh bitten; shark made three strikes,False,"1.5 m to 2.1 m [5' to 7'] shark, possibly a mako shark",Captain T. Falcon-Barker,1965.00.00.c-spearfishing-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.c-spearfishing-male.pdf,1965.00.00.c,1965.00.00.c +3641,1965,Unprovoked,VANUATU,Malampa Province,Island of Paam'a,"Spearfishing, but standing in the water",3 males,M,25 to 35,fatal,True,"1.5 m to 2.1 m [5' to 7'] shark, possibly a mako shark","M. Levine, GSAF",1965.00.00.b-Pamaa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.b-Pamaa.pdf,1965.00.00.b,1965.00.00.b +3642,Ca. 1965,Invalid,SOUTH AFRICA,Eastern Cape Province,Pollock Beach,Bather,"M. Levine, GSAF, Possible confusion in press with Huskisson incident",,25 to 35,No details,False,Questionable incident,"M. Levine, GSAF, Possible confusion in press with Huskisson incident",1965.00.00.a-NV-PollockBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1965.00.00.a-NV-PollockBeach.pdf,1965.00.00.a,1965.00.00.a +3643,25-Dec-1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Swimming,W. A. Strijdom,M,19,"Hand, ankle & calf lacerated",False,Raggedtooth shark ,"Dr. Macrae; J. D'Aubrey, M. Levine, GSAF",1964.12.25-Strijdom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.25-Strijdom.pdf,1964.12.25,1964.12.25 +3644,10-Dec-1964,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),Buka Island,Swimming,male,M,19,Thigh severely lacerated,False,Raggedtooth shark ,H.D.Baldridge (1994) SAF Case #1558,1964.12.10.b-NV-Buja.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.b-NV-Buja.pdf,1964.12.10.b,1964.12.10.b +3645,10-Dec-1964,Boat,AUSTRALIA,New South Wales,Port Jervis,Fishing,"19' boat, occupants: Ray Peckham, L.C. Wells",,19,"No injury to occupants, shark rammed boat, bit planks & sheared off copper rivet at stern of boat",False,4.6 m [15'] shark,"Adelaide Advertiser, 12/11/1965",1964.12.10.a-NV-Boat-Peckham-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.10.a-NV-Boat-Peckham-Wells.pdf,1964.12.10.a,1964.12.10.a +3646,09-Dec-1964,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Off Sing Village, Buka Island","Canoe swamped, swimming back to canoe","Soso, a male",M,28,Survived,False,2.1 m [7'] shark,"South Pacific Post (Port Moresby), 12/16/1964",1964.12.09-Soso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.09-Soso.pdf,1964.12.09,1964.12.09 +3647,06-Dec-1964,Unprovoked,KENYA,Coast Province,"Kilindini Harbor, Mombasa",Fishing with hand line tied to wrist & was pulled into the water,Musa Mohammed,M,10,fatal,True,2.1 m [7'] shark,"Star, 12/7/1964",1964.12.06-Mohammed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.12.06-Mohammed.pdf,1964.12.06,1964.12.06 +3648,29-Nov-1964,Unprovoked,AUSTRALIA,Victoria ,Lady Julia Percy Island,Free diving with seals,Henri Bource,M,25,Left leg severed,False,"White shark, 2.4 m [8'] ","A. Sharpe, pp.115-116; H. Edwards, pp.67-71; J. Green, p.35; A. MacCormick, pp.88-91; J. West, ASAF",1964.11.29-Bource.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.29-Bource.pdf,1964.11.29,1964.11.29 +3649,18-Nov-1964,Unprovoked,AUSTRALIA,Queensland,"Fingal Beach, near Tweed Heads",Swimming out to rescue swimmers in difficulty,Glenthorne Prior,M,29,fatal,True,"White shark, 2.4 m [8'] ","Daily Mirror (Sydney), 11/19/1964",1964.11.18-Prior.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.18-Prior.pdf,1964.11.18,1964.11.18 +3650,13-Nov-1964,Provoked,AUSTRALIA,New South Wales,"North Solitary Island, 8 miles from Wolli","Filming underwater, carrying powerhead",Jon Harding,M,25,"Shark made threat display, then diver hit it with powerhead PROVOKED INCIDENT",False,"White shark, 2.7 m [9'1""], 750-lb ","H.D. Baldridge, p.57",1964.11.13-Harding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.13-Harding.pdf,1964.11.13,1964.11.13 +3651,05-Nov-1964,Boat,USA,Puerto Rico,Puerto Rico,Longline fishing,"18 hp Boston Whaler boat, occupant: G. W. Bane, Jr.",,25,"No injury to occupant, shark bit propeller of outboard motor",False,Mako shark,"G. W. Bane, Jr.",1964.11.05-NV-BostonWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.11.05-NV-BostonWhaler.pdf,1964.11.05,1964.11.05 +3652,31-Oct-1964,Provoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Surf fishing,Robin Clausen,M,25,Right leg bitten while attempting to gaff hooked shark PROVOKED INCIDENT,False,Mako shark,"M. Levine, GSAF",1964.10.31-Clausen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.31-Clausen.pdf,1964.10.31,1964.10.31 +3653,25-Oct-1964,Invalid,USA,Florida,"Near US Air Force Base at Elgin, Okaloosa County",Boat Miss Becky sank 12 miles from shore,"James C. Beason & Calvin E. Smith, Jr. spent 16 hours in life raft",,25,"No injury to occupants, drove sharks away with paddles",False,Invalid,"Miami News, 10/26/1964; SAF Case #1338",1964.10.25-MissBecky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.25-MissBecky.pdf,1964.10.25,1964.10.25 +3654,04-Oct-1964,Unprovoked,AUSTRALIA,Western Australia,"Avalon Beach, near Mandurah, 50 miles south of Perth","Surfing, but swimming to his board",Murray Henderson,M,19,Abrasions & 11 teethmarks on right lower leg,False,"Grey nurse shark, 1.8 m [6']",The Australian 10/5/1964,1964.10.04-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.10.04-Henderson.pdf,1964.10.04,1964.10.04 +3655,20-Sep-1964,Unprovoked,TAIWAN,Northern Taiwan,"Tamsui Beach, Taipai",Swimming,Ko Tien-fu,M,32,fatal,True,"Grey nurse shark, 1.8 m [6']","China Post (Taipai, Taiwan) 9/22/1964",1964.09.20-Tien-fu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.20-Tien-fu.pdf,1964.09.20,1964.09.20 +3656,07-Sep-1964,Unprovoked,TAIWAN,Northern Taiwan,Tamsui Beach,Swimming,LO Chiu-yang,M,20,Right thigh & elbow bitten,False,1.8 m [6'] shark,"China Post (Taipei, Taiwan) 9/22/1964; J. Wong",1964.09.07-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.09.07-Yang.pdf,1964.09.07,1964.09.07 +3657,26-Aug-1964,Unprovoked,USA,Florida,"Hollywood Beach, Broward County",Swimming,Marc Tayman,M,14,Bruised & abraded ankle,False,1.8 m [6'] shark,M. Tayman,1964.08.26-Tayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.26-Tayman.pdf,1964.08.26,1964.08.26 +3658,23-Aug-1964,Unprovoked,MEXICO,Guerrero,Acapulco,Floating on his back in an inner tube,Thad T. Moore,M,19,Right thigh bitten,False,1.8 to 2.4 m [6' to 8'] shark,T.T. Moore,1964.08.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.23-Moore.pdf,1964.08.23,1964.08.23 +3659,22-Aug-1964,Invalid,USA,Florida,5 miles south of Palm Beach,Spearfishing / free diving,Kenny Ruszenas,M,18,3 m to 3.7 m [10' to 12'] great hammerhead shark shark only made a threat display. No injury,False,Invalid,"M. Vorenberg, GSAF",1964.08.22-Ruszenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.22-Ruszenas.pdf,1964.08.22,1964.08.22 +3660,21-Aug-1964,Unprovoked,USA,Florida,"Panama City, Bay County",Swimming,Ron Kopenski,M,18,"No injury, bumped repeatedly",False,3' shark,W.H. Tobert,1964.08.21-Kopenski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.21-Kopenski.pdf,1964.08.21,1964.08.21 +3661,08-Aug-1964,Unprovoked,USA,Florida,"2 miles off Jupiter, Palm Beach County",Spearfishing using scuba,James R. Webb,M,28,"No injury, shark hit scuba tank",False,Hammerhead shark,"H.D. Baldridge, p.183",1964.08.08-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.08-Webb.pdf,1964.08.08,1964.08.08 +3662,03-Aug-1964,Unprovoked,JAPAN,Okayama Prefecture,Saidaiji,Swimming,Yoshio Ukita,M,12,"Leg bitten, surgically amputated",False,Hammerhead shark,K. Nakaya,1964.08.03-Ukita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.03-Ukita.pdf,1964.08.03,1964.08.03 +3663,Aug-1964,Unprovoked,PANAMA,San Blas,Off Achutuppu Island near Ailigandi,Free diving / Spearfishingat edge of reef,male,M,21,Foot lacerated,False,Less than 1.2 m [4'],H. Loftin,1964.08.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.08.00-Achtupu.pdf,1964.08.00,1964.08.00 +3664,27-Jul-1964,Provoked,USA,Puerto Rico,Puerto Rico,Free diving / Spearfishingat edge of reef,Manuel Alvelo,M,22,Arm lacerated by speared shark PROVOKED INCIDENT,False,Nurse shark,H.D.Baldridge (1994) SAF Case #1547,1964.07.27-NV-Alvelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.27-NV-Alvelo.pdf,1964.07.27,1964.07.27 +3665,16-Jul-1964,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Island Rock,Searching for remains of Dr. Marais,Len Jones,M,30,"No injury, shark charged & impaled itself on spear",False,Zambesi shark,"L. Jones, M. Levine,GSAF",1964.07.16-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.16-Jones.pdf,1964.07.16,1964.07.16 +3666,15-Jul-1964,Invalid,USA,Connecticut,"3 days out of Old Saybrook, Connecticut, 37.04'N, 67.57'W, Southern fringe of Gulf Stream","Yacht Gooney Bird foundered, 4 survivors on raft",SAF Case #1313,,30,"No injury, no attack; sharks ate their food tied to a line over the side of the raft",False,Invalid,SAF Case #1313,1964.07.15-GooneyBird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.15-GooneyBird.pdf,1964.07.15,1964.07.15 +3667,10-Jul-1964,Invalid,SOUTH AFRICA,KwaZulu-Natal,Island Rock,Spearfishing ,Dr. J. J. Marais,M,52,fatal,True,Invalid,"I. Marais, M. Levine, L. Jones, GSAF",1964.07.10-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.10-Marais.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.10-Marais.pdf,1964.07.10,1964.07.10 +3668,08-Jul-1964,Provoked,USA,Florida,"Palm Beach, Palm Beach County",Tagging sharks,18' boat of Morris Vorenberg,M,52,"No injury to occupant, hooked shark rammed & bit boat PROVOKED INCIDENT",False,white shark,"M. Vorenberg, GSAF",1964.07.08-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08-Vorenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.08-Vorenberg.pdf,1964.07.08,1964.07.08 +3669,Jul-1964,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,A reef off New Hanover (Northern end),Standing / fishing,"Kambagil, male",M,52,fatal,True,white shark,"Times Courier (Lae, PNG) 7/29/1964 ",1964.07.00.b-Kambagil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.b-Kambagil.pdf,1964.07.00.b,1964.07.00.b +3670,Jul-1964,Boat,PAPUA NEW GUINEA,New Ireland Province,Southern end,canoeing,occupant: child,,52,"No injury to occupant, canoe struck several times by shark ",False,white shark,"Times Courier (Lae, PNG) 7/29/1964",1964.07.00.a-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.07.00.a-child.pdf,1964.07.00.a,1964.07.00.a +3671,29-Jun-1964,Sea Disaster,BERMUDA,Hamilton,2 miles south of Castle Island Harbour entrance to Hamilton,Conducting a promotional film project for the Gemini space program (a practice astronaut recovery),2 USAF 4-engine planes (an HC-54 & a HC-97) each with 12 onboard collided in mid-air at low altitude and plunged into the Atlantic Ocean,,52,fatal,True,white shark,"Washington Post, 6/30/1964; SAF Case #1295",1964.06.29-Air-Collision.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.29-Air-Collision.pdf,1964.06.29.a,1964.06.29.a +3672,28-Jun-1964,Invalid,USA,New York,Long Island,Attempting to swim across the Atlantic Ocean,Britt Sullivan,F,29,"Disappeared, probable drowning but sharks in area led to speculation that she was taken by a shark",False,Shark involvement prior to death was not confirmed,"Oakland Tribune, 6/29/1964",1964.06.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.28-Sullivan.pdf,1964.06.28,1964.06.28 +3673,24-Jun-1964,Boat,USA,California,"Long Beach, Los Angeles County",Fishing,"boat, occupant: Harvey Birch",,29,"No injury to occupants, shark crashed through windshield of boat",False,2.1 m [7'] shark,"Valley News (Gardena), 6/28/1964 ",1964.06.24-BirchBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.24-BirchBoat.pdf,1964.06.24,1964.06.24 +3674,17-Jun-1964,Boat,PAPUA NEW GUINEA,New Britain,Near Rabaul,Fishing,"canoe, occupant: Herman Taman",M,29,"No injury to occupant, shark lifted canoe's outrigger",False,2.4 m [8'] shark,SAF Case #1300,1964.06.17-TamanCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.17-TamanCanoe.pdf,1964.06.17,1964.06.17 +3675,23-Jun-1964,Unprovoked,FIJI,Lau Group,"Tovu, Totoya Island",Spearfishing,Isireli Mara,M,23,Buttocks bitten,False,2.4 m [8'] shark,"Fiji Times, 6/26/1963 ",1964.06.23-IsireliMara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.23-IsireliMara.pdf,1964.06.23,1964.06.23 +3676,02-Jun-1964,Invalid,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Swimming,Dawood Pili,M,40,"Skeletonized, except for head & feet. Possibly a drowning / scavenging",False,Shark involvement prior to death was not confirmed,D. Davies,1964.06.02-Pili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.06.02-Pili.pdf,1964.06.02,1964.06.02 +3677,30-May-1964,Unprovoked,PANAMA,Caribbean Coast,Caribbean Coast,Standing,W.W. Fitzsimmons,M,47,No injury,False,Lemon shark ,"H.D. Baldridge, SAF Case #1496",1964.05.30-NV-Fitzsimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.30-NV-Fitzsimmons.pdf,1964.05.30,1964.05.30 +3678,08-May-1964,Unprovoked,FIJI,Vita Levu,Naviti,Spearfishing,Sailasa Ratubalavu,M,35,fatal,True,Tiger shark,"H.D. Baldridge, p.196; Clark, p.87",1964.05.08-Ratubalavu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.08-Ratubalavu.pdf,1964.05.08,1964.05.08 +3679,May 1964,Unprovoked,PANAMA,San Blas Islands,"Achutupu, a small island ner Ailigandi",Skin diving,male,M,13,fatal,True,1.8 m [6'] shark,H. Loftin,1964.05.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.05.00-Achtupu.pdf,1964.05.00,1964.05.00 +3680,07-Apr-1964,Unprovoked,PAPUA NEW GUINEA,Madang Province,Inshore side of reef near Madang,Fishing,Simon Kilaleg,M,13,fatal,True,1.8 m [6'] shark,"Daily News (Perth), 4/8/1964",1964.04.07-Kialeg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.04.07-Kialeg.pdf,1964.04.07,1964.04.07 +3681,28-Mar-1964,Unprovoked,AUSTRALIA,South Australia,Surfers Paradise Beach near Victor Harbour,Surfing,Allan Spry,M,19,Left thigh lacerated,False,1.8 m [6'] shark,"Advertiser (Adelaide) and Telegraph (Sydney), 3/30/1964 ",1964.03.28.b-Spry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.b-Spry.pdf,1964.03.28.b,1964.03.28.b +3682,28-Mar-1964,Sea Disaster,PAPUA NEW GUINEA,Central Province,30 miles from Port Moresby,"Canoe capsized with 10 occupants, 8 survived, Hamilton swam off to seek help",Donald Hamilton,M,32,fatal,True,1.8 m [6'] shark,"Daily Mirror (Sydney), 3/311964; SAF Case 1333",1964.03.28.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.28.a-Hamilton.pdf,1964.03.28.a,1964.03.28.a +3683,05-Mar-1964,Unprovoked,USA,Florida,"Fort Lauderdale, Broward County",Skin diving ,James R. Duryea,M,38,"Minor injury, abdomen abraded when he collided with the shark",False,1.7 m [5.5'] shark,"Sun Sentinel, 3/6/1964 ",1964.03.05-Duryea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.05-Duryea.pdf,1964.03.05,1964.03.05 +3684,Mar-1964,Unprovoked,SENEGAL,Cap Vert Peninsula,"Bel Air, Dakar",Free diving for shell,O.D.,M,38,Thigh & hand bitten,False,3 m shark,O.D.,1964.03.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.03.00-Senegal.pdf,1964.03.00,1964.03.00 +3685,Reported 17-Feb-1964,Provoked,FIJI,Savuli Reef,Savuli Reef,Fishing,"boat, occupant: R. Southey of Lautoka",,38,Hooked shark bit boat PROVOKED INCIDENT,False,"Tiger shark, 3.5 m, 250-lb female","Fiji Times, 2/17/1964",1964.02.17.R-Fiji-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.17.R-Fiji-boat.pdf,1964.02.17.R,1964.02.17.R +3686,14-Feb-1964,Unprovoked,NEW CALEDONIA,unknown,unknown,Diving for trochus shell,Bernard Taye,M,15,fatal,True,"Tiger shark, 3.5 m, 250-lb female","Sydney Daily Telegraph, 2/15/1964 ",1964.02.14.b-Taye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.b-Taye.pdf,1964.02.14.b,1964.02.14.b +3687,14-Feb-1964,Unprovoked,FIJI,Vanua Levu,"Nailou Village, Tunuloa Natewa Bay",Spearfishing,Ivo Berabi,M,17,fatal,True,"Tiger shark, 3.5 m, 250-lb female",Fiji Times; L. Schultz,1964.02.14.a-Berabi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.14.a-Berabi.pdf,1964.02.14.a,1964.02.14.a +3688,11-Feb-1964,Unprovoked,NEW ZEALAND,North Island,"Palliser Bay, Whatarangi (east of Wellington)",preparing to go skin diving,male,M,17,Hand lacerated,False,"Tiger shark, 3.5 m, 250-lb female","R.D.Weeks, GSAF; Otago Daily Times, 2/13/1964, p.5",1964.02.11-male-Palliser Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.11-male-Palliser Bay.pdf,1964.02.11,1964.02.11 +3689,10-Feb-1964,Unprovoked,NEW ZEALAND,North Island,"West of Pukerua Bay, Wellington",Spearfishing,Dr. Ken R. Markham,M,26,"No injury to diver, shark bit speargun",False,"White shark, 3 m [10'] ","R.D. Weeks, GSAF; Otago Daily Times, 2/11/1964, p1; Wellington Evening Post, 2/17/1960",1964.02.10-Markham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.10-Markham.pdf,1964.02.10,1964.02.10 +3690,08-Feb-1954,Unprovoked,SOUTH AFRICA,Western Cape Province,Muizenberg,Body boarding,Alan Saffery,M,25,Right ankle lacerated,False,"White shark, 1.5 m [5'] k","D. Davies; M. Levine, GSAF",1964.02.08-Saffery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.08-Saffery.pdf,1964.02.08,1964.02.08 +3691,05-Feb-1964,Unprovoked,NEW ZEALAND,North Island,"Hokio Beach, near Levin",Lying in 2 feet of water,male,M,25,Right leg & shoulder lacerated,False,"""sand shark""","R.D. Weeks, GSAF",1964.02.05.b-Hokio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.b-Hokio.pdf,1964.02.05.b,1964.02.05.b +3692,05-Feb-1964,Unprovoked,NEW ZEALAND,South Island,"St. Clair Beach, Dunedin",Swimming,Leslie Francis Jordan,M,19,fatal,True,"White shark, 3 m to 3.7 m [10' to 12'] ","R.D. Weeks, GSAF; Otago Daily Times, 2/6/1964 & 2/7/1964",1964.02.05.a-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.05.a-Jordan.pdf,1964.02.05.a,1964.02.05.a +3693,02-Feb-1964,Invalid,AUSTRALIA,Queensland,Brisbane,Swimming,Neil Buckley,M,23,Body not recovered / May have drowned prior to shark involvement,False,Shark involvement prior to death was not confirmed,H.D.Baldridge (1994) SAF Case #1336,1964.02.02-NV-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.02-NV-Buckley.pdf,1964.02.02,1964.02.02 +3694,01-Feb-1964,Boat,NEW ZEALAND,South Island,"Ngatuka Bay, near Picton",Rowing,"dinghy, occupants: T. Shipston, T. Whitta, L Cox, T. Jones, R. Genet & W. Pearce",,23,"No injury to occupants , shark nudged oars",False,1.8 m [6'] shark,"New Zealand Herald, 2/2/1964; SAF Case #1335",1964.02.01-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.01-Dinghy.pdf,1964.02.01,1964.02.01 +3695,Feb-1964,Unprovoked,USA,Florida,Palm Beach County,Floating,Noel Feustel,M,12,No injury,False,Hammerhead shark,"H.D.Baldridge, SAF Case #1487",1964.02.00.b-NV-Feustel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.b-NV-Feustel.pdf,1964.02.00.b,1964.02.00.b +3696,Feb-1964,Unprovoked,COSTA RICA,Puntarenas Province,Puntarenas,Swimming,male,M,12,fatal,True,Hammerhead shark,"E. Vargas, M.D.",1964.02.00.a-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.02.00.a-CostaRica.pdf,1964.02.00.a,1964.02.00.a +3697,27-Jan-1964,Unprovoked,FIJI,70 miles from Suva,70 miles from Suva,Spearfishing,Dr. George Lapin,,12,fatal,True,Hammerhead shark,"Long Beach Independent, 1/281964 ",1964.01.27-Lapin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.27-Lapin.pdf,1964.01.27,1964.01.27 +3698,23-Jan-1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Body surfing,John Carlson,M,39,Heel & ankle bitten,False,Hammerhead shark,"D. Davies, Daily Dispatch (East London), 1/24/1964 M. Levine, GSAF",1964.01.23-Carlson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.23-Carlson.pdf,1964.01.23,1964.01.23 +3699,22-Jan-1964,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Standing,Gerald Holder,M,17,Heel bitten,False,Hammerhead shark,"D. Davies; Daily Dispatch (East London), 1/23/1964, M. Levine, GSAF",1964.01.22-Holder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.22-Holder.pdf,1964.01.22,1964.01.22 +3700,21-Jan-1964,Boat,SOUTH AFRICA,Western Cape Province,20 m from shore at Strand,Shark watching,"Motor boat, occupants: Quintus Du Toit, J.H. van Heerden & J.P. Marais",,17,"No injury to occupants, shark holed boat",False,"White shark, 3.6 m [11'9""] ",GSAF,1964.01.21-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.21-boat.pdf,1964.01.21,1964.01.21 +3701,18-Jan-1964,Unprovoked,AUSTRALIA,Western Australia,Hamelin Bay,Freediving,Frank Hastie,M,17,Arm lacerated,False,Wobbegong,"G.P. Whitley, citing Sydney Morning Herald, 1/21/1964",1964.01.18-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.18-Hastie.pdf,1964.01.18,1964.01.18 +3702,11-Jan-1964,Unprovoked,USA,California,Southeast Farallon Island,Spearfishing / Scuba diving (at surface),Jack Rochette,M,21,Leg & thigh bitten,False,White shark (tooth fragment recovered),"R. Collier, p.261-264; D. Miller & R. Collier; R. Collier, pp.26-40",1964.01.11-Rochette_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.11-Rochette_Collier.pdf,1964.01.11,1964.01.11 +3703,Reported 06-Jan-1964,Unprovoked,PAPUA NEW GUINEA,New Britain,New Britain,Fishing,male,M,21,fatal,True,Tiger shark,"Oldham Evening Chronicle, 1/6/1964",1964.01.06.R-NewBritain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.06.R-NewBritain.pdf,1964.01.06.R,1964.01.06.R +3704,04-Jan-1964,Unprovoked,FIJI,"Lomaloma, Lau",Tuvuca Isalnd,Swimming,Tale Meve (female),F,20,Deep lacerations to her right thigh,False,Tiger shark,SAF Case #1250,1964.01.04-Meve.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.04-Meve.pdf,1964.01.04,1964.01.04 +3705,01-Jan-1964,Unprovoked,AUSTRALIA,Western Australia,Metro coast,Swimming,Edwards,,20,UNKNOWN,UNKNOWN,Tiger shark,"T. Peake, GSAF",1964.01.01.b-NV-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-NV-Edwards.pdf,1964.01.01.b,1964.01.01.b +3706,01-Jan-1964,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Diving for sinkers,Jakobus Christiaan Steyn,M,20,Lacerations and puncture wounds in right arm ,False,2.1 m to 2.4 m [7' to 8'] shark,"The Argus, 1/3/1964",1964.01.01.b-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.01.b-Edwards.pdf,1964.01.01.a,1964.01.01.a +3707,Jan-1964,Invalid,NEW ZEALAND,North Island,White Island,Snorkeling,J.H. Seddon,M,20,No injury,False,Invalid,"H.D.Baldridge (1994) ISAF Case #1484, Note: Unable to verify in local records.",1964.01.00-NV-Sneddon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1964.01.00-NV-Sneddon.pdf,1964.01.00,1964.01.00 +3708,29-Dec-1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Catfish Rock, between Salt Rock & Shaka’s Rock",Standing,Barbara Elsa Strauss,F,20,"Right hand & foot severed, thigh & buttock lacerated",False,"Zambesi shark, 1.8 m [6'] ","B. Strauss, D. Davies, 121-122; Daily Dispatch, 4/24/1964; M. Levine, GSAF",1963.12.29-Strauss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.29-Strauss.pdf,1963.12.29,1963.12.29 +3709,26-Dec-1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga Rocks,Swimming ,Ronnie De Wet,M,24,"Lower leg bitten & foot severed, leg surgically amputated below knee",False,1.8 m [6'] shark,"D. Davies, pp.120-121; M. Levine, GSAF",1963.12.26.b-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.b-deWet.pdf,1963.12.26.b,1963.12.26.b +3710,26-Dec-1963,Unprovoked,AUSTRALIA,Queensland,"Figtree Ledge, Hervey Bay",Sitting on gunwale of boat,Mr. N. Warry,M,24,"No injury, shark's tail struck his armpit",False,"4.3 m [14'], 1000-lb shark","Maryborough Chronicle (Qld), 12/28/1963",1963.12.26.a-Warry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.26.a-Warry.pdf,1963.12.26.a,1963.12.26.a +3711,25-Dec-1963,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Gonubie River Mouth,Swimming,Chester Wienand,M,18,fatal,True,"4.3 m [14'], 1000-lb shark","G.V. Wienand, M. Levine, GSAF",1963.12.25-Wienand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.25-Wienand.pdf,1963.12.25,1963.12.25 +3712,22-Dec-1963,Invalid,ATLANTIC OCEAN,Between Southampton & Canary Islands,Between Southampton & Canary Islands,"Greek steamship Lakonia caught fire, 98 of her 646 passengers, and 30 of her crew of 376 perished",woman,F,18,"One woman reported to have suffered fish bites, but cause of her death was exposure & drowning""",False,Invalid,Bath Coronor report NLSC 20/64; SAF Case #1324,1963.12.22.b-Lakonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.b-Lakonia.pdf,1963.12.22.b,1963.12.22.b +3713,22-Dec-1963,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Next to West Street groyne, Durban",Helping friend land hooked shark,Desmond Woodhams,M,13,Foot lacerated PROVOKED INCIDENT,False,"Dusky shark, 1 m ","M. Levine, GSAF",1963.12.22.a-Woodhams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.22.a-Woodhams.pdf,1963.12.22.a,1963.12.22.a +3714,21-Dec-1963,Provoked,AUSTRALIA,New South Wales,"Woolgoolga, Coffs Harbour",Fishing,Leslie Cook,M,13,7 puncture wounds in right forearm from hooked shark PROVOKED INCIDENT,False,"Wobbegong shark, 3' ","Daily Examiner (Grafton, NSW), 12/23/1963; J. Green, p.30",1963.12.21-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.21-Cook.pdf,1963.12.21,1963.12.21 +3715,20-Dec-1963,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Spearfishing,Cornelius G. Coetzee,M,13,Foot lacerated,False,"White shark, 1.7 m [5.5']","D. Davies; M. Levine, GSAF",1963.12.20.b-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.b-Coetzee.pdf,1963.12.20.b,1963.12.20.b +3716,20-Dec-1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umvoti,Splashing in surf,Matangusa Mzize,M,15,fatal,True,300- to 400-lb Zambesi shark,"G.D. Campbell; D. Davies, pp.119-120",1963.12.20.a-Mzize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.20.a-Mzize.pdf,1963.12.20.a,1963.12.20.a +3717,08-Dec-1963,Unprovoked,AUSTRALIA,South Australia,55 miles south of Adelaide,Spearfishing,Rodney Fox,M,23,Torso & hand lacerated,False,White shark,"H. Edwards, pp.65-66: H.D. Baldridge, pp.18-19; J. West;",1963.12.08-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.08-Fox.pdf,1963.12.08,1963.12.08 +3718,04-Dec-1963,Unprovoked,NEW BRITAIN,"South Coast, East New Britain",Pomio,Spearfishing,Patape,M,22,fatal,True,Tiger shark,"Times Courier (Lae, PNG), 12/4/1963; Oldham Evening Chronicle 1/6/1964",1963.12.04.R-Patape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.12.04.R-Patape.pdf,1963.12.04.R,1963.12.04.R +3719,30-Nov-1963 ,Unprovoked,NEW ZEALAND,South Island,"Charteris Bay, Lyttleton Harbour",Treading water while alongside capsized yacht,Charlie Dudley,M,20,Hand & lower leg severely injured,False,Possibly a broadnose 7-gill shark,"C. Dudley, R.D. Weeks, GSAF; H.D. Baldridge, SAF Case #1467; Otago Daily Times, 12/2/1963, p.7",1963.11.30.b-Dudley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.b-Dudley.pdf,1963.11.30.b,1963.11.30.b +3720,30-Nov-1963,Provoked,PAPUA NEW GUINEA,Gulf Province,"Kukipi, 150 miles west of Port Moresby in the Lakekamu River area",Fishing / standing in waist deep water,"Siara Ikui, female",F,18,Left arm lacerated PROVOKED INCIDENT,False,Tiger shark,"M. Malin; The Sun (Melbourne), 12/2/1963",1963.11.30.a-Siara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.30.a-Siara.pdf,1963.11.30.a,1963.11.30.a +3721,28-Nov-1963,Unprovoked,FIJI, Lau Province,"Dravuwalu, Totoya Island",Fishing,"Mereseini Wati, female",F,21,Elbow bitten,False,>1.2 m [4'] tiger shark,Capt. S. B. Brown,1963.11.28-Wati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.28-Wati.pdf,1963.11.28,1963.11.28 +3722,25-Nov-1963,Unprovoked,FIJI,Vita Levu,Rewa River,Spearing fish,Sumia Qio,M,25,Ankle & foot bitten,False,>1.2 m [4'] tiger shark,GSAF,1963.11.25-Sumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.25-Sumia.pdf,1963.11.25,1963.11.25 +3723,Reported 16-Nov-1963,Unprovoked,ITALY,Sicily,Off Mondello Lighthouse,Spearfishing,Dr. Salito,M,28,No injury,False,>1.2 m [4'] tiger shark,"C. Moore, GSAF",1963.11.16.R-Salito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.16.R-Salito.pdf,1963.11.16.R,1963.11.16.R +3724,14-Nov-1963,Provoked,AUSTRALIA,Queensland,Mermaid Beach,Catching sharks under government contract,"boat Nora, occupant Bruce Harris",M,28,"No injury to occupant, netted shark rammed & bit boat PROVOKED INCIDENT",False,"White shark, 15'2"" ","Miner (WA) & Warwick Daily News (Qld), 11/15/1963 ",1963.11.14-Nora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.14-Nora.pdf,1963.11.14,1963.11.14 +3725,12-Nov-1963,Provoked,USA,Florida,"8 miles south of Elliot Key, Miami-Dade County",Testing anti-shark cage,"D. R. Nelson, J. Greenberg & S.H. Gruber",M,28,No injury PROVOKED INCIDENT,False,"Silky shark, 1.9 m [6.5']",D.R. Nelson,1963.11.12-DonNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.12-DonNelson.pdf,1963.11.12,1963.11.12 +3726,Reported 05-Nov-1963,Unprovoked,PAPUA NEW GUINEA,New Britain,New Britain,Wading,Tule,M,28,Thigh lacerated ,False,6' shark,H.D. Baldridge (1994) SAF Case #1478,1963.11.05.R-Tule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.05.R-Tule.pdf,1963.11.05.R,1963.11.05.R +3727,04-Nov-1963,Unprovoked,PALAU,Western Caroline Islands,Koror,Fishing,Saburo Dooley,M,35,Left calf lacerated,False,Dooley believed his Injury was caused by stingray (Dasyatidae family),"R. Yalap, M.D.; H.D. Baldridge, p..104 ",1963.11.04-Dooley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.11.04-Dooley.pdf,1963.11.04,1963.11.04 +3728,16-Oct-1963,Unprovoked,USA,Florida,"Biltmore Beach, near Panama City","Surf fishing, wading ",William Cheatham,M,28,"Right thigh & foot bruised, right calf lacerated",False,500-lb shark,"H.D. Baldridge, p.109",1963.10.16-Cheatham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.16-Cheatham.pdf,1963.10.16,1963.10.16 +3729,15-Oct-1963,Provoked,NORTH PACIFIC OCEAN,unknown,unknown,Fishing for sharks,"Eichi Nakata, of the the crew of the trawler Kayo Maru",M,20,"Right hand lacerated, PROVOKED INCIDENT",False,500-lb shark,"J.L. Holland; The Honolulu Advertiser, 10/19/1963; SAF Cse #1209",1963.10.15-Nakata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.10.15-Nakata.pdf,1963.10.15,1963.10.15 +3730,29-Sep-1963,Unprovoked,CHILE,"El Panul, 12km south of Coquimbo","El Panul, 12km south of Coquimbo",Spearfishing / free diving,Crisolog Urizar,M,20,fatal,True,"White shark, 4 m [13'] rk",J. McCosker & A.C. Engana,1963.09.29-Urizar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.29-Urizar.pdf,1963.09.29,1963.09.29 +3731,26-Sep-1963,Invalid,USA,Florida,100 miles offshore,"Commercial fishing vessel, Ev-nn, struck object & sank. Ken Crosby and Jame & Ann Dumas adrift on makeshift raft.","After 2 days, Ann Dumas, 7,5 months pregnant, died of exposure & exhaution& her body was lashed to raft.",,25,Numerous dusky sharks & a 3 m to 4.6 m [10' to 15'] tiger sharks tried to overturn raft and one took Mrs. Dumas' body; scavenging by shark/s,False,Invalid,"Washington Post, 9/27/1963; SAF Case #1221",1963.09.26-Dumas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.26-Dumas.pdf,1963.09.26,1963.09.26 +3732,22-Sep-1963,Unprovoked,SOLOMON ISLANDS,Ysabel Island,Susukana Plantation,Spearing fish,Dovi,M,30,fatal,True,5.5 m [18'] shark,"M.L. Aylett, Fisheries Officer; H.D. Baldridge, p.148 ",1963.09.22-Dovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.22-Dovi.pdf,1963.09.22,1963.09.22 +3733,13-Sep-1963,Provoked,AUSTRALIA,New South Wales,Wanda Beach,Surfing,Peter Barron,M,18,"A ""dead"" shark grabbed by the tail bit his right torso PROVOKED INCIDENT",False,1.5 m [5'] shark,"P. Barron; Goulburn Evening Post; J. Green, p.35",1963.09.13-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.13-Barron.pdf,1963.09.13,1963.09.13 +3734,10-Sep-1963,Provoked,USA,Florida,"Snapper Point Jetty, Miami, Dade County","Spearfishing, pulled shark’s tail",Robert Olsen,M,16,Minor injury to left forearm PROVOKED INCIDENT,False,"Nurse shark, 1.2 m [4'] ","H.D. Baldridge, p.166; SAF Case #1284",1963.09.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.09.10-Olsen.pdf,1963.09.10,1963.09.10 +3735,Aug-1963,Unprovoked,DOMINICAN REPUBLIC,Santo Domingo,Rio Haina Port,"Swimming, when caught in heavy seas",2 males,M,23 & 26,fatal,True,8 sharks,"A. Gigante, Jr; H.D. Baldridge; M. McDiarmid, p.72",1963.08.00-2males.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.08.00-2males.pdf,1963.08.00,1963.08.00 +3736,28-Jul-1963,Unprovoked,FEDERATED STATES OF MICRONESIA,Eastern Caroline Islands,"Koop Reef, Truk (Chuuk)",Spearfishing,Akira,M,26,Upper left arm bitten,False,Tiger shark,"K. Aniol, Medical Officer",1963.07.28-Akira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.28-Akira.pdf,1963.07.28,1963.07.28 +3737,15-Jul-1963,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Bathing,Robert Driscoll,M,14,"Left forearm bitten, surgically amputated?",False,Tiger shark,"Orlando Sentinel, 7/16/1963",1963.07.15-Driscoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.15-Driscoll.pdf,1963.07.15,1963.07.15 +3738,11-Jul-1963,Provoked,USA,Mississippi,Horn Island,"Fishing, on charter boat Silver Dollar","James Ronald Mason, deckhand",M,24,"Cuts on right hand, PROVOKED INCIDENT",False,1.2 m [4'] shark,"Gulfport Herald, 7/12/1963; SAF Case #1218",1963.07.11-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.11-Mason.pdf,1963.07.11,1963.07.11 +3739,Reported 10-Jul-1963,Sea Disaster,JAMAICA,unknown,unknown,63' fishing boat Sno' Bay foundered,40 people were onboard,,24,fatal,True,1.2 m [4'] shark,"The Blade (Toledo, OH), 7/10/1963",1963.07.10.R-Sno'Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.10.R-Sno'Boy.pdf,1963.07.10.R,1963.07.10.R +3740,Jul-1963,Unprovoked,PANAMA,San Blas coast,"4 miles from Tuwala, near Mulatuppu","Seining for bait, standing in chest-deep water",an Indian male,M,24,fatal,True,1.2 m [4'] shark,H. Loftin,1963.07.00-Tuwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.07.00-Tuwala.pdf,1963.07.00,1963.07.00 +3741,01-Jun-1963,Unprovoked,GREECE,Thessaly,near Trikerion Island,Swimming,Helga Pogl,F,42,fatal,True,"White shark, 3 m ",A. De Maddalena,1963.06.01.b-Pogl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.b-Pogl.pdf,1963.06.01.b,1963.06.01.b +3742,01-Jun-1963,Provoked,PAPUA NEW GUINEA,Central Province,Near Fisherman's Island,Fishing,Au Kila (male),M,30,"Hooked shark bit his nose, arm and leg PROVOKED INCIDENT",False,1.8 m [6'] shark,"Pacific Post (Port Moresby), 6/4/1963",1963.06.01.a-Au_Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.06.01.a-Au_Kila.pdf,1963.06.01.a,1963.06.01.a +3743,18-May-1963,Invalid,USA,California,San Mateo County,Swimming,Gregory Moffatt,M,30,3 lacerations below right knee,False,Shark involvement not confirmed,"San Mateo Times, 5/22/1963",1963.05.18-Moffatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.18-Moffatt.pdf,1963.05.18,1963.05.18 +3744,14-May-1963,Sea Disaster,PHILIPPINES,Luzon Island,100 miles southeast of Manila,"Boat, with 42 passengers onboard, capsized in rough seas",Most were women & children,,30,fatal,True,Shark involvement not confirmed,"Advertiser (Adelaide), 5/21/1963 ",1963.05.14-PhilippineBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.05.14-PhilippineBoat.pdf,1963.05.14,1963.05.14 +3745,22-Apr-1963,Provoked,AUSTRALIA,New South Wales,Clarence Head,Fishing,Jack Sonter,M,30,Foot lacerated by netted shark PROVOKED INCIDENT,False,Grey nurse shark,H.D. Baldridge (1994) SAF Case #1472,1963.04.22-NV-Sonter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.22-NV-Sonter.pdf,1963.04.22,1963.04.22 +3746,20-Apr-1963,Unprovoked,USA,US Virgin Islands,"St. Thomas, Magens Bay",Swimming,Naval Lt. (jg) John Gibson,M,25,fatal,True,"Hand found in gut of 2.9 m to 3.3 m [9'7"" to 10'11""] Galapagos shark, C. galapagensis","G.W. Kirby, Jr.; NY Times, 1/22/1963",1963.04.20-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.20-Gibson.pdf,1963.04.20,1963.04.20 +3747,17-Apr-1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Errol Fourie,M,15,Buttock bitten,False,"Hand found in gut of 2.9 m to 3.3 m [9'7"" to 10'11""] Galapagos shark, C. galapagensis","D. Davies, p.118-119; M. Levine, GSAF",1963.04.17-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.17-Fourie.pdf,1963.04.17,1963.04.17 +3748,13-Apr-1963,Unprovoked,AUSTRALIA,Western Australia,Yallingup,"Surfing on ""chest board"" (boogie board?)",Brian Audas,M,25,Arm bitten,False,1.8 m to 2.4 m [6' to 8'] shark,"G.P. Whitley; NSW newspapers of 4/14&15/1963; H.D. Baldridge, p. 142",1963.04.13-Audas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.13-Audas.pdf,1963.04.13,1963.04.13 +3749,12-Apr-1963,Unprovoked,USA,Hawaii,"Awili, South Kona, Hawai'i",Surfing ,Aiona Aka,M,15,Left foot & leg bitten,False,3.7 to 4.5 m [12' to 15'] shark seen in vicinity,"L. Taylor (1993), pp.102-103",1963.04.12-Aka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.12-Aka.pdf,1963.04.12,1963.04.12 +3750,08-Apr-1963,Invalid,USA,Hawaii,"Hapuna Beach, Hawai'i",Washed into sea while picking opihi,Roy C. Kametani,M,15,"May have drowned prior to shark involvement, partial remains recovered",False,Shark involvement prior to death was not confirmed,"J. Borg, p.73; L. Taylor (1993), pp.102-103",1963.04.08-Kametani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.04.08-Kametani.pdf,1963.04.08,1963.04.08 +3751,30-Mar-1963,Sea Disaster,SOLOMON ISLANDS,Bougainville (North Solomons),Bougainville (North Solomons),The 500-ton coastal trader Polurrian foundered ,"Daniel Viva, missionary",M,15,fatal,True,Shark involvement prior to death was not confirmed,"Sydney Morning Herald, 4/6/1963",1963.03.30-Viva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.03.30-Viva.pdf,1963.03.30,1963.03.30 +3752,27-Feb-1963,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Namatanai,Swimming,Joseph To Toba,M,15,Right shoulder bitten,False,Shark involvement prior to death was not confirmed,"Times-Courier (Lae), 3/6/1963",1963.02.27-Totoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.27-Totoba.pdf,1963.02.27,1963.02.27 +3753,24-Feb-1963,Unprovoked,AUSTRALIA,New South Wales,Wombarra Beach near Austinmeer,Spearfishing,Charles Dunn,M,18,Left leg lacerated,False,"Bronze whaler shark, 3 m [10'] ","R. Funnell in Australian Skindiver Magazine, June/July 1963, p.8; J. Green, p.35",1963.02.24-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.24-Dunn.pdf,1963.02.24,1963.02.24 +3754,08-Feb-1963,Unprovoked,FIJI,Lomaiviti Island Group,"Taibaisa Passage, Gau Island",Spearfishing,Jone Waiteatei,M,28,Left arm bitten,False,"White shark, 2.1 m [7'] ","S. Brown, P. Helfrich",1963.02.08-Waiteatei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.08-Waiteatei.pdf,1963.02.08,1963.02.08 +3755,06-Feb-1963,Unprovoked,MAURITIUS,Rodrigues,Rodrigues,Spearfishing,Irené Rose,M,24,Laceration to right forearm,False,"White shark, 2.1 m [7'] ","L'Express, 5/2/2007",1963.02.06-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.06-Rose.pdf,1963.02.06,1963.02.06 +3756,04-Feb-1963,Invalid,USA,Florida,Off Key West,"S.S. Marine Sulphur Queen, laden with molten sulphur was bound from Beaumont, Texas for Norfolk, VA, when she disappeared with 39 on board",2 males,M,24,Two shark-bitten lifejackets were recovered leading to speculation that sharks took at least 2 of the 39 missing crewmen,False,Shark involvement prior to death was not confirmed,"NY Journal of Commerce, 3/29/1963;Wikipedia ",1963.02.04-MarineSulphurQueen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.02.04-MarineSulphurQueen.pdf,1963.02.04,1963.02.04 +3757,30-Jan-1963,Unprovoked,FIJI,unknown,unknown,Freediving,Savenaca Kuruvakarua,M,41,Hand & arm severely lacerated,False,Shark involvement prior to death was not confirmed,"H.D. Baldridge, SAF Case #1477",1963.01.30-NV-Kuruvakaruai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.30-NV-Kuruvakaruai.pdf,1963.01.30,1963.01.30 +3758,28-Jan-1963,Unprovoked,AUSTRALIA,New South Wales,"Sugarloaf Bay, Middle Harbour, Sydney",Wading,Marcia Hathaway,F,32,fatal,True,"Tooth fragments of “whaler” shark were recovered, a bull shark, according to Edwards","Dr. P.R. Coyne; A. Sharpe, pp.7-12; A. MacCormick, pp.15-18; H. Edwards, pp.102 & 108",1963.01.28-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.28-Hathaway.pdf,1963.01.28,1963.01.28 +3759,26-Jan-1963,Invalid,AUSTRALIA,New South Wales,Evans Head,Swimming,Shaun Wilmot,M,25,"9' shark in area when he disappeared, body not recovered",False,Shark involvement prior to death was not confirmed,"Sydney Morning Herald, 1/29/1963 ",1963.01.26-Wilmot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.26-Wilmot.pdf,1963.01.26,1963.01.26 +3760,22-Jan-1963,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Fishing ,boat,,25,"No injury to occupant, shark leapt inside boat",False,193-lb shark,"Scarborough Evening News (Yorks, England), 1/22/1963 ",1963.01.22.R-FalseBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.22.R-FalseBayBoat.pdf,1963.01.22,1963.01.22 +3761,14-Jan-1963,Provoked,NEW ZEALAND,North Island,"Petone Beach, Wellington",Fishing,Ian Alexander,,14,Minor lacerations to hand and arm after he seized the shark's tail PROVOKED INCIDENT,False,"Grey nurse shark, 1.8 m [6'] ","R.D. Weeks, GSAF; Otago Daily Times, 1/15/1963, p.1",1963.01.14-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.14-Alexander.pdf,1963.01.14,1963.01.14 +3762,12-Jan-1963,Provoked,SOUTH AFRICA,Eastern Cape Province,Humewood,Fishing,GSAF,M,14,Foot bitten by shark hooked & taken on boat PROVOKED INCIDENT,False,<1.5 m shark,GSAF,1963.01.12-Mankowitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.12-Mankowitz.pdf,1963.01.12,1963.01.12 +3763,11-Jan-1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Peace Cottage, Umdhloti","Free diving, hunting crayfish",Barry E. Blackmore,M,27,Lacerations & punctures on left forearm,False,1 m shark,"D. Davies, D'Aubrey; B. Blackmore; M. Levine, GSAF",1963.01.11-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.11-Blackmore.pdf,1963.01.11,1963.01.11 +3764,06-Jan-1963,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Selection Reef, Umdhloti",Spearfishing,Clive Passmore,M,24,Lacerations to right arm,False,"Zambesi shark, 2 m [6'9""] ","D. Davies, p.117-118; C. Passmore, M. Levine, GSAF",1963.01.06-Passmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.06-Passmore.pdf,1963.01.06,1963.01.06 +3765,04-Jan-1963,Provoked,AUSTRALIA,South Australia,Off Franklin Island between Streaky Bay & Ceduna,Shark fishing,"boat, occupants: Alf Dean, Jack Hood & Otto Bells",,24,No injury to occupants; hooked shark slammed into side of boat PROVOKED INCIDENT,False,"White shark, 16', 2,312-lb ",SAF Case #1184,1963.01.04-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.04-AlfDean.pdf,1963.01.04,1963.01.04 +3766,Jan-1963,Boat,MOZAMBIQUE,"Limpopo River, 547 km from the sea","Limpopo River, 547 km from the sea",Shark fishing,"Canoe, occupant: Jopie Averes",,24,"No injury to occupant. Shark tore chunk from canoe, then bumped 2 other canoes",False,Zambesi shark,"D. Davies, p.185; GSAF",1963.01.00-JopieAveres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.01.00-JopieAveres.pdf,1963.01.00,1963.01.00 +3767,Early 1963,Unprovoked,FIJI,Vita Levu,Korolevu (South coast between Nadi & Suva),Shark fishing,"S. Brown, P. Helfrich",,24,No details,UNKNOWN,Zambesi shark,"S. Brown, P. Helfrich",1963.00.00.b-NV-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.b-NV-Fiji.pdf,1963.00.00.b,1963.00.00.b +3768,1963,Unprovoked,SEYCHELLES,unknown,unknown,Fishing for turtles,male,M,24,fatal,True,Zambesi shark,V.C. Harvey-Grain,1963.00.00.a-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1963.00.00.a-Seychelles.pdf,1963.00.00.a,1963.00.00.a +3769,30-Dec-1962,Provoked,SOUTH AFRICA,KwaZulu-Natal,Shark tank at Oceanographic Research Institute,Scuba diving,"A. B. ""Lofty"" Roets",M,24,Captive shark bit air hose & minor lacerations on diver's cheek PROVOKED INCIDENT,False,"Dusky shark, 1 m ",D. Davies,1962.12.30-Roets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.30-Roets.pdf,1962.12.30,1962.12.30 +3770,09-Dec-1962,Unprovoked,AUSTRALIA,South Australia,Carrickalinga Head,Spearfishing,Geoffrey Martin Corner,M,16,fatal,True,"White shark, 4.3 m [14'] (or bronze whaler)","H. Edwards, p.63; H.D. Baldridge, p.197; A. MacCormick, pp.91-93; A. Sharpe, p.124; J. West",1962.12.09-Corner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.09-Corner.pdf,1962.12.09,1962.12.09 +3771,Dec-1962,Boat,SOUTH AFRICA,Western Cape Province,Swartklip,Fishing,"boat Swift, occupants: Dolly Samuels & 8 other men",,16,"No injury to occupants, shark jumped onboard, knocking 2 anglers onto the deck",False,"2 m [6'9""], 87.5-kg [193-lb] shark",T. Wallet; GSAF,1962.12.00-Swift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.12.00-Swift.pdf,1962.12.00,1962.12.00 +3772,29-Nov-1962,Unprovoked,AUSTRALIA,New South Wales,Sydney,"Spearfishing, Scuba diving",B. May,M,26,"No injury, shark bit spear & dragged diver 90'",False,3 m [10'] shark,"H.D. Baldridge, p.183; SAF #1130",1962.11.29-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.29-May.pdf,1962.11.29,1962.11.29 +3773,25-Nov-1962,Invalid,AUSTRALIA,Queensland,Townsville,"Spearfishing, Scuba diving",Hugh Meikel,M,26,"Skeletonized, except for head & feet. Possible drowning / scavenging",False,Shark involvement prior to death was not confirmed,"H.D. Baldridge, p.162; SAF Case #1124",1962.11.25-Meikel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.25-Meikel.pdf,1962.11.25,1962.11.25 +3774,11-Nov-1962,Unprovoked,USA,California,Farallon Islands,Spearfishing / Scuba diving (at surface),Leroy French,M,24,"Arm, hand, buttock, leg and thigh bitten",False,"White shark, 4.3 m to 4.9m [14' to 16']","D. Miller & R. Collier; R. Collier, pp.35-36; H.D. Baldridge, pp.73 & 78 ",1962.11.11-LeroyFrench_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.11-LeroyFrench_Collier.pdf,1962.11.11,1962.11.11 +3775,10-Nov-1962,Boat,AUSTRALIA,New South Wales,Off Kisma,Fishing,"wooden boat, occupants: Jack Bullman & Keith Campbell",,24,No injury to occupants. Shark rammed boat as they were pulling in a flathead,False,3 m [10'] blue whaler,"Sydney Sunday Mirror, 11/11/1962 ",1962.11.10-Bullman-Campbell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.10-Bullman-Campbell-boat.pdf,1962.11.10,1962.11.10 +3776,Nov-1962,Sea Disaster,MID ATLANTIC OCEAN,Off Bermuda,Off Bermuda,Abandoning burning ship Captain George in raging seas,"Martin Fisher, radio operator",M,24,"No injury, shark bit his boot",False,3 m [10'] blue whaler,Press clippings,1962.11.00-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.11.00-Fisher.pdf,1962.11.00,1962.11.00 +3777,28-Oct-1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Paradise Reef,Spearfishing,Noel Holliday,M,30,Arm lacerated (minor injury),False,3 m [10'] blue whaler,"D. Davies; M. Levine, GSAF",1962.10.28-Holliday.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.28-Holliday.pdf,1962.10.28,1962.10.28 +3778,25-Oct-1962,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Wading,"Nicolas Jimenez Nunez, a Catholic priest",M,32,fatal,True,2.7 m [9'] shark,C.G. Robles,1962.10.25-Nunez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.25-Nunez.pdf,1962.10.25,1962.10.25 +3779,15-Oct-1962,Unprovoked,ADMIRALTY ISLANDS,Manus Island,Sisi (west coast of island),Wading,Pasingan,M,26,Facial lacerations,False,2.7 m [9'] shark,SAF Case #1116,1962.10.15-Pasigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.15-Pasigan.pdf,1962.10.15,1962.10.15 +3780,14-Oct-1962,Boat,AUSTRALIA,South Australia,Port Phillip Bay,Adrift after wave swamped engine,"speedboat, occupant: Michael Wilson",M,26,"No injury to occupant, shark ""nibbled"" at boat",False,Grey nurse shark,"Strand (London), 10/15/1962",1962.10.14-Wilson-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.14-Wilson-boat.pdf,1962.10.14,1962.10.14 +3781,06-Oct-1962,Invalid,USA,California,2 miles off Santa Catalina Island,"Overcome by CO fumes, fell overboard from 36' fishing cruiser & prop slashed arm",Marian Leaf,F,43,Drowned due to CO2 poisoning - Post Mortem scavanging by blue shark,False,Shark involvement prior to death was not confirmed,"Long Beach Independent, 10/9/1962; H.D. Baldridge, p147; SAF Case #1080",1962.10.06-Leaf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.06-Leaf.pdf,1962.10.06,1962.10.06 +3782,Oct-1962,Unprovoked,PANAMA,Pinas Bay,Pinas Bay,Sitting in shallows,"infant, male ",M,1,fatal,True,Shark involvement prior to death was not confirmed,J. Hardie; D. de Sylva,1962.10.00-babyboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.10.00-babyboy.pdf,1962.10.00,1962.10.00 +3783,30-Sep-1962,Unprovoked,BRITISH WEST INDIES,Grand Turk Island,Long Cay,Spearfishing,Wesley Vickrey,M,24,Left thigh & hand & speargun bitten,False," Blacktip shark, C. maculipinnis. 1.9 m to 2.1 m [6.5' to 7'] ","H.D. Baldridge, p.197",1962.09.30-Vickrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.30-Vickrey.pdf,1962.09.30,1962.09.30 +3784,22-Sep-1962,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,Nestor Valenzuela,M,20,"Left arm severely bitten, surgically amputated",False," Blacktip shark, C. maculipinnis. 1.9 m to 2.1 m [6.5' to 7'] ",C.G. Robles,1962.09.22-Valenzuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.22-Valenzuela.pdf,1962.09.22,1962.09.22 +3785,13-Sep-1962,Unprovoked,SOUTH ATLANTIC OCEAN,Off coast of West Africa,Off the passenger liner Stirling Castle,"When a deckhand jumped overboard, McIver dived after him with a rescue line.",John MacIver,M,29,fatal,True," Blacktip shark, C. maculipinnis. 1.9 m to 2.1 m [6.5' to 7'] ","Daily Express (London), et. al, 9/22/1962 ",1962.09.13-MacIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.13-MacIver.pdf,1962.09.13,1962.09.13 +3786,02-Sep-1962 ,Unprovoked,ITALY,Tyrrhenian Sea,"Circeo, Secca del Quadro",Spearfishing with Scuba gear,Maurizio Sarra,M,28,fatal,True,White shark,"A. De Maddalena & C. Moore, GSAF; Carletti (1973), Gianturco (1978), Marini (1989), Gilioli (1989), Giudici & Fino (1989); E. Tortonese; H.D. Baldridge, p.183. Note: A.Resciniti, p.104 lists date as 22-Sep-1962",1962.09.02-Sarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.09.02-Sarra.pdf,1962.09.02,1962.09.02 +3787,Reported 31-Aug-1962,Provoked,ISRAEL,Sharon,2 km north of Apollonia,Fishing,fisherman,M,28,"Details unknown, possibly a PROVOKED INCIDENT",UNKNOWN,2.5 m [8.25'] shark,"C. Moore, GSAF",1962.08.31.R-Israel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.31.R-Israel.pdf,1962.08.31.R,1962.08.31.R +3788,30-Aug-1962,Boat,TURKEY,Antalya Province,Ucagiz,Fishing,Occupant: Hasan Olta,M,28,No injury ,False,2.5 m [8.25'] shark,"C.Moore, GSAF",1962.08.30.b-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.b-pdf,1962.08.30.b,"1962,08.30.b" +3789,30-Aug-1962,Provoked,PAPUA NEW GUINEA,Northern District,Kufulu Point,Fishing,Enigo Setiro,M,49,Posterior lower left leg lacerated by netted shark PROVOKED INCIDENT,False,"""A long thin brown-colored shark""",SAF Case #1192,1962.08.30.a-Setiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.30.a-Setiro.pdf,1962.08.30.a,1962.08.30.a +3790,29-Aug-1962,Provoked,USA,California,"Solana Beach, San Diego County",Diving for abalone,Knox Harris,M,39,"Struck shark with abalone bar to scare it away from abalone, but shark bit his shoulder PROVOKED INCIDENT",False,"Horn shar,k Heterodontus francisci, 1.2 m [4'] ","SAF Case #1059; D. Miller & R. Collier; R. Collier, p. xxv; H.D. Baldridge, p.164 ",1962.08.29-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.29-Harris.pdf,1962.08.29,1962.08.29 +3791,26-Aug-1962,Boat,USA,Florida,6 miles north of Palm Beach,Diving for abalone,"21' boat sank. Occupants: Max Butcher, George Hardy & Peter Thorne",,39,"No injury to occupants, sharks tore Max Butcher's life jacket & pants",False,"Horn shar,k Heterodontus francisci, 1.2 m [4'] ","New York Post, 8/27/1962; SAF Case #1061",1962.08.26 - Thorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.26 - Thorne.pdf,1962.08.26,1962.08.26 +3792,23-Aug-1962,Boat,SOUTH AFRICA,Western Cape Province,Robbesteen,Fishing,"4 m dinghy, occupants: Cecil Holmes, Chris Augustyn & Allen Varley ",,39,"No injury to occupants, shark hit boat, lifting it from the water, bit & dented propeller",False,4.3 m [14'] shark,GSAF,1962.08.23-HolmesBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.23-HolmesBoat.pdf,1962.08.23,1962.08.23 +3793,19-Aug-1962,Unprovoked,USA,Texas,"Off Andy Bowie Park, Padre Island, near Port Isabel",Surf fishing in waist-deep water,Hans Fix,M,40,fatal,True,Unknown,"J. A. Hockaday, M.D.",1962.08.19-Fix.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.19-Fix.pdf,1962.08.19,1962.08.19 +3794,12-Aug-1962,Unprovoked,USA,New Jersey,"Manasquan, Ocean County",Standing,Michael Roman,M,24,Left thigh & hand bitten,False,1.8 m [6'] shark," L. Schultz & M. Malin, p.514, et.al.",1962.08.12 - Roman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.12 - Roman.pdf,1962.08.12,1962.08.12 +3795,01-Aug-1962,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Pekinberui Village, Tabar Island",Spearfishing,"Tarara, a male",M,(adult),fatal,True,1.8 m [6'] shark,P.M. Moodie,1962.08.01-Tarara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.01-Tarara.pdf,1962.08.01,1962.08.01 +3796,Late Aug-1962,Unprovoked,ITALY,Tyrrhenian Sea,"Circeo, Secca del Faro",Diving,Dante Matacchione,M,(adult),No injury,False,White shark,"A. De Maddalena; Carletti (1973), Giudici & Fino (1989)",1962.08.00.b-Mattacchione.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.b-Mattacchione.pdf,1962.08.00.b,1962.08.00.b +3797,Aug-1962,Unprovoked,SENEGAL,Cap Vert Peninsula,Cap Vert Peninsula,Beach seine netting,M.G.,M,23,Ankle bitten,False,3.5 m shark,S. Trape,1962.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.08.00.a-Senegal.pdf,1962.08.00.a,1962.08.00.a +3798,28-Jul-1962,Unprovoked,USA,South Carolina,"Off Hilton Head, Beaufort County ",Standing,Robert Stein,M,21,Lacerations on left foot & hand,False,1.8 m to 2.4 m [6' to 8'] shark,R. Stein,1962.07.28-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.28-Stein.pdf,1962.07.28,1962.07.28 +3799,20-Jul-1962,Provoked,MADAGASCAR,"Onboard tuna boat, M.V. Toscui Maru","Onboard tuna boat, M.V. Toscui Maru",Finning the shark,Takemoto Masnori,M,20,Right calf lacerated by boated shark PROVOKED INCIDENT,False,"2 m [6'9""] shark",J. D'Aubrey,1962.07.20-Masnori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.20-Masnori.pdf,1962.07.20,1962.07.20 +3800,19-Jul-1962,Provoked,USA,California,30 miles south of San Clemente Island,Fishing for albacore,Esteban L. Cervantes,M,19,"2 lacerations on left hand by hooked shark, PROVOKED INCIDENT",False,Blue shark,"R. Zarkas; San Diego Union, 7/30/1962 ",1962.07.19-Cervantes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.19-Cervantes.pdf,1962.07.19,1962.07.19 +3801,10-Jul-1962,Unprovoked,USA,Georgia,"St. Simons Island or Jeykll Island, Glynn County",Playing in surf with his child (9),Leonard Harrison Hancock,M,41,"Cuts on fingers, hand & wrist",False,Blue shark,L.H. Hancock,1962.07.10-Hancock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.10-Hancock.pdf,1962.07.10,1962.07.10 +3802,07-Jul-1962,Unprovoked,USA,Georgia,"Jekyll Island, Glynn County",Dived from inner-tube,Gary Duncan,M,13,Laceration on hand,False,Blue shark,"J. M. Hicks, M.D.; Washington Star, 7/14/1962",1962.07.07-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.07-Duncan.pdf,1962.07.07,1962.07.07 +3803,Reported 03-Jul-1962,Invalid,GREECE,Cyclades,Near Mykonos Island,Dived from inner-tube,Boat with tourists onboard,,13,No injury,False,Questionable incident,"C. Moore, GSAF",1962.07.03.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.07.03.R-Greece.pdf,1962.07.03.R,1962.07.03.R +3804,25-Jun-1962,Invalid,USA,Florida,"Fernandina Beach, Nassau County",U.S. Airforce crewman reported missing after bailing out of jet,male,M,13,fatal,True,Shark involvement not confirmed,SAF Case #1106,1962.06.25-NV-AirForce-bailout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.25-NV-AirForce-bailout.pdf,1962.06.25,1962.06.25 +3805,21-Jun-1962,Boat,SOUTH AFRICA,Western Cape Province,"Millers Point, False Bay","On a ""shark hunt""","2.4 m rowboat, occupants: Edgar Brown, Jerry Welz & Cornelius Stakenburg",,13,"No injury to occupants, shark charged boat, then 2 more sharks hit boat, oar grabbed, boat finally drifted ashore at 02h00",False,2.7 m to 3 m [9' to 10'] sharks,"M. Levine, GSAF",1962.06.21-MillersPointBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.21-MillersPointBoat.pdf,1962.06.21,1962.06.21 +3806,17-Jun-1962,Unprovoked,USA,Florida,"New Smyrna Beach, Volusia County",Rolled off raft,Barry Bryan Reed,M,11,"8"" laceration on left calf",False,1.8 m [6'] shark,"D. Reed; Hobart Gazette, 6/28/ 1962 s",1962.06.17-BarryReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.17-BarryReed.pdf,1962.06.17,1962.06.17 +3807,11-Jun-1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,Clarence Anglin,M,31,2 toes bitten off ,False,1.8 m [6'] shark,"San Francisco Chronicle, 5/3/1986",1962.06.11.c-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.c-Anglin.pdf,1962.06.11.b,1962.06.11.b +3808,11-Jun-1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,John William Anglin ,M,32,fatal,True,1.8 m [6'] shark,"San Francisco Chronicle, 5/3/1986",1962.06.11.b-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.b-Anglin.pdf,1962.06.11.b,1962.06.11.b +3809,11-Jun-1962,Unprovoked,USA,California,San Francisco Bay,Escaping from Alacatraz,Frank Lee Morris,M,35,fatal,True,1.8 m [6'] shark,"San Francisco Chronicle, 5/3/1986",1962.06.11.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.11.a-Morris.pdf,1962.06.11.a,1962.06.11.a +3810,10-Jun-1962,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Mouth of Suareng River, a mile from Taludig",Washing,"boy from Aitape, West Sepik",M,35,fatal,True,Possibly a bronze whaler shark,"L. Malcolmson, Fisheries Officer",1962.06.10.b-boy-Aitape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.b-boy-Aitape.pdf,1962.06.10.b,1962.06.10.b +3811,10-Jun-1962,Unprovoked,USA,South Carolina,"Hilton Head, Beaufort County",Standing,Frank Glenn,M,13,Thigh bitten,False,Possibly a bronze whaler shark,"F. Glenn; Dr. H.C. Yeatman; D. E. Gatch, M.D. ",1962.06.10.a-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.10.a-Glenn.pdf,1962.06.10.a,1962.06.10.a +3812,07-Jun-1962,Boat,AUSTRALIA,Western Australia,Emu Point,Fishing,"10' rowboat, occupant: John Stephensen",,13,"No injury to occupant, shark grabbed anchor rope, pulling bow of boat downward & then bit bow of boat",False,Possibly a bronze whaler shark,"West Australian (Perth), 6/8/1962 ",1962.06.07-StephensenBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.07-StephensenBoat.pdf,1962.06.07,1962.06.07 +3813,04-Jun-1962,Provoked,USA,California,"12' tank at Steinhart Aquarium, San Francisco","Scuba diving, attempting to catch a captive shark","Norval J. ""Tom"" Green",M,55,Right forearm bitten PROVOKED INCIDENT,False," Sevengill shark, 1.2 m [4'] ","San Francisco Chronicle, 6/5/1962; H.D. Baldridge, p.183",1962.06.04-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.04-Green.pdf,1962.06.04,1962.06.04 +3814,03-Jun-1962,Unprovoked,USA,Florida,"Riviera Beach, near Palm Beach Inlet, Palm Beach County",Free diving,Paul Dammann,M,31,Left foot bitten,False," Sevengill shark, 1.2 m [4'] ","M. Vorenberg, GSAF; Palm Beach Post, 6/4/1962 ",1962.06.03-Dammann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.06.03-Dammann.pdf,1962.06.03,1962.06.03 +3815,29-May-1962,Unprovoked,USA,Florida,"Jupiter, Palm Beach County",Free diving,boy,M,17,Bitten on leg or ankle,False," Sevengill shark, 1.2 m [4'] ","M. Vorenberg, GSAF",1962.05.29-Jupiter-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.29-Jupiter-boy.pdf,1962.05.29,1962.05.29 +3816,12-May-1962,Sea Disaster,USA,California,"8 miles off Newport Beach, Orange County",25-foot cabin cruiser Happy Jack sank in heavy seas,"Enquirer & News (Battle Creek, MI), 5/14/1962; L. Schultz & M. Malin, p.562",,17,fatal,True," Sevengill shark, 1.2 m [4'] ","Enquirer & News (Battle Creek, MI), 5/14/1962; L. Schultz & M. Malin, p.562",1962.05.12-HappyJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.12-HappyJack.pdf,1962.05.12,1962.05.12 +3817,May 1962,Boat,FIJI,Viti Levu,Near Suva,Fishing,17' fishing boat; occupants 2 men,,17,"No injury, sharks rammed boat and bit outboard motor",False," Sevengill shark, 1.2 m [4'] ","Yorkshire Evening News, 5/5/1962",1962.05.00-Suva-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.05.00-Suva-Fiji.pdf,1962.05.00.R,1962.05.00.R +3818,20-Apr-1962,Provoked,AUSTRALIA,Queensland,Nobbys Beach,Fishing,"surf boat, occupants: Ray Sturdy and 4 other fishermen",,17,"No injury to occupants, hooked shark cracked hull PROVOKED INCIDENT",False,"Bronze whaler shark, 3.7 m [12'] ","Sydney Daily Telegraph, 4/21/1962 ",1962.04.20-Sturdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.20-Sturdy.pdf,1962.04.20,1962.04.20 +3819,09-Apr-1962,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Brian Lawrence Martin,M,16,"Leg bitten, surgically amputated at knee",False,"Bronze whaler shark, 3.7 m [12'] ","M. Levine, GSAF;P.H. Jacques, M.D.; D. Davies, pp.126-127",1962.04.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.09-Martin.pdf,1962.04.09,1962.04.09 +3820,07-Apr-1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlali,Wading,John Blane,M,13,Left ankle & foot bitten,False,"Zambesi shark, 1.2 m [4'] ","D. Davies, p.117; D. Blane, M. Levine, GSAF ",1962.04.07-Blane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.07-Blane.pdf,1962.04.07,1962.04.07 +3821,05-Apr-1962,Provoked,SOUTH AFRICA,Eastern Cape Province,East London,Fishing,"4.8 m skiboat, occupants: C. Cockroft & 3 men",,13,Hooked shark bit boat PROVOKED INCIDENT,False,4.9 m [16']shark,T. Wallett,1962.04.05-Cockroft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.04.05-Cockroft.pdf,1962.04.05,1962.04.05 +3822,25-Mar-1962,Provoked,NEW ZEALAND,"Off the Coromandel Peninsula, North Island",Alderman Islands,Fishing,W.T. Luxton,M,13,Left foot bitten by hooked shark PROVOKED INCIDENT,False,1.8 m [6'] shark ,"Christchurch Star, 3/26/1962",1962.03.25.b-Luxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.b-Luxton.pdf,1962.03.25.b,1962.03.25.b +3823,25-Mar-1962,Boat,AUSTRALIA,New South Wales,Norah Head,Fishing & spearfishing,boat of Dennis Kemp & 4 other occupants,,13,No injury to occupants. Shark holed boat & they swam 200 yards to shore,False,"Bronze whaler shark, 4.6 m [15'] ",Sunday Mirror (Sydney),1962.03.25.a-KempBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.25.a-KempBoat.pdf,1962.03.25.a,1962.03.25.a +3824,24-Mar-1962,Unprovoked,PAPUA NEW GUINEA,Madang,Matukar village ,Swimming,"Kes, a native boy",M,10,fatal,True,Possibly a bronze whaler shark,"South Pacific Post (Port Moresby) 3/4/1962; L. Malcolmson, Fisheries Officer ",1962.03.24-Kes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.03.24-Kes.pdf,1962.03.24,1962.03.24 +3825,23-Feb-1962,Unprovoked,PAPUA NEW GUINEA,Central Province,Fisherman’s Island near Port Moresby,Swimming along a row of nets,Hitola Hekure,M,10,Torso lacerated,False,1.2 m [4'] shark,"South Pacific Post, 2/27/1962; V.M. Coppleson (1962), p.248",1962.02.23-Hekure.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.23-Hekure.pdf,1962.02.23,1962.02.23 +3826,18-Feb-1962,Provoked,NEW ZEALAND,Southland,Long Beach,Swimming,Fred Mason,M,15,"Mistook shark's tail for kelp & grabbed it, legs abraded by shark's fins PROVOKED INCIDENT",False,1.8 m [6'] shark,"SAF Case #1118; Southland Daily News 2/20/1962, ",1962.02.18-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.18-Mason.pdf,1962.02.18,1962.02.18 +3827,15-Feb-1962,Unprovoked,AUSTRALIA,Queensland,Between Smith’s Rock & Moreton Island,Fishing for snappers & cleaning mullet. Put mullet over side of boat to wash it,John Hansen,M,15,Middle finger of right hand lacerated,False,3.7 m [12'] shark,"Brisbane Courier Mail, 2/16/1962",1962.02.15-Hansen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.15-Hansen.pdf,1962.02.15,1962.02.15 +3828,07-Feb-1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Swimming,Clifford Hoogvorst,M,22,fatal,True,3.7 m [12'] shark,"M. Levine, J. D'Aubrey, GSAF; D. Davies, pp.114-116",1962.02.07-Hoogvorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.07-Hoogvorst.pdf,1962.02.07,1962.02.07 +3829,05-Feb-1962,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Treading water,Reece Nielsen,M,13,fatal,True,"White shark, 3 m ","M. Nielsen, M. Levine, GSAF; D. Davies, p.115",1962.02.05-Nielsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.05-Nielsen.pdf,1962.02.05,1962.02.05 +3830,04-Feb-1962,Unprovoked,AUSTRALIA,Queensland,Greenmount Beach,Swimming,Lance Maloney,M,35,Shin bitten,False,60 cm shark ,"Courier Mail (Brisbane), 2/5/1962",1962.02.04-Maloney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.04-Maloney.pdf,1962.02.04,1962.02.04 +3831,02-Feb-1962,Boat,NEW ZEALAND,North Island,South of New Plymouth,Fishing,"17' fishing launch, occupants: A. Burkitt & C. Brooke",,35,UNKNOWN,UNKNOWN,60 cm shark ,SAF Case #1125,1962.02.02-NV-Burkitt-Brooke-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.02-NV-Burkitt-Brooke-launch.pdf,1962.02.02,1962.02.02 +3832,Feb-1962,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,"North Coast, Guadalcanal Island",Swimming outside fishing net,"Mr. Loloi, a constable",M,35,fatal,True,60 cm shark ,"Auckland Herald, 2/26/1962",1962.02.00-Loloi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.02.00-Loloi.pdf,1962.02.00,1962.02.00 +3833,27-Jan-1962,Unprovoked,NEW ZEALAND,South Island,Oreti Beach,Splashing ,Norman McEwan,M,18,"Left hand injured: gash on back of hand, toothmarks on palm",False,1.5 m [5'] shark,"R. Weeks, GSAF; V.M. Coppleson (1962), p.247; H. D. Baldridge, p.16",1962.01.27-McEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.27-McEwan.pdf,1962.01.27,1962.01.27 +3834,26-Jan-1962,Unprovoked,MOZAMBIQUE,Gaza,Praia Sepulveda,Splashing ,Domingos Zefanias Cumbe,M,16,UNKNOWN,UNKNOWN,1.5 m [5'] shark,D. Davies,1962.01.26-Cumbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.26-Cumbe.pdf,1962.01.26,1962.01.26 +3835,21-Jan-1962,Provoked,AUSTRALIA,New South Wales,Cronulla,Spearfishing,Robert Smith,M,19,Suffered from shock & immersion after being dragged underwater by speared shark PROVOKED INCIDENT,False,"Bronze whaler shark, 3m [10'] ","Daily Mirror (Sydney) & Sydney Morning Herald, 1/22/1962 ",1962.01.21-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.21-Smith.pdf,1962.01.21,1962.01.21 +3836,18-Jan-1962,Invalid,SOUTH AFRICA,KwaZulu-Natal,Margate,"Fishing, slipped on rocks & fell into sea",Jacobus Vermaak,M,40,Possible drowning / post mortem scavenging by Zambesi shark,False,Shark involvement prior to death was not confirmed,"D. Davies, p.114; A. Cowan, M. Levine, GSAF",1962.01.18-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.18-Vermaak.pdf,1962.01.18,1962.01.18 +3837,16-Jan-1962,Provoked,NEW ZEALAND,South Island,"Pigeon Bay, Canterbury",Fishing,Mr. Reynish & Mr. Meikle,,40,"No injury to occupants, hooked shark attacked boat PROVOKED INCIDENT",False,"Said to involve a 4.9 m [16'] ""red shark""","The Sun (Australia), 1/17/1962",1962.01.16-RedShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.16-RedShark.pdf,1962.01.16,1962.01.16 +3838,15-Jan-1962,Unprovoked,NEW ZEALAND,North Island,"Slipper Island, Coromandel Peninsula",Spearfishing,John Till,M,44,Shark struck him on shoulder injuring skin under suit,False,"Said to involve a 4.9 m [16'] ""red shark""","V.M. Coppleson (1962), p.254; H.D. Baldridge, p.1432",1962.01.15-Till.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.15-Till.pdf,1962.01.15,1962.01.15 +3839,14-Jan-1962,Unprovoked,USA,California,Farallon Islands,Spearfishing / Scuba diving (at surface),"Floyd Pair, Jr.",M,29,Buttock bitten & major leg wound,False,"White shark, 4 m [13'] ","D. Miller & R. Collier; R. Collier, pp.34-35; H.D. Baldridge, p.74; Clark, pp.98-99",1962.01.14.c-Pair_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.c-Pair_Collier.pdf,1962.01.14.c,1962.01.14.c +3840,14-Jan-1962,Provoked,AUSTRALIA,New South Wales,"Long Reef, North Manly",Spearfishing,boat of Wally Gibbons,,29,Speared shark bit gunwale of boat as it was being hauled onboard PROVOKED INCIDENT,False," Grey nurse shark, 3 m [10'] ","Sydney Daily Telegraph, 1/15/1962 ",1962.01.14.b-Gibbons-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.b-Gibbons-boat.pdf,1962.01.14.b,1962.01.14.b +3841,14-Jan-1962,Unprovoked,AUSTRALIA,New South Wales,"Lennox Head, Ballina",Surfing,Gary Raymond Hiscocks,M,19,Dorsum of foot lacerated & toe severed,False,"Bronze whaler shark, 2.1 m [7'] shark","The Star (Johannesburg), Daily Telegraph (Sydney), Sydney Morning Herald, The Examiner (Launceston) 1/15/1962; V.M. Coppleson (1962), p.246; R.D. Weeks, GSAF",1962.01.14.a-Hiscocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.14.a-Hiscocks.pdf,1962.01.14.a,1962.01.14.a +3842,11-Jan-1962,Boat,AUSTRALIA,South Australia,Marino,Fishing,12' boat of Alf Laundy,,19,"No injury to occupant, shark bit propeller & lifted boat several feet",False,Said to involve a Grey nurse shark 3.7 m [12'] ,"Adelaide News, 1/12/1962",1962.01.11.c-Laundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.c-Laundy.pdf,1962.01.11.c,1962.01.11.c +3843,11-Jan-1962,Unprovoked,PAPUA NEW GUINEA,"10ºS, 142ºE",Jukuataia Village,Spearfishing,Yagirua Agiramon,M,24,Left leg & buttocks bitten,False,White shark,SAF Case #1193,1962.01.11.b-Agiramon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.b-Agiramon.pdf,1962.01.11.b,1962.01.11.b +3844,11-Jan-1962,Unprovoked,NEW ZEALAND,South Island,"Fairdown Beach, 5 miles north of Westport",Surf fishing,Mrs. Beryl Grant,F,54,Right foot lacerated ,False,"36"" shark","R. D. Weeks, GSAF; Dr. C. Foote; The Evening Post, 1/12/1962 ",1962.01.11.a-BerylGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.11.a-BerylGrant.pdf,1962.01.11.a,1962.01.11.a +3845,10-Jan-1962,Boat,AUSTRALIA,South Australia,Ceduna,Fishing for sharks,25-foot cutter,,54,No injury to fisherman Alf Dean & other occupants; shark bit stern of boat,False,White shark,"Adelaide News, 1/10/1962",1962.01.10.R-AlfDean-cutter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.10.R-AlfDean-cutter.pdf,1962.01.10,1962.01.10 +3846,08-Jan-1962,Invalid,AUSTRALIA,New South Wales,Lake Illawarra,Swimming,William McLeod,M,25,"Remains recovered from 10' shark, but shark involvement prior to death unconfirmed",False,Shark involvement prior to death was not confirmed,"Canberra Times, 1/11/1962",1962.01.08-McLeod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.08-McLeod.pdf,1962.01.08,1962.01.08 +3847,07-Jan-1962,Provoked,AUSTRALIA,Queensland,Dicky Beach,Rowing,Lifesavers' surf patrol boat,,25,"No injury to occupants, shark bit 3"" piece from oar after they accidentally struck the shark PROVOKED INCIDENT",False,Shark involvement prior to death was not confirmed,"Sydney Daily Telegraph, 1/8/1962 ",1962.01.07.b-DickyBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.b-DickyBeach.pdf,1962.01.07.b,1962.01.07.b +3848,07-Jan-1962,Unprovoked,AUSTRALIA,New South Wales,Sydney,Surfing,Tony Frost,,25,"No injury, shark bumped board flipping him into the water",False,Shark involvement prior to death was not confirmed,08/01/1962,1962.01.07.a-Frost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.07.a-Frost.pdf,1962.01.07.a,1962.01.07.a +3849,06-Jan-1962,Boat,SOUTH AFRICA,Western Cape Province,6 km off Groot Brak River,Fishing,"4.8 m boat Peggy, occupants: John Oktober, L.A. van Zyl and 4 others",,25,Shark rammed boat 5 times & holed it,False,Shark involvement prior to death was not confirmed,T. Wallett,1962.01.06-FishingboatPeggy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.06-FishingboatPeggy.pdf,1962.01.06,1962.01.06 +3850,02-Jan-1962,Provoked,AUSTRALIA,New South Wales,"Seaspray, near Sale",Fishing,surf patrol boat,,25,"No injury to occupants, hooked shark dragged boat 2 miles PROVOKED INCIDENT",False,2.7 m [9'] shark,"Sydney Daily Telegraph, 1/3/1962 ",1962.01.02-NV-Surf-Patrol-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.02-NV-Surf-Patrol-boat.pdf,1962.01.02,1962.01.02 +3851,01-Jan-1962,Unprovoked,MARSHALL ISLANDS,Kwajalein Atoll,Roi-namur Island,Fishing with hand net in 2' of water,Stanley Caberto,M,57,"2.5"" laceration on right hand",False,1.8 m [6'] shark,"L. R. Fletcher, M.D.",1962.01.01-Caberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.01.01-Caberto.pdf,1962.01.01,1962.01.01 +3852,1962,Unprovoked,SPAIN,Catalonia,Aigua Blava,Dangling feet in the water,female,F,57,Feet severed,False,1.8 m [6'] shark,"C. Moore, GSAF",1962.00.00.c-AiguaBlava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.c-AiguaBlava.pdf,1962.00.00.c,1962.00.00.c +3853,Jan-Jun-1962,Unprovoked,INDONESIA,East Flores,Waewerang,Dangling feet in the water,9 fishermen & pregnant woman,,57,fatal,True,1.8 m [6'] shark,"Djakarta Daily Mail, 7/20/1962",1962.00.00.b-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.b-Indonesia.pdf,1962.00.00.b,1962.00.00.b +3854,Ca. 1962,Unprovoked,AUSTRALIA,South Australia,Dangerous Reef,Diving,Dan Argyll,M,57,Right leg bitten,False,1.8 m [6'] shark,"F. Dennis, p.76",1962.00.00.a-Argyll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1962.00.00.a-Argyll.pdf,1962.00.00.a,1962.00.00.a +3855,28-Dec-1961,Unprovoked,AUSTRALIA,Queensland,"Lambert's Beach, Mackay",Standing,Margaret Hobbs,F,18,fatal,True,3 m [10'] shark,"V.M. Coppleson (1962), p.246; A. MacCormick, pp.19-21; A. Sharpe, p.101 ",1961.12.28.c-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.c-Hobbs.pdf,1961.12.28.c,1961.12.28.c +3856,28-Dec-1961,Unprovoked,AUSTRALIA,Queensland,"Lambert’s Beach, Mackay",Standing,Martyn Steffens,M,24,"Hand bitten, surgically amputated",False,3 m [10'] shark,"V.M. Coppleson (1962), p.246; A. MacCormick, pp.19-21; A. Sharpe, p.101",1961.12.28.b-Steffens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.b-Steffens.pdf,1961.12.28.b,1961.12.28.b +3857,28-Dec-1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umhlanga Rocks,Treading water,Glynn Wessels,M,18,Lower right leg & ankle bitten,False,Zambesi shark,"D. Davies, pp.113-114; D. Davies & J. D'Aubrey; T. McDonnell, M. Levine, GSAF",1961.12.28.a-Wessels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.28.a-Wessels.pdf,1961.12.28.a,1961.12.28.a +3858,27-Dec-1961,Provoked,AUSTRALIA,Western Australia,"North of main swimming area in Waterman's Bay Beach, Perth",Spearfishing,John Parker ,M,23,"No injury, Parker shot the shark when it came close to his nephew, Bill Bradbury (14), then the shark bent his speargun PROVOKED INCIDENT",False,"Grey nurse shark, 2.4 m [8'] ","The West Australia, 12/28/1961 ",1961.12.27-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.27-Parker.pdf,1961.12.27,1961.12.27 +3859,19-Dec-1961,Boat,AUSTRALIA,South Australia,Cowell,"Fishing, hauling in a 5-lb snapper",20' boat of Frank Stocker,,23,No injury to occupant; shark leapt into boat,False,2.7 m [9'] shark,"Adelaide Advertiser, 12/20/1961",1961.12.19-NV-boat-Stocker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.19-NV-boat-Stocker.pdf,1961.12.19,1961.12.19 +3860,18-Dec-1961,Unprovoked,MOZAMBIQUE,Gaza,Praia Sepulveda,Bathing,Gaspar Rodrigues Correia,M,20,His left leg was severely bitten,False,2.7 m [9'] shark,Dr. C. d. Nacimento,1961.12.18.b-Correia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.b-Correia.pdf,1961.12.18.b,1961.12.18.b +3861,18-Dec-1961,Unprovoked,AUSTRALIA,Queensland,Noosa Heads,"Surfing, pushing board ashore",John Grayson Andrews,M,22,fatal,True,Next morning a 3 m [10'] shark was caught that had Andrews' leg in its gut,"Natal Daily News, 12/19/1961; Sydney Morning Herald, 12/20/1961; V.M. Coppleson (1962), p.246; H.D. Baldridge, p.172; A. Sharpe, pp.100-101",1961.12.18.a-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.18.a-Andrews.pdf,1961.12.18.a,1961.12.18.a +3862,13-Dec-1961,Unprovoked,AUSTRALIA,Torres Strait,"Horn Island, near Thursday Island",Swimming with other crew near wharf,"George “Jimmy” Stevens, aborgine from the lugger Rebecca",M,17,Right thigh and leg lacerated,False,1.8 m [6'] shark,"Brisbane Courier Mail, 12/14/1961; V.M. Coppleson (1962), p.246",1961.12.13-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.12.13-Stevens.pdf,1961.12.13,1961.12.13 +3863,14-Nov-1961,Invalid,MEXICO,Guerrrero,Northwest of Acapulco,Swimming with other crew near wharf,"Sydney Daily Telegraph, 11/19/1961; SAF Case #1018",,17,"Bodies of hurricane victims bitten by shoals of sharks, post mortem scavenging",False,Shark involvement prior to death was not confirmed,"Sydney Daily Telegraph, 11/19/1961; SAF Case #1018",1961.11.14-Hurricane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.11.14-Hurricane.pdf,1961.11.14,1961.11.14 +3864,17-Oct-1961,Unprovoked,PHILIPPINES,Western Luzon Island,Manila Bay,Gathering shells,fisherman,M,17,Right leg severed,False,Shark involvement prior to death was not confirmed,"Newcastle Morning Herald, 10/28/1961 ",1961.10.27-FilipinoFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.27-FilipinoFisherman.pdf,1961.10.27,1961.10.27 +3865,09-Oct-1961,Invalid,USA,Florida,"Ocean Ridge, Boca Raton, Palm Beach County",Swimming,Alfred Haen,M,45,"Skeletonized, but shark involvement may have occurred after death.",False,Shark involvement prior to death was not confirmed,"H.D. Baldridge, p.162",1961.10.09-Haen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.09-Haen.pdf,1961.10.09,1961.10.09 +3866,Oct-1961,Boat,VANUATU,Shefa Province, Lelepa Island,Paddling outrigger canoe,male from Lelepa Island,M,45,"No injury to occupant, canoe bitten & overturned by shark",False,Two shark's teeth recovered from canoe,"Pacific Islands Monthly, October 1961 ",1961.10.00.b-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.b-Vanuatu.pdf,1961.10.00.b,1961.10.00.b +3867,Oct-1961,Unprovoked,USA,Florida,"Boca Raton, Palm Beach County",Paddling outrigger canoe,Jacob Horn,M,45,fatal,True,Two shark's teeth recovered from canoe,"V.M. Coppleson (1962), p.249",1961.10.00.a-Horn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.10.00.a-Horn.pdf,1961.10.00.a,1961.10.00.a +3868,26-Sep-1961,Provoked,USA,Florida,"Florida Keys, Monroe County",Paddling outrigger canoe,Paul Walter,M,16,Foot & lower leg abraded and lacerated when he kicked the shark PROVOKED INCIDENT,False,Two shark's teeth recovered from canoe,H.D.Baldridge (1994) SAF Case #923,1961.09.26-NV-PaulWalter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.26-NV-PaulWalter.pdf,1961.09.26,1961.09.26 +3869,24-Sep-1961,Unprovoked,CROATIA,Primorje-Gorski Kotar County ,"Opatija, northwestern coast of Rijeka Bay",Swimming,Sabit Plana,M,19,fatal,True,White shark,"The Mid-Ocean News, 9/28/1961; H.D. Baldridge, p.15; A. De Maddalena & C. Moore, GSAF;; Anon. (1961), Giudici & Fino (1989), Fergusson (1996)",1961.09.24.b-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.b-Plana.pdf,1961.09.24.b,1961.09.24.b +3870,24-Sep-1961,Provoked,TANZANIA,Near entrance to Dar-es-Salaam Harbour,Near entrance to Dar-es-Salaam Harbour,Fishing,Yusef Mohamed,M,42,PROVOKED INCIDENT Right hand severed by hooked shark,False,White shark,Mombasa Times 9/25/1961,1961.09.24.a-YusefMohamed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.24.a-YusefMohamed.pdf,1961.09.24.a,1961.09.24.a +3871,23-Sep-1961,Unprovoked,MID ATLANTIC OCEAN,165 miles from Bermuda,165 miles from Bermuda,"Survived US Naval aircraft crash, climbing onboard rescue vessel when he fell back into sea ",Patrick Imhof,M,22,Right shoulder blade & back lacerated,False,"Oceanic whitetip shar,; identified by Dr. W.C. Schoeder on photograph & Dr. L.P. L. Schultz on sketch by observer","E.L.de Wilton; V.M. Coppleson (1962), p.246; H.D. Baldridge, p.102",1961.09.23-Imhof.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.23-Imhof.pdf,1961.09.23,1961.09.23 +3872,07-Sep-1961,Unprovoked,PERSIAN GULF,25 km off the coast of Iran & 483km from mouth of Persian Gulf,Khark Island,"Free diving, surveying a pipeline & examing cathodes under jetty",I. Padden,M,22,"3"" cut on sole of foot",False,1.5 m to 1.8 m [5' to 6'] shark,"Underseas, Ltd (London)",1961.09.07-Padden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.07-Padden.pdf,1961.09.07,1961.09.07 +3873,Reported 06-Sep-1961,Provoked,ITALY,Venice Province, Chioggia,Fishing,Pollione Perrini & Fioravante Perini ,M,33 & 37,Left foot & right hand bitten by netted shark PROVOKED INCIDENT,False,1 m shark,"C. Moore, GSAF",1961.09.06.R-Chioggia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06.R-Chioggia.pdf,"1961.09,06.R",1961.09.02.R +3874,06-Sep-1961,Invalid,AUSTRALIA,Western Australia,Broome,Attaching a line at sea,a sailor from the Fukuichi Maru,,33 & 37,Shark involvement prior to death unconfirmed,False,Shark involvement prior to death was not confirmed,"Canberra Times, 9/8/1962",1961.09.06-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.09.06-Sailor.pdf,1961.09.06,1961.09.06 +3875,20-Aug-1961,Unprovoked,USA,California,"Portuguese Beach at mouth of Salmon Creek, Sonoma County",Swimming,David Vogensen,M,16,"Foot, leg & groin lacerated",False,"White shark, 4 m [13'] ","L.A. Times, 8/21/1961; D. Miller & R. Collier; R. Collier, p.33; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.72",1961.08.20-Vogensen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.20-Vogensen_Collier.pdf,1961.08.20,1961.08.20 +3876,16-Aug-1961,Unprovoked,USA,South Carolina,"Pawley’s Island, Georgetown County",Wading,William Lee Bailey,M,19,"Right arm bitten. Left leg bitten, surgically amputated ",False,White shark,C.O. Adams,1961.08.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.16-Bailey.pdf,1961.08.16,1961.08.16 +3877,04-Aug-1961,Unprovoked,BERMUDA,6 miles from shore,6 miles from shore,Spearfishing,Robert Sato,M,22,Right hand lacerated,False,"Blacktip shark, 1.8 m to 2.1 m [6' to 7'] ","R. McAllister; H.D. Baldridge, p.134",1961.08.04-Sato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.04-Sato.pdf,1961.08.04,1961.08.04 +3878,02-Aug-1961,Unprovoked,USA,Hawaii,"Pearl Harbor Channel, O'ahu","Net fishing, picking catch from the net",Kazuhiho Kato,M,38,Hand bitten,False,2.4 m [8'] shark,"K. Kato; V.M. Coppleson (1962), p.246",1961.08.02-Kato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.02-Kato.pdf,1961.08.02,1961.08.02 +3879,01-Aug-1961,Provoked,PAPUA NEW GUINEA,Sandaun Province,Vanimo on Musu side of Wutong anchorage,"Fishing, two large sharks passed. He speared one and it bit him",male,M,38,Thigh lacerated PROVOKED INCIDENT,False,2.4 m [8'] shark,"A.M. Rapson, p.147",1961.08.01-Vanimo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.08.01-Vanimo.pdf,1961.08.01,1961.08.01 +3880,29-Jul-1961,Provoked,USA,New York,Whitewood Point on Lloyd Neck in Oyster Bay,Spearfishing,Bruno Junker,M,57,Puncture wound on right shin & fingers lacerated by speared shark PROVOKED INCIDENT,False,"43"" shark",B. Junker,1961.07.29-Junker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.29-Junker.pdf,1961.07.29,1961.07.29 +3881,16-Jul-1961,Unprovoked,TURKEY,Anatolia,"?nciralti Beach, ?zmir ",Swimming,?brahim Karagöz,M,16,Left leg injured,False,"43"" shark","C. Moore, GSAF",1961.07.16-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.16-Turkey.pdf,1961.07.16,1961.07.16 +3882,07-Jul-1961,Provoked,AUSTRALIA,Queensland,Cape Moreton,Shark fishing,"35' motor launch, occupants: Bill Fulham & T. Fanning",,16,"No injury to occupant, hooked shark bit boat's rudder PROVOKED INCIDENT",False,"White shark, 5.2 m [17'], 2500-lb ","Brisbane Courier-Mail, 7/10/1961; SAF Case #894",1961.07.07.b-boat-Fulham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.07.b-boat-Fulham.pdf,1961.07.07.b,1961.07.07.b +3883,Jul-1961,Unprovoked,ITALY,Adriatic Sea,Riccione,Spearfishing,Manfred Gregor,M,21,Foot bitten,False,"White shark, 4.5 m ","M. Gregor; H.D. Baldridge, p.135; A. De Maddalena; Ellis (1973), Fergusson (1996), Mojetta et al. (1997)",1961.07.00.b-Gregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.b-Gregor.pdf,1961.07.00.b,1961.07.00.b +3884,Jul-1961,Provoked,PANAMA,"Jarque, just south of Pi?as Bay","Jarque, just south of Pi?as Bay",Fishing (trolling) from canoe,boy,M,10,fatal,True,"White shark, 4.5 m ","J. Hardie, D. DeSylva",1961.07.00.a-youngboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.07.00.a-youngboy.pdf,1961.07.00.a,1961.07.00.a +3885,24-Jun-1961,Unprovoked,USA,Florida,"500 yards from Fowey Rock Light, 9 miles east of Key Biscayne, Miami",Scuba diving & spearfishing ,William J. Dandridge,M,23,fatal,True,"White shark, 4.5 m ","D. McGee, J. Quillian, W. M. Stephens; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.183",1961.06.24-Dandridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.24-Dandridge.pdf,1961.06.24,1961.06.24 +3886,18-Jun-1961,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Standing,Bill Hawkins,M,25,Lacerations to left leg,False,"White shark, 4.5 m ","News Tribune, 6/20/1961",1961.06.18-Hawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.18-Hawkins.pdf,1961.06.18,1961.06.18 +3887,Reported 06-Jun-1961,Boat,USA,Florida,"Ponte Vedra Beach, St. Johns County",Spearfishing on Scuba,W. Davidson,M,25,"No injury to diver or occupants of the boat, shark butted boat ",False,Hammerhead shark,"Florida Times-Union, 6/6/1961 ",1961.06.06.R-W.E.-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.06.R-W.E.-Davidson.pdf,1961.06.06.R,1961.06.06.R +3888,02-Jun-1961,Unprovoked,NEW BRITAIN,East New Britain Province,Rabaul,Spearfishing,male,M,25,Minor injuries to arm,False,Hammerhead shark,"A.M. Rapson, p.150",1961.06.02-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.02-Rabaul.pdf,1961.06.02,1961.06.02 +3889,01-Jun-1961,Provoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Rossun, Manus","Fishing, speared shark upset canoe & man fell in water",Marik-Pokas,M,19,"Left thigh severely bitten, but he regained the canoe, then shark bit canoe PROVOKED INCIDENT",False,2.7 m [9']shark,"J. McDonough; A. M. Rapson, p.147; Papua and New Guinea Agricultural Journal;",1961.06.01-Marik-Pokas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.06.01-Marik-Pokas.pdf,1961.06.01,1961.06.01 +3890,21-May-1961,Unprovoked,USA,California,"Tomales Point, Marin County",Free diving for abalone,Rodney Orr,M,20,"No injury, wetsuit bitten",False,White shark,"D. Miller & R. Collier; R. Collier, pp.32-33 ",1961.05.21-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.21-Orr_Collier.pdf,1961.05.21,1961.05.21 +3891,17-May-1961,Unprovoked,NEW BRITAIN,East New Britain Province,Kokopo,Collecting dynamited fish,male,M,20,Thumb & 2 fingers severed,False,White shark,"A.M. Rapson, p. 150]",1961.05.17-Kokopo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.17-Kokopo.pdf,1961.05.17,1961.05.17 +3892,15-May-1961,Unprovoked,USA,Florida,"Laguna Beach, Bay County",Walking in chest-deep water,G.L. Morris,M,52,Middle finger of left hand & right forearm lacerated,False,"Hammerhead shark, 500-llb ","G.L. Morris; Post Herald (Birmingham, Alabama) 5/18/1961; V.M. Coppleson (1962), p.249",1961.05.15-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.15-Morris.pdf,1961.05.15,1961.05.15 +3893,07-May-1961,Provoked,AUSTRALIA,Western Australia,"Quinn’s Rocks, south of Yanchep",Spearfishing,Graeme Arbuckle,M,52,"No injury, speared shark hit speargun PROVOKED INCIDENT",False,"Hammerhead shark, 500-llb ","The West Australian (Perth), 5/8/1961 ",1961.05.07-Arbuckle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.05.07-Arbuckle.pdf,1961.05.07,1961.05.07 +3894,30-Apr-1961,Invalid,USA,Florida,Palm Beach County,Splashing ,Earl Brewster,M,10,Abdomen abraded,False,Shark involvement not confirmed,H.D.Baldridge (1994) SAF Case #942,1961.04.30-NV-Brewster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.30-NV-Brewster.pdf,1961.04.30,1961.04.30 +3895,25-Apr-1961,Provoked,AUSTRALIA,New South Wales,"Trial Bay, north of Kempsey",Spearfishing,John Davy & John Pierpoint,M,10,Speared shark bit Davy's ankle & Pierpont's right leg PROVOKED INCIDENT,False,"Wobbegong shark, 1.4 m [4'6""] ","Kempsey Macleay Argus (N.S.W.), 4/27/1961",1961.04.25-Davy-Pierpoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.25-Davy-Pierpoint.pdf,1961.04.25,1961.04.25 +3896,21-Apr-1961,Unprovoked,MOZAMBIQUE,Gaza,"Sepulveda Beach, Xai Xai",Swimming,Brian Dewar,M,37,"Multiple injuries to both hands, left leg & foot",False,Zambesi shark,"D. Davies, pp.125-126; M. Levine,GSAF; Star, 4/23/1961",1961.04.21-Dewar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.21-Dewar.pdf,1961.04.21,1961.04.21 +3897,17-Apr-1961,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth Oceanarium,Diving,Kelvin Harvey,M,37,Shark bit swimfin after diver kicked shark PROVOKED INCIDENT,False,"2 m ""yellow belly"" captive shark. Shark destroyed by aquarium staff next day","G. Ross, M. Levine, GSAF",1961.04.17-Harvey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.17-Harvey.pdf,1961.04.17,1961.04.17 +3898,16-Apr-1961,Unprovoked,USA,Florida,"Fowey Rock Light, Miami",Spearfishing,Rolf Ericson,M,22,Thigh bitten,False,"Tiger shark, 3 m [10']","W. M. Stephens; H.D. Baldridge, p.166; Clark, p.102 ",1961.04.16.b-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.b-Ericson.pdf,1961.04.16.b,1961.04.16.b +3899,16-Apr-1961,Provoked,AUSTRALIA,New South Wales,Otford,Spearfishing,Douglas John Spooner,M,21,Speared shark bit his foot PROVOKED INCIDENT,False,"Wobbegong shark, O. barbatus, 1.8 m [6'], identified by G.P. Whitley","Sydney Morning Herald, 4/17/1961; G. P. Whitley; Perth Daily News, 4/19/1961; V.M. Coppleson (1962), p.252; H.D. Baldridge, p.165",1961.04.16.a-Spooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.16.a-Spooner.pdf,1961.04.16.a,1961.04.16.a +3900,14-Apr-1961,Unprovoked,AUSTRALIA,New South Wales,10 miles off Nambucca Heads onboard trawler,"Checking fish traps, fell into the water",Keith Davis,M,40,Tiny cuts & bruises on neck ,False," ""gummy"" shark (Rhizoprionodon or Loxodon) 1.2 m [4']","G. P. Whiltley citing Sydney Morning Herald, 4/15/1961 & 4/17/1961",1961.04.14-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.14-Davis.pdf,1961.04.14,1961.04.14 +3901,09-Apr-1961,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,"Swimming, using bundles of sticks as raft",Francisco Zimila,M,38,fatal,True,Zambesi shark,"D. Davies, p.125; Star, 4/14/1961",1961.04.09-Zimila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.09-Zimila.pdf,1961.04.09,1961.04.09 +3902,08-Apr-1961,Sea Disaster,PERSIAN GULF,United Arab Emirates,Dubai,Cargo ship Dara sank after collision with another ship during a severe storm,"V.M. Coppleson (1962), p.260",,38,fatal,True,Zambesi shark,"V.M. Coppleson (1962), p.260",1961.04.08-DaraDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.08-DaraDisaster.pdf,1961.04.08,1961.04.08 +3903,03-Apr-1961,Unprovoked,AUSTRALIA,Victoria,Flinders Island,Spearfishing,Joe Prosch,M,24,"No injury, right sleeve of wetsuit ripped, weight on belt gashed",False,"Grey nurse shark, 2,7 m [9'], 200-lb ","Sydney Morning Herald, 4/4/1961 ; Launceston Examiner; H.D. Baldridge, pp.133-134",1961.04.03-Prosch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.03-Prosch.pdf,1961.04.03,1961.04.03 +3904,Apr-1961,Provoked,AUSTRALIA,Western Australia,Rottnest Island,Spearfishing,Gerry Greaves,M,24,Speared shark bit his arm & seat of pants of diving suit PROVOKED INCIDENT,False,"Wobbegong shark, 1.4 m [4.6'] ","Perth Daily News, 4/19/1961",1961.04.00-Greaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.04.00-Greaves.pdf,1961.04.00,1961.04.00 +3905,30-Mar-1961,Unprovoked,AUSTRALIA,South Australia,Glenelg Breakwater,Spearfishing,Clyde Buttery,M,24,"Shark took his entire catch, lacerated his knee and tore his wet suit as it brushed past him",False,"Bronze whaler shark, 2.4 m [8'] Identified by Clyde Buttery","G.P. Whitley citing Sydney Morning Herald, 4/1/1961; V.M. Coppleson (1962), p.252 ",1961.03.30-Buttery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.30-Buttery.pdf,1961.03.30,1961.03.30 +3906,18-Mar-1961,Unprovoked,AUSTRALIA,Victoria,Lady Beach at Warrnambool,Swimming,Kenneth Smith,M,24,"Abdomen & arm bitten. Shark, holding him by the arm, leapt 4' to 5' above the surface",False,3 m [10'] shark,"Sun Herald (Sydney) 3/19/1961; Sydney Morning Herald, 3/20/1961; V.M. Coppleson (1962), p.246",1961.03.18-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.18-Smith.pdf,1961.03.18,1961.03.18 +3907,14-Mar-1961,Provoked,AUSTRALIA,Western Australia,Shark Bay,Fishing from dinghy,Kath. O’Neill,F,24,Hooked shark hauled on board bit her foot PROVOKED INCIDENT,False,3 m [10'] shark,"Sydney Daily Telegraph, no date; L. Schultz & M. Malin, p.548",1961.03.14-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.14-O'Neill.pdf,1961.03.14,1961.03.14 +3908,12-Mar-1961,Unprovoked,AUSTRALIA,South Australia,Aldinga Beach,Spearfishing,Brian Rodgers,M,21,Left leg bitten & left forearm lacerated,False,"White shark, 3.7 m [12'] ","V.M. Coppleson (1962), pp.182 & 252; H. Edwards, pp.61-63; H.D. Baldridge, p.56; J. West, ASAF",1961.03.12-Rodger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.12-Rodger.pdf,1961.03.12,1961.03.12 +3909,09-Mar-1961,Unprovoked,NORTH PACIFIC OCEAN,Wake Island (EnenKio),"Leeward side of island, directly in back of Mid-Pac barrel storage area",Free diving,James K. Stewart,M,33,Right elbow bitten,False,"Grey reef shark, 1.8 m [6'] grey reef shark, identified by Dr. L.P. L. Schultz based on photographs; identified as C. melanopterus by Stewart","J.K. Stewart; Albert Tester; V.M. Coppleson (1962), p.254; H.D. Baldridge, p.207",1961.03.09-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.09-Stewart.pdf,1961.03.09,1961.03.09 +3910,07-Mar-1961,Provoked,SOUTH AFRICA,KwaZulu-Natal,St. Lucia,Fishing,Johannes J. Rickert,M,44,Landed shark in boat bit his left leg PROVOKED INCIDENT,False,"Zambesi shark, 4'9""","GSAF; D. Davies, pp.112-113",1961.03.07-Rickert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.07-Rickert.pdf,1961.03.07,1961.03.07 +3911,Mar-1961,Unprovoked,FIJI,"19S, 178?E","Wotua Beach, 70 miles from Suva",Floating on back,Albert Bailey,M,44,Right forearm bitten,False,"Zambesi shark, 4'9""",A. Bailey,1961.03.00-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.03.00-Bailey.pdf,1961.03.00,1961.03.00 +3912,17-Feb-1961,Provoked,USA,Pennsylvania,"Fairmount Park Aquarium, Philadelphia",Cleaning a tank,Charles Peterson,M,30,Thumb lacerated by captive shark PROVOKED INCIDENT,False,"Zambesi shark, 4'9""","The Bee, 2/18/1961",1961.02.17.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.b-Peterson.pdf,1961.02.17.b,1961.02.17.b +3913,17-Feb-1961,Unprovoked,AUSTRALIA,Victoria,Mount Martha Beach,Standing,Mrs. Reg Fox,F,30,"Ankle bitten by small “gummy” shark, minor injury",False,"2' ""banjo shark""","Morning Peninsular Post (Victoria, Australia), 2/22/1961; V.M. Coppleson (1962), p.246",1961.02.17.a-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.17.a-Fox.pdf,1961.02.17.a,1961.02.17.a +3914,16-Feb-1961,Unprovoked,JAMAICA,unknown,unknown,Standing,British sailor from the F-107,M,30,fatal,True,"2' ""banjo shark""","E. C. Raney; V.M. Coppleson (1962), p.247 ",1961.02.16-BritishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.16-BritishSailor.pdf,1961.02.16,1961.02.16 +3915,12-Feb-1961,Unprovoked,SOUTH AFRICA,Western Cape Province,Sea Point,"Spearfishing, shark grabbed his white t-shirt and towed him ",Carl Derrick Benzoin,M,27,Torso bruised & abraded ,False,1.5 m [5'] shark,"C.D. Benzoin, M. Levine, GSAF; J. D'Aubrey, ORI",1961.02.12-Benzoin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.12-Benzoin.pdf,1961.02.12,1961.02.12 +3916,01-Feb-1961,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Nahoon,Swimming,Geoffrey Zimmerman,M,14,fatal,True,"2.1 m [7'], 90-kg shark","D. Davies & J. D'Aubrey; D. Davies, pp.122-124; M. Levine, GSAF",1961.02.01.b-Zimmerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.b-Zimmerman.pdf,1961.02.01.b,1961.02.01.b +3917,01-Feb-1961,Unprovoked,AUSTRALIA,Western Australia,Carnac Island,Collecting crayfish,Len McWhinney,M,14,No injury,False,"Grey nurse shark, 2.7 m [9'] ","H.D. Baldridge, p.134",1961.02.01.a-McWhinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.01.a-McWhinney.pdf,1961.02.01.a,1961.02.01.a +3918,Feb-1961,Invalid,USA,California,"Topanga Canyon Beach, Santa Monica Bay",Collecting crayfish,Steven Friedman,M,14,Considered a doubtful incident,False,Questionable incident,"R. Collier, G.. Helfman",1961.02.00-Friedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.02.00-Friedman.pdf,1961.02.00,1961.02.00 +3919,25-Jan-1961,Boat,SOUTH AFRICA,Western Cape Province,Frikkies Bay,Fishing for kob,"dinghy, occupants: Willem & Jan Groenwald",,14,"No injury to occupants, shark took a gaffed fish they were bringing aboard & hit their boat",False,4.6 m [15'] shark,"Cape Times, 1/27/1961; SAF Case #945",1961.01.25-Groenwald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.25-Groenwald-boat.pdf,1961.01.25,1961.01.25 +3920,22-Jan-1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Swimming,Michael Murphy,M,15,Left thigh bitten ,False,White shark,"M. Murphy, M. Levine, GSAF; A.C. Copley; G. D. Campbell; D. Davies, pp.111-112",1961.01.22-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.22-Murphy.pdf,1961.01.22,1961.01.22 +3921,15-Jan-1961,Provoked,AUSTRALIA,New South Wales,Cook Island,Collecting aquarium specimens,Robert Webb,M,27,Right calf bitten by lassoed shark on deck of surf ski PROVOKED INCIDENT,False,"Wobbegong shark, 1.5 m [5'] ","Mackay Daily Mercury (Queensland), 1/16/196; H.D. Baldridge, p.134",1961.01.15-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.15-Webb.pdf,1961.01.15,1961.01.15 +3922,06-Jan-1961,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Standing,Michael Land,M,13,"Right foot, leg and hand bitten",False,"White shark, based on bite pattern","GSAF; D. Davies & J. D'Aubrey; D. Davies, pp.109-111",1961.01.06.c-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.c-Land.pdf,1961.01.06.c,1961.01.06.c +3923,06-Jan-1961,Sea Disaster,ATLANTIC OCEAN,9.35N 79.35W,"East of La Grande Island, North of Panama Canal",Pacific Seafarer of US Navy,"C.R. Wolf, M.D.",,13,fatal,True,"White shark, based on bite pattern","C.R. Wolf, M.D.",1961.01.06.b-PacificSeafarer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.b-PacificSeafarer.pdf,1961.01.06.b,1961.01.06.b +3924,06-Jan-1961,Provoked,AUSTRALIA,Northern Territory,"Stokes Hill Wharf, Darwin",Fishing,Arthur Hopkins,M,13,Finger bitten by hooked shark PROVOKED INCIDENT,False,"Hammerhead shark, 1.8 m [6'] ","Darwin Northern Territory News, 1/10/1961",1961.01.06.a-Hopkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.06.a-Hopkins.pdf,1961.01.06.a,1961.01.06.a +3925,05-Jan-1961,Unprovoked,MOZAMBIQUE,Limpopo River,190 km to 240 km from the sea,Swimming,African child (male),M,13,Leg bitten ,False,Six Zambesi sharks seen to 1.5 m [5'] in length,"D. Davies, p.124-125",1961.01.05-AfricanChild.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.05-AfricanChild.pdf,1961.01.05,1961.01.05 +3926,03-Jan-1961,Unprovoked,SOUTH AFRICA,Western Cape Province,Strandfontein,Standing,Peter Hendricks,M,25 or 28,"Lower left leg bitten, abrasions on back of right leg",False,Six Zambesi sharks seen to 1.5 m [5'] in length,"Cape Times, 1/4/1961, M. Levine, GSAF",1961.01.03.b-Hendricks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.b-Hendricks.pdf,1961.01.03.b,1961.01.03.b +3927,03-Jan-1961,Invalid,SOUTH AFRICA,KwaZulu-Natal,Palm Beach,Standing,"D. Davies; M. Levine, GSAF",,25 or 28,Human remains (patella & remnants of black swim suit) found in 147-kg raggedtooth shark,False,Shark involvement prior to death was not confirmed,"D. Davies; M. Levine, GSAF",1961.01.03.a-Remains-in-raggie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.03.a-Remains-in-raggie.pdf,1961.01.03.a,1961.01.03.a +3928,Reported 02-Jan-1961,Boat,AUSTRALIA,Tasmania,Off Tasman Island,Ocean racing,yacht Southerly Buster,,25 or 28,"No injury to occupants, shark struck boat",False,Shark involvement prior to death was not confirmed,C. Black. GSAF,1961.01.02.R-SoutherlyBuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.02.R-SoutherlyBuster.pdf,1961.01.02.R,1961.01.02.R +3929,1961,Boat,AUSTRALIA,New South Wales,South coast,Fishing for mackerel,boat,,25 or 28,"No injury to occupant, shark took hooked fish then bit stern of boat",False,Shark involvement prior to death was not confirmed,"Brisbane Courier Mail, 12/30/1961 ",1961.00.00.e-Mackerel-fishing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.e-Mackerel-fishing.pdf,1961.00.00.e,1961.00.00.e +3930,01-Jan-1961,Unprovoked,COLUMBIA,Roncador Bank,"Roncador Bank, 135 nm north of San Andres ",Taking boat from California to Florida when it ran aground & he was swimming back to boat,Joe Chaney ,M,25 or 28,Leg bitten,False,1.8 m [6'] shark,V.M. Coppleson (1962) p.246,1961.01.01-Chaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.01.01-Chaney.pdf,1961.01.01,1961.01.01 +3931,1961,Unprovoked,NEW CALEDONIA,unknown,unknown,Spearfishing,SAF Case #1109,,25 or 28,Arm injured,False,1.8 m [6'] shark,SAF Case #1109,1961.00.00.d-NV-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.d-NV-NewCaledonia.pdf,1961.00.00.d,1961.00.00.d +3932,1961,Unprovoked,SENEGAL,Cap Vert Peninsula,Thiaroye Guedi,Free diving for molluscs,A.N.,M,20,fatal,True,> 3 m shark,S.Trape,1961.00.00.b-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.b-Senegal.pdf,1961.00.00.b,1961.00.00.b +3933,1961,Sea Disaster,USA,Hawaii,Maui,Light aircraft ditched at sea,5 people swimming for shore (pilot & 4 passengers),,20,fatal,True,> 3 m shark,"F. Dennis, p.20",1961.00.00.a-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1961.00.00.a-aircraft.pdf,1961.00.00.a,1961.00.00.a +3934,27-Dec-1960,Unprovoked,USA,Hawaii,"Maile Point, O'ahu",Swept out to sea while net fishing,Harold Riley,M,20,fatal,True,> 3 m shark,"L. Taylor (1993), pp.100-101",1960.12.27.b-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.b-Riley.pdf,1960.12.27.b,1960.12.27.b +3935,27-Dec-1960,Unprovoked,AUSTRALIA,New South Wales,"Bondi Beach, Sydney",Swept out to sea while net fishing,Mrs. Despo Snow-Christensen ,F,27,"Shark brushed past, minor injuries if any", N,3 m [10'] shark,"Baltimore Sun, 12/28/1960; Sydney Morning Herald 12/28/1960; V.M. Coppleson (1962), p.246; J. Green, p.35",1960.12.27.a -Despo Snow-Christensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.27.a -Despo Snow-Christensen.pdf,1960.12.27.a.,1960.12.27.a. +3936,24-Dec-1960,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Swimming,"Serame ""Petrus"" Sithole",M,25,fatal,True,"White shark, 3 m [10'], tooth fragment from wounds identified as that of a white shark","D. Davies & J. D'Aubrey; D. Davies, pp. 108-109; T. Wallett; M. Levine, GSAF",1960.12.24-Sithole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.24-Sithole.pdf,1960.12.24,1960.12.24 +3937,20-Dec-1960,Unprovoked,AUSTRALIA,Queensland,"College’s Crossing, 54 miles above mouth of the Brisbane River","Fishing, when line became snagged on rock & he dived into water to free it ",Lester McDougall,M,33,Left thigh lacerated, N,"Grey nurse shark, 1m ","Sydney Morning Herald, 12/21/1960; V.M. Coppleson (1962), p.246 ",1960.12.20-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.20-McDougall.pdf,1960.12.20,1960.12.20 +3938,01-Dec-1960,Unprovoked,AUSTRALIA,Queensland,"Colledge's Crossing, Brisbane River",Fishing,male,M,33,Bitten & survived,False,"Bull shark, 1m ","Sunday Mail, 3/27/1994, p.107",1960.12.01-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.12.01-BrisbaneRiver.pdf,1960.12.01,1960.12.01 +3939,27-Nov-1960,Unprovoked,AUSTRALIA,Queensland,"Black’s Beach, 9 miles north of Mackay",Swimming,Harry Bicknell,M,41,Right shoulder lacerated, N,3' shark,"Daily Mercury (Mackay), 11/28/1960 ",1960.11.27-Bicknell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.27-Bicknell.pdf,1960.11.27,1960.11.27 +3940,22-Nov-1960,Invalid,USA,Florida,"Hutchinson Island Beach, Martin County","Fell overboard, prop slashed arm",Sarah Peggy Sargent,F,51,fatal,True,Shark involvement prior to death was not confirmed,"News-Tribune (Fort Pierce, FL], 11/27/1960; SAF Case #803",1960.11.22-Sargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.22-Sargent.pdf,1960.11.22,1960.11.22 +3941,11-Nov-1960,Provoked,AUSTRALIA,Queensland,"Scott’s Point, Redcliffe Peninsula",Chasing shark out of bathing area while riding on a surf-ski,Ken O’Connell,M,17,"Shark knocked him off surf-ski, he inhaled water & had to be resuscitated PROVOKED INCIDENT", N,Shark involvement prior to death was not confirmed,"Courier-Mail (Queensland), 11/12/1960; L. Schultz & M. Malin, p.547 ",1960.11.11-O'Connell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.11-O'Connell.pdf,1960.11.11,1960.11.11 +3942,06-Nov-1960,Unprovoked,AUSTRALIA,Western Australia,Hamelin Bay,"Spearfishing, speared fish retreated to cave where shark grabbed his arm",Don Morrissey,M,24,Scratches on right upper arm, N,"Wobbegong shark, 1.8 m [6'] ","The West Australian (Perth), 11/7/1960; V.M. Coppleson (1962), p.252 ",1960.11.06-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.06-Morrissey.pdf,1960.11.06,1960.11.06 +3943,Nov-1960,Boat,SOUTH AFRICA,Western Cape Province,"5 km from Gordon’s Bay, False Bay",Hand lining for shad,"7.5 m boat, occupants: 8 men",,24,"No injury to occupants, shark bit 45 cm hole in hull",False,White shark (tooth fragments recovered from hull of boat),"D. Davies; T. Wallett, p.27-30",1960.11.00.d-GordonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.d-GordonsBay.pdf,1960.11.00.d,1960.11.00.d +3944,Nov-1960,Provoked,NEW GUINEA,Western District,Toro Passage,Hand lining for shad,Fisheries trainee,M,24,Left wrist bitten by netted shark placed in bottom of dinghy PROVOKED INCIDENT, N,"1.4 m [4'6""] blacktip shark","A.M. Rapson, p.147",1960.11.00.c-ToroPassage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.c-ToroPassage.pdf,1960.11.00.c,1960.11.00.c +3945,Nov-1960,Unprovoked,PAPUA NEW GUINEA,Central Province,Abau Subdistrict,Fishing,male,M,24,fatal,True,"1.4 m [4'6""] blacktip shark","A. Bleakley; A.M. Rapson, p.150 ",1960.11.00.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.11.00.b-Fisherman.pdf,1960.11.00.b,1960.11.00.b +3946,25-Oct-1960,Sea Disaster,USA,California,"Off Point Mugu, Ventura County",Ejected from F3H-2 aircraft ,"Lt Cmdr. Lawrence Ernest Scheer USN, pilot",M,36,"No injury, shark hit his foot & circled",False,"1.4 m [4'6""] blacktip shark","US Naval Aviation Safety Center; L. Schultz & M. Malin, p.562",1960.10.25-Scheer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.25-Scheer.pdf,1960.10.25,1960.10.25 +3947,24-Oct-1960,Boat,SOUTH AFRICA,Western Cape Province,"Jacobs Bay Reef, Saldanha Bay",Fishing for rock lobsters,"boat, occupants: 2 fishermen",,36,"No injury to occupants, shark rammed & bit boat",False,"White shark, 3.7 m to 4.6 m [12' to 15'] "," D. Davies, p.185; Natal Daily News, 10/25/1960; Natal Witness, 10/26/1960",1960.10.24-JacobsBayfishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.24-JacobsBayfishermen.pdf,1960.10.24,1960.10.24 +3948,01-Oct-1960,Invalid,AUSTRALIA,New South Wales,North Head,Fishing,B. Hooper ,M,24,"Swept off rocks & presumed to have drowned, shark seen in area",False,Shark involvement not confirmed,"Letter from L. Schultz to G. P. Whitley, dated 2/24/1961",1960.10.02-NV-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.02-NV-Hooper.pdf,1960.10.02,1960.10.02 +3949,Oct-1960,Unprovoked,PAPUA NEW GUINEA,New Britain,"East Nakanai, Talasea",Collecting shells,"A.M. Rapson, p.149",M,26,Injuries to leg & foot, N,Shark involvement not confirmed,"A.M. Rapson, p.149",1960.10.00.e-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.e-Talasea.pdf,1960.10.00.e,1960.10.00.e +3950,Oct-1960,Sea Disaster,RED SEA / INDIAN OCEAN,Enroute from Suez to Aden (Yemen),Enroute from Suez to Aden (Yemen),Cargo ship El Gamil entroute Suez to Yemen (Aden) when her cargo shifted and she sank. 19 Egyption sailors jumped into the water and swam for several hours before being bitten by sharks,"V.M. Coppleson (1962), p.260",M,26,fatal,True,Shark involvement not confirmed,"V.M. Coppleson (1962), p.260",1960.10.00.d-El-Gamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.d-El-Gamil.pdf,1960.10.00.d,1960.10.00.d +3951,Oct-1960,Invalid,USA,Florida,Haulover Inlet,Diving,John Taylor Wilson,M,26,"Apparently went missing while diving. Helicopter searching for him spotted school of sharks attacking a ""white object"" 15' below the surface",False,Questionable incident,"Miami Herald, 10/18/1960",1960.10.00.c-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.c-Wilson.pdf,1960.10.00.c,1960.10.00.c +3952,Oct-1960,Boat,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,boat,,26,"Shark rammed boat, breaching its hull",False,"White shark, 18 mm tooth fragment recovered from the hull",T. Wallett,1960.10.00.b-Gordon'sBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.b-Gordon'sBayBoat.pdf,1960.10.00.b,1960.10.00.b +3953,Oct-1960,Invalid,JOHNSTON ISLAND,unknown,unknown,"Free diving / photography, kneeling on sand",Raymond F. McAllister,M,37,"No injury, shark made threat display",False,Invalid,R. McAllister; SAF ISAF Case #958,1960.10.00.a-McAllister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.10.00.a-McAllister.pdf,1960.10.00.a,1960.10.00.a +3954,24-Sep-1960,Provoked,USA,South Carolina,"Atlantic Beach, Horry County",Fishing inside net,Theldon Gore,M,37,"Multiple superficial lacerations of leg, arm & hand PROVOKED INCIDENT",False,"2.4 m [8'], 600-lb shark","News (Lancaster, SC), 10/3/1960; H.D. Baldridge, p.142",1960.09.24-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.24-Gore.pdf,1960.09.24,1960.09.24 +3955,22-Sep-1960,Sea Disaster,PACIFIC OCEAN,180 miles southeast of Okinawa,180 miles southeast of Okinawa,R5D aircraft went down with 29 on board,male,M,37,One body sighted but not recovered due to shark activity,False,"2.4 m [8'], 600-lb shark","US Naval Aviation Safety Center; L. Schultz & M. Malin, p.562",1960.09.22-R5Daircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.22-R5Daircraft.pdf,1960.09.22,1960.09.22 +3956,18-Sep-1960,Boat,AUSTRALIA,Western Australia,Frenchman Bay,R5D aircraft went down with 29 on board,12' dinghy,,37,"No injury to occupants, toothmarks on bottom & side of dinghy",False,3.7 m [12'] shark,P.W. Gilbert,1960.09.18-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.18-Dinghy.pdf,1960.09.18,1960.09.18 +3957,02-Sep-1960,Invalid,MARSHALL ISLANDS,Eniwetok Atoll,Lagoon along Sand Island,Free diving / Spearfishing,E.S. Hobson ,M,37,"No injury, shark made a threat display",False,Invalid,E.S. Hobson; SAF ISAF Case #955,1960.09.02-E.S.Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.02-E.S.Hobson.pdf,1960.09.02,1960.09.02 +3958,01-Sep-1960,Invalid,MARSHALL ISLANDS,Eniwetok Atoll,Parry Island,Free diving / Spearfishing,F. Mautin,M,37,"No injury, shark made a threat display",False,Invalid,E.S. Hobson; ISAF Case #954,1960.09.01-Mautin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.09.01-Mautin.pdf,1960.09.01,1960.09.01 +3959,30-Aug-1960,Unprovoked,USA,New Jersey,"Ocean City, Cape May County",Swimming 3 miles offshore,Richard Chung,M,25,Right leg severely lacerated,False,Invalid,"R. Chung; Dr. Godfrey; V.M. Coppleson (1962), p.249; R. Skocik, p.172",1960.08.30-Chung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.30-Chung.pdf,1960.08.30,1960.08.30 +3960,29-Aug-1960,Sea Disaster,SENEGAL,Cap-Vert Peninsula,off Dakar,Air disaster: crash of Air France Super Constellation ,"The Daily Telegram (Colombus, 8/30/1960, p.3",,25,fatal,True,Invalid,"The Daily Telegram (Colombus, 8/30/1960, p.3",1960.08.29-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.29-Senegal.pdf,1960.08.29,1960.08.29 +3961,25-Aug-1960,Invalid,USA,Texas,30 miles east of Corpus Christi,Aircraft crashed into sea,Naval aviator,M,25,"Partial human remains spotted by helicopter, shark involvement, if any, may have been post-mortum",False,Shark involvement prior to death was not confirmed,"US Naval Aviation Safety Center; L. Schultz & M. Malin, p.558; SAF Case #1013",1960.08.25-NavalAviator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.25-NavalAviator.pdf,1960.08.25,1960.08.25 +3962,24-Aug-1960,Unprovoked,USA,Connecticut,"Off Eames Monument, Bridgeport, Fairfield County",Free diving,Clyde Trudeau,M,38,Superficial laceration of left arm,False,Shark involvement prior to death was not confirmed,M. McMahon,1960.08.24-Trudeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.24-Trudeau.pdf,1960.08.24,1960.08.24 +3963,Reported 22-Aug-1960,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Milne Bay Province,Free-diving,"""a native""",M,38,Lost left arm,False,Shark involvement prior to death was not confirmed,"The Age, 8/22/1960",1960.08.22.R-Milne-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.R-Milne-PNG.pdf,1960.08.22.R.,1960.08.22.R. +3964,22-Aug-1960,Unprovoked,USA,New Jersey,"Seaside Park, Ocean County",Free-diving,Thomas McDonald,M,14,Knee ripped to bone,False,Shark involvement prior to death was not confirmed,"T. Helm, p.250; R. Skocik, p.172",1960.08.22.a-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.22.a-McDonald.pdf,1960.08.22,1960.08.22 +3965,21-Aug-1960,Unprovoked,USA,New Jersey,"Sea Girt, Monmouth County",Standing in knee-deep water,John Brodeur,M,24,"Lower right leg bitten, surgically amputated 10 days later",False,Shark involvement prior to death was not confirmed,"C. G. Samaha, M.D., J. Filoramo; H. Axelrod; R. Skocik, p.172;",1960.08.21-Brodeur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.21-Brodeur.pdf,1960.08.21,1960.08.21 +3966,14-Aug-1960,Invalid,MOZAMBIQUE,Delagoa Bay,Bella Vista,boat with 46 people on board capsized,"L. Schultz & M. Malin, p.563; SAF Case #760",,24,1 survivor,False,Shark involvement not confirmed,"L. Schultz & M. Malin, p.563; SAF Case #760",1960.08.14-NV-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.14-NV-Mozambique.pdf,1960.08.14,1960.08.14 +3967,10-Aug-1960,Provoked,USA,Florida,Key Largo Sound,Holding shark on leader & dangling it above the water,Richard Henn,M,15,Right hand bitten by hooked shark PROVOKED INCIDENT,False,"Lemon shark, 1164 mm, immature male, identified by V.G. Springer",D. Mayo; V. Springer,1960.08.10-Henn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.10-Henn.pdf,1960.08.10,1960.08.10 +3968,04-Aug-1960,Provoked,ENGLAND,In the English Channel ,Off the south Devon coast,Helping angler land a shark,William Capel,M,25,Arm lacerated elbow to wrist PROVOKED INCIDENT,False,80-lb hooked shark,"Newcastle Morning Herald (NSW, Australia), 8/6/1960; Japan Times, 8/6/1960; H.D. Baldridge, p.15",1960.08.04.b-Capel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.b-Capel.pdf,1960.08.04.b,1960.08.04.b +3969,04-Aug-1960,Unprovoked,USA,Delaware,"Mispillion Light, Delaware Bay","Fishing, Struck by another shark when removing shark from line",Russell Saylor,M,46,Hand lacerated,False,2.4 m [8'] shark,"Index (Dover, Delaware), 8/12/1960; V.M. Coppleson (1962), p.249;",1960.08.04.a-Saylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.04.a-Saylor.pdf,1960.08.04.a,1960.08.04.a +3970,Aug-1960,Unprovoked,USA,South Carolina,Parris Island,Swimming from camp,Young Marine recruit,M,46,fatal,True,2.4 m [8'] shark,"V.M. Coppleson (1962), p.249",1960.08.00-marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.08.00-marine.pdf,1960.08.00,1960.08.00 +3971,27-Jul-1960,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Taupota, Samarai ",Spearfishing,John Klaso,M,25,"Arm severed, torso severely lacerated",False,2.4 m [8'] shark,"L.C. Yelland; I.S. Reid; A.M. Rapson, p.150",1960.07.27-Klaso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.27-Klaso.pdf,1960.07.27,1960.07.27 +3972,05-Jul-1960,Unprovoked,USA,Mississippi,Mississippi City,Pulling raft out to ride to shore,"Henry Hanson, Jr.",M,17,Leg bitten,False,2.4 m [8'] shark,"V.M. Coppleson (1962), p.249",1960.07.05-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.05-Hanson.pdf,1960.07.05,1960.07.05 +3973,03-Jul-1960,Provoked,USA,Virginia,Hog Island,"Fishing, tossing netted shark onboard",Elsworth Smith,M,41,Right arm bitten PROVOKED INCIDENT,False,"""sand shark""","Times (Salisbury, Maryland), 7/7/1960 ",1960.07.03-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.03-Smith.pdf,1960.07.03,1960.07.03 +3974,02-Jul-1960,Unprovoked,PAPUA NEW GUINEA,Madang,"Bimat, Bogia",Fishing,an Aid Post orderly,M,41,Right buttock slashed,False,"""sand shark""","A.M. Rapson, p.150",1960.07.02-Orderly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.07.02-Orderly.pdf,1960.07.02.a,1960.07.02.a +3975,29-Jun-1960,Provoked,USA,South Carolina,"Little River Beach, Horry County",Surf fishing,Monte Gray,M,41,"Lacerations to calf, wrist & thumb by hooked shark. PROVOKED INCIDENT",False,7' shark,"C. Creswell, GSAF; Florence Morning News 6/30/1960",1960.06.29-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.29-Gray.pdf,1960.06.29,1960.06.29 +3976,27-Jun-1960,Provoked,NEW ZEALAND,Cook Strait,Tory Channel,Shark fishing,boat (a whale chaser),,41,Harpooned shark bit boat PROVOKED INCIDENT,False,"White shark, 15'2"" ","The Age, 6/28/1960; SAF Case #772",1960.06.27-b-Harpooned-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27-b-Harpooned-shark.pdf,1960.06.27.b,1960.06.27.b +3977,27-Jun-1960,Provoked,NORTH SEA,"Unknown, treated at Wick, SCOTLAND","On board East German fishing trawler, I Mai",Fishing,Hans Yoachim Schapper,M,18,Right arm bitten by shark taken onboard in net PROVOKED INCIDENT,False,"""A small shark""","Edinburg Evening News, 7/6/1960; Dundee Evening Telegraph, 7/6/1960; H.D. Baldridge, p.14; Clark, p.209",1960.06.27.a-Schapper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.27.a-Schapper.pdf,1960.06.27.a,1960.06.27.a +3978,24-Jun-1960,Unprovoked,USA,Florida,"2 miles east of Dania Beach, Broward County",Scuba diving,William F. Fey,M,39,"No injury, shark harrassed diver & attempted to bite his swimfins",False,"Mako shark, 1.8 m to 2.1 m [6' to 7'] with hook & wire leader caught in mouth",W.F. Fey,1960.06.24-Fey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.24-Fey.pdf,1960.06.24,1960.06.24 +3979,07-Jun-1960,Invalid,USA,California,"10 miles off Santa Barbara, Santa Barbara County","Testing classified underwater electronic gear for Raytheon Corporation, vessel torn apart by explosion","Paul Timothy Lovette, Dr. Neal Beardsley, James C. Russell, Harold H. Mackie, Dale Howard & Diego J. Terres on 42' Navy craft, Marie",M,"37, 67, 35, 27, ? & 27","Legs & arms bitten, coroner unable to determine if injuries occurred before death.",False,Shark involvement prior to death was not confirmed,"L.A. Times, 6/10/1960; L. Schultz & M. Malin, p.560; SAF Case #724",1960.06.07-Raytheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.07-Raytheon.pdf,1960.06.07,1960.06.07 +3980,05-Jun-1960,Unprovoked,PHILIPPINES,Corregidor Island,Corregidor Island,"Diving for shells, saw shark circling wife near the surface, intercepted shark & it pulled him beneath the water",Leonardo Mendoza,M,58,fatal,True,Shark involvement prior to death was not confirmed,"Manila Daily Bulletin 6/6/1960; V.M. Coppleson (1962), p.254 ",1960.06.05-Mendoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.05-Mendoza.pdf,1960.06.05,1960.06.05 +3981,04-Jun-1960,Unprovoked,USA,Georgia,"North picnic area, Jekyll Island, Glynn County",Swimming,"John William Jones, an Ensign in US Navy",M,24,Lower left leg & foot bitten,False,Shark involvement prior to death was not confirmed,"W. L. Jones, M.D.; SAF Cases # 897 & 1476",1960.06.04-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.06.04-Jones.pdf,1960.06.04,1960.06.04 +3982,29-May-1960,Unprovoked,PANAMA,San Blas Islands,Off Diable Island,"Spearfishing, free diving, possibly ascended into path of cruising shark",Eddie Dawkins,M,27,Face lacerated,False,Shark involvement prior to death was not confirmed,"E. Dawkins, M.D.",1960.05.29-Dawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.29-Dawkins.pdf,1960.05.29,1960.05.29 +3983,24-May-1960,Unprovoked,BERMUDA,Paget,Elbow Beach / Coral Beach,Free diving but treading water at surface,Louis Goiran,M,25,Foot bitten,False,"Dusky shark, 2.7 m [9'] dusky shark C. obscurus identified by S. Springer on tooth recovered","L.Goiran; S. Waterman; Royal Gazette (Hamilton, Bermuda), 5/25/1960; V.M. Coppleson (1962), p.246; Randall in Sharks & Survival, p.354",1960.05.24-Goiran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.24-Goiran.pdf,1960.05.24,1960.05.24 +3984,19-May-1960,Unprovoked,USA,California,"Aptos, Santa Cruz County",Swimming ,Suzanne Marie Theriot,F,16,"Left leg bitten, surgically amputated below the knee",False,"White shark, 4 m to 5 m [13' to 16.5'] ","D. Miller & R. Collier; R. Collier, pp.31-32; V.M. Coppleson (1962), p.249; H.D. Baldridge, p.71 ",1960.05.19-Theriot_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.19-Theriot_Collier.pdf,1960.05.19,1960.05.19 +3985,16-May-1960,Provoked,USA,Florida,"Lignum Vitae Channel, Florida Keys, Monroe County",Swimming ,"16' skiff, occupant: W.A. Starck, II",,16,"No injury, harpooned shark bit hull, leaving tooth fragments. PROVOKED INCIDENT",False,"Lemon shark, 1.8 m [6'] male, N. breviostris, identified by W.A. Stark II, later the same day a 6'8"" pregnant female lemon shark bit the bow of the boat","Randall in Sharks and Survival, p.351 Note: Stark's boat also rammed by shark a lemon shark several years earlier",1960.05.16-Starck-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.16-Starck-boat.pdf,1960.05.16,1960.05.16 +3986,01-May-1960,Unprovoked,PAPUA NEW GUINEA,Madang,Taludig,Swimming ,Anonymous,,16,fatal,True,"Lemon shark, 1.8 m [6'] male, N. breviostris, identified by W.A. Stark II, later the same day a 6'8"" pregnant female lemon shark bit the bow of the boat","A.M. Rapson, p.150",1960.05.01-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.05.01-Taludig.pdf,1960.05.01,1960.05.01 +3987,30-Apr-1960,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Amanzimtoti,Treading water,Mike Hely,M,16,Multiple major injuries,False,"White shark, 2.1 m [7'] based on tooth pattern","M. Hely, E. Kerns, M. Levine, GSAF; G.D. Campbell; D. Davies, pp.102-108; Tim Wallett",1960.04.30-Hely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.30-Hely.pdf,1960.04.30,1960.04.30 +3988,24-Apr-1960,Unprovoked,USA,California,"Tomales Point, Marin County",Skindiving for abalone (but at surface),Frank I. Gilbert,M,48,Foot & swim fin bitten ,False,"White shark, 4.9 m [16'] ","F.I. Gilbert; Follett, p. 192-198; D. Miller & R. Collier; R. Collier, pp.30-31; V.M. Coppleson (1962), p.255; H.D. Baldridge, p.71",1960.04.24-Gilbert_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.24-Gilbert_Collier.pdf,1960.04.24,1960.04.24 +3989,22-Apr-1960,Provoked,AUSTRALIA,Western Australia,Rottnest Island,"Fishing, hauling in a set line",Ted Nelson onboard fishing boat Wayfarer,M,48,4 fingers of left hand were lacerated by shark he had shot in the head PROVOKED INCIDENT,False,"Bronze whaler shark, 3 m [10'], 200-lb","L. Schultz & M. Malin, p.546",1960.04.22-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.22-Nelson.pdf,1960.04.22,1960.04.22 +3990,Reported 20-Apr-1960,Provoked,SOUTH AFRICA,Eastern Cape Province,Port Alfred,Fishing,P. Wagener,M,48,Gaffed shark bit his ankle PROVOKED INCIDENT,False,"Raggedtooth shark, 100-lb ","Eastern Province Herald, 4/20/1960",1960.04.20.R-Wagener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.20.R-Wagener.pdf,1960.04.20.R,1960.04.20.R +3991,14-Apr-1960,Invalid,BERMUDA,"33N, 68W",Royal Canadian Navy CS2F-1 aircraft ditched in the sea 180 nautical miles WNW of Bermuda at 01h30,Floating on a raft,"Crew of aircraft: McGreevy, Beakley, Rosenthal, Ryan & Hodge",M,"21, 34,24 & 35","No injury, 5 sharks bumped raft",False,Questionable incident,"G.S. Beakley, RCN; L. Schultz & M. Malin, p.557; SAF Case #886",1960.04.14-Beakley-recheck text-March.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.14-Beakley-recheck text-March.pdf,1960.04.14,1960.04.14 +3992,12-Apr-1960,Unprovoked,AUSTRALIA,New South Wales,"Horseshoe Bay, near Kempsey",Surfing,Ivan Chandler,M,17,Right arm & side bruised,False,"White shark, 3.7 m [12'] ","Macleay Argus (NSW), 4/14/1960; V.M. Coppleson (1962), p.245",1960.04.12-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.12-Chandler.pdf,1960.04.12,1960.04.12 +3993,10-Apr-1960,Provoked,AUSTRALIA,Western Australia,Off Rottnest Island,"Spearfishing, shot a sandtiger shark. Cord to spear tangled round his legs & a wave washed him onto a reef.",Mick Coleman,M,17,"Bruises & minor injuries from reef, not the shark PROVOKED INCIDENT",False,"Sandtiger shark, 2.1 m [7'] ","V.M. Coppleson (1962), p.252",1960.04.10-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.10-Coleman.pdf,1960.04.10,1960.04.10 +3994,03-Apr-1960,Unprovoked,AUSTRALIA,Victoria,"Canadian Bay near Mount Eliza, 30 miles from Melbourne",Spearfishing,William Black,M,17,Minor cuts & bruises on face & neck,False,1.5 m [5'] shark,"Sydney Morning Herald, 4/4/1960; H.D. Baldridge,p.133",1960.04.03.b-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.b-Black.pdf,1960.04.03.b,1960.04.03.b +3995,03-Apr-1960,Unprovoked,AUSTRALIA,New South Wales,Off Broughton Island near Port Stephens,"Speared a grouper, saw shark but it came for him instead of the fish so he fired spear into shark’s mouth. Then shark took grouper but unable to swallow because of the spear in its mouth.",Kenneth Morris,M,17,Minor injuries to hand,False,"Bronze whaler shark, 3.7 m [12'] identified by G.P. Whitley based on description","G. P. Whitley; V.M. Coppleson (1962), p.252",1960.04.03.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.03.a-Morris.pdf,1960.04.03.a,1960.04.03.a +3996,01-Apr-1960,Provoked,AUSTRALIA,South Australia,Hog Bay,Shark fishing,"launch, occupant Clive Whitrow, Dick Kuhne & Jim Pergola",,17,Hooked shark bit stern PROVOKED INCIDENT,False,White shark,"The News (Adelaide), 4/1/1960",1960.04.01-WhitrowLaunch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.01-WhitrowLaunch.pdf,1960.04.01,1960.04.01 +3997,Apr-1960,Unprovoked,FIJI,Vanua Levu,Off the Bua coast,Fishing in shoulder-deep water,Fijian woman,F,17,fatal,True,White shark,"Wellington Evening Post, 4/29/1960",1960.04.00.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.c-woman.pdf,1960.04.00.c,1960.04.00.c +3998,Apr-1960,Provoked,PHILIPPINES,Luzon Island,Bataan,"Fishing, hooked shark towed boat out to sea, storm swamped boat",Nicaso Balanoba & Julian Dona,M,17,fatal,True,White shark,"P. Gilbert (1961); H.D. Baldridge, p.152",1960.04.00.b-Balanoba-Dona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.b-Balanoba-Dona.pdf,1960.04.00.b,1960.04.00.b +3999,Apr-1960,Boat,SOUTH AFRICA,Western Cape Province,Saldanha Bay,Fishing,5 m skiboat,,17,Shark rammed boat & bit transom,False,White shark (tooth fragments recovered),"T. Wallett, p.27",1960.04.00.a-SaldanhaSkiboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.04.00.a-SaldanhaSkiboat.pdf,1960.04.00.a,1960.04.00.a +4000,31-Mar-1960,Unprovoked,USA,Florida,"Off Boca Raton Hotel & Club, Boca Raton, Palm Beach County",Treading water,Robert B. Winkler,M,42,"Ankle bitten, hand injured while striking shark",False,"1.2 m [4'], possibly larger shark","V.M. Coppleson (1962), p.249, erroneously lists the date as 3/31/1961; H.D. Baldridge, p.142",1960.03.31-Winkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.31-Winkler.pdf,1960.03.31,1960.03.31 +4001,28-Mar-1960,Unprovoked,GUAM,unknown,unknown,"Spearfishing, carrying fish on belt",Enrique Matao,M,44,Thigh bitten,False,1.2 m [4'] shark,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.142",1960.03.28-Metao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.03.28-Metao.pdf,1960.03.28,1960.03.28 +4002,29-Feb-1960,Unprovoked,AUSTRALIA,Tasmania,Ralph Bay,"Wading, fishing for flounder",Malcolm Robertson & Tom Hasler,M,30 & 32,"No injury, Robertson knocked over & Hasler brushed by a shark",False,Two 2.1 m [7'] sharks,Hobart Mercury 3/3/1960,1960.02.29-Robertson-Hasler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.29-Robertson-Hasler.pdf,1960.02.29,1960.02.29 +4003,27-Feb-1960,Unprovoked,NEW ZEALAND,North Island,"Mangawhai, near Wellsford",Spearfishing,Laurie Ross ,M,22,"No injury, leg bumped by shark's tail",False,"Bronze whaler shark,4 m [13'] ","R.D. Weeks, GSAF; Auckland Star, 2/29/1960; V.M. Coppleson (1962), pp.253-254",1960.02.27.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.b-Ross.pdf,1960.02.27.b,1960.02.27.b +4004,27-Feb-1960,Invalid,USA,Hawaii,"Between Keawakapu & Makena, Maui",Spearfishing,John Benjamin,M,36,Left forearm lacerated,False,"According to Benjamin, the injury was inflicted by a barracuda, not a shark","Honolulu Star Bulletin, 3/1 /1960; V.M. Coppleson (1962), p.246; J. Borg, p.73; L. Taylor (1993), pp.100-101; SAF Case #662",1960.02.27.a-Benjamin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.27.a-Benjamin.pdf,1960.02.27.a,1960.02.27.a +4005,24-Feb-1960,Provoked,SENEGAL,Casamance,Ziguinchor,Fishing,Souleymane S.,M,36,Calf bitten by shark caught in net PROVOKED INCIDENT,False,"According to Benjamin, the injury was inflicted by a barracuda, not a shark",J. Cadenat; Dr. T. Farah,1960.02.24-Souleyman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.24-Souleyman.pdf,1960.02.24,1960.02.24 +4006,19-Feb-1960,Unprovoked,PAPUA NEW GUINEA,Central Province,"Tupuselei Village, about 40 miles east of Port Moresby",Spearfishing,Doas Hehuni,M,26,fatal,True,"Tiger shark, 3.4 m [11'] captured","A.M. Rapson, p.150; V.M. Coppleson (1962), p.254",1960.02.19-Tupuselei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.19-Tupuselei.pdf,1960.02.19,1960.02.19 +4007,10-Feb-1960,Provoked,AUSTRALIA,New South Wales,Near Bondi Beach,Shark fishing,"12' open motor boat, occupants Jack Platt & Peter Keyes",,26,No injury to occupants. Hooked shark rammed boat PROVOKED INCIDENT,False,"Tiger shark, 14' ","Sydney Daily Telegraph, 2/11/1960",1960.02.10-Bondi-Tiger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.10-Bondi-Tiger.pdf,1960.02.10.,1960.02.10. +4008,07-Feb-1960,Provoked,AUSTRALIA,New South Wales,Wattamolla National Park,Spearfishing,John Gilles & Harry Dowswell,M,20,"No injury, speared shark towed Gilles 200 yards & tore hole in diving suit, and hit Dowswell's back with its tail PROVOKED INCIDENT",False,"Grey nurse shark, 2.9 m [9'6""] ",Unidentified press clipping;. SAF Case #203,1960.02.07-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.07-Gillies.pdf,1960.02.07,1960.02.07 +4009,03-Feb-1960,Invalid,USA,Hawaii,Maui,S2F-1 airplane crashed immediately after carrier take-off,Crew of Anti-submarine Squadron 23,,20,"Of crew of 4, only 1 person survived (broken legs but no shark bites). Within 20 minutes of his rescue large sharks were in area. No remains of other 3 crew recovered, and shark involvement in their deaths is questionable. ",False,Shark involvement prior to deaths was not confirmed,"L. Schultz & M. Malin, p.562; SAF Case #870 ",1960.02.03-S2F-1-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.02.03-S2F-1-aircraft.pdf,1960.02.03,1960.02.03 +4010,30-Jan-1960,Unprovoked,PAPUA NEW GUINEA,Madang (WO),"Off Taludig Village, at mouth of the Murnass River",S2F-1 airplane crashed immediately after carrier take-off,"Upad, a boy",M,20,"Lower left leg bitten, surgically amputated",False,"3.5 m [11'6""] shark captured","A.M. Rapson, p.150; V.M. Coppleson (1962), p.248 ",1960.01.30-Upad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.30-Upad.pdf,1960.01.30,1960.01.30 +4011,26-Jan-1960,Sea Disaster,Australia,"Between Timor & Darwin, Australia","Between Timor & Darwin, Australia",Portuguese Airliner with 9 people aboard went down. ,"V.M. Coppleson (1962), p.260",,20,"As searchers approached wreckage, sharks circled one canoe & seized oar from another.",False,"3.5 m [11'6""] shark captured","V.M. Coppleson (1962), p.260",1960.01.26-Portuguese airliner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.26-Portuguese airliner.pdf,1960.01.26,1960.01.26 +4012,21-Jan-1960,Boat,AUSTRALIA,South Australia,Millicent,Portuguese Airliner with 9 people aboard went down. ,"13' dinghy, occupant S. Smith, Leenee Dee & Marie Farmer",,20,"No injury to occupants, shark lifted boat",False,Blue pointer,Hobart Mercury 1/22/1960,1960.01.21 - Smith dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.21 - Smith dinghy.pdf,1960.01.21,1960.01.21 +4013,16-Jan-1960,Unprovoked,AUSTRALIA,New South Wales,"Just below Roseville Bridge, opposite Killarney picnic reserve, Middle Harbor, Sydney",Free diving,Kenneth William Murray,M,13,fatal,True,Bull shark,"T.W. Brown, pp.1 -6; H.D. Baldridge, p.196; A. Sharpe, pp76-77; H. Edwards, pp.100 & 108",1960.01.16-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.16-Murray.pdf,1960.01.16,1960.01.16 +4014,13-Jan-1960,Provoked,AUSTRALIA,Western Australia,Geraldton,"Fishing, lifting shark out of craypot",Ron Christmas,M,13,Upper leg bitten PROVOKED INCIDENT,False,Wobbegong shark,"Western Australian Perth Daily News, 1/4/1960",1960.01.13-Christmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.13-Christmas.pdf,1960.01.13,1960.01.13 +4015,07-Jan-1960,Boat,AUSTRALIA,Tasmania,Eaglehawk Neck,Setting crayfish pots,"16' boat, occupant: W. Lonergan",,13,"No injury to occupant, shark rammed boat",False,4.9 m [16'] shark,"G.P. Whitley citing Mercury (Hobart), 1/8/1960",1960.01.07-Lonergan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.07-Lonergan.pdf,1960.01.07,1960.01.07 +4016,01-Jan-1960,Provoked,SOUTH AFRICA,Western Cape Province,Muizenberg,"Standing, watching seine netters",Mrs. Burman,F,13,Left leg bitten by shark that escaped net PROVOKED INCIDENT,False,4.9 m [16'] shark,GSAF,1960.01.01-Burman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.01.01-Burman.pdf,1960.01.01,1960.01.01 +4017,1960,Unprovoked,NICARAGUA ,Pacific coast,San Jan del Sur,Bathing,boy,M,13,Survived,False,3.7 m to 4.6 m [12' to 15'] shark,J. McAlpine,1960.00.00.j-Nicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.j-Nicaragua.pdf,1960.00.00.j,1960.00.00.j +4018,1960,Unprovoked,GRENADA,St. Georges ,Black Point Bay,Spearfishing,Julian Bain,M,9,Toe bitten,False,3.7 m to 4.6 m [12' to 15'] shark,"E. Pace, FSAF",1960.00.00.i-Bain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.i-Bain.pdf,1960.00.00.i,1960.00.00.i +4019,Early summer 1960,Invalid,CARIBBEAN SEA,"Between Key West, Florida & Guantanamo Bay, Cuba","Between Key West, Florida & Guantanamo Bay, Cuba",Aircraft crashed into sea,"male, airline pilot",M,9,"Questionable. Recovered flight gear was ""completely shredded by sharks"" but pilot may have died when plane hit the water,",False,Shark involvement prior to death was not confirmed,U.S. Naval Aviation Safety Center,1960.00.00.h-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.h-aircraft.pdf,1960.00.00.h,1960.00.00.h +4020,Late 1960s,Unprovoked,SRI LANKA,Eastern Province,Pigeon Island,Spearfishing,Trevor Ferdinands,M,9,No injury,False,Blacktail reef shark,R I. DeSilva,1960.00.00.g-Ferdinands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.g-Ferdinands.pdf,1960.00.00.g,1960.00.00.g +4021,1960s,Unprovoked,SRI LANKA,Eastern Province,"Manayaweli Cove, Trincomalee",Collecting ornamental fish,Rodney Jonklass,M,9,"No injury, beat off shark with his collecting net",False,Blacktip reef shark,R I. DeSilva,1960.00.00.f-Jonklaas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.f-Jonklaas.pdf,1960.00.00.f,1960.00.00.f +4022,1960-1961,Unprovoked,FIJI,Northwest of Viti Levu,"Covull Reef, near Lautoka",Spearfishing,Lindsay Phillips,M,9,"Right arm abraded, circular piece of tissue removed from left calf",False,Blacktip reef shark,"V.M Coppleson (1962), p.253",1960.00.00.e-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.e-Phillips.pdf,1960.00.00.e,1960.00.00.e +4023,1960,Unprovoked,PAPUA NEW GUINEA,Madang,Madang,"Spear fishing, removing fish from spear",Sek,M,16,fatal,True,Blacktip reef shark,A.M. Rapson,1960.00.00.d-Sek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.d-Sek.pdf,1960.00.00.d,1960.00.00.d +4024,1960,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"West Nakanai, Talasea",Fishing,male,M,20,Slight lacerations to leg,False,Blacktip reef shark,"A.M. Rapson, p.150",1960.00.00.c-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.c-Talasea.pdf,1960.00.00.c,1960.00.00.c +4025,Ca. 1960,Unprovoked,MOZAMBIQUE,Gaza,Xai Xai,Swimming,Miss Fillardo,F,5,fatal,True,Blacktip reef shark,"M. Levine, GSAF",1960.00.00.b-Fillardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.b-Fillardo.pdf,1960.00.00.b,1960.00.00.b +4026,Ca. 1960,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Wading,Joyce Greig,F,5,"Heel lacerated, hand lacerated & abraded",False,2.1 m [7'] shark,"T. Greig, M. Levine, GSAF",1960.00.00.a-Greig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1960.00.00.a-Greig.pdf,1960.00.00.a,1960.00.00.a +4027,29-Dec-1959,Boat,AUSTRALIA,Queensland,Scotts Point Beach ,Paddling,"12' ski, occupants: Bill Dyer & Cliff Burgess ",,5,No injury to occupants,False,3.7 m [12'] tiger shark,"Herald, (Redcliffe), 12/31/1959",1959.12.29-Burgess-Dyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.29-Burgess-Dyer.pdf,1959.12.29,1959.12.29 +4028,28-Dec-1959,Boat,AUSTRALIA,New South Wales,"Leichardt, Sydney",Fishing,"plywood dinghy, occupants: Jack Deegan & Trevor Millett",,50 & 30,No injury to occupants,False,2.4 m [8'] shark,"Daily Mirror (Sydney), 12/29/1959",1959.12.28-NV-Deegan-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.28-NV-Deegan-dinghy.pdf,1959.12.28,1959.12.28 +4029,26-Dec-1959,Unprovoked,PAPUA NEW GUINEA,Rigo subdistrict,Kaparoka,Swimming underneath house on pilings,Manama Mari,,13,fatal,True,2.4 m [8'] shark,"A. M. Rapson, p.150; P. Gilbert, L. Schultz & S. Springer (1960); Note: A. Resciniti, p.26, lists date as 26-Nov-1959",1959.12.26-Mari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.26-Mari.pdf,1959.12.26,1959.12.26 +4030,19-Dec-1959,Unprovoked,AUSTRALIA,Queensland,"Off Wynnum in Moreton Bay, near Brisbane",Dived from dinghy to retrieve oar in heavy seas,Stanley Arthur Mullen,M,29,fatal,True,2.4 m [8'] shark,"P. Gilbert, L. Schultz & S. Springer (1960); V.M. Coppleson (1962), p.245; T. Peake, GSAF",1959.12.19.b-Mullens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.b-Mullens.pdf,1959.12.19.b,1959.12.19.b +4031,19-Dec-1959,Sea Disaster,PHILIPPINES,Masbate,Balud,ship M.V. Rizal sank during typhoon,"Mamerto Daanong, Tomas Inog & others",M,29,fatal,True,2.4 m [8'] shark,"V.M. Coppleson (1962), p.259 ",1959.12.19.a - MV-Rizal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.19.a - MV-Rizal.pdf,1959.12.19.a,1959.12.19.a +4032,11-Dec-1959,Provoked,AUSTRALIA,Victoria,"Altona, Melbourne","Spearfishing, Smith & Walker touched shark with tip of their guns",Barry Smith & Harold Walker,M,17 & 35,"Smith hit by tail of shark, Walker sustained cuts on his wrist PROVOKED INCIDENT",False,2.7 m [9'] shark,"V.M. Coppleson (1962), p.252;",1959.12.11-Smith-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.11-Smith-Walker.pdf,1959.12.11,1959.12.11 +4033,07-Dec-1959,Invalid,AUSTRALIA,South Australia,Laura Bay,Spearfishing,3 males,M,17 & 35,"No injury, shark made threat display, one diver shot shark in jaw, then they killed shark with knives ",False,Invalid,"V.M. Coppleson (1962), p.252",1959.12.07-LauraBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.07-LauraBay.pdf,1959.12.07,1959.12.07 +4034,03-Dec-1959,Boat,NEW ZEALAND,North Island,Moko Hinau ,Fishing for snapper,"dinghy, occupant: Don Ashton",M,17 & 35,"No injury to occupant, shark sank dinghy",False,"Mako shark, 4.3 m [14']",Captain C. Morris,1959.12.03-boat-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.03-boat-Ashton.pdf,1959.12.03,1959.12.03 +4035,Dec-1959,Sea Disaster,MALDIVE ISLANDS,400 miles southeast of Sri Lanka,400 miles southeast of Sri Lanka,17 Maldivians adrift in open boat for 31 days,child,F,3,fatal,True,"Mako shark, 4.3 m [14']","Dundee Evening Telegraph, 12/12/1959; P. Gilbert; V.M. Coppleson (1962), pp.247 & 259",1959.12.00.a-b-Maldivians.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.12.00.a-b-Maldivians.pdf,1959.12.00,1959.12.00 +4036,29-Nov-1959,Unprovoked,AUSTRALIA,Victoria,"Fairhaven Beach, Lorne",Body surfing,Christopher Holland,M,19,"Thighs bitten, right hand lacerated",False,3.5 m [11.5'] shark,"Evening Star (Washington, D.C.), 11/30/1959; Sydney Morning Herald, 12/2/1959; A. Sharpe, p.114;P. Gilbert, L. Schultz & S. Springer (1960)",1959.11.29-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.29-Holland.pdf,1959.11.29,1959.11.29 +4037,28-Nov-1959,Unprovoked,AUSTRALIA,Queensland,"North Burleigh, near Brisbane",Standing in chest-deep water,David Beaver,M,17,Right foot lacerated,False,"""a small shark""","Sunday Mail (Brisbane), 11/29/1959",1959.11.28-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.28-Beaver.pdf,1959.11.28,1959.11.28 +4038,22-Nov-1959,Unprovoked,AUSTRALIA,Queensland,"Surfer's Paradise, Northcliffe",Trailing the field in a surf race,Jeffrey Francis Sasche (or Sachse),M,19,"Lower left leg bittten, hand abraded",False,3 m to 4.3 m [10' to 14'] shark,"Daily Mirror (Sydney) 11/23/1959; G.P. Whitley; P. Gilbert, L. Schultz & S. Springer (1960); J. Green, p.35",1959.11.22-Sachse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.22-Sachse.pdf,1959.11.22,1959.11.22 +4039,16-Nov-1959,Invalid,USA,Louisiana,120 miles southeast of New Orleans,National Airlines DC7B enroute from Miami to Los Angeles with 42 or 46 people on board went down in heavy fog,All on board perished in the crash,,19,Body recovery efforts were hampered by large sharks but sharks did not cause the deaths. ,False,Invalid,"Washington Post, 11/17/1959; SAF Case #591",1959.11.16-AircraftDC7B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.16-AircraftDC7B.pdf,1959.11.16,1959.11.16 +4040,15-Nov-1959,Boat,SOUTH AFRICA,Western Cape Province,"Swartklip, False Bay",Fishing for tunny,"boat Sea Hawk, occupants: R. Roberts & 4 others",,19,R. Roberts' leg was bruised when shark leapt into boat,False,"Thresher shark, 3.7 m [12'] ","East London Dispatch, 11/16/1959",1959.11.15-SeaHawk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.15-SeaHawk.pdf,1959.11.15,1959.11.15 +4041,Reported 12-Nov-1959,Provoked,AUSTRALIA,South Australia,Near Port Vincent,Shark fishing,24' yacht owened by C.L. Whitrow,,19,"No injury to occupant, hull bitten PROVOKED INCIDENT",False,6 m [20'] shark,"Advertiser (Adelaide), 11/12/1959",1959.11.12.R-Whitrow-yacht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.12.R-Whitrow-yacht.pdf,1959.11.12.R,1959.11.12.R +4042,10-Nov-1959,Unprovoked,USA,California,"Near Paradise Cove, Malibu, Los Angeles County",Swimming at surface through school of feeding 2.5' to 5’ sharks,Duffie Fryling,M,21,Forearm bitten,False,"Blue shark, 1.5 m [5'] ","D. Miller & R. Collier; R. Collier, pp.26-27; P. Gilbert, L. Schultz & S. Springer (1960); V.M. Coppleson (1962), p.249",1959.11.10-Fryling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.10-Fryling_Collier.pdf,1959.11.10,1959.11.10 +4043,09-Nov-1959,Provoked,AUSTRALIA,Western Australia, Perth,"Spearfishing, shot shark, hauled it onto boat",Ian Marks,M,21,"No injury. Diver shot shark, then shark tore legs of his rubber suit, water poured in & swept out to sea by strong rip current PROVOKED INCIDENT",False,"Carpet shark, 1.5 m [5']","Perth Daily News, 4/19/1961; V.M. Coppleson (1962), p.251",1959.11.09-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.09-Marks.pdf,1959.11.09,1959.11.09 +4044,01-Nov-1959,Provoked,PAPUA NEW GUINEA,New Britain,"Rapindik Beach, Rabaul",Fishing,male,M,21,Both hands bitten while helping companion land speared shark PROVOKED INCIDENT,False,"Carpet shark, 1.5 m [5']","A. M. Rapson, p.147",1959.11.01-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.11.01-Rabaul.pdf,1959.11.01,1959.11.01 +4045,07-Oct-1959,Unprovoked,MOZAMBIQUE,Maputo Province,"Xefina Island, Bay of Maputo",Swimming,a Portuguese soldier,M,X,fatal,True,"Carpet shark, 1.5 m [5']","M. Levine, GSAF; The Star (Johannesburg), 10/7/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.10.07-PortugueseSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.07-PortugueseSoldier.pdf,1959.10.07,1959.10.07 +4046,05-Oct-1959,Unprovoked,PAPUA NEW GUINEA,Madang,Taludig,Swimming,Anonymous,,X,Thigh bitten,False,"Carpet shark, 1.5 m [5']","A.M. Rapson, p.150; V.M. Coppleson (1962), p.248",1959.10.05-PapuaNewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.05-PapuaNewGuinea.pdf,1959.10.05,1959.10.05 +4047,04-Oct-1959,Unprovoked,USA,California,"Bodega Rock, Sonoma County",Diving for abalone,James Hay,M,30,"Ankle twisted, swim fin bitten",False,"White shark, 5 m [16.5'], identified by Dr. W. I. Follett on tooth marks","San Francisco Chronicle, 10/7/1959n; D. Miller & R. Collier; R. Collier, pp.25-26; P. Gilbert, L. Schultz & S. Springer (1960); H.D. Baldridge, p.70",1959.10.04-JamesHay_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.04-JamesHay_Collier.pdf,1959.10.04,1959.10.04 +4048,02-Oct-1959,Unprovoked,FIJI,Lomaiviti Province,"Levuka, Ovalau Island",Dived overboard to retrieve dinghy,"male, Fijian cook of vessel Andi Tui Lomaloma",M,30,fatal,True,4.3 m [14'] shark,"V.M. Coppleson; P. Gilbert, L. Schultz & S. Springer (1960)",1959.10.02-FijianCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.02-FijianCook.pdf,1959.10.02,1959.10.02 +4049,Oct-1959,Unprovoked,FIJI,Kadavu,Great Astrolabe Reef,Spearfishing,Etuate Waqa,M,36,forearm abraded,False,"Tiger shark, 1.8 m [6']",S.B. Brown,1959.10.00-Etuate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.10.00-Etuate.pdf,1959.10.00,1959.10.00 +4050,30-Sep-1959,Unprovoked,PHILIPPINES,Leyte Island,Luang Dulag,Swimming ,Francisco Daguinot,M,28,"No details, survived",False,"Tiger shark, 1.8 m [6']","Manila Times, 10/2/1959",1959.09.30-Daguinot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.30-Daguinot.pdf,1959.09.30,1959.09.30 +4051,27-Sep-1959,Invalid,BERMUDA,Hamilton,Astwood's Cove,Swimming ,Dorothy Barbara Rawlinson,F,29,"Murdered, body scavenged by sharks",False,Shark involvement prior to death was not confirmed,Dorothy Barbara Rawlinson,1959.09.27-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.27-Rawlinson.pdf,1959.09.27,1959.09.27 +4052,26-Sep-1959,Sea Disaster,USA,Florida,"Off Port Everglades, Broward County","Adrift, hanging onto cushion, after his 17' skiff ran out of gas & capsized 3 miles from shore",Robert Walker,M,30,"During the night both hands and feet were bitten, rescued next day after spending 17 hours in the sea.",False,"A hammerhead shark, then 8 to 10 other sharks were said to be involved","St Petersberg Times, 9/27/1959; NY Herald Tribune, 9/28/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.09.26.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.b-Walker.pdf,1959.09.26.b,1959.09.26.b +4053,26-Sep-1959,Boat,USA,South Carolina,"Albergotti Creek, near Air Station boat docks, Beaufort",Gigging for flounder,"12' boat. Occupants: Capt. E.J. Wines, Maj. W. Waller & Larry Waller",,30,UNKNOWN,UNKNOWN,"Said to involve white shark, but species identify questionable","Gazette (Beaufort, SC), 10.1/1959; SAF Case #577",1959.09.26.a-Wines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.26.a-Wines.pdf,1959.09.26.a,1959.09.26.a +4054,Between 10 and 12-Sep-1959,Boat,USA,California,"Between False Klamath & mouth of Klamath River, Del Norte County",Pulling hooked salmon to boat,12 m fishing boat. Occupant: Henry Tervo,,30,"No injury to occupant, shark struck stern of boat",False,"White shark, 3.5 m [11.5'], identified by W. I. Follett on tooth fragments","R. Collier, p.172",1959.09.11-Tervo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.11-Tervo.pdf,1959.09.11,1959.09.11 +4055,Reported 10-Sep-1959,Unprovoked,INDIA,Orissa,Machhagan,Pulling hooked salmon to boat,"Times of India, 9/10/1959",,30,fatal,True,6' shark,"Times of India, 9/10/1959",1959.09.10.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.10.R-India.pdf,1959.09.10.R,1959.09.10.R +4056,02-Sep-1959,Invalid,USA,New York,"Oak Beach, Fire Inlet",On inflatable raft,male,M,30,No injury,False,Questionable incident,H.D. Baldridge (1994) SAF Case #506,1959.09.02-NV-InflatableRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.02-NV-InflatableRaft.pdf,1959.09.02,1959.09.02 +4057,Sep-1959,Unprovoked,MEXICO,Guerrrero,Acapulco,On inflatable raft,French woman,F,"""middle-age""",fatal,True,Questionable incident,"A. R. Satz; P. Gilbert, L. Schultz & S. Springer (1960)",1959.09.00-French-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.09.00-French-woman.pdf,1959.09.00,1959.09.00 +4058,Reported 31-Aug-1959,Boat,AZORES,Sao Miguel,Sao Miguel,Fishing,40' bonito boat,,"""middle-age""",No injury to occupants; shark bit rudder,False,"White shark, based on 2 teeth retrieved from rudder",A. Cordeiro,1959.08.31.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.31.R-Azores.pdf,1959.08.31.R,1959.08.31.R +4059,30-Aug-1959,Invalid,AUSTRALIA,Tasmania,Tasmania,Swimming,Ron Cox,M,"""middle-age""",No injury,False,Invalid,C. Black; H.D. Baldridge (1994) ISAF Case #654,1959.08.30-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.30-Cox.pdf,1959.08.30,1959.08.30 +4060,25-Aug-1959,Invalid,JAPAN,Hokkaido Prefecture,"Okushiri Island, Hiyama Subprefecture",Swimming,Masami Fukushi,M,14,Survived (no injury?),False,Questionable incident,"K. Nakaya (1993); H.D. Baldrige. Note: Recorded as ""Doubtful"" by Schultz and Malin",1959.08.25-Fukushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.25-Fukushi.pdf,1959.08.25,1959.08.25 +4061,20-Aug-1959,Invalid,PHILIPPINES,North Palawan,Cabuli Island,The 240-ton motor vessel Pilar II with 100 people on board capsized in high winds & rough seas,boy,M,10,"Navy personnel reported that his body was ""mutilated by sharks"" but it is probable that death resulted from drowning",False,Shark involvement prior to death was not confirmed,"Manila Daily, 8/26/1959; V.M. Coppleson (1962), p.259; F. Dennis, p.20; SAF Case #655",1959.08.20-PilarII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.20-PilarII.pdf,1959.08.20,1959.08.20 +4062,15-Aug-1959,Invalid,USA,Florida,"Panama City, Bay County",Diving,Gary Seymour,M,21,No injury,False,Invalid,"H. D. Baldridge (1994), SAF Case #440 listed incident as ""Questionable""",1959.08.15.b-Seymour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.b-Seymour.pdf,1959.08.15.b,1959.08.15.b +4063,15-Aug-1959,Unprovoked,USA,Florida,"Panama City, Bay County",Spearfishing on Scuba,Lt. James C. Neal,M,26,fatal,True,3.7 m [12'] shark,"Washington Post, 8/17/1959; P. Gilbert, L. Schultz & S. Springer (1960); H.D. Baldridge, p.183",1959.08.15.a-Neal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.15.a-Neal.pdf,1959.08.15.a,1959.08.15.a +4064,14-Aug-1959,Provoked,USA,South Carolina,Charleston,Fishing,Arthur Wright,M,26,Laceration to forearm by boated shark PROVOKED INCIDENT,False,5.5' shark,"Washington Post, 8/16/1959",1959.08.14.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.b-Wright.pdf,1959.08.14.b,1959.08.14.b +4065,14-Aug-1959,Sea Disaster,PHILIPPINES,Queaon,Between Unisan & Angadanan Islands,Fishing boat capsized ,15 shipwrecked passengers and crew were in the water,,26,fatal,True,5.5' shark,"Manila Chronicle, 8/18/1959; V.M. Coppleson (1962), p.259; F. Dennis, p.20; SAF Case #590",1959.08.14.a-Fishingboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.14.a-Fishingboat.pdf,1959.08.14.a,1959.08.14.a +4066,13-Aug-1959,Provoked,USA,California,"LaJolla, San Diego County","Spearfishing with Joe Turner (24). Shark attracted to speared halibut on belt of one diver, tried to bite Ide’s speargun & he shot it in the mouth",Don Ide,M,32,"No injury, PROVOKED INCIDENT",False,"Hammerhead shark, 9' ","Independent, 8/14/1959, p. 2; V.M. Coppleson (1962), p.147",1959.08.13-Ide-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.13-Ide-Turner.pdf,1959.08.13,1959.08.13 +4067,12-Aug-1959,Provoked,CROATIA,Istria,Pula,Fishing,Narcisco Tomaz,M,32,Laceration to arm PROVOKED INCIDENT,False,20 kg shark,"C. Moore, GSAF",1959.08.12-Tomaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.12-Tomaz.pdf,1959.08.12,1959.08.12 +4068,11-Aug-1959,Unprovoked,JAPAN,Wakayama Prefecture,"Isonoura Beach, Wakayama City ",Swimming,Akira Tuchiya,M,13 or 18,fatal,True,"Blue shark, 3 m [10']","H. Kariya &T. Abe; P. Gilbert, L. Schultz & S. Springer (1960); K. Nakaya",1959.08.11-Tsuchiya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.11-Tsuchiya.pdf,1959.08.11,1959.08.11 +4069,10-Aug-1959,Unprovoked,USA,Georgia,"Savannah Beach, Savannah, Chatham County",Standing,Elizabeth Fields,F,15,"4"" cut on left foot ",False,"Blue shark, 3 m [10']", McCutcheon; News (Savannah) 8/18/1959 ,1959.08.10-Fields.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.10-Fields.pdf,1959.08.10,1959.08.10 +4070,05-Aug-1959,Invalid,USA,California,"Hermosa Beach, Los Angeles County",Wading,Charles H. Hill,M,15,"No injury, no attack, the 10' shark merely circled him.",False,Invalid,"Independent, 8/6/1959, p.8; H.D. Baldridge (1994) SAF Case #437, Subsequently investigated by R. Collier & D. Miller who were unable to verify its authenticity",1959.08.05-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.05-Hill.pdf,1959.08.05,1959.08.05 +4071,21764,Invalid,ITALY,Tuscany,"Cala del Corvo, Isola del Giglio",Scuba diving,Karl Pollerer & Eric Eisesenid,M,34 & 19,Probable drowing. Shark involvement unconfirmed,False,Shark involvement prior to death was not confirmed,"C. Moore, GSAF",1959.08.02-Giglio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.08.02-Giglio.pdf,1959.08.02,1959.08.02 +4072,30-Jul-1959,Provoked,USA,California,"In kelp beds off La Jolla, San Diego County",Pulling anchor,"4.3 m skiff: occupants: James L. Randles, Jr. & James Myers",,34 & 19,"No injury to occupants, shark charged boat after being shot twice with pistol and speared PROVOKED INCIDENT",False,"White shark, 3 m to 5 m [10' to 15'] ","LA Times, 7/31/1959 ",1959.07.30-Randles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.30-Randles_Collier.pdf,1959.07.30,1959.07.30 +4073,28-Jul-1959,Unprovoked,USA,California,"Alligator Head, La Jolla, San Diego County",Spearfishing (but on surface),Verne S. Fleet,M,25,"14 punctures on right thigh, swim trunks torn",False,"Hammerhead shark, 1.8 m [6'] S. zygena identified by C. Limbaugh on description","D. Miller & R. Collier; R. Collier, pp.24-25; Garrick & L. Schultz, p.19 in Sharks & Survival; P. Gilbert, L. Schultz & S. Springer (1960)",1959.07.28-Fleet_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.28-Fleet_Collier.pdf,1959.07.28,1959.07.28 +4074,25-Jul-1959,Unprovoked,JAPAN,Okayama Prefecture,Ushimado,Spearfishing (but on surface),Hideo Ishida,M,22,fatal,True,Blue shark?,"M. Hosina; K. Nakaya; L. Schultz & M. Malin, p.539",1959.07.25.b-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.b-Ishida.pdf,1959.07.25.b,1959.07.25.b +4075,25-Jul-1959,Boat,USA,California,"Mission Beach, San Diego County",Spearfishing (but on surface),"boat, occupant Robert Agnew",,21,No injury to occupant,False,"Hammerhead shark, 2.4 m [8'] ","San Diego Union, 7/26/1959",1959.07.25.a-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.25.a-Agnew.pdf,1959.07.25.a,1959.07.25.a +4076,23-Jul-1959,Boat,USA,California,"Off La Jolla Cove, San Diego County",Fishing,15-foot boat: occupant Woodrow Smith,,21,"No injury to occupant, shark rammed boat",False,"Hammerhead shark, 3 m [10'] ","Herald Express (L.A.), 7/25/1959",1959.07.23.b-WoodrowSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.b-WoodrowSmith.pdf,1959.07.23.b,1959.07.23.b +4077,23-Jul-1959,Provoked,USA,California,"Venice Beach, Los Angeles County",Dragging stranded shark ashore,Rudy Gietel,M,21,"Gietel grabbed the shark's tail, the shark lacerated his right ankle PROVOKED INCIDENT",False,"Blue shark, 1.8 m [6'] ","Herald Express (L.A.), 7/25/1959 ",1959.07.23.a-Geitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.23.a-Geitel.pdf,1959.07.23.a,1959.07.23.a +4078,03-Jul-1959,Sea Disaster,CARIBBEAN SEA,PANAMA,"Off Cristobal, 200 miles northeast of the entrance to the Panama Canal",Columbian petrol barge Rio Atrato burned and sank,Teresea Britton (on raft) & a man (on floating debris),,27,fatal,True,"Blue shark, 1.8 m [6'] ","Cambridge Daily News, 7/4/1959; V. M. Coppleson (1962), p. 259",1959.07.03-Rio-Atranto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.03-Rio-Atranto.pdf,1959.07.03.a & b,1959.07.03.a & b +4079,02-Jul-1959,Provoked,USA,Florida,"Delray Beach, Palm Beach County",Free diving,King Scherer,M,13,Arm bitten when he grabbed shark’s tail PROVOKED INCIDENT,False,"Nurse shark, 60 cm [24""], identified by Dr. L.P. L. Schultz on photograph","Miami Herald, 7/3/1959; Garrick & L. Schultz, p.56 in Sharks & Survival; Miami Herald, 3 July 1959 ",1959.07.02-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.02-Scherer.pdf,1959.07.02,1959.07.02 +4080,Late Jul-1959,Boat,NORTH ATLANTIC OCEAN,In the Gulf Stream ,Between Bimini & Miami,Free diving,"17' boat, occupant: Richard Wade",,13,"No injury to occupant, shark bit propeller as Wade was refueling",False,"Oceanic whitetip shark,1.8 m [6'] ","J. Randall in Sharks & Survival, p.356",1959.07.00.b-boat-R-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.b-boat-R-Wade.pdf,1959.07.00.b,1959.07.00.b +4081,Jul-1959,Unprovoked,MEXICO,Quintana Roo,Chinchorro Banks,Wading,Lobster fishermen x 2,M,13,fatal,True,"Oceanic whitetip shark,1.8 m [6'] ",C.G. Robles,1959.07.00.a-Lobster-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.07.00.a-Lobster-fishermen.pdf,1959.07.00.a,1959.07.00.a +4082,Reported 26-Jun-1959,Unprovoked,TURKEY,Mersin Province,Off Mezitli,Wading,Yitzhak Steinberg,M,13,Leg injured,False,"Oceanic whitetip shark,1.8 m [6'] ","C. Moore, GSAF",1959.06.26.R-Steinberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.26.R-Steinberg.pdf,1959.06.26.R,1959.06.26.R +4083,14-Jun-1959,Unprovoked,MEXICO,Guyamas,San Pedro Nolasco Island,Swimming ashore from capsized boat,Francisco R. Topete,M,13,fatal,True,"Oceanic whitetip shark,1.8 m [6'] ","Miami Herald, 6/15/1959",1959.06.14.b-Topete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.b-Topete.pdf,1959.06.14.b,1959.06.14.b +4084,14-Jun-1959,Unprovoked,USA,California,"La Jolla, San Diego County",Free diving for abalone,Robert Pamperin,M,33,fatal,True,"Reported to involve a White shark, 6 m to 7m [20' to 23'] ","D. Miller & R. Collier; R. Collier, pp. 21-24 ",1959.06.14.a-Pamperin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.14.a-Pamperin_Collier.pdf,1959.06.14.a,1959.06.14.a +4085,13-Jun-1959,Invalid,USA,California,"Dillon Beach, Marin County",Swimming ,T. McNeill,,33,"Disappeared after diving in “deep hole”, body not recovered, “presumed taken by a shark” ",False,Shark involvement prior to death was not confirmed,"D. Miller & R. Collier, R. Collier, p. xxv",1959.06.13-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.06.13-McNeill.pdf,1959.06.13,1959.06.13 +4086,30-May-1959,Provoked,SOUTH AFRICA,Eastern Cape Province,"Bird Island, Algoa Bay",Spearfishing,Tony Dicks,M,23,"No injury, diver shot shark & it bit his speargun PROVOKED INCIDENT",False,"White shark, 2.7 m [9'], 280-lb ","C. Middleton; M. Levine, GSAF",1959.05.30-TonyDicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.30-TonyDicks.pdf,1959.05.30,1959.05.30 +4087,16-May-1959,Unprovoked,USA,Florida,"Indian Rocks Beach, Clearwater, Pinellas County",Spearfishing,June Goldback,F,37,Minor injuries,False,1.2 m [4'] shark,"V.M. Coppleson (1962), p.249; Miami News, 5/18/1959 ",1959.05.16-Goldback.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.16-Goldback.pdf,1959.05.16,1959.05.16 +4088,07-May-1959,Unprovoked,USA,California,"Baker Beach, San Francisco County",Treading water,"Albert Kogler, Jr.",M,18,fatal,True,"White shark, 3 m [10']; identifed by Dr. W.I. Follett on tooth marks","P. Gilbert, L. Schultz & S. Springer (1960); D. Miller & R. Collier, Follett, p. 18-22; R. Collier, pp.18-21",1959.05.07-Kogler_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.07-Kogler_Collier.pdf,1959.05.07,1959.05.07 +4089,03-May-1959,Unprovoked,USA,Florida,"Panama City, Bay County",Spearfishing,Ernest Grover,M,19,Lacerated hip & hands,False,"Tiger shark, 3.7 m [12']","Miami Herald, 5/5/1959; T. Helm, pp. 93 & 243",1959.05.03-Grover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.03-Grover.pdf,1959.05.03,1959.05.03 +4090,May-1959,Unprovoked,MID ATLANTIC OCEAN,Between England & South Africa,Between England & South Africa,Jumped overboard to rescue a man,Charles Green,M,19,Leg bitten,False,"Tiger shark, 3.7 m [12']","Golden City Post (South Africa), 6/7/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.05.00-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.05.00-Green.pdf,1959.05.00,1959.05.00 +4091,27-Apr-1959,Invalid,AUSTRALIA,New South Wales,Maroubra Bay,Spearfishing,Peter Holland,M,22,Thigh lacerated,False,Questionable incident,"V.M. Coppleson (1962), p.251; J. Green, p.35",1959.04.27-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.27-Holland.pdf,1959.04.27,1959.04.27 +4092,11-Apr-1959,Unprovoked,AUSTRALIA,Torres Strait,"Coconut Island , 100 miles east of Thursday Island",Diving for pearl shell,"Jimmy Pearson, a Torres Strait Islander",M,43,Left hand lacerated when he tried to ward off shark,False,"Tiger shark, 1.8 m [6'] ","G.P. Whitley ref. Sydney Morning Herald, 4/13/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.04.11-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.11-Pearson.pdf,1959.04.11,1959.04.11 +4093,09-Apr-1959,Unprovoked,USA,Hawaii,"Hilo, off Kaua'i",Fishing,male,M,43,Survived,False,"Tiger shark, 1.8 m [6'] ","V.M. Coppleson (1962), p.246",1959.04.09.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.b-Fisherman.pdf,1959.04.09.b,1959.04.09.b +4094,09-Apr-1959,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth ,Fishing,male,M,43,2 toes bitten off ,False,"Tiger shark, 1.8 m [6'] ",male,1959.04.09.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.09.a-Fisherman.pdf,1959.04.09..a,1959.04.09..a +4095,05-Apr-1959,Unprovoked,AUSTRALIA,New South Wales,Thirroul,Spearfishing,Jeff McAuley,M,43,Swim fin bitten,False,"Tiger shark, 1.8 m [6'] ","P. Gilbert, L. Schultz & S. Springer (1960)",1959.04.05-McAuley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.04.05-McAuley.pdf,1959.04.05,1959.04.05 +4096,29-Mar-1959,Unprovoked,USA,Florida,"Vaca Cut Channel & bridge under Marathon, Monroe County",Swimming,James McKee,M,13,"Bumped, then knee bitten",False,"Tiger shark, 1.8 m [6'] ","Florida Keys Keynoter, 4/2/1959; Dr. H. S. Denniger; Note: V.M. Coppleson (1962) lists date of May 1959, p249",1959.03.29-McKee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.29-McKee.pdf,1959.03.29,1959.03.29 +4097,08-Mar-1959,Unprovoked,PHILIPPINES,Mindanao,"Mouth of Langoyan River, Davao City",Lifeboat capsized,"Leopoldo Sanchez, a messboy from the ship MV Maripaz",M,20,fatal,True,"Tiger shark, 1.8 m [6'] ","Manila Chronicle, 3/10/1959; P. Gilbert, L. Schultz & S. Springer (1960)",1959.03.08-Sanchez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.08-Sanchez.pdf,1959.03.08,1959.03.08 +4098,Mar-1959,Boat,USA,Florida,Miami,"On boat, preparing to dive",R.P. Straughan,M,20,Boat followed shark; shark holed boat,False,Tiger shark 4.3 m [14'] ,"R.P.L. Straughan; R.F. Hutton; T. Helm, p.241;",1959.03.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.03.00-Straughan.pdf,1959.03.00,1959.03.00 +4099,28-Feb-1959,Boat,AUSTRALIA,Victoria,Port Phillip Bay,Fishing for snapper,14' open boat: occupants Richard Crew & Bob Thatcher,M,20,"No injury to occupants. Shark leapt into boat, momentarily pinning Crew against the side",False,"Mako shark, 2.4 m [8'], <300-lb, identified by Dr. L.P. L. Schultz on photograph","West Australian, 3/1/1959; L. Schultz & M. Malin, p.552",1959.02.28-boat-Crew-Thatcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.28-boat-Crew-Thatcher.pdf,1959.02.28,1959.02.28 +4100,27-Feb-1959,Unprovoked,VENEZUELA,Nueva Esparta,Margarita Island,Fell into water while attempting to boat a swordfish,Roland Gerbeau,M,20,Left arm bitten,False,"Mako shark, 2.4 m [8'], <300-lb, identified by Dr. L.P. L. Schultz on photograph","P. Gilbert, L. Schultz & S. Springer (1960)",1959.02.27-Gerbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.27-Gerbeau.pdf,1959.02.27,1959.02.27 +4101,16-Feb-1959,Provoked,PAPUA NEW GUINEA, Kikori River mouth,"Ururumba, mouth of Kikori River 7.45S, 144.40E",Fishing,male,M,20,Arm bitten by shark that he thought was dead PROVOKED INCIDENT,False,3.7 m [12'] shark,"T. Ingledew, Medical Assistant; A. M Rapson, p.147",1959.02.06-Ururumba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.06-Ururumba.pdf,1959.02.06,1959.02.06 +4102,02-Feb-1959 Reported,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,"Trench’s Beach, Guadalcanal Island",Bathing with sister,Donald Battye or David James Battye,M,15,fatal,True,3.7 m [12'] shark,"Note: V.M. Coppleson (1962), p.248, lists date as 12./6/1958; P. Gilbert, L. Schultz & S. Springer list date of 2/2/1959 and both sources list the same location; New Zealand Herald, 2/2/1959 ",1959.02.02-Battye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.02-Battye.pdf,1959.02.02,1959.02.02 +4103,01-Feb-1959,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Shepstone,Treading water,Raymond Vermaak,M,14,Leg severed below knee,False,1.8 to 2.1 m [6' to 7'] shark,"R. Vermaak, M. Levine, GSAF ",1959.02.01-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.02.01-Vermaak.pdf,1959.02.01,1959.02.01 +4104,31-Jan-1959,Unprovoked,AUSTRALIA,Western Australia,South Perth,Working prawn net,George E. Rudd,M,20,Shark’s tail grazed his shin,False,"Grey nurse shark, 1.8 m [6']","West Australian (Perth), * Sunday Times, 2/1/1959s; P. Gilbert, L. Schultz & S. Springer (1960)",1959.01.31-Rudd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.31-Rudd.pdf,1959.01.31,1959.01.31 +4105,27-Jan-1959,Unprovoked,ECUADOR,Galapagos Islands,Crewing on the tuna clipper Mary Barbara,Washed overboard into school of fish,Theodore C. Swienty,M,57,Right leg & left foot lacerated,False,Bitten by several 1.8 m [6'] sharks,"NY World -Telegram & Sun, 1/28/1959; Note: V.M. Coppleson (1962), p.246, records the date as 3/5/1959",1959.01.27-Swienty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.27-Swienty.pdf,1959.01.27,1959.01.27 +4106,25-Jan-1959,Unprovoked,AUSTRALIA,Tasmania,"Whale Bay, King Island, Bass Strait",Swimming with motor tube,John Grave,M,16,Thigh bitten,False,Bitten by several 1.8 m [6'] sharks,"C. Black, GSAF; Launceston Examiner (Tasmania) 1/26/1959; P. Gilbert, L. Schultz & S. Springer (1960); J. Green, p.35",1959.01.25-Grave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.25-Grave.pdf,1959.01.25,1959.01.25 +4107,17-Jan-1959,Unprovoked,AUSTRALIA,Tasmania,Safety Cove,In deep water about 100 yards from his ship,"Brian Derry, a Naval Rating",M,22,fatal,True,Said to involve 2 sharks: 5.2 m & 6 m [17' & 20'] ,"Odessa American, 1/19/1959; G.P. Whitley, ref Daily Telegraph & West Australian, 1/19/1959; P. Gilbert, L. Schultz & S. Springer (1960); C. Black, pp. 148-151",1959.01.17.b-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.b-Derry.pdf,1959.01.17.b,1959.01.17.b +4108,17-Jan-1959,Unprovoked,AUSTRALIA,Queensland,Alexandra Headland near Mooloolaba,"Surfing, but treading water",Peter John Neil,M,17,Right foot & toe bitten,False,1.8 m [6'] shark,"Sun Herald (Sydney) 1/18/1959; P. Gilbert, L. Schultz & S. Springer(1960); J. Green, p.35",1959.01.17.a-Neil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.17.a-Neil.pdf,1959.01.17.a,1959.01.17.a +4109,15-Jan-1959,Unprovoked,SOUTH AFRICA,Western Cape Province,Melkbaai,Swimming,Fanie Schreuder,M,18,Thigh & both wrists lacerated,False,"White shark, 1.8 m to 2.1 m [6' to 7'] according to Shreuder and a witness","Cape Times, 1/16/1959 et al, M. Levine, GSAF ",1959.01.15-Schreuder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.15-Schreuder.pdf,1959.01.15,1959.01.15 +4110,12-Jan-1959,Unprovoked,NEW GUINEA,Milne Bay Province,"Uga, Banaira, Milne Bay",Dragging banana seeds through the shallows,male,M,18,Left calf & right thigh bitten,False,1.4 m [4.5'] shark,"A.M. Rapson, p.149; L. Schultz & M. Malin, p.544",1959.01.12-Uga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.12-Uga.pdf,1959.01.12,1959.01.12 +4111,02-Jan-1959,Unprovoked,MOZAMBIQUE,Maputo Province,Off Inhaca Island,Swimming ashore from fishing boat swamped and sunk by a squall,Eric Suttie & Peter Murray,M,33 & 26,fatal,True,1.4 m [4.5'] shark,"M. Levine, GSAF; Cape Argus 1/3/1959; Natal Mercury, 1/5/1959",1959.01.02-Suttie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.02-Suttie.pdf,1959.01.02,1959.01.02 +4112,Jan-1959,Unprovoked,AUSTRALIA,Tasmania,Badger Head,Spearfishing / free diving,male,M,33 & 26,Abrasion,False,1.5 m [5'] shark,"Malcolm G. Hooper; L. Schultz & M. Malin, p.527",1959.01.00-BadgerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.01.00-BadgerHead.pdf,1959.01.00,1959.01.00 +4113,Summer of 1959,Unprovoked,SOUTH KOREA,South Chungcheong Province,"36º17'N, 126º31'E",Swimming,male,M,33 & 26,fatal,True,White shark?,Y. Choi & K. Nakaya,1959.00.00.g-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.g-SouthKorea.pdf,1959.00.00.g,1959.00.00.g +4114,Jul- to Sep-1959,Unprovoked,INDIA,Orissa,Mouth of Devi River at Machgaon,Swimming,"Reported byTimes of India, 11 September 1959; V.M. Coppleson (1952), p.247; Webster, p.67",,33 & 26,fatal,True,1.5 m to 1.8 m [5' to 6'] sharks,"Reported byTimes of India, 11 September 1959; V.M. Coppleson (1952), p.247; Webster, p.67",1959.00.00.f-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.f-India.pdf,1959.00.00.f,1959.00.00.f +4115,1959,Provoked,ATLANTIC OCEAN,unknown,unknown,Paddling & sailing from Buenos Aires to Miami,Mirco Tapavica,M,33 & 26,Hooked shark bit his arm PROVOKED INCIDENT,False,"Tiger shark, 12' ?","New York Times, 1/29/1960",1959.00.00.e-Tapavica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.e-Tapavica.pdf,1959.00.00.e,1959.00.00.e +4116,1959,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Poi, Kombe Talasea",Spear fishing,male,M,33 & 26,Minor injuries,False,"Tiger shark, 12' ?","A.M. Rapson, p.150; L. Schultz & M. Malin, p.544",1959.00.00.d-Poi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.d-Poi.pdf,1959.00.00.d,1959.00.00.d +4117,1959,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Kalapiai, Kombe",Fishing,male,M,33 & 26,Minor injuries,False,"Tiger shark, 12' ?","A.M. Rapson, p.150",1959.00.00.c-Kalapiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.c-Kalapiai.pdf,1959.00.00.c,1959.00.00.c +4118,1959,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Enuk Island, Kavieng",Fishing,Pasinganlas,M,33 & 26,fatal,True,"Tiger shark, 12' ?","J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.150; L. Schultz & M. Malin, p.544",1959.00.00.b-Pasinganlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.b-Pasinganlas.pdf,1959.00.00.b,1959.00.00.b +4119,1959,Provoked,PAPUA NEW GUINEA,Morobe Province,Morobe Province,Fishing,male,M,33 & 26,Penis bitten while trying to drag speared shark to beach PROVOKED INCIDENT,False,"Tiger shark, 12' ?","A.D. Campbell; A.M. Rapson, p.147",1959.00.00.a-Morobe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1959.00.00.a-Morobe.pdf,1959.00.00.a,1959.00.00.a +4120,28-Dec-1958,Boat,TURKEY,Ahirkapi coast,Constantinople,Fishing,Fishing boat. Occupants: Yunus Potur & Ali Durmaz,,33 & 26,Boat damaged,False,White shark,"C. Moore, GSAF",1958.12.28-Constantinople.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.28-Constantinople.pdf,1958.12.28,1958.12.28 +4121,27-Dec-1958,Unprovoked,PAPUA NEW GUINEA,Madang Province,Taludig,Fishing,Anonymous,,33 & 26,Hip bitten,False,White shark,"A.M. Rapson, p.149; V.M. Coppleson (1962), p.248",1958.12.27-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.27-Taludig.pdf,1958.12.27,1958.12.27 +4122,23-Dec-1958,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, False Bay",Swimming,Barry Geldenhuys,M,14,fatal,True,White shark,"1/16/1959, Cape Argus; G. Wilson; M. Levine, GSAF",1958.12.23-Geldenhuys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.23-Geldenhuys.pdf,1958.12.23,1958.12.23 +4123,13-Dec-1958,Unprovoked,USA,Hawaii,"Near Twin Islands off Lanikai, O'ahu (east coast)",Surfing on air mattress,William S. Weaver,M,15,fatal,True,"Tiger shark, 4.6 m to 7.6 m [15' to 25'] ",A. L. Tester,1958.12.13-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.13-Weaver.pdf,1958.12.13,1958.12.13 +4124,12-Dec-1958,Unprovoked,AMERICAN SAMOA,Tutuila Island,Van Camp wharf,Cleaning hull of ship ,Sailor of tuna vessel No.12 Taiyo Marei,M,22,fatal,True,Tiger shark,M. Hosina,1958.12.12-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.12.12-Samoa.pdf,1958.12.12,1958.12.12 +4125,23-Nov-1958,Unprovoked,AUSTRALIA,Queensland,Surfer's Paradise,Swimming,Peter Gerard Spronk,M,21,fatal,True,12' shark,"V.M. Coppleson (1962), p.245; A. Sharpe, p.100; J. Green, p.35",1958.11.23-Spronk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.23-Spronk.pdf,1958.11.23,1958.11.23 +4126,14-Nov-1958,Invalid,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,male,M,21,"No injury, shark leapt at him",False,Questionable incident,Clipping dated 11/15/1958,1958.11.14-FalseBayFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.14-FalseBayFisherman.pdf,1958.11.14,1958.11.14 +4127,Reported 07-Nov-1958,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","M'Buke, south of Manus Island",Spearfishing,native boy,M,21,fatal,True,Questionable incident,"A.M. Rapson, p.149; V.M. Coppleson (1962), p.254",1958.11.07.R-MbukeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.07.R-MbukeIsland.pdf,1958.11.07.R,1958.11.07.R +4128,05-Nov-1958,Boat,USA,California,"Pacific Beach, San Diego County",Fishing,"4.3 m skiff, occupant: Bob Shay",,21,"No injury to occupant, shark chasing barracuda tied to the stern rammed skiff & slashed the motor",False,White shark,C. Limbaugh,1958.11.05-boat-Shay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.11.05-boat-Shay.pdf,1958.11.05,1958.11.05 +4129,12-Oct-1958,Unprovoked,USA,California,"Coronado Strand, San Diego County",Swimming near jetty,John Allman,M,15,"Left arm, hips & leg lacerated",False,White shark,"Los Angeles Times, 10/13/1958; D. Miller & R. Collier, R. Collier, p. 17-18",1958.10.12-Allman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.12-Allman_Collier.pdf,1958.10.12,1958.10.12 +4130,05-Oct-1958,Unprovoked,USA,Florida,"Baker's Haulover, Miami Beach",Swimming near jetty,Lytton Evans,M,60,No injury,False,White shark,R.F. Hutton citing Miami Herald Newspaper Library,1958.10.05-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.05-Evans.pdf,1958.10.05,1958.10.05 +4131,Oct-1958,Provoked,MEXICO,Guerrrero,Acapulco,Slapped shark on tail as it swam by,male,M,60,Shark turned & severed his leg PROVOKED INCIDENT,False,White shark,"Washington Evening Star, 6/17/1959; V.M. Coppleson (1962), p.253",1958.10.00.b-Acapulco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.b-Acapulco.pdf,1958.10.00.b,1958.10.00.b +4132,Oct-1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"East Nakanai, Talasea",Collecting shells,male,M,26,Leg & foot injured,False,White shark,"A.M. Rapson, p.149",1958.10.00.a-EastNakanai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.10.00.a-EastNakanai.pdf,1958.10.00.a,1958.10.00.a +4133,13-Sep-1958,Unprovoked,ANDAMAN / NICOBAR ISLANDAS,unknown,unknown,"""Climbing up to ship after repairing the stern in water""",Sailor of tuna vessel Daisan-Tenyo-Maru,M,32,fatal,True,Blue shark,M. Hosina,1958.09.13-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.13-sailor.pdf,1958.09.13,1958.09.13 +4134,06-Sep-1958,Unprovoked,BAHAMAS,Cat Cay,off yacht Serenade,Fishing,James Douglas Munn,M,42,Right forearm lacerated,False,200-lb shark,"Miami Herald, 9/6/1958 ",1958.09.06-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.06-Munn.pdf,1958.09.06,1958.09.06 +4135,01-Sep-1958,Provoked,USA,New York,Staten Island,Spearfishing,John Leszczak,M,20,Bitten by harpooned shark PROVOKED INCIDENT,False,200-lb shark,"Baltimore Evening Sun, 9/2/1958 ",1958.09.01-Leszczak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.09.01-Leszczak.pdf,1958.09.01,1958.09.01 +4136,31-Aug-1958,Boat,MEXICO,Baja California,Ensenada,Boat stopped to repair electric pump,16' cabin cruiser with 35 hp outboard motor,,20,Shark tried to bite prop twice,False,"Hammerhead shark, 5.2 m [17'] ","G.A. Llano, pp.176-177",1958.08.31-NV-Ensenada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31-NV-Ensenada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.31.a-NV-Ensenada.pdf,1958.08.31,1958.08.31 +4137,01-Aug-1958,Unprovoked,CROATIA,Primorje-Gorski Kotar County,Moš?eni?ka Draga,Swimming,Hilda Keller,F,20,Leg injured,False,3 m shark,"C. Moore, GSAF",1958.08.01-Keller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.08.01-Keller.pdf,1958.08.01,1958.08.01 +4138, Reported 31-Jul-1958,Unprovoked,MEXICO,Guerrero,"Caleta Beach, Acapulco",Swimming,Suzanne Dreufus,F,20,fatal,True,3 m shark,"Miami Herald, 8/2/1958 reported this was the second fatality at this resort this month",1958.07.31-Dreufus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.31-Dreufus.pdf,1958.07.31.R,1958.07.31.R +4139,27-Jul-1958,Unprovoked,USA,Florida,"9 miles north of Turtle Beach, Siesta Key, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Robert Lawton (brother & rescuer),M,12,3 lacerations on leg,False,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","E. Clark & M. Vorenberg, GSAF. R. Skocik, pp.173-174; V.M. Coppleson, p.255; H. D. Baldridge, pp. 25, 62, 73 & 164",1958.07.27.b-RobertLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.b-RobertLawton.pdf,1958.07.27.b,1958.07.27.b +4140,27-Jul-1958,Unprovoked,USA,Florida,"Longboat Key, Sarasota, Sarasota County","Swimming, ducking for shells in water 0.9 m deep",Douglas Lawton,M,8,"Left hand and leg bitten, leg surgically amputated below hip",False,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","E. Clark; M. Vorenberg, GSAF; R. Skocik, pp.173-174; H.D. Baldridge, pp. 25, 62, 73 & 164",1958.07.27.a-DouglasLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.27.a-DouglasLawton.pdf,1958.07.27.a,1958.07.27.a +4141,10-Jul-1958,Unprovoked,USA,Florida,"Key West, Monroe County","Swimming, ducking for shells in water 0.9 m deep",Angel B. Escartin,M,35,fatal,True,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","R. F. Hutton; T. Helm, p.239",1958.07.10-Escartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.10-Escartin.pdf,1958.07.10,1958.07.10 +4142, 08-Jul-1958,Unprovoked,KENYA,Coast Province,Port Kilindeni / Mombasa Harbor,Swimming,"Tahei Nakatani, a Japanese seaman from the fishing vessel Seiju Maru",M,21,fatal,True,"Tiger shark, 1.5 m to 1.8 m [5' to 6'] ","Natal Mercury, 7/9/1958",1958.07.08-Nakatani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.08-Nakatani.pdf,1958.07.08,1958.07.08 +4143,04-Jul-1958,Sea Disaster,PACIFIC OCEAN,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.,"Roy A. Robinson, Sr.",M,21,fatal,True,Sharks averaged 1.8 m [6'] in length,"Evening Star (Washington D.C.), 7/7/1958, p. A10; G.A. Llano in Sharks and Survival, pp.382-383; V.M. Coppleson (1962), p.259",1958.07.04.b-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.b-Robinson.pdf,1958.07.04.b,1958.07.04.b +4144,04-Jul-1958,Sea Disaster,PACIFIC OCEAN,Between Hawaii & Wake Island,600 miles northwest of Honolulu,U.S. Airforce C124 enroute from Hickham Air Base to Japan went down. The 3 survivors fashioned raft from mailbags & were rescued 3 days after the crash.," Captain Jonathan Brown, pilot ",M,31,Left shoulder bitten ,False,Sharks averaged 1.8 m [6'] in length,"Evening Star (Washington D.C.), 7/7/1958, p. A10; G.A. Llano in Sharks and Survival, pp.382-383; V.M. Coppleson (1962), p.259",1958.07.04.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.04.a-Brown.pdf,1958.07.04.a,1958.07.04.a +4145,02-Jul-1958,Provoked,USA,Florida,"Siesta Key, Sarasota County",Free diving,John Hamlin,M,20,"He grabbed shark, it bit his leg below the knee PROVOKED INCIDENT",False,"Nurse shark, 1.5 m [5'] identified by Dr. E. Clark on description of shark","E. Clark, GSAF. H. D. Baldridge, p.26",1958.07.02-Hamlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.02-Hamlin.pdf,1958.07.02,1958.07.02 +4146,01-Jul-1958,Unprovoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Maritzoan, east coast of Namatanai",Swimming, Toapindak (male),M,38,fatal,True,"Nurse shark, 1.5 m [5'] identified by Dr. E. Clark on description of shark","Dept of Public Health, Namatani; A. M. Rapson, p. 149 ",1958.07.01-Toapindak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.01-Toapindak.pdf,1958.07.01,1958.07.01 +4147,Jul-1958,Unprovoked,BAHAMAS,Abaco Islands,North of Walkers Cay,"Spearfishing, had fish on his spear",Stanton Waterman,M,36,"No injury, shark went for diver's leg & missed, diver hit shark on head with speargun & shark bit speargun ",False,"Tiger shark, <2 m TL","S. Waterman, GSAF",1958.07.00.b-Waterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b-Waterman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.b - Waterman.pdf,1958.07.00.b,1958.07.00.b +4148,Jul-1958,Unprovoked,USA,Florida,"Sarasota, Sarasota County","Spearfishing, had fish on his spear",2 males admitted to Memorial Hospital emergency room this month,M,36,Both were bitten on feet by sharks,False,"Tiger shark, <2 m TL","R. F. Hutton; T. Helm, p.239",1958.07.00.a-NV-Sarasota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.07.00.a-NV-Sarasota.pdf,1958.07.00.a,1958.07.00.a +4149,26-Jun-1958,Provoked,USA,Florida,"Sanibel Island, Lee County",Wading,Eric Napier Cockerill,M,59,Right foot bitten when he walked into shark's head PROVOKED INCIDENT,False,"Nurse shark, 2.1 m [7'] identified by Dr. E. Clark on color & tooth impressions","E. Clark. GSAF; Dr. Greenwood; R.F. Hutton; Randall in Sharks & Survival, p.357; T. Helm, p.237",1958.06.26-Cockerill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.26-Cockerill.pdf,1958.06.26,1958.06.26 +4150,24-Jun-1958,Unprovoked,USA,Florida,"Turtle Beach, Siesta Key, Sarasota County",Walking,Frank A. Mahala,M,17,Lower left leg & foot bitten,False,Tiger shark?,"E. Clark. GSAF. R. Skocik, pp.172-173; H.D. Baldridge, p.26",1958.06.24-Mahala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.24-Mahala.pdf,1958.06.24,1958.06.24 +4151,17-Jun-1958,Provoked,USA,Florida,Key Biscayne,"Swimming, towing the shark",B. Irving,M,17,Thigh bitten PROVOKED INCIDENT,False,"Nurse shark, 1.1 m [3.5'] ","Randall in Sharks & Survival, pp.357",1958.06.17-Irving.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.17-Irving.pdf,1958.06.17,1958.06.17 +4152,15-Jun-1958,Invalid,AUSTRALIA,Queensland,Green Island,Swimming,Alva Colquhoun & Ilsa Konrads,F,17,"Injuries caused by coral, not the shark",False,Invalid,"Natal Mercury, 6/18/1958",1958.06.15-Swimmers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.15-Swimmers.pdf,1958.06.15,1958.06.15 +4153,Reported 02-Jun-1958,Invalid,SOUTH AFRICA,KwaZulu-Natal,King Reef off Park Rynie,Spearfishing,Gene Franken & Maurice McGregor,M,17,Injuries not caused by sharks,False,Invalid,"Daily News, 6/2/1958",1958.06.02-McGregor-Franken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.06.02-McGregor-Franken.pdf,1958.06.02.R,1958.06.02.R +4154,30-Apr-1958,Provoked,USA,Florida,1 mile off Miami Beach,Free diving,Johnny Bower,M,29,"Grabbed shark’s tail, shark bit his thigh PROVOKED INCIDENT",False,"Nurse shark, 1.5 m [5'] ","Miami Herald, May 1, 1958",1958.04.30-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.30-Bowers.pdf,1958.04.30,1958.04.30 +4155,19-Apr-1958,Unprovoked,TAIWAN,Taipei Hsien,Off Cape of Pi-tou,Diving,Nan-Tien Chang,M,29,Right cheek bitten,False,"Mako shark, 100-kg [221-lb] ",W.H. Yu,1958.04.19-Chang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.19-Chang.pdf,1958.04.19,1958.04.19 +4156,05-Apr-1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Uvongo,Paddling in knee-deep water,Fay Jones Bester,F,28,fatal,True,3 m [10'] shark,"G.S. Perry, M. Levine, GSAF ",1958.04.05-Bester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.05-Bester.pdf,1958.04.05,1958.04.05 +4157,03-Apr-1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Swimming with goggles,Nicholaas Badenhorst ,M,29,fatal,True,3 m [10'] shark,"M. Levine, GSAF ",1958.04.03-Badenhorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.03-Badenhorst.pdf,1958.04.03,1958.04.03 +4158,Apr-1958,Unprovoked,PAPUA NEW GUINEA,Morobe Province,"Nasigilatu (Near Malasanga, Finschhafen, in the Huon Gulf)","Fishing, holding fish in his left hand",male,M,29,Left forearm amputated,False,3 m [10'] shark,"A.D. Campbell; A.M. Rapson, p.149",1958.04.00-Nasigilatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.04.00-Nasigilatu.pdf,1958.04.00,1958.04.00 +4159,19-Feb-1958,Invalid,AUSTRALIA,New South Wales,New South Wales,Spearfishing,Kevin Blair,M,21,"Disappeared while diving, speargun recovered, 2 large sharks in vicinity.",False,Shark involvement prior to death was not confirmed,"Durban Daily News, 2/20/1958",1958.02.19-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.19-Blair.pdf,1958.02.19,1958.02.19 +4160,01-Feb-1958,Provoked,USA,US Virgin Islands,Water Island,Spearfishing on Scuba,"U.S. Navy U.D.T. Diver trainee, Ronald Gerringer",M,18,Chest bitten by speared shark PROVOKED INCIDENT,False,"Nurse shark, 1.5 m [5'] ","J, Randall, p.358 and L. Schultz & M. Malin, p.545 in Sharks & Survival",1958.02.01-Gerringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.02.01-Gerringer.pdf,1958.02.01,1958.02.01 +4161,27-Jan-1958,Unprovoked,AUSTRALIA,New South Wales,5 miles south of Sussex Inlet at mouth of Berara Lake,Spearfishing / swimming on surface,Ronald Kerwand,M,17,Right leg lacerated,False,"Nurse shark, 1.5 m [5'] ","V.M. Coppleson (1962), p.251 ",1958.01.27-Kerwand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.27-Kerwand.pdf,1958.01.27,1958.01.27 +4162,19-Jan-1958,Unprovoked,AUSTRALIA,New South Wales,Brunswick Heads,Body surfing,Brian Henderson,M,14,"Laceration to left ankle, heel and little toe",False,6' shark,"V.M. Coppleson (1962), p.245",1958.01.19-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.19-Henderson.pdf,1958.01.19,1958.01.19 +4163,Reported 09-Jan-1958,Invalid,JAPAN,Ibaraki Prefecture,Mito,Body surfing,male,M,50,Torso recovered from 206-lb shark,False,Shark involvement prior to death was not confirmed,"Natal Mercury, 1/9/1958",1958.01.09.R-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09.R-Japan.pdf,1958.01.09.R,1958.01.09.R +4164,09-Jan-1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scotburgh,Swimming,Derek Garth Prinsloo,M,50,fatal,True,White shark,"M. Levine, GSAF",1958.01.09-Prinsloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.01.09-Prinsloo.pdf,1958.01.09,1958.01.09 +4165,1958-1959,Provoked,TONGA,Vava'u,Hunga Island,Spearfishing,male,M,50,Calf avulsed by shark he was holding by the tail PROVOKED INCIDENT,False,<1 m shark,Dr. S. Fonea,1958.00.00.j-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.j-Tonga.pdf,1958.00.00.j,1958.00.00.j +4166,1958,Provoked,SAMOA,South Pacific Ocean,North of Northeast Samoa,Placed hand in disemboweled shark’s jaws,Takai Otiai,,50,Hand lacerated PROVOKED INCIDENT,False,<1 m shark,"V.M. Coppleson (1962), p.248",1958.00.00.i-Otiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.i-Otiai.pdf,1958.00.00.i,1958.00.00.i +4167,1958,Provoked,PANAMA,Canal Zone,Canal Zone,Skindiving,boy,M,50,"Boy seized shark by its tail, shark bit boy’s forearm PROVOKED INCIDENT",False,"18"" to 24"" shark","Dr. F. X. Schloeder; H.D. Baldridge, p.165",1958.00.00.h-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.h-Panama.pdf,1958.00.00.h,1958.00.00.h +4168,1958,Unprovoked,PAPUA NEW GUINEA,Louisiade Archipelago,"Brooker Island , Calvados Chain",Skindiving,Anonymous,,50,fatal,True,"18"" to 24"" shark","A.M. Rapson, p.149",1958.00.00.f-BrookerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.f-BrookerIsland.pdf,1958.00.00.f,1958.00.00.f +4169,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Bulu, Talasea",Spearfishing,male,M,50,fatal,True,"18"" to 24"" shark","A.M. Rapson, p. 149",1958.00.00.e-Bulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.e-Bulu.pdf,1958.00.00.e,1958.00.00.e +4170,1958,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Kombe, Talasea",Spearfishing,male,M,50,fatal,True,Several sharks involved,"A.M. Rapson, p.149",1958.00.00.d-Kombe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.d-Kombe.pdf,1958.00.00.d,1958.00.00.d +4171,1958,Unprovoked,PAPUA NEW GUINEA,Morobe Province,"Korem, Finschhafen ","Fishing, holding fish",male x 3,M,50,Hand holding the fish was bitten in all 3 cases,False,Several sharks involved,"A.D. Campbell; A. M. Rapson, p.149",1958.00.00.c-Korem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.c-Korem.pdf,1958.00.00.c,1958.00.00.c +4172,1958,Boat,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing (trolling),ski-boat,,50,No injury to occupants; shark bit propeller,False,White shark,"T. Wallett, p.27",1958.00.00.b-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.b-PlettenburgBay.pdf,1958.00.00.b,1958.00.00.b +4173,Circa 1958,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,MaKakatana River,"Fishing, walking in river to cast",young Zulu male,M,50,fatal,True,White shark,"J. Daniel, M. Levine. GSAF ",1958.00.00.a-KakatanaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1958.00.00.a-KakatanaRiver.pdf,1958.00.00.a,1958.00.00.a +4174,31-Dec-1957,Unprovoked,AUSTRALIA,South Australia,"Port Hughes, 100 miles from Adelaide in Spencer Gulf",Spearfishing,Jack Evans,M,50,No injury. Shark grabbed fish attached to his belt & towed him seaward. ,False,White shark,"V.M. Coppleson (1962), p.251",1957.12.31-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.31-Evans.pdf,1957.12.31,1957.12.31 +4175,30-Dec-1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Standing,Julia Painting,F,14,"Left arm severed, torso bitten, thigh lacerated, many abrasions",False,1.8 m [6'] shark,"J. Painting, Dr. Feinberg, M. Levine, GSAF",1957.12.30-Painting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.30-Painting.pdf,1957.12.30,1957.12.30 +4176,26-Dec-1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Splash Rock, Port Edward",Skindiving,Donald Webster,M,20,Lacerations on head & neck,False,1.8 m [6'] shark,"Natal Mercury, 12/27/1957; M. Levine, GSAF",1957.12.26-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.26-Webster.pdf,1957.12.26,1957.12.26 +4177,23-Dec-1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Floating,Vernon James Berry,M,23,fatal,True,>3 m [10'] shark,"P. Lynch, N. Doveton, G. Wolfe, M.Levine, GSAF ",1957.12.23-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.23-Berry.pdf,1957.12.23,1957.12.23 +4178,20-Dec-1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Uvongo,Standing,Allan Green,M,15,fatal,True,>3 m [10'] shark,"P. Lynch, G. Wolfe, A. Cowan, M.Levine, GSAF ",1957.12.20-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.20-Green.pdf,1957.12.20,1957.12.20 +4179,18-Dec-1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Karridene,Body surfing,Robert Wherley,M,16,"Left leg severed at knee, part of left thigh removed",False,>3 m [10'] shark," M. Levine, GSAF ",1957.12.18-Wherley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.12.18-Wherley.pdf,1957.12.18,1957.12.18 +4180,08-Nov-1957,Sea Disaster,PACIFIC OCEAN,"1,000 miles east of Hawaii","1,000 miles east of Hawaii",Air/Sea Disaster Pan-American Airlines Stratocruiser with 44 people onboard crashed into the sea,"Guam Daily News, November 19, 1957; V.M. Coppleson (1962), p.259; SAF Case #1075",,16,Navy personnel recovered 19 shark-scavenged bodies,False,>3 m [10'] shark,"Guam Daily News, November 19, 1957; V.M. Coppleson (1962), p.259; SAF Case #1075",1957.11.08-Stratocruiser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.08-Stratocruiser.pdf,1957.11.08,1957.11.08 +4181,Reported 04-Nov-1957,Boat,AUSTRALIA,New South Wales,Off Scotts,Fishing,"16-foot launch, occupants: George Casey, Jack Byrnes, Julian Reynolds & Denny Laverty",,16,"No injury, shark's teeth embedded in boat",False,>3 m [10'] shark,"The Age, 11/04/1957",1957.11.04.R-Fishing-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.11.04.R-Fishing-launch.pdf,1957.11.04.R,1957.11.04.R +4182,24-Oct-1957,Unprovoked,SOLOMON ISLANDS,Honiara,Honiara,Fishing,"Matthew Keia, a Lord Howe native",M,22,fatal,True,>3 m [10'] shark,"V.M. Coppleson (1962), p.248 ",1957.10.24-Keia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.24-Keia.pdf,1957.10.24,1957.10.24 +4183,23-Oct-1957,Unprovoked,SOLOMON ISLANDS,Honiara,Honiara,Fishing,Melanesian woman,F,28,fatal,True,>3 m [10'] shark,"V.M. Coppleson (1962), p.248",1957.10.23-Melanesian-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.10.23-Melanesian-woman.pdf,1957.10.23,1957.10.23 +4184,02-Sep-1957,Unprovoked,MARSHALL ISLANDS,Eniwetok Atoll,Parry Island,Fishing,Walter L. Huges,M,28,Survived,False,Identified as carcharinid shark (based on its behavior) by Dr. D.P. L. Schultz; mako shark according to Huges,"V.M. Coppleson (1962), p.248",1957.09.02-Huges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.09.02-Huges.pdf,1957.09.02,1957.09.02 +4185,Aug-1957,Provoked,USA,Florida,"Miami Seaquarium, Virginia Key, Miami, Miami-Dade County",Attempting to net shark in shark channel,Philip Case & William B. Gray,M,28,Legs bitten PROVOKED INCIDENT,False,"2.7 m [9'] bull shark, identified by Capt. W. Gray","St. Petersburg Times (Sunday Magazine), 3/1/1959; R. F. Hutton; J. Randall, p.352 in Sharks & Survival; T. Helm, p.238",1957.08.00-Case-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.08.00-Case-Gray.pdf,1957.08.00,1957.08.00 +4186,24-Jul-1957,Provoked,USA,California,"La Jolla, San Diego County",Spearfishing on Scuba,Earl .A. Murray,M,28,Diver jabbed shark with spear and it make a threat display. No injury PROVOKED INCIDENT,False,"Said to involve a 1 m white shark, but thought that it was more likely a blue shark","SAF Case #1497; R. Collier, p. xxv; H.D. Baldridge, p.185",1957.07.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.24-Murray.pdf,1957.07.24,1957.07.24 +4187,15-Jul-1957,Unprovoked,USA,North Carolina,"Salter Path, Atlantic Beach, Carteret County",Swimming,Rupert Wade,M,57,fatal,True,White shark,"V.M. Coppleson, p.155; F. Walker; F. Schwartz, p.23",1957.07.15-Rupert-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.15-Rupert-Wade.pdf,1957.07.15,1957.07.15 +4188,09-Jul-1957,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving for trochus,Conwell Kris,M,36,Right hand and arm bitten,False,9' shark,"The Age, 7/11/1957",1957.07.09-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.07.09-Kris.pdf,1957.07.09,1957.07.09 +4189,21-Jun-1957,Invalid,CUBA,Yucatan Channel,Yucatan Channel,M.V. Tropical sank. Sole survivor rode oil drums for 8 days without food or water.,"Daily Telegram, 7/1/1957, p.4; V.M. Coppleson (1962), p.259",,36,"No injury, no attack, sharks in vicinity when the sea was calm",False,Invalid,"Daily Telegram, 7/1/1957, p.4; V.M. Coppleson (1962), p.259",1957.06.21-Tropical.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.06.21-Tropical.pdf,1957.06.21,1957.06.21 +4190,11-May-1957,Unprovoked,AUSTRALIA,New South Wales,"Tea Gardens, north of Newcastle",Competing in spearfishing championship & towing dead fish,Leonard Higgins,M,28,Thigh bitten & few lacerations on abdomen & buttock,False,4.6 m [15'] shark,"V.M. Coppleson (1958), p.175",1957.05.11-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.11-Higgins.pdf,1957.05.11,1957.05.11 +4191,Reported 07-May-1957,Unprovoked,SOLOMON ISLANDS,unknown,unknown,Fishing,Elison Sevo,M,28,Legs nipped & he bit shark's snout,False,4.6 m [15'] shark,"Miami Daily News, 5/7/1957",1957.05.07.R-Sevo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.07.R-Sevo.pdf,1957.05.07,1957.05.07 +4192,May 1957,Unprovoked,USA,Florida,"8 miles off St. Marks, Wakulla County",3 men & 2 boys picked up wearing life jackets and with inner tube,male,M,28,Leg lacerated,False,4.6 m [15'] shark,"V.M. Coppleson (1962), p.259",1957.05.00-St-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.05.00-St-Marks.pdf,1957.05.00,1957.05.00 +4193,28-Apr-1957,Unprovoked,USA,California,"Atascadero Beach, Morro Bay, San Luis Obispo County",Swimming,Peter Savino,M,25,fatal,True,White shark,"D. Miller & R. Collier, R. Collier, pp.16-17; V.M. Coppleson (1958), p.255",1957.04.28-Savino_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.28-Savino_Collier.pdf,1957.04.28,1957.04.28 +4194,23-Apr-1957,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, Newcastle",Surfing,Paul Wilson ,M,15,Minor injuries,False,Wobbegong shark?,"V.M. Coppleson (1958), pp.79 & 236",1957.04.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.23-Wilson.pdf,1957.04.23,1957.04.23 +4195,22-Apr-1957,Provoked,USA,Florida,"Ormond Beach, Volusia County",Standing,Michael Carpenter,M,17,Ankle injured by shark trapped in pool as it tried to get out PROVOKED INCIDENT ,False,4 m [13'] shark,"R. F. Hutton; V.M. Coppleson (1958), pp.155 & 255",1957.04.22-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.22-Carpenter.pdf,1957.04.22,1957.04.22 +4196,13-Apr-1957,Unprovoked,AUSTRALIA,Torres Strait,"Thursday Island Harbour, Queensland",Swimming between anchored pearling luggers,Tuisafua Nomoa,M,22,"Left arm bitten, surgically amputated",False,Shark seen feeding on turtle scraps thrown overboard prior to incident.,"J.W. Robinson; V.M. Coppleson (1958), p.245; J. Green, p.34",1957.04.13-Nomoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.13-Nomoa.pdf,1957.04.13,1957.04.13 +4197,07-Apr-1957,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),Kieta,Diving from canoe,Omni (rescuer),M,17,Injured while Sonieva was transferred to another canoe,False,Shark seen feeding on turtle scraps thrown overboard prior to incident.,"V.M. Coppleson (1958), pp.248 & 266",1957.04.07.b-Omni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.b-Omni.pdf,1957.04.07.b,1957.04.07.b +4198,07-Apr-1957,Unprovoked,SOLOMON ISLANDS,Bougainville (North Solomons),Kieta,Diving from canoe,Matthew Sonieva,M,15,Leg severed,False,Shark seen feeding on turtle scraps thrown overboard prior to incident.,"V.M. Coppleson (1958), pp. 248 & 266; A.M. Rapson, p.149",1957.04.07.a-Sonieva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.04.07.a-Sonieva.pdf,1957.04.07.a,1957.04.07.a +4199,24-Feb-1957,Unprovoked,FIJI,Viti Levu,Suva Harbor,Spearfishing,Sami Bale,M,15,Right arm & forearm injured,False,Shark seen feeding on turtle scraps thrown overboard prior to incident.,"NOTE: V.M. Coppleson (1962), p.253, records the date as 2/24/1957; L. Schultz & M. Malin, p.537, records the name as ""Bale, a Fijian"" and the date as 2/24/1956 ",1957.02.24-Bale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.24-Bale.pdf,1957.02.24,1957.02.24 +4200,05-Feb-1957,Unprovoked,USA,Florida,"South Beach, Fort Pierce, St Lucie County",Floating,David Carson,M,15,Foot bitten,False,1.2 m [4'] shark,"R.F. Hutton; V.M. Coppleson (1958), p.255",1957.02.05-Carson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.05-Carson.pdf,1957.02.05,1957.02.05 +4201,02-Feb-1957,Unprovoked,AUSTRALIA,Western Australia,Cape Levêque,Floating,"Japanese male, one of crew of pearl culture survey ship",M,15,Man landed at Cape Levêque lighthouse in critical condition after being bitten by a shark. Not known if he survived.,UNKNOWN,1.2 m [4'] shark,"V.M. Coppleson (1958), p.264",1957.02.02-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.02-JapaneseDiver.pdf,1957.02.02,1957.02.02 +4202,Feb-1957,Unprovoked,USA,Florida,Florida Keys,Skindiving for specimens,R.P.L. Straughan,M,15,Minor injuries,False,Said to involve a large mako shark,"T. Helm, p.235",1957.02.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.02.00-Straughan.pdf,1957.02.00,1957.02.00 +4203,05-Jan-1957,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umgeni River Mouth,Wading,Sydney Victor Williams,M,12,fatal,True,Said to involve a large mako shark,"Col. C. Maritz, M. Levine, GSAF",1957.01.05-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.01.05-Williams.pdf,1957.01.05,1957.01.05 +4204,1957,Invalid,SRI LANKA,Western Province,Colombo Harbor,Fishing,F. L. Fernando,M,12,fatal,True,Shark involvement prior to death was not confirmed,R. I. DeSilva,1957.00.00.k-Fernando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.k-Fernando.pdf,1957.00.00.k,1957.00.00.k +4205,1957,Unprovoked,USA,Florida,"Fort Pierce, St. Lucie County",Bathing,R. Nauth,,12,Injured by shark,False,1.5 m [5'] shark,R.F. Hutton,1957.00.00.j-NV-Nauth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.j-NV-Nauth.pdf,1957.00.00.j,1957.00.00.j +4206,1957,Invalid,CUBA,Havana Province,Cojimar,Bathing,an infant,,2 to 3 months,fatal,True,3.7 m [12'] shark,"F. Poli, p.23-24",1957.00.00.i-baby,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.i-baby,1957.00.00.i,1957.00.00.i +4207,1957,Boat,CUBA,Havana Province,Cojimar,Fishing,"boat, occupant: Portuondo",,2 to 3 months,"No injury to occupant, shark stuck boat",False,3.7 m [12'] shark ,"F. Poli, pp.21-24",1957.00.00.h-boat-Portuondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.h-boat-Portuondo.pdf,1957.00.00.h,1957.00.00.h +4208,1957,Unprovoked,CUBA,Havana Province,Havana,Fishing for sharks,William Bolster,M,18,fatal,True,3.7 m [12'] shark ,"F. Poli, p.9",1957.00.00.g-Bolster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.g-Bolster.pdf,1957.00.00.g,1957.00.00.g +4209,1957,Unprovoked,USA,Florida,"Miami, Miami-Dade County",Helmet diving in Miami Seaquarium,Jim Kline,M,18,"Shark struck helmet, no injury",False,Bull shark,"R. Carras, H.D. Baldridge, p.181",1957.00.00.f-Kline.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.f-Kline.pdf,1957.00.00.f,1957.00.00.f +4210,1957,Unprovoked,FIJI,Kadavu,Great Astrolabe Reef,Fishing,Semesa Vasu,M,30,Right foot lacerated,False,Bull shark,S.B. Brown,1957.00.00.e-Vasu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.e-Vasu.pdf,1957.00.00.e,1957.00.00.e +4211,1957,Unprovoked,IRAN,Karun River,"near Band Misan in Shustar, 420 km from the sea",Fishing,Mr. Paniry,M,30,Survived,False,Bull shark,B. Coad,1957.00.00.d-Paniry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.d-Paniry.pdf,1957.00.00.d,1957.00.00.d +4212,1957,Unprovoked,PAPUA NEW GUINEA,"Abau Subdistrict,Central Province",Mailu area ,Fishing,"male, from Laluoro",M,30,fatal,True,Bull shark,"A. Bleakley; A.M. Rapson, p.149",1957.00.00.b-Mailu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.b-Mailu.pdf,1957.00.00.b,1957.00.00.b +4213,1957,Unprovoked,IRAN,Karun River,Hesamabad,Fishing,Mr. Falah,M,30,Survived,False,Bull shark,B. Coad & F. Papahn,1957.00.00.c-Falah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.c-Falah.pdf,1957.00.00.c,1957.00.00.c +4214,1957,Unprovoked,PAPUA NEW GUINEA,"New Britain, Bismarck Archipelago",Duke of York Island,Dynamiting fish,male,M,30,fatal,True,Bull shark,"A. M. Rapson, p. 149",1957.00.00.a-Duke-of-York.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1957.00.00.a-Duke-of-York.pdf,1957.00.00.a,1957.00.00.a +4215,26-Dec-1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Samarai Island (south end),Spearfishing,Patterson (John) Nikuniko,M,19,fatal,True,2.4 m [8'] tiger shark caught 40 hours later with shorts of the boy in its gut,"Beavis, Kwato Mission; District Commissioner, Samarai; South Pacific Post, 10/29/1956; A.M. Rapson, p.149",1956.12.26-Nikuniko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.26-Nikuniko.pdf,1956.12.26,1956.12.26 +4216,24-Dec-1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,Samarai Island,Spearfishing,Titus Tiso,M,16,fatal,True,2.4 m [8'] tiger shark caught 40 hours later with shorts of the boy in its gut,"Beavis, Kwato Mission; A. M. Rapson, p. 149; V.M. Coppleson (1958), p.264",1956.12.24-Tiso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.24-Tiso.pdf,1956.12.24,1956.12.24 +4217,Reported 15-Dec-1956,Unprovoked,GABON,Estuaire Province,Owendo,Swimming,P. Allen,M,16,fatal,True,2.4 m [8'] tiger shark caught 40 hours later with shorts of the boy in its gut,"Alton Evening Telegraph, 12/15/1956, p.4",1956.12.15.R-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.15.R-Allen.pdf,1956.12.15.R,1956.12.15.R +4218,09-Dec-1956,Provoked,NEW ZEALAND,North Island,North Auckland,Fishing,Richard McKenzie,M,70,Bitten in cockpit of boat by shark caught 30 minutes earlier PROVOKED INCIDENT,False,"Mako shark, 125-lb "," The Argus, 12/10/1956; V.M. Coppleson (1958)",1956.12.09-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.12.09-McKenzie.pdf,1956.12.09,1956.12.09 +4219,27-Oct-1956,Unprovoked,SOUTH AFRICA,Western Cape Province,"Glencairn, False Bay",Free diving for sinkers,Graham Smith,M,29,Right heel lacerated & swim fin removed by shark,False,"White shark, according to witnesses","M. Levine, GSAF",1956.10.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.27-Smith.pdf,1956.10.27,1956.10.27 +4220,20-Oct-1956,Unprovoked,PAPUA NEW GUINEA,Central Province,Kapakapa ,"Spearfishing, holding 5' speared fish",Bogana Sabati,M,29,"Left forearm & hand bitten, surgically amputated ",False,3.7 m [12'] shark,"South Pacific Post, 1/024/1956; A.M. Rapson, p. 149",1956.10.20-Sabati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.20-Sabati.pdf,1956.10.20,1956.10.20 +4221,07-Oct-1956,Unprovoked,SENEGAL,"Near Dakar, Cap Vert Peninsula",Isle de Gorée,"Skindiving, fish at belt",k,M,19,Right thigh bitten,False,Lemon shark,"M. Cadenet; Y. Gilbert-Desvallons; V.M. Coppleson (1962), p.538 ",1956.10.07-Peron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.07-Peron.pdf,1956.10.07,1956.10.07 +4222,Oct-1956,Unprovoked,PAPUA NEW GUINEA,Port Moresby,Port Moresby,Fishing,"The Age, 12/7/1956",M,19,fatal,True,Lemon shark,"The Age, 12/7/1956",1956.10.00-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.10.00-PortMoresby.pdf,1956.10.00,1956.10.00 +4223,23-Sep-1956,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Surf fishing,"Joel Healy, Jr.",M,27,Posterior left ankle bitten,False,a sand shark,"Daytona Beach Morning Journal, 9/26/1956",1956.09.23-Healy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.23-Healy.pdf,1956.09.23,1956.09.23 +4224,13-Sep-1956,Unprovoked,unknown,Near the Andaman & Nicobar Islands,Near the Andaman & Nicobar Islands,Climbing back on ship,male,M,27,fatal,True,Blue shark,M. Hosina,1956.09.13-TunaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.13-TunaBoat.pdf,1956.09.13,1956.09.13 +4225,Sep-1956,Unprovoked,MAYOTTE,Mozambique Channel,Mozambique Channel,Fishing,2 males,M,27,fatal,True,Tiger shark,P. Fourmanoir,1956.09.00.b-Mayotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.b-Mayotte.pdf,1956.09.00.b,1956.09.00.b +4226,Sep-1956,Unprovoked,ITALY,Tyrrenian Sea,1.5 miles south of San Felice Circeo ,Scuba diving,Goffredo Lombardo,M,27,Survived,False,"White shark, 13'10"", 1320-lb female ","G. Bini, A. De Maddalena & C. Moore, GSAF",1956.09.00.a-Lombardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.09.00.a-Lombardo.pdf,1956.09.00.a,1956.09.00.a +4227,25-Aug-1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Paga Point or Fishermans Island, Port Moresby",Fishing ,"Kara Benagi, from Hula",M,34,fatal,True,4.3 m [14'] shark,"V.M. Coppleson (1958), pp.49-51 & 264; A.M. Rapson, p. 149",1956.08.25-Benagi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.25-Benagi.pdf,1956.08.25,1956.08.25 +4228,20-Aug-1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Paga Point, Port Moresby ",Fishing,native,M,34,"Leg bitten, but survived",False,4.3 m [14'] shark,"V.M. Coppleson (1958), pp.49 & 264; A.M. Rapson, p.149",1956.08.20-native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.20-native.pdf,1956.08.20,1956.08.20 +4229,Reported 15-Aug-1956,Unprovoked,USA,Puerto Rico,North coast,Skin diving,Jose Luis Nufize Lago,M,13,fatal,True,4.3 m [14'] shark,"Virgin Island Daily News, 8/15/1956, p.1",1956.08.15.R-Lago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.R-Lago.pdf,1956.08.15.R,1956.08.15.R +4230,15-Aug-1956,Provoked,AUSTRALIA,Queensland,Near Southport,Diving,Lyle Davis,M,13,Laceration to arm when his dive buddy grabbed the shark PROVOKED INCIDENT,False,"Wobbegong shark, 4' ","Central Queensland Herald, 8/16/1956",1956.08.15.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.b-Davis.pdf,1956.08.15.b,1956.08.15.b +4231,15-Aug-1956,Unprovoked,USA,California,"Pismo Beach, San Luis Obispo County",Swimming near pier,Douglas Clarke,M,10,"Lacerated thigh, hand & shoulder",False,"White shark, 2.7 m [9'] ","D. Miller & R. Collier, V.M. Coppleson (1958), p.255; R. Collier, p. 15",1956.08.15.a-DouglasClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.15.a-DouglasClarke.pdf,1956.08.15.a,1956.08.15.a +4232,1-Aug-1956,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Chain Rocks, Amanzimtoti",Free diving for crayfish,Maximilliaan Roual Van Dam,M,23,"No injury, right swim fin bitten",False,"White shark, 2.7 m [9'] ","Umtali Post, 8/8/1956, M. Levine, GSAF",1956.08.01-VanDam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.01-VanDam.pdf,1956.08.01,1956.08.01 +4233,Aug-1956,Provoked,UNITED KINGDOM,Cornwall,The Lizard,Attempting to kill a shark with explosives,Richard Kirby,M,23,fatal,True,"White shark, 2.7 m [9'] ",ThisisCornwall.co.uk ,1956.08.00.e-Kirby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.e-Kirby.pdf,1956.08.00.e,1956.08.00.e +4234,Aug-1956,Provoked,UNITED KINGDOM,Cornwall,The Lizard,Attempting to kill a shark with explosives,Leslie Nye,M,23,fatal,True,"White shark, 2.7 m [9'] ",ThisisCornwall.co.uk ,1956.08.00.d-Nye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.d-Nye.pdf,1956.08.00.d,1956.08.00.d +4235,Aug-1956,Boat,MALTA,Congreve Channel,between Filfla Island and Wied iz-Zurrieq,Fishing,boat: occupants: Nazzareno Zammit & Emmanuel,,23,"No injury to occupants, but Emmanuel ""later died of shock in hospital""",False,Porbeagle or white shark,A. Buttigieg,1956.08.00.c-Zammit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.c-Zammit.pdf,1956.08.00.c,1956.08.00.c +4236,Aug-1956,Unprovoked,PAPUA NEW GUINEA,Central Province,Yule Island,Fishing,Tsira Native,M,23,"Leg severed, but survived",False,Porbeagle or white shark,"V.M. Coppleson (1958), pp.49-51 & 264; A.M. Rapson, p. 149",1956.08.00.b-TsiraNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.b-TsiraNative.pdf,1956.08.00.b,1956.08.00.b +4237,Aug-1956,Unprovoked,PAPUA NEW GUINEA,Central Province,"Fisherman's Island, near Port Moresby",Fishing,native boy,M,23,Leg & foot lacerated,False,2.3 m [7'] shark,"V.M. Coppleson (1958), pp.49-51; A. M. Rapson, p. 149",1956.08.00.a-NativeBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.08.00.a-NativeBoy.pdf,1956.08.00.a,1956.08.00.a +4238,28-Jul-1956,Provoked,USA,Puerto Rico,Aquadilla,Floating in inner tube,Jose Alengo,M,13,fatal,True,2.3 m [7'] shark,"V.M. Coppleson (1958), p.265",1956.07.28-Alengo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.28-Alengo.pdf,1956.07.28,1956.07.28 +4239,26-Jul-1956,Provoked,USA,California,"Van Ness Municipal Pier, San Francisco",Fishing,Bansie Koide,M,38,Finger bitten by hooked shark PROVOKED INCIDENT,False,8-lb shark,"San Mateo Times, 7/27/1956, p.18",1956.07.26-BansieKoide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.26-BansieKoide.pdf,1956.07.26,1956.07.26 +4240,20-Jul-1956,Unprovoked,MALTA,St. Thomas Bay,Marsascala,Swimming,Jack Smedley,M,40,fatal,True,White shark,"V.M. Coppleson (1958), p.261; A. Xuereb; A. Buttigieg & C. Moore, GSAF",1956.07.20-Smedley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.20-Smedley.pdf,1956.07.20,1956.07.20 +4241,17-Jul-1956,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Wading,Eleanor Nelson,F,38,Lacerations to legs,False,White shark,"Miami Daily News, 7/19/1956",1956.07.17-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.17-Nelson.pdf,1956.07.17,1956.07.17 +4242,12-Jul-1956,Unprovoked,USA,South Carolina,"Isle of Palms, Charleston County",Swimming,Eric Rawls,M,7,Arm & leg injured,False,White shark,"News & Courier, 7/14/1956; V.M. Coppleson (1958), pp. 153 & 255",1956.07.12-Rawls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.07.12-Rawls.pdf,1956.07.12,1956.07.12 +4243,28-Jun-1956,Unprovoked,AUSTRALIA,Torres Strait,"Fishman's Island (near Port Moresby, PNG) ","Line fishing from Lakotoi, saw shoal of fish, dived overboard, had speared second fish & surfaced for air",Kila,M,7,"6"" gashes in foot & leg ",False,2.3 m [7'] shark,"A. M. Rapson, p.149; V.M. Coppleson (1962), p.254",1956.06.28-Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.28-Kila.pdf,1956.06.28,1956.06.28 +4244, 22-Jun-1956,Boating,PORTUGAL,Madeira,Off Funchal,Longling fishing,Manuel Pereira,M,23,fatal,True,2.3 m [7'] shark,"C. Moore, GSAF",1956.06.22-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.22-Pereira.pdf,1956.06.22,1956.06.22 +4245,20-Jun-1956,Sea Disaster,MID ATLANTIC OCEAN,Venezuelan aircraft lost,Venezuelan aircraft lost,Air/Sea Disaster,"New York Times, 6/21/1956; L. Schultz & M. Malin, p.558",,23,fatal,True,2.3 m [7'] shark,"New York Times, 6/21/1956; L. Schultz & M. Malin, p.558",1956.06.20-VenezuelanAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.06.20-VenezuelanAircraft.pdf,1956.06.20,1956.06.20 +4246,Reported 26-May-1956,Boating,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Fishing,multiple boats including B.J. C. Brunt,,23,"No injury, sharks bit propellers, etc",False,White shark,"Natal Mercuy, 5/26/1956",1956.05.26.R-Brunt-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.26.R-Brunt-boat.pdf,1956.05.26.R,1956.05.26.R +4247,07-May-1956,Unprovoked,CUBA,unknown,unknown,"Free diving, working on U/W scenes for motion picture",Russ Shearman,M,30,fatal,True,White shark,"V.M. Coppleson (1958), p.258; V.M. Coppleson (1962), p.253",1956.05.07-Shearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.07-Shearman.pdf,1956.05.07,1956.05.07 +4248,May 1956,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Diving," V.M. Coppleson (1958), p.245",,30,"""Badly bitten by shark""",False,White shark," V.M. Coppleson (1958), p.245",1956.05.00-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.05.00-diver.pdf,1956.05.00,1956.05.00 +4249,25-Mar-1956,Boating,ITALY,Ligurian Sea,"Genova, S. Nazaro, Punta Vagno",Boating,A. De Maddalena; Mojetta et al. (1997),,30,No details,UNKNOWN,Said to involve a 7 m [23'] white shark,A. De Maddalena; Mojetta et al. (1997),1956.03.25-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.25-Italy.pdf,1956.03.25,1956.03.25 +4250,11-Mar-1956,Unprovoked,AUSTRALIA,New South Wales,"Cronulla, near Sydney",Bathing,Ian Nolan,M,13,"Right thigh gashed, swim fin torn",False,Said to involve a 7 m [23'] white shark," V.M. Coppleson (1958), p.112",1956.03.11-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.11-Nolan.pdf,1956.03.11,1956.03.11 +4251,04-Mar-1956,Unprovoked,AUSTRALIA,Victoria,"Portsea Beach, near entrance to Port Phillip Bay","Swimming, attacked at surf carnival",John Patrick Wishart,M,26,fatal,True,3.7 m [12'] shark & may have been another shark nearby,"V.M. Coppleson (1958), pp.110-111 & 241; J. Green, p.34; A. Sharpe, pp.112-113",1956.03.04-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.04-Wishart.pdf,1956.03.04,1956.03.04 +4252,Mar-1956,Unprovoked,AUSTRALIA,Western Australia,Fremantle,Attempting to set underwater endurance record,Theo Brown,M,21,"No injury to diver, but shark bit hole in his wetsuit",False,3.7 m [12'] shark & may have been another shark nearby,"J. Green, p.34, Spokesman-Review, 3/19/1956",1956.03.00.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.03.00.b-Brown.pdf,1956.03.00.b,1956.03.00.b +4253,26-Feb-1956,Unprovoked,AUSTRALIA,Queensland,Pioneer River near Mackay,Diving into water,Barry Keith Antonini,M,15,fatal,True,1.8 m [6'] shark,"B. Thompson; L. Schultz & M. Malin, p.521",1956.02.26-Antonini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.26-Antonini.pdf,1956.02.26,1956.02.26 +4254,Reported 10-Feb-1956,Unprovoked,AUSTRALIA,Victoria,Cowes,Swimming,Brian Hamilton,M,8,Punctures to calves,False,1.8 m [6'] shark,"The Argus, 2/10/1956",1956.02.10.R-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.02.10.R-Hamilton.pdf,1956.02.10.R,1956.02.10.R +4255,Reported 16-Jan-1956,Unprovoked,AUSTRALIA,Torres Strait,Palm Island,Diving for trochus,Stephen Conedo,M,18,Lacerations to thighs,False,1.8 m [6'] shark,"The Age, 1/15/1956; V.M. Coppleson (1958), p.245;",1956.01.16.R-Conedo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16.R-Conedo.pdf,1956.01.16.R,1956.01.16.R +4256,16-Jan-1956,Unprovoked,COSTA RICA,San Juan River,San Juan River,Swimming,Lester Burton,M,33,fatal,True,1.8 m [6'] shark,"Washington Post, 1/18/1956; Note: Webster, p.55, has date of 1/18/1956 and location as Sapoa River in Nicaragua.",1956.01.16-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.16-Burton.pdf,1956.01.16,1956.01.16 +4257,05-Jan-1956,Unprovoked,AUSTRALIA,New South Wales,North Bondi,Surf skiing,Ken Howell,M,25,"No injury, shark bumped his 17' ski",False,5' to 6' shark,"Sydney Morning Herald, 1/16/1956",1956.01.05-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.01.05-Howell.pdf,1956.01.05,1956.01.05 +4258,1956,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Singour, 60 miles south of Madang",Diving,native boy,M,25,Lower leg & foot lacerated,False,5' to 6' shark,H.D. Baldridge,1956.00.00.h-NV native-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.h-NV native-boy.pdf,1956.00.00.h,1956.00.00.h +4259,1956,Sea Disaster,unknown,Between Comores & Madagascar,Geyser Bank,Shipwreck,"Captain Eric Hunt, the cook & a French passenger",M,25,fatal,True,5' to 6' shark,dinofish.com,1956.00.00.g-Capt-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.g-Capt-Hunt.pdf,1956.00.00.g,1956.00.00.g +4260,1956,Unprovoked,GREECE,Corfu Island,Kérkira,Swimming off yacht,Margoulis,F,15,fatal,True,White shark,MEDSAF,1956.00.00.f-Margoulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.f-Margoulis.pdf,1956.00.00.f,1956.00.00.f +4261,1956,Provoked,USA,Virginia,"Virginia Beach, Princess Anne County",Removing shark from net ,Josh Vaughan,M,15,Punctures on shin & calf PROVOKED INCIDENT,False,40-lb sand shark,"Virginian Pilot (Norfolk, VA), 9/5/1960",1956.00.00.e-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.e-Vaughn.pdf,1956.00.00.e,1956.00.00.e +4262,1956,Unprovoked,USA,Virginia,"Virginia Beach, Princess Anne County",Swimming,girl,F,14,No details,UNKNOWN,40-lb sand shark,"A. MacCormick, p.11, citing the New Orleans Times-Picayune, 8/17/1983",1956.00.00.d-girl-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.d-girl-VirginiaBeach.pdf,1956.00.00.d,1956.00.00.d +4263,1956,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Kimuta, Renard Island",Swimming,Anonymous,,14,fatal,True,40-lb sand shark,"A.M. Rapson, p. 149",1956.00.00.c-Kimuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.c-Kimuta.pdf,1956.00.00.c,1956.00.00.c +4264,1956,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Hus Island ,Swimming,male,M,14,Right calf bitten,False,40-lb sand shark,"A.M. Rapson, p.149;",1956.00.00.b-Hus-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.b-Hus-Island.pdf,1956.00.00.b,1956.00.00.b +4265,1956,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,Enuk Island ,Swimming,Lamoman,M,14,fatal,True,40-lb sand shark,"J. McLachlan, Medical Officer, Kavieng; A. M. Rapson, p.149",1956.00.00.a-Enuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1956.00.00.a-Enuk.pdf,1956.00.00.a,1956.00.00.a +4266,Reported 31-Dec-1955,Boating,AUSTRALIA,Tasmania,Tasmania,Ocean racing,yacht Even,,14,"No injury to occupants, shark gouged hull",False,40-lb sand shark,"C. Black, GSAF",1955.12.31.R-Even.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.31.R-Even.pdf,1955.12.31,1955.12.31 +4267,11-Dec-1955,Boating,USA,Florida,½ mile offshore & 9 miles north of Fort Pierce,Fishing for pompano,"boat, occupants: P.D. Neilly & Charlton Anderson",,14,"No injury to occupants, shark released from net holed boat",False,40-lb sand shark,"R.F. Hutton, 3/30/1959, citing Miami Herald; T. Helm, p.234",1955.12.11-boat Neilly_Charlton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.12.11-boat Neilly_Charlton.pdf,1955.12.11,1955.12.11 +4268,16-Nov-1955,Unprovoked,PAPUA NEW GUINEA,Central Province,"Kalautu Village, Baibara at the mouth of Oibada River",Swimming,Niu Bodu,M,8,Right thigh bitten,False,Wobbegong shark,"J. G. Davis; A.M. Rapson, pp.143 & 148 ",1955.11.16-NiuBodu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.16-NiuBodu.pdf,1955.11.16,1955.11.16 +4269,Nov-1955,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Low Island, Manus",Spearfishing,male,M,8,Right arm severely bitten,False,Wobbegong shark,"Rapson, p.149",1955.11.00-LowIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.11.00-LowIsland.pdf,1955.11.00,1955.11.00 +4270,16-Oct-1955,Provoked,AUSTRALIA,Queensland,"Tully, North Queensland",Spearfishing & lassoed shark,Noel Cross,M,28,Lassoed shark bit his hand PROVOKED INCIDENT,False,6' shark,"Sydney Morning Herald, 10/17/1955;V.M. Coppleson (1958), p.185; Cross, p.34",1955.10.16-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.10.16-Cross.pdf,1955.10.16,1955.10.16 +4271,23-Sep-1955,Sea Disaster,NORTH PACIFIC OCEAN,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",R.C. Olsen,M,28,fatal,True,Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,"Letter from Captain Raoul G. Rehrer in letter to G.A. Llano in Sharks and Survival, pp.381-382; V.M. Coppleson (1962), p.257",1955.09.23.b-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.b-Olsen.pdf,1955.09.23.b,1955.09.23.b +4272,23-Sep-1955,Sea Disaster,NORTH PACIFIC OCEAN,1000 miles west of Hawaii,Between Wake & Johnston Islands,"""Flying Tiger"" transport plane went down with 5 men onboard",Robert C. Hightower,M,28,Bitten several times before being rescued after 43 hours in the sea by the freighter Stell Advocate,False,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","Letter from Captain R. G. Rehrer in letter to G.A. Llano in Sharks and Survival, pp.381-382; V.M. Coppleson (1962), p.257",1955.09.23.a-Hightower.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.23.a-Hightower.pdf,1955.09.23.a,1955.09.23.a +4273,20-Sep-1955,Unprovoked,USA,Hawaii,East Moloka'i,Hunting turtle,Philip C. Diez,M,28,Arm bitten,False,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","J. Borg, p.73; L. Taylor (1993), pp.100-101; Note: Date listed as Mar-1956 by V.M. Coppleson (1958), p.260 and 1956 by A. Resciniti, p.53",1955.09.20-Diez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.20-Diez.pdf,1955.09.20,1955.09.20 +4274,04-Sep-1955,Unprovoked,USA,California,"Venice Beach, Los Angeles County",Swimming near breakwater,Eric Vaughters,M,16,Dorsum of right foot lacerated,False,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","R. Collier, p.14-15; L.A. Times, 9/5/1955; V.M. Coppleson (1958), p.254; D. Miller & R. Collier;",1955.09.04-Vaughters_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.04-Vaughters_Collier.pdf,1955.09.04,1955.09.04 +4275,03-Sep-1955,Unprovoked,USA,California,"Venice Beach, Los Angeles County",Swimming near breakwater,male,M,16,Minor injury,False,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","LA Times, 9/5/1955 editon ",1955.09.03-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.09.03-VeniceBeach.pdf,1955.09.03,1955.09.03 +4276,30-Aug-1955,Unprovoked,JAPAN,Izo Islands,"Mikura-jima Island, 150 miles south of Tokyo",Fishing,Otamatsu H. Yoshii,M,16,fatal,True,"Survivors said 2 species of sharks were involved: oceanic whitetip sharks and another species,","K. Nakaya, L.A. Times, 8/31/1955; V.M. Coppleson (1962), p.247",1955.08.30.b-Yoshi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.b-Yoshi.pdf,1955.08.30.b,1955.08.30.b +4277,30-Aug-1955,Provoked,USA,California,"Zuma Beach, Santa Monica, Los Angeles County",Surfing,Dale Strand,M,25,"Surfer grabbed shark, which turned & bit him and 2 lifeguards PROVOKED INCIDENT",False,5' thresher or blue shark. The shark was killed following the incident,"SAF Case #244; D. Miller & R. Collier, V.M. Coppleson (1958), p.255",1955.08.30.a-DaleStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.30.a-DaleStrand.pdf,1955.08.30.a,1955.08.30.a +4278,26-Aug-1955,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Opatija,Swimming,Carla Podzum,F,32,fatal,True,White shark,R. Rocconi,1955.08.26-Podzum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.26-Podzum.pdf,1955.08.26,1955.08.26 +4279,08-Aug-1955,Unprovoked,AMERICAN SAMOA,Tutuila Island,Pago Pago Bay,Swimming,Sailor from tuna vessel,M,28,fatal,True,Blue shark,M. Hosina,1955.08.08-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.08-Samoa.pdf,1955.08.08,1955.08.08 +4280,Reported 04-Aug-1955,Provoked,USA,South Carolina,Windy Hill Beach,Fishing,fisherman,M,28,Finger bitten by hooked shark PROVOKED INCIDENT,False,"""a small shark""","Kingsport Times, 8/4/1955",1955.08.04.R-SC-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.04.R-SC-fisherman.pdf,1955.08.04.R,1955.08.04.R +4281,Aug-1955,Unprovoked,NORTH ATLANTIC OCEAN ,Open sea,Open sea,Treading water,Wolfgang Emrich,M,15,No injury,False,"""a small shark""","H.D.Baldridge (1994), SAF Case #1489",1955.08.00.c-NV-Emrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.c-NV-Emrich.pdf,1955.08.00.c,1955.08.00.c +4282,Aug-1955,Boating,AUSTRALIA,South Australia,Port Augusta,Fishing,"launch, occupant: Clarrie Whelan",,15,Whelan's head was injured when he fell to the deck as shark rammed boat,False,Tooth fragments recovered from hull,"V.M. Coppleson (1958), pp.184-185",1955.08.00.a-Whelan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.08.00.a-Whelan.pdf,1955.08.00.a,1955.08.00.a +4283,25-Jul-1955,Unprovoked,JAPAN,Okayama Prefecture,Usimado-no-Seto,Fishing,Hideo Ishida,M,22,fatal,True,Blue shark,M. Hosina,1955.07.25-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.25-Ishida.pdf,1955.07.25,1955.07.25 +4284,23-Jun-1955,Unprovoked,USA,Rhode Island,Occupasstuxet (Patuxent) Cove,Wading,William Cashman,M,13,Bites on legs & thighs,False,0.7 m [2.5'] sand shark,"The Lowell Sun, 7/24/1955",1955.07.23-Cashman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.23-Cashman.pdf,1955.07.23,1955.07.23 +4285,15-Jul-1955,Unprovoked,MONTENEGRO,Adriatic Sea,Budva,Swimming,Romasevic,M,13,fatal,True,"White shark, 6.5 m ","R. Rocconi; A. De Maddalena; Radovanovic (1965), Soldo & Jardas (2000)",1955.07.15-Romasevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.15-Romasevic.pdf,1955.07.15,1955.07.15 +4286,07-Jul-1955,Unprovoked,YEMEN,Aden,Telegraph Bay,Swimming,Mrs. W. F. Dixon,F,13,fatal,True,2.4 m [8'] shark,"Evening Sun (Baltimore), 9/27/1955; V.M. Coppleson (1958), p.265; H.D. Baldridge, p.125; M. McDiarmid, p.65 ",1955.07.07-Dixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.07.07-Dixon.pdf,1955.07.07,1955.07.07 +4287,08-May-1955,Provoked,USA,California,"Malibu, Los Angeles County",Spearfishing,Robert C. Yeargin,M,28,Diver hit shark & right forearm slightly injured PROVOKED INCIDENT,False,2 m [6.75'] shark,"D. Miller & R. Collier, V.M. Coppleson (1958), p.254; ",1955.05.08-Yeargin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.08-Yeargin.pdf,1955.05.08,1955.05.08 +4288,May 1955,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Lou Island, south of Manus Island",Spearfishing,Sindlin,M,28,"Right forearm severely lacerated, left arm & hand lacerated",False,2 m [6.75'] shark,"V.M. Coppleson (1958), pp.144-146 ",1955.05.00-Sindilin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.05.00-Sindilin.pdf,1955.05.00,1955.05.00 +4289,Reported 13-Apr-1955,Unprovoked,PAPUA NEW GUINEA,Central Province,"Hadrian’s (Haidana?) Island, near Port Moresby",Spearfishing or fishing,Kairua Gairi,M,28,Left shoulder bitten,False,6' shark,"South Pacific Post, 4/13/1955; V.M. Coppleson (1962), p.254",1955.04.13.R-Gairu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.13.R-Gairu.pdf,1955.04.13.R,1955.04.13.R +4290,12-Apr-1955,Unprovoked,PAPUA NEW GUINEA,Abau,Abau,Spearfishing,Kula,M,28,No injury. Shark took string of fish then struck canoe,False,6' shark,"South Pacific Post, 4/20/1955",1955.04.12-Kula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.12-Kula.pdf,1955.04.12,1955.04.12 +4291,Apr-1955,Unprovoked,USA,Hawaii,"Hilo, Hawai'i","Fishing from boat, Kaimamla",Kanematsu Oshiro,M,28,Hand bitten,False,6' shark,"Tribune-Herald (Hilo, Hawaii), 4/14/1963; J. Borg, p.73; L. Taylor, p.100-101 ; NOTE: Oshiro later sued owner of the boat for $15,000 in damages",1955.04.00-Oshiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.04.00-Oshiro.pdf,1955.04.00,1955.04.00 +4292,09-Mar-1955,Unprovoked,AUSTRALIA,New South Wales,Wamberal,Body surfing,Noel Langford,M,22,fatal,True,6' shark,"V.M. Coppleson (1958), pp.84-85 & 236; A. Sharpe, pp.82-83",1955.03.09-Langford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.09-Langford.pdf,1955.03.09,1955.03.09 +4293,Mar-1955,Unprovoked,PAPUA NEW GUINEA,"New Ireland, Bismarck Archipelago","Kabiman, West coast",Swimming with speared fish,"Lidua, a male",M,22,Left leg bitten,False,"""small brown-colored shark""","Namatanai Dept. of Public Health; A. M. Rapson, p.148",1955.03.00.b-Liuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.b-Liuda.pdf,1955.03.00.b,1955.03.00.b +4294,Mar-1955,Provoked,AUSTRALIA,Western Australia,Woodman’s Point,"Competing in U/W endurance record, standing beside drum in 10' of water",Theo Watts Brown,M,25,Leg of wetsuit torn after spear fired at shark PROVOKED INCIDENT,False,"""small brown-colored shark""","H.D. Baldridge, p.104",1955.03.00.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.03.00.a-Brown.pdf,1955.03.00.a,1955.03.00.a +4295,10-Feb-1955,Unprovoked,USA,California,"Trinidad Bay, Humboldt County",Scuba diving,John Adams,M,25,"No injury, shark bumped diver's face",False,"Leopard shark, 3' Triakis semifasciata, identified by J.W. DeWitt (1955)","J. DeWitt (1955); V.M. Coppleson (1962), p.255; D. Miller & R. Collier",1955.02.10-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.10-Adams.pdf,1955.02.10,1955.02.10 +4296,06-Feb-1955,Unprovoked,USA,California,"Pacific Grove, Monterey County",Spearfishing,James F. Jacobs,M,19,"Swimfin & 2 wool socks removed by shark, suit torn",False,"White shark, 5 m to 6 m [16.5' to 20] ","R. Collier, pp. 13-14; D. Miller & R. Collier; California Fish & Game; V.M. Coppleson (1958), pp. 156 & 254; H.D. Baldridge, p.68",1955.02.06-JamesJacobs_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.06-JamesJacobs_Collier.pdf,1955.02.06,1955.02.06 +4297,05-Feb-1955,Unprovoked,AUSTRALIA,New South Wales,"Sugarloaf Bay, Middle Harbor, Sydney",Swimming,Bruno Aloysius Rautenberg,M,25,fatal,True,3.6 m white shark (or bronze whaler),"V.M. Coppleson (1958), pp.71, 175 & 236; A. Sharpe, pp.74-75",1955.02.05-Rautenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.05-Rautenberg.pdf,1955.02.05,1955.02.05 +4298,04-Feb-1955,Unprovoked,INDIA,Tamil Nadu,"Vanagiri, Madras (Chennai), Bay of Bengal",Fishing,Nedugattan,M,25,Leg bitten,False,3.6 m white shark (or bronze whaler),"V.M. Coppleson (1958), p.261",1955.02.04-Nedugattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.04-Nedugattan.pdf,1955.02.04,1955.02.04 +4299,01-Feb-1955,Boating,AUSTRALIA,New South Wales,Parramatta River,Rowing,"racing scull, occupants: Bill Andrews on bow oar, Dick Brown on #2 oar ",,25,"No injury to occupants; shark grabbed oar, vaulted over scull",False,3.6 m white shark (or bronze whaler),"V.M. Coppleson (1958), p.187",1955.02.01-Racing-scull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.01-Racing-scull.pdf,1955.02.01.,1955.02.01. +4300,Feb-1955,Boating,AUSTRALIA,New South Wales,Coff’s Harbor,Rowing toward snapper grounds,10' row boat occupants; Douglas Richards & George Irwin,,25,"No injury to occupants, 6 sharks charged boat",False,4 m [13'] shark x 6,"V.M. Coppleson (1958), p.186",1955.02.00-Richards-Irwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.02.00-Richards-Irwin.pdf,1955.02.00,1955.02.00 +4301,17-Jan-1955,Unprovoked,AUSTRALIA,New South Wales,"Wyargine Point, Edwards Beach, Balmoral Beach, Sydney",Hunting lobsters in 2.4 m of water,John Willis,M,13,fatal,True,"Bronze whaler shark,3.7 m [12'] ","V.M. Coppleson (1958), pp.71, 174-175 & 236; A. Sharpe, p.74",1955.01.17-Willis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.17-Willis.pdf,1955.01.17,1955.01.17 +4302,15-Jan-1955,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,A ford known as Brodies Coffin in St. Lucia Bay,Crossing the bay at the ford,Zulu male,M,13,fatal,True,"Bronze whaler shark,3.7 m [12'] ","Natal Daily News, 1/17/1955; M. Levine, GSAF",1955.01.15-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.01.15-ZuluMale.pdf,1955.01.15,1955.01.15 +4303,1955,Unprovoked,USA,Florida,"Vero Beach, Indian River County",Crossing the bay at the ford,2 incidents north of Vero Beach,,13,No details,UNKNOWN,"Bronze whaler shark,3.7 m [12'] ","R.F. Hutton; V.M. Coppleson (1958) (ref.R. North in Scientific American, 1957",1955.00.00.f-NV-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.f-NV-VeroBeach.pdf,1955.00.00.f,1955.00.00.f +4304,1955,Provoked,CUBA,Havana Province,Cojimar,Fishing,Romilio,M,13,Forearm slashed wrist to elbow by hooked shark he was trying to club to death PROVOKED INCIDENT,False,"""a little shark""","F. Poli, p.13",1955.00.00.d-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.d-Cuba.pdf,1955.00.00.d,1955.00.00.d +4305,1955,Unprovoked,MADAGASCAR,18S / 50E,18S / 50E,Standing in knee-deep water,boy,M,16,fatal,True,"""a little shark""",Mrs. Lyse Mooney,1955.00.00.e-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.e-Madagascar.pdf,1955.00.00.e,1955.00.00.e +4306,1955,Invalid,USA,Illinois,Chicago (Lake Michigan),Swimming,George Lawson,M,16,Right leg allegedly bitten by a bull shark,False,Questionable incident,"F. Dennis, p.52",1955.00.00.c-Chicago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.c-Chicago.pdf,1955.00.00.c,1955.00.00.c +4307,Ca. 1955 ,Unprovoked,COLUMBIA,Isles del Rosario,Southwest of Cartegena,Spearfishing,Gabriel Echiavarria,M,12,Swim fin & foot bitten,False,1.5 m [5'] shark,"H. Echavarria; H.D. Baldridge, p.135; M. McDiarmid, p.64",1955.00.00.b-Echavarria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.b-Echavarria.pdf,1955.00.00.b,1955.00.00.b +4308,1955,Unprovoked,PAPUA NEW GUINEA,New Ireland,Lavongai,Spearfishing,Pakau,M,12,Back bitten,False,1.5 m [5'] shark,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.148",1955.00.00.a-Pakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1955.00.00.a-Pakau.pdf,1955.00.00.a,1955.00.00.a +4309,29-Dec-1954,Unprovoked,AMERICAN SAMOA,Tutuila Island,Near tuna cannery in Pago Pago Harbor,Dived overboard & was swimming near stern of trawler,"Kosuo Mizokawa, Captain of a Japanese trawler",M,27,fatal,True,1.5 m [5'] shark,"Townsville Daily Bulletin, 1/6/1955",1954.12.29-Mizokawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.29-Mizokawa.pdf,1954.12.29,1954.12.29 +4310,11-Dec-1954,Unprovoked,AUSTRALIA,Victoria,Point Lonsdale,Swimming,Lawrence David Burns,M,23,fatal,True,1.5 m [5'] shark,"Sydney Morning Herald, 12/13/1954",1954.12.11-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.11-Burns.pdf,1954.12.11,1954.12.11 +4311,09-Dec-1954,Unprovoked,PAPUA NEW GUINEA,Central Province,"Kila Beach, Port Moresby",Swimming near canoe,Leva Kailovo,M,23,fatal,True,1.5 m [5'] shark,"C.H. Hodgson; A. M. Rapson, p.148",1954.12.09-Kailovo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.09-Kailovo.pdf,1954.12.09,1954.12.09 +4312,04-Dec-1954,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Rocket Hut Beach, Durban",Swimming,Graham Scott,M,16,Shallow lacerations on torso,False,1.5 m [5'] shark,"D. Gibb, M. Levine, GSAF ",1954.12.04-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.12.04-Scott.pdf,1954.12.04,1954.12.04 +4313,20-Nov-1954,Unprovoked,USA,Wake Island,Wilkes Islet Lagoon (Pacific Ocean north of the Marshall Islands),Spearfishing,James L. Oetzel,M,16,Shoulder bitten,False,"Blacktip reef shark, 1.5 m [5'] ","J. L. Oetzel, NOTE: H.D. Baldridge, p.143 lists date as March 20, 1954 ",1954.11.20-Oetzel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.11.20-Oetzel.pdf,1954.11.20,1954.11.20 +4314,07-Oct-1954,Sea Disaster,USA,Virginia,150 miles off Cape Henry,"American freighter Mormackite, bound from Buenos Aires for Baltimore, capsized & sank in heavy seas",second cook,M,16,fatal,True,"Blacktip reef shark, 1.5 m [5'] ","Long Beach Independent, 10/11/1954, p.9; V.M. Coppleson (1958), p.197; V.M. Coppleson (1962), pp. 213 & .259",1954.10.07-Mormackite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.07-Mormackite.pdf,1954.10.07,1954.10.07 +4315,06-Oct-1954,Provoked,UNITED KINGDOM,Isle of Man,Off Fleetwood,Fishing (trawling),John Butcher,M,62,Arm broken by tail of netted shark PROVOKED INCIDENT,False,20' shark,"C.Moore, GDSF; Times of London, 10/7/1954",1954.10.06-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.06-Butcher.pdf,1954.10.06,1954.10.06 +4316,02-Oct-1954,Boating,CROATIA,Zadar County,"Lika-Senj, Pag Island",Boating,"A. De Maddalena; Anon. (1954), Soldo & Jardas (2000)",,62,No details,UNKNOWN,"White shark, 5.5 m [18']","A. De Maddalena; Anon. (1954), Soldo & Jardas (2000)",1954.10.02.b-boat-Pag-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.b-boat-Pag-Croatia.pdf,1954.10.02.b,1954.10.02.b +4317,02-Oct-1954,Invalid,JAPAN,Nagasaki Prefecture,Oomura Bay,Boating,Boy clad in shirt & white linen pants,M,13,Body found in gut of 2000-lb white shark,False,Shark involvement prior to death was not confirmed,"K. Nakaya; San Diego Union, 105/1954 ",1954.10.02.a-boyJapan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.10.02.a-boyJapan.pdf,1954.10.02.a,1954.10.02.a +4318,21-Sep-1954,Unprovoked,USA,California,"La Jolla, San Diego County",Swimming,Clyde Leeper,M,35,Minor bruises & abrasions on leg,False,1.5 m [5'] shark,"D. Miller & R. Collier, V.M. Coppleson (1958), p.254; T. Helm, p.232",1954.09.21-Leeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.21-Leeper.pdf,1954.09.21,1954.09.21 +4319,15-Sep-1954,Unprovoked,HONG KONG,Junk Bay,Junk Bay,Swimming,"James Cook, a seaman from HMS Comus",M,20,fatal,True,1.5 m [5'] shark,"V.M. Coppleson (1958), p.260; A. MacCormick, p.121 citing Times of London 9/17/1954; [SAF Cases #299 & #298",1954.09.15-JamesCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.15-JamesCook.pdf,1954.09.15,1954.09.15 +4320,04-Sep-1954,Unprovoked,AUSTRALIA,Torres Strait,"Darnley Island, Torres Strait","Spearfishing, hunting crayfish",Kapua Gutchen,M,35,fatal,True,9' shark,"The Mercury, 9/14/1954",1954.09.04-Kapua-Gutchen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.09.04-Kapua-Gutchen.pdf,1954.09.04,1954.09.04 +4321,19955,Unprovoked,ITALY,Liguaria,Finale Ligure,Spearfishing,Aldo Campi,M,27,Abdomen injured,False,9' shark,"C. Moore, GSAF",1954.08.19-Campi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.19-Campi.pdf,1954.08.19,1954.08.19 +4322,12-Aug-1954,Provoked,CUBA,Guantanamo Province,Boqueron,Spearfishing,Dr. D.H. Teas,M,27,Knee bitten by shark that his dive buddy had shot PROVOKED INCIDENT,False,"Nurse shark, 58"", 34-lb ","H.D. Baldridge, p.166",1954.08.12.b-Teas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.b-Teas.pdf,1954.08.12.b,1954.08.12.b +4323,12-Aug-1954,Provoked,CUBA,Guantanamo Province,Boqueron,Spearfishing,Dr. H. Warmke,M,27,Right thigh & left calf injured by speared shark PROVOKED INCIDENT,False,"Nurse shark, 58"", 34-lb ","H.D. Baldridge, p.166",1954.08.12.a-Warmke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.08.12.a-Warmke.pdf,1954.08.12.a,1954.08.12.a +4324,30-Jul-1954,Unprovoked,ECUADOR,Galapagos Islands,Galapagos Islands,"Tuna fishing, standing on stern platform that was submerged by waves",Carl Dible,M,34,4 lacerations on dorsum of right foot ,False,"Nurse shark, 58"", 34-lb ","F. X. Schloeder, M.D.; V.M. Coppleson (1962), p.246",1954.07.30-Dibble.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.30-Dibble.pdf,1954.07.30,1954.07.30 +4325,28-Jul-1954,Unprovoked,SINGAPORE,Singapore Harbor,Singapore Harbor,Closed circuit diving (submerged). Diving to recover jettisoned packets of opium for police,"C.B. Larkin, a Royal Navy diver",M,28,fatal,True,"Nurse shark, 58"", 34-lb ","New York Times, 7/29/1954; V.M. Coppleson (1958), p.266; H.D. Baldridge, p.183; ",1954.07.28-BritishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.28-BritishDiver.pdf,1954.07.28,1954.07.28 +4326,27-Jul-1954,Boating,ITALY,Venice Province,Off Chioggia,Fishing trawler Flavio Gioia ,10 crew,M,28,No injury to occupants. Shark tore nets & trawl and struck boat repeatedly,False,5m shark,"C. Moore, GSAF",1954.07.27-Trawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.27-Trawler.pdf,1954.07.27,1954.07.27 +4327,15-Jul-1954,Unprovoked,THE BALKANS,Slovenia,Between Punta Grossa & Koper,Swimming,a Hungarian refugee,M,28,fatal,True,5m shark,"R. Rocconi & C. Moore, GSAF V.M. Coppleson, p.261; H. D. Baldridge, p.15",1954.07.15-refugee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.15-refugee.pdf,1954.07.15,1954.07.15 +4328,Reported 04-Jul-1954,Unprovoked,USA,Florida,Florida Keys,Swimming,a marine biology student from the University of Miami,,28,Small wound on upper thigh,False,"Nurse shark, 2.5' ","Daytona Beach Sunday News- Journal, 7/4/1954",1954.07.04.R-UniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.04.R-UniversityStudent.pdf,1954.07.04.R,1954.07.04.R +4329,03-Jul-1954,Unprovoked,BERMUDA,South shore ,Elbow Beach,Swimming,"Sub-Lieut. Edwin Michael Marks, of H.M.S. Sheffield",M,22,"Left thigh bitten, chest lacerated & defense wounds on foot, fingers and hands",False,"2.4 m [8'] shark, possibly a dusky shark","E.M. Marks; V.M. Coppleson (1958), pp.155 & 257; Randall, p.353 in Sharks & Survival",1954.07.03-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.03-Marks.pdf,1954.07.03,1954.07.03 +4330,Reported 02-Jul-1954,Unprovoked,GREECE,Kalamata,Kalamata,Swimming,2 males,M,22,fatal,True,"2.4 m [8'] shark, possibly a dusky shark","C. Moore, GSAF",1954.07.02.R-Kalamata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.02.R-Kalamata.pdf,1954.07.02.R,1954.07.02.R +4331,Reported 01-Jul-1954,Invalid,CROATIA,Pula,Pula,Swimming,male,,22,Human remains found in shark,False,Shark involvement prior to death was not confirmed,"C. Moore, GSAF",1954.07.01.R-Pula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.07.01.R-Pula.pdf,1954.07.01.R,1954.07.01.R +4332,29-Jun-1954,Provoked,USA,California,"Santa Monica, Los Angeles County",Grabbed shark & threw it on deck,"Frank Donahue, a movie stuntman",M,35,Right elbow & forearm lacerated PROVOKED INCIDENT,False,Shark involvement prior to death was not confirmed,"L.A. Times, 6/30/1954; H.D. Baldridge, p.257",1954.06.29-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.29-Donahue.pdf,1954.06.29,1954.06.29 +4333,27-Jun-1954,Unprovoked,AUSTRALIA,Queensland,Fitzroy Island,Pearl diving from lugger Whyalla,Morslem Aken,M,30,"Shark bit right arm & shoulder, then Aken says, he ""knocked out"" the shark",False,2.4 m [8'] shark,"Morning Bulletin (Rockhampton), 6/30/1954 ",1954.06.27-Aken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.27-Aken.pdf,1954.06.27,1954.06.27 +4334,Jun-1954,Unprovoked,HONG KONG,unknown,unknown,Bathing alongside ship,Naval Rating,M,30,fatal,True,2.4 m [8'] shark,"V.M. Coppleson (1958), p.260",1954.06.00-NavalRating.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.06.00-NavalRating.pdf,1954.06.00,1954.06.00 +4335,Reported 26-May-1954,Unprovoked,PAPUA NEW GUINEA,East Sepik,Wewak,"Fishing / cleaning fish, dived into water to retrieve a lost fish","male, a native constable",M,30,fatal,True,2.4 m [8'] shark,"South Pacific Post, 5/26/1954",1954.05.26.R-Constable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.26.R-Constable.pdf,1954.05.26.R,1954.05.26.R +4336,May 1954,Unprovoked,PAPUA NEW GUINEA,Madang Province,Near Madang Town,"Fishing / cleaning fish, dived into water to retrieve a lost fish",child,,30,Foot severed,False,2.4 m [8'] shark,"V.M. Coppleson (1962), p.248",1954.05.00-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.05.00-child.pdf,1954.05.00,1954.05.00 +4337,08-Apr-1954,Invalid,USA,Hawaii,"Wailupe, O'ahu",Fishing from shore,Gordon S. Chun,M,30,"Body recovered, mutilated by shark/s",False,Shark involvement prior to death was not confirmed,"The Honolulu Advertiser, 4/8/1954; Honoulu Star Bulletin 4/8/1954; J. Borg, p.73; L. Taylor (1993), pp.100-101",1954.04.08-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.08-Chun.pdf,1954.04.08,1954.04.08 +4338,Apr-1954,Provoked,SUDAN?,Red Sea,Southern part ,Spearfishing,Jean Foucher-Createau,M,30,"Speared small shark, shark bit his thigh and/or buttock PROVOKED INCIDENT",False,Shark involvement prior to death was not confirmed,"V.M. Coppleson (1962), p.254; H.D. Baldridge, p.165",1954.04.00-Foucher-Creteau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.04.00-Foucher-Creteau.pdf,1954.04.00,1954.04.00 +4339,27-Feb-1954,Unprovoked,AUSTRALIA,New South Wales,"The Entrance, near Gosford",Swimming,Reg Fabrizius,M,23,fatal,True,Shark involvement prior to death was not confirmed,"V.M. Coppleson (1958), pp.84 & 236",1954.02.27-Fabrizius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.02.27-Fabrizius.pdf,1954.02.27,1954.02.27 +4340,30-Jan-1954,Unprovoked,AUSTRALIA,New South Wales,Avoca Beach,Swimming,Bruce Bourke,M,23,Abrasions to arm,False,Shark involvement prior to death was not confirmed,"Sun-Herald, 1/31/1954",1954.01.30-Bourke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.30-Bourke.pdf,1954.01.30,1954.01.30 +4341,22-Jan-1954,Unprovoked,AUSTRALIA,Torres Strait,Naghir Island,Spearfishing,Annie Mills,M,30,Severe laceration to arm,False,Shark involvement prior to death was not confirmed,"Cairns Post, 1/25/1954",1954.01.22.b-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.b-Mills.pdf,1954.01.22.b,1954.01.22.b +4342,22-Jan-1954,Unprovoked,ARGENTINA,Buenos Aires Province,"Miramar Beach, 46 km south of Mar de Plata, Buenos Aires ",Floating,Alfredo Aubone,M,18,"Arm & left calf bitten, right leg lacerated",False,White shark tooth fragment recovered from ankle & identified by Dr. W. I. Follett,"V.M. Coppleson (1958), p.257; Garrick & L. Schultz in Sharks & Survival, p.13; M. McDiarmid, p.64",1954.01.22.a-Aubone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.22.a-Aubone.pdf,1954.01.22.a,1954.01.22.a +4343,15-Jan-1954,Unprovoked,PAPUA NEW GUINEA,Madang Province,"Singour, 60 miles south of Madang",Crouching in the water,Ramlen,M,26,Back & thighs lacerated,False,14' shark,"Cairns Post, 1/21/1954",1954.01.15-Ramlen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.01.15-Ramlen.pdf,1954.01.15,1954.01.15 +4344,1954,Unprovoked,IRAN,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",Crouching in the water,Mr. Kasem Jasem,M,26,fatal,True,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.e-KasemJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.e-KasemJasem.pdf,1954.00.00.e,1954.00.00.e +4345,1954,Unprovoked,MARTINIQUE,unknown,unknown,Crouching in the water,Bernard Vieux,M,26,"Chest bruised, after shark clamped its jaws on his chest ",False,"Nurse shark, 1.8 m [6'] ","J. Randall in Sharks & Survival, pp.358-359",1954.00.00.d-Vieux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.d-Vieux.pdf,1954.00.00.d,1954.00.00.d +4346,1954,Unprovoked,MEXICO,Baja California,Baja California,Free diving,Rosario Bianci,M,26,fatal,True,"Nurse shark, 1.8 m [6'] ","V.M. Coppleson, p.262; V.M. Coppleson (1962), p.253",1954.00.00.c-Bianci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.c-Bianci.pdf,1954.00.00.c,1954.00.00.c +4347,1954,Unprovoked,USA,Hawaii,Moloka'i,Fishing,Severino,M,26,Bitten on foot,False,a small shark',"J. Borg, p.73; L. Taylor (1993), pp.100-101",1954.00.00.b-Severino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.b-Severino.pdf,1954.00.00.b,1954.00.00.b +4348,1954,Unprovoked,PAPUA NEW GUINEA,West New Britain Province,"Volupai, Talasea",Swimming,boy,M,12,Leg & abdomen lacerated,False,a small shark'," A. M. Rapson, p.148",1954.00.00.a-Volupai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.a-Volupai.pdf,1954.00.00.a,1954.00.00.a +4349,1954 (same day as 1954.00.00.f),Unprovoked,IRAN,Karun River,A village a short distance from Hesamabad,Swimming,girl,F,12,fatal,True,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.g-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.g-girl.pdf,1954.00.00 g,1954.00.00 g +4350,1954 (same day as 1954.00.00.f),Unprovoked,IRAN,Karun River,"Hesamabad area of Shushtar, 420 km from the sea",Swimming,Mr. Abbas Jasem (Mr. Kasem Jasem's son),M,12,Survived,False,Bull shark suspected due to freshwater habitat,B. Coad,1954.00.00.f-AbbasJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1954.00.00.f-AbbasJasem.pdf,1954.00.00 f,1954.00.00 f +4351,30-Dec-1953,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Second Beach, Port St. Johns",Swimming,Mrs. G. Rautenbach,F,12,Left calf lacerated,False,Said to involve a >4 m [13'] shark,"Natal Mercury, 12/31/1953",1953.12.30-Rautenbach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.30-Rautenbach.pdf,1953.12.30,1953.12.30 +4352,22-Dec-1953,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Glen Stoddart,M,23,Lacerations to arm,False,Said to involve a >4 m [13'] shark,H. Monson,1953.12.22-Stoddart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.22-Stoddart.pdf,1953.12.22,1953.12.22 +4353,13-Dec-1953,Unprovoked,AUSTRALIA,Queensland,Palm Beach,Swimming or wading out to warn bathers that a shark had been seen,"Neil Tapp, cadet lifesaver",M,16,Bruised shoulder chest & foot,False,Said to involve a >4 m [13'] shark,"V.M. Coppleson (1958), pp.95 & 240",1953.12.13-Tapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.13-Tapp.pdf,1953.12.13,1953.12.13 +4354,Dec-1953,Unprovoked,AUSTRALIA,New South Wales,Maroubra Beach,Surf skiing,Jack Haynes,M,16,"No Injury, shark charged surfski",False,3.7 [12'] shark," V.M. Coppleson (1958), p.42",1953.12.00-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.12.00-Haynes.pdf,1953.12.00,1953.12.00 +4355,Oct-1953,Provoked,AUSTRALIA,New South Wales,"Boat Harbour, north of Cronulla",Surf skiing,Len Kosky,M,16,"Hit by tail of speared shark, fell & hit head on rock & out cold for 30 minutes PROVOKED INCIDENT",False,3.7 [12'] shark,"V.M. Coppleson (1958), p.172",1953.10.00-Kosky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.10.00-Kosky.pdf,1953.10.00,1953.10.00 +4356,27-Sep-1953,Unprovoked,PHILIPPINES,Luzon Island,Bohol,Surf skiing,Bartolome Mangubat,M,23,fatal,True,3.7 [12'] shark,"Palm Beach Post, 9/28/1953",1953.09.27-Mangutbal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.27-Mangutbal.pdf,1953.09.27,1953.09.27 +4357,Reported 20-Sep-1953,Unprovoked,USA,California,"Santa Catalina Island, Los Angeles County",Scuba diving,Al Diamond,M,23,No injury,False,3.7 [12'] shark,"Oakland Tribune, 9/20/1953",1953.09.20.R-Diamond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.20.R-Diamond.pdf,1953.09.20.R,1953.09.20.R +4358,18-Sep-1953,Sea Disaster,USA,Georgia,200 miles east of Savannah,Aircaft exploded,Sgt. Larry Charles Graybill,M,23,Hand bitten,False,3.7 [12'] shark,New York Times ,1953.09.18-Graybill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.18-Graybill.pdf,1953.09.18,1953.09.18 +4359,Reported 03-Sep-1953,Unprovoked,USA,New York,Rockaway Beach,Surf fishing,"Alan Stevenson, Jr.",M,15,Laceration to right lower leg,False,80-lb sand shark,"The Dispatch, 9/3/1953",1953.09.03.R-Stevenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.03.R-Stevenson.pdf,1953.09.03.R,1953.09.03.R +4360,02-Sep-1953,Unprovoked,USA,Hawaii,"Waiau, Pearl Harbor, O'ahu",Crabbing,Daniel Gonsalves,M,15,Leg & foot bitten,False,"Hammerhead shark, 1.5 m [5'] ","Honolulu Star Bulletin, 9/2/1953; G.H. Balazs; J. Borg, p.73; L. Taylor (1993), pp.100-101",1953.09.02-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.09.02-Gonsalves.pdf,1953.09.02,1953.09.02 +4361,Aug-1953,Invalid,MEXICO,Guerrero,Acapulco,Free diving,Arthur R. Satz,M,19,No injury,False,Invalid,H.D. Baldridge (1994) SAF Case #679,1953.08.00-NV-Satz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.08.00-NV-Satz.pdf,1953.08.00,1953.08.00 +4362,31-Jul-1953,Unprovoked,MEXICO,Colima,Manzanillo,Wading,Ema Aquilera Prada,F,18,fatal,True,Invalid,"V.M. Coppleson (1958), p.262; J.M. Alatorre",1953.07.31-Prada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.31-Prada.pdf,1953.07.31,1953.07.31 +4363,26-Jul-1953,Unprovoked,USA,Hawaii,"Maile Beach, O'ahu",Spearfishing,Harold Souza,M,15,fatal,True,3 m [10'] shark seen in vicinity,"V.M. Coppleson (1958), p.260; L. Taylor (1993), pp.100-101",1953.07.26-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.26-Souza.pdf,1953.07.26,1953.07.26 +4364,16-Jul-1953,Provoked,USA,California,"Santa Catalina Island, Los Angeles County",Fishing from market fishboat Sea Spray,Captain Forest M. Richel,M,15,Arm bitten by hooked shark PROVOKED INCIDENT,False,3 m [10'] shark seen in vicinity,"L.A. Times, 7/17/1953 ",1953.07.16-Richel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.16-Richel.pdf,1953.07.16,1953.07.16 +4365,15-Jul-1953,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Standing,Mrs. D. F. Gunn,F,26,Lower left leg severely bitten,False,3 m [10'] shark seen in vicinity,"R.F. Hutton; T. Helm, p. 231 ",1953.07.15-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.15-Gunn.pdf,1953.07.15,1953.07.15 +4366,11-Jul-1953,Sea Disaster,PACIFIC OCEAN,330 to 350 miles east of Wake Island,330 to 350 miles east of Wake Island,Royal Hawaiian skymaster DC-6B aircraft went down with 58 passenger & crew,"Guam Daily News, 7/16/195; V.M. Coppleson, p.21",,26,Recuers fought sharks for the bodies,False,3 m [10'] shark seen in vicinity,"Guam Daily News, 7/16/195; V.M. Coppleson, p.21",1953.07.11-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.11-WakeIsland.pdf,1953.07.11,1953.07.11 +4367,09-Jul-1953,Boating,CANADA,Nova Scotia,"Fourchu, Cape Breton Island",Fishing for lobsters,"12' to 14' dory, occupants: John D. Burns & John MacLeod",M,26,Burns drowned as result of attack on boat,False,"White shark, 3.7 m [12'], 500 to 500-kg [1,200 lb], identified by W. C. Shroeder based on tooth fragment ebedded in gunwale","R. Collier, pp.169-170;Bigelow & Schroeder; Day & Fisher, pp. 295-296",1953.07.09-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.09-Burns.pdf,1953.07.09,1953.07.09 +4368,04-Jul-1953,Unprovoked,USA,Hawaii,Kaula Rock near Niihau ,Accidentally dragged overboard from the sampan Holokahana into school of yellowfin tuna,"David Crick, fisherman ",M,26,"Shark made 3 passes at him, lacerating his calf, shin and ankle ",False,"White shark, 3.7 m [12'], 500 to 500-kg [1,200 lb], identified by W. C. Shroeder based on tooth fragment ebedded in gunwale","Honolulu Advertiser, July 5, 1953 edtion; V.M. Coppleson (1958), p.260; J. Borg, p. 2; L. Taylor (1993), pp.100-101",1953.07.04-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.04-Crick.pdf,1953.07.04,1953.07.04 +4369,01-Jul-1953,Unprovoked,PANAMA,Gulf of Panama,60 miles offshore ,Retrieving bait box that had fallen overboard,Jose Gonzales,M,19,Hand severely bitten,False,"White shark, 3.7 m [12'], 500 to 500-kg [1,200 lb], identified by W. C. Shroeder based on tooth fragment ebedded in gunwale","V.M. Coppleson (1958), p.263; LA. Times, 6/9/1954; Gorgas Hospital Record #667474",1953.07.00-Gonzalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.07.00-Gonzalves.pdf,1953.07.00,1953.07.00 +4370,Jun-1953,Provoked,AUSTRALIA,Queensland,Queensland,Landing hooked shark in boat,Thomas H. Durbridge,M,19,Right forearm & hand bitten PROVOKED INCIDENT,False,"2 m [6'9""] shark ","V.M. Coppleson (1958), p.179",1953.06.00-Durbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.06.00-Durbridge.pdf,1953.06.00,1953.06.00 +4371,07-Apr-1953,Boating,AUSTRALIA,New South Wales,1.5 miles off shore,Landing hooked shark in boat,16' launch,,19,"No injury to occupant. As engine started, shark hit boat, breaking one of boat’s ribs in 3 places & stoving in 2 planks",False,"2 m [6'9""] shark "," V.M. Coppleson (1958), p.183",1953.04.07-16-ft-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.07-16-ft-launch.pdf,1953.04.07,1953.04.07 +4372,04-Apr-1953,Unprovoked,USA,Texas,South Padre Island,Swimming,Susan Smith,F,19,Lacerations to right foot,False,"2 m [6'9""] shark ","Valley Morning Star, 4/5/1953",1953.04.04-SueSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.04-SueSmith.pdf,1953.04.04,1953.04.04 +4373,Apr-1953,Unprovoked,IRAN,Karun River,"near Ahvaz, 275 km from the sea",Swimming,Mr. Kaaby,M,19,Arm severed,False,"1.5 m [5'] shark, probable bull shark",B. Coad,1953.04.00.b-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.b-Kaaby.pdf,1953.04.00.b,1953.04.00.b +4374,Apr-1953,Unprovoked,IRAN,Karun River,"near Ahvaz, 275 km from the sea",Swimming in midriver near sewage outlet & 400 m from a slaughterhouse,Mr. Nasser Seemrookh,M,19,Right forearm severed at the elbow,False,"1.5 m [5'] shark, probable bull shark",B. Coad,1953.04.00.a-Seemrookh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.04.00.a-Seemrookh.pdf,1953.04.00.a,1953.04.00.a +4375,Mar-1953,Unprovoked,AUSTRALIA,New South Wales,"Long Reef, Collaroy",Spearfishing,Helmut Scheidl,M,23,Arm lacerated,False,"1.5 m [5'] shark, probable bull shark","V.M. Coppleson (1958), pp.166-167",1953.03.22-Scheidl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.22-Scheidl.pdf,1953.03.22,1953.03.22 +4376,Reported 19-Mar-1953,Unprovoked,AUSTRALIA,South Australia,"Schnapper Rock, Kirton Point",Spearfishing,Michael Leech,M,23,Abrasion,False,8' shark,"The Advertiser, 3/19/1953",1953.03.19.R-Leech.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.19.R-Leech.pdf,1953.03.19.R,1953.03.19.R +4377,Mar-1953,Sea Disaster,INDIAN OCEAN,Between Straits of Malacca and Sri Lanka,Between Straits of Malacca and Sri Lanka,Adrift on a 4' raft for 32 days,"Ensio Tiira & Fred Ericsson, deserters from the French Foreign Legion",,23,fatal,True,8' shark,E. Tiira,1953.03.00.b-Tiira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.b-Tiira.pdf,1953.03.00.c,1953.03.00.c +4378,Mar-1953,Unprovoked,PAPUA NEW GUINEA,Milne Bay Province,"Off Rossel Island, Louisiade Archipelago",Went over side of boat at trochus ground,Captain of cutter Hetabu,M,23,fatal,True,Tiger shark,"A.M. Rapson, p.148; V.M. Coppleson (1962), p.254",1953.03.00.a-Hetabu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.03.00.a-Hetabu.pdf,1953.03.00.a,1953.03.00.a +4379,18-Feb-1953,Provoked,USA,Hawaii,"Barber’s Point, O'ahu",Bitten while cutting shark from net,James S. Takeuchi,M,23,Hand bitten PROVOKED INCIDENT ,False,Tiger shark,"V.M. Coppleson (1958), p.260; G.H. Balazs; J. Borg, p.72; L. Taylor (1993), pp.100-101",1953.02.18-Takeuchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.18-Takeuchi.pdf,1953.02.18,1953.02.18 +4380,15-Feb-1953,Unprovoked,AUSTRALIA,New South Wales,Cave at Shell Harbour,Spearfishing,Rex Gallagher,M,25,"Shark tore off face mask, diver’s face, nose & chin lacerated",False,Wobbegong shark,"Spearfishing News, April 1953, p.5; J. Oetzel in Skin Diver Magazine, March 1965, p.17; V.M. Coppleson (1958), p.33",1953.02.15-Gallagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.15-Gallagher.pdf,1953.02.15,1953.02.15 +4381,Feb-1953,Unprovoked,AUSTRALIA,unknown,unknown,Spearfishing,Ron Ware,M,25,Foot bitten,False,Wobbegong shark,J. Oetzel,1953.02.00-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.02.00-Ware.pdf,1953.02.00,1953.02.00 +4382,20-Jan-1953,Provoked,AUSTRALIA,South Australia,Largs Bay,Fishing,Ernest Lamerton,M,61,Finger bitten by hooked shark PROVOKED INCIDENT,False,Wobbegong shark,"The Advertiser, 1/23/1953",1953.01.20-Lamerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.20-Lamerton.pdf,1953.01.20,1953.01.20 +4383,08-Jan-1953,Boating,AUSTRALIA,Tasmania,Wynyard,Fishing,14-foot boat Sintra,,MAKE LINE GREEN,"No injury to occupant, shark charged boat",False,10' to 12' shark,"C. Black, GSAF",1953.01.08-Wynyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.01.08-Wynyard.pdf,1953.01.08,1953.01.08 +4384,1953,Unprovoked,AUSTRALIA,unknown,unknown,Spearfishing,Alan Agnew,M,MAKE LINE GREEN,Kneecap bitten,False,Wobbegong shark,"J. Oetzel; H. D. Baldridge, p.165",1953.00.00.c-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.c-Agnew.pdf,1953.00.00.c,1953.00.00.c +4385,1953,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Kahuli, Buka Island",Washing,male,M,MAKE LINE GREEN,fatal,True,Wobbegong shark,"A. Bleakley; A. M. Rapson, p.148",1953.00.00.b-Kahuli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.b-Kahuli.pdf,1953.00.00.b,1953.00.00.b +4386,1953,Unprovoked,USA,Florida,"Juno Beach, Palm Beach County",Standing,girl,F,MAKE LINE GREEN,Leg lacerated thigh to ankle,False,Wobbegong shark," V.M. Coppleson (1958), p.254; R. F. Hutton",1953.00.00.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1953.00.00.a-girl.pdf,1953.00.00.a,1953.00.00.a +4387,24-Dec-1952,Unprovoked,AUSTRALIA,Victoria,"Portsea Beach, near Melbourne",Lying prone on surfboard,Bernard Bade,M,MAKE LINE GREEN,"No injury, board bumped by shark",False,Wobbegong shark,"V.M. Coppleson (1962), frontspiece",1952.12.24-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.24-Bade.pdf,1952.12.24,1952.12.24 +4388,21-Dec-1952,Unprovoked,AUSTRALIA,South Australia,Cape Douglas,"Fishing, setting nets",John Holmes,M,25,Bitten on thigh and buttocks,False,2.4 m [8'] shark,"V.M. Coppleson (1958), p.178; V.M. Coppleson (1962), p.245",1952.12.21-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.21-Holmes.pdf,1952.12.21,1952.12.21 +4389,14-Dec-1962,Invalid,GUATEMALA,unknown,unknown,Air Disaster,Soledad Castellanos - or - Norma Figeroa,F,25,It is probable that all onboard (2 men & 2 women) died when the plane crashed into the sea & her body was scavenged by a shark,False,Shark involvement prior to death was not confirmed,"The Frederick Post (Maryland), 12/17/1952, p.1",1952.12.14-Guatemala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.14-Guatemala.pdf,1952.12.14,1952.12.14 +4390,04-Aug-1952,Provoked,ITALY,Genoa Province,Riva Trigoso,Fishing,Franco Podesta,M,17,Bitten by hooked shark PROVOKED INCIDENT,False,200-lb shark," C. Moore, GSAF",1952.08.04-Podesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.04-Podesta.pdf,1952.08.04,1952.08.04 +4391,03-Aug-1952,Unprovoked,USA,Hawaii,"Between Ala Moana Channel & Kewalo Basin, O'ahu",Swimming,Shigeichi Kawamura,M,17,fatal,True,200-lb shark,"Honolulu Advertiser, 12/4/1952; G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.100-101;",1952.08.03-Kawamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.03-Kawamura.pdf,1952.08.03,1952.08.03 +4392,7-Dec-1952,Unprovoked,USA,California,"Pacific Grove, Monterey Bay, Monterey County",Body surfing & treading water,Barry Wilson,M,17,fatal,True,"White shark,4.6 m [15'] ","R. L. Bolin, D. Miller & R. Collier, R. Skocik, p.174;V.M. Coppleson (1958), pp.156 & 254; R. Collier, pp.10-13",1952.12.07-Wilson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.07-Wilson_Collier.pdf,1952.12.07,1952.12.07 +4393,03-Dec-1952,Unprovoked,USA,Hawaii,"Maile Beach, O'ahu",Swimming from fishing boat setting nets,Gerbacio Solano (or Salamo),M,40,fatal,True,>6.7 m [22'] shark," Honolulu Advertiser, 12/4/1952; V.M. Coppleson (1958), p.260; J. Borg, p.74; Webster, p.31; L. Taylor (1993), pp.100-101",1952.12.03-Solano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.12.03-Solano.pdf,1952.12.03,1952.12.03 +4394,12-Oct-1952,Unprovoked,PAPUA NEW GUINEA,"Abau Sub District, Central Province",Lalaura Village,Fishing,male,M,40,Right thigh bitten ,False,>6.7 m [22'] shark,"A. Bleakley; A.M. Rapson, p.148",1952.10.12-Lalaura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.10.12-Lalaura.pdf,1952.10.12,1952.10.12 +4395,06-Aug-1952,Invalid,SOUTH AFRICA,Eastern Cape Province,Nelson’s Rock,Fishing,Mr. Ristow,M,18,"Possibly drowned, remains recovered days later in gut of 113-kg [249-lb] female Zambesi shark ",False,Shark involvement prior to death was not confirmed,"Daily Dispatch; M. Levine, GSAF",1952.08.06-Ristow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.06-Ristow.pdf,1952.08.06,1952.08.06 +4396,05-Aug-1952,Provoked,ITALY,Teramo,Giulianova,Fishing,Vittorio Speca,,19,fatal,True,2m shark,"C. Moore, GSAF",1952.08.05-Speca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.08.05-Speca.pdf,1952.08.04,1952.08.05 +4397,27-Jul-1952,Boating,USA,Florida,"Panacea, Wakulla County",Fishing for trout ,a skill. Occupants George Lunsford & 2 companions,,19,No injury to occupants. Shark chasing fish leapt into skiff & flopped out,False,"Hammerhead shark, 5' ","Evening Sun (Baltimore), 7/28/1952",1952.07.27.d-Lunsford-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.d-Lunsford-boat.pdf,1952.07.27.d,1952.07.27.d +4398,27-Jul-1952,Provoked,USA,South Carolina,Seabrook Beach,Fishing, Ben Tillman Homes,M, 43,Finger bitten by hooked shark PROVOKED INCIDENT,False,a small shark',"News and Courier, 7/28/1952",1952.07.27.c-TillmanHomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.c-TillmanHomes.pdf,1952.07.27.c,1952.07.27.c +4399,27-Jul-1952,Provoked,USA,South Carolina,Seabrook Beach,Fishing,Truman Jones ,M,34,Thumb bitten by hooked shark PROVOKED INCIDENT,False,a small shark',"News and Courier, 7/28/1952",1952.07.27.b-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.b-Jones.pdf,1952.07.27.b,1952.07.27.b +4400,27-Jul-1952,Sea Disaster,USA,California,"Off Santa Monica, Los Angeles County",Boat exploded,"Wes Wiggins and 7 others on the boat, Sparetime",M,34,fatal,True,a small shark',R. Collier,1952.07.27.a-Sparetime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.27.a-Sparetime.pdf,1952.07.27.a,1952.07.27.a +4401,13-Jul-1952,Provoked,USA,California,"San Diego, San Diego County",Fishing,"Gerald Howard, on board sportsfishing boat Teresa A",M,34,Part of hand removed by shark he had caught PROVOKED INCIDENT,False,a small shark',"L.A. Times, 7/14/1952 ",1952.07.13-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.13-Howard.pdf,1952.07.13,1952.07.13 +4402,05-Jul-1952,Unprovoked,USA,Puerto Rico,"Mona Island, 40 miles west of the mainland ","Spearfishing, carrying fish on spear",Juan Suarez Morales,M,34,Leg lacerated & bone fractured ,False,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), p.265; J. Randall in Sharks and Survival, p.346",1952.07.05-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.07.05-Morales.pdf,1952.07.05,1952.07.05 +4403,27-May-1952,Unprovoked,USA,California,"Imperial Beach, San Diego County",Swimming on surface,"Arthur E. Taylor, a navy diver & member+G1053 of a 24-man demolition team",M,34,Foot & swimfin bitten,False,"White shark, 2 m to 4 m [6'9"" to 13'] ","R. Collier, pp.8-9",1952.05.27-Taylor_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.27-Taylor_Collier.pdf,1952.05.27,1952.05.27 +4404,Reported 07-May-1952,Unprovoked,AUSTRALIA,Western Australia,Boyup Brook,"Fishing, standing in water washing fish",Mr. M. King,M,34,Lacerations to 2 fingers & knuckles abraded,False,"Carpet shark, 5' ","T. Peake, GSAF; West Australian, 5/7/1952",1952.05.07.R-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.07.R-King.pdf,1952.05.07.R,1952.05.07.R +4405,May-1952,Unprovoked,INDIA,Off Trivandrum (west coast),Off Trivandrum (west coast),"Fishing, standing in water next to purse net",Ranji Lal,M,34,Lower leg lacerated,False,"""A 2' (0.6 m) brown shark""","F. Dennis, p.10",1952.05.00-Lal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.05.00-Lal.pdf,1952.05.00,1952.05.00 +4406,06-Apr-1952,Boating,AUSTRALIA,South Australia,Streaky Bay,Fishing for white sharks,25' cutter,,34,No injury to fisherman Alf Dean & other occupants;,False,"White shark, 15'3"", 2,333-lb ","Recorder (Port Pirie), 4/7/1952",1952.04.06-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.06-AlfDean.pdf,1952.04.06,1952.04.06 +4407,Apr-1952,Provoked,SUDAN,Red Sea State,"Suakin Harbor, Suakin Island",Spearfishing,Hans Hass,M,34,Right forearm lacerated by speared shark PROVOKED INCIDENT,False,"a ""small slim brown shark""","H. Hass in We Come From the Sea, pp.42-46",1952.04.00-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.04.00-Hass.pdf,1952.04.00,1952.04.00 +4408,30-Mar-1952,Unprovoked,NETHERLANDS ANTILLES,Curacao,Curacao,Went to aid of child being menaced by the shark,A.J. Eggink,M,34,"Buttock bitten, tissue removed",False,"Bull shark, 2.7 m [9'] was captured & dragged on the sand where tissue taken from Eggink was found in its gut. Species identification was made by S. Springer based on 4 photographs of the shark. ","J. Randall, p.352 in Sharks & Survival; H.D. Baldridge, p.172",1952.03.30-Eggink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.03.30-Eggink.pdf,1952.03.30,1952.03.30 +4409,23-Jan-1952,Provoked,MAURITIUS,Port Louis Province,Port Louis,"Spearfishing, speared a small shark",Bernard Montessier,M,34,Right foot lacerated by a larger shark. Lost several toes PROVOKED INCIDENT,False,"Bull shark, 2.7 m [9'] was captured & dragged on the sand where tissue taken from Eggink was found in its gut. Species identification was made by S. Springer based on 4 photographs of the shark. ","V.M. Coppleson (1958), p.262; V.M. Coppleson (1962), p.253",1952.01.23-Moitessier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.23-Moitessier.pdf,1952.01.23,1952.01.23 +4410,07-Jan-1952,Unprovoked,AUSTRALIA,New South Wales,Evans Head,Surfing,Charles Thomas,M,34,Bitten on left calf and ankle,False,8' shark,"Canberra Times, 1/8/1952",1952.01.07-CharlesThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.01.07-CharlesThomas.pdf,1952.01.07,1952.01.07 +4411,1952-1954,Unprovoked,LIBERIA,Montserrado,"West Breakwater, Monrovia / Freeport","Diving, recovering fish killed by dynamite",male,M,34,fatal,True,8' shark,G.C. Miller,1952.00.00.e-Liberia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.e-Liberia.pdf,1952.00.00.e,1952.00.00.e +4412,1952,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province",Manus Island,Spearfishing,male,M,34,"Arm bitten, surgically amputated",False,8' shark,"Cairns Post, 11/27/1952",1952.00.00.d-ManusIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.d-ManusIsland.pdf,1952.00.00.d,1952.00.00.d +4413,1952,Unprovoked,PAPUA NEW GUINEA,"Admiralty Islands, Manus Province","Momote, Manus Island",Spearfishing,male,M,34,fatal,True,"""Attacked by a number of sharks""","A. Bleakley; A. M. Rapson, p.148; H.D. Baldridge, p. 129",1952.00.00.c-Momote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.c-Momote.pdf,1952.00.00.c,1952.00.00.c +4414,1952,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Samo Plantation, east coast ",Spearfishing,"Kiaploki, a male",M,27,fatal,True,"""Attacked by a number of sharks""","A. Bleakley; Namatanai Dept. of Public Health; A. M. Rapson, p.148",1952.00.00.b-Kiaploki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.b-Kiaploki.pdf,1952.00.00.b,1952.00.00.b +4415,1952,Unprovoked,USA,Florida,Near Key West,Swimming,"male, a Pan American pilot wearing a flourescent bathing suit",M,27,fatal,True,"""Attacked by a number of sharks""","V.M. Coppleson (1958), p.254; R. F. Hutton; T. Helm, p.230;",1952.00.00.a-PanAmPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1952.00.00.a-PanAmPilot.pdf,1952.00.00.a,1952.00.00.a +4416,21-Dec-1951,Unprovoked,MOZAMBIQUE,Bay of Maputu,Catembe ,Swimming,Carlos do Amaral,M,15,fatal,True,"""Attacked by a number of sharks""",GSAF,1951.12.21-DoAmaral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.21-DoAmaral.pdf,1951.12.21,1951.12.21 +4417,16-Dec-1951,Provoked,AUSTRALIA,New South Wales,North Bondi,Spearfishing,Lindsay Munn,M,18,Speared shark lacerated left leg above ankle PROVOKED INCIDENT,False,"Wobbegong shark, 1.8 m [6'] ","V.M. Coppleson (1958), pp. 171-172",1951.12.16-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.16-Munn.pdf,1951.12.16,1951.12.16 +4418," +1951.12.15.R",Invalid,MOZAMBIQUE,Sofala Province,Beira,Swimming,Antonio De Almeida Pinto,M,18,No injury,False,Invalid,GSAF,1951.12.15.R-Pinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.15.R-Pinto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.15.R-Pinto.pdf,1951.12.15.R,1851.12.15.R +4419,6-Dec-1951,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, Newcastle",Treading water,"Frank Olkulich, the local surf-ski champion",M,21,fatal,True,2.4 m [8'] shark,"V.M. Coppleson (1958), pp.79; A. Sharpe, p.85",1951.12.06-Okulich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.12.06-Okulich.pdf,1951.12.06,1951.12.06 +4420,29-Nov-1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Swimming,Harold Tait,M,23,Thigh bruised & abraded,False,"White shark, 1.8 m [6'] ","G. Plowman, M. Levine, GSAF ",1951.11.29-Tait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.29-Tait.pdf,1951.11.29,1951.11.29 +4421,28-Nov-1951,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Fishing,George Lewis,M,81,Lacerations to left hand,False,"White shark, 1.8 m [6'] ","Daily Gleaner, 11/29/1951, p. 1",1951.11.28.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.b-Lewis.pdf,1951.11.28.b,1951.11.28.b +4422,28-Nov-1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Treading water,George Plowman,M,24,"Leg severed below knee, defense wounds on hand",False,"White shark, 2.4 m [8'] ","G. Plowman, M. Levine, GSAF",1951.11.28.a-Plowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.28.a-Plowman.pdf,1951.11.28.a,1951.11.28.a +4423,Reported 23-Nov-1951,Unprovoked,PHILIPPINES,unknown,unknown,Shipwrecked; adrift on raft for 2 days & 2 nights,3 fishermen,M,24,fatal,True,"White shark, 2.4 m [8'] ","Fresno Bee Republican, 11/23/1951",1951.11.22-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.11.22-Philippines.pdf,1951.11.23.R,1951.11.23.R +4424,22-Oct-1951,Unprovoked,AUSTRALIA,Queensland,"Ocean baths, Kissing Point Beach ",Swimming,Arthur James Kenealey,M,42,fatal,True,"White shark, 2.4 m [8'] ","V.M. Coppleson (1958), pp.90-91; A. Sharpe, pp.98-99; A. MacCormick, p.169",1951.10.22-Kenealy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.22-Kenealy.pdf,1951.10.22,1951.10.22 +4425,05-Oct-1951,Invalid,NORTH ATLANTIC OCEAN,South Carolina,400 miles off the le,cargo ship Southern Isle sank at 04h00,"J. Waters, U.S. Coast Guard; San Mateo Times, 10/5/1951",,42,Sharks fed on bodies of the drowned,False,Shark involvement prior to death was not confirmed,"J. Waters, U.S. Coast Guard; San Mateo Times, 10/5/1951",1951.10.05-SouthernIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.10.05-SouthernIsle.pdf,1951.10.05,1951.10.05 +4426,29-Sep-1951,Unprovoked,ITALY,Salerno,Amalfi,Swimming,Anna Wurn,F,21,fatal,True,Shark involvement prior to death was not confirmed,"C. Moore, GSAF; Courier-Mail, 11/3/1951",1951.09.29-Wurn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.29-Wurn.pdf,1951.09.29,1951.09.29 +4427,Reported 03-Sep-1951,Unprovoked,ITALY,Salerno Province,Salerno,Fishing for squid,Luca Caputo,M,21,3 fingers severed when he used his hand as bait,False,Shark involvement prior to death was not confirmed,"C. Moore, GSAF",1951.09.03.R-Caputo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.03.R-Caputo.pdf,1951.09.03.R,1951.09.03.R +4428,Reported 02-Sep-1951,Unprovoked,AUSTRALIA,Queensland,Fitzroy River near Rockhampton,"Body found on deserted luxury yacht, 38’ Christine",Dr. E. Al Joske,M,56,fatal,True,Shark involvement prior to death was not confirmed,"J. Green, p.34; V.M. Coppleson (1958), pp. 91-92. Note: A. Sharpe, p.99-100, lists date as 9-4-1955 and the Christine as a 45' ketch",1951.09.02-Joske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.09.02-Joske.pdf,1951.09.02-R,1951.09.02-R +4429,17-Aug-1951,Unprovoked,GREECE,Corfu Island,Off Royal Residence,Swimming,George Athanasenas,M,18,Injured but survived,False,White shark,"A. De Maddalena, GSAF",1951.08.17.b-Athanasenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.b-Athanasenas.pdf,1951.08.17.b,1951.08.17.b +4430,17-Aug-1951,Unprovoked,GREECE,Corfu Island,Off Royal Residence,Swimming,Vanda Pierri,F,16,fatal,True,White shark,"A De Maddalena, GSAF",1951.08.17.a-Perri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.17.a-Perri.pdf,1951.08.17.a,1951.08.17.a +4431,Reported 16-Aug-1951,Unprovoked,ITALY,Taranto,Torre Colimena,Diving (Hookah),male,M,16,No injury,False,White shark,"C. Moore, GSAF",1951.08.16.R-TorreColimena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.16.R-TorreColimena.pdf,1951.08.16.R,1951.08.16.R +4432,Between 01-Aug-1951 & 08-Aug-1951,Unprovoked,COLUMBIA,Caribbean Sea,Cartegena,Bathing,"4 people killed in the past week, others injured",,16,fatal,True,White shark,"New York Times, 8/9/1951; V.M. Coppleson (1958), pp.125 & 258",1951.08.00-Cartagena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.08.00-Cartagena.pdf,1951.08.00,1951.08.00 +4433,Reported 19-Jul-1951,Unprovoked,USA,California,"Long Beach, Los Angeles County",Bathing,Archie Nottingham,M,13,Severe laceration to foot,False,White shark,"Long Beach Independent, 7/19/1951, p.4A",1951.07.19.R-Nottingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.19.R-Nottingham.pdf,1951.07.19.R,1951.07.19.R +4434,11-Jul-1951,Unprovoked,PACIFIC OCEAN,In Los Angeles – Honolulu yacht race,In Los Angeles – Honolulu yacht race,Fell overboard,"Edward Sierks, skipper",M,40,"""Molested by shark that nibbled his bare feet"", rescued 30 hours later.",False,2.1 m [7'] shark,"Daily Review, 7/13/1951",1951.07.11-Sierks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.07.11-Sierks.pdf,1951.07.11,1951.07.11 +4435,25-Jun-1951,Unprovoked,USA,Hawaii,"Kapehu Beach, Laupahoehoe, Hawai'i",Swept out to sea while fishing,Alejandro Nodura,M,40,fatal,True,2.1 m [7'] shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.100-101",1951.06.25-Nodura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.25-Nodura.pdf,1951.06.25,1951.06.25 +4436,Jun-1951,Unprovoked,FRENCH POLYNESIA,Tuamotus,"Outer edge of Hikueru, one of the Central Tuamotu atolls",Spearfishing,Don M. Clark,M,39,Right thumb bitten,False,2.1 m [7'] shark,D.M. Clark,1951.06.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.06.00-Clark.pdf,1951.06.00,1951.06.00 +4437,22-May-1951,Unprovoked,MEXICO,unknown,unknown,Free diving,Brian Lanse,M,16,Lower leg severely injured,False,2.1 m [7'] shark,"H.D.Baldridge (1994), SAF Case #1482",1951.05.22-NV-Lanse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.22-NV-Lanse.pdf,1951.05.22,1951.05.22 +4438,Reported 09-May-1951,Provoked,ITALY,Naples Province,"Torre del Greco, Naples",Free diving,"C. Moore, GSAF",,16,3 men knocked to ground by harpooned shark PROVOKED INCIDENT,False,2.1 m [7'] shark,"C. Moore, GSAF",1951.05.09.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.05.09.R-Naples.pdf,1951.05.09.R,1951.05.09.R +4439,26-Mar-1951,Provoked,AUSTRALIA,New South Wales,Avalon,Fell off surf ski,Ken Davidson,M,23,Minor laceration to chest when he grabbed the shark by its tail PROVOKED INCIDENT,False,"Wobbegong shark, 4'","Canberra Times, 1/27/1951",1951.03.26-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.26-Davidson.pdf,1951.03.26,1951.03.26 +4440,24-Mar-1951,Unprovoked,AUSTRALIA,New South Wales,Sydney,"Fishing, casting in the surf",male,M,"""young""",Severe lacerations of chest & thigh,False,5.5 m [18'] shark,"LA Times, 3/25/1951 ",1951.03.24-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.24-Fisherman.pdf,1951.03.24,1951.03.24 +4441,15-Mar-1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Body surfing,Heinrich Stapelberg,M,19,Left foot lacerated,False,5.5 m [18'] shark,"M. Levine, GSAF",1951.03.15-Stapelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.03.15-Stapelberg.pdf,1951.03.15,1951.03.15 +4442,19-Feb-1951,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port St. Johns,Body surfing,Keith Huskisson,M,31,"Leg bitten, defense wounds on hands",False,136-kg [300-lb] shark,"K. Huskisson, M. Levine, GSAF",1951.02.19-Huskisson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.19-Huskisson.pdf,1951.02.19,1951.02.19 +4443,03-Feb-1951,Unprovoked,AUSTRALIA,New South Wales,"Windang, near the entrance to Lake Illawarra",Spearfishing (but treading water on the surface),Albert Pride,M,20,Shark's fin caused abrasion on his chest,False,136-kg [300-lb] shark,"G.P. Whitley (1951), p.194 cites Sunday Sun (Sydney) 2/4/1951; J. Green, p.34; V.M. Coppleson (1958), pp.167-168",1951.02.03-Pride.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.03-Pride.pdf,1951.02.03,1951.02.03 +4444,01-Feb-1951,Unprovoked,AUSTRALIA,New South Wales,Bondi Beach,Swimming,Harry Sheen,M,14,Leg bitten,False,1.2 m [4'] shark,"G.P. Whitley (1951), p.194 cites Daily Mirror (Sydney); J. Green, p.34",1951.02.01-Sheen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.02.01-Sheen.pdf,1951.02.01,1951.02.01 +4445,21-Jan-1951,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Native Beach, Durban",Swimming,Hendrie Nkwazi,M,19,fatal,True,1.2 m [4'] shark,"D. Davies; M. Levine, GSAF ",1951.01.21-Nkwazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.21-Nkwazi.pdf,1951.01.21,1951.01.21 +4446,03-Jan-1951,Invalid,AUSTRALIA,New South Wales,Hawkesbury River,Swimming,male,M,19,Body found after a week in the water apparently bitten by shark/s,False,Shark involvement prior to death was not confirmed,"G.P. Whitley (1951), p.194, cites Sun (Sydney), 2/4/1951; SAF Case #617",1951.01.03-HawkesburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.01.03-HawkesburyRiver.pdf,1951.01.03,1951.01.03 +4447,1951,Unprovoked,NEW GUINEA,Madang Province,Manam Island,Swimming,"A. Bleakley; A. M. Rapson, p.148",,19,fatal,True,Shark involvement prior to death was not confirmed,"A. Bleakley; A. M. Rapson, p.148",1951.00.00-ManamIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1951.00.00-ManamIsland.pdf,1951.00.00,1951.00.00 +4448,31-Dec-1950,Unprovoked,AUSTRALIA,Queensland,Kirra,Paddling a surfboat,Brian Love,M,19,"No injury, shark bit oar",False,"Nurse shark, 10' ","Examiner, 1/1/1951",1950.12.31-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.31-oar.pdf,1950.12.31,1950.12.31 +4449,Reported 19-Dec-1950,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay,Swimming,2 swimmers,,19,Legs nipped,False,"Wobbegong shark, 6'","Canberra Times, 12/19/1950",1950.12.19.R-JervisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.19.R-JervisBay.pdf,1950.12.19.R,1950.12.19.R +4450,16-Dec-1950,Unprovoked,AUSTRALIA,Queensland,"Palm Beach North, 5 miles north of Burleigh Heads, Brisbane",Treading water,"Desmond Quinlan, lifesaver",M,20,fatal,True,"Wobbegong shark, 6'","R. A Smith; G.P. Whitley (1951), p.194, cites Sunday Herald (Sydney), 12/17/1950; V.M. Coppleson (1958), pp.94 & 239]",1950.12.16-Quinlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.12.16-Quinlan.pdf,1950.12.16,1950.12.16 +4451,29-Nov-1950,Provoked,AUSTRALIA,Northern Territory,Goulburn Island,Diving ,Irrwala,M,17,"Minor injury to hand and groin from shark ""caught on his fishing spear"" PROVOKED INCIDENT",False,2' shark,"Northern Standard, 12/1/1950",1950.11.29-Irrwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.29-Irrwala.pdf,1950.11.29,1950.11.29 +4452,25-Nov-1950,Unprovoked,AUSTRALIA,Queensland,"Burleigh Heads, Brisbane",Body surfing,Leo Vincent Ryan,M,21,Part of buttocks & fingers severed,False,"White shark, 3m, seen in area and hooked 3 days later","G.P.Whitley (1951), p. 194, cites Sunday Herald (Sydney), 11/26/1950; V.M. Coppleson (1958), pp. 93-94 & 239",1950.11.25-LeoVincentRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.25-LeoVincentRyan.pdf,1950.11.25,1950.11.25 +4453,12-Nov-1950,Boating,AUSTRALIA,Queensland,Yeppoon,Paddling a canoe,A canoe; occupants Harry Goodson & Douglas Barnes,M,18,"No injury to occupants, shark holed canoet",False,10' shark,"Sydney Morning Herald, 11/13/1950",1950.11.12-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.11.12-canoe.pdf,1950.11.12,1950.11.12 +4454,28-Oct-1950,Unprovoked,USA,California,"Imperial Beach, San Diego County",Body surfing / treading water,Robert B. Campbell,M,31,Right leg lacerated,False,White shark,"R. Collier, p 6-8, R. B. Campbell; New York Times, 10/10/1960; Coppleson (1958), p.254; D. Miller & R. Collier",1950.10.08-Campbell-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.08-Campbell-Collier.pdf,1950.10.08,1950.10.08 +4455,04-Oct-1950,Unprovoked,AUSTRALIA,Queensland,"Peterson's Beach, Sarina",Fishing,Valentine Sichter,M,25,Lacerations to right thumb and knee,False,4' shark,"Courier-Mail, 10/6/1950",1950.10.04-Sichter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.10.04-Sichter.pdf,1950.10.04,1950.10.04 +4456,06-Aug-1950,Provoked,EL SALVADOR, La Libertad,50 miles off Port La Libertad,Jerked overboard while pole fishing for tuna,Robert L. Bottini,M,27,Left thigh bitten by hooked shark PROVOKED INCIDENT,False,"1,100-lb shark","Evening Sun (Baltimore), 8/11/1950; Long Beach Press-Telegram, 8/17/1950",1950.08.06-Bottini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.06-Bottini.pdf,1950.08.06,1950.08.06 +4457,Aug-1950,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,27,Tissue stripped knee to foot,False,"1,100-lb shark",G.F. Mead,1950.08.00-PearlDiver-Arabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.08.00-PearlDiver-Arabia.pdf,1950.08.00,1950.08.00 +4458,Reported 27-Jul-1950,Boating,AUSTRALIA,South Australia,Streaky Bay,Fishing,40' fishing cutter,,27,No injury to occupants,False,17' white shark,"The Mercury, 7/27/1950",1950.07.27.R-Horsell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.27.R-Horsell-boat.pdf,1950.07.27.R,1950.07.27.R +4459,21-Jul-1950,Unprovoked,JAPAN,Sago Prefecture,Ariakeno Bay,Swimming,male,M,19,fatal,True,17' white shark,M. Hosina; K. Nakaya,1950.07.21-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.21-Japan.pdf,1950.07.21,1950.07.21 +4460,1950.07.19,Provoked,ITALY,Savona,Albenga,Fishing,male,,19,Harpooned shark bit his forehead PROVOKED INCIDENT,False,17' white shark,"C. Moore, GSAF",1950.07.19-Albenga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.19-Albenga.pdf,1950.07.19,1950.07.19 +4461,15-Jul-1950,Unprovoked,CUBA,Caribbean Sea,Caribbean Sea,Swept off deck of S.S.Frontenac enroute from West Indies to US,"Johan Loekstad, a Norwegian seaman",M,30,Found at 21h30 by searchlight. Had been constantly harassed by sharks & had numerous lacerations,False,17' white shark,"L.A. Times, 8/20/1950; Evening Star (Washington, DC), 8/24/1950; V.M. Coppleson (1962), p.259",1950.07.14-Loekstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.14-Loekstad.pdf,1950.07.14,1950.07.14 +4462,10-Jul-1950,Unprovoked,USA,Texas,Near Port Arthur,Swimming,Mark Majors III,M,11,Laceration to leg,False,Hammerhead shark,"Amarillo Daily News, 7/12/1950",1950.07.10-Majors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.10-Majors.pdf,1950.07.10,1950.07.10 +4463,09-Jul-1950,Invalid,USA,Texas,Galveston Bay,Swimming,"Kingston Daily Freeman, 7/14/1950",M,11,Human remains found in shark,False,Shark involvement prior to death was not confirmed,"Kingston Daily Freeman, 7/14/1950",1950.07.09-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.09-Galveston.pdf,1950.07.09,1950.07.09 +4464,Jul-1950,Unprovoked,USA,Florida,"Rock Harbor, Key Largo, Monroe County","Goggle-diving for seaweeds, but standing in water",Warren Rathgen,M,21,Shallow lacerations on back of right thigh,False,0.7 m [2.5'] shark,"C. Phillips & W.H. Brady; R.F. Hutton; V.M. Coppleson (1958), p.252 ",1950.07.00-Rathjen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.07.00-Rathjen.pdf,1950.07.00,1950.07.00 +4465,25-Jun-1950,Unprovoked,USA,New York,"Beach 103rd Street, Rockaway ",Swimming ,Joseph Salengo,M,16,"Gashes & lacerations on legs, foot lacerated.",False,"""sand shark"""," New York Times, 6/25/1950, p.1. col.2 & p.38",1950.06.25-Salango.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.25-Salango.pdf,1950.06.25,1950.06.25 +4466,06-Jun-1950,Sea Disaster,USA,Florida,275 miles northeast of Miami,Survived crash of two-engine C-46 transport plane carrying 62 migrant workers from Puerto Rico to USA ,Pedro Guzman,M,25,fatal,True,"""sand shark""","NY Times, 7/7/1950; V.M. Coppleson (1962), p.258; T. Helm, p.89; [SAF Case #949 & SAF Case #969]",1950.06.06-Guzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.06.06-Guzman.pdf,1950.06.06,1950.06.06 +4467,24-May-1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Port Edward,Treading water,Dr. Leonard Read Tibbet,M,27,Left foot bitten,False,"""sand shark""","L.R. Tibbet, M. Levine, GSAF",1950.05.24-Tibbit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.24-Tibbit.pdf,1950.05.24,1950.05.24 +4468,01-May-1950,Boating,ITALY,Tyrrhenian Sea,"Sprizze, Isola d'Elba",Fishing on a boat,Remo Adriani,M,27,No injury,False,"unknown, possibly a white shark",A. De Maddalena; F. Serena (pers. Comm.),1950.05.01-Adriani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.05.01-Adriani.pdf,1950.05.01,1950.05.01 +4469,09-Apr-1950,Sea Disaster,AUSTRALIA,Queensland,Cooper's Point,"Sea Disaster, sinking of the fishing launch Mavis",John McDonald,M,50,fatal,True,"unknown, possibly a white shark","Cairns Post, 7/8/1950",1950.04.09-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09-McDonald.pdf,1950.04.09.b,1950.04.09.b +4470,09-Apr-1950,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Off Port Elizabeth breakwater,"Fishing, sitting in stern of small boat, feet dangling in the water",male,M,50,"Shark bit foot, removing 2 toes",False,2.13 m shark,Port Elizabeth Museum Archives,1950.04.09.R-2Toes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.04.09.R-2Toes.pdf,1950.04.09.a,1950.04.09.a +4471,26-Mar-1950,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Off bank of Ntshala River, Morgan Bay",Wading,Mr. N. Wright,M,50,"Ankle & foot lacerated, defense wounds on hand",False,1.5 m to 1.8 m [5' to 6'] “spear-eye” shark ,"M. Levine, GSAF",1950.03.26-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.26-Wright.pdf,1950.03.26,1950.03.26 +4472,08-Mar-1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Lifesaving drill,Brian Von Berg,M,20,fatal,True,1.5 m to 1.8 m [5' to 6'] “spear-eye” shark ,"N.Cook; M. Levine, GSAF",1950.03.08-VonBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.08-VonBerg.pdf,1950.03.08,1950.03.08 +4473,01-Mar-1950,Invalid,AUSTRALIA,Western Australia,"City Beach, Perth",Suicide,Peter Szott,M,20,"Szot's right hand found in a 4.5' [14.5'] tiger shark caught 3/9/1950 at Safety Bay, south of Freemantle. His body, with bullet wound in head & right hand missing, washed shore - an apparent suicide",False,Invalid,"G.P. Whitley (1951), p.186, citng the Sydney Morning Herald, 3/11/1950; D. Baldridge, p.171; SAF Cases #584 & #615",1950.03.01-Szott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.03.01-Szott.pdf,1950.03.01,1950.03.01 +4474,Reported 18-Feb-1950,Unprovoked,AUSTRALIA,Western Australia,"Cottesloe, Perth",Spearfishing,male,M,20,Minor injury to leg,False,small carpet shark,"Mirror, 2/18/1950",1950.02.18.R-Perth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.18.R-Perth.pdf,1950.02.18.R,1950.02.18.R +4475,11-Feb-1950,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Body surfing,Clive Dumayne,M,14,fatal,True,"White shark, 3.7 m [12'] according to witnesses","M. Dumayne, M. Levine, GSAF",1950.02.11-Dumayne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.02.11-Dumayne.pdf,1950.02.11,1950.02.11 +4476,16-Jan-1950,Invalid,USA,Hawaii,"Kahakuloa, Maui","Fishing, one of three fishermen swept into the sea by a large wave ",Gilbert S. Hotta,M,14,"His remains were recovered from a “huge shark” caught 3 days later. The remains of another fisherman, Harold Fujimoto, were recovered, but the body of the third fisherman, Hideo Tamura, was never found",False,Shark involvement prior to death was not confirmed,"J. Borg, p.72; L. Taylor (1993), pp.98-99",1950.01.16-Hotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.16-Hotta.pdf,1950.01.16,1950.01.16 +4477,Reported 12-Jan-1950,Unprovoked,AUSTRALIA,Victoria,South Werribee Beach,Swimming,D. Martin,M,14,3 lacerations to heel,False,Shark involvement prior to death was not confirmed,"Werribee Shire Banner, 1/12/1950",1950.01.12.R-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.01.12.R-Martin.pdf,1950.01.12.R,1950.01.12.R +4478,1950,Boating,AUSTRALIA,Tasmania,Triabunna,Sitting on side of dinghy mending a net,Neil Drake,M,14,"No injury to occupant, shark bit side of dinghy",False,"White shark, 3.6 m, 420 kg male","C. Black, GSAF",1950.00.00.m-Drake-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.m-Drake-dinghy.pdf,1950.00.00.m,1950.00.00.m +4479,1950,Unprovoked,SRI LANKA,Eastern Province,Heda Oya Estuary,Shark fishing,Aboobaker,M,14,Buttock removed,False,Possibly a lemon shark,"R.I. DeSilva, GSAF",1950.00.00.l-Abbobaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.l-Abbobaker.pdf,1950.00.00.l,1950.00.00.l +4480,1950,Unprovoked,SRI LANKA,Southern Province,Dodnduwa,Spearfishing,Langston Pereira,M,14,"No injury, but shark damaged one of his swim fins",False,Whtietip reef shark,"R.I. DeSilva, GSAF",1950.00.00.k-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.k-Pereira.pdf,1950.00.00.k,1950.00.00.k +4481,1950 - 1951,Unprovoked,LIBERIA,Montserrado,Monrovia,Defecating in water beneath the docks,a dock worker,M,14,fatal,True,Whtietip reef shark,G. C. Miller,1950.00.00.j-Liberian-dock-worker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.j-Liberian-dock-worker.pdf,1950.00.00.j,1950.00.00.j +4482,Summer 1950,Unprovoked,INDONESIA,Jakarta Harbour,On rock near Yacht Club,Bending over,child,M,7 or 8,fatal,True,"Tiger shark, 3.7 m to 4.3 m [12' to 14']",J. Daigle,1950.00.00.i-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.i-child.pdf,1950.00.00.i,1950.00.00.i +4483,1950,Unprovoked,USA,Florida,"Jacksonville Beach, Duval County",Standing,George Carter,M,7 or 8,Arm bitten,False,"Tiger shark, 3.7 m to 4.3 m [12' to 14']","Florida Times-Union (Jacksonville), 6/6/1961",1950.00.00.h-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.h-Carter.pdf,1950.00.00.h,1950.00.00.h +4484,1950s,Invalid,USA,Hawaii,"Waikiki, O'ahu",Spearfishing,David Lloyd,M,7 or 8,"No injury from shark, scraped chest climbing out on reef",False,"Alleged to involve a white shark ""with little yellow eyes""","J. Borg, p.73; L. Taylor (1993), pp.100-101; Skin Diver Magazine, March 1956; SAF Case #1042",1950.00.00.g-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.g-Lloyd.pdf,1950.00.00.g,1950.00.00.g +4485,1950,Unprovoked,PANAMA,Canal Zone,300 yards west of mouth of the Chagres River,Bathing ,"male, a US soldier",M,7 or 8,Foot & hand severed,False,2.7 m [9'] shark with black-tipped pectoral fins,G.B. Fairchild,1950.00.00.f-US-solier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.f-US-solier.pdf,1950.00.00.f,1950.00.00.f +4486,Summer 1950,Unprovoked,GREECE,"Piraeus, Athens","Piraeus, Athens",Swimming,"V.M. Coppleson (1958), p.259; L. Schultz & M. Malin, p.529",,7 or 8,fatal,True,2.7 m [9'] shark with black-tipped pectoral fins,"V.M. Coppleson (1958), p.259; L. Schultz & M. Malin, p.529",1950.00.00.e-Piraeus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.e-Piraeus.pdf,1950.00.00.e,1950.00.00.e +4487,1950,Unprovoked,SINGAPORE,Singapore Harbor,Singapore Harbor,Diving for coins,"Abdullah, a Malay diver",M,7 or 8,fatal,True,2.7 m [9'] shark with black-tipped pectoral fins,"V.M. Coppleson (1958), p.148",1950.00.00.d-Abdullah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.d-Abdullah.pdf,1950.00.00.d,1950.00.00.d +4488,1950,Unprovoked,NEW CALEDONIA,North Province,"Voh, near meatworks","Spearfishing, but walking carrying fish on end of speargun",male,M,7 or 8,"Shark jumped from sea, taking fish & his right arm",False,2.7 m [9'] shark with black-tipped pectoral fins,"V.M. Coppleson (1958), p.262; V.M. Coppleson (1962), p.253",1950.00.00.c-NewCaledonia-Voh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.c-NewCaledonia-Voh.pdf,1950.00.00.c,1950.00.00.c +4489,Ca. 1950,Unprovoked,NEW CALEDONIA,North Province,Mangalia Reef above Touho ,"Helmet diving, collecting trochus shell",male,M,7 or 8,"Arm bitten, surgically amputated",False,2.7 m [9'] shark with black-tipped pectoral fins," V.M. Coppleson (1958), pp.98 & 262",1950.00.00.b-NewCaledonia-Touho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.b-NewCaledonia-Touho.pdf,1950.00.00.b,1950.00.00.b +4490,Ca. 1950,Unprovoked,FIJI,Near Lautoka,Near Lautoka,"Helmet diving, collecting trochus shell",Fijian,M,7 or 8,Survived,False,2.7 m [9'] shark with black-tipped pectoral fins,"V.M. Coppleson (1962), p.246",1950.00.00.a-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1950.00.00.a-Fiji.pdf,1950.00.00.a,1950.00.00.a +4491,Dec-1949,Sea Disaster,unknown,Caribbean Sea,Between Cuba & Costa Rica,"Sea Disaster, sinking of the motorship Wingate","Albert Battles, James Dean & 4 crew",M,7 or 8,fatal,True,Shark involvement not confirmed,"Canberra Times, 1/6/1950",1949.12.00.b-Wingate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.b-Wingate.pdf,1949.12.00.b,1949.12.00.b +4492,Dec-1949,Unprovoked,AUSTRALIA,Victoria,Seaholme,Lying on the bottom of a 16' dinghy,Doug Miller,M,35,"No injury, Shark landed on top of him, knocked him back down 3 times",False,"Grey nurse shark, 2.6 m [8.5'] ","V.M. Coppleson (1958), pp. 181-182",1949.12.00.a-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.12.00.a-Miller.pdf,1949.12.00.a,1949.12.00.a +4493,20-Nov-1949,Unprovoked,AUSTRALIA,New South Wales,"Kurnell, Botany Bay ",Free diving or wading back to shore,William Edward Brown,M,36,Left arm bitten ,False,6' shark,"Sydney Morning Herald, 11/20/1949",1949.11.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.20-Brown.pdf,1949.11.20,1949.11.20 +4494,12-Nov-1949,Invalid,AUSTRALIA,Victoria,Port Phillip Bay,No details,John W. Smith,M,36,fatal,True,Shark involvement prior to death not confirmed,"G.P. Whitley (1951), p.194, cites Sunday Herald (Sydney), 11/13/1949; SAF Case #613",1949.11.12-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.11.12-Smith.pdf,1949.11.12,1949.11.12 +4495,28-Aug-1949,Unprovoked,AUSTRALIA,Queensland,Yorkey’s Knob Beach near Cairns,Swimming,Brian Ware (rescuer),M,21,Abdomen & chest abraded,False,Shark involvement prior to death not confirmed,"V.M. Coppleson (1958), p.89",1949.08.28.b-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.b-Ware.pdf,1949.08.28.b,1949.08.28.b +4496,28-Aug-1949,Unprovoked,AUSTRALIA,Queensland,Yorkey’s Knob Beach near Cairns,Swimming,James Howard,M,34,fatal,True,Shark involvement prior to death not confirmed,"G.P. Whitley (1951), p.194, cites Daily Telegraph (Sydney), 8/29/1949; V.M. Coppleson (1958), pp.88 & 239",1949.08.28.a-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.28.a-Howard.pdf,1949.08.28.a,1949.08.28.a +4497,17-Aug-1949,Invalid,ITALY,Tuscany,Elba Island,Swimming,Domenico Murolo,M,17,No injury,False,2 m shark,"C. Moore, GSAF",1949.08.17-Murolo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.17-Murolo.pdf,1949.08.17,1949.08.17 +4498,16-Aug-1949,Unprovoked,AUSTRALIA,Tasmania,Flinders Island,Swimming near shore,Robert Kay,M,18,Hip lacerated,False,2 m shark,"G.P. Whitley (1952), p.194;, citing Daily Telegraph (Sydney), 8/18/1949; V.M. Coppleson (1958), p.240; C. Black, p. 148",1949.08.16-Kay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.16-Kay.pdf,1949.08.16,1949.08.16 +4499,Reported 10-Aug-1949,Unprovoked,ITALY,Calabria,Cosenza,Swimming,Giovanni Picarelli,M,21,Right hand severed,False,2 m shark,"C. Moore, GSAF",1949.08.10.R-Picarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.08.10.R-Picarelli.pdf,1949.08.10.R,1949.08.10.R +4500,07-July-1949,Unprovoked,IRAN,Shatt-el-Arab River,Shatt-el-Arab River,Swimming,"R. Palmer, ship’s apprentice",M,18,Right leg lacerated,False,2 m shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1949.07.29-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.29-Palmer.pdf,1949.07.29,1949.07.29 +4501,28-Jul-1949,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Ali,M,18,fatal,True,2 m shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1949.07.28-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.28-Ali.pdf,1949.07.28,1949.07.28 +4502,25-Jul-1949,Unprovoked,USA,South Carolina,"Oketee River, Jasper County",Floating on his back,Ted Roach,M,16,"Abdomen abraded, thigh lacerated",False,2 m shark,"V.M. Coppleson (1958), p.153",1949.07.25-Roach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.25-Roach.pdf,1949.07.25,1949.07.25 +4503,16-Jul-1949,Provoked,USA,California,"10 miles off Redondo Beach, Los Angeles County",Fishing,Raymond T. Gold,M,16,Right hand bitten by hooked shark being pulled onboard PROVOKED INCIDENT,False,"Bonita sharkk, 200-lb","L.A. Times, 7/17/1949 ",1949.07.16-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.07.16-Gold.pdf,1949.07.16,1949.07.16 +4504,13-Jun-1949,Sea Disaster,CHINA,Between Tientsin & Hong Kong,Between Tientsin & Hong Kong,"A 75-ton Japanese fishing ship was sunk by Chinese Nationalist gunboat, shipwrecked men were clinging to debris",Japanese fishermen,M,16,fatal,True,"Bonita sharkk, 200-lb","V.M. Coppleson (1958), pp.257-258",1949.06.13-Japanese-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.06.13-Japanese-fishermen.pdf,1949.06.13,1949.06.13 +4505,16-May-1949,Unprovoked,AUSTRALIA,Western Australia,Broome,Bathing,Mary Passaris,F,22,"Left arm severed above elbow, recovered 5 days afterwards from shark’s gut",False,"Whaler shark, 2.7 m [9'], 350- to 450-lb identified by G.P. Whitley","V.M. Coppleson (1958), pp.107 & 241; G.P. Whitley (1951), pp.186-188; A. Sharpe, pp.131-132",1949.05.16-Passaris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.16-Passaris.pdf,1949.05.16,1949.05.16 +4506,13-May-1949,Provoked,AUSTRALIA,New South Wales,Nelson's Bay,"Examining netted shark, that had been shot",Albert Hampton,M,26,Lacerations to right hand PROVOKED INCIDENT,False,"Whaler shark, 2.7 m [9'], 350- to 450-lb identified by G.P. Whitley","V.M. Coppleson (1958), p.176; R. Skocik, p.179",1949.05.13-Hampton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.05.13-Hampton.pdf,1949.05.13,1949.05.13 +4507,18-Apr-1949,Provoked,AUSTRALIA,Queensland,"Nerang River, Southpot",Fishing,"""Lockie"" Smith",M,26,Toe bitten by netted shark PROVOKED INCIDENT,False,3' shark,"Courier-Mail, 4/19/1949",1949.04.18-Lockie-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.18-Lockie-Smith.pdf,1949.04.18,1949.04.18 +4508,17-Apr-1949,Unprovoked,AUSTRALIA,Queensland,"Ellis Beach, 20 miles from Cairns",Bathing in water 0.9 m deep,Richard Joseph Maguire,M,13,fatal,True,"3.3 m [10'9""] shark","G.P. Whitley (1951), p.194; V.M. Coppleson (1958), p.239; A. Sharpe, pp.38 & 97",1949.04.17-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.17-Maguire.pdf,1949.04.17,1949.04.17 +4509,13-Apr-1949,Unprovoked,MEXICO,Tamaulipas,"Miramar Beach, Tampico",Bathing,male,M,13,"U.S. destroyer John W. Weeks, 6 miles offshore, demonstrating guns & bombs for Mexican officials was thought to have driven the shark into the shallows where it bit the bather before other bathers drove it away with sticks & clubs.",False,"3.3 m [10'9""] shark","New York Herald Tribune, 4/15/1949",1949.04.13-Miramar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.04.13-Miramar.pdf,1949.04.13,1949.04.13 +4510,Mar-1949 or Apr-1949,Boating,AUSTRALIA,South Australia,18 miles south of Port Augusta,Bathing,boat,,13,UNKNOWN,UNKNOWN,"3.3 m [10'9""] shark","G.P. Whitley (1951), p.194; SAF Case #612",1949.03.00-boat-PortAugusta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.03.00-boat-PortAugusta.pdf,1949.03.00,1949.03.00 +4511,23-Jan-1949,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle ",Lifesaving exhibition,Ray Land,M,20,fatal,True,"White shark, 3.6 m [11'9""] ","G.P. Whitley (1951); V.M. Coppleson (1958), pp. 77 & 78; A. Sharpe, pp.84-85",1949.01.23-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.23-Land.pdf,1949.01.23,1949.01.23 +4512,14-Jan-1949,Invalid,AUSTRALIA,New South Wales,Off North Bondi,Surfing,Vince Wilson,M,32,"No injury, chased by 3 sharks",False,Invalid,"Sydney Morning Herald, 1/14/1949 +",1949.01.14-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.14-Wilson.pdf,1949.01.14,1949.01.14 +4513,13-Jan-1949,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale, near Sydney",Surf skiing,Don Dixon,M,32,"No injury, shark bumped ski",False,Invalid,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.41-42; Sharp, p.32",1949.01.13-DonDixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.13-DonDixon.pdf,1949.01.13,1949.01.13 +4514,05-Jan-1949,Invalid,AUSTRALIA,Western Australia,"Leighton Beach, North Fremantle",Surf skiing,"G.P. Whitley (1951), p.186 citing Daily Telegraph (Sydney), 1/6/1949; SAF Case #583",,32,Human hand recovered from 2.4 m [8'] tiger shark,False,Shark involvement prior to death not confirmed,"G.P. Whitley (1951), p.186 citing Daily Telegraph (Sydney), 1/6/1949; SAF Case #583",1949.01.05-hand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.01.05-hand.pdf,1949.01.05,1949.01.05 +4515,1949-1950,Boating,ITALY,Tyrrhenian Sea,San Vincenzo,"Fishing, on a boat",male,M,32,No injury to occupant,False,White shark,A. De Maddalena; V. Biagi (pers. Comm.),1949.00.00.g-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.g-boat.pdf,1949.00.00.g,1949.00.00.g +4516,1949,Unprovoked,NEW GUINEA,Calvados Archipelago,"Sabara Island, Calvados Chain 11.4S, 153E","Fishing, on a boat",Anonymous,,32,fatal,True,White shark,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.f-SabaraIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.f-SabaraIsland.pdf,1949.00.00.f,1949.00.00.f +4517,1949,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Kulengei, southeast of Kalili, Kavieng","Fishing, on a boat",Jalem,M,32,"Leg bitten, surgically amputated",False,White shark,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p. 148",1949.00.00.e-Jalem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.e-Jalem.pdf,1949.00.00.e,1949.00.00.e +4518,1949,Unprovoked,PAPUA NEW GUINEA,New Ireland Province,"Enang , Kavieng","Fishing, on a boat",Olai,M,32,Hand & shoulder bitten,False,White shark,"J. McLachlan, Medical Officer, Kavieng; A.M. Rapson, p.148",1949.00.00.d-Olai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.d-Olai.pdf,1949.00.00.d,1949.00.00.d +4519,1949,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Orava (Aravo) Islet , near Kieta. ",Spearfishing,male,M,18,fatal,True,White shark,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.c-Orava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.c-Orava.pdf,1949.00.00.c,1949.00.00.c +4520,1949,Unprovoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Sohano Island, Buka Passage",Swimming close to wharf,male,M,18,Hand severed,False,White shark,"A. Bleakley; A. M. Rapson, p.148",1949.00.00.b-Sohano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.b-Sohano.pdf,1949.00.00.b,1949.00.00.b +4521,1949,Unprovoked,NEW GUINEA,"Abau Sub District, Central Province",Kerpuna ,Swimming ,2 males,M,18,fatal,True,White shark," A. Bleakley; A.M. Rapson, p.148",1949.00.00.a-Kerpuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1949.00.00.a-Kerpuna.pdf,1949.00.00.a,1949.00.00.a +4522,27-Dec-1948,Unprovoked,AUSTRALIA,Western Australia,Lancelin Island,Swimming,Arthur Strahan,M,17,fatal,True,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"V.M. Coppleson (1958), pp.22-23",1948.12.27-Strahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.27-Strahan.pdf,1948.12.27,1948.12.27 +4523,26-Dec-1948,Unprovoked,AUSTRALIA,Queensland,"King’s Beach, Caloundra","Treading water, waiting for a wave",Eric Keys,M,28,fatal,True,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"Gilbert P. Whitley (1951), p.193; V.M. Coppleson (1958), p.239. NOTE: Whitley records location as Coolangatta",1948.12.26-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.26-Keys.pdf,1948.12.26,1948.12.26 +4524,14-Dec-1948,Unprovoked,IRAN,Shat-Al-Arab River,Abadan,"Treading water, waiting for a wave",Abdul Imam (male),M,19,Left thumb severed,False,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp",1948.12.14.b-AbdulImam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.b-AbdulImam.pdf,1948.12.14.b,1948.12.14.b +4525,14-Dec-1948,Unprovoked,CUBA,Guantanamo Province,10 miles off Cape Maisi,"2 messboys (Jeppsen) & Tony Latona (13) were playing on the afterdeck of the Danish ship Grete Maersk. Jeppsen fell overboard, Latona threw a lifebelt then jumped in to help him. Ship didn’t notice they were missing",Bret Jeppsen,M,14,"2 hours later shark bit Jeppsen’s feet, arm, knee & finally killed him. Tony, clothing torn but alive, washed ashore on Cuban coast",False,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"Washington Post, 12/23/1948, p.`",1948.12.14.a-Jeppeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.14.a-Jeppeson.pdf,1948.12.14.a,1948.12.14.a +4526,10-Dec-1948,Unprovoked,AUSTRALIA,Queensland,Rib Reef off Townsville,Fishing,Hans Vegsund,M,14,Hand injured,False,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"Townsville Daily Bulletin, 12/14/1948",1948.12.10-Vegsund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.10-Vegsund.pdf,1948.12.10,1948.12.10 +4527,05-Dec-1948,Sea Disaster,NORTH PACIFIC OCEAN,Between Kwajalein Atoll & Johnston Island,500 nautical miles southwest of Johnston Island,Air/Sea Disaster involving C-54 Air Force Transport No. 2686 with 37 on board,"L. Schultz & M. Malin, p.562; SAF Case #819",M,14,fatal,True,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"L. Schultz & M. Malin, p.562; SAF Case #819",1948.12.05-Aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.12.05-Aircraft.pdf,1948.12.05,1948.12.05 +4528, 18-Nov-1948,Unprovoked,AUSTRALIA,Torres Strait,"Saibai Island, 80 miles north of Cape York",Pearl diving,Metuela Mau,M,41,Leg bitten,False,His hand was found in a 2.4 m [8'] tiger shark caught 1/5/1949,"The Argus, 11/20/1948",1948.11.18-MetuelaMau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.11.18-MetuelaMau.pdf,1948.11.18,1948.11.18 +4529,22-Sep-1948,Unprovoked,GREECE,Attica,Keratsini ,Swimming,Dimitris Parassakis ,M,17,fatal,True,Said to be 6.4 m [21'] shark,"C. Moore, GSAF",1948.09.22-Parasakis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.22-Parasakis.pdf,1948.09.22,1948.09.22 +4530,19-Sep-1948,Unprovoked,USA,Hawaii,"Off Makapauu Point, O'ahu",Swimming,Noah Kalama,M,17,Leg bitten,False,Said to be 6.4 m [21'] shark,"J. Borg, p.72; L. Taylor (1993), pp.98-99",1948.09.19.b-Kalama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.b-Kalama.pdf,1948.09.19.b,1948.09.19.b +4531,19-Sep-1948,Unprovoked,USA,Hawaii,"Off Makapauu Point, O'ahu",Fishing,male,M,17,Survived,False,Said to be 6.4 m [21'] shark,"V.M. Coppleson (1958); Honolulu Advertiser, 8/9/1953; Hawaiian Tribune-Herald, 4/14/1963",1948.09.19.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.19.a-Hawaii.pdf,1948.09.19.a,1948.09.19.a +4532,Reported 17-Sep-1848,Unprovoked,TURKEY,Adana Province,Yumurtalik,Swimming,Ali Kaymaz,M,17,fatal,True,Said to be 6.4 m [21'] shark,"C. Moore, GSAF",1948.09.17.R-Kaymaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.17.R-Kaymaz.pdf,1948.09.17.R,1948.09.17.R +4533,15-Sep-1948,Sea Disaster,MID ATLANTIC OCEAN,Bound from New York to London in ballast,Bound from New York to London in ballast,Leicester abandoned in a hurricane,2 males,M,17,fatal,True,Said to be 6.4 m [21'] shark,"Glasgow Herald, 9/20/1948",1948.09.15-Leicester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.15-Leicester.pdf,1948.09.15,1948.09.15 +4534,02-Sep-1948,Unprovoked,IRAN,Bandar Ma’shur sea inlet,Bandar Ma’shur sea inlet,Bathing or washing,Roghai,F,60,fatal,True,Said to be 6.4 m [21'] shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1948.09.02-Roghai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.09.02-Roghai.pdf,1948.09.02,1948.09.02 +4535,19-Aug-1948,Unprovoked,IRAN,Shatt-al-Arab River,Shatt-al-Arab River,Bathing or washing,Abdul Hussain,M,13,fatal,True,Said to be 6.4 m [21'] shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp",1948.08.19-Hussain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.19-Hussain.pdf,1948.08.19,1948.08.19 +4536,03-Aug-1948,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Ismail,M,15,"Quadriceps lacerated, femur exposed",False,Said to be 6.4 m [21'] shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.85 ",1948.08.03-Ismail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.03-Ismail.pdf,1948.08.03,1948.08.03 +4537,Aug-1948,Provoked,BAHAMAS,Bimini Islands,Lerner Marine Laboratory,Spearing a shark,"Francisco Edmund Blanc, a scientist from National Museum in Paris",M,41,Shark that he speared bit his calf PROVOKED INCIDENT,False,"Lemon shark, 4'","E. Clark, GSAF. P. Gilbert; V.M. Coppleson (1962), p.252",1948.08.00-Blanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.08.00-Blanc.pdf,1948.08.00,1948.08.00 +4538,01-Jul-1948,Unprovoked,USA,US Virgin Islands,"St. John, Genti Bay",Swimming,Clide Osborne,M,46,fatal,True,"Lemon shark, 4'","Virgin Island Daily News, 7/6/1948, p.1",1948.07.01-Osborne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.07.01-Osborne.pdf,1948.07.01,1948.07.01 +4539,Reported 06-Jun-1948,Unprovoked,NORTHERN MARIANA ISLANDS,Saipan,Saipan,Swimming,Pfc. Donald Tasking,M,46,Heel bitten,False,"Lemon shark, 4'","Wisconsin State Journal, 6/6/1948",1948.06.06.R-Tasking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.06.06.R-Tasking.pdf,1948.06.06.R,1948.06.06.R +4540,10-May-1948,Provoked,IRAN,Shatt-al-Arab River,Shatt-al-Arab River,"Fishing, shark caught in his net",Ali,M,38,"8"" x 4"" left antecubital fossa of muscle & skin removed PROVOKED INCIDENT",False,"Lemon shark, 4'","A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84; ",1948.05.10-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.05.10-Ali.pdf,1948.05.10,1948.05.10 +4541,10-Apr-1948,Provoked,SOUTH AFRICA,Western Cape Province,Gansbaai,"Bringing hooked, harpooned shark onboard boat","boat, occupants, P. Groenwald and others",M,38,Groenwald's arm lacerated by the shark PROVOKED INCIDENT,False,"Lemon shark, 4'","M. Levine, GSAF",1948.04.10-Groenwald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.04.10-Groenwald.pdf,1948.04.10,1948.04.10 +4542,"Reported 13-Mar-1948 ""Bitten last weekend",Unprovoked,KENYA,Coast Province,Mombasa,"Bringing hooked, harpooned shark onboard boat","R.S. Draper, a young British soldier",M,38,fatal,True,"Lemon shark, 4'","Star, 3/13/1948 & 2/20/1948",1948.03.13-Draper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.13-Draper.pdf,1948.03.13.R,1948.03.13.R +4543,11-Mar-1948,Invalid,SENEGAL,Cap Vert Peninsula,Between Joal & Sangomar near Dakar,"Bringing hooked, harpooned shark onboard boat",Y. Gilbert-Desvallons SAF Case #887,,38,Fragment of human foot recovered from 300-kg [662-lb] tiger shark,False,Shark involvement prior to death not confirmed,Y. Gilbert-Desvallons SAF Case #887,1948.03.11-Africa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.11-Africa.pdf,1948.03.11,1948.03.11 +4544,Mar-1948,Provoked,PAPUA NEW GUINEA,"New Ireland Province, Bismarck Archipelago","Punam Passage, Rataman census div, Namatanai",Spearfishing,Reiman,M,30,Leg bitten by shark that he had speared PROVOKED INCIDENT,False,"""grey shark""","A. M. Rapson, p.147; D. Baldridge, pp.128 & 261 ",1948.03.00-Reiman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.03.00-Reiman.pdf,1948.03.00,1948.03.00 +4545,13-Feb-1948,Sea Disaster,USA,Texas,"Gulf of Mexico between Brownsville & Carmen, Mexico","C47 aircraft carrying 5,000 lbs of ice ditched in the sea","Pilot, Neil Womack",M,30,fatal,True,"""grey shark""","Pittsburgh Press, 2/21/1948/ V.M. Coppleson (1962), p.258",1948.02.13-Womack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.13-Womack.pdf,1948.02.13,1948.02.13 +4546,12-Feb-1948,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Swimming,Ronald Johnson,M,16,fatal,True,3.7 m [12'] shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958); A. Sharpe, p.83",1948.02.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.02.12-Johnson.pdf,1948.02.12,1948.02.12 +4547,25-Jan-1948,Unprovoked,AUSTRALIA,New South Wales,"Mona Vale, near Sydney",Surf skiing,David Button,M,16,"No injury, ski bitten",False,6' shark,"Cairns Post, 1/27/1948",1948.01.25-Button.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.01.25-Button.pdf,1948.01.25,1948.01.25 +4548,Summer 1948,Provoked,USA,Florida,Biscayne Bay,Underwater photography,Charles L. Morgan,M,48,Grabbed shark by the tail & it bit him PROVOKED INCIDENT,False,Nurse shark,C.L. Morgan,1948.00.00.d-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.d-Morgan.pdf,1948.00.00.d,1948.00.00.d +4549,1948,Unprovoked,NEW GUINEA,Morobe Province,Finschafen ,"Fishing, holding fish in right hand",male,M,48,Right hand bitten,False,Nurse shark,"A.D. Campbell; A. Bleakley; A. M. Rapson, p.148",1948.00.00.c-Finschafen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.c-Finschafen.pdf,1948.00.00.c,1948.00.00.c +4550,1948,Provoked,PAPUA NEW GUINEA,Bougainville (North Solomons),"Tung Island, off the west coast of Buka Island",Spearfishing,male,M,48,Bitten on face while taking shark off spear PROVOKED INCIDENT,False,Nurse shark,"A.M. Rapson, p.147",1948.00.00.b-TungIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.b-TungIsland.pdf,1948.00.00.b,1948.00.00.b +4551,1948,Boating,SOUTH AFRICA,Western Cape Province,False Bay,Fishing,boat Marie ,,48,"No injury to occupants, boat holed by shark",False,Nurse shark,"T. Wallett, p.27",1948.00.00.a-Marie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1948.00.00.a-Marie.pdf,1948.00.00.a,1948.00.00.a +4552,21-Dec-1947,Unprovoked,AUSTRALIA,New South Wales,"Watson Taylor's Lake, 25 miles south of Port Macquarie",Fishing,Don Ireland,M,9,Leg gashed,False,Grey nurse shark,"Canberra Times, 12/22/1947",1947.12.21-Ireland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.21-Ireland.pdf,1947.12.21,1947.12.21 +4553,Reported 15-Dec-1947,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing,"Cape Times, 12/15/1947; M. Levine, GSAF",,9,"Human remains, possibly one of the crew of the wrecked fishing boat John Bull. found in 277-kg tiger shark.",False,Shark involvement prior to death not confirmed,"Cape Times, 12/15/1947; M. Levine, GSAF",1947.12.15.R-JohnBull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.15.R-JohnBull.pdf,1947.12.15.R,1947.12.15.R +4554,Dec-1947,Unprovoked,SENEGAL,"Tiaroye, near Dakar, Cap Vert Peninsula","Tiaroye, near Dakar, Cap Vert Peninsula",Fishing / diving,male,M,9,fatal,True,Tiger shark,Dejou & d'Alucida (1948),1947.12.00-Dakar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.12.00-Dakar.pdf,1947.12.00,1947.12.00 +4555,23-Nov-1947,Boating,AUSTRALIA,South Australia,3 miles out to sea off Glenelg,Fishing,10' dinghy,,9,"No injury to occupants, shark made 20 to 30 rushes at dinghy",False,5.5 m [18'] shark,"V.M. Coppleson (1958), p.185",1947.11.23-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.23-dinghy.pdf,1947.11.23,1947.11.23 +4556,14-Nov-1947,Unprovoked,AUSTRALIA,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,Peter Curruthers,M,17,"No injury, ski bumped",False,5.5 m [18'] shark,"G.P. Whitley; Barrier Miner, 11/17/1947",1947.11.14.b-Curruthers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.b-Curruthers.pdf,1947.11.14.b,1947.11.14.b +4557,14-Nov-1947,Unprovoked,AUSTRALIA,New South Wales,"Knobby's Beach, Newcastle",Fishing from surf ski,John Martini,M,16,"No injury, ski bumped",False,5.5 m [18'] shark,"G.P. Whitley; Barrier Miner, 11/17/1947",1947.11.14.a-Martini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.14.a-Martini.pdf,1947.11.14.a,1947.11.14.a +4558,08-Nov-1947,Unprovoked,AUSTRALIA,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Edwin Elford,M,12,fatal,True,5.5 m [18'] shark,"G.P. Whitley (1951), p.193;V.M. Coppleson (1958), p.86; A. Sharpe, p.86",1947.11.08.b-EdwinElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.b-EdwinElford.pdf,1947.11.08.b,1947.11.08.b +4559,08-Nov-1947,Unprovoked,AUSTRALIA,New South Wales,"Maria River, Port Macquarie, 12 miles from river mouth",Swimming,Rupert Elford,M,13,Thighs & knee lacerated,False,5.5 m [18'] shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.86; A. Sharpe, p. 86",1947.11.08.a-RupertElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.08.a-RupertElford.pdf,1947.11.08.a,1947.11.08.a +4560,Nov-1947,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Swimming,D. Smith,M,78,fatal,True,5.5 m [18'] shark,"J. Green, p.34",1947.11.00-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.11.00-Smith.pdf,1947.11.00,1947.11.00 +4561,28-Oct-1947,Unprovoked,AUSTRALIA,Northern Territory,"Mornington Island, Gulf of Carpentaria",Fishing in waist-deep water,"Dan, an aboriginal",M,78,Kneecap removed,False,5.5 m [18'] shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.240",1947.10.28-Dan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.28-Dan.pdf,1947.10.28,1947.10.28 +4562,10-Oct-1947,Unprovoked,BRAZIL,Pernambuco,Piedade,Swimming ,Father Serafin de Oliveira,M,25,fatal,True,5.5 m [18'] shark,"JC Online, 6/25/2012",1947.10.10-Serafim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.10.10-Serafim.pdf,1947.10.10,1947.10.10 +4563,04-Aug-1947,Unprovoked,USA,Florida,In a canal 10 miles north of St Augustine,Swimming,"Ralph Reginald Rives, Jr.",M,20,fatal,True,Possibly C. leucas,R. F. Hutton; Coppleson (1958),1947.08.04-Rives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.08.04-Rives.pdf,1947.08.04,1947.08.04 +4564,Reported 27-Jul-1947,Provoked,USA,California,"Santa Monica, Los Angeles County",Fishing,Philip Dorn,M,46,PROVOKED INCIDENT,False,a small shark,"Joplin Globe, 7/27/1947",1947.07.27.R-PhilipDorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.27.R-PhilipDorn.pdf,1947.07.27.R,1947.07.27.R +4565,Reported 24-Jul-1947,Unprovoked,AUSTRALIA,Northern Territory,Darwin Harbour,Diving,A.S. Festing,M,46,Suit ripped,False,"Most likely, a small shark","Canberra Times, 7/25/1947",1947.07.24.R-Festing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.24.R-Festing.pdf,1947.07.24.R,1947.07.24.R +4566,15-Jul-1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Keith Daldorf,M,20,Right thigh lacerated,False,"Most likely, a small shark","M. Levine, GSAF",1947.07.15-Dalldorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.15-Dalldorf.pdf,1947.07.15,1947.07.15 +4567,Jul-1947,Invalid,GREECE,Carpathian Sea,Dodecanese Islands,Jumped overboard ,Nickolas Doulis,M,20,Shark involvement unconfirmed,False,Questionable,"C. Moore, GSAF",1947.07.07-Doulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.07.07-Doulis.pdf,1947.07.00,1947.07.00 +4568,27-Jun-1947,Unprovoked,USA,Hawaii,"Off Waianae, O'ahu",Fishing,Valentin Limatoc,M,35,"Left forearm, arm & leg lacerated",False,Questionable,"EWA Hospital; G.H. Balazs & A.K.H. Kam; J. Borg, p. 72; L. Taylor (1993), pp.98-99",1947.06.27-Limatoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.27-Limatoc.pdf,1947.06.27,1947.06.27 +4569,16-Jun-1947,Boating,AUSTRALIA,New South Wales,Coogee,Fishing,12-foot dinghy Occupants: R. Hunt & a friend.,,35,"No injury to occupants, shark bumped & lifted dinghy",False,"Tiger shark, 14' ","Geraldton Guardian and Express, 6/317/1947",1947.06.16-fishermen-Coogee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.06.16-fishermen-Coogee.pdf,1947.06.16,1947.06.16 +4570,Reported 13-May-1947,Unprovoked,KENYA,Coast Province,"Kilindini Harbor, Mombasa",Swimming,merchant seaman,M,35,Knee grazed,False,"Tiger shark, 14' ","Sunday Tribune, 5/13/1947",1947.05.13.R-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.05.13.R-Kenya.pdf,1947.05.13.R,1947.05.13.R +4571,20-Apr-1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Aubrey ""Bill"" Nielsen",M,21,Ankle & shin lacerated,False,"1.5 m, 45-kg shark","A. Nielsen, M. Levine, G. Charter, GSAF ",1947.04.20-Neilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.20-Neilson.pdf,1947.04.20,1947.04.20 +4572,11-Apr-1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Rocket Hut Beach, Durban",Body surfing,Robert Douglas,M,14,"Thigh severely lacerated, shin & calf lacerated",False,"1.5 m, 45-kg shark","R. Douglas, T. Livesley, M. Levine, GSAF ",1947.04.11-Douglas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.11-Douglas.pdf,1947.04.11,1947.04.11 +4573,06-Apr-1947,Unprovoked,AUSTRALIA,New South Wales,Palm Beach,Surfing,Max Watt,M,17,"No injury, board scraped by shark",False,"1.5 m, 45-kg shark","Courier-Mail, 4/7/1947",1947.04.06-Watt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.06-Watt.pdf,1947.04.06,1947.04.06 +4574,Apr-1947,Provoked,PACIFIC OCEAN,Off Central American coast at 8N.79W,Off Central American coast at 8N.79W,"Moving shark from tuna vessel when boat rolled, placing both man & shark in chest-deep water",Charles Kaufmann,M,29,"Right arm punctured, finger lacerated PROVOKED INCIDENT",False,"1.5 m, 45-kg shark",C. Kaufmann; S. Springer ,1947.04.00-Kaufmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.04.00-Kaufmann.pdf,1947.04.00,1947.04.00 +4575,12-Mar-1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Wading,Adam Johannes Kriel,M,18,"Hip abraded, right calf severely lacerated",False,"1.5 m, 45-kg shark","A. Kriel, M. Levine, GSAF ",1947.03.12-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.12-Kriel.pdf,1947.03.12,1947.03.12 +4576,09-Mar-1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,"Gabriel Botha, a lifesaver",M,22,Lacerations on buttock & right foot ,False,"Blacktip shark, 2 m [6.75'] ","G. Botha, M. Levine, GSAF; T. Wallett, p.67",1947.03.09-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.03.09-Botha.pdf,1947.03.09,1947.03.09 +4577,23-Feb-1947,Boating,AUSTRALIA,Queensland,Palm Beach,Fishing,"Canberra Times, 2/24/1947",,22,"No injury, shark holed boat",False,"Blacktip shark, 2 m [6.75'] ","Canberra Times, 2/24/1947",1947.02.23-boat-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.23-boat-PalmBeach.pdf,1947.02.23,1947.02.23 +4578,Reported 06-Feb-1947,Provoked,BAHAMAS,New Providence Island,Cable Beach,Attempting to ride a shark,Bill Whitman,M,22,Arm bitten PROVOKED INCIDENT,False,5' shark,"Miami Daily News, 2/6/1947",1947.02.06.R-Whitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.06.R-Whitman.pdf,1947.02.06.R,1947.02.06.R +4579,Feb-1947,Unprovoked,BRAZIL,Rio de Janeiro,Copacabana,Bathing,"Globo, 5/7/1997",,22,fatal,True,5' shark,"Globo, 5/7/1997",1947.02.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.02.00-Brazil.pdf,1947.02.00,1947.02.00 +4580,14-Jan-1947,Boating,AUSTRALIA,New South Wales,"Berry's Bay, Sydney Harbour",Rowing,"rowboat, occupants: Bob Scott & John Blackwell ",,17 & 16,"No injury, shark lifted the boat 0.5 m out of the water",False,"4.5 m [14'9""] shark","A. Sharpe, p.73",1947.01.14-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.14-rowboat.pdf,1947.01.14,1947.01.14 +4581,05-Jan-1947,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Peter C. Knoop,M,18,Flexed left leg lacerated,False,>1.6 m shark,"P. Knoop, M. Levine, GSAF",1947.01.05-Knoop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1947.01.05-Knoop.pdf,1947.01.05,1947.01.05 +4582,28-Dec-1946,Unprovoked,AUSTRALIA,South Australia,Glenelg,Swimming near jetty with 2' piece of wood,Leo Streng,M,23,"Forearm & fingers lacerated, teethmarks on wood",False,>1.6 m shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.110 & 240 ",1946.12.28-Streng.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.28-Streng.pdf,1946.12.28,1946.12.28 +4583,Reported 24-Dec-1946,Boating,AUSTRALIA,Queensland,"Auckland Creek, Gladstone",Swimming near jetty with 2' piece of wood,Moored fishing launch of Harry Lone,,23,Shark jumped into cockpit,False,7' shark,"V.M. Coppleson (1958), p.181",1946.12.24.R-Lone-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.12.24.R-Lone-launch.pdf,1946.12.24.R,1946.12.24.R +4584,20-Nov-1946,Unprovoked,AUSTRALIA,Torres Strait,40 miles off Thursday Island,Pearl diving from lugger,"Esrona Johnson, Torres Strait islander",M,30,fatal,True,7' shark,"G.P. Whitley (1951), p. 193;V.M. Coppleson (1958), p.245",1946.11.20-EsronaJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.11.20-EsronaJohnson.pdf,1946.11.20,1946.11.20 +4585,Reported 26-Oct-1946,Unprovoked,MARSHALL ISLANDS,Kwajalein,Kwajalein,Fishing,American,M,30,fatal,True,7' shark,"Washington Post, 10/27/1946",1946.10.26.R-Kwajalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.26.R-Kwajalein.pdf,1946.10.26.R,1946.10.26.R +4586,14-Oct-1946,Unprovoked,AUSTRALIA,New South Wales,"Mark’s Point, Swan Bay, Lake Macquarie",Swimming,Douglas Blackmore,M,15,Left leg lacerated,False,7' shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.112",1946.10.14-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.10.14-Blackmore.pdf,1946.10.14,1946.10.14 +4587,24-Aug-1946,Unprovoked,ISRAEL,Gaza,Jura Village,Fishing,Kamel Mustapha Ayesh,M,15,Laceration to back,False,7' shark,"C. Moore, GSAF",1946.08.24-KMAyesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.24-KMAyesh.pdf,1946.08.24,1946.08.24 +4588,18-Aug-1946,Unprovoked,AUSTRALIA,Queensland,"Ellis Beach, 20 miles from Cairns",Swimming after a tennis ball,Phillip South Collin,M,30,fatal,True,4.3 m [14'] shark,"G.P. Whitley (1951), p.193;V.M. Coppleson (1958), pp.87-88 & 239; A. Sharpe, p.97",1946.08.18-Collin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.08.18-Collin.pdf,1946.08.18,1946.08.18 +4589,18-Jul-1946,Unprovoked,IRAN,Khuzestan Province,"Dorquain, on the Karun River","Fishing, probably with a net","Khodadad, (male)",M,12,Radius & ulna bared,False,4.3 m [14'] shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84 ",1946.07.18.b-Khodadad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.b-Khodadad.pdf,1946.07.18.b,1946.07.18.b +4590,18-Jul-1946,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River, 275 km from the sea",Swimming ,Mehdi,M,12,"Left Achilles tendon severed, calf muscles severely lacerated",False,Possibly C. leucas,"A. Anderson, M.D. / Lt. Col. R.S. Hunt , p.84",1946.07.18.a-Mehdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.07.18.a-Mehdi.pdf,1946.07.18.a,1946.07.18.a +4591,28-Jun-1946,Unprovoked,INDIA,Chennai,Chennai,Bathing,Murugesan,M,14,"""Serious injuries""",False,Possibly C. leucas,"Indian Express, 6/30/1946",1946.06.28-Murugesan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.06.28-Murugesan.pdf,1946.06.28,1946.06.28 +4592,09-May-1946,Unprovoked,TANZANIA,Dar-es-Salaam ,Dar-es-Salaam harbor,Swimming ,"W. Svendson, ship’s officer",M,14,Leg bitten,False,Possibly C. leucas,"Star, 5/20/1946",1946.05.09-Svendson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.05.09-Svendson.pdf,1946.05.09,1946.05.09 +4593,19-Apr-1946,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, Cairns",Swimming,Robert McAuliffe,M,17,fatal,True,Possibly C. leucas,"J. Croucher; G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.87 ",1946.04.19-McAuliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.19-McAuliffe.pdf,1946.04.19,1946.04.19 +4594,Apr-1946,Boating,AUSTRALIA,South Australia,Port Newby,Fishing,"boat, occupants: C. Nardelli & son",,17,"No injury to occupants. Shark charged boat, tore off rudder & tossed it air, then swam off with it",False,6 m [20'] shark,"V.M. Coppleson (1958), p.184",1946.04.00-boat-Nardelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.04.00-boat-Nardelli.pdf,1946.04.00,1946.04.00 +4595,20-Mar-1946,Boating,AUSTRALIA,South Australia,Grange,Fishing,"14' catamaran, occupant: M. Leverenz",M,28,"No injury; shark rammed boat, catapulting Leverenz in the sea & damaging boat",False,6 m [20'] shark,"Sydney Morning Herald, 3/22/1946",1946.03.20-Leverenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.03.20-Leverenz.pdf,1946.03.20,1946.03.20 +4596,16-Feb-1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Treading water,Ernest Tomson,M,21,Right arm severely lacerated,False,6 m [20'] shark,"M. Levine, GSAF ",1946.02.16-Tomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.16-Tomson.pdf,1946.02.16,1946.02.16 +4597,10-Feb-1946,Unprovoked,AUSTRALIA,Western Australia,"City Beach, Perth",Standing,"Ronald D. Sunderland, from the Royal Australian Navy, on leave from HMAS Leeuwin",M,18,"Leg bitten, surgically amputated",False,"White shark, 4.2 m [13'9""] ","West Australian, 2/11/1946, p.6; G.P. Whitley (1951), p.193; V.M. Coppleson (1958), pp.111 & 245; A. Sharpe, pp.130-131; H. Edwards, p.133-134",1946.02.10.b-Sunderland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.b-Sunderland.pdf,1946.02.10.b,1946.02.10.b +4598,10-Feb-1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Swimming ,"Janardhan Rughoober Varma, a lifesaver",M,18,Flexed right knee bitten,False,"White shark, 4.2 m [13'9""] ","J.R. Varma, M. Levine, GSAF ",1946.02.10.a-Varma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.02.10.a-Varma.pdf,1946.02.10.a,1946.02.10.a +4599,24-Jan-1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Treading water,Brian Gibson ,M,15,Knee & calf lacerated,False,"White shark, 4.2 m [13'9""] ","B. Gibson, M. Levine, GSAF",1946.01.24.b-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.b-Gibson.pdf,1946.01.24.b,1946.01.24.b +4600,24-Jan-1946,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Swimming,"Manduray, a lifesaver",M,15,Foot severely lacerated,False,"White shark, 4.2 m [13'9""] ","J. R. Varma; M. Levine, GSAF",1946.01.24.a-Manduray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.24.a-Manduray.pdf,1946.01.24.a,1946.01.24.a +4601,17-Jan-1946,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,Donald Vaughan,M,12,Ankle bitten,False,small shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.239",1946.01.17-Vaughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.17-Vaughan.pdf,1946.01.17,1946.01.17 +4602,07-Jan-1946,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Jumping in swells,Michael Anthony Hoffman,M,18,Foot bitten,False,1.5 m [5'] shark,"M. Hoffman, M. Levine, GSAF",1946.01.07-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.07-Hoffman.pdf,1946.01.07,1946.01.07 +4603,05-Jan-1946,Unprovoked,AUSTRALIA,New South Wales,"Oatley Bay near Como, George’s River",Swimming,Valma Tegel,F,14,fatal,True,1.5 m [5'] shark,"G.P. Whitley (1951), p.193; V.M. Coppleson (1958), p.69; A. Sharpe, pp.91-92",1946.01.05-Tegel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.05-Tegel.pdf,1946.01.05,1946.01.05 +4604,01-Jan-1946,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Pollock Beach, Port Elizabeth",Body surfing,Noel Buxton Redfern,M,24,Calf lacerated,False,1.5 m [5'] shark,"N. Redfern, M. Levine, GSAF",1946.01.01-Redfern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.01.01-Redfern.pdf,1946.01.01,1946.01.01 +4605,1946,Boating,SOUTH AFRICA,Western Cape Province,Plettenberg Bay,Body surfing,4 boats,,24,"No injury to occupants, shark struck boats+K1581",False,1.5 m [5'] shark,"T. Wallett, p.27",1946.00.00.c-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.c-PlettenburgBay.pdf,1946.00.00.c,1946.00.00.c +4606,1946,Boating,SOUTH AFRICA,Western Cape Province,Table Bay,Body surfing,boat,,24,"Shark holed and sank boat, occupants rescued",False,1.5 m [5'] shark,"T. Wallett, p.27",1946.00.00.b-Table Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.b-Table Bay.pdf,1946.00.00.b,1946.00.00.b +4607,1946,Unprovoked,PERSIAN GULF,"""Head of the Gulf""","""Head of the Gulf""",Bitten after dhow shipwrecked,Arab woman,F,24,"Abdomen bitten, but she survived. Most of the 40 others that survived the wreck, were taken by sharks",False,1.5 m [5'] shark,"E. Davies; V.M. Coppleson, p.133",1946.00.00.a-Arabwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1946.00.00.a-Arabwoman.pdf,1946.00.00.a,1946.00.00.a +4608,23-Sep-1945,Unprovoked,HONG KONG,Tweed Beach,Tweed Beach,Bathing,Sargeant H.W. Jackson,M,24,fatal,True,1.5 m [5'] shark,"Argus, 9/25/1946, p.20; V.M. Coppleson (1962), p.247",1945.09.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.23-Jackson.pdf,1945.09.23,1945.09.23 +4609,19-Sep-1945,Sea Disaster,OKINAWA,unknown,unknown,American minesweeper USS YMS-472 foundered in a typhoon - swimming to shore,Lowell J. Bemis,M,20,Laceration to arm,False,1.5 m [5'] shark,"Mid-Pacific Stars & Stripes, 10/22/1945",1945.09.19-Bemis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.19-Bemis.pdf,1945.09.19,1945.09.19 +4610,16-Sep-1945,Sea Disaster,JAPAN,Ryukyu,Ryukyu,American minesweeper USS YMS-350 lost in a typhoon - swimming to shore,sailor,M,20,fatal,True,1.5 m [5'] shark,"Daily Courier, 10/26/1945",1945.09.16-sailor-USS-YMS-350.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.16-sailor-USS-YMS-350.pdf,1945.09.16,1945.09.16 +4611,06-Sep-1945,Unprovoked,IRAN,Shatt-al-Arab River,Bashamir,Swimming,Hamid,M,13,"Right forearm injured, mid-humeral amputation",False,1.5 m [5'] shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84",1945.09.06-Hamid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.09.06-Hamid.pdf,1945.09.06,1945.09.06 +4612,19-Aug-1945,Unprovoked,IRAN / IRAQ,Shatt-al-Arab River,Vicinity of Abadan,Swimming,Abdol Karmi,M,13,Lower left leg amputated,False,1.5 m [5'] shark,"A. Anderson, M.D. / Lt. Col. R.S. Hunt, Royal Army Medical Corp, p.84",1945.08.19-Karmi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.19-Karmi.pdf,1945.08.19,1945.08.19 +4613,06-Aug-1945,Unprovoked,USA, North Carolina,Ocracoke,Swimming,Kuenzler,,13,fatal,True,1.5 m [5'] shark,"F. Schwartz, p.23",1945.08.06-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.08.06-Kuenzler.pdf,1945.08.06,1945.08.06 +4614,30-Jul-1945,Sea Disaster,PHILIPPINES,In transit between Tinian and Leyte,200 miles Leyte,American cruiser Indianapolis torpedoed & sunk by the Japanese submarine I-58,"All the Drowned Sailors, by R. B. Lech ; M. Levine, GSAF",,13,fatal,True,1.5 m [5'] shark,"All the Drowned Sailors, by R. B. Lech ; M. Levine, GSAF",1945.07.30-USS Indianapolis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30-USS Indianapolis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.30 - USS Indianapolis.pdf,1945.07.30,1945.07.30 +4615,Jul-1945,Sea Disaster,JAVA,Northern Java,Off Cheribon,"90 European civilians, many women & children, were placed on the deck of a Japanese submarine that submerged when it was well offshore",Swimming,,13,fatal,True,1.5 m [5'] shark,G. Duncan,1945.07.00-CheribonAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.07.00-CheribonAtrocity.pdf,1945.07.00,1945.07.00 +4616,15-Jun-1945,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, Cairns",Swimming,E. J. McHugh,M,13,fatal,True,1.5 m [5'] shark,"Cairns Post, 6/19/1945",1945.06.15-McHugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.06.15-McHugh.pdf,1945.06.15,1945.06.15 +4617,08-May-1945,Unprovoked,USA,North Carolina,"Ocracoke Inlet, Carteret County",Swimming,Navy seaman,M,13,fatal,True,1.5 m [5'] shark,D. Batterson (Former Navy Hospital Corpsman),1945.05.08-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.05.08-Kuenzler.pdf,1945.05.08,1945.05.08 +4618,06-Mar-1945,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Scottburgh,Walking,David Drummond,M,37,"Right leg bitten knee to foot, surgically amputated",False,Thought to involve a Zambesi shark,"D. Drummond, M. Levine, GSAF",1945.03.06-Drummond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.03.06-Drummond.pdf,1945.03.06,1945.03.06 +4619,05-Feb-1945,Unprovoked,ISRAEL,Tel Aviv,Tel Aviv,Swimming,British constable,M,37,"Survived. R.A.F. pilot, seeing commotion in the water, dived his plane to investigate and scared off shark",False,Thought to involve a Zambesi shark,"NY Times, 2/6/1945, p.3; V.M. Coppleson (1958); C. Moore, GSAF",1945.02.05-Constable-TelAviv.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.02.05-Constable-TelAviv.pdf,1945.02.05,1945.02.05 +4620,1945,Unprovoked,JAMAICA,unknown,unknown,Diving,Albert Stewart,M,37,Hand severed,False,Thought to involve a Zambesi shark,"The Gleaner, 4/29/1946",1945.00.00.d-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.d-Stewart.pdf,1945.00.00.d,1945.00.00.d +4621,1945,Unprovoked,CUBA,Havana Province,Cojimar,"Playing on rock, slipped & fell into the water",boy,M,37,fatal,True,Thought to involve a Zambesi shark,"F. Poli, pp.18-19",1945.00.00.c-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.c-Cuba.pdf,1945.00.00.c,1945.00.00.c +4622,1945,Unprovoked,PANAMA,Colon Province,"Mouth of Rio Dudio, 50 miles west of the city of Colon",Bathing with her mother,Maria Asista,F,8 or 10,Foot bitten,False,Thought to involve a Zambesi shark,A. Wetmore,1945.00.00.b-Asista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.b-Asista.pdf,1945.00.00.b,1945.00.00.b +4623,1945,Unprovoked,IRAQ,Basrah,Shatt-al Arab River,Swimming,male,M,15,Left foot bitten,False,Bull shark,B.W. Coad & L.A.J. Al-Hassan,1945.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1945.00.00.a-Shatt-al-Arab.pdf,1945.00.00.a,1945.00.00.a +4624,Between 18 & 22-Dec 1944,Sea Disaster,PHILIPPINES,300 miles east of Luzon,USS Hull DD-350 was one of 3 destroyers that capsized in Typhoon Cobra,Swimming near life raft,Nicholas Nagurney,M,19,Arm bitten,False,9' shark,"TIME, 1/22/1945",1944.12.18-Nagurney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.18-Nagurney.pdf,1944.12.18,1944.12.18 +4625,02-Dec-1944,Provoked,USA,Florida,3 miles north of the inlet at Palm Beach,Fishing for mackerel,"28' sea skiff, occupants: Alan Moree and another fisherman",,19,"No injury to occupants. After being prodded with an oar, shark struck bow and sank boat PROVOKED INCIDENT",False,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","New York Times, 12/3/1944, III, p.2, col.7",1944.12.02-skiff-Moree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.12.02-skiff-Moree.pdf,1944.12.02,1944.12.02 +4626,08-Nov-1944,Sea Disaster,SIERRA LEONE,Western Area,Freetown,Fishing for mackerel,Keith Meaden,M,18,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ",Royal Navy Casualties,1944.11.08-Meaden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.08-Meaden.pdf,1944.11.08,1944.11.08 +4627,01-Nov-1944,Invalid,AUSTRALIA,Queensland,Maroochydore Beach,Swimming,American sailor,M,18,Probable drowning & scavenging,False,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","The Canberra Times, 11/7/1944",1944.11.01-AmericanSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.11.01-AmericanSailor.pdf,1944.11.01,1944.11.01 +4628,26-Oct-1944,Sea Disaster,PHILIPPINES,unknown,unknown,"USS Gambier Bay CVE-73 shelled & sunk at 09h57 on 10/24/1944, by Japanes fleet enroute to attack the Allied landing force at Leyte.",A. man floating next to Charles G. Heinl ,M,18,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ",USS Gambier Bay archives,1944.10.26.b-Heinl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.b-Heinl.pdf,1944.10.26.b,1944.10.26.b +4629,26-Oct-1944,Sea Disaster, PHILIPPINES,Bernardino Strait near Gulf of Leyte,Bernardino Strait near Gulf of Leyte,USS Hoel DD 533 sunk on 10/24/1944 in the Battle off Samar. 2 crewmen were swimmng alongside a floater net &,2 men,M,18,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","Glenn Hatch Parkin, gunner ",1944.10.26.a-2men-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.26.a-2men-incomplete.pdf,1944.10.26.a,1944.10.26.a +4630,25-Oct-1944,Sea Disaster,PHILIPPINES,Off Samar Island in the Gulf of Leyte,Off Samar Island in the Gulf of Leyte,USS Johnston DD 557 sunk on 10/24/1944 in the Battle off Samara. Crewmen were swimming beside a raft.,"William Clinton Carter, Jr. & 2 other men",M,18,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","Abiline Reporter News, 12/29/1944",1944.10.25.b-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.b-Carter.pdf,1944.10.25.b,1944.10.25.b +4631,25-Oct-1944,Unprovoked,PHILIPPINES,Off Cape Engano,Off Cape Engano,Parachuted into Pacific,US Naval ensign,M,18,"Shark grazed leg, leaving toothmarks",False,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","G.A. Llano in Airmen Against the Sea, p.66",1944.10.25.a-Ensign.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.25.a-Ensign.pdf,1944.10.25.a,1944.10.25.a +4632,24-Oct-1944,Sea Disaster,unknown,225 miles east of Hong Kong,225 miles east of Hong Kong,Japanese POW ship Arisan Maru with 1800 American prisoners of war on board bound for slave labor camps was torpedoed by an American submarine,internet (multiple),M,18,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ",internet (multiple),1944.10.24-ArisanMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.24-ArisanMaru.pdf,1944.10.24,1944.10.24 +4633,Reported 23-Oct-1944,Boating,AUSTRALIA,Queensland,Tewantin,Fishing,dinghy,,18,No injury to occupants; shark bit dinghy leaving tooth fragments in its woodwork,False,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","G.P. Whitley (1951), p.193",1944.10.23.R-Tewantin-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.10.23.R-Tewantin-dinghy.pdf,1944.10.23.R,1944.10.23.R +4634,03-Sep-1944,Unprovoked,USA,Maryland,North Beach,Swimming,Philip Stanton,M,13,Laceration to right lower leg,False,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","Washington Post, 9/4/1944",1944.09.03-PhilipStanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.03-PhilipStanton.pdf,1944.09.03,1944.09.03 +4635,Sep-1944,Unprovoked,CARIBBEAN SEA,unknown,unknown,Fell overboard from US Navy PC boat,a sailor,M,13,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","E. Buleman, NMRI",1944.09.00-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.09.00-sailor.pdf,1944.09.00,1944.09.00 +4636,20-Aug-1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Margate,Swimming ,Dennis Nissen,M,19,fatal,True,"Tiger shark, 4.5 to 5.5 m [14'9"" to 18'], 2000-lb ","T. Blake, M. Levine, GSAF",1944.08.20-Nissen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.08.20-Nissen.pdf,1944.08.20,1944.08.20 +4637,22-Jul-144,Unprovoked,SOUTH AFRICA,Western Cape Province,Hartenbos,Swimming,Albert Schmidt,M,17,fatal,True,"White shark, according to witnesses","M. Levine, GSAF",1944.07.22-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.07.22-Schmidt.pdf,1944.07.22,1944.07.22 +4638,23-Jun-1944,Invalid,NORTH PACIFIC OCEAN,Aircraft went down on 6/12/1944. He survived on raft for 11 days and was 150 miles off Guam when rescued,Aircraft went down on 6/12/1944. He survived on raft for 11 days and was 150 miles off Guam when rescued,Swimming,Lt. Cmdr. Price,M,17,"When picked up by the USS Boyd DD 44 on 6/23/1944 his raft was ""surrounded by sharks""",False,Invalid,USS Boyd archive,1944.06.23-Boyd-Rescue-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.06.23-Boyd-Rescue-incomplete.pdf,1944.06.23,1944.06.23 +4639,31-May-1944,Unprovoked,USA,Florida,"Atlantic Beach, Mayport, Duval County",Bathing,Mary Ann Shands,F,15,Left calf bitten,False,1.8 m [6'] blacktip shark or spinner shark,"H.W. Bigelow & C.W. Schroeder (1948) pp.70 & 368; V.M. Coppleson (1958) ; Randall, p.353 in Sharks & Survival; T. Helm, p.227",1944.05.31-Shands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.31-Shands.pdf,1944.05.31,1944.05.31 +4640,Reported 24-May-1944,Unprovoked,SAMOA,unknown,unknown,Bathing,a male from the Second Seabee Battalion,,15,Minor injury when shark tore off his boot,False,5' shark,"St. Petersburg Times, 5/24/1943",1944.05.24.R-Seabee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.24.R-Seabee.pdf,1944.05.24.R,1944.05.24.R +4641,04-May-1944,Unprovoked,PANAMA,Caribbean Sea,Caribbean Sea,Washed overboard by swell,"US Naval seaman, one of a crew on a Panama Sea Frontier Naval Patrol craft manned by Coast Guard",M,15,fatal,True,"White shark, 2.4 m [8'] ","Star & Herald (Panama), 5/17/1944; V.M. Coppleson (1958), p.6; V.M. Coppleson (1962), p.258;",1944.05.04.a-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.05.04.a-seaman.pdf,1944.05.04,1944.05.04 +4642,Apr-1944,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),Lake Nicaragua (fresh water),Washed overboard by swell,multiple bathers,,15,fatal,True,Bull sharks to 1.5 m [5'] in length,V.M. Coppleson (1958),1944.04.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.04.00-LakeNicaragua.pdf,1944.04.00,1944.04.00 +4643,26-Mar-1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Gabriel Botha,M,18,Left thigh bitten,False,Bull sharks to 1.5 m [5'] in length,"G. Botha, M. Levine, GSAF",1944.03.26.b-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.b-Botha.pdf,1944.03.26.b,1944.03.26.b +4644,26-Mar-1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Standing,Geoffrey Best,M,23,fatal,True,Bull sharks to 1.5 m [5'] in length,"G. Botha, M. Levine, GSAF ",1944.03.26.a-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.26.a-Best.pdf,1944.03.26.a,1944.03.26.a +4645,14-Mar-1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Country Club Beach, Durban",Treading water,Richard D. Field,M,16,Ankle severely lacerated,False,Bull sharks to 1.5 m [5'] in length,"R.D. Field, M. Levine, GSAF ",1944.03.14-Field.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.03.14-Field.pdf,1944.03.14,1944.03.14 +4646,27-Feb-1944,Unprovoked,SOUTH AFRICA,Western Cape Province,False Bay,Treading water,Corporal N.S. LeBlanc,M,16,Foot & ankle lacerated,False,2.1 m [7'] shark,"L. Green; M. Levine, GSAF",1944.02.27-LeBlanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.27-LeBlanc.pdf,1944.02.27,1944.02.27 +4647,18-Feb-1944,Unprovoked,INDIA,"Triplicane Beach, Chennai","Triplicane Beach, Chennai",Bathing,male,M,12,fatal,True,2.1 m [7'] shark,"Indian Express, 2/19/1944",1944.02.18-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.02.18-Madras.pdf,1944.02.18,1944.02.18 +4648,20-Jan-1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Body surfing,Anthony Bunn,M,22,fatal,True,2.1 m [7'] shark,"M. Levine, GSAF",1944.01.20-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.20-Bunn.pdf,1944.01.20,1944.01.20 +4649,16-Jan-1944,Boating,AUSTRALIA,Western Australia,"Cottesloe, Perth",Fishing,"14' dinghy, 2 occupants",M,22,"No injury, shark took day's catch & struck boat",False,14' shark,"Canberra Times, 1/17/1944",1944.01.16-dinghy-Cottesloe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.16-dinghy-Cottesloe.pdf,1944.01.16,1944.01.16 +4650,14-Jan-1944,Unprovoked,AUSTRALIA,New South Wales,"First Beach, Forster",Surfing,Peter Weir,M,14,"Both legs bitten, one surgically amputated",False,14' shark,"G.P. Whitley (1951), p.193, cites Daily Mirror (Sydney) 1/18/1944; V.M. Coppleson (1958), p.84",1944.01.14-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.14-Weir.pdf,1944.01.14,1944.01.14 +4651,04-Jan-1944,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Ronald Joel Selby,M,26,fatal,True,14' shark,"M. Selby, M. Levine, GSAF ",1944.01.04-Selby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.01.04-Selby.pdf,1944.01.04,1944.01.04 +4652,Some time between Apr & Nov-1944,Sea Disaster,SOUTH PACIFIC OCEAN,unknown,unknown,Adrift on raft,"Unknown, he was Nabetari's companion",M,26,fatal,True,14' shark,"TIME, 7/29/1946",1944.00.00.c-Nebatari'sCompanion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.c-Nebatari'sCompanion.pdf,1944.00.00.c,1944.00.00.c +4653,1944,Sea Disaster,ITALY,Adriatic Sea,Adriatic Sea,B-24 aircraft crashed into the sea,"male, a member of the crew",M,26,fatal,True,14' shark,GSAF,1944.00.00.b-B-24 crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.b-B-24 crew.pdf,1944.00.00.b,1944.00.00.b +4654,1944,Unprovoked,NEW GUINEA,Pacific Ocean,Pacific Ocean,Fell overboard from USS Ward,sailor,M,26,fatal,True,14' shark,GSAF,1944.00.00.a-Ward crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1944.00.00.a-Ward crew.pdf,1944.00.00.a,1944.00.00.a +4655,12-Dec-1943,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, Amazimtoti ",Treading water,James Crawford Matthews,M,17,fatal,True,14' shark,"R. Kahn, M. Levine, GSAF; Natal Mercury 1/21/1944",1943.12.12-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.12-Matthews.pdf,1943.12.12,1943.12.12 +4656,04-Dec-1943,Sea Disaster,USA,South Carolina,Off Charleston,The Cuban freighter Libertad was torpedoed and sunk by the German submarine U-129,Julio C. de Cabarrocas ,M,17,fatal,True,14' shark,"Troy Record, 12/13/1943; J. Rohwer, p.175",1943.12.04-Libertad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.12.04-Libertad.pdf,1943.12.04,1943.12.04 +4657,21-Nov-1943,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River Mouth,Swimming with board,Richard Richardson,M,17,Right foot lacerated,False,14' shark,"M. Levine, GSAF",1943.11.21-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.21-Richardson.pdf,1943.11.21,1943.11.21 +4658,11-Nov-1943,Sea Disaster,PACIFIC OCEAN,Near the Fiji Islands,22º08'S : 178º06'W,The 6711-ton American freighter & troop transport Cape San Juan was torpedoed by the Japanese submarine I-21,males,M,17,fatal,True,14' shark,"M. McDiarmid, p.67",1943.11.11-CapeSanJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.11.11-CapeSanJuan.pdf,1943.11.11,1943.11.11 +4659,26-Oct-1943,Invalid,USA,Florida,Victim was on said to be on tanker that collided off Florida coast on 10-20-1943,The 6711-ton American freighter & troop transport Cape San Juan was torpedoed by the Japanese submarine I-21,"Clyde Kelly Ormand, Jr.",M,17,"Hand, forearm, leg and pelvis recovered from 4.25 m [14'] shark caught at Baker’s Haulover, Miami Beach on 26-Oct-1943",False,Shark involvement prior to death unconfirmed,"R.F. Hutton (1959); D. Baldridge, p.171; T. Helm, p.226; SAF Case #624",1943.10.26-Ormond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.10.26-Ormond.pdf,1943.10.26,1943.10.26 +4660,23-Sep-1943,Unprovoked,PANAMA,Gulf of Panama,"North shore of Rey Island, Las Perlas archipelago",Dived overboard to check propeller of US Navy motor torpedo boat,sailor,M,20,fatal,True,"White shark, 2 m [6'9""] (Tooth fragment recovered from victim's shoulder & identified by J.T. Nicholls)",Captain B. H. Kean,1943.09.23-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.09.23-sailor.pdf,1943.09.23,1943.09.23 +4661,Aug-1943,Sea Disaster,ITALY,40 miles south of Naples ,Tyrrhenian Sea,Flying Fortress bomber aircraft went down after daytime raid on Naples. He was swimming on the surface,"Lieutenant Robert D. Kurz (U.S.), co-pilot",M,20,"Bitten on arms, hands & feet while awaiting rescue",False,"White shark, 2 m [6'9""] (Tooth fragment recovered from victim's shoulder & identified by J.T. Nicholls)",New York Times 8/9/1943,1943.08.00-Kurz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.08.00-Kurz.pdf,1943.08.00,1943.08.00 +4662,18-Jul-1943,Sea Disaster,USA,Florida,"40 miles off Islamorada, near Cay Sal",Treading water after survivng crash of the US Navy airship K-74 that was hit by the German submarine U-134,Petty Officer Isadore Stessel,M,20,fatal,True,"White shark, 2 m [6'9""] (Tooth fragment recovered from victim's shoulder & identified by J.T. Nicholls)",Wikipedia,1943.07.18-Stessel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.18-Stessel.pdf,1943.07.18,1943.07.18 +4663,Jul-1943,Boating,PORTUGAL,Sines,Sines,Fishing for mackerel,rowboats attacked by sharks,,20,No injury to occupants,False,"White shark, 2 m [6'9""] (Tooth fragment recovered from victim's shoulder & identified by J.T. Nicholls)",Letter dated 8/31/1959 from A. Cordeiro,1943.07.00.b-Portugal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.b-Portugal.pdf,1943.07.00.b,1943.07.00.b +4664,Jul-1943,Invalid,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,"Manuel Zamora, a lawyer",M,68,"No injury, a shark made a threat display",False,Invalid,C.G. Robles; SAF Case #1327 ,1943.07.00.a-Zamora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.07.00.a-Zamora.pdf,1943.07.00.a,1943.07.00.a +4665,16-Jun-1943,Boating,AUSTRALIA,Tasmania,Triabunna,Fishing for cod,"a dinghy, occupant Neil Parker",M,18,"No injury to occupant, shark grabbed rudder and dragged the dinghy stern-first",False,"White shark, 3.9 m, 550 kg, male","C. Black, GSAF",1943.06.16-dinghy-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.06.16-dinghy-Parker.pdf,1943.06.16,1943.06.16 +4666,27-May-1943,Invalid,PACIFIC OCEAN,unknown,unknown,B-24 crashed during a search mission. Survivors in raft for 47 days ,Louis Zamperini & Russell Phillips ,M,18,Survived,False,Invalid,G.A. Llano,1943.05.27-Zamperini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.27-Zamperini.pdf,1943.05.27,1943.05.27 +4667,17-May-1943,Sea Disaster,CENTRAL PACIFIC,68 miles east of Wallis Island,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","Arthur George Reading, Naval aviator",M,26,"Jaw dislocated & contusions from many blows on legs & body by shark fins, rescued after 14 hours",False,Invalid,"W.L. Jones; V.M. Coppleson (1962), p.217; G.A. Llano in Airmen Against the Sea, p.67",1943.05.17.b-Reading.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.b-Reading.pdf,1943.05.17.b,1943.05.17.b +4668,17-May-1943,Sea Disaster,CENTRAL PACIFIC,68 miles east of Wallis Island,68 miles east of Wallis Island,"S2N Navy scout plane went down, E.H. Almond & Lieut A.G. Reading in water","E.H. Almond, US Navy radioman",M,26,fatal,True,Invalid,"V.M. Coppleson (1962), p.217; G.A. Llano in Airmen Against the Sea, p.67",1943.05.17.a-Almond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.17.a-Almond.pdf,1943.05.17.a,1943.05.17.a +4669,14-May-1943,Sea Disaster,AUSTRALIA,Queensland,Off Brisbane,Hospital Ship Centaur torpedoed & sunk by the Japanese submarine I-177,unknown,M,F,fatal,True,Invalid,"The Age, 5/19/1953",1943.05.14-Centaur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.14-Centaur.pdf,1943.05.14,1943.05.14 +4670,Reported 01-May-1943,Sea Disaster,INDIAN OCEAN,unknown,unknown,ship torpedoed 400 miles off the African coas. Man was clinging to hatch cover,Clarence Master,M,F,"Leg, foot & arm bitten",False,Blue shark,"St. Petersburg Times, 5/1/1943",1943.05.01.R-Clarence-Master.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.05.01.R-Clarence-Master.pdf,1943.05.01.R,1943.05.01.R +4671,5-Apr-1943,Invalid,USA,Hawaii,"3 miles from shore off McGregor Point, Maui","Small boat swamped, 4 people swimming to shore but he fell behind the other 3 and vanished",Leonard Gant,M,F,On 29-Apr-1943 his remains (right forearm & swim trunks) were found in 4.9 m [16'] shark’s gut,False,Shark involvement prior to death unconfirmed,"Honolulu Advertiser, 8/9/1953; V.M. Coppleson (1958); J. Borg, p. 71; SAF Case #292",1943.04.05-Gant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.04.05-Gant.pdf,1943.04.05,1943.04.05 +4672,21-Mar-1943,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"North Beach, Durban",Swimming,Eric Ridley,M,31,fatal,True,Shark involvement prior to death unconfirmed,"M. Levine, GSAF",1943.03.21-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.21-Ridley.pdf,1943.03.21,1943.03.21 +4673,14-Mar-1943,Sea Disaster,SIERRA LEONE,unknown,unknown,"The 21,516-ton troopship Empress of Canada torpedoed and sunk by the Italian submarine Leonardo da Vinci",Greatships.net,,31,fatal,True,Shark involvement prior to death unconfirmed,Greatships.net,1943.03.14-Empress-of-Canada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.14-Empress-of-Canada.pdf,1943.03.14,1943.03.14 +4674,02-Mar-1943,Sea Disaster,BRAZIL,Near the Abrolhos Archipelago ,Near the Abrolhos Archipelago ,The 3540-ton Alfonso Penna was torpedoed & sunk by the Italian submarine Barbarigo,"New York Times, 3/20/1943; Axis submarine losses in WWII",,31,fatal,True,Shark involvement prior to death unconfirmed,"New York Times, 3/20/1943; Axis submarine losses in WWII",1943.03.02.b-AlfonsoPenna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.b-AlfonsoPenna.pdf,1943.03.02.b,1943.03.02.b +4675,02-Mar-1943 to 07-Mar-1943,Sea Disaster,PAPUA NEW GUINEA,Morobe Province, Huon Gulf,"Known as The Battle of the Bismarck Sea : 8 Japanese destroyers guarding a convoy of 8 transports were attacked by 129 Allied fighters, 207 bombers & 3 squadrons of the Royal Australian Air Force. ","G. Duncan, et al",,31,fatal,True,Shark involvement prior to death unconfirmed,"G. Duncan, et al",1943.03.02.a-HuonGulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.03.02.a-HuonGulf.pdf,1943.03.02.a,1943.03.02.a +4676,26-Jan-1943,Sea Disaster,PACIFIC OCEAN,Northwest of Papua New Guinea,Northwest of Papua New Guinea,The USS Wahoo torpedoes & sank the Japanese troop transport Buyo Maru,Japanese seamen,M,31,fatal,True,Shark involvement prior to death unconfirmed,Naval Historical Center,1943.01.26-BuyoMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.01.26-BuyoMaru.pdf,1943.01.26,1943.01.26 +4677,Summer 1943,Unprovoked,MEXICO,Veracruz,"Villa del Mar Beach, Veracruz",Swimming,a U.S. citizen,,31,fatal,True,Shark involvement prior to death unconfirmed,C.G. Robles,1943.00.00.f-NV-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.f-NV-Veracruz.pdf,1943.00.00.f,1943.00.00.f +4678,1943,Unprovoked,SOLOMON ISLANDS,Guadalcanal,Guadalcanal,Swimming,"U.S. soldier in 161st Infantry Regiment, 25th Infantry Division",M,31,Arm severed,False,Shark involvement prior to death unconfirmed,J. Lawton Collins,1943.00.00.e-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.e-Soldier.pdf,1943.00.00.e,1943.00.00.e +4679,1943,Unprovoked,IRAQ,River Tigris,River Tigris,Swimming,Syed Khaleeulla ,M,22,"Right arm severed, left foot bitten",False,Shark involvement prior to death unconfirmed,"Times of India, 8/19/2001",1943.00.00.d-Khaleeula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.d-Khaleeula.pdf,1943.00.00.d,1943.00.00.d +4680,Fall 1943,Unprovoked,USA,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,22,Calf nipped in each case,False,"""small sharks""",W. M. Chapman,1943.00.00.c - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.c - Midway.pdf,1943.00.00.c,1943.00.00.c +4681,Fall 1943,Unprovoked,USA,Hawaii,"Midway Island, Northwestern Hawaiian Islands",Spearfishing, 2 males,M,22,Calf nipped in each case,False,"""small sharks""",W. M. Chapman,1943.00.00.b - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.b - Midway.pdf,1943.00.00.b,1943.00.00.b +4682,1943,Unprovoked,USA,Hawaii,"Midway, Northwestern Hawaiian Islands",Spearfishing,male,M,22,"Unprovoked, but circumstances unknown",UNKNOWN,"""small sharks""","G.H. Balazs & A.K.H. Kam; J. Borg, p.72; L. Taylor (1993), pp.98-99",1943.00.00.a-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1943.00.00.a-Midway.pdf,1943.00.00.a,1943.00.00.a +4683,26-Dec-1942,Unprovoked,AUSTRALIA,New South Wales,"Bantry Bay, near Ironstone Point, Middle Harbor, Sydney",Dog paddling or standing,Denise Rosemary Burch,F,15,fatal,True,Bull shark,"G.P. Whitley (1951), p. 193; V.M. Coppleson (1958), p.70; A. Sharpe, pp.72-73; A. MacCormick, pp.34-35",1942.12.26-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.12.26-Burch.pdf,1942.12.26,1942.12.26 +4684,28-Nov-1942,Sea Disaster,SOUTH AFRICA,KwaZulu-Natal,50 km off St. Lucia,U-177 torpedoed & sank the troopship Nova Scotia,Sammy Levine & his pet parrot,M,15,fatal,True,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","L. de Lease; M. Levine, GSAF",1942.11.28-NovaScotia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.28-NovaScotia.pdf,1942.11.28,1942.11.28 +4685,25-Nov-1942,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Umkomaas,Swimming,E.W. Bilton,M,38,"Calf bitten, leg surgically amputated",False,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","M. Levine,GSAF ",1942.11.25-Bilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.25-Bilton.pdf,1942.11.25,1942.11.25 +4686,16-Nov-1942,Sea Disaster,SOLOMON ISLANDS,Battle of Guadalcanal,Battle of Guadalcanal,Thrown from destroyer when shell hit,"Lima News, 7/13/1944",M,19,Hip bitten,False,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","Lima News, 7/13/1944",1942.11.16-Guadalcanal-HospitalShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.16-Guadalcanal-HospitalShip.pdf,1942.11.16,1942.11.16 +4687,21-Nov-1942,Sea Disaster,INDIAN OCEAN,Bound from Cape Town for St. Helena,Bound from Cape Town for St. Helena,"On 6-Nov-1942, the German submarine U-68 sank the City of Cairo 5 days from Cape Town, survivors took to lifeboats & rafts. On the 15th day, a fireman jumped over the stern & was taken by sharks",male,M,19,fatal,True,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","Coppleson (1962), pp.207 & 258 ",1942.11.21-City-of-Cairo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.21-City-of-Cairo.pdf,1942.11.21,1942.11.21 +4688,13-Nov-1942,Sea Disaster,SOLOMON ISLANDS,Off Guadalcanal,Off Guadalcanal,"Anti-Aircraft cruiser USS Atlanta (CL,-05) travelling in convoy after the Battle of Midway, encountered a Japanese flotilla (Battle of Guadalcanal) &, heavily damaged by gunfire, she was lost off Lunga Point. Victim was swimming when bitten.","Sam Hicks, a gunner",M,19,"Injured by sharks, but managed to swim ashore 6.5 hours later",False,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks",Memoirs of Sam Hicks,1942.11.13.c-Hicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.c-Hicks.pdf,1942.11.13.c,1942.11.13.c +4689,13-Nov-1942,Sea Disaster,SOLOMON ISLANDS / VANUATU,"North of Guadalcanal, Solomon Islands while enroute to Vanuatu","North of Guadalcanal, Solomon Islands while enroute to Vanuatu",Explosion & sinking of the USS Juneau after being torpedoed by the submarine I-85,"Because of a mistaken belief that there were no survivors and several other successive errors, of the 100 to 150 men who survived the sinking, only 11 were rescued. Four of the Sullivan brothers died in the initial blast. ",M,19,fatal,True,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks",US Navy Military History,1942.11.13.b-Juneau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.b-Juneau.pdf,1942.11.13.b,1942.11.13.b +4690,12-Nov-1942,Sea Disaster,SOLOMON ISLANDS,Off Savo Island,Off Savo Island,Explosion & sinking of the USS Juneau after being torpedoed by the submarine I-85,Japanese seaman,M,19,fatal,True,"1.8 m to 2.4 m [6' to 8'] sharks, most were oceanic whitetip sharks","C. Cromie, Chicago Tribune, 12/5/1942",1942.11.13.a-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.13.a-Guadalcanal.pdf,1942.11.13.a,1942.11.13.a +4691,01-Nov-1942,Unprovoked,SOUTH AFRICA,Western Cape Province,Clifton,Swimming ,Willem Johannes Bergh,M,18,fatal,True,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","Natal Daily News, 11/28/1942, M. Levine, GSAF; T. Wallett, p.42 ",1942.11.01-Bergh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.01-Bergh.pdf,1942.11.01,1942.11.01 +4692,Nov-1942,Provoked,PACIFIC OCEAN,Between Hawaii and U.S.A.,Between Hawaii and U.S.A.,In rubber dinghy with Captain Eddie Rickenbacker for 21 days. ,male,M,18,One man drove a knife through rubberized canvas trying to stab a shark & it injured him with its tail PROVOKED INCIDENT,False,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","V.M. Coppleson (1962), p.257",1942.11.00.b-Rickenbacker-raftmate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.b-Rickenbacker-raftmate.pdf,1942.11.00.b,1942.11.00.b +4693,Nov-1942,Sea Disaster,unknown,Off South American coast,Off South American coast,"Dutch merchant ship Zaandam torpedoed by the U-174 amidships, sank & dozens of survivors took to rafts & boats. One man, Izzi, who drifted 83 days on a raft related that sharks attacked many men in the water when the ship went down","M. Murphy; V.M. Coppleson (1962), pp.207-208",M,18,fatal,True,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","M. Murphy; V.M. Coppleson (1962), pp.207-208",1942.11.00.a-Izzi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.11.00.a-Izzi.pdf,1942.11.00.a,1942.11.00.a +4694,12-Oct-1942,Sea Disaster,SOLOMON ISLANDS,Makora-Ulawa Province,Cape Esperance (near Savo Islands),"His ship, the US destroyer Duncan DD 485, had been sunk by crossfire from Japanese warships. He was wearing a kapok lifejacket & using 2 aluminum powder tins for floatation ",Lieutenant Commander Herbert Richard Kabat,M,25,"Foot, hand, elbow & calf lacerated & abraded, thigh gashed",False,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","W. L. Jones, M.D.; Saturday Evening Post; V.M. Coppleson (1958), p.199",1942.10.12-Kabat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.10.12-Kabat.pdf,1942.10.12,1942.10.12 +4695,30-Sep-1942,Sea Disaster,ATLANTIC OCEAN,04.05N-13.23W,04.05N-13.23W,The 6015-ton British ship Empire Avocet was torpedoed by the German submarine U-125. ,"V.M. Coppleson (1962), p.208",,25,Survivors on life rafts were harassed by sharks,False,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","V.M. Coppleson (1962), p.208",1942.09.30-EmpireAvocet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.30-EmpireAvocet.pdf,1942.09.30,1942.09.30 +4696,12-Sep-1942,Sea Disaster,ATLANTIC OCEAN,360 miles north of Ascension Island,360 miles north of Ascension Island,"The Pacquebot Laconia, enroute to Liverpool with 600 Italian prisoners onboard, was torpedoed by the German submarine U-156 and only 2 rafts were launched before the ship went down. Unable to board an overcrowded raft, he was swimming.",Michael Setti,M,25,"Calf lacerated. He was rescued by German submarine, which sunk. Rescued by Italian submarine, which sunk. Managed to reach Dakar",False,"White shark, 4.5 m to 6 m [14'9"" to 20'] according to witnesses","V.M. Coppleson (1962), p.258; Rohwer, pp.122 & 352",1942.09.12.b-Laconia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.b-Laconia.pdf,1942.09.12.b,1942.09.12.b +4697,12-Sep-1942,Unprovoked,AUSTRALIA,Queensland,"Trinity Beach, 17 km northwast of Cairns",Treading water,"Athol Wearne, Royal Australian Air Force. officer",M,24,"Right foot severed & calf removed, leg surgically amputated below the knee",False,"Tiger shark, 2.4 m to 3 m [8' to 10'] ","A Wearne, J. Green, pp.44-50; G.P. Whitley (1951), p. 193, cites Sydney Morning Herald, 8/11/1943; V.M. Coppleson (1958), pp.87 & 238",1942.09.12.a-Wearne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.12.a-Wearne.pdf,1942.09.12.a,1942.09.12.a +4698,11-Sep-1942 to 16-Sep-1942,Sea Disaster,SOUTHWEST PACIFIC OCEAN,Southwestern Pacific Base,Southwestern Pacific Base,Adrift on life raft,US Army fliers,M,24,fatal,True,Tiger shark & others,SAF Case #741,1942.09.11-NV-AdriftonRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.09.11-NV-AdriftonRaft.pdf,1942.09.11,1942.09.11 +4699,8-Aug-1942,Sea Disaster,SOLOMON ISLANDS,unknown,unknown,Japanese aircraft shot down. He was one of two survivors rescued by the U.S. destroyer Mugford,Tamaki Amano,M,24,Lacerations to left arm,False,Tiger shark & others,"Appleton Post-Crescent, 4/18/1964",1942.08.08-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.08.08-Amano.pdf,1942.08.08,1942.08.08 +4700,12-Jul-1942,Sea Disaster,ATLANTIC OCEAN,unknown,unknown,The SS Potlach was torpedoed & sunk by the U-153 on 27-Jun-1942. ,John Martin Miller,M,32,fatal,True,Tiger shark & others,"Kingsport Times, 8/6/1942, et al",1942.07.12-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.12-Miller.pdf,1942.07.12,1942.07.12 +4701,06-Jul-1942,Provoked,ITALY,Liguria,Savona,Sculling,Gino Bardolini,M,20,"After he hit the shark with an oar, the shark bit the oar and overturned the boat PROVOKED INCIDENT",False,Porbeagle shark,"C. Moore, GSAF",1942.07.06-Bardolini,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.07.06-Bardolini,1942.07.06,1942.07.06 +4702,Reported 11-Jun-1942,Sea Disaster,BAY OF BENGAL,unknown,unknown,A 210-ton brig was sunk by a Japanese submarine. Some of the survivors were machine-gunned & some were taken by sharks,2 males,M,20,fatal,True,Porbeagle shark,"Canberra Times, 6/11/1942",1942.06.11.R-Bay-of-Bengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.11.R-Bay-of-Bengal.pdf,1942.06.11.R,1942.06.11.R +4703,Reported 08-Jun-1942,Invalid,BRAZIL,unknown,unknown,boat capsized during filming,Jacare,M,20,"Remains recovered from 440-lb shark, but cause of death was probably drowning",False,Shark involvement prior to death unconfirmed,"Time Magazine, 6/8/1942",1942.06.08.R-Jacare-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.08.R-Jacare-Brazil.pdf,1942.06.08.R,1942.06.08.R +4704,04-Jun-1942,Unprovoked,USA,Midway Atoll,Midway Atoll,"Plane crashed in water, men in life raft",a pilot,M,20,Survived,False,Shark involvement prior to death unconfirmed,"Evening Standard, 7/16/1942",1942.06.04-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.04-Midway.pdf,1942.06.04,1942.06.04 +4705,Jun-1942,Unprovoked,unknown,300 miles east of St. Thomas (Virgin Islands),300 miles east of St. Thomas (Virgin Islands),On life raft tethered to lifeboat. A seaman put hand over side to rinse a cup,male,M,20,Forearm lacerated,False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1962), p.258",1942.06.00-on-life-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.06.00-on-life-raft.pdf,1942.06.00,1942.06.00 +4706,09-May-1942,Unprovoked,AUSTRALIA,Queensland,"Great Barrier Reef, off Cairns",Diving from lugger,Abraham Johnson,M,20,"Hands, arms & knee lacerated",False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.245",1942.05.09-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.05.09-Johnson.pdf,1942.05.09,1942.05.09 +4707,05-Apr-1942,Invalid,INDIAN OCEAN,West of Ceylon (Sri Lanka),300 nm from shore,H.M.S. Cornwall & H.M.S.Dorsetshire sunk by Japanese dive bombers. Officers & men in the water formed a circle with 60 of their dead in the center for 36 hours,"V.M. Coppleson (1962), p.218",,20,Sharks were numerous & took corpses but made no attempts to harm the survivors.,False,Invalid,"V.M. Coppleson (1962), p.218",1942.04.05-Dorsetshire-Cornwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.04.05-Dorsetshire-Cornwall.pdf,1942.04.05,1942.04.05 +4708,08-Mar-1942,Sea Disaster,CUBA,Guantanamo Province,30 nm southeast of Guantanamo Bay,Esso Bolivar was torpedoed & shelled by the German submarine U-126,A wounded member of Naval guncrew being towed by Charles Anderson toward a lifeboat & injured crew being towed by watertender Arthur Lauman,M,20,fatal,True,Invalid,"Baltimore Evening Sun, 4/13/1942",1942.03.08-EssoBolivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.08-EssoBolivar.pdf,1942.03.08,1942.03.08 +4709,04-Mar-1942,Invalid,AUSTRALIA,New South Wales,George’s River,Esso Bolivar was torpedoed & shelled by the German submarine U-126,Ronald J. Bishop,M,18,"Cause of death was drowning, shark bites were post mortem",False,Invalid,"G.P. Whitley (1951), p. 192, cites Sun (Sydney), 3/27/1942; J. Green, p.34",1942.03.04-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.03.04-Bishop.pdf,1942.03.04,1942.03.04 +4710,18-Jan-1942,Boating,AUSTRALIA,New South Wales,Fairy Bower,Esso Bolivar was torpedoed & shelled by the German submarine U-126,paddle of surf-ski,,18,Paddle of surf ski bitten by shark,False,Invalid,"G.P. Whitley (1951), p. 192 ",1942.01.18-Surf-ski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.18-Surf-ski.pdf,1942.01.18,1942.01.18 +4711,04-Jan-1942,Unprovoked,AUSTRALIA,New South Wales,"Egg Rock, Middle Harbor, Sydney",Swimming,Zita Steadman,F,28,fatal,True,"Bull shark, 4 m [13'] ","V.M. Coppleson (1958), p.70; A. Sharpe, p.72; A. MacCormick, pp.34-35",1942.01.04-Steadman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.04-Steadman.pdf,1942.01.04,1942.01.04 +4712,Jan-1942,Provoked,AUSTRALIA,New South Wales,"Fairy Bower, near North Steyne",Surf-skiing,male,M,28,Attempted to frighten shark by smacking water with paddle. Shark bit paddle. No injury to surf-skier PROVOKED INCIDENT,False,3 m [10'] shark,"V.M. Coppleson (1958), p.41",1942.01.00-Surfski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.01.00-Surfski.pdf,1942.01.00,1942.01.00 +4713,1942,Sea Disaster,INDONESIA,East Java,Surabaya,Captured Allied soldiers were squeezed into 3' bamboo pig baskets & fed to waiting sharks,200 soldiers,M,28,fatal,True,3 m [10'] shark,G. Duncan,1942.00.00.k-PigBasketAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.k-PigBasketAtrocity.pdf,1942.00.00.k,1942.00.00.k +4714,Winter 1942,Boating,AUSTRALIA,Tasmania,Off Big Friar Island,Fishing for perch,Storm King; occupants - George Bridge & 2 sons,M,28,"No injury to occupants, rudder damaged by shark",False,3 m [10'] shark,"C. Black, GSAF",1942.00.00.j-StormBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.j-StormBay.pdf,1942.00.00.j,1942.00.00.j +4715,Summer 1942,Unprovoked,PHILIPPINES,Camiguin Island,2 kilometres off Sagay,"Sailing from Gingood, Misamis Oriental to Sagay (normally a 2-day voyage) capsized with 6 on board, three men were taken by sharks when they attempted to swim to shore.",Andong & 2 others,M,28,fatal,True,3 m [10'] shark,V. Obedencio,1942.00.00.i-Adong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.i-Adong.pdf,1942.00.00.i,1942.00.00.i +4716,1942,Boating,SOUTH AFRICA,Western Cape Province,Simon’s Bay,"Sailing from Gingood, Misamis Oriental to Sagay (normally a 2-day voyage) capsized with 6 on board, three men were taken by sharks when they attempted to swim to shore.",boat,,28,"No injury to occupants, boat rammed by shark",False,3 m [10'] shark,"T. Wallett, p.27",1942.00.00.h-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.h-boat.pdf,1942.00.00.h,1942.00.00.h +4717,1942,Boating,SOUTH AFRICA,Western Cape Province,Simon's Bay,"Sailing from Gingood, Misamis Oriental to Sagay (normally a 2-day voyage) capsized with 6 on board, three men were taken by sharks when they attempted to swim to shore.",boat,,28,No injury,False,Said to involve a 6.5 m [21.5'] shark,"T. Wallett, p.27",1942.00.00.g-SimonsTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.g-SimonsTown.pdf,1942.00.00.g,1942.00.00.g +4718,1942,Unprovoked,BAHAMAS,Cay Sal Bank,Anchored off the largest island in the group,Swimming along side N.E.L. vessel Saluda,Herbert J. Mann,M,48,"Minor injury, ankle scratched by shark's teeth",False,1.2 m to 1.5 m [4' to 5'] shark,H.J. Mann,1942.00.00.f-Mann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.f-Mann.pdf,1942.00.00.f,1942.00.00.f +4719,1942,Sea Disaster,MID-PACIFC OCEAN,(Southwestern Pacific),(Southwestern Pacific),"Plane forced down, 3 men on rubber life raft. Put hand over side to feel drift of boat ",Gene Aldrich,M,48,"Fingers badly lacerated, wounds became septic",False,1.2 m to 1.5 m [4' to 5'] shark,"V.M. Coppleson (1962), p.258",1942.00.00.d-Aldrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.d-Aldrich.pdf,1942.00.00.d,1942.00.00.d +4720,1942,Sea Disaster,SOUTHWEST PACIFIC OCEAN,unknown,unknown,Ditched plane in the sea & were adrift on a rubber life raft. ,American aviators,M,48,"No injury to occupants, They fought off sharks & killed one with an automatic. Rescued 34 days later",False,"Said to be “leopard sharks”, more probably tiger sharks","V.M. Coppleson (1962), p.258",1942.00.00.c-AmericanAviators.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.c-AmericanAviators.pdf,1942.00.00.c,1942.00.00.c +4721,1942,Unprovoked,PANAMA,Panama City,Bella Vista Beach,Swimming,male,M,48,fatal,True,"Said to be “leopard sharks”, more probably tiger sharks",V.M. Coppleson (1958),1942.00.00.a-BellaVista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1942.00.00.a-BellaVista.pdf,1942.00.00.a,1942.00.00.a +4722,07-Dec-1941,Sea Disaster,SOUTH ATLANTIC OCEAN,unknown,unknown,Torpedoed & burning British light cruiser with a crew of 450 men,"F. Dennis, pp. 19-20; A. Resciniti, p.90",,48,fatal,True,"Reportedly: oceanic whitetip sharks, blue sharks, tiger sharks & bull sharks","F. Dennis, pp. 19-20; A. Resciniti, p.90",1941.12.07-SouthAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.07-SouthAtlantic.pdf,1941.12.07,1941.12.07 +4723,03-Dec-1941,Unprovoked,AUSTRALIA,Western Australia,Carnarvon,Swimming,Ron Graham,M,10,Right ankle bitten,False,"Reportedly: oceanic whitetip sharks, blue sharks, tiger sharks & bull sharks","The West Australian, 12/11/1941",1941.12.03-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.12.03-Graham.pdf,1941.12.03,1941.12.03 +4724,27-Nov-1941,Sea Disaster,SOUTH ATLANTIC OCEAN,Off Libya,Off Libya,HMAS Parramatta torpedoed & sunk by the U-559,Bill Nash,M,23,Right hand severed,False,Tiger shark,"Canberra Times, 12/3/1941",1941.11.27.b-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.b-Nash.pdf,1941.11.27.b,1941.11.27.b +4725,27-Nov-1941,Sea Disaster,SOUTH ATLANTIC OCEAN,Off Libya,Off Libya,HMAS Parramatta torpedoed & sunk by the U-559,Gordon Annison,M,23,Lacerations to chest,False,Tiger shark,"Canberra Times, 12/3/1941",1941.11.27.a-Annison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.27.a-Annison.pdf,1941.11.27.a,1941.11.27.a +4726,25-Nov-1941,Sea Disaster,SOUTH ATLANTIC OCEAN,"North of Pernambuco, Brazil","North of Pernambuco, Brazil",British cruiser Dunedin torpedoed & sunk by the U-124,GSAF,,23,fatal,True,Tiger shark,GSAF,1941.11.24-Dunedin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.24-Dunedin.pdf,1941.11.24,1941.11.24 +4727,19-Nov-1941,Sea Disaster,AUSTRALIA,Western Australia,Shark Bay,German raider Kormoran was sunk in an engagement with HMAS Sydney,male from the Kormoran,M,23,Leg bitten,False,Tiger shark,"Canberra Times, 12/4/1941",1941.11.19-Kormoran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.11.19-Kormoran.pdf,1941.11.19,1941.11.19 +4728,25-Sep-1941,Unprovoked,CARIBBEAN SEA,125 nm north of Aruba,125 nm north of Aruba,SS Ethel Skakel foundered in Central America Hurricane of 1941,Scotty,M,23,fatal,True,Tiger shark,Washington Post. 10/2/1941,1941.09.25-Scotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.09.25-Scotty.pdf,1941.09.25,1941.09.25 +4729,Reported 21-Aug-1941,Provoked,USA,New York,Montauk,Fishing,Captain Jack Kelly,,23,Laceration to left forearm from hooked shark PROVOKED INCIDENT,False,Tiger shark,"New York Times, 8/21/1941",1941.08.21.R-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.21.R-Kelly.pdf,1941.08.21.R,1941.08.21.R +4730,05-Aug-1941,Invalid,AUSTRALIA,New South Wales,Parramata River,Swimming,Ronald Dickerson,M,23,Shark involvement prior to death unconfirmed,False,Shark involvement prior to death unconfirmed,"Canberra Times, 8/6/1941",1941.08.05-Dickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.05-Dickerson.pdf,1941.08.05,1941.08.05 +4731,01-Aug-1941,Unprovoked,USA,South Carolina,Sullivan's Island at entrance to Charleston Harbor,Swimming at edge of channel,"Howard E. Sweatmon, a soldier",M,20,Chest lacerated,False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.153; T. Helm, p.226; NY Times, 8/3/1941, p.28",1941.08.01-Sweatmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.08.01-Sweatmon.pdf,1941.08.01,1941.08.01 +4732,22-Jul-1941,Boating,USA,New Jersey,"Brielle, Monmouth County (Offshore)",Fishing for tuna,"Fishing boat Bingo III , occupants: Michael Perkins, George Hornack & Capt. Lonergan ",,20,"No injury to occupants, shark leapt into boat & bit cabin door",False,Mako shark,"N.Y Times, 7/23/1941; SAF Case #951",1941.07.23-boatBingo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.23-boatBingo.pdf,1941.07.22,1941.07.22 +4733,01-Jul-1941,Provoked,USA,Hawaii,"Nankuli, O'ahu",Fishing,Hisao Shimoto,M,20,Arm bitten while removing shark from fishing line PROVOKED INCIDENT,False,100-lb shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; L. Taylor (1993), pp.98-99",1941.07.01-Shimoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.07.01-Shimoto.pdf,1941.07.01,1941.07.01 +4734,15-Jun-1941,Provoked,USA,New York,15 miles south of Jones Inlet,Fishing from 32' boat,Paul Ruhle,M,43,Left hand bitten as he tried to put rope around shark's tail PROVOKED INCIDENT,False,2.1 m [7'] shark,"New York Times, 6/16/1941; V.M. Coppleson (1958)",1941.06.15-Ruhle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.15-Ruhle.pdf,1941.06.15,1941.06.15 +4735,Jun-1941,Sea Disaster,PACIFIC OCEAN,Off coast of Ecuador,Between Esmeraldas & Salinas,"Ditched aircraft, 3 men in the water. Swam for 31 hours",Colonel B. & Sub-Lieutenant D.,M,43,fatal,True,2.1 m [7'] shark,"G.A. Llano in Airmen Against the Sea, pp.67-68; V.M. Coppleson (1962), p.257; A. Sharpe, pp.43-44; SAF Case #740",1941.06.00-Ecuador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.06.00-Ecuador.pdf,1941.06.00,1941.06.00 +4736,24-Mar-1941,Sea Disaster,SOUTH ATLANTIC OCEAN,750 miles off the African coast,750 miles off the African coast,The troopship Britannia was sunk by the German raider Thor,male,M,43,Dr. A.R. Hernandez of ship Cabo Hornos treated passenger whose leg was severed by a shark,False,2.1 m [7'] shark,"NY Times, 4/4/1941 +",1941.03.24-Britannia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.24-Britannia.pdf,1941.03.24,1941.03.24 +4737,09-Mar-1941,Provoked,USA,California,"Santa Monica, Los Angeles County",Fishing,Frank Martinez,M,53,Right hand bitten by boated shark PROVOKED INCIDENT,False,Mako shark (aka bonito shark) 1.2 m [4'] ,Press clipping dated 3/11/1941,1941.03.09-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.03.09-Martinez.pdf,1941.03.09,1941.03.09 +4738,13-Feb-1941,Provoked,AUSTRALIA,New South Wales,Wollongong,Fishing,Robert See,M,34,Hand lacerated by hooked shark PROVOKED INCIDENT,False,Mako shark (aka bonito shark) 1.2 m [4'] ,"Canberra Times, 2/18/1941, p.4",1941.02.13-See.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.13-See.pdf,1941.02.13.,1941.02.13. +4739,01-Feb-1941,Provoked,JAMAICA,Trelawney Province,Bogue (near Falmouth),Seine netting,Albert Buchanan,M,34,"Left knee, calf & heel bitten by shark trapped in the net PROVOKED INCIDENT",False,Mako shark (aka bonito shark) 1.2 m [4'] ,"Daily Gleaner, 2/3/1941, p. 1",1941.02.01-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.02.01-Buchanan.pdf,1941.02.01,1941.02.01 +4740,29-Jan-1941,Unprovoked,SOUTH ATLANTIC OCEAN,In Convoy OB 274,Off Sierra Leone,Rescuing seaman after ship sunk by German raider,David Hay,M,19,Clothing torn by sharks,False,Mako shark (aka bonito shark) 1.2 m [4'] ,"The London Gazette, 7/8/1941",1941.01.29-Hay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.29-Hay.pdf,1941.01.29,1941.01.29 +4741,Jan-1941,Sea Disaster,ATLANTIC OCEAN,unknown,unknown,Adrift on raft after their ship was sunk by an Axis raider ,a Scotsman & an Indian servant,M,19,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,Lethbridge Herald. 11/17/1941,1941.01.00-Scotsman-Indian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.01.00-Scotsman-Indian.pdf,1941.01.00,1941.01.00 +4742,1941,Unprovoked,SOLOMON ISLANDS,New Georgia,Munda,Floating,male,M,19,Buttock bitten,False,Mako shark (aka bonito shark) 1.2 m [4'] ,"Chapman, p.182",1941.00.00.h-Munda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.h-Munda.pdf,1941.00.00.h,1941.00.00.h +4743,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,a old fisherman,M,19,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,"Lt. Col. R. S. Hunt, pp.80-81",1941.00.00.f-old-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.f-old-fisherman.pdf,1941.00.00.f,1941.00.00.f +4744,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,a local dignitary,M,19,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,"Lt. Col. R. S. Hunt, pp.81-82",1941.00.00.e-local-dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.e-local-dignitary.pdf,1941.00.00.e,1941.00.00.e +4745,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,a Gurkha soldier,M,19,"Survived, but suffered a “forequarter amputation”",False,Mako shark (aka bonito shark) 1.2 m [4'] ,"Lt. Col. R. S. Hunt, p.80",1941.00.00.d-Gurkha-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.d-Gurkha-soldier.pdf,1941.00.00.d,1941.00.00.d +4746,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Slipped off rocks and fell into the water,boy,M,6,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,"Lt.Col. R.S. Hunt, p.80",1941.00.00.c-small-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.c-small-boy.pdf,1941.00.00.c,1941.00.00.c +4747,1941,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Standing,I.S.A.C. Ambulance driver,M,6,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,"Lt.Col. R.S. Hunt, p.80",1941.00.00.b-IASCambulance-driver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.b-IASCambulance-driver.pdf,1941.00.00.b,1941.00.00.b +4748,1941,Unprovoked,PAPUA NEW GUINEA,"Gaire Village, between Rigo & Port Moresby","Gaire Village, between Rigo & Port Moresby",Standing,Renagi Loi,M,14,"Foot severely bitten, surgically amputated",False,Mako shark (aka bonito shark) 1.2 m [4'] ,"V.M. Coppleson (1962), p.248",1941.00.00.a-RenagiLoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1941.00.00.a-RenagiLoi.pdf,1941.00.00.a,1941.00.00.a +4749,28-Dec-1940,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Standing on sandbank,Clarence Hammond,M,23,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,"J. Green, p.33; V.M. Coppleson (1958), p.235; G.P. Whitley (1951), p. 192",1940.12.28-Hammond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.28-Hammond.pdf,1940.12.28,1940.12.28 +4750,20-Dec-1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Desmond Chandley,M,17,fatal,True,Mako shark (aka bonito shark) 1.2 m [4'] ,"R. Kahn, M. Levine, GSAF",1940.12.20-Chandley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.20-Chandley.pdf,1940.12.20,1940.12.20 +4751,Reported 19-Dec-1940,Unprovoked,AUSTRALIA,Queensland,Double Island Beach,Fishing,Jack Ryan,M,17,Minor injury to leg,False,Mako shark (aka bonito shark) 1.2 m [4'] ,"Soda Springs Sun, 12/19/1940",1940.12.19.R-JackRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.19.R-JackRyan.pdf,1940.12.19.R,1940.12.19.R +4752,10-Dec-1940,Provoked,AUSTRALIA,Northern Territory,Darwin,Collecting fish in military trap when bitten by captured shark that had been shot by soldiers with Garten,Private. Michael Garten,M,17,Leg severely lacerated PROVOKED INCIDENT,False,Mako shark (aka bonito shark) 1.2 m [4'] ,"V.M. Coppleson; G.P. Whitley (1951), p. 192",1940.12.10-Garten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.12.10-Garten.pdf,1940.12.10,1940.12.10 +4753,Sep-1940,Unprovoked,PANAMA,Panama Bay (Pacific Ocean),Otoque Island,Bathing,Roberto Menacho,M,18,fatal,True,5.5 m [18'] shark,"V.M. Coppleson (1958), p.263",1940.09.00-Menacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.09.00-Menacho.pdf,1940.09.00,1940.09.00 +4754,13-Jul-1940,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Standing,William Tanner,M,18,Ankle bitten,False,5.5 m [18'] shark,"V.M. Coppleson (1958), p.253",1940.07.13.b-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.b-Tanner.pdf,1940.07.13.b,1940.07.13.b +4755,13-Jul-1940,Unprovoked,USA,South Carolina,"Folly Beach, Charleston County",Standing ,Harvey H. Haley (rescuer),M,18,Struck by shark immediately before it bit Tanner (see below),False,5.5 m [18'] shark,"V.M. Coppleson (1958), p.253 ",1940.07.13.a-Haley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.07.13.a-Haley.pdf,1940.07.13.a,1940.07.13.a +4756,30-Jun-1940,Unprovoked,USA,North Carolina,"Holden Beach, Brunswick County",Fishing,William T. Dye,M,18,Thigh lacerated,False,3 m [10'] shark,"C. Creswell, GSAF; F. Schwartz, p.23",1940.06.30-Dye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.06.30-Dye.pdf,1940.06.30,1940.06.30 +4757,31-Mar-1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Danger Pool, Winkelspruit, South Coast",Treading water,Joe Lees,M,25,fatal,True,"White shark, species identity confirmed by tooth pattern","G. Cawston; H. Robson, M. Levine, GSAF",1940.03.31-Lees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.31-Lees.pdf,1940.03.31,1940.03.31 +4758,20-Mar-1940,Unprovoked,AUSTRALIA,New South Wales,Gerringong,Free diving for lobster,Smiles Walker,M,25,Minor injuries to foot,False,Wobbegong shark,"Sydney Morning Herald, 3/21/1940; V.M. Coppleson (1962), p.251",1940.03.20-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.03.20-Walker.pdf,1940.03.20,1940.03.20 +4759,22-Feb-1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Inyoni Rocks, South Coast",Swimming,Leslie Plummer Lund,M,17,fatal,True,"White shark, 160-kg [353-lb], identity confirmed by tooth pattern","H. Robson, M. Levine, GSAF ",1940.02.22 - Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.22 - Lund.pdf,1940.02.22,1940.02.22 +4760,20-Feb-1940,Boating,AUSTRALIA,New South Wales,Sydney Harbour,Canoeing,"""a youth""",,17,"No injury. Shark grazed canoe, snapped at a piece of mast being trailed in the water & followed it into 2' of water",False,"White shark, 160-kg [353-lb], identity confirmed by tooth pattern","G.P. Whitley, p.265",1940.02.20-canoe-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.20-canoe-Sydney.pdf,1940.02.20,1940.02.20 +4761,4-Feb-1940,Unprovoked,AUSTRALIA,New South Wales,"North Brighton, Botany Bay",Wading,John William Eke,M,55,fatal,True,"White shark, 160-kg [353-lb], identity confirmed by tooth pattern","V.M. Coppleson (1958), p.69; A. Sharpe, p.66",1940.02.04-Eke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.02.04-Eke.pdf,1940.02.04,1940.02.04 +4762,29-Jan-1940,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Dived into the water,male,M,17,Shoulder nipped,False,"""a small shark""","Morning Bulletin, 1/30/1929",1940.01.29-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.29-BrisbaneRiver.pdf,1940.01.29,1940.01.29 +4763,23-Jan-1940,Unprovoked,AUSTRALIA,New South Wales,"North Brighton, Botany Bay",Swimming,Maxwell Farrin,M,13,fatal,True,3 m [10'] shark,"V.M. Coppleson (1958), p.69; A. Sharpe, pp.65-66",1940.01.23-Farrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.23-Farrin.pdf,1940.01.23,1940.01.23 +4764,15-Jan-1940,Unprovoked,AUSTRALIA,Queensland,"Surfers Paradise, near Southport",Swimming,Douglas Bright,M,22,Chest lacerated,False,3 m [10'] shark,"V.M. Coppleson (1958), pp. 93 & 238",1940.01.15-Bright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.15-Bright.pdf,1940.01.15,1940.01.15 +4765,07-Jan-1940,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Warner Beach, South Coast",Swimming ,Frederick Aubrey Hooper,M,18,fatal,True,2.4 m [8'] shark,"R. Guy, T. Jucker & M. Levine, GSAF ",1940.01.07-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.07-Hooper.pdf,1940.01.07,1940.01.07 +4766,01-Jan-1940,Unprovoked,AUSTRALIA,Queensland,"Malagil, Barrier Reef",Diving for trochus,native diver,M,18,Thigh lacerated,False,2.4 m [8'] shark,"J. Green, p.33; V.M. Coppleson (1958), p.245",1940.01.01-native-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.01.01-native-diver.pdf,1940.01.01,1940.01.01 +4767,Ca. 1940,Boating,SLOVENIA,Adriatic Sea,Koper,Boating,A. De Maddalena; M. Zuffa (pers. Comm.),,18,"No inury to occupants, shark struck boat",False, White shark,A. De Maddalena; M. Zuffa (pers. Comm.),1940.00.00.f-boat-Slovenia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.f-boat-Slovenia.pdf,1940.00.00.f,1940.00.00.f +4768,1940,Unprovoked,NEW GUINEA,Bwagaoia,"Bagalina, North coast Misima Island",Boating,small girl,F,18,fatal,True, White shark,"A. Bleakley; A. M. Rapson, p.148",1940.00.00.e-small-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.e-small-girl.pdf,1940.00.00.e,1940.00.00.e +4769,1940,Unprovoked,PAPUA NEW GUINEA,Western Papuan Gulf,Kerema ,male,a native,,18,Hand bitten,False, White shark,"Papuan Villager, 11/1940",1940.00.00.d-Kerema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.d-Kerema.pdf,1940.00.00.d,1940.00.00.d +4770,1940,Invalid,SOUTH AFRICA,Eastern Cape Province,Kidd's Beach,Swimming,"D. Davies, p. 102",,18,No details,False,Questionable incident,"D. Davies, p. 102",1940.00.00.c-KiddsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.c-KiddsBeach.pdf,1940.00.00.c,1940.00.00.c +4771,1940,Invalid,SOUTH AFRICA,KwaZulu-Natal,Winkelspruit,Swimming,Indian female,F,18,fatal,True,Questionable incident,"V.M. Coppleson (1958), p.247; SAF Case #161. Unable to authenticate this incident in local records or press reports.",1940.00.00.b-IndianFemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.b-IndianFemale.pdf,1940.00.00.b,1940.00.00.b +4772,1940,Invalid,SOUTH AFRICA,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Standing in water with child in her arms,female,F,18,Leg bitten,False,Questionable incident,"E. Skaife, V. M. Coppleson (1958), p.247; M. Levine, GSAF",1940.00.00.a-Woman-Kowie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1940.00.00.a-Woman-Kowie.pdf,1940.00.00.a,1940.00.00.a +4773,28-Dec-1939,Invalid,AUSTRALIA,New South Wales,"Cabramatta Creek, George’s River ",Swimming,Percy Carroll,M,40,Abrasion above knee ,False,"Questionable incident, said to involve a 6' shark","V.M. Coppleson (1958), pp.44 & 234; SAF Case #39",1939.12.28-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.28-Carroll.pdf,1939.12.28,1939.12.28 +4774,14-Dec-1939,Unprovoked,AUSTRALIA,Queensland,"Rubbish Dump Creek, Mackay",Swimming ,Frank Gurran,M,20,fatal,True,2.6 m [8.5'] shark landed 2 hours later,"Sydney Morning Herald, 12/15/1939; V.M. Coppleson (1958), p.238 ",1939.12.14-Gurran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.12.14-Gurran.pdf,1939.12.14,1939.12.14 +4775,23-Nov-1939,Boating,AUSTRALIA,New South Wales,Wollongong,Swimming ,boat of Thomas Baker,,20,No injury,False,"Blue pointer, 16'","Northern Miner, 11/25/1939",1939.11.23-Wollongong-3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.23-Wollongong-3.pdf,1939.11.23,1939.11.23 +4776,11-Nov-1939,Provoked,AUSTRALIA,New South Wales,Maroubra,Swimming ,boat,,20,Boat bitten by gaffed shark PROVOKED INCIDENT,False,whaler shark,"G.P. Whitley, p.264",1939.11.11-boat-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.11-boat-Maroubra.pdf,1939.11.11,1939.11.11 +4777,09-Nov-1939,Boating,AUSTRALIA,New South Wales,Wollongong,Swimming ,another boat,,20,No details,UNKNOWN,whaler shark,"G.P. Whitley, p.264",1939.11.09-boat-2-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.09-boat-2-Wollongong.pdf,1939.11.09,1939.11.09 +4778,06-Nov-1939,Boating,AUSTRALIA,New South Wales,Wollongong,Swimming ,boat,,20,No details,UNKNOWN,whaler shark,"G.P. Whitley, p.264",1939.11.06-boat-1-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.06-boat-1-Wollongong.pdf,1939.11.06,1939.11.06 +4779,Reported 02-Nov-1939,Unprovoked,SAMOA,unknown,unknown,Fishing,a Samoan boy,M,20,fatal,True,whaler shark,"Canberra Times, 11/2/1939",1939.11.02.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.11.02.R-Samoa.pdf,1939.11.02.R,1939.11.02.R +4780,Reported 25-Oct-1939,Unprovoked,AUSTRALIA,Queensland,Near Restoration Rock off Portland Roads ,"Free diving for trochus shell, swimming to dinghy",Small Cobbe,M,27,"Both thighs were lacerated, recovered at Thursday Island hospital",False,"Tiger shark, 4.3 m [14'], 3 tooth fragments retrieved from his wounds","G.P. Whitley, p. 20; V.M. Coppleson (1958), p. 99",1939.10.25.R-Cobbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.25.R-Cobbe.pdf,1939.10.25.R,1939.10.25.R +4781,04-Oct-1939,Unprovoked,USA,Hawaii,"Kane'ohe Bay, Mokapu, O'ahu",Spearfishing & had just speared a ulua,James Akina,M,27,Hand bitten,False,1.5 m [5'] shark,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; V.M. Coppleson (1962), p.253",1939.10.04-Akina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.10.04-Akina.pdf,1939.10.04,1939.10.04 +4782,Reported 27-Sep-1939,Unprovoked,AUSTRALIA,Torres Strait ,Near Mabuiag Island,Pearl diving,Sammy Mira,M,27,"Leg severely bitten, surgically amputated",False,Tiger shark,"Cairns Post, 9/27/1939",1939.09.27-Mira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.09.27-Mira.pdf,1939.09.27.R,1939.09.27.R +4783,01-Aug-1939,Provoked,USA,California,"Off San Pedro, Los Angeles County",Fishing,John Ray,M,33,Harpooned shark bit his arm PROVOKED INCIDENT,False,Tiger shark,"L.A. Times, 8/11/1939",1939.08.01-Ray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.08.01-Ray.pdf,1939.08.01,1939.08.01 +4784,18-Jul-1939,Sea Disaster,PACIFIC OCEAN,unknown,unknown,Japanese freighter Bokuyo Maru burned & sank,child,,3,fatal,True,Tiger shark,"Syracuse Herald, 7/30/1939",1939.07.18-Child-B-Maru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.18-Child-B-Maru.pdf,1939.07.18,1939.07.18 +4785,16-Jul-1939,Provoked,BAHAMAS,Andros Islands,Blue Hole,"Dress diving, filming shark & pulling it through the water for a motion picture scene",E.F. MacEwan,M,38,Minor injury to shoulder & back PROVOKED INCIDENT,False,"Nurse shark, 2.1 m [7']","Evening Sun (Baltimore), 7/31/1939; E.R.F. Johnson",1939.07.16-MacEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.16-MacEwan.pdf,1939.07.16,1939.07.16 +4786,14-Jul-1939,Provoked,USA,Texas,"West Bay, 19 miles from Galveston",Seine netting,John Bolling,M,38,Leg bitten by snared shark PROVOKED INCIDENT,False,18' shark,"Galveston Daily News, 7/20/1939, p.4",1939.07.14-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.07.14-Bolling.pdf,1939.07.14,1939.07.14 +4787,03-May-1939,Unprovoked,USA,Virginia,"At sea, several hundred miles south east of Cape Henry, Virginia",Washed off freighter Huncliff by a freak wave,John Heagan,M,38,fatal,True,18' shark,"L.A. Times, 5/7/1939; NY Times, 5/8/1939, p.18, col.1; V.M. Coppleson , p.253",1939.05.03-Heagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.05.03-Heagan.pdf,1939.05.03,1939.05.03 +4788,12-Apr-1939,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Bulolol,Dived for a coin,child,M,9,fatal,True,18' shark,"Cairns Post, 4/12/1939",1939.04.12.R-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.04.12.R-Child.pdf,1939.04.12.R,1939.04.12.R +4789,24-Mar-1939,Unprovoked,PAPUA NEW GUINEA,Central Province,Port Moresby,Dived for a coin,Raho-Heni,M,9,fatal,True,"""a large shark""","The Papuan Villager, March 1939; G.P. Whitley, p.21",1939.03.24-Raho-Heni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.03.24-Raho-Heni.pdf,1939.03.24,1939.03.24 +4790,26-Feb-1939,Unprovoked,INDIA,Tamil Nadu, Chennai (formerly Madras),Bathing/Swimming,Harold Dickinson,M,9,fatal,True,"""a large shark""",S. Munusamy,1939.02.26.b-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26.b-Dickinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26.b-Dickinson.pdf,1939.02.26.b,1939.02.26.b +4791,26-Feb-1939,Provoked,NEW ZEALAND,North Island,Matakana River Mouth,Fishing,T. S. Ramsbottom,M,9,Lacerations to left hand from hooked shark PROVOKED INCIDENT,False,7' shark,"Auckland Star, 2/28/1939",1939.02.26.a-Ramsbottom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26.a-Ramsbottom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.02.26.a-Ramsbottom.pdf,1939.02.26.a,1939.02.26.a +4792,12-Jan-1939,Unprovoked,AUSTRALIA,New South Wales,Clarence River,Scooping prawns,Earl Yager & Riley McLachlan,M,Both 11,No injury,False,7' shark,"G.P. Whitley, p.264",1939.01.12.R-ClarenceRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.01.12.R-ClarenceRiver.pdf,1939.01.12,1939.01.12 +4793,Woirld War II,Sea Disaster,SRI LANKA,unknown,unknown,She was on a ship that was torpedoes & was in the water awaiting rescue,A W.R.E.N.,F,Both 11,Leg severely bitten,False,7' shark,"V.M. Coppleson (1962), p.258",1939.00.00.e-WREN.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.e-WREN.pdf,1939.00.00.e,1939.00.00.e +4794,Ca. 1939,Boating,BAHAMAS,Andros Islands,Middle Bight,Fishing,"12' skiff, occupant: E.R.F. Johnson",,Both 11,"No injury to occupant, shark rammed bow of boat",False,Tiger shark,E.R.F. Johnson,1939.00.00.d-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.d-skiff.pdf,1939.00.00.d,1939.00.00.d +4795,1939,Unprovoked,VENEZUELA,Carabobo,"El Falito, near Puerto Cabello",Bathing,male,M,Both 11,fatal,True,Tiger shark,H.E. Iverson,1939.00.00.c-Haberdasher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.c-Haberdasher.pdf,1939.00.00.c,1939.00.00.c +4796,1939,Unprovoked,CURACAO,Ascension Bay,Ascension Bay,Diving,Hans Hass,M,Both 11,"No injury, left hip bumped by shark",False,Tiger shark,"H. Hass in Diving To Adventure, p.169",1939.00.00.b-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.b-Hass.pdf,1939.00.00.b,1939.00.00.b +4797,1939,Unprovoked,PAPUA NEW GUINEA,"Abau Sub District, Central Province",Aroma Passage,Swimming to anchored boat,a male from Garvakala,M,Both 11,fatal,True,Tiger shark,"A. Bleakley; A. M. Rapson, p.148",1939.00.00.a-Garvakala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1939.00.00.a-Garvakala.pdf,1939.00.00.a,1939.00.00.a +4798,27-Dec-1938,Unprovoked,AUSTRALIA,New South Wales,"North Beach, Belligen River",Swimming,Daniel Graham,M,19,fatal,True,Tiger shark,"G.P. Whitley, p.264",1938.12.27-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.12.27-Graham.pdf,1938.12.27,1938.12.27 +4799,05-Oct-1938,Provoked,AUSTRALIA,Queensland,Between Wynnum & St. Helena Island,Fishing,Jack Lopez,M,18,Laceration to left foot & ankle by netted shark PROVOKED INCIDENT,False,"Tiger shark, 6'","Cairns Post, 10/6/1938",1938.10.05-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.10.05-Lopez.pdf,1938.10.05,1938.10.05 +4800,29-Aug-1938,Unprovoked,CHINA,North China,"Outer harbor, Hong Kong",Swimming alongside warship Tsingt-ao,"Ulrick Baker or William M. Baker, a sailor from H.M.S. Folkestone",M,18,fatal,True,"Tiger shark, 6'","New York Times (William Baker), 8/30/1938; [SAF Case #934]; V.M. Coppleson (1958), p.257; A. MacCormick, p.134",1938.08.29-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.29-Baker.pdf,1938.08.29,1938.08.29 +4801,18-Aug-1938,Provoked,USA,California,"Near Encino, Los Angeles County",Fishing,Warren William,M,18,Lacerations to hand by hooked shark PROVOKED INCIDENT,False,"Tiger shark, 6'","Washington Post. 8/19/1938, p.24",1938.08.18-WarrenWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.08.18-WarrenWilliams.pdf,1938.08.18,1938.08.18 +4802,18-Jul-1938,Unprovoked,USA,South Carolina,Charleston,Swimming,Maynard Tanner,M,18,Foot & ankle lacerated,False,"Tiger shark, 6'","Kingsport Times, 7/18/1938",1938.07.18-MaynardTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.18-MaynardTanner.pdf,1938.07.18,1938.07.18 +4803,Reported 17-Jul-1938,Provoked,TURKEY,unknown,unknown,Fishing,Ahmed,M,18,Injured by harpooned shark PROVOKED INCIDENT,False,"Tiger shark, 6'","C. Moore, GSAF",1938.07.17.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17.R-Turkey.pdf,1938.07.17.R,1938.07.17.R +4804,17-Jul-1938,Provoked,USA,California,"Dana Point, Orange County","Fishing, removing gaff from shark's mouth","Harry Griffet, passenger on fishing boat Flyer",M,27,Leg bitten by gaffed shark PROVOKED INCIDENT,False,"Tiger shark, 6'","L.A. Times, 7/18/1938 ",1938.07.17-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.17-Griffet.pdf,1938.07.17,1938.07.17 +4805,12-Jul-1938,Unprovoked,AUSTRALIA,Torres Strait,Off Bathurst Island,"Hardhat diving from Japanese pearling lugger, Reiyo Maru",Okada,M,25,fatal,True,"Tiger shark, 6'","G.P. Whitley, p.264; V.M. Coppleson (1958), p.244; Sydney Morning Herald, 7/12/1938",1938.07.12-Okada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.07.12-Okada.pdf,1938.07.12,1938.07.12 +4806,17-Jun-1938,Unprovoked,NICARAGUA,Lower San Juan River,Lower San Juan River,"The schooner Elizabeth, bound from Bluefields, Nicaragua to the river port of San Carlos foundered",Elena Hodgson & Isaac Ollis,,25,fatal,True,Thought to involve bull sharks,"NY Times; L. Schultz & M. Malin, p.558",1938.06.17-Hodgson_Ollis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.17-Hodgson_Ollis.pdf,1938.06.17,1938.06.17 +4807,08-Jun-1938,Unprovoked,AUSTRALIA,New South Wales,Manly,Hardhat diving,Charles Edwards,M,25,"No injury, the shark knocked him off his feet",False,6' shark,"The Canberra Times, 6/10/1938",1938.06.08-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.06.08-Edwards.pdf,1938.06.08,1938.06.08 +4808,26-May-1938,Unprovoked,COSTA RICA,Nicoya Peninsula,Nicoya Peninsula,Fishing,Laureano Villareal,M,25,fatal,True,6' shark,"V.M. Coppleson (1958), p.259 ",1938.05.26.R-Villareal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.26.R-Villareal.pdf,1938.05.26,1938.05.26 +4809,15-May-1938,Unprovoked,IRAQ,Basrah City,"Ashar Canal, where people wash clothes & kitchen pans","Swimming, naked",male,M,9 or 10,"Arm severed, but survived. Note: Some weeks later he was swimming at the same spot when a shark severed his right foot.",False,Bull shark,B.W. Coad & L.A.J. Al-Hassan,1938.05.15-Basrah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.15-Basrah.pdf,1938.05.15,1938.05.15 +4810,Reported 02-May-1938,Unprovoked,INDIA,West Bengal,Hooghley River near Budge-Budge,Bathing,"The Times (London), 5/2/1938, p.15",,9 or 10,fatal,True,Bull shark,"The Times (London), 5/2/1938, p.15",1938.05.02.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.05.02.R-India.pdf,1938.05.02.R,1938.05.02.R +4811,Reported 21-Mar-1938,Unprovoked,FIJI,Viti Levu,Singatoka River,Wading,male,M,9 or 10,unknown,False,Bull shark,"Time Magazine, 3/21/1938",1938.03.21.R-FijianMethodist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.21.R-FijianMethodist.pdf,1938.03.21.R,1938.03.21.R +4812,08-Mar-1938,Unprovoked,AUSTRALIA,Northern Territory,Liverpool River,Canoe capsized by shark,aboriginal male,M,9 or 10,"Leg severed, but survived",False,Bull shark,"V.M. Coppleson (1958) (in text); Sydney Morning Herald, 3/16/1938",1938.03.08-Liverpool-River.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.03.08-Liverpool-River.pdf,1938.03.08,1938.03.08 +4813,21-Jan-1938,Provoked,AUSTRALIA,New South Wales,Tweed Heads,Fishing,Robert Corowa,M,9 or 10,Thumb bitten by landed shark PROVOKED INCIDENT,False," Tiger shark, 3'","Courier-Mail, 1/22/1938; Sydney Morning Herald 1/26/1938; Whitley, p.264",1938.01.21-Corowa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.21-Corowa.pdf,1938.01.21,1938.01.21 +4814,18-Jan-1938,Provoked,SOUTH AFRICA,KwaZulu-Natal,"Vetch’s Pier, Durban","Watching seine netters with friends, one of whom picked up a netted shark",George Parkin,M,13,Leg bitten PROVOKED INCIDENT,False," Tiger shark, 3'","M. Levine, GSAF",1938.01.18-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.18-Parkin.pdf,1938.01.18,1938.01.18 +4815,14-Jan-1938,Invalid,AUSTRALIA,New South Wales,"Lady Martin’s Beach, Sydney Harbor",Diving off jetty,Alan Murray,M,24,Superficial lacerations on feet & toes,False,Questionable incident,"The Canberra Times, 1/15/1938",1938.01.14-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.14-Murray.pdf,1938.01.14,1938.01.14 +4816,02-Jan-1938,Unprovoked,AUSTRALIA,New South Wales,Cronulla,Surf skiing,Ernest. S. Baker,M,24,"No injury, ski bumped & he was thrown in the water. Ski had indentations",False,Questionable incident,"Sydney Morning Herald, 1/3/1938; J. Green, p.33; V.M. Coppleson (1958), p.42 NOTE: Coppleson gives date as January 1937",1938.01.02-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.01.02-Baker.pdf,1938.01.02,1938.01.02 +4817,Reported 1938,Unprovoked,EGYPT,Mersa Matruh,Mersa Matruh,Sponge diving,males,M,24,fatal,True,Questionable incident,"C. Moore, GSAF",1938.00.00.e.R-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.e.R-Egypt.pdf,1938.00.00.e.R,1938.00.00.e.R +4818,1938,Unprovoked,TRINIDAD & TOBAGO,Trinidad,"Manzanilla Bay, St. Andrew County",Body surfing,Donald Fraser Huggins,M,50,Left hand and arm bitten,False,"""grey-colored shark""","E. Pace, FSAF",1938.00.00.d-Huggins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.d-Huggins.pdf,1938.00.00.d,1938.00.00.d +4819,1938,Provoked,USA,North Carolina,On one of the sounds near Wilmington,Fishing,"rowboat, occupant: Joe Whitted, Christopher Quevedo & 2 Willard Brothers",M,50,"No injury, boat towed by harpooned shark, PROVOKED INCIDENT",False,"""grey-colored shark""","C. Creswell, GSAF; J. Hair, p.27",1938.00.00.c-Willards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.c-Willards.pdf,1938.00.00.c,1938.00.00.c +4820,1938,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Diving,Sammy,M,17,Leg severed above knee,False,"""grey-colored shark""","V.M. Coppleson (1958), p.245",1938.00.00.b-Sammy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.b-Sammy.pdf,1938.00.00.b,1938.00.00.b +4821,1938,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Bilanhlolo River Mouth, Ramsgate",Swimming,black male,M,17,"""Mauled""",False,"""grey-colored shark""",H. Greenwood,1938.00.00.a-blackmale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1938.00.00.a-blackmale.pdf,1938.00.00.a,1938.00.00.a +4822,13-Nov-1937,Sea Disaster,USA,North Carolina,Off Cape Hatteraa,"Tzenny Chandris, a Greek freighter laden with scrap iron, foundered in heavy weather",3 crewmen,M,17,fatal,True,"""grey-colored shark""","Stevens Point Journal, 11/15/1937; TIME, 11/22/1937; Life Magazine, 11/29/1937",1937.11.13-Tzenny-Chandris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.13-Tzenny-Chandris.pdf,1937.11.13,1937.11.13 +4823,11-Nov-1937,Unprovoked,AUSTRALIA,Torres Strait ,Ota Reef,Diving for trochus,Nelan Kris,M,17,fatal,True,12' shark,"J. Green, p.33; V.M. Coppleson (1958), p.244",1937.11.11-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.11-Kris.pdf,1937.11.11,1937.11.11 +4824,Reported 06-Nov-1937,Sea Disaster,SOLOMON ISLANDS,unknown,unknown,"Two canoes with 14 aboard blown to sea in a storm. While adrift for 3 week, one person fell overboard and was killed by a shark","The Argus, 11/6/1937",M,17,fatal,True,12' shark,"The Argus, 11/6/1937",1937.11.06.R-Solomon-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.11.06.R-Solomon-Islands.pdf,1937.11.06.R,1937.11.06.R +4825,27-Oct-1937,Unprovoked,AUSTRALIA,Queensland ,"Kirra Beach, Coolangatta",Swimming ,Jack Brinkley,M,25,fatal,True,Tiger shark,"J. Green; V.M. Coppleson, pp.51, 81-84 & 234; A. Sharpe, pp.94-9 6; H. Edwards, pp.114-115",1937.10.27.b-Brinkley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.b-Brinkley.pdf,1937.10.27.b,1937.10.27.b +4826,27-Oct-1937,Unprovoked,AUSTRALIA,Queensland,"Kirra Beach, Coolangatta",Swimming ,Norman Girvan,M,18,fatal,True,"Tiger shark, 3.6 m [11'9""], 850-kg [1874-lb] female, contained Girvan's remains ","V.M. Coppleson, pp.51, 81-84 & 234; A. Sharpe, pp.94-96; H. Edwards, pp.114-115 ",1937.10.27.a-Girvanpub.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.27.a-Girvanpub.pdf,1937.10.27.a,1937.10.27.a +4827,24-Oct-1937,Unprovoked,AUSTRALIA,New South Wales,Byron Bay ,Swimming near jetty,Thomas McDonald,M,16,Tooth imprints on torso,False,2.4 m [8'] shark,"The Age, 10/25/1937; V.M. Coppleson (1958), p.234",1937.10.24.b-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.b-McDonald.pdf,1937.10.24.c,1937.10.24.c +4828,24-Oct-1937,Unprovoked,AUSTRALIA,New South Wales,Byron Bay ,Surf skiing,Glen Denning,M,16,"No injury, repulsed shark",False,2.6 m [8.5'] shark,"The Age, 10/25/1937; V.M. Coppleson (1958), p.234",1937.10.24.a-Denning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.10.24.a-Denning.pdf,1937.10.24.a,1937.10.24.a +4829,Reported 26-Sep-t937,Provoked,CROATIA, Split-Dalmatia County,Bisk,Fishing,2 males,M,16,Injured by shark they were trying to catch PROVOKED INCIDENT,False,2.6 m [8.5'] shark,"C. Moore, GSAF",1937.09.16.R-Omis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.16.R-Omis.pdf,1937.09.26.R,1937.09.26.R +4830,12-Sep-1937,Boating,SCOTLAND,Argyllshire,Arran,Pleasure boating,Clyde steamer Glen Sannox,,16,"No injury to occupants, two 5-foot observation windows shattered",False,Basking shark,Daily Mail (undated clipping); A Buttigieg ,1937.09.12-GlenSannox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.12-GlenSannox.pdf,1937.09.12,1937.09.12 +4831,11-Sep-1937,Boating,SCOTLAND,Arran,Fallen Rocks,Fishing,"boat: Lady Charlotte, occupants: C. McSporran & his crew",,16,"No injury to occupants, propeller shaft damaged",False,Basking shark,"Times (London), 9/13/1937; C. Creswell, GSAF",1937.09.11-LadyCharlotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.11-LadyCharlotte.pdf,1937.09.11,1937.09.11 +4832,01-Sep-1937,Unprovoked,SCOTLAND,Argyll,"Carradale Bay, Kintyre Peninsula",Rowing,"Captain Angus Brown, his son & brother",M,16,3 people drowned when the boat was capsized by the shark,False,Basking shark,"Times (London), 9/2/1937; Fairfax, pp. 66-67",1937.09.01-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.09.01-Scotland.pdf,1937.09.01,1937.09.01 +4833,31-Aug-1937,Unprovoked,AUSTRALIA,Torres Strait,"Mabuiag Island, between New Guinea & Australia","Diving from the lugger San, operated by the Protector of the Aborigines",Iona Asai,M,38,"Head, neck & shoulder bitten (In 1918, he was also bitten by a shark off Cairns)",False,"Tiger shark, 9' to 10' ","The Maitland Daily Mercury, 8/31/1937",1937.08.31-IonaAsai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.31-IonaAsai.pdf,1937.08.31,1937.08.31 +4834,16-Aug-1937,Invalid,TURKEY,Istanbul,Istanbul,Swimming,male,M,38,"No injury, no attack",False,Invalid,C. Moore. GSAF,1937.08.16-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.16-Istanbul.pdf,1937.08.16,1937.08.16 +4835,02-Aug-1937,Unprovoked,PANAMA,Colon Province,Limon Bay,Swimming,Jorge Fernandez,M,21,fatal,True,Invalid,"The Gleaner, 8/12/1937",1937.08.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.08.02-Fernandez.pdf,1937.08.02,1937.08.02 +4836,Reported 16-Jul-1937,Unprovoked,AUSTRALIA,Northern Territory,Elcho Island,Pearl diving,A Japanese hard hat diver,M,21,fatal,True,Invalid,"Mansfield News-Journal, 7/16/1937, p.11",1937.07.16.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.16.R-JapaneseDiver.pdf,1937.07.16.R,1937.07.16.R +4837,07-Jul-1937,Invalid,ITALY,Liguria,Borgeo Verezzi,Pearl diving,row boat: 2 occupants,,21,No injury,False,Invalid,C. Moore. GSAF,1937.07.06-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.07.06-Italy.pdf,1937.07.06,1937.07.06 +4838,Reported 28-Jun-1937,Unprovoked,GREECE,Salonika?,Salonika?,Pearl diving,A. Arvanitakis ,,21,fatal,True,Invalid,C. Moore. GSAF,1937.06.28.R-Salonika.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.28.R-Salonika.pdf,1937.06.28.R,1937.06.28.R +4839,15-Jun-1937,Provoked,AUSTRALIA,New South Wales,"Wallamba River, near entrance to Wallis Lake","Fishing from launch, fell into net with shark",David Emmerton,M,21,Bitten by netted shark PROVOKED INCIDENT,False,"Whaler shark, 4 m [13'] ","Sydney Morning Herald, 6/19/1937; V.M. Coppleson (1958) (in text); SAF Cases #549 & 550",1937.06.15.b-Emmerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.b-Emmerton.pdf,1937.06.15.b,1937.06.15.b +4840, 15-Jun-1937,Unprovoked,USA,Texas,Galveston,Swimming,"Hal A. Thompson, Jr.",M,14,fatal,True,"Whaler shark, 4 m [13'] ","Amarillo Globe, 6/16/1937 ",1937.06.15.a-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.06.15.a-Thompson.pdf,1937.06.15,1937.06.15 +4841,30-May-1937,Provoked,USA,Texas,Galveston,Fishing,William Siskalo,M,14,Leg nipped by hooked shark PROVOKED INCIDENT,False,4' shark,"Galveston Daily News, 6/1/1937",1937.05.30-Siskalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.30-Siskalo.pdf,1937.05.30,1937.05.30 +4842,15-May-1937,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville","Refused permission to cross on the ferry, he was swimming across the river",William Tennant,M,33,fatal,True,2 days later a 600-lb shark was caught 100 yards from the site,"V.M. Coppleson (1958), pp.90 & 238",1937.05.15-Tennant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.05.15-Tennant.pdf,1937.05.15,1937.05.15 +4843,26-Mar-1937,Invalid,AUSTRALIA,New South Wales,South Cronulla,Bathing,Austin Shaw,M,16,His body was recovered 2 days later but shark involvement prior to death was not confirmed,False,Shark involvement prior to death was not confirmed,"Canberra Times, 3/29/1937, p.1",1937.03.26-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.26-Shaw.pdf,1937.03.26,1937.03.26 +4844,09-Mar-1937,Invalid,AUSTRALIA,Victoria,Port Melbourne,Swimming,Chief Petty Officer A. E. King,M,43,Shark involvement prior to death was not confirmed,False,Shark involvement prior to death was not confirmed,"Canberra Times, 3/10/1937;Sydney Morning Herald, 3/10/1937; Whitley, p.264",1937.03.09-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.03.09-King.pdf,1937.03.09,1937.03.09 +4845,13-Feb-1937,Unprovoked,AUSTRALIA,New South Wales,"Bar Beach, Newcastle",Swimming,John Welsh,M,32,fatal,True,White shark,"V.M. Coppleson (1958), pp.77 & 234; A. Sharpe, p.84; J.West, ASAF",1937.02.13-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.13-Welsh.pdf,1937.02.13,1937.02.13 +4846,11-Feb-1937,Unprovoked,AUSTRALIA,New South Wales,Kempsey,Swimming ashore after launch capsized,Mr. Redman,M,32,Foot bitten,False,White shark,"Canberra Times, 2/12/1937",1937.02.11-Redman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.11-Redman.pdf,1937.02.11,1937.02.11 +4847,04-Feb-1937,Boating,AUSTRALIA,New South Wales, Botany Bay ,Fishing,"a launch, occupants- Albert Cree & John Blacksall",,32,"No injury to occupants, launch holed",False,White shark,"Canberra Times, 2/5/1937",1937.02.04-BotanyBay-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.04-BotanyBay-launch.pdf,1937.02.04,1937.02.04 +4848,03-Feb-1937,Provoked,AUSTRALIA,Queensland,Moreton Island,Fishing,Edgar Woodley,M,20,Left shoulder bitten by netted shark PROVOKED INCIDENT,False,"3' ""blue nosed"" shark","G.P. Whitley, p.264",1937.02.03-Woodley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.03-Woodley.pdf,1937.02.03,1937.02.03 +4849,1937,Invalid,AUSTRALIA,South Australia,Port Germein,12 of the Penang's crew were returning to the ship when their 12' dinghy capsized,"male, one of the crew of the Penang",M,20,"15' shark seen with the man's body in its mouth, but shark involvement prior to death was not confirmed",False,Shark involvement prior to death was not confirmed,"West Australian, 2/8/1937; G.P. Whitley",1937.02.02-Penang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.02.02-Penang.pdf,1937.02.02,1937.02.02 +4850,27-Jan-1937,Provoked,AUSTRALIA,New South Wales,"Lake Conjola, near Milton",Holding shark's tail ,Raymond Hemsworth,M,18,Bitten on forearm PROVOKED INCIDENT,False,"Grey nurse shark, 8'","Northern Standard, 1/29/1937",1937.01.27-Hemsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.01.27-Hemsworth.pdf,1937.01.27,1937.01.27 +4851,1937,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Holding shark's tail ,"O'Leary, a Torres Strait islander",M,18,Survived,False,"Grey nurse shark, 8'","Rpt. Dept. Harb. Mar. (Qld), 1937, p.13; G.P. Whitley, p.264",1937.00.00-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1937.00.00-O'Leary.pdf,1937.00.00,1937.00.00 +4852,30-Dec-1936,Unprovoked,USA,Hawaii,"Honokohau, Maui","Diving, attempting to retrieve body of drowning victim wedged between rocks",John Kekuhi,M,18,Thigh lacerated,False,6 m [20'] shark,"J. Borg, p.71; L. Taylor (1993), pp.98-99",1936.12.30-Kekuhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.30-Kekuhi.pdf,1936.12.30,1936.12.30 +4853,19-Dec-1936,Boating,AUSTRALIA,Queensland,Brisbane River,Sculling,"Racing scull, occupant: C.E. Slaughter, Queensland sculling champion",,18,"No injury to occupant. Shark damaged scull, tooth fragments recovered",False,3 m [10'] shark,"G.P. Whitley, p.264; V.M. Coppleson (1958), p. 187",1936.12.19-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.19-Slaughter.pdf,1936.12.19,1936.12.19 +4854,15-Dec-1936,Provoked,AUSTRALIA,New South Wales,Newcastle Harbor,Fishing for the shark that killed George Lundberg,"skiff, occupants: J. & A. Ayerst",,18,Hooked shark bit rudder PROVOKED INCIDENT,False,3 m [10'] shark,"V.M. Coppleson (1958), pp.182-183",1936.12.15-boat-Ayerst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.15-boat-Ayerst.pdf,1936.12.15,1936.12.15 +4855,12-Dec-1936,Unprovoked,AUSTRALIA,New South Wales,"Throsby Creek, Newcastle",Swimming,George Lundberg,M,15,fatal,True,3 m [10'] shark,"V.M. Coppleson (1958), p.234",1936.12.12-Lundberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.12-Lundberg.pdf,1936.12.12,1936.12.12 +4856,01-Dec-1936,Boating,AUSTRALIA,Victoria,Mordialloc,Fishing,"Charles Swan, a returned soldier",M,50,fatal,True,Thought to involve a 12' white shark,"The Age, 12/4/1936",1936.12.01-Swan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.12.01-Swan.pdf,1936.12.01,1936.12.01 +4857,27-Nov-1936,Provoked,AUSTRALIA,Torres Strait,Near Thursday Island,Spearfishing ,Frank McDonnell,M,50,Speared shark bit his hand PROVOKED INCIDENT,False,0.9 m [3'] shark,"Whitley, p.264; V.M. Coppleson (1958), p.244",1936.11.27-McDonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.11.27-McDonnell.pdf,1936.11.27,1936.11.27 +4858,Reported 11-Sep-1936,,VIETNAM,Saigon,Saigon,Wreck of a sampam,8 crew,M,50,fatal,True,0.9 m [3'] shark,"Lansing State Journal, 9/11/1936",1936.09.11-Saigon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.11-Saigon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.11-Saigon.pdf,1936.09.11.R,1936.09.11.R +4859,04-Sep-1936,Unprovoked,USA,Hawaii,"Lahaina, Maui",Swimming,young male,M,50,Leg lacerated,False,0.9 m [3'] shark,"J. Borg, p.71; L. Taylor (1993), pp.96-97",1936.09.04-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.09.04-Maui.pdf,1936.09.04,1936.09.04 +4860,24-Aug-1936,Unprovoked,AUSTRALIA,Torres Strait,Near Mabuiag Island,"Trochus diving, but floating on surface","Tala Lui, a Torres Strait islander",M,50,Flexed right leg bitten,False,Large tiger shark seen in the vicinity the following morning,"G.P. Whitley, p.264; V.M. Coppleson (1958), p.244",1936.08.24-TalaLui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.24-TalaLui.pdf,1936.08.24,1936.08.24 +4861,13-Aug-1936,Unprovoked,ICELAND,Fishing Grounds,Fishing Grounds,Swept overboard,John Bond & Noel Kinch (rescuer),M,50,"Bond's foot was injured, Kinch's back was injured",False,Large tiger shark seen in the vicinity the following morning,"The Guardian, 8/27/1936",1936.08.13-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.13-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.13-Iceland.pdf,1936.08.13,1936.08.13 +4862,11-Aug-1936,Provoked,CANADA,Newfoundland,Georges Bank,Fishing for cod,"a dory of the schooner Raymonde, occupants: Albion Muise, Peter Dousette & Jack Shannon",,50,"No injury to occupants, hooked shark leapt onboard boat PROVOKED INCIDENT",False,"Shovelnose shark, 6 m [20'] ","NY Times, 8/13/1936, p.25, col.6",1936.08.11-schoonerRaymonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.11-schoonerRaymonde.pdf,1936.08.11,1936.08.11 +4863,Reported 04-Aug-1936,Unprovoked,AUSTRALIA,Torres Strait,Bathurst Island,Pearl diving,Japanese diver,M,50,Torso bitten ,False,"Shovelnose shark, 6 m [20'] ","Nortnern Standard, 8/4/1936",1936.08.04.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.04.R-PearlDiver.pdf,1936.08.04,1936.08.04 +4864,Aug-1936,Boating,USA,North Carolina,"Pamlico Sound off Frisco, Dare County",Fishing,"rowboat, occupants: James Mitchell-Hedges & Raymond McHenry",M,13,Shark rammed boat; no injury to occupants,False,"Shovelnose shark, 6 m [20'] ","C. Creswell, GSAF",1936.08.00-PamlicoSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.08.00-PamlicoSound.pdf,1936.08.00,1936.08.00 +4865,25-Jul-1936,Unprovoked,USA,Massachusetts,"Hollywood Beach, just above Mattapoisett Harbor, Buzzards Bay",Swimming crawl stroke,"Joseph Troy, Jr",M,16,fatal,True,White shark (identified by Dr. Hugh Smith) ,"B. R. Tilden, M.D.; NY Times, 7/26/1936, p.2; E.W. Gudger (1950); V.M. Coppleson (1958), pp. 150 & 253; H.D. Baldridge, p. 35",1936.07.25-Troy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.25-Troy.pdf,1936.07.25,1936.07.25 +4866,12-Jul-1936,Boating,USA,New Jersey,"Long Branch, Monmouth County (offshore)",Fishing for bluefish,"22' boat, occupants: Saul White & Charles Dillione",,16,"No injury to occupants, shark leapt onboard boat",False,"Blue shark, 8' [2.4 m], 500-lb ","NY Times, 6/13/1936 ",1936.07.12-SaulWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.12-SaulWhite.pdf,1936.07.12,1936.07.12 +4867,07-Jul-1936,Unprovoked,AUSTRALIA,Torres Strait,Off Nepean Island,Diving,aboriginal male,M,16,Survived? Admitted to Thursday Island Hospital,False,"Blue shark, 8' [2.4 m], 500-lb ","V.M. Coppleson (1958), p.244",1936.07.07-aboriginal-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.07-aboriginal-diver.pdf,1936.07.07,1936.07.07 +4868,Jul-1936,Boating,SOUTH AFRICA,Western Cape Province,Cape Point,"Fishing, catching snoek, Thyrsites atun",10m boat Lucky Jim,,16,"Shark leapt onboard & into fishwell, tossing a crew member, Pepino, in the sea",False,"Blue shark, 8' [2.4 m], 500-lb ","T. Wallett, p.25",1936.07.00-LuckyJim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.07.00-LuckyJim.pdf,1936.07.00,1936.07.00 +4869,26-Jun-1936,Unprovoked,AUSTRALIA,Torres Strait,Nepean Island,"Diving for trochus , but swimming on surface","Willie, an aboriginal",M,16,fatal,True,"Tiger shark, 2.4 m [8']","Sydney Morning Herald, 7/7/1936; V.M. Coppleson (1958), p.244",1936.06.26-Willie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.26-Willie.pdf,1936.06.26,1936.06.26 +4870,06-Jun-1936,Unprovoked,USA,Florida,"Boca Ciega Bay, Pinellas County",Swimming,"Evening Independent, 6/8/1936",M,16,fatal,True,"Tiger shark, 2.4 m [8']","Evening Independent, 6/8/1936",1936.06.06-BocaCiegaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.06.06-BocaCiegaBay.pdf,1936.06.06,1936.06.06 +4871,22-Apr-1936,Unprovoked,AUSTRALIA,Queensland,Arlington Reef near Cairns,Diving for trochus,Guisne Oscoto (Japanese),M,16,"Arm & back bitten, heel lacerated",False,"Tiger shark, 4.6 m [15'] ","Sydney Morning Herald, 4/23/1936",1936.04.22-Oscoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.22-Oscoto.pdf,1936.04.22,1936.04.22 +4872,08-Ap-1936,Unprovoked,AUSTRALIA,Queensland,Arlington Reef near Cairns,Diving,Ohta,M,16,Arm severed,False,"Tiger shark, 4.6 m [15'] ","The Argus, 4/9/1936",1936.04.08-Ohta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.04.08-Ohta.pdf,1936.04.08,1936.04.08 +4873,30-Mar-1936,Provoked,USA,Florida,"Miami, Miami-Date County",Fishing,Bill Samsoe,M,16,No injury. His hand entangled in line of hooked shark. He was pulled overboard & towed 150' PROVOKED INCIDENT ,False,650-lb shark,"NY Times, 4/1/1936, p.27, col.1",1936.03.30-Samsoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.30-Samsoe.pdf,1936.03.30,1936.03.30 +4874,12-Mar-1936,Unprovoked,AUSTRALIA,Torres Strait,"Near Shelburne Bay, Queenland",Among 31 survivors of crew from the sampan Fukulya Maru (which reached Thursday Island in rowing boat) was a man whose arm had been bitten off by shark. The sampan wrecked west of McArthur island ,Japanese sailor,M,16,Survived,False,650-lb shark,"Coppleson (1958), p.244; The Argus, 4/9/1936",1936.03.22-Japanese-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.22-Japanese-sailor.pdf,1936.03.22,1936.03.22 +4875,19-Mar-1936,Unprovoked,AUSTRALIA,Queensland,"Near Forbes Island, Barrier Reef",Diving for trochus,"Norman, an aboriginal",M,16,Right forearm lacerated,False,650-lb shark,"G.P. Whitley, p.263; V.M. Coppleson (1958), p.244",1936.03.19-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.19-Norman.pdf,1936.03.19,1936.03.19 +4876,04-Mar-1936,Boating,AUSTRALIA,Northern Territory,Between Cape Hotham & Darwin (50 miles from Darwin),Rowing ,"dinghy, occupants: aborigine & lighthouse keeper",,16,"No injury to occupants, shark almost wrenched oar from aborigine",False,650-lb shark,"G.P. Whitley, p.263; V.M. Coppleson (1958), p.186",1936.03.04-CapeHotham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.03.04-CapeHotham.pdf,1936.03.04.,1936.03.04. +4877,23-Feb-1936,Provoked,AUSTRALIA,New South Wales,"Angourie, near Yamba",Touching the mouth of a supposedly dead shark,Eva Cameron,F,young,Finger bitten PROVOKED INCIDENT,False,650-lb shark,"Coppleson (1958), p. 176; G.P. Whitley, p.263",1936.02.23-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.23-Cameron.pdf,1936.02.23,1936.02.23 +4878,Reported 20-Feb-1936,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Sculling,C.E. Slaughter,M,young,"No injury, scull sank",False,10' shark,"Nevada State Journal, 5/2/1936",1936.02.20.R-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.20.R-Slaughter.pdf,1936.02.20..R,1936.02.20..R +4879,04-Feb-1936,Unprovoked,AUSTRALIA,New South Wales,"South Steyne, Manly",Swimming,David Paton,M,14,fatal,True,White shark,"V.M. Coppleson (1958), pp.67 & 234; A. Sharpe, p.68; A. MacCormick, p.169; J. West, ASAF",1936.02.04-Paton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.02.04-Paton.pdf,1936.02.04,1936.02.04 +4880,22-Jan-1936,Unprovoked,AUSTRALIA,South Australia,"West Beach, near Adelaide","Swimming. Passer-by, Len Bedford, heard him shriek , saw shark leap from the water & swimmer disappeared",Ray Bennett,M,13,fatal,True,White shark,"Sydney Morning Herald, 1/23/1936; V.M. Coppleson (1958), pp.107 & 240; A. Sharpe, p.120; J. West, ASAF",1936.01.22-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.22-Bennett.pdf,1936.01.22,1936.01.22 +4881,05-Jan-1936,Invalid,AUSTRALIA,Queensland,"Main Beach, Southport",Surfing,Kevin Canavan,M,17,Disappeared & his torn clothing washed ashore,False,Shark involvement prior to death was not confirmed,"Canberra Times, 1/7/1936; V.M. Coppleson, p.92-93",1936.01.05-Canavan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.05-Canavan.pdf,1936.01.05,1936.01.05 +4882,Jan-1936,Provoked,AUSTRALIA,New South Wales,North Bondi,Paddleskiing,Ken Howell,M,17,"He tried to hit shark with paddle, shark bumped ski PROVOKED INCIDENT",False,2.3 m [7'] shark,"V.M. Coppleson (1958), p.41",1936.01.00-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.01.00-Howell.pdf,1936.01.00,1936.01.00 +4883,1936,Unprovoked,AUSTRALIA,Victoria ,"Port Phillip Bay, Port Melbourne",Swimming ,male,M,17,fatal,True,2.3 m [7'] shark,"J. Green, p.33; V.M. Coppleson (1958), p.241",1936.00.00-PortMelbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1936.00.00-PortMelbourne.pdf,1936.00.00,1936.00.00 +4884,23-Dec-1935,Provoked,AUSTRALIA,Victoria,150 yards from the pier at Lorne,Cruising,16' motor launch owned by A. & E. Norton,,17,"Harpooned shark stove in bow (20"" x 10"" hole), boat sank PROVOKED INCIDENT",False,4.3 m [14'] shark,"V.M. Coppleson (1958), p.183",1935.12.23-NortonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.12.23-NortonBoat.pdf,1935.12.23,1935.12.23 +4885,13-Nov-1935,Unprovoked,AUSTRALIA,Torres Strait,Barrier Reef near Innisfail,Diving?,"James Messot, a Thursday Islander",M,20,Back & arm gashed but survived,False,4.3 m [14'] shark,"NY Times, 11/16/1935; Sun (Sydney) 1/13/1936 (pictures of healed wounds); V.M. Coppleson (1958), p.244",1935.11.13-Messot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.11.13-Messot.pdf,1935.11.13,1935.11.13 +4886,21-Sep-1935,Unprovoked,USA,North Carolina,"Brown’s Inlet on New River, Onslow Beach",Swimming,Jere W. Fountain,M,38,fatal,True,4.3 m [14'] shark," F. Schwartz, p.23; C. Creswell, GSAF",1935.09.21-Fountain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.21-Fountain.pdf,1935.09.21,1935.09.21 +4887,Reported 04-Sep-1935,Unprovoked,PAPUA NEW GUINEA,Central Province,Hula,Swimming,Mailia Ola,M,38,fatal,True,4.3 m [14'] shark,"Cairns Post, 9/24/1935",1935.09.04.R-Hula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.09.04.R-Hula.pdf,1935.09.04.R,1935.09.04.R +4888,26-Aug-1935,Unprovoked,AUSTRALIA,Queensland,"At Flat Top, near Mackay","Fell overboard, hanging onto lifebuoy",Patrick Quinn,M,38,fatal,True,3.7 m [12'] shark,"V.M. Coppleson (1958), p.22; G. P. Whitley",1935.08.26-Quinn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.26-Quinn.pdf,1935.08.26,1935.08.26 +4889,24-Aug-1935,Invalid,UNITED KINGDOM,Isle of Wight,Atherfield,Fishing,Percy Wadham,M,38,"The hooked shark didn't cut his finger, he was injured by his line",False,Invalid,"C. Moore, GSAF. Isle of Wight Press",1935.08.24-Atherfield.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield.pdf ,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.24-Atherfield,1935.08.24,1935.08.24 +4890,13-Aug-1935,Unprovoked,AUSTRALIA,Torres Strait,"Near Warrior Reefs, Queensland",Diving for beche-de-mer from lugger,"Barani, a Papuan",M,38,fatal,True,Invalid,"J. Green, p.33; V.M. Coppleson (1958), p.243",1935.08.13 -Barani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.08.13 -Barani.pdf,1935.08.13,1935.08.13 +4891,27-Jul-1935,Invalid,USA,California,Santa Barbara Channel,fishing boat exploded & sank,Barney Wilkes,M,23,fatal,True,Invalid,"N.Y. Herald Tribune, 7/28/1935; D. Miller & R. Collier",1935.07.27-b-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27-b-Wilkes.pdf,1935.07.27.b,1935.07.27.b +4892,27-Jul-1935,Invalid,USA,California,Santa Barbara Channel,fishing boat exploded & sank,Dr. Alfred L. Wilkes ,M,53,fatal,True,Invalid,"N.Y. Herald Tribune, 7/28/1935; D. Miller & R. Collier",1935.07.27.a-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.27.a-Wilkes.pdf,1935.07.27.a,1935.07.27.a +4893,05-Jul-1935,Unprovoked,PANAMA,off Culebra,off Culebra,"Fishing with dynamite, afterwards in water retrieving catch",Valentin Alonso,M,14,fatal,True,Invalid,"New York Times, 7/6/1935",1935.07.05-Alonso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.05-Alonso.pdf,1935.07.05,1935.07.05 +4894,01-Jul-1935,Unprovoked,CROATIA,Adriatic Sea,"Susak / Fiume (Rijeka, Istria)",Swimming,Mira Kudlich,F,22,fatal,True,Invalid,"C. Moore, GSAF",1935.07.01-Kudlich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.07.01-Kudlich.pdf,1935.07.01,1935.07.01 +4895,18-Jun-1935,Unprovoked,USA,New Jersey,50 miles offshore,"Fishing for bluefish, shark leapt into dory",Captain Manuel Chalor of fishing trawler Nautilus,M,31,Arm lacerated by a shark that leapt onto boat ,False,4.6 m [15'] shark,"NY Times, 6/19/1935, p.21 ",1935.06.18-Chalor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.18-Chalor.pdf,1935.06.18,1935.06.18 +4896,Reported 05-Jun-1935,Unprovoked,SOLOMON ISLANDS,Makira-Uluwa Province,Makira Island,Fishing,a native,M,31,fatal,True,4.6 m [15'] shark,"Sydney Mail, 6/5/1935",1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,1935.06.05.R,1935.06.05.R +4897,Jun-1935,Boating,AUSTRALIA,South Australia,Off Port Broughton,Fishing,"A dinghy, occupant J.W. Wall",,31,Shark bumped dinghy twice,False,4.6 m [15'] shark,"Australian Woman's Weekly, 8/27/1938",1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.05.R-SolomonIslands.pdf,1935.06.00.b,1935.06.00.b +4898,Jun-1935,Unprovoked,PAPUA NEW GUINEA,Northern (Oro) Province,"Dobu Passage, D'Entrecasteaux Islands (between Normanby & Fergusson Islands)",Fishing,"D.K. Webster, p.67",,31,"Samoan missionary, Filemani, caught an 8'6"" shark after it had killed 1 man & 2 boys in space of few weeks",False,4.6 m [15'] shark,"D.K. Webster, p.67",1935.06.00.a-Filemani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.06.00.a-Filemani.pdf,1935.06.00.a,1935.06.00.a +4899,19-May-1935,Provoked,SOUTH AFRICA,KwaZulu-Natal,"North Pier, Durban",Put foot inside a landed & supposedly dead shark,"male, a spectator",M,31,"Foot bitten, required 1 week hospitalization PROVOKED INCIDENT",False,"White shark, 246-kg ","M. Levine, GSAF",1935.05.19-spectator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.19-spectator.pdf,1935.05.19,1935.05.19 +4900,12-May-1935,Unprovoked,AUSTRALIA,Torres Strait,On edge of reef near Warrior Island,Pearl diving,"Andrew, a Torres Strait Islander",M,31,3 gashes on hand & wrist,False,1.8 m [6'] shark,"V.M. Coppleson (1958), pp.103 & 243",1935.05.12-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.05.12-Andrew.pdf,1935.05.12,1935.05.12 +4901,25-Apr-1935,Invalid,AUSTRALIA,New South Wales,Coogee,"Disappeared 11 days earlier, probable homicide victim","James Smith, murder victim",M,40,Captive tiger shark regurgitated his arm in the Coogee Aquarium,False,Invalid,"A. Sharpe, pp.28-32",1935.04.25-SharkArmCase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.25-SharkArmCase.pdf,1935.04.25,1935.04.25 +4902,Reported 08-Apr-1935,Unprovoked,USA,California,"Hermosa Beach, Los Angeles County","Disappeared 11 days earlier, probable homicide victim",A. R. Davis,M,40,Laceration to hand ,False,Invalid,"Los Angeles Times, 4/8/1935 ",1935.04.08.R-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.04.08.R-Davis.pdf,1935.04.08.R,1935.04.08.R +4903,30-Mar-1935,Unprovoked,AUSTRALIA,Queensland,Barrier Reef off Mackay,Diving from dinghy for trochus shell,"Samuel, a Thursday islander",M,40,Buttocks injured by fin or a bump ,False,Invalid,"G.P. Whitley citing the Sydney Morning Herald, 4/1/1935; 1951), G.P. Whitley (1951), page 192, Fide G.D. Wall, Mackay, 1946; J. Green, p.33; V.M. Coppleson (1958), pp.101 & 243",1935.03.30-Samuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.30-Samuel.pdf,1935.03.30,1935.03.30 +4904,Reported 25-Mar-1935,Provoked,SOUTH AFRICA,KwaZulu-Natal,"North Pier, Durban",Put foot inside mouth of supposedly dead shark,male,M,40,Injury to foot PROVOKED INCIDENT,False,Invalid,"Natal Coast Angler, 3/25/1935",1935.03.25.R-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.25.R-Durban.pdf,1935.03.25.R,1935.03.25.R +4905,20-Mar-1935,Unprovoked,AUSTRALIA,Torres Strait,Three Mile Reef off Lizard Island 50 miles north of Cooktown,"Pearl diving, but standing in the water","Kosam, a Torres Strait Islander",M,40,Left thigh abraded & 3 fingers lacerated,False,Tiger shark 3 m [10'] ,"Sydney Morning Herald, 3/20/1935; V.M. Coppleson (1958), pp.102 & 243",1935.03.20-Kosam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.20-Kosam.pdf,1935.03.20,1935.03.20 +4906,13-Mar-1935,Provoked,AUSTRALIA,Queensland,Pimpana River,Hauling in net with shark in it,William Charles Beitz,M,38,Calf & shin bitten PROVOKED INCIDENT,False,"""Blue nose shark""",G.P. Whitley,1935.03.13-Beitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.13-Beitz.pdf,1935.03.13,1935.03.13 +4907,11-Mar-1935,Unprovoked,AUSTRALIA,New South Wales,Newcastle,Surfing,Eric McMichael,M,38,Abrasions to shins,False,"""Blue nose shark""","Sydney Morning Herald, 3/11/1935",1935.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.11-McMichael.pdf,1935.03.11,1935.03.11 +4908,09-Mar-1935,Unprovoked,AUSTRALIA,New South Wales,Maroubra Beach,Swimming,Ernest MacDonald,M,27,fatal,True,"White shark, 4 m [13'] ","V.M. Coppleson (1958), pp.65, 233 & 234; A. Sharpe, pp. 64-65, G.P. Whitley, p.14; J. West, ASAF",1935.03.09-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.09-MacDonald.pdf,1935.03.09,1935.03.09 +4909,02-Mar-1935,Unprovoked,AUSTRALIA,New South Wales,North Narrabeen Beach,Standing,Herbert McFarlane,M,22,fatal,True,"White shark, 3.5 m to 4 m [11.5' to 13'] ","Amarillo Globe, 6/21/1935, p.3; V.M. Coppleson (1958), pp.66-67 & 233; John West",1935.03.02-McFarlane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.03.02-McFarlane.pdf,1935.03.02,1935.03.02 +4910,14-Feb-1935,Unprovoked,AUSTRALIA,New South Wales,Austinmer,Surfing (pneumatic surfboard),Darcy Lorenz,M,20,"Thigh lacerated, abrasions",False,"White shark, 3.5 m to 4 m [11.5' to 13'] ","V.M. Coppleson (1958), pp.45 & 233",1935.02.14-Lorenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.02.14-Lorenz.pdf,1935.02.14,1935.02.14 +4911,24-Jan-1935,Unprovoked,AUSTRALIA,New South Wales,"Off Ben Buckler, near Sydney",Fishing,William Johnson,M,20,"No injury, sleeve ripped",False,"Tiger shark, 12' ","G.P. Whitley, p.263",1935.01.24.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.b-Johnson.pdf,1935.01.24.b,1935.01.24.b +4912,24-Jan-1935,Boating,AUSTRALIA,Queensland,"Ross River, Townsville",Fishing for sharks,flat-bottomed boat,,20,No injury to occupants,False,2 sharks,"G.P. Whitley, p.263",1935.01.24.a-Flat-bottomed-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.24.a-Flat-bottomed-boat.pdf,1935.01.24.a,1935.01.24.a +4913,Reported 21-Jan-1935,Invalid,ISRAEL,Herzliyah,Sidny Ali,Fishing for sharks,"C. Moore, GSAF",,20,human remains washed ahore,False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1935.01.21.R-SidnyAli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.21.R-SidnyAli.pdf,1935.01.21.R,1935.01.21.R +4914,17-Jan-1935,Invalid,AUSTRALIA,Queensland,"Seaforth River, near MacKay",Fishing for sharks,small boy,M,5,No injury; onlookers saw 10' shark heading for him and lifted him ashore,False,Invalid,"G.P. Whitley, p.263",1935.01.17-Seaforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1935.01.17-Seaforth.pdf,1935.01.17,1935.01.17 +4915,31-Dec-1934,Unprovoked,AUSTRALIA,New South Wales,George’s River at Kentucky,Splashing,Beryl Morrin,F,13,Hands severed,False,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), pp.67 & 233; A. Sharpe, pp.90-91",1934.12.31.b-Morrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.b-Morrin.pdf,1934.12.31.b,1934.12.31.b +4916,31-Dec-1934,Unprovoked,AUSTRALIA,New South Wales," St. George’s River at Moorebank, near Milperra Bridge",Swimming (lead swimmer in race),Richard George Soden,M,19,fatal,True,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), pp.67 & 233; A. Sharpe, pp.89-90]",1934.12.31.a-Soden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.31.a-Soden.pdf,1934.12.31.a,1934.12.31.a +4917,23-Dec-1934,Unprovoked,AUSTRALIA,New South Wales,Woy Woy on the Brisbane Waters,Taken as he dived into the water,Roy Inman,M,14,fatal,True,"Tiger shark, 1.5 m [5'] ","V.M. Coppleson (1958), pp.85-86 & 233; A. MacCormick, p.172",1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,1934.12.23.b,1934.12.23.b +4918,23-Oct-1934,Unprovoked,AUSTRALIA,New South Wales,Woy Woy on the Brisbane Waters,Swimming & splashing,Joyce Inman (Roy’s sister),M,12,Leg injured,False,"Tiger shark, 1.5 m [5'] ","J. Green, pp.10 & 33 corrects earlier accounts that gave the location as Queensland; V.M. Coppleson (1958), pp.85-86 & 233; A. MacCormick, p.172",1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.12.23.a-b-Inman.pdf,1934.12.23.a,1934.12.23.a +4919,09-Oct-1934,Unprovoked,AUSTRALIA,Northern Territory,"Redcliff, Cobourg Peninsula",Bathing,aboriginal woman,F,38,fatal,True,"Tiger shark, 1.5 m [5'] ","The Age, 10/27/1934;; V.M. Coppleson (1958), p.240",1934.10.09-Coburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.09-Coburg.pdf,1934.10.09,1934.10.09 +4920,08-Oct-1934,Provoked,BERMUDA,Hamilton,Hamilton Parish,Fishing,McCallan,M,38,Arm bitten by hooked shark PROVOKED INCIDENT,False,"Tiger shark, 1.5 m [5'] ","The Gleaner, 10/16/1934",1934.10.08-McCallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.08-McCallan.pdf,1934.10.08,1934.10.08 +4921,22-Oct-1934,Unprovoked,AUSTRALIA,Torres Strait,Warrior Reefs,Freediving for trochus shell (submerged),"David Younger, Torres Strait Islander",M,38,fatal,True,"Tiger shark, 1.5 m [5'] "," V.M. Coppleson (1958), pp.102-103",1934.10.02-Younger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.10.02-Younger.pdf,1934.10.02,1934.10.02 +4922,08-Sep-1934,Provoked,BERMUDA,Hamilton,Nine miles off Frasconi Flats,Fishing,"Captain Earnest Gibbons, skipper of the cruiser Cupid",M,38,Right foot bitten by shark caught & taken onboard by Mrs. Tucker North PROVOKED INCIDENT,False,1.5 m [5'] shark,"NY Times, 9/10/193, p.10",1934.09.08-Gibbons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.09.08-Gibbons.pdf,1934.09.08,1934.09.08 +4923,27-Aug-1934,Boating,ITALY,Sicily,Catania,Fishing on a boat,A. De Maddalena; Giudici & Fino (1989),M,38,No injury to occupants,False,"White shark, 4 m [13'] ",A. De Maddalena; Giudici & Fino (1989),1934.08.27-Catania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.27-Catania.pdf,1934.08.27,1934.08.27 +4924,Reported 26-Aug-1934,Invalid,ITALY / CROATIA,Kralievica,Kralievica,Swimming,Zorca Prinz,F,38,fatal,True,Invalid,"C. Moore & R. Roccini, GSAF; D. Baldridge, pp.15-16; A. De Maddalena; I. Fergusson (1996), L. Lipej (pers. Comm.)",1934.08.26.R-Prinz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26.R-Prinz.pdf,1934.08.26.R,1934.08.26.R +4925,26-Aug-1934,Unprovoked,AUSTRALIA,Queensland,Off Eva Island 20 miles from Cardwell,Dived into sea from launch & bitten immediately,Robert Steele,M,38,fatal,True,Invalid,"G.P. Whitley citing Sydney Morning Herald 8/27/1934; Sunday Mail (Brisbane) 11/18/1934; G.P. Whitley, p.262; J. Green, p.33;V.M. Coppleson (1958), p.238",1934.08.26-Steeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.26-Steeke.pdf,1934.08.26,1934.08.26 +4926,21-Aug-1934,Unprovoked,CROATIA,Adriatic Sea,"Susak (Rijeka, Istria)",Swimming,Agnes Novak,F,18,fatal,True,White shark,"NY Times, 7/10/1934, p.15; V.M. Coppleson (1958), p. 266; R. Rocconi; D. Baldridge, p.15; A. De Maddalena; Giudici & Fino (1989), De Maddalena (2000)",1934.08.21-Novak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.21-Novak.pdf,1934.08.21,1934.08.21 +4927,05-Aug-1934,Unprovoked,USA,Georgia,"Thunderbolt, Chatham County",Swimming,"William Aimar, Jr.",M,11,Lacerations to right leg,False,White shark,"Cullman Democrat, 8.9/1934",1934.08.05-Aimar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.08.05-Aimar.pdf,1934.08.05,1934.08.05 +4928,11-Jul-1934,Boating,AUSTRALIA,New South Wales,Cronulla,Fishing,"18' boat, occupants William & Leslie Newton",N,11,"No injury to occupants Sharks continually followed the dinghy, and one smashed its rudder ",False,"Blue pointer, 11' ","G.P. Whitley, ref: Daily Telegraph, 7/11/1934 & Sydney Morning Herald 7/12/1934",1934.07.11-Newton-boat-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.07.11-Newton-boat-Australia.pdf,1934.07.11,1934.07.11 +4929, 21-Jun-1934,Provoked,AUSTRALIA,New South Wales,Off Mooloolabah,Fishing,Thomas Henry Durbridge,M,11,Hand bitten while landing shark PROVOKED INCIDENT,False,"A 6.5' ""blue-nosed shark""","Sydney Morning Herald, 6/23 & 6/25/1934 ",1934.06.21-Durnbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.21-Durnbridge.pdf,1934.06.21,1934.06.21 +4930,20-Jun-1934,Unprovoked,USA,Florida,"Melbourne, Brevard County",Standing,"Richard Clark Best, Jr.",M,8,fatal,True,"A 6.5' ""blue-nosed shark""","New York Herald Tribune, 6/21/1934 ",1934.06.20-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.06.20-Best.pdf,1934.06.20,1934.06.20 +4931,15-Apr-1934,Unprovoked,AUSTRALIA,Queensland,"Elephant Rock, Currumbin near Southport",Body surfing,Frank Ilett,M,34,Leg lacerated & punctured,False,"A 6.5' ""blue-nosed shark""","V.M. Coppleson (1958), pp.92 & 238. Note: L. Schultz lists date as 1/15/1934 ",1934.04.15-Ilett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.15-Ilett.pdf,1934.04.15,1934.04.15 +4932,01-Apr-1934,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Granny’s Pool, Winkelspruit",Swimming,Zulu male,M,34,fatal,True,"A 6.5' ""blue-nosed shark""","N. Doveton; M. Levine, GSAF",1934.04.01.c-young-black-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.c-young-black-male.pdf,1934.04.01.c,1934.04.01.c +4933,01-Apr-1934,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Danger Pool, Winkelspruit",Swimming ,Alan Donald McArthur,M,12,Right thigh lacerated,False,"A 6.5' ""blue-nosed shark""","A.D. McArthur, M. Levine, GSAF",1934.04.01.b-McArthur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.b-McArthur.pdf,1934.04.01.b,1934.04.01.b +4934,01-Apr-1934,Unprovoked,AUSTRALIA,New South Wales,North Steyne,Swimming in waist-deep water ,Leon Ritson Hermes,M,15,fatal,True,4.3 m [14'] shark seen in vicinity,"V.M. Coppleson (1958), p. 233 ",1934.04.01.a-Hermes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.04.01.a-Hermes.pdf,1934.04.01.a,1934.04.01.a +4935,12-Mar-1934,Unprovoked,AUSTRALIA,New South Wales,"Dee Why, north of Queenscliff ",Swimming in hip-deep water,Frank Athol Riley,M,17,fatal,True,4 m [13'] shark seen in vicinity,"V.M. Coppleson (1958), pp.66 & 232; A. Sharpe, p.67",1934.03.12-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.12-Riley.pdf,1934.03.12,1934.03.12 +4936,Mar-1934,Provoked,AUSTRALIA,New South Wales,Cronulla,Fishing ,"18' launch, occupants: 2 fishermen",,17,"No injury to occupants, hooked shark, snapped at rudder & then attacked boat PROVOKED INCIDENT",False,"Mako shark, 3.7 m [12'] identified by tooth fragments by G.P. Whitley","V.M. Coppleson (1958), p.182; G.P. Whitley ",1934.03.00-Cronulla-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.03.00-Cronulla-boat.pdf,1934.03.00,1934.03.00 +4937,24-Feb-1934,Unprovoked,AUSTRALIA,Torres Strait,Adolphus Channel,Splashing in water ,"Rixon, an aboriginal",M,17,"Lacerated knee & foot, deep puncture wounds",False,3.4 m [11'] tiger shark & a 5' shark,"V.M. Coppleson (1958), p.243",1934.02.24-Rixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.24-Rixon.pdf,1934.02.24,1934.02.24 +4938,22-Feb-1934,Unprovoked,CHILE,Elqui Province,Coquimbo,Fell into the water,a soldier,M,17,fatal,True,3.4 m [11'] tiger shark & a 5' shark,"Los Angeles Times, 2/23/1934, p.20",1934.02.22-Soldier-Chile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.02.22-Soldier-Chile.pdf,1934.02.22,1934.02.22 +4939,Reported 08-Feb-1934,Boating,TURKEY,Istanbul,"Haydarpasa jetty, Istanbul",Fishing,2 males,M,17,No injury,False,3.4 m [11'] tiger shark & a 5' shark,"C. Moore, GSAF",1924.02.08.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08.R-Turkey.pdf,1934.02.08.R,1934.02.08.R +4940,27-Jan-1934,Unprovoked,AUSTRALIA,New South Wales,"Lambeth Street Wharf, George’s River, East Hills (20 miles from river mouth)",Swimming outside the safety enclosure attempting to retrieve a tennis ball drifting toward midstream ,Wallace John McCutcheon,M,15,"Bumped, chest bitten & badly injured",False,3.4 m [11'] tiger shark & a 5' shark,"V.M. Coppleson (1958), pp.67 & 232; A. Sharpe, p.89; J. Borg, p.89",1934.01.27-McCutcheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.27-McCutcheon.pdf,1934.01.27,1934.01.27 +4941,07-Jan-1934,Unprovoked,AUSTRALIA,New South Wales,Queenscliff,Swimming on sandbar adjacent to channel,Colin Grant ,M,22,Severely lacerated right leg. Later surgically amputated & survived despite gas gangrene,False,4.3 m [14'] shark seen in area previous week,"V.M. Coppleson (1958), pp.65-66 & 232; A. Sharpe, pp.66-67 ",1934.01.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1934.01.07-Grant.pdf,1934.01.07,1934.01.07 +4942,20-Nov-1933,Unprovoked,AUSTRALIA,Torres Strait,Near Boydong Cay,Free diving for trochus ,"Bili, a Papuan",M,22,fatal,True,"Tiger shark, 3.4 m [11'] ","Cairns Post, 11/29/1933",1933.11.20-Bill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.20-Bill.pdf,1933.11.20,1933.11.20 +4943,18-Nov-1933,Unprovoked,AUSTRALIA,Queensland,Near Barrow Point,Pearl diving,"Alfred Aniba, a Torres Strait Islander",M,17,"Hand badly injured, right arm surgically amputated above wrist",False,Tiger shark,"V.M. Coppleson (1958), p.243",1933.11.18-AlfredAniba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.11.18-AlfredAniba.pdf,1933.11.18,1933.11.18 +4944,Reported 25-Oct-1933,Unprovoked,AUSTRALIA,Queensland,Off Bloomfield River,Diving,male,M,17,Hand severed,False,Tiger shark,"Courier-Mail, 10/25/1933",1933.10.25.R-BloomfieldRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.10.25.R-BloomfieldRiver.pdf,1933.10.25.R,1933.10.25.R +4945,Reported 27-Sep-1933,Boating,ISRAEL,Nabi Rubin,Nabi Rubin,Fishing,2 males,M,17,"One man bitten on thigh, another on arm",False,3 sharks,"C. Moore, GSAF",1933.09.27.R-NabiRubin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.09.27.R-NabiRubin.pdf,1933.09.27.R,1933.09.27.R +4946,28-Aug-1933,Provoked,USA,California,"Hermosa Beach, Los Angeles County","Fishing, caught a 15' shark & took it onboard",Nathaniel Myrick,M,17,Severely lacerated arm PROVOKED INCIDENT,False,"Blue shark, 4.5 m [14'9""]","D. Baldridge, p.90",1933.08.28.b-Myrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.b-Myrick.pdf,1933.08.28.b,1933.08.28.b +4947,28-Aug-1933,Unprovoked,USA,South Carolina,"Pawley’s Island, north of Charleston",Bathing,Kenneth Layton,M,17,Right heel & ankle bitten,False,"Blue shark, 4.5 m [14'9""]","E.M. Burton; V.M. Coppleson (1958), pp.153 & 253",1933.08.28.a-Layton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.28.a-Layton.pdf,1933.08.28.a,1933.08.28.a +4948,Reported 26-Aug-1933,Unprovoked,USA,Connecticut,Mystic River,Swimming,Helen Clarke,F,17,Foot bitten,False,"Blue shark, 4.5 m [14'9""]","Hartford Courant, 8/26/1933",1933.08.26.R-HelenClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.08.26.R-HelenClarke.pdf,1933.08.26.R,1933.08.26.R +4949,Reported 07-Jul-1933,Unprovoked,USA,California,"San Diego, San Diego County",Swimming,Tom Schaliniski,M,50,Survived,False,Tiger shark,"Woodland Daily Democrat, 7/7/1933",1933.07.07-Shalininski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.07-Shalininski.pdf,1933.07.07.R,1933.07.07.R +4950,03-Jul-1933,Unprovoked,AUSTRALIA,Western Australia,Broome,Pearl diving,"Canberra Times, 7/6/1933",M,50,"No injury, shark tore diving suit",False,Tiger shark,"Canberra Times, 7/6/1933",1933.07.03-Pearl-diver-Broome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.07.03-Pearl-diver-Broome.pdf,1933.07.03,1933.07.03 +4951,21-Jun-1933,Unprovoked,USA,South Carolina,North end of Morris Island at mouth of Charleston Harbor,Sitting in 3' of water,Dayton Hastie,M,15,Right knee & left leg bitten,False,Thought to involve a 2.4 m [8'] lemon shark; two 2.4 m lemon sharks caught within 100 yds of the site a week prior to & a week after this incident,"E. M. Burton (1935); V.M. Coppleson (1958), pp.152-153 & 252; Randall in Sharks and Survival, p.350; Note: A. Resciniti lists date as 21-Jul-1933",1933.06.21-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.21-Hastie.pdf,1933.06.21,1933.06.21 +4952,16-Jun-1933,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Standing,Emma G. Megginson,F,15,Left calf bitten,False,Thought to involve a 2.4 m [8'] lemon shark; two 2.4 m lemon sharks caught within 100 yds of the site a week prior to & a week after this incident,E. M. Burton; Note: A. Resciniti lists date as 16-Jul-1933,1933.06.16-Megginson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.16-Megginson.pdf,1933.06.16,1933.06.16 +4953,13-Jun-1933,Invalid,AUSTRALIA,Northern Territory,Darwin,Fishing,Ah Cup,M,15,"No injury, ""shark chased him ashore""",False,Invalid,"V.M. Coppleson (1962), p.245",1933.06.13-Chinese-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.13-Chinese-fisherman.pdf,1933.06.13,1933.06.13 +4954,24-May-1933,Sea Disaster,BARBADOS,St Michael Parish,Off Pelican Island,Yacht of Michael Howell capsized,9 people in the water,,15,fatal,True,Invalid,"New York Times 5/26/1933; L. Schultz & M. Malin, p.558; SAF Case #931",1933.05.24-yacht-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.24-yacht-Barbados.pdf,1933.05.24,1933.05.24 +4955,23-May-1933,Provoked,AUSTRALIA,Queensland,Off Stradbroke Island,Fishing,Mr. E.B. Port,M,15,Laceration to lower leg by netted shark PROVOKED INCIDENT,False,7' to 8' shark,"Brisbane Courier, 5/24/1933",1933.05.23-Port.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.23-Port.pdf,1933.05.23,1933.05.23 +4956,Reported 08-Jun-1933,Unprovoked,AUSTRALIA,Queensland,Currumbin,Treading water,Walter Mitchell,M,15,Lacerations to legs from fins of shark,False,7' to 8' shark,"Townsville Daily Bulletin, 6/9/1933 ",1933.06.08-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.06.08-Mitchell.pdf,1933.06.08.R,1933.06.08.R +4957,03-May-1933,Sea Disaster,CUBA,Havana Province,"Off Jaimanitas Yacht Club, Havana",Swimming to shore from capsized sailboat,Majin Alvarez Piedra,M,15,fatal,True,7' to 8' shark,"NY Times, May 4, 1933",1933.05.03-sailor_cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.05.03-sailor_cuba.pdf,1933.05.03,1933.05.03 +4958,10-Apr-1933,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Swimming,Thomas N. Martin,M,24,fatal,True,Possibly a bull shark or tiger shark,"New York Herald Tribune, 4/12/1933",1933.04.10-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.04.10-Martin.pdf,1933.04.10,1933.04.10 +4959,26-Feb-1933,Unprovoked,AUSTRALIA,New South Wales,Sydney,Standing on his hands,W. McCann,M,24,Abrasions to legs,False,10' shark,"Townsville Daily Bulletin, 2/27/1933",1933.02.26-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.26-McCann.pdf,1933.02.26,1933.02.26 +4960,Reported 15-Feb-1933,Unprovoked,AUSTRALIA,Torres Strait,"Barrow Point, 100 miles north of Cooktown, Queensland",Diving for trochus from dinghy when seized by shark 6' below the surface,"Tumia, a Torres Strait Islander",M,24,"Injuries to arm, shoulder & chest, took 2 days to reach hospital",False,4.4 m [14'] shark,"La Crosse Tribune And Leader-Press, 5/15/1933; V.M. Coppleson.Q12. (1933); V.M. Coppleson, p.242",1933.02.15.R-Tumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.15.R-Tumia.pdf,1933.02.15.R,1933.02.15.R +4961,14-Feb-1933,Boating,AUSTRALIA,South Australia,Adelaide,Diving for trochus from dinghy when seized by shark 6' below the surface,boat,,24,No injury to occupants. Shark leapt into boat during sailing races,False,4.4 m [14'] shark,"G.P. Whitley citing Sydney Morning Herald, 2/16/1933",1933.02.14-Shark-leaps-in-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.14-Shark-leaps-in-boat.pdf,1933.02.14,1933.02.14 +4962,12-Feb-1933,Provoked,AUSTRALIA,South Australia,"Port River, Adelaide",Fishing,Donald Jukes,M,24,Forearm injured by hooked shark PROVOKED INCIDENT,False,Blue shark,"The Advertiser, 2/13/1933",1933.02.12-Jukes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.02.12-Jukes.pdf,1933.02.12,1933.02.12 +4963,04-Jan-1933,Unprovoked,AUSTRALIA,Queensland,"Strand Beach, Kissing Point, Townsville",Swimming,Stanley Victor Locksley,M,38,fatal,True,Blue shark,"V. M. Coppleson.Q11. (1933); V.M. Coppleson (1958), pp.90 & 238",1933.01.04-Locksley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1933.01.04-Locksley.pdf,1933.01.04,1933.01.04 +4964,Reported 11-Dec-1932,Unprovoked,AUSTRALIA,Northern Territory,Arnhem Land,Swimming,"Sunday Times (Perth), 12/11/1932 ",M,38,Leg bitten,False,Blue shark,"Sunday Times (Perth), 12/11/1932 ",1932.12.11-ArnhemLand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.11-ArnhemLand.pdf,1932.12.11.R,1932.12.11.R +4965,Reported 09-Dec-1932,Provoked,NEW ZEALAND,North Island,Mahurangi River Mouth,Fishing ,Mr. L. E. Brasting,M,38,Laceration to hand PROVOKED INCIDENT,False,Blue shark,"New Zealand Herald, 12/9/1932",1932.12.09-Brasting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.12.09-Brasting.pdf,1932.12.09.R,1932.12.09.R +4966,08-Nov-1932,Sea Disaster,CUBA,unknown,unknown,Hurricane & Tidal Wave,"Barrier Miner, 11/14/1932",,38,UNKNOWN,UNKNOWN,Blue shark,"Barrier Miner, 11/14/1932",1932.11.09-Hurricane-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.11.09-Hurricane-Cuba.pdf,1932.11.09,1932.11.09 +4967,31-Oct-1932,Unprovoked,AUSTRALIA,New South Wales,"Redhead Beach, Newcastle",Swimming,Reginald Ogilvie,M,24,"Torso bitten with pneumothorax, slight lacerations on left hand",False,Thought to involve a mako or grey nurse shark,"V.M. Coppleson.N19. (1933); V.M. Coppleson (1958), pp.80 & 232",1932.10.31-Ogilvie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.31-Ogilvie.pdf,1932.10.31,1932.10.31 +4968,11-Oct-1932,Unprovoked,CAPE VERDE,Barlavento Islands,São Vicente ,Swimming,Michele Ruck,M,27,fatal,True,Thought to involve a mako or grey nurse shark,"C. Moore, GSAF",1932.10.11-Ruck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.10.11-Ruck.pdf,1932.10.11,1932.10.11 +4969,Reported 26-Sep-1932,Unprovoked,FIJI,Viti Levu Island,Navua,Catching a turtle,male,M,27,Left arm severely bitten,False,Thought to involve a mako or grey nurse shark,"Queensland Times, 9/26/1932",1932.09.26.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.09.26.R-Fiji.pdf,1932.09.26.R,1932.09.26.R +4970,30-Aug-1932,Provoked,AUSTRALIA,New South Wales,Bondi,Catching a turtle,male,M,27,Hand bitten by landed shark PROVOKED INCIDENT,False,Thought to involve a mako or grey nurse shark,G.P. Whitley,1932.08.30.b-male-Bondi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.b-male-Bondi.pdf,1932.08.30.b,1932.08.30.b +4971,30-Aug-1932,Provoked,AUSTRALIA,New South Wales,Newcastle,Catching a turtle,D. Bennett,M,27,Bitten by landed shark PROVOKED INCIDENT,False,Thought to involve a mako or grey nurse shark,"G.P. Whitley; J. Green, p.32",1932.08.30.a-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.30.a-Bennett.pdf,1932.08.30.a,1932.08.30.a +4972,10-Aug-1932,Provoked,USA,New Jersey,"Offshore, between Mantoloking & Point Pleasant, Ocean County",Fishing,John Olsen,M,27,Hooked shark gashed right leg PROVOKED INCIDENT,False,16' 800-lb shark,"Lime Springs Herald, 9/22/1932; R. Heyer",1932.08.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.10-Olsen.pdf,1932.08.10,1932.08.10 +4973,09-Aug-1932,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Pearl diving,"Jack Giblett or Gilbert, Torres Strait Islander",M,27,Bitten on buttock & leg,False,16' 800-lb shark,"J. Green, p.32; V.M. Coppleson (1958), p.242",1932.08.09-JackGiblett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.09-JackGiblett.pdf,1932.08.09,1932.08.09 +4974,06-Aug-1932,Provoked,BAHAMAS,New Providence District,"Nassau, New Providence Island",On expedition filming a feature movie & standing on tripod,George Vanderbilt,M,18,"No injury, hooked shark rammed tripod PROVOKED INCIDENT",False,16' 800-lb shark,"New York Times, 8/7/1932 ",1932.08.06-Vanderbilt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.08.06-Vanderbilt.pdf,1932.08.06,1932.08.06 +4975,Reported 14-Jul-1932,Invalid,USA,Texas,Galveston,On expedition filming a feature movie & standing on tripod,male,M,17,Body recovered from 9' shark but death due to shark bite was not confirmed,False,Shark involvement prior to death unconfirmed,IGFA,1932.07.14.R-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.14.R-Galveston.pdf,1932.07.14.R,1932.07.14.R +4976,02-Jul-1932,Boating,CANADA,Bay of Fundy,16 km west of Digby Gut,"Fishing, hauling in fishing gear"," 7.6 m motorized boat, occupants: fisherman & his son",M,17,"No injury to occupants, shark bumped boat repeatedly",False,Teeth in hull identified as those from a white shark 4.6 m [15'] in length,Piers (1933),1932.07.02-Bay-of-Fundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.07.02-Bay-of-Fundy.pdf,1932.07.02,1932.07.02 +4977,28-Jun-1932,Provoked,USA,New Jersey,"10 miles offshore from Sea Isle City, Cape May County",Fishing,Antonio Fonzzo,M,32,Knee bitten by boated shark PROVOKED INCIDENT,False,"250-lb ""dog shark""","NY Times, 6/29/1932 ",1932.06.28-Fonzzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.28-Fonzzo.pdf,1932.06.28,1932.06.28 +4978,26-Jun-1932,Provoked,USA,New Jersey,"Off Ocean City, Cape May County",Fishing,Giacomo Giavanco,M,32,Ankle broken when 500-lb boated shark lashed him with its tail PROVOKED INCIDENT,False,"250-lb ""dog shark""","NY Times, 6/29/1932 ",1932.06.26-Giacomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.26-Giacomo.pdf,1932.06.26,1932.06.26 +4979,20-Jun-1932,Unprovoked,FIJI,Yasawa Islands,Nabukeru ,Free diving with goggles,Asena (female),F,32,fatal,True,"250-lb ""dog shark""","V.M. Coppleson (1958), p.259",1932.06.20-Asena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.06.20-Asena.pdf,1932.06.20,1932.06.20 +4980,12-May-1932,Unprovoked,AUSTRALIA,Torres Strait,Near Warrior Reefs,Pearl diving,"Henry Solomon, Cape York native",M,32,fatal,True,"250-lb ""dog shark""","V.M. Coppleson (1958), p242",1932.05.12-HenrySolomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.12-HenrySolomon.pdf,1932.05.12,1932.05.12 +4981,May 1932,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,"Nishi, Japanese diver",M,32,Severe injury to forearm near elbow,False,"250-lb ""dog shark""","J. Green, p.32; V.M. Coppleson (1958), p.242",1932.05.00-Nishi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.05.00-Nishi.pdf,1932.05.00,1932.05.00 +4982,16-Apr-1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Standing,male (civilian),M,32,fatal,True,"250-lb ""dog shark""",J.F. Corby,1932.04.16.b-civilian-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.b-civilian-male.pdf,1932.04.16.b,1932.04.16.b +4983,16-Apr-1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Standing,female,F,32,fatal,True,"250-lb ""dog shark""",J. F. Corby,1932.04.16.a-Philippine-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.04.16.a-Philippine-female.pdf,1932.04.16.a,1932.04.16.a +4984,16-Feb-1932,Unprovoked,USA,Hawaii,"1 mile off Mala Wharf, Lahaina, Maui",Swimming,"William France, a sailor from U.S. Navy vessel Saratoga",M,32,Two 6-inch lacerations,False,"250-lb ""dog shark""","San Antonio Light (San Antonio, Texas), 2/17/1932; J. Borg, p.71",1932.02.16-WilliamFrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.16-WilliamFrance.pdf,1932.02.16,1932.02.16 +4985,13-Feb-1932,Unprovoked,AUSTRALIA,Queensland,Calliope River,Fishing with dynamite,Eric Francis Beck,M,32,Foot bitten,False,"250-lb ""dog shark""","Morning Bulletin, 6/5/1932",1932.02.13-Beck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.13-Beck.pdf,1932.02.13,1932.02.13 +4986,08-Feb-1932,Unprovoked,PHILIPPINES,Manila,Fort Mills,Working near fish traps,Filipino soldier,M,32,fatal,True,"250-lb ""dog shark""",J.F. Corby,1932.02.08-PhilippineSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.02.08-PhilippineSoldier.pdf,1932.02.08,1932.02.08 +4987,27-Jan-1932,Unprovoked,AUSTRALIA,Queensland,Ipswich,Swimming,Charles Adams,M,32,Thigh bitten,False,A small shark,"Brisbane Courier, 1/28/1932",1932.01.27-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.27-Adams.pdf,1932.01.27,1932.01.27 +4988,11-Jan-1932,Boating,AUSTRALIA,Victoria,Frankston,Fishing,boat,,32,No details,UNKNOWN,Grey nurse shark,G.P. Whitley citing Herald (Melbourne) 1/12/1932 ,1932.01.11-boatFrankston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.11-boatFrankston.pdf,1932.01.11,1932.01.11 +4989,06-Jan-1932,Provoked,MEXICO,Baja California,Descano Point,Fishing,Efrain Ybarra & Francisco Durazzo,M,36 & 23,fatal,True,Grey nurse shark,"NY Herald Tribune, 1/8/1933 ",1932.01.06-BajaFishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.01.06-BajaFishermen.pdf,1932.01.06,1932.01.06 +4990,1932,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Kowie River Mouth, Port Alfred",Collecting fish by lamplight in gully,Manning Samuels,M,23,"Right shin, calf and sole of foot lacerated",False,"Raggedtooth shark, 1.2 m to 1.5 m [4' to 5'] ","R. Samuels, K. Reynolds & M. Levine, GSAF ",1932.00.00-Samuels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1932.00.00-Samuels.pdf,1932.00.00,1932.00.00 +4991,26-Nov-1931,Unprovoked,AUSTRALIA,Torres Strait,Barrier Reef near Innisfail,Diving for trochus from lugger,"Albert Mainlander, an aboriginal",M,45,Left foot acerated,False,4 m [13'] shark,"The Argus, 11/28/1931; /V.M. Coppleson.Q10. (1933) ",1931.11.26-Mainlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.11.26-Mainlander.pdf,1931.11.26,1931.11.26 +4992,27-Sep-1931,Unprovoked,JAMAICA,"East Beach, Kingsston","East Beach, Kingsston",Diving off wharf,Wilbert Gibbs,M,Teen,fatal,True,4 m [13'] shark,"The Gleaner, 9/29/1931",1931.09.27-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.27-Gibbs.pdf,1931.09.27,1931.09.27 +4993,21-Sep-1931,Unprovoked,USA,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming,Sam Barrows,M,Teen,Minor injury,False,4 m [13'] shark,"L. Schultz & M. Malin, p.534",1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,1931.09.21.b,1931.09.21.b +4994,21-Sep-1931,Unprovoked,USA,Florida,"Municipal Beach, West Palm Beach, Palm Beach County",Swimming ,Gertrude Holiday,F,20,Right thigh & calf lacerated,False,"Hammerhead shark, 2.4 m [8'], according to lifeguard Sam Barrows","E.W. Gudger (1937); V.M. Coppleson (1958), p.252; R. Skocik, pp.174-175",1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.21.a-b-Holaday-Barrows.pdf,1931.09.21.a,1931.09.21.a +4995,02-Sep-1931,Invalid,USA,Hawaii,"Kahala, O'ahu",Fishing,George Gaspar,M,20,"Swept out to sea by strong currents, his remains found in a 5.5m shark caught off Barber’s Point",False,Shark involvement prior to death unconfirmed,"G.H. Balazs & A.K.H. Kam; J. Borg, p.71; L. Taylor (1993), pp.96-97",1931.09.02-Gaspar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.09.02-Gaspar.pdf,1931.09.02,1931.09.02 +4996,31-Aug-1931,Unprovoked,CUBA,Havana Province,"Vedado Baths, Miramar, Havana",Swimming,Manuel Romero,M,18,fatal,True,Shark involvement prior to death unconfirmed,"NYTimes, 9/2/1931",1931.08.31-Romero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.31-Romero.pdf,1931.08.31,1931.08.31 +4997,30-Aug-1931,Invalid,USA,Hawaii,Hawaii,Swimming,Sadao Nakatus,M,18,"""Mysteriously disappeared"" His body was found in an 18', 750-lb shark caught at Barber's Point on 01-Sep-1931",False,Shark involvement prior to death unconfirmed,"Middlesboro Daily News, 9//2/1931",1931.08.30-Nakatus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.30-Nakatus.pdf,1931.08.30,1931.08.30 +4998,27-Aug-1931,Boating,USA,New Jersey,"1 mile ESE of Navesink, Monmouth County",Fishing for bluefish,"boat, occupants: Nels Jacobson & Franklin Harriman Covert",,18,No injury to occupants. Shark chasing fish struck boat,False,Shark involvement prior to death unconfirmed,Press clipping dated 8/28/1931 ,1931.08.27-NaveskinShrewsbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.27-NaveskinShrewsbury.pdf,1931.08.27,1931.08.27 +4999,25-Aug-1931,Unprovoked,CUBA,Havana Province,"Miramar subdivision, Havana",Swimming a quarter mile offshore,Pablo Medina,M,23,fatal,True,Shark involvement prior to death unconfirmed,"New York Times, 8/27/1931, p.7; V.M. Coppleson (1962), p.246",1931.08.25-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.25-Medina.pdf,1931.08.25,1931.08.25 +5000,23-Aug-1931,Unprovoked,CUBA,Havana Province,"Miramar, Havana",Swimming ,Laureano Rodriguez,M,23,fatal,True,Shark involvement prior to death unconfirmed,"New York Times, 8/27/1931, p.7; V.M. Coppleson (1958), p.258",1931.08.23-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.23-Rodriguez.pdf,1931.08.23,1931.08.23 +5001,18-Aug-1931,Unprovoked,USA,Texas,Off Brownsville,Swimming,P. Kincaid Zifflewwiggett,M,23,Minor injury,False,Shark involvement prior to death unconfirmed,"Brownsville Herald, 8/19/1931",1931.08.18-Zifflewwiggett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.18-Zifflewwiggett.pdf,1931.08.18,1931.08.18 +5002,Reported 06-Aug-1931,Unprovoked,USA,New Jersey,"Sandy Hook (ocean side), Monmouth County",Swimming,"soldier, a private",M,23,Survived,False,Shark involvement prior to death unconfirmed,"New York Times, 8/6/1931",1931.08.06.R-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.06.R-soldier.pdf,1931.08.06.R,1931.08.06.R +5003,01-Aug-1931,Unprovoked,AUSTRALIA,Queensland,Port Douglas,Fell overboard?,Llewellyn Roberts,M,23,fatal,True,Shark involvement prior to death unconfirmed,"Townsville Daily Bulletin, 8/4/1931",1931.08.01-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.08.01-Roberts.pdf,1931.08.01,1931.08.01 +5004,Reported 28-Jul-1931,Unprovoked,FIJI,Viti Levu Island,Tamavua River,Swimming,Narnak,M,23,Multiple injuries ,False,small sharks,"Sydney Morning Herald, 8/12/1931",1931.07.28.R-Narnak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.28.R-Narnak.pdf,1931.07.28.R,1931.07.28.R +5005,15-Jul-1931,Unprovoked,USA,New Jersey,"Sea Girt, Monmouth County",Swimming,soldier in NJ National Guard,M,23,Nipped on leg,False,small sharks,"Daily Courier, 7/21/1931",1931.07.15-SeaGirt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.07.15-SeaGirt.pdf,1931.07.15,1931.07.15 +5006,14-Jun-1931,Unprovoked,USA,Hawaii,"Pearl Harbor, O'ahu","Fishing, had just speared a ulua",male,M,23,Survived,False,small sharks,"V.M. Coppleson, p.260",1931.06.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.14-male.pdf,1931.06.14,1931.06.14 +5007,13-Jun-1931,Provoked,USA,Hawaii,"Pearl Harbor, O'ahu",Gaffing & attempting to bring onboard a harpooned shark,Lieutenant Williamson,M,23,Tip of finger amputated PROVOKED INCIDENT,False,"Tiger shark, 3 m [10']","G.H. Balazs; J. Borg, p.70; L. Taylor (1993), pp.96-97",1931.06.13-Williamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.13-Williamson.pdf,1931.06.13,1931.06.13 +5008,Reported 04-Jun-1931,Unprovoked,USA,Florida,"Key West, Monroe County ",Crabbing,"Frank Johnson, Jr.",M,23,Lacerations to fingers,False,6' shark,"Key West Citizen, 6/4/1931",1931.06.04.R-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.06.04.R-Johnson.pdf,1931.06.04.R,1931.06.04.R +5009,02-May-1931,Boating,AUSTRALIA,New South Wales,Kempsey,Crabbing,"pilot boat, occupants; Captain McAlister & crew",,23,No injury to occupants; oar & rudder bitten,False,"""a school of sharks""","Sydney Morning Herald, 6/5/1931; Whitley, p.262",1931.05.02-pilot-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.05.02-pilot-boat.pdf,1931.05.02,1931.05.02 +5010,Reported 27-Apr-1931,Unprovoked,unknown,French Southern Territories,Île Saint-Paul,"Fishing, boat capsized",Quillezic,M,23,fatal,True,"""a school of sharks""","Los Angeles Times, 4/27/1931",1931.04.27.R-Quillezic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.04.27.R-Quillezic.pdf,1931.04.27.R,1931.04.27.R +5011,22-Mar-1931,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Fishing with a cast net,Arthur Tomida,M,19,fatal,True,"""a school of sharks""","V. M. Coppleson.Q9. (1933); V.M. Coppleson (1958), pp.90 & 238",1931.03.22-Tomida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.22-Tomida.pdf,1931.03.22,1931.03.22 +5012,16-Mar-1931,Boating,TURKEY,"Bakurköy, Istanbul","Bakurköy, Istanbul",Fishing,"Fishing boat. occupants: Laz Hüseyin, Ali Osman & Tursun +",,19,"No injury to occupants, shark crushed boat",False,"""a school of sharks""","C. Moore, GSAF",1931.03.15-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.15-Turkey.pdf,1931.03.15,1931.03.15 +5013,06-Mar-1931,Provoked,AUSTRALIA,South Australia,Encounter Bay,"Fishing, hauling in net, shark in net",A. Ewen,M,19,"Finger lacerated, PROVOKED INCIDENT",False,"1.8 m [6'] ""cocktail shark","Whitley, p.262; V.M. Coppleson (1933)",1931.03.06-Ewen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.03.06-Ewen.pdf,1931.03.06,1931.03.06 +5014,10-Feb-1931,Invalid,AUSTRALIA,New South Wales,Maroubra Beach,Swimming ,Samuel Rosenthal,M,39,Death may have been due to drowning,False,Shark involvement prior to death unconfirmed,"Examiner, 2/11/1931",1931.02.10-Rosenthal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.02.10-Rosenthal.pdf,1931.02.10,1931.02.10 +5015,24-Jan-1931,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Swimming ,native,M,39,Recovered,False,Shark involvement prior to death unconfirmed,"G.P. Whitley, p.262",1931.01.24-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.24-ThursdayIsland.pdf,1931.01.24,1931.01.24 +5016,14-Jan-1931,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Pearl diving,"Albertus, a Malay",M,39,"Thigh, kneecap & lower leg badly lacerated",False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.242",1931.01.14-Albertus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.14-Albertus.pdf,1931.01.14,1931.01.14 +5017,07-Jan-1931,Unprovoked,AUSTRALIA,Queensland,"Yeppoon, near Ross Creek",Swimming,Stanley Roser,M,18,Severe bump & few superficial wounds ,False,1.5 m [5'] shark,"Canberra Times, 1/9/1931; V.M. Coppleson.Q8. (1933); V.M. Coppleson (1958), pp.91 & 237",1931.01.07-Roser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.01.07-Roser.pdf,1931.01.07,1931.01.07 +5018,1931,Unprovoked,TONGA,Niua ,Niuafo'ou Island ,"Swimming, carrying tin can with mail to steamer",male,M,18,fatal,True,1.5 m [5'] shark,"Clearfield Progress, 5/27/1931",1931.00.00.b-Tin-can-mail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.b-Tin-can-mail.pdf,1931.00.00.b,1931.00.00.b +5019,1931,Unprovoked,PAPUA NEW GUINEA,unknown,unknown,"Swimming, carrying tin can with mail to steamer","""3 shark attacks in 3 days""",,18,No details,UNKNOWN,1.5 m [5'] shark,"V.M. Coppleson, p.49",1931.00.00.a-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1931.00.00.a-NewGuinea.pdf,1931.00.00.a,1931.00.00.a +5020,25-Dec-1930,Unprovoked,AUSTRALIA,New South Wales,"Homebush Bay, Parramatta River, Sydney",Swimming,James Knight,M,49,"Bumped by shark, legs abraded",False,1.5 m [5'] shark,"V.M. Coppleson (1933); V.M. Coppleson (1958), pp.44 & 232; A. Sharpe, p.17",1930.12.25-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.25-Knight.pdf,1930.12.25,1930.12.25 +5021,13-Dec-1930,Unprovoked,AUSTRALIA,New South Wales,"Sailor Bay, Middle Harbour, Sydney",Fell overboard,Frank Kenny,M,49,fatal,True,1.5 m [5'] shark,"Northern Standard (Dawin), 12/18/1930",1930.12.13-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.13-Kenny.pdf,1930.12.13,1930.12.13 +5022,02-Dec-1930,Boating,AUSTRALIA,Victoria,Rosebud,Fishing,12' dinghy,,49,No injury to occupants; shark seized gunwale & tried to overturn boat,False,7 shark's teeth found embedded in the woodwork of the boat,"G.P. Whitley, p.262",1930.12.02-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.02-dinghy.pdf,1930.12.02,1930.12.02 +5023,Dec-1930,Unprovoked,AUSTRALIA,New South Wales,Parramata River,Fishing,male,M,49,fatal,True,7 shark's teeth found embedded in the woodwork of the boat,"H.D.Baldridge (1994), SAF Case #506",1930.12.00-ParamattaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.12.00-ParamattaRiver.pdf,1930.12.00,1930.12.00 +5024,30-Nov-1930,Unprovoked,AUSTRALIA,Queensland,"St. Helena Island, Moreton Bay",Thrown into water from fishing dinghy,Moses Smith,M,49,Laceration to leg,False,7 shark's teeth found embedded in the woodwork of the boat,"Sydney Morning Herald, 12/1/1930 ",1930.11.30-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.11.30-Smith.pdf,1930.11.30,1930.11.30 +5025,Reported 26-Sep-1930,Unprovoked,HONDURAS,Black River,Black River,Swimming,Indian guide,M,49,fatal,True,7 shark's teeth found embedded in the woodwork of the boat,"NY Times, 9/26/1930",1930.09.26.R-IndianGuide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.26.R-IndianGuide.pdf,1930.09.26.R,1930.09.26.R +5026,1930,Boating,AZORES,unknown,unknown,Swimming,"C. Moore, GSAF",,49,"No inury to occupants, shark struck boat",False,7 shark's teeth found embedded in the woodwork of the boat,"C. Moore, GSAF",1930.09.12.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.09.12.R-Azores.pdf,1930.09.12.R,1930.09.12.R +5027,31-Aug-1930,Unprovoked,AUSTRALIA,Western Australia,Geraldton,Fishing,William Burton,M,17,Minor injury,False,7 shark's teeth found embedded in the woodwork of the boat,"Geraldton Guardian, 9/2/1930 ",1930.08.31-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.31-Burton.pdf,1930.08.31,1930.08.31 +5028,16-Aug-1930,Unprovoked,SPAIN,Canary Islands,"El Escabonal, Tenerife ",Swimming,Cecil Bethencourt,M,38,Leg bitten,False,7 shark's teeth found embedded in the woodwork of the boat,C. Moore. GSAF,1930.08.16-El-Escabonal-CanaryIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.16-El-Escabonal-CanaryIslands.pdf,1930.08.16,1930.08.16 +5029,06-Aug-1930,Unprovoked,USA,Florida,"Palm Beach Inlet, Palm Beach County",Swimming,Captain W. Kemp,M,38,Lacerations to foot & ankle,False,7 shark's teeth found embedded in the woodwork of the boat,"Palm Beach Post, 8/7/1930",1930.08.06-Kemp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.08.06-Kemp.pdf,1930.08.06,1930.08.06 +5030,19-Jul-1930,Unprovoked,CUBA,Havana Province,"LaPlaya Beach / Vedado, Havana",Swimming,Emilio Grenet ,M,29,"Right arm & leg bitten, arm & leg surgically amputated ",False,7 shark's teeth found embedded in the woodwork of the boat,"NY Times, 7/21/1930, p.7 & 8/27/1931; V.M. Coppleson (1958), p.258",1930.07.19-Grenet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.19-Grenet.pdf,1930.07.19,1930.07.19 +5031,11-Jul-1930,Unprovoked,USA,Florida,"Jensen Beach, Martin County",Swimming,William Harns,M,21,Arm lacerated from shoulder to wrist,False,Tiger shark,"NY Times, 7/13/1930, Section II, p.1, col.7; R.F. Hutton; V.M. Coppleson (1958), p.252",1930.07.11-Harns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.07.11-Harns.pdf,1930.07.11,1930.07.11 +5032,04-Jun-1930,Unprovoked,AUSTRALIA,Torres Strait,Near Mabuiag Island,Swimming,"Ibigan, a Torres Strait islander",M,21,fatal,True,Tiger shark,"V.M. Coppleson (1958), p.242",1930.06.04-Ibigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.06.04-Ibigan.pdf,1930.06.04,1930.06.04 +5033,27-May-1930,Unprovoked,USA,Texas,High Island,Swimming / floating,A.B. Wattigney,M,21,Lacerations to arm,False,Tiger shark,"Port Arthur News, 5/28/1930",1930.05.27-Wattigney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.27-Wattigney.pdf,1930.05.27,1930.05.27 +5034,Reported 11-May-1930,Boating,TURKEY,Ye?ilköy,Ye?ilköy,Fishing,small boat. Occupants: 2 Englishmen,M,21,No injury but shark damaged boat,False,Tiger shark,"C. Moore, GSAF",1930.05.11.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11.R-Turkey.pdf,1930.05.11.R,1930.05.11.R +5035,11-May-1930,Invalid,COSTA RICA,Limón Province,Off Porto Limon,Air disaster,"Evening Independent, 5/12/1930",,21,Shark involvement prior to death was not confirmed,False,Shark involvement prior to death unconfirmed,"Evening Independent, 5/12/1930",1930.05.11-Rovirosa-Sidar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.05.11-Rovirosa-Sidar.pdf,1930.05.11,1930.05.11 +5036,08-Apr-1930,Invalid,SOUTH AFRICA,Eastern Cape Province,Bashee River,Air disaster,male,M,17,"Remains of drowning victim recovered from 250-lb female ""blue fin"" shark",False,Shark involvement prior to death unconfirmed,Dr. J.A. Du Toit,1930.04.08-BasheeRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.04.08-BasheeRiver.pdf,1930.04.08,1930.04.08 +5037,Reported 07-Mar-1930,Unprovoked,USA,Florida,70 miles off Tarpon Springs,Sponge diving,Speros Gigis,M,17,No injury to diver but shark left 3 toothmarks in his helmet,False,Shark involvement prior to death unconfirmed,"Evening Independent, 3/7/1930 ",1930.03.07.R-Giglis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.03.07.R-Giglis.pdf,1930.03.07.R,1930.03.07.R +5038,20-Feb-1930,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Pearl diving,Jerry,M,19,Arm & chest injured,False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.242 ",1930.02.20-Jerry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.20-Jerry.pdf,1930.02.20,1930.02.20 +5039,15-Feb-1930,Unprovoked,AUSTRALIA,Victoria,"Middle Brighton, Port Phillip",Diving off pier & treading water,Norman Clark,M,18,fatal,True,White shark 4.9 m [16'] ,"V.M. Coppleson.V2.(1933); V.M. Coppleson (1958), pp.110 & 241; A. MacCormick, p.175; J. West, ASAF",1930.02.15-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.15-Clarke.pdf,1930.02.15,1930.02.15 +5040,Reported 03-Feb-1930,Provoked,AUSTRALIA,Western Australia,Onslow,Removing shark from a trap,Mr. M. Donovan,M,18,Laceration to thigh from trapped shark PROVOKED INCIDENT,False,White shark 4.9 m [16'] ,"Geraldton Guardian and Express, 2/3/1930",1930.02.03.R-Donovan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.02.03.R-Donovan.pdf,1930.02.03.R,1930.02.03.R +5041,22-Jan-1930,Boating,MEXICO,Veracruz,Panuco River Mouth,Fishing schooner Jose Luis foundered,"Reno Evening Gazette, 2/14/1930",,18,fatal,True,White shark 4.9 m [16'] ,"Reno Evening Gazette, 2/14/1930",1930.01.22-FishingSchooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.22-FishingSchooner.pdf,1930.01.22,1930.01.22 +5042,16-Jan-1930,Unprovoked,SOUTH AFRICA,Western Cape Province,"Melkbaai, False Bay",Swimming,Servy LeRoux,M,23,Torso & arm bitten,False,"White shark, 4.5 m [14'9""], identity confirmed by witness & tooth pattern","A. LeRoux, M. Levine, GSAF; L. Green; G.Wilson",1930.01.16-le-Roux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.16-le-Roux.pdf,1930.01.16,1930.01.16 +5043,Jan-1930,Sea Disaster,MAURITIUS,Two miles from shore in Tamarind Bay,Two miles from shore in Tamarind Bay,Swimming to shore after a squall capsized their motorized shark fishing boat,"males, shark fishermen",M,23,fatal,True,"White shark, 4.5 m [14'9""], identity confirmed by witness & tooth pattern","NY Times, 1/14/1930, p.8, col.3; V.M. Coppleson (1958), p.261",1930.01.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.01.00-Mauritius.pdf,1930.01.00,1930.01.00 +5044,1930,Unprovoked,OKINAWA,unknown,unknown,Swimming to shore after a squall capsized their motorized shark fishing boat,Hyoyu Kadena,M,17,Survived,False,"White shark, 4.5 m [14'9""], identity confirmed by witness & tooth pattern",Wonderokinawa.com,1930.00.00.c-Kadena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.c-Kadena.pdf,1930.00.00.c,1930.00.00.c +5045,1930,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"North End Beach, Port Elizabeth",Swimming,Mr. Meyer,M,17,fatal,True,"White shark, 4.5 m [14'9""], identity confirmed by witness & tooth pattern",H. Monsen,1930.00.00.a-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1930.00.00.a-Meyer.pdf,1930.00.00.a,1930.00.00.a +5046,26-Dec-1929,Unprovoked,AUSTRALIA,New South Wales,"White Bay, near Bald Rock Jetty, Sydney Harbor ",Diving by wharf,William Oakley,M,16,fatal,True,Tiger shark,"V.M. Coppleson.N3.(1933); V.M. Coppleson (1958), p.232; G.A. Llano, pp. 170-171",1929.12.26-Oakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.26-Oakley.pdf,1929.12.26,1929.12.26 +5047,21-Dec-1929,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Diving,male,M,16,Recovered at Thursday Island Hospital,False,Tiger shark,L. Schultz & M. Malin ref. SAF Case #510,1929.12.21-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.21-ThursdayIsland.pdf,1929.12.21,1929.12.21 +5048,16-Dec-1929,Unprovoked,AUSTRALIA,New South Wales,Collaroy,Bathing or body surfing ,Nancy Thom,F,17,Superficial lacerations on right leg,False,"""a small shark""","V.M. Coppleson.N10. (1933); V.M. Coppleson (1958), pp.112 & 232. Note: In 1933 Coppleson gives the date of 16-Jan-1929 but revised it to 16-Dec-1929 in later works",1929.12.16-Thom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.16-Thom.pdf,1929.12.16,1929.12.16 +5049,13-Dec-1929,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,"Nago, a Japanese diver",M,17,Injuries to chest & arm,False,"""a small shark""","J. Green, p.32; V.M. Coppleson (1958), p.242",1929.12.13-Nago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.13-Nago.pdf,1929.12.13,1929.12.13 +5050,Reported 03-Dec-1929,Unprovoked,AUSTRALIA,Queensland,Townsville,Pearl diving,male,M,50s,fatal,True,"""a small shark""","Brisbane Courier, 12/3/1929",1929.12.03.R-Unidentified.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.12.03.R-Unidentified.pdf,1929.12.03.R,1929.12.03.R +5051,29-Nov-1929,Sea Disaster,KIRIBATI,Phoenix Islands,Nikumaroro Island,"Sea Disaster, wreck of the SS Norwich City","Hartford Courant, 2/15/1930",M,50s,fatal,True,"""a small shark""","Hartford Courant, 2/15/1930",1929.11.29-NorwichCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.29-NorwichCity.pdf,1929.11.29,1929.11.29 +5052,21-Nov-1929,Unprovoked,CUBA,Cienfuegos Province,Cienfuegos,Fishing,Gamatano Yugoago,M,50s,"Shark attacked his boat, threatening to capsize it. He jumped overboard & shark bit his arm. He knifed & killed shark. Later his arm was surgically amputated",False,"""a small shark""","New York Times, 11/28/1929",1929.11.21-Yugoago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.11.21-Yugoago.pdf,1929.11.21,1929.11.21 +5053,20-Oct-1929,Unprovoked,AUSTRALIA,Torres Strait,Near Badu Island,Pearl diving,Lifu,M,50s,Heel injured,False,"""a small shark""","V.M. Coppleson (1958), p.242",1929.10.20-Lifu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.20-Lifu.pdf,1929.10.20,1929.10.20 +5054,02-Oct-1929,Unprovoked,SPAIN,Valencia,Nasareth Beach,Fishing ,Vicente Bonet,M,50s,Arm injured when sharks rammed his boat,False,"""a small shark""",C. Moore. GSAF,1929.10.02-Bonet-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.10.02-Bonet-Valencia.pdf,1929.10.02,1929.10.02 +5055,01-Sep-1929,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Fell from wharf into water & attacked immediately,Edward William Hobbs,M,42,fatal,True,"""a small shark""","V.M. Coppleson.Q7. (1933); V.M. Coppleson (1958), pp.90 & 237; A. Sharpe, p.96",1929.09.01-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.09.01-Hobbs.pdf,1929.09.01,1929.09.01 +5056,05-Aug-1929,Unprovoked,USA,South Carolina,Fort Moultrie,Bathing,"Robert W. McGhee, Private 1st Class, 8th Infantry",M,42,Left foot & ankle bitten,False,"""a small shark""","Clay Creswell, GSAF",1929.08.05-McGhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.08.05-McGhee.pdf,1929.08.05,1929.08.05 +5057,29-Jul-1929,Unprovoked,MEXICO,Tamaulipas,Tampico,Swimming,Crew member of Casanova,M,42,Right leg severed below knee,False,"""a small shark""","V.M. Coppleson (1958), p.262",1929.07.29-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.29-Casanova.pdf,1929.07.29,1929.07.29 +5058,Reported 17-Jul-1929,Invalid,CAPE VERDE,Santiago Island,Tarrafal,Swimming,female,F,42,Body of woman recovered from 15' shark,False,Shark involvement prior to death unconfirmed,"C. Moore; GSAF. Heraldo de Madrid, 7/17/1929",1929.07.17.R-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.07.17.R-CapeVerde.pdf,1929.07.17.R,1929.07.17.R +5059,23-Jun-1929,Provoked,USA,Florida,"Fort Pierce, St Lucie County",Fishing,F.P. Jones,M,42,Leg bitten by hooked shark PROVOKED INCIDENT,False,9-foot shark,"Miami News, 6/25/1929",1929.06.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.06.23-Jones.pdf,1929.06.23,1929.06.23 +5060,31-May-1929,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Pearl diving,Johnny Moira,M,42,"Injuries to both legs, buttocks, back, lower abdomen & chest",False,9-foot shark,"V.M. Coppleson (1958), p.242",1929.05.31-Moira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.05.31-Moira.pdf,1929.05.31,1929.05.31 +5061,Reported 26-Apr-1929,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for trepang,Ali Ah Mat,M,42,Thigh bitten,False,9-foot shark,"Northern Standard (Dawin), 4/26/1929",1929.04.26.R-AliAhMat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.26.R-AliAhMat.pdf,1929.04.26.R,1929.04.26.R +5062,Reported 17-Apr-1929,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for trochus,Nistritani Taked,M,42,Lacerations to right wrist,False,9-foot shark,"Brisbane Courier, 4/19/1929",1929.04.17.R-Taked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.17.R-Taked.pdf,1929.04.17.R,1929.04.17.R +5063,11-Apr-1929,Provoked,AUSTRALIA,Queensland,"Bribie Passage, Caloundra",Standing in knee-deep water,David Alexander Manners,M,19,Right calf severely bitten by shark caught in the net PROVOKED INCIDENT,False,"Grey nurse shark, 4' ","Brisbane Courier, 4/12/1929; Coppleson (1933)",1929.04.11-Manners.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.11-Manners.pdf,1929.04.11,1929.04.11 +5064,09-Apr-1929,Unprovoked,AUSTRALIA,Torres Strait,Badu Island,Standing in knee-deep water,diver,M,19,fatal,True,"Grey nurse shark, 4' ","G.P. Whitley, citng R.S.M.A.C.",1929.04.09-BaduIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.09-BaduIsland.pdf,1929.04.09,1929.04.09 +5065,04-Apr-1929,Unprovoked,AUSTRALIA,Torres Strait,Badu Island,Swimming between boats,"Ned Luffman, a Torres Strait Islander",M,19,fatal,True,"Grey nurse shark, 4' ","V.M. Coppleson (1958), p.242 ",1929.04.04-Luffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.04.04-Luffman.pdf,1929.04.04,1929.04.04 +5066,16-Mar-1929,Unprovoked,USA,Florida,"Sea Spray, Palm Beach",Swimming,Leroy Chadbourne,M,26,Right sole & toes lacerated,False,"Grey nurse shark, 4' ","New York Herald Tribune, 3/17/1929 edtion; H. Monsen, L. Green",1929.03.16-Chadbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.16-Chadbourne.pdf,1929.03.16,1929.03.16 +5067,12-Mar-1929,Unprovoked,AUSTRALIA,Torres Strait,Near Dauan Island,Bathing,"schoolboy, a Torres Strait Islander",M,26,fatal,True,"Grey nurse shark, 4' ","G.P. Whitley; J. Green, p.32; V.M. Coppleson (1958), p.242",1929.03.12-schoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.12-schoolboy.pdf,1929.03.12,1929.03.12 +5068,04-Mar-1929,Unprovoked,AUSTRALIA,South Australia,Ardrossan,Launching rowboat through the surf,L. Aldridge,M,9,Foot bitten,False,"""a dog shark""","Barrier Miner, 3/5/1929",1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,1929.03.04.b,1929.03.04.b +5069,04-Mar-1929,Unprovoked,AUSTRALIA,South Australia,Ardrossan,Launching rowboat through the surf,Dick Roads ,M,12,Legs bitten,False,"""a dog shark""","Barrier Miner, 3/5/1929",1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.03.04.a-b.Roads-Aldridge.pdf,1929.03.04.a,1929.03.04.a +5070,18-Feb-1929,Unprovoked,AUSTRALIA,New South Wales,Maroubra Bay,Body surfing,Allan Butcher,M,20,fatal,True,"""a dog shark""","V.M. Coppleson.N12. (1933); V.M. Coppleson (1958), pp.64 & 231; A. Sharpe, pp.63-64",1929.02.18-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.18-Butcher.pdf,1929.02.18,1929.02.18 +5071,09-Feb-1929,Boating,AUSTRALIA,Western Australia,Glenelg,Canoeing,canoe. Occupants: Doreen Tyrell & Frederick Bates,,20,"No injury, shark pushed canoe from jetty to a point 100 m away",False,"Blue pointer, 12'","The Mail, 2/9/1929; G.P. Whitley; SAF Case #505",1929.02.09-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.09-canoe.pdf,1929.02.09,1929.02.09 +5072,08-Feb-1929,Unprovoked,AUSTRALIA,New South Wales,Bondi,Swimming,John Gibson,M,39,fatal,True,Galapagos shark,"V. M. Coppleson.N11. (1933); J. Green, p.32; A. Sharpe, p.62",1929.02.08-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.02.08-Gibson.pdf,1929.02.08,1929.02.08 +5073,27-Jan-1929,Unprovoked,AUSTRALIA,Queensland,"Alma Bay, Magnetic Island, Townsville",Swimming,Harry Weatherall,M, ,fatal,True,Galapagos shark,"V.M. Coppleson.Q.6. (1933); V.M. Coppleson (1958), pp. 90 & 237; G.A. Llano, pp.169-170",1929.01.27-Weatherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.27-Weatherall.pdf,1929.01.27,1929.01.27 +5074,14-Jan-1929,Unprovoked,NEW ZEALAND,North Island,"Miranda Head, Hauriki Gulf",Bathing,2 women,F, ,"One was bitten on the leg, the other on the arm",False,Galapagos shark,"Argus, 1/15/1929",1929.01.14-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.14-NewZealand.pdf,1929.01.14,1929.01.14 +5075,12-Jan-1929,Unprovoked,AUSTRALIA,New South Wales,Bondi,Body surfing,Colin James Stewart,M,14,fatal,True,12' shark,"V.M. Coppleson.N9. (1933); V.M. Coppleson (1958), pp.64 & 231 ; A. Sharpe, p.59-62",1929.01.12-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.12-Stewart.pdf,1929.01.12,1929.01.12 +5076,06-Jan-1929,Boating,TURKEY,San Stefano,San Stefano,Fishing boat,male x 2,M,14,fatal,True,12' shark,"C. Moore, GSAF",1929.01.06.R-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.06.R-Istanbul.pdf,1929.01.06.R,1929.01.06.R +5077,05-Jan-1929,Unprovoked,FIJI,Viti Levu Island,Suva Harbor,Diving for coins thrown from ship S.S. Moeraki,male,M,14,fatal,True,12' shark,"V.M. Coppleson (1962), p.253, possibly GSAF 1925.00.00",1929.01.05-FijianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.01.05-FijianBoy.pdf,1929.01.05,1929.01.05 +5078,Reported 1929,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Swimming,Eric Johanssen,M,14,"Later found to be fiction, never happened",False,Invalid,"J. Lowell, Cradle of the Deep",1929.00.00.e.R-Johanssen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.e.R-Johanssen.pdf,1929.00.00.e.R,1929.00.00.e.R +5079,Ca. 1929,Provoked,AUSTRALIA,South Australia,Ardrossan,"Wading, netting fish",Ted Bowman,M,14,Bitten below the knee,False,"""a dog shark""","Barrier Miner, 3/5/1929",1929.00.00.d-Bowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.d-Bowman.pdf,1929.00.00.d,1929.00.00.d +5080,1929,Provoked,USA,Florida,Indian River area,Fishing,Buck Jones,M,14,Thigh lacerated by hooked shark PROVOKED INCIDENT,False,9' shark,"News Tribune, 6/28/1964",1929.00.00.c-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.c-Jones.pdf,1929.00.00.c,1929.00.00.c +5081,1929,Unprovoked,AUSTRALIA,New South Wales,"Garden Island, Sydney",Fishing,William Luckie,M,14,Hand lacerated,False,9' shark,"G.P. Whitley, p.261",1929.00.00.b-Luckie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.b-Luckie.pdf,1929.00.00.b,1929.00.00.b +5082,1929,Unprovoked,USA,Florida,"Cape Canaveral, Brevard County",Hardhat diving ,Carl Holm,M,27,"“Put hand through hatch, shark nearly bit off thumb”",False,9' shark,"R. McAllister; D. Baldridge, p.180 ",1929.00.00.a-Holm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1929.00.00.a-Holm.pdf,1929.00.00.a,1929.00.00.a +5083,21-Dec-1928,Unprovoked,AUSTRALIA,unknown,unknown,Pearl diving,Rueben,M,27,Injuries to arm ,False,9' shark,"V.M. Coppleson (1958), p.242",1928.12.21-Rueben.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.12.21-Rueben.pdf,1928.12.21,1928.12.21 +5084,18-Nov-1928,Provoked,USA,New Jersey,"Seabright, Monmouth County",Fishing,"boat, occupants: Captains Charles Anderson, Emit Lindberg & Oscar Benson",M,27,"Fishermen were cut & bruised by netted, harpooned and gaffed sharks PROVOKED INCIDENT",False,"""Blue nose sharks""",NY Herald Tribune,1928.11.18-SeaBright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.18-SeaBright.pdf,1928.11.18,1928.11.18 +5085,Reported 15-Nov-1928,Boating,INDIA,unknown,unknown,Fishing,"dhow, occupant Eugene Wright",M,24,"No injury to occupants, shark bit keel",False,"""Blue nose sharks""","Sun Herald, 11/15/1938",1928.11.15.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.15.R-Wright.pdf,1928.11.15.R,1928.11.15.R +5086,12-Nov-1928,Sea Disaster,USA,Virginia,"200 miles off Hampton Roads, Virginia, USA","Sea Disaster, sinking of the SS Vestris",Earl DeVore,M,24,fatal,True,"""Blue nose sharks""","Havre Daily News Promoter, 11/20/1928; TIME Magazine, 11/28/1928",1928.11.12-Vestris-DeVore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.12-Vestris-DeVore.pdf,1928.11.12,1928.11.12 +5087,04-Nov-1928,Unprovoked,PANAMA,Gulf of Panama,Taboga Island Bay,Swimming,Abraham Moreno,M,17,fatal,True,Moreno’s leg & part of his swim suit found in 9' shark caught two hours after the attack. Identified as carcharhinid shark by L. Schultz & C. Limbaugh on photograph,"J.W. Phalen is original source. NOTE: V.M. Coppleson (1958), p.263, records the date as 11/4/1929, as does L. Schultz & M. Malin, p.535",1928.11.04-Moreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.11.04-Moreno.pdf,1928.11.04,1928.11.04 +5088,Sep-1928,Unprovoked,USA,Texas,Corpus Christi,Fishing,W.R. Loesberg,M,17,Knee bitten,False,Moreno’s leg & part of his swim suit found in 9' shark caught two hours after the attack. Identified as carcharhinid shark by L. Schultz & C. Limbaugh on photograph,"Galveston Daily News, 12/7/1929",1928.09.00-Loesberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.09.00-Loesberg.pdf,1928.09.00,1928.09.00 +5089,Reported 24-Aug-1928,Invalid,USA,New Jersey,Off shore,Fishing,male,M,17,Thumb & coat sleeve recovered from shark's gut,False,7' shark,"Decatur Evening Herald, 8/24/1928 ",1928.08.24.R-Thumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.08.24.R-Thumb.pdf,1928.08.24.R,1928.08.24.R +5090,11-Jul-1928,Unprovoked,AUSTRALIA,unknown,unknown,Pearl diving,"Willie Poid, a Torres Strait islander",M,17,Injuries to chest,False,7' shark,"V.M. Coppleson (1958), p.242",1928.07.11-Poid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.11-Poid.pdf,1928.07.11,1928.07.11 +5091,Late Jul-1928,Provoked,ITALY,Tuscany,Viareggio,Boating,Mr. Bagolinii,M,17,"No injury, shark approached the boat, he hit it with and oar and fell into the sea PROVOKED INCIDENT",False,"Species unknown, possibly a white shark",A. De Maddalena; Gianturco (1978),1928.07.00-Bagolini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.07.00-Bagolini.pdf,1928.07.00,1928.07.00 +5092,Reported 24-Jun-1928,Unprovoked,USA,Florida,"Daytona Beach, Volusia County",Swimming,Jim Stevens,M,17,Bitten on leg,False,"Species unknown, possibly a white shark","Ludington Daily News, 6/24/1928",1928.06.24.R-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.06.24.R-Stevens.pdf,1928.06.24.R,1928.06.24.R +5093,27-May-1928,Invalid,INDIA,unknown,unknown,Swimming,A.F.C. Smiot,M,17,No details,False,Shark involvement not confirmed,"H.D. Baldridge (1994) SAF Case #1595, questioned authenticity of this incident",1928.05.17-Smiot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.05.17-Smiot.pdf,1928.05.17,1928.05.17 +5094,Reported 14-Apr-1928,Unprovoked,AUSTRALIA,Queensland,"Barrow Point, 100 miles north of Cooktown, Queensland",Fishing,a Murray Islander,M,17,Severe lacerations to arm,False,Tiger shark,"The Western Champion, 4/14/1928",1928.04.14.R-BarrowPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.R-BarrowPoint.pdf,1928.04.14.R,1928.04.14.R +5095,14-Apr-1928,Unprovoked,AUSTRALIA,New South Wales,Bondi,Treading water,Maxwell Steele,M,19,Tissue of left leg stripped from knee to ankle ,False,Tiger shark,"V. M. Coppleson.N8. (1933); V.M. Coppleson (1958), pp.64 &231; A. Sharpe, p.59",1928.04.14.a-Steele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.14.a-Steele.pdf,1928.04.14,1928.04.14 +5096,09-Apr-1928,Unprovoked,JAMAICA,"Coal wharf, Port Royal","Coal wharf, Port Royal",Diving,Lewis,M,19,fatal,True,Tiger shark,"Kingston Gleaner, 4/11/1928",1928.04.09-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.09-Jamaica.pdf,1928.04.09,1928.04.09 +5097,06-Apr-1928,Unprovoked,AUSTRALIA,Queensland,Graceville,Bathing,Noel Arthy,M,15,Lacerations to right leg ,False,4' shark,"Brisbane Courier, 5/8/1928",1928.04.06-Arthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.06-Arthy.pdf,1928.04.06,1928.04.06 +5098,04-Apr-1928,Unprovoked,AUSTRALIA,New South Wales,"Cooks Hill, Newcastle",Standing in waist-deep water,Edward Arthur Lane,M,28,fatal,True,4' shark,"V.M. Coppleson.N18. (1933); V.M. Coppleson (1958), pp.76 & 231; A. Sharpe, pp.83-84; G.A. Llano, pp.166-167",1928.04.04-Lane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.04.04-Lane.pdf,1928.04.04,1928.04.04 +5099,Reported 28-Mar-1928,Unprovoked,AUSTRALIA,Queensland,Queensland,Standing in waist-deep water,Bob,M,28,Hip bitten,False,4' shark,"Townsville Daily Bulletin, 3/28/1928",1928.03.28.R-Bob.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.03.28.R-Bob.pdf,1928.03.28.R,1928.03.28.R +5100,20-Feb-1928,Unprovoked,AUSTRALIA,Torres Strait,"Near Barrow Point, Queensland",Pearl diving,"Wanewa, a Torres Strait Islander",M,28,fatal,True,4' shark,"Townsville Daily Bulletin, 2/28/1928",1928.02.20-Wanewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.20-Wanewa.pdf,1928.02.20,1928.02.20 +5101,Feb-1928,Unprovoked,COSTA RICA,Near Puntarenas,Near Puntarenas,Swimming,Lily Artavia,F,28,Right leg severely lacerated. Surgically amputated,False,4' shark,"Gleaner (Jamaica), 3/7/1928",1928.02.00.b-Artavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.b-Artavia.pdf,1928.02.00.b,1928.02.00.b +5102,Feb-1928,Unprovoked,COSTA RICA,Near Puntarenas,Near Puntarenas,Swimming,Armando Chavez,M,28,Right leg & hand severely lacerated,False,4' shark,"Gleaner (Jamaica), 3/7/1928",1928.02.00.a-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.02.00.a-Chavez.pdf,1928.02.00.a,1928.02.00.a +5103,27-Jan-1928,Unprovoked,AUSTRALIA,Torres Strait,Deliverance Island,Retrieving meat from a cage in the water,Harry Envoldt,M,78,fatal,True,4' shark,"Portland Guardian, 12/10/1934",1928.01.27-Envoldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.27-Envoldt.pdf,1928.01.27,1928.01.27 +5104,21-Jan-1928,Invalid,USA,Florida,Florida,Swimming,Unknown,,78,Body not recovered ,False,Shark involvement not confirmed,H.D. Baldridge (1994) SAF Case #838,1928.01.21.b-Florida-Swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.b-Florida-Swimmer.pdf,1928.01.21.b,1928.01.21.b +5105,Some time between 08-Jan-1928 & 21-Jan-1928,Invalid,USA,Florida,Off Florida coast,Jumped overboard and swimming,Two stowaways on German steamer Vela,M,78,fatal,True,Shark involvement not confirmed,"NY Times, 1/22/1928; V.M. Coppleson (1962), p.257",1928.01.21.a-Stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.21.a-Stowaways.pdf,1928.01.21.a,1928.01.21.a +5106,02-Jan-1928,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Salt Vlei, Port Alfred",Jumped overboard and swimming,Mrs. Hoskin,F,78,Leg lacerated,False,Shark involvement not confirmed,"M. Levine, GSAF; Natal Mercury, 1/4/1928",1928.01.02-Hoskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.02-Hoskin.pdf,1928.01.02,1928.01.02 +5107,Jan-1928,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kei River mouth,Body surfing,Patrick Desmond Lynch,M,18,Foot bitten,False,1.2 m [4'] shark,"P.D. Lynch, M. Levine, GSAF",1928.01.00-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.01.00-Lynch.pdf,1928.01.00,1928.01.00 +5108,1928,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Tugela River Mouth,Standing,N'gena Zakali,M,25,"Tissue of right thigh removed to the bone, both thumbs & some fingers severed ",False,1.2 m [4'] shark,"T. O. Niven, M. Levine, GSAF",1928.00.00-N'genaZakali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1928.00.00-N'genaZakali.pdf,1928.00.00,1928.00.00 +5109,28-Dec-1927,Unprovoked,SOUTH AFRICA,Western Cape Province,Little Brak River,Swimming,Ockert Stephanus Heyns,M,17,fatal,True,"White shark, 4.4 m [14.5'] . ",M. Levine & C. Fourie,1927.12.28-Heyns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.12.28-Heyns.pdf,1927.12.28,1927.12.28 +5110,03-Nov-1927,Sea Disaster,AUSTRALIA,New South Wales,"Bradleys Head, Sydney ",The steamer Tahiti collided with the ferry Greycliffe,"Oakland Tribune, 8/16/1930",,17,fatal,True,"White shark, 4.4 m [14.5'] . ","Oakland Tribune, 8/16/1930",1927.11.0-Tahiti-diaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.11.0-Tahiti-diaster.pdf,1927.11.03,1927.11.03 +5111,25-Oct-1927,Sea Disaster,BRAZIL,Porto Seguro,90 miles off Albrohos Island,Italian liner Principessa Mafalda sank,"L. Schultz & M. Malin, p.557; SAF Case #833",,17,fatal,True,"White shark, 4.4 m [14.5'] . ","L. Schultz & M. Malin, p.557; SAF Case #833",1927.10.25-Mafalda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.25-Mafalda.pdf,1927.10.25,1927.10.25 +5112,12-Oct-1927,Unprovoked,AUSTRALIA,New South Wales,"Kiah Creek, Eden",Riding horseback across the creek,Norman Severs & horse,M,17,No injury to man or horse,False,"White shark, 4.4 m [14.5'] . ","Advertiser, 10/14/1927; V.M. Coppleson (1933); G.P. Whitley",1927.10-12-Severs-horse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10-12-Severs-horse.pdf,1927.10.12,1927.10.12 +5113,Oct-1927,Unprovoked,FIJI,a river,a river,"Standing, collecting bananas",Josiah,M,17,Leg bitten. He survived,False,"White shark, 4.4 m [14.5'] . ","The Methodist, 3/13/1937",1927.10.00-Josiah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.10.00-Josiah.pdf,1927.10.00,1927.10.00 +5114,03-Jul-1927,Boating,AUSTRALIA,New South Wales,Bellambi Reef,"Standing, collecting bananas","14' boat, occupants: 2 men",,17,"No injury to occupants, boat was bumped & lifted 2' out of the water by the shark",False,"White shark, 4.4 m [14.5'] . ","G.P. Whitley; V.M. Coppleson (1933); Note: V.M. Coppleson (1958), p.185, also describes the same incident, listing a date of July 1937 ",1927.07.03-Bellambi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.07.03-Bellambi.pdf,1927.07.03,1927.07.03 +5115,29-May-1927,Sea Disaster,PHILIPPINES,Luzon Island,Bondoc Peninsula,Sea disaster,Inter island ferry Negros foundered during a typhoon,,17,fatal,True,"White shark, 4.4 m [14.5'] . ","The Times (London), 6/2/1927 ",1927.05.29-Negros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.29-Negros.pdf,1927.05.29,1927.05.29 +5116,Reported 09-May 1927,Unprovoked,AUSTRALIA,Queensland,Off Cairns,Walking,"Quassa, a Torres Strait Islander",M,17,fatal,True,"White shark, 4.4 m [14.5'] . ","Brisbane Courier, 5/10/1927; V.M. Coppleson (1958), p.242",1927.05.09.R-Quassa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.05.09.R-Quassa.pdf,1927.05.09.R,1927.05.09.R +5117,20-Apr-1927,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving,"Napoleon Doola, a Murray Islander)",M,17,Extensive injuries to left leg,False,"White shark, 4.4 m [14.5'] . ","J. Green, p.32; Bartlett, p. 160; V.M. Coppleson (1958), p.242",1927.04.10-NapoleonDoola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.10-NapoleonDoola.pdf,1927.04.10,1927.04.10 +5118,08-Apr-1927,Unprovoked,AUSTRALIA,Queensland,Near Thursday Island,Pearl diving,Eseromi,M,17,Leg injured,False,"White shark, 4.4 m [14.5'] . ","J. Green, p.32; V.M. Coppleson (1958), p.241",1927.04.08-Eseromi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.04.08-Eseromi.pdf,1927.04.08,1927.04.08 +5119,11-Mar-1927,Unprovoked,AUSTRALIA,New South Wales,Mereweather Beach,Body surfing / treading water,Edward Pritchard,M,17,"Right buttock & thigh bitten, thumb removed",False,Grey nurse shark?,"V.M. Coppleson.N17. (1933); V.M. Coppleson (1958), p.76 & 231; G.A. Llano, p.165",1927.03.01-Pritchard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.03.01-Pritchard.pdf,1927.03.01,1927.03.01 +5120,14-Feb-1927,Provoked,NICARAGUA,Salinas Bay,"A shark was caught, its head severed from body and hung from the anchor davit onboard the U.S.S. Borie",Feeling the shark’s teeth,a sailor,M,17,"Sharks’s jaws snapped shut, lacerating his right hand PROVOKED INCIDENT",False,Grey nurse shark?,"G.A. Llano, p.178",1927.02.14-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.14-sailor.pdf,1927.02.14,1927.02.14 +5121,09-Feb-1927,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Attempting to rescue drowning man,Bernard Gill,M,17,"No injury, but trouser leg shredded by shark",False,Grey nurse shark?,"Northern Territory Times & Gazette, 2/11/1927",1927.02.09-Gill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.09-Gill.pdf,1927.02.09,1927.02.09 +5122,Feb-1927,Provoked,NEW ZEALAND,South Island,"Menzies Bay, Banks Peninsula, ",Fishing,male,M,70,Severely bitten by shark caught 30 minutes earlier PROVOKED INCIDENT,False,Mako shark,"R.D. Weeks, GSAF; V.M. Coppleson (1958), p.263; SAF #328",1927.02.00-MenziesBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.02.00-MenziesBay.pdf,1927.02.00,1927.02.00 +5123,20-Jan-1927,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Kidd’s Beach,Body surfing,Andrew I. Brown,M,70,Both thighs lacerated,False,"Raggedtooth shark, 1.5 m [5'] ","M. Levine, GSAF",1927.01.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.20-Brown.pdf,1927.01.20,1927.01.20 +5124,Reported 08-Jan-1927,Unprovoked,USA,California,"Catalina Channel, Los Angeles County",Swimming,Price Taylor,M,70,Lost hand,False,"Raggedtooth shark, 1.5 m [5'] ","The Afro-American, 1/8/1927",1927.01.08.R-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.08.R-Taylor.pdf,1927.01.08.R,1927.01.08.R +5125,03-Jan-1927,Unprovoked,AUSTRALIA,New South Wales,"Grey’s Point, Port Hacking",Swimming,Mervwyn Allum,M,15,fatal,True,3.7 m [12'] shark,"V.M. Coppleson.N.21.(1933); V.M. Coppleson (1958), p.230; NYTimes, 1/5/1927",1927.01.03-Allum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.01.03-Allum.pdf,1927.01.03,1927.01.03 +5126,1927,Unprovoked,AUSTRALIA,New South Wales,15 miles up the Cataract River,Swimming,Anonymous ,M,10,fatal,True,3.7 m [12'] shark,"W.E., pp. 192-193",1927.00.00.b-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.b-Australia.pdf,1927.00.00.b,1927.00.00.b +5127,1927,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Pearl diving,Dick Lahou,M,10,Shoulder bitten,False,3.7 m [12'] shark,"V.M. Coppleson (1958), p.241",1927.00.00.a-Lahou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1927.00.00.a-Lahou.pdf,1927.00.00.a,1927.00.00.a +5128,Reported 02-Dec-1926,Unprovoked,AUSTRALIA,Torres Strait,Palm Island,Diving for trochus,Norman Skeen,M,10,fatal,True,3.7 m [12'] shark,"Brisbane Courier, 12/3/1926",1926.12.02-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.12.02-Norman.pdf,1926.12.02.R,1926.12.02.R +5129,17-Nov-1926,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Diving,Noma,M,10,Arm injured,False,3.7 m [12'] shark,"J. Green, p.32; V.M. Coppleson (1958), p.241",1926.11.17-Noma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.11.17-Noma.pdf,1926.11.17,1926.11.17 +5130,Reported 29-Oct-1926,Unprovoked,PAPUA NEW GUINEA,Central Province,Roku Point,Jumped into the water,male,M,10,fatal,True,3.7 m [12'] shark,"Cairns Post, 10/29/1926",1926.10.29.R-RokuPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.29.R-RokuPoint.pdf,1926.10.29.R,1926.10.29.R +5131,23-Oct-1926,Unprovoked,AUSTRALIA,New South Wales,Clarence River,Bathing,Herbert Webster,M,17,"3"" laceration to leg",False,"Grey nurse shark, 4'","Barrier Miner, 10/25/1926",1926.10.23.b-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.b-Webster.pdf,1926.10.23.b,1926.10.23.b +5132,23-Oct-1926,Sea Disaster,BERMUDA,18 miles southwest of Bermuda ,18 miles southwest of Bermuda ,British patrol boat 1250-ton HMS Valerian foundered in a hurricane,"New York Herald Tribune, 10/29/1926",,17,"Of 104 people in the water, only 20 survived. 84 people were lost, many to sharks. Sharks 2 pulled crew off life rafts",False,"Grey nurse shark, 4'","New York Herald Tribune, 10/29/1926",1926.10.23.a - HMS Valerian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.10.23.a - HMS Valerian.pdf,1926.10.23.a,1926.10.23.a +5133,Reported 06-Sep-1926,Unprovoked,PAPUA NEW GUINEA,Near Port Moresby,Near Port Moresby,Jumped out of canoe,a native,M,17,fatal,True,"Grey nurse shark, 4'","Barrier Miner, 9/6/1926",1926.09.06.R-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.09.06.R-PortMoresby.pdf,1926.09.06.R,1926.09.06.R +5134,24-Aug-1926,Unprovoked,USA,New Jersey,"Seaside, Ocean County",Swimming,Charles A. Burke,M,18,fatal,True,"Grey nurse shark, 4'","Washington Post 8/25/1926; L. Schultz & M. Malin, p.531",1926.08.24-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.08.24-Burke.pdf,1926.08.24,1926.08.24 +5135,23-Jul-1926,Unprovoked,ITALY,Golfo di Genova in the Ligurian Sea,Varazze,Swimming,Augusto Casellato,M,20,fatal,True,Said to involve 6 to 7 m [20' to 23'] white shark,"NY Herald Tribune, 7/25/1926; A. De Maddalena; Anon. (1926a), Anon. (1926b); C. Moore, GSAF",1926.07.23-Casellato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.23-Casellato.pdf,1926.07.23,1926.07.23 +5136,12-Jul-1926,Boating,USA,New Jersey,20 miles off Seabright,Fishing,"boat, occupants: Andrew Peterson & Peter Jergerson",M,20,No injury to occupants,False,"""whiptail shark"" (thresher shark?)","Evening Sun, undated clipping",1926.07.12-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.12-boat.pdf,1926.07.12,1926.07.12 +5137,08-Jul-1926,Unprovoked,USA,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Swimming with dog near canning factory,Norman Piexotto,M,15,Leg & hand lacerated and dog bitten,False,1.5 m [5'] white shark or sevengill shark,"D. Miller & R. Collier, R. Collier, p. __; V.M. Coppleson (1958), pp. 156 & 252; [SAF Case #215]",1926.07.08-Peixotto_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.08-Peixotto_Collier.pdf,1926.07.08,1926.07.08 +5138,03-Jul-1926,Invalid,SPAIN,Sants-Montjic,"Casa Antunez Beach, Barcelona",Bathing,Sebastian Llopis Puges,M,15,No injury,False,"Questionable, 2m shark suspected","C. Moore, GSAF",1926.07.03-Puges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.07.03-Puges.pdf,1926.07.03,1926.07.03 +5139,18-May-1926,Unprovoked,USA,Hawaii,"Hale'iwa, O'ahu",Swimming,William J. Goins,M,15,fatal,True,"White shark, 3.8 m [12.5'] ","G.H. Balazs & A.K.H. Kam; J. Borg, p.70; L. Taylor (1993), pp.96-97",1926.05.18-Goins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.05.18-Goins.pdf,1926.05.18,1926.05.18 +5140,22-Apr-1926,Unprovoked,SOUTH ATLANTIC OCEAN,South of the Equator ,Steamship bound from Cape Town to Philadelphia,Fell overboard from SS Ripley Castle,Thomas (or Tony) Madison,M,26,When taken back on board 2 hours later both legs were bleeding from shark bites,False,"White shark, 3.8 m [12.5'] ","New York Times, 4/28/1926 ",1926.04.22-Madison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.22-Madison.pdf,1926.04.22,1926.04.22 +5141,07-Apr-1926,Unprovoked,USA,Hawaii,"Hilo Bay Yacht Club, Hilo, Hawai'i",Swimming,Mrs. Leonard Carlsmith,F,26,Right leg bitten thigh to heel,False,"According to Carlsmith, the shark's mouth was 3' wide","New York Tribune, 8/9/1953; V.M. Coppleson (1958), p.260; G.H. Balazs & A.K.H. Kam; J. Borg, p.70",1926.04.07-Carlsmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.04.07-Carlsmith.pdf,1926.04.07,1926.04.07 +5142,17-Mar-1926,Unprovoked,AUSTRALIA,South Australia,"West Beach, Brighton",Swimming ,Primrose Whyte,F,26,fatal,True,"White shark, 3.7 m [12'] ","V.M. Coppleson.S1.(1933); V.M. Coppleson (1958), pp.107 & 240; A. Sharpe, pp.119-120",1926.03.17-Whyte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.03.17-Whyte.pdf,1926.03.17,1926.03.17 +5143,26-Jan-1926,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Hamburg,Swimming,Mr. Bennett,M,26,Thigh lacerated,False,"""a blue shark""","M. Levine, GSAF",1926.01.26-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.26-Bennett.pdf,1926.01.26,1926.01.26 +5144,Jan-1926,Unprovoked,AUSTRALIA,Victoria,Victoria,Swimming,male,M,26,Leg lacerated,False,"""a blue shark""","V.M. Coppleson (1958), p.110",1926.01.00-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.01.00-Victoria.pdf,1926.01.00,1926.01.00 +5145,Summer of 1926,Unprovoked,MONACO,Bay of Monaco,Bay of Monaco,Swimming,boy,M,26,fatal,True,"""a blue shark""",Excerpt from news article dated 10/23/1926,1926.00.00.d-Monaco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.d-Monaco.pdf,1926.00.00.d,1926.00.00.d +5146,1926,Provoked,NEW ZEALAND,Cook Islands,Rarotonga,Shark hoisted on board liner Tahiti,Bosun of the ship,M,26,"Struck on head by shark’s tail, knocked unconscious & deep gash in head PROVOKED INCIDENT",False,"""a blue shark""","V.M. Coppleson (1958), pp.176-177",1926.00.00.c-bosun-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.c-bosun-Tahiti.pdf,1926.00.00.c,1926.00.00.c +5147,1926,Unprovoked,SINGAPORE,Sea View Beach,Sea View Beach,Dived onto shark from floating stage,woman,F,26,fatal,True,"""a blue shark""","V.M. Coppleson (1958), pp.148 & 265 (Note: ""A few days earlier, a Chinese fisherman had been bitten a few hundred yards from this spot."")",1926.00.00.b-womanSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.b-womanSingapore.pdf,1926.00.00.b,1926.00.00.b +5148,1926,Unprovoked,SOUTH AFRICA,Western Cape Province,Mossel Bay,Swimming to mail boat,Mr. Daniels,M,26,No details,UNKNOWN,"""a blue shark""","M. Joss; M. Levine, GSAF",1926.00.00.a-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1926.00.00.a-Daniels.pdf,1926.00.00.a,1926.00.00.a +5149,22-Nov-1925,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Floating on his back,Simeon (Samuel) Ettelton,M,55,fatal,True,"Tiger shark, 4 m [13'] female","V.M. Coppleson.W2, (1933); V.M. Coppleson (1958), pp.111 & 241; West Australia, 1/5/1967; A. Sharpe, pp.129-130; H. Edwards, pp.131-133",1925.11.22-Ettelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.22-Ettelton.pdf,1925.11.22,1925.11.22 +5150,Nov-1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",Floating on his back,Lawyer’s secretary,F,55,Laceration across abdomen,False,"Tiger shark, 4 m [13'] female","V.M. Coppleson (1958), pp.48 & 265",1925.11.00.b-secretary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.b-secretary.pdf,1925.11.00.b,1925.11.00.b +5151,Nov-1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",Floating on his back,American lawyer,M,55,Both calves lacerated,False,"Tiger shark, 4 m [13'] female","V.M. Coppleson (1958), pp.48 & 265",1925.11.00.a-Lawyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.11.00.a-Lawyer.pdf,1925.11.00.a,1925.11.00.a +5152,04-Sep-1925,Provoked,SPAIN,Valencia ,Valencia,Fishing,Pascual Gurran,M,55,Right hand bitten by hooked shark PROVOKED INCIDENT,False,"Tiger shark, 4 m [13'] female",C. Moore. GSAF,1925.09.04-Gurren-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.04-Gurren-Valencia.pdf,1925.09.04,1925.09.04 +5153,03-Sep-1925,Unprovoked,ENGLAND,Isle of Wight,Off Shanklin,Fishing,Mr. S. Page ,M,55,No injury but shark lifted boat out of the water,False,"Tiger shark, 4 m [13'] female",C. Moore. GSAF,1925.09.03-Page-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.09.03-Page-Isle-of-Wight.pdf,1925.09.03,1925.09.03 +5154,02-Aug-1925,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Swimming,Mrs. Walter H. Kahrs,F,55,"Multiple lacerations on both thighs, right buttock and hip",False,"Tiger shark, 4 m [13'] female",E. M. Burton,1925.08.02-MrsKahrs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.08.02-MrsKahrs.pdf,1925.08.02,1925.08.02 +5155,15-Jun-1925,Invalid,AUSTRALIA,Western Australia,"Princess Royal Harbor, near King George’s Sound",Swimming,"Geraldton Guardian, 6/18/1925 ",,55,Human arm found in shark,False,Shark involvement prior to death unconfirmed,"Geraldton Guardian, 6/18/1925 ",1925.06.15 Princess Royal Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.06.15 Princess Royal Harbor.pdf,1925.06.15,1925.06.15 +5156,May 1925,Unprovoked,USA,Puerto Rico,"Condado Beach, San Juan",Swimming,American University student,M,55,"Right arm nearly severed at shoulder, left wrist lacerated",False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), pp.48 & 265",1925.05.00-AmericanUniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.05.00-AmericanUniversityStudent.pdf,1925.05.00,1925.05.00 +5157,07-Mar-1925 or 27-Mar-1925,Unprovoked,AUSTRALIA,New South Wales,Coogee,Bathing in waist-deep water,Jack Dagworthy,M,16,"Left thigh bitten, leg surgically amputated ",False,Said to be a “small shark”,"V.M. Coppleson.N7.(1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.58-59; G.A. Llano, pp.160-164",1925.03.27-Dagworthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.27-Dagworthy.pdf,1925.03.27,1925.03.27 +5158,12-Mar-1925,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Swimming,Jack Canning,M,16,fatal,True,Said to be a “small shark”,"V.M. Coppleson.N16.(1933) V.M. Coppleson (1958), pp.76 & 230",1925.03.12-Canning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.12-Canning.pdf,1925.03.12,1925.03.12 +5159,10-Mar-1925,Unprovoked,PAPUA NEW GUINEA,Central Province,Hula,Swimming,a Papuan,M,A.M.,fatal,True,Said to be a “small shark”,"The Queenslander, 4/4/1925",1925.03.10-Papuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.03.10-Papuan.pdf,1925.03.10,1925.03.10 +5160,Reported 27-Jan-1925,Unprovoked,USA,Florida,"Miami Beach, Miami-Dade County",Swimming,Frank Chorie,M,A.M.,Lacerations to arm,False,Said to be a “small shark”,"Evening Independent, 1/27/1925",1925.01.27.R-Chorie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.27.R-Chorie.pdf,1925.01.27.R,1925.01.27.R +5161,08-Jan-1925,Unprovoked,CANADA,Vancouver,Second Narrows in Burrard Inlet,"Diving, repairing water main at depth of 90'", male,M,A.M.,"Injuries, if any, unknown, but afterwards diver stunned shark with iron bar",False,2.1 m [7'] shark,"ABCS; Manitoba Free-Press, 1/13/1925",1925.01.08-Vancouver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.01.08-Vancouver.pdf,1925.01.08,1925.01.08 +5162,1925,Unprovoked,FIJI,Viti Levu Island,"Suva Harbor, Suva",Diving for coins tossed from passenger ship,Fijian boy,M,A.M.,"Both arms bitten, surgically amputated",False,2.1 m [7'] shark,"V.M. Coppleson (1958), p.258",1925.00.00-Fijian boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1925.00.00-Fijian boy.pdf,1925.00.00,1925.00.00 +5163,25-Nov-1924,Unprovoked,MEXICO,Tamaulipas,Tampico,The Ward liner Esperanza stranded during a gale & she leapt overboard to rescue her dog which had been swept overboard.,Ofelia Rivas,F,A.M.,fatal,True,1.8 m shark,"Indianapolis Star, 12/15/1924",1924.11.25-Rivas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.25-Rivas.pdf,1924.11.25,1924.11.25 +5164,24-Nov-1924,Unprovoked,PANAMA,"2 to 3 miles off Taboguilla Island, Pacific Ocean",Pacific Anchorage off the Panama Canal,"Inebriated, woke from sleep and fell off deck into the water ",male,M,35,Knee bitten,False,1.8 m shark,Gorgas Hospital Records,1924.11.24-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.24-Panama.pdf,1924.11.24,1924.11.24 +5165,21-Nov-1924,Unprovoked,USA,Puerto Rico,Santurce,Bathing,Professor Winslow,M,35,fatal,True,1.8 m shark,"R. W. Kramer; V.M. Coppleson (1958), pp.48 & 264",1924.11.21-Winslow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.11.21-Winslow.pdf,1924.11.21,1924.11.21 +5166,Reported 31-Oct-1924,Provoked,FRENCH POLYNESIA,Tuamotus,Rangiroa,Pearl diving,Huri-Huri,M,35,Abrasions PROVOKED ATTACK,False,1.8 m shark,F. O'Brien in Atolls of the Sea,1924.10.31-Huri-Huri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.31-Huri-Huri.pdf,1924.10.31.R,1924.10.31.R +5167,18-Oct-1924,Unprovoked,AUSTRALIA,Victoria,Port Melbourne,Bathing,Fred White,M,35,Leg bitten,False,10' shark,"Coppleson.V1. (1933); Melbourne Herald, 1/7/1925",1924.10.18-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.10.18-White.pdf,1924.10.18,1924.10.18 +5168,31-Jul-1924,Unprovoked,USA,South Carolina,"Folly Island, near Charleston",Standing,Lewis Kornahrens,M,35,Left knee & leg bitten. (Tooth fragment recovered from kneecap),False,"Mako shark, 1.9 m [6.5']. Tooth fragment recovered & identified by J.T. Nichols.","E. M. Burton; E.W. Gudger (1935); V.M. Coppleson (1958), pp.152 & 252; J. Randall, p.350 in Sharks & Survival",1924.07.31-Kornahrens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.31-Kornahrens.pdf,1924.07.31,1924.07.31 +5169,14-Jul-1924,Provoked,ENGLAND,Dorset,Weymouth,Fishing for mackerel,2 fishermen,M,35,Arms broken by hooked shark PROVOKED INCIDENT,False,12' shark,"C. Moore, GSAF; The Times, 7/14/1924",1924.07.14-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.14-Weymouth.pdf,1924.07.14,1924.07.14 +5170,04-Jul-1924,Boating,USA,California,"Newport Beach, Orange County",Fishing,"18' boat, occupants Richard Gunther & Donald Cavanaugh",M,? & 14,"No injury, shark tore hole in the side of the boat",False,12' shark,"The Daily Pilot, 3/6/2010, citing The Times 7/5/1924)",1924.07.04-boat-NewportBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.07.04-boat-NewportBeach.pdf,1924.07.04,1924.07.04 +5171,18-Jun-1924,Provoked,USA,Florida,"Bayboro, Pinellas County",Removing shark from a net,Robert Martin,M,? & 14,Netted shark made a5-inch incision above the knee PROVOKED INCIDENT,False,12' shark,"Evening Independent, 6/19/1924",1924.06.18-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.06.18-Martin.pdf,1924.06.18,1924.06.18 +5172,25-Apr-1924,Unprovoked,AUSTRALIA,New South Wales,Kiama,"Fishing, fell in water & swimming strongly to shore",Ernest Conroy,M,20,fatal,True,12' shark,"V.M. Coppleson (1933); G.P. Whitley, p.266",1924.04.25-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.25-Conroy.pdf,1924.04.25,1924.04.25 +5173,22-Apr-1924,Unprovoked,PANAMA,150 miles offshore,150 miles offshore,"Floating, after falling or jumping off the Standard Oil tanker Frederick W. Weller",Claremont L. Staden,M,21,"Reported to have had ""2 fights with sharks"" before being rescued by the British freighter Dorsetafter 23 hours in the water",False,12' shark,"NY Times, 5/4/1924, p.14, col.3",1924.04.22-Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.22-Staden.pdf,1924.04.22,1924.04.22 +5174,20-Apr-1924,Invalid,AUSTRALIA,Western Australia,Fremantle,Swimming ,Noel Knight,M,21,Abrasions,False,Questionable,"V.M. Coppleson (1933); G.P. Whitley (1951), p.185, both considered it a ""doubtful attack""",1924.04.20-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.04.20-Knight.pdf,1924.04.20,1924.04.20 +5175,Reported 28-Mar-1924,Unprovoked,SOLOMON ISLANDS,Central Province,Savo Island,Swimming,male,M,21,"Left arm severed, leg bitten",False,Questionable,"Cairns Post, 3/28/1924",1924.03.28.R-Savo-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.28.R-Savo-Island.pdf,1924.03.28.R,1924.03.28.R +5176,24-Mar-1924,Boating,SPAIN,Galica,Sisargas Islands,Fishing,Boat owned by Ricardo Laneiro,,21,"No injury to occupants, shark bit boat",False,3.5 m shark,"C. Moore, GSAF",1924.03.24.Sisargas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.03.24.Sisargas.pdf,1924.03.24,1924.03.24 +5177,13-Feb-1924,Unprovoked,AUSTRALIA,New South Wales,Bronte,Bathing in 5' of water,Nita Derritt,F,30,"Legs severely bitten, surgically amputated",False,3.5 m shark,"V.M. Coppleson.N6. (1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.57-58",1924.02.13-Derritt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.13-Derritt.pdf,1924.02.13,1924.02.13 +5178,08-Feb-1924,Invalid,AUSTRALIA,Queensland,Currumbin,Bathing,Frederick Dullroy,M,30,Probable drowning & scavenging,False,Shark involvement prior to death unconfirmed,11/02/1924,1924.02.08-Dullroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.02.08-Dullroy.pdf,1924.02.08,1924.02.08 +5179,29-Jan-1924,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"South Beach, Durban",Swimming,Johannes Karl Schultz,M,22,fatal,True,Shark involvement prior to death unconfirmed,"M. Levine, GSAF",1924.01.29-Schultz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.29-Schultz.pdf,1924.01.29,1924.01.29 +5180,25-Jan-1924,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"St. George’s Strand, Port Elizabeth",Swimming,male,M,22,Foot lacerated,False,Shark involvement prior to death unconfirmed,"Eastern Province Herald, 1/28/1924, M. Levine, GSAF",1924.01.25-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.25-StGeorgesStrand.pdf,1924.01.25,1924.01.25 +5181,09-Jan-1924,Unprovoked,AUSTRALIA,New South Wales,"Near Asbestos Works, Camellia, Parramatta River",Had just dived into water & was swimming,Charles Brown,M,16,fatal,True,3 m [10'] shark,"V.M. Coppleson.N.2. (1933); V.M. Coppleson (1958), pp.69 & 230",1924.01.19-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1924.01.19-Brown.pdf,1924.01.19,1924.01.19 +5182,12-Dec-1923,Unprovoked,AUSTRALIA,New South Wales,"Murwillumbah, Tweed River",Swimming,Leo Wohill,M,16,Lacerations to leg,False,3 m [10'] shark,"Barrier Miner, 12/12/1923",1923.12.12-Wohill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.12-Wohill.pdf,1923.12.12,1923.12.12 +5183,02-Dec-1923,Unprovoked,AUSTRALIA,New South Wales,"Urunga, Belliger Heads","Fishing, standing in waist-deep water",James Elton,M,16,fatal,True,3 m [10'] shark,"Sydney Morning Herald, 12/5/1923 ",1923.12.02 - Elton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.12.02 - Elton.pdf,1923.12.02,1923.12.02 +5184,23-Nov-1923,Unprovoked,AUSTRALIA,Western Australia,"Condon, 88 km NE of Port Hedland",Dry shelling,"Selim and Dea Opre, Koepang Islanders",M,16,fatal,True,3 m [10'] shark,"Western Mail, 11/29/1923; V.M. Coppleson (1933); G.P. Whitley (1940), p.260; G.P. Whitley (1951), p 185; A. Sharpe, p.129",1923.11.23-KoepangIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.23-KoepangIslanders.pdf,1923.11.23,1923.11.23 +5185,02-Nov-1923,Invalid,AUSTRALIA,New South Wales,Bellinger Head,Fishing,male,M,16,fatal,True,Shark involvement suspected but not confirmed,"V.M. Coppleson, p.452; G.P. Whitley",1923.11.02-BellingerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.11.02-BellingerHead.pdf,1923.11.02,1923.11.02 +5186,20-Oct-1923,Invalid,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Sailing,male,M,16,"He failed to return, his body was recovered 11/9/1922; chest & abdomen had been bitten by shark/s",False,Shark involvement prior to death unconfirmed,V.M. Coppleson (1933);,1923.10.20-BotanyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.20-BotanyBay.pdf,1923.10.20,1923.10.20 +5187,17-Oct-1923,Boating,AUSTRALIA,New South Wales," Black Head, south of Taree",Fishing,15' boat,,16,"No injury to occupants, shark bit boat",False,"""a very large shark""",V.M. Coppleson (1933); SAF Case #494,1923.10.17-boat-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.17-boat-Taree.pdf,1923.10.17,1923.10.17 +5188,16-Oct-1923,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Pearl diving,"Amano, a Japanese diver",M,16,"Arm severed, but survived",False,"""a very large shark""","V.M. Coppleson (1958), p.241; J. Green, p.32",1923.10.16-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.10.16-Amano.pdf,1923.10.16,1923.10.16 +5189,08-Aug-1923,Unprovoked,GUYANA,Demerara County,Off the Demerara River ,Fishing,Charles Blair,M,16,Puncture wounds to left leg,False,"""a very large shark""","Gleaner (Jamaica), 9/6/1923",1923.08.08-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.08.08-Blair.pdf,1923.08.08,1923.08.08 +5190,Reported 02-Jul-1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving for pearl,aboriginal male,M,16,fatal,True,"""a very large shark""","Brisbane Courer, 7/2/1923",1923.07.02-Mildred-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.07.02-Mildred-Diver.pdf,1923.07.02.R,1923.07.02.R +5191,16-Jun-1923,Boating,AUSTRALIA,New South Wales,Bellambi Reef,"After rowing skiff was holed by shark, he was attempting to swim ashore",J. Rigby,M,16,fatal,True,"""a very large shark""","V.M. Coppleson (1933); G. P. Whitley; V.M. Coppleson (1958), p.185",1923.06.16-Rigby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.16-Rigby.pdf,1923.06.16,1923.06.16 +5192,06-Jun-1923,Boating,MEXICO,Vera Cruz,Outside Vera Cruz Harbor,Dismantling cable buoys of the cable ship All America,"boat, occupants; Carl Sjoistrom & 2 other crew",,16,"No injury to occupants, shark rammed boat",False,"""a very large shark""","NY Herald Tribune, undated clipping",1923.06.06-AllAmerica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.06.06-AllAmerica.pdf,1923.06.06,1923.06.06 +5193,Reported 23-May-1923,Unprovoked,AUSTRALIA,Western Australia,"Southgates, near Geraldton",Wading,Percy Evensen,M,16,Minor puncture wounds to foot,False,"""a very large shark""","The West Australian, 5/23/1923",1923.05.23.R-Evensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.23.R-Evensen.pdf,1923.05.23.R,1923.05.23.R +5194,22-May-1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving?,Keizo Masoyo,M,16,fatal,True,"""a very large shark""","Northern Miner, 5/27/1923",1923.05.22-Masoyo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.05.22-Masoyo.pdf,1923.05.22,1923.05.22 +5195,18-Mar-1923,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Diving,Jellannie Solomon,M,16,Lacerations to right thigh and knee,False,"""a very large shark""","Northern Miner, 3/19/1923",1923.03.18-Solomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.03.18-Solomon.pdf,1923.03.18,1923.03.18 +5196,Feb-1923,Unprovoked,USA,Puerto Rico,San Juan,Swimming ,Puerto Rican,M,25,"Right calf, right side of abdomen & left wrist & hand bitten",False,"""a very large shark""","V.M. Coppleson (1958), pp.48 & 265",1923.02.00.a-PuertoRican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.02.00.a-PuertoRican.pdf,1923.02.00,1923.02.00 +5197,27-Jan-1923,Invalid,AUSTRALIA,Western Australia,Bunbury,Swimming ,John Hayes,M,25,Death may have been due to drowning,False,Shark involvement prior to death was not confirmed,"The Register, 2/3/1923",1923.01.27.b-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.b-Hayes.pdf,1923.01.27.b,1923.01.27.b +5198,27-Jan-1923,Unprovoked,AUSTRALIA,Western Australia,"In Swan River at Freshwater Bay, Claremont, 5 miles from river mouth",Swimming,Charles Topsail Robertson,M,13,fatal,True,Shark involvement prior to death was not confirmed,"V.M. Coppleson.W1.(1933) V.M. Coppleson (1958), pp.111 & 241; A. Sharpe, p.129",1923.01.27.a-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.27.a-Robertson.pdf,1923.01.27.a,1923.01.27.a +5199,14-Jan-1923,Invalid,CUBA,Caribbean Sea,20 miles from Havana,seaplane Columbus ditched in the sea,"Edwin F. Atkins, Jr.",M,13,"Although this incident is listed elsewhere as a shark attack, the account of the disaster suggests the 4 who perished probably drowned. Five people survived",False,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","W.E., pp.152-156; L. Schultz & M. Malin, p.557",1923.01.13-seaplaneColumbus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.01.13-seaplaneColumbus.pdf,1923.01.13,1923.01.13 +5200,1923,Boating,USA,New Jersey,"Sea Bright, Monmouth County",Fishing,"boat, occupant: Richard Rodney",M,13,No injury to occupant Shark struck boat,False,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","NY Herald Tribune, 8/27/1931; L. Schultz & M. Malin, p.555",1923.00.00.c - NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.c - NJ fisherman.pdf,1923.00.00.c,1923.00.00.c +5201,1923-1924,Unprovoked,PHILIPPINES, Manila Bay,Fort Drum,Fishing,male,M,13,fatal,True,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","Pinchot in To the South Seas, citing M. Craig who reports 6 incidents in 1923-24 including this one",1923.00.00.b-FortDrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.b-FortDrum.pdf,1923.00.00.b,1923.00.00.b +5202,1923,Provoked,USA,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,13,Shark's tail broke his leg. PROVOKED INCIDENT,False,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","Ref in New York Herald Tribune, 8/23/1960; V.M. Coppleson (1962), p.155",1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,1923.00.00.a,1923.00.00.a +5203,1923,Provoked,USA,New Jersey,Ocean City (offshore),Hoisting shark aboard fishing boat,male,M,13,Shark's tail broke his leg. PROVOKED INCIDENT,False,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","Ref in New York Herald Tribune, 8/23/1960; V.M. Coppleson (1962), p.155",1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1923.00.00.a-NJ fisherman.pdf,1923.00.00.a,1923.00.00.a +5204,14-Dec-1922,Unprovoked,USA,Puerto Rico,San Juan,Bathing,Katherine W. Bourne,F,13,fatal,True,"Atkins' remains were recovered from a dusky shark, C. obscurus, by Capt. W. F. Young, shark fisherman","L.A. Times, 12/17/1922; V.M. Coppleson (1958), pp.48 & 265",1922.12.14-KatherineBourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.14-KatherineBourne.pdf,1922.12.14,1922.12.14 +5205,05-Dec-1922,Unprovoked,AUSTRALIA,Queensland,Pialba Beach near Maryborough,Bathing in 3' to 4' of water,Alfred Gassman,M,19,fatal,True,"2.7 m [9'] ""blue"" shark","Coppleson.Q4.(1933); V.M. Coppleson (1958), pp.92 & 237 ",1922.12.05-Gassman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.12.05-Gassman.pdf,1922.12.05,1922.12.05 +5206,29-Sep-1922,Unprovoked,BARBADOS,Lucy,Pie Corner,Fishing,Master Hurley,M,16,fatal,True,"2.7 m [9'] ""blue"" shark","Kingston Gleaner, 10/17/1922",1922.09.29-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.29-Barbados.pdf,1922.09.29,1922.09.29 +5207,29-Oct-1922,Invalid,AUSTRALIA,New South Wales,"Botany Bay, Sydney",Sailing,H.R.W.,M,16,fatal,True,Shark involvement prior to death unconfirmed,"R.D. Weeks, GSAF",1922.10.29-HRW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.10.29-HRW.pdf,1922.10.29,1922.10.29 +5208,28-Sep-1922,Unprovoked,USA,Hawaii,"Keawanui, Kamalo, Moloka'i","Freediving, inspecting Kaunakakai wharf construction after blasting & dredging ","male, Territorial Surveyor",M,16,Survived,False,Shark involvement prior to death unconfirmed,"Honolulu Advertiser, 8/19/1953; Tribune Herald (Hilo), 4/14/1963; V.M. Coppleson (1958), p.259; L. Taylor (1993), pp.96-97",1922.09.28-TerritorialSurveyor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.28-TerritorialSurveyor.pdf,1922.09.28,1922.09.28 +5209,Reported 26-Sep-1922,Unprovoked,ENGLAND,East Yorkshire,Hornsea,Swimming ,Mr.P. H. Lee,M,16,fatal,True,Shark involvement prior to death unconfirmed,"Western Argus, 9/26/1922",1922.09.26.R-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.26.R-Lee.pdf,1922.09.26.R,1922.09.26.R +5210,Reported 21-Sep-1922,Boating,USA,Massachusetts,Nahant,Fishing,"boat, occupants: Mr. Goslin & 4 passengers",,16,"No injury to occupants, shark splintered stern",False,"""A pack of 6 sharks""","L. Schultz & M. Malin, p.554",1922.09.21-GoslinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.09.21-GoslinBoat.pdf,1922.09.21.R,1922.09.21.R +5211,19-Jul-1922,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Fishing,Francis L'Engle,M,16,Leg bitten,False,"""A pack of 6 sharks""","Palm Beach Post, 7/19/1932",1922.07.19-L'Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.07.19-L'Engle.pdf,1922.07.19,1922.07.19 +5212,17-Jun-1922,Unprovoked,USA,Florida,"Municipal Pier, St. Petersburg, Tampa bay",Floating,Dorothy MacLatchie,F,18,fatal,True,1.8 m [6'] shark,"V.M. Coppleson, (1958) pp.155 & 252",1922.06.17-MacLatchie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.06.17-MacLatchie.pdf,1922.06.17,1922.06.17 +5213,24-May 1922,Unprovoked,JAMAICA,Westmoreland Parish,Savanna-la-Mar,Swimming,Sausse Leon,M,19,fatal,True,6' shark,"Daily Gleaner, 5/25/1922; H.E. Lloyd, NY Times, 6/22/1922",1922.05.24-Leon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.24-Leon.pdf,1922.05.24,1922.05.24 +5214,06-May-1922,Unprovoked,SOUTH AFRICA,Western Cape Province,"Simon’s Town, False Bay",Swimming,Edward G. Pells,M,18,Abdomen & thigh bitten,False,"White shark, 12', identity confirmed by tooth fragment, witness and photograph of captured shark ","M. Levine, GSAF; E.Wilson",1922.05.06-Pells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.05.06-Pells.pdf,1922.05.06,1922.05.06 +5215,26-Apr-1922,Unprovoked,AUSTRALIA,New South Wales,Hawkesbury River,Swimming,William A. Munro,M,18,fatal,True,"White shark, 12', identity confirmed by tooth fragment, witness and photograph of captured shark ","Argus, 4/29/1922",1922.04.26-Munro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.04.26-Munro.pdf,1922.04.26,1922.04.26 +5216,20-Mar-1922,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Fishing,"Daily Gleaner, 3/21/1922, p.8",M,18,Survived,False,"White shark, 12', identity confirmed by tooth fragment, witness and photograph of captured shark ","Daily Gleaner, 3/21/1922, p.8",1922.03.20-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.20-Jamaica.pdf,1922.03.20,1922.03.20 +5217,13-Mar-1922,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Standing,Adeline Lopez,F,14,fatal,True,2.7 m [9'] shark later captured by Mitchell-Hedges,"Daily Gleaner, 3/21/1922, p.8; H. E. Lloyd, N.Y. Times, 6/22/1922; F.A. Mitchell-Hedges (1928), pp.95-100",1922.03.13-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.13-Lopez.pdf,1922.03.13,1922.03.13 +5218,02-Mar-1922,Unprovoked,AUSTRALIA,New South Wales,Coogee,Bathing in knee-deep water,Mervyn Gannon,M,21,fatal,True,"White shark, 2.4 m [8'] ","V.M. Coppleson.N5. (1933); V.M. Coppleson (1958), pp.63 & 230; A. Sharpe, pp.56-57; G.A. Llano, pp.160-161",1922.03.02-Gannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.03.02-Gannon.pdf,1922.03.02,1922.03.02 +5219,Reported 02-Feb-1922,Invalid,AUSTRALIA,New South Wales,"Bilgola Beach, Sydney",Swimming,Norman Whiteley,M,21,"Disappeared whiile swimming alone, body parts recovered, but shark involvement prior to death unconfirmed",False,Shark involvement prior to death unconfirmed,"Cairns Post, 2/33/1922",1922.02.22.R-Whiteley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.22.R-Whiteley.pdf,1922.02.22.R,1922.02.22.R +5220,04-Feb-1922,Unprovoked,AUSTRALIA,New South Wales,Coogee ,Swimming,Milton Coughlan,M,18,fatal,True,White shark,"V.M. Coppleson.N.4. (1933); V.M. Coppleson (1958), pp.62 & 230; A. Sharpe, pp.53-55",1922.02.04-Coughlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.02.04-Coughlan.pdf,1922.02.04,1922.02.04 +5221,Reported 28-Jan-1922,Unprovoked,IRAQ,Shatt-al Arab River,Shatt-al Arab River,Bathing,Haroun-al-Raschid,M,18,fatal,True,White shark,"The Queenslander, 1/28/1922",1922.01.28.R-Haroun-al-Raschid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.28.R-Haroun-al-Raschid.pdf,1922.01.28.R,1922.01.28.R +5222,15-Jan-1922,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Swimming ,Robert Milroy,M,54,fatal,True,White shark,"V.M. Coppleson.Q5. (1933); V.M. Coppleson (1958), pp. 90 & 229",1922.01.15-Milroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.15-Milroy.pdf,1922.01.15,1922.01.15 +5223,13-Jan-1922,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Standing,Alwyn Bevan,M,54,Small laceration on left thigh & swim costume torn,False,Grey nurse shark?,"V.M. Coppleson.N15. (1933); V.M. Coppleson (1958), p.229",1922.01.13-Bevan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.13-Bevan.pdf,1922.01.13,1922.01.13 +5224,04-Jan-1922,Unprovoked,AUSTRALIA,New South Wales,"Stockton Beach, Newcastle",Surfing,John Manning Rowe,M,26,fatal,True,Grey nurse shark?,"The Argus, 1/9/1922; V.M. Coppleson (1933), N15",1922.01.04-JManningRowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1922.01.04-JManningRowe.pdf,1922.01.04,1922.01.04 +5225,11-Dec-1921,Unprovoked,AUSTRALIA,Queensland,Fitzroy River at Rockhampton,Swimming,Robert Murphy,M,20,Survived,False,Grey nurse shark?,"The Queenslander, 12/17/ 1921",1921.12.11-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.12.11-Murphy.pdf,1921.12.11,1921.12.11 +5226,27-Nov-1921,Unprovoked,AUSTRALIA,Queensland,"Gay’s Corner, Bulimba Reach of Brisbane River",Fell from his father's back into the water,George Jack,M,8,fatal,True,Grey nurse shark?,"V.M. Coppleson (1958), pp.92 & 237",1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,1921.11.27.b,1921.11.27.b +5227,27-Nov-1921,Unprovoked,AUSTRALIA,Queensland,"Gay’s Corner, Bulimba Reach of Brisbane River","Wading to dinghy, carrying his son",Herbert Jack,M,40,"Right hip, buttock, elbow, arm & wrist bitten",False,Grey nurse shark?,"V.M. Coppleson.Q3. (1933); V.M. Coppleson (1958), pp.92 & 237",1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.27.a-b-Jack.pdf,1921.11.27.a,1921.11.27.a +5228,Reported 15-Nov-1921,Unprovoked,FIJI,Viti Levu Island,Rewa River,Swimming,"Richmond River Express, 12/2/1921",,40,fatal,True,Grey nurse shark?,"Richmond River Express, 12/2/1921",1921.11.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.11.15.R-Fiji.pdf,1921.11.15.R,1921.11.15.R +5229,12-Oct-1921,Unprovoked,AUSTRALIA,Queensland,Off Hinchinbrook Island,Diving for beche-de-mer ,aboriginal diver,M,40,Lacerations to right arm & chest,False,Grey nurse shark?,"Brisbane Courier, 10/15/1921",1921.10.12-Hinchinbrook-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.12-Hinchinbrook-Island.pdf,1921.10.12,1921.10.12 +5230,04-Oct-1921,Unprovoked,AUSTRALIA,Queensland,Barrier Reef,Diving for beche-de-mer,Yoichi Schamok,M,22,fatal,True,Grey nurse shark?,"Cairns Post, 10/17/1921",1921.10.04-Schamok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.10.04-Schamok.pdf,1921.10.04,1921.10.04 +5231,Sep-1921,Provoked,ENGLAND,Dorset,Weymouth,Fishing,Roberts,M,22,Leg bitten by shark he was attempting to capture PROVOKED INCIDENT,False,"Blue shark, 4' ","Argus, 10/8/1921",1921.09.00-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.09.00-Roberts.pdf,1921.09.00,1921.09.00 +5232,Reported 29-Aug-1929,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Fishing,Oku Hayadi,M,22,Lacerations to arm,False,"Blue shark, 4' ","The Register, 8/29/1921",1921.08.29.R-Hayadi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.29.R-Hayadi.pdf,1921.08.29.R,1921.08.29.R +5233,28-Aug-1921,Unprovoked,PHILIPPINES,Luzon Island,"Fort Frank, Manila Bay",Swimming,"Marcellus T. Abernathy, a US soldier in the 9th Coast Artillery",M,21,fatal,True,"Blue shark, 4' ","New York Times, 9/1/1921",1921.08.28-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.28-Abernathy.pdf,1921.08.28,1921.08.28 +5234,21-Jul-1921,Unprovoked,CUBA,Havana Harbor,Havana Harbor,Fell overboard,Robert Ellis,M,21,fatal,True,"Blue shark, 4' ","Chicago Tribune, 7/22/1921",1921.07.21-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.07.21-Ellis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1921.07.21-Ellis.pdf,1921.07.21,1921.07.21 +5235,Reported 11-Jan-1921,Invalid,PHILIPPINES,"Cavite Province, Luzon","Cavite Province, Luzon",Fell overboard,"Reno Evening Gazette, 1/11/1921",,21,Buttons & shoes found in shark caught in fish trap,False,Questionable,"Reno Evening Gazette, 1/11/1921",1921.01.11.R-Cavite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.01.11.R-Cavite.pdf,1921.01.11.R,1921.01.11.R +5236,29-Nov-1920,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Wading,Reginald Gibbs,M,21,Lacerations to leg & hand,False,4' to 5' shark,"Geraldton Guardian, 12/4/1920 ",1920.11.29-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.29-Gibbs.pdf,1920.11.29,1920.11.29 +5237,22-Aug-1921,Unprovoked,HAITI,Cape Haitien,Marine Dock,Dived into a school of baitfish,"E.C.P, a U.S. Marine",M,21,fatal,True,Comrades saw shark's tail appear about 5' away,"V.M. Coppleson (1958), p.259; Baker & Rose, pp.881-3",1921.08.22-ECP.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1921.08.22-ECP.pdf,1921.08.22,1921.08.22 +5238,22-Nov-1920,Unprovoked,AUSTRALIA,Western Australia,Cottesloe Beach,Standing,T.F. Davies,M,21,"Minor injuries to leg, hand & fingers",False,"15* to 24"" dog shark","Daily News, 11/24/1920",1920.11.22-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.22-Davies.pdf,1920.11.22,1920.11.22 +5239,04-Nov-1920,Sea Disaster,PHILIPPINES,Leyte,Leyte,The coastwise steamer San Basilio capsized in a typhoon,male,M,21,fatal,True,"15* to 24"" dog shark","Oakland Tribune, 11/11/1920",1920.11.04-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.11.04-Philippines.pdf,1920.11.04,1920.11.04 +5240,14-Jul-1920,Invalid,USA,New York,"Woodcliff Channel, Freeport, Long Island",Swimming ,Thomas McCann,M,30,Thought to have been taken by a shark. Body was not recovered,False,Questionable,"V.M. Coppleson (1958), p.151 ",1920.07.14-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.14-McCann.pdf,1920.07.14,1920.07.14 +5241,Reported 06-Jul-1920,Unprovoked,AUSTRALIA,Torres Strait,200 miles from MacKay,Diving for trochus shell,Japanese diver,M,30,Severe lacerations to right shoulder & arm,False,Questionable,"Brisbane Courier, 7/6/1920",1920.07.05.R-Japanese-DIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.07.05.R-Japanese-DIver.pdf,1920.07.05.R,1920.07.05.R +5242,29-Jun-1920,Unprovoked,USA,Florida,"Englewood Beach, Charlotte County",Swimming ,Hayward Green,M,13,Knee & thigh bitten,False,Questionable,"E. Clark, GSAF",1920.06.29-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.29-Green.pdf,1920.06.29,1920.06.29 +5243,27-Jun-1920,Provoked,CANADA,Halifax,"Slaunwhite's Ledge, Hubbard Cove",Harpooned shark,occupants: John Chandler & Walter Winters,,13,"No injury to occupants, but shark struck boat with such force that Chandler was flung overboard. PROVOKED INCIDENT",False,15',H. Piers (1933),1920.06.27-Hubbard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.06.27-Hubbard.pdf,1920.06.27,1920.06.27 +5244,08-Mar-1920,Unprovoked,AUSTRALIA,Queensland,"Between Bay Rock & Magnetic Island, Cleveland Bay","Boat capsized, swimming to shore",Alfred Burgess,M,20,"Tossed in air by shark, sustained abrasions",False,15',"H. Miller (1920); V.M. Coppleson Q.2.(1933); V.M. Coppleson (1958), pp.43, 44, 237; A. Sharpe, p.24",1920.03.08-Burgess.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.03.08-Burgess.pdf,1920.03.08,1920.03.08 +5245,Reported 24-Jan-1920,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Diving,male,M,20,Lacerations to foot,False,15',"The Argus, 1/24/1920",1920.01.24.R.b-TorresStrait-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.b-TorresStrait-diver.pdf,1920.01.24.R.b,1920.01.24.R.b +5246,03-Feb-1920,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Zwartkops River,Floating face down,Thea Toft,F,18,Abdomen bitten,False,15',"T. Toft, M. Levine, GSAF",1920.02.03-Toft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.02.03-Toft.pdf,1920.02.03,1920.02.03 +5247,Reported 24-Jan-1920,Unprovoked,AUSTRALIA,Torres Strait,Arlington Reef,Free diving,Japanese diver,M,18,fatal,True,15',"The Argus, 1/24/1920",1920.01.24.R.a-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.24.R.a-JapaneseDiver.pdf,1920.01.24.R.a,1920.01.24.R.a +5248,15-Jan-1920,Unprovoked,AUSTRALIA,New South Wales,"Throsby Creek, Newcastle",Swimming ,David Miller,M,12,fatal,True,15',"V.M. Coppleson.N14. (1933); V.M. Coppleson (1958), p.229",1920.01.15-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.01.15-Miller.pdf,1920.01.15,1920.01.15 +5249,1920s,Unprovoked,JAMAICA,Westmoreland Parish,Savanna-la-Mar,Jumped overboard,sailor,M,12,fatal,True,15',"Daily Gleaner, 4/14/1969",1920.00.00.c-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.c-Jamaica.pdf,1920.00.00.b,1920.00.00.b +5250,1920,Unprovoked,NEW ZEALAND,North Island,"Stanley Bay, Auckland Harbor",Jumped overboard,female,F,12,"""Recovered""",False,15',"V.M. Coppleson (1958), p.262",1920.00.00.b-StanleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.b-StanleyBay.pdf,1920.00.00.b,1920.00.00.b +5251,1920,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Tugela River,Splashing,Zulu male,M,12,Thigh & buttocks bitten. Not known if he survived.,False,15',J.L.B. Smith,1920.00.00.a-TugelaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1920.00.00.a-TugelaRiver.pdf,1920.00.00.a,1920.00.00.a +5252,Reported 30-Dec-1919,Unprovoked,AUSTRALIA,Queensland,Brible Island,Swimming,John Brothy,M,29,Lacerations to left leg,False,15',"Brisbane Courier, 12/30/1919",1919.12.30.R-Brothy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.30.R-Brothy.pdf,1919.12.30.R,1919.12.30.R +5253,07-Dec-1919,Unprovoked,AUSTRALIA,New South Wales,"Pelican Island, Macleay River",Swimming,James Ridley,M,47,fatal,True,15',"Sydney Morning Herald, 12/9/1919; V.M. Coppleson.N.20.(1933",1919.12.07-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.12.07-Ridley.pdf,1919.12.07,1919.12.07 +5254,18-Nov-1919,Unprovoked,AUSTRALIA,Northern Territory,Darwin,Sitting in a boat,a sailor,M,47,Lacerations to buttocks,False,15',G.P. Whitley; V.M. Coppleson (1933) ,1919.11.18-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.11.18-sailor.pdf,1919.11.18,1919.11.18 +5255,12-Sep-1919,Unprovoked,COSTA RICA,Turtle Bogue,Where Colorado River enters the sea,Small vessel with 13 men on board capsized crossing the bar and 6 men drowned. The 7 survivors were swimming to shore,6 males,M,47,fatal,True,15',"Pinchot, p.85-86",1919.09.12-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.09.12-CostaRica.pdf,1919.09.12,1919.09.12 +5256,10-Aug-1919,Unprovoked,USA,Florida,"Gadsden Point, Tampa Bay",Swimming,George (or Edward) Eaton,M,47,Laceration to left thigh,False,15',"Miami Metropolis, 8/14/1919",1919.08.10-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.08.10-Eaton.pdf,1919.08.10,1919.08.10 +5257,29-May-1919,Unprovoked,USA,South Carolina,"James Island Sound, Charleston","""Swimming vigorously""",W.E. Davis,M,47,Left foot bitten & abraded,False,15',E. M. Burton,1919.05.29-WE-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.05.29-WE-Davis.pdf,1919.05.29,1919.05.29 +5258,06-Apr-1919,Unprovoked,USA,Florida,"Florida Keys 25ºN,82ºW",Knocked into the water,"fisherman, a companion of J. Rose & W. Koegler",M,47,fatal,True,"3.7 m [12'], 1200-lb shark. Shark caught & its jaw exhibited at the Carnegie Museum","Gazette (Pittsburgh), no date",1919.04.06-Rose-Koegler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.04.06-Rose-Koegler.pdf,1919.04.06,1919.04.06 +5259,16-Mar-1919,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Cutter capsized,5 cadets from the Naval training ship Tingara,M,47,Shark involvement not confirmed,UNKNOWN,Shark involvement prior to death unconfirmed,"The Mercury, 3/18/1919",1919.03.16-Cadets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.03.16-Cadets.pdf,1919.03.16,1919.03.16 +5260,17-Jan-1919,Unprovoked,AUSTRALIA,New South Wales,Newcastle Beach,Swimming,Douglas Arkell,M,47,"Multiple injuries, left leg surgically amputated at knee",False,3.7 m to 4.3 m [12' to 14'] shark,"V.M. Coppleson.N13. (1933); V.M. Coppleson (1958), p.76 & 229",1919.01.17-Arkell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.17-Arkell.pdf,1919.01.17,1919.01.17 +5261,15-Jan-1919,Unprovoked,NEW ZEALAND,South Island,"Tahuna Beach, Nelson",Swimming,female,F,47,Leg bitten,False,3.7 m to 4.3 m [12' to 14'] shark,"Marlborough Express, 1/16/1919",1919.01.15-Tahuna-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.15-Tahuna-Beach.pdf,1919.01.15,1919.01.15 +5262,09-Jan-1919,Unprovoked,AUSTRALIA,New South Wales,"Sirius Cove, Sydney Harbor",Wading,Richard Simpson,M,13,fatal,True,12' shark,"T. Peake, GSAF; V.M. Coppleson.N1.(1933); V.M. Coppleson (1958), pp.70 & 229; A. Sharpe, p.71",1919.01.09-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.09-Simpson.pdf,1919.01.09,1919.01.09 +5263,05-Jan-1919,Unprovoked,AUSTRALIA,Queensland,"Ross River, Townsville",Wading (shrimping),Jack Hoey,M,38,fatal,True,12' shark,"V.M. Coppleson.Q1.(1933); V.M. Coppleson (1958), pp.90 & 237",1919.01.05-Hoey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.01.05-Hoey.pdf,1919.01.05,1919.01.05 +5264,Reported to have taken place in 1919,Boating,ITALY,Savona,Savona,Fishing,"C. Moore, GSAF",M,38,No injury,False,13' shark,"C. Moore, GSAF",1919.00.00.R-Savona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00.R-Savona.pdf,1919.00.00.R,1900.00.00.R +5265,1919,Unprovoked,USA,Florida,"Near Panama City, Bay County",Swimming,adult female (Mrs. Avery?),F,38,Leg severed,False,13' shark,"R. F. Hutton; T. Helm, p.219; V.M. Coppleson (1962), p.249",1919.00.00-MrsAvery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1919.00.00-MrsAvery.pdf,1919.00.00,1919.00.00 +5266,Nov-1918,Unprovoked,USA,Hawaii,Papaikou plantation ,Fishing,Tadaichi Mayamura,M,38,fatal,True,13' shark,"Ogden Examiner, 12/15/1918",1918.11.00.b-Mayamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.b-Mayamura.pdf,1918.11.00.b,1918.11.00.b +5267,Nov-1918,Sea Disaster,SAN DOMINGO,60 miles north of San Domingo in the West Indies,Muchoir Banks,Steamer Una wrecked with 75 laborers onboard. Survivors took to rafts & lifeboats.,males,M,38,fatal,True,"Tiger sharks, 2.4 m to 4.9 m [8' to 16'] ","V.M. Coppleson (1958), p.194; V.M. Coppleson (1962), p.210",1918.11.00.a-Una.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.11.00.a-Una.pdf,1918.11.00.a,1918.11.00.a +5268,19-Sep-1918,Unprovoked,AUSTRALIA,Queensland,Townsville,Bathing,Joseph Bartlett,M,22,fatal,True,"Tiger sharks, 2.4 m to 4.9 m [8' to 16'] ","Cairns Post, 9/24/1918",1918.09.19-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.09.19-Bartlett.pdf,1918.09.19,1918.09.19 +5269,22-Mar-1918,Unprovoked,AUSTRALIA,New South Wales,Newcastle,Surfing,Arthur Cook,M,22,"Severe laceration to arm, necessitating surgical amputation at the elbow",False,12' shark,"The Advertiser, 3/25/1918",1918.03.22-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.03.22-Cook.pdf,1918.03.22,1918.03.22 +5270,1918,Unprovoked,AUSTRALIA,Queensland,Near Cairns,Diving,Iona Asai,M,22,Survived,False,12' shark,"A. Sharpe, p.109",1918.00.00-Asai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1918.00.00-Asai.pdf,1918.00.00,1918.00.00 +5271,15-Dec-1917,Unprovoked,AUSTRALIA,Western Australia,Port Hedland,Swimming,F.W. Dean,M,22,Lacerations to left leg,False,12' shark,"West Australian, 12/17/1917",1917.12.15-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.12.15-Dean.pdf,1917.12.15,1917.12.15 +5272,Nov-1917,Unprovoked,MOZAMBIQUE,Maputo Province,Off Inhaca Island,Wreck of the tug Magellan,a South African sailor,M,22,fatal,True,12' shark,C.J. McGuinness,1917.11.00-Magellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.11.00-Magellan.pdf,1917.11.00,1917.11.00 +5273,21-Sep-1917,Unprovoked,USA,New Jersey,"Sea Bright, Monmouth County","Swimming, towing an empty barrel","Daniel Thompson, lifeguard",M,22,Left knee lacerated,False,12' shark,"V.M. Coppleson (1958), p.251 ",1917.09.21-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.21-Thompson.pdf,1917.09.21,1917.09.21 +5274,09-Sep-1917,Provoked,USA,Hawaii,"Nanakuli, Oah’u",Stuffing a shark into an automobile,Carl Nakuina,M,22,Arm severely lacerated by shark that had been hooked and shot PROVOKED INCIDENT,False,12' shark,"Ogden Standard, 9/11/1917",1917.09.09-Nakuina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.09-Nakuina.pdf,1917.09.09,1917.09.09 +5275,Sep-1917,Unprovoked,PANAMA,Colon,Colon,Swimming to shore from the Medic,male,M,22,fatal,True,12' shark,"Morwell Advertiser & Gazette, 1/18/1918",1917.09.00-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.09.00-Panama.pdf,1917.09.00,1917.09.00 +5276,18-Jul-1917,Unprovoked,USA,Florida,Florida Keys ,Diving,William Sinker,M,22,fatal,True,12' shark,"Washington Post, 7/20/1917",1917.07.18-WmSinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.18-WmSinker.pdf,1917.07.18,1917.07.18 +5277,15-Jul-1917,Sea Disaster,IRELAND,Off Ireland,82 miles from Fastnet,Ship Mariston torpedoed & sunk,"Western Mail, 11/9/1917",M,22,fatal,True,12' shark,"Western Mail, 11/9/1917",1917.07.15-Mariston-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.07.15-Mariston-ship.pdf,1917.07.15,1917.07.15 +5278,03-Jun-1917,Unprovoked,USA,South Carolina,Calibogue Sound,Swimming beside launch,"Walter J. Pierpont, Jr.",M,22,Right arm bitten,False,12' shark,"C. Creswell, GSAF; V.M. Coppleson (1958), pp.153, 154 & 251; NY Times 6/4/1917, p.9 ",1917.06.03-Pierpont.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.06.03-Pierpont.pdf,1917.06.03,1917.06.03 +5279,31-May-1917,Unprovoked,PHILIPPINES,Luzon Island,Canacao Bay,Swimming,"E.E., water tender of the U.S.S. Dale",M,22,fatal,True,12' shark,"P.F. Prioleau; W.E., p.195; V.M. Coppleson (1958), p.264",1917.05.31-EE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.31-EE.pdf,1917.05.31,1917.05.31 +5280,Reported 05-May-1917,Unprovoked,KUWAIT,unknown,unknown,Diving for pearls,a young Arab,M,22,Torso bitten,False,12' shark,"Denton Journal, 5/5/1917",1917.05.05-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.05.05-Arab.pdf,1917.05.05,1917.05.05 +5281,1917,Unprovoked,LIBYA,Mediterranean Sea,Tripoli,Diving for sponges,male,M,22,"Bitten by shark, but repelled it with his 'skandalopetra' ",False,12' shark,F. Warn (see Bitter Sea in bibliography),1917.00.00-SpongeDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1917.00.00-SpongeDiver.pdf,1917.00.00,1917.00.00 +5282,30-Dec-1916,Unprovoked,AUSTRALIA,Queensland,"Yeppoon, near Ross Creek",Bathing,John Ford,M,25,Right calf bitten,False,12' shark,"Morning Bulletin, 1/1/1917",1916.12.30-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.30-Ford.pdf,1916.12.30,1916.12.30 +5283,08-Dec-1916,Unprovoked,AUSTRALIA,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Taking wife to beach & about 1 m from the shore,Walter C. German,M,41,fatal,True,12' shark,"G.P. Whitley, ref. Dr. Cleland, 1924; V.M. Coppleson (1962), p.79; A. Sharpe, p.71",1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,1916.12.08.b,1916.12.08.b +5284,08-Dec-1916,Unprovoked,AUSTRALIA,New South Wales,"Seven Shillings Beach, Middle Harbor, Sydney (Estuary)",Swimming 10 m from shore,Mrs Walter German,F,41,Leg nipped by shark,False,12' shark,"A. Sharpe, p.71",1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.12.08.a-b-German.pdf,1916.12.08.a,1916.12.08.a +5285,15-Nov-1916,Provoked,PANAMA,Panama Canal,Panama Canal,Swimming 10 m from shore,Clarence Ware,M,41,"""Severely bitten""",False,12' shark,"Hartford Courant, 11/16/1916",1916.11.15-ClarenceWare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.15-ClarenceWare.pdf,1916.11.15,1916.11.15 +5286,10-Nov-1916,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,Walter Gregson,M,41,fatal,True,12' shark,"Cairns Post, 11/11/1916",1916.11.10-Gregson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.10-Gregson.pdf,1916.11.10,1916.11.10 +5287,09-Nov-1916,Unprovoked,AUSTRALIA,Queensland,"Kissing Point Camp, Townsville",Bathing,Robert Alexander Poultney,M,27,fatal,True,12' shark,"Brisbane Courier, 11/10/1916",1916.11.09-Poultney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.11.09-Poultney.pdf,1916.11.09,1916.11.09 +5288,11-Oct-1916,Provoked,USA,Florida,"Sewell’s Point, near Palm Beach","Fishing, attempted to take a netted shark",J.L. Hanscomb,M,27,fatal,True,12' shark,"V.M. Coppleson (1958), p.251; R.F. Hutton; NY Times, 10/12/1916, p.8 ",1916.10.11-Hanscom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.10.11-Hanscom.pdf,1916.10.11,1916.10.11 +5289, 24-Aug-1916,Unprovoked,USA,Louisiana,Grand Lake,Netting shrimp,William Lerey,M,27,Lower left leg severely bitten & became septic. Not known if he survived,False,12' shark,"The News, 8/15/1916",1916.08.24-Lerey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.08.24-Lerey.pdf,1916.08.24,1916.08.24 +5290,26-Jul-1916,Unprovoked,USA,North Carolina,"Atlantic, near New Bern, Craven County",Fishing,William Nelson,M,27,Arm severely lacerated,False,12' shark,"C. Creswell, GSAF",1916.07.26-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.26-Nelson.pdf,1916.07.26,1916.07.26 +5291,13-Jul-1916,Invalid,USA,New York,"Sheepshead Bay, Brooklyn",Swimming,Gertude Hoffman,F,27,"No attack, no injury",False,12' shark,"New York Times, 7/14/1916",1916.07.13.b-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.b-Hoffman.pdf,1916.07.13.b,1916.07.13.b +5292,13-Jul-1916,Unprovoked,USA,New York,"Sheepshead Bay, Brooklyn",Swimming,Thomas Richards,M,27,Ankle bruised,False,12' shark,"NY Tribune, 7/14/1916",1916.07.13.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.13.a-Richards.pdf,1916.07.13,1916.07.13 +5293,12-Jul-1916,Unprovoked,USA,New Jersey,"In Matawan Creek, off NJ Clay Company brickyards at Cliffwood, Monmouth County, 9.5 miles from the sea, Monmouth County",Swimming,John Dunn,M,12,"Lower left leg bitten, surgically amputated",False,Said to involve a 2.7 m [9'] shark,"R. Fernicola, GSAF",1916.07.12.c-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.c-Dunn.pdf,1916.07.12.c,1916.07.12.c +5294,12-Jul-1916,Unprovoked,USA,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming (recovering remains of Stilwell) ,Stanley Fisher,M,24,fatal,True,3 m [10'] shark,"R. Fernicola, GSAF",1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,1916.07.12.b,1916.07.12.b +5295,12-Jul-1916,Unprovoked,USA,New Jersey,"Matawan Creek, 10 miles from the sea, Monmouth County",Swimming,Lester Stillwell,M,10,fatal,True,3 m [10'] shark,"R. Fernicola, GSAF ",1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.12.a-b-Stillwell-Fisher.pdf,1916.07.12.a,1916.07.12.a +5296,11-Jul-1916,Sea Disaster,BAHAMAS,50 miles off Bahamas,50 miles off Bahamas,S.S. Ramos foundered in a hurricane. Captain & 14 crew in water-logged lifeboats. ,Mr. Wichman,M,10,fatal,True,3 m [10'] shark,"NY Times, 7/18/1916",1916.07.11-Wichman-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.11-Wichman-Ramos.pdf,1916.07.11,1916.07.11 +5297,08-Jul-1916,Unprovoked,SPAIN,Gran Canaria,Las Palmas,Diving,male,M,10,Survived,False,3 m [10'] shark,C. Moore. GSAF,1916.07.08-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.08-GrandCanary.pdf,1916.07.08,1916.07.08 +5298,07-Jul-1916,Unprovoked,PHILIPPINES,Luzon Island,"Olongapo Harbor, Subic Bay",Bathing,a sailor from the U.S.S. Galveston,M,10,Right foot severed,False,3 m [10'] shark,"The Sun, 12/16/1917",1916.07.07-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.07-Sailor.pdf,1916.07.07,1916.07.07 +5299,06-Jul-1916,Unprovoked,USA,New Jersey,"Spring Lake, Monmouth County",Swimming,Charles Bruder,M,10,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"R. Fernicola, GSAF",1916.07.06-Bruder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.06-Bruder.pdf,1916.07.06,1916.07.06 +5300,01-Jul-1916,Unprovoked,USA,New Jersey,"Beach Haven, Ocean County",Swimming,Charles E. Vansant,M,24,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"R. Fernicola, GSAF",1916.07.01-Vansant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.07.01-Vansant.pdf,1916.07.01,1916.07.01 +5301,30-Jun-1916,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming,boy,M,10 or 12,Heel bitten,False,Thought to involve a 2.6 m [8.5'] white shark,C. Phinizy,1916.06.30-AtlanticCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.30-AtlanticCity.pdf,1916.06.30,1916.06.30 +5302,Reported 24-Jun-1916,Unprovoked,ATLANTIC OCEAN,unknown,unknown,Jumped overboard from Norwegian steamship Venator,Victor Matheson,M,10 or 12,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"Washington Post, 6/24/1916, p.6",1916.06.24.R-Matheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.24.R-Matheson.pdf,1916.06.24.R,1916.06.24.R +5303,23-Jun-1916,Provoked,USA,Florida,Florida,Jumped overboard from Norwegian steamship Venator,Adolph Crouse,M,26,Leg bitten by shark hooked shark PROVOKED INCIDENT,False,Thought to involve a 2.6 m [8.5'] white shark,"New York Times, 6/29/1916",1916.06.23-Crouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.06.23-Crouse.pdf,1916.06.23,1916.06.23 +5304,Reported 25-Apr-1916,Unprovoked,AUSTRALIA,New South Wales,Manley Beach,Swimming,Thomas Harrington,M,26,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"Modesto Evening News, 4/25/1916",1916.04.25.R-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.25.R-Harrington.pdf,1916.04.25.R,1916.04.25.R +5305,03-Apr-1916,Unprovoked,AUSTRALIA,Victoria,Carrum,Clinging to overturned rowing boat,Monte Robinson & Andrew McNeill,M,17,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"Argus, 3/5/1917",1916.04.03-Robinson-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.04.03-Robinson-McNeill.pdf,1916.04.03,1916.04.03 +5306,19-Mar-1916,Unprovoked,AUSTRALIA,New South Wales,Curl Curl,Bathing,Alexander Robinson,M,17,Minor lacerations to heel,False,Thought to involve a 2.6 m [8.5'] white shark,"Argus, 4/21/1916",1916.03.19-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1916.03.19-Robinson.pdf,1916.03.19,1916.03.19 +5307,Reported 09-Dec-1915,Unprovoked,AUSTRALIA,Torres Strait, Thursday Island,Diving,A Japanese diver,M,17,"Arm severed, lacerations to thigh",False,Thought to involve a 2.6 m [8.5'] white shark,"Big Piney Examiner, 12/9/1915",1915.12.09.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.12.09.R-JapaneseDiver.pdf,1915.12.09.R,1915.12.09.R +5308,10-Nov-1915,Unprovoked,AUSTRALIA,Queensland,"Cabbage Tree Creek, Sandgate",Bathing,James Gleeson,M,10,Severe bite to arm,False,Thought to involve a 2.6 m [8.5'] white shark,"Argus, 11/11/1915",1915.11.10-Gleeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.10-Gleeson.pdf,1915.11.10,1915.11.10 +5309,08-Nov-1914,Unprovoked,AUSTRALIA,New South Wales,Manly,Bathing,Albert Rebecchi,M,10,Severe lacerations to feet & ankles,False,Thought to involve a 2.6 m [8.5'] white shark,"Sydney Morning Herald, 11/9/1915; V.M. Coppleson (1962), p.245 ",1915.11.08-Rebecchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.11.08-Rebecchi.pdf,1915.11.08,1915.11.08 +5310,03-Aug-1915,Unprovoked,USA,Florida,"St. Augustine, St Johns County",Bathing,M.F. Turnipseed,M,10,Laceration to left leg,False,Thought to involve a 2.6 m [8.5'] white shark,M.F. Turnipseed,1915.08.03-Turnipseed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.08.03-Turnipseed.pdf,1915.08.03,1915.08.03 +5311,Reported 06-Jul-1915,Unprovoked,MEXICO,Tamaulipas,Tampico,Fishing,Captain Thaxton,M,10,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"Oakland Tribune, 7/6/1915",1915.07.06.b.R-Thaxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.b.R-Thaxton.pdf,1915.07.06.a.R,1915.07.06.a.R +5312,Reported 06-Jul-1915,Unprovoked,MEXICO,Santa Maria Bar,Santa Maria Bar,Wading,J.W. McDonald,M,10,fatal,True,Thought to involve a 2.6 m [8.5'] white shark,"Oakland Tribune, 7/6/1915",1915.07.06.a.R-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.07.06.a.R-McDonald.pdf,1915.07.06.a.R,1915.07.06.a.R +5313,Reported 15-May-1915,Invalid,EGYPT,Alexandria,Alexandria,Fell overboard,male,M,10,Shark involvement not confirmed,False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1915.05.15.R-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.05.15.R-Alexandria.pdf,1915.05.15.R,1915.05.15.R +5314,29-Mar-1915,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Skin diving for trepang but at surface next to the boat,Hana,M,10,"Shoulder bitten. Hana, one of the rescuers, fended shark off with an oar, then shark bit oar in two",False,3 m [10'] shark,"N. Bartlett, pp.234",1915.03.29-Hana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.03.29-Hana.pdf,1915.03.29,1915.03.29 +5315,06-Feb-1915,Unprovoked,AUSTRALIA,Queensland,Wynnum-Manley,Swimming,H. Stanton,M,10,Foot bitten,False,3 m [10'] shark,"Brisbane Courier, 2/8/1915",1915.02.06-Stanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.02.06-Stanton.pdf,1915.02.06,1915.02.06 +5316,13-Jan-1915,Invalid,NEW ZEALAND,North Island,Otaki,Fishing,Henry Hodge & his son,M,10,Death may have been due to drowning,False,Shark involvement prior to death unconfirmed,"The Mercury, 1/14/1915",1915.01.13-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.13-Hodge.pdf,1915.01.13,1915.01.13 +5317,01-Jan-1915,Unprovoked,AUSTRALIA,New South Wales,"Sirius Cove, Sydney Harbor",Bathing,Warren Tooze,M,17,fatal,True,Shark involvement prior to death unconfirmed,"G.P. Whitley, citing Argus (Melbourne) 1/5/1915; V.M. Coppleson (1958), p.70",1915.01.01-Tooze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.01.01-Tooze.pdf,1915.01.01,1915.01.01 +5318,Ca. 1915,Invalid,USA,Florida,"Soldier Key, Miami-Dade County",Bathing,Remains of male found in shark,M,17,fatal,True,"Reported to involve a 3.7 m [12'] shark, possibly a white shark","Fishing Gazette 1915, Vol. 32, No. 10, p.296",1915.00.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1915.00.00-HumanRemains.pdf,1915.00.00,1915.00.00 +5319,Reported 04-Dec-1914,Unprovoked,AUSTRALIA,Queensland,Magnetic Island,Swimming,A. Steinstecke,M,17,Lacerations to right thigh and knee,False,"Reported to involve a 3.7 m [12'] shark, possibly a white shark","Northern Miner, 12/4/1914",1914.12.04.R-Steinstecke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.12.04.R-Steinstecke.pdf,1914.12.04.R,1914.12.04.R +5320,17-Oct-1914,Sea Disaster,SAMOA,Apolima Strait,Opposite Apelima & Manona,Copra vessel with 19 on board was wrecked in a squall,female,F,17,Thigh bitten,False,"Reported to involve a 3.7 m [12'] shark, possibly a white shark","Evening Post, 12/2/1914",1914.10.17-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.10.17-Samoa.pdf,1914.10.17,1914.10.17 +5321,Reported 26-Sep-1914,Unprovoked,JAMAICA,Kingston Parish,Port Royal,Fell overboard,"""a native boy""",M,17,fatal,True,"A 20' shark known as ""Old Tom""","Stevens Point Daily Journal, 9/26/1914, p.2 ",1914.09.26.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.26.R-Jamaica.pdf,1914.09.26.R,1914.09.26.R +5322,09-Sep-1914,Unprovoked,USA,Louisiana,Lake Pontchartrain,Swimming,Peter Kontspoulas,M,17,fatal,True,"A 20' shark known as ""Old Tom""","Washington Post, 9/10/1914, p.6",1914.09.09-PeterKontspoulas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.09.09-PeterKontspoulas.pdf,1914.09.09,1914.09.09 +5323,Reported 15-Jul-1914,Unprovoked,CROATIA,Zadar County,Biograd na moru,Washing clothes,female,F,17,"No injury, shark grabbed clothes",False,1.5 m [5'] shark,"C. Moore, GSAF",1914.07.15.R.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.15.R.pdf,1914.07.15.R,1914.07.15.R +5324,Reported 09-Jul-1914,Provoked,USA,Louisiana,New Orleans,Fishing,Lopez,M,17,PROVOKED INCIDENT Legs severed by shark entangled in his net,False,1.5 m [5'] shark,"Lima Daily News, 7/9/1914",1914.07.08.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.08.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.08.R-Lopez.pdf,1914.07.08.R,1914.07.08.R +5325,07-Jul-1914,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Rijeka,Fishing,male,M,17,"No injury, shark nudged raft and circled for 2 hrs.",False,6 m shark,"C. Moore, GSAF",1914.07.07.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.07.07.pdf,1914.07.07,1914.07.07 +5326,13-Jun-1914,Boating,MONTENEGRO,Adriatic Sea,Between St. Stjepan and Budva,Fishing boat,Occupants: Ivan Angjus & Stevo Kentera,M,17,"No injury, shark bit paddle and stern of boat",False,6 m shark,"C. Moore, GSAF",1914.06.13-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.13-Budva.pdf,1914.06.12,1914.06.12 +5327,10-Jun-1914,Unprovoked,AUSTRALIA,Victoria,Sandringham,Bathing,Mr. Croxford,M,43,fatal,True,6 m shark,"Evening Post, 6/11/1914",1914.06.10-Croxford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.06.10-Croxford.pdf,1914.06.10,1914.06.10 +5328,31-May-1914,Sea Disaster,NEW CALEDONIA,South Province,Noumea,Swimming ashore from swamped 13-ft boat,Mr. Child & a Kanaka,M,43,fatal,True,6 m shark,"The Mercury, 6/23/1914",1914.05.31-Child-Kanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.31-Child-Kanaka.pdf,1914.05.31,1914.05.31 +5329,14-May-1914,Provoked,USA,Florida,"Boca Ciega Bay, Pinellas County",Fishing,Mrs. A.L. Cummings,F,43,PROVOKED INCIDENT Lacerations to right hand by hooked shark,False,3' shark,"Evening Independent, 5/14/1914, p.1",1914.05.14-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.05.14-Cummings.pdf,1914.05.14,1914.05.14 +5330,Reported 14-Mar-1914,Invalid,USA,Florida,"St. Augustine, St Johns County",Swimming,John B. Mooney,M,43,His remains were recovered from a shark 3 years after his disappearance - Probable drowning / scavenging,False,Shark involvement prior to death unconfirmed,"Washington Post, 3/14/1914, p.E9",1914.03.14.R-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.14.R-Mooney.pdf,1914.03.14.R,1914.03.14.R +5331,Reported 10-Mar-1914,Sea Disaster,GUYANA,Essequibo,Essequibo River Mouth,Boat swamped,Harold F. Brook,M,43,fatal,True,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1914.03.10.R-Brook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.10.R-Brook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.10.R-Brook.pdf,1914.03.10.R,1914.03.10.R +5332,03-Mar-1914,Unprovoked,USA,Hawaii,"Honomu, Hawai'i",Washed into sea while picking opihi & attacked by 2 large sharks ,Okomoto,M,43,fatal,True,Shark involvement prior to death unconfirmed,C.H. Townsend,1914.03.03-Okomoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.03.03-Okomoto.pdf,1914.03.03,1914.03.03 +5333,Reported 09-Feb-1914,Unprovoked,AUSTRALIA,South Australia,Marion Bay,Wading,Mr. Hasell,M,43,Lacerations to foot,False,said to involve a tiger shark,"The Advertiser, 2/10/1914",1914.02.09.R-Hasell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.09.R-Hasell.pdf,1914.02.09.R,1914.02.09.R +5334, 03-Feb-1914,Unprovoked,AUSTRALIA,New South Wales,Paramatta River,Canoeing,John Dabbs,M,43,Lacerations to arms,False,said to involve a tiger shark,"Oakland Tribune, 3/241914, p.22",1914.02.03-Dabbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.02.03-Dabbs.pdf,1914.02.03,1914.02.03 +5335,Reported 17-Jan-1914,Unprovoked,AUSTRALIA,Queensland,Brisbane,Wading,Mrs. Schmidt,F,43,Laceration to leg,False,said to involve a tiger shark,"The Queenslandert , 1/17/1914",1914.01.17.R-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.01.17.R-Schmidt.pdf,1914.01.17.R,1914.01.17.R +5336,1914,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Wading,Indian female,F,43,No details,UNKNOWN,said to involve a tiger shark,"L. Green, South African Beachcomber, p.97",1914.00.00-IndianWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1914.00.00-IndianWoman.pdf,1914.00.00,1914.00.00 +5337,Reported 30-Dec-1913,Provoked,USA,Florida,"Palm Beach, Palm Beach County",Fishing for mackerel,"motor boat, occupants: Mr. & Mrs. Sidney M. Colgate and their three children, Bayard, Caroline and Margaret ",,43,No injury to occupants but hull splintered by harpooned shark PROVOKED INCIDENT,False,13' shark,"New Smyrna Daily News, 1/2/1914, p.12",1913.12.30.R-Colgate Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.30.R-Colgate Boat.pdf,1913.12.30.R,1913.12.30.R +5338,Reported 26-Dec-1913,Sea Disaster,CUBA,off Neuvitas,off Neuvitas,Fishing for mackerel,Gottlieb Schwertz,M,43,fatal,True,13' shark,"Tampa Bay Times, 12/26/1913",1913.12.26.R-Schwertz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.26.R-Schwertz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1913.12.26.R-Schwertz.pdf,1913.12.26.R,1913.12.26.R +5339,27-Nov-1913,Unprovoked,NIGERIA,Lagos ,Lagos,Boat swamped,Gerald Arthur Edwin Denny,M,43,fatal,True,13' shark,"The Times (London), 7/21/1914, p.7; Lima Daily News, 1/10/1914",1913.11.27-Denny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.27-Denny.pdf,1913.11.27,1913.11.27 +5340,21-Nov-1913,Unprovoked,AUSTRALIA,Queensland,"Sandgate Jetty, Brisbane",Swimming,Henry Boucher,M,12,Calf severely bitten; leg surgically amputated,False,13' shark,"Sydney Morning Herald, 11/24/1913 ",1913.11.21-Boucher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.11.21-Boucher.pdf,1913.11.21,1913.11.21 +5341,21-Sep-1913,Unprovoked,USA,Florida,"West Palm Beach, Palm Beach County",Swimming,male,M,12,Major injuries but survived,False,Said to involve a 2.4 m [8'] hammerhead shark,"V.M. Coppleson (1958), p.251; T. Helm, p.212",1913.09.21-WestPalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.21-WestPalmBeach.pdf,1913.09.21,1913.09.21 +5342,03-Sep-1913,Provoked,CROATIA,Istria County,Pula,Swimming,Fishing,M,12,Badly bitten by a shark dragged onboard PROVOKED INCIDENT,False,2 m shark,"C.Moore, GSAF",1913.09.03-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.09.03-Croatia.pdf,1913.09.03,1913.09.03 +5343,Reported 27-Aug-1913,Invalid,USA,New Jersey,"Lavalette, Ocean County",Swimming,"Trenton Evening Times, 8/27/1913",M,12,Man's leg recovered from 800-lb shark,False,Shark involvement prior to death unconfirmed,"Trenton Evening Times, 8/27/1913",1913.08.27.R-Lavalette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-Lavalette.pdf,1913.08.27.R,1913.08.27.R +5344,Reported 27-Aug-1913,Invalid,USA,New Jersey,"Spring Lake, Monmouth County",Swimming,"Washington Post, 8/27/1913",F,12,Female foot recovered from shark,False,Shark involvement prior to death unconfirmed,"Washington Post, 8/27/1913",1913.08.27.R-FemaleFoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.27.R-FemaleFoot.pdf,1913.08.27.R,1913.08.27.R +5345,26-Aug-1913,Invalid,ITALY,Trieste,Trieste,Swimming,"C. Moore, GSAF",,12,Human casualties,False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1913.08.26.R-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.08.26.R-Trieste.pdf,1913.08.26.R,1913.08.26.R +5346,12-July-1913,Unprovoked,USA,South Carolina,Charleston,Swimming,soldier,M,12,fatal,True,Shark involvement prior to death unconfirmed,"C. Creswell, GSAF",1913.07.12-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.12-soldier.pdf,1913.07.12,1913.07.12 +5347,Reported 10-Jul-1913,Unprovoked,COSTA RICA,Port Limon,Port Limon,Swimming,August Schulke & Karl Schafer,M,12,fatal,True,Shark involvement prior to death unconfirmed,"The Potter Enterprise, 7/10/1913",1913.07.10.R-PortLimon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.10.R-PortLimon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.07.10.R-PortLimon.pdf,1913.17.10.R,1913.07.10.R +5348,21-May-1913,Provoked,USA,Florida,"John's Pass, Pinellas County",Fishing,George Roberts,M,12,"Forefinger of right hand bitten by a ""dead"" shark PROVOKED INCIDENT",False,Shark involvement prior to death unconfirmed,"Evening Independent, 5/22/1913",1913.05.21-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.21-Roberts.pdf,1913.05.21,1913.05.21 +5349,02-May-1913,Provoked,AUSTRALIA,New South Wales,New South Wales,Hauling in net,Richard Moss,M,12,Lacerations to thigh by netted shark PROVOKED INCIDENT,False,Shark involvement prior to death unconfirmed,"Northern Star, 5/7/1913",1913.05.02-Moss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.05.02-Moss.pdf,1913.05.02,1913.05.02 +5350,27-Mar-1913,Unprovoked,SAMOA,Upolu Island,Apia Harbor,Hauling in net,German sailor,M,12,Leg severed,False,Shark involvement prior to death unconfirmed,"Coppleson (1962), p.247",1913.03.27-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.03.27-Samoa.pdf,1913.03.27,1913.03.27 +5351,Jan-1913,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Diving,"Treacle, a Torres Strait islander",M,12,"Head, neck & left shoulder bitten",False,Tiger shark ,"N. Bartlett, pp.232-233; V.M. Coppleson (1958), p.7 ",1913.01.00-Treacle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.01.00-Treacle.pdf,1913.01.00,1913.01.00 +5352,1913,Unprovoked,REUNION,Saint-Denis,Barachoise bridge,Swimming after his hat,male,M,12,fatal,True,Tiger shark ,H. Cornu,1913.00.00.d-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.d-ReunionIsland.pdf,1913.00.00.d,1913.00.00.d +5353,1913,Unprovoked,REUNION,5aint-Denis,Barachois,Swimming,male,M,12,fatal,True,Tiger shark ,H. Cornu,1913.00.00.c-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.c-ReunionIsland.pdf,1913.00.00.c,1913.00.00.c +5354,1913,Unprovoked,AUSTRALIA,Victoria,Brighton,Swimming,"male, a ""youth""",M,12,Arm severed,False,Tiger shark ,"V.M. Coppleson (1958), p.110 [ Note: Coppleson had no concrete evidence about this incident; he heard only ""vague reports"".",1913.00.00.a-youth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1913.00.00.a-youth.pdf,1913.00.00.a,1913.00.00.a +5355,Reported 30-Nov-1912,Sea Disaster,PHILIPPINES,unknown,unknown,Swimming from foundered vessel,Bessie Lambert,F,19,fatal,True,Tiger shark ,"C.Moore, GSAF",1912.11.30.R-Lambert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.11.30.R-Lambert.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.11.30.R-Lambert.pdf,1912.11.30.R,1912.11.30.R +5356,30-Aug-1912,Unprovoked,USA,Georgia,"Tybee Island, Chatham County",Swimming,Edward Coffee,M,12,fatal,True,Tiger shark ,"Atlanta Constitution, 8/31/1912, p.5",1912.08.30-Coffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.08.30-Coffee.pdf,1912.08.30,1912.08.30 +5357,23-Jul-1912,Unprovoked,USA,South Carolina,Sullivan's Island,Swimming,Corporal Kirkpatrick,M,12,Toes severed,False,8' shark,"Atlanta Constitution, 7/25/1912",1912.07.23-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.23-Kirkpatrick.pdf,1912.07.23,1912.07.23 +5358,Reported 06-Jul-1912,Unprovoked,SOLOMON ISLANDS,Central Province,Savo,Bathing,male,M,12,fatal,True,8' shark,"Sydney Morning Herald, 7/6/1912",1912.07.06.R-Savo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.07.06.R-Savo.pdf,1912.07.06.R,1912.07.06.R +5359,04-May-1912,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Bathing,arm recovered from hooked shark,M,12,,,Shark involvement prior to death unconfirmed,"M. Levine, GSAF",1912.05.04-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.05.04-arm.pdf,1912.05.04,1912.05.04 +5360,18-Mar-1912,Unprovoked,NEW ZEALAND,North Island,Takapuna,Swimming,male,M,12,"""Slight laceration to leg""",False,Shark involvement prior to death unconfirmed,"Evening Post, 3/20/1912",1912.03.18-Takapuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.03.18-Takapuna.pdf,1912.03.18,1912.03.18 +5361,22-Feb-1912,Provoked,AUSTRALIA,Western Australia,Bunbury,Hard hat diving,Mr. Swanson,M,12,"No injury, shark nipped diving suit after he prodded the shark PROVOKED INCIDENT ",False,Shark involvement prior to death unconfirmed,"Western Argus, 2/27/1912",1912.02.22-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.22-Swanson.pdf,1912.02.22,1912.02.22 +5362,19-Feb-1912,Unprovoked,AUSTRALIA,New South Wales,Coogee,Swimming,Fred Wort,M,18,Left calf & heel bitten,False,Shark involvement prior to death unconfirmed,"Argus (Melbourne) 2/20/1912, p.6; G.P. Whitley, p.260",1912.02.19-Wort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.19-Wort.pdf,1912.02.19,1912.02.19 +5363,03-Feb-1912,Unprovoked,NEW CALEDONIA,South Province,Noumea,Swimming,Raoul Gillies,M,18,Left shoulder & both legs bitten,False,Shark involvement prior to death unconfirmed,"Northern Star, 3/16/1912",1912.02.03-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.02.03-Gillies.pdf,1912.02.03,1912.02.03 +5364,26-Jan-1912,Unprovoked,AUSTRALIA,New South Wales,"Fig Tree Bridge, Lane Cove River, near Sydney ",Swimming,James Edward Morgan,M,21,fatal,True,"2.8 m [9'3""] whaler shark captured 3 days later with his remains in its gut","Argus (Melbourne) 1/27, 28, 29, 30/1912; G.P. Whitley, p.260; V.M. Coppleson (1962), p.245; A. Sharpe, p.88",1912.01.26-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.26-Morgan.pdf,1912.01.26,1912.01.26 +5365,Reported 13-Jan-1912,Unprovoked,FIJI,Viti Levu group,Beqa,Washed overboard,"Clarence & Richmond Examiner, 1/13/1912",M,7,fatal,True,"2.8 m [9'3""] whaler shark captured 3 days later with his remains in its gut","Clarence & Richmond Examiner, 1/13/1912",1912.01.13.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.13.R-Fiji.pdf,1912.01.13.R,1912.01.13.R +5366,06-Jan-1912,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Washed overboard,male,M,7,Thigh & lower abdomen severely bitten,False,"C. macrurus captured 48 hours after attack with tissue removed from man in its gut; species identified by G.P. Whitley, reported as C. obscurus by R. Steel"," V.M. Coppleson (1933), page 450, citing J. Burton Cleland Australasian Medical Gazette, September 14, 1912, page 270",1912.01.06-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.06-Sydney.pdf,1912.01.06,1912.01.06 +5367,01-Jan-1912,Unprovoked,AUSTRALIA,Queensland,Ross Creek,Bathing,Samuel Tristing,M,7,fatal,True,"C. macrurus captured 48 hours after attack with tissue removed from man in its gut; species identified by G.P. Whitley, reported as C. obscurus by R. Steel","Argus, 1/2/1912",1912.01.01-Tristing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.01.01-Tristing.pdf,1912.01.01,1912.01.01 +5368,1912,Unprovoked,SPAIN,Balearics,Isla Cabrera,Fell into the water,the governor of Cabrera,M,7,fatal,True,White shark,C. Moore. GSAF,1912.00.00-Isla-Cabrera-Balearics.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1912.00.00-Isla-Cabrera-Balearics.pdf,1912.00.00,1912.00.00 +5369,08-Nov-1911,Invalid,USA,Florida,"Pensacola Bay, Escambia County",Fell into the water,Jules Antoine,M,7,"Cause of death undetermined. 3.6 m [11'9""] shark seen carrying body. Next day, shark was killed & Antoine's entire body was found in its gut.",False,Shark involvement prior to death unconfirmed,"The Sun, 7/13/1913; H.D. Baldridge, p.170",1911.11.08-Antonine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.11.08-Antonine.pdf,1911.11.08,1911.11.08 +5370,26-Oct-1911,Unprovoked,USA,South Carolina,Off Charleston,Fell overboard from steamship Rio Grande,George Spencer,M,7,fatal,True,Shark involvement prior to death unconfirmed,"Fresno Bee, 10/31/1911",1911.10.26-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.26-Spencer.pdf,1911.10.26,1911.10.26 +5371,25-Oct-1911,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Diving,Toby,M,23,Calves bitten,False,Shark involvement prior to death unconfirmed,"Cairns Post, 11/2/1911",1911.10.25-Toby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.10.25-Toby.pdf,1911.10.25,1911.10.25 +5372,23-Sep-1911,Unprovoked,USA,Texas,Galveston Ship Channel,Jumped overboard to rescue companion,"John Blomquist, a dredgerman",M,23,fatal,True,Shark involvement prior to death unconfirmed,"The Sun, 7/13/1913; V.M. Coppleson (1962), p.249",1911.09.23-Blomquist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.23-Blomquist.pdf,1911.09.23,1911.09.23 +5373,20-Sep-1911,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard & swimming,"Thomas Ashe, a ship’s pilot",M,23,fatal,True,Shark involvement prior to death unconfirmed,"The Sun, 7/13/1913; Washington Post, 9/21/1911; V.M. Coppleson (1962) p.249",1911.09.20-Ashe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.20-Ashe.pdf,1911.09.20,1911.09.20 +5374,17-Sep-1911,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Bathing,Harold C. Rood,M,23,Left arm & thigh bitten,False,Shark involvement prior to death unconfirmed,"Sun, 7/13/1913; V.M. Coppleson (1962), p.249",1911.09.17-HCRood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.09.17-HCRood.pdf,1911.09.17,1911.09.17 +5375,Reported 31-Jul-1911,Unprovoked,SPAIN,Málaga ,Ceuta,Bathing,a soldier,M,23,fatal,True,Shark involvement prior to death unconfirmed,C. Moore. GSAF,1911.07.31.R-Ceuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.31.R-Ceuta.pdf,1911.07.31.T,1911.07.31.R +5376,Reported 16-Jul-1911,Provoked,USA,Delaware,Delaware Lightship,Fishing,Martin Berg,M,23,"Hooked shark bit his leg, knee to ankle PROVOKED INCIDENT",False,Shark involvement prior to death unconfirmed,"Washington Post, 7/16/1911",1911.07.16.R-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.07.16.R-Berg.pdf,1911.07.16.R,1911.07.16.R +5377,09-May-1911,Unprovoked,SOUTH AFRICA,Western Cape Province,Victoria Bay,Bathing,James May,M,64,fatal,True,Shark involvement prior to death unconfirmed,"Cape Mercantile Advertiser, 5/16/1911; M. Levine, GSAF",1911.05.09-JamesMay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.09-JamesMay.pdf,1911.05.09,1911.05.09 +5378,Reported 01-May-1911,Provoked,USA,Texas,"Rockport, Aransas County",Fishing,Mateo Zapeda,M,64,Bitten on left leg by hooked shark PROVOKED INCIDENT,False,5' shark,"Daily Advocate, 5/1/1911",1911.05.01.R-Zepada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01.R-Zepada.pdf,1911.05.01.R,1911.05.01.R +5379,01-May-1911,Unprovoked,SOUTH AFRICA,Western Cape Province,Victoria Bay,Swimming,James Jantjes,M,64,fatal,True,5' shark,"Cape Mercantile Advertiser, 5/2/1911, M. Levine, GSAF",1911.05.01-Jantjies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.05.01-Jantjies.pdf,1911.05.01,1911.05.01 +5380,Reported 08-Apr-1911,Boating,NEW ZEALAND,Chatham Islands,Chatham Islands,Fishing,2 fishermen,,64,"No injury to occupants, shark bit boat",False,5' shark,"Grey River Argus, 4/8/1911",1911.04.08.R-ChathamIslandBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.04.08.R-ChathamIslandBoat.pdf,1911.04.08.R,1911.04.08.R +5381,Reported 29-Mar-1911,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Swimming,male,M,64,fatal,True,5' shark,"Northern Star, 3/29/1911",1911.03.29.R-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.03.29.R-ThursdayIsland.pdf,1911.03.29.R,1911.03.29.R +5382,04-Jan-1911,Sea Disaster,AUSTRALIA,Western Australia,Off Legendre Island,3-masted steel barque Glenbank foundered during a cyclone,Anti Ketola,M,22,Minor injuries,False,5' shark,"Washington Post, 1/26/1913",1911.01.04-Katola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.01.04-Katola.pdf,1911.01.04,1911.01.04 +5383,1911,Unprovoked,USA,Texas,"Texas City, Galveston",Swimming,a sailor,M,22,Minor injury to feet,False,5' shark,D.G. McComb,1911.00.00.b-TexasCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.b-TexasCity.pdf,1911.00.00.b,1911.00.00.b +5384,Ca. 1911,Unprovoked,NEW ZEALAND,North Island,"Manukau Harbor, 6 miles south of Auckland",Fishing,male,M,50,fatal,True,5' shark,H.C. Chapman,1911.00.00.a-Manukau Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1911.00.00.a-Manukau Harbor.pdf,1911.00.00.a,1911.00.00.a +5385,Reported 25-Dec-1910,Invalid,CROATIA, Primorje-Gorski Kotar County,Rijeka,Fishing,male,M,50,fatal,True,Questionable,C. Moore. GSAF,1910.12.15.R-Rijeka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.15.R-Rijeka.pdf,1910.12.25.R,1910.12.25.R +5386,Reported 23-Dec-1910,Sea Disaster,AUSTRALIA,Western Australia,Fremantle,Shipwrecked pearling schooner,Theodore Anderson’s captain & rest of crew taken by sharks,M,50,fatal,True,Questionable,"Iowa City Citizen, 12/23/1910",1910.12.23.R-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.12.23.R-Anderson.pdf,1910.12.23.R,1910.12.23.R +5387,28-Nov-1910,Provoked,NORTH ATLANTIC OCEAN,Georges Bank,Georges Bank,Fishing,Tham Key,M,50,Right hand severely bitten by netted shark PROVOKED INCIDENT,False,Angel shark,"NY Times, 11/30/1910",1910.11.28-Key.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.28-Key.pdf,1910.11.28,1910.11.28 +5388,24-Nov-1910,Unprovoked,AUSTRALIA,Queensland,Mackay,Bathing,Cecil Smith,M,50,Foot bitten,False,Said to involve 9' blue shark,"The Advertiser, 11/25/1910",1910.11.24-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.11.24-Smith.pdf,1910.11.24,1910.11.24 +5389,Reported 25-Jun-1910,Unprovoked,MEXICO,LaBarra,LaBarra,Swimming,H. Gebler,M,50,Leg bitten,False,Said to involve 9' blue shark,"Indiana Evening Gazette, 9/25/1910",1910.06.25.R-Gebler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.25.R-Gebler.pdf,1910.06.25.R,1910.06.25.R +5390,Reported 08-Jun-1910,Sea Disaster,MOZAMBIQUE,Zambesi River,Portuguese territory,"Steamer Durao struck rock & filled, boats capsized, passengers & crew tried to swim to shore",D. Davies,,50,fatal,True,Said to involve 9' blue shark,D. Davies,1910.06.08.R-Durao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.06.08.R-Durao.pdf,1910.06.08.R,1910.06.08.R +5391,Reported 16-May-1910,Invalid,USA,Alabama,"Off Fort Gaines, Dauphin Island, Mobile County","Unknown, their unoccupied yawlboat was recovered","William Olsen, William Peterson, Albert Thomas & R. Zekoski",M,50,Presumed drowned & bodies taken by sharks,False,Shark involvement prior to death unconfirmed,"Atlanta Constitution, 5/17/1910, p.5",1910.05.16.R-yawlboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.05.16.R-yawlboat.pdf,1910.05.16.R,1910.05.16.R +5392,31-Mar-1910,Unprovoked,PANAMA,Colón Province,Cristobal,Fell overboard from USS cruiser Tacoma,"Samuel Barnes, a Marine",M,50,fatal,True,Shark involvement prior to death unconfirmed,"The Ogden Standard, 4/13/1910",1910.03.31-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.31-Barnes.pdf,1910.03.31,1910.03.31 +5393,08-Mar-1910,Unprovoked,NEW ZEALAND,North Island,"Waikanae Beach, Gisborne",Swimming,H. McGregor,M,50,Lacerations to foot,False,6' shark,"Poverty Bay Herald, 3/9/1910",1910.03.08-McGregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.08-McGregor.pdf,1910.03.08,1910.03.08 +5394,Mar-1910,Invalid,USA,Hawaii,"Pearl Harbor, O'ahu","Hard hat diving, laying some charge of powder",Martin Lund,M,50,No injury,False,Invalid,"The Sun, 4/3/1910; Authenticity questioned by G.H. Balazs in J. Borg, p.70",1910.03.00-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.03.00-Lund.pdf,1910.03.00,1910.03.00 +5395, 16-Feb-1910,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Surf bathing,George Cridland,M,50,"Shoulder, back & leg bitten",False,5.5' to 6' shark,"Western Mail, 2/26/1910",1910.02.16-Cridland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.02.16-Cridland.pdf,1910.02.16,1910.02.16 +5396,26-Jan-1910,Unprovoked,AUSTRALIA,New South Wales,Newcastle Harbor,Surf bathing,Alfred Victor Clulow,M,50,fatal,True,5.5' to 6' shark,"V.M. Coppleson (1962), p.245",1910.01.26-Clulow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.01.26-Clulow.pdf,1910.01.26,1910.01.26 +5397,1910,Invalid,USA,Hawaii,"Hilo, Hawai'i","Fishing, thrown into water by heavy sea, clinging to rocks at the water line",male,M,50,"Body bitten by shark/s, but death may have been due to drowning",False,Shark involvement prior to death unconfirmed,"C.H. Townsend; Authenticity questioned by G.H. Balazs in J. Borg, p.70",1910.00.00.b-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.b-Hilo.pdf,1910.00.00.b,1910.00.00.b +5398,1910,Unprovoked,PHILIPPINES,Luzon Island,"Polinao Point, Manila",Swimming,Lieut. James H. Stewart,M,50,"Calf removed, not known if he survived ",UNKNOWN,6 m [20'] shark,"V.M. Coppleson (1958), p.264",1910.00.00.a-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1910.00.00.a-Stewart.pdf,1910.00.00.a,1910.00.00.a +5399,Reported 26-Nov-1909,Unprovoked,USA,Florida,"16 miles north of Fort Pierce Inlet, Indian River County ",Swimming,Herman Hovelsrud ,M,50,Severe lacerations to arm,False,6 m [20'] shark,"Washington Post, 12/26/1909",1909.12.26.R-Hovelsrud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.26.R-Hovelsrud.pdf,1909.12.26.R,1909.12.26.R +5400,Reported 15-Dec-1909,Unprovoked,AUSTRALIA,New South Wales,20 miles off Sydney,Fell overboard,Mr. Witt,M,50,fatal,True,6 m [20'] shark,"Star, 12/15/1909",1909.12.15.R-Witt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.15.R-Witt.pdf,1909.12.15.R,1909.12.15.R +5401,05-Dec-1909,Provoked,AUSTRALIA,New South Wales,Bondi,Fishing,male,M,50,3 fingers bitten by hooked shark PROVOKED INCIDENT,False,7' shark,"The Advertiser, 12/9/1909",1909.12.05-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.12.05-Fisherman.pdf,1909.12.05,1909.12.05 +5402,14-Nov-1909 to 19-Nov-1909,Sea Disaster,INDONESIA,30 nm from Singapore,Rhio Strait,The 2379-ton French steamer La Seyne collied with British steamer Onda & sank in minutes. Passengers jumped overboard expecting to be picked up by Onda’s boats,"The Sun, 7/13/1913 ",,50,fatal,True,7' shark,"The Sun, 7/13/1913 ",1909.11.14-LaSeyne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.11.14-LaSeyne.pdf,1909.11.14,1909.11.14 +5403,Reported 04-Sep-1909,Provoked,USA,Delaware,"Lewes, Sussex County",Seine netting,Walter Beach,M,50,Abrasion to leg from netted shark PROVOKED INCIDENT,False,5' shark,"Gettysburg Times, 9/4/1909",1909.09.04.R-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.09.04.R-Beach.pdf,1909.09.04.R,1909.09.04.R +5404,13-Aug-1909,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard from fishing schooner Halycon,William Craug,M,50,fatal,True,5' shark,"Laurel Ledger, 8/19/1909",1909.08.13-Craug.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.08.13-Craug.pdf,1909.08.13,1909.08.13 +5405,24-Jul-1909,Unprovoked,USA,New York,Rockaway,Fell overboard while fishing for sharks,Albert Tyler,M,50,Right leg bitten,False,5' shark,"NY Times, 7/25/1909",1909.07.24-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.24-Tyler.pdf,1909.07.24,1909.07.24 +5406,15-Jul-1909,Unprovoked,USA,Florida,"Panama City, Bay County",Swimming,Henry Munson,M,16,Hip & thigh lacerated,False,5' shark,"News Herald, 7/29/2001",1909.07.15-Munson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.07.15-Munson.pdf,1909.07.15,1909.07.15 +5407,Reported 26-Jun-1909,Unprovoked,MEXICO,Guerrero,Zacatula,Bathing,Rosa Lopez,F,16,fatal,True,5' shark,"Adams County News, 6/26/1909",1909.06.26.a.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.a.R-Lopez.pdf,1909.06.26.a.R,1909.06.26.a.R +5408,26-Jun-1909,Unprovoked,SOUTH AFRICA,Western Cape Province,Cape Town,Bathing,"Adams County News, 6/26/1909",M,16,fatal,True,18-foot shark,"Adams County News, 6/26/1909",1909.06.26.b.R-CapeTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.26.b.R-CapeTown.pdf,1909.06.26.b.R,1909.06.26.b.R +5409,18-Jun-1909,Sea Disaster,AUSTRALIA,Queensland,"Middleton Reef, 300 nm from Brisbane","1446-ton Norwegian barque Errol, bound from Peru to Newcastle with 22 on board wrecked. Survivors shelterd on the wreck of the Annasona. Subsequently the Master, his wife & 4 children perished along with several crew. Survivors (5) were rescued 7/12/1909",Master of the Errol,M,16,fatal,True,18-foot shark,"Australian Zoologist, viii., 1937, p.207",1909.06.18-Errol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.06.18-Errol.pdf,1909.06.18,1909.06.18 +5410,Reported 27-Apr-1909,Provoked,SPAIN,Andalucia,"Puente Mayorga, San Roque, Cádiz",Fishing,male,M,16,Shark knocked him down after he grabbed it by the tail. No injury. PROVOKED INCIDENT,False,18-foot shark,"C. Moore, GSAF",1909.04.27.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.27.R-Cadiz.pdf,1909.04.27.R,1909.04.27.R +5411,10-Apr-1909,Invalid,USA,Hawaii,"Pa'uwela, Maui",Reported swept away by waves while gathering opihi,Mrs. Ah Kim Chong,F,19, Search party saw a large shark devour what appeared to be part of her body,False,Questionable,"Honolulu Star Advertisr, 4/18/1909; J. Borg, pp.69-70; L. Taylor (1993), pp.94-95",1909.04.10-Chong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.10-Chong.pdf,1909.04.10,1909.04.10 +5412,Reported 09-Apr-1909,Unprovoked,TUNISIA,Sfax,Sfax,Diving (Helmet) for sponges,Johannis Zambeltos,M,19,fatal,True,Questionable,"C. Moore, GSAF; Petit Paisien, 4/15/1909 ",1909.04.09.R-Zambeltos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.04.09.R-Zambeltos.pdf,1909.04.09.R,1909.04.09.R +5413,06-Mar-1909,Sea Disaster,SOUTH AFRICA,South Atlantic Ocean,Possession Island,Wreck of the 1308-ton Norwegian ship Auckland,The Captain’s wife,F,19,fatal,True,Questionable,"L. Green, GSAF",1909.03.06-Auckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.03.06-Auckland.pdf,1909.03.06,1909.03.06 +5414,17-Jan-1909,Invalid,unknown,Near the equator,Near the equator,Jumped overboard ,Thomas Butler,M,36,fatal,True,Questionable,"Star, 3/18/1909",1909.01.17-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.17-Butler.pdf,1909.01.17,1909.01.17 +5415,Jan-1909,Invalid,ITALY,Sicily,"Off Capo San Croce, near Augusta (Catania)","On December 28, 1908, an earthquake, followed by tsunamis, destroyed coastal towns in Silcily and southern Italy, killing more than 100,000 people",MEDSAF,,36," 3 unidentified bodies recovered (male, female & young girl) from gut of female 4.5 m [14'9""] white shark caught in fishing net. They may have drowned in tidal wave following earthquake ",False,Shark involvement prior to death was not confirmed,MEDSAF,1909.01.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.01.00-Messina.pdf,1909.01.00,1909.01.00 +5416,1909,Unprovoked,AUSTRALIA,New South Wales,Woy Woy,"On December 28, 1908, an earthquake, followed by tsunamis, destroyed coastal towns in Silcily and southern Italy, killing more than 100,000 people",anonymous,,36,Survived,N ,Shark involvement prior to death was not confirmed,"G.P. Whitley, citing Lone Hand, 12/1/1910, p.134",1909.00.00-WoyWoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1909.00.00-WoyWoy.pdf,1909.00.00,1909.00.00 +5417,31-Dec-1908,Unprovoked,SOUTH AFRICA,Western Cape Province,Stilbaai,Swimming,The son of Rabbi East,M,16,fatal,True,Shark involvement prior to death was not confirmed,"Fairbridge Index, Cape Archives, M. Levine, GSAF",1908.12.31-East.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.31-East.pdf,1908.12.31,1908.12.31 +5418,Reported 16-Dec-1908,Unprovoked,MEXICO,Quintana Roo,Quintana Roo,Swimming ashore from capsized boat,Colonel Harry J. Earle,M,16,fatal,True,Shark involvement prior to death was not confirmed,"Lowell Sun, 12/16/1908; V.M. Coppleson (1962), p.247; H.D. Baldridge, p.161",1908.12.16-Earle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.12.16-Earle.pdf,1908.12.16.R,1908.12.16.R +5419, 21-Sep-1908,Unprovoked,AUSTRALIA,Torres Strait,Thursday Island,Fell from the jetty,Kong Choong Ting,M,16,fatal,True,Remains recovered from 3 sharks,"Northern Territory Times & Gazette, 9/25/1908",1908.09.21-KongChoongTing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.21-KongChoongTing.pdf,1908.09.21,1908.09.21 +5420,05-Sep-1908,Unprovoked,USA,California,"Redondo, Los Angeles County",On fishing boat & trailing hand in the water,Ralph Nelson,M,16,Lacerations to fingers,False,Remains recovered from 3 sharks,"Los Angeles Times, 9/6/1908, p.I6",1908.09.05-RalphNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.09.05-RalphNelson.pdf,1908.09.05,1908.09.05 +5421,Reported 28-Aug-1908,Unprovoked,SPAIN,Galicia,Cape Finisterre,Fell overboard from P&O steamship Arabia,William Newbury,M,16,fatal,True,Remains recovered from 3 sharks,"Poverty Bay Herald, 10/14/1908",1908.08.28.R-Newbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.08.28.R-Newbury.pdf,1908.08.28.R,1908.08.28.R +5422,Reported 18-Jul-1908,Invalid,SPAIN,Canary Islands,"Tazacorte, La Palma",Fell overboard from P&O steamship Arabia,"C. Moore, GSAF",,16,Human remains recovered but shark involvement prior to death unconfirmed ,False,Questionable,"C. Moore, GSAF",1908.07.18.R-LasPalmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.18.R-LasPalmas.pdf,1908.07.18.R,1908.07.18.R +5423,Reported 08-Jul-1908,Unprovoked,CROATIA,Adriatic Sea,Medola,Boating,Milena Scambelli,F,16,fatal,True,"Species unknown, possible white shark","A. De Maddalena; M. Zuffa (pers. Comm.), Anon. (1908); C. Moore, GSAF",1908.07.08.R-Milena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.07.08.R-Milena.pdf,1908.07.08.R,1908.07.08.R +5424,18-Jun-1908,Unprovoked,EGYPT,Gulf of Suez,Off Ras Gharib,The 168-ton Belmore foundered in heavy seas,Seaman Gray,M,16,fatal,True,"Species unknown, possible white shark","Bay of Plenty Times, 6/26/2008",1908.06.18-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.18-Gray.pdf,1908.06.18,1908.06.18 +5425,08-Jun-1908,Sea Disaster,USA,Georgia,Georgia,The British steamer Caribbee foundered,Walter Howe,M,16,fatal,True,"Species unknown, possible white shark","New York Times, 6/15/1908",1908.06.08-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.08-Howe.pdf,1908.06.08,1908.06.08 +5426,Reported 02-Jun-1908,Sea Disaster,PAPUA NEW GUINEA,New Britain,Matupi,.,"Taranaki Herald, 6/2/1908",.,16,fatal,True,Allegedly a 33-foot shark,"Taranaki Herald, 6/2/1908",1908.06.02.R-Matupi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.06.02.R-Matupi.pdf,1908.06.02.R,1908.06.02.R +5427,13-May-1908,Sea Disaster,INDONESIA,Java,Jakarta Harbor,native boats sunk in storm,"The Advertiser, 6/26/1908",F,16,fatal,True,Allegedly a 33-foot shark,"The Advertiser, 6/26/1908",1908.05.13-Jakarta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.13-Jakarta.pdf,1908.05.13,1908.05.13 +5428,10-May-1908,Invalid,USA,Florida," Marathon, Monroe County",native boats sunk in storm,John C. Williams,M,16,fatal,True,Questionable,"Weekly Miami Metropolis, 5/11/1908",1908.05.10-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.05.10-Williams.pdf,1908.05.10,1908.05.10 +5429,08-Jan-1908,Unprovoked,USA,Hawaii,"Mana, Kaua'i",Gathering fish stunned by dynamite,"male, a Japanese fisherman",M,16,fatal,True,Questionable,"C.H. Townsend, Bull. N.Y. Zoological Society, 11-12/1931",1908.01.08-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1908.01.08-JapaneseFisherman.pdf,1908.01.08,1908.01.08 +5430,21-Dec-1907,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sugarloaf Bay, Sydney (Estuary)",Bathing,Henry Jones,M,16,fatal,True,Bull shark,"R.D. Weeks, GSAF; Otago Daily Times, 12/24/1907",1907.12.21-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.12.21-Jones.pdf,1907.12.21,1907.12.21 +5431,Reported 18-Oct-1907,Unprovoked,AUSTRALIA,Torres Strait,Near Thursday Island,Bathing,male from the lugger Teazer,M,16,fatal,True,Bull shark,"The Queenslander, 10/26/1907",1907.10.18.R-male-Teazer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.18.R-male-Teazer.pdf,1907.10.18.R,1907.10.18.R +5432,Reported 16-Oct-1907,Unprovoked,CHINA,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,16,"3 of thel 5 were injured, one of whom lost both hands",False,Shark involvement probable,"Dawson Daily News, 11/20/1907",1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,1907.10.16.R,1907.10.16.R +5433,Reported 16-Oct-1907,Unprovoked,CHINA,Hong Kong,"Sharp Peak, Sai Kung Peninsula, New Territories",Fishing,fishermen,M,16,fatal,True,Shark involvement probable,"Dawson Daily News, 11/20/1907",1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.16.R-HongKong.pdf,1907.10.16.R,1907.10.16.R +5434,14-Oct-1907,Unprovoked,AUSTRALIA,New South Wales,"Merewether Beach, near Newcastle",Bathing,Edward. Nolan,M,16,Lacerations to left arm from shoulder to wrist,False,Shark involvement probable,"Evening Post, 10/14/1907",1907.10.14-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.14-Nolan.pdf,1907.10.14,1907.10.14 +5435,12-Oct-1907,Invalid,HAITI,Tiburon Peninsula,Aux Cayes (now Les Cayes),Reached out to disentangle rope & fell overboard,"William Thomas, a seaman from the Hamburg-American liner Alleghany",M,16,"No attack, no injury",False,Invalid,"H.D. Baldridge, SAF Case #412",1907.10.12-alleghany-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.12-alleghany-sailor.pdf,1907.10.12,1907.10.12 +5436,08-Oct-1907,Unprovoked,USA,Hawaii," Kalepolepo, Kihei, Maui","Diving, retrieving fish caught in net ","male, a Japanese fisherman",M,16,"Arm severed at elbow, surgically amputated at shoulder ",False,Invalid,"C. Townsend; Pacific Commerical Advertiser, 10/13/1907; J. Borg, p.69; L. Taylor (1993), pp.94-95; Honolulu Advertiser, 8/9/1953",1907.10.08-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.10.08-fisherman.pdf,1907.10.08,1907.10.08 +5437,Reported 19-Sep-1907,Invalid,ENGLAND,English Channel,English Channel,Swimming,J. Wolffe,M,16," ""Struck across loins"" but no injury. According to witnesses, incident involved a bottlenose dolphin.",False,Questionable,"C. Moore, GSAF",1907.09.18.R-Wolffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.18.R-Wolffe.pdf,1907.09.18.R,1907.09.18.R +5438,11-Sep-1907,Unprovoked,CROATIA," Split-Dalmatia Count,","Sucurja, Hvar Island,",Swimming,female,F,16,fatal,True,Questionable,"C. Moore, GSAF",1907.09.11-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.09.11-Croatia.pdf,1907.09.11,1907.09.11 +5439,Reported 12-Aug-1907,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Krk Island,Swimming,a school teacher,F,16,fatal,True,Questionable,"Ogden Standard, 8/13/1907",1907.08.12.b.R-SchoolTeacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.b.R-SchoolTeacher.pdf,1907.08.12.b..R,1907.08.12.b..R +5440,Reported 12-Aug-1907,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Krk Island,Swimming,Josef Slivovic,M,16,fatal,True,Questionable,"Ogden Standard, 8/13/1907",1907.08.12.a.R-Silvovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.12.a.R-Silvovic.pdf,1907.08.12.a..R,1907.08.12.a..R +5441,Reported 08-Aug-1907,Unprovoked,USA,New Jersey,Lower Delaware Bay,Wading,George Kell,M,16,Abrasion to chest,False,Questionable,"New Oxford Item, 8/8/1907",1907.08.08.R-Kell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.08.08.R-Kell.pdf,1907.08.08.R,1907.08.08.R +5442,Reported 14-Jul-1907,Unprovoked,CROATIA," Split-Dalmatia Count,","Su?uraj, Hvar Island",Swimming,female,F,16,fatal,True,Questionable,"C. Moore, S. Navajas & R. Rocconi, GSAF",1907.07.14-R-Adriatic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.14-R-Adriatic.pdf,1907.07.14.R,1907.07.14.R +5443,Reported 04-Jul-1907,Invalid,AUSTRALIA,Queensland,Karra Garra,.,Dick Atkins,M,16,"Disappeared, but shark involvement unconfirmed",False,Questionable,"Queensland Figaro, 7/4/1907",1907.07.04-R-Atkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.04-R-Atkins.pdf,1907.07.04.R,1907.07.04.R +5444,Jul-1907,Unprovoked,USA,South Carolina,Small creek near Coles Island,Floating in creek,C.B. Hernandez,M,16,Slight injuries to left knee & calf ,False,1.5 m [5'] shark,E. M. Burton,1907.07.00-CB-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.07.00-CB-Hernandez.pdf,1907.07.00,1907.07.00 +5445,20-Apr-1907,Unprovoked,MEXICO,Oaxaca,Salina Cruz,Bathing,Laurence Funda,M,16," 3 fingers & thigh lacerated, foot crushed",False,1.5 m [5'] shark,"Los Angles Times, 8/7/1907, p.II11",1907.04.20-Funda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.04.20-Funda.pdf,1907.04.20,1907.04.20 +5446,26-Mar-1907,Unprovoked,USA,Florida,"Garden Key, Charlotte County","Fishing, tarpon being chased by shark leapt across his skiff, breaking it in half & Larkin became tangled in the net",Belton Larkin,M,16,fatal,True,1.5 m [5'] shark,"The Sun, 7/13/1913 reprinted article from Punta Gorda Herald of 3/31/1907. NOTE: V.M. Coppleson (1962), p.246 lists the location as Punta Gorda, British Honduras",1907.03.26-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.26-Larkin.pdf,1907.03.26,1907.03.26 +5447,07-Mar-1907,Unprovoked,MALTA,Harare Province,Marsaskala,Fishing,2 fishermen,M,16,fatal,True,"White shark, 6 m ","A. De Maddalena, citing Mojetta, et.al",1907.03.07-fishemen-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.03.07-fishemen-Malta.pdf,1907.03.07,1907.03.07 +5448,09-Feb-1907,Unprovoked,PHILIPPINES,Luzon Island,Manila Bay,"Row boat (from the gunboat Elcano) was sinking, put finger in hole",J.J. Dunlap,M,16,Finger severed,False,"White shark, 6 m ","Souix Vally News, 4/4/1907; V.M. Coppleson (1958), p.264",1907.02.09-J.J.Dunlap.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.09-J.J.Dunlap.pdf,1907.02.09,1907.02.09 +5449,05-Feb-1907,Unprovoked,NEW ZEALAND,South Island,Port Moeraki,Standing,Mr. W. H. Hutcheson,M,55,fatal,True,"White shark, 6 m ","R.D. Weeks, GSAF; Otago Daily Times, 1/13/1962",1907.02.05-Hutcheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.05-Hutcheson.pdf,1907.02.05,1907.02.05 +5450,03-Feb-1907,Unprovoked,AUSTRALIA,Queensland,Ross Creek,Bathing,William Williams,M,18,fatal,True,"White shark, 6 m ","The Queenslander, 2/9/1907",1907.02.03-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.02.03-Williams.pdf,1907.02.03,1907.02.03 +5451,1907,Unprovoked,VIETNAM,Khánh Hòa Province,Nha Trang,Fishing,A fisherman,M,20,"Leg severely bitten, surgically amputated",False,"White shark, 6 m ",G. Vassal,1907.00.00.b-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.b-Vietnam.pdf,1907.00.00.b,1907.00.00.b +5452,1907,Unprovoked,USA,Hawaii,"Pepe'ekeo, Honomu, Hawai'i","Net fishing, fell into the water",Japanese fisherman,M,20,fatal,True,"White shark, 6 m ","C. H. Townsend; G. H. Balazs & A. H. Kam; J. Borg, p.69; L. Taylor (1993), pp.94-95",1907.00.00.a-Pepeekeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1907.00.00.a-Pepeekeo.pdf,1907.00.00.a,1907.00.00.a +5453,16-Nov-1906,Unprovoked,JAMAICA,Westmoreland Parish,Cabaritta River mouth,Fishing,Zacey Allen,M,20,Leg bitten,False,"White shark, 6 m ","The Gleaner (Jamaica), 11/20/1906",1906.11.16-ZaceyAllen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.11.16-ZaceyAllen.pdf,1906.11.16,1906.11.16 +5454,Reported 10-Oct-1906,Unprovoked,USA,Hawaii,Hawaii,Fishing,"an ""old native""",M,20,Buttock bitten,False,"White shark, 6 m ","Washington Post, 10/10/1906",1906.10.10.d.R-OldNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.d.R-OldNative.pdf,1906.10.10.d.R,1906.10.10.d.R +5455,Reported 10-Oct-1906,Unprovoked,USA,Hawaii,Hawaii,Swimming,skipper of a coasting schooner,M,20,fatal,True,"White shark, 6 m ","Washington Post, 10/10/1906",1906.10.10.c.R-skipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.c.R-skipper.pdf,1906.10.10.c.R,1906.10.10.c.R +5456,Reported 10-Oct-1906,Unprovoked,USA,Hawaii,Hawaii,Diving,a native,M,20,Arm severed,False,"White shark, 6 m ","Washington Post, 10/10/1906",1906.10.10.b.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.b.R-Hawaii.pdf,1906.10.10.b.R,1906.10.10.b.R +5457,Reported 10-Oct-1906,Unprovoked,USA,Hawaii,Hawaii,Swimming,a sailor,M,20,fatal,True,"White shark, 6 m ","Washington Post, 10/10/1906",1906.10.10.a.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.10.10.a.R-Hawaii.pdf,1906.10.10.a.R,1906.10.10.a.R +5458,Reported 27-Sep-1906,Unprovoked,INDONESIA,Java,Lorok Bay,Swimming,William Munich,M,20,Thumb & index finger of left hand severed,False,"White shark, 6 m ","Atlanta Constitution, 9/27/1906",1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,1906.09.27.R.b,1906.09.27.R.b +5459,Reported 27-Sep-1906,Unprovoked,INDONESIA,Java,Lorok Bay,Swimming,a Swedish sailor,M,20,fatal,True,"White shark, 6 m ","Atlanta Constitution, 9/27/1906",1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.27.R.a&b-Munich-Swede.pdf,1906.09.27.R.a,1906.09.27.R.a +5460,Reported 05-Sep-1906,Unprovoked,AUSTRALIA,Torres Strait,Mabiuag,Swimming,Smith,M,20,fatal,True,"White shark, 6 m ","Wanganui Herald, 9/12/1906",1906.09.05.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.05.R-Smith.pdf,1906.09.05.R,1906.09.05.R +5461,Sep-1906,Provoked,USA,California,"Avalon, Los Angeles County",Fishing,Percy Neale,M,20,PROVOKED INCIDENT No injury; shirt torn by gaffed shark,False,"Shortfin mako shark, 175-lb ","L.A.Times, 10/1/1906",1906.09.00-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.09.00-Neale.pdf,1906.09.00,1906.09.00 +5462,20-Aug-1906,Unprovoked,YEMEN ,Aden,Aden,Diving around anchored liner,boy,M,20,Leg severed. Injury originally thought due to boat's propeller,False,"Shortfin mako shark, 175-lb ",S. Samuels,1906.08.20-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.20-boy.pdf,1906.08.20,1906.08.20 +5463,04-Aug-1906,Unprovoked,USA,Maryland,"Tangier Sound, Somerset County",Fell overboard,William McFlood,M,20,fatal,True,Remains recovered 5 days later,"Washington Post, 8/11/1906",1906.08.04-McFlood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.08.04-McFlood.pdf,1906.08.04,1906.08.04 +5464,Reported 05-Jul-1906,Unprovoked,USA,Mississippi,"Bay St. Louis, Hancock County",Swimming,a St. Stanislaus College student,M,20,fatal,True,Fishermen recovered partial remains from shark a week later,"The Courier, 7/5/1906",1906.07.05.R-St.Stanislaus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.05.R-St.Stanislaus.pdf,1906.07.05.R,1906.07.05.R +5465,Jul-1906,Invalid,MOZAMBIQUE,Maputo Province,Lourenco Marques,Swimming,Captain Sanna,M,20,Sanna may have drowned; his hand (identified by ring on finger) found in a shark at the market,False,Questionable,"L.M. Guardian, 7/23/1906; M. Levine, GSAF",1906.07.00-CaptainSanna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.07.00-CaptainSanna.pdf,1906.07.00,1906.07.00 +5466,Reported 27-Apr-1906,Unprovoked,INDONESIA,Maluku Province,Aru Islands,Hard hat diving,"The Advertiser, 5/16/1906",M,20,fatal,True,Questionable,"The Advertiser, 5/16/1906",1906.04.27.R-Aru-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.27.R-Aru-Islands.pdf,1906.04.27.R,1906.04.27.R +5467,16-Apr-1906,Provoked,AUSTRALIA,Victoria,Western Port Bay,Shooting sharks ,Leo Clarke,M,20,Finger severed by shark he had shot & stabbed PROVOKED INCIDENT,False,13' shark,"The Argus, 4/18/1906",1906.04.16-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.16-Clarke.pdf,1906.04.16,1906.04.16 +5468,14-Apr-1906,Unprovoked,AUSTRALIA,Queensland,Lizard Island,Diving for beche-de-mer ,Charley ,M,17,fatal,True,13' shark,"Morning Post, 4/20/1906",1906.04.14-Charley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.14-Charley.pdf,1906.04.14,1906.04.14 +5469,Reported 10-April 1906,Sea Disaster,INDONESIA,40 miles from Tahane Island,40 miles from Tahane Island,The schooner Tahitienne foundered in a hurricane,Captain Baxter & Dick Chares,M,17,fatal,True,13' shark,"Atlanta Constitution, 5/13/1906, et al.",1906.04.10.R.a-b-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.10.R.a-b-Baxter.pdf,1906.04.10.R.a & b,1906.04.10.R.a & b +5470,Reported 02-April 1906,Invalid,AUSTRALIA,New South Wales,Moodie Beach,.,Herbert Mills,M,18,Cause of death may have been downing,False,Questionable,".Morning Bulletin, 4/3/1906",1906.04.02.R-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.04.02.R-Mills.pdf,1906.04.02.R,1906.04.02.R +5471,Reported 14-Feb-1906,Invalid,NEW ZEALAND,North Island,Mototapu Island,Swimming,Herbert Thomas,M,18,Shark involvement prior to death was not determined,False,Questionable,"Otago Witness, 2/14/11906",1906.02.14.R-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.02.14.R-Thomas.pdf,1906.02.14.R,1906.02.14.R +5472,28-Jan-1906,Unprovoked,AUSTRALIA,New South Wales,Georges River,Bathing,William Joseph Dobson.,M,31 or 33,fatal,True,Questionable,"J. Green, p.31",1906.01.28-Dobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.28-Dobson.pdf,1906.01.28,1906.01.28 +5473,20-Jan-1906,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Battery Beach, Durban",Washing horses,Ramdayal,M,30,fatal,True,1.8 m to 2.7 m [6' to 9'] shark,"Natal Mercury Pictorial, 1/31/1906; M. Levine, GSAF",1906.01.20-Ramdayal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1906.01.20-Ramdayal.pdf,1906.01.20,1906.01.20 +5474,31-Dec-1905,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Floating or standing,"Eric Suppeman, cabin boy on the Norwegian ship Blanca",M,30,fatal,True,2.4 m [8'] shark,"Natal Mercury 1/1/1906; Natal Mercury Pictorial, 1/10/1906; M. Levine, GSAF",1905.12.31-Suppeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.31-Suppeman.pdf,1905.12.31,1905.12.31 +5475,29-Dec-1905,Invalid,AUSTRALIA,Western Australia,Geraldton,Bathing,Hugh Carroll,M,30,"""Bad wound in the leg"" - 7-ft shark caught in the bath same day",False,Shark involvement not confirmed,"The Advertiser, 12/30/1905",1905.12.29-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.12.29-Carroll.pdf,1905.12.29,1905.12.29 +5476,29-Sep-1905,Unprovoked,AUSTRALIA,New South Wales,"Waverly, Sydney",Swimming,Jame Crotty,M,30,fatal,True,Shark involvement not confirmed,"The Argus, 9/30/1905",1905.09.29-Crotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.09.29-Crotty.pdf,1905.09.29,1905.09.29 +5477,24-Aug-1905,Invalid,EGYPT,Suez Canal,Port Said,Human head found in shark caught by British steamer Syria,"C. Moore, GSAF",M,30,Probable drowning & scavenging. ,False,"Tiger shark, 3.9 m","C. Moore, GSAF",1905.08.24-Head-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.24-Head-in-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.24-Head-in-shark.pdf,1905.08.24,1905.08.24 +5478,Late Aug-1905,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming from naptha launch after a day of fishing,George Wright,M,30,3 toes of right foot were severed,False,"Tiger shark, 3.9 m",The Sun (undated article),1905.08.00.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.b-Wright.pdf,1905.08.00.b,1905.08.00.b +5479,Aug-1905,Unprovoked,PHILIPPINES,Luzon Island,Manila Bay,Bathing,Frank Abernathy,M,21,Leg bitten,False,"Tiger shark, 3.9 m","Obrien County Bell, 8/31/1905",1905.08.00.a-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.08.00.a-Abernathy.pdf,1905.08.00.a,1905.08.00.a +5480,29-Jul-1905,Unprovoked,USA,North Carolina,"Davis Shore, east of Beaufor, Carteret Countyt",Wading,Sutton Davis,M,16,fatal,True,"Tiger shark, 3.9 m","C. Creswell, GSAF; F. Schwartz, p.23",1905.07.29-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.29-Davis.pdf,1905.07.29,1905.07.29 +5481,Reported 25-Jul-1905,Invalid,ITALY,Naples,Naples,Wading,boy,M,8,"Body recovered from shark, probable drowning and scavenging",False,Shark involvement prior to death was not confirmed,"C. Moore, GSAF",1905.07.25.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.25.R-Naples.pdf,1905.07.25.R,1905.07.25.R +5482,10-Jul-1905,Unprovoked,INDONESIA, Nusa Tenggara,Off Rakit Island,Jumped or fell overboard,a fireman from the Ettrickdale,M,8,fatal,True,Shark involvement prior to death was not confirmed,"C. Moore, GSAF",1905.07.02-EttrickdaleFireman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.02-EttrickdaleFireman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.02-EttrickdaleFireman.pdf,1905.07.02,1905.07.02 +5483,Jul-1905,Unprovoked,USA,North Carolina,"Ocracoke, Hyde County",Fishing,Coast Guard personnel,M,8,fatal,True,Shark involvement prior to death was not confirmed,"F. Schwartz, p.23 & pers.com to C. Creswell, GSAF",1905.07.00,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.07.00,1905.07.00,1905.07.00 +5484,22-May-1905,Unprovoked,USA,Florida,"Pablo Beach, Jacksonville, Duval County",Swimming,Dunham Coxetter,M,8,Lacerations to back & right leg,False,Shark involvement prior to death was not confirmed,"Atlanta Constitution, 5/23/1905",1905.05.22.R-Coxetter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.05.22.R-Coxetter.pdf,1905.05.22,1905.05.22 +5485,06-Apr-1905,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Swimming,James Anderson,M,26,fatal,True,Shark involvement prior to death was not confirmed,"Natal Mercury, 4/7/1905; H.Gill & M. Levine, GSAF",1905.04.06-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.04.06-Anderson.pdf,1905.04.06,1905.04.06 +5486,26-Mar-1905,Unprovoked,AUSTRALIA,New South Wales,Lismore,Bathing,Richard Owen,M,40,Righ thigh severely bitten,False,5' shark,"Adelaide Advertiser, 3/31/1905",1905.03.26-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.26-Owen.pdf,1905.03.26,1905.03.26 +5487,25-Mar-1905,Invalid,AUSTRALIA,Tasmania,Bridport,Bathing,Charles Taylor,,40,fatal,True,Questionable,"C. Black, GSAF; Adelaide Advertiser, 3/27/1905",1905.03.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.03.25-Taylor.pdf,1905.03.25,1905.03.25 +5488,10-Feb-1905,Invalid,AUSTRALIA,Victoria,Elwood,Bathing,Charles Blake,M,23,Thought to have been taken by a shark,False,Questionable,"Adelaide Advertiser, 2/13/1905",1905.02.10-Blake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.02.10-Blake.pdf,1905.02.10,1905.02.10 +5489,01-Jan-1905,Invalid,AUSTRALIA,Victoria,Elwood,Bathing,Alfred Boldner,M,39,Reported to have been killed by a shark but 2 years later he was found very much alive,False,Invalid,"Adelaide Advertiser, 1/3/1905",1905.01.01-Boldner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.01.01-Boldner.pdf,1905.01.01,1905.01.01 +5490,1905,Boating,USA,North Carolina,"Cape Lookout, Carteret County",Harpooning turtles,"skiff, occupants: Russel J. Coles and others",,39,"No injury, shark bumped skiff",False,20' shark,"Clay Creswell, GSAF",1905.00.00.b-CoastGuard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1905.00.00.b-CoastGuard.pdf,1905.00.00.b,1905.00.00.b +5491,02-Nov-1904,Unprovoked,PHILIPPINES,Luzon Island,"Inner Harbor, Olongapo",Bathing alongside US Naval ship,"sailor, a boatswain's mate from the Piscataqua",M,39,Foot bitten,False,20' shark,"The Sun, undated article; V.M. Coppleson (1958), p.264",1904.11.02-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.11.02-sailor.pdf,1904.11.02,1904.11.02 +5492,Reported 11-Oct-1904,Unprovoked,INDIAN OCEAN,Between Noumea & Sydney,Between Noumea & Sydney,Fell overboard,Axel Slettsten,M,39,fatal,True,20' shark,"The Argus, 10/11/1904",1904.10.11.R-Slettsten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.10.11.R-Slettsten.pdf,1904.10.11.R,1904.10.11.R +5493,Sep-1904,Unprovoked,CUBA,Havana Province,Havana Harbor,Lost his footing & fell overboard,Sailor from ship Mobile,M,39,fatal,True,20' shark,Washington Post 7/19/1905,1904.09.00-Mobile-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.09.00-Mobile-sailor.pdf,1904.09.00,1904.09.00 +5494,Aug-1904,Unprovoked,CUBA,Villa Clara Province,Caibarien Harbor,"Ship's boat capsized in squall, captain & 2 sailors clinging onto hull",2 sailors,M,39,fatal,True,20' shark,Washington Post 7/19/1905,1904.08.00-boat-of-German-bark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.08.00-boat-of-German-bark.pdf,1904.08.00,1904.08.00 +5495,28-Jul-1904,Unprovoked,USA,New Jersey,"Shrewsbury River, Monmouth County",Sailing,"boat, 2 occupants",M,39,No injury,False,20' shark,"New York Herald Tribune, 7/29/1904",1904.07.28-ShrewsburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.28-ShrewsburyRiver.pdf,1904.07.28,1904.07.28 +5496,27-Jul-1904,Unprovoked,USA,Texas,Texas,Swimming,Chester Kennedy,M,39,fatal,True,20' shark,"New York Times, 7/28/1904",1904.07.27-ChesterKennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.27-ChesterKennedy.pdf,1904.07.27,1904.07.27 +5497,Reported 01-Jul-1904,Unprovoked,ITALY,Ancona Province,Ancona,Swimming,"C. Moore, GSAF, Translations by S. Navajas",M,39,fatal,True,20' shark,"C. Moore, GSAF, Translations by S. Navajas",1904.07.01-Ancona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.07.01-Ancona.pdf,1904.07.01.R,1904.07.01.R +5498,07-Feb-1904,Unprovoked,AUSTRALIA,Queensland,Brisbane,Swimming after his hat,George Grant,M,39,fatal,True,20' shark,"Grey River Argus, 2/26/1904",1904.02.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.07-Grant.pdf,1904.02.07,1904.02.07 +5499,04-Feb-1904,Unprovoked,NEW ZEALAND,North Island,Waitara,Swimming,Ngawai Rakau,M,30,fatal,True,20' shark,"Star, 2/4/1904",1904.02.04-Rakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.02.04-Rakau.pdf,1904.02.04,1904.02.04 +5500,23-Jan-1904,Unprovoked,NEW CALEDONIA,South Province,Noumea,Bathing,Charley Smith,M,30,fatal,True,20' shark,"The Advertiser, 2/4/1904",1904.01.23-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.01.23-Smith.pdf,1904.01.23,1904.01.23 +5501,1904,Unprovoked,REUNION ISLAND,Swimming off the British steamer Troutpool,Swimming off the British steamer Troutpool,Swimming,James C. Stonehouse,M,16,fatal,True,20' shark,"C. Moore, GSAF",1904.00.00.R-Stonehouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.R-Stonehouse.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.R-Stonehouse.pdf,1904.00.00.R,1904.00.00.R +5502,1904,Invalid,USA,unknown,unknown,Diving on a wreck,Egan,M,16,Leg bitten,False,Questionable,"New York Times, 6/21/1914",1904.00.00.c-Egan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.c-Egan.pdf,1904.00.00.c,1904.00.00.c +5503,1904,Unprovoked,PHILIPPINES,Quezon,Tayabas,Bathing,Lt. Edward Hearn,M,16,Left arm bitten,False,Questionable,"N.Y. Sun, 3/19/1911 ",1904.00.00.b-Hearn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.b-Hearn.pdf,1904.00.00.b,1904.00.00.b +5504,1904,Unprovoked,USA,Hawaii,"Off Diamond Head, Honolulu, O'ahu",Swimming,male,M,16,fatal,True,Questionable,"The Sun (no date); D. Baldridge, p.171; G.H. Balazs, J. Borg, p.69; L. Taylor (1993), pp. 94-95",1904.00.00.a-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1904.00.00.a-Honolulu.pdf,1904.00.00.a,1904.00.00.a +5505,04-Oct-1903,Unprovoked,CUBA,Havana Province,Havana Harbor,Fell overboard,a sailor,M,16,fatal,True,Questionable,"NY Times, 10/18/1903",1903.10.04-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.10.04-Sailor.pdf,1903.10.04,1903.10.04 +5506,Reported 16-Sep-1903,Unprovoked,USA,New Jersey,"Atlantic City, Atlantic County",Fishing,Rev. John McMillan,M,16,Lacerations to right arm & shoulder,False,9' shark,"Indiana Messenger, 9/16/1903",1903.09.16.R-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.09.16.R-McMillan.pdf,1903.09.16.R,1903.09.16.R +5507,July-1903 ,Unprovoked,FALKLAND ISLANDS,unknown,unknown,"Swimming, after falling overboard",Juan de la Cruz Silva Martinez,M,28,"Right leg bitten, surgically amputated",False,9' shark,"Atlanta Constitution, 1/10/1904",1903.07.00-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.07.00-Martinez.pdf,1903.07.00,1903.07.00 +5508,21-Jun-1903,Unprovoked,AUSTRALIA,New South Wales,Georges River,Swimming,William Price,M,28,fatal,True,9' shark,"The Advertiser, 6/22/1903",1903.06.21-Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.06.21-Price.pdf,1903.06.21,1903.06.21 +5509,04-May-1903,Unprovoked,MEXICO,Veracruz,Coatzacoalcos,Bathing,3 men,M,28,fatal,True,9' shark,"Chicago Tribune, 5/5/1903",1903.05.04-Mexicox3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.05.04-Mexicox3.pdf,1903.05.04,1903.05.04 +5510,Reported 20-Mar-1903,Unprovoked,AUSTRALIA,New South Wales,Sydney,Suicide,R. Raymond,M,28,fatal,True,9' shark,"Northern Territory Times, 3/20/1903",1903.03.20.R-Raymond-Suicide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.20.R-Raymond-Suicide.pdf,1903.03.20.R,1903.03.20.R +5511,12-Mar-1903,Unprovoked,AUSTRALIA,Queensland,Logan River,Swimming,William Bartlett,M,28,fatal,True,9' shark,"Sydney Morning Herald, 3/16/1903",1903.03.12-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.03.12-Bartlett.pdf,1903.03.12,1903.03.12 +5512, 10-Jan-1903,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)",Swimming,Sydney James,M,28,fatal,True,Bull shark,"Northern Territory Times & Gazette, 1/12/1903",1903.01.10-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.01.10-James.pdf,1903.01.10,1903.01.10 +5513,Summer of 1903,Unprovoked,CRETE,unknown,unknown,Sponge diving,2 males,M,28,fatal,True,Bull shark,M. Bardanis,1903.00.00.b-Crete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.b-Crete.pdf,1903.00.00.b,1903.00.00.b +5514,Ca. 1903,Unprovoked,USA,Hawaii,"Koko Head, south side of O'ahu Island",Fishing,Phil Kitchin,M,28,fatal,True,Bull shark,"Captain W. Young, 51-52",1903.00.00.a-PhilKitchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1903.00.00.a-PhilKitchin.pdf,1903.00.00.a,1903.00.00.a +5515,Reported 22-Dec-1902,Unprovoked,NICARAGUA,Rio San Juan,Greytown,Swimming,Frederick Wiseman,M,30,fatal,True,Bull shark,"Racine Daily Journal, 12/22/1902",1902.12.22.R-Wiseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.12.22.R-Wiseman.pdf,1902.12.22.R,1902.12.22.R +5516,10-Nov-1902,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sydney ",Swimming,Howard Dent,M,17,fatal,True,Bull shark,"The Advertiser, 11/11/1902",1902.11.10-Dent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.10-Dent.pdf,1902.11.10,1902.11.10 +5517,Reported 01-Nov-1902,Unprovoked,USA,Texas,"Near Port Lavaca, Calhoun County",Fishing,male,M,17,Severe laceration to hand,False,Bull shark,"Victoria Weekly, 1/11/ 1902",1902.11.01.R-PortLavaca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.11.01.R-PortLavaca.pdf,1902.11.01.R,1902.11.01.R +5518,Reported 29-Aug-1902,Unprovoked,ITALY,Calabria,Nicotera,Swimming,male,M,17,fatal,True,Bull shark,"C. Moore, GSAF",1902.08.28.R-Nicotera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.28.R-Nicotera.pdf,1902.08.28.R,1902.08.28.R +5519,Reported 24-Aug-1902,Boating,CROATIA,Istria County,Porec,Fishing,Row boat; occupants - 2 young men,M,17,"No injury to occupants, shark grabbed anchor rope & towed boat",False,Bull shark,"C. Moore, GSAF",1902.08.24.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.24.R-Croatia.pdf,1902.08.24.R,1902.08.24.R +5520,08-Aug-1902,Unprovoked,USA,Hawaii,"Kalihi, O'ahu",Catching crabs,Hawaiian boy,M,17,fatal,True,Bull shark,"G. H. Balazs & A. H. Kam; V.M. Coppleson (1958), p.250; J. Borg, p.69; L. Taylor (1993), pp. 94-95",1902.08.08-HawaiianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.08.08-HawaiianBoy.pdf,1902.08.08,1902.08.08 +5521,15-Jul-1902,Provoked,ITALY,Liguria,"Galliera dock, Genoa",Fishing,male,M,17,Face & arms injured by hooked shark PROVOKED INCIDENT ,False,Bull shark,"C. Moore, GSAF",1902.07.15-Genoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.15-Genoa.pdf,1902.07.15,1902.07.15 +5522,06-Jul-1902,Provoked,USA,New Jersey,"Atlantic City, Atlantic County",Swimming,Harry M. Speerman,M,17,Shark bit his left arm after he grabbed its tail PROVOKED INCIDENT,False,Bull shark,"New York Times, 7/7/1902",1902.07.06-Speerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.07.06-Speerman.pdf,1902.07.06,1902.07.06 +5523,02-Jun-1902,Unprovoked,PHILIPPINES,Zamboanga del Sur Province,"Near mouth of River Cumalarang, 5 miles from Port Isabela, Basilan Island",Swimming,Apy,M,17,"""Nose hanging by a threat, prints of shark's teeth over entire right cheek""",False,Bull shark,"V.M. Coppleson, p.264",1902.06.08-Apy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.08-Apy.pdf,1902.06.02,1902.06.02 +5524,Jun-1902,Unprovoked,EGYPT,Mediterranean Sea,"Tzortzou Reef, Marsa Matruh",Sponge diving,Giorgos,M,17,Bitten on hand and thigh,False,Bull shark,M. Bardanis,1902.06.00-Giorgos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.06.00-Giorgos.pdf,1902.06.00,1902.06.00 +5525,Apr-1902,Invalid,SOUTH AFRICA,Eastern Cape Province,Algoa Bay,Swimming,Neil Sorenson,M,17,Probable drowning & scavenging,False,Questionable,"M. Levine, GSAF",1902.04.19-Sorenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.04.19-Sorenson.pdf,1902.04.00,1902.04.00 +5526,.Reported 22-Feb-1902,Provoked,NEW ZEALAND,North Island,Poverty Bay,Standing on ship deck,male,M,17,"No injury, hooked shark bit tousers. PROVOKED INCIDENT",False,Questionable,The Colonist 2/22/1902,1902.02.22.R-PovertyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.02.22.R-PovertyBay.pdf,1902.02.22.R,1902.02.22.R +5527,Reported 25-Jan-1902,Unprovoked,AUSTRALIA,New South Wales,Kerosene Bay,Dangling feet in the water,John Ogier,M,17,fatal,True,Questionable,"The Advertiser, 1/25/1902",1902.01.22-Ogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.22-Ogier.pdf,1902.01.25.R,1902.01.25.R +5528,Reported 19-Jan-1902,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Dangling feet in the water,a soldier from the Natal Garrison,M,17,Possible drowning & scavenging. Remains were recovered from a 15' shark's gut,False,Questionable,"M. Levine, GSAF",1902.01.19R-soldier-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19R-soldier-Durban.pdf,1902.01.19.R,1902.01.19.R +5529,19-Jan-1902,Unprovoked,AUSTRALIA,Queensland,Brisbane,Swimming,Charles Jones,M,16,Legs bitten,False,Questionable,"Brisbane Courier, 1/20/1902",1902.01.19-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1902.01.19-Jones.pdf,1902.01.19,1902.01.19 +5530,01-Dec-1901,Unprovoked,AUSTRALIA,Queensland,Brisbane,Bathing,William Quince,M,10,Lacerations to torso & thigh,False,Questionable,"The Argus, 12/2/1901",1901.12.01-Quince.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.12.01-Quince.pdf,1901.12.01,1901.12.01 +5531,Mid Oct-1901,Unprovoked,PHILIPPINES,Zamboanga del Sur Province, Port Isabela de Basilan,Taking catch from a fish weir in which the shark was snared,"Dahkus, a Molussa Moro",M,10,Right thigh bitten ,False,Questionable,"J.A. Guthrie, M.D.; Newark Advocate, 5/24/1902; V.M. Coppleson (1958), p.264",1901.10.00-Dahkus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.10.00-Dahkus.pdf,1901.10.00,1901.10.00 +5532,Reported 23-Sep-1901,Unprovoked,CYPRUS,Southern Cyprus,Larnaca,Swimming,male,M,Teen,fatal,True,2 m shark,"Bardanis citing Embros, 9/23/1901",1901.09.23.R-Cyprus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.09.23.R-Cyprus.pdf,1901.09.23.R,1901.09.23.R +5533,30-Jul-1901,Unprovoked,SOUTH AFRICA,Western Cape Province,Windmill Beach,Swimming,"John Hendrick Adrian Chandler, a prisoner of war",M,29,fatal,True,White shark,"M. Levine, GSAF",1901.07.30-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.30-Chandler.pdf,1901.07.30,1901.07.30 +5534,17-Jul-1901,Invalid,ITALY,Syracuse,Capo Santa Croce,Swimming,Antonio Tornatori,M,20,"Disappeared, but shark involvement unconfirmed",False,Questionable,C. Moore. GSAF,1901.07.17-Antonio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.07.17-Antonio.pdf,1901.07.17,1901.07.17 +5535,Reported 29-Jun-1901,Invalid,YEMEN ,Aden,Aden,Diving around anchored liner,boy,M,20,,,Questionable,"The Graphic, 6/29/1901",1901.06.29.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.29.R-Aden.pdf,1901.06.29.R,1901.06.29.R +5536,24-Jun-1901,Unprovoked,PHILIPPINES,Western Viscayas,"Island of Panay, Iliolo",Swimming,"S. McKie, apprentice 1st class on the U.S. Naval ship Annapolis",M,20,"Left thigh stripped of flesh 4"" above the knee ",False,Questionable,"J.A. Guthrie; Sun, 7/13/1913; V.M. Coppleson, p.264 also states ""Native taken near same spot 3 months previously.""",1901.06.24-McK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.06.24-McK.pdf,1901.06.24,1901.06.24 +5537,30-Jan-1901,Unprovoked,AUSTRALIA,Queensland,Brisbane,Bathing,John Thompson,M,20,fatal,True,Questionable,"Otago Witness, 2/6/1901",1901.01.30-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.01.30-Thompson.pdf,1901.01.30,1901.01.30 +5538,Summer 1901,Unprovoked,USA,Florida,Indian River Inlet / Fort Pierce Inlet,Bathing,Michael O'Brien,M,20,Abdomen bitten,False,Questionable,"W.H. Gregg; L. Schultz & M. Malin, p.533",1901.00.00-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1901.00.00-O'Brien.pdf,1901.00.00,1901.00.00 +5539,27-Dec-1900,Unprovoked,AUSTRALIA,New South Wales,"Middle Harbour, Sydney ",Bathing,Thomas Houstan,M,20,fatal,True,Questionable,"Taranaki Herald, 12/28/1900",1900.12.27-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.12.27-Houston.pdf,1900.12.27,1900.12.27 +5540,14-Nov-1900,Unprovoked,SOUTH AFRICA,Western Cape Province,Three Anchor Bay,Swimming,William Strathorn,M,30,fatal,True,Questionable,"P. Logan; M. Levine, GSAF",1900.11.14-Strathorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.11.14-Strathorn.pdf,1900.11.14,1900.11.14 +5541,27-Oct-1900,Invalid,SOUTH AFRICA,Western Cape Province,"Woodstock Beach, Cape Town",Swimming,Amos Layzell,M,30,Probable drowning & scavenging,False,Questionable,"P. Logan; M. Levine, GSAF",1900.10.27-Layzell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.10.27-Layzell.pdf,1900.10.27,1900.10.27 +5542,15-Sep-1900,Unprovoked,AUSTRALIA,Queensland,Townsville,Swimming,John Hennessy,M,30,Laceration to right leg,False,Questionable,"Sydney Morning Herald, 9/17/1900",1900.09.15-Hennessy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.15-Hennessy.pdf,1900.09.15,1900.09.15 +5543,13-Sep-1900,Unprovoked,USA,Rhode Island,Coddington Cove,Diving,George Brown,M,30,No injury,UNKNOWN, ,"NY Times, 9/14/1900",1900.09.13-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.13-Brown.pdf,1900.09.13,1900.09.13 +5544,05-Sep-1900,Unprovoked,USA,Hawaii,"Waikiki Beach, Oahu",Floating,Joe Hartman,M,30,"Bathing suit torn & ""imprints of the shark's teeth on his body""",False, ,"Honolulu Republican, 9/6/1900",1900.09.05-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1900.09.05-Hartman.pdf,1900.09.05,1900.09.05 +5545,21-Aug-1900,Unprovoked,USA,North Carolina,"Southport, Brunswick County",Bathing,Burris,M,30,Left hand lacerated,False, ,"C. Creswell, GSAF",1900.08.21-Burriss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.08.21-Burriss.pdf,1900.08.21,1900.08.21 +5546,31-Jul-1900,Unprovoked,CROATIA, Primorje-Gorski Kotar County,"Volosko, Opatija",Swimming,male,M,30,fatal,True, ,"C. Moore, GSAF",1900.07.31-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.31-Croatia.pdf,1900.07.31,1900.07.31 +5547,14-Jul-1900,Invalid,USA,Hawaii,"Makapu'u Point, O'ahu",Hunting seashells,Emil Uhlbrecht & unidentified person,M,30,"Believed drowned. Uhlbrecht’s foot, and the pelvis & femur of another person recovered in gut of tiger shark shark caught on 17-Aug-1900",False,Questionable,"Los Angeles Times, 7/28/1900",1900.07.14-Uhlbrecht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.14-Uhlbrecht.pdf,1900.07.14,1900.07.14 +5548,Late Jul-1900,Provoked,USA,Connecticut,"Bridgeport, Fairfield County", ,"skiff with Dr. William T. Healey, Dr. Henry Callahan on board",,30,"No injury to occupants. They shot shark, then it capsized their skiff. PROVOKED INCIDENT",False,Questionable,"Times, 8/1/1900",1900.07.00-Bridgeport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.07.00-Bridgeport.pdf,1900.07.00,1900.07.00 +5549, 28-Jan-1900,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor (Estuary)","Standing, gathering oysters",Charles Duck,M,30,Right posterior thigh bitten,False,Questionable,"Poverty Bay Herald, 2/12/1900",1900.01.28-Duck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.01.28-Duck.pdf,1900.01.28,1900.01.28 +5550,Early 1900s,Unprovoked,USA,Hawaii,"Inter-Island Dry Dock at Kakaako Street, Honolulu, O'ahu","Standing, gathering oysters",Emil A. Berndt,M,30,Severe abrasion when shark swam between his legs,False,Questionable,"G. H. Balazs; J. Borg, p.69; L. Taylor (1993), pp.94-95",1900.00.00.b-Berndt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.b-Berndt.pdf,1900.00.00.b,1900.00.00.b +5551,Ca. 1900,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Mr. Gruner,M,30,Leg severed,False,Questionable,H. Monsen ,1900.00.00.a-Gruner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1900.00.00.a-Gruner.pdf,1900.00.00.a,1900.00.00.a +5552,18-Dec-1899,Unprovoked,AUSTRALIA,Queensland,Tingalpa Creek,Fell into the water,J. Richardson,M,30,bite to lower leg,False,Questionable,"Brisbane Courier, 12/21/1899",1899.12.18-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.12.18-Richardson.pdf,1899.12.18,1899.12.18 +5553,20-Nov-1899,Sea Disaster,PHILIPPINES,Mindoro Occidental,Off Lubang Island,Sea Disaster,wreck of the steamship Hubeh,,30,fatal,True,Questionable,"The Mercury, 1/191900",1899.11.20-Hupeh-wreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.11.20-Hupeh-wreck.pdf,1899.11.20,1899.11.20 +5554,28-Oct-1899,Boating,AUSTRALIA,Victoria,"Governor's Reef, Port Phillip Bay",Fishing for squid,Occupants: Charles Cox and his son,,30,"No injury to occupants, shark bit boat",False,20' shark,"C. Moore, GSAF",1899.10.28-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.28-Cox.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.28-Cox.pdf,1899.10.28,1899.10.28 +5555,Reported 12-Oct-1899,Unprovoked,LIBYA,Mediterranean Sea,Off Bengasi,Diving,John Cataris,M,30,Lacerations to head,False,20' shark,"Iowa Daily Press, 10/12/1899",1899.10.12.b.R-Cataris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.b.R-Cataris.pdf,1899.10.12.b,1899.10.12.b +5556,Reported 12-Oct-1899,Unprovoked,LIBYA,Mediterranean Sea,Off Bengasi,Sponge diving,Skoumbourdi,M,30,fatal,True,20' shark,"Iowa Daily Press, 10/12/1899",1899.10.12.a.R-Skoumbourdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.10.12.a.R-Skoumbourdi.pdf,1899.10.12.a,1899.10.12.a +5557,Reported 11-Sep-1899,Unprovoked,MEXICO,Tamaulipas,Tampico,Swimming,Paul Guyot,M,30,fatal,True,20' shark,"Bryan Morning Eagle, 9/12/1899",1899.09.11.R-Guyot,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.09.11.R-Guyot,1899.09.11.R,1899.09.11.R +5558,Reported 23-Aug-1899,Provoked,USA,California,"Monterey Bay, Monterey County",Hunting sharks,males,M,30,fatal,True,Basking shark,"Mexia Evening Ledger, 8/23/1899",1899.08.23.R-BaskingShark-Monterey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.23.R-BaskingShark-Monterey.pdf,1899.08.23.R,1899.08.23.R +5559,15-Aug-1899,Unprovoked,USA,Florida,"Trout River, Panama Park",Swimming,Delano Wood,M,15,fatal,True,3 m [10'] shark,"Washington Post, 8/16/1899, p.1",1899.08.15-DelanoWood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.15-DelanoWood.pdf,1899.08.15,1899.08.15 +5560,08-Aug-1899,Unprovoked,EGYPT ,Mediterranean Sea,Port Said,Floating on his back,Arab boy,M,9,Back muscles torn away,False,3 m [10'] shark,W. B. Orme,1899.08.08.c-ArabBoy-9.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.c-ArabBoy-9.pdf,1899.08.08.c,1899.08.08.c +5561,08-Aug-1899,Unprovoked,EGYPT ,Mediterranean Sea,Port Said,Bathing,Arab boy,M,19,"Forearm, wrist & hand bitten",False,3 m [10'] shark,W. B. Orme,1899.08.08.b-ArabBoy-19.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.b-ArabBoy-19.pdf,1899.08.08.b,1899.08.08.b +5562,08-Aug-1899,Unprovoked,EGYPT,Mediterranean Sea,Port Said,Bathing,Arab boy,M,13,Left leg bitten,False,3 m [10'] shark,W. B. Orme,1899.08.08.a-ArabBoy-13.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.08.08.a-ArabBoy-13.pdf,1899.08.08.a,1899.08.08.a +5563,Reported 08-Jul-1899,Unprovoked,BAHAMAS,unknown,unknown,Fell overboard ,Captain Masson,M,13,fatal,True,3 m [10'] shark,"Mataura Ensign, 7/8/1899",1899.07.08.R-Masson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.07.08.R-Masson.pdf,1899.07.08.R,1899.07.08.R +5564,07-Jun-1899,Provoked,ITALY,Calabria,Bagnara Calabra,Fishing,Enrico & Noce,M,13,Multiple injuries from boated shark PROVOKED INCIDENT,False,70 kg shark,C. Moore. GSAF,1899.06.07-Bagnara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.07-Bagnara.pdf,1899.06.07,1899.06.07 +5565, 02-Jun-1899,Invalid,NEW ZEALAND,North Island,East Cape,Attempting to land a boat from the Hinemoa,N. Buchanan,M,13,fatal,True,Shark involvement not confirmed,"Brisbane Courier, 6/7/1899",1899.06.02-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.06.02-Buchanan.pdf,1899.06.02,1899.06.02 +5566,28-May-1899,Invalid,PHILIPPINES,Negros ,Escalante,Swimming,Captain Tilly,M,13,fatal,True,Shark involvement not confirmed,"New York Times, 5/30/1899",1899.05.28-CaptTilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.28-CaptTilly.pdf,1899.05.28,1899.05.28 +5567,Reported 04-May-1899,Unprovoked,ITALY,Imperia Province,Bordighera,Bathing,The valet of the Earl of Strathmore and Kinghorne,M,13,fatal,True,Shark involvement not confirmed,"Washington Post, 5/5/1899",1899.05.04.R-Valet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.05.04.R-Valet.pdf,1899.05.04.R,1899.05.04.R +5568,28-Jan-1899,Invalid,AUSTRALIA,New South Wales,Newcastle,Bathing,Rose Sutcliffe,F,13,Drowning may mav preceded attack,False,Questionable,"Kalgoorlie Western Argus, 2/2/1899",1899.01.28-Sutcliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.01.28-Sutcliffe.pdf,1899.01.28,1899.01.28 +5569,1899 During the Seige of Ladysmith,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Dangling feet in the water,a petty officer,M,13,Foot severed ,False,Questionable,"Indiana Evening Gazette, 11/22/1904",1899.00.00.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.c-Durban.pdf,1899.00.00.c,1899.00.00.c +5570,1899,Boating,USA,Florida,St. John's River,Rowing,"boat, occupants: 2 Jacksonville pilots",M,13,No injury to occupants. shark bit oar,False,Questionable,"W. H. Gregg, p. 22",1899.00.00.b-2pilots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.b-2pilots.pdf,1899.00.00.b,1899.00.00.b +5571,Ca. 1899,Unprovoked,USA,Florida,Near a small wreck in a channel at Indian Key,Hunting crayfish,male,M,13,Leg bitten,False,1.5 m [5'] shark,"W.H. Gregg, p.19",1899.00.00.a-IndianKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1899.00.00.a-IndianKey.pdf,1899.00.00.a,1899.00.00.a +5572,Reported 28-Dec-1898,Unprovoked,AUSTRALIA,Queensland,The Narrows,Fell oveboard,James Waters,M,13,fatal,True,1.5 m [5'] shark,"Brisbane Courier, 12/28/1898",1898.12.28.R-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.12.28.R-Waters.pdf,1898.12.28.R,1898.12.28.R +5573,28-Oct-1898,Unprovoked,USA,Hawaii,Off Kohala,Jumped overboard,Ah Hoi,M,13,fatal,True,1.5 m [5'] shark,"Hawaiian Gazette, 11/1/1898",1898.10.28-AhHol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.10.28-AhHol.pdf,1898.10.28,1898.10.28 +5574,Reported 07-Sep-1898,Unprovoked,WEST INDIES,unknown,unknown,Fell overboard,Samuel Bray,M,13,fatal,True,1.5 m [5'] shark,"The Guardian, 9/7/1898",1898.09.07.R-Bray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.07.R-Bray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.09.07.R-Bray.pdf,1898.09.07.R,1898.09.07.R +5575,22-Aug-1898,Unprovoked,USA,New York,"Prince's Bay, Staten Island",Swimming,Charles E. Boone,M,13,Laceration to thigh,False,1.5 m [5'] shark,"Lima News, 9/27/1898",1898.08.22-Boone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.08.22-Boone.pdf,1898.08.22,1898.08.22 +5576,Reported 26-Jul-1898,Invalid,AUSTRALIA,New South Wales,Sydney,Swimming after their boat capsized,Martin Gunner,M,13,fatal,True,Questionable,"Brisbane Courier, 7/26/1898",1898.07.26.R-Gunner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.26.R-Gunner.pdf,1898.07.26.R,1898.07.26.R +5577,15-Jul-1898,Unprovoked,YEMEN ,Aden,Outer Harbor,Swimming at side of small boat,Somali boatman,M,24,fatal,True,Questionable,Captain J. L.T. Jones,1898.07.15-SomaliBoatman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.15-SomaliBoatman.pdf,1898.07.15,1898.07.15 +5578,14-Jul-1898,Unprovoked,YEMEN ,Aden,Sapper Bay,Standing,Davies,M,22,fatal,True,Questionable,"Inangahua Times, 10/26/1898",1878.07.14-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.07.14-Davies.pdf,1898.07.14,1898.07.14 +5579, Jul-1898,Unprovoked,CUBA,Santiago de Cuba Province,Santiago de Cuba,Swimming,male,M,22,fatal,True,Questionable,"V.M. Coppleson (1958), p.258 ",1898.07.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.07.00-Cuba.pdf,1898.07.00,1898.07.00 +5580,22-Jun-1898,Unprovoked,NEW CALEDONIA,South Province,Noumea,boat from City of Naples capsized,14 sailors,M,22,fatal,True,Questionable,"New York Times, 6/23/1898",1898.06.22-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.06.22-NewCaledonia.pdf,1898.06.22,1898.06.22 +5581,13-Apr-1898,Sea Disaster,FIJI,Muala,Muala,The cutter Francis Adams foundered,male,M,22,Lacerations to thigh,False,Questionable,"Launceston Examiner, 8/26/1898",1898.04.13-FrancisAdams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.04.13-FrancisAdams.pdf,1898.04.13,1898.04.13 +5582,1898.01.24,Unprovoked,SRI LANKA,Colombo Harbor,Colombo Harbor,Swimming,2 U.S. Marines,M,22,fatal,True,Questionable,"U.S.Life-Saving Annual Report, 1913",1898.01.24-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.01.24-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.01.24-Ceylon.pdf,1898.01.24,1898.01.24 +5583,Reported 1898,Invalid,CRETE,unknown,unknown,Sponge divers,male,M,22,Unknown,False,Questionable,"C. Moore, GSAF",1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,1898.00.00.R,1898.00.00.R +5584,1898,Unprovoked,USA,South Carolina,Ramshorn Creek,Fishing (Seining),Archibald Rutledge,M,15,Lacerations to left hand,False,White shark,"Field & Stream, 1933",1898.00.00.f-Rutledge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.f-Rutledge.pdf,1898.00.00.f,1898.00.00.f +5585,1898 (soon after the close of the Spanish-American War),Unprovoked,CUBA,Santiago de Cuba Province,Off Santiago de Cuba,13 men in the water after sailboat capsized & sank,seamen,M,15,fatal,True,White shark,"J. E. Kirby, letter to Captain Dinning, dated 10/14/1927",1898.00.00.e-13-men.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.e-13-men.pdf,1898.00.00.e,1898.00.00.e +5586,1898,Unprovoked,JAMAICA,Kingston Parish,Kingston Harbor,Trailing hand in the water,Gonzales,F,15,"Hand lacerated, 2 fingers severed",False,White shark,"Indiana Evening Gazette, 11/22/1904",1898.00.00.d-Gonzales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.d-Gonzales.pdf,1898.00.00.d,1898.00.00.d +5587,1898,Unprovoked,CUBA,Camaguey Province,Nuevitas Harbor,Attempting to escape by swimming to shore,"5 American soldiers, prisoners ",M,15,fatal,True,White shark,"J. E. Kirby, letter to Captain Dinning, dated 10/14/1927",1898.00.00.c-AmericanPOWs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.c-AmericanPOWs.pdf,1898.00.00.c,1898.00.00.c +5588,1898-1899,Unprovoked,USA,Florida,"a creek near Jacksonville, Duval County",Attempting to escape by swimming to shore,boy,M,15,Lacerations,False,White shark,W. H. Gregg,1898.00.00.b-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.b-Florida.pdf,1898.00.00.b,1898.00.00.b +5589,Summer of 1898,Unprovoked,YEMEN ,Aden,Harbor,Diving for coins,male,M,15,fatal,True,White shark,"Daily Kennebec Journal, 3/27/1911",1898.00.00.a-AdenDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.a-AdenDiver.pdf,1898.00.00.a,1898.00.00.a +5590,1898,Sea Disaster,USA,Hawaii,Hawaii,Loss of the schooner Nomad,male,M,15,fatal,True,White shark,"H.W. McCurdy, History of the Pacific Northwest, p. 51",1898.00.00.g-Nomad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.g-Nomad.pdf,1898.00.00 g,1898.00.00 g +5591,Reported 04-Dec-1897,Provoked,USA,East coast,East coast,Angling,a sailor,M,15,Hooked shark bit his leg PROVOKED INCIDENT,False,White shark,"Trenton Evening Times, 12/4/1897",1897.12.04.R-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.12.04.R-Sailor.pdf,1897.12.04.R,1897.12.04.R +5592,15-Oct-1897,Invalid,MEXICO,Vera Cruz,Vera Cruz Harbor,Diving,Alexander Cameron,M,15,Minor injuries,False,Questionable,"NY Times, 11/11/1897",1897.10.15-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.15-Cameron.pdf,1897.10.15,1897.10.15 +5593,Reported 05-Oct-1897,Unprovoked,MARSHALL ISLANDS,Ratak ,Ailuk Island,Fishing,5 children,,15,fatal,True,3 sharks,"North Otago Times, 1258/1897",1897.10.05.R-Ailuk-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.10.05.R-Ailuk-Island.pdf,1897.10.05.R,1897.10.05.R +5594,17-Sep-1897,Provoked,USA,Rhode Island,Point Judith,Fishing,"""Hoke"" Smith",M,15,Lacerations to hand by netted shark PROVOKED INCIDENT,False,"13'10"" shark","New York Times, 9/18/1897",1897.09.17-HokeSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.17-HokeSmith.pdf,1897.09.17,1897.09.17 +5595,06-Sep-1897,Unprovoked,USA,South Carolina,"Elliott Cut, Charleston County",Standing,Allan Fripp,M,15,Lacerations to lower leg,False,"13'10"" shark","Hartford Courant, 8/7/1897",1897.09.06-Fripp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.09.06-Fripp.pdf,1897.09.06,1897.09.06 +5596,21-Jul-1897,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Wading after stray fish from seine netter’s catch,a young Indian boy,M,15,fatal,True,"13'10"" shark","Natal Mercury, 7/24/1897; M. Levine, GSAF",1897.07.21-Indianboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.07.21-Indianboy.pdf,1897.07.21,1897.07.21 +5597,09-Jun-1897,Sea Disaster,YEMEN ,Socotra Islands,Socotra,Wreck of the steamship Sultan of Bombay,Moslem pilgrims,,15,fatal,True,"13'10"" shark","Star, 7/10/1897; Kalgoorlie Western Argus, 7/15/1897",1897.06.09-Sultan-of-Bombay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.06.09-Sultan-of-Bombay.pdf,1897.06.09,1897.06.09 +5598,Reported 15-Mar-1897,Unprovoked,unknown,Mediterranean Sea,Mediterranean Sea,Swimming,male,M,15,fatal,True,"13'10"" shark","Daily Northwestern, 5/15/1897",1897.03.15.b.R-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.b.R-Mediterranean.pdf,1897.03.15.b.R,1897.03.15.b.R +5599,Reported 15-Mar-1897,Unprovoked,USA,Massachusetts,30 miles south of Lynn,Fishing,male,M,15,fatal,True,"13'10"" shark","Daily Northwestern, 5/15/1897",1897.03.15.a.R-Lynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.03.15.a.R-Lynn.pdf,1897.03.15.a.R,1897.03.15.a.R +5600,1897,Unprovoked,NEW ZEALAND,unknown,unknown,Fishing,Maori male,M,15,Lacerations to left arm,False,"13'10"" shark","Deseret News, 6/28/1946",1987.00.00.b-Maori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1987.00.00.b-Maori.pdf,1897.00.00.b,1897.00.00.b +5601,1897,Unprovoked,EGYPT,Mediterranean Sea,Port Said,Fishing,Anonymous,,15,No details,UNKNOWN,"13'10"" shark","Mentioned in paper by W.B. Orme; G.A. Llano, p.127",1897.00.00.a-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1897.00.00.a-Egypt.pdf,1897.00.00.a,1897.00.00.a +5602,23-Decp1896,Boating,AUSTRALIA,Victoria,Hobson's Bay,Fishing,10' skiff. Occupants F. Whitehead & L. Honeybone,M,15,No injury to occupants. Shark bit boat several times,False,12' to 14' shark,"South Australian Register, 12/25/1896",1896.12.23-skiff-HobsonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.23-skiff-HobsonsBay.pdf,1896.12.23,1896.12.23 +5603,20-Dec-1896,Unprovoked,NEW ZEALAND,North Island,"Marine Parade, Napier, Hawke Bay",Bathing,Bright Cooper,M,26,fatal,True,12' to 14' shark,"A.W. Parrott, p. 68; V.M. Coppleson (1958), p.258",1896.12.20-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.20-Cooper.pdf,1896.12.20,1896.12.20 +5604,Reported 17-Dec-1896,Unprovoked,NEW ZEALAND,South Island,Hoiktika,Bathing,E. Reynolds,M,26,fatal,True,12' to 14' shark,"The Star, 12/17/1896",1896.12.17.R-Reynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.12.17.R-Reynolds.pdf,1896.12.17.R,1896.12.17.R +5605,29-Nov-1896,Unprovoked,AUSTRALIA,Western Australia,Albany,Swimming,Davies,M,26,fatal,True,12' to 14' shark,"West Australian, 12/3/1896",1896.11.29-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.29-Davies.pdf,1896.11.29,1896.11.29 +5606,01-Nov-1896,Unprovoked,AUSTRALIA,Western Australia,Esperance,Boat swamped,Louis,M,26,fatal,True,12' to 14' shark,"West Australian, 11/2/1896",1896.11.01-Louis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.11.01-Louis.pdf,1896.11.01,1896.11.01 +5607,Reported 11-Sep-1896,Unprovoked,SRI LANKA,unknown,unknown,Diving,"New Oxford Item, 9/11/1896",M,26,Leg severed,False,12' to 14' shark,"New Oxford Item, 9/11/1896",1896.09.11.R-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.09.11.R-SriLanka.pdf,1896.09.11.R,1896.09.11.R +5608,25-Jul-1896,Unprovoked,USA,Hawaii,"Kahului, Maui",Fishing,Nahalehau,M,35,fatal,True,12' to 14' shark,"Hawaiian Gazette, 8/4/1896",1896.07.25-Nahalehau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.07.25-Nahalehau.pdf,1896.07.25,1896.07.25 +5609,Reported 21-Jun-1896,Unprovoked,USA,South Carolina,Charleston,Bathing,Mr. Walsh ,M,35,Lacerations to foot and calf,False,12' to 14' shark,"New York Times, 6/21/1896",1896.06.21.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.06.21.R-Walsh.pdf,1896.06.21.R,1896.06.21.R +5610, 11-Jan-1896,Unprovoked,AUSTRALIA,New South Wales,"Johnstone's Bay, Sydney",Bathing,William Ready,M,11,fatal,True,12' to 14' shark,"Brisbane Courier, 1/13/1896",1896.01.11-Ready.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.01.11-Ready.pdf,1896.01.11,1896.01.11 +5611,1896,Unprovoked,USA,Florida,Florida,"Swimming ashore from a ""filibuster""",male,M,11,fatal,True,12' to 14' shark,W.H. Gregg,1896.00.00.b-filibuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.b-filibuster.pdf,1896.00.00.b,1896.00.00.b +5612,1896,Unprovoked,HAITI,Off Cape Haitien,Off Cape Haitien,Wading,Syrian,M,15,Leg severed below knee,False,12' to 14' shark,"C. R. Baker & C.M. Rose; V.M. Coppleson (1958), p.259 ",1896.00.00.a-Syrian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1896.00.00.a-Syrian.pdf,1896.00.00.a,1896.00.00.a +5613,09-Dec-1895,Unprovoked,AUSTRALIA,New South Wales,"West Balmain, Sydney",Bathing,Thomas John Terrill,M,14,fatal,True,12' to 14' shark,"Brisbane Courier, 12/9/1895",1895.12.09-Terrill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.12.09-Terrill.pdf,1895.12.09,1895.12.09 +5614,Reported 21-Nov-1895,Unprovoked,BARBADOS,St Michael Parish,Bridgetown,Diving for coins,Rouee Youma,M,14,Leg bitten,False,12' to 14' shark,"NY Times, 11/21/1895",1895.11.21.R-Youma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.21.R-Youma.pdf,1895.11.21.R,1895.11.21.R +5615,16-Nov-1895,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay ,Fishing,Edward Bailey,M,14,fatal,True,12' to 14' shark,"West Australian, 11/19/1895",1895.11.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.11.16-Bailey.pdf,1895.11.16,1895.11.16 +5616,18-Sep-1895,Sea Disaster,CUBA,Havana Province,Havana Harbor,Shipwreck,male,M,14,Probable drowning & scavenging,False,Questionable,"NY Times, 9/21/1895",1895.09.18-HavanaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.18-HavanaShipwreck.pdf,1895.09.18,1895.09.18 +5617,Reported 14-Sep-1895,Unprovoked,YEMEN ,Aden,Aden,Diving for coins,a native boy ,M,14,fatal,True,Questionable,"Queenslander, 9/14/8/1895",1895.09.14.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.14.R-Aden.pdf,1895.09.14.R,1895.09.14.R +5618,Sep-1895,Provoked,USA,North Carolina,"Near the mouth of the Cape Fear River, Brunswick County",Fishing,"open boat, occupants: Robert Ruark, Hoyle Dosher & Elmer Adkins",,14,"No injury, hooked shark rammed boat & Ruark fell on its back PROVOKED INCIDENT",False,5' shark,"C. Creswell, GSAF",1895.09.00-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.09.00-boat.pdf,1895.09.00,1895.09.00 +5619,11-Aug-1895,Unprovoked,USA,Rhode Island,Noyes Beach,Swimming,Charles Beattie,M,26,fatal,True,5' shark,Boston Globe,1895.08.11-Beattie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.11-Beattie.pdf,1895.08.11,1895.08.11 +5620,2-Aug-1895,Unprovoked,USA,New Jersey,Raritan Bay,Fishing,Elias Turner,M,26,Arm bitten,False,5' shark,"Boston Globe, 8/3/1895, p.5",1895.08.02-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.08.02-Turner.pdf,1895.08.02,1895.08.02 +5621,Reported 16-Jul-1895,Unprovoked,JAPAN,unknown,unknown,Hunting seals,William Lloyd,M,26,fatal,True,5' shark,"Morning News, 7/16/1895",1895.07.16.R-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.07.16.R-Lloyd.pdf,1895.07.16.R,1895.07.16.R +5622,Reported 03-Jun-1895,Unprovoked,AUSTRALIA,Western Australia,Barrow Passage,Pearl diving,a Japanese diver,M,26,fatal,True,5' shark,"The West Australian, 6/3/1895",1895.06.03.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.06.03.R-JapaneseDiver.pdf,1895.06.03.R,1895.06.03.R +5623,21-May-1895,Sea Disaster,BAHAMAS,Bimini Islands,Off Gun Cay,Sea Disaster : Wreck of the Carrie E. Long,Tip Stanley,M,26,Heel bitten,False,5' shark,"Meriden Daily Republican, 6/12/1895",1895.05.21-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.21-Stanley.pdf,1895.05.21,1895.05.21 +5624,03-May-1895,Unprovoked,NEW ZEALAND,South Island,Preservation Inlet,"""Boat accident""",James Cromarty,M,26,fatal,True,5' shark,"Otago Witness, 5/16/1895",1895.05.03-Cromarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.05.03-Cromarty.pdf,1895.05.03,1895.05.03 +5625,29-Apr-1895,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mzimvubu River,"""Crossing the river""",Sombutize,M,28,fatal,True,5' shark,"M. Levine, GSAF",1895.04.29-Sombutize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.29-Sombutize.pdf,1895.04.29,1895.04.29 +5626,23-Apr-1895,Unprovoked,NEW ZEALAND,South Island,Oamaru,Swimming,Percy Mitchell,M,28,Lacerations to foot,False,5' shark,"Star, 4/25/1895, p.",1895.04.23-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.04.23-Mitchell.pdf,1895.04.23,1895.04.23 +5627,Reported 29-Mar-1895,Unprovoked,INDONESIA,Moluccas,South Aroo Island,Swimming,Pindo Island pirates,M,28,fatal,True,5' shark,"Fitzroy City Press, 3/29/1895",1895.03.29.R-Pindo-Islanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.29.R-Pindo-Islanders.pdf,1895.03.29.R,1895.03.29.R +5628,15-Mar-1895,Unprovoked,AUSTRALIA,Queensland,Burnett River,Swimming,Nicol Pringle,M,13,Lower leg & foot bitten,False,5' shark,"The Telegraph, 3/20/1895",1895.03.15-Pringle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.03.15-Pringle.pdf,1895.03.15,1895.03.15 +5629,27-Feb-1895,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Swimming,James Edward Clifton Donald,M,14,fatal,True,5' shark,I. Donald ,1895.02.27-Donald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.27-Donald.pdf,1895.02.27,1895.02.27 +5630,Reported 23-Feb-1895,Unprovoked,PANAMA,Bocas del Toro,Bocas del Toro,"Swimming, after sailboat capsized",John Minard,M,14,fatal,True,5' shark,"Fort Wayne Sentinel, 2/23/1895",1895.02.23.R-Minard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.02.23.R-Minard.pdf,1895.02.23.R,1895.02.23.R +5631,1895,Boating,AUSTRALIA,Western Australia,"Dampier's Creek, Broome","Swimming, after sailboat capsized",oar of Knut Dahl's boat,,14,No injury to occupants of boat,False,5' shark,"G.P. Whitley (1951), p.192",1895.00.00-Dahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1895.00.00-Dahl.pdf,1895.00.00.b,1895.00.00.b +5632,11-Dec-1894,Provoked,USA,Florida,"North Beach, St. Augustine",Fishing,Chatiles F. Brynes,M,14,Left leg bitten PROVOKED INCIDENT,False,12' shark,"Atlanta Constitution, 12/12/1894",1894.12.11-Brynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.12.11-Brynes.pdf,1894.12.11,1894.12.11 +5633,28-Nov-1894,Unprovoked,AUSTRALIA,New South Wales,Newcastle ,Bathing,Horace Hewison,M,19,"""Lost his arm""",False,10' to 12' shark,"Brisbane Courier, 1/7/1895, p.5",1894.11.28-Hewison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.11.28-Hewison.pdf,1894.11.28,1894.11.28 +5634,Reported 06-Oct-1894,Unprovoked,USA,Alabama,Mobile Bay,Swimming,a deserter from the ship Evarest,M,19,fatal,True,10' to 12' shark,"Middletown Daily Argus, 10/6/1894",1894.10.06.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.10.06.R-deserter.pdf,1894.10.06.R,1894.10.06.R +5635,Reported 12-Sep-1894,Unprovoked,USA,Virginia,Norfolk,Bathing,Michael Daly,M,19,Lacerations to leg,False,10' to 12' shark,"Washington Post, 9/13/1894",1894.09.12.R-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.12.R-Daly.pdf,1894.09.12.R,1894.09.12.R +5636,Reported 06-Sep-1894,Unprovoked,FIJI,Vita Levu,Rewa River,Dangling feet in the water,Fijian girl,F,19,Foot severed,False,10' to 12' shark,"The Colonist, 9/6/1894",1894.09.06.R-FijianGirl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.06.R-FijianGirl.pdf,1894.09.06.R,1894.09.06.R +5637,Reported 01-Sep-1894,Provoked,USA,Texas,Rockport,Fishing,William Muller,M,19,Laceration to calf PROVOKED INCIDENT,False,10' to 12' shark,"Lima Times Democrat, 9/1/1894",1894.09.01.R-Muller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.09.01.R-Muller.pdf,1894.09.01.R,1894.09.01.R +5638,21-Aug-1894,Unprovoked,USA,New York,"Woolsey's Point, East River",Swimming,Catherine Beach,F,19,No injury,UNKNOWN,"Shovelnose shark, 5'","NY Times, 8/22/1894 ",1894.08.21-CatherineBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.21-CatherineBeach.pdf,1894.08.21,1894.08.21 +5639,01-Aug-1894,Unprovoked,USA,Florida,"Jacksonville, Duval County",Swimming / floating on his back,Milton Shane,M,19,Lacerations to thigh,False,"Shovelnose shark, 5'","Jacksonville Times-Union, 8/2/1894",1894.08.01-MiltonShane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.08.01-MiltonShane.pdf,1894.08.01,1894.08.01 +5640,Reportd 15-Jul-1894,Unprovoked,FRANCE,Provence,"la Badine, Hyères ",Fishing,"la Badine, Hyères, ",M,19,fatal,True,1.8 m shark,"C. Moore, GSAF",1894.07.15.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.07.15.R-France.pdf,1894.07.15.R,1894.07.15.R +5641,29-Jun-1894,Unprovoked,USA,Florida,Anastasia Island,Bathing,Erskine H. Reynolds,M,19,"""Painfully injured"" but no details",UNKNOWN,1.8 m shark,"Atlanta Constitution, 7/1/1894; Washington Post 7/1/1894, p.17",1894.06.29-ErskineReynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.29-ErskineReynolds.pdf,1894.06.29,1894.06.29 +5642,25-Jun-1894,Unprovoked,SOUTH AFRICA,Western Cape Province,Simons Town,Swimming after harpooned whale capsized boat,"Swedish male, crewman from the Harry Mundahl",M,19,fatal,True,1.8 m shark,"Cape Argus, 7/2/1894 ",1894.06.25-SwedishWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.25-SwedishWhaler.pdf,1894.06.25,1894.06.25 +5643,Reported 15-Jun-1894,Unprovoked,USA,North Carolina,"New Bern, Craven County",Bathing ,soldier ,M,19,Right leg bitten,False,1.8 m shark,"Warren Ledger, 6/15/1894",1894.06.15.b.R-Newbern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.b.R-Newbern.pdf,1894.06.15.b.R,1894.06.15.b.R +5644,Reported 15-Jun-1894,Unprovoked,MEXICO,Bay of Campeche,Bay of Campeche,Fell from yardarm of British ship Rover,sailor,M,19,fatal,True,20' shark,"Warren Ledger, 6/15/1894",1894.06.15.a-R-Rover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.06.15.a-R-Rover.pdf,1894.06.15.a.R,1894.06.15.a.R +5645,Reported 28-Apr-1894,Unprovoked,BURMA,Rangoon,Amherst,Bathing, Grace Darling,F,19,fatal,True,20' shark,"Bruce Herald, 8/24/1894",1894.04.28.b.R-GraceDarling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.b.R-GraceDarling.pdf,1894.04.28.b.R,1894.04.28.b.R +5646,Reported 28-Apr-1894,Unprovoked,BURMA,Rangoon,Amherst,Bathing,Lucy Stone ,F,19,fatal,True,20' shark,"Bruce Herald, 8/24/1894",1894.04.28.a.R-LucyStone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1894.04.28.a.R-LucyStone.pdf,1894.04.28.a.R,1894.04.28.a.R +5647,Reported 20-Oct-1893,Unprovoked,INDIA,Bay of Bengal,Madras Harbor,Murder,A young pearl trader,M,19,fatal,True,20' shark,"Middletown Daily Argus, 10/20/1893",1893.10.20.R-PearlTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.20.R-PearlTrader.pdf,1893.10.20.R,1893.10.20.R +5648,16-Oct-1893,Invalid,CROATIA, Primorje-Gorski Kotar County,"Off Volusca, Opatija",small boat,4 passengers frightened by shark,,19,No injury; no attack,False,Invalid,C. Moore.GSAF,1893.10.16-Opatija.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.10.16-Opatija.pdf,1893.10.16,1893.10.16 +5649,03-Jul-1893,Sea Disaster,PHILIPPINES,Luzon Island,Off Manila,Abandoning burning steamship Don Juan,"New Zealand Tablet, 12/1/1893",M,19,fatal,True,Invalid,"New Zealand Tablet, 12/1/1893",1893.07.03-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.07.03-DonJuan.pdf,1893.07.03,1893.07.03 +5650,Reported 22-Jun-1893,Unprovoked,NIGERIA,Bayelsa State,Mouth of the Nun River,A barque wrecked,mate & crew,M,19,fatal,True,Invalid,"Otago Witness, 6/22/1893",1893.06.22.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22.R-Nigeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22.R-Nigeria.pdf,1893.06.22.R,1893.06.22.R +5651,22-Jun-1893,Unprovoked,LEBANON,Off Tripoli,Off Tripoli,HMS Victoria collided with the HMS Camperdown,crew,M,19,fatal,True,Invalid,"The Sydney Morning Herald, 6/29/1893",1893.06.22-HMSVictoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.06.22-HMSVictoria.pdf,1893.06.22,1893.06.22 +5652,Reported 23-May-1893,Unprovoked,FIJI,Between Kadavu & Beqa,Between Kadavu & Beqa,Canoe swamped,a girl,F,19,fatal,True,Invalid,"Brisbane Courier, 5/23/1893",1893.05.23.R-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.23.R-FijianCanoe.pdf,1893.05.23.R,1893.05.23.R +5653,17-May-1893,Unprovoked,CUBA,Havana Province,Havana Harbor,His balloon crashed in the harbor,"Ramon Margulies, aeronaut",M,19,fatal,True,Invalid,"Portsmouth Herald, 3/6/1899",1893.05.17-Margulies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.05.17-Margulies.pdf,1893.05.17,1893.05.17 +5654,Reported 15-Apr-1893,Unprovoked,SOUTH ATLANTIC OCEAN,unknown,unknown,Swimming after falling overboard from the sealing ship Vesper,Charles Barclay,M,19,"One leg severed by the shark, the other surgically amputated",False,Invalid,"The News, 4/15/1893",1893.04.15.R-Barclay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.15.R-Barclay.pdf,1893.04.15,1893.04.15 +5655,14-Apr-1893,Unprovoked,AUSTRALIA,Queensland,Torres Strait,"Boat capsized, swimming ashore",Kangaroo,M,19,Leg bitten,False,Invalid,"Brisbane Courier, 6/2/1893",1893.04.14-Kangaroo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.14-Kangaroo.pdf,1893.04.14,1893.04.14 +5656,04-Apr-1893,Invalid,AUSTRALIA,Tasmania,"Chimney Point, George’s Bay","Boat capsized, swimming ashore",Joseph Meredith,M,19,fatal,True,Shark involvement prior to death unconfirmed,"C. Black, GSAF; V.M. Coppleson (1958), p.105",1893.04.04-Meredith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.04.04-Meredith.pdf,1893.04.04,1893.04.04 +5657,Reported 30-Jan-1893,Unprovoked,NEW ZEALAND,South Island?,Downs River,Bathing,Donald McKenzie,M,19,fatal,True,Shark involvement prior to death unconfirmed,"Taranaki Herald, 1/30/1893",1893.01.30.R-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.30.R-McKenzie.pdf,1893.01.30.R,1893.01.30.R +5658,Reported 18-Jan-1893,Unprovoked,FRENCH POLYNESIA,One week out of Pápete,One week out of Pápete,Murdered,sailor,M,19,fatal,True,Shark involvement prior to death unconfirmed,"West Australian, 1/18/1893",1893.01.18.R-RodrigueBrothersVictims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.01.18.R-RodrigueBrothersVictims.pdf,1893.01.18.R,1893.01.18.R +5659,1893,Unprovoked,EGYPT,Mediterranean Sea,Port Said,Murdered,No details,,19,No details,UNKNOWN,Shark involvement prior to death unconfirmed,"Briefly mentioned in paper by W.B. Orme; G.A. Llano, p.127",1893.00.00-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1893.00.00-PortSaid.pdf,1893.00.00,1893.00.00 +5660,15-Dec-1892,Unprovoked,ATLANTIC OCEAN,unknown,unknown,Fell overboard,Samuel Coolidge,M,15,fatal,True,Shark involvement prior to death unconfirmed,"Washington Post, 1/9/1893",1892.12.15-SamuelCoolidge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.12.15-SamuelCoolidge.pdf,1892.12.15,1892.12.15 +5661,Reported 09-Nov-1892,Unprovoked,AUSTRALIA,Norfolk Island,Norfolk Island,Fishing,a boat steerer,M,15,Laceration to arm,False,Shark involvement prior to death unconfirmed,"Timaru Herald, 11/8/1892",1892.11.09.R-NorfolkIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.09.R-NorfolkIsland.pdf,1892.11.09.R,1892.11.09.R +5662,06-Nov-1892,Unprovoked,AUSTRALIA,Queensland,"Wellington Point, Brisbane",Swimming,Mrs. Coe,F,15,Abrasions to left leg,False,Shark involvement prior to death unconfirmed,"Brisbane Courier, 11/9/1892",1892.11.06-Coe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.11.06-Coe.pdf,1892.11.06,1892.11.06 +5663,Reported 16-Sep-1892,Unprovoked,USA,Texas,Velasco,Swimming,Baker,M,15,Hand bitten,False,Shark involvement prior to death unconfirmed,"Galveston Daily News, 9/16/1892 ",1892.09.16.R-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.09.16.R-Baker.pdf,1892.09.16.R,1892.09.16.R +5664,24-Jun-1892,Invalid,FRANCE,Brittany,Brest,Fishing boat,"C.Moore, GSAF",,15,"No injury, no attack",False,Invalid,"C.Moore, GSAF",1892.06.24-Brest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.24-Brest.pdf,1892.06.24,1892.06.24 +5665,Reported 20-Jun-1892,Unprovoked,CUBA,Havana Province,Havana Harbor,Riding a horse,a mestizo,M,15,fatal,True,Invalid,"Daily Citizen, 6/20/1892",1892.06.20.R-Rider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.06.20.R-Rider.pdf,1892.06.20.R,1892.06.20.R +5666,Reported 19-May-1892,Unprovoked,NEW ZEALAND,North Island,Rockhampton,Bathing,Abraham Yates,M,15,Minor injury to leg,False,Invalid,"Wanganui Chronicle, 5/19/1892",1892.05.19.R-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.05.19.R-Yates.pdf,1892.05.19.R,1892.05.19.R +5667,Reported 21-Apr-1892,Unprovoked,BAHAMAS,Out Islands,Out Islands,Fell overboard from sponge vessel,male,M,15,fatal,True,16' shark,"The Gleaner (Jamaica), 4/21/1892",1892.04.21.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.04.21.R-Bahamas.pdf,1892.04.21.R,1892.04.21.R +5668,Reported 25-Mar-1892,Unprovoked,PACIFIC OCEAN,unknown,unknown, a canoe was pursuing a schooner that had forcibily abducted 5 young girls,"West Australian, 3/25/1892",M,15,fatal,True,16' shark,"West Australian, 3/25/1892",1892.03.25.R-Canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.25.R-Canoe.pdf,1892.03.25.R,1892.03.25.R +5669,02-Mar-1892,Provoked,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,Christopher Wang,M,21,Lacerations to calf by netted shark PROVOKED INCIDENT,False,12' shark,"The Argus, 3/4/1892",1892.03.02-Wang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.03.02-Wang.pdf,1892.03.02,1892.03.02 +5670,1892,Provoked,AUSTRALIA,Torres Strait,Badu Island,Dress diving,Mr. A. Rotaman,M,21,fatal,True,12' shark,"G.P. Whitley, p.259",1892.00.00-Rotaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1892.00.00-Rotaman.pdf,1892.00.00,1892.00.00 +5671,Reported 31-Dec-1891,Unprovoked,AUSTRALIA,New South Wales,New South Wales,Swimming,Mr. Christesen,M,21,Foot severed,False,12' shark,"Maitland Mercury & Hunter River General Advertiser, 12/31/1891 ",1891.12.31.R-Christesen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.31.R-Christesen.pdf,1891.12.31.R,1891.12.31.R +5672,Reported 22-Dec-1891,Unprovoked,NEW ZEALAND,North Island,"Manukau Harbor, 6 miles south of Auckland","Swimming, after boat swamped",Henry Jacobson,M,21,Hand bitten,False,12' shark,"The Advertiser, 1/1/1892",1891.12.22.R-Jacobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.12.22.R-Jacobson.pdf,1891.12.22.R,1891.12.22.R +5673,29-Nov-1891,Unprovoked,MARTINIQUE,Fort de France,Fort de France,Attempting to rescue shipmate,J.B. Johnston,M,21,Injured,False,12' shark,"Philadelphia Inquirer, 12/19/1891",1891.11.29-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.11.29-Johnston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.11.29-Johnston.pdf,1891.11.29,1891.11.29 +5674,Reported 14-Sep-1891,Sea Disaster,KIRIBATI,Line Islands,Flint Island,"Sea Disaster, canoes capsized in storm","Newark Daily Advocate, 9/14/1891; Bismark Daily Tribune, 9/15/1891",,21,fatal,True,12' shark,"Newark Daily Advocate, 9/14/1891; Bismark Daily Tribune, 9/15/1891",1891.09.14.R-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.09.14.R-Kiribati.pdf,1891.09.14.R,1891.09.14.R +5675,Reported 30-Aug-1891,Unprovoked,CANADA,Nova Scotia,Halifax,Knocked overboard,John Roult,M,21,fatal,True,12' shark,"Washington Post, 8/31/1891",1891.08.30.R-Roult.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.30.R-Roult.pdf,1891.08.30.R,1891.08.30.R +5676,29-Aug-1891,Provoked,USA,New Jersey,"Off Longport, Atlantic County",Shooting sharks ,one of the crew of the schooner Mary C. Brown,M,21,"Survived, PROVOKED INCIDENT",False,12' shark,"The Daily Argus News, 9/3/1891 ",1891.08.29-Mary-Brown-crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.08.29-Mary-Brown-crew.pdf,1891.08.29,1891.08.29 +5677,11-Jun-1891,Invalid,USA,Virginia,Hampton Roads,Fishing for sharks when he became entangled in net & fell overboard,John Howard,M,21,fatal,True,Shark involvement prior to death unconfirmed,"Washington Post, 6/12/1891, p.1",1891.06.11-JohnHoward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.06.11-JohnHoward.pdf,1891.06.11,1891.06.11 +5678,10-Mar-1891,Unprovoked,PARAGUAY,unknown,unknown,Fleeing across a river,"West Australian, 11/2/1891",,21,fatal,True,Shark involvement prior to death unconfirmed,"West Australian, 11/2/1891",1891.03.10-Paraguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.03.10-Paraguay.pdf,1891.03.10,1891.03.10 +5679,Reported 08-Jan-1891,Unprovoked,JAMAICA,Kingston Parish,Port Royal Harbour,boat capsized,3 sailors,M,21,fatal,True,Shark involvement prior to death unconfirmed,"Tuapeka Times, 1/21/1891",1891.01.08.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1891.01.08.R-Jamaica.pdf,1891.01.08.R,1891.01.08.R +5680,30-Dec-1890,Invalid,AUSTRALIA,Queensland,Moreton Bay,Swimming to shore after boat capsized by a squall,C. Gregory,,21,fatal,True,Shark involvement prior to death unconfirmed,"The Argus, 21/2/1891",1890.12.30-Gregory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.30-Gregory.pdf,1890.12.30,1890.12.30 +5681,Reported 27-Dec-1890,Unprovoked,BRITISH NEW GUINEA,Woodlark Islands,Off Panamota,Thrown overboard,Tetebara,M,18,Arm bitten,False,Shark involvement prior to death unconfirmed,"Queenslander, 12/27/1890",1890.12.27.R-Tetebara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.12.27.R-Tetebara.pdf,1890.12.27.R,1890.12.27.R +5682,Reported 25-Oct-1890,Unprovoked,ATLANTIC OCEAN,unknown,unknown,Thrown overboard,Captain Lavarello ,M,18,fatal,True,Shark involvement prior to death unconfirmed,"Taranaki Herald, 10/25/1890",1890.10.25.R-Lavarello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.10.25.R-Lavarello.pdf,1890.10.25.R,1890.10.25.R +5683,Reported 17-Aug-1890,Provoked,USA,New Jersey,"Off Normandie-by-the-Sea, Monmouth County",Fishing for bluefish,a charter fishing boat with James Whiteside and his party,,18,No injury to occupants. Hooked shark damaged boat PROVOKED INCIDENT,False,"5'7"" shark","NY Times, 8/17/1890",1890.08.17.R-NJ-PartyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.17.R-NJ-PartyBoat.pdf,1890.08.17.R,1890.08.17.R +5684,9-Aug-1890,Unprovoked,USA,Connecticut,"Bridgeport, Fairfield County",Treading for clams,Raymond Odell,M,18,Severe lacerations to left arm.,False,"5'7"" shark","NY Times, 8/12/1890",1890.08.09-Odell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.09-Odell.pdf,1890.08.09,1890.08.09 +5685, 08-Aug-1890,Unprovoked,SAMOA,Upolu Island,Apia Harbour,Bathing,Hermann Schwebke,M,18,Both legs severed,False,"5'7"" shark","Argus, 9/9/1890",1890.08.08-Schwebke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.08.08-Schwebke.pdf,1890.08.08,1890.08.08 +5686,06-26-1890,Unprovoked,CROATIA,Fiume,Fiume,Swimming,Mayonni,M,18,Legs severed ,False,"5'7"" shark","C. Moore, GSAF",1890.06.26-Mayonni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.26-Mayonni.pdf,1890.06.26,1890.06.26 +5687,Reported 14-Jun-1890,Unprovoked,PERSIAN GULF,unknown,unknown,Fell overboard,a Frenchman,M,18,Severe lacerations to foot,False,"5'7"" shark","Bush Advocate, 6/14/1890",1890.06.14.R-Frenchman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.14.R-Frenchman.pdf,1890.06.14.R,1890.06.14.R +5688,Reported 02-Jun-1890,Unprovoked,EGYPT,Port Said,Port Said,Swimming,male,M,18,fatal,True,"5'7"" shark","C. Moore, GSAF",1890.06.02.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.06.02.R-PortSaid.pdf,1890.06.02.R,1890.06.02.R +5689,14-May-1890,Invalid,SOUTH AFRICA,Eastern Cape Province,Port Elizabeth,Swimming,Joseph Lundy,M,18,"Forensic evidence indicated death resulted from drowning, his body was subsequently scavenged by a shark",False,Invalid,"M. Levine, GSAF",1890.05.14-Lundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.05.14-Lundy.pdf,1890.05.14,1890.05.14 +5690,Reported 03-Mar-1890,,CEYLON,unknown,unknown,Diving,a pearl diver,M,18,fatal,True,Invalid,"The Guardian, 3/3/1890",1890.03.03.R-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.03.03.R-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.03.03.R-Ceylon.pdf,1890.03.03.R,1890.03.03.R +5691,25-Feb-1890,Boating,MALTA,Munxar Reef,Marsascala,"Fishing boat with 4 men on board was rammed & capsized by a shark, throwing all occupants into the water",Salvatore & Agostino Bugeja,M,18,fatal,True,Invalid,A. Buttigieg,1890.02.25-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.02.25-Malta.pdf,1890.02.25,1890.02.25 +5692,1890 ,Unprovoked,AUSTRALIA,Tasmania,Derwent River (empties into the sea at Hobart),Wading,Frederick Sampson Johnson,M,18,Knee bitten,False,"Sevengill shark, 14', was caught in the vicinity","V.M. Coppleson (1958), p.105; C. Black pp. 147-148",1890.00.00.e-FrederickSampsonJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.e-FrederickSampsonJohnson.pdf,1890.00.00.e,1890.00.00.e +5693,1890,Unprovoked,INDIA,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,18,No details,UNKNOWN,"Sevengill shark, 14', was caught in the vicinity","Sydney Morning Herald, 10/1/1890",1890.00.00.d-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.d-Tuticorin.pdf,1890.00.00.d,1890.00.00.d +5694,1890,Unprovoked,INDIA,Tamil Nadu,Tuticorin,Diving,a pearl diver,M,18,No details,UNKNOWN,"Sevengill shark, 14', was caught in the vicinity","Steubenville Herald, 11/12/1896",1890.00.00.c-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.c-Tuticorin.pdf,1890.00.00.c,1890.00.00.c +5695,1890,Unprovoked,NEW ZEALAND,North Island,"Lampton Harbour, Wellington",Swimming,soldier ,M,18,fatal,True,"Sevengill shark, 14', was caught in the vicinity","A. W. Parrott, p.68",1890.00.00.b-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.b-soldier.pdf,1890.00.00.b,1890.00.00.b +5696,Ca. 1890,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Cape Vidal,Bathing,Zulu boy,M,18,fatal,True,"Sevengill shark, 14', was caught in the vicinity","J. Daniel, M. Levine, GSAF",1890.00.00.a-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1890.00.00.a-ZuluMale.pdf,1890.00.00.a,1890.00.00.a +5697,Reported 29-Nov-1889,Invalid,GREECE,Northern Peloponnese,Patras,Bathing,"C. Moore, GSAF",,18,"Human remains found in 4m, 900 kg shark",False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1889.11.29.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.29.R-Greece.pdf,1889.11.29.R,1889.11.29.R +5698,22-Nov-1889,Unprovoked,AUSTRALIA,Queensland,Bowen,Fell into the water,E.J. Sharpe,M,18,fatal,True,Shark involvement prior to death unconfirmed,"Brisbane Courier, 11/26/1889",1889.11.22-Sharpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.22-Sharpe.pdf,1889.11.22,1889.11.22 +5699,16-Nov-1889,Invalid,USA,Hawaii,Honolulu,Parachuted from balloon,Joe Lawrence,M,18,Speculated that he was taken by a shark but most likely drowned,False,Shark involvement prior to death unconfirmed,"NY Times, 11/24/1889 ",1889.11.16-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.11.16-Honolulu.pdf,1889.11.16,1889.11.16 +5700,Reported 03-Oct-1889,Unprovoked,INDIA,Tamil Nadu,Madras,Swimming,"B, a young English officer",M,18,fatal,True,Shark involvement prior to death unconfirmed,"Decatur Daily Republican, 10/3/1889",1889.10.03.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.10.03.R-Madras.pdf,1889.10.03.R,1889.10.03.R +5701,21-Jul-1889,Unprovoked,USA,Florida,"Fernandina, Nassau County",Swimming,Eddie Roe,M,18,fatal,True,Shark involvement prior to death unconfirmed,"NY Times, 7/22/1889",1889.07.21-Roe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.21-Roe.pdf,1889.07.21,1889.07.21 +5702, 19-Jul-1889,Unprovoked,USA,Texas,West Bay near Galveston ,Fishing,John Bolling,M,18,Leg bitten,False,18' shark,"Galveston Daily News, 7/21/1889",1889.07.19-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.19-Bolling.pdf,1889.07.19,1889.07.19 +5703,08-Jul-1889,Unprovoked,AUSTRALIA,Victoria,Port Phillip,Fell into the water,male,M,18,fatal,True,18' shark,"Brisbane Courier, 7/9/1889",1889.07.08-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.07.08-PortPhillip.pdf,1889.07.08,1889.07.08 +5704,Reported 31-Jan-1889,Provoked,USA,Florida,Hillsborough Bay,Fishing,"rowboat, ",,18,No injury to occupants. Gaffed shark capsized boat PROVOKED INCIDENT,False,18' shark,"Timaru Herald, 1/31/1889",1889.01.31.R-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.31.R-Florida.pdf,1889.01.31.R,1889.01.31.R +5705,Jan-1889,Unprovoked,SIERRA LEONE,Western Area,Freetown,Cleaning the side of a ship,English sailor,M,18,fatal,True,18' shark,"NY Times, 1/20/1889",1889.01.00-EnglishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1889.01.00-EnglishSailor.pdf,1889.01.00,1889.01.00 +5706,Reported 25-Dec-1888,Unprovoked,INDIAN OCEAN,Between Perth & Colombo,Between Perth & Colombo,Swimming,E. Burnside,M,18,Foot severed,False,18' shark,"West Australian, 12/25/1888",1888.12.25.R-Burnside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.25.R-Burnside.pdf,1888.12.25.R,1888.12.25.R +5707,09-Dec-1888,Unprovoked,AUSTRALIA,New South Wales,"Iron Cove Bridge, Sydney (Estuary)",Swimming,Stephen Carter,M,11,fatal,True,18' shark,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald, 12/10/ 1888 ",1888.12.09-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.09-Carter.pdf,1888.12.09,1888.12.09 +5708,Dec-1888,Unprovoked,AUSTRALIA,New South Wales,"Hawkesbury Bridge, Sydney",Working on the bridge when he fell into the river,Mr. Ryland,M,11,fatal,True,18' shark,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald, 12/10/1888",1888.12.00-Ryland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.12.00-Ryland.pdf,1888.12.00,1888.12.00 +5709,Reported 23-Oct-1888,Unprovoked,CROATIA, Primorje-Gorski Kotar County,Rijeka,Working on the bridge when he fell into the river,"C. Moore, GSAF",,11,fatal,True,"5m, 3500 kg female shark","C. Moore, GSAF",1888.10.23.R-Croatia. Pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.10.23.R-Croatia. Pdf,1888.10.23.R,1888.10.23.R +5710,14-Aug-1888,Sea Disaster,CANADA,Nova Scotia,Off Sable Island,The steamships Thingvalla and Geiser collided,1 man,M,11,fatal,True,"5m, 3500 kg female shark","Aurora Daiy Express, 8/18/1888",1888.08.14-Geiser-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.14-Geiser-passenger.pdf,1888.08.14,1888.08.14 +5711,Reported 01-Aug-1888,Boating,USA,New York,New York,Sailing,catboat. Occupants: Captain Tuppe & 2 young ladiesr,,11,No injury to occupants. Shark beat away with oar,False,"5m, 3500 kg female shark","The Ledger, 8/3/1888",1888.08.01-catboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.08.01-catboat.pdf,1888.08.01.R,1888.08.01.R +5712,Reported 20-Jul-1888,Invalid,JAMAICA,unknown,unknown,Probabable drowning,"Otago Witness, 7/20/1888",M,11,Human remains recovered from a 10' to 12' shark caught in a turtle net,False,Shark involvement prior to death unconfirmed,"Otago Witness, 7/20/1888",1888.07.20.R-Jamaica-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.20.R-Jamaica-scavenging.pdf,1888.07.20.R,1888.07.20.R +5713,Reported 13-Jul-1888,Sea Disaster,INDIA,Gujarat,Cutch Coast,The Dwarka foundered,6 crew,M,11,fatal,True,Shark involvement prior to death unconfirmed,"Otago Witness, 7/13/1888",1888.07.13.R-Dwarka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.13.R-Dwarka.pdf,1888.07.13.R,1888.07.13.R +5714,04-Jul-1888,Invalid,CROATIA,Lukovo,Lukovo,The Dwarka foundered,"C. Moore, GSAF",,11,Human remains & clothing found in 7' shark,False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1888.07.04-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.07.04-Croatia.pdf,1888.07.04,1888.07.04 +5715,24-Jun-1888,Boating,AUSTRALIA,Victoria,Port Melbourne,Fishing,2 men,,11,"No injury to occupants, shark holed boat",False,Shark involvement prior to death unconfirmed,"Taranaki Herald, 7/9/1888",1888.06.24-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.24-fishermen.pdf,1888.06.24,1888.06.24 +5716,Reported 18-Jun-1888,Invalid,AUSTRALIA,Victoria,"Point Cook, Port Phillip Bay",The cutter yacht Cutty Sark sank,"Claude Hadley, William Grundy, Albert Faulkner & Frederick Faulkner",M,11,Probable drowning & scavenging,False,Shark involvement prior to death unconfirmed,"New York Times, 6/18/1888",1888.06.18-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.06.18-PortPhillip.pdf,1888.06.18.R,1888.06.18.R +5717,17-Feb-1888,Unprovoked,NEW ZEALAND,South Island,Oamaru,Floating on his back,David Grant,M,11,"Arm severely lacerated, surgically amputated",False,"Unknown, but the shark was caught and put on exhibition","R.D. Weeks, GSAF; K.C. McDonald; Evening Post (Wellington), 8/21/1937",1888.02.17-DavidGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.17-DavidGrant.pdf,1888.02.17,1888.02.17 +5718,22-Jan-1888,Boating,AUSTRALIA,New South Wales,Sydney Harbor,Rowing,Burke,M,11,"Shark bit boat, but no injury to occupant who swam ashore",False,"Unknown, but the shark was caught and put on exhibition","Star, 1/23/1888",1888.01.22-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.01.22-Burke.pdf,1888.01.22,1888.01.22 +5719,Feb-1888,Unprovoked,SOUTH AFRICA,Eastern Cape Province,Mzimvubu River mouth,Crossing the river mouth,male,M,11,fatal,True,"Unknown, but the shark was caught and put on exhibition","Cape Mercantile Advertiser, 2/15/1888, M. Levine, GSAF",1888.02.00-Mzimvubu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.02.00-Mzimvubu.pdf,1888.02.00,1888.02.00 +5720,1888,Unprovoked,LIBYA,Mediterranean Sea,Off Tripoli,Sponge diving,T riantafyllos,M,11,Lacerations to thorax and hands,False,"Unknown, but the shark was caught and put on exhibition",M. Bardanis,1888.00.00-Triantafyllos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1888.00.00-Triantafyllos.pdf,1888.00.00,1888.00.00 +5721,Reported 22-Dec-1887,Unprovoked,HONDURAS,Cortés,Off Puerto Cortez (Caribbean coast),Fell oveboard from steamer Wanderer,Carl Luhudahl,M,33,fatal,True,"Unknown, but the shark was caught and put on exhibition","Union County Journal, 12/22/1887",1887.12.22.R-Luhudahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.22.R-Luhudahl.pdf,1887.12.22.R,1887.12.22.R +5722,04-Dec-1887,Unprovoked,AUSTRALIA,New South Wales,"Ryde, Sydney (Estuary)",Fell oveboard from steamer Wanderer,Thomas Cochrane (William Charles Corkhill0,M,33,fatal,True,12' to 14' shark,"G.P. Whitley (1951), p.192",1887.12.04-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.12.04-Cochrane.pdf,1887.12.04,1887.12.04 +5723,18-Oct-1887,Unprovoked,USA,Florida,"Between Lake Worth & Biscayne Bay, near Hillsboro","Crossing inlet in a boat, seen fighting sharks with his oar, sharks smashed boat","James F. Hamilton, a mail carrier",M,33,fatal,True,12' to 14' shark,"Evening Telegram, 11/5/1887",1887.10.18-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.18-Hamilton.pdf,1887.10.18,1887.10.18 +5724,October 1887,Sea Disaster,BAHAMAS,unknown,unknown,"Sea disaster, wreck of the Alfred Watts",Burgess & 2 seamen,M,33,fatal,True,12' to 14' shark,"New York Times, 12/23/1887 ",1887.10.00-Shipwreck-Alfred-Watts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.10.00-Shipwreck-Alfred-Watts.pdf,1887.10.00,1887.10.00 +5725,22-Sep-1887,Unprovoked,ITALY,Trieste,Trieste,Swimming,Joseph Weissmantel,M,33,Leg injured,False,12' to 14' shark,"C. Moore, GSAF",1887.09.22-Weissmantel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.22-Weissmantel.pdf,1887.09.22,1887.09.22 +5726,11-Sep-1887,Invalid,CROATIA, Primorje-Gorski Kotar County,Kraljevica,Swimming,"C. Moore, GSAF",,33,Shoes & human remains found in a shark,False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1887.09.06-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.09.06-Croatia.pdf,1887.09.06,1887.09.06 +5727,30-Jul-1887,Sea Disaster,unknown,Gulf of California,Gulf of California,"Sea disaster, wreck of the sloop Sara",2 males,M,33,fatal,True,Shark involvement prior to death unconfirmed,"Austin Weekly Statesman, 8/11/1887",1887.07.30-TheSara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.07.30-TheSara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.07.30-TheSara.pdf,1887.07.30,1887.07.30 +5728,12-Mar-1887,Boating,AUSTRALIA,South Australia,Black Point,Rowing a dinghy,Mr. Boucaut & Mr. Harris,,33,No injury to occupants,False,13' shark,"New York Times, 5/16/1887",1887.03.12-dinghy-Black-Point.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.03.12-dinghy-Black-Point.pdf,1887.03.12,1887.03.12 +5729,Reported 08-Feb-1887,Unprovoked,NEW ZEALAND,North Island,Kaipara,Swimming,a seaman from the Johann Brodersen,M,33,fatal,True,13' shark,"Bruce Herald, 2/8/1887",1887.02.08-Kaipara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-Kaipara.pdf,1887.02.08.R,1887.02.08.R +5730,08-Feb-1887,Provoked,SOUTH AFRICA,Western Cape Province,Blaauwberg,Swimming,boat,,33,"Harpooned shark, bit boat, causing it to ship water. Boat reached shore in sinking condition PROVOKED INCIDENT",False,4.7 m [15.5'] shark,GSAF,1887.02.08-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.02.08-boat.pdf,1887.02.08,1887.02.08 +5731,20-Jan-1887,Sea Disaster,BRAZIL,Alagoas,Maceió,The passenger ship Kapuna was run down the ore carrier Ada Melmore,Whittle,M,33,fatal,True,4.7 m [15.5'] shark,"Brisbane Courier, 4/14/1887",1887.01.20-Whittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.20-Whittle.pdf,1887.01.20,1887.01.20 +5732,12-Jan-1887,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"Mzimvubu River, 9.6 km from the sea",Swimming,Zangile,M,13,fatal,True,4.7 m [15.5'] shark,"Cape Mercantile Advertiser, 1/25/1887, M. Levine, GSAF",1887.01.12-Zangile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.01.12-Zangile.pdf,1887.01.12,1887.01.12 +5733,1887,Sea Disaster,OCEAN,"Somewhere between Philadelphia and Hiogo, Japan","Somewhere between Philadelphia and Hiogo, Japan",British ship Macedon was thrown on her beam ends by a sudden squall,a ship's steward,M,13,Foot severed,False,4.7 m [15.5'] shark,"Galveston Daily News, 2/11/1888",1887.00.00-Macedom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1887.00.00-Macedom.pdf,1887.00.00,1887.00.00 +5734,Mid-Aug-1886,Boating,USA, New Jersey,"Shrewsbury River, Highlands, Monmouth County",British ship Macedon was thrown on her beam ends by a sudden squall,"boat, occupants: 4 men",M,13,"Shark attacked boat, shark killed & towed to shore",False,Shark was said to “have a very rough ½”-thick skin”,"R. Heyer, citing the Red Bank Register, 9/1/1886",1886.08.00.c-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.c-boat.pdf,1886.08.00.c,1886.08.00.c +5735,Mid-Aug-1886,Provoked,USA,New Jersey,"Sandy Hook Bay, Highlands, Monmouth County","Netting menhaden, sharks caught in net",Boat of Captain Forman White,,13,"No injury, sharks ripped net & bit boat PROVOKED INCIDENT",False,Shark was said to “have a very rough ½”-thick skin”,"R. Heyer, citing the Red Bank Register, 9/1/1886",1886.08.00.b-FormanWhite-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.b-FormanWhite-boat.pdf,1886.08.00.b,1886.08.00.b +5736,Aug-1886,Boating,USA,New Jersey,"Shrewsbury River, Highlands, Monmouth County",Clamming,John Parker & Edward Matthews,M,13,"No injury. They were chased by three sharks, one of which rammed their boat",False,3 m [10'] sharks,"R. Heyer citing the Red Bank Register, 9/1/1886",1886.08.00.a-Parker-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.08.00.a-Parker-Matthews.pdf,1886.08.00.a,1886.08.00.a +5737,17-Jun-1886,Unprovoked,AUSTRALIA,Queensland,Off Bribie Heads,Swimming after being washed overboard,Lacoon,M,18,fatal,True,3 m [10'] sharks,"Brisbane Courier, 6/21/1886",1886.06.17-Lacoon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.17-Lacoon.pdf,1886.06.17,1886.06.17 +5738,02-Jun-1886,Invalid,USA,Hawaii,"Hamakua Homakua, Hawai'i","Fishing from shore, washed into the sea",2 women,F,18,"The body of one woman had been bitten by a shark but it is not known if she was alive at the time, the other woman disappeared",False,Shark involvement prior to death unconfirmed,"G. H. Balazs & A. H. Kam; V.M. Coppleson (1958), p.259, J. Borg, p.68; L. Taylor (1993), pp.94-95",1886.06.02-Hamakua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.06.02-Hamakua.pdf,1886.06.02,1886.06.02 +5739,06-May-1886,Unprovoked,NEW CALEDONIA,South Province,Noumea,Bathing,male,M,18,fatal,True,Shark involvement prior to death unconfirmed,"Timaru Herald, 6/8/1886",1886.05.06-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.05.06-Noumea.pdf,1886.05.06,1886.05.06 +5740,26-Apr-1886,Unprovoked,AUSTRALIA,Queensland,Rothesay Bay,Oystering,male,M,18,Wrist bitten,False,Shark involvement prior to death unconfirmed,"The Capricornian, 5/1/1886",1886.04.26-RothesayBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.26-RothesayBay.pdf,1886.04.26,1886.04.26 +5741,11-Apr-1886,Invalid,NEW ZEALAND,South Island,Near the mouth of the Clarence River,Sea disaster : Wreck of the Taiaroa,male,M,18,Probable drowning & scavenging,False,Shark involvement prior to death unconfirmed,"Auckland Star, 4/24/1886",1886.04.11-TaiaroaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.04.11-TaiaroaShipwreck.pdf,1886.04.11,1886.04.11 +5742,Reported 06-Mar-1886,Invalid,NEW ZEALAND,South Island,Dunedin ,Bathing ,Rodwell,M,18,Left leg severed. Probably confusion with GSAF 1886.01.28,False,Questionable,"Feilding Star, 3/6/1886, p.2",1886.03.06-Rodwell-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.06-Rodwell-NZ.pdf,1886.03.06.R,1886.03.06.R +5743,Mar-1886,Invalid,AUSTRALIA,New South Wales,"Dobroyd Head, Watson Bay, Sydney",He drowned when boat capsized,James Barefoot,M,18,His body was found in a tiger shark; next day other human remains found in sharks at Berry's Bay ,False,Shark involvement prior to death unconfirmed,"Evening Post, 4/7/1886; G.P. Whitley (1951), p.192",1886.03.00-Barefoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.03.00-Barefoot.pdf,1886.03.00,1886.03.00 +5744,13-Feb-1886,Boating,AUSTRALIA,Victoria,Mordialloc,Fishing,20' boat; occupants: John Wright & a friend,M,18,"No injury to occupants, shark shook boat ""stem to stern""",False,Shark involvement prior to death unconfirmed,"Evening Post, 2/13/1886",1886.02.13.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.02.13.R-Wright.pdf,1886.02.13.R,1886.02.13.R +5745,28-Jan-1886,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"South Jetty, Port Elizabeth",Diving off jetty,Mr. Rodwell,M,18,"Chest & buttocks bitten, left leg severed at knee",False,Shark involvement prior to death unconfirmed,"Eastern Province Herald, 1/28/1886; M. Levine, GSAF ",1886.01.28-Rodwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.28-Rodwell.pdf,1886.01.28,1886.01.28 +5746,26-Jan-1886,Unprovoked,AUSTRALIA,Queensland,Queensland,Diving alongsidethe steamship Ranelagh ,John Byrne,M,18,Foot bitten,False,Shark involvement prior to death unconfirmed,"Brisbane Courier, 1/27/1886",1886.01.26-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.26-Byrne.pdf,1886.01.26,1886.01.26 +5747,01-Jan-1886,Unprovoked,SOUTH AFRICA,Western Cape Province,Groot River,Swimming,Dr. James Woolby,M,18,fatal,True,Shark involvement prior to death unconfirmed,"P. Logan; M. Levine, GSAF",1886.01.01-Woolby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.01.01-Woolby.pdf,1886.01.01,1886.01.01 +5748,1886,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Sailing,male,M,18,Leg severed,False,Shark involvement prior to death unconfirmed,"I. M. Sigismund, M.D.",1886.00.00-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1886.00.00-Sydney.pdf,1886.00.00,1886.00.00 +5749,Reported 26-Nov-1885,Boating,AUSTRALIA,Queensland,Brisbane ,Sailing,"boat, occupant John Bishop",,18,"No injury to occupant, shark bit off section of the boat's rudder",False,15' shark,"Brisbane Courier, 11/26/1885",1885.11.26.R-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.R-Bishop.pdf,1885.11.26.R,1885.11.26.R +5750,26-Nov-1885,Unprovoked,AUSTRALIA,Western Australia,Bunbury,Bathing,A.Y. Glyde,M,18,Laceration to calf,False,15' shark,"The West Australia, 12/2/1885",1885.11.26.a-Glyde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.11.26.a-Glyde.pdf,1885.11.26,1885.11.26 +5751,17-Aug-1885,Unprovoked,ATLANTIC OCEAN,unknown,unknown,Fell or jumped overboard from the liner Rhynland,J.R. Loesch,M,18,fatal,True,15' shark,"New York Times, 8/27/1885",1885.08.17-Loesch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.08.17-Loesch.pdf,1885.08.17,1885.08.17 +5752,26-Jul-1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor,M,18,Left arm severed,False,15' shark,"Hawaiian Gazette, 8124/1885",1885.07.26-b-Schooner-crew-1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26-b-Schooner-crew-1.pdf,1885.07.26.c,1885.07.26.c +5753,26-Jul-1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,sailor ,M,18,Laceration to torso,False,15' shark,"Hawaiian Gazette, 8124/1885",1885.07.26.c-Schooner-crew-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.c-Schooner-crew-2.pdf,1885.07.26.b,1885.07.26.b +5754,26-Jul-1885,Sea Disaster,USA,Hawaii,Kau District,Wreck of the schooner Pohoiki ,Captain Mark Robinson,M,18,fatal,True,15' shark,"Hawaiian Gazette, 8/24/1885",1885.07.26.a-CaptainRobinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.07.26.a-CaptainRobinson.pdf,1885.07.26.a,1885.07.26.a +5755,09-Apr-1885,Unprovoked,NEW ZEALAND,North Island,Auckland,Bathing,Pahi,M,18,Lacerations to lower leg,False,15' shark,"Grey River Argus,4/18/185",1885.04.09-Pahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.04.09-Pahi.pdf,1885.04.09,1885.04.09 +5756,28-Mar-1885,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Kokstad District,Fishing,"boat, occupant: Mr. Anderson",M,18,"No injury to occupant, rammed oar in shark's mouth and it bit the oar ",False,3 m [10'] shark,"South African Illustrated News, 3/28/1885",1885.03.28-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1885.03.28-oar.pdf,1885.03.28,1885.03.28 +5757,13-Dec-1884,Sea Disaster,AUSTRALIA,South Australia,Port Phillip,yachting accident,Willaim Browne,M,18,fatal,True,14' shark,"The Argus, 12/29/1884",1884.12.13-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.13-Browne.pdf,1884.12.13,1884.12.13 +5758,Reported 08-Dec-1884,Provoked,FRANCE,Côte d'Azur ,Between Nice & Villefranche,yachting accident,child,F,18,fatal,True,10' shark,"North Otago Times, 12/8/1884",1884.12.08.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.12.08.R-France.pdf,1884.12.08.R,1884.12.08.R +5759,Reported 28-Aug-1884,Unprovoked,USA,New Jersey,"Bayonne, Hudson County",Boating,Edward Monroe,M,18,Hand bitten,False,10' shark,"Atlanta Contitution, 8/28/1884",1884.08.28.R-EdwardMonroe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.28.R-EdwardMonroe.pdf,1884.08.28.R.,1884.08.28.R. +5760,18-Aug-1884,Invalid,USA,New York,Jamaica Bay,Clamming,Stephen Rylor,M,18,Unclear if he sustained any injury from the 7' shark,False,Questionable,"New York Times, 8/20/1884",1884.08.18-Rylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.08.18-Rylor.pdf,1884.08.18,1884.08.18 +5761,Reported 28-Apr-1884,Unprovoked,BRAZIL,Bahia,Bahia,Fell overboard from the steamship Chala,male,M,18,fatal,True,Questionable,"Pittsburgh Post Gazette, 4/28/1884",1884.04.28.R-ChalaCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.04.28.R-ChalaCook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.04.28.R-ChalaCook.pdf,1884.04.28.R,1884.04.38.R +5762,16-Jan-1884,Unprovoked,SOUTH AFRICA,Eastern Cape Province,"South Jetty, Port Elizabeth",Swimming,Mr. Meyer,M,18,fatal,True,Questionable,"Port Elizabeth Herald, 1/23/1884, M. Levine, GSAF",1884.01.16-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.16-Meyer.pdf,1884.01.16,1884.01.16 +5763,14-Jan-1884,Unprovoked,AUSTRALIA,South Australia,"Port Pirie, Spencer Gulf, 230 km north of Adelaide",Fell overboard,Miss Warren,F,18,fatal,True,Said to involve 2 sharks,"G.P. Whitley (1951), p. 192, citing the Register (S.A.), 12/9/1925; V.M. Coppleson (1958), p.107; A. Sharpe, p.119",1884.01.14-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1884.01.14-Warren.pdf,1884.01.14,1884.01.14 +5764,19-Dec-1883,Unprovoked,AUSTRALIA,New South Wales,Parramatta River,Swimming,Cuthbert Vere Lysaght,M,21,fatal,True,Said to involve 2 sharks,"West Australian, 12/22/1883",1883.12.19-Lysaght.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.19-Lysaght.pdf,1883.12.19,1883.12.19 +5765,Reported 18-Dec-1883,Unprovoked,USA,Texas,Brazos,Knocked overboard,"Duffy, mate of the Harris",M,21,fatal,True,Said to involve 2 sharks,"Alton Evening Telegraph, 12/18/1883",1883.12.18.R-Duffy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.18.R-Duffy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.12.18.R-Duffy.pdf,1883.12.18.R,1883.12.18.R +5766,Reported 20-Oct-1883,Unprovoked,URUGUAY,Maldonado coast,Maldonado coast,Fell overboard & rescuer,crew of the Galicia x 2,M,21,fatal,True,Said to involve 2 sharks,"San Francisco Chronicle, 10/20/1883",1883.10.20.R-Galicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.10.20.R-Galicia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.10.20.R-Galicia.pdf,1883.10.20.R,1883.10.20.R +5767,Reported 19-Oct-1883,Unprovoked,USA,East coast,East coast,Jumped overboard ,James McCarroll,M,21,fatal,True,Said to involve 2 sharks,"Buffalo Commercial Advertiser, 10/19/1883",1883.10.19.R-McCarroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.10.19.R-McCarroll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.10.19.R-McCarroll.pdf,1883.10.19.R,1883.10.19.R +5768,Reported 14-Sep-1883 (probably happened Ca. 1843/1844),Unprovoked,AUSTRALIA,Tasmania,Between Port Arthur Penal Colony & Forestier Peninsula,Swimming / escaping imprisonment ,Owen,M,21,fatal,True,Said to involve 2 sharks,"C. Black, GSAF; Bruce Herald, 9/14/1993",1883.09.14.R-Owen-the-Bushranger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.09.14.R-Owen-the-Bushranger.pdf,1883.09.14.R,1883.09.14.R +5769,05-Jul-1883,Provoked,GEORGIA,"Savannah River, Chatham County","Savannah River, Chatham County",Fishing for sharks,male,M,21,Leg injured by hooked shark PROVOKED INCIDENT,False,7' shark,"Savannah Times, 7/13/1883",1883.07.05-Savannah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.07.05-Savannah.pdf,1883.07.05,1883.07.05 +5770,Reported 26-Feb-1883,Unprovoked,AUSTRALIA,Northern Territory,the pearling beds,Diving,male,M,21,Arm severed,False,7' shark,"The Queenslander, 3/3/1883",1883.02.26.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.26.R-PearlDiver.pdf,1883.02.26.R,1883.02.26.R +5771,Reported 25-Feb-1883,Unprovoked,AUSTRALIA,Northern Territory,the pearling beds,Diving,male,M,21,fatal,True,7' shark,"The Queenslander, 3/3/1883",1883.02.25.R-Pearl-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.02.25.R-Pearl-Diver.pdf,1883.02.25.R,1883.02.25.R +5772,21-Jan-1883,Unprovoked,AUSTRALIA,New South Wales,"Iron Cove, Sydney",Bathing,John Eaton,M,37,fatal,True,7' shark,"Maitland Mercury, 1/23/1883",1883.01.21-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.01.21-Eaton.pdf,1883.01.21,1883.01.21 +5773,1883,Unprovoked,PACIFIC OCEAN,unknown,unknown,Fishing,"male, a cook",M,37,fatal,True,14' shark,"Freeborn County Standard, 11/14/1883",1883.00.00.d-cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.d-cook.pdf,1883.00.00.d,1883.00.00.d +5774,Summer of 1883,Unprovoked,USA,Florida,"Fort Pickens, Escambia County",Fell overboard,the Captain’s boy,M,37,fatal,True,14' shark,"St Joseph Herald, 7/12/1884",1883.00.00.c-CaptainsBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.c-CaptainsBoy.pdf,1883.00.00.c,1883.00.00.c +5775,1883,Invalid,USA,South Carolina,"Bull’s Bay, near Charleston",Fell overboard,adult male,M,37,"Body found with arm severed by shark, but shark involvement prior to death was uncomfirmed",False,Shark involvement prior to death unconfirmed,"W.H. Gregg, p.21; SAF Case #910",1883.00.00.b-BullsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.b-BullsBay.pdf,1883.00.00.b,1883.00.00.b +5776,1883,Unprovoked,USA,South Carolina,South Carolina,Fell overboard,an aeronaut,M,37,fatal,True,a school of sharks,"W.H. Greg, p.22",1883.00.00.a-aeronaut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1883.00.00.a-aeronaut.pdf,1883.00.00.a,1883.00.00.a +5777,03-Dec-1882,Provoked,NEW ZEALAND,South Island,New Brighton,Restraining a beached shark,Mr. Hill,M,37,Hand severely nipped PROVOKED INCIDENT ,False,4' to 5' shark,"The Star, 12/4/1882",1882.12.03-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.12.03-Hill.pdf,1882.12.03,1882.12.03 +5778,12-Nov-1882,Unprovoked,NEW ZEALAND,North Island,"Tararu, Thames",Bathing,Arthur Evans,M,37,Sole of foot bitten,False,4' to 5' shark,"Colonist, 11/22/1882",1882.11.12.b-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.b-Evans.pdf,1882.11.12.b,1882.11.12.b +5779,12-Nov-1882,Unprovoked,NEW ZEALAND,North Island,"Tararu, Thames",Bathing,William Connerly,M,37,Lacerations to thigh,False,4' to 5' shark,"Colonist, 11/22/1882",1882.11.12.a-Connerly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.11.12.a-Connerly.pdf,1882.11.12.a,1882.11.12.a +5780,Sep-1882,Unprovoked,JAPAN,unknown,unknown,Clinging to shipwrecked junk,Japanese fisherman,M,37,Lacerations to elbows & knees,False,4' to 5' shark,"Launceston Examiner, 6/21/1883 ",1882.09.00-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.09.00-JapaneseFisherman.pdf,1882.09.00,1882.09.00 +5781,14-May-1882,Unprovoked,AUSTRALIA,New South Wales,Millers Point,Fell overboard,John Clare,M,37,Laceration to calf,False,4' to 5' shark,"Launceston Examiner, 5/20/1882 ",1882.05.14-Clare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.14-Clare.pdf,1882.05.14,1882.05.14 +5782,Reported 12-May-1882,Unprovoked,AUSTRALIA,unknown,unknown,Pearl diving,a Malay diver,M,37,fatal,True,4' to 5' shark,"West Australian, 5/12/1882",1882.05.12.R-MalayDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.05.12.R-MalayDiver.pdf,1882.05.12.R,1882.05.12.R +5783,15-Apr-1882,Unprovoked,AUSTRALIA,New South Wales,Lake Macquarie,Fishing,"The Mercury, 4/25/1882",M,37,fatal,True,4' to 5' shark,"The Mercury, 4/25/1882",1882.04.15-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.04.15-fisherman.pdf,1882.04.15,1882.04.15 +5784,Reported 07-Feb-1882,Unprovoked,AUSTRALIA,unknown,unknown,Pearl diving,a native diver,M,37,fatal,True,4' to 5' shark,"West Australian, 3/28/1882",1882.02.07.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.02.07.R-PearlDiver.pdf,1882.02.07.R,1882.02.07.R +5785,Reported 23-Jan-1882,Unprovoked,AUSTRALIA,New South Wales,"Darling Harbor, Sydney",Bathing,George Sinclair,M,37,fatal,True,4' to 5' shark,"Brisbane Courier, 1/24/1882",1882.01.23.R-Sinclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.23.R-Sinclair.pdf,1882.01.23.R,1882.01.23.R +5786,Reprted 05-Jan-1882,Unprovoked,ATLANTIC OCEAN,unknown,unknown,Fell overboard from the Selim,male,M,37,fatal,True,4' to 5' shark,"Marion Star, 1/5/1882",1882.01.05.R-Selim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.05.R-Selim.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.01.05.R-Selim.pdf,1882.01.05.R,1882.01.05.R +5787,1882,Unprovoked,USA,Florida,"In the bay near the naval yard at Pensacola, Escambia County","During ""an exhibition"" he was tied in sack & thrown overboard ",John T. Clark,M,37,"No injury, sack rammed by shark & shark harassed him when he surfaced",False,4' to 5' shark,"The Sun; Iowa City Citizen, 9/15/1910",1882.00.00.b-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.b-Clark.pdf,1882.00.00.b,1882.00.00.b +5788,1882,Unprovoked,AUSTRALIA,Queensland,Maryborough,"During ""an exhibition"" he was tied in sack & thrown overboard ",male,M,37,Survived,False,4' to 5' shark,"V.M. Coppleson (1958), p.453; G.P. Whitley (1940), p.453; J. Green, p.31",1882.00.00.a-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1882.00.00.a-Maryborough.pdf,1882.00.00.a,1882.00.00.a +5789,13-Nov-1881,Invalid,AUSTRALIA,New South Wales,"Johnstone's Bay, Sydney",Swimming,John Sullivan,M,37,Shark involvement suspected but not confirmed,False,Shark involvement prior to death unconfirmed,"Maitland Mercury & Hunter River General Advertiser, 11/15/1881",1881.11.13-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.11.13-Sullivan.pdf,1881.11.13,1881.11.13 +5790,16-Oct-1881,Invalid,USA,Florida,"Pensacola Bay, Escambia County",Bathing,Anthony McDonald,M,18,fatal,True,Shark involvement prior to death unconfirmed,"Pensacola Gazette, 10/18/1881; Fort Wayne Daily Gazette,11/2/1881 ",1881.10.16-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.10.16-McDonald.pdf,1881.10.16,1881.10.16 +5791,05-Sep-1881,Unprovoked,USA,North Carolina,"Elizabeth City, Pasquotank County ",Bathing,Frank G. Hines,M,18,fatal,True,Shark involvement prior to death unconfirmed,"C. Creswell, GSAF",1881.09.05-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.09.05-Hines.pdf,1881.09.05,1881.09.05 +5792,Reported 16-Aug-1881,Unprovoked,unknown,Western Banks,Western Banks,"Floating, holding onto an oar after dory capsized",George Sedgwick,M,20,fatal,True,Shark involvement prior to death unconfirmed,"Lewiston Evening Journal, 8/16/1881",1881.08.16.R-Sedgwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.16.R-Sedgwick.pdf,1881.08.16.R,1881.08.16.R +5793,12-Aug-1881,Unprovoked,USA,Rhode Island,Providence,Swimming,Jerry Lowney,M,20,"No injury, overalls ripped by shark",False,Shark involvement prior to death unconfirmed,Providence Journal 8/15/1881,1881.08.12-Lowney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.08.12-Lowney.pdf,1881.08.12,1881.08.12 +5794,25-Jul-1881,Unprovoked,unknown,Santa Cruz,Santa Cruz,Bathing,Father Hudson,M,20,Survived,False,Shark involvement prior to death unconfirmed,"Grey River Argus,10/3/1881, p.2",1881.06.25-FatherHudson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.25-FatherHudson.pdf,1881.06.25,1881.06.25 +5795,13-Jun-1881,Unprovoked,USA,Alabama,Mobile Bay,Fell overboard,William Smith,M,23,fatal,True,Shark involvement prior to death unconfirmed,"Mobile Register, 7/14/1881; NY Times, 7/17/1881",1881.06.13-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.06.13-Smith.pdf,1881.06.13,1881.06.13 +5796,1881,Unprovoked,INDIA,"At Panihattu, Barrackpore, Dackhineshwar, Barahonagore, Kashipur & Chitpur down to Baug Bazar ghats","At Panihattu, Barrackpore, Dackhineshwar, Barahonagore, Kashipur & Chitpur down to Baug Bazar ghats",Fell overboard,"A.C. Kastagir, Asst. Surgeon in the Indian Medical Gazette, 4/1/1881, pp.105-106; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",,23,fatal,True,Shark involvement prior to death unconfirmed,"A.C. Kastagir, Asst. Surgeon in the Indian Medical Gazette, 4/1/1881, pp.105-106; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",1881.00.00.b-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.b-India.pdf,1881.00.00.b,1881.00.00.b +5797,Ca. 1881,Boating,ITALY,Sicily,Stretto di Messina,Fishing on a boat,male,M,23,fatal,True,White sharks,A. De Maddalena; Doderlein (1881),1881.00.00.a-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1881.00.00.a-Italy.pdf,1881.00.00.a,1881.00.00.a +5798,25-Nov-1880,Unprovoked,AUSTRALIA,Queensland,"Petrie Bight, Brisbane River",Swimming,Alexey Drury,M,12,fatal,True,Bull shark,"Bucks County Gazette, 2/10/1881, Sunday Mail (QLD), 3/27/1994, p.107",1880.11.25-AlexeyDrury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.11.25-AlexeyDrury.pdf,1880.11.25,1880.11.25 +5799,10-Oct-1880,Sea Disaster,AUSTRALIA,New South Wales,Bermagui,Traveling by boat,The Lamont Young party,M,12,fatal,True,Bull shark,"Sydney Morning Herald, 10/26/1880",1880.10.10-Lamont-Young-Party.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.10.10-Lamont-Young-Party.pdf,1880.10.10,1880.10.10 +5800,08-Aug-1880,Unprovoked,MOZAMBIQUE,unknown,unknown,Swimming to retrieve a flannel,Farejallah,M,12,fatal,True,Bull shark,"Newfoundlander (NZ), 11/5/1880",1880.08.08-Farejallah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.08.08-Farejallah.pdf,1880.08.08,1880.08.08 +5801,25-Jul-1880,Boating,USA,New York,The Narrows,Sailing,Captain Aleck Robertson,M,12,"Shark bit stern, no injury to occupant",False,10' shark,"The Sun, 7/26/1880",1880.07.25-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.07.25-Robertson.pdf,1880.07.25,1880.07.25 +5802,15-May-1880,Unprovoked,INDIA,West Bengal,Ganges River,Sailing,"Sutto Cumar Mukerjea, a.k.a. Haboo",M,20,"Left hand severed, arm & right calf injured",False,10' shark,"A.C. Kastagir, surgeon; G.A. Llano, p.142, V.M. Coppelson (1958), p.261 ",1880.05.15-Haboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.15-Haboo.pdf,1880.05.15,1880.05.15 +5803,14-May-1880,Unprovoked,INDIA,West Bengal,Hoogly River,Bathing in river,a widow,F,60,"Hands, forearm & left thigh lacerated, radial artery severed",False,10' shark,"V.M. Coppleson (1958), p.261, G.A. Llano, pp.139-142]",1880.05.14-Widow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.14-Widow.pdf,1880.05.14,1880.05.14 +5804,Reported 07-May-1880,Invalid,MEXICO,Guerro,Acapulco,Bathing in river,A.H.C.,M,60,"Human remains recovered from a 15' shark, probable scavenging",False,Shark involvement prior to death unconfirmed,"Dover Weekly Argus, 5/7/1880",1880.05.07.R-AHC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.07.R-AHC.pdf,1880.05.07.R,1880.05.07.R +5805,02-May-1880,Unprovoked,INDIA,West Bengal,(Calcutta?),Bathing in river,Sasti,M,60,fatal,True,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.260, G.A. Llano, pp. 138-139]",1880.05.02.b-Sasti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.b-Sasti.pdf,1880.05.02.b,1880.05.02.b +5806,02-May-1880,Unprovoked,INDIA,West Bengal,"Panihati, 4 miles south of Barrackpore on the Hoogly River",Bathing,"N., a native boy",M,11,fatal,True,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.260, G.A. Llano, pp.137-138 ",1880.05.02.a-N.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.05.02.a-N.pdf,1880.05.02.a,1880.05.02.a +5807,22-Jan-1880,Boating,AUSTRALIA,New South Wales,"Chowder Bay, Sydney",Fishing,"boat, Occupants: William Smith & Thomas Martin",,11,"No injury to occupants, shark rammed boat",False,12' shark,"G.P. Whitley (1951), p.192, citing Sydney Morning Herald 1/24/1880 ",1880.01.22-ChowderBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.22-ChowderBayBoat.pdf,1880.01.22,1880.01.22 +5808,03-Jan-1880,Unprovoked,AUSTRALIA,New South Wales,Cooranbong,Bathing,Teresa Bonnell,F,13,Lacerations to leg,False,12' shark,"Morning Bulletin, 1/28/1880",1880.01.03-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.01.03-Bonnell.pdf,1880.01.03,1880.01.03 +5809,1880?,Invalid,SYRIA,unknown,unknown,Diving for sponges,male,M,13,fatal,True,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1898.00.00.R-Syria.pdf,1880.00.00.e,1880.00.00.e +5810,Ca. 1880,Invalid,USA,Florida,"Hutchinson Island, Martin County",Diving for sponges,"""Old Cuba""",M,13,"Drowned, body scavenged by shark",False,Invalid,History of Martin County by J. Hutchinson,1880.00.00.d-OldCuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.d-OldCuba.pdf,1880.00.00.d,1880.00.00.d +5811,Ca. 1880,Unprovoked,SOLOMON ISLANDS,Guadalcanal Province,Guadalcanal,Diving for sponges,boy,M,13,"Arm & leg severed, survived ",False,Invalid,"C.M. Woodford, page 35",1880.00.00.c-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.c-Guadalcanal.pdf,1880.00.00.c,1880.00.00.c +5812,1880,Unprovoked,NEW ZEALAND,South Island,Campbell’s Point,Diving for sponges,male,M,13,Recovered,False,Invalid,"Coppleson (1958), p.262 ",1880.00.00.a-CampbellsPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1880.00.00.a-CampbellsPoint.pdf,1880.00.00.a,1880.00.00.a +5813,24-Dec-1879,Unprovoked,INDIA,Andaman Islands,Port Blair,Swimming,Kenney,M,23,fatal,True,3 sharks,"Elyria Republican, 3/18/1880",1879.12.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.12.24-Kenney.pdf,1879.12.24,1879.12.24 +5814,10-Nov-1879,Unprovoked,AUSTRALIA,New South Wales,Clarence Heads,Swimming,Goddard,M,23,Thigh bitten,False,3 sharks,"Maitland Mercury & Hunter River General Advertiser, 11/18/1879",1879.11.10-Goddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.11.10-Goddard.pdf,1879.11.10,1879.11.10 +5815, 22-Sep-1879,Provoked,SPAIN,Valencia,Castellon de la Plana,Fishing,"C. Moore, GSAF",,23,"No injuries to occupants, Hooked shark bit boat PROVOKED INCIDENT",False,2.5 m shark,"C. Moore, GSAF",1879.09.22-Castellon-de-la-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.09.22-Castellon-de-la-Plana.pdf,1879.09.22,1879.09.22 +5816,Reported 30-Aug-1879,Sea Disaster,FIJI,Lau Group,Totoya ,Fishing,male + 20,M,23,"Severely bitten on heel, 20 others taken by sharks",False,2.5 m shark,"Wagga Wagga Advertiser, 8/30/1879",1879.08.30.R-Totoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.08.30.R-Totoya.pdf,1879.08.30.R,1879.08.30.R +5817,3-Jul-1879,Unprovoked,USA,California,"Los Angeles, Los Angeles County",Bathing,John Fry,M,23,No details,False,2.5 m shark,"Reno Evening Gazette, 7/11/1879",1879.07.03-JohnFry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.07.03-JohnFry.pdf,1879.07.03,1879.07.03 +5818,19-Mar-1879,Unprovoked,NEW ZEALAND,North Island,Napier,Standing,Michal O'Neill,M,19,fatal,True,2.5 m shark,"Star, 3/20/1879",1879.03.19-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.19-O'Neill.pdf,1879.03.19,1879.03.19 +5819,10-Mar-1879,Invalid,AUSTRALIA,New South Wales,Near Sydney ,The steamship Bonnie Dundee lost in collision,Cabin boy of the Bonnie Dundee,M,19,Partial remains found in shark,False,Shark involvement prior to death unconfirmed,"Star, 3/22/1879",1879.03.10-Bonnie-Dundee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.03.10-Bonnie-Dundee.pdf,1879.03.10,1879.03.10 +5820,1879,Unprovoked,USA,Mississippi,River mouth,Floating with life buoy after pilot launch capsized,Gus Ericsson,M,19,fatal,True,Tiger shark,"Indiana County Gazette, 10/3/1900",1879.00.00-Ericsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1879.00.00-Ericsson.pdf,1879.00.00,1879.00.00 +5821,17-Nov-1878,Unprovoked,AUSTRALIA,New South Wales,"Lane Cove River, Sydney Harbor ",Bathing,Mr. Meares,M,19,Laceration to leg,False, a small shark,"The Mercury, 11/22/1878",1878.11.17-Meares.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.11.17-Meares.pdf,1878.11.17,1878.11.17 +5822,Reported 24-Oct-1878,Unprovoked,INDONESIA,East Java,Probolinggo,Swimming,William Jones Owen,M,22,fatal,True,15' shark,"Hartford Weekly Times, 10/24/1878",1878.10.24.R-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.10.24.R-Owen.pdf,1878.10.24.R,1878.10.24.R +5823,Reported 14-Sep-1878,Provoked,USA,Connecticut,"Branford, New Haven County",Fishing,Captain Pattison,M,22,Leg bitten by netted shark PROVOKED INCIDENT,False,15' shark,"St. Joseph Herald, 9/14/1878",1878.09.14.R-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.14.R-Pattison.pdf,1878.09.14.R,1878.09.14.R +5824,02-Sep-1878,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of West Africa,Off the coast of West Africa,Boat with 5 men capsized while returning to the Amerique,Antonio du Val,M,22, Du Val's leg was bitten but he survived,False,15' shark,"Brisbane Courier, 11/19/1878",1878.09.02.b-Amerique-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.b-Amerique-boy.pdf,1878.09.02.b,1878.09.02.b +5825,02-Sep-1878,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of West Africa,Off the coast of West Africa,Boat with 5 men capsized while returning to the Amerique,"Brisbane Courier, 11/19/1878",M,22,fatal,True,15' shark,"Brisbane Courier, 11/19/1878",1878.09.02.a-Amerique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.09.02.a-Amerique.pdf,1878.09.02.a,1878.09.02.a +5826,09-Aug-1878,Unprovoked,USA,New York,East River,Swimming,Cole,M,22,fatal,True,8' shark,"Daily Kennebec Journal, 8/10/1878",1878.08.09-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.09-Cole.pdf,1878.08.09,1878.08.09 +5827,08-Aug-1878,Unprovoked,USA,New York,Brooklyn,Swimming,George Gates,M,14,fatal,True,8' shark,"NY Times, 8/9 & 8/16/1878",1878.08.08-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.08.08-Gates.pdf,1878.08.08,1878.08.08 +5828,10-Jun-1978,Unprovoked,PHILIPPINES,Misamis Oriental,Cagayan de Oro,Swimming,Dolores Margarita Corrales y Roa,F,14,fatal,True,8' shark,"A.J. Montalvan II, Philippine Daily Inquirer, 12/24/2011",1878.06.10-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.06.10-Philippines.pdf,1878.06.10,1878.06.10 +5829,Reported 30-March-1878,Unprovoked,NEW GUINEA,unknown,unknown,Swimming,"Hawkes Bay Herald, 4/16/1878",M,14,"""Fearfully injured""",False,8' shark,"Hawkes Bay Herald, 4/16/1878",1878.03.30.R-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.03.30.R-NewGuinea.pdf,1878.03.30.R,1878.03.30.R +5830,13-Feb-1878,Sea Disaster,SOUTH AFRICA,Western Cape Province,Olifantbos Point,Wreck of the Union Steamship Company 982-ton iron steamer Kafir,An Arab who had been with Stanley when he met Livingstone,M,14,fatal,True,8' shark,"M. Levine, GSAF; Times of Natal, 3/15/1878 ",1878.02.13-Kafir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.13-Kafir.pdf,1878.02.13,1878.02.13 +5831,02-Feb-1878,Sea Disaster,BRAZIL,unknown,unknown,Washed off raft,escaped convict,M,14,fatal,True,8' shark,"St Louis Post Dispatch, 5/22/1878",1878.02.02-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.02-Brazil.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.02.02-Brazil.pdf,1878.02.02,1878.02.02 +5832,1878,Unprovoked,AUSTRALIA,New South Wales,"Balmain, Sydney (Estuary)",Bathing in 2 feet of water,boy,M,11,fatal,True,8' shark,"G.P. Whitley, ref Dr. Cleland, Med. Journal Australia, 10/4/1924; J. Green, p.31",1878.00.00-Balmain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1878.00.00-Balmain.pdf,1878.00.00,1878.00.00 +5833,Reported 15-Dec-1877,Sea Disaster,FIJI,unknown,unknown,Bathing in 2 feet of water,a male & a female,,11,fatal,True,8' shark,"Australian Town & Country Journal, 12/15/1877",1877.12.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15.R-Fiji.pdf,1877.12.15.R,1877.12.15.R +5834,15-Dec-1877,Unprovoked,AUSTRALIA,New South Wales,"Peacock Point, Balmain, Sydney",Bathing,Albert Thomas Burless,M,11,Leg severely bitten & later surgically amputated,False,8' shark,"Sydney Mail, 2/16/1878; G.P. Whitley, (1951) p. 192, ref. F.A. McNeil ms. 1940; J. Green, p.31",1877.12.15-Burless.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.15-Burless.pdf,1877.12.15,1877.12.15 +5835,12-Dec-1877,Unprovoked,AUSTRALIA,New South Wales,Near Sydney,Washed overboard from the barque Mary Eady,2 males,M,11,fatal,True,8' shark,"Brisbane Courier, 12/15/1877",1877.12.12-MaryEady.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.12.12-MaryEady.pdf,1877.12.12,1877.12.12 +5836,15-Sep-1877,Unprovoked,AUSTRALIA,New South Wales,Port Jackson,Fishing,Mr. Coulthard,M,11,"No injury, pulled overboard by a shark that grabbed his coat",False,13' shark,"The Mercury (Hobart), 9/22/1877",1877.09.15-Coulthard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.09.15-Coulthard.pdf,1877.09.15,1877.09.15 +5837,Reported 28-Aug-1877,Invalid,INDIAN OCEAN,unknown,unknown,Fishing,female,M,11,Partial human remains found in 13' shark,False,Shark involvement prior to death unconfirmed,"Western Australian Times, 8/28/1877",1877.08.28.R-IndianOcean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.08.28.R-IndianOcean.pdf,1877.08.28.R,1877.08.28.R +5838, 07-Apr-1877,Provoked,AUSTRALIA,Tasmania,Smelting Works Bay near Hobart,Fishing,John Smart,M,11,Fingers injured by landed shark PROVOKED INCIDENT,False,7-gill shark,"C. Black, GSAF; G.P. Whitley, p.259",1877.04.07-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.07-Smart.pdf,1877.04.07,1877.04.07 +5839,04-Apr-1877,Unprovoked,AUSTRALIA,Victoria,Portarlington,Bathing,Mitchell,M,11,Thigh & foot bitten,False,7-gill shark,"Brisbane Courier, 4/11/1877",1877.04.04-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.04.04-Mitchell.pdf,1877.04.04.,1877.04.04. +5840,16-Mar-1877,Unprovoked,ITALY,Strait of Messina,Off Calabria,Paddling,Captain Paul Boyton,M,11,3 ribs broken by shark's tail,False,7-gill shark,"J. Stanton, et. Al",1877.03.16-Boyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.16-Boyton.pdf,1877.03.16,1877.03.16 +5841, 11-Mar-1877,Unprovoked,FIJI,Viti Levu Island,"Na Koro Vatu, Rewa River",Paddling,boy,M,15,"Thigh severely bitten, femur exposed ",False,7-gill shark,"Timaru Herald, 5/18/1877",1877.03.11-RewaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.03.11-RewaRiver.pdf,1877.03.11,1877.03.11 +5842,Reported 17-Feb-1877,Unprovoked,AUSTRALIA,Victoria,Off Melbourne,Fishing ,Gesoun Gentel,M,15,Severe bite to hand,False,7-gill shark,"Otago Witness, 2/17/1877",1877.02.17.R-Gentel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.02.17.R-Gentel.pdf,1877.02.17.R,1877.02.17.R +5843, 28-Jan-1877,Unprovoked,AUSTRALIA,Victoria,Emerald Hill,Bathing,William Marks,M,15,fatal,True,7-gill shark,"The Mercury, 2/19/1877",1877.01.28-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.28-Marks.pdf,1877.01.28,1877.01.28 +5844,Reported 24-Jan-1877,Unprovoked,AUSTRALIA,Victoria,Boarding School Bay,Swimming,female,F,15,Ankle injured,False,6' shark,"The Argus, 1/24/1877",1877.01.24.R-BoardingSchoolBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.24.R-BoardingSchoolBay.pdf,1877.01.24.R,1877.01.24.R +5845,04-Jan-1877,Invalid,SOUTH AFRICA,KwaZulu-Natal,Durban,Body found floating next to his ship,"Anno Toosegir, a Malagasy crewman from the 130-ton brig Sea Nymph",M,15,"Although his body was bitten by a shark/s, bruises on his neck & face suggested foul play & a shipmate taken into custody but no charges made",False,Shark involvement prior to death unconfirmed,"M. Levine, GSAF; Natal Colonist, 1/9/1877",1877.01.04-Toosegeir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.01.04-Toosegeir.pdf,1877.01.04,1877.01.04 +5846,Before 1878,Unprovoked,INDIA,Hoogly River,Near Calcutta,Body found floating next to his ship,Indian,M,15,"Thigh severely bitten, femur exposed & grooved",False,Shark involvement prior to death unconfirmed,"J. Fayrer, M.D. cited in F. Day, The Fishes of India, p.715 ",1877.00.00-Calcutta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1877.00.00-Calcutta.pdf,1877.00.00,1877.00.00 +5847,Reported 13-Oct-1876,Unprovoked,USA,New York,New York,Fishing,Frank White,M,15,fatal,True,Shark involvement prior to death unconfirmed,"Reading Times, 10/13/1876",1876.10.13.R-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.10.13.R-White.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.10.13.R-White.pdf,1876.10.13.R,1876.10.13.R +5848,Reported 07-Sep-1876,Unprovoked,GREECE,Cyclades archipelago,Between the islands of Tenos and Andros ,Diving for sponges,male,M,15,fatal,True,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1876.09.07.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.09.07.R-Greece.pdf,1876.09.07.R,1876.09.07.R +5849,Reported 04-Jun-1876,Unprovoked,USA,Georgia,Cumberland Island,Bathing,Arthur E.. Boardman,M,15,Leg bitten,False,Shark involvement prior to death unconfirmed,"The Constitution, 6/24/1876",1876.06.04.R-Boardman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.06.04.R-Boardman.pdf,1876.06.04.R,1876.06.04.R +5850,14-May-1876,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbour,Swimming,Frederick Brown,M,15,fatal,True,Shark involvement prior to death unconfirmed,"Sydney Mail, 6/3/1876",1876.05.14-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.05.14-Brown.pdf,1876.05.14,1876.05.14 +5851,06-Feb-1876,Unprovoked,AUSTRALIA,Victoria,Albert Park in Port Phillip Bay,Bathing,Patrick Rooney,M,15,fatal,True,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.110; A. Sharpe, p.111; Herald (Melbourne), 12/30/1929 & 5/16/1933 ",1876.02.06-Rooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.02.06-Rooney.pdf,1876.02.06,1876.02.06 +5852,1876,Unprovoked,LEBANON,Mount Lebanon,Batroun,Sponge diving,male,M,15,fatal,True,Shark involvement prior to death unconfirmed,"Drug Cir. & Chem. Gazette, 1876",1876.00.00.d-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.d-Lebanon.pdf,1876.00.00.d,1876.00.00.d +5853,1876,Unprovoked,ENGLAND,"Between Hastings & Fairlight, Sussex","Between Hastings & Fairlight, Sussex",Sponge diving,male,M,15,Leg abraded,False,Blue or porbeagle shark,MEDSAF,1876.00.00.c-MEDSAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.c-MEDSAF.pdf,1876.00.00.c,1876.00.00.c +5854,1876,Unprovoked,AUSTRALIA,Western Australia,Between De Grey River and Port Walcott,Pearl diving,"male, aboriginal diver",M,15,"""Severely bitten"" but survived",False,Blue or porbeagle shark,"G.P. Whitley (1951) pp.185 & 192, citing P.Walcott",1876.00.00.b-pearl-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.b-pearl-diver.pdf,1876.00.00.b,1876.00.00.b +5855,1876,Unprovoked,AUSTRALIA,New South Wales,Sydney,Pearl diving,boy,M,15,fatal,True,Blue or porbeagle shark,"G.P. Whitley (1951), p.192",1876.00.00.a-boy-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1876.00.00.a-boy-Sydney.pdf,1876.00.00.a,1876.00.00.a +5856,Reported 27-Nov-1875,Unprovoked,AUSTRALIA,New South Wales,Clarence Heads,Fishing,Aboriginal male,M,15,Foot severed at ankle,False,Blue or porbeagle shark,"Brisbane Courier, 11/27/1875",1875.11.27.R-AboriginalFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.11.27.R-AboriginalFisherman.pdf,1875.11.27.R,1875.11.27.R +5857,10-Aug-1875,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban",Fishing," Natal Colonist, 8/13/1875; M. Levine, GSAF",,15,"Press reported that a 3 m shark was caught with human remains in its gut, but remains were those of a porpoise according to medical examiner",False,Invalid," Natal Colonist, 8/13/1875; M. Levine, GSAF",1875.08.10-porpoise.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.08.10-porpoise.pdf,1875.08.10,1875.08.10 +5858,03-Mar-1875,Unprovoked,NEW ZEALAND,North Island,Tauranga,Bathing,male,M,3,fatal,True,Invalid,"Thames Star, 3/3/1875",1875.03.03-Maori_boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.03.03-Maori_boy.pdf,1875.03.03,1875.03.03 +5859,Reported 20-Jan-1875,Invalid,AUSTRALIA,Queensland,Mary River,Bathing,male,M,3,Forehead bitten,False,Shark involvement questionable,"Nelson Evening Mail, 1/20/1875",1875.01.20.R-MaryRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.01.20.R-MaryRiver.pdf,1875.01.20.R,1875.01.20.R +5860,21-Nov-1874,Unprovoked,AUSTRALIA,Queensland,Maryborough,Bathing,"""a lad""",M,3,Thigh bitten,False,10' shark,"Maryborough Chronicle, 11/24/1874",1874.11.21-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.21-Maryborough.pdf,1874.11.21,1874.11.21 +5861,Ca. mid-1870s,Unprovoked,AUSTRALIA,Western Australia,Sharks Bay,Sitting on gunwale of boat,Andrew Farmer,M,3,fatal,True,10' shark,"Western Mail (Perth), 6/27/1919",1875.00.00-Farmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1875.00.00-Farmer.pdf,1875.00.00,1875.00.00 +5862,14-Nov-1874,Boating,CROATIA,Zadar County,"Lika-Senj, Pag Island",Fishing,2 occupants,,3,"Shark damaged boat, but no injury to occupants",False,10' shark,"C. Moore, GSAF",1874.11.14.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.11.14.R-Croatia.pdf,1874.11.14.R,1874.11.14.R +5863,23-Jul-1874,Boating,FRANCE,unknown,unknown,Fishing,"C. Moore, GSAF",,3,Shark and boat collided. No injury to occupants,False,10' shark,"C. Moore, GSAF",1874.07.23-Planier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.23-Planier.pdf,1874.07.23,1874.07.23 +5864,Reported 15-Jul-1874,Unprovoked,USA,Hawaii,Waikiki,Fishing,a native fisherman,M,3,Thumb & thigh lacerated,False,10' shark,"Empire, 7/15/1874",1874.07.15.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.R-Hawaii.pdf,1874.07.15.R,1874.07.15.R +5865,15-Jul-1874,Unprovoked,USA,New York,Coney Island,Bathing,Mr. Keatly,M,3,Lacerations to groin,False,"68"" shark","NY Times, 7/17/1874",1874.07.15.a-Keatly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.07.15.a-Keatly.pdf,1874.07.15,1874.07.15 +5866,Reported 18-Jun- 1874,Unprovoked,MEXICO,Veracruz ,"Tlacotalpan, Vera Cruz",Bathing,a servant of General Diaz,M,3,fatal,True,"68"" shark","The Times-Picayune, 6/18/1874",1874.06.18.R-DiazServant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.18.R-DiazServant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.18.R-DiazServant.pdf,1874.06.18.R,1876.06.18.R +5867,Reported 15-Jun-1874,Unprovoked,KIRIBATI,Gilbert Islands,Beru,Escaping from blackbirding vessel,male,M,3,fatal,True,"68"" shark","Daily Southern Cross, 6/15/1874",1874.06.15.b.R-Blackbirder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.15.b.R-Blackbirder.pdf,1874.06.15.b.R,1874.06.15.b.R +5868,June 1874,Sea Disaster,HONDURAS,Mouth of the Ullua River,Mouth of the Ullua River,Boat of the Resolution capsized in the breakers,The Captain & 3 crew,M,3,fatal,True,"68"" shark","Public Ledger, 10/1/1974",1874.06.00-Resolution.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.00-Resolution.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.06.00-Resolution.pdf,1874.06.00,1874.06.00 +5869,Reported 20-Apr-1874,Boating,CANADA,Newfoundland,St. Pierre Bank ,Fishing,A dory: occupants : 2 men,M,3,Shark bit & tipped the dory,False,White shark,Jones (1879); Piers (1933),1874.04.20.R-Dory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.04.20.R-Dory.pdf,1874.04.20.R,1874.04.20.R +5870,1874,Sea Disaster,TUVALU,Between Nanumea & Nanumaga Atolls,Between Nanumea & Nanumaga Atolls,Fleet of canoes caught by a squall and charged by sharks.,"Otago Witness, 10/28/1897",,3,fatal,True,White shark,"Otago Witness, 10/28/1897",1874.02.15-Tuvalu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.02.15-Tuvalu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.02.15-Tuvalu.pdf,1874.02.15,1874.02.15 +5871,09-Jan- 1874,Unprovoked,AUSTRALIA,New South Wales,"Darling Harbor, Sydney",Bathing,Thomas Thompson,M,3,Thigh severely bitten,False,White shark,"Sydney Morning Herald, 1/1/1874; V.M. Coppleson (1962)",1874.01.09-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1874.01.09-Thompson.pdf,1874.01.09,1874.01.09 +5872,28-Jul-1873,Provoked,USA,Maryland,Chester River,Fishing (Seining),James Green,M,3,Leg severely bitten by netted shark. Lower leg surgically amputated PROVOKED INCIDENT,False,White shark,"NY Times, 7/30/1873",1873.07.28-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.07.28-Green.pdf,1873.07.28,1873.07.28 +5873,Reported 09-Jun-1873,Invalid,AUSTRALIA,New South Wales,Newcastle ,Bathing,Joseph Henry,M,3,fatal,True,Shark involvement prior to death unconfirmed,"The Mercury, 6/9/1873",1873.06.09.R-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.06.09.R-Henry.pdf,1873.06.09.R,1873.06.09.R +5874,Reported 09-Jan-1873,Unprovoked,AUSTRALIA,Queensland,White Cliffs,Bathing,young aboriginal male,M,3,Survived,False,Hammerhead shark,"Brisbane Courier, 1/9/1873",1873.01.09.R-Aboriginal-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.01.09.R-Aboriginal-male.pdf,1873.01.09.R,1873.01.09.R +5875,Nov- or Dec-1873,Unprovoked,CUBA,Havana Province,Havana Harbor,Swimming / escaping imprisonment ,Franz Mayer,M,27,"Legs severed bitten, later surgically amputated",False,Hammerhead shark,"NY Times, 8/9/1931",1873.00.00-Mayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1873.00.00-Mayer.pdf,1873.00.00,1873.00.00 +5876,Reported 30-Nov-1872,Unprovoked,INDIAN OCEAN?,unknown,unknown,Swimming to avoid capture,Malay pirates,M,27,fatal,True,Hammerhead shark,"The Mercury, 11/230/1872",1872.11.30.R-MalayPirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.30.R-MalayPirates.pdf,1872.11.30.R,1872.11.30.R +5877,24-Nov-1872,Invalid,AZORES,unknown,unknown,Swimming to avoid capture,Abel Fosdyk (who claimed to be sole survivor from the Mary Celeste),M,27,"No injury, but according to Fosdyk, captain & crew were killed by sharks",False,Hammerhead shark,Strand Magazine ,1872.11.24-MaryCeleste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.11.24-MaryCeleste.pdf,1872.11.24,1872.11.24 +5878,10-Oct-1872,Sea Disaster,BAHAMAS,Abaco Islands,Abaco Islands,Burning of the S.S. Missouri,males,M,27,fatal,True,Hammerhead shark,"Chicago Tribune, 12/2/1872",1872.10.22-Missouri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.10.22-Missouri.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.10.22-Missouri.pdf,1872.10.22,1872.10.22 +5879,Reported 07-Aug-1872,Invalid,CROATIA,Fiume,Fiume,Fishing,male,M,27,No injury,False,Invalid,"C. Moore, GSAF",1872.08.07.R-Fiume.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.08.07.R-Fiume.pdf,1872.08.07.R,1872.08.07.R +5880,Reported 03-Apr-1872,Unprovoked,USA,Hawaii,Kawahae,Canoeing,Kaholo,M,27,"Thigh bitten, shark teeth embedded in canoe",False,Invalid,"Honolulu Gazette, 4/3/1872",1872.04.03.R-Kaholo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.04.03.R-Kaholo.pdf,1872.04.03.R,1872.04.03.R +5881,26-Feb-1872,Sea Disaster,AUSTRALIA,Queensland,Bramble Reef,Wreck of the 150-ton brig Maria,coralsea-wrecks.com,,27,fatal,True,Invalid,coralsea-wrecks.com,1872.02.26-MariaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.02.26-MariaShipwreck.pdf,1872.02.26,1872.02.26 +5882,28-Jan-1872,Invalid,Fiji,Lomaiviti Provine,"Levuka Point, Ovalau Island",boat capsized,Mr. Manning,M,27,Probable drowning,False,Shark involvement prior to death unconfirmed,"Empire, 2/20/1872",1872.01.28-Manning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.01.28-Manning.pdf,1872.01.28,1872.01.28 +5883,Circa 1872,Sea Disaster,SOUTH ATLANTIC OCEAN,Off the coast of South America,Off the coast of South America,Adrift on a raft ,an Italian fisherman,M,27,Leg bitten,False,Shark involvement prior to death unconfirmed,"San Francisco Bulletin, 11/1/1872",1872.00.00-Italian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1872.00.00-Italian.pdf,1872.00.00,1872.00.00 +5884,Reported 11-Dec-1871,Invalid,AUSTRALIA,New South Wales,Hawkesbury River,Adrift on a raft ,male,M,27,Human remains recovered from 11' shark,False,Shark involvement prior to death unconfirmed,"Border Watch, 1/10/1872",1871.12.11.R-Remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.12.11.R-Remains.pdf,1871.12.11.R,1871.12.11.R +5885,Reported 29-Aug-1871,Unprovoked,USA,Hawaii,Hawaii,Fishing,male,M,27,Limbs severed,False,Shark involvement prior to death unconfirmed,"The British Colonist, 8/29/1871",1871.08.29.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.29.R-Hawaii.pdf,1871.08.29.R,1871.08.29.R +5886,Aug-1871,Provoked,USA,New York,Long Island,Shark fishing,"New York Times, 8/26/1871",M,27,Hand injured PROVOKED INCIDENT,False,Shark involvement prior to death unconfirmed,"New York Times, 8/26/1871",1871.08.00-SharkFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.08.00-SharkFisherman.pdf,1871.08.00,1871.08.00 +5887,Reported 22-May-1871,Unprovoked,SRI LANKA,Eastern Province,Trincomalee,Bathing,An officer from H.M. Forte,M,27,Severe laceration to thigh,False,Shark involvement prior to death unconfirmed,"The Argus, 5/22/1871",1871.05.22.R-Trincomalee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.22.R-Trincomalee.pdf,1871.05.22.R,1871.05.22.R +5888,Reported 13-May 1871,Invalid,GUYANA,Demerara,Demerara,Suicide,Grant,M,27,fatal,True,Shark involvement prior to death unconfirmed,"The Buffalo Commercial, 5//13/1871",1871.05.13.R-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.13.R-Grant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.05.13.R-Grant.pdf,1871.05.13.R,1871.05.13.R +5889,24-Mar-1871,Unprovoked,INDIA,"22ºN, 88ºE",Hoogly River at Multah,Bathing,Deno,M,30,fatal,True,Shark involvement prior to death unconfirmed,"J. Fayrer, M.D., pp.257-260 ",1871.03.24-Deno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.03.24-Deno.pdf,1871.03.24,1871.03.24 +5890,1871,Unprovoked,AUSTRALIA,New South Wales,Manning River,Bathing,male,M,30,fatal,True,Shark involvement prior to death unconfirmed,"G.P. Whitley, ref E.S. Hill, Sydney Mail, 5/6/1871 ",1871.00.00.c-ManningRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.c-ManningRiver.pdf,1871.00.00.c,1871.00.00.c +5891,Before 1871,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Bathing,male,M,30,Survived,False,Shark involvement prior to death unconfirmed,"G.P. Whitley, ref. E.S. Hill",1871.00.00.b-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.b-BrisbaneRiver.pdf,1871.00.00.b,1871.00.00.b +5892,Before 1871,Unprovoked,AUSTRALIA,New South Wales,Jervis Bay & Long Reef,Fishing,"2 males, aborigines",M,30,Feet grabbed,False,Wobbegongs,"G.P. Whitley (1940), p.79",1871.00.00.a-aborigines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1871.00.00.a-aborigines.pdf,1871.00.00.a,1871.00.00.a +5893,27-Jul-1870,Unprovoked,USA,North Carolina,"Smithville (now Southport), Brunswick County",Bathing,Giles Gordon,M,30,Foot bitten & toe severed,False,Wobbegongs,"C. Creswell, GSAF, F. Schwartz, p.23",1870.07.27-Gordon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.07.27-Gordon.pdf,1870.07.27,1870.07.27 +5894,19-Jun-1870,Unprovoked,INDIA,"22ºN, 88ºE","Calcutta, Hoogly River at one of the ghats",Bathing,"male, a Hindu shopkeeper",M,40,"Left arm bitten, developed gangrene, surgically amputated",False,Wobbegongs,"J. Fayrer, M.D.",1870.06.19-HinduShopkeeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.19-HinduShopkeeper.pdf,1870.06.19,1870.06.19 +5895,01-Jun-1870,Unprovoked,INDIA,West Bengal,"Hoogly River, Calcutta",Bathing / standing,"B., ""an Ooryah coolie""",M,40,"Right foot & leg bitten, surgically amputated",False,Wobbegongs,"J. Fayrer, M.D.",1870.06.01-Ooryah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.06.01-Ooryah.pdf,1870.06.01,1870.06.01 +5896,Reported 26-May-1870,Unprovoked,AUSTRALIA,Queensland,Moreton Island,Fishing,Master Lacy,M,13,bite to lower leg,False,Wobbegongs,"Brisbane Courier, 5/26/1870",1870.05.26.R-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.26.R-Lacy.pdf,1870.05.26.R,1870.05.26.R +5897,18-May-1870,Unprovoked,INDIA,"22ºN, 88ºE","Hatkolah, Ghat,",Bathing,"H.E.S., a Hindu trader",M,39,4 irregular lacerated wounds on right arm,False,Wobbegongs,"J. Fayrer, M.D.",1870.05.18-HinduTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.18-HinduTrader.pdf,1870.05.18,1870.05.18 +5898,11-May-1870,Unprovoked,INDIA,"22ºN, 88ºE",Near Sobah Bazar,Bathing,"male, a Hindu confectioner",M,40,3 lacerated irregular wounds on anterior left thigh,False,Wobbegongs,"J. Fayrer, M.D.",1870.05.11-HinduConfectioner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.05.11-HinduConfectioner.pdf,1870.05.11,1870.05.11 +5899,09-Jan-1870,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Bathing,John Saunders,M,17,Right thigh bitten,False,Wobbegongs,"Brisbane Courier, 1/15/1870",1870.01.09-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.01.09-Saunders.pdf,1870.01.09,1870.01.09 +5900,Early 1870s,Invalid,AUSTRALIA,Tasmania,Derwent River,Canoeing,Sub Lieut. Bowyer of H.M.S. Chile,M,17,fatal,True,Wobbegongs,"C. Black, p.12; V.M. Coppleson (1958) pp. 104-105",1870.00.00-Bowyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1870.00.00-Bowyer.pdf,1870.00.00,1870.00.00 +5901,Reported 15-Apr-1869,Unprovoked,AUSTRALIA,South Australia,Cape Elizabeth,Net fishing,Joseph Simms,M,17,Foot bitten,False,"Tiger shark, 7'","The Mercury, 4/151869",1869.04.15.R-Simms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1869.04.15.R-Simms.pdf,1869.04.15.R,1869.04.15.R +5902,01-Sep-1868,Unprovoked,ITALY,Adriatic Sea,Trieste,Net fishing,male,M,17,fatal,True,White shark,"A. De Maddalena; Radovanovi (1965), Soldo & Jardas (2000)",1868.09.01-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.09.01-Trieste.pdf,1868.09.01,1868.09.01 +5903,13-May-1868,Unprovoked,INDIA,Hoogly River,Ghat,Standing,male,M,35,fatal,True,Identified as C. gangeticus by Dr. J. Fayrer,"J. Fayrer, M.D.",1868.05.13-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.05.13-Hindoo.pdf,1868.05.13,1868.05.13 +5904,17-Jan-1868,Sea Disaster,VIETNAM,Cohong,Cohong,A junk foundered,"Argus, 5/26/1868",M,35,fatal,True,Identified as C. gangeticus by Dr. J. Fayrer,"Argus, 5/26/1868",1868.01.17-Vietnamese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.17-Vietnamese.pdf,1868.01.17,1868.01.17 +5905,Reported 04-Jan-1868,Sea Disaster,AUSTRALIA,South Australia,Belfast (now Port Fairy),Fishing,"boat, occupants: John Griffiths & Thomas Johnson",,35,"No injury to occupants, shark's teeth embedded in keel",False,Identified as C. gangeticus by Dr. J. Fayrer,"Nelson Examiner & New Zealand Chronicle, 4/3/1868",1868.01.04.R-PortFairy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.01.04.R-PortFairy.pdf,1868.01.04.R,1868.01.04.R +5906,"Reported 24-Oct-1888, but took place around 1868",Unprovoked,AUSTRALIA,Torres Strait,South Aroo Island,Swimming,15 Pindo Islanders,M,35,fatal,True,Identified as C. gangeticus by Dr. J. Fayrer,"The New Era, 10/24/1888",1868.00.00.b-PindoIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.b-PindoIslanders.pdf,1868.00.00.b,1868.00.00.b +5907,1868 (?),Unprovoked,NEW ZEALAND,North Island,"Brickfield Bay, Auckland Harbour",Bathing close inshore,Cook,M,35,Thigh bitten,False,"""Shark caught later""","V.M. Coppleson (1958) (May refer to Thomas Cooke, see- 22-Dec-1862)",1868.00.00.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1868.00.00.a-Cook.pdf,1868.00.00.a,1868.00.00.a +5908,Reported 22-Aug-1867,Unprovoked,EGYPT,Port Said,Port Said,Swimming,male,M,35,fatal,True,"""Shark caught later""","C. Moore, GSAF",1867.08.22.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.22.R-PortSaid.pdf,1867.08.22.R,1867.08.22.R +5909,Aug-1867,Unprovoked,MEXICO,Veracruz ,Vera Cruz Harbor,boat from the Austrian ship Elizabeth,14 crewmen,M,35,fatal,True,"""Shark caught later""","Washington Star, 12/12/1891",1867.08.00-ElizabethCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.08.00-ElizabethCrew.pdf,1867.08.00,1867.08.00 +5910,26-Jun-1867,Sea Disaster,CUBA,Villa Clara Province,Remedios,boat from ship Josephine capsized in squall,2 crew clinging to floating barrels,M,35,fatal,True,"""Shark caught later""","Cork Examiner, 8/17/1867; Whaleman's Shipping List, 9/24;1867",1867.06.26-JosephineCrewmen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.06.26-JosephineCrewmen.pdf,1867.06.26,1867.06.26 +5911,Reported 26-Jan-1867,Boating,AUSTRALIA,Victoria,Queenscliff,boat from ship Josephine capsized in squall,"Charlestown Daily News, 4/3/1867",,35,"No injury, shark bit oar of customs boat",False,"""Shark caught later""","Charlestown Daily News, 4/3/1867",1867.01.26.R-Queenscliff,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.01.26.R-Queenscliff,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.01.26.R-Queenscliff,1867.01.26.R,1867.01.26.R +5912,1867,Unprovoked,CUBA,Matanzas Province (north coast),Matanzas,Painting a ship,male,M,35,fatal,True,"""Shark caught later""","Washington Star, 12/12/1891",1867.00.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1867.00.00-Cuba.pdf,1867.00.00,1867.00.00 +5913,Reported 09-Jul-1866,Unprovoked,USA,Alabama,Mobile Bay,Bathing,male,M,35,fatal,True,"""Shark caught later""","The Atchison Daily Champion, 7/22/1866",1866.07.09.R-Mobile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.07.09.R-Mobile.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.07.09.R-Mobile.pdf,1866.07.09.R,1866.07.09.R +5914,Reported 24-Apr-1866,Invalid,AUSTRALIA,Western Australia,Off De Grey river,Fell overboard,Mr. Groves,M,35,Thought to have been taken by a shark. Body was not recovered,False,Shark involvement prior to death unconfirmed,"The Argus, 4/24/1866",1866.04.24.R-Groves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1866.04.24.R-Groves.pdf,1866.04.24.R,1866.04.24.R +5915,02-Sep-1865,Unprovoked,USA,New York,"Greenport Sound, Long Island",Swimming alongside the schooner Catherine Wilcox,Peter Johnson,M,17,Multiple lacerations,False,Shark involvement prior to death unconfirmed,"P. Bailey; J. Gaudin, GSAF",1865.09.02-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.09.02-Johnson.pdf,1865.09.02,1865.09.02 +5916,Reported 14-Jul-1865,Unprovoked,USA,Texas,Brazos,Bathing,Col. Bryant,M,17,fatal,True,Shark involvement prior to death unconfirmed,"Philadelphia Inquirer, 7/14/1865",1865.07.14.R-Col-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.14.R-Col-Bryant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.07.14.R-Col-Bryant.pdf,1865.07.14.R,1865.07.14.R +5917,Reported 01-Mar-1865,Boating,SOUTH AFRICA,Western Cape Province,St. Helena Bay,Fishing,boat: 4 occupants,M,17,fatal,True,Shark involvement prior to death unconfirmed,"South African Advertiser, 3/1/1865",1865.03.01.R-St-HelenaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.03.01.R-St-HelenaBay.pdf,1865.03.01.R,1865.03.01.R +5918,1865,Boating,AUSTRALIA,South Australia,Semaphore,Boarding a ship,"R.H. Barrett, pilot holding steering oar of whaleboat",,17,"No injury to pilot, oar bitten",False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1958), p.186",1865.00.00-Barrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1865.00.00-Barrett.pdf,1865.00.00,1865.00.00 +5919,02-Oct-1864,Sea Disaster,USA,North Carolina,"Cedar Island, Carteret County",Wreck of the Aphrodite,males x 5,M,17,fatal,True,Shark involvement prior to death unconfirmed,National Republican 10/11/1864,1864.10.02-Aphrodite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.10.02-Aphrodite.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.10.02-Aphrodite.pdf,1864.10.02,1864.10.02 +5920,Reported 18-Sep-1864,Provoked,FRANCE,Alpes Maritime,Antibes,Dragging a shark,fisherman,M,17,Knee bitten PROVOKED INCIDENT,False,1.5 m shark,"C. Moore, GSAF",1864.09.18.R-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.18.R-Antibes.pdf,1864.09.18.R,1864.09.18.R +5921,Sep-1864,Unprovoked,SCOTLAND,Edinburgh,Granton,Dragging a shark,Mr. Ballard,M,17,Leg bitten 3 times,False,3' shark,C. Moore citing R. Peirce,1864.09.00-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.09.00-Ballard.pdf,1864.09.00,1864.09.00 +5922,12-Aug-1864,Unprovoked,USA,New York,Mahattan,Swimming,Henry Brice,M,13,Left thigh severely bitten,False,3' shark,"NY Times, 8/13/1864",1864.08.12-Brice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.12-Brice.pdf,1864.08.12,1864.08.12 +5923,Aug-1864,Unprovoked,MADAGASCAR,unknown,unknown,Fell overboard,male from the White Wave,M,13,fatal,True,3' shark,"North Adams Transcript, 3/18/1898",1864.08.00-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.00-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.08.00-Madagascar.pdf,1864.08.00,1864.08.00 +5924,25-Jul-1864,Unprovoked,SPAIN,Eastern Catalona,Badalona,Bathing,male,M,13,fatal,True,3' shark,"C. Moore, GSAF",1864.07.25-Badalona-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.07.25-Badalona-Spain.pdf,1864.07.25,1864.07.25 +5925,May-1864,Unprovoked,MAURITIUS,300 miles east of Mauritius,300 miles east of Mauritius,Fell overboard,male from the whaler Albatross,M,13,fatal,True,3' shark,"North Adams Transcript, 3/18/1898",1864.05.00.Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.05.00.Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.05.00.Mauritius.pdf,1864.05.00,1864.05.00 +5926,09-Apr-1864,Unprovoked,CHINA,Macao Harbor,Macao Harbor,Swimming,males,M,13,No injury,False,3' shark,"C. Moore, GSAF",1864.04.09-Macao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.04.09-Macao.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.04.09-Macao.pdf,1864.04.09,1864.04.09 +5927,Apr-1864,Unprovoked,MAURITIUS,unknown,unknown,Fell overboard,cook from the Charleston,M,13,fatal,True,3' shark,"North Adams Transcript, 3/18/1898",1864.04.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.04.00-Mauritius.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.04.00-Mauritius.pdf,1864.04.00,1864.04.00 +5928,Reported 27-Jan-1864,Unprovoked,PANAMA,Colón Province,Aspinwall (Colón),Coming ashore on a hawser,a sailor from ther RM steam packet Solent,M,13,fatal,True,3' shark,"Chicago Tribune, 1/27/1864",1864.01.27.R-SailorSolent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.27.R-SailorSolent.pdf,1864.01.27.R,1864.01.27.R +5929,Reported 16-Jan-1864,Unprovoked,NEW ZEALAND,Foveaux Strait,Stewart Island,Boat swamped,male,M,13,fatal,True,3' shark,"Otago Witness, 1/16/1864",1864.01.16.R-StewartsIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.16.R-StewartsIsland.pdf,1864.01.16.R,1864.01.16.R +5930,02-Jan-1864,Unprovoked,NEW ZEALAND,North Island,"Brickfield Bay, Auckland Harbour",Standing / Bathing,Mr. Kelsall,M,13,Minor injury to hip,False,3' shark,"Wellington Independent, 1/21/1864",1864.01.01-Kelsall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.01.01-Kelsall.pdf,1864.01.02,1864.01.02 +5931,1864,Unprovoked,INDONESIA,Sumatra,Off Acheen Head,Reaching for life preserver,"male, from the ship Speedwell",M,13,fatal,True,3' shark,"North Adams Transcript, 3/18/1898",1864.00.00.R-Sumatra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00.R-Sumatra.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00.R-Sumatra.pdf,1864.00.00.R,1864.00.00.R +5932,1864,Invalid,AUSTRALIA,South Australia,"Corio Bay, Port Phillip",Swimming,"Mr. Warren, Jr.",M,13,fatal,True,Shark involvement prior to death unconfirmed,"The Argus, 11/24/1868",1864.00.00-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1864.00.00-Warren.pdf,1864.00.00,1864.00.00 +5933,14-Dec-1863,Unprovoked,GUINEA,Conakry Region,Ile de Loss,"Bathing near whaling ship (bark A. R. Tucker of New Bedford, Massachusetts)",Charles H. Petty,M,18,fatal,True,Shark involvement prior to death unconfirmed,"P. Purrington, Whaling Museum & Old Dartmouth Historical Society; V.M. Coppleson (1958), p.321 ",1863.12.14-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.12.14-Petty.pdf,1863.12.14,1863.12.14 +5934,Reported 13-Sep-1863,Unprovoked,USA,South Carolina,"Stono Inlet, near Charleston, Charleston County",Bathing,male,M,18,Thrown into the air & bruised,False,Shark involvement prior to death unconfirmed,"NY Times, 9/13/1863",1863.09.13.R-StonoInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.09.13.R-StonoInlet.pdf,1863.09.13.R,1863.09.13.R +5935,Reported 09-Jul-1863,Provoked,USA,Hawaii,Palama,Fishing,male,M,18,Hand severed by noosed shark PROVOKED INCIDENT,False,Shark involvement prior to death unconfirmed,"Pacific Commercial Advertiser, 7/9/1863",1863.07.09-Palama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.07.09-Palama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.07.09-Palama.pdf,1863.07.09,1863.07.09 +5936,Apr-1863,Unprovoked,AUSTRALIA,Queensland,Caloundra Heads,Launching a boat,Mr. Barnsfield,M,18,fatal,True,2 sharks,"Brisbane Courier, 6/12/1889, p.9",1863.04.00-Barnsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.04.00-Barnsfield.pdf,1863.04.00,1863.04.00 +5937,05-Mar-1863,Unprovoked,AUSTRALIA,Victoria,Brighton,Floating on back,William Thorn,M,18,Lacerations to right torso & ankle,False,2 sharks,"Argus, 3/10/1863",1863.03.05-Thorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.03.05-Thorn.pdf,1863.03.05,1863.03.05 +5938,05-Feb-1863,Invalid,SOUTH AFRICA,KwaZulu-Natal,"Back Beach, Durban","Swimming, caught in strong backwash & disappeared",Mr. J. Canham,M,26,3.2 m [10.5'] shark caught 9 days later contained human remains thought to be those of Canham,False,Shark involvement prior to death unconfirmed,"M. Levine, GSAF; Times of Natal, 2/16/1863",1863.02.05-Canham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.02.05-Canham.pdf,1863.02.05,1863.02.05 +5939,10-Jan-1863,Unprovoked,AUSTRALIA,New South Wales,"""Bellynahinch"" on the Manning River",Bathing,James Brown,M,17,fatal,True,Shark involvement prior to death unconfirmed,"G.P. Whitley, p.259",1863.01.10-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.01.10-Brown.pdf,1863.01.10,1863.01.10 +5940,1863,Unprovoked,ANDAMAN ISLANDS,unknown,unknown,Fell overboard,a local fisherman,M,17,fatal,True,Shark involvement prior to death unconfirmed,"North Adams Transcript, 3/18/1898",1863.00.00.R4-AndamanIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R4-AndamanIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R4-AndamanIslands.pdf,1863.00.00.R4,1863.00.00.R4 +5941,1863,Unprovoked,CEYLON,unknown,unknown,Fell overboard,male from the ship James F. Bradwell,M,17,fatal,True,Shark involvement prior to death unconfirmed,"North Adams Transcript, 3/18/1898",1863.00.00.R3-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R3-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R3-Ceylon.pdf,1863.00.00.R3,1863.00.00.R3 +5942,1863,Unprovoked,CEYLON,unknown,unknown,Fell overboard,"male, carpenter from the ship Fair Hope",M,17,fatal,True,Shark involvement prior to death unconfirmed,"North Adams Transcript, 3/18/1898",1863.00.00.R2-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R2-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R2-Ceylon.pdf,1863.00.00.R2,1863.00.00.R2 +5943,Reported 1863,Unprovoked,GREECE,Corfu,Corfu,Swimming,male,M,17,fatal,True,Shark involvement prior to death unconfirmed,C. Moore. GSAF,1863.00.00.R-Corfu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1863.00.00.R-Corfu.pdf,1863.00.00.R,1863.00.00.R +5944,22-Dec-1862,Unprovoked,NEW ZEALAND,North Island,"Soldier's Point, Brick Bay, Auckland",Swimming,Thomas Cooke,M,28,Right thigh and left foot severely bitten,False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1962), p.247",1862.12.22-Cooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.22-Cooke.pdf,1862.12.22,1862.12.22 +5945,Reported 19-Dec-1862,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Trying to catch a wounded bird,male,M,28,fatal,True,Shark involvement prior to death unconfirmed,"Courier, 12/19/1862",1862.12.19.R-Boy-Brisbane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.19.R-Boy-Brisbane.pdf,1862.12.19.R,1862.12.19.R +5946,04-Dec-1862,Invalid,NEW ZEALAND,South Island,Lyttleton?,Trying to catch a wounded bird,"Bendigo Advertiser, 1/3/1863",,28,,,Questionable incident,"Bendigo Advertiser, 1/3/1863",1862.12.04-Lyttleton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.12.04-Lyttleton.pdf,1862.12.04,1862.12.04 +5947,Reported 15-Aug-1862,Unprovoked,SPAIN,A Spanish port,A Spanish port,Bathing,The widowed Marchioness of Lendinez,F,28,Survived,False,Questionable incident,C. Moore. GSAF,1862.08.15.R-Lendinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.15.R-Lendinez.pdf,1862.08.15.R,1862.08.15.R +5948,Reported 02-Aug-1862,Invalid,SPAIN,Malaga,Fuengirola,Bathing,male,M,28,Possible drowning and scavenging,False,Shark involvement prior to death unconfirmed,C. Moore. GSAF,1862.08.02.R-Fuengirola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.08.02.R-Fuengirola.pdf,1862.08.02.R,1862.08.02.R +5949,25-Jul-1862,Unprovoked,SPAIN,Malaga,San Andres Beach,Swimming,Joaquin Rosales Martinez,M,18,fatal,True,Shark involvement prior to death unconfirmed,C. Moore. GSAF,1862.07.25-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.25-Martinez.pdf,1862.07.25,1862.07.25 +5950,14-Jul-1862,Unprovoked,SPAIN,Cádiz,Off Algeciras,Swimming,male,M,18,fatal,True,16' shark,C. Moore. GSAF,1862.07.14-Algeciras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.14-Algeciras.pdf,1862.07.14,1862.07.14 +5951,13-Jul-1862,Unprovoked,SPAIN,Cádiz,Off Algeciras,Swimming alongside the SS Kearsarge,Tibbetts,M,18,fatal,True,16' shark,C. Moore; W.H. Bedlam,1862.07.13-Tibbetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.07.13-Tibbetts.pdf,1862.07.13,1862.07.13 +5952,03-Jun-1862,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Harbor,Swimming alongside the SS Kearsarge,male,M,18,"""Very severe wounds""",False,16' shark,"Cape Argus, 6/10/1862; M. Levine, GSAF",1862.06.03-male_Durban_Harbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.06.03-male_Durban_Harbour.pdf,1862.06.03,1862.06.03 +5953,05-May-1862,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Bathing,Mr. Cummings,M,18,Lacerations,False,16' shark,"M. Levine, GSAF",1862.05.05-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.05.05-Cummings.pdf,1862.05.05,1862.05.05 +5954,Circa 1862,Unprovoked,USA,Hawaii,Puna,Bathing,A chiefess,F,18,Ankle bitten,False,16' shark,Captain W. Young,1862.00.00.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.b-Hawaii.pdf,1862.00.00.b,1862.00.00.b +5955,1862,Unprovoked,JAPAN,Bonin Islands,Bonin Islands,Boat of a Hawaiian brig was stove in by whale,boat crew,M,18,fatal,True,16' shark,"Otago Witness, 10/28/1897",1862.00.00.a-BoninIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1862.00.00.a-BoninIslands.pdf,1862.00.00.a,1862.00.00.a +5956,10-Nov-1861,Unprovoked,SINGAPORE,unknown,unknown,Bathing alongside the American ship Thomas W. Sears,crew,M,18,fatal,True,16' shark,"The Argus, 11/15/1861",1861.11.10-Singapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.11.10-Singapore.pdf,1861.11.10,1861.11.10 +5957,Reported 25-Sep-1861,Unprovoked,CUBA,60 miles off Trinidad de Cuba,60 miles off Trinidad de Cuba,Deserting the bark Nazarene,Caughlin (A.K.A. James Dilano),M,18,Lacerations,False,16' shark,"New York Times, 10/5/1861",1861.09.25.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.09.25.R-deserter.pdf,1861.09.25.R,1861.09.25.R +5958,Mar-1861,Unprovoked,NEW ZEALAND,North Island,"Wynyard Wharf, Auckland Harbor",Bathing,a soldier,M,18,"""Severely bitten but recovered""",False,16' shark,P. Tichener,1861.03.00-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.03.00-soldier.pdf,1861.03.00,1861.03.00 +5959,Reported 12-Feb-1861,Unprovoked,EQUATORIAL GUINEA / CAMEROON,Fernando Po Island,Fernando Po Island,Swimming,William Looney,M,18,fatal,True,16' shark,"Daily Southern Cross, 2/12/1861",1861.02.12.R-Looney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.02.12.R-Looney.pdf,1861.02.12.R,1861.02.12.R +5960,Reported 15-Jan-1861,Unprovoked,AUSTRALIA,Queensland,Cleveland,Bathing,Dr. Lucas,M,18,Lacerations to fingers,False,16' shark,"Moreton Bay Courier, 1/15/1861",1861.01.15.R-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1861.01.15.R-Lucas.pdf,1861.01.15.R,1861.01.15.R +5961,26-Dec-1860,Unprovoked,AUSTRALIA,New South Wales,"The Domain, Sydney",Bathing,"The Argus, 12/31/1860",M,18,Lacerations to leg,False,16' shark,"The Argus, 12/31/1860",1860.12.26-TheDomain-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.12.26-TheDomain-Sydney.pdf,1860.12.26,1860.12.26 +5962,Oct-1860,Sea Disaster,CANADA,Nova Scotia,Cape Canso,Gloucester fishing schooner run down,2 males,M,18,fatal,True,16' shark,"Baltimore Sun, 10/1/1860",1860.10.00-Gloucester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.10.00-Gloucester.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.10.00-Gloucester.pdf,1860.10.00,1860.10.00 +5963,01-Aug-1860,Unprovoked,USA,New York,Brooklyn,Swimming,Jerry Duke,M,18,Toe severed,False,16' shark,"New York Times, 8/3/1860; Brooklyn News, 8/3/1860, p.8",1860.08.01-JerryDuke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.08.01-JerryDuke.pdf,1860.08.01,1860.08.01 +5964,Apr-1860,Unprovoked,NEW ZEALAND,North Island,"Princes Wharf, Auckland Harbor",Swimming,H. Cook,M,18,"Leg bitten, surgically amputated",False,16' shark,P.Tichener,1860.04.00.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.b-Cook.pdf,1860.04.00.b,1860.04.00.b +5965,Apr-1860,Unprovoked,NEW ZEALAND,North Island,"St. George's Bay, Auckland Harbor",Bathing,H. Bradley,M,18,fatal,True,"4' ""ground shark""",P. Tichener,1860.04.00.a-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.04.00.a-Bradley.pdf,1860.04.00.a,1860.04.00.a +5966,27-Mar-1860,Sea Disaster,COOK ISLANDS,Mangaia Island,Mangaia Island,43-ton schooner Irene capsized & sank,a Cook's Islander,M,18,fatal,True,"4' ""ground shark""","Brisbane Courier, 8/1/1866",1860.03.27-Clark'sIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.27-Clark'sIslander.pdf,1860.03.27,1860.03.27 +5967,11-Mar-1860,Unprovoked,BAHAMAS,New Providence Island,Nassau,"In boat being towed by ship, Karnak",a pilot,M,18,fatal,True,Remains recovered from shark caught days later,"New York Times, 3/26/1860",1860.03.11-KarnakPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1860.03.11-KarnakPilot.pdf,1860.03.11,1860.03.11 +5968,16-Mar-1859,Unprovoked,USA,Hawaii,Off Kawaihae,Fell overboard,John Luther,M,21,fatal,True,Remains recovered from shark caught days later,"Pacific Commercial Advertiser, 3/24/1850",1859.03.16-Luther.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1859.03.16-Luther.pdf,1859.03.16,1859.03.16 +5969,23-Aug-1858,Invalid,USA,New York ,"Staten Island, Richmond County",Swimming,Mr. Valdes & 2 males,M,21,Thought to have been taken by a shark/s. Bodies not recovered,False,Shark involvement prior to deaths unconfirmed,"Chicago Tribune, 8/28/1858",1858.08.23-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.23-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.23-StatenIsland.pdf,1858.08.23,1858.08.23 +5970,17-Aug-1858,Invalid,USA,New York ,"Staten Island, Richmond County",Swimming,male,M,21,Thought to have been taken by a shark/s. Body not recovered,False,Shark involvement prior to death unconfirmed,"Chicago Tribune, 8/28/1858",1858.08.17-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.17-StatenIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.08.17-StatenIsland.pdf,1858.08.17,1858.08.17 +5971,04-Apr-1858,Unprovoked,TOBAGO,Rocky Bay,Rocky Bay,Bathing,John Williams,M,21,"Leg bitten, surgically amputated",False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1858.04.04-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.04.04-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.04.04-Williams.pdf,1858.04.04,1858.04.04 +5972,14-Mar-1858,Unprovoked,AUSTRALIA,Victoria,Hobson Bay,Bathing,Adolphe Bollander,M,22,fatal,True,Shark involvement prior to death unconfirmed,"Moreton Bay Courier, 3/31/1858",1858.03.14-Bollander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.03.14-Bollander.pdf,1858.03.14,1858.03.14 +5973,Reported 14-Jan 1858,Unprovoked,USA,Hawaii,Hawaii,Swimming,Minor Hodgdon,M,22,fatal,True,Shark involvement prior to death unconfirmed,New York Times 3/14/1858,1858.01.14.R-Hodgdon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.14.R-Hodgdon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.14.R-Hodgdon.pdf,1858.01.14.R,1858.01.14.R +5974,Reported 09-Jan-1858,Unprovoked,TONGA,Vava'u,Vava'u,Jumped overboard while intoxicated,crewman from the Shepherdess,M,22,fatal,True,Shark involvement prior to death unconfirmed,"Sydney Morning Herald, 1/9/1858",1858.01.09.R-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1858.01.09.R-Tonga.pdf,1858.01.09.R,1858.01.09.R +5975,05-May-1857,Unprovoked,USA,Florida,"Cape Sable, Monroe County",Swimming,Private Dunn,M,22,fatal,True,Shark involvement prior to death unconfirmed,"The Buffalo Commercial Advertiser, 5//18/1857",1857.05.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1857.05.05-Dunn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1857.05.05-Dunn.pdf,1857.05.05,1857.05.05 +5976,Reported 25-Nov-1856,Unprovoked,FIJI,unknown,unknown,Swimming,a seaman,M,22,fatal,True,Shark involvement prior to death unconfirmed,"The Argus, 11/25/1856",1856.11.25.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.11.25.R-Fiji.pdf,1856.11.25.R,1856.11.25.R +5977,Reported 21-Jun-1856,Unprovoked,ENGLAND,Isle of Wight,Colwell Bay,Swimming,male,M,22,fatal,True,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1856.06.21.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.06.21.R-Isle-of-Wight.pdf,1856.06.21.R,1856.06.21.R +5978,06-Feb-1856,Unprovoked,AUSTRALIA,Victoria,Point Henry,Swimming,a seaman from the John and Lucy,M,17,Severe bite to thigh. Not known if he survived,UNKNOWN,Shark involvement prior to death unconfirmed,"The Argus, 2/8/1856",1856.02.06-Point-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1856.02.06-Point-Henry.pdf,1856.02.06,1856.02.06 +5979,11-Nov-1855,Unprovoked,AUSTRALIA,Victoria,Melbourne,Swimming,a seaman from the whaling brig Curlew,M,17,fatal,True,Shark involvement prior to death unconfirmed,"Maitland Mercury, 11/14/1855",1855.11.11-Curlew-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.11.11-Curlew-seaman.pdf,1855.11.11,1855.11.11 +5980,30-Sep-1855,Sea Disaster,USA,North Carolina,Cape Hatteras,ship William Penn grounded & broke apart,sailor,M,17,Foot bitten,False,Shark involvement prior to death unconfirmed,"NY Times, 10/12/1855",1855.09.30-WilliamPenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.09.30-WilliamPenn.pdf,1855.09.30,1855.09.30 +5981,Reported 09-Apr-1855,Unprovoked,AUSTRALIA,South Australia,Port Wakefield,Fell overboard from the Malacca,child,F,2½,fatal,True,Shark involvement prior to death unconfirmed,"The Argus, 4/9/1855",1855.04.09.R-Malacca-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.04.09.R-Malacca-child.pdf,1855.04.09.R,1855.04.09.R +5982,28-Mar-1855,Unprovoked,AUSTRALIA,South Australia,Port Wakefield,Fell overboard from the Sobella,Master Coleman,M,2½,fatal,True,Shark involvement prior to death unconfirmed,"The Register, 4/20/1926",1855.03.28-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.03.28-Coleman.pdf,1855.03.28,1855.03.28 +5983,Reported 12-Feb-1855,Unprovoked,SOLOMON ISLANDS,Makira-Ulawa Province,Makira Island (Formerly San Cristobal),Swimming ,male,M,2½,fatal,True,Shark involvement prior to death unconfirmed,"The Hobarton Mercury, 2/12/1855",1855.02.12.R-Native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.02.12.R-Native.pdf,1855.02.12.R,1855.02.12.R +5984,Circa 1855,Invalid,AUSTRALIA,New South Wales,Sydney Harbor,Swimming ,C.T. Clark,M,2½,"No injury & although reported as an attack, it was simply an encounter",False,Invalid,"Brighton Southern Cross, 2/13/1915",1855.00.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1855.00.00-Clark.pdf,1855.00.00,1855.00.00 +5985,08-Nov-1853,Unprovoked,AUSTRALIA,New South Wales,New South Wales,Swimming,John Peters,M,2½,Leg bitten,False,Invalid,"Maitland Mercury, 11/19/1853",1853.11.08-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.11.08-Peters.pdf,1853.11.08,1853.11.08 +5986,28-Sept-1853,Unprovoked,USA,North Carolina,"Morehead, Carteret County",Commercial Salvage Diving,Alfetto,M,2½,No injury. Copper breastplate & harness bitten,False,White shark,"C. Creswell, GSAF; Washington Post, 10/7/1883, p.2",1853.09.28-Alfetto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.09.28-Alfetto.pdf,1853.09.28,1853.09.28 +5987,Reported 13-Jul-1853,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,male,M,2½,fatal,True,Tiger shark (pregnant),Democratic Banner 8/5/1853,1853.07.13.R-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.07.13.R-Charleston.pdf,1853.07.13.R,1853.07.13.R +5988,29-Apr-1853,Unprovoked,GREECE,Corfu ,Corfu ,Swimming,Hanson,M,2½,Leg severed at knee,False,234-lb shark,"South Australian Register, 5/8/1854",1853.04.29-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.04.29-Hanson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.04.29-Hanson.pdf,1853.04.29,"1853,94.29" +5989,1853,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Fell into the water,"James Hexton, pilot",M,2½,fatal,True,234-lb shark,"Brisbane Courier, 1/28/1909",1853.00.00.d-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.d-Hexton.pdf,1853.00.00.d,1853.00.00.d +5990,Sep or Oct-1853,Unprovoked,USA,North Carolina,"Morehead, Carteret County",Hard hat diving,Mark Dare,M,2½,"No injury, copper breastplate punctured",False,White shark,"Fort Wayne Gazette, 1/24/1897",1853.00.00.c-MarkDare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.c-MarkDare.pdf,1853.00.00.c,1853.00.00.c +5991,1853 ,Invalid,USA,South Carolina,Off the Battery,He was fighting a shark when his boat capsized & he disappeared,a young man,M,2½, His gold watch was later found in a shark but death may have been due to drowning,False,Shark involvement prior to death unconfirmed,"W. H. Gregg, p.21 ",1853.00.00.b-battery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.b-battery.pdf,1853.00.00.b,1853.00.00.b +5992,1853 or 1854,Unprovoked,USA,Florida,"Near Fernandina Bar, Nassau County ",Knocked overboard,Captain George Jacob Hanscheldt,M,2½,fatal,True,Shark involvement prior to death unconfirmed,"W. H. Gregg, p.22 ",1853.00.00.a-Hanscheldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1853.00.00.a-Hanscheldt.pdf,1853.00.00.a,1853.00.00.a +5993,19-Dec-1852,Invalid,AUSTRALIA,New South Wales,"Clark's Island, Sydney Harbor",Swimming,Edward Graham,M,2½,Shark involvement prior to death was not confirmed,False,Shark involvement prior to death unconfirmed,"Maitland Mercury & Hunter River General Advertiser, 12/25/1952",1852.12.19-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.12.19-Graham.pdf,1852.12.19,1852.12.19 +5994,Reported 23-Oct-1852,Provoked,PACIFIC OCEAN,Between Australia & USA,Between Australia & USA,Fishing,William Stannard,M,2½,Foot bitten by hooked shark PROVOKED INCIDENT,False,Shark involvement prior to death unconfirmed,"Maitland Mercury, 10/23/1852",1852.10.23.R-Stannard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.23.R-Stannard.pdf,1852.10.23.R,1852.10.23.R +5995,Reported 09-Oct-1852,Unprovoked,AUSTRALIA,New South Wales,Coalcliff,Fell overboard,James Rogers,M,2½,fatal,True,Shark involvement prior to death unconfirmed,"Maitland Mercury, 10/09/1852",1852.10.09.R-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.10.09.R-Rogers.pdf,1852.10.09.R,1852.10.09.R +5996,07-Aug-1852,Unprovoked,TONGA,Tongatapu,Tongatapu,Fell overboard,Charles Weymouth,M,2½,fatal,True,Shark involvement prior to death unconfirmed,"Courier, 1/3/1853",1852.08.07-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.07-Weymouth.pdf,1852.08.07,1852.08.07 +5997,Aug-1852,Unprovoked,USA,Virginia,Norfolk,Swimming,a deserter from the U.S. Pennsylvania,M,2½,fatal,True,Shark involvement prior to death unconfirmed,"Dixon Telegraph, 8/14/1852",1852.08.00-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.08.00-Sailor.pdf,1852.08.00,1852.08.00 +5998,28-Jul-1952,Invalid,ATLANTIC OCEAN,unknown,unknown,Swimming,Karen Bredesen Stræte ,F,1,Death preceded shark involvement,False,Invalid,Norway Heritage,1852.07.28-Karen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.07.28-Karen.pdf,1852.07.28,1852.07.28 +5999,24-May-1852,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban Bay,Swimming from capsized boat,Mr. Messum's servant,M,1,fatal,True,Invalid,"M. Levine, GSAF; Natal Times, 6/4/1852",1852.05.24-Messum-servant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.05.24-Messum-servant.pdf,1852.05.24,1852.05.24 +6000,26-Feb-1852,Sea Disaster,SOUTH AFRICA,Western Cape Province,Danger Point,Wreck of the steamship Birkenhead,"D. Davies, pp.182-184; M. Levine, GSAF",M,1,fatal,True,White sharks,"D. Davies, pp.182-184; M. Levine, GSAF",1852.02.26-Birkenhead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.02.26-Birkenhead.pdf,1852.02.26,1852.02.26 +6001,"""Anniversary Day"" 22-Jan-1850 or 1852",Unprovoked,NEW ZEALAND,North Island,Wellington Harbor,Swimming,"Johnny Balmer, a soldier from the 65th Regiment",M,1,fatal,True,Said to involve a 6 m to 7.3 m [20' to 24'] shark,"Ref: H. Blake, Sixty Years in New Zealand, pp. 112-116 V. M. Coppleson (1962], page 247 ",1852.01.22-Balmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.01.22-Balmer.pdf,1852.01.22,1852.01.22 +6002,1852,Unprovoked,USA,South Carolina,"Mount Pleasant, Charleston County","Vessel capsized, wading ashore carrying an oar",Charles Chambers,M,1,fatal,True,Said to involve a 6 m to 7.3 m [20' to 24'] shark,"W. H. Gregg, p. 21",1852.00.00-Chambers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1852.00.00-Chambers.pdf,1852.00.00,1852.00.00 +6003,Reported 16-Jun-1851,Unprovoked,MEXICO,Oaxaca,Tehuantepec Harbor,Bathing,John H. Gray & another member of the Tehuantepec surveying party,M,1,fatal,True,Said to involve a 6 m to 7.3 m [20' to 24'] shark,"Daily Free Democrat (Milwaukee, WI) 6/16/1851",1851.06.16.R-JohnGray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.16.R-JohnGray.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.06.16.R-JohnGray.pdf,1851.06.16.R,1851.06.16.R +6004,Mar-1851,Unprovoked,USA,Hawaii,Honolulu Harbor,Swimming,James Kinney,M,1,fatal,True,Said to involve a 6 m to 7.3 m [20' to 24'] shark,"The Friend (Honolulu), 3/8/1851",1851.03.08.R-Kinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.03.08.R-Kinney.pdf,1851.03.08.R,1851.03.08.R +6005,1851,Unprovoked,USA,California,"San Francisco Bay (or San Leandro Bay), near cannery, Alameda County",Hard hat diving,William Cortigan,M,1,3 toes severed,False,18' shark,"The Perry Chief, 10/16/1875",1851.00.00-Cortigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1851.00.00-Cortigan.pdf,1851.00.00,1851.00.00 +6006,21-Oct-1850,Unprovoked,USA,Hawaii,Hawaii,Swimming after his hat,a sailor,M,1,fatal,True,18' shark,"Polynesian, 10/26/1850",1850.10.21-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.10.21-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.10.21-sailor.pdf,1850.10.21,1850.10.21 +6007,1850,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),"Granada, Granada Department",Bathing,"E. Squier, 1852, vol. 1",M,1,fatal,True,18' shark,"E. Squier, 1852, vol. 1",1850.00.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1850.00.00-LakeNicaragua.pdf,1850.00.00,1850.00.00 +6008,09-Dec-1849,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,Bathing,male,M,1,fatal,True,18' shark,"T.H. Huxley's Diary, 1935, pp.285-286; G.P. Whitley, p.259",1849.12.09-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.09-SydneyHarbour.pdf,1849.12.09,1849.12.09 +6009,01-Dec-1849,Unprovoked,AUSTRALIA,New South Wales,"Woolloomooloo, Sydney Harbor (Estuary)",Bathing,a sailor from the steamship Eagle,M,1,fatal,True,18' shark,"Moreton Bay Courier, 12/15/1849",1849.12.01-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.12.01-Sailor.pdf,1849.12.01,1849.12.01 +6010,04-Oct-1849,Unprovoked,PERU,Tumbez,Tumbez,Swimming,George Martin,M,1,fatal,True,18' shark,"Muncie Evening Press, 8/6/1913",1849.10.04-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.10.04-Martin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.10.04-Martin.pdf,1849.10.04,1849.10.04 +6011,19-Sep-1849,Unprovoked,AUSTRALIA,Victoria,Warrnambool,Swimming,a sailor from the schooner Brother,M,1,fatal,True,18' shark,"Maitland Mercury & Hunter River General Advertiser, 10/10/1849",1849.09.19-Brother-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.09.19-Brother-seaman.pdf,1849.09.19,1849.09.19 +6012,08-Jun-1849,Unprovoked,USA,Florida,"Pensacola, Escambia County",Attempting to rescue woman seized by shark,Mr. Mansfield,M,1,fatal,True,18' shark,"Adams Sentinel, 8/6/1849",1849.06.08.b-Mansfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.b-Mansfield.pdf,1849.06.08.b,1849.06.08.b +6013,08-Jun-1849,Unprovoked,USA,Florida,"Pensacola, Escambia County",Bathing,Mrs. Cracton,F,1,fatal,True,18' shark,"Adams Sentinel, 8/6/1849",1849.06.08.a-Cracton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.06.08.a-Cracton.pdf,1849.06.08.a,1849.06.08.a +6014,27-Jan-1849,Invalid,AUSTRALIA,New South Wales,Sydney,boat capsized,William Henry Elliott,M,1,Torso bitten but may have been postmortem,False,Shark involvement prior to death unconfirmed,"Maitland Mercury, 2/3/1849",1849.01.27-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1849.01.27-Elliot.pdf,1849.01.27,1849.01.27 +6015,31-Aug-1848,Unprovoked,USA,Maryland,Patapsco River,Swimming,William Haywood,M,15,Left leg severely bitten,False,Shark involvement prior to death unconfirmed,"Adams Sentinel, 9/4/1848",1848.08.31-Haywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-Haywood.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.08.31-Haywood.pdf,1848.08.31,1848.08.31 +6016,Reported 17-Jul-1848,Invalid,USA,Massachusetts,Cape Cod,Swimming,male,M,15,Human remains recovered from 4.9 m shark,False,Shark involvement prior to death unconfirmed,"New Orleans Crescent, 7/17/1858",1848.07.17.R-CapeCod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.17.R-CapeCod.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.17.R-CapeCod.pdf,1848.07.17.R,1848.07.17.R +6017,Jul-1848,Unprovoked,ENGLAND,Norfolk,Hunstanton,Standing,male,M,15,Shark struck him with its tail,False,Shark involvement prior to death unconfirmed,"C. Moore, citing R. Peirce",1848.07.00-Hunstanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1848.07.00-Hunstanton.pdf,1848.07.00,1848.07.00 +6018,30-Nov-1847,Unprovoked,AUSTRALIA,Queensland,Brisbane River,Swimming,James Stewart,M,15,Thigh & calf bitten,False,Shark involvement prior to death unconfirmed,"Moreton Bay Courier, 12.4/1847",1847.11.30-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.11.30-Stewart.pdf,1847.11.30,1847.11.30 +6019,10-Sep-1847,Unprovoked,USA,Massachusetts,"Chelsea Beach, Suffolk County",Wading,Amos Thompson,M,15,Lacerations to arm,False,Shark involvement prior to death unconfirmed,Louisville Daily Courier. 9/16/1847 ,1847.09.10-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.09.10-Thompson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.09.10-Thompson.pdf,1847.09.10,1847.09.10 +6020,19-Jul-1847,Unprovoked,GREECE,Corfu,Off the harbor wall at Mandrakina,Swimming,"William Mills, a British solider, 36th Regiment",M,19,fatal,True,Shark involvement prior to death unconfirmed,I. Fergusson; A. Buttigieg; M. Bardanis,1847.07.19-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.19-Mills.pdf,1847.07.19,1847.07.19 +6021,Reported 03-Jul-1847,Unprovoked,USA,Hawaii,Hawaii,Hilo,Diving,M,19,Head & arm bitten,False,Shark involvement prior to death unconfirmed,"Polynesian, 7/3/1847",1847.07.03.R-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.03.R-Hilo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.07.03.R-Hilo.pdf,1847.07.03.R,1847.07.03.R +6022,11-Mar-1847,Sea Disaster,AUSTRALIA,Queensland,Moreton Bay,Wreck of the Sovereign,Spicer,M,19,Foot severed,False,Shark involvement prior to death unconfirmed,"The Queenslander, 3/12/1921",1847.03.11-Spicer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.03.11-Spicer.pdf,1847.03.11,1847.03.11 +6023,12-Feb-1847,Sea Disaster,MEXICO,unknown,unknown,Wreck of the Tweed,"The Guardian, 3/26/1858",,19,fatal,True,Shark involvement prior to death unconfirmed,"The Guardian, 3/26/1858",1847.02.12-Tweed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.02.12-Tweed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.02.12-Tweed.pdf,1847.02.12,1847.02.12 +6024,Reported in 1847,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Wreck of the Tweed,a native,,19,Foot severed at ankle joint,False,Shark involvement prior to death unconfirmed,Narrative of the Voyage of HMS Rattlesnake 1846-1850,1847.00.00.c-HMS-Rattlesnake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.c-HMS-Rattlesnake.pdf,1847.00.00.c,1847.00.00.c +6025,1847,Invalid,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,a young sailor,M,19,"Disappeared, thought to have been taken by a shark",False,Shark involvement prior to death unconfirmed,"W.H. Gregg, pp. 21-22",1847.00.00.b-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.b-sailor.pdf,1847.00.00.b,1847.00.00.b +6026,Ca. 1847,Unprovoked,USA,South Carolina,South Carolina,Boating,adult,M,19,Hand severed,False,Shark involvement prior to death unconfirmed,"W.H. Greg, p.21",1847.00.00.a-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1847.00.00.a-SouthCarolina.pdf,1847.00.00.a,1847.00.00.a +6027,08-Dec-1846,Sea Disaster,MEXICO,Veracruz,Vera Cruz,Wreck of the USS Somers,"Report of the loss of the Somers, J.H.W.",M,19,fatal,True,Shark involvement prior to death unconfirmed,"Report of the loss of the Somers, J.H.W.",1846.12.08-Somers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.12.08-Somers.pdf,1846.12.08,1846.12.08 +6028,Reported 30-Sep-1846,Unprovoked,AFRICA,unknown,unknown,Jumped into river,male,M,19,fatal,True,Shark involvement prior to death unconfirmed,"Hartford Courant, 9/30/1846",1846.08.30.R-Marryatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.08.30.R-Marryatt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.08.30.R-Marryatt.pdf,1846.09.30.R,1846.09.30.R +6029,Reported 20-Aug-1846,Unprovoked,CUBA,Havana Province,Havana Harbor,Bathing,male,M,19,Leg severed,False,Shark involvement prior to death unconfirmed,"New York Tribune, 9/2/1846",1846.08.20.R-Havana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.08.20.R-Havana.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1846.08.20.R-Havana.pdf,1846.08.20.R,1846.08.20.R +6030,26-Dec-1845,Unprovoked,AUSTRALIA,New South Wales,Newcastle ,Fishing,John Williams,M,19,fatal,True,Shark involvement prior to death unconfirmed,The Maitland Mercury & Hunter River General Advertiser 11/18/1893,1845.12.26-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.12.26-Williams.pdf,1845.12.26,1845.12.26 +6031,04-Nov-1845,Unprovoked,MEXICO,Vera Cruz,Vera Cruz,Bathing,a soldier,M,19,fatal,True,Shark involvement prior to death unconfirmed,"New York Tribune, 12/15/1845",1845.11.04-VeraCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.11.04-VeraCruz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.11.04-VeraCruz.pdf,1845.11.04,1845.11.04 +6032,Reported 16-Sep-1845,Unprovoked,ENGLAND,unknown,unknown,Bathing,a school teacher,M,19,Leg severed,False,Shark involvement prior to death unconfirmed,C. Moore. GSAF,1845.09.16.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.16.R-England.pdf,1845.09.16.R,1845.09.16.R +6033,Reported 10-Sep-1845,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Seine netting,Nickerson,M,19,fatal,True,Shark involvement prior to death unconfirmed,"Tioga Eagle, 9/10/1845",1845.09.10.R-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.09.10.R-Nickerson.pdf,1845.09.10.R,1845.09.10.R +6034,Reported 31-Jul-1845,Unprovoked,USA,Florida,"Pensacola Bay, Escambia County",Fell overboard,a sailor from the U.S.S. Falmouth,M,19,fatal,True,Shark involvement prior to death unconfirmed,"Times-Picayune, 7/31/1845",1845.07.31.R-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.07.31.R-sailor.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.07.31.R-sailor.pdf,1845.07.31.R,1845.07.31.R +6035,Reported 1845,Unprovoked,SIERRA LEONE,unknown,unknown,Fell overboard,"""The Queen's Chaplain""",M,19,fatal,True,Shark involvement prior to death unconfirmed,Journal of an African Cruiser,1845.00.00.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1845.00.00.R-SierraLeone.pdf,1845.00.00.R,1845.00.00.R +6036,20-Jul-1844,Unprovoked,NAMIBIA,unknown,unknown,Boat capsized,a seaman from HMS Isis,M,19,fatal,True,Shark involvement prior to death unconfirmed,"Colonial Times, 5/24/1845",1844.07.20-Isis-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.20-Isis-seaman.pdf,1844.07.20.,1844.07.20. +6037,1844.07.16.R,Unprovoked,ALGERIA,Cape Matifou,Cape Matifou,Swimming,male,M,19,fatal,True,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1844.07.16.R-Algeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.07.16.R-Algeria.pdf,1844.07.16.R,1844.07.16.R +6038,24-May-1844,Unprovoked,Coast of AFRICA,Island of St. Thomas,Island of St. Thomas,Fell overboard,"Martin, coxswain of the USS Saratoga",M,19,fatal,True,Shark involvement prior to death unconfirmed,"Tioga Eagle, 7/31/1844 ",1844.05.24-Saratoga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.05.24-Saratoga.pdf,1844.05.24,1844.05.24 +6039,1844,Unprovoked,MADAGASCAR,unknown,unknown,Fell overboard,Mr. Andrews,M,19,fatal,True,Shark involvement prior to death unconfirmed,GSAF,1844.00.00-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1844.00.00-Andrews.pdf,1844.00.00,1844.00.00 +6040,13-Jul-1842,Unprovoked,USA,New Jersey,"Absecon, Atlantic County",Swimming,male,M,15,Lacerations to leg,False,Shark involvement prior to death unconfirmed,"Brooklyn Evening Star, 7/14/1842 ",1842.07.13-Absecom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.13-Absecom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.13-Absecom.pdf,1842.07.13,1842.07.13 +6041,06-Jul-1842,Provoked,USA,New Jersey,"Absecon, Atlantic County",Harassing a shark,male,,15,Lacerations to leg PROVOKED INCIDENT,False,Shark involvement prior to death unconfirmed,"New York Evening Post, 7/11/1842",1842.07.06-Absecon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.07.06-Absecon.pdf,1842.07.06,1842.07.06 +6042,1842,Unprovoked,INDIA,Tamil Nadu, Chennai (formerly Madras),Washed off catamaran in the surf,male,M,7 or 8,fatal,True,Shark involvement prior to death unconfirmed,"Tioga Eagle, 10/26/1842",1842.00.00.b-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.b-Hindoo.pdf,1842.00.00.b,1842.00.00.b +6043,1842,Unprovoked,AUSTRALIA,New South Wales,Sydney Harbor,"Unknown, but it was said to be the ""First known attack in Sydney Harbour""",male,M,7 or 8,Recovered,False,Shark involvement prior to death unconfirmed,"V.M. Coppleson (1933), p.450",1842.00.00.a-1st-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1842.00.00.a-1st-SydneyHarbour.pdf,1842.00.00.a,1842.00.00.a +6044,27-Mar-1841,Unprovoked,AUSTRALIA,New South Wales,"Cockatoo Island, Sydney",Bathing,Andrew Goggin,M,7 or 8,fatal,True,Shark involvement prior to death unconfirmed,"Sydney Gazette, 4/27/1841",1841.03.27-Goggin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1841.03.27-Goggin.pdf,1841.03.27,1841.03.27 +6045,Dec-1840,Unprovoked,AUSTRALIA,New South Wales,"Off Domain, Sydney Harbor",Swimming,male,M,7 or 8,fatal,True,Shark involvement prior to death unconfirmed,"G.P. Whitley, p.259; L. Schultz & M. Malin, p.523",1840.12.00 - Domain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.12.00 - Domain.pdf,1840.12.00,1840.12.00 +6046,Reported 18-Sep-1840,Unprovoked,FIJI,Viti Levu Island,Rewa ,Swimming,male,M,7 or 8,Arms & legs severed,False,Shark involvement prior to death unconfirmed,"Hobart Town Courier, 9/18/1840",1840.09.18.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.09.18.R-Fiji.pdf,1840.09.18.R,1840.09.18.R +6047,Reported 22-Jul-1840,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Accidentally thrown overboard & treading water while awaiting rescue,crew member of a pilot boat,M,7 or 8,fatal,True,Said to be a 7.6 m [25'] shark,"C. Creswell, GSAF",1840.07.22.R-pilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.07.22.R-pilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.07.22.R-pilot.pdf,1840.07.22.R,1840.07.22.R +6048,Reported 09-Apr-1840,Unprovoked,WEST INDIES,unknown,unknown,Swimming,"""A"" ",M,7 or 8,fatal,True,Said to be a 7.6 m [25'] shark,"Long-Island Star, 4/9/1840",1840.04.09.R-A.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.04.09.R-A.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.04.09.R-A.pdf,1840.04.09.R,1840.04.09.R +6049,Feb-1840,Boat,AUSTRALIA,Tasmania,George Town Cove,Sailing,A dinghy,,7 or 8,"No injury to occupant, shark seized stern post",False,Said to be a 7.6 m [25'] shark,"C. Black, GSAF",1840.02.00-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1840.02.00-dinghy.pdf,1840.02.00,1840.02.00 +6050,17-Nov-1839,Invalid,AUSTRALIA,New South Wales,New South Wales,Sailing,Mr.Johnson (male),M,7 or 8,"""Drowned, 2 days later his head was bitten off by a shark""",False,Said to be a 7.6 m [25'] shark,"H.D. Baldridge, p.146",1839.11.17-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.11.17-Johnson.pdf,1839.11.17,1839.11.17 +6051,14-Apr-1839,Unprovoked,CUBA,Matanzas Province (north coast),Matanzas,Sitting on gunwale of boat,sailor,M,7 or 8,fatal,True,"""a large shark""","Daily Courant, 5/31/1839",1839.04.14-Matanzas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.04.14-Matanzas.pdf,1839.04.14,1839.04.14 +6052,1839/1840,Unprovoked,AUSTRALIA,South Australia,"Horn Point, Lady's Bay",Attempting to rescue crew after whale upset their boat,Captain Wishart of the whaler Wallaby,M,7 or 8,fatal,True,"""a large shark""","G. Dunderdale, The Book of the Bush",1839.00.00.b-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.b-Wishart.pdf,1839.00.00.b,1839.00.00.b +6053,Ca. 1839,Unprovoked,FIJI,Viti Levu Island,Rewa ,Attempting to rescue crew after whale upset their boat,"Joeli Bulu, missionary",M,29,Survived,False,"""a large shark""",J. Garrett; T. Kanailagi,1839.00.00.a-Pulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1839.00.00.a-Pulu.pdf,1839.00.00.a,1839.00.00.a +6054,09-Sep-1837,Unprovoked,USA,South Carolina,"Magwoods Wharf, Charleston Harbor, Charleston County",Bathing,a young boy from the Plymouth,M,29,Right foot bittten,False,"""a large shark""","C. Creswell, GSAF; J. Hair, pp.65-66",1837.09.03-Plymouth-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.09.03-Plymouth-boy.pdf,1837.09.03,1837.09.03 +6055,Jul-1837,Unprovoked,USA,New York,New York,Bathing,Alexander Barony,M,29,Leg injured,False,"""a large shark""","Public Ledger, 7.13/1837",1837.07.00-Barony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.07.00-Barony.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.07.00-Barony.pdf,1837.07.00,1837.07.00 +6056,17-Jan-1837,Unprovoked,AUSTRALIA,New South Wales,Macleay River,Washing his feet,Alfred Australia Howe,M,12,fatal,True,"""a large shark""","Gazette (Sydney) 1/31/1837; Proc. Royal Aust. Hist. Scty, I, Part 2, 1924; G.P. Whitley, p.14; Sharpe, p. 87",1837.01.17-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.01.17-Howe.pdf,1837.01.17,1837.01.17 +6057,Ca. 1837,Invalid,USA,South Carolina,“Southern Wharf”,Washing his feet,"adult male, a sailor",M,12,7.6 m [25'] shark caught contained human remains,False,Shark involvement prior to death unconfirmed,W. H. Gregg,1837.00.00.a-remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1837.00.00.a-remains.pdf,1837.00.00.a,1837.00.00.a +6058,Reported 19-Aug-1836,Unprovoked,ENGLAND,Cumberland,Whitehaven,Swimming,a boy,M,12,fatal,True,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1835.08.19.R-Whitehaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.08.19.R-Whitehaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.08.19.R-Whitehaven.pdf,1836.08.19.R,1836.08.19.R +6059,1836.07.26.R,Invalid,SPAIN,unknown,unknown,Swimming,"C. Moore, GSAF",,12,"Shark caught, contained human remains",False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1836.07.26.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.07.26.R-Spain.pdf,1836.07.26.R,1836.07.26.R +6060,1836.00.,Unprovoked,AUSTRALIA,South Australia,South Australia,Swimming,"A. Sharpe, p.119",,12,"No details, it was the year the first settlers came ashore in Holdfast Bay, Port Pirie",UNKNOWN,Shark involvement prior to death unconfirmed,"A. Sharpe, p.119",1836.00.00.a-HoldfastBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1836.00.00.a-HoldfastBay.pdf,1836.00.00.a,1836.00.00.a +6061,Reported 21-Feb-1835,Unprovoked,VANUATU,Sanma Province,"Bay of Yago, Espiritu Santo Island",Bathing,John McKeig,M,12,fatal,True,Shark involvement prior to death unconfirmed,"Sydney Gazette, 2/21/1835",1835.02.21.R-McKeig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.02.21.R-McKeig.pdf,1835.02.21.R,1835.02.21.R +6062,06-Jan-1835,Unprovoked,TASMAN SEA,35º39 : 165º8',Alongside the whaler Marianne,Hooking into a whale,male,M,12,"""Savagely bitten"" but apparently survived",False,Shark involvement prior to death unconfirmed,"G.P. Whitley, p. 259",1835.01.06-Whaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1835.01.06-Whaler.pdf,1835.01.06,1835.01.06 +6063,Reported 15-Jul-1834,Unprovoked,FRENCH POLYNESIA,Society Islands,Tahiti,Swimming,Kaugatava Orurutm,F,12,fatal,True,Reported to involve a hammerhead shark,"Republican Banner, 7/15/1834",1834.07.15.R-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1834.07.15.R-Tahiti.pdf,1834.07.15.R,1834.07.15.R +6064,04-Jun-1832,Unprovoked,AUSTRALIA,New South Wales,"South Head, Sydney",Fishing,Aboriginal female,F,12,Leg severed,False,Reported to involve a hammerhead shark,"Sydney Herald, 6/11/1832",1832.06.04-AboriginalWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.06.04-AboriginalWoman.pdf,1832.06.04,1832.06.04 +6065,Reported 23-Jan-1832,Unprovoked,AUSTRALIA,New South Wales,Sydney,Bathing,male,M,12,Laceration to leg,False,Reported to involve a hammerhead shark,"Sydney Herald, 1/23/1832",1832.01.23.R-Wilshire-slaughter-house.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1832.01.23.R-Wilshire-slaughter-house.pdf,1832.01.23.R,1832.01.23.R +6066,24-Aug-1831,Boat,USA,CUBA,Near Havana,American schooner Orator capsized ,crew x 2,M,12,fatal,True,Reported to involve a hammerhead shark,"New York Evening Post, 9/14/1831",1831.08.24-Orator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.08.24-Orator.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.08.24-Orator.pdf,1831.08.24,1831.08.24 +6067,Reported 22- Jan-1831,Invalid,AUSTRALIA,Tasmania,Hobart,"Boat capsized, clinging to line",Robert Dudlow,M,12,"Drowned, no shark involvement",False,Invalid,"C. Black, GSAF; Sydney Gazette, 1/22/1831",1831.01.22.R-Dudlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1831.01.22.R-Dudlow.pdf,1831.01.22.R,1831.01.22.R +6068,26-Jul-1830,Unprovoked,USA,Massachusetts,"Swampscott, Essex County","Fishing from dory, shark upset boat & he fell into the water",Joseph Blaney,M,52,fatal,True,Invalid,"Huron Sun, 8/3/1830",1830.07.26-JosephBlaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.26-JosephBlaney.pdf,1830.07.26,1830.07.26 +6069,Reported 02-Jul-1830,Unprovoked,INDIA,Tamil Nadu,Madras,Washing a dog,male,M,52,fatal,True,Invalid,"Madras Courier, 7/2/1830",1830.07.02.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.07.02.R-Madras.pdf,1830.07.02.R,1830.07.02.R +6070,30-Apr-1830,Unprovoked,INDIA,Tamil Nadu,St. Thomé,Bathing,Ensign Bromwick,M,52,fatal,True,Invalid,"Madras Gazette, 5/1/1830",1830.04.30-Bromwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1830.04.30-Bromwick.pdf,1830.04.30,1830.04.30 +6071,Reported 03-Jul-1829,Unprovoked,SIERRA LEONE,Western Area,Western Area,Bathing,Thomas Cargill,M,52,Both hands severed,False,Invalid,"Hagerstown Mail, 7/3/1829",1829.07.03.R-Cargill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.07.03.R-Cargill.pdf,1829.07.03.R,1829.07.03.R +6072,10-Jun-1829,Unprovoked,USA,New Jersey,"Sandy Hook Bay, Highlands, Monmouth County",Fell overboard from the ship Gem,male,M,52,fatal,True,Invalid,"The Evening Post, 6/12/1829",1829.06.10-Gem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.06.10-Gem.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.06.10-Gem.pdf,1829.06.10,1829.06.10 +6073,1829,Sea Disaster,CARIBBEAN SEA,Between St. Bart's and Saba,Between St. Bart's and Saba,Wreck of the schooner Driver,Ned & Pawn,M,52,fatal,True,Invalid,"The Times, 12/14/1829",1829.00.00-Ned-Pawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1829.00.00-Ned-Pawn.pdf,1829.00.00,1829.00.00 +6074,28-Sep-1828,Unprovoked,SIERRA LEONE,Western Area,"River Sierra Leone, 35 miles upriver from Freetown","British ship, Britannia, was loading lumber. He was bathing","Thomas Corrigle, an apprentice from the ship",M,17,"Left arm severed 2.5"" from elbow, groin, abdomen, right forearm & hand lacerated, flesh removed from thigh, baring femur. Both arms surgically amputated: left arm above elbow, right arm above wrist. Survived",False,Invalid,Account by J. Boyle,1828.09.28-Corrigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.09.28-Corrigle.pdf,1828.09.28,1828.09.28 +6075,1828,Unprovoked,USA,Hawaii,"Uo, Lahaina, Maui",Surfing,Male,M,17,fatal,True,Invalid,"J. Borg, p.68; L. Taylor (1993), pp.94-95",1828.00.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1828.00.00-male.pdf,1828.00.00,1828.00.00 +6076,Jun-1827,Unprovoked,SIERRA LEONE,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"A boy, one of the crew of the ship Thomas Gelston",M,17,The boy's foot was bitten,False,Invalid,Edinburgh Advertiser. 9/12/1828,1827.06.00.b-boy-crew-Gelston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.b-boy-crew-Gelston.pdf,1827.06.00.b,1827.06.00.b +6077,Jun-1827,Unprovoked,SIERRA LEONE,Western Area ,Tombo Island in the Sierra Leone River,Swimming,"William Davis, of the ship Thomas Gelston",M,17,Davis' leg was severed,False,Invalid,Edinburgh Advertiser. 9/12/1828,1827.06.00.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.06.00.a-Davis.pdf,1827.06.00.a,1827.06.00.a +6078,1827,Unprovoked,EGYPT,Alexandria,Alexandria,Swimming,Two men,M,17,fatal,True,Invalid,"C. Moore, GSAF",1827.00.00-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1827.00.00-Alexandria.pdf,1827.00.00,1827.00.00 +6079,Dec-1826,Unprovoked,BRAZIL,Paraiba,Paraiba,Swimming,a seaman from the ship Beverly,M,17,Leg severed,False,Invalid,Book of the Ocean,1826.12.00-seaman-Beverly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.12.00-seaman-Beverly.pdf,1826.12.00,1826.12.00 +6080,Ca. Nov-1826,Unprovoked,GHANA,Cape Coast,Cape Coast,Bathing,a seaman from HM Redwing,M,17,fatal,True,Invalid,"Sydney Gazette and New South Wales Advertiser, 7/25/1827 ",1826.11.00-seaman-Redwing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.11.00-seaman-Redwing.pdf,1826.11.00,1826.11.00 +6081,28-Aug-1826,Sea Disaster,CUBA,unknown,unknown,HBM Magpie foundered in a squall,Lieutenant Edward Smith,M,17,fatal,True,Invalid,Edinburgh Advertiser. 10/20/1826,1826.08.28-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.28-Smith.pdf,1826.08.28,1826.08.28 +6082,Reported 15-Aug-1826,Unprovoked,ENGLAND,Cumberland,Whitehaven,Bathing,child,,17,fatal,True,Invalid,"The Times (London), 8/15/1826",1826.08.15.R-Whitehaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.15.R-Whitehaven.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.08.15.R-Whitehaven.pdf,1826.08.15.R,1826.08.15.R +6083,Reported 20-May-1826,Unprovoked,JAMAICA,unknown,unknown,Jumped overboard,Thomas Loring,M,17,fatal,True,Invalid,"The Times, 7/19/1826",1826.05.20.R-Loring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.05.20.R-Loring.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1826.05.20.R-Loring.pdf,1826.05.20.R,1826.05.20.R +6084,1820s,Unprovoked,AUSTRALIA,Tasmania,"Sweet Water Point, Pitt Water",Swimming,"""Amphibious Jack"" male",M,17,fatal,True,Invalid,"C. Black, GSAF, G.T. Lloyd, pp.79-81; C. Black pp. 142-147",1825.00.00.b-AmphibiousJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.b-AmphibiousJack.pdf,1825.00.00.b,1825.00.00.b +6085,Ca . 1825,Invalid,AUSTRALIA,Western Australia,South Bruny Island,Swimming,Nelson,M,17,"Arms severed, but he survived",False,Invalid,"C. Black, GSAF",1825.00.00.a-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1825.00.00.a-Nelson.pdf,1825.00.00,1825.00.00 +6086,Reported 30-Dec-1823,Invalid,JAMAICA,unknown,unknown,Swimming,male,,17,Human remains found in shark,False,Shark involvement prior to death unconfirmed,male,1823.12.30.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1823.12.30.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1823.12.30.R-Jamaica.pdf,1823.12.30.R,1823.12.30.R +6087,15-Apr-1822,Unprovoked,NIGERIA,Rivers State,Bonny River,Swimming,slaves,,17,fatal,True,Shark involvement prior to death unconfirmed,"Times of London, 8/5/1822, p. 2",1822.04.15-Slaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1822.04.15-Slaver.pdf,1822.04.15,1822.04.15 +6088,Reported 08-Jul-1819,Invalid,SPAIN,Cadiz,Cadiz,Swimming,male,M,17,No injury / No attack,False,Invalid,"C. Moore, GSAF",1819.07.08.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08.R-Cadiz.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1819.07.08-Cadiz.pdf,1819.07.08.R,1819.07.08.R +6089,Reported 22-May-1818,Invalid,NORWAY,Herøy,Herøy,Swimming,male,M,17,Probable drowning ,False,Shark involvement prior to death unconfirmed,"C. Moore, GSAF",1818.05.22.R-Norway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1818.05.22.R-Norway.pdf,1818.05.22.R,1818.05.22.R +6090,24-Jun-1817,Unprovoked,USA,South Carolina,"Charleston Harbor, Charleston County",Swimming,Jemmy,M,17,fatal,True,Shark involvement prior to death unconfirmed,"The Times, 6/25/1817",1817.06.24-Jemmy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.24-Jemmy.pdf,1817.06.24,1817.06.24 +6091,15-Jun-1817,Unprovoked,INDIA,Maharashtra,Bombay (now Mumbai),Swimming,Charles Anderson,M,17,fatal,True,Shark involvement prior to death unconfirmed,Edinburgh Advertiser. 2/3/1818,1817.06.15-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.06.15-Anderson.pdf,1817.06.15,1817.06.15 +6092,11-May-1817,Unprovoked,SRI LANKA,Western Province,Colombo,Swimming,William May,M,22,fatal,True,Shark involvement prior to death unconfirmed,Edinburgh Advertiser. 11/4/1817; R. DeSilva,1817.05.11-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.05.11-May.pdf,1817.05.11,1817.05.11 +6093,22-Feb-1817,Unprovoked,SRI LANKA,Gulf of Mannar,Gulf of Mannar,Conch diver,male,M,22,Abdomen bitten,False,Shark involvement prior to death unconfirmed,J. Kennedy,1817.02.22-Mannar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1817.02.22-Mannar.pdf,1817.02.22,1817.02.22 +6094,Reported 03-Sept-1816,Unprovoked,USA,Rhode Island,Bristol Harbor,Swimming,male,M,22,fatal,True,Shark involvement prior to death unconfirmed,"Connecticut Courant, 9/3/1816",1816.09.03.R-Rhode-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1816.09.03.R-Rhode-Island.pdf,1816.09.03.R,1816.09.03.R +6095,October 1815,Unprovoked,TOBAGO,Scarborough Bay,Scarborough Bay,Bathing,males x 4,M,22,fatal,True,Shark involvement prior to death unconfirmed,"C.Moore, GSAF",1815.10.00-Tobago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1815.10.00-Tobago.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1815.10.00-Tobago.pdf,1815.10.00,1815.10.00 +6096,May 1812,Unprovoked,ENGLAND,Devon,Mill Bay,Swimming,soldier from the Lancashire militia,M,22,Both legs injured,False,Thought to involve a porbeagle or mako shark,"C. Moore, GSAF",1812.07.00-Mill-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1812.07.00-Mill-Bay.pdf,1812.07.00,1812.07.00 +6097,15-Sep-1810,Unprovoked,USA,South Carolina,Charleston,Fell into the water,male,M,22,fatal,True,Thought to involve a porbeagle or mako shark,"Hartford Courant, 10/3/1810",1810.09.15-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1810.09.15-Charleston.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1810.09.15-Charleston.pdf,1810.09.15,1810.09.15 +6098,Reported 25-Dec-1808,Unprovoked,JAMAICA,Port Royal Harbour,Port Royal Harbour,Swimming,male,M,22,fatal,True,Thought to involve a porbeagle or mako shark,"The Observer, 12/25/1808",1808.12.25.R-PortRoyal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1808.12.25.R-PortRoyal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1808.12.25.R-PortRoyal.pdf,1808.12.25.R,1808.12.25.R +6099,Reported 01-May-1808,Sea Disaster,ANTIGUA,Falmouth Harbour,Falmouth Harbour,Swimming,"London Observer, 5/1/1808",,22,Probable drowning & scavenging,False,Thought to involve a porbeagle or mako shark,"London Observer, 5/1/1808",1808.05.01.R-Antigua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1808.05.01.R-Antigua.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1808.05.01.R-Antigua.pdf,1808.05.01.R,1808.06.01.R +6100,07-Feb-1808,Unprovoked,INDIA,Hooghly River,Hooghly River,Bathing,male,M,22,fatal,True,Thought to involve a porbeagle or mako shark,"The Observer, 2/7/1808",1808.02.07.R-Hoogley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1808.02.07.R-Hoogley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1808.02.07.R-Hoogley.pdf,1808.02.07.R,1808.02.07.R +6101,12-Jan-1807,Unprovoked,AUSTRALIA,New South Wales,"Cockle Bay, Sydney Harbour",Bathing,male,M,22,Survived,False,Thought to involve a porbeagle or mako shark,"J. Green, p.31",1807.01.12-Cockle-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1807.01.12-Cockle-Bay.pdf,1807.01.12,1807.01.12 +6102,Aug-24-1806,Sea Disaster,USA,unknown,unknown,Bathing,Crew of the schooner Mary,M,22,Shark scavenged on the dead sailors,False,Thought to involve a porbeagle or mako shark,"Evening Post, 9/6/1806",1806.04.24-crew-of-the-Mary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1806.04.24-crew-of-the-Mary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1806.04.24-crew-of-the-Mary.pdf,1806.04.24,1806.04.24 +6103,Sep-1805,Invalid,USA,New York,"Sag Harbor, Suffolk County",Bathing,S.L. Mitchill (1814),M,22, human remains (male) found in shark’s gut,False,Shark involvement prior to death unconfirmed,S.L. Mitchill (1814),1805.09.00-NY.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1805.09.00-NY.pdf,1805.09.00,1805.09.00 +6104,Reported 26-Feb-1804,Boat,AUSTRALIA,New South Wales,"Georges Head, off Port Jackson",Bathing,boat,,22,No injury to occupants,False,Shark involvement prior to death unconfirmed," Sydney Gazette, 2/26/1804 ",1804.02.26-boat-GeorgesHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1804.02.26-boat-GeorgesHead.pdf,1804.02.26.R,1804.02.26.R +6105,May-17-1803,Sea Disaster,USA,South Carolina,Off Charleston,Bathing,Captain Jones,M,22,No injury,False,Shark involvement prior to death unconfirmed,"Evening Post, 6/13/1803",1803.05.17-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.05.17-Jones.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.05.17-Jones.pdf,1803.05.17,1803.05.17 +6106,Mar-1803,Unprovoked,AUSTRALIA,Western Australia,"Hamelin Harbour, at Faure Island",Bathing,M. Lefevre & a sailor (rescuer),M,22,Shark knocked him down & tore clothing of the rescuer,False,Shark involvement prior to death unconfirmed,"F. Peron ref in G.P. Whitley (Fishes of Australia), p.13 ",1803.03.00-Lefevre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1803.03.00-Lefevre.pdf,1803.03.00,1803.03.00 +6107,Reported Apr-13-1802,Unprovoked,INDIA,unknown,unknown,Bathing,Evening Post (New York) 4/13/1802,,22,fatal,True,Shark involvement prior to death unconfirmed,Evening Post (New York) 4/13/1802,1802.04.13.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1802.04.13.R-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1802.04.13.R-India.pdf,1802.04.13.R,1802.04.13.R +6108,1800,Unprovoked,SEYCHELLES,St. Anne,St. Anne,a corsair's boat was overturned,V. C. Harvey-Brain,F,22,fatal,True,Shark involvement prior to death unconfirmed,V. C. Harvey-Brain,1800.00.00-Corsair-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1800.00.00-Corsair-boat.pdf,1800.00.00,1800.00.00 +6109,12-Sep-1792,Provoked,ENGLAND,On the Thames River,On the Thames River,Fishing,male,M,22,fatal,True,Shark involvement prior to death unconfirmed,"The Waterford Herald, 9/15/1792",1792.09.12-Thames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1792.09.12-Thames.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1792.09.12-Thames.pdf,1792.09.12,1792.09.12 +6110,1791,Unprovoked,AUSTRALIA,New South Wales,Port Jackson,Fishing,"female, an Australian aboriginal",F,22,fatal,True,Shark involvement prior to death unconfirmed,"G.P. Whitley; D. Baldridge, p.162",1791.00.00-aboriginal woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1791.00.00-aboriginal woman.pdf,1791.00.00,1791.00.00 +6111,10-May-1788,Boat,AUSTRALIA,New South Wales,Sydney Harbor,Fishing,boat,,22,"No injury to occupants, shark bit oar and rudder",False,Shark involvement prior to death unconfirmed,"G.P. Whitley citing J. Cobley, Sydney Cove, p. 138",1788.05.10-Sydney,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney,http://sharkattackfile.net/spreadsheets/pdf_directory/1788.05.10-Sydney,1788.05.10,1788.05.10 +6112,05-Jul-1787,Unprovoked,unknown,St Helena,Landing Place,Swimming,Private Isaac Hicksled,M,22,fatal,True,Shark involvement prior to death unconfirmed,"H.R. Janisch (1885), Extracts from the St. Helena Archives",1787.07.05-Hicksled.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1787.07.05-Hicksled.pdf,1787.07.05,1787.07.05 +6113,Reported 10-Aug-1786,Unprovoked,BARBADOS,unknown,unknown,Washing himself,a sailor from the York Merchant,M,22,fatal,True,Shark involvement prior to death unconfirmed,"Belfast Evening Post, 8/10/1786",1786.08.10.R-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1786.08.10.R-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1786.08.10.R-Barbados.pdf,1786.08.10.R,1786.08.10.R +6114,Reported 26-Sep-1785,Unprovoked,ENGLAND,Sussex,Brighton,Washing himself,"C. Moore, GSAF",M,22,fatal,True,Tiger shark?,"C. Moore, GSAF",1785.09.26.R-Brighton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1785.09.26.R-Brighton.pdf,1785.09.26.R,1785.09.26.R +6115,12-Dec-1784,Unprovoked,JAMAICA,Kingston,Kingston,Swimming,Richard Page,M,22,fatal,True,Tiger shark?,"The Pennsylvaia Gazette, 3/16/1785",1784.12.12-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1784.12.12-Page.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1784.12.12-Page.pdf,1784.12.12,1784.12.12 +6116,02-Mar-1783,Sea Disaster,MARTINIQUE,Foundering of the privateer Holker,Foundering of the privateer Holker,Swimming,"C.Moore, GSAF",M,22,fatal,True,Tiger shark?,"C.Moore, GSAF",1783.03.02-Martinique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1783.03.02-Martinique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1783.03.02-Martinique.pdf,1783.03.02,1783.03.02 +6117,08-Aug-1780,Unprovoked,USA,Florida,"Pensacola Harbor, Escambia County",Swimming,Joseph Feron,M,22,fatal,True,Tiger shark?,"C.Moore, GSAF",1780.08.08-Feron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1780.08.08-Feron.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1780.08.08-Feron.pdf,1780.08.08,1780.08.08 +6118,1779,Unprovoked,USA,Hawaii,"Maliu, Hawai'i",Surfing,Nu'u-anu-pa'a hu,M,young,fatal,True,Tiger shark?,"G.H. Balazs; J. Borg, p.68; L. Taylor (1993), pp.94-95",1779.00.00-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1779.00.00-Hawaii.pdf,1779.00.00,1779.00.00 +6119,Reported 1776,Unprovoked,GUINEA,unknown,unknown,Murder,African slave,M,young,fatal,True,Tiger shark?,T. Pennant,1776.00.00.R-Slave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00.R-Slave.pdf,1776.00.00.R,1776.00.00.R +6120,1776,Boat,GREENLAND,unknown,unknown,Murder,Occupants of skin boats,,young,fatal,True,White sharks,T. Pennant,1776.00.00-Greenland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1776.00.00-Greenland.pdf,1776.00.00.b,1776.00.00.b +6121,Reported 12-Jul-1771,Unprovoked,USA,Damiscotte,Damiscotte,Fishing,male,M,young,fatal,True,White sharks,"C. Moore, GSAF",1771.07.12.R-Damiscotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1771.07.12.R-Damiscotte.pdf,1771.07.12.R,1771.07.12.R +6122,1767,Invalid,FRANCE,Côte d'Azur ,St. Tropez,Bathing,Samuel Matthews,M,young,Lacerations to arm & leg,False,Description of shark does not ring true,Samuel Matthews,1767.00.00-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1767.00.00-Matthews.pdf,1767.00.00,1767.00.00 +6123,1764,Unprovoked,SPAIN,Guadalquivir River,Guadalquivir River,Swimming,male,M,young,fatal,True,Description of shark does not ring true,"C. Moore, GSAF",1764.00.00-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1764.00.00-Spain.pdf,1764.00.00,1764.00.00 +6124,1758,Unprovoked,MEDITERRANEAN SEA,unknown,unknown,"Fell overboard from a frigate & was swallowed by a shark. The captain fired a gun at the shark, and ""the creature cast the man out of his throat.""",sailor,M,young,"""He was taken up alive and but little injured."" ",False,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.",A.M. Hodgkin,1758.00.00-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1758.00.00-Mediterranean.pdf,1758.00.00,1758.00.00 +6125,Reported 27-Oct-1753,Unprovoked,JAMAICA,Kingston Harbor,Kingston Harbor,Fell overboard,male,M,young,fatal,True,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.","Maryland Gazette, 1/31/1754",1753.10.27.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1753.10.27.R-Jamaica.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1753.10.27.R-Jamaica.pdf,1753.10.27.R,1753.10.27.R +6126,27-Jul-1751,Unprovoked,USA,Massachusetts,Massachusetts,Swimming,male,M,young,fatal,True,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.","Pennsylvania Gazette, 8/15/1751",1751.07.27-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1751.07.27-Massachusetts.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1751.07.27-Massachusetts.pdf,1751.07.27,1751.07.27 +6127,1749,Unprovoked,CUBA,Havana Province,Havana Harbor,Swimming,Brook Watson,M,14,"Right leg severed at knee. In 1796 he became Lord Mayor of London. In 1778 he commissioned American artist, John Singleton Copley, to paint the incident: Watson and the Shark",False,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.",GSAF,1749.00.00-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1749.00.00-Watson.pdf,1749.00.00,1749.00.00 +6128,1755,Unprovoked,SWEDEN,Skagerrak arm of the North Sea,Bohuslän,Swimming,Fishermen,M,14,UNKNOWN,UNKNOWN,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.","C. Moore, GSAF",1755.00.00-Sweden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1755.00.00-Sweden.pdf,1755.00.00,1755.00.00 +6129,1748,Unprovoked,PANAMA,Las Perlas archipelago,Taboga & Isla del Rey,Pearl diving,African slaves,M,14,fatal,True,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.","J. Castro, et al",1748.00.00.R-LasPerlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1748.00.00.R-LasPerlas.pdf,1748.00.00,1748.00.00 +6130,17-Dec-1742,Unprovoked,unknown,Carlisle Bay,Carlisle Bay,Swimming,2 impressed seamen,M,14,fatal,True,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.","C. Moore, GSAF",1742.12.17-AdviceSeamen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1742.12.17-AdviceSeamen.pdf,1742.12.17,1742.12.17 +6131,Reported 06-Apr-1738,Unprovoked,ITALY,Sicily,Strait of Messina,Swimming,male,M,14,fatal,True,"""The fish was harpooned, dried, and presented to the sailor, who went round Europe exhibiting it It was said to be 20 feet long.","C. Moore, GSAF",1738.04.06.R-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1738.04.06.R-Messina.pdf,1738.04.06.R,1738.04.06.R +6132,1733,Invalid,ICELAND,Bardestrand,Talkknefiord,Swimming,E. Olafsen,,14,"Partial hominid remains recovered from shark, probable drowning and scavenging",False,Shark involvement prior to death unconfirmed,E. Olafsen,1733.00.00-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1733.00.00-Iceland.pdf,1733.00.00,1733.00.00 +6133,1723,Unprovoked,ROATAN,unknown,unknown,Swimming,Philip Ashton,M,14,Struck on thigh,False,Shark involvement prior to death unconfirmed,"C.Moore, GSAF",1730.00.00-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1730.00.00-Ashton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1730.00.00-Ashton.pdf,1723.00.00,1723.00.00 +6134,June 1721,Unprovoked,ITALY,Sardinia,"Ponte della Maddelena,",Swimming,male,M,14,fatal,True,"White shark, 1600-lb female ",F. Ricciardi; A. De Maddalena. ,1721.06.00-Maddalena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1721.06.00-Maddalena.pdf,1721.06.00,1721.06.00 +6135,26-Mar-1703,Unprovoked,BARBADOS,Southwest coast,Carlisle Bay,Swimming,"Samuel Jennings, a deserter from the British frigate Milford",M,19,"Hand and foot severely bitten, surgically amputated",False,"White shark, 1600-lb female ","W.R.Cutter, Vol.1, p.252",1703.03.26-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1703.03.26-Jennings.pdf,1703.03.26,1703.03.26 +6136,1700s,Unprovoked,FRANCE,Nice,Nice,Swimming,child,M,19,fatal,True,"White shark, 1600-lb female ","A. De Maddalena, citing Cazeils (1998)",1700.00.00.c-Nice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.c-Nice.pdf,1700.00.00.c,1700.00.00.c +6137,1700s,Unprovoked,FRANCE,Côte d'Azur ,Antibes,Bathing,seaman,M,19,Leg severed,False,White shark,"A. De Maddalena, citing Cazeils (1998)",1700.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.b-Antibes.pdf,1700.00.00.b,1700.00.00.b +6138,1700s,Unprovoked,BARBADOS,unknown,unknown,Bathing,seaman from the York,M,19,fatal,True,White shark,"Tioga Eagle, 10.26/ 1842",1700.00.00.a-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1700.00.00.a-Barbados.pdf,1700.00.00.a,1700.00.00.a +6139,Late 1600s Reported 1728,Invalid,GUINEA,unknown,unknown,Went overboard,crew member of the Nieuwstadt,M,19,fatal,True,Questionable,"History of the Pyrates, by D. Defoe, Vol. 2, p.28",1642.00.00.b-Nieuwstadt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00.b-Nieuwstadt.pdf,1642.00.00.b,1642.00.00.b +6140,Reported 1637,Unprovoked,INDIA,West Bengal,Hooghly River mouth,Wading,Hindu pilgrims,,19,UNKNOWN,UNKNOWN,Questionable,"H. Edwards, p.31, citing Sebastian Manrique",1637.00.00.R-Manrique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00.R-Manrique.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1637.00.00-Manrique.pdf,1637.00.00.R,1637.00.00.R +6141,Reported 1617,Unprovoked,INDIA,West Bengal,Ganges Delta,Wading,Indian people,,19,UNKNOWN,UNKNOWN,Questionable,"H. Edwards, p.31, citing Samuel Purchas",1617.00.00-Purchas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1617.00.00-Purchas.pdf,1617.00.00.R,1617.00.00.R +6142,1642,Unprovoked,USA,New York ,Between Manhattan and The Bronx,Swimming ,Antony Van Corlear,M,19,fatal,True,Questionable,"Knickerbocker's History of New York, by Washington Irving",1642.00.00-Corlear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1642.00.00-Corlear.pdf,1642.00.00,1642.00.00 +6143,1595,Unprovoked,INDIA,Kerala,River Cochin,Ship lay at anchor & man was working on its rudder,male,M,19,"Leg severed mid-thigh, hand severed, arm above elbow and part of buttocks. Not known if he survived",UNKNOWN,Questionable,The Voyage of John Huyghen van Linschoten,1595.00.00-Cochin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1595.00.00-Cochin.pdf,1595.00.00,1595.00.00 +6144,Letter dated 10-Jan-1580,Unprovoked,Between PORTUGAL & INDIA,unknown,unknown,Man fell overboard from ship. Those on board threw a rope to him with a wooden block & were pulling him to the ship,male,M,19,fatal,True,Questionable,"G.P. Whitley, p. 10",1580.01.10.R-Portugal-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1580.01.10.R-Portugal-India.pdf,1580.01.10.R,1580.01.10.R +6145,Ca. 1554,Unprovoked,FRANCE,Nice & Marseilles,Nice & Marseilles,Man fell overboard from ship. Those on board threw a rope to him with a wooden block & were pulling him to the ship,males (wearing armor),M,19,UNKNOWN,UNKNOWN,Possibly white sharks,G. Rondelet ,1554.00.00-Rondelet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1554.00.00-Rondelet.pdf,1554.00.00,1554.00.00 +6146,Ca. 1543,Unprovoked,VENEZUELA,Magarita or Cubagua Islands,Magarita or Cubagua Islands,Pearl diving,Indian slave,M,19,fatal,True,Possibly white sharks,J. Castro,1543.00.00.R-LasCasas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/1543.00.00.R-LasCasas.pdf,1543.00.00,1543.00.00 +6147,Circa 500 A.D.,Unprovoked,MEXICO,unknown,unknown,Pearl diving,male,M,19,Foot severed,False,Possibly white sharks,J. Castro,500AD-Mexico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/500AD-Mexico.pdf,0500.00.00,0500.00.00 +6148,77 A.D.,Unprovoked,unknown,Ionian Sea,Ionian Sea,Sponge diving,males,M,19,fatal,True,Possibly white sharks,Perils mentioned by Pliny the Elder (23 A.D. to 76 A.D.),77AD-Pliny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/77AD-Pliny.pdf,0077.00.00,0077.00.00 +6149,Ca. 5 A.D.,Unprovoked,AUSTRALIA,New South Wales,Bondi,Sponge diving,male,M,19,Aboriginal rock carving depicts man being attacked by a shark,False,Possibly white sharks,Waverly Library,0005.00.00-AustralianAboriginal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/0005.00.00-AustralianAboriginal.pdf,0005.00.00,0005.00.00 +6150,Ca. 214 B.C.,Unprovoked,unknown,Ionian Sea,Ionian Sea,Ascending from a dive,"Tharsys, a sponge diver",M,19,fatal,True,Possibly white sharks,"Reported by Greek poet, Leonidas of Tarentum (228 B.C to 174 B.C.); V.M. Coppleson (1958), pp.4 &5",214BC-Tharsys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/214BC-Tharsys.pdf,0000.0214,0000.0214 +6151,Ca. 336.B.C..,Unprovoked,GREECE,Piraeus,In the haven of Cantharus,Washing his pig in preparation for a religious ceremony,A candidate for initiation,M,19,fatal,True,Possibly white sharks,Plutarch (45 - 125 A.D.) in Life of Phoecion (Phoecion 28),336-BC-Carnathus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/336-BC-Carnathus.pdf,0000.0336,0000.0336 +6152,493 B.C.,Sea Disaster,GREECE,Off Thessaly,Off Thessaly,Shipwrecked Persian Fleet,males,M,19,fatal,True,Possibly white sharks,Herodotus (485 - 425 B.C.),493BC-PersianFleet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/493BC-PersianFleet.pdf,0000.0493,0000.0493 +6153,Ca. 725 B.C.,Sea Disaster,ITALY,Tyrrhenian Sea,"Krater found during excavations at Lacco Ameno, Ischia",Shipwreck,males,M,19,fatal,True,Possibly white sharks,"V.M. Coppleson (1958), p.262, et al",725BC-vase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/725BC-vase.pdf,0000.0725,0000.0725 +6154,Before 1939,Unprovoked,CANADA,Grand Banks,Grand Banks,Fishing,Joe Folsom,M,19,Arm bitten,False,Possibly white sharks,"C.E.Russell, pp. 310-311",ND-0154-Folsom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0154-Folsom.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0154-Folsom.pdf,ND-0154,ND-0154 +6155,1990 or 1991,Unprovoked,KENYA,Mombasa,Kilindini,Diving,Conway Plough & Dr. Jonathan Higgs,M,19,fatal,True,Possibly white sharks,A.J. Venter,ND-0153-Plough-Higgs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0153-Plough-Higgs.pdf,ND-0153,ND-0153 +6156,Before 2016,Unprovoked,KENYA,Mombasa,Kilindini,Diving,Hamisi Njenga,M,19,fatal,True,Possibly white sharks,eadestination,ND-0152-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0152-Kenya.pdf,ND-0152,ND-0152 +6157,Before Oct-2009,Unprovoked,PANAMA,Bocas del Toro Province,Red Frog Beach,Swimming/,male,M,20,fatal,True,Possibly white sharks,C. Mendieta & A. Duarte,ND-0151-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0151-Panama.pdf,ND-0151,ND-0151 +6158,Before 1934,Unprovoked,URUGUAY,Rocha,"Isla Chica, La Paloma",Swimming,"Di Candia, 2004",,20,Foot bitten,False,Possibly white sharks,"Di Candia, 2004",ND-0150-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0150-Uruguay.pdf,ND-0150,ND-0150 +6159,Before 1934,Unprovoked,URUGUAY,Rocha ,"Playa del Barco, La Pedrera",Swimming,Maciello,M,20,fatal,True,Possibly white sharks,"Di Candia, 2004",ND-0149-Maciello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0149-Maciello.pdf,ND-0149,ND-0149 +6160,2009?,Unprovoked,USA,South Carolina,Charleston,Swimming,Rick Donnis,M,20,Minor injury,False,Possibly white sharks,WBTV-News3,ND-0148-Donnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0148-Donnis.pdf,ND-0148,ND-0148 +6161,Before 1930,Unprovoked,PAPUA NEW GUINEA,Morobe Province,Simbang,Swimming to canoe,male,M,20,fatal,True,Possibly white sharks,"The Advertiser (Adelaide), 6/2/1933",ND-0140-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0140-NewGuinea.pdf,ND-1940,ND-1940 +6162,1880-1899,Unprovoked,AUSTRALIA,Queensland,Boonooroo,Swimming to canoe,Lassie,F,15,Foot severed,False,Possibly white sharks,"Courier Mail, 6/30/1951",ND-0139-Lassie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0139-Lassie.pdf,ND-0139,ND-0139 +6163,Before 1909,Unprovoked,AUSTRALIA,Queensland,Moreton Bay,Fell into the water,Lieutenant Hexton,M,15,fatal,True,Possibly white sharks,"Brisbane Courier, 1/28/1909",ND-0138-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0138-Hexton.pdf,ND-0138,ND-0138 +6164,Before 2012,Unprovoked,USA,Hawaii,Oahu,Diving,Ken O'Keefe,M,15,Minor laceration to hand,False," Galapagos shark, 6'",K. O'keefe,ND-0136-Keefe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0136-Keefe.pdf,ND-0136,ND-0136 +6165,Before 1916,Unprovoked,BERMUDA,unknown,unknown,Diving,male,M,15,fatal,True," Galapagos shark, 6'","New York Times, 7/22/1916",ND-0135-Bermuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0135-Bermuda.pdf,ND-0135,ND-0135 +6166,Between 1951-1963,Unprovoked,GREECE,unknown,unknown,Swimming,Martha Hatagouei,F,15,fatal,True," Galapagos shark, 6'","C. Moore, GSAF",ND-0134-Greece-Hatagouei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0134-Greece-Hatagouei.pdf,ND-0134,ND-0134 +6167,Before 1908,Unprovoked,USA,California,"Monterey, Montery County",Fishing for basking sharks,males,M,15,fatal,True,Basking shark,C.F. Holder,ND-0133-BaskingShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0133-BaskingShark.pdf,ND-0133,ND-0133 +6168,Before 1900,Provoked,INDIA,unknown,unknown,Fishing for basking sharks,male,M,15,Cut to arm while roping shark PROVOKED INCIDENT,False,Basking shark,Naval Journal (undated),ND-0132-India-fight-with-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0132-India-fight-with-shark.pdf,ND-0132,ND-0132 +6169,Before 1876,Unprovoked,LEBANON,unknown,unknown,Collecting fish ,Kahlifeh,M,15,Posterior thigh bitten,False,Basking shark,"C. Moore, GSAF",ND-0130-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0130-Lebanon.pdf,ND-0130,ND-0130 +6170,Before 2012,Unprovoked,SPAIN,Canary Islands,Tenerife,Skin diving,"C. Moore, GSAF",,15,Injury required 16 stitches,False,Basking shark,"C. Moore, GSAF",ND-0129-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0129-Tenerife.pdf,ND-0129,ND-0129 +6171,Before 2011,Unprovoked,SUDAN,Red Sea State,Red Sea State,Snorkeling,female,F,15,Leg severely bitten,False,Basking shark,"E. Ritter, GSAF",ND-0127-Sudan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0127-Sudan.pdf,ND-0127,ND-0127 +6172,Before 2009,Unprovoked,USA,Florida,Florida,Shark tagging,Danniell Washington,F,21,Severe abrasion to forearm from captive shark PROVOKED INICIDENT,False,"Blacktip shark, 5'",Daniell Washington,ND-0123-Daniell-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0123-Daniell-Washington.pdf,ND-0123,ND-0123 +6173,Beforer 1994,Unprovoked,USA,Florida,"Lost Tree Village, Palm Beach County",Surfing,C.M,M,21,Legs bitten,False,"Blacktip shark, 5'","M. Vorenberg, GSAF",ND-0122-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0122-CM.pdf,ND-0122,ND-0122 +6174,Before 1963,Unprovoked,DJIBOUTI,Gulf of Tadjoura,Gulf of Tadjoura,A dhow capsized,Passenger & crew,,21,fatal,True,"Blacktip shark, 5'",A. C. Doyle,ND-0119-Gulf-of-Tadjoura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0119-Gulf-of-Tadjoura.pdf,ND-0119,ND-0119 +6175,1896-1913,Unprovoked,LIBYA,Cyrenaica,Kirinaiki,Sponge diving,a diver from Kalymnos,M,21,fatal,True,"Blacktip shark, 5'",M. Bardanis,ND-0118-Stathis-partner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0118-Stathis-partner.pdf,ND-0118,ND-0118 +6176,Before 1936,Unprovoked,AUSTRALIA,unknown,unknown,Net-fishing,August Eichmann,M,21,Calf bitten,False,"Blacktip shark, 5'","Courier-Mail, 1/11/1936",ND-0116-Eichmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0116-Eichmann.pdf,ND-0116,ND-0116 +6177,Before 08-Jun-1912,Unprovoked,NEW ZEALAND,North Island,"Point Halsey, Wellington",Net-fishing,Kai-tawaro,M,21,fatal,True,"Blacktip shark, 5'","Evening Post, 6/8/1912",ND-0115-Wellington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0115-Wellington.pdf,ND-0115,ND-0115 +6178,Before 2012,Unprovoked,unknown,In a river feeding into the Bay of Bengal,In a river feeding into the Bay of Bengal,Netting shrimp,Sametra Mestri,F,21,Hand severed,False,"Blacktip shark, 5'",National Georgraphic Television,ND-0114-BayOfBengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0114-BayOfBengal.pdf,ND-0114,ND-0114 +6179,Before 1911,Unprovoked,VIETNAM,unknown,unknown,Bathing,male,M,21,Foot bitten,False,"Blacktip shark, 5'","Daily Kennebec Journal, 3/27/ 1911",ND-0113-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0113-Vietnam.pdf,ND-0113,ND-0113 +6180,Before 1901,Unprovoked,SRI LANKA,Northern Province,Mannar,Fishing?,male,M,21,Foot bitten,False,"Blacktip shark, 5'",Gould & Pyle,ND-0111-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0111-SriLanka.pdf,ND-0111,ND-0111 +6181,"No date, late 1960s",Unprovoked,VENEZUELA,Los Roques Islands,Los Roques Islands,Spearfishing ,4 French divers,M,21,fatal,True,said to involve 2.5 m hammerhead sharks,http://waterco.com.br/ataque_tubarao.htm,ND-0110-FrenchDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0110-FrenchDivers.pdf,ND.0110,ND.0110 +6182,Before 2006,Unprovoked,USA,Florida,"Tampa Bay, Hillsborough County",Wade-fishing,Ed Snyder,M,21,"No injury, shark rammed his back",False,said to involve 2.5 m hammerhead sharks,Fishingworld.com,ND-0109-Ed-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0109-Ed-Snyder.pdf,ND-0109,ND-0109 +6183,Before 2003,Unprovoked,GREECE,Dodecanese Islands,Near Symi Island,Free diving for sponges,male,M,21,fatal,True,said to involve 2.5 m hammerhead sharks,M. Kalafatas,ND-0108-SpongeDiver-Symi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0108-SpongeDiver-Symi.pdf,ND-0108,ND-0108 +6184,Before 2004,Boat,MOZAMBIQUE,Inhambane Province,Off Inhambane,Fishing,"4.8-metre skiboat, Occupants: Rod Salm & 4 friends",,21,"No injury to occupants, shark bumped boat",False,Whale shark,South African Shark Attack File,ND-0107-Inhambane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0107-Inhambane.pdf,ND-0107,ND-0107 +6185,Before 1962,Unprovoked,SOUTH AFRICA,Western Cape Province,"Murray Bay, Robben Island",Swimming,"male, a mental patient",M,21,fatal,True,Whale shark,"L.Green, A Decent Fellow doesn't Work, p.225",ND-0106-MentalPatient.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0106-MentalPatient.pdf,ND-0106,ND-0106 +6186,1950s,Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Helmet diving,male,M,21,"No injury, helmet bitten",False,Tiger shark,"A. Seekee & R. Callinan, Courier-Mail, 7/7/1995, p.7",ND-0104-HelmetDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0104-HelmetDiver.pdf,ND.0104,ND.0104 +6187,"No date, Before 1963",Unprovoked,BAHREIN,unknown,unknown,Pearl diving,male,M,21,fatal,True,Tiger shark,A.C. Doyle,ND-0102-Bahrein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0102-Bahrein.pdf,ND.0102,ND.0102 +6188,2003?,Unprovoked,BAHAMAS,Andros Islands,Great Guana Cay,Spearfishing ,C.D. Dollar,M,21,Swim fin bitten,False,1.8 m [6'] shark,"R.D. Weeks, GSAF",ND-0100-CDDollar.pdf,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf,Q93http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0100-CDDollar.pdf,ND.0100,ND.0100 +6189,No date,Unprovoked,USA,Florida,"Key West, Monroe County",Kitesurfing,Paul Menta,M,21,Hand bitten,False,1.8 m [6'] shark,Internet,ND-0097-PaulMenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0097-PaulMenta.pdf,ND.0097,ND.0097 +6190,No date,Unprovoked,REUNION,Grand'Anse,Petite-île,yachtsman in a zodiac,G. Van Grevelynghe,M,21,Survived,False,1.8 m [6'] shark,G. Van Grevelynghe,ND-0096-Zodiac-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0096-Zodiac-Reunion.pdf,ND.0096,ND.0096 +6191,Before Feb-1998,Unprovoked,SOLOMON ISLANDS,Malaita Province,Waibana Passage,Diving,Albert Raiti,M,21,Lacerations to hands and knee,False,1.8 m [6'] shark,"Islands Magazine, 2/1998, p.76",ND-0095-AlbertRaiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0095-AlbertRaiti.pdf,ND.0095,ND.0095 +6192,"No date, Before May-1996",Unprovoked,KOREA,South Korea,Cheju Island,Diving,"female, a Hae Nyeo",F,21,fatal,True,1.8 m [6'] shark,"K. Amsler, Divernet.com",ND-0094-HaeNyeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0094-HaeNyeo.pdf,ND.0094,ND.0094 +6193,"No date, Before Mar-1995",Unprovoked,FRENCH POLYNESIA,Tuamotus,Rangiroa,Fishing,male,M,21,"Speared a shark, fell overboard and another shark severed his arm ",False,1.8 m [6'] shark,J. Windh,ND-0093-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0093-Rangiroa.pdf,ND.0093,ND.0093 +6194,Before 1996,Unprovoked,SUDAN,Red Sea State,Sha'ab Rumi,Diving,Erik Bjurstrom,M,21,"No injury, BC ripped",False,Silvertip shark,"E. Bjurstrom,",ND-0091-Bjurstrom-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0091-Bjurstrom-RedSea.pdf,ND.0091,ND.0091 +6195,"No date, Before Aug-1989",Unprovoked,VANUATU,Malampa Province,Malakula,Diving,female,F,21,fatal,True,Silvertip shark,S. Combs,ND-0090-Vanuatu-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0090-Vanuatu-female.pdf,ND.0090,ND.0090 +6196,"No date, Before Aug-1987",Provoked,VANUATU,Malampa Province,"Hokai, Malakula",Attempting to drive shark from area,a chief,M,21,Speared shark broke outrigger of canoe throwing man into the water & shark bit his buttock PROVOKED INCIDENT,False,A large hammerhead shark,S. Combs,ND-0089-VanuatuChief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0089-VanuatuChief.pdf,ND.0089,ND.0089 +6197,"No date, Before 1987",Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Attempting to drive shark from area,Mr. Jabar-Kaaby,M,21,Foot severed,False,Bull shark,B. Coad & F. Papahn,ND-0088-Jabar-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0088-Jabar-Kaaby.pdf,ND.0088,ND.0088 +6198,"No date, Before 1975",Provoked,USA,Florida,"Riviera Beach, Palm Beach County",Skin diving. Grabbed shark's tail; shark turned & grabbed diver's ankle & began towing him to deep water,Carl Bruster,M,19,"Ankle punctured & lacerated, hands abraded PROVOKED INCIDENT",False,"Nurse shark, 2.1 m [7'] ","R. Skocik, p.176",ND-0087-Carl-Bruster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0087-Carl-Bruster.pdf,ND.0087,ND.0087 +6199,"No date, Before 1975",Invalid,PAPUA NEW GUINEA,Milne Bay Province," D'Entrecasteaux islands, 20 miles off the coast",Scuba diving,Dan Hogan,M,19,fatal,True,Questionable,"F. Dennis, pp.15-16",ND-0086-DanHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0086-DanHogan.pdf,ND.0086,ND.0086 +6200,"No date, Before 1969",Unprovoked,RED SEA?,unknown,unknown,Free diving,Jill Reed,F,19,"Shoulder scratched, swim fin bitten",False,Questionable,"Captain T. Falcon-Barker, pp. 91-93",ND-0085-JillReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0085-JillReed.pdf,ND.0085,ND.0085 +6201,"No date, Before 3-Jan-1967",Unprovoked,SOUTH AFRICA,Eastern Cape Province,Keiskamma River mouth,Crossing river on a raft,Sinsa,M,19,fatal,True,Questionable,"Whitaker, The Sun, 1/3/1967",ND-0084-Sinsa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0084-Sinsa.pdf,ND.0084,ND.0084 +6202,"No date, Before 1963",Unprovoked,USA,California,"LaJolla, San Diego County","Free diving, collecting sand dollars",Charles Fleming,M,19,Calf bitten,False,"Shovelnose guitarfish, adult male ","C. Limbaugh in Sharks & Survival, pp.77-78",ND-0083-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0083-Fleming.pdf,ND.0083,ND.0083 +6203,"No date, Before 8-May-1965",Unprovoked,GREECE,Island of Volos,Eastern shore,Swimming,woman,F,19,fatal,True,"Shovelnose guitarfish, adult male ","Sydney Morning Herald, 5/8/1965 ",ND-0082-Volos-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0082-Volos-Greece.pdf,ND.0082,ND.0082 +6204,"No date, Before 1963",Invalid,USA,Hawaii,"Portlock, Oahu",Diving,Val Valentine,M,19,"A 4.3 m [14'] shark made threat display. No injury, no attack",False,Invalid,B. Sojka & D. Lloyd,ND-0081-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0081-Valentine.pdf,ND.0081,ND.0081 +6205,"No date, Before 1902",Unprovoked,USA,Florida,"Mosquito Inlet (Ponce Inlet), Volusia County",Canoeing,male,M,19,fatal,True,Invalid,"W.H. Gregg, p.19; L. Schultz & M. Malin, p.533",ND-0078-canoeist-mail-carrier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0078-canoeist-mail-carrier.pdf,ND.0078,ND.0078 +6206,"No date, Before 1902",Unprovoked,MEDITERRANEAN SEA,unknown,unknown,Canoeing,"male, a ship carpenter",M,19,fatal,True,Invalid,"W.H. Gregg, p.22; L. Schultz & M. Malin, p.529",ND-0076-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0076-Mediterranean.pdf,ND.0076,ND.0076 +6207,"No date, Before 1963",Unprovoked,AUSTRALIA,Torres Strait,Torres Strait,Diving for trochus,male,M,19,Calf removed,False,0.9 m [3'] shark,"G.P. Whitley (1952), p.192, cites A. Marshall",ND-0075-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0075-TorresStrait.pdf,ND.0075,ND.0075 +6208,"No date, After August 1926 and before 1936",Unprovoked,AUSTRALIA,Western Australia,Cossack Creek,Pearl diving,Ted Luck,M,19,Leg bitten,False,0.9 m [3'] shark,"N. Caldwell; T. Peake, GSAF",ND-0074-Ted-Luck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0074-Ted-Luck.pdf,ND.0074,ND.0074 +6209,"No date, Before 1963",Unprovoked,SINGAPORE,"Keppel Harbor, 2 miles from Singapore city center","Keppel Harbor, 2 miles from Singapore city center",Swimming,"V.M. Coppleson (1958), p.266",,19,Recovered,False,0.9 m [3'] shark,"V.M. Coppleson (1958), p.266",ND-0073-KeppelHarbourSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0073-KeppelHarbourSingapore.pdf,ND.0073,ND.0073 +6210,Before 1962,Unprovoked,FIJI,unknown,unknown,Spearfishing ,Dalton Baldwin,M,27,"No injury, bumped by shark which took speared fish",False,1.8 m [6'] shark,"V. M. Coppleson (1962), p.253",ND-0069-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0069-Dalton.pdf,ND.0069,ND.0069 +6211,Before 1962,Unprovoked,MOZAMBIQUE,Maputo Province,Santa Maria Peninsula,Skindiving,Les Bishop,M,36,Bumped by sharks,False,"""A pack of sharks""",L. Bishop; V.M. Coppleson (1962),ND-0068-LesBishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0068-LesBishop.pdf,ND.0068,ND.0068 +6212,Before 1961,Unprovoked,SEYCHELLES,Amirante Islands,Marie Louise Island,Swimming from capsized pirogue,Aristede,M,36,fatal,True,Tiger shark,"Travis, pp. 326-327",ND-0066-Aristede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0066-Aristede.pdf,ND.0066,ND.0066 +6213,1960s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River,Fishing from a small boat & put his hand in the water while holding a dead fish,male,M,25,Right hand severed,False,Tiger shark,B.W. Coad & L.A.J. Al-Hassan,ND-0065-deadfish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0065-deadfish.pdf,ND.0065,ND.0065 +6214,1960s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River ,Swimming naked near a date palm where many dates fell into the water,male,M,6,Arm severed,False,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0064-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0064-Shatt-al-Arab.pdf,ND.0064,ND.0064 +6215,1960s,Unprovoked,IRAQ,Basrah,Shatt-al-Arab River near Abu al Khasib,Swimming in section of river used for washing clothes & cooking utensils,male,M,16,Right leg lacerated & surgically amputated,False,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0063-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0063-Shatt-al-Arab.pdf,ND.0063,ND.0063 +6216,Before 1960,Unprovoked,BAHAMAS,Andros Islands,Andros Islands,Swimming in section of river used for washing clothes & cooking utensils,"male, a sponge Diver",M,16,Lower leg and forearm severed,False,"White shark, 7' to 8'","Star-Ledger (Newark, NJ), 8/22/1960",ND-0062-Spongediver-Andros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0062-Spongediver-Andros.pdf,ND.0062,ND.0062 +6217,Before 19-Jun-1959,Unprovoked,USA,California,"Capistrano, Orange County",Swimming in section of river used for washing clothes & cooking utensils,girl,F,16,Leg injured,False,"White shark, 1,900-lb ","B. Walton, Sun (San Bernardino), 6/19/1959 ",ND-0060-Capistrano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0060-Capistrano.pdf,ND.0060,ND.0060 +6218,Before 24 Apr-1959,Unprovoked,BERMUDA,Paget,Paget Parish,Spearfishing ,Ross Doe,M,16,Shoulder abraded by skin of shark,False,"White shark, 1,900-lb ","Mentioned in letter from L. S. Mowbray dated 4/24/1959; L. Schultz & M. Malin, p.516",ND-0059-RossDoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0059-RossDoe.pdf,ND.0059,ND.0059 +6219,Before 1958,Unprovoked,FIJI,Kadavu Island Group,"18.8S, 178.25E",Swimming with fish attached to belt,Fijian girl,F,16,"""Severely injured when fish were seized by shark""",False,"White shark, 1,900-lb ","V.M. Coppleson (1958), p.259",ND-0058-Fiji-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0058-Fiji-girl.pdf,ND.0058,ND.0058 +6220,Before 1958,Unprovoked,MADAGASCAR,Toamasina Province,Tamatave,Bathing,male,M,16,fatal,True,"White shark, 1,900-lb ","V.M. Coppleson (1958), p.259",ND-0057-Tamatave-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0057-Tamatave-Madagascar.pdf,ND.0057,ND.0057 +6221,Before 1958,Unprovoked,USA,Florida,"Palm Beach, Palm Beach County",Standing,Horton Chase,M,16,Abrasions & bruises hip to ankle,False,"White shark, 1,900-lb ","V.M. Coppleson (1956), p.255; R.F. Hutton",ND-0056-HortonChase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0056-HortonChase.pdf,ND.0056,ND.0056 +6222,Before 1958,Provoked,BAHAMAS,Andros Islands,Middle Bight,Testing movie camera in full diving dress,John Fenton,M,16,Shark bit diver's sleeve after he patted it on the head PROVOKED INCIDENT,False,"Nurse shark, 2.1 m [7']","V.M. Coppleson (1958), p.97",ND-0055-JohnFenton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0055-JohnFenton.pdf,ND.0055,ND.0055 +6223,Before 1958,Unprovoked,INDONESIA,Riau Province,"Natuna Islands, between Sumatra & Kalimantan in the South China Sea",Swimming near anchored ship, a ship's engineer,M,16,fatal,True,"Nurse shark, 2.1 m [7']","C.H. Townsend, p. 172; V.M. Coppleson, p.258",ND-0054-NatunaIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0054-NatunaIslands.pdf,ND.0054,ND.0054 +6224,Before 1958,Unprovoked,INDIA,Maharashtra,"Malwan, near Ratnagiri",Swimming near anchored ship,male,M,16,fatal,True,"Nurse shark, 2.1 m [7']","V.M. Coppleson (1958), p.261",ND-0053-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0053-India.pdf,ND.0053,ND.0053 +6225,Before 1957,Unprovoked,NICARAGUA,Lake Nicaragua (fresh water),A village north of San Carlos,Lashing logs together when he fell into the water,an Indian,M,16,fatal,True,"Bull shark caught, leg recovered & buried beside the man's body","F. Poli, pp.150-153",ND-0052-NicaraguanIndian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0052-NicaraguanIndian.pdf,ND.0052,ND.0052 +6226,Before 1957,Provoked,CUBA,Havana Province,Cojimar,"Shark fishing, knocked overboard",Sandrillio,M,50,fatal,True,"Bull shark caught, leg recovered & buried beside the man's body","F. Poli, pp.75, 81-83",ND-0051-Sandrillio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0051-Sandrillio.pdf,ND.0051,ND.0051 +6227,Before 1956,Unprovoked,MARSHALL ISLANDS,Bikini Atoll,Bikini Atoll,Swimming,male,M,50,Buttocks bitten,False,"Bull shark caught, leg recovered & buried beside the man's body",J.E. Lasch,ND-0049-BikiniAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0049-BikiniAtoll.pdf,ND.0049,ND.0049 +6228,Before 1956,Unprovoked,KIRIBATI,Phoenix Islands,Canton Island,Diving,Dusty Rhodes,M,50,No injury,False,"Bull shark caught, leg recovered & buried beside the man's body","J. Oetzel, Skin Diver Magazine, March 1956, p.19 ",ND-0048-DustyRhodes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0048-DustyRhodes.pdf,ND.0048,ND.0048 +6229,Before Mar-1956,Unprovoked,NORTH PACIFIC OCEAN,Wake Island,Wake Island,"Fishing, wading with string of fish",male,M,50,Survived,False,"Bull shark caught, leg recovered & buried beside the man's body","J. Oetzel, Skin Diver Magazine, March 1956, p.19 ",ND-0047-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0047-WakeIsland.pdf,ND.0047,ND.0047 +6230,Before 1952,Unprovoked,KIRIBATI,Gilbert Islands,Nonouti,"Fishing, wading with string of fish",Gilbertese fisherman,M,50,fatal,True,"Bull shark caught, leg recovered & buried beside the man's body","Grimble, pp. 142-143",ND-0046-GilberteseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0046-GilberteseFisherman.pdf,ND.0046,ND.0046 +6231,"""During the war"" 1943-1945",Unprovoked,SOLOMON ISLANDS,New Georgia,"Munda Island, Roviana Lagoon",Floating on his back,American male,M,50,Buttock bitten,False,"Bull shark caught, leg recovered & buried beside the man's body","W. Chapman (1949) Fishing in Troubled Waters, p.182",ND-0043-American-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0043-American-male.pdf,ND.0043,ND.0043 +6232,"""Before the war""",Unprovoked,AUSTRALIA,Torres Strait,Thursday Island?,Free diving,Mortakee,M,50,Head bitten,False,"Bull shark caught, leg recovered & buried beside the man's body",Press clipping dated 6/28/1950,ND-0042-Mortakee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0042-Mortakee.pdf,ND.0042,ND.0042 +6233,"Said to be 1941-1945, more likely 1945",Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Fishing in ankle-deep water,an old fisherman,M,50,fatal,True,"Bull shark caught, leg recovered & buried beside the man's body","Lt. Col. R.S. Hunt, pp. 80-81",ND-0041-OldFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0041-OldFisherman.pdf,ND.0041,ND.0041 +6234,1941-1945,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River",Fishing in ankle-deep water,a local dignitary,M,50,fatal,True,"Bull shark caught, leg recovered & buried beside the man's body",Lt. Col. R.S. Hunt of the Royal Army Medical Corp,ND-0040-Local dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0040-Local dignitary.pdf,ND.0040,ND.0040 +6235,1941-1945,Unprovoked,IRAN,Khuzestan Province,"Ahvaz, on the Karun River","Standing, washing rear wheels of his ambulance in ankle-deep water",I.A.S. C. driver ,M,50,fatal,True,"Bull shark caught, leg recovered & buried beside the man's body","Lt.Col. R.S. Hunt, p.79",ND-0039-AmbulanceDriver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0039-AmbulanceDriver.pdf,ND.0039,ND.0039 +6236,1941-1942,Unprovoked,IRAQ,Basrah,Shatt-el Arab River near a small boat stand,Swimming,male,M,13 or 14,fatal,True,Bull shark,B.W. Coad & L.A.J. Al-Hassan,ND-0038-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0038-Shatt-al-Arab.pdf,ND.0038,ND.0038 +6237,1940 - 1950,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,13 or 14,fatal,True,"""a black-tipped shark""",G.F. Mead,ND-0037-PearlDiver-sepsis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0037-PearlDiver-sepsis.pdf,ND.0037,ND.0037 +6238,1940 - 1950,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a fisherman / diver,M,13 or 14,Buttocks bitten,False,6' shark,G.F. Mead,ND-0036-Fisherman-SaudiArabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0036-Fisherman-SaudiArabia.pdf,ND.0036,ND.0036 +6239,1940 - 1950,Unprovoked,SAUDI ARABIA,Eastern Province,East of the Ras Tanura-Jubail area ,Diving,a pearl diver,M,13 or 14,"Foot lacerated, surgically amputated",False,6' shark,G.F. Mead,ND-0035-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0035-PearlDiver.pdf,ND.0035,ND.0035 +6240,1940-1946,Sea Disaster,PACIFIC OCEAN,unknown,unknown,Diving,"8 US airmen in the water, 1 was bitten by a shark",M,13 or 14,fatal,True,6' shark,G. Llano,ND-0034-8-men-on-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0034-8-men-on-raft.pdf,ND.0034,ND.0034 +6241,Before 1905,Provoked,BURMA,unknown,unknown,Carrying a supposedly dead shark by its mouth,boy,M,13 or 14,4 fingers severed by 'dead' shark. PROVOKED ACCIDENT,False,6' shark,"Massillon Independent, 3/1905",ND-0033-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0033-Burma.pdf,ND.0033,ND.0033 +6242,World War II,Sea Disaster,PAPUA NEW GUINEA,Between New Ireland & New Britain,St. George’s Channel,Spent 8 days in dinghy,pilot,M,13 or 14,"No injury, but shark removed the heel & part of his left shoe",False,6' shark,"G.A. Llano in Airmen Against the Sea, p.69; V.M. Coppleson (1962), p.257",ND-0032-RabaulPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0032-RabaulPilot.pdf,ND.0032,ND.0032 +6243,World War II,Sea Disaster,PAPUA NEW GUINEA,Madang Province,Off Lae,"Aircraft ditched in the sea, swimming ashore",male,M,13 or 14,Shark bumped him,False,6' shark,"V.M. Coppleson (1962), p.257",ND-0031-Ditched-Aircrat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0031-Ditched-Aircrat.pdf,ND.0031,ND.0031 +6244,Before 1905,Unprovoked,BURMA,unknown,unknown,Bathing,male,M,13 or 14,fatal,True,6' shark,"Massillon Independent, 3/1905",ND-0030-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0030-Burma.pdf,ND.0030,ND.0030 +6245,A few years before 1938,Boat,ITALY,Adriatic Sea,Adriatic Sea,Wooden fishing boat,Occupant: Mr. Maciotta,M,13 or 14,No injury to occupant; shark capsized boat,False,White shark,A. De Maddalena; Anon. (1938),ND-0028-Maciotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0028-Maciotta.pdf,ND.0028,ND.0028 +6246,No date,Unprovoked,GREECE,Dodecanese Islands,Symi Island,Sponge diving,Psarofa-gomenes,M,13 or 14,Head bitten,False,White shark,M. N. Kalafatas ,ND-0027-Psarofagomenos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0027-Psarofagomenos.pdf,ND.0027,ND.0027 +6247,Early 1930s,Unprovoked,BELIZE,unknown,unknown,Standing,a servant,M,16,fatal,True,12' tiger shark,Mitchell-Hedges,ND-0026-Belize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0026-Belize.pdf,ND.0026,ND.0026 +6248,Before 1927,Unprovoked,AUSTRALIA,New South Wales,"Spectacle Island, Port Jackson",Standing,"male, the Sergeant of Marines",M,16,UNKNOWN,UNKNOWN,12' tiger shark,H. Capper,ND-0025-Sgt-SpectacleIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0025-Sgt-SpectacleIsland.pdf,ND.0025,ND.0025 +6249,Between 1918 & 1939,Unprovoked,REUNION,Saint-Denis,Barachois,Swimming,G. Van Grevelynghe,,16,fatal,True,12' tiger shark,G. Van Grevelynghe,ND-0024-Barachois-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0024-Barachois-Reunion.pdf,ND.0024,ND.0024 +6250,No date,Unprovoked,SOUTH AFRICA,Western Cape Province,Arniston,Wading,Madelaine Dalton,F,16,Ankle bitten,False,12' tiger shark,"L. Green in Tavern of the Seas, p.182",ND-0023-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0023-Dalton.pdf,ND.0023,ND.0023 +6251,No date,Unprovoked,AUSTRALIA,unknown,unknown,Pearl diving,Jaringoorli,M,16,Lacerations to thigh,False,12' tiger shark,"Adelaide Advertiser, 1/11/1940",ND-0022-Jaringoorli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0022-Jaringoorli.pdf,ND.0022,ND.0022 +6252,No date,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban ,Swimming in pool formed by construction of a wharf,Indian boy,M,16,fatal,True,12' tiger shark,"L. Green in South African Beachcomber, p.97",ND-0021-DurbanIndianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0021-DurbanIndianBoy.pdf,ND.0021,ND.0021 +6253,1920 -1923,Unprovoked,AUSTRALIA,Queensland,Great Barrier Reef,Swimming in pool formed by construction of a wharf,3 Japanese divers,M,16,fatal,True,12' tiger shark,"V.M. Coppleson (1958), p.241",ND-0020-3JapaneseDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0020-3JapaneseDivers.pdf,ND.0020,ND.0020 +6254,Before 1921,Unprovoked,USA,Florida,"Gadsden Point, Tampa Bay",Fishing,James Kelley,M,16,2-inch lacerations,False,12' tiger shark,"T. Helm, p.219",ND-0019-Kelley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0019-Kelley.pdf,ND.0019,ND.0019 +6255,Before 1911,Unprovoked,VIETNAM,Ba Ria-Vung Tau Province,V?ng Tàu,Swimming around anchored ship,crewman,M,16,Foot bitten,False,12' tiger shark,"Daily Kennebec Journal, 3/27/1911",ND-0018-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0018-Vietnam.pdf,ND.0018,ND.0018 +6256,Before 1921,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban ,Crew swimming alongside their anchored ship,male,M,16,fatal,True,12' tiger shark,"Captain A. Anderson, Natal Mercury, 12/31/1921; M. Levine, GSAF",ND-0017-alongside-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0017-alongside-ship.pdf,ND.0017,ND.0017 +6257,Before 1921,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,4 men were bathing,male,M,16,fatal,True,12' tiger shark,"Captain A. Anderson, Natal Mercury, 12/31/1921; M. Levine, GSAF",ND-0016- Durban-PostOffice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0016- Durban-PostOffice.pdf,ND.0016,ND.0016 +6258,Before 1917,Unprovoked,FIJI,Moala Island,Moala Island,Wreck of large double sailing canoe,20 Fijians,,16,fatal,True,12' tiger shark,"Fijian Society papers presented April 17, 1918; W.E., p.191",ND-0015-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0015-FijianCanoe.pdf,ND.0015,ND.0015 +6259,Before 17-Jul-1916,Unprovoked,USA,North Carolina ,Somewhere between Hatteras and Beaufort,Swimming,"""youthful male""",M,16,"""Lost leg""",False,12' tiger shark,"C. Creswell, GSAF; Wilmington Star, 7/17/1916 ",ND-0014-pre1916-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0014-pre1916-NorthCarolina.pdf,ND.0014,ND.0014 +6260,No date (3 days after preceding incident) & prior to 19-Jul-1913,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Fishing,a native fisherman,M,16,fatal,True,12' tiger shark,"Rural New Yorker, 7/19/1913 ",ND-0013-Durban-native-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0013-Durban-native-fisherman.pdf,ND.0013,ND.0013 +6261,Before 19-Jul-1913,Unprovoked,SOUTH AFRICA,KwaZulu-Natal,Durban,Wading,a young Scotsman,M,16,fatal,True,12' tiger shark,"Rural New Yorker, 7/19/1913",ND-0012-Durban-Scotsman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0012-Durban-Scotsman.pdf,ND.0012,ND.0012 +6262,Before 1911,Unprovoked,ASIA?,unknown,unknown,Swimming,Mr. Masury,M,16,Foot severed,False,12' tiger shark,"Ref. J. T. Dubois in N.Y. Sun, 3/19/1911 ",ND-0011-Masury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0011-Masury.pdf,ND.0011,ND.0011 +6263,Circa 1862,Unprovoked,USA,Hawaii,Puna,Swimming,"A ""chiefess""",F,16,Ankle bitten,False,12' tiger shark,Captain W. Young,ND-0010-Puna Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0010-Puna Hawaii.pdf,ND.0010,ND.0010 +6264,Before 1906,Unprovoked,AUSTRALIA,unknown,unknown,Fishing,boy,M,16,fatal,True,Blue pointer,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0009-boy-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0009-boy-Australia.pdf,ND.0009,ND.0009 +6265,Before 1906,Unprovoked,AUSTRALIA,unknown,unknown,Fishing,fisherman,M,16,fatal,True,Blue pointer,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0008-Fisherman2-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0008-Fisherman2-Australia.pdf,ND.0008,ND.0008 +6266,Before 1906,Unprovoked,AUSTRALIA,unknown,unknown,Fishing,fisherman,M,16,fatal,True,Blue pointers,"NY Sun, 9/9/1906, referring to account by Louis Becke",ND-0007 - Fisherman-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0007 - Fisherman-Australia.pdf,ND.0007,ND.0007 +6267,Before 1906,Unprovoked,AUSTRALIA,New South Wales, ,Swimming,Arab boy,M,16,fatal,True,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"L. Becke in New York Sun, 9/9/1906; L. Schultz & M. Malin, p.523",ND-0006-ArabBoy-Prymount.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0006-ArabBoy-Prymount.pdf,ND.0006,ND.0006 +6268,Before 1903,Unprovoked,AUSTRALIA,Western Australia,Roebuck Bay,Diving,male,M,16,fatal,True,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"H. Taunton; N. Bartlett, p. 234",ND-0005-RoebuckBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0005-RoebuckBay.pdf,ND.0005,ND.0005 +6269,Before 1903,Unprovoked,AUSTRALIA,Western Australia,Western Australia,Pearl diving,Ahmun,M,16,fatal,True,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"H. Taunton; N. Bartlett, pp. 233-234",ND-0004-Ahmun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0004-Ahmun.pdf,ND.0004,ND.0004 +6270,1900-1905,Unprovoked,USA,North Carolina,Ocracoke Inlet,Swimming,Coast Guard personnel,M,16,fatal,True,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"F. Schwartz, p.23; C. Creswell, GSAF",ND-0003-Ocracoke_1900-1905.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0003-Ocracoke_1900-1905.pdf,ND.0003,ND.0003 +6271,1883-1889,Unprovoked,PANAMA,"Panama Bay 8ºN, 79ºW","Panama Bay 8ºN, 79ºW",Swimming,Jules Patterson,M,16,fatal,True,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,"The Sun, 10/20/1938",ND-0002-JulesPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf,http://sharkattackfile.net/spreadsheets/pdf_directory/ND-0002-JulesPatterson.pdf,ND.0002,ND.0002 +6272,1845-1853,Unprovoked,CEYLON (SRI LANKA),Eastern Province,"Below the English fort, Trincomalee",Swimming,male,M,15,fatal,True,Said to involve a grey nurse shark that leapt out of the water and seized the boy but species identification is questionable,S.W. Baker,ND-0001-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf,http://sharkattackfile.net/spreadsheets/pdf_directoryND-0001-Ceylon.pdf,ND.0001,ND.0001