pax_global_header00006660000000000000000000000064137026203110014505gustar00rootroot0000000000000052 comment=6355b5792682c7c7a2480e5cbe73fc7ad578e432 strip-json-comments-3.1.1/000077500000000000000000000000001370262031100154425ustar00rootroot00000000000000strip-json-comments-3.1.1/.editorconfig000066400000000000000000000002571370262031100201230ustar00rootroot00000000000000root = true [*] indent_style = tab end_of_line = lf charset = utf-8 trim_trailing_whitespace = true insert_final_newline = true [*.yml] indent_style = space indent_size = 2 strip-json-comments-3.1.1/.gitattributes000066400000000000000000000000231370262031100203300ustar00rootroot00000000000000* text=auto eol=lf strip-json-comments-3.1.1/.github/000077500000000000000000000000001370262031100170025ustar00rootroot00000000000000strip-json-comments-3.1.1/.github/funding.yml000066400000000000000000000001751370262031100211620ustar00rootroot00000000000000github: sindresorhus open_collective: sindresorhus tidelift: npm/strip-json-comments custom: https://sindresorhus.com/donate strip-json-comments-3.1.1/.github/security.md000066400000000000000000000002631370262031100211740ustar00rootroot00000000000000# Security Policy To report a security vulnerability, please use the [Tidelift security contact](https://tidelift.com/security). Tidelift will coordinate the fix and disclosure. strip-json-comments-3.1.1/.gitignore000066400000000000000000000000271370262031100174310ustar00rootroot00000000000000node_modules yarn.lock strip-json-comments-3.1.1/.npmrc000066400000000000000000000000231370262031100165550ustar00rootroot00000000000000package-lock=false strip-json-comments-3.1.1/.travis.yml000066400000000000000000000000761370262031100175560ustar00rootroot00000000000000language: node_js node_js: - '14' - '12' - '10' - '8' strip-json-comments-3.1.1/benchmark.js000066400000000000000000000007561370262031100177420ustar00rootroot00000000000000/* globals bench, set */ 'use strict'; const fs = require('fs'); const stripJsonComments = require('.'); const json = fs.readFileSync('sample.json', 'utf8'); const bigJson = fs.readFileSync('sample-big.json', 'utf8'); bench('strip JSON comments', () => { set('type', 'static'); stripJsonComments(json); }); bench('strip JSON comments without whitespace', () => { stripJsonComments(json, {whitespace: false}); }); bench('strip Big JSON comments', () => { stripJsonComments(bigJson); }); strip-json-comments-3.1.1/index.d.ts000066400000000000000000000014471370262031100173510ustar00rootroot00000000000000declare namespace stripJsonComments { interface Options { /** Replace comments with whitespace instead of stripping them entirely. @default true */ readonly whitespace?: boolean; } } /** Strip comments from JSON. Lets you use comments in your JSON files! It will replace single-line comments `//` and multi-line comments `/**\/` with whitespace. This allows JSON error positions to remain as close as possible to the original source. @param jsonString - Accepts a string with JSON. @returns A JSON string without comments. @example ``` const json = `{ // Rainbows "unicorn": "cake" }`; JSON.parse(stripJsonComments(json)); //=> {unicorn: 'cake'} ``` */ declare function stripJsonComments( jsonString: string, options?: stripJsonComments.Options ): string; export = stripJsonComments; strip-json-comments-3.1.1/index.js000066400000000000000000000042531370262031100171130ustar00rootroot00000000000000'use strict'; const singleComment = Symbol('singleComment'); const multiComment = Symbol('multiComment'); const stripWithoutWhitespace = () => ''; const stripWithWhitespace = (string, start, end) => string.slice(start, end).replace(/\S/g, ' '); const isEscaped = (jsonString, quotePosition) => { let index = quotePosition - 1; let backslashCount = 0; while (jsonString[index] === '\\') { index -= 1; backslashCount += 1; } return Boolean(backslashCount % 2); }; module.exports = (jsonString, options = {}) => { if (typeof jsonString !== 'string') { throw new TypeError(`Expected argument \`jsonString\` to be a \`string\`, got \`${typeof jsonString}\``); } const strip = options.whitespace === false ? stripWithoutWhitespace : stripWithWhitespace; let insideString = false; let insideComment = false; let offset = 0; let result = ''; for (let i = 0; i < jsonString.length; i++) { const currentCharacter = jsonString[i]; const nextCharacter = jsonString[i + 1]; if (!insideComment && currentCharacter === '"') { const escaped = isEscaped(jsonString, i); if (!escaped) { insideString = !insideString; } } if (insideString) { continue; } if (!insideComment && currentCharacter + nextCharacter === '//') { result += jsonString.slice(offset, i); offset = i; insideComment = singleComment; i++; } else if (insideComment === singleComment && currentCharacter + nextCharacter === '\r\n') { i++; insideComment = false; result += strip(jsonString, offset, i); offset = i; continue; } else if (insideComment === singleComment && currentCharacter === '\n') { insideComment = false; result += strip(jsonString, offset, i); offset = i; } else if (!insideComment && currentCharacter + nextCharacter === '/*') { result += jsonString.slice(offset, i); offset = i; insideComment = multiComment; i++; continue; } else if (insideComment === multiComment && currentCharacter + nextCharacter === '*/') { i++; insideComment = false; result += strip(jsonString, offset, i + 1); offset = i + 1; continue; } } return result + (insideComment ? strip(jsonString.slice(offset)) : jsonString.slice(offset)); }; strip-json-comments-3.1.1/index.test-d.ts000066400000000000000000000004301370262031100203150ustar00rootroot00000000000000import {expectType} from 'tsd'; import stripJsonComments = require('.'); const options: stripJsonComments.Options = {}; const json = '{/*rainbows*/"unicorn":"cake"}'; expectType(stripJsonComments(json)); expectType(stripJsonComments(json, {whitespace: true})); strip-json-comments-3.1.1/license000066400000000000000000000021351370262031100170100ustar00rootroot00000000000000MIT License Copyright (c) Sindre Sorhus (https://sindresorhus.com) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions: The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software. THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE. strip-json-comments-3.1.1/package.json000066400000000000000000000015271370262031100177350ustar00rootroot00000000000000{ "name": "strip-json-comments", "version": "3.1.1", "description": "Strip comments from JSON. Lets you use comments in your JSON files!", "license": "MIT", "repository": "sindresorhus/strip-json-comments", "funding": "https://github.com/sponsors/sindresorhus", "author": { "name": "Sindre Sorhus", "email": "sindresorhus@gmail.com", "url": "https://sindresorhus.com" }, "engines": { "node": ">=8" }, "scripts": { "test": "xo && ava && tsd", "bench": "matcha benchmark.js" }, "files": [ "index.js", "index.d.ts" ], "keywords": [ "json", "strip", "comments", "remove", "delete", "trim", "multiline", "parse", "config", "configuration", "settings", "util", "env", "environment", "jsonc" ], "devDependencies": { "ava": "^1.4.1", "matcha": "^0.7.0", "tsd": "^0.7.2", "xo": "^0.24.0" } } strip-json-comments-3.1.1/readme.md000066400000000000000000000036511370262031100172260ustar00rootroot00000000000000# strip-json-comments [![Build Status](https://travis-ci.com/sindresorhus/strip-json-comments.svg?branch=master)](https://travis-ci.com/github/sindresorhus/strip-json-comments) > Strip comments from JSON. Lets you use comments in your JSON files! This is now possible: ```js { // Rainbows "unicorn": /* ❤ */ "cake" } ``` It will replace single-line comments `//` and multi-line comments `/**/` with whitespace. This allows JSON error positions to remain as close as possible to the original source. Also available as a [Gulp](https://github.com/sindresorhus/gulp-strip-json-comments)/[Grunt](https://github.com/sindresorhus/grunt-strip-json-comments)/[Broccoli](https://github.com/sindresorhus/broccoli-strip-json-comments) plugin. ## Install ``` $ npm install strip-json-comments ``` ## Usage ```js const json = `{ // Rainbows "unicorn": /* ❤ */ "cake" }`; JSON.parse(stripJsonComments(json)); //=> {unicorn: 'cake'} ``` ## API ### stripJsonComments(jsonString, options?) #### jsonString Type: `string` Accepts a string with JSON and returns a string without comments. #### options Type: `object` ##### whitespace Type: `boolean`\ Default: `true` Replace comments with whitespace instead of stripping them entirely. ## Benchmark ``` $ npm run bench ``` ## Related - [strip-json-comments-cli](https://github.com/sindresorhus/strip-json-comments-cli) - CLI for this module - [strip-css-comments](https://github.com/sindresorhus/strip-css-comments) - Strip comments from CSS ---
Get professional support for this package with a Tidelift subscription
Tidelift helps make open source sustainable for maintainers while giving companies
assurances about security, maintenance, and licensing for their dependencies.
strip-json-comments-3.1.1/sample-big.json000066400000000000000000025751541370262031100204000ustar00rootroot00000000000000[ { "nm": "ABBING, Mr Anthony", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Blacksmith", "tck": "5547; £7 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anthony-abbing.html" }, { "nm": "ABBOTT, Mr Ernest Owen", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Lounge Pantry Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-owen-abbott.html" }, { "nm": "ABBOTT, Mr Eugene Joseph", "age": "14", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Scholar", "tck": "CA2673; £20 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eugene-joseph-abbott.html" }, { "nm": "ABBOTT, Mr Rossmore Edward", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Jeweller", "tck": "CA2673; £20 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rossmore-edward-abbott.html" }, { "nm": "ABBOTT, Mrs Rhoda Mary (Rosa)", "age": "39", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "CA2673; £20 5s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/rhoda-mary-rosa-abbott.html" }, { "nm": "ABELSETH, Miss Karen Marie", "age": "16", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "348125; £7 13s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/karen-marie-abelseth.html" }, { "nm": "ABELSETH, Mr Olaus Jørgensen", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "348122; £7 13s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/olaus-jorgensen-abelseth.html" }, { "nm": "ABELSON, Mr Samuel", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "3381; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-abelson.html" }, { "nm": "ABELSON, Mrs Hannah", "age": "28", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "3381; £24", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/abelson.html" }, { "nm": "ABRAHAMSSON, Mr Abraham August Johannes", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101284; £7 18s 6d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/august-abrahamsson.html" }, { "nm": "ABRAHIM, Mrs Mary Sophie Halaut", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2657; £7 4s 7d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-sophie-abrahim.html" }, { "nm": "ABRAMS, Mr William Thomas", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thomas-abrams.html" }, { "nm": "ÅDAHL, Mr Mauritz Nils Martin", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "7076; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mauritz-nils-adahl.html" }, { "nm": "ADAMS, Mr John", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "341826; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-adams.html" }, { "nm": "ADAMS, Mr Robert John", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/r-adams.html" }, { "nm": "AHIER, Mr Percy Snowden", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-snowden-ahier.html" }, { "nm": "AHLIN, Mrs Johanna Persdotter", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7546; £9 9s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johanna-persdotter-ahlin.html" }, { "nm": "AKERMAN, Mr Albert Edward", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-akerman.html" }, { "nm": "AKERMAN, Mr Joseph Francis", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantryman Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-francis-akerman.html" }, { "nm": "AKS, Master Frank Philip", "age": "10m", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "392091; £9 7s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-philip-aks.html" }, { "nm": "AKS, Mrs Leah", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "392091; £9 7s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/leah-aks.html" }, { "nm": "ALBIMONA, Mr Nassef Cassem", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2699; £18 15s 9d", // This is a comment "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nassef-cassem-albimona.html" }, { "nm": "ALDWORTH, Mr Charles Augustus", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Chauffeur", "tck": "248744; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-augustus-aldworth.html" }, { "nm": "ALEXANDER, Mr William", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3474; £7 17s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-alexander.html" }, { "nm": "ALHOMäKI, Mr Ilmari Rudolf", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101287; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ilmari-rudolf-alhomaki.html" }, { "nm": "ALI, Mr Ahmed", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101311; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ahmed-ali.html" }, { "nm": "ALI, Mr William", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101312; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-ali.html" }, { "nm": "ALLAN, Mr Robert Spencer", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-spencer-allan.html" }, { "nm": "ALLARIA, Sig. Battista Antonio", "age": "22", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/battista-antonio-allaria.html" }, { "nm": "ALLEN, Miss Elisabeth Walton", "age": "29", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "24160; £211 6s 9d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elisabeth-walton-allen.html" }, { "nm": "ALLEN, Mr Ernest Frederick", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ernest-frederick-allen.html" }, { "nm": "ALLEN, Mr Frederick", "age": "17", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Lift Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-allen.html" }, { "nm": "ALLEN, Mr George", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-allen.html" }, { "nm": "ALLEN, Mr Henry", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-allen.html" }, { "nm": "ALLEN, Mr William Henry", "age": "38", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tool Maker", "tck": "373450; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-allen.html" }, { "nm": "ALLISON, Master Hudson Trevor", "age": "11m", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113781; £151 16s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/trevor-allison.html" }, { "nm": "ALLISON, Miss Helen Loraine", "age": "2", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113781; £151 16s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/loraine-allison.html" }, { "nm": "ALLISON, Mr Hudson Joshua Creighton", "age": "30", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113781; £151 16s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hudson-joshua-creighton.html" }, { "nm": "ALLISON, Mrs Bessie Waldo", "age": "25", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113781; £151 16s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bessie-waldo-allison.html" }, { "nm": "ALLSOP, Mr Alfred Samuel", "age": "34", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Electrician", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-samuel-allsop.html" }, { "nm": "ALLSOP, Mr Frank Richard", "age": "41", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-richard-allsop.html" }, { "nm": "ALLUM, Mr Owen George", "age": "15", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Gardener", "tck": "2223; £8 6s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/owen-george-allum.html" }, { "nm": "ANDERSEN, Mr Albert Karvin", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "4001; £22 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-karvin-andersen.html" }, { "nm": "ANDERSEN-JENSEN, Miss Carla Christine Nielsine", "age": "19", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350046; £7 17s 1d", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/carla-jensen.html" }, { "nm": "ANDERSON, Mr Harry", "age": "47", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Stockbroker", "tck": "19952; £26 11s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harry-anderson.html" }, { "nm": "ANDERSON, Mr James", "age": "40", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-anderson.html" }, { "nm": "ANDERSON, Mr Walter J.", "age": "48", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-anderson.html" }, { "nm": "ANDERSSON, Master Sigvard Harald Elias", "age": "4", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sigvard-harald-elias-andersson.html" }, { "nm": "ANDERSSON, Miss Ebba Iris Alfrida", "age": "6", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ebba-iris-alfrida-andersson.html" }, { "nm": "ANDERSSON, Miss Ellis Anna Maria", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ellis-anna-maria-andersson.html" }, { "nm": "ANDERSSON, Miss Erna Alexandra", "age": "17", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101281; £7 18s 6d", /* This is a second comment */ "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/erna-andersson.html" }, { "nm": "ANDERSSON, Miss Ida Augusta Margareta", "age": "38", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347091; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ida-augusta-margareta-andersson.html" }, { "nm": "ANDERSSON, Miss Ingeborg Constanzia", "age": "9", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ingeborg-constanzia-andersson.html" }, { "nm": "ANDERSSON, Miss Sigrid Elisabeth", "age": "11", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sigrid-elisabeth-andersson.html" }, { "nm": "ANDERSSON, Mr Anders Johan", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anders-andersson.html" }, { "nm": "ANDERSSON, Mr Johan Samuel", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347075; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-samuel-andersson.html" }, { "nm": "ANDERSSON, Mrs Alfrida Konstantia Brogren", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347082; £31 5s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfrida-konstantia-brogren-andersson.html" }, { "nm": "ANDREASSON, Mr Paul Edvin", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347466; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/paul-edvin-andreasson.html" }, { "nm": "ANDREW, Mr Edgar Samuel", "age": "17", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "231945; £11 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edgar-samuel-andrew.html" }, { "nm": "ANDREW, Mr Frank Thomas", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "34050; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-thomas-andrew.html" }, { "nm": "ANDREWS, Miss Kornelia Theodosia", "age": "62", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13502; £77 19s 2d", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/kornelia-theodosia-andrews.html" }, { "nm": "ANDREWS, Mr Archibald", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/archibald-andrews.html" }, { "nm": "ANDREWS, Mr Charles Edward", "age": "19", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-edward-andrews.html" }, { "nm": "ANDREWS, Mr Thomas", "age": "39", "st": "Victim", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Shipbuilder", "tck": "112050", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-andrews.html" }, { "nm": "ANGHELOFF, Mr Minko", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349202; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/minko-angheloff.html" }, { "nm": "ANGLE, Mr William A.", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "226875; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-angle.html" }, { "nm": "ANGLE, Mrs Florence (Mary) Agnes", "age": "36", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "226875; £26", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/florence-angle.html" }, { "nm": "APPLETON, Mrs Charlotte", "age": "53", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11769; £51 9s 7d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charlotte-appleton.html" }, { "nm": "ARCHER, Mr Ernest Edward", "age": "36", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ernest-edward-archer.html" }, { "nm": "ARMSTRONG, Mr James", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-armstrong.html" }, { "nm": "ARNOLD-FRANCHI, Mr Josef", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349237; £17 16s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/josef-arnold-franchi.html" }, { "nm": "ARNOLD-FRANCHI, Mrs Josefine", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349237; £17 16s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/josefine-arnold-franchi.html" }, { "nm": "ARONSSON, Mr Ernst Axel Algot", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349911; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernst-axel-algot-aronsson.html" }, { "nm": "ARTAGAVEYTIA, Mr Ramon", "age": "71", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17609; £49 10s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ramon-artagaveytia.html" }, { "nm": "ASHBY, Mr John", "age": "57", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244346; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-ashby.html" }, { "nm": "ASHCROFT, Mr Austin Aloysius", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/austin-aloysius-ashcroft.html" }, { "nm": "ASHE, Mr Henry Wellesley", "age": "41", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Glory hole steward (3rd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-wellesley-ashe.html" }, { "nm": "ASIM, Mr Adola", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101310; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/adola-asim.html" }, { "nm": "ASPESLAGH, Mr Georges", "age": "26", // This is a comment "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Plateman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/georges-aspeslagh.html" }, { "nm": "ASPLUND, Master Carl Edgar", "age": "5", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/carl-edgar-asplund.html" }, { "nm": "ASPLUND, Master Clarence Gustaf Hugo", "age": "9", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/clarence-gustaf-hugo-asplund.html" }, { "nm": "ASPLUND, Master Edvin Rojj Felix", "age": "3", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edvin-rojj-felix-asplund.html" }, { "nm": "ASPLUND, Master Filip Oscar", "age": "13", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/filip-oscar-asplund.html" }, { "nm": "ASPLUND, Miss Lillian Gertrud", "age": "5", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lillian-gertrud-asplund.html" }, { "nm": "ASPLUND, Mr Carl Oscar Vilhelm Gustafsson", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/carl-asplund.html" }, { "nm": "ASPLUND, Mr Johan Charles", "age": "23", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350054; £7 15s 11d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/johan-charles-asplund.html" }, { "nm": "ASPLUND, Mrs Selma Augusta Emilia", "age": "38", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347077; £31 7s 9d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/selma-augusta-emilia-asplund.html" }, { "nm": "ASSAF, Mrs Mariana", "age": "45", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2696; £7 4s 6d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mariana-assaf.html" }, { "nm": "ASSAM, Mr Ali", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101309; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ali-assam.html" }, { "nm": "ASTOR, Colonel John Jacob", "age": "47", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Property Developer / Real Estate", "tck": "17757; £247 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-jacob-astor.html" }, { "nm": "ASTOR, Mrs Madeleine Talmage", "age": "18", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17757; £247 10s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/madeleine-talmage-astor.html" }, { "nm": "ATTALA, Mr Sleiman", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Journalist", "tck": "2694; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sleiman-attala.html" }, { "nm": "ATTALAH, Miss Malake", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2627; £14 9s 2d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/malake-attalah.html" }, { "nm": "AUBART, Mme. Léontine Pauline", "age": "24", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Singer", "tck": "17477; £69 6s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/leontine-pauline-aubart.html" }, { "nm": "AUGUSTSSON, Mr Albert", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347468; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-augustsson.html" }, { "nm": "AULD, Mr James", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-auld.html" }, { "nm": "AVERY, Mr James Albert", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-frank-avery.html" }, { "nm": "AYLING, Mr Edwin George", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Vegetable Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-edwin-ayling.html" }, { "nm": "AYOUB DAHER, Miss Banoura", "age": "15", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2687; £7 4s 7d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/banoura-ayoub-daher.html" }, { "nm": "BACCOS, Mr Raffull", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2679; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/raffull-baccos.html" }, { "nm": "BACK, Mr Charles Frederick", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Lounge Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-frederick-back.html" }, { "nm": "BACKSTRöM, Mr Karl Alfred", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101278; £15 17s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-alfred-backstrom.html" }, { "nm": "BACKSTRöM, Mrs Maria Mathilda", "age": "33", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101278; £15 17s", /* This is a second comment */ "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maria-mathilda-backstrom.html" }, { "nm": "BACLINI, Miss Eugenie", "age": "3", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2666; £19 5s 2d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eugenie-baclini.html" }, { "nm": "BACLINI, Miss Helene Barbara", "age": "9m", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2666; £19 5s 2d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helene-baclini.html" }, { "nm": "BACLINI, Miss Marie Catherine", "age": "5", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2666; £19 5s 2d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marie-baclini.html" }, { "nm": "BACLINI, Mrs Latifa", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2666; £19 5s 2d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/latifa-baclini.html" }, { "nm": "BADMAN, Miss Emily Louisa", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "31416; £8 1s", /* This is a second comment */ "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-badman.html" }, { "nm": "BADT, Mr Mohamed", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farmer", "tck": "2623; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mohamed-badt.html" }, { "nm": "BAGGOTT, Mr Allen Marden", "age": "28", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/allen-marden-baggott.html" }, { "nm": "BAGLEY, Mr Edward Henry", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-ernest-bagley.html" }, { "nm": "BAILEY, Mr George Francis", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-francis-bailey.html" }, { "nm": "BAILEY, Mr George W.", "age": "46", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-bailey.html" }, { "nm": "BAILEY, Mr Henry Joseph", "age": "43", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Master-at-arms", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joseph-henry-bailey.html" }, { "nm": "BAILEY, Mr Percy", "age": "15", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Butcher's Assistant", "tck": "29108; £11 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-andrew-bailey.html" }, { "nm": "BAILEY, Mr William", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-bailey.html" }, { "nm": "BAIN, Mr David", "age": "46", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-bain.html" }, { "nm": "BAINBRIGGE, Mr Charles Robert", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Horse Trainer", "tck": "31030; £10 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-robert-bainbrigge.html" }, { "nm": "BAINES, Mr Richard", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-baines.html" }, { "nm": "BAKER (?BARKER), Mr John", "age": "", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-baker-barker.html" }, { "nm": "BALKIC, Mr Cerin", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349248; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/cerin-balkic.html" }, { "nm": "BALL, Mr Percy", "age": "19", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/percy-ball.html" }, { "nm": "BALL, Mrs Ada E.", "age": "36", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28551; £13", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ada-ball.html" }, { "nm": "BANFI, Sig. Ugo", "age": "24", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ugo-banfi.html" }, { "nm": "BANFIELD, Mr Frederick James", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "34068; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-james-banfield.html" }, { "nm": "BANNON, Mr John Joseph", "age": "34", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-bannon.html" }, { "nm": "BANSKI, Mrs Mara", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349244; £8 13s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mara-banski.html" }, { "nm": "BARBARA, Miss Saiide", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Housekeeper", "tck": "2691; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/saiide-barbara.html" }, { "nm": "BARBARA, Mrs Catherine David", "age": "45", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Housekeeper", "tck": "2691; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catherine-david-barbara.html" }, { "nm": "BARBER, Miss Ellen Mary", "age": "26", // This is a comment "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "19877; £78 17s", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-nellie-barber.html" }, { "nm": "BARKER, Mr Albert Vale", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-vale-barker.html" }, { "nm": "BARKER, Mr Ernest Thomas", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-barker.html" }, { "nm": "BARKER, Mr George", "age": "56", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/george-barker.html" }, { "nm": "BARKER, Mr George", "age": "46", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/able-seaman-george-barker.html" }, { "nm": "BARKER, Mr Reginald Lomond", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Purser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-lomond-barker.html" }, { "nm": "BARKER, Mr Stokes", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/stokes-barker.html" }, { "nm": "BARKLEY, Mr Robert", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-barkley.html" }, { "nm": "BARKWORTH, Mr Algernon Henry", "age": "47", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Justice of the Peace", "tck": "27042; £30", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/algernon-barkworth.html" }, { "nm": "BARLOW, Mr Charles", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-barlow.html" }, { "nm": "BARLOW, Mr George", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-barlow.html" }, { "nm": "BARNES, Mr Charles", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-barnes.html" }, { "nm": "BARNES, Mr Frederick", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/baker-frederick-barnes.html" }, { "nm": "BARNES, Mr J.", "age": "41", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-barnes.html" }, { "nm": "BARNES, Mr William", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-barnes.html" }, { "nm": "BARRATT, Mr Arthur", "age": "15", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bell Boy", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-barratt.html" }, { "nm": "BARRETT, Mr Frederick", "age": "28", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-barrett.html" }, { "nm": "BARRETT, Mr Frederick William", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-william-barrett.html" }, { "nm": "BARRINGER, Mr Arthur William", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-william-barringer.html" }, { "nm": "BARROW, Mr Harry", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-barrow.html" }, { "nm": "BARROWS, Mr William", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-barrows.html" }, { "nm": "BARRY, Miss Julia", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Housekeeper", "tck": "330844; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/julia-barry.html" }, { "nm": "BARRY, Mr James", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-barry.html" }, { "nm": "BARTLEY, Mr Joseph", "age": "32", "st": "Unknown", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Room Attendant", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-bartley.html" }, { "nm": "BARTLEY, Mr Robert", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-bartley.html" }, { "nm": "BARTON, Mr David John", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "324669; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-john-barton.html" }, { "nm": "BARTON, Mr Sidney John", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-john-barton.html" }, { "nm": "BASILICO, Sig. Giovanni", "age": "27", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giovanni-basilico.html" }, { "nm": "BATEMAN, Fr Robert James", "age": "51", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "1166; £12 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-james-bateman.html" }, { "nm": "BAUMANN, Mr John D.", "age": "60", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17318; £25 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-d-baumann.html" }, { "nm": "BAXTER, Mr Harry Ross", "age": "53", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-ross-baxter.html" }, { "nm": "BAXTER, Mr Quigg Edmond", "age": "24", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17558; £247 10s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/quigg-baxter.html" }, { "nm": "BAXTER, Mr Thomas Ferguson", "age": "55", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Linen Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-ferguson-baxter.html" }, { "nm": "BAXTER, Mrs Hélène", "age": "50", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17558; £247 10s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helene-baxter.html" }, { "nm": "BAZZANI, Mrs Albina", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "11813; £76 5s 10d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albina-bazzani.html" }, { "nm": "BAZZI, Sig. Narciso", "age": "33", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/narciso-bazzi.html" }, { "nm": "BEANE, Mr Edward", "age": "32", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2908; £26", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-beane.html" }, { "nm": "BEANE, Mrs Ethel", "age": "19", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2908; £26", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ethel-beane.html" }, { "nm": "BEATTIE, Mr Francis", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/francis-beattie.html" }, { "nm": "BEATTIE, Mr Joseph", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-beattie.html" }, { "nm": "BEATTIE, Mr Thomson", "age": "36", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Landowner", "tck": "13050; £75 4s 10d", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomson-beattie.html" }, { "nm": "BEAUCHAMP, Mr George William", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-william-beauchamp.html" }, { "nm": "BEAUCHAMP, Mr Henry James", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244358; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-james-beauchamp.html" }, { "nm": "BEAVAN, Mr William Thomas", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "323951; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thomas-beavan.html" }, { "nm": "BECKER, Master Richard F.", "age": "1", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230136; £39", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/richard-becker.html" }, { "nm": "BECKER, Miss Marion Louise", "age": "4", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230136; £39", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marion-louise-becker.html" }, { "nm": "BECKER, Miss Ruth Elizabeth", "age": "12", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230136; £39", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ruth-elizabeth-becker.html" }, { "nm": "BECKER, Mrs Nellie E.", "age": "35", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230136; £39", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nellie-becker.html" }, { "nm": "BECKWITH, Mr Richard Leonard", "age": "37", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11751; £52 11s 1d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/richard-leonard-beckwith.html" }, { "nm": "BECKWITH, Mrs Sallie", "age": "46", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11751; £52 11s 1d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sallie-beckwith.html" }, { "nm": "BEDFORD, Mr William Barnett", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Roast Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-barnet-bedford.html" }, { "nm": "BEEDEM, Mr George Arthur", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-arthur-beedem.html" }, { "nm": "BEERE, Mr William", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Kitchen Porter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-beere.html" }, { "nm": "BEESLEY, Mr Lawrence", "age": "34", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Teacher", "tck": "248698; £13", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lawrence-beesley.html" }, { "nm": "BEHR, Mr Karl Howell", "age": "26", // This is a comment "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "111369; £30", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/karl-howell-behr.html" }, { "nm": "BELL, Mr Joseph", "age": "50", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Chief Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-bell.html" }, { "nm": "BENDELL, Mr Frank", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-bendell.html" }, { "nm": "BENGTSSON, Mr Johan Viktor", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347068; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-viktor-bengtsson.html" }, { "nm": "BENHAM, Mr Fred John", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-benham.html" }, { "nm": "BENNETT, Mr George Alfred", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-alfred-bennett.html" }, { "nm": "BENNETT, Mrs Mabel", "age": "33", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mabel-bennett.html" }, { "nm": "BENSON, Mr James", "age": "50", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-benson.html" }, { "nm": "BENSON, Mr John", "age": "26", // This is a comment "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-benson.html" }, { "nm": "BENSON, Mr William", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-benson.html" }, { "nm": "BENTHAM, Miss Lillian W.", "age": "19", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28404; £13", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lillian-bentham.html" }, { "nm": "BENVILLE, Mr Edward", "age": "47", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/e-benville.html" }, { "nm": "BERGLUND, Mr Karl Ivar Sven", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "4348; £9 7s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-ivar-sven-berglund.html" }, { "nm": "BERNARDI, Sig. Battista", "age": "22", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/battista-bernardi.html" }, { "nm": "BERRIMAN, Mr William John", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28425; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-berriman.html" }, { "nm": "BESSANT, Mr Edward", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "1st class baggage steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-bessant.html" }, { "nm": "BESSANT, Mr William Edward Lowe", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-bessant.html" }, { "nm": "BESSETTE, Miss Nellie Mayo", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17760; £63 7s 2d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nellie-bessette.html" }, { "nm": "BEST, Mr Edwin Alfred", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edwin-alfred-best.html" }, { "nm": "BETROS, Mr Tannous", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Shoemaker", "tck": "2648; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tannous-betros.html" }, { "nm": "BEUX, Mr David", "age": "26", // This is a comment "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-beux.html" }, { "nm": "BEVIS, Mr Joseph Henry", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-henry-bevis.html" }, { "nm": "BIDDLECOMBE, Mr Reginald Charles", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-biddlecombe.html" }, { "nm": "BIDOIS, Miss Rosalie", "age": "46", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17757; £247 10s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/rosalie-bidois.html" }, { "nm": "BIETRIX, Mr George Baptiste", "age": "28", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-baptiste-bietrix.html" }, { "nm": "BIGGS, Mr Edward Charles", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-charles-biggs.html" }, { "nm": "BILLOWS, Mr James", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-billow.html" }, { "nm": "BING, Mr Lee", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lee-bing.html" }, { "nm": "BINSTEAD, Mr Walter William", "age": "20", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-binstead.html" }, { "nm": "BIRD, Miss Ellen", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "17483; £221 15s 7d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-bird.html" }, { "nm": "BIRKELAND, Mr Hans Martin Monsen", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "312992; £7 15s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hans-martin-monsen-birkeland.html" }, { "nm": "BIRNBAUM, Mr Jakob", "age": "24", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13905; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jakob-birnbaum.html" }, { "nm": "BISHOP, Mr Dickinson H.", "age": "25", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11967; £91 1s 7d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/dickinson-bishop.html" }, { "nm": "BISHOP, Mr Walter Alexander", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-alexander-bishop.html" }, { "nm": "BISHOP, Mrs Helen", "age": "19", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11967; £91 1s 7d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helen-bishop.html" }, { "nm": "BITTLE, Mr Robert", "age": "37", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-bittle.html" }, { "nm": "BJöRKLUND, Mr Ernst Herbert", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347090; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernst-herbert-bjorklund.html" }, { "nm": "BJöRNSTRöM-STEFFANSSON, Mr Mauritz Hokan", "age": "28", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "110564; £26 11s", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mauritz-hakan-bjornstrom-steffansson.html" }, { "nm": "BLACK, Mr Alexander", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-black.html" }, { "nm": "BLACK, Mr D.", "age": "41", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/d-black.html" }, { "nm": "BLACK, Mr James", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-black.html" }, { "nm": "BLACKMAN, Mr Albert Edward", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-blackman.html" }, { "nm": "BLACKWELL, Mr Stephen Weart", "age": "45", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113784; £35 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stephen-weart-blackwell.html" }, { "nm": "BLAIR, Mr David", "age": "37", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Second Officer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-blair.html" }, { "nm": "BLAKE, Mr Percival Albert", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/percival-albert-blake.html" }, { "nm": "BLAKE, Mr Seaton", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Mess Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/seaton-blake.html" }, { "nm": "BLAKE, Mr Thomas", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-blake.html" }, { "nm": "BLANEY, Mr James", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-blaney.html" }, { "nm": "BLANK, Mr Henry", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Jeweller", "tck": "112277; £31", /* This is a second comment */ "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-blank.html" }, { "nm": "BLANN, Mr Eustace Horatius", "age": "21", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eustace-horatius-blann.html" }, { "nm": "BLISS, Mrs Emma", "age": "45", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emma-bliss.html" }, { "nm": "BLOOMER, Mr James", "age": "40", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-bloomer.html" }, { "nm": "BLUMET, Mr Jean Baptiste", "age": "26", // This is a comment "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Pantryman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jean-baptiste-blumet.html" }, { "nm": "BOAL, Mr John", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-boal.html" }, { "nm": "BOCHATAY, Mr Alexis Joseph", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Chef", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexis-joseph-bochatay.html" }, { "nm": "BOCHET, Mr Pierre Giuseppe", "age": "", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pierre-giuseppe-bochet.html" }, { "nm": "BOGIE, Mr Norman Leslie", "age": "59", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/norman-leslie-bogie.html" }, { "nm": "BOLHUIS, Mr Hendrik", "age": "27", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Larder Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hendrik-bolhuis.html" }, { "nm": "BOND, Mr William John", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-bond.html" }, { "nm": "BONNELL, Miss Caroline", "age": "30", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "36928; £164 17s 4d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/caroline-bonnell.html" }, { "nm": "BONNELL, Miss Elizabeth", "age": "61", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113783; £26 11s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-bonnell.html" }, { "nm": "BOOTHBY, Mr Walter Thomas", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-boothby.html" }, { "nm": "BOREBANK, Mr John James", "age": "42", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Property Developer / Real Estate", "tck": "110489; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-james-borebank.html" }, { "nm": "BOSTANDYEFF, Mr Guentcho", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349224; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/guentcho-bostandyeff.html" }, { "nm": "BOSTON, Mr William John", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Deck Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-boston.html" }, { "nm": "BOTSFORD, Mr William Hull", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "237670; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-hull-botsford.html" }, { "nm": "BOTT, Mr William Thomas", "age": "44", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-bott.html" }, { "nm": "BOUGHTON, Mr Bernard John", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "First class saloon steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/b-boughton.html" }, { "nm": "BOULOS, Master Akar", "age": "9", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2678; £15 4s 11d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/akar-boulos.html" }, { "nm": "BOULOS, Miss Nourelain", "age": "7", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2678; £15 4s 11d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nourelain-boulos.html" }, { "nm": "BOULOS, Mrs Sultana", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2678; £15 4s 11d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sultana-boulos.html" }, { "nm": "BOURKE, Miss Mary", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "364848; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-bourke.html" }, { "nm": "BOURKE, Mr John", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farmer", "tck": "364849; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-bourke.html" }, { "nm": "BOURKE, Mrs Catherine", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Housewife", "tck": "364849; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catherine-bourke.html" }, { "nm": "BOWEN, Miss Grace Scott", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Governess", "tck": "17608; £262 7s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/grace-scott-bowen.html" }, { "nm": "BOWEN, Mr David John (Dai)", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Pugilist", "tck": "54636; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-john-dai-bowen.html" }, { "nm": "BOWENUR, Mr Solomon", "age": "42", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Merchant", "tck": "211535; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/solomon-bowenur.html" }, { "nm": "BOWERMAN, Miss Elsie Edith", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113505; £55", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elsie-edith-bowerman.html" }, { "nm": "BOWKER, Miss Ruth", "age": "27", "st": "Survivor", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Cashier", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ruth-bowker.html" }, { "nm": "BOXHALL, Mr Joseph Groves", "age": "28", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "4th. Officer", "tck": "", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joseph-groves-boxhall.html" }, { "nm": "BOYD, Mr Adam", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/adam-boyd.html" }, { "nm": "BOYD, Mr John", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-boyd.html" }, { "nm": "BOYES, Mr John Henry", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-henry-boyes.html" }, { "nm": "BRACKEN, Mr James H.", "age": "29", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Stockman", "tck": "220367; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-bracken.html" }, { "nm": "BRADLEY, Miss Bridget Delia", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "334914; £7 14s 6d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bridget-delia-bradley.html" }, { "nm": "BRADLEY, Mr Patrick Joseph", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-joseph-bradley.html" }, { "nm": "BRADLEY, Mr T.", "age": "29", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/t-bradley.html" }, { "nm": "BRADSHAW, Mr J. A.", "age": "43", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-bradshaw.html" }, { "nm": "BRADY, Mr John Bertram", "age": "41", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113054; £30 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-bertram-brady.html" }, { "nm": "BRAF, Miss Elin Ester Maria", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "347471; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elin-ester-maria-braf.html" }, { "nm": "BRAILEY, Mr W. Theodore Ronald", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/theodore-ronald-brailey.html" }, { "nm": "BRAND, Mr", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "8; £1 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/brand.html" }, { "nm": "BRANDEIS, Mr Emil", "age": "48", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17591; £50 9s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emil-brandeis.html" }, { "nm": "BRAUND, Mr Lewis Richard", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "3460; £7 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lewis-richard-braund.html" }, { "nm": "BRAUND, Mr Owen Harris", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Ironmonger", "tck": "21171; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/owen-harris-braund.html" }, { "nm": "BRENNAN, Mr Thomas", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-brennan.html" }, { "nm": "BRERETON, Mr George Andrew", "age": "37", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "111427; £26 11s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-brereton.html" }, { "nm": "BREWE, Dr Arthur Jackson", "age": "45", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "112379; £39 12s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-jackson-brewe.html" }, { "nm": "BREWER, Mr Henry (Harry)", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-harry-brewer.html" }, { "nm": "BREWSTER, Mr George H.", "age": "48", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-brewster.html" }, { "nm": "BRIANT, Mr Albert", "age": "34", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-briant.html" }, { "nm": "BRICE, Mr Walter T", "age": "42", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-brice.html" }, { "nm": "BRICOUX, Mr Roger Marie", "age": "20", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roger-bricoux.html" }, { "nm": "BRIDAN, Mr William", "age": "33", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-bridan.html" }, { "nm": "BRIDE, Mr Harold Sydney", "age": "22", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Telegraphist", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harold-sydney-bride.html" }, { "nm": "BRIGHT, Mr Arthur John", "age": "42", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Quartermaster", "tck": "", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/arthur-john-bright.html" }, { "nm": "BRISTOW, Mr Harry", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-bristow.html" }, { "nm": "BRISTOW, Mr Robert Charles", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-charles-bristow.html" }, { "nm": "BRITO, Mr José Joaquim de", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244360; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jose-joaquim-de-brito.html" }, { "nm": "BROBECK, Mr Karl Rudolf", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "350045; £7 15s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-rudolf-brobeck.html" }, { "nm": "BROCKLEBANK, Mr William Alfred", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Groom", "tck": "364512; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-alfred-brocklebank.html" }, { "nm": "BROOKMAN, Mr John Cress", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-brookman.html" }, { "nm": "BROOKS, Mr J.", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-brooks.html" }, { "nm": "BROOM, Mr Herbert George", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bath Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-broom.html" }, { "nm": "BROOME, Mr Athol Frederick", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Verandah Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/athol-frederick-broome.html" }, { "nm": "BROWN, Miss Amelia Mary", "age": "18", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Cook (Personal)", "tck": "248733; £13", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mildred-brown.html" }, { "nm": "BROWN, Miss Edith Eileen", "age": "15", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Scholar", "tck": "29750; £39", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edith-haisman.html" }, { "nm": "BROWN, Mr Edward", "age": "34", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-brown.html" }, { "nm": "BROWN, Mr John", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-brown.html" }, { "nm": "BROWN, Mr Joseph James", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-james-brown.html" }, { "nm": "BROWN, Mr Thomas William Solomon", "age": "60", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Hotelier", "tck": "29750; £39", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-william-solomon-brown.html" }, { "nm": "BROWN, Mr Walter James", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-james-brown.html" }, { "nm": "BROWN, Mrs Caroline Lane", "age": "59", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11769; £51 9s 7d", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/caroline-lane-brown.html" }, { "nm": "BROWN, Mrs Elizabeth Catherine", "age": "40", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29750; £39", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-catherine-brown.html" }, { "nm": "BROWN, Mrs Margaret", "age": "44", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17610; £27 14s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/molly-brown.html" }, { "nm": "BROWNE, Rev Francis M.", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "37-A; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/francis-browne.html" }, { "nm": "BRYAN, Mr John", "age": "22", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-bryan.html" }, { "nm": "BRYHL, Miss Dagmar Jenny Ingeborg", "age": "20", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "236853; £26", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/dagmar-bryhl.html" }, { "nm": "BRYHL, Mr Kurt Arnold Gottfrid", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "236853; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/kurt-arnold-gottfrid-bryhl.html" }, { "nm": "BUCKLEY, Miss Katherine", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "329944; £7 5s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/katherine-buckley.html" }, { "nm": "BUCKLEY, Mr Daniel", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "330920; £7 15s 17d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/daniel-buckley.html" }, { "nm": "BUCKLEY, Mr H. E.", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Vegetable Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-buckley.html" }, { "nm": "BUCKNELL, Mrs Emma Eliza", "age": "59", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11813; £76 5s 10d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emma-bucknell.html" }, { "nm": "BULEY, Mr Edward John", "age": "26", // This is a comment "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-john-buley.html" }, { "nm": "BULL, Mr W.", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-bull.html" }, { "nm": "BULLEY, Mr Henry Ashburnham", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Boots Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-ashburnham-bulley.html" }, { "nm": "BUNNELL, Mr Wilfred James", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Plate Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wilfred-bunnell.html" }, { "nm": "BURGESS, Mr Charles Reginald", "age": "18", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Extra 3rd. Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-reginald-burgess.html" }, { "nm": "BURKE, Mr Jeremiah", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "365222; £6 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jeremiah-burke.html" }, { "nm": "BURKE, Mr Richard Edward", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Lounge Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-edward-burke.html" }, { "nm": "BURKE, Mr William", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-burke.html" }, { "nm": "BURNESS, Mr Frank", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/frank-burness.html" }, { "nm": "BURNS, Miss Elizabeth Margaret", "age": "41", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Nursemaid", "tck": "16966; £134 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-burns.html" }, { "nm": "BURNS, Miss Mary Delia", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330963; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-delia-burns.html" }, { "nm": "BURNS, Mr John", "age": "32", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-burns.html" }, { "nm": "BURNS, Mr William", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-burns.html" }, { "nm": "BURR, Mr Ewart Sydenham", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ewart-sydenham-burr.html" }, { "nm": "BURRAGE, Mr Arthur Victor Edwards", "age": "20", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-burrage.html" }, { "nm": "BURROUGHS, Mr Arthur Peckham", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-burroughs.html" }, { "nm": "BURTON, Mr Edward John", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-john-burton.html" }, { "nm": "BUSS, Miss Kate", "age": "36", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "27849; £13", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/kate-buss.html" }, { "nm": "BUTLER, Mr Reginald Fenton", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Mechanical Engineer", "tck": "234686; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-fenton-butler.html" }, { "nm": "BUTT, Major Archibald Willingham", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Military", "tck": "113050; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/archibald-butt.html" }, { "nm": "BUTT, Mr Robert Henry", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-henry-butt.html" }, { "nm": "BUTT, Mr William John", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-butt.html" }, { "nm": "BUTTERWORTH, Mr John", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-butterworth.html" }, { "nm": "BYLES, Fr Thomas Roussel Davids", "age": "42", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "244310; £13", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/fr-byles.html" }, { "nm": "BYRNE, Mr J. E.", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-byrne.html" }, { "nm": "BYSTRöM, Mrs Karolina", "age": "40", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "236852; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/karolina-bystrom.html" }, { "nm": "CACIC, Miss Manda", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "315087; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/manda-cacic.html" }, { "nm": "CACIC, Miss Marija", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "315084; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marija-cacic.html" }, { "nm": "CACIC, Mr Jego Grga", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315091; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jego-grga-cacic.html" }, { "nm": "CACIC, Mr Luka", "age": "38", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315089; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/luka-cacic.html" }, { "nm": "CAIRNES, Mr Robert", "age": "50", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-cairnes.html" }, { "nm": "CAIRNS, Mr Alexander Milne", "age": "28", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "113798; £31", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-cairns.html" }, { "nm": "CALDERHEAD, Mr Edward Pennington", "age": "42", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17476; £26 5s 9d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-pennington-calderhead.html" }, { "nm": "CALDERWOOD, Mr Hugh", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hugh-calderwood.html" }, { "nm": "CALDWELL, Master Alden Gates", "age": "10m", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248738; £29", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alden-gates-caldwell.html" }, { "nm": "CALDWELL, Mr Albert Francis", "age": "26", // This is a comment "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248738; £29", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-caldwell.html" }, { "nm": "CALDWELL, Mrs Sylvia Mae", "age": "28", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248738; £29", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sylvia-caldwell.html" }, { "nm": "CALIC, Mr Jovo", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315093; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jovo-calic.html" }, { "nm": "CALIC, Mr Petar", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "315086; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/petar-calic.html" }, { "nm": "CAMERON, Miss Clear Annie", "age": "35", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "13528; £21", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/clear-cameron.html" }, { "nm": "CAMPBELL, Mr Donald S.", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/donald-campbell.html" }, { "nm": "CAMPBELL, Mr William Henry", "age": "21", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Belfast", "ch": "", "tck": "239853", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-campbell.html" }, { "nm": "CANAVAN, Miss Mary", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "364846; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-canavan.html" }, { "nm": "CANAVAN, Mr Patrick", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "364858; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-canavan.html" }, { "nm": "CANDEE, Mrs Helen Churchill", "age": "52", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17606; £27 8s 11d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helen-churchill-candee.html" }, { "nm": "CANN, Mr Ernest Charles", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "2152; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-charles-cann.html" }, { "nm": "CANNER, Mr John", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-canner.html" }, { "nm": "CARAM, Mr Joseph", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Merchant", "tck": "2689; £14 9s 2d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-caram.html" }, { "nm": "CARAM, Mrs Maria Elias", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Housekeeper", "tck": "2689; £14 9s 2d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/maria-elias-caram.html" }, { "nm": "CARBINES, Mr William", "age": "19", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "28424; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-carbines.html" }, { "nm": "CARDEZA, Mr Thomas Drake Martinez", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Gentleman", "tck": "17755; £512 6s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-cardeza.html" }, { "nm": "CARDEZA, Mrs Charlotte Wardle", "age": "58", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17755; £512 6s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charlotte-cardeza.html" }, { "nm": "CARDWELL, Mr John", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-cardwell.html" }, { "nm": "CARLSSON, Mr August Sigfrid", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "350042; £7 15s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/august-sigfrid-carlsson.html" }, { "nm": "CARLSSON, Mr Carl Robert", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "350409; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/carl-robert-carlsson.html" }, { "nm": "CARLSSON, Mr Frans Olof", "age": "33", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "695; £5", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frans-olof-carlsson.html" }, { "nm": "CARNEY, Mr William", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Lift Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-carney.html" }, { "nm": "CARR, Miss Jane", "age": "45", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "368364; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jane-carr.html" }, { "nm": "CARR, Mr Richard Stephen", "age": "37", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-stephen-carr.html" }, { "nm": "CARRAU, Mr Francisco Mauro Severiano", "age": "27", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113059; £47 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francisco-carrau.html" }, { "nm": "CARRAú-ESTEVES, Mr José Pedro", "age": "17", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113059; £47 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jose-pedro-carrau.html" }, { "nm": "CARRUTHERS, Mr Francis", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Civil Servant", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/francis-carruthers.html" }, { "nm": "CARSON, Mr James", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-carson.html" }, { "nm": "CARTER (BALL), Mr James (W.)", "age": "46", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-carter-ball.html" }, { "nm": "CARTER, Fr Ernest Courtenay", "age": "54", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "244252; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-courtenay-carter.html" }, { "nm": "CARTER, Master William Thornton II", "age": "11", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113760; £120", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-thornton-carter.html" }, { "nm": "CARTER, Miss Lucile Polk", "age": "13", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113760; £120", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lucile-polk-carter.html" }, { "nm": "CARTER, Mr William Ernest", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113760; £120", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-carter.html" }, { "nm": "CARTER, Mrs Lilian", "age": "45", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244252; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lilian-carter.html" }, { "nm": "CARTER, Mrs Lucile", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113760; £120", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lucile-carter.html" }, { "nm": "CARTWRIGHT, Mr James Edward", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-edward-cartwright.html" }, { "nm": "CARVER, Mr Alfred John", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "370160; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-john-carver.html" }, { "nm": "CASALI, Sig. Giulio", "age": "32", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giulio-casali.html" }, { "nm": "CASE, Mr Howard Brown", "age": "49", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19924; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/howard-case.html" }, { "nm": "CASEY, Mr Thomas", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/t-casey.html" }, { "nm": "CASSEBEER, Mrs Eleanor Genevieve", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17770; £27 14s 5d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eleanor-cassebeer.html" }, { "nm": "CASSIDY, Mr William J.", "age": "", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-cassidy.html" }, { "nm": "CASSWILL, Mr Charles", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-casswill.html" }, { "nm": "CASTLEMAN, Mr Edward", "age": "37", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-castleman.html" }, { "nm": "CATON, Miss Annie", "age": "33", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Turkish Bath Stewardess", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-caton.html" }, { "nm": "CAUNT, Mr William Ewart", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Grill Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-ewart-caunt.html" }, { "nm": "CAVE, Mr Herbert", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-cave.html" }, { "nm": "CAVELL, Mr George Henry", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-henry-cavell.html" }, { "nm": "CAVENDISH, Mr Tyrell William", "age": "36", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19877; £78 17s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tyrell-william-cavendish.html" }, { "nm": "CAVENDISH, Mrs Julia Florence", "age": "25", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19877; £78 17s", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/julia-florence-cavendish.html" }, { "nm": "CECIL, Mr Charles Thomas", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/c-cecil.html" }, { "nm": "CELOTTI, Mr Francesco", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Stoker", "tck": "343275; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francesco-celotti.html" }, { "nm": "CHABOISSON, Mr Adrien Finnin", "age": "25", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Roast Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/adrien-finnin-chaboisson.html" }, { "nm": "CHAFFEE, Mr Herbert Fuller", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "5734; £61 3s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-fuller-chaffee.html" }, { "nm": "CHAFFEE, Mrs Carrie Constance", "age": "47", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "5734; £61 3s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/carrie-constance-chaffee.html" }, { "nm": "CHAMBERS, Mr Norman Campbell", "age": "27", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113806; £53 2s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/norman-campbell-chambers.html" }, { "nm": "CHAMBERS, Mrs Bertha", "age": "32", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113806; £53 2s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertha-chambers.html" }, { "nm": "CHAPMAN, Mr Charles Henry", "age": "52", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248731; £13 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-henry-chapman.html" }, { "nm": "CHAPMAN, Mr John Henry", "age": "36", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "29037; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-henry-chapman.html" }, { "nm": "CHAPMAN, Mr Joseph Charles", "age": "32", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Boots steward, 2nd class", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joseph-charles-chapman.html" }, { "nm": "CHAPMAN, Mrs Sara Elizabeth", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29037; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sara-elizabeth-chapman.html" }, { "nm": "CHARMAN, Mr John James", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-charman.html" }, { "nm": "CHARTERS, Mr David", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "13032; £7 14s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-charters.html" }, { "nm": "CHAUDANSON, Miss Victorine", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17608; £262 7s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/victorine-chaudanson.html" }, { "nm": "CHEHAB/SHIHAB, Mr Emir Farres", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2631; £7 4s 6d", // This is a comment /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emir-farres-chehab-shihab.html" }, { "nm": "CHERRETT, Mr William Victor", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-victor-cherrett.html" }, { "nm": "CHERRY, Miss Gladys", "age": "30", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "110152; £86 10s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gladys-cherry.html" }, { "nm": "CHEVERS, Mr William", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-chevers.html" }, { "nm": "CHEVERTON, Mr William Frederick", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-cheverton.html" }, { "nm": "CHEVRé, Mr Paul Romaine Marie Léonce", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Sculptor", "tck": "17594; £29 14s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/paul-chevre.html" }, { "nm": "CHIBNALL, Mrs Edith Martha Bowerman", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "113505; £55", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edith-martha-chibnall.html" }, { "nm": "CHIP, Mr Chang", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/chang-chip.html" }, { "nm": "CHISHOLM, Mr Roderick Robert Crispin", "age": "40", "st": "Victim", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Draughtsman", "tck": "112051", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roderick-chisholm.html" }, { "nm": "CHISNALL, Mr George Alexander", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Boilermaker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-alexander-chisnall.html" }, { "nm": "CHITTY, Mr Archibald George", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/archibald-george-chitty.html" }, { "nm": "CHITTY, Mr George Henry", "age": "52", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-henry-chitty.html" }, { "nm": "CHORLEY, Mr John Henry", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-chorley.html" }, { "nm": "CHRISTMANN, Mr Emil", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Clerk", "tck": "343276; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emil-christmann.html" }, { "nm": "CHRISTMAS, Mr Herbert Harry", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-harry-christmas.html" }, { "nm": "CHRISTY, Miss Rachel Juli Cohen", "age": "25", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "237789; £30", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/rachel-julie-cohen-christy.html" }, { "nm": "CHRISTY, Mrs Alice Frances", "age": "45", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "237789; £30", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-frances-christy.html" }, { "nm": "CHRONOPOULOS, Mr Apostolos M.", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2680; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/apostolos-chronopoulos.html" }, { "nm": "CHRONOPOULOS, Mr Dimitrios M.", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2680; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/dimitrios-chronopoulos.html" }, { "nm": "CLARK, Mr Walter Miller", "age": "27", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13508; £136 15s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-miller-clark.html" }, { "nm": "CLARK, Mr William", "age": "39", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-clark.html" }, { "nm": "CLARK, Mrs Virginia Estelle", "age": "26", // This is a comment "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13508; £136 15s 7d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/virginia-clark.html" }, { "nm": "CLARKE, Mr Charles Valentine", "age": "29", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Dairy Worker", "tck": "2003; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-valentine-clarke.html" }, { "nm": "CLARKE, Mr John Frederick Preston", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-frederick-preston-clarke.html" }, { "nm": "CLARKE, Mrs Ada Maria", "age": "28", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2003; £27", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ada-maria-clarke.html" }, { "nm": "CLEAVER, Miss Alice Catherine", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Nursemaid", "tck": "113781; £151 16s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-cleaver.html" }, { "nm": "CLELAND, Mr James", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-cleland.html" }, { "nm": "CLENCH, Mr Frederick Charles", "age": "33", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-clench.html" }, { "nm": "CLENCH, Mr George James", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-clench.html" }, { "nm": "CLIFFORD, Mr George Quincy", "age": "40", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "110465; £52", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-quincy-clifford.html" }, { "nm": "COCHRANE, Mr Robert", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-cochrane.html" }, { "nm": "COE, Mr Harry", "age": "21", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-coe.html" }, { "nm": "COELHO, Mr Domingos Fernandeo", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101307; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/domingos-fernandeo-coelho.html" }, { "nm": "COFFEY, Mr John", "age": "23", "st": "Unknown", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-coffey.html" }, { "nm": "COHEN, Mr Gurshon (Gus)", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Printer / Compositor", "tck": "3540; £8 1s", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gurshon-gus-cohen.html" }, { "nm": "COLBERT, Mr Patrick", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "371109; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-colbert.html" }, { "nm": "COLEFF, Mr Satio", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349209; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/satio-coleff.html" }, { "nm": "COLEMAN, Mr Albert Edward", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-edward-coleman.html" }, { "nm": "COLEMAN, Mr John", "age": "57", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Engineers' Mess steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-coleman.html" }, { "nm": "COLERIDGE, Mr Reginald Charles", "age": "29", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Advertising Consultant", "tck": "14263; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-charles-coleridge.html" }, { "nm": "COLGAN, Mr E. Joseph", "age": "33", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/e-joseph-colgan.html" }, { "nm": "COLLANDER, Mr Erik Gustaf", "age": "27", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248740; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/erik-gustaf-collander.html" }, { "nm": "COLLETT, Mr Sidney Clarence Stuart", "age": "25", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28034; £10 10s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sidney-clarence-stuart-collett.html" }, { "nm": "COLLEY, Mr Edward Pomeroy", "age": "37", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "5727; £25 11s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-pomeroy-colley.html" }, { "nm": "COLLINS, Mr John", "age": "38", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/samuel-collins.html" }, { "nm": "COLLINS, Mr John", "age": "17", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-collins.html" }, { "nm": "COLLIS, Mr", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "7", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/collis.html" }, { "nm": "COLLYER, Miss Marjorie Charlotte (Lottie)", "age": "8", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31921; £26 5s", /* This is a second comment */ "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marjorie-collyer.html" }, { "nm": "COLLYER, Mr Harvey", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Grocer", "tck": "31921; £26 5s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harvey-collyer.html" }, { "nm": "COLLYER, Mrs Charlotte Annie", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31921; £26 5s", /* This is a second comment */ "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charlotte-annie-collyer.html" }, { "nm": "COLTCHEFF, Mr Peju", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349210; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/peju-coltcheff.html" }, { "nm": "COMBES, Mr George", "age": "34", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-combes.html" }, { "nm": "COMPTON, Miss Sara Rebecca", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17756; £83 3s 2d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sara-rebecca-compton.html" }, { "nm": "COMPTON, Mr Alexander Taylor jr", "age": "37", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17756; £83 3s 2d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-taylor-compton.html" }, { "nm": "COMPTON, Mrs Mary Eliza", "age": "64", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17756; £83 3s 2d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-eliza-compton.html" }, { "nm": "CONLON, Mr Thomas Henry", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "21332; £7 14s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-henry-conlon.html" }, { "nm": "CONNAGHTON, Mr Michael", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "335097; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/michael-connaghton.html" }, { "nm": "CONNOLLY, Miss Kate", "age": "23", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "370373; £7 15s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/kate-connolly.html" }, { "nm": "CONNOLLY, Miss Kate", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330972; £7 12s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/kate-connolly-2.html" }, { "nm": "CONNOR, Mr James", "age": "46", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-connor.html" }, { "nm": "CONNOR, Mr Thomas", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-connor.html" }, { "nm": "CONNORS, Mr Patrick", "age": "66", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "370369; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-connors.html" }, { "nm": "CONWAY, Mr Percy Walter", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/p-conway.html" }, { "nm": "COOK, Mr George", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-cook.html" }, { "nm": "COOK, Mr Jacob", "age": "43", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Wood Carver", "tck": "3536; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jacob-cook.html" }, { "nm": "COOK, Mrs Selena", "age": "22", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14266; £10 10s", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/selena-cook.html" }, { "nm": "COOMBS, Mr Charles Augustus", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/augustus-charles-coombs.html" }, { "nm": "COOPER, Mr Harry", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-cooper.html" }, { "nm": "COOPER, Mr James Edward", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-cooper.html" }, { "nm": "COPPERTHWAITE, Mr Albert Harry", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bert-copperthwaite.html" }, { "nm": "COR, Mr Bartol", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349230; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bartol-cor.html" }, { "nm": "COR, Mr Ivan", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349229; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ivan-cor.html" }, { "nm": "COR, Mr Liudevit", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349231; £7 17s 11d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/liudevit-cor.html" }, { "nm": "CORBEN, Mr Ernest Theodore", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Printer Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-theodore-corben.html" }, { "nm": "CORBETT, Mrs Irene", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "237249; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/irene-corbett.html" }, { "nm": "CORCORAN, Mr Denny", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/denny-corcoran.html" }, { "nm": "COREY, Mrs Mary Phyllis Elizabeth", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "13534; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-phyllis-elizabeth-corey.html" }, { "nm": "CORN, Mr Harry", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Upholsterer", "tck": "392090; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-corn.html" }, { "nm": "CORNAIRE, Mr Marcel Raymond André", "age": "19", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Roast Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marcel-raymond-andre-cornaire.html" }, { "nm": "CORNELL, Mrs Malvina Helen", "age": "55", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11770; £25 14s 10d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/malvina-helen-cornell.html" }, { "nm": "CORR, Miss Helen", "age": "16", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "367231; £7 15s", /* This is a second comment */ "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helen-corr.html" }, { "nm": "COSGROVE, Mr John", "age": "23", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-cosgrove.html" }, { "nm": "COSGROVE, Mr William", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-cosgrove.html" }, { "nm": "COTTERILL, Mr Henry (Harry)", "age": "20", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "29107; £11 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-cotterill.html" }, { "nm": "COTTON, Mr A.", "age": "", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/a-cotton.html" }, { "nm": "COUCH, Mr Frank", "age": "28", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-couch.html" }, { "nm": "COUCH, Mr Joseph Henry", "age": "49", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-henry-couch.html" }, { "nm": "COUPER, Mr Robert Frederick William", "age": "29", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-couper.html" }, { "nm": "COUTIN, Mr Auguste Louis", "age": "28", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Entrée Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/auguste-louis-coutin.html" }, { "nm": "COUTTS, Master Neville Leslie", "age": "3", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "37671; £15 18s", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/leslie-coutts.html" }, { "nm": "COUTTS, Master William Loch (Willie)", "age": "9", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "37671; £15 18s", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-coutts.html" }, { "nm": "COUTTS, Mrs Winnie (Minnie)", "age": "36", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "37671; £15 18s", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/winnie-coutts.html" }, { "nm": "COX, Mr William Denton", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Third class steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-denton-cox.html" }, { "nm": "COXON, Mr Daniel", "age": "59", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Dealer", "tck": "364500; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/daniel-coxon.html" }, { "nm": "COY, Mr Francis Ernest George", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior Assistant 3rd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francis-ernest-george-coy.html" }, { "nm": "CRABB, Mr Henry James", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-crabb.html" }, { "nm": "CRAFTER, Mr Frederick Horace", "age": "20", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-crafter.html" }, { "nm": "CRAFTON, Mr John Bertram", "age": "59", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113791; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-bertram-crafton.html" }, { "nm": "CRAIG, Mr David", "age": "33", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-craig.html" }, { "nm": "CRAIG, Mr John", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-craig.html" }, { "nm": "CRAWFORD, Mr Alfred George", "age": "43", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-crawford.html" }, { "nm": "CREASE, Mr Ernest James", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tinsmith", "tck": "3464; £8 3s 2d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-james-crease.html" }, { "nm": "CREESE, Mr Henry Philip", "age": "44", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Deck Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-philip-creese.html" }, { "nm": "CRIBB, Miss Laura Mae", "age": "16", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Shop Assistant", "tck": "371362; £16 2s", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/laura-mae-cribb.html" }, { "nm": "CRIBB, Mr John Hatfield", "age": "44", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Butler", "tck": "371362; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-hatfield-cribb.html" }, { "nm": "CRIMMINS, Mr James", "age": "21", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-crimmins.html" }, { "nm": "CRISP, Mr Albert Hector", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-hector-crisp.html" }, { "nm": "CRISPIN, Mr William", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Glory Hole Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-crispin.html" }, { "nm": "CROSBIE, Mr John Borthwick", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Turkish Bath Attendant", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-borthwick-crosbie.html" }, { "nm": "CROSBY, Captain Edward Gifford", "age": "70", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "5735; £71", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-gifford-crosby.html" }, { "nm": "CROSBY, Miss Harriette Rebecca", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "112901; £26 11s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harriette-rebecca-crosby.html" }, { "nm": "CROSBY, Mrs Catherine Elizabeth", "age": "64", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "5735; £71", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/catherine-elizabeth-crosby.html" }, { "nm": "CROSKERY, Mr Thomas", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-croskery.html" }, { "nm": "CROSS, Mr William Alfred", "age": "43", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-cross.html" }, { "nm": "CROSSLEY, Mr John", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-crossley.html" }, { "nm": "CROUGHANE, Mr Michael", "age": "45", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/michael-croughane.html" }, { "nm": "CROVELLA, Sig. Luigi", "age": "17", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/luigi-louis-crovella.html" }, { "nm": "CROWE, Mr George Frederick", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-frederick-crowe.html" }, { "nm": "CRUMPLIN, Mr Charles George Chandler", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-crumplin.html" }, { "nm": "CULLEN, Mr Charles James", "age": "49", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-cullen.html" }, { "nm": "CULLEN, Mr John", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-cullen.html" }, { "nm": "CULLEN, Mr Patrick", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-cullen.html" }, { "nm": "CULUMOVIC, Mr Jeso", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315090; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jeso-culumovic.html" }, { "nm": "CUMINGS, Mr John Bradley", "age": "39", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17599; £71 5s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-bradley-cumings.html" }, { "nm": "CUMINGS, Mrs Florence Briggs", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17599; £71 5s 8d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/florence-briggs-cumings.html" }, { "nm": "CUNNINGHAM, Mr Alfred Fleming", "age": "21", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Belfast", "ch": "Fitter", "tck": "239853", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-fleming-cunningham.html" }, { "nm": "CUNNINGHAM, Mr Andrew Orr", "age": "38", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/andrew-cunningham.html" }, { "nm": "CUNNINGHAM, Mr B.", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/b-cunningham.html" }, { "nm": "CURRAN, Mr Thomas", "age": "41", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-curran.html" }, { "nm": "CURTIS, Mr Arthur", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-curtis.html" }, { "nm": "DAHER, Mr Tannous", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2686; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tannous-daher.html" }, { "nm": "DAHL, Mr Charles Edward", "age": "45", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "7598; £8 1s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-edward-dahl.html" }, { "nm": "DAHLBERG, Miss Gerda Ulrika", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7552; £10 10s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gerda-ulrika-dahlberg.html" }, { "nm": "DAKIC, Mr Branko", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349228; £10 3s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/branko-dakic.html" }, { "nm": "DALY, Miss Margaret Marcella (Maggie)", "age": "30", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Housekeeper", "tck": "382650; £6 19s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maggie-daly.html" }, { "nm": "DALY, Mr Eugene Patrick", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "382651; £7 15s", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eugene-patrick-daly.html" }, { "nm": "DALY, Mr Peter Dennis", "age": "51", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113055; £26 11s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/peter-dennis-daly.html" }, { "nm": "DANBOM, Master Gilbert Sigvard Emanuel", "age": "4m", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347080; £14 8s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gilbert-sigvard-emanuel-danbom.html" }, { "nm": "DANBOM, Mr Ernst Gilbert", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347080; £14 8s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernst-gilbert-danbom.html" }, { "nm": "DANBOM, Mrs Anna Sigrid Maria", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347080; £14 8s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anna-sigrid-maria-danbom.html" }, { "nm": "DANIEL, Mr Robert Williams", "age": "27", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113804; £30 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-williams-daniel.html" }, { "nm": "DANIELS, Miss Sarah", "age": "33", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "113781; £151 16s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sarah-daniels.html" }, { "nm": "DANIELS, Mr Sidney Edward", "age": "18", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Third class steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sidney-edward-daniels.html" }, { "nm": "DANOFF, Mr Yoto", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349219; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/yoto-danoff.html" }, { "nm": "DASHWOOD, Mr William George", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-george-dashwood.html" }, { "nm": "DAVIDSON, Mr Thornton", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "12750; £52", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thornton-davidson.html" }, { "nm": "DAVIDSON, Mrs Orian", "age": "27", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "12750; £52", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/orian-davidson.html" }, { "nm": "DAVIES, Master John Morgan jr", "age": "8", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "33112; £36 15s", /* This is a second comment */ "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-morgan-davies.html" }, { "nm": "DAVIES, Miss K.", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "406; £2", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/k-davies.html" }, { "nm": "DAVIES, Mr Alfred J.", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Caster", "tck": "48871; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-davies.html" }, { "nm": "DAVIES, Mr Charles Henry", "age": "21", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-henry-davies.html" }, { "nm": "DAVIES, Mr Evan", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "23568; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/evan-davies.html" }, { "nm": "DAVIES, Mr Gordon Raleigh", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gordon-raleigh-davies.html" }, { "nm": "DAVIES, Mr H. V.", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "406; £2", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/h-davies.html" }, { "nm": "DAVIES, Mr John Samuel", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Ironworker", "tck": "48871; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-samuel-davies.html" }, { "nm": "DAVIES, Mr Joseph", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Ironworker", "tck": "48873; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-davies.html" }, { "nm": "DAVIES, Mr Robert J.", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-davies.html" }, { "nm": "DAVIES, Mr Thomas", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-davies.html" }, { "nm": "DAVIES, Mrs Elizabeth Agnes Mary", "age": "48", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "33112; £36 15s", /* This is a second comment */ "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-agnes-mary-davies.html" }, { "nm": "DAVIS, Miss Mary", "age": "28", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "237668; £13", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-davis.html" }, { "nm": "DAVIS, Mr John", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Extra 2nd Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-davis.html" }, { "nm": "DAVIS, Mr Stephen James", "age": "39", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stephen-james-davis.html" }, { "nm": "DAVISON, Mr Thomas Henry", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Blacksmith", "tck": "386525; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-henry-davison.html" }, { "nm": "DAVISON, Mrs Mary E.", "age": "34", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "386525; £16 2s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-davison.html" }, { "nm": "DAWSON, Mr Joseph", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-dawson.html" }, { "nm": "DE GRASSE, Mr J.", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "761; £1", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/j-de-grasse.html" }, { "nm": "DE MARSICO, Sig. Govanni", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/govanni-de-marsico.html" }, { "nm": "DE MESSEMAEKER, Mr Guillaume Joseph", "age": "36", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345572; £17 8s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/guillaume-de-messemaeker.html" }, { "nm": "DE MESSEMAEKER, Mrs Anna", "age": "36", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345572; £17 8s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-de-messemaeker.html" }, { "nm": "DE MULDER, Mr Theodoor", "age": "30", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345774; £9 10s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/theodoor-de-mulder.html" }, { "nm": "DE PELSMAEKER, Mr Alfons", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "345778; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfons-de-pelsmaeker.html" }, { "nm": "DEACON, Mr Percy William", "age": "20", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-deacon.html" }, { "nm": "DEAN, Master Bertram Vere", "age": "1", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2315; £20 11s 6d", /* This is a second comment */ "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertram-vere-dean.html" }, { "nm": "DEAN, Miss Elizabeth Gladys (Millvina)", "age": "2m", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2315; £20 11s 6d", /* This is a second comment */ "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/millvina-dean.html" }, { "nm": "DEAN, Mr Bertram Frank", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "2315; £20 11s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bertram-frank-dean.html" }, { "nm": "DEAN, Mr George H.", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-dean.html" }, { "nm": "DEAN, Mrs Eva Georgetta", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2315; £20 11s 6d", /* This is a second comment */ "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eva-georgetta-dean.html" }, { "nm": "DEBREUCQ, Mr Maurice Emile Victor", "age": "18", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/maurice-emile-victor-debreucq.html" }, { "nm": "DECKER, Mr Charles", "age": "47", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/charles-decker.html" }, { "nm": "DEEBLE, Mr Alfred Arnold", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-arnold-deeble.html" }, { "nm": "DEL CARLO, Mr Sebastiano", "age": "29", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2167; £27 14s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sebastiano-del-carlo.html" }, { "nm": "DEL CARLO, Mrs Argene", "age": "24", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2167; £27 14s 5d", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/argene-del-carlo.html" }, { "nm": "DELALIC, Mr Redjo", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349250; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/redjo-delalic.html" }, { "nm": "DENBUOY, Mr Albert (Herbert)", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31029; £31 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-denbuoy.html" }, { "nm": "DENKOFF, Mr Mitto", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349225; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mitto-denkoff.html" }, { "nm": "DENMIGAN, Mr Charles", "age": "42", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/charles-denmigan.html" }, { "nm": "DENNIS, Mr Samuel", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "21172; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-dennis.html" }, { "nm": "DENNIS, Mr William", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "21175; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-dennis.html" }, { "nm": "DENVER, Mr John", "age": "33", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-denver.html" }, { "nm": "DERRETT, Mr Albert", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-derrett.html" }, { "nm": "DESLANDES, Mr Percival Stainer", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percival-stainer-deslandes.html" }, { "nm": "DESVERNINE, Mr Louis Gabriel", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Pastry Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/louis-gabriel-desvernine.html" }, { "nm": "DEVANEY, Miss Margaret Delia", "age": "19", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330958; £7 17s 7d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-devaney.html" }, { "nm": "DIAPER, Mr John Joseph", "age": "27", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/j-diaper.html" }, { "nm": "DIBDEN, Mr William", "age": "18", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-dibden.html" }, { "nm": "DICK, Mr Albert Adrian", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17474; £57", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-adrian-dick.html" }, { "nm": "DICK, Mrs Vera", "age": "17", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17474; £57", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/vera-dick.html" }, { "nm": "DICKSON, Mr William", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-dickson.html" }, { "nm": "DIKA, Mr Mirko", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349232; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mirko-dika.html" }, { "nm": "DILLEY, Mr John", "age": "30", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-dilley.html" }, { "nm": "DILLON, Mr Thomas Patrick", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-patrick-dillon.html" }, { "nm": "DIMIC, Mr Jovan", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315088; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jovan-dimic.html" }, { "nm": "DINENAGE, Mr James Richard", "age": "49", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-richard-dinenage.html" }, { "nm": "DINTCHEFF, Mr Valtcho", "age": "43", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349226; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/valtcho-dintcheff.html" }, { "nm": "DODD, Mr Edward Charles", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior 3rd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-charles-dodd.html" }, { "nm": "DODD, Mr George Charles", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Second Steward, 1st Class", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-charles-dodd.html" }, { "nm": "DODDS, Mr Henry Watson", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Junior Assistant 4th Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-watson-dodds.html" }, { "nm": "DODGE, Dr Washington", "age": "52", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Politician", "tck": "33638; £81 17s 2d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/washington-dodge.html" }, { "nm": "DODGE, Master Washington", "age": "4", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "33638; £81 17s 2d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/washington-dodge-jr.html" }, { "nm": "DODGE, Mrs Ruth", "age": "34", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "33638; £81 17s 2d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ruth-dodge.html" }, { "nm": "DOEL, Mr Frederick", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-doel.html" }, { "nm": "DOLBY, Mr Joseph", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Reception Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-dolby.html" }, { "nm": "DOLING, Miss Elsie", "age": "18", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "231919; £23", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elsie-doling.html" }, { "nm": "DOLING, Mrs Ada Julia Elizabeth", "age": "34", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "231919; £23", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ada-doling.html" }, { "nm": "DONATI, Sig. Italo Francesco", "age": "17", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/italo-francesco-donati.html" }, { "nm": "DONAUGHE, Mr Hugh", "age": "34", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/hugh-donaughe.html" }, { "nm": "DONOGHUE, Mr Frank (?Thomas)", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-thomas-donoghue.html" }, { "nm": "DONOHOE, Miss Bridget", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "364856; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bridget-donohoe.html" }, { "nm": "DOOLEY, Mr Patrick", "age": "38", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "370376; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-dooley.html" }, { "nm": "DORE, Mr Albert James", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/a-dore.html" }, { "nm": "DORKING, Mr Edward Arthur", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Groom", "tck": "10482; £8 1s", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-arthur-dorking.html" }, { "nm": "DORNIER, Mr Louis Auguste", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Fish Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/louis-auguste-dornier.html" }, { "nm": "DOUGHERTY, Mr William John", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330877; £8 9s 2d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-dougherty.html" }, { "nm": "DOUGHTY, Mr W.", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-doughty.html" }, { "nm": "DOUGLAS, Mr Walter Donald", "age": "50", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17761; £106 8s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-donald-douglas.html" }, { "nm": "DOUGLAS, Mrs Mahala", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17761; £106 8s 6d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mahala-douglas.html" }, { "nm": "DOUGLAS, Mrs Mary Hélène", "age": "27", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17558; £247 10s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-helene-douglas.html" }, { "nm": "DOUGLASS, Mr William", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-douglass.html" }, { "nm": "DOUTON, Mr William Joseph", "age": "55", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Quarryman", "tck": "28403; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-joseph-douton.html" }, { "nm": "DOWDELL, Miss Elizabeth", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Housekeeper", "tck": "364516; £12 9s 6d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-dowdell.html" }, { "nm": "DOYLE, Miss Elizabeth", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "368702; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elizabeth-doyle.html" }, { "nm": "DOYLE, Mr Laurence", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/laurence-doyle.html" }, { "nm": "DRAZENOVIC, Mr Jozef", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "349241; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jozef-drazenovic.html" }, { "nm": "DREW, Master Marshall Brines", "age": "8", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28220; £32 10s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marshall-brines-drew.html" }, { "nm": "DREW, Mr James Vivian", "age": "42", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28220; £32 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-vivian-drew.html" }, { "nm": "DREW, Mrs Lulu Thorne", "age": "34", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28220; £32 10s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lulu-thorne-drew.html" }, { "nm": "DROPKIN, Miss Jennie", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Box Maker", "tck": "392083; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jennie-dropkin.html" }, { "nm": "DUFF GORDON, Lucy Christiana, Lady", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Dressmaker / Couturiére", "tck": "17485; £56 18s 7d", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lady-duff-gordon.html" }, { "nm": "DUFF GORDON, Sir Cosmo Edmund", "age": "49", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Landowner", "tck": "11755; £39 12s", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sir-cosmo-duff-gordon.html" }, { "nm": "DUFFY, Mr William Luke", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Writer / Engineer's Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-luke-duffy.html" }, { "nm": "DULLES, Mr William Crothers", "age": "39", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17580; £29 14s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-crothers-dulles.html" }, { "nm": "DUNFORD, Mr William", "age": "47", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Hospital Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-dunford.html" }, { "nm": "DUNLOP, Mr Joseph", "age": "47", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-dunlop.html" }, { "nm": "DUQUEMIN, Mr Joseph Pierre", "age": "19", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Mason", "tck": "752; £7 11s", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joseph-pierre-duquemin.html" }, { "nm": "DURáN I MONé, Sra. Florentina", "age": "30", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2148; £13 17s 2d", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/florentina-duran-y-more.html" }, { "nm": "DURAN Y MORE, Sra. Asuncion", "age": "27", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2149; £13 17s 2d", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/asuncion-duran-y-more.html" }, { "nm": "DURNIL, Mr James", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-keegan.html" }, { "nm": "DWAN, Mr Frank", "age": "65", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "336439; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-dwan.html" }, { "nm": "DYER, Mr Henry Ryland", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior Assistant 4th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-ryland-dyer.html" }, { "nm": "DYER, Mr William Henry", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-dyer.html" }, { "nm": "DYER-EDWARDES, Mr Thomas", "age": "65", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "87; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-dyer-edwardes.html" }, { "nm": "DYER-EDWARDES, Mrs Clementina Georgina Lucy", "age": "53", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "87; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/clementina-georgina-lucy-dyer-edwardes.html" }, { "nm": "DYKER, Mr Adolf Fredrik", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347072; £13 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/adolf-fredrik-dyker.html" }, { "nm": "DYKER, Mrs Anna Elisabeth Judith", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347072; £13 18s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-elisabeth-judith-dyker.html" }, { "nm": "DYMOND, Mr Frank", "age": "40", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-dymond.html" }, { "nm": "EAGLE, Mr Alfred James", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/a-eagle.html" }, { "nm": "EARNSHAW, Mrs Olive", "age": "23", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Of Independent Means", "tck": "11767; £83 3s 2d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/olive-earnshaw.html" }, { "nm": "EASTMAN, Mr Charles", "age": "44", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-eastman.html" }, { "nm": "EDBROOKE, Mr Francis Samuel Jacob", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Third class steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-edbrooke.html" }, { "nm": "EDE, Mr George Bulkeley", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-ede.html" }, { "nm": "EDGE, Mr Frederick William", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Deck Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-william-edge.html" }, { "nm": "EDVARDSSON, Mr Gustaf Hjalmar", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349912; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gustaf-hjalmar-edvardsson.html" }, { "nm": "EDWARDS, Mr Clement", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantryman Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/clement-edwards.html" }, { "nm": "EGG, Mr William Henry", "age": "47", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Third class steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-egg.html" }, { "nm": "EITEMILLER, Mr George Floyd", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29751; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-floyd-eitemiller.html" }, { "nm": "EKLUND, Mr Hans Linus", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347074; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hans-linus-eklund.html" }, { "nm": "EKSTRöM, Mr Johan", "age": "45", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347061; £6 19s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-ekstrom.html" }, { "nm": "ELIAS NASRALLAH, Mr Tannous", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2695; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tannous-elias-nasrallah.html" }, { "nm": "ELIAS, Mr Dibo", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2674; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/dibo-elias.html" }, { "nm": "ELIAS, Mr Joseph jr.", "age": "15", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2690; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-elias.html" }, { "nm": "ELLIOTT, Mr Everett Edward", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/everett-edward-elliott.html" }, { "nm": "ELLIS, Mr John Bertram", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Vegetable Cook", "tck": "", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-bertram-ellis.html" }, { "nm": "ELLISON, Mr Joseph", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-ellison.html" }, { "nm": "ELSBURY, Mr William James", "age": "47", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "3902; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-james-elsbury.html" }, { "nm": "EMANUEL, Miss Virginia Ethel", "age": "5", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "364516; £12 9s 6d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/virginia-ethel-emanuel.html" }, { "nm": "ENANDER, Mr Ingvar", "age": "21", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "236854; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ingvar-enander.html" }, { "nm": "ENDRES, Miss Caroline Louise", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Nurse", "tck": "17757; £247 10s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/caroline-endres.html" }, { "nm": "ENNES, Mr William", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-ennes.html" }, { "nm": "ENNIS, Mr Walter", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Turkish Bath Attendant", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-ennis.html" }, { "nm": "ERVINE, Mr Albert George", "age": "18", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Assistant Electrician", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-george-ervine.html" }, { "nm": "ESTANISLAU, Mr Manuel Gonçalves", "age": "37", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101306; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/manuel-goncalves-estanislau.html" }, { "nm": "ETCHES, Mr Henry Samuel", "age": "43", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "First class bedroom steward", "tck": "", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-samuel-etches.html" }, { "nm": "EUSTIS, Miss Elizabeth Mussey", "age": "54", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "36947; £78 5s 4d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-mussey-eustis.html" }, { "nm": "EVANS, Miss", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "88; £1", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/evans.html" }, { "nm": "EVANS, Miss Edith Corse", "age": "36", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17531; £31 13s 7d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edith-corse-evans.html" }, { "nm": "EVANS, Mr Alfred Frank", "age": "25", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Lookout", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-frank-evans.html" }, { "nm": "EVANS, Mr Frank Oliver", "age": "27", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-oliver-evans.html" }, { "nm": "EVANS, Mr George Richard", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-richard-evans.html" }, { "nm": "EVANS, Mr William Thomas", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-evans.html" }, { "nm": "EVERETT, Mr Thomas James", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Crane Operator", "tck": "6212; £15 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-james-everett.html" }, { "nm": "FAHLSTRøM, Mr Arne Joma", "age": "18", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "236171; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arne-joma-fahlstrom.html" }, { "nm": "FAIRALL, Mr Henry Charles", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-fairall.html" }, { "nm": "FARENDEN, Mr Ernest John", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Confectioner", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-john-farrenden.html" }, { "nm": "FARLEY, Mr John", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-farley.html" }, { "nm": "FARQUHARSON, Mr William Edward", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior 2nd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-farquharson.html" }, { "nm": "FARRELL, Mr James (Jim)", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "367232; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jim-farrell.html" }, { "nm": "FARTHING, Mr John", "age": "57", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "17483; £221 15s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-farthing.html" }, { "nm": "FAULKNER, Mr William Stephen", "age": "37", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-stephen-faulkner.html" }, { "nm": "FAUNTHORPE, Mr Harry Bartram", "age": "41", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2926; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-faunthorpe.html" }, { "nm": "FAY, Mr Thomas Joseph", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-joseph-fay.html" }, { "nm": "FELLOWES, Mr Alfred James", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant boots steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-fellowes.html" }, { "nm": "FELTHAM, Mr George William", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Vienna Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/g-feltham.html" }, { "nm": "FERRARY, Mr Antonio", "age": "34", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anton-ferrary.html" }, { "nm": "FERRIS, Mr George", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/george-ferris.html" }, { "nm": "FERRIS, Mr W.", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-ferris.html" }, { "nm": "FERRON, Mr Nicholas", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/nicholas-ferron.html" }, { "nm": "FEY, Sig. Carlo", "age": "30", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/carlo-fey.html" }, { "nm": "FILLBROOK, Mr Joseph Charles", "age": "18", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Painter & Decorator", "tck": "15185; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-charles-fillbrook.html" }, { "nm": "FINCH, Mr Harry", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-finch.html" }, { "nm": "FINOLI, Mr Luigi", "age": "34", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101308; £7 1s", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/luigi-finoli.html" }, { "nm": "FIORAVANTE, Sig. Giuseppe Bertoldo", "age": "23", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giuseppe-bertoldo-fioravante.html" }, { "nm": "FISCHER, Mr Eberhard Thelander", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350036; £7 15s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eberhard-fischer.html" }, { "nm": "FITZPATRICK, Mr Cecil William", "age": "21", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Mess Steward", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/cecil-william-fitzpatrick.html" }, { "nm": "FITZPATRICK, Mr Hugh Joseph", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior Boilermaker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hugh-fitzpatrick.html" }, { "nm": "FLACK, Mr John", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-flack.html" }, { "nm": "FLARTY, Mr Edward", "age": "43", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-flarty.html" }, { "nm": "FLEET, Mr Frederick", "age": "24", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Lookout", "tck": "", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-fleet.html" }, { "nm": "FLEGENHEIM, Mrs Antoinette", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17598; £31 13s 8d", /* This is a second comment */ "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/antoinette-flegenheim.html" }, { "nm": "FLEMING, Miss Honora", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "364859; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/honora-fleming.html" }, { "nm": "FLEMING, Miss Margaret", "age": "42", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17421; £110 17s 8d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-fleming.html" }, { "nm": "FLEMMING, Mr William", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-flemming.html" }, { "nm": "FLETCHER, Miss N.", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "405; £1 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/n-fletcher.html" }, { "nm": "FLETCHER, Mr Percy William", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bugler Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-william-fletcher.html" }, { "nm": "FLETCHER, Mr Robert", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-fletcher.html" }, { "nm": "FLINN, Mr Michael", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/michael-flinn.html" }, { "nm": "FLYNN, Mr James", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "364851; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-flynn.html" }, { "nm": "FLYNN, Mr John", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "368323; £6 19s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-flynn.html" }, { "nm": "FLYNN, Mr John Irwin", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "PC 14474; £26 5s 9d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-irwin-flynn.html" }, { "nm": "FOLEY, Mr John", "age": "46", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Deck storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-foley.html" }, { "nm": "FOLEY, Mr Joseph", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "330910; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-foley.html" }, { "nm": "FOLEY, Mr Wilfred Cyril", "age": "22", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/wilfred-cyril-foley.html" }, { "nm": "FOLEY, Mr William", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "365235; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-foley.html" }, { "nm": "FOO, Mr Choong", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/choong-foo.html" }, { "nm": "FORD, Miss Dollina Margaret", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "6608; £34 7s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/dollina-margaret-ford.html" }, { "nm": "FORD, Miss Robina Maggie", "age": "7", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "6608; £34 7s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robina-maggie-ford.html" }, { "nm": "FORD, Mr Arthur", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "1478; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-ford.html" }, { "nm": "FORD, Mr Edward Watson", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Blacksmith", "tck": "6608; £34 7s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-watson-ford.html" }, { "nm": "FORD, Mr Ernest", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-ford.html" }, { "nm": "FORD, Mr F.", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-ford.html" }, { "nm": "FORD, Mr H.", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-ford.html" }, { "nm": "FORD, Mr Thomas", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-ford.html" }, { "nm": "FORD, Mr William Neal Thomas", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Messenger", "tck": "6608; £34 7s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/neal-thomas-ford.html" }, { "nm": "FORD, Mrs Margaret Ann Watson", "age": "48", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "6608; £34 7s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/margaret-ann-watson-ford.html" }, { "nm": "FOREMAN, Mr Benjamin Laventall", "age": "30", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113051; £27 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/benjamin-foreman.html" }, { "nm": "FORMAN, Mr J.", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "85; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/j-forman.html" }, { "nm": "FORMAN, Mrs", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "85; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/forman.html" }, { "nm": "FORTUNE, Miss Alice Elizabeth", "age": "24", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19950; £263", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-elizabeth-fortune.html" }, { "nm": "FORTUNE, Miss Ethel Flora", "age": "28", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19950; £263", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ethel-flora-fortune.html" }, { "nm": "FORTUNE, Miss Mabel Helen", "age": "23", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19950; £263", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mabel-helen-fortune.html" }, { "nm": "FORTUNE, Mr Charles Alexander", "age": "19", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19950; £263", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-alexander-fortune.html" }, { "nm": "FORTUNE, Mr Mark", "age": "64", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19950; £263", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mark-fortune.html" }, { "nm": "FORTUNE, Mrs Mary", "age": "60", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19950; £263", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-fortune.html" }, { "nm": "FORWARD, Mr James", "age": "27", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-forward.html" }, { "nm": "FOSTER, Mr Albert C.", "age": "37", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-foster.html" }, { "nm": "FOX, Mr Patrick", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "368573; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-fox.html" }, { "nm": "FOX, Mr Stanley Hubert", "age": "38", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "229236; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stanley-hubert-fox.html" }, { "nm": "FOX, Mr William Thomas", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thomas-fox.html" }, { "nm": "FRANCATELLI, Miss Laura Mabel", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Secretary", "tck": "17485; £56 18s 7d", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/laura-mabel-francatelli.html" }, { "nm": "FRANKLIN, Mr Alan Vincent", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alan-vincent-franklin.html" }, { "nm": "FRANKLIN, Mr Charles (Charles Fardon)", "age": "38", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "3101314; £7 5s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-franklin.html" }, { "nm": "FRANKLIN, Mr Thomas Parnham", "age": "37", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113778; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-parnham-franklin.html" }, { "nm": "FRASER, Mr J.", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-fraser.html" }, { "nm": "FRASER, Mr James", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior Assistant 3rd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-fraser.html" }, { "nm": "FRAUENTHAL, Dr Henry William", "age": "49", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Doctor", "tck": "17611; £133 13s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-william-frauenthal.html" }, { "nm": "FRAUENTHAL, Mr Isaac Gerald", "age": "43", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17765; £27 14s 5d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/isaac-gerald-frauenthal.html" }, { "nm": "FRAUENTHAL, Mrs Clara", "age": "42", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17611; £133 13s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/clara-frauenthal.html" }, { "nm": "FREDERICKS, Mr Walter Francis", "age": "21", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/w-fredericks.html" }, { "nm": "FREEMAN, Mr Ernest Edward Samuel", "age": "45", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Deck Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-edward-samuel-freeman.html" }, { "nm": "FRöLICHER, Miss Hedwig Margaritha", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13568; £49 10s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hedwig-margaritha-frolicher.html" }, { "nm": "FRöLICHER-STEHLI, Mr Maximilian Josef", "age": "60", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13567; £79 4s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maximilian-frolicher-stehli.html" }, { "nm": "FRöLICHER-STEHLI, Mrs Margaretha Emerentia", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13567; £79 4s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaretha-frolicher-stehli.html" }, { "nm": "FROST, Mr Anthony Wood", "age": "37", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Belfast", "ch": "Fitter", "tck": "239854", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anthony-wood-frost.html" }, { "nm": "FRY, Mr John Richard", "age": "39", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "112058", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-richard-fry.html" }, { "nm": "FRYER, Mr Albert Ernest", "age": "29", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-ernest-fryer.html" }, { "nm": "FUNK, Miss Annie Clemmer", "age": "38", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Missionary", "tck": "237671; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/annie-clemmer-funk.html" }, { "nm": "FUTRELLE, Mr Jacques Heath", "age": "37", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Writer", "tck": "113803; £53 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jacques-futrelle.html" }, { "nm": "FUTRELLE, Mrs Lily May", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113803; £53 2s", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lily-may-futrelle.html" }, { "nm": "FYNNEY, Mr Joseph J.", "age": "35", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "239865; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-fynney.html" }, { "nm": "GALE, Mr Harry", "age": "38", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "28664; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-gale.html" }, { "nm": "GALE, Mr Shadrach", "age": "33", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "28664; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/shadrach-gale.html" }, { "nm": "GALLAGHER, Mr Martin", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "36864; £7 14s 10d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/martin-gallagher.html" }, { "nm": "GAMBELL, Mr William", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-gambell.html" }, { "nm": "GARFIRTH, Mr John", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Shoemaker", "tck": "358585; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-garfirth.html" }, { "nm": "GARSIDE, Miss Ethel", "age": "34", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "243880; £13", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ethel-garside.html" }, { "nm": "GASKELL, Mr Alfred", "age": "16", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "239865; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-gaskell.html" }, { "nm": "GASS, Mr David", "age": "45", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-gass.html" }, { "nm": "GATTI, Sig. Gaspare Antonio Pietro", "age": "37", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "à la Carte Restaurant Manager", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gaspare-antonio-pietro-gatti.html" }, { "nm": "GAVEY, Mr Laurence", "age": "26", // This is a comment "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31028; £10 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/laurence-gavey.html" }, { "nm": "GEDDES, Mr Richard Charles", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-charles-geddes.html" }, { "nm": "GEE, Mr Arthur H.", "age": "47", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "111320; £38 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-gee.html" }, { "nm": "GEER, Mr Alfred Emest", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-emest-geer.html" }, { "nm": "GEORGE/JOSEPH, Mrs Shawneene", "age": "38", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2688; £7 4s 7d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/shawneene-george-joseph.html" }, { "nm": "GERIOS THAMAH, Mr Assaf", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2692; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/assaf-gerios-thamah.html" }, { "nm": "GHEORGHEFF, Mr Stanio", "age": "", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "349254; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stanio-gheorgheff.html" }, { "nm": "GIBBONS, Mr Jacob William", "age": "36", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jacob-william-gibbons.html" }, { "nm": "GIBSON, Miss Dorothy Winifred", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "112378; £59 8s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/dorothy-gibson.html" }, { "nm": "GIBSON, Mr Thomas", "age": "20", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-gibson.html" }, { "nm": "GIBSON, Mr William", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-gibson.html" }, { "nm": "GIBSON, Mrs Pauline Caroline", "age": "44", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "112378; £59 8s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/pauline-gibson.html" }, { "nm": "GIEGER, Miss Amalie", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "113503; £211 10s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-gieger.html" }, { "nm": "GIGLIO, Mr Victor Gaitan Andrea", "age": "23", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Servant", "tck": "17593; £79 4s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/victor-giglio.html" }, { "nm": "GILARDINO, Sig. Vincenzo Pio", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/vincenzo-pio-gilardino.html" }, { "nm": "GILBERT, Mr William", "age": "47", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "30769; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-gilbert.html" }, { "nm": "GILES, Mr Edgar", "age": "21", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "28133; £11 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edgar-giles.html" }, { "nm": "GILES, Mr Frederick Edward", "age": "20", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "28134; £11 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-edward-giles.html" }, { "nm": "GILES, Mr John Robert", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-robert-giles.html" }, { "nm": "GILES, Mr Ralph", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248726; £13 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ralph-giles.html" }, { "nm": "GILINSKI, Mr Eliezer", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Locksmith", "tck": "14973; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eliezer-gilinski.html" }, { "nm": "GILL, Mr John William", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Chauffeur", "tck": "233866; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-william-gill.html" }, { "nm": "GILL, Mr Joseph Stanley", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-stanley-gill.html" }, { "nm": "GILL, Mr Patrick", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Ship's Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-gill.html" }, { "nm": "GILLESPIE, Mr William Henry", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Clerk", "tck": "12233; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-gillespie.html" }, { "nm": "GILNAGH, Miss Mary Katherine", "age": "17", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "35851; £7 14s 8d", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/katie-gilnagh.html" }, { "nm": "GIVARD, Mr Hans Kristensen", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250646; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hans-kristensen-givard.html" }, { "nm": "GLYNN, Miss Mary Agatha", "age": "19", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "335677; £7 15s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-agatha-glynn.html" }, { "nm": "GODLEY, Mr George Auguste", "age": "38", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-godley.html" }, { "nm": "GODWIN, Mr Frederick Charles", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-charles-godwin.html" }, { "nm": "GOLD, Mrs Jane Kate Coulson", "age": "45", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/katherine-gold.html" }, { "nm": "GOLDENBERG, Mr Samuel L.", "age": "47", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17453; £89 2s 1d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/samuel-goldenberg.html" }, { "nm": "GOLDENBERG, Mrs Nella", "age": "40", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17453; £89 2s 1d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nella-goldenberg.html" }, { "nm": "GOLDER, Mr M. W.", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/m-golder.html" }, { "nm": "GOLDSCHMIDT, Mr George B.", "age": "71", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17754; £34 13s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-goldschmidt.html" }, { "nm": "GOLDSMITH, Master Frank John William", "age": "9", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "363291; £20 10s 6d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frankie-goldsmith.html" }, { "nm": "GOLDSMITH, Mr Frank John", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Turner", "tck": "363291; £20 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-goldsmith.html" }, { "nm": "GOLDSMITH, Mr Nathan", "age": "41", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Shoemaker", "tck": "3101263; £7 17s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nathan-goldsmith.html" }, { "nm": "GOLDSMITH, Mrs Emily Alice", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "363291; £20 10s 6d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-goldsmith.html" }, { "nm": "GOLLOP, Mr F.", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Passage Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-gollop.html" }, { "nm": "GOODWIN, Master Harold Victor", "age": "9", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harold-victor-goodwin.html" }, { "nm": "GOODWIN, Master Sidney Leslie", "age": "1", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-leslie-goodwin.html" }, { "nm": "GOODWIN, Master William Frederick", "age": "11", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-frederick-goodwin.html" }, { "nm": "GOODWIN, Miss Jessie Allis", "age": "10", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jessie-allis-goodwin.html" }, { "nm": "GOODWIN, Miss Lillian Amy", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lillian-amy-goodwin.html" }, { "nm": "GOODWIN, Mr Charles Edward", "age": "14", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Scholar", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-edward-goodwin.html" }, { "nm": "GOODWIN, Mr Frederick Joseph", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-joseph-goodwin.html" }, { "nm": "GOODWIN, Mrs Augusta", "age": "43", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2144; £46 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/augusta-goodwin.html" }, { "nm": "GORDON, Mr J.", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-gordon.html" }, { "nm": "GOREE, Mr Frank", "age": "40", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-goree.html" }, { "nm": "GORMAN, Mr David", "age": "33", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-gorman.html" }, { "nm": "GOSHAWK, Mr Alfred James", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-james-goshawk.html" }, { "nm": "GOSLING, Mr Bertram James", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bertram-james-gosling.html" }, { "nm": "GOSLING, Mr S.", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/s-gosling.html" }, { "nm": "GRACEY, Mr John", "age": "41", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-gracey.html" }, { "nm": "GRACIE, Colonel Archibald", "age": "53", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Writer", "tck": "113780; £28 10s", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/colonel-archibald-gracie.html" }, { "nm": "GRADIDGE, Mr Ernest Edward", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-edward-gradidge.html" }, { "nm": "GRAHAM, Miss Margaret Edith", "age": "19", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17582; £153 9s 3d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-edith-graham.html" }, { "nm": "GRAHAM, Mr George Edward", "age": "38", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Sales Manager", "tck": "112053; £30", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-edward-graham.html" }, { "nm": "GRAHAM, Mr Thomas G.", "age": "28", "st": "Survivor", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-graham.html" }, { "nm": "GRAHAM, Mrs Edith", "age": "59", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17582; £153 9s 3d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edith-graham.html" }, { "nm": "GREEN, Mr George", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farrier", "tck": "21440; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-green-passenger.html" }, { "nm": "GREEN, Mr George", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-green.html" }, { "nm": "GREENBERG, Mr Samuel", "age": "52", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250647; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-greenberg.html" }, { "nm": "GREENFIELD, Mr William Bertram", "age": "23", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17759; £63 7s 2d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-bertram-greenfield.html" }, { "nm": "GREENFIELD, Mrs Blanche", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17759; £63 7s 2d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/blanche-greenfield.html" }, { "nm": "GREGG, Mr William", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-gregg.html" }, { "nm": "GREGORY, Mr David", "age": "43", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-gregory.html" }, { "nm": "GREGSON, Miss Mary", "age": "45", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-gregson.html" }, { "nm": "GRøNNESTAD, Mr Daniel Danielsen", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "8471; £8 6s 15d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/daniel-danielsen-gronnestad.html" }, { "nm": "GROSCLAUDE, Mr Gérald", "age": "24", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gerald-grosclaude.html" }, { "nm": "GUEST, Mr Robert", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "376563; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-guest.html" }, { "nm": "GUGGENHEIM, Mr Benjamin", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17593; £79 4s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/benjamin-guggenheim.html" }, { "nm": "GUMERY, Mr George", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Mess Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-gumery.html" }, { "nm": "GUNN, Mr Joseph Alfred", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward (2nd Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-alfred-gunn.html" }, { "nm": "GUSTAFSSON, Mr Alfred Ossian", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "7534; £9 16s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-ossian-gustafsson.html" }, { "nm": "GUSTAFSSON, Mr Anders Vilhelm", "age": "37", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101276; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anders-vilhelm-gustafsson.html" }, { "nm": "GUSTAFSSON, Mr Johan Birger", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101277; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-birger-gustafsson.html" }, { "nm": "GUSTAFSSON, Mr Karl Gideon", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347069; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-gideon-gustafsson.html" }, { "nm": "GUY, Mr Elgar John", "age": "28", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Boots", "tck": "", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elgar-john-guy.html" }, { "nm": "GWYNN, Mr William Logan", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Postal Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-logan-gwynn.html" }, { "nm": "HAAS, Miss Aloisia", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349236; £8 17s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/aloisia-haas.html" }, { "nm": "HADDOCK, Mr Herbert James", "age": "51", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Master", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/herbert-james-haddock.html" }, { "nm": "HADLEY, Mr John", "age": "50", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-hadley.html" }, { "nm": "HAGGAN, Mr John", "age": "35", "st": "Survivor", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-haggan.html" }, { "nm": "HAGLAND, Mr Ingvald Olai Olsen", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "65303; £6 19s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ingvald-olai-olsen-hagland.html" }, { "nm": "HAGLAND, Mr Konrad Mathias Reiersen", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "65304; £6 19s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/konrad-hagland.html" }, { "nm": "HAINES, Mr Albert", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Boatswain Mate", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-haines.html" }, { "nm": "HAKKARAINEN, Mr Pekka Pietari", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101279; £15 17s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pekka-pietari-hakkarainen.html" }, { "nm": "HAKKARAINEN, Mrs Elin Matilda", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101279; £15 17s", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elin-matilda-hakkarainen.html" }, { "nm": "HALE, Mr John", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-hale.html" }, { "nm": "HALE, Mr Reginald", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Gardener", "tck": "250653; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-hale.html" }, { "nm": "HALFORD, Mr Richard", "age": "22", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/richard-halford.html" }, { "nm": "HALL, Mr F. A. J.", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-hall.html" }, { "nm": "HALL, Mr George", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/george-hall.html" }, { "nm": "HALL, Mr J.", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-hall.html" }, { "nm": "HALLETT, Mr George Alexander", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-hallett.html" }, { "nm": "HALPIN, Mr Joseph", "age": "24", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-halpin.html" }, { "nm": "HäMäLäINEN, Master Viljo Unto Johannes", "age": "8m", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250649; £14 10s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/viljo-hamalainen.html" }, { "nm": "HäMäLäINEN, Mrs Anna", "age": "23", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250649; £14 10s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-hamalainen.html" }, { "nm": "HAMBLYN, Mr Ernest William", "age": "46", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-william-hamblyn.html" }, { "nm": "HAMILTON, Mr Ernest", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Smoke Room Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-hamilton.html" }, { "nm": "HAMILTON, Mr William J.", "age": "24", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-hamilton.html" }, { "nm": "HAMPE, Mr Léon Jérome", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Painter & Decorator", "tck": "345769; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leon-jerome-hampe.html" }, { "nm": "HANDS, Mr Bernard", "age": "53", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bernard-hands.html" }, { "nm": "HANLEY, Mr William", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-hanley.html" }, { "nm": "HANNA, Mr Boulos", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2664; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/boulos-hanna.html" }, { "nm": "HANNA, Mr Mansour", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2693; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mansour-hanna.html" }, { "nm": "HANNAH, Mr Borak (Hannah Assi Borah)", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2663; £7 4s 7d", // This is a comment "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/borak-hannah.html" }, { "nm": "HANNAM, Mr George", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-hannam.html" }, { "nm": "HANSEN, Mr Claus Peter", "age": "41", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Barber", "tck": "350026; £14 2s 2d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/claus-peter-hansen.html" }, { "nm": "HANSEN, Mr Henrik Juul", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "350025; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henrik-juul-hansen.html" }, { "nm": "HANSEN, Mr Henry Damsgaard", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Manufacturer", "tck": "350029; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-damsgaard-hansen.html" }, { "nm": "HANSEN, Mrs Jennie Louise", "age": "45", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350026; £14 2s 2d", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jennie-louise-hansen.html" }, { "nm": "HARBECK, Mr William H.", "age": "44", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Cinematographer", "tck": "248746; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-harbeck.html" }, { "nm": "HARDER, Mr George Achilles", "age": "25", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "11765; £55 8s 10d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-achilles-harder.html" }, { "nm": "HARDER, Mr William", "age": "39", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Window Cleaner", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-harder.html" }, { "nm": "HARDER, Mrs Dorothy", "age": "21", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11765; £55 8s 10d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/dorothy-harder.html" }, { "nm": "HARDING, Mr Alfred John", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantry Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/a-harding.html" }, { "nm": "HARDWICK, Mr Reginald", "age": "21", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Kitchen Porter", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/reginald-hardwick.html" }, { "nm": "HARDY, Mr John T.", "age": "37", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chief 2nd Class Steward", "tck": "", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-hardy.html" }, { "nm": "HARGADON, Miss Catherine (Kate)", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "30631; £7 14s 8d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catherine-kate-hargadon.html" }, { "nm": "HARKIN, Mr Samuel", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-harkin.html" }, { "nm": "HARKNETT, Miss Alice Phoebe", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "6609; £7 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alice-phoebe-harknett.html" }, { "nm": "HARMES, Mr Robert", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-harmes.html" }, { "nm": "HARPER, Miss Annie Jessie", "age": "6", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248727; £33", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nina-harper.html" }, { "nm": "HARPER, Mr Henry Sleeper", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Of Independent Means", "tck": "17572; £76 14s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-sleeper-harper.html" }, { "nm": "HARPER, Mrs Myna", "age": "49", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17572; £76 14s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/myna-harper.html" }, { "nm": "HARPER, Rev. John", "age": "39", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "248727; £33", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-harper.html" }, { "nm": "HARRINGTON, Mr Charles Henry", "age": "37", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "113796; £42 8s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-harrington.html" }, { "nm": "HARRIS, Mr Amos", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/amos-harris.html" }, { "nm": "HARRIS, Mr Charles William", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-william-harris.html" }, { "nm": "HARRIS, Mr Clifford Henry", "age": "16", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bell Boy", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/clifford-henry-harris.html" }, { "nm": "HARRIS, Mr Edward John", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-harris.html" }, { "nm": "HARRIS, Mr Edward Matthew", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantryman Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pantry-steward-edward-harris.html" }, { "nm": "HARRIS, Mr Frederick", "age": "39", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-harris.html" }, { "nm": "HARRIS, Mr George", "age": "62", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "752; £10 10s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-harris.html" }, { "nm": "HARRIS, Mr Henry Birkhardt", "age": "45", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Theatre Manager", "tck": "36973; £83 9s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-birkhardt-harris.html" }, { "nm": "HARRIS, Mr Joseph", "age": "32", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-harris.html" }, { "nm": "HARRIS, Mr Walter", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14208; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-harris.html" }, { "nm": "HARRIS, Mrs Irene", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "36973; £83 9s 6d", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/irene-harris.html" }, { "nm": "HARRISON, Mr Aragõa Drummond", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/aragon-harrison.html" }, { "nm": "HARRISON, Mr Norman E.", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior 2nd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/norman-harrison.html" }, { "nm": "HARRISON, Mr William Henry", "age": "45", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Secretary", "tck": "112059", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-harrison.html" }, { "nm": "HART, Miss Eva Miriam", "age": "7", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "13529; £26 5s", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eva-hart.html" }, { "nm": "HART, Mr Benjamin", "age": "47", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Builder", "tck": "13529; £26 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/benjamin-hart.html" }, { "nm": "HART, Mr Henry", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "394140; £6 17s 2d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-hart.html" }, { "nm": "HART, Mr James", "age": "49", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-hart.html" }, { "nm": "HART, Mr John Edward", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-edward-hart.html" }, { "nm": "HART, Mrs Esther Ada", "age": "48", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "13529; £26 5s", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/esther-hart.html" }, { "nm": "HARTLEY, Mr Wallace Henry", "age": "33", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wallace-hartley.html" }, { "nm": "HARTNELL, Mr Fred", "age": "21", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-hartnell.html" }, { "nm": "HARVEY, Mr Herbert Gifford", "age": "34", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior Assistant 2nd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-gifford-harvey.html" }, { "nm": "HARVEY, Mr John", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-harvey.html" }, { "nm": "HASLIN, Mr James", "age": "45", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-haslin.html" }, { "nm": "HASSAB, Mr Hammad", "age": "27", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Servant", "tck": "17572; £76 14s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hammad-hassab.html" }, { "nm": "HASSAN ABILMONA, Mr Houssein Mohamed", "age": "11", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2699; £18 15s 9d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/houssein-abilmona.html" }, { "nm": "HATCH, Mr Hugh", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hugh-hatch.html" }, { "nm": "HAWKESWORTH, Mr James", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-hawkesworth.html" }, { "nm": "HAWKESWORTH, Mr William Walter", "age": "43", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Deck Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-walter-hawkesworth.html" }, { "nm": "HAWKSFORD, Mr Walter James", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Sales Manager", "tck": "16988; £30", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-james-hawksford.html" }, { "nm": "HAYS, Miss Margaret Bechstein", "age": "24", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11767; £83 3s 2d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-bechstein-hays.html" }, { "nm": "HAYS, Mr Charles Melville", "age": "55", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "12749; £93 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-melville-hays.html" }, { "nm": "HAYS, Mrs Clara Jennings", "age": "52", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "12749; £93 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/clara-jennings-hays.html" }, { "nm": "HAYTER, Mr Arthur", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-hayter.html" }, { "nm": "HEAD, Mr Alfred", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/a-head.html" }, { "nm": "HEAD, Mr Christopher", "age": "42", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Politician", "tck": "113038; £42 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/christopher-head.html" }, { "nm": "HEALY, Miss Hanora (Nora)", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "370375; £7 15s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hanora-nora-healy.html" }, { "nm": "HEBB, Mr William Albert", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/a-hebb.html" }, { "nm": "HEDDLES, Mr William", "age": "39", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-heddles.html" }, { "nm": "HEDLEY, Mr Robert", "age": "45", "st": "Unknown", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Room Attendant", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-hedley.html" }, { "nm": "HEDMAN, Mr Oskar Arvid", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Settler Recruiter", "tck": "347089; £6 19s 6d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/oskar-arvid-hedman.html" }, { "nm": "HEE, Mr Ling", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ling-hee.html" }, { "nm": "HEGARTY, Miss Hanora (Nora)", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "365226; £6 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hanora-nora-hegarty.html" }, { "nm": "HEIKKINEN, Miss Laina", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101282; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/laina-heikkinen.html" }, { "nm": "HEINEN, Mr Joseph Dominichus", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-heinen.html" }, { "nm": "HEININEN, Miss Wendla Maria", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "3101290; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wendla-maria-heininen.html" }, { "nm": "HELLSTRöM, Miss Hilda Maria", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7548; £8 19s 3d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hilda-maria-hellstrom.html" }, { "nm": "HEMMING, Mr Samuel Ernest", "age": "43", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Lamp Trimmer", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/samuel-hemming.html" }, { "nm": "HENDEKOVIC, Mr Ignjac", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349243; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ignjac-hendekovic.html" }, { "nm": "HENDRICKSON, Mr Charles Osker", "age": "28", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-george-hendrickson.html" }, { "nm": "HENDY, Mr Edward Martin", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-martin-hendy.html" }, { "nm": "HENRIKSSON, Miss Jenny Lovisa", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "347086; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jenny-lovisa-henriksson.html" }, { "nm": "HENRY, Miss Bridget Delia", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382649; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bridget-delia-henry.html" }, { "nm": "HENRY, Mr James", "age": "47", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-henry.html" }, { "nm": "HENSFORD, Mr Herbert George Ernest", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-george-hensford.html" }, { "nm": "HEPBURN, Mr William", "age": "27", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-hepburn.html" }, { "nm": "HERD, Mr Hugh", "age": "35", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/hugh-herd.html" }, { "nm": "HERMAN, Miss Alice", "age": "23", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "220845; £65", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-herman.html" }, { "nm": "HERMAN, Miss Kate", "age": "23", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "220845; £65", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/kate-herman.html" }, { "nm": "HERMAN, Mr Samuel", "age": "49", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "220845; £65", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-herman.html" }, { "nm": "HERMAN, Mrs Jane", "age": "48", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "220845; £65", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jane-herman.html" }, { "nm": "HESKETH, Mr John Henry", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Second Engineer (refrigeration)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-henry-hesketh.html" }, { "nm": "HEWITT, Mr Thomas", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-hewett.html" }, { "nm": "HEWLETT, Mrs Mary Dunbar", "age": "56", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248706; £16", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-dunbar-hewlett.html" }, { "nm": "HICHENS, Mr Robert", "age": "29", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Quartermaster", "tck": "", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-hichens.html" }, { "nm": "HICKMAN, Mr Leonard Mark", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-hickman.html" }, { "nm": "HICKMAN, Mr Lewis", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lewis-hickman.html" }, { "nm": "HICKMAN, Mr Stanley George", "age": "20", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stanley-hickman.html" }, { "nm": "HILL, Mr H. P.", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-hill.html" }, { "nm": "HILL, Mr James", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-hill.html" }, { "nm": "HILL, Mr James Colston", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-colston-hill.html" }, { "nm": "HILLIARD, Mr Herbert Henry", "age": "44", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Buyer", "tck": "17463; £51 17s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-henry-hilliard.html" }, { "nm": "HILTUNEN, Miss Marta", "age": "18", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250650; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marta-hiltunen.html" }, { "nm": "HINCKLEY, Mr George Herbert", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bathroom Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-hinckley.html" }, { "nm": "HINDS, Mr Charles", "age": "42", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/charles-hinds.html" }, { "nm": "HINE, Mr William Edward", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-hine.html" }, { "nm": "HINTON, Mr Stephen William", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stephen-william-hinton.html" }, { "nm": "HIPKINS, Mr William Edward", "age": "55", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Manufacturer", "tck": "680; £50", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-hipkins.html" }, { "nm": "HIPPACH, Miss Jean Gertrude", "age": "17", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "111361; £57 19s 7d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jean-gertrude-hippach.html" }, { "nm": "HIPPACH, Mrs Ida Sophia", "age": "44", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "111361; £57 19s 7d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ida-hippach.html" }, { "nm": "HIRVONEN, Miss Hildur Elisabeth", "age": "2", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101298; £12 5s 9d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hildur-hirvonen.html" }, { "nm": "HIRVONEN, Mrs Helga Elisabeth Lindqvist", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101298; £12 5s 9d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helga-hirvonen.html" }, { "nm": "HISCOCK, Mr Sydney George", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/s-hiscock.html" }, { "nm": "HOARE, Mr Leonard James", "age": "16", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-james-hoare.html" }, { "nm": "HOCKING, Miss Ellen(Nellie)", "age": "20", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29105; £23", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-hocking.html" }, { "nm": "HOCKING, Mr Richard George", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Baker", "tck": "29104; £11 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-hocking.html" }, { "nm": "HOCKING, Mr Samuel James Metcalfe", "age": "36", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Painter & Decorator", "tck": "242963; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-hocking.html" }, { "nm": "HOCKING, Mrs Elizabeth(Eliza)", "age": "54", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29105; £23", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-hocking.html" }, { "nm": "HODGE, Mr Charles", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior Assistant 3rd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-hodge.html" }, { "nm": "HODGES, Mr Henry Price", "age": "50", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musical Instrument Vendor", "tck": "250643; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-price-hodges.html" }, { "nm": "HODGES, Mr W.", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-hodges.html" }, { "nm": "HODGKINSON, Mr Leonard", "age": "46", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior 4th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-hodgkinson.html" }, { "nm": "HOGEBOOM, Mrs Anna Louisa", "age": "51", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Of Independent Means", "tck": "13502; £77 19s 2d", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-hogeboom.html" }, { "nm": "HOGG, Mr Charles William", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-william-hogg.html" }, { "nm": "HOGG, Mr George Alfred", "age": "29", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Lookout", "tck": "", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-alfred-hogg.html" }, { "nm": "HOGUE, Mr E.", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/e-hogue.html" }, { "nm": "HOLD, Mr Stephen", "age": "44", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Clerk", "tck": "26707; £26", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stephen-hold.html" }, { "nm": "HOLD, Mrs Annie Margaret", "age": "29", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "26707; £26", // This is a comment "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-margaret-hold.html" }, { "nm": "HOLLAND, Mr James", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-holland.html" }, { "nm": "HOLLAND, Mr T.", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/t-holland.html" }, { "nm": "HOLLAND, Mr Thomas", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Reception Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-holland.html" }, { "nm": "HOLLOWAY, Mr Sidney", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant clothes presser steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-holloway.html" }, { "nm": "HOLM, Mr John Fredrik Alexander", "age": "43", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "7075; £6 9s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-fredrik-alexander-holm.html" }, { "nm": "HOLMAN, Mr Harry", "age": "28", "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-holman.html" }, { "nm": "HOLMAN, Mr Thomas", "age": "24", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-holman.html" }, { "nm": "HOLME, Mr Nicholas", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/nicholas-holme.html" }, { "nm": "HOLTHEN, Mr Johan Martin", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "4001; £22 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-martin-holthen.html" }, { "nm": "HOLVERSON, Mr Alexander Oskar", "age": "42", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113789; £52", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-oskar-holverson.html" }, { "nm": "HOLVERSON, Mrs Mary Aline", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113789; £52", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-aline-holverson.html" }, { "nm": "HOMER, Mr Harry", "age": "40", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Gambler", "tck": "111426; £26 11s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harry-homer.html" }, { "nm": "HONKANEN, Miss Eliina", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101283; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eliina-honkanen.html" }, { "nm": "HOOD, Mr Ambrose Jr", "age": "22", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14879; £73 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ambrose-hood.html" }, { "nm": "HOPGOOD, Mr Roland John C.", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roland-hopgood.html" }, { "nm": "HOPKINS, Mr Frederick William", "age": "16", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-hopkins.html" }, { "nm": "HOPKINS, Mr Robert", "age": "38", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-hopkins.html" }, { "nm": "HOPKINS, Mr Robert John", "age": "40", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-john-hopkins.html" }, { "nm": "HORGAN, Mr John", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "370377; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-nee-landers-horgan.html" }, { "nm": "HORNER, Mr Alex", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/alex-horner.html" }, { "nm": "HORSWILL, Mr Albert Edward James", "age": "33", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-edward-james-horswill.html" }, { "nm": "HOSGOOD, Mr Richard William", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-hosgood.html" }, { "nm": "HOSKING, Mr George Fox", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior 3rd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-fox-hosking.html" }, { "nm": "HOSONO, Mr Masabumi", "age": "41", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Civil Servant", "tck": "237798; £13", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/masabumi-hosono.html" }, { "nm": "HOUSE, Mr William John", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-house.html" }, { "nm": "HOWARD, Miss May Elizabeth", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Laundry Worker", "tck": "39186; £8 1s", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/may-elizabeth-howard.html" }, { "nm": "HOWARD, Mr Benjamin", "age": "63", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Retired", "tck": "24065; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/benjamin-howard.html" }, { "nm": "HOWARD, Mrs Ellen Truelove", "age": "61", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "24065; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ellen-truelove-howard.html" }, { "nm": "HOWELL, Mr Arthur Albert", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-albert-howell.html" }, { "nm": "HOYT, Mr Frederick Maxfield", "age": "38", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19943; £100", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-maxfield-hoyt.html" }, { "nm": "HOYT, Mr William Fisher", "age": "42", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17600; £30 13s 11d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-fisher-hoyt.html" }, { "nm": "HOYT, Mrs Jane Anne", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19943; £100", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jane-anne-hoyt.html" }, { "nm": "HUGHES, Mr William Thomas", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thomas-hughes.html" }, { "nm": "HUMBLEN, Mr Adolf Mathias Nicolai Olsen", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "348121; £7 13s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/adolf-mathias-nicolai-olsen-humblen.html" }, { "nm": "HUMBY, Mr Frederick Charles", "age": "17", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward (2nd Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-humby.html" }, { "nm": "HUME, Mr John Law", "age": "21", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jock-hume.html" }, { "nm": "HUMPHREYS, Mr Humphrey", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward, 2nd Class", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/humphrey-humphreys.html" }, { "nm": "HUMPHREYS, Mr Sidney James", "age": "48", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Quartermaster", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sidney-james-humphreys.html" }, { "nm": "HUNT, Mr Albert Sylvanus", "age": "23", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-hunt.html" }, { "nm": "HUNT, Mr George Henry", "age": "33", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Gardener", "tck": "1585; £12 5s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-henry-hunt.html" }, { "nm": "HUNT, Mr Tom", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tom-hunt.html" }, { "nm": "HURST, Mr Charles John", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-john-hurst.html" }, { "nm": "HURST, Mr Walter", "age": "23", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-hurst.html" }, { "nm": "HUTCHINSON, Mr James", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Vegetable. Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-hutchinson.html" }, { "nm": "HUTCHINSON, Mr John Hall", "age": "26", // This is a comment "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "Carpenter / Joiner", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-hall-hutchinson.html" }, { "nm": "HUTTON, Mr George", "age": "37", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/george-hutton.html" }, { "nm": "HYLAND, Mr Leo James", "age": "19", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/leo-james-hyland.html" }, { "nm": "HYMAN, Mr Abraham Joseph", "age": "34", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Framer", "tck": "3470; £7 17s 9d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/abraham-hyman.html" }, { "nm": "IBRAHIM SHAWAH, Mr Yousseff", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2627; £14 9s 2d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/yousseff-ibrahim-shawah.html" }, { "nm": "ICARD, Miss Rose Amélie", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "113572; £80", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/amelia-icard.html" }, { "nm": "IDE, Mr Harry John", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-john-ide.html" }, { "nm": "ILETT, Miss Bertha", "age": "17", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14885; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertha-ilett.html" }, { "nm": "ILIEFF, Mr Ylio", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349220; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ylio-ilieff.html" }, { "nm": "ILMAKANGAS, Miss Ida Livija", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "3101270; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ida-livija-ilmakangas.html" }, { "nm": "ILMAKANGAS, Miss Pieta Sofia", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "3101271; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pieta-sofia-ilmakangas.html" }, { "nm": "INGRAM, Mr George", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-ingram.html" }, { "nm": "INGROUILLE, Mr Henry", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-ingrouille.html" }, { "nm": "INGS, Mr William Ernest", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-ernest-ings.html" }, { "nm": "INSTANCE, Mr T.", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/t-instance.html" }, { "nm": "ISHAM, Miss Ann Elizabeth", "age": "50", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17595; £28 14s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ann-elizabeth-isham.html" }, { "nm": "ISMAY, Mr Joseph Bruce", "age": "49", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Shipowner", "tck": "112058", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/j-bruce-ismay.html" }, { "nm": "IVANOFF, Mr Kanio", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349201; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/kanio-ivanoff.html" }, { "nm": "JABBUR (ZABOUR), Miss Hileni", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Housekeeper", "tck": "2665; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hileni-jabbur-zabour.html" }, { "nm": "JABBUR (ZABOUR), Miss Thamine", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Housekeeper", "tck": "2665; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thamine-jabbur-zabour.html" }, { "nm": "JACKOPSON, Mr John Henry", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-jacobson.html" }, { "nm": "JACKSON, Mr Cecil", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant boots steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/cecil-jackson.html" }, { "nm": "JACOBSOHN, Mr Sidney Samuel", "age": "40", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "243847; £27", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-samuel-jacobsohn.html" }, { "nm": "JACOBSOHN, Mrs Amy Frances Christy", "age": "24", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "243847; £27", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/amy-jacobsohn.html" }, { "nm": "JAGO, Mr Joseph", "age": "57", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-jago.html" }, { "nm": "JAILLET, Mr Henri Marie", "age": "28", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Pastry Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henri-marie-jaillet.html" }, { "nm": "JAL?EVAC, Mr Ivan", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "349240; £7 17s 11d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ivan-jalsevac.html" }, { "nm": "JAMES, Mr Thomas", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-james.html" }, { "nm": "JAMES, Mr Thomas", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-james-2.html" }, { "nm": "JAMESON, Mr William", "age": "48", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-jameson.html" }, { "nm": "JANAWAY, Mr William Frank", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-frank-janaway.html" }, { "nm": "JANIN, Mr Claude Marie", "age": "29", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Soup Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/claude-marie-janin.html" }, { "nm": "JANSSON, Mr Carl Olof", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350034; £7 15s 11d", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/carl-olof-jansson.html" }, { "nm": "JARDIM, Mr José Neto", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101305; £7 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jose-neto-jardim.html" }, { "nm": "JARVIS, Mr Denzil John", "age": "47", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "237565; £15", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/denzil-john-jarvis.html" }, { "nm": "JEFFERY, Mr William Alfred", "age": "28", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "A la carte restaurant controller", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-alfred-jeffery.html" }, { "nm": "JEFFERYS, Mr Clifford Thomas", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31029; £31 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/clifford-thomas-jefferys.html" }, { "nm": "JEFFERYS, Mr Ernest Wilfred", "age": "22", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31029; £31 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-wilfred-jefferys.html" }, { "nm": "JENKIN, Mr Stephen Curnow", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "33111; £10 10s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stephen-curnow-jenkin.html" }, { "nm": "JENNER, Mr F.", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Lookout", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/f-jenner.html" }, { "nm": "JENNER, Mr Thomas Henry (Harry)", "age": "55", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-jenner.html" }, { "nm": "JENSEN, Mr Charles Valdemar", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-valdemar-jensen.html" }, { "nm": "JENSEN, Mr Hans Peder", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350050; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hans-peder-jensen.html" }, { "nm": "JENSEN, Mr Niels Peder (Rasmus)", "age": "48", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "350048; £7 1s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/niels-peder-rasmus-jensen.html" }, { "nm": "JENSEN, Mr Svend Lauritz", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "350047; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/svend-lauritz-jensen.html" }, { "nm": "JERMYN, Miss Annie Jane", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "14313; £7 15s", /* This is a second comment */ "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-jane-jermyn.html" }, { "nm": "JERWAN, Mrs Marie Marthe", "age": "23", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "541; £13 15s 10d", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marie-marthe-jerwan.html" }, { "nm": "JESSOP, Miss Violet Constance", "age": "24", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/violet-constance-jessop.html" }, { "nm": "JEWELL, Mr Archie", "age": "23", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Lookout", "tck": "", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/archie-jewell.html" }, { "nm": "JOAS, Mr N.", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/n-joas.html" }, { "nm": "JOHANNESEN, Mr Bernt Johannes", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "65306; £8 2s 3d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bernt-johannes-johannesen.html" }, { "nm": "JOHANSON, Mr Jakob Alfred", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101264; £6 9s 11d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jakob-alfred-johanson.html" }, { "nm": "JOHANSSON PALMQUIST, Mr Oskar Leander", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347070; £7 15s 6d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/oskar-palmquist.html" }, { "nm": "JOHANSSON, Mr Erik", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "350052; £7 15s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/erik-johansson.html" }, { "nm": "JOHANSSON, Mr Gustaf Joel", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7540; £8 13s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gustaf-joel-johansson.html" }, { "nm": "JOHANSSON, Mr Karl Johan", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347063; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-johan-johansson.html" }, { "nm": "JOHANSSON, Mr Nils", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347467; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nils-johansson.html" }, { "nm": "JOHNSON, Master Harold Theodor", "age": "4", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347742; £11 2s 8d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harold-theodor-johnson.html" }, { "nm": "JOHNSON, Miss Eleanor Ileen", "age": "1", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347742; £11 2s 8d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eleanor-ileen-johnson.html" }, { "nm": "JOHNSON, Mr August", "age": "49", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "370160", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-johnson.html" }, { "nm": "JOHNSON, Mr Malkolm Joackim", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347062; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/malkolm-joackim-johnson.html" }, { "nm": "JOHNSON, Mr William Cahoone Jr.", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "370160", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-cahoone-johnson.html" }, { "nm": "JOHNSON, Mrs Elisabeth Vilhelmina", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347742; £11 2s 8d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elisabeth-vilhelmina-johnson.html" }, { "nm": "JOHNSTON, Master William Andrew", "age": "8", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "6607; £23 9s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-andrew-johnston.html" }, { "nm": "JOHNSTON, Miss Catherine Nellie", "age": "7", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "6607; £23 9s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catherine-nellie-johnston.html" }, { "nm": "JOHNSTON, Mr Andrew Emslie", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Plumber", "tck": "6607; £23 9s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/andrew-emslie-johnston.html" }, { "nm": "JOHNSTON, Mr James", "age": "41", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-johnston.html" }, { "nm": "JOHNSTON, Mrs Eliza", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "6607; £23 9s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eliza-johnston.html" }, { "nm": "JONES, Mr Albert", "age": "17", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-jones.html" }, { "nm": "JONES, Mr Arthur Ernest", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward (2nd Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-ernest-jones.html" }, { "nm": "JONES, Mr Charles Cresson", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Estate Manager", "tck": "694; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-cresson-jones.html" }, { "nm": "JONES, Mr H.", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Roast Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-jones.html" }, { "nm": "JONES, Mr Thomas William", "age": "32", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-william-jones.html" }, { "nm": "JONES, Mr Victor Reginald", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-jones.html" }, { "nm": "JONKOFF, Mr Lalio", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349204; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lalio-jonkoff.html" }, { "nm": "JONSSON, Mr Carl", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "350417; £7 17s 1d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/carl-jonsson.html" }, { "nm": "JöNSSON, Mr Nils Hilding", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "350408; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nils-hilding-jonsson.html" }, { "nm": "JOSEPH (SHAHIN), Mr Elias", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2675; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elias-joseph-shahin.html" }, { "nm": "JOSEPH, Mr Kirkpatrick", "age": "37", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/kirkpatrick-joseph.html" }, { "nm": "JOUANNAULT, Mr Georges Jules", "age": "24", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Sauce Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/georges-jules-jouannault.html" }, { "nm": "JOUGHIN, Mr Charles John", "age": "32", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chief Baker", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-john-joughin.html" }, { "nm": "JUDD, Mr Charles Edward", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-judd.html" }, { "nm": "JUKES, Mr Henry James", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-jukes.html" }, { "nm": "JULIAN, Mr Henry Forbes", "age": "50", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Metallurgist", "tck": "113044; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-forbes-julian.html" }, { "nm": "JUPE, Mr Boykett Herbert", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Electrician", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-jupe.html" }, { "nm": "JUSSILA, Miss Katriina", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "4136; £9 16s 10d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/katriina-jussila.html" }, { "nm": "JUSSILA, Miss Mari Aina", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "4137; £9 16s 10d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mari-aina-jussila.html" }, { "nm": "JUSSILA, Mr Eiriik", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101286; £7 18s 6d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eiriik-jussila.html" }, { "nm": "KALLIO, Mr Nikolai Erland", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101274; £7 2s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nikolai-erland-kallio.html" }, { "nm": "KALVIK, Mr Johannes Halvorsen", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "8475; £8 8s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johannes-kalvik.html" }, { "nm": "KANTOR, Mr Sinai", "age": "34", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244367; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sinai-kantor.html" }, { "nm": "KANTOR, Mrs Miriam", "age": "24", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244367; £26", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/miriam-kantor.html" }, { "nm": "KARAJIC, Mr Milan", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349246; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/milan-karajic.html" }, { "nm": "KARLSSON, Mr Einar Gervasius", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Military", "tck": "350053; £7 15s 11d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/einar-gervasius-karlsson.html" }, { "nm": "KARLSSON, Mr Julius Konrad Eugen", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "347465; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/julius-konrad-eugen-karlsson.html" }, { "nm": "KARLSSON, Mr Nils August", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "350060; £7 10s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nils-august-karlsson.html" }, { "nm": "KARNES, Mrs Claire", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "13534; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/claire-karnes.html" }, { "nm": "KARUN, Miss Manca", "age": "4", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "349256; £13 8s 4d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/manca-karun.html" }, { "nm": "KARUN, Mr Franz", "age": "39", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Hotelier", "tck": "349256; £13 8s 4d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/franz-karun.html" }, { "nm": "KASPER, Mr F.", "age": "40", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/f-kasper.html" }, { "nm": "KASSEM HOUSSEIN, Mr Fared", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farmer", "tck": "2700; £7 4s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/fared-kassem-houssein.html" }, { "nm": "KATAVELOS, Mr Vasilios G.", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farmer", "tck": "2682; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/vasilios-katavelos.html" }, { "nm": "KAVANAGH, Mr William", "age": "27", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-kavanagh.html" }, { "nm": "KEANE, Miss Nora Agnes", "age": "46", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "", "tck": "226593; £12 7s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nora-keane.html" }, { "nm": "KEANE, Mr Andrew(Andy)", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "12460; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/andrew-andy-keane.html" }, { "nm": "KEANE, Mr Daniel", "age": "35", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "", "tck": "233734; £12 7s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/daniel-keane.html" }, { "nm": "KEARL, Mr Charles Henry", "age": "44", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-henry-kearl.html" }, { "nm": "KEARL, Mr George Edward", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/g-kearl.html" }, { "nm": "KEEFE, Mr Arthur", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "323592; £7 5s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-keefe.html" }, { "nm": "KEEN, Mr Percy Edward", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/percy-edward-keen.html" }, { "nm": "KEENAN, Mr John", "age": "58", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-keenan.html" }, { "nm": "KEENAN, Mr Patrick", "age": "35", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-keenan.html" }, { "nm": "KEENAN, Mr William", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-keenan.html" }, { "nm": "KEENAN, Mr William", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-keenan-2.html" }, { "nm": "KEEPING, Mr Edwin Herbert", "age": "33", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "113503; £211 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edwin-herbert-keeping.html" }, { "nm": "KELLAND, Mr Thomas", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd class library steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-kelland.html" }, { "nm": "KELLY, James", "age": "44", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-kelly-3.html" }, { "nm": "KELLY, Miss Anna Katherine", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "9234; £7 15s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-katherine-kelly.html" }, { "nm": "KELLY, Miss Mary", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "14312; £7 15s", /* This is a second comment */ "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-kelly.html" }, { "nm": "KELLY, Mr James", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Painter & Decorator", "tck": "363592; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-kelly.html" }, { "nm": "KELLY, Mr James", "age": "44", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "330911; £7 16s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-kelly-2.html" }, { "nm": "KELLY, Mr William", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Assistant Electrician", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-kelly.html" }, { "nm": "KELLY, Mrs Fanny Maria", "age": "45", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "223596; £13 10s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fannie-kelly.html" }, { "nm": "KEMISH, Mr George", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-kemish.html" }, { "nm": "KEMP, Mr Thomas Hulman", "age": "43", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Extra Assistant 4th Engineer (Refrigeration)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-hulman-kemp.html" }, { "nm": "KENCHENTEN, Mr Frederick", "age": "37", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-kenchenten.html" }, { "nm": "KENNEDY, Mr John", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "368783; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-kennedy.html" }, { "nm": "KENNELL, Mr Charles", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Hebrew Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-kennell.html" }, { "nm": "KENT, Mr Edward Austin", "age": "58", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Architect", "tck": "11771; £29 14s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-austin-kent.html" }, { "nm": "KENYON, Mr Frederick R.", "age": "41", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17464; £51 17s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-kenyon.html" }, { "nm": "KENYON, Mrs Marion", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17464; £51 17s 3d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marion-kenyon.html" }, { "nm": "KENZLER, Mr August", "age": "43", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/augustus-kenzler.html" }, { "nm": "KERLEY, Mr William Thomas", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thomas-kerley.html" }, { "nm": "KERNAGHAN, Mr David", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-kernaghan.html" }, { "nm": "KERNEY, Mr William", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-kerney.html" }, { "nm": "KERR, Mr Thomas Russell", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-kerr.html" }, { "nm": "KETCHLEY, Mr Henry", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-ketchley.html" }, { "nm": "KHALIL, Mr Betros", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2660; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/betros-khalil.html" }, { "nm": "KHALIL, Mrs Zahie(Maria)", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2660; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/zahie-maria-khalil.html" }, { "nm": "KIERAN, Mr James William", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Chief 3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-william-kieran.html" }, { "nm": "KIERAN, Mr Michael", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/michael-kieran.html" }, { "nm": "KIERNAN, Mr John", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "367227; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-kiernan.html" }, { "nm": "KIERNAN, Mr Philip", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "367229; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/philip-kiernan.html" }, { "nm": "KILGANNON, Mr Thomas", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "36865; £7 14s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-kilgannon.html" }, { "nm": "KIMBALL, Mr Edwin Nelson Jr.", "age": "42", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11753; £52 11s 1d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edwin-nelson-kimball.html" }, { "nm": "KIMBALL, Mrs Gertrude", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11753; £52 11s 1d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gertrude-kimball.html" }, { "nm": "KING, Mr Alfred John Moffett", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Lift Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-king.html" }, { "nm": "KING, Mr Ernest Waldron", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Clerk (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-waldron-king.html" }, { "nm": "KING, Mr G.", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/g-king.html" }, { "nm": "KING, Mr Thomas Walter", "age": "42", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Master-at-arms", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-walter-king.html" }, { "nm": "KINGSCOTE, Mr William Ford", "age": "42", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-ford-kingscote.html" }, { "nm": "KINK, Miss Maria", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315152; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/maria-kink.html" }, { "nm": "KINK, Mr Anton", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315153; £22 6d", /* This is a second comment */ "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anton-kink.html" }, { "nm": "KINK, Mr Vincenz", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Magazineer", "tck": "315151; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/vincenz-kink.html" }, { "nm": "KINK-HEILMANN, Miss Luise Gretchen", "age": "4", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315153; £22 6d", /* This is a second comment */ "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/luise-gretchen-kink-heilmann.html" }, { "nm": "KINK-HEILMANN, Mrs Luise", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315153; £22 6d", /* This is a second comment */ "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/luise-kink-heilmann.html" }, { "nm": "KINSELLA, Mr Louis", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/louis-kinsella.html" }, { "nm": "KINSTRY, Mr Charles", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/charles-kinstry.html" }, { "nm": "KIRKALDY, Mr Thomas Benjamin", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-kirkaldy.html" }, { "nm": "KIRKHAM, Mr James", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-kirkham.html" }, { "nm": "KIRKLAND, Fr Charles Leonard", "age": "52", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "Priest / Minister", "tck": "219533; £12 7s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-kirkland.html" }, { "nm": "KITCHING, Mr Arthur Alfred", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-alfred-kitching.html" }, { "nm": "KLABER, Mr Herman", "age": "", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113028; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herman-klaber.html" }, { "nm": "KLASéN, Miss Gertrud Emilia", "age": "1", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350405; £12 3s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gertrud-emilia-klasen.html" }, { "nm": "KLASéN, Mr Klas Albin", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "350404; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/klas-albin-klasen.html" }, { "nm": "KLASéN, Mrs Hulda Kristina Eugenia", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Housewife", "tck": "350405; £12 3s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hulda-kristina-eugenia-klasen.html" }, { "nm": "KLEIN, Mr Herbert", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Barber", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-klein.html" }, { "nm": "KNEESE, Miss", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "47; £2", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/kneese.html" }, { "nm": "KNIGHT, Mr George", "age": "44", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-knight.html" }, { "nm": "KNIGHT, Mr Leonard George", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward (3rd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-george-knight.html" }, { "nm": "KNIGHT, Mr Robert J.", "age": "39", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Belfast", "ch": "Fitter", "tck": "239855", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-knight.html" }, { "nm": "KNOWLES, Mr Thomas", "age": "42", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman Messman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-knowles.html" }, { "nm": "KRAEFF, Mr Theodor", "age": "", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "349253; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/theodor-kraeff.html" }, { "nm": "KREKORIAN, Mr Neshan", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2654; £7 4s 7d", // This is a comment "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/neshan-krekorian.html" }, { "nm": "KREUCHEN, Miss Emilie", "age": "29", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "24160; £211 6s 9d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emilie-kreuchen.html" }, { "nm": "KRINS, Mr Georges Alexandre", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/georges-krins.html" }, { "nm": "KUTSCHER (LITHMAN), Mr Simon", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Baker", "tck": "251; £7 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/simon-kutscher-lithman.html" }, { "nm": "KVILLNER, Mr Johan Henrik Johannesson", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Mechanical Engineer", "tck": "18723; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-henrik-johannesson-kvillner.html" }, { "nm": "LACEY, Mr Bertie William", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon steward, 2nd Class", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bert-lacey.html" }, { "nm": "LAHOUD ISHAQ MOWAD, Mr Sarkis", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2624; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sarkis-lahoud-ishaq-mowad.html" }, { "nm": "LAHTINEN, Fr William", "age": "35", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "250651; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-lahtinen.html" }, { "nm": "LAHTINEN, Mrs Anna Amelia", "age": "34", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250651; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anna-amelia-lahtinen.html" }, { "nm": "LAHY, Mr T. E.", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/t-lahy.html" }, { "nm": "LAITINEN, Miss Kristina Sofia", "age": "37", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Housekeeper", "tck": "4135; £9 11s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/kristina-sofia-laitinen.html" }, { "nm": "LAKE, Mr William", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-lake.html" }, { "nm": "LALEFF, Mr Kristo", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349217; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/kristo-laleff.html" }, { "nm": "LAM, Mr Ali", "age": "38", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ali-lam.html" }, { "nm": "LAM, Mr Len", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/len-lam.html" }, { "nm": "LAMB, Mr John Joseph", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "Gentleman", "tck": "240261; £10 14s 2d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-joseph-lamb.html" }, { "nm": "LANDERGREN, Miss Aurora Adelia", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7077; £7 5s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/aurora-adelia-landergren.html" }, { "nm": "LANE, Mr Albert Edward", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-edward-lane.html" }, { "nm": "LANE, Mr Patrick", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "7935; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-lane.html" }, { "nm": "LANG, Mr Fang", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fang-lang.html" }, { "nm": "LAROCHE, Miss Louise", "age": "1", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2123; £41 11s 7d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/louise-laroche.html" }, { "nm": "LAROCHE, Miss Simonne Marie Anne Andrée", "age": "3", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2123; £41 11s 7d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/simonne-laroche.html" }, { "nm": "LAROCHE, Mr Joseph Philippe Lemercier", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "Engineer", "tck": "2123; £41 11s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-laroche.html" }, { "nm": "LAROCHE, Mrs Juliette Marie Louise", "age": "22", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2123; £41 11s 7d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/juliette-laroche.html" }, { "nm": "LARSSON, Mr August Viktor", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "7545; £9 9s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/august-viktor-larsson.html" }, { "nm": "LARSSON, Mr Bengt Edvin", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347067; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bengt-edvin-larsson.html" }, { "nm": "LARSSON-RONDBERG, Mr Edvard A.", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347065; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edvard-larsson-rondberg.html" }, { "nm": "LATIMER, Mr Andrew L", "age": "55", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chief Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/andrew-latimer.html" }, { "nm": "LAVINGTON, Miss Elizabeth", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bessie-lavington.html" }, { "nm": "LAWRENCE, Mr Arthur", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-lawrence.html" }, { "nm": "LEADER, Dr Alice", "age": "49", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Doctor", "tck": "17465; £25 18s 7d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-leader.html" }, { "nm": "LEADER, Mr Archibald", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Confectioner", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/archie-leader.html" }, { "nm": "LEATHER, Mrs Elizabeth Mary", "age": "41", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-may-leather.html" }, { "nm": "LEE, Mr H.", "age": "18", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-lee.html" }, { "nm": "LEE, Mr Henry Reginald", "age": "29", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/f-martin.html" }, { "nm": "LEE, Mr Reginald Robinson", "age": "41", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Lookout", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/reginald-robinson-lee.html" }, { "nm": "LEFEBVRE, Master Henry", "age": "5", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4133; £25 9s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-lefebvre.html" }, { "nm": "LEFEBVRE, Miss Ida", "age": "3", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4133; £25 9s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ida-lefebvre.html" }, { "nm": "LEFEBVRE, Miss Jeannie", "age": "8", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4133; £25 9s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jeannie-lefebvre.html" }, { "nm": "LEFEBVRE, Miss Mathilde", "age": "12", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4133; £25 9s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mathilde-lefebvre.html" }, { "nm": "LEFEBVRE, Mr Paul Georges", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/paul-georges-lefebvre.html" }, { "nm": "LEFEBVRE, Mrs Frances Marie", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4133; £25 9s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frances-marie-lefebvre.html" }, { "nm": "LEHMANN, Miss Bertha", "age": "17", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "1748; £12", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertha-lehmann.html" }, { "nm": "LEINONEN, Mr Antti Gustaf", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101292; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/antti-gustaf-leinonen.html" }, { "nm": "LEITCH, Miss Jessie Wills", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248727; £33", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jessie-leitch.html" }, { "nm": "LEMORE, Mrs Amelia(Milley)", "age": "34", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "34260; £10 10s", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/amelia-lemore.html" }, { "nm": "LENNON, Mr Denis", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "370371; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/denis-lennon.html" }, { "nm": "LENOX-CONYNGHAM, Master Dennis", "age": "10", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/dennis-lenox-conyngham.html" }, { "nm": "LENOX-CONYNGHAM, Miss Alice", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "75; £1 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/alice-lenox-conyngham.html" }, { "nm": "LENOX-CONYNGHAM, Miss Eileen", "age": "11", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/eileen-lenox-conyngham.html" }, { "nm": "LENOX-CONYNGHAM, Mrs", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/lenox-conyngham.html" }, { "nm": "LEONARD, Mr Lionel", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "370160", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lionel-leonard.html" }, { "nm": "LEONARD, Mr Matthew", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/matthew-leonard.html" }, { "nm": "LEROY, Miss Berthe", "age": "27", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17761; £106 8s 6d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/berthe-leroy.html" }, { "nm": "LESTER, Mr James", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Dipper", "tck": "48871; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-lester.html" }, { "nm": "LESUEUR, Mr Gustave J.", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Servant", "tck": "17755; £512 6s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gustave-lesueur.html" }, { "nm": "LEVETT, Mr George Alfred", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Pantryman Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-alfred-levett.html" }, { "nm": "LéVY, Mr René Jacques", "age": "36", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Chemist", "tck": "2163; £12 17s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rene-jacques-levy.html" }, { "nm": "LEWIS, Mr Arthur Ernest Read", "age": "27", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/arthur-ernest-read-lewis.html" }, { "nm": "LEWIS, Mr James", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-lewis.html" }, { "nm": "LEWY, Mr Ervin G.", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Jeweller", "tck": "17612; £27 14s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ervin-lewy.html" }, { "nm": "LEYSON, Mr Robert William Norman", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "29566; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-leyson.html" }, { "nm": "LIEVENS, Mr René Aimé", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345781; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rene-aime-lievens.html" }, { "nm": "LIGHT, Mr Charles Edward", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Plate Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-edward-light.html" }, { "nm": "LIGHT, Mr Christopher William", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/christopher-william-light.html" }, { "nm": "LIGHT, Mr W.", "age": "47", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-light.html" }, { "nm": "LIGHTOLLER, Mr Charles Herbert", "age": "38", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "2nd. Officer", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-herbert-lightoller.html" }, { "nm": "LINDAHL, Miss Agda Thorilda Viktoria", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347071; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/agda-thorilda-viktoria-lindahl.html" }, { "nm": "LINDBLOM, Miss Augusta Charlotta", "age": "45", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347073; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/augusta-charlotta-lindblom.html" }, { "nm": "LINDEBERG-LIND, Mr Erik Gustaf", "age": "42", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "17475; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/erik-lindeberg-lind.html" }, { "nm": "LINDELL, Mr Edvard Bengtsson", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349910; £15 11s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edvard-bengtsson-lindell.html" }, { "nm": "LINDELL, Mrs Elin Gerda", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349910; £15 11s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elin-gerda-lindell.html" }, { "nm": "LINDQVIST, Mr Eino William", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101285; £7 18s 6d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eino-william-lindqvist.html" }, { "nm": "LINDSAY, Mr William Charles", "age": "30", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-charles-lindsay.html" }, { "nm": "LINDSTRöM, Mrs Sigrid", "age": "55", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "112377; £27 14s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sigrid-lindstrom.html" }, { "nm": "LINEHAN, Mr Michael", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "330971; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/michael-linehan.html" }, { "nm": "LINES, Miss Mary Conover", "age": "16", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17592; £39 8s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-conover-lines.html" }, { "nm": "LINES, Mrs Elizabeth Lindsey", "age": "50", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17592; £39 8s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-lines.html" }, { "nm": "LING, Mr Lee", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "1601; £56 9s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lee-ling.html" }, { "nm": "LINHART, Mr Wenzel", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Baker", "tck": "345775; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wenzel-linhart.html" }, { "nm": "LINNANE, Mr John", "age": "61", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "Gentleman", "tck": "235509; £12 7s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-linnane.html" }, { "nm": "LITTLE, Mr James", "age": "49", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-little.html" }, { "nm": "LITTLE, Mr James", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-little-2.html" }, { "nm": "LITTLEJOHN, Mr Alexander James", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alexander-james-littlejohn.html" }, { "nm": "LIVSHIN, Mr David (Abraham Harmer)", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Jeweller", "tck": "374887; £7 5s", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-abraham-harmer-livshin.html" }, { "nm": "LLOYD, Mr Humphrey", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/humphrey-lloyd.html" }, { "nm": "LLOYD, Mr William", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-lloyd.html" }, { "nm": "LOBB, Mr William Arthur", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "3336; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-arthur-lobb.html" }, { "nm": "LOBB, Mrs Cordelia K.", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3336; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/cordelia-lobb.html" }, { "nm": "LOCKE, Mr A.", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/a-locke.html" }, { "nm": "LOCKYER, Mr Edward Thomas", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Grocers Assistant", "tck": "1222; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-thomas-lockyer.html" }, { "nm": "LONG, Mr Frank", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-long.html" }, { "nm": "LONG, Mr Milton Clyde", "age": "29", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113501; £30", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/milton-clyde-long.html" }, { "nm": "LONG, Mr William", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-long.html" }, { "nm": "LONGLEY, Miss Gretchen Fiske", "age": "21", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13502; £77 19s 2d", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gretchen-fiske-longley.html" }, { "nm": "LONGMUIR, Mr John Dickson", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantry Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-dickson-longmuir.html" }, { "nm": "LORING, Mr Joseph Holland", "age": "30", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Stockbroker", "tck": "113801; £45 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-holland-loring.html" }, { "nm": "LOUCH, Mr Charles Alexander", "age": "50", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Saddler", "tck": "3085; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-alexander-louch.html" }, { "nm": "LOUCH, Mrs Alice Adelaide", "age": "42", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3085; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-adelaide-louch.html" }, { "nm": "LOUGHRAN, Mr Joseph", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-loughran.html" }, { "nm": "LOVELL, Mr John", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Grill Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-lovell.html" }, { "nm": "LOVELL, Mr John Hall (Henry)", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "21173; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-hall-henry-lovell.html" }, { "nm": "LOWE, Mr Harold Godfrey", "age": "29", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "5th. Officer", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harold-godfrey-lowe.html" }, { "nm": "LOWERY, Mr David", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-lowery.html" }, { "nm": "LUCAS, Mr William Arthur", "age": "25", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-lucas.html" }, { "nm": "LUCAS, Mr William Watson", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-lucas-2.html" }, { "nm": "LULIC, Mr Nikola", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315098; £8 13s 3d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nikola-lulic.html" }, { "nm": "LUNDAHL, Mr Johan Svensson", "age": "51", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347743; £7 1s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-svensson-lundahl.html" }, { "nm": "LUNDIN, Miss Olga Elida", "age": "23", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347469; £7 17s 1d", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/olga-elida-lundin.html" }, { "nm": "LUNDSTRöM, Mr Thure Edvin", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350403; £7 11s 7d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thure-edvin-lundstrom.html" }, { "nm": "LURETTE, Miss Eugénie Elise", "age": "59", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17569; £146 10s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elise-lurette.html" }, { "nm": "LYDIATT, Mr Charles", "age": "45", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-lydiatt.html" }, { "nm": "LYMPEROPOULUS, Mr Panagiotis K.", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2683; £6 8s 9d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/panagiotis-lymperopoulus.html" }, { "nm": "LYNTAKOFF, Mr Stanko", "age": "44", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349235; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stanko-lyntakoff.html" }, { "nm": "LYONS, Mr William Henry", "age": "25", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-lyons.html" }, { "nm": "LYTLE, Mr Thomas", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-lytle.html" }, { "nm": "MABEY, Mr John Charles", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-charles-mabey.html" }, { "nm": "MACK, Mrs Mary", "age": "57", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "S.O./C. 3; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-mack.html" }, { "nm": "MACKAY, Mr Charles Donald", "age": "34", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-donald-mackay.html" }, { "nm": "MACKAY, Mr George William", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Butler", "tck": "42795; £7 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-william-mackay.html" }, { "nm": "MACKIE, Mr George William", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-william-mackie.html" }, { "nm": "MACKIE, Mr William Dickson", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior 5th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-dickson-mackie.html" }, { "nm": "MADIGAN, Miss Margaret(Maggie)", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "370370; £7 15s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-maggie-madigan.html" }, { "nm": "MADILL, Miss Georgette Alexandra", "age": "16", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "24160; £211 6s 9d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/georgette-madill.html" }, { "nm": "MADSEN, Mr Fridtjof Arne", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "17369; £7 2s 10d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fridtjof-arne-madsen.html" }, { "nm": "MäENPää, Mr Matti Alexanteri", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101275; £7 2s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/matti-alexanteri-maenpaa.html" }, { "nm": "MAGUIRE, Mr John Edward", "age": "30", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "110469; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-edward-maguire.html" }, { "nm": "MAHON, Miss Bridget Delia", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330924; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bridget-delia-mahon.html" }, { "nm": "MAIONI, Miss Roberta Elizabeth Mary", "age": "19", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "110152; £86 10s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/roberta-maioni.html" }, { "nm": "MAISNER, Mr Simon", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tailor", "tck": "2816; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/simon-maisner.html" }, { "nm": "MAJOR, Mr Thomas Edgar", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bathroom Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-edgar-major.html" }, { "nm": "MAJOR, Mr William James", "age": "32", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-james-major.html" }, { "nm": "MäKINEN, Mr Kalle Edvard", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101268; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/kalle-edvard-makinen.html" }, { "nm": "MALACHARD, Mr Jean-Noël", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "237735; £15 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jean-noel-malachard.html" }, { "nm": "MALLET, Master André Clement", "age": "1", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2079; £37 1d", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/andre-clement-mallet.html" }, { "nm": "MALLET, Mr Albert Denis Pierre", "age": "45", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "Merchant", "tck": "2079; £37 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-mallet.html" }, { "nm": "MALLET, Mrs Antonine Marie", "age": "24", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2079; £37 1d", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/antonine-marie-mallet.html" }, { "nm": "MAMEE, Mr Hanna", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2677; £7 4s 7d", // This is a comment "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hanna-mamee.html" }, { "nm": "MANGAN, Miss Mary", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "364850; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-mangan.html" }, { "nm": "MANGIAVACCHI, Mr Serafino Emilio", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "Clerk", "tck": "32861; £15 11s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/serafino-mangiavacchi.html" }, { "nm": "MANN, Mr Joseph", "age": "26", // This is a comment "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-mann.html" }, { "nm": "MANN, Mr Samuel", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-mann.html" }, { "nm": "MANNION, Miss Margaret", "age": "28", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "36866; £7 14s 9d", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-mannion.html" }, { "nm": "MANTLE, Mr Roland Frederick", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roland-frederick-mantle.html" }, { "nm": "MARCH, Mr John Starr", "age": "50", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Postal Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-starr-march.html" }, { "nm": "MARDIROSIAN, Mr Sarkis", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2655; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sarkis-mardirosian.html" }, { "nm": "MARéCHAL, Mr Pierre", "age": "29", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Aviator", "tck": "11774; £29 14s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/pierre-marechal.html" }, { "nm": "MARETT, Mr George John", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-john-marett.html" }, { "nm": "MARINKO, Mr Dmitri", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349238; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/dmitri-marinko.html" }, { "nm": "MARKOFF, Mr Marin", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349213; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marin-markoff.html" }, { "nm": "MARKS, Mr J.", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantryman Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-marks.html" }, { "nm": "MARKUN, Mr Johann", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "349257; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johann-markun.html" }, { "nm": "MARRIOTT, Mr John William", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Pantryman Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-marriott.html" }, { "nm": "MARSDEN, Miss Evelyn", "age": "28", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/evelyn-marsden.html" }, { "nm": "MARSH, Mr Frederick Charles", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-charles-marsh.html" }, { "nm": "MARTIN, Miss Mabel Elvina", "age": "20", "st": "Survivor", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Cashier", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mabel-edwina-martin.html" }, { "nm": "MARTIN, Mr John", "age": "33", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-martin.html" }, { "nm": "MARTIN, Mrs Annie Martha", "age": "39", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-martin.html" }, { "nm": "MARVIN, Mr Daniel Warner", "age": "18", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "113773; £53 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/daniel-warner-marvin.html" }, { "nm": "MARVIN, Mrs Mary Graham Carmichael", "age": "18", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113773; £53 2s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-marvin.html" }, { "nm": "MASKELL, Mr Leopold Adolphus", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leopold-adolphus-maskell.html" }, { "nm": "MASON, Mr Frank Archibald Robert", "age": "32", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-archibald-robert-mason.html" }, { "nm": "MASON, Mr J.", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-mason.html" }, { "nm": "MASSEY, Mr James", "age": "35", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-massey.html" }, { "nm": "MATHERS, Mr John", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mathers.html" }, { "nm": "MATHERSON, Mr David", "age": "30", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-matherson.html" }, { "nm": "MATHIAS, Mr Montague Vincent", "age": "28", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Mess Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/montague-vincent-mathias.html" }, { "nm": "MATINOFF, Mr Nicola", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "349255; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nicola-matinoff.html" }, { "nm": "MATTHEWS, Mr William John", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "China Clay Worker", "tck": "28228; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-matthews.html" }, { "nm": "MATTMANN, Sig. Adolf", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Ice Man", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/adolf-mattmann.html" }, { "nm": "MAUGE, Mr Paul Achille Maurice Germain", "age": "25", "st": "Survivor", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Kitchen Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/paul-achille-maurice-germain-mauge.html" }, { "nm": "MAWHINNEY, Mr John", "age": "45", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mawhinney.html" }, { "nm": "MAXWELL, Mr John", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "Carpenter / Joiner", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-maxwell.html" }, { "nm": "MAXWELL, Mr William", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-maxwell.html" }, { "nm": "MAY, Mr Arthur", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-may.html" }, { "nm": "MAY, Mr Arthur William", "age": "60", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman Messman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-william-may.html" }, { "nm": "MAY, Mr Richard W.", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/richard-may.html" }, { "nm": "MAY, Mr Stanley", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/stanley-may.html" }, { "nm": "MAYBERY, Mr Frank Hubert", "age": "36", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Property Developer / Real Estate", "tck": "239059; £16", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-maybery.html" }, { "nm": "MAYES, Mr William", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-mayes.html" }, { "nm": "MAYNARD, Mr Isaac Hiram", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Entrée Cook", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/isaac-hiram-maynard.html" }, { "nm": "MAYNé, Mlle Berthe Antonine", "age": "24", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Singer", "tck": "17482; £49 10s 1d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertha-mayne.html" }, { "nm": "MAYO, Mr William Peter", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-peter-mayo.html" }, { "nm": "MAYTUM, Mr Alfred", "age": "52", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chief Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-maytum.html" }, { "nm": "MAYZES, Mr Thomas Jubilee", "age": "25", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-mayzes.html" }, { "nm": "MCALLISTER, Mr Hugh", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/hugh-mcallister.html" }, { "nm": "MCALLISTOR, Mr Daniel", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/daniel-mcallistor.html" }, { "nm": "MCANDREW, Mr Thomas Patrick", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-mcandrew.html" }, { "nm": "MCANDREWS, Mr William", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-mcandrews.html" }, { "nm": "MCARTHUR, Mr James", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-mcarthur.html" }, { "nm": "MCBARTY, Mr Thomas", "age": "", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-mcbarty.html" }, { "nm": "MCCAFFRY, Mr Thomas Francis", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Banker", "tck": "13050; £75 4s 10d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-francis-mccaffry.html" }, { "nm": "MCCARRON, Mr David", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-mccarron.html" }, { "nm": "MCCARTHY, Miss Catherine(Katie)", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "383123; £7 15s", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/catherine-katie-mccarthy.html" }, { "nm": "MCCARTHY, Mr Frederick J.", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-mccarthy.html" }, { "nm": "MCCARTHY, Mr Timothy J.", "age": "54", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Buyer", "tck": "17463; £51 17s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/timothy-mccarthy.html" }, { "nm": "MCCARTHY, Mr William", "age": "47", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-mccarthy.html" }, { "nm": "MCCARTNEY, Mr John", "age": "49", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mccartney.html" }, { "nm": "MCCASTLAN, Mr W.", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-mccastlan.html" }, { "nm": "MCCAWLEY, Mr Thomas W.", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Gymnasium Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-mccawley.html" }, { "nm": "MCCORMACK, Mr Thomas Joseph", "age": "19", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Barman", "tck": "367228; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-joseph-mccormack.html" }, { "nm": "MCCOY, Miss Agnes", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "367226; £23 5s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/agnes-mccoy.html" }, { "nm": "MCCOY, Miss Alicia", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "367226; £23 5s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alicia-mccoy.html" }, { "nm": "MCCOY, Mr Bernard", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "367226; £23 5s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bernard-mccoy.html" }, { "nm": "MCCRAE, Mr Arthur Gordon", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "237216; £13 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-mccrae.html" }, { "nm": "MCCRIE, Mr James Matthew", "age": "30", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Oil Worker", "tck": "233478; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-matthew-mccrie.html" }, { "nm": "MCDERMOTT, Miss Bridget Delia", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330932; £7 15s 8d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bridget-delia-mcdermott.html" }, { "nm": "MCDONALD, Mr Daniel", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/daniel-mcdonald.html" }, { "nm": "MCDONALD, Mr George", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/george-mcdonald.html" }, { "nm": "MCELROY, Mr Hugh Walter", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Purser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hugh-walter-mcelroy.html" }, { "nm": "MCENSPIE, Mr James", "age": "48", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-mcenspie.html" }, { "nm": "MCENTEE, Mr Charles", "age": "37", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/charles-mcentee.html" }, { "nm": "MCERLINE, Mr John", "age": "49", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mcerline.html" }, { "nm": "MCEVOY, Mr Michael", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "36568; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/michael-mcevoy.html" }, { "nm": "MCGANN, Mr James", "age": "26", // This is a comment "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-mcgann.html" }, { "nm": "MCGARVEY, Mr Edward Joseph", "age": "34", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-joseph-mcgarvey.html" }, { "nm": "MCGAW, Mr Erroll Victor", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eroll-mcgaw.html" }, { "nm": "MCGAW, Mr Samuel", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-mcgaw.html" }, { "nm": "MCGEE, Mr Patrick", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-mcgee.html" }, { "nm": "MCGEE, Mr Samuel", "age": "48", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-mcgee.html" }, { "nm": "MCGILL, Mr John", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mcgill.html" }, { "nm": "MCGILL, Mr Thomas", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-mcgill.html" }, { "nm": "MCGIVERN, Mr Henry", "age": "41", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/henry-mcgivern.html" }, { "nm": "MCGIVERN, Mr Thomas", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-mcgivern.html" }, { "nm": "MCGONAGAL, Mr W.", "age": "49", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/w-mcgonagal.html" }, { "nm": "MCGOUGH, Mr Frank", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/frank-mcgough.html" }, { "nm": "MCGOUGH, Mr George Francis(Paddy)", "age": "36", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-francis-mcgough.html" }, { "nm": "MCGOUGH, Mr James Robert", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Buyer", "tck": "17473; £26 5s 9d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-mcgough.html" }, { "nm": "MCGOVERN, Ms Mary", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330931; £7 17s 7d", /* This is a second comment */ "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-mcgovern.html" }, { "nm": "MCGOWAN, Miss Anna(Annie)", "age": "17", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330923; £8 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-annie-mcgowan.html" }, { "nm": "MCGOWAN, Miss Katherine", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "9232; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/katherine-mcgowan.html" }, { "nm": "MCGOWN, Mr Barney", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/barney-mcgown.html" }, { "nm": "MCGRADY, Mr James", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-mcgrady.html" }, { "nm": "MCGREEVY, Mr Richard", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/richard-mcgreevy.html" }, { "nm": "MCGREGOR, Mr J.", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-mcgregor.html" }, { "nm": "MCGROGAN, Mr John", "age": "45", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mcgrogan.html" }, { "nm": "MCILROY, Mr Barney", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/barney-mcilroy.html" }, { "nm": "MCILROY, Mr James", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-mcilroy.html" }, { "nm": "MCILROY, Mr Robert", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-mcilroy.html" }, { "nm": "MCILROY, Mr William", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-mcilroy.html" }, { "nm": "MCILWAINE, Mr James", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-mcilwaine.html" }, { "nm": "MCINERNEY, Mr Thomas", "age": "38", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-mcinerney.html" }, { "nm": "MCINTOSH, Mr Joseph", "age": "48", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-mcintosh.html" }, { "nm": "MCINTYRE, Mr William", "age": "21", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-mcintyre.html" }, { "nm": "MCKANE, Mr Peter David", "age": "46", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28403; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/peter-david-mckane.html" }, { "nm": "MCKENNA, Mr Barney", "age": "24", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/barney-mckenna.html" }, { "nm": "MCKENNA, Mr Patrick", "age": "40", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-mckenna.html" }, { "nm": "MCKINNEY, Mr Peter", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/peter-mckinney.html" }, { "nm": "MCLAREN, Mrs Hypatia", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mclaren.html" }, { "nm": "MCMAHON, Mr Martin", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "370372; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/martin-mcmahon.html" }, { "nm": "MCMICKEN, Mr Arthur", "age": "23", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/arthur-mcmicken.html" }, { "nm": "MCMICKEN, Mr Benjamin Tucker", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Second Pantry Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/benjamin-tucker-mcmicken.html" }, { "nm": "MCMILLAN, Mr Samuel", "age": "29", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-mcmillan.html" }, { "nm": "MCMILLAN, Mr William", "age": "35", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-mcmillan.html" }, { "nm": "MCMILLEN, Mr Thomas", "age": "55", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-mcmillen.html" }, { "nm": "MCMULLAN, Mr Patrick", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-mcmullan.html" }, { "nm": "MCMULLAN, Mr William", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-mcmullan.html" }, { "nm": "MCMULLIN, Mr John Richard", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "First class saloon steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-mcmullin.html" }, { "nm": "MCMURRAY, Mr William", "age": "43", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-mcmurray.html" }, { "nm": "MCNAMEE, Mr Neal", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Provision Manager", "tck": "376566; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/neal-mcnamee.html" }, { "nm": "MCNAMEE, Mrs Eileen", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "376566; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eileen-mcnamee.html" }, { "nm": "MCNEILL, Miss Bridget", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "370368; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bridget-mcneill.html" }, { "nm": "MCQUILLAN, Mr William", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-mcquillan.html" }, { "nm": "MCRAE, Mr William Alexander", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-alexander-mcrae.html" }, { "nm": "MCREYNOLDS, Mr William", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior 6th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-mcreynolds.html" }, { "nm": "MCTEER, Mr John", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-mcteer.html" }, { "nm": "MEANWELL, Mrs Marian", "age": "63", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Milliner", "tck": "392087; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marian-meanwell.html" }, { "nm": "MECHAN, Mr William", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-mechan.html" }, { "nm": "MEEHON, Mr John", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "3130; £7 15s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-meehon.html" }, { "nm": "MEEK, Mrs Annie Louise Rowley", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "343095; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/annie-louise-rowley-meek.html" }, { "nm": "MELLINGER, Miss Madeleine Violet", "age": "13", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250644; £19 10s", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/madeleine-violet-mellinger.html" }, { "nm": "MELLINGER, Mrs Elizabeth Anne", "age": "41", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250644; £19 10s", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-anne-mellinger.html" }, { "nm": "MELLOR, Mr Arthur", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-mellor.html" }, { "nm": "MELLORS, Mr William John", "age": "19", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Salesman", "tck": "751; £10 10s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-mellors.html" }, { "nm": "MEO (MARTINO), Mr Alfonzo", "age": "48", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "11206; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfonzo-meo-martino.html" }, { "nm": "MERNAGH, Mr Robert", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "368703; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-mernagh.html" }, { "nm": "MEYER, Mr August", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Baker", "tck": "248723; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/august-meyer.html" }, { "nm": "MEYER, Mr Edgar Joseph", "age": "28", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Mechanical Engineer", "tck": "17604; £82 3s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edgar-meyer.html" }, { "nm": "MEYER, Mrs Leila", "age": "25", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17604; £82 3s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/leila-meyer.html" }, { "nm": "MIDDLETON, Mr Alfred Pirrie", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Assistant Electrician", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-pirrie-middleton.html" }, { "nm": "MIDDLETON, Mr Mark Victor", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mark-victor-middleton.html" }, { "nm": "MIDTSJø, Mr Karl Albert", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345501; £7 15s 6d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/karl-albert-midtsjo.html" }, { "nm": "MIHOFF, Mr Stoytcho", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349207; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stoytcho-mihoff.html" }, { "nm": "MILES, Mr Frank", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "359306; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-miles.html" }, { "nm": "MILFORD, Mr George", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-milford.html" }, { "nm": "MILLAR, Mr Robert", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Extra 5th Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-millar.html" }, { "nm": "MILLAR, Mr Thomas", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Deck Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-millar.html" }, { "nm": "MILLER, Mr William", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-miller.html" }, { "nm": "MILLET, Mr Francis Davis", "age": "65", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Artist", "tck": "13509; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francis-davis-millet.html" }, { "nm": "MILLFORD, Mr Daniel", "age": "26", // This is a comment "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/daniel-millford.html" }, { "nm": "MILLING, Mr Jacob Christian", "age": "48", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Machine Inspector", "tck": "234360; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jacob-christian-milling.html" }, { "nm": "MILLS, Mr Christopher", "age": "51", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/christopher-mills.html" }, { "nm": "MINAHAN, Dr William Edward", "age": "44", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cobh", "ch": "Merchant", "tck": "19928; £90", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-minahan.html" }, { "nm": "MINAHAN, Miss Daisy E.", "age": "33", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cobh", "ch": "", "tck": "19928; £90", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/daisy-minahan.html" }, { "nm": "MINAHAN, Mrs Lillian E.", "age": "37", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cobh", "ch": "", "tck": "19928; £90", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lillian-minahan.html" }, { "nm": "MINEFF, Mr Ivan", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349233; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ivan-mineff.html" }, { "nm": "MINKOFF, Mr Lazar", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349211; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lazar-minkoff.html" }, { "nm": "MINTRAM, Mr William", "age": "46", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-mintram.html" }, { "nm": "MISHELLANY, Mr Abraham Mansoor", "age": "53", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Printer Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/abraham-mansoor-mishellany.html" }, { "nm": "MITCHELL, Mr Henry Michael", "age": "71", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Coach Painter", "tck": "24580; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-michael-mitchell.html" }, { "nm": "MITCHELL, Mr Lorenzo (Lawrence) Horace", "age": "18", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lawrence-mitchell.html" }, { "nm": "MITKOFF, Mr Mito", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349221; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mito-mitkoff.html" }, { "nm": "MOCK, Mr Philipp Edmund", "age": "30", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13236; £57 15s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/philipp-mock.html" }, { "nm": "MOCKLER, Miss Ellen Mary", "age": "23", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330980; £7 17s 7d", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-mary-mockler.html" }, { "nm": "MOEN, Mr Sigurd Hansen", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "348123; £7 13s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sigurd-hansen-moen.html" }, { "nm": "MOLSON, Mr Harry Markland", "age": "55", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113787; £30 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-molson.html" }, { "nm": "MONRóS, Sr. Joan Javier", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jean-javier-mouros.html" }, { "nm": "MONTEVERDI, Sig. Giovanni", "age": "23", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giovanni-monteverdi.html" }, { "nm": "MONTVILA, Fr Juozas", "age": "27", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "211536; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/juozas-montvila.html" }, { "nm": "MOODY, Mr James Paul", "age": "24", "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "6th. Officer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-paul-moody.html" }, { "nm": "MOOR, Master Meier", "age": "7", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "392096; £12 9s 6d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/meier-moor.html" }, { "nm": "MOOR, Mrs Beila", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tailor", "tck": "392096; £12 9s 6d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/beila-moor.html" }, { "nm": "MOORE, Mr Alfred Ernest", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward, 2nd Class", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-ernest-moore.html" }, { "nm": "MOORE, Mr Clarence Bloomfield", "age": "47", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113796; £42 8s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/clarence-bloomfield-moore.html" }, { "nm": "MOORE, Mr George Alfred", "age": "32", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-alfred-moore.html" }, { "nm": "MOORE, Mr John J.", "age": "29", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-moore.html" }, { "nm": "MOORE, Mr Leonard Charles", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Bricklayer", "tck": "54510; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-charles-moore.html" }, { "nm": "MOORE, Mr Ralph", "age": "21", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ralph-moore.html" }, { "nm": "MOORES, Mr Richard Henry", "age": "44", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-henry-moores.html" }, { "nm": "MORAN, Miss Bertha Bridget", "age": "28", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "371110; £24 3s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertha-bridget-moran.html" }, { "nm": "MORAN, Mr Daniel James", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "371110; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/daniel-james-moran.html" }, { "nm": "MORAWECK, Dr Ernest", "age": "54", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Doctor", "tck": "29011; £14", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-moraweck.html" }, { "nm": "MORGAN (BIRD), Mr Charles Frederick", "age": "42", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-frederick-morgan-bird.html" }, { "nm": "MORGAN, Mr Arthur Herbert", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-herbert-morgan.html" }, { "nm": "MORGAN, Mr Patrick", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-morgan.html" }, { "nm": "MORGAN, Mr Thomas A.", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-morgan.html" }, { "nm": "MORLEY, Mr Henry Samuel", "age": "38", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Confectioner", "tck": "250655; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-samuel-morley.html" }, { "nm": "MORLEY, Mr William", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "364506; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-morley.html" }, { "nm": "MORRELL, Mr James", "age": "24", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-morrell.html" }, { "nm": "MORRIS, Mr Arthur", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-morris.html" }, { "nm": "MORRIS, Mr Frank Herbert", "age": "28", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bathroom Steward (1st Class)", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-herbert-morris.html" }, { "nm": "MORRIS, Mr William Edward", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-morris.html" }, { "nm": "MORRISON, Mr Thomas", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-morrison.html" }, { "nm": "MORROW, Mr Thomas Rowan", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "372622; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-rowan-morrow.html" }, { "nm": "MOSS, Mr Albert Johan", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "312991; £7 15s 6d", /* This is a second comment */ "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-johan-moss.html" }, { "nm": "MOSS, Mr William", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st. Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-moss.html" }, { "nm": "MOUBAREK, Master Gerios (George _)", "age": "7", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2661; £15 4s 11d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gerios-george-moubarek.html" }, { "nm": "MOUBAREK, Master Halim Gonios (William George)", "age": "4", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2661; £15 4s 11d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/halim-gonios-william-george-moubarek.html" }, { "nm": "MOUBAREK, Mrs Omine", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2661; £15 4s 11d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/omine-moubarek.html" }, { "nm": "MOUSSA, Mrs Mantoura Boulos", "age": "35", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Housewife", "tck": "2626; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mantoura-boulos-moussa.html" }, { "nm": "MOUSSELMANI, Mrs Fatima", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2649; £7 4s 6d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fatima-mousselmani.html" }, { "nm": "MOUTAL, Mr Rahamin Haim", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Traveller", "tck": "374746; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rahamin-haim-moutal.html" }, { "nm": "MOYES, Mr William Young", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior 6th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-young-moyes.html" }, { "nm": "MUDD, Mr Thomas Charles", "age": "16", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "S.O./P.P 3; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-charles-mudd.html" }, { "nm": "MULLEN,", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "404; £1", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/mullen.html" }, { "nm": "MULLEN, Miss Katherine(Katie)", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "35852; £7 14s 8d", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/katherine-katie-mullen.html" }, { "nm": "MüLLER, Mr L.", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Interpreter Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/l-muller.html" }, { "nm": "MULLHOLLAND, Mr Daniel", "age": "48", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/daniel-mullholland.html" }, { "nm": "MULLHOLLAND, Mr J.", "age": "45", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/j-mullholland.html" }, { "nm": "MULLIN, Miss Mary (_Lennon)", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "370371; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mary-lennon-mullin.html" }, { "nm": "MULLIN, Mr Thomas", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-mullin.html" }, { "nm": "MULVIHILL, Miss Bridget Elizabeth", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382653; £7 15s", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bridget-elizabeth-mulvihill.html" }, { "nm": "MURDLIN, Mr Joseph", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Chemist", "tck": "3235; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-murdlin.html" }, { "nm": "MURDOCH, Mr William John", "age": "33", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-john-murdoch.html" }, { "nm": "MURDOCH, Mr William McMaster", "age": "39", "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "1st. Officer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-mcmaster-murdoch.html" }, { "nm": "MURDOCK, Mr William", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-murdock.html" }, { "nm": "MURPHY, Miss Catherine(Kate)", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "367230; £15 10s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/catherine-kate-murphy.html" }, { "nm": "MURPHY, Miss Margaret Jane(Mary/Maggie)", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "367230; £15 10s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-jane-mary-maggie-murphy.html" }, { "nm": "MURPHY, Miss Nora", "age": "34", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "36568; £15 10s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nora-murphy.html" }, { "nm": "MURPHY, Mr Thomas", "age": "35", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-murphy.html" }, { "nm": "MYHRMAN, Mr Pehr Fabian Oliver Malkolm", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347078; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pehr-fabian-oliver-malkolm-myhrman.html" }, { "nm": "MYLES, Mr Thomas Francis", "age": "63", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "Gentleman", "tck": "240276; £9 13s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-francis-myles.html" }, { "nm": "NAIDENOFF, Mr Penko", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349206; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/penko-naidenoff.html" }, { "nm": "NAJIB KIAMIE, Miss Adele(Jane)", "age": "15", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2667; £7 4s 6d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/adele-jane-najib-kiamie.html" }, { "nm": "NAKHLI, Mr Toufik", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2641; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/toufik-nakhli.html" }, { "nm": "NAKID, Miss Maria", "age": "1", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2653; £15 14s 10d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maria-nakid.html" }, { "nm": "NAKID, Mr Sahid", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2653; £15 14s 10d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sahid-nakid.html" }, { "nm": "NAKID, Mrs Waika(Mary)", "age": "19", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2653; £15 14s 10d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/waika-mary-nakid.html" }, { "nm": "NANCARROW, Mr William Henry", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Mason", "tck": "3338; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-nancarrow.html" }, { "nm": "NANKOFF, Mr Minko", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349218; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/minko-nankoff.html" }, { "nm": "NANNINI, Sig. Francesco Luigi Arcangelo", "age": "42", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Head Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francesco-luigi-arcangelo-nannini.html" }, { "nm": "NASR ALMA, Mr Mustafa", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2652; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mustafa-nasr-alma.html" }, { "nm": "NASSER, Mr Nicholas", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "237736; £30 1s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nicholas-nasser.html" }, { "nm": "NASSER, Mrs Adele", "age": "14", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "237736; £30 1s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/adele-nasser.html" }, { "nm": "NASSR RIZQ, Mr Saade", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2676; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/saade-nassr-rizq.html" }, { "nm": "NATSCH, Mr Charles", "age": "36", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17596; £29 14s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-natsch.html" }, { "nm": "NAUGHTON, Miss Hannah", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "365237; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hannah-naughton.html" }, { "nm": "NAVRATIL, Master Edmond Roger", "age": "2", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230080; £26", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edmond-roger-navratil.html" }, { "nm": "NAVRATIL, Master Michel Marcel", "age": "3", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230080; £26", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/michel-marcel-navratil.html" }, { "nm": "NAVRATIL, Mr Michel", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230080; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/michel-navratil.html" }, { "nm": "NEAL, Mr Bentley Harold", "age": "25", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Baker", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-neal.html" }, { "nm": "NEILL, Mr Thomas", "age": "42", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-neill.html" }, { "nm": "NENKOFF, Mr Christo", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349234; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/christo-nenkoff.html" }, { "nm": "NESSON, Mr Israel", "age": "26", // This is a comment "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Electrician", "tck": "244368; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/israel-nesson.html" }, { "nm": "NETTLETON, Mr George Walter", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-nettleton.html" }, { "nm": "NEWELL, Miss Madeleine", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "35273; £113 5s 6d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/madeleine-newell.html" }, { "nm": "NEWELL, Miss Marjorie Anne", "age": "23", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "35273; £113 5s 6d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marjorie-anne-newell.html" }, { "nm": "NEWELL, Mr Arthur Webster", "age": "58", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "35273; £113 5s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-webster-newell.html" }, { "nm": "NEWMAN, Mr Charles Thomas", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Assistant Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-thomas-newman.html" }, { "nm": "NEWSOM, Miss Helen Monypeny", "age": "19", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "11752; £26 5s 8d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helen-monypeny-newsom.html" }, { "nm": "NICHOLLS, Mr Joseph Charles", "age": "19", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "33112; £36 15s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-charles-nicholls.html" }, { "nm": "NICHOLLS, Mr Sidney", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-nicholls.html" }, { "nm": "NICHOLS, Mr A.D.", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ad-nichols.html" }, { "nm": "NICHOLS, Mr Alfred William Stanley", "age": "47", "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "Boatswain", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-nichols.html" }, { "nm": "NICHOLS, Mr E.", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "103; £4", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/e-nichols.html" }, { "nm": "NICHOLS, Mr Walter Henry", "age": "35", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward, 2nd class", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-henry-nichols.html" }, { "nm": "NICHOLSON, Mr Arthur Ernest", "age": "64", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "693; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-ernest-nicholson.html" }, { "nm": "NICOLA-YARRED, Master Elias (Louis Garrett)", "age": "11", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2651; £11 4s 10d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elias-louis-garrett-nicola-yarred.html" }, { "nm": "NICOLA-YARRED, Miss Jamila (Amelia Garrett)", "age": "14", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2651; £11 4s 10d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jamila-amelia-garrett-nicola-yarred.html" }, { "nm": "NIEMINEN, Miss Manta Josefina", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "3101297; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/manta-josefina-nieminen.html" }, { "nm": "NIKLASSON, Mr Samuel", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "363611; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-niklasson.html" }, { "nm": "NILSSON, Miss Berta Olivia", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347066; £7 15s 6d", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/berta-olivia-nilsson.html" }, { "nm": "NILSSON, Miss Helmina Josefina", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347470; £7 17s 1d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helmina-josefina-nilsson.html" }, { "nm": "NILSSON, Mr August Ferdinand", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "350410; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/august-ferdinand-nilsson.html" }, { "nm": "NIRVA, Mr Iisakki Antino Äijö", "age": "41", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101272; £7 2s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/iisakki-antino-aijo-nirva.html" }, { "nm": "NISKäNEN, Mr Juha", "age": "39", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101289; £7 18s 6d", /* This is a second comment */ "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/juha-niskanen.html" }, { "nm": "NOEL, Major Gerard Thomas", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "48; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/gerard-thomas-noel.html" }, { "nm": "NOEL, Master William Henry Middleton", "age": "13", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "48; £3", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/noel.html" }, { "nm": "NOFAL, Mr Mansouer", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Journalist", "tck": "2697; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mansouer-nofal.html" }, { "nm": "NOLAN, Mr Michael", "age": "31", /* This is a second comment */ "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/michael-nolan.html" }, { "nm": "NOON, Mr John", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-noon.html" }, { "nm": "NORMAN, Mr Robert Douglas", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Electrical Engineer", "tck": "218629; £13 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-douglas-norman.html" }, { "nm": "NORRIS, Mr James", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-norris.html" }, { "nm": "NOSS, Mr Bertram Arthur", "age": "21", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bertram-arthur-noss.html" }, { "nm": "NOSS, Mr Henry", "age": "30", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-noss.html" }, { "nm": "NOSWORTHY, Mr Richard Cater", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "39886; £7 16s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-cater-nosworthy.html" }, { "nm": "NOURNEY, Mr Alfred", "age": "20", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Gentleman", "tck": "2166; £13 17s 3d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-nourney.html" }, { "nm": "NUTBEAN, Mr William", "age": "30", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-nutbean.html" }, { "nm": "NYE, Mrs Elizabeth", "age": "29", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29395; £10 10s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-nye.html" }, { "nm": "NYSTEN, Miss Anna Sofia", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347081; £7 15s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-sofia-nysten.html" }, { "nm": "NYSVEEN, Mr Johan Hansen", "age": "60", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345364; £6 4s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-hansen-nysveen.html" }, { "nm": "O'BRIEN, Mr Thomas", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "370365; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-obrien.html" }, { "nm": "O'BRIEN, Mr Timothy", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330979; £7 16s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/timothy-obrien.html" }, { "nm": "O'BRIEN, Mrs Johanna(Hannah)", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Housewife", "tck": "370365; £15 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/johanna-hannah-obrien.html" }, { "nm": "O'CONNELL, Mr Patrick Denis", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "334912; £7 14s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-denis-oconnell.html" }, { "nm": "O'CONNOR, Mr John", "age": "25", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-oconnor.html" }, { "nm": "O'CONNOR, Mr Maurice", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "371060; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/maurice-oconnor.html" }, { "nm": "O'CONNOR, Mr Patrick", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farmer", "tck": "366713; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-oconnor.html" }, { "nm": "O'CONNOR, Mr Thomas Peter", "age": "43", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-peter-oconnor.html" }, { "nm": "O'DRISCOLL, Miss Bridget", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "14311; £7 15s", /* This is a second comment */ "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bridget-odriscoll.html" }, { "nm": "O'DWYER, Miss Ellen(Nellie)", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330959; £7 17s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-nellie-odwyer.html" }, { "nm": "O'FLANNIGAN , Mr Thomas", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-oflannigan.html" }, { "nm": "O'KEEFE, Mr Patrick", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "368402; £7 15s", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/patrick-okeefe.html" }, { "nm": "O'LEARY, Miss Hanora(Nora)", "age": "16", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330919; £7 16s 7d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hanora-nora-oleary.html" }, { "nm": "O'LOUGHLIN, Dr William Francis Norman", "age": "62", "st": "Victim", "typ": "Deck Crew", "bd": "Belfast", "ch": "Surgeon", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-francis-norman-oloughlin.html" }, { "nm": "O'sULLIVAN, Miss Bridget Mary", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330909; £7 12s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bridget-mary-osullivan.html" }, { "nm": "ÖDAHL, Mr Nils Martin", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "7267; £9 4s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nils-martin-odahl.html" }, { "nm": "ODELL, Master Jack", "age": "11", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/jack-odell.html" }, { "nm": "ODELL, Miss Kate", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/kate-odell.html" }, { "nm": "ODELL, Mrs Lily May", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "84; £24", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/lily-may-odell.html" }, { "nm": "ÖHMAN, Miss Velin", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347085; £7 15s 6d", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/velin-ohman.html" }, { "nm": "OLIVA Y OCANA, Doña Fermina", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17758; £108 18s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fermina-oliva-y-ocana.html" }, { "nm": "OLIVE, Mr Charles", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-olive.html" }, { "nm": "OLIVE, Mr Ernest Roskelly", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Clothes Presser Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-roskelly-olive.html" }, { "nm": "OLIVER, Mr H.", "age": "32", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harry-oliver.html" }, { "nm": "OLLIVER, Mr Alfred", "age": "27", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Quartermaster", "tck": "", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-olliver.html" }, { "nm": "OLSEN, Master Artur Karl", "age": "9", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "17368; £3 3s 5d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/artur-karl-olsen.html" }, { "nm": "OLSEN, Mr Henry Margido", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Engineer", "tck": "4001; £22 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-margido-olsen.html" }, { "nm": "OLSEN, Mr Karl Siegwart Andreas", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "4579; £8 8s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-siegwart-andreas-olsen.html" }, { "nm": "OLSEN, Mr Ole Martin", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "265302; £7 6s 3d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ole-martin-olsen.html" }, { "nm": "OLSSON, Miss Elina", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350407; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elina-olsson.html" }, { "nm": "OLSSON, Mr Nils Johan Göransson", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347464; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nils-johan-goransson-olsson.html" }, { "nm": "OLSSON, Mr Oscar Wilhelm", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347079; £7 15s 6d", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/oscar-wilhelm-olsson.html" }, { "nm": "OLSVIGEN, Mr Thor Anderson", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Salesman", "tck": "6563; £9 4s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thor-anderson-olsvigen.html" }, { "nm": "OMONT, Mr Alfred Fernand", "age": "29", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Dealer", "tck": "12998; £25 14s 10d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-fernand-omont.html" }, { "nm": "ORESKOVIC, Miss Jelka", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315085; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jelka-oreskovic.html" }, { "nm": "ORESKOVIC, Miss Marija", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "315096; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marija-oreskovic.html" }, { "nm": "ORESKOVIC, Mr Luka", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315094; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/luka-oreskovic.html" }, { "nm": "ORPET, Mr Walter Hayward", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-hayward-orpet.html" }, { "nm": "ORR, Mr J.", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Vegetable Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-orr.html" }, { "nm": "OSBORNE, Miss D.", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "516; £2", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/d-osborne.html" }, { "nm": "OSBORNE, Mr William Edward", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-edward-osborne.html" }, { "nm": "OSéN, Mr Olaf Elon", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "7534; £9 4s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/olaf-elon-osen.html" }, { "nm": "OSMAN, Mr Frank", "age": "28", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-osman.html" }, { "nm": "ØSTBY, Miss Helen Ragnhild", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113509; £61 19s 7d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helen-ragnhild-ostby.html" }, { "nm": "OSTBY, Mr Engelhart Cornelius", "age": "64", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Jeweller", "tck": "113509; £61 19s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/engelhart-cornelius-ostby.html" }, { "nm": "OTHEN, Mr Charles Alfred", "age": "36", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-othen.html" }, { "nm": "OTTER, Mr Richard", "age": "38", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Stone Cutter", "tck": "28213; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-otter.html" }, { "nm": "OVIéS Y RODRíGUEZ, Mr Servando José Florentino", "age": "36", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Merchant", "tck": "17562; £27 14s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/servando-jose-florentino-ovies-y-rodriguez.html" }, { "nm": "OWEN, Mr Lewis", "age": "49", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lewis-owen.html" }, { "nm": "OXENHAM, Mr Percy Thomas", "age": "22", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Mason", "tck": "14260; £10 10s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/percy-thomas-oxenham.html" }, { "nm": "PACEY, Mr Reginald lvan", "age": "17", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Lift Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-lvan-pacey.html" }, { "nm": "PACHERA, Sig. Jean Baptiste Stanislas", "age": "19", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Larder Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jean-baptiste-stanislas-pachera.html" }, { "nm": "PADRON MANENT, Mr Julian", "age": "26", // This is a comment "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "Chauffeur", "tck": "2146; £13 17s 3d", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/julian-padron-manent.html" }, { "nm": "PAICE, Mr Richard Charles John", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-charles-john-paice.html" }, { "nm": "PAIN, Dr Alfred", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Doctor", "tck": "244278; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-pain.html" }, { "nm": "PAINTER, Mr Charles", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-painter.html" }, { "nm": "PAINTER, Mr Frank Frederick", "age": "29", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-frederick-painter.html" }, { "nm": "PAINTIN, Mr James Arthur", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Captain's Steward (Tiger)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-arthur-paintin.html" }, { "nm": "PALLàS I CASTELLó, Sr. Emili", "age": "29", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2147; £13 17s 2d", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emilio-pallas-y-castello.html" }, { "nm": "PALLES, Mr Thomas Henry Michael", "age": "42", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-palles.html" }, { "nm": "PåLSSON, Master Gösta Leonard", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349909; £21 1s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gosta-leonard-palsson.html" }, { "nm": "PåLSSON, Master Paul Folke", "age": "6", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349909; £21 1s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/paul-folke-palsson.html" }, { "nm": "PåLSSON, Miss Stina Viola", "age": "3", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349909; £21 1s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stina-viola-palsson.html" }, { "nm": "PåLSSON, Miss Torborg Danira", "age": "8", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349909; £21 1s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/torborg-danira-palsson.html" }, { "nm": "PåLSSON, Mrs Alma Cornelia", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Housewife", "tck": "349909; £21 1s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alma-cornelia-palsson.html" }, { "nm": "PANULA, Master Eino Viljam", "age": "1", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eino-viljam-panula.html" }, { "nm": "PANULA, Master Jaako Arnold", "age": "14", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jaako-arnold-panula.html" }, { "nm": "PANULA, Master Juha Niilo", "age": "7", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/juha-niilo-panula.html" }, { "nm": "PANULA, Master Urho Abraham", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/urho-abraham-panula.html" }, { "nm": "PANULA, Mr Ernesti Arvid", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernesti-arvid-panula.html" }, { "nm": "PANULA, Mrs Maija Emelia Abrahamintytar", "age": "41", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/maija-emelia-abrahamintytar-panula.html" }, { "nm": "PARKER, Mr Clifford Richard", "age": "28", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Clerk", "tck": "14888; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/clifford-richard-parker.html" }, { "nm": "PARKES, Mr Francis", "age": "18", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Belfast", "ch": "Plumber", "tck": "239853", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-parkes.html" }, { "nm": "PARR, Mr William Henry Marsh", "age": "29", "st": "Victim", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Electrician", "tck": "112052", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-marsh-parr.html" }, { "nm": "PARRISH, Mrs Lutie Davis", "age": "59", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230433; £26", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lutie-davis-parrish.html" }, { "nm": "PARSONS, Mr Edward", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Chief Storekeeper (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-parsons.html" }, { "nm": "PARSONS, Mr Frank Alfred", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior 5th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-alfred-parsons.html" }, { "nm": "PARSONS, Mr Richard Henry", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-parsons.html" }, { "nm": "PARTNER, Mr Austin", "age": "40", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Stockbroker", "tck": "113043; £28 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/austin-partner.html" }, { "nm": "PASCOE, Mr Charles H.", "age": "43", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-pascoe.html" }, { "nm": "PASIC, Mr Jakob", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315097; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jakob-pasic.html" }, { "nm": "PATCHETT, Mr George", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Shoemaker", "tck": "358585; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-patchett.html" }, { "nm": "PATON, Mr Matthew", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/matthew-paton.html" }, { "nm": "PAVLOVIC, Mr Stefo", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349242; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stefo-pavlovic.html" }, { "nm": "PAYNE, Mr Vivian Ponsonby", "age": "22", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Clerk", "tck": "12749; £93 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/vivian-ponsonby-payne.html" }, { "nm": "PEACOCK, Master Alfred Edward", "age": "7m", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101315; £13 15s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-edward-peacock.html" }, { "nm": "PEACOCK, Miss Treasteall", "age": "3", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101315; £13 15s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/treasteall-peacock.html" }, { "nm": "PEACOCK, Mrs Edith", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101315; £13 15s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edith-peacock.html" }, { "nm": "PEARCE, Mr Alfred Emest", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-emest-pearce.html" }, { "nm": "PEARCE, Mr Ernest", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "343271; £7", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-pearce.html" }, { "nm": "PEARCE, Mr John", "age": "28", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-pearce.html" }, { "nm": "PEARCEY, Mr Albert Victor", "age": "32", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-victor-pearcey.html" }, { "nm": "PEARS, Mr Thomas Clinton", "age": "29", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "113776; £66 12s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-clinton-pears.html" }, { "nm": "PEARS, Mrs Edith", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113776; £66 12s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edith-pears.html" }, { "nm": "PEDERSEN, Mr Olaf", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "345498; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/olaf-pedersen.html" }, { "nm": "PEDRINI, Sig. Alessandro", "age": "21", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alessandro-pedrini.html" }, { "nm": "PEDUZZI, Mr Giuseppe", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Waiter", "tck": "2817; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giuseppe-peduzzi.html" }, { "nm": "PEKONIEMI, Mr Edvard", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101294; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edvard-pekoniemi.html" }, { "nm": "PELHAM, Mr George", "age": "39", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-pelham.html" }, { "nm": "PELTOMäKI, Mr Nikolai Johannes", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101291; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nikolai-johannes-peltomaki.html" }, { "nm": "PEñASCO Y CASTELLANA, Mr Victor", "age": "24", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Of Independent Means", "tck": "17758; £108 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/victor-penasco.html" }, { "nm": "PEñASCO Y CASTELLANA, Mrs Maria Josefa Perezde Sot", "age": "22", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Of Independent Means", "tck": "17758; £108 18s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maria-penasco.html" }, { "nm": "PENGELLY, Mr Frederick William", "age": "19", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "28665; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-pengelly.html" }, { "nm": "PENNAL, Mr Thomas Frederick Cohen", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bathroom Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-pennal.html" }, { "nm": "PENNY, Mr William Farr", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward (2nd Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-farr-penny.html" }, { "nm": "PENROSE, Mr John Poole", "age": "49", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-poole-penrose.html" }, { "nm": "PERACCHIO, Sig. Alberto", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alberto-peracchio.html" }, { "nm": "PERACCHIO, Sig. Sebastiano", "age": "17", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sebastiano-peracchio.html" }, { "nm": "PERKIN, Mr John Henry", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "21174; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-henry-perkin.html" }, { "nm": "PERKINS, Mr Laurence Alexander", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Telephone Operator Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/laurence-alexander-perkins.html" }, { "nm": "PERKIS, Mr Walter John", "age": "37", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Quartermaster", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-john-perkis.html" }, { "nm": "PERNOT, Mr René", "age": "39", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "Chauffeur", "tck": "2131; £15 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rene-pernot.html" }, { "nm": "PEROTTI, Sig. Alfonso", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfonso-perotti.html" }, { "nm": "PERREAULT, Miss Mary Anne", "age": "33", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "12749; £93 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-anne-perreault.html" }, { "nm": "PERREN, Mr William Charles", "age": "47", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Boots Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-charles-perren.html" }, { "nm": "PERRITON, Mr Hubert Prouse", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hubert-prouse-perriton.html" }, { "nm": "PERRY, Mr Edgar Lionel", "age": "19", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edgar-lionel-perry.html" }, { "nm": "PERRY, Mr Henry F. L.", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-perry.html" }, { "nm": "PERSSON, Mr Ernst Ulrik", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Chauffeur", "tck": "347083; £7 15s 6d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ernst-ulrik-persson.html" }, { "nm": "PERUSCHITZ, Fr Josef", "age": "41", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Priest / Minister", "tck": "237393; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/josef-peruschitz.html" }, { "nm": "PETER / JOSEPH, Master Michael J. (Michael Joseph)", "age": "4", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2668; £22 7s 2d", // This is a comment "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/michael-michael-joseph-peter-joseph.html" }, { "nm": "PETER / JOSEPH, Miss Anna (Mary Joseph)", "age": "2", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2668; £22 7s 2d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-mary-joseph-peter-joseph.html" }, { "nm": "PETER / JOSEPH, Mrs Catherine", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2668; £22 7s 2d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/catherine-peter-joseph.html" }, { "nm": "PETERS, Miss Katie", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330935; £8 2s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/katie-peters.html" }, { "nm": "PETERS, Mr William Chapman", "age": "26", // This is a comment "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-chapman-peters.html" }, { "nm": "PETERSEN, Mr Marius", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Dairy Worker", "tck": "342441; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/marius-petersen.html" }, { "nm": "PETRANEC, Miss Matilda", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "349245; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/matilda-petranec.html" }, { "nm": "PETROFF, Mr Nedialco", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349212; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nedialco-petroff.html" }, { "nm": "PETROFF, Mr Pastcho", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349215; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pastcho-petroff.html" }, { "nm": "PETTERSSON, Miss Ellen Natalia", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347087; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ellen-natalia-pettersson.html" }, { "nm": "PETTERSSON, Mr Johan Emil", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347076; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-emil-pettersson.html" }, { "nm": "PETTY, Mr Edwin Henry", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edwin-henry-petty.html" }, { "nm": "PEUCHEN, Major Arthur Godfrey", "age": "52", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113786; £30 10s", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/arthur-godfrey-peuchen.html" }, { "nm": "PFROPPER, Mr Richard Paul Jozef", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/richard-pfropper.html" }, { "nm": "PHILLIMORE, Mr Harold Charles William", "age": "23", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harold-charles-william-phillimore.html" }, { "nm": "PHILLIPS, Miss Alice Frances Louisa", "age": "21", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2; £21", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-phillips.html" }, { "nm": "PHILLIPS, Miss Kate Florence", "age": "19", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250655; £26", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/kate-phillips.html" }, { "nm": "PHILLIPS, Mr A. George", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/a-phillips.html" }, { "nm": "PHILLIPS, Mr Escott Robert", "age": "42", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/escott-phillips.html" }, { "nm": "PHILLIPS, Mr James", "age": "27", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-phillips.html" }, { "nm": "PHILLIPS, Mr John George", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Telegraphist", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-george-phillips.html" }, { "nm": "PHILLIPS, Mr Walter John", "age": "35", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-john-phillips.html" }, { "nm": "PHILLIPS, Mr William", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-phillips.html" }, { "nm": "PIATTI, Sig. Louis", "age": "17", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/louis-piatti.html" }, { "nm": "PIAZZA, Sig. Pompeo", "age": "30", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pompeo-piazza.html" }, { "nm": "PICKARD, Mr Berk", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Leather Worker", "tck": "392078; £8 1s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/berk-pickard.html" }, { "nm": "PIDGEON, Mr William", "age": "39", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-pidgeon.html" }, { "nm": "PIERCE, Mr Robert", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-pierce.html" }, { "nm": "PINSKY, Mrs Rosa", "age": "32", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "234604; £13", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/rosa-pinsky.html" }, { "nm": "PITFIELD, Mr William James", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-james-pitfield.html" }, { "nm": "PITMAN, Mr Herbert John", "age": "34", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "3rd. Officer", "tck": "", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/herbert-john-pitman.html" }, { "nm": "PLATT, Mr Wilfred George", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-platt.html" }, { "nm": "PLOTCHARSKY, Mr Vasil", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349227; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/vasil-plotcharsky.html" }, { "nm": "PODESTA, Mr Alfred John Alexander", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-alexander-podesta.html" }, { "nm": "POGGI, Sig. Emilio", "age": "28", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emilio-poggi.html" }, { "nm": "POINGDESTRE, Mr John Thomas", "age": "33", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-thomas-poingdestre.html" }, { "nm": "POKRNIC, Mr Mate", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315095; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mate-pokrnic.html" }, { "nm": "POKRNIC, Mr Tome", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "315092; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tome-pokrnic.html" }, { "nm": "POND, Mr George", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-pond.html" }, { "nm": "PONESELL, Mr Martin", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250647; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/martin-ponesell.html" }, { "nm": "POOK, Mr Percy Robert", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant pantry steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/p-pook.html" }, { "nm": "PORT, Mr Frank", "age": "22", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-port.html" }, { "nm": "PORTALUPPI, Mr Emilio Ilario Giuseppe", "age": "30", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "34644; £12 14s 9d", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emilio-portaluppi.html" }, { "nm": "PORTER, Mr Walter Chamberlain", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "110465; £52", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-chamberlain-porter.html" }, { "nm": "PORTEUS, Mr Thomas Henry", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-porteus.html" }, { "nm": "POTTER, Mrs Lily Alexenia", "age": "56", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11767; £83 3s 2d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lily-alexenia-potter.html" }, { "nm": "PRANGNELL, Mr George Alexander", "age": "30", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-alexander-prangnell.html" }, { "nm": "PRENTICE, Mr Frank Winnold", "age": "22", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-winnold-prentice.html" }, { "nm": "PRESTON, Mr Thomas Charles Alfred", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-charles-alfred-preston.html" }, { "nm": "PRICE, Mr Ernest", "age": "17", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Barman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-price.html" }, { "nm": "PRICHARD, Mrs Alice Maud", "age": "34", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-prichard.html" }, { "nm": "PRIDEAUX, Mr John Arthur (Jack)", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-jack-arthur-prideaux.html" }, { "nm": "PRIEST, Mr Arthur John", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/arthur-john-priest.html" }, { "nm": "PRIOR, Mr Harold John", "age": "21", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harold-john-prior.html" }, { "nm": "PROCTOR, Mr Charles", "age": "45", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chef", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-proctor.html" }, { "nm": "PROUDFOOT, Mr Richard Royston", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-proudfoot.html" }, { "nm": "PRYCE, Mr Charles William", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-william-pryce.html" }, { "nm": "PUGH, Mr Alfred", "age": "20", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-pugh.html" }, { "nm": "PUGH, Mr Arthur Percy", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-pugh.html" }, { "nm": "PULBAUM, Mr Franz", "age": "27", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2168; £15 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/franz-pulbaum.html" }, { "nm": "PULNER, Mr Uscher", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "3411; £8 14s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/uscher-pulner.html" }, { "nm": "PUSEY, Mr John E.", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-pusey.html" }, { "nm": "PUSEY, Mr William Robert Holland", "age": "22", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-william-pusey.html" }, { "nm": "QUICK, Miss Phyllis May", "age": "2", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "26360; £26", // This is a comment "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/phyllis-may-quick.html" }, { "nm": "QUICK, Miss Winifred Vera", "age": "8", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "26360; £26", // This is a comment "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/winifred-vera-quick.html" }, { "nm": "QUICK, Mrs Jane", "age": "33", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "26360; £26", // This is a comment "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jane-quick.html" }, { "nm": "QUINN, Mr John", "age": "34", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-quinn.html" }, { "nm": "RADEFF, Mr Alexander", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349223; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-radeff.html" }, { "nm": "RANDALL, Mr Frank Henry", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-henry-randall.html" }, { "nm": "RANGER, Mr Thomas", "age": "29", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-ranger.html" }, { "nm": "RANSOM, Mr James Augustus", "age": "49", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-ransom.html" }, { "nm": "RASMUSSEN, Mrs Lena Jakobsen", "age": "63", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "65305; £8 2s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lena-jakobsen-rasmussen.html" }, { "nm": "RATTI, Sig. Enrico", "age": "21", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/enrico-ratti.html" }, { "nm": "RATTONBURY, Mr William Henry", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Boots", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-rattonbury.html" }, { "nm": "RAY, Mr Frederick Dent", "age": "32", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-dent-ray.html" }, { "nm": "RAZI, Mr Raihed", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2629; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/raihed-razi.html" }, { "nm": "READ, Mr Joseph", "age": "21", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-read.html" }, { "nm": "REED, Mr James George", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Butcher", "tck": "362316; £7 5s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-george-reed.html" }, { "nm": "REED, Mr Thomas Charles Prowse", "age": "54", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-reed.html" }, { "nm": "REEVES, Mr David", "age": "36", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "17248; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/david-reeves.html" }, { "nm": "REEVES, Mr Frederick Simms", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-simms-reeves.html" }, { "nm": "REID, Mr James", "age": "36", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-reid.html" }, { "nm": "REID, Mr Robert Thomas", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-read.html" }, { "nm": "REKIC, Mr Tido", "age": "38", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349249; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tido-rekic.html" }, { "nm": "REMESCH, Miss", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "47; £2", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/remesch.html" }, { "nm": "RENOUF, Mr Peter Henry", "age": "33", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "31027; £21", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/peter-henry-renouf.html" }, { "nm": "RENOUF, Mrs Lillian", "age": "30", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31027; £21", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lillian-renouf.html" }, { "nm": "REUCHLIN, Mr Jonkheer Johan George", "age": "38", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "19972", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-george-reuchlin.html" }, { "nm": "REVELL, Mr William James Francis", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-revell.html" }, { "nm": "REYNALDS, Sra. Encarnación", "age": "28", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230434; £13", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/encarnacion-reynaldo.html" }, { "nm": "REYNOLDS, Mr Harold J.", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Baker", "tck": "342684; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harold-reynolds.html" }, { "nm": "RHEIMS, Mr George Alexander Lucien", "age": "33", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17607; £39 12s", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-rheims.html" }, { "nm": "RICALDONE, Sig. Rinaldo Renato", "age": "22", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rinaldo-renato-ricaldone.html" }, { "nm": "RICE, Master Albert", "age": "10", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382652; £29 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-rice.html" }, { "nm": "RICE, Master Arthur", "age": "4", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382652; £29 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-rice.html" }, { "nm": "RICE, Master Eric", "age": "7", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382652; £29 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eric-rice.html" }, { "nm": "RICE, Master Eugene Francis", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382652; £29 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/eugene-francis-rice.html" }, { "nm": "RICE, Master George Hugh", "age": "8", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "382652; £29 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-hugh-rice.html" }, { "nm": "RICE, Mr Charles", "age": "32", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-rice.html" }, { "nm": "RICE, Mr John Reginald", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "1st Class Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-reginald-rice.html" }, { "nm": "RICE, Mr Percy", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-rice.html" }, { "nm": "RICE, Mrs Margaret", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Housekeeper", "tck": "382652; £29 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/margaret-rice.html" }, { "nm": "RICHARD, Mr Emile Phillippe", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2133; £15 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emile-phillippe-richard.html" }, { "nm": "RICHARD, Mr McMullan", "age": "23", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/mcmullan-richard.html" }, { "nm": "RICHARDS, Master Sibley George", "age": "9m", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29106; £18 15s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sibley-george-richards.html" }, { "nm": "RICHARDS, Master William Rowe", "age": "3", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29106; £18 15s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-rowe-richards.html" }, { "nm": "RICHARDS, Mr Joseph James", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-james-richards.html" }, { "nm": "RICHARDS, Mrs Emily", "age": "24", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29106; £18 15s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-richards.html" }, { "nm": "RICKMAN, Mr George Albert", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-albert-rickman.html" }, { "nm": "RICKS, Mr Cyril Gordon", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/cyril-ricks.html" }, { "nm": "RIDOUT, Mr Walter George", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Second Class Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-ridout.html" }, { "nm": "RIDSDALE, Miss Lucy", "age": "58", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "14258; £10 10s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lucy-ridsdale.html" }, { "nm": "RIGHINI, Mr Sante", "age": "22", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Servant", "tck": "17760; £135 12s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sante-righini.html" }, { "nm": "RIGOZZI, Sig. Abele", "age": "22", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/abele-rigozzi.html" }, { "nm": "RIIHIVUORI, Miss Susanna Juhantytär", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101295; £39 13s 9d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/susanna-juhantytar-sanni-riihivuori.html" }, { "nm": "RIMMER, Mr Gilbert", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gilbert-rimmer.html" }, { "nm": "RINTAMäKI, Mr Matti", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101273; £7 2s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/matti-rintamaki.html" }, { "nm": "RIORDAN, Miss Hannah", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "334915; £7 14s 5d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hannah-riordan.html" }, { "nm": "RISIEN, Mr Samuel Beard", "age": "69", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Hotelier", "tck": "364498; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-beard-risien.html" }, { "nm": "RISIEN, Mrs Emma", "age": "58", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "364498; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emma-risien.html" }, { "nm": "ROBBINS, Mr Victor", "age": "42", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Servant", "tck": "17757; £247 10s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/victor-robbins.html" }, { "nm": "ROBERT, Mrs Elisabeth Walton", "age": "43", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "24160; £211 6s 9d", "lf": "2", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elisabeth-walton-robert.html" }, { "nm": "ROBERTON, Mr George Edward", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward (2nd Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-edward-roberton.html" }, { "nm": "ROBERTS, Mr Frederick (Frank John?)", "age": "36", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Third Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-frank-roberts.html" }, { "nm": "ROBERTS, Mr Hugh H.", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hugh-roberts.html" }, { "nm": "ROBERTS, Mr Robert George", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-george-roberts.html" }, { "nm": "ROBERTS, Mrs Mary Kezziah", "age": "41", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-kezziah-roberts.html" }, { "nm": "ROBINS, Mr Alexander A.", "age": "50", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Mason", "tck": "3337; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-robins.html" }, { "nm": "ROBINS, Mrs Grace Charity", "age": "47", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3337; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/grace-charity-robins.html" }, { "nm": "ROBINSON, Mr James William", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-william-robinson.html" }, { "nm": "ROBINSON, Mr Samuel", "age": "43", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-robinson.html" }, { "nm": "ROBINSON, Mr Thomas", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-robinson.html" }, { "nm": "ROBINSON, Mrs Annie", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-robinson.html" }, { "nm": "ROEBLING, Mr Washington Augustus II", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "17590; £50 9s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/washington-roebling.html" }, { "nm": "ROGAN, Mr Patrick", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-rogan.html" }, { "nm": "ROGERS, Mr Edward James William", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-james-william-rogers.html" }, { "nm": "ROGERS, Mr Michael", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/michael-rogers.html" }, { "nm": "ROGERS, Mr Reginald Harry", "age": "18", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28004; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/reginald-harry-rogers.html" }, { "nm": "ROGERS, Mr William John", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "23567; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-rogers.html" }, { "nm": "ROMAINE, Mr Charles Hallace", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "111428; £26 11s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-romaine.html" }, { "nm": "ROMMETVEDT, Mr Knud Paust", "age": "49", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tailor", "tck": "312993; £7 15s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/knud-paust-rommetvedt.html" }, { "nm": "ROOD, Mr Hugh Roscoe", "age": "38", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113767; £50", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hugh-rood.html" }, { "nm": "ROSBLOM, Miss Salli Helena", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "370129; £20 4s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/salli-helena-rosblom.html" }, { "nm": "ROSBLOM, Mr Viktor Richard", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "370129; £20 4s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/viktor-richard-rosblom.html" }, { "nm": "ROSBLOM, Mrs Helena Wilhelmina", "age": "41", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "370129; £20 4s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/helena-wilhelmina-rosblom.html" }, { "nm": "ROSENBAUM, Miss Edith Louise", "age": "34", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Journalist", "tck": "17613; £27 14s 5d", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edith-russell.html" }, { "nm": "ROSENSHINE, Mr George", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Merchant", "tck": "17585; £79 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-rosenshine.html" }, { "nm": "ROSS, Mr Horace Leopold", "age": "38", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/horace-leopold-ross.html" }, { "nm": "ROSS, Mr John Hugo", "age": "36", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "13049; £40 2s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-hugo-ross.html" }, { "nm": "ROTH, Miss Sarah A.", "age": "26", // This is a comment "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tailor", "tck": "342712; £8 1s", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sarah-roth.html" }, { "nm": "ROTHES, Lucy Noël Martha, Countess of", "age": "33", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Of Independent Means", "tck": "110152; £86 10s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/countess-of-rothes.html" }, { "nm": "ROTHSCHILD, Mr Martin", "age": "46", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17603; £59 8s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/martin-rothschild.html" }, { "nm": "ROTHSCHILD, Mrs Elizabeth Jane Anne", "age": "54", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17603; £59 8s", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-jane-anne-rothschild.html" }, { "nm": "ROTTA, Sig. Angelo Mario", "age": "23", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/angelo-mario-rotta.html" }, { "nm": "ROUS, Mr Arthur John", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Plumber", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-rous.html" }, { "nm": "ROUSE, Mr Richard Henry", "age": "53", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "3594; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-henry-rouse.html" }, { "nm": "ROUSSEAU, Mr Pierre", "age": "49", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Chef", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pierre-rousseau.html" }, { "nm": "ROWE, Mr Alfred G.", "age": "59", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Landowner", "tck": "113790; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-rowe.html" }, { "nm": "ROWE, Mr Edgar Maurice", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edgar-maurice-rowe.html" }, { "nm": "ROWE, Mr George Thomas", "age": "32", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Quartermaster", "tck": "", "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-thomas-rowe.html" }, { "nm": "RUDD, Mr Henry", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Engineers' storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-rudd.html" }, { "nm": "RUGG, Miss Emily", "age": "21", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31026; £10 10s", /* This is a second comment */ "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-rugg.html" }, { "nm": "RULE, Mr Samuel James", "age": "58", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bathroom Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/samuel-james-rule.html" }, { "nm": "RUSH, Mr Alfred George John", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Porter", "tck": "20589; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-george-john-rush.html" }, { "nm": "RUSSELL, Mr Boysie Richard", "age": "17", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/boysie-richard-russell.html" }, { "nm": "RUTTER (GRAVES), Mr Sidney Frank", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-frank-rutter-graves.html" }, { "nm": "RYAN, Mr Edward", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "383162; £7 15s", /* This is a second comment */ "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-ryan.html" }, { "nm": "RYAN, Mr Patrick", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "General Labourer", "tck": "371110; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-ryan.html" }, { "nm": "RYAN, Mr Thomas", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tom-ryan.html" }, { "nm": "RYERSON, Master John Borie", "age": "13", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17608; £262 7s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-borie-ryerson.html" }, { "nm": "RYERSON, Miss Emily Borie", "age": "18", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17608; £262 7s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-borie-ryerson.html" }, { "nm": "RYERSON, Miss Susan Parker(Suzette)", "age": "21", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17608; £262 7s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/suzette-ryerson.html" }, { "nm": "RYERSON, Mr Arthur Larned", "age": "61", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17608; £262 7s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-ryerson.html" }, { "nm": "RYERSON, Mr William Edwy", "age": "32", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-edwy-ryerson.html" }, { "nm": "RYERSON, Mrs Emily Maria", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17608; £262 7s 6d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emily-ryerson.html" }, { "nm": "SAAD, Mr Amin", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2671; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/amin-saad.html" }, { "nm": "SAAD, Mr Khalil", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2672; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/khalil-saad.html" }, { "nm": "SAALFELD, Mr Adolphe", "age": "47", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "19988; £30 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/adolphe-saalfeld.html" }, { "nm": "SACCAGGI, Sig. Giovanni Giuseppe Emilio", "age": "24", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giovanni-giuseppe-emilio-saccaggi.html" }, { "nm": "SADLIER, Mr Matthew", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "367655; £7 14s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/matthew-sadlier.html" }, { "nm": "SADOWITZ, Mr Harry", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Fur Cutter", "tck": "1588; £7 11s 10d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-sadowitz.html" }, { "nm": "SæTHER, Mr Simon Sivertsen", "age": "43", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "3101262; £7 5s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/simon-sivertsen-saether.html" }, { "nm": "SAGE, Master Anthony William", "age": "12", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anthony-william-sage.html" }, { "nm": "SAGE, Master Thomas Henry", "age": "4", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-henry-sage.html" }, { "nm": "SAGE, Miss Constance Gladys", "age": "7", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/constance-gladys-sage.html" }, { "nm": "SAGE, Miss Dorothy", "age": "14", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Scholar", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/dorothy-dolly-florence-sage.html" }, { "nm": "SAGE, Miss Elizabeth Ada", "age": "10", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elizabeth-ada-sage.html" }, { "nm": "SAGE, Miss Stella Anne", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Dressmaker / Couturiére", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stella-anne-sage.html" }, { "nm": "SAGE, Mr Douglas Bullen", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Baker", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/douglas-bullen-sage.html" }, { "nm": "SAGE, Mr Frederick", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Cook", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-sage.html" }, { "nm": "SAGE, Mr George John", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Barman", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-john-sage.html" }, { "nm": "SAGE, Mr John George", "age": "44", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tradesman", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-george-sage.html" }, { "nm": "SAGE, Mrs Annie Elizabeth", "age": "44", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2343; £69 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/annie-elizabeth-sage.html" }, { "nm": "SäGESSER, Mlle Emma", "age": "24", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17477; £69 6s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emma-sagesser.html" }, { "nm": "SALANDER, Mr Karl Johan", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "7266; £9 6s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-johan-salander.html" }, { "nm": "SALKJELSVIK, Miss Anna Kristine", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "343120; £7 13s", /* This is a second comment */ "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-kristine-salkjelsvik.html" }, { "nm": "SALOMON, Mr Abraham Lincoln", "age": "43", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "111163; £26", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/abraham-salomon.html" }, { "nm": "SALONEN, Mr Johan Werner", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101296; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-werner-salonen.html" }, { "nm": "SALUSSOLIA, Sig. Govanni", "age": "25", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Glass Man", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/govanni-salussolia.html" }, { "nm": "SAMAAN, Mr Elias", "age": "17", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2662; £21 13s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elias-samaan.html" }, { "nm": "SAMAAN, Mr Hanna Elias", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2662; £21 13s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hanna-elias-samaan.html" }, { "nm": "SAMAAN, Mr Youssef", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2662; £21 13s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/youssef-joseph-samaan.html" }, { "nm": "SAMUEL, Mr Owen Wilmore", "age": "46", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/owen-wilmore-samuel.html" }, { "nm": "SANDERSON, Mr Harold Arthur", "age": "52", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Shipowner", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/harold-arthur-sanderson.html" }, { "nm": "SANDSTRöM, Miss Beatrice Irene", "age": "1", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "9549; £16 14s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/beatrice-irene-sandstrom.html" }, { "nm": "SANDSTRöM, Miss Marguerite Rut", "age": "4", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "9549; £16 14s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marguerite-rut-sandstrom.html" }, { "nm": "SANDSTRöM, Mrs Agnes Charlotta", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "9549; £16 14s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/agnes-charlotta-sandstrom.html" }, { "nm": "SANGSTER, Mr Charles Edward", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-sangster.html" }, { "nm": "SAP, Mr Julius (Jules _)", "age": "21", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345768; £9 10s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/julius-jules-sap.html" }, { "nm": "SARTORI, Sig. Lazar", "age": "24", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Glass Man", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lazar-sartori.html" }, { "nm": "SAUNDERCOCK, Mr William Henry", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "2151; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-henry-saundercock.html" }, { "nm": "SAUNDERS, Mr D. E.", "age": "26", // This is a comment "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/d-saunders.html" }, { "nm": "SAUNDERS, Mr F.", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-saunders.html" }, { "nm": "SAUNDERS, Mr W.", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-saunders.html" }, { "nm": "SAUNDERS, Mr Walter Edward", "age": "23", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-edward-saunders.html" }, { "nm": "SAVAGE, Mr Charles Joseph", "age": "23", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-savage.html" }, { "nm": "SAWYER, Mr Frederick Charles", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Gardener", "tck": "342826; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-charles-sawyer.html" }, { "nm": "SAWYER, Mr Robert James", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Window Cleaner", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-james-sawyer.html" }, { "nm": "SCANLAN, Mr James", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "36209; £7 14s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-scanlan.html" }, { "nm": "SCARROTT, Mr Joseph George", "age": "33", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joseph-george-scarrott.html" }, { "nm": "SCAVINO, Sig. Candido", "age": "42", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Carver", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/candido-scavino.html" }, { "nm": "SCHABERT, Mrs Emma", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13236; £57 15s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/emma-schabert.html" }, { "nm": "SCHEERLINCK, Mr Jean", "age": "29", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345779; £9 10s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jean-scheerlinck.html" }, { "nm": "SCHMIDT, Mr August", "age": "26", // This is a comment "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248659; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/august-schmidt.html" }, { "nm": "SCOTT, Mr Archibald", "age": "40", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/archibald-scott.html" }, { "nm": "SCOTT, Mr Frederick William", "age": "28", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-william-scott.html" }, { "nm": "SCOTT, Mr John", "age": "21", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Boots", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-scott.html" }, { "nm": "SCOVELL, Mr Robert", "age": "54", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (2nd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-scovell.html" }, { "nm": "SDYCOFF, Mr Todor", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "349222; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/todor-sdycoff.html" }, { "nm": "SEDGWICK, Mr Charles Frederick Waddington", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244361; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-sedgwick.html" }, { "nm": "SEDUNARY, Mr Samuel Francis", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Second third class steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-francis-sedunary.html" }, { "nm": "SELF, Mr Albert Charles Edward", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edward-self.html" }, { "nm": "SELF, Mr Alfred Henry", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-henry-self.html" }, { "nm": "SEMAN, Master Betros", "age": "10", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2622; £4 3d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/betros-seman.html" }, { "nm": "SENIOR, Mr Harry", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harry-senior.html" }, { "nm": "SERREPLAN, Miss Auguste", "age": "30", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Personal Maid", "tck": "113798; £31", /* This is a second comment */ "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/auguste-serreplan.html" }, { "nm": "SESIA, Sig. Giacomo", "age": "24", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/giacomo-sesia.html" }, { "nm": "SEWARD, Mr Frederic Kimber", "age": "34", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Lawyer", "tck": "113794; £26 11s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederic-kimber-seward.html" }, { "nm": "SEWARD, Mr Wilfred Deable", "age": "25", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Chief Pantry Steward (2nd Class)", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/wilfred-deable-seward.html" }, { "nm": "SHANNON, Mr David", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/david-shannon.html" }, { "nm": "SHARP, Mr Percival", "age": "27", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244358; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percival-sharp.html" }, { "nm": "SHAUGHNESSY, Mr Patrick", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farm Labourer", "tck": "370374; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/patrick-shaughnessy.html" }, { "nm": "SHAW, Mr Andrew", "age": "37", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/andrew-shaw.html" }, { "nm": "SHAW, Mr Henry", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Kitchen Porter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-shaw.html" }, { "nm": "SHEA, Mr John Joseph", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-shea.html" }, { "nm": "SHEA, Mr Thomas", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-shea.html" }, { "nm": "SHEATH, Mr Frederick", "age": "20", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederick-sheath.html" }, { "nm": "SHEDID, Mr Daher", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2698; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/daher-shedid.html" }, { "nm": "SHELLARD, Mr Frederick William Blainey", "age": "55", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Painter & Decorator", "tck": "6212; £15 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-william-blainey-shellard.html" }, { "nm": "SHELLEY, Mrs Imanita Parrish", "age": "25", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "230433; £26", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/imanita-parrish-shelley.html" }, { "nm": "SHEPHERD, Mr Jonathan", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Junior Assistant 2nd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jonathan-shepherd.html" }, { "nm": "SHIERS, Mr Alfred Charles", "age": "25", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-charles-shiers.html" }, { "nm": "SHILLABEER, Mr Charles Frederick", "age": "19", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-frederick-shillabeer.html" }, { "nm": "SHINE, Miss Ellen Natalia", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "330968; £7 16s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-natalia-shine.html" }, { "nm": "SHORNEY, Mr Charles Joseph", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Valet", "tck": "374910; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-joseph-shorney.html" }, { "nm": "SHUTES, Miss Elizabeth Weed", "age": "40", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Governess", "tck": "17582; £153 9s 3d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-weed-shutes.html" }, { "nm": "SIEBERT, Mr Sidney Conrad", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sidney-conrad-siebert.html" }, { "nm": "SILVéN, Miss Lyyli Karoliina", "age": "17", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250652; £13", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/lyyli-karoliina-silven.html" }, { "nm": "SILVERTHORNE, Mr Spencer Victor", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17475; £26 5s 9d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/spencer-victor-silverthorne.html" }, { "nm": "SILVEY, Mr William Baird", "age": "50", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13507; £55 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-baird-silvey.html" }, { "nm": "SILVEY, Mrs Alice", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13507; £55 18s", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alice-silvey.html" }, { "nm": "SIMMONS, Mr Andrew George James", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Scullion", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-andrew-simmons.html" }, { "nm": "SIMMONS, Mr Frederick Charles", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-simmons.html" }, { "nm": "SIMMONS, Mr John", "age": "39", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "392082; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-simmons.html" }, { "nm": "SIMMONS, Mr William", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Passage Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-simmons.html" }, { "nm": "SIMMS, Mr William", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-simms.html" }, { "nm": "SIMONIUS-BLUMER, Mr Colonel (Oberst) Alfons", "age": "56", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Banker", "tck": "13213; £35 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfons-simonius-blumer.html" }, { "nm": "SIMPSON, Dr John Edward", "age": "37", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Assistant Surgeon", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-edward-simpson.html" }, { "nm": "SINCOCK, Miss Maude", "age": "20", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "33112; £36 15s", /* This is a second comment */ "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maude-sincock.html" }, { "nm": "SINKKONEN, Miss Anna", "age": "30", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "250648; £13", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-sinkkonen.html" }, { "nm": "SIRAYANIAN, Mr Orsen", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farmer", "tck": "2669; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/orsen-sirayanian.html" }, { "nm": "SIROTA, Mr Maurice", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Tailor", "tck": "392092; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/maurice-sirota.html" }, { "nm": "SIVIC, Mr Husein", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349251; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/husein-sivic.html" }, { "nm": "SIVIER, Mr William", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-sivier.html" }, { "nm": "SIVOLA, Mr Antti Wilhelm", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101280; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/antti-wilhelm-sivola.html" }, { "nm": "SJöBLOM, Miss Anna Sofia", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101265; £6 9s 11d", /* This is a second comment */ "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-sofia-sjoblom.html" }, { "nm": "SJöSTEDT, Mr Ernst Adolf", "age": "59", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "237442; £13 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernst-adolf-sjostedt.html" }, { "nm": "SKEATES, Mr William", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-skeates.html" }, { "nm": "SKINNER, Mr Edward", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-skinner.html" }, { "nm": "SKOOG, Master Harald", "age": "5", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347088; £27 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harald-skoog.html" }, { "nm": "SKOOG, Master Karl Thorsten", "age": "11", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347088; £27 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-thorsten-skoog.html" }, { "nm": "SKOOG, Miss Mabel", "age": "9", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347088; £27 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mabel-skoog.html" }, { "nm": "SKOOG, Miss Margit Elizabeth", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347088; £27 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/margit-elizabeth-skoog.html" }, { "nm": "SKOOG, Mr Wilhelm (William Johansson)", "age": "40", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347088; £27 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wilhelm-william-johansson-skoog.html" }, { "nm": "SKOOG, Mrs Anna Bernhardina", "age": "43", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347088; £27 18s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/anna-bernhardina-skoog.html" }, { "nm": "SLABENOFF, Mr Petco", "age": "42", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349214; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/petco-slabenoff.html" }, { "nm": "SLAYTER, Miss Hilda Mary", "age": "30", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Cobh", "ch": "", "tck": "234818; £12 7s", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hilda-mary-slayter.html" }, { "nm": "SLEMEN, Mr Richard James", "age": "35", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28206; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-james-slemen.html" }, { "nm": "SLIGHT, Mr Harry John", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-john-slight.html" }, { "nm": "SLIGHT, Mr William H.", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Larder Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-slight.html" }, { "nm": "SLOAN, Miss Mary", "age": "28", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-sloan.html" }, { "nm": "SLOAN, Mr Peter", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Chief Electrician", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/peter-sloan.html" }, { "nm": "SLOAN, Mr Thomas", "age": "50", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Boatswain", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-sloan.html" }, { "nm": "SLOCOMBE, Mrs Maude Louise", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Turkish Bath Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maude-slocombe.html" }, { "nm": "SLOCOVSKI, Mr Selman Francis", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Merchant", "tck": "392086; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/selman-francis-slocovski.html" }, { "nm": "SLOPER, Mr William Thompson", "age": "28", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Stockbroker", "tck": "113788; £35 10s", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-thompson-sloper.html" }, { "nm": "SMALL, Mr William", "age": "40", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-small.html" }, { "nm": "SMART, Mr John Montgomery", "age": "56", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113792; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-montgomery-smart.html" }, { "nm": "SMILJANIC, Mr Mile", "age": "37", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "315037; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mile-smiljanic.html" }, { "nm": "SMILLIE, Mr John", "age": "29", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-smillie.html" }, { "nm": "SMITH, Captain Edward John", "age": "62", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Master", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-john-smith.html" }, { "nm": "SMITH, Miss Katherine E.", "age": "42", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/katherine-smith.html" }, { "nm": "SMITH, Miss Marion Elsie", "age": "39", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31418; £13", /* This is a second comment */ "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marion-elsie-smith.html" }, { "nm": "SMITH, Mr Charles", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Kitchen Porter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-smith.html" }, { "nm": "SMITH, Mr Charles Edwin", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-edwin-smith.html" }, { "nm": "SMITH, Mr Emest George", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emest-george-smith.html" }, { "nm": "SMITH, Mr F.", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Pantryman Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/f-smith.html" }, { "nm": "SMITH, Mr James Clinch", "age": "56", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Military", "tck": "17764; £30 13s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-clinch-smith.html" }, { "nm": "SMITH, Mr James M.", "age": "35", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior 4th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-smith.html" }, { "nm": "SMITH, Mr James William", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-william-smith.html" }, { "nm": "SMITH, Mr John Richard Jago", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Postal Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-richard-jago-smith.html" }, { "nm": "SMITH, Mr Joseph", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-smith.html" }, { "nm": "SMITH, Mr Lucian Philip", "age": "24", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13695; £60", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lucian-philip-smith.html" }, { "nm": "SMITH, Mr Richard William", "age": "", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113056; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-william-smith.html" }, { "nm": "SMITH, Mr Robert G.", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-smith.html" }, { "nm": "SMITH, Mr Walter", "age": "44", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/walter-smith.html" }, { "nm": "SMITH, Mr William", "age": "26", // This is a comment "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-smith.html" }, { "nm": "SMITH, Mrs Mary Eloise", "age": "18", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "13695; £60", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-eloise-smith.html" }, { "nm": "SMITHER, Mr Harry John", "age": "22", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-john-smither.html" }, { "nm": "SMYTH, Miss Julia", "age": "17", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "335432; £7 14s 8d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/julia-smyth.html" }, { "nm": "SMYTH, Mr John", "age": "33", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-smyth.html" }, { "nm": "SMYTH, Mr Thomas", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "", "tck": "384461; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-smyth.html" }, { "nm": "SNAPE, Mrs Lucy Violet", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lucy-violet-snape.html" }, { "nm": "SNELLGROVE, Mr George", "age": "40", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/g-snellgrove.html" }, { "nm": "SNOOKS, Mr W.", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-snooks.html" }, { "nm": "SNOW, Mr Eustace Philip", "age": "21", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eustace-philip-snow.html" }, { "nm": "SNYDER, Mr John Pillsbury", "age": "24", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "21228; £82 5s 4d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-pillsbury-snyder.html" }, { "nm": "SNYDER, Mrs Nelle", "age": "23", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "21228; £82 5s 4d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nelle-snyder.html" }, { "nm": "SOBEY, Mr Samuel James Hayden", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Quarryman", "tck": "29178; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-james-hayden-sobey.html" }, { "nm": "SøHOLT, Mr Peter Andreas Lauritz Andersen", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "348124; £7 13s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/peter-andreas-lauritz-andersen-soholt.html" }, { "nm": "SOMERTON, Mr Francis William", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "18509; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francis-william-somerton.html" }, { "nm": "SPARKMAN, Mr Henry William", "age": "35", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/henry-william-sparkman.html" }, { "nm": "SPECTOR, Mr Woolf", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3236; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/woolf-spector.html" }, { "nm": "SPEDDEN, Master Robert Douglas", "age": "6", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "16966; £134 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-douglas-spedden.html" }, { "nm": "SPEDDEN, Mr Frederic Oakley", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "16966; £134 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frederic-oakley-spedden.html" }, { "nm": "SPEDDEN, Mrs Margaretta Corning", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "16966; £134 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaretta-corning-spedden.html" }, { "nm": "SPENCER, Mr William Augustus", "age": "57", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17569; £146 10s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-augustus-spencer.html" }, { "nm": "SPENCER, Mrs Marie Eugenie", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17569; £146 10s 5d", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marie-eugenie-spencer.html" }, { "nm": "SPINNER, Mr Henry John", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Grocer", "tck": "369943; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-john-spinner.html" }, { "nm": "STAGG, Mr John Henry", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-henry-stagg.html" }, { "nm": "STäHELIN-MAEGLIN, Dr Max", "age": "32", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Lawyer", "tck": "13214; £30 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/max-stahelin-maeglin.html" }, { "nm": "STANBROOK, Mr Augustus George", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/augustus-stanbrook.html" }, { "nm": "STANEFF, Mr Ivan", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349208; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ivan-staneff.html" }, { "nm": "STANKOVIC, Mr Ivan", "age": "33", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "349239; £8 13s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ivan-stankovic.html" }, { "nm": "STANLEY, Miss Amy Zillah Elsie", "age": "24", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "2314; £7 11s", /* This is a second comment */ "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/amy-zillah-elsie-stanley.html" }, { "nm": "STANLEY, Mr Edward Roland", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Porter", "tck": "45380; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-roland-stanley.html" }, { "nm": "STANTON, Mr Samuel Ward", "age": "42", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "237734; £15 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-ward-stanton.html" }, { "nm": "STAP, Miss Sarah Agnes", "age": "47", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/sarah-agnes-stap.html" }, { "nm": "STARKEY, Mr Henry", "age": "46", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/henry-starkey.html" }, { "nm": "STEAD, Mr William Thomas", "age": "62", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Journalist", "tck": "113514; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thomas-stead.html" }, { "nm": "STEBBINGS, Mr Sydney Frederick", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chief Boots Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/sydney-frederick-stebbings.html" }, { "nm": "STEEL, Mr Robert Edward", "age": "", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-edward-steel.html" }, { "nm": "STENGEL, Mr Charles Emil Henry", "age": "54", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "11778; £55 8s 10d", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-stengel.html" }, { "nm": "STENGEL, Mrs Annie May", "age": "44", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "11778; £55 8s 10d", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-may-stengel.html" }, { "nm": "STEPHENSON, Mrs Martha", "age": "52", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "36947; £78 5s 4d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/martha-stephenson.html" }, { "nm": "STEVENS, Mr G.", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "50", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/g-stevens.html" }, { "nm": "STEVENSON, Mr Andrew", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/andrew-stevenson.html" }, { "nm": "STEVENSON, Mr James", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-stevenson.html" }, { "nm": "STEVENSON, Mr John", "age": "49", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-stevenson.html" }, { "nm": "STEWART, Mr Albert Ankeny", "age": "64", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17605; £27 14s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-stewart.html" }, { "nm": "STEWART, Mr John", "age": "27", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Verandah Steward", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-stewart.html" }, { "nm": "STEWART, Mr John", "age": "30", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-stewart-2.html" }, { "nm": "STEWART, Mr Matthew", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/matthew-stewart.html" }, { "nm": "STOCKER, Mr Henry Dorey", "age": "20", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-dorey-stocker.html" }, { "nm": "STOKES, Mr Philip Joseph", "age": "25", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Bricklayer", "tck": "13540; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/philip-joseph-stokes.html" }, { "nm": "STONE, Mr Edmund", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "1st Class Bedroom Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edmund-stone.html" }, { "nm": "STONE, Mr Edward Thomas", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-thomas-stone.html" }, { "nm": "STONE, Mrs Martha Evelyn", "age": "62", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113572; £80", "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/martha-evelyn-stone.html" }, { "nm": "STOREY, Mr Thomas", "age": "51", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "370160", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-storey.html" }, { "nm": "STOYTCHEFF, Mr Ilia", "age": "19", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349205; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ilia-stoytcheff.html" }, { "nm": "STRANDBERG, Miss Ida Sofia", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7553; £9 16s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ida-sofia-strandberg.html" }, { "nm": "STRANDéN, Mr Juho Niilosson", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101288; £7 18s 6d", /* This is a second comment */ "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/juho-niilosson-stranden.html" }, { "nm": "STRANGE, Mr Samuel", "age": "38", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/samuel-strange.html" }, { "nm": "STRAUS, Mr Isidor", "age": "67", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "17483; £221 15s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/isidor-straus.html" }, { "nm": "STRAUS, Mrs Rosalie Ida", "age": "63", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17483; £221 15s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ida-straus.html" }, { "nm": "STREET, Mr Thomas Albert", "age": "25", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-albert-street.html" }, { "nm": "STRILIC, Mr Ivan", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315083; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ivan-strilic.html" }, { "nm": "STRöM, Miss Telma Matilda", "age": "2", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347054; £10 9s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/telma-matilda-strom.html" }, { "nm": "STRöM, Mrs Elna Matilda", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347054; £10 9s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/elna-matilda-strom.html" }, { "nm": "STROUD, Mr Edward Alfred Orlando", "age": "19", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-alfred-orlando-stroud.html" }, { "nm": "STROUD, Mr Harry John", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-john-stroud.html" }, { "nm": "STRUGNELL, Mr John Herbert", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-strugnell.html" }, { "nm": "STUBBINGS, Mr Harry Robert", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "2nd. Class Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-robert-stubbings.html" }, { "nm": "STUBBS, Mr James Henry", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-henry-stubbs.html" }, { "nm": "SULLIVAN, Mr S.", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/s-sullivan.html" }, { "nm": "SUNDERLAND, Mr Victor Francis", "age": "20", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "392089; £8 1s", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/victor-francis-sunderland.html" }, { "nm": "SUNDMAN, Mr Johan Julian", "age": "44", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "3101269; £7 18s 6d", /* This is a second comment */ "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/johan-julian-sundman.html" }, { "nm": "SUTEHALL, Mr Henry Jr", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Coach Trimmer", "tck": "392076; £7 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-sutehall.html" }, { "nm": "SUTTON, Mr Frederick", "age": "61", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Property Developer / Real Estate", "tck": "36963; £32 6s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-sutton.html" }, { "nm": "SVENSSON, Mr Johan", "age": "74", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "347060; £7 15s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johan-svensson.html" }, { "nm": "SVENSSON, Mr Johan Cervin", "age": "14", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "7538; £9 4s 6d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/johan-cervin-svensson.html" }, { "nm": "SVENSSON, Mr Olof", "age": "24", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "350035; £7 15s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/olof-svensson.html" }, { "nm": "SWAN, Mr W.", "age": "46", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-swan.html" }, { "nm": "SWANE, Mr George", "age": "19", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Chauffeur", "tck": "248734; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-swane.html" }, { "nm": "SWARBRICK, Mr Joseph", "age": "22", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joseph-swarbrick.html" }, { "nm": "SWARBRICK, Mr William J.", "age": "24", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-swarbrick.html" }, { "nm": "SWEET, Mr George Frederick", "age": "14", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "220845; £65", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-frederick-sweet.html" }, { "nm": "SWIFT, Mrs Margaret Welles", "age": "46", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "17466; £25 18s 7d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/margaret-welles-swift.html" }, { "nm": "SYMONDS, Mr John Crane", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-symonds.html" }, { "nm": "SYMONS, Mr George Thomas Macdonald", "age": "24", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Lookout", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-thomas-macdonald-symons.html" }, { "nm": "TAGGART, Mr William", "age": "23", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-taggart.html" }, { "nm": "TALBOT, Mr George Frederick Charles", "age": "20", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-frederick-charles-talbot.html" }, { "nm": "TAMLYN, Mr Frederick", "age": "23", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Mess Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-tamlyn.html" }, { "nm": "TAUSSIG, Miss Ruth", "age": "18", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "110413; £79 13s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ruth-taussig.html" }, { "nm": "TAUSSIG, Mr Emil", "age": "52", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "110413; £79 13s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emil-taussig.html" }, { "nm": "TAUSSIG, Mrs Tillie", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "110413; £79 13s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/tillie-taussig.html" }, { "nm": "TAYLOR, Mr Bernard Cuthbert", "age": "22", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bernard-cuthbert-taylor.html" }, { "nm": "TAYLOR, Mr C.", "age": "35", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/c-taylor.html" }, { "nm": "TAYLOR, Mr Elmer Zebley", "age": "48", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Manufacturer", "tck": "19996; £52", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elmer-zebley-taylor.html" }, { "nm": "TAYLOR, Mr George", "age": "24", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "1", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-taylor.html" }, { "nm": "TAYLOR, Mr George Frederick", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stenographer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-frederick-taylor.html" }, { "nm": "TAYLOR, Mr J.", "age": "42", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-taylor.html" }, { "nm": "TAYLOR, Mr John Henry", "age": "49", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-taylor.html" }, { "nm": "TAYLOR, Mr Leonard", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Turkish Bath Attendant", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-taylor.html" }, { "nm": "TAYLOR, Mr Percy Cornelius", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-cornelius-taylor.html" }, { "nm": "TAYLOR, Mr William Henry", "age": "27", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-henry-taylor.html" }, { "nm": "TAYLOR, Mr William John", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-john-taylor.html" }, { "nm": "TAYLOR, Mrs Juliet Cummins", "age": "49", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "19996; £52", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/juliet-cummins-taylor.html" }, { "nm": "TENGLIN, Mr Gunnar Isidor", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350033; £7 15s 11d", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gunnar-isidor-tenglin.html" }, { "nm": "TERRELL, Mr Bertram", "age": "20", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bertram-terrell.html" }, { "nm": "TERRELL, Mr Frank", "age": "27", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/frank-terrell.html" }, { "nm": "TESTONI, Sig. Ercole", "age": "23", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Glass Man", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ercole-testoni.html" }, { "nm": "TEUTON, Mr Thomas Moore", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-moore-teuton-fenton.html" }, { "nm": "THALER, Mr Montague Donald", "age": "17", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/montague-donald-thaler.html" }, { "nm": "THAYER, Mr John Borland", "age": "49", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Businessman", "tck": "17421; £110 17s 8d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-borland-thayer.html" }, { "nm": "THAYER, Mr John Borland jr", "age": "17", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Scholar", "tck": "17421; £110 17s 8d", "lf": "B", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-borland-thayer-jr.html" }, { "nm": "THAYER, Mrs Marian Longstreth", "age": "39", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17421; £110 17s 8d", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marian-thayer.html" }, { "nm": "THEISSINGER, Mr Alfred", "age": "46", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-theissinger.html" }, { "nm": "THEOBALD, Mr Thomas Leonard", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Groom", "tck": "363294; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-leonard-theobald.html" }, { "nm": "THOMAS, Mr Albert Charles", "age": "23", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/albert-charles-thomas.html" }, { "nm": "THOMAS, Mr Benjamin James", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/benjamin-james-thomas.html" }, { "nm": "THOMAS, Mr Charles R'ad.", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Dealer", "tck": "2621; £6 8s 9d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-rad-thomas.html" }, { "nm": "THOMAS, Mr John", "age": "25", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/john-thomas.html" }, { "nm": "THOMAS, Mr Joseph", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/joseph-thomas.html" }, { "nm": "THOMAS, Mr William", "age": "49", "st": "Unknown", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-thomas.html" }, { "nm": "THOMAS, Mrs Thamine(Thelma)", "age": "16", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2625; £8 10s 4d", // This is a comment "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thamine-thelma-thomas.html" }, { "nm": "THOMAS/TANNOUS, Master Assad Alexander", "age": "5m", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2625; £8 10s 4d", // This is a comment "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/assad-alexander-thomas-tannous.html" }, { "nm": "THOMAS/TANNOUS, Mr John", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Dealer", "tck": "2681; £6 8s 9d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-thomas-tannous.html" }, { "nm": "THOMAS/TANNOUS, Mr Tannous", "age": "16", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Scholar", "tck": "2684; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tannous-thomas-tannous.html" }, { "nm": "THOMPSON, Mr Alexander Morrison", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Mason", "tck": "32302; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alexander-morrison-thompson.html" }, { "nm": "THOMPSON, Mr Herbert Henry", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "2nd (Assistant) Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-henry-thompson.html" }, { "nm": "THOMPSON, Mr Joey", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Painter & Decorator", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/joey-thompson.html" }, { "nm": "THOMPSON, Mr John William", "age": "35", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/john-william-thompson.html" }, { "nm": "THORLEY, Mr William", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-thorley.html" }, { "nm": "THORN, Mr Harry", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Ship's Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-johnson-thorne.html" }, { "nm": "THORNE, Miss Gertrude Maybelle", "age": "38", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17585; £80 4d", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gertrude-maybelle-thorne.html" }, { "nm": "THORNEYCROFT, Mr Percival", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "376564; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percival-thorneycroft.html" }, { "nm": "THORNEYCROFT, Mrs Florence Kate", "age": "32", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "376564; £16 2s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/florence-kate-thorneycroft.html" }, { "nm": "THRELFALL, Mr Thomas", "age": "44", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-threlfall.html" }, { "nm": "THRESHER, Mr George Terrill", "age": "25", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/george-terrill-thresher.html" }, { "nm": "TIETZ, Sig. Carlo/Karl", "age": "27", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Kitchen Porter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/carlo-karl-tietz.html" }, { "nm": "TIKKANEN, Mr Juho", "age": "32", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101293; £7 18s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/juho-tikkanen.html" }, { "nm": "TINSLEY, Mr Thomas", "age": "40", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/thomas-tinsley.html" }, { "nm": "TIZARD, Mr Arthur", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-tizard.html" }, { "nm": "TOBIN, Mr Roger", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cobh", "ch": "Farmer", "tck": "383121; £7 15s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roger-tobin.html" }, { "nm": "TODOROFF, Mr Lalio", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349216; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/lalio-todoroff.html" }, { "nm": "TOMLIN, Mr Ernest Portage", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Scholar", "tck": "364499; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernest-portage-tomlin.html" }, { "nm": "TOMS, Mr Fred", "age": "29", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fred-toms.html" }, { "nm": "TOOMEY, Miss Ellen Mary", "age": "48", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "13531; £10 10s", /* This is a second comment */ "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-mary-toomey.html" }, { "nm": "TOPP, Mr Thomas", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "2nd Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-topp.html" }, { "nm": "TöRBER, Mr Ernst Wilhelm", "age": "41", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Florist", "tck": "364511; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ernst-wilhelm-torber.html" }, { "nm": "TORFA, Mr Assad", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farm Labourer", "tck": "2673; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/assad-torfa.html" }, { "nm": "TöRNQUIST, Mr William Henry", "age": "25", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Seaman", "tck": "370160", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-henry-tornquist.html" }, { "nm": "TOSHACK, Mr James Adamson", "age": "30", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-adamson-toshack.html" }, { "nm": "TOTEVSKI, Mr Hristo Danchev", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349203; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hristo-danchev-totevski.html" }, { "nm": "TOUMA, Master Georges Youssef (George Thomas)", "age": "8", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2650; £15 4s 11d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/georges-youssef-george-thomas-touma.html" }, { "nm": "TOUMA, Miss Maria Youssef (Mary Thomas)", "age": "9", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2650; £15 4s 11d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/maria-youssef-mary-thomas-touma.html" }, { "nm": "TOUMA, Mrs Hanna Youssef", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2650; £15 4s 11d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hanna-youssef-touma.html" }, { "nm": "TOVEY, Miss", "age": "", "st": "Unknown", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "516; £2", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/tovey.html" }, { "nm": "TOZER, Mr James", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-tozer.html" }, { "nm": "TRIGGS, Mr Robert", "age": "40", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/robert-triggs.html" }, { "nm": "TROUPIANSKY, Mr Moses Aaron", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Shop Assistant", "tck": "233639; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/moses-aaron-troupiansky.html" }, { "nm": "TROUT, Mrs Jessie L.", "age": "26", // This is a comment "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "240929; £12 13s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/jessie-trout.html" }, { "nm": "TROUTT, Miss Edwina Celia", "age": "27", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "34218; £10 10s", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edwina-troutt.html" }, { "nm": "TUCKER, Mr Gilbert Milligan jr", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2543; £28 10s 9d", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/gilbert-milligan-jr-tucker.html" }, { "nm": "TURCIN, Mr Stjepan", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349247; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/stjepan-turcin.html" }, { "nm": "TURJA, Miss Anna Sofia", "age": "18", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4138; £9 16s 10d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-sofia-turja.html" }, { "nm": "TURKULA, Mrs Hedwig", "age": "63", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "4134; £9 11s 9d", "lf": "15", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hedwig-turkula.html" }, { "nm": "TURLEY, Mr Richard", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-turley.html" }, { "nm": "TURNER, Mr L.", "age": "28", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/l-turner.html" }, { "nm": "TURPIN, Mr William John", "age": "29", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Carpenter / Joiner", "tck": "11668; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-turpin.html" }, { "nm": "TURPIN, Mrs Dorothy Ann", "age": "26", // This is a comment "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Housewife", "tck": "11668; £21", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/dorothy-ann-turpin.html" }, { "nm": "TURVEY, Mr Charles Thomas", "age": "17", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Page Boy", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-turvey.html" }, { "nm": "URBINI, Sig. Roberto", "age": "22", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roberto-urbini.html" }, { "nm": "URUCHURTU, Don. Manuel Ramirez", "age": "39", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Lawyer", "tck": "17601; £27 14s 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/manuel-uruchurtu.html" }, { "nm": "VALLER, Mr Arthur", "age": "25", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/arthur-valler.html" }, { "nm": "VALVASSORI, Sig. Ettore Luigi", "age": "35", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ettore-luigi-valvassori.html" }, { "nm": "VAN BILLIARD, Master James William", "age": "10", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "851; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-william-van-billiard.html" }, { "nm": "VAN BILLIARD, Master Walter John", "age": "9", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "851; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-john-van-billiard.html" }, { "nm": "VAN BILLIARD, Mr Austin Blyler", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "851; £14 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/austin-blyler-van-billiard.html" }, { "nm": "VAN DE VELDE, Mr Johannes Josef", "age": "35", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345780; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johannes-josef-van-de-velde.html" }, { "nm": "VAN DEN STEEN, Mr Leo Peter", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345783; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leo-peter-van-den-steen.html" }, { "nm": "VAN DER BRUGGE, Mr Wessel Adrianus", "age": "42", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wessel-adrianus-van-der-brugge.html" }, { "nm": "VAN DER HOEF, Mr Wyckoff", "age": "61", "st": "Victim", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Businessman", "tck": "111240; £33 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/wyckoff-van-der-hoef.html" }, { "nm": "VAN IMPE, Miss Catharina", "age": "10", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345773; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catharina-van-impe.html" }, { "nm": "VAN IMPE, Mr Jean Baptiste", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345773; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jean-baptiste-van-impe.html" }, { "nm": "VAN IMPE, Mrs Rosalie Paula", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345773; £24 3s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rosalie-paula-van-impe.html" }, { "nm": "VAN MELCKEBEKE, Mr Philemon", "age": "23", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345777; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/philemon-van-melckebeke.html" }, { "nm": "VANDERCRUYSSEN, Mr Victor", "age": "46", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345765; £9", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/victor-vandercruyssen.html" }, { "nm": "VANDERPLANCKE, Miss Augusta Maria", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "345764; £18", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/augusta-maria-vanderplancke.html" }, { "nm": "VANDERPLANCKE, Mr Julius", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345763; £18", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/julius-vanderplancke.html" }, { "nm": "VANDERPLANCKE, Mr Leo Edmondus", "age": "15", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "345763; £18", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leo-edmondus-vanderplancke.html" }, { "nm": "VANDERPLANCKE, Mrs Emelie Maria", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "345763; £18", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/emelie-maria-vanderplancke.html" }, { "nm": "VANDEWALLE, Mr Nestor Cyriel", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Merchant", "tck": "345770; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/nestor-cyriel-vandewalle.html" }, { "nm": "VARTANIAN, Mr David", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2658; £7 4s 6d", // This is a comment "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/david-vartanian.html" }, { "nm": "VEAL, Mr Arthur", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-veal.html" }, { "nm": "VEAL, Mr James", "age": "40", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28221; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-veal.html" }, { "nm": "VEAL, Mr Thomas Henry Edom", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-henry-edom-veal.html" }, { "nm": "VEAR, Mr Henry", "age": "32", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/h-vear.html" }, { "nm": "VEAR, Mr William", "age": "33", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-vear.html" }, { "nm": "VENDEL, Mr Olof Edvin", "age": "20", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "350416; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/olof-edvin-vendel.html" }, { "nm": "VESTRöM, Miss Hulda Amanda Adolfina", "age": "14", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "350406; £7 17s 1d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/hulda-amanda-adolfina-vestrom.html" }, { "nm": "VICAT, Sig. Alphonse Jean Eugene", "age": "21", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alphonse-jean-eugene-vicat.html" }, { "nm": "VIGOTT, Mr Philip Francis", "age": "32", "st": "Survivor", "typ": "Deck Crew", "bd": "Southampton", "ch": "Able Seaman", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/philip-francis-vigott.html" }, { "nm": "VILLVARLANGE, Mr Pierre Léon Gabriel", "age": "19", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Soup Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/pierre-leon-gabriel-villvarlange.html" }, { "nm": "VINE, Mr Herbert Thomas Gordon", "age": "18", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Restaurant Controller", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/herbert-vine.html" }, { "nm": "VIONI, Sig. Roberto", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/roberto-vioni.html" }, { "nm": "VOEGELIN-DUBACH, Sig. Johannes", "age": "35", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/johannes-voegelin-dubach.html" }, { "nm": "VOVK, Mr Janko", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "349252; £7 17s 11d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/janko-vovk.html" }, { "nm": "WAELENS, Mr Achille", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "345767; £9", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/achille-waelens.html" }, { "nm": "WAKE, Mr Percy", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Baker", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-wake.html" }, { "nm": "WALKER, Mr Robert", "age": "43", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-walker.html" }, { "nm": "WALKER, Mr William Anderson", "age": "48", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "36967; £34 5d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-anderson-walker.html" }, { "nm": "WALLACE, Mr Robert", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-wallace.html" }, { "nm": "WALLCROFT, Miss Ellen(Nellie)", "age": "36", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Cook", "tck": "13528; £21", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/nellie-wallcroft.html" }, { "nm": "WALLIS, Mrs Catherine Jane", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Matron", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catherine-jane-wallis.html" }, { "nm": "WALLS, Mr James", "age": "32", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-walls.html" }, { "nm": "WALPOLE, Mr James", "age": "48", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Chief Pantryman Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-walpole.html" }, { "nm": "WALSH, Miss Catherine", "age": "32", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Stewardess", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/catherine-walsh.html" }, { "nm": "WARD, Miss Annie Moore", "age": "35", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "17755; £512 6s 7d", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/annie-moore-ward.html" }, { "nm": "WARD, Mr Arthur", "age": "24", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Junior Assistant 4th. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-ward.html" }, { "nm": "WARD, Mr Edward", "age": "34", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-ward.html" }, { "nm": "WARD, Mr J.", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/j-ward.html" }, { "nm": "WARD, Mr Percy Thomas", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percy-thomas-ward.html" }, { "nm": "WARD, Mr William", "age": "36", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-ward.html" }, { "nm": "WARD, Mr William", "age": "24", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/william-ward-2.html" }, { "nm": "WARDNER, Mr Fred Albert", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-wardner.html" }, { "nm": "WARE, Mr Frederick", "age": "34", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Motor Fitter", "tck": "359309; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-ware.html" }, { "nm": "WARE, Mr John James", "age": "45", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31352; £21", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-james-ware.html" }, { "nm": "WARE, Mr William Jeffery", "age": "23", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "28666; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-jeffery-ware.html" }, { "nm": "WARE, Mrs Florence Louise", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "31352; £21", /* This is a second comment */ "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/florence-louise-ware.html" }, { "nm": "WAREHAM, Mr Robert Arthur", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Bed Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/robert-arthur-wareham.html" }, { "nm": "WARREN, Mr Charles William", "age": "30", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Bricklayer", "tck": "49867; £7 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-william-warren.html" }, { "nm": "WARREN, Mr Frank Manley", "age": "63", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "110813; £75 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-manley-warren.html" }, { "nm": "WARREN, Mrs Anna Sophia", "age": "60", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "110813; £75 5s", "lf": "5", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/anna-sophia-warren.html" }, { "nm": "WARWICK, Mr Tom", "age": "25", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/tom-warwick.html" }, { "nm": "WATERIDGE, Mr Edward Lewis", "age": "25", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-lewis-wateridge.html" }, { "nm": "WATSON, Mr Ennis Hastings", "age": "15", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Belfast", "ch": "Apprentice Electrician", "tck": "239856", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ennis-hastings-watson.html" }, { "nm": "WATSON, Mr W.", "age": "27", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-watson.html" }, { "nm": "WATSON, Mr William Albert", "age": "14", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bell Boy", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-watson-2.html" }, { "nm": "WATT, Miss Robertha Josephine", "age": "12", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "33595; £15 15s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bertha-watt.html" }, { "nm": "WATT, Mrs Elizabeth(Bessie) Inglis", "age": "40", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "33595; £15 15s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/bessie-watt.html" }, { "nm": "WATTS, Mr", "age": "36", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/watts.html" }, { "nm": "WAUGH, Mr James", "age": "26", // This is a comment "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/james-waugh.html" }, { "nm": "WAZLI, Mr Yousif Ahmed", "age": "25", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Farmer", "tck": "2647; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/yousif-ahmed-wazli.html" }, { "nm": "WEATHERSTON, Mr Thomas Herbert", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/thomas-herbert-weatherstone.html" }, { "nm": "WEBB, Mr Brooke Holding", "age": "50", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Smoke Room Steward (1st class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/brooke-holding-webb.html" }, { "nm": "WEBB, Mr S.", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/s-webb.html" }, { "nm": "WEBBER, Miss Susan", "age": "37", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "27267; £13", "lf": "12", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/susan-webber.html" }, { "nm": "WEBBER, Mr Francis Albert", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francis-albert-webber.html" }, { "nm": "WEBBER, Mr James", "age": "66", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Miner", "tck": "3101316; £8 1s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-webber.html" }, { "nm": "WEIKMAN, Mr Augustus Henry", "age": "52", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Barber", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/augustus-henry-weikman.html" }, { "nm": "WEIR, Colonel John", "age": "59", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Military", "tck": "113800; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-weir.html" }, { "nm": "WEISZ, Mr Léopold", "age": "37", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Stonemason and Carver", "tck": "228414; £26", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leopold-weisz.html" }, { "nm": "WEISZ, Mrs Mathilde Françoise", "age": "37", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "228414; £26", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mathilde-francoise-weisz.html" }, { "nm": "WELCH, Mr William Harold", "age": "23", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Cook", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/w-welch.html" }, { "nm": "WELLER, Mr William Clifford", "age": "30", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Able Seaman", "tck": "", "lf": "7", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-clifford-weller.html" }, { "nm": "WELLS, Master Ralph Lester", "age": "2", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29103; £23", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ralph-lester-wells.html" }, { "nm": "WELLS, Miss Joan", "age": "4", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29103; £23", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joan-wells.html" }, { "nm": "WELLS, Mrs(Addie) Dart", "age": "29", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "29103; £23", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/addie-dart-wells.html" }, { "nm": "WELSH, Mr Patrick", "age": "50", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/patrick-welsh.html" }, { "nm": "WENNERSTRöM, Mr August", "age": "27", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "350043; £7 15s 11d", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/august-wennerstrom.html" }, { "nm": "WEST, Miss Barbara Joyce", "age": "10m", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "34651; £27 15s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/barbara-joyce-west.html" }, { "nm": "WEST, Miss Constance Mirium", "age": "4", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "34651; £27 15s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/constance-mirium-west.html" }, { "nm": "WEST, Mr Edwy Arthur", "age": "36", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "34651; £27 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edwy-arthur-west.html" }, { "nm": "WEST, Mrs Ada Mary", "age": "33", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "34651; £27 15s", "lf": "10", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ada-mary-west.html" }, { "nm": "WHEADON, Mr Edward H.", "age": "66", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "24579; £10 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-wheadon.html" }, { "nm": "WHEAT, Mr Joseph Thomas", "age": "30", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Second Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/joseph-thomas-wheat.html" }, { "nm": "WHEELER, Mr Edwin Charles", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Servant", "tck": "2159; £12 17s 6d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edwin-charles-fred-wheeler.html" }, { "nm": "WHEELTON, Mr Edneser (Ernest) Edward", "age": "29", "st": "Survivor", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "11", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/edneser-ernest-edward-wheelton.html" }, { "nm": "WHINNERY, Mr Hugh", "age": "41", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/hugh-whinnery.html" }, { "nm": "WHITE, Mr Albert", "age": "21", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/r-morell.html" }, { "nm": "WHITE, Mr Alfred", "age": "32", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-white.html" }, { "nm": "WHITE, Mr Arthur", "age": "37", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Barber", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-white.html" }, { "nm": "WHITE, Mr Edward Joseph", "age": "27", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Glory hole steward (3rd class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-joseph-white.html" }, { "nm": "WHITE, Mr Frank Leonard", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frank-leonard-white.html" }, { "nm": "WHITE, Mr Leonard Lisle Oliver", "age": "31", /* This is a second comment */ "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leonard-lisle-oliver-white.html" }, { "nm": "WHITE, Mr Percival Wayland", "age": "54", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Manufacturer", "tck": "35281; £77 5s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/percival-wayland-white.html" }, { "nm": "WHITE, Mr Richard Frasar", "age": "21", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "35281; £77 5s 9d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/richard-frasar-white.html" }, { "nm": "WHITE, Mr William George", "age": "23", "st": "Survivor", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-george-white.html" }, { "nm": "WHITE, Mrs Ella", "age": "55", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17760; £135 12s 8d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ella-white.html" }, { "nm": "WHITELEY, Mr Thomas Arthur", "age": "18", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/thomas-whiteley.html" }, { "nm": "WHITFORD, Mr Alfred Henry", "age": "39", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/alfred-henry-whitford.html" }, { "nm": "WICK, Miss Mary Natalie", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "36928; £164 17s 4d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-natalie-wick.html" }, { "nm": "WICK, Mr George Dennick", "age": "57", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "36928; £164 17s 4d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-dennick-wick.html" }, { "nm": "WICK, Mrs Mary", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "36928; £164 17s 4d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/mary-wick.html" }, { "nm": "WIDEGREN, Mr Carl / Charles Peter", "age": "51", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "347064; £7 15s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/carl-charles-peter-widegren.html" }, { "nm": "WIDENER, Mr George Dunton", "age": "50", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Banker", "tck": "113503; £211 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-dunton-widener.html" }, { "nm": "WIDENER, Mr Harry Elkins", "age": "27", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Bibliophile", "tck": "113503; £211 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/harry-elkins-widener.html" }, { "nm": "WIDENER, Mrs Eleanor", "age": "50", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113503; £211 10s", "lf": "4", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/eleanor-widener.html" }, { "nm": "WIDGERY, Mr James George", "age": "37", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bath Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-george-widgery.html" }, { "nm": "WIKLUND, Mr Jakob Alfred", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101267; £6 9s 11d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/jakob-alfred-wiklund.html" }, { "nm": "WIKLUND, Mr Karl Johan", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "General Labourer", "tck": "3101266; £6 9s 11d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/karl-johan-wiklund.html" }, { "nm": "WILDE, Mr Henry Tingle", "age": "39", "st": "Victim", "typ": "Deck Crew", "bd": "Southampton", "ch": "Chief Officer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-tingle-wilde.html" }, { "nm": "WILDING, Mr Edward", "age": "", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Belfast", "ch": "Naval Architect", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/edward-wilding.html" }, { "nm": "WILHELMS, Mr Charles", "age": "32", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "244270; £13", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-wilhelms.html" }, { "nm": "WILKES, Mrs Ellen", "age": "47", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "", "tck": "363272; £7", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/ellen-wilkes.html" }, { "nm": "WILKINSON, Mrs Elizabeth Anne", "age": "35", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "2926; £26", "lf": "16", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/elizabeth-anne-wilkinson.html" }, { "nm": "WILLARD, Miss Constance", "age": "21", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "", "tck": "113795; £26 11s", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/constance-willard.html" }, { "nm": "WILLER, Mr Aaron", "age": "37", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "3410; £8 14s 3d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/aaron-willer.html" }, { "nm": "WILLEY, Mr Edward", "age": "18", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farm Labourer", "tck": "751; £7 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/edward-willey.html" }, { "nm": "WILLIAMS, Mr Arthur J.", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Storekeeper", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/arthur-williams.html" }, { "nm": "WILLIAMS, Mr Charles Duane", "age": "51", "st": "Victim", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Lawyer", "tck": "17597; £61 7s 7d", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/charles-duane-williams.html" }, { "nm": "WILLIAMS, Mr Charles Eugene", "age": "23", "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Sportsman", "tck": "244373; £13", "lf": "14", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/charles-eugene-williams.html" }, { "nm": "WILLIAMS, Mr Fletcher Fellowes Lambert", "age": "", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113510; £35", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/fletcher-lambert-williams.html" }, { "nm": "WILLIAMS, Mr Howard Hugh(Harry)", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Carman", "tck": "2466; £8 1s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/howard-hugh-harry-williams.html" }, { "nm": "WILLIAMS, Mr Leslie", "age": "28", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Pugilist", "tck": "54636; £16 2s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leslie-williams.html" }, { "nm": "WILLIAMS, Mr Richard Norris II", "age": "21", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Sportsman", "tck": "17597; £61 7s 7d", "lf": "A", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/richard-norris-williams.html" }, { "nm": "WILLIAMS, Mr Samuel S.", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/samuel-williams.html" }, { "nm": "WILLIAMS, Mr Walter John", "age": "28", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-john-williams.html" }, { "nm": "WILLIAMSON, Mr James Bertram", "age": "35", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Postal Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-bertram-williamson.html" }, { "nm": "WILLIS, Mr William", "age": "46", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "3rd Class Packer Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-willis.html" }, { "nm": "WILLSHER, Mr William Aubrey", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Butcher", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-audrey-willsher.html" }, { "nm": "WILSON, Miss Helen Alice", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "Personal Maid", "tck": "16966; £134 10s", "lf": "3", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/helen-wilson.html" }, { "nm": "WILSON, Mr Bertie", "age": "28", "st": "Victim", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Senior Assistant 2nd. Engineer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/bertie-wilson.html" }, { "nm": "WILTON, Mr William Edward", "age": "53", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/william-wilton.html" }, { "nm": "WINDEBANK, Mr Alfred Edgar", "age": "38", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Cook", "tck": "", "lf": "13", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/alfred-edgar-windebank.html" }, { "nm": "WINDELøV, Mr Einar", "age": "21", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Dairy Worker", "tck": "3101317; £7 5s", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/einar-windelov.html" }, { "nm": "WINSER, Mr Rowland", "age": "33", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/rowland-winser.html" }, { "nm": "WIRZ, Mr Albert", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315154; £8 13s 3d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-wirz.html" }, { "nm": "WISEMAN, Mr Philippe", "age": "54", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Merchant", "tck": "34244; £7 5s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/phillippe-wiseman.html" }, { "nm": "WITCHER, Mr Albert Ernest", "age": "39", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/albert-ernest-witcher.html" }, { "nm": "WITT, Mr Henry Dennis", "age": "37", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-dennis-witt.html" }, { "nm": "WITTER, Mr James William Cheetham", "age": "31", /* This is a second comment */ "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Smoke Room Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/james-william-cheetham-witter.html" }, { "nm": "WITTEVRONGEL, Mr Camilius Aloysius", "age": "36", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "345771; £9 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/camilius-aloysius-wittevrongel.html" }, { "nm": "WITTMAN, Mr Henry", "age": "38", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Bathroom Steward (1st Class)", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-wittman.html" }, { "nm": "WOOD, Mr Henry", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Trimmer", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henry-wood.html" }, { "nm": "WOOD, Mr James Thomas", "age": "40", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Assistant Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-thomas-wood.html" }, { "nm": "WOODFORD, Mr Frederick Ernest", "age": "40", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Greaser", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-woodford.html" }, { "nm": "WOODMEY, Mr Robert", "age": "41", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/robert-woodmey.html" }, { "nm": "WOODS, Mr Hugh", "age": "28", "st": "Unknown", "typ": "Engineering Crew", "bd": "Belfast", "ch": "Leading Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-biography/hugh-woods.html" }, { "nm": "WOODWARD, Mr John Wesley", "age": "32", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "Musician", "tck": "250654", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/john-wesley-woodward.html" }, { "nm": "WOODY, Mr Oscar Scott", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Postal Clerk", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/oscar-scott-woody.html" }, { "nm": "WOOLNER, Mr Hugh", "age": "45", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "19947; £35 10s", "lf": "D", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/hugh-woolner.html" }, { "nm": "WORMALD, Mr Henry Frederick Charles", "age": "44", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Saloon Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-william-wormald.html" }, { "nm": "WORTHMAN, Mr William Henry", "age": "37", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/walter-jarvis.html" }, { "nm": "WOTTON, Mr Henry Swaffin", "age": "54", "st": "Unknown", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Butcher's Shop Proprietor", "tck": "86; £1 10s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-cross-channel-passenger/henry-swaffin-wotton.html" }, { "nm": "WRAPSON, Mr Frederick Bernard", "age": "18", "st": "Victim", "typ": "Victualling Crew", "bd": "Belfast", "ch": "Assistant Pantryman Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-bernard-wrapson.html" }, { "nm": "WRIGHT, Miss Marion", "age": "26", // This is a comment "st": "Survivor", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "220844; £13 10s", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marion-wright.html" }, { "nm": "WRIGHT, Mr Frederick", "age": "24", "st": "Victim", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Sports Instructor", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/frederick-wright.html" }, { "nm": "WRIGHT, Mr George", "age": "62", "st": "Victim", "typ": "1st Class Passenger", "bd": "Southampton", "ch": "Businessman", "tck": "113807; £26 11s", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/george-wright.html" }, { "nm": "WRIGHT, Mr William", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "Glory Hole Steward", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/william-wright.html" }, { "nm": "WYETH, Mr James Robert", "age": "26", // This is a comment "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/james-wyeth.html" }, { "nm": "WYNN, Mr Walter", "age": "41", "st": "Survivor", "typ": "Deck Crew", "bd": "Belfast", "ch": "Quartermaster", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/walter-wynn.html" }, { "nm": "YASBECK, Mr Antoni", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2659; £14 9s 1d", // This is a comment "lf": "C", "url": "http://www.encyclopedia-titanica.org/titanic-victim/antoni-yasbeck.html" }, { "nm": "YAZBECK, Mrs Selini", "age": "15", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2659; £14 9s 1d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/selini-celiney-yazbeck.html" }, { "nm": "YEARSLEY, Mr Harry", "age": "40", "st": "Survivor", "typ": "Victualling Crew", "bd": "Southampton", "ch": "First class saloon steward", "tck": "", "lf": "9", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/harry-yearsley.html" }, { "nm": "YOUNG, Miss Marie Grice", "age": "36", "st": "Survivor", "typ": "1st Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "17760; £135 12s 8d", "lf": "8", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/marie-grice-young.html" }, { "nm": "YOUNG, Mr Francis James", "age": "30", "st": "Victim", "typ": "Engineering Crew", "bd": "Southampton", "ch": "Fireman", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/francis-james-young.html" }, { "nm": "YOUSSEFF (ABI SAAB), Mr Gerios", "age": "26", // This is a comment "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "Shoemaker", "tck": "2685; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gerios-yousseff-abi-saab.html" }, { "nm": "YOUSSIFF (SAM'AAN), Mr Gerios", "age": "45", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2628; £7 4s 7d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/gerios-youssiff-samaan.html" }, { "nm": "YVOIS, Miss Henriette", "age": "24", "st": "Victim", "typ": "2nd Class Passenger", "bd": "Southampton", "ch": "", "tck": "248747; £13", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/henriette-yvois.html" }, { "nm": "ZAKARIAN, Mr Mapriededer", "age": "22", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "", "tck": "2656; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/mapriededer-zakarian.html" }, { "nm": "ZAKARIAN, Mr Ortin", "age": "27", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2670; £7 4s 6d", // This is a comment "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/ortin-zakarian.html" }, { "nm": "ZANETTI, Sig. Minio", "age": "20", "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Assistant Waiter", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/minio-zanetti.html" }, { "nm": "ZARRACCHI, Sig. L.", "age": "26", // This is a comment "st": "Victim", "typ": "Restaurant Staff", "bd": "Southampton", "ch": "Wine Butler", "tck": "", "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/l-zarracchi.html" }, { "nm": "ZENNI, Mr Philip", "age": "22", "st": "Survivor", "typ": "3rd Class Passenger", "bd": "Cherbourg", "ch": "General Labourer", "tck": "2620; £7 4s 6d", // This is a comment "lf": "6", "url": "http://www.encyclopedia-titanica.org/titanic-survivor/fahim-philip-zenni-leeni.html" }, { "nm": "ZIMMERMANN, Mr Leo", "age": "29", "st": "Victim", "typ": "3rd Class Passenger", "bd": "Southampton", "ch": "Farmer", "tck": "315082; £7 17s 6d", /* This is a second comment */ "lf": "", "url": "http://www.encyclopedia-titanica.org/titanic-victim/leo-zimmermann.html" } ] strip-json-comments-3.1.1/sample.json000066400000000000000000000734341370262031100176310ustar00rootroot00000000000000{ "id": 1, "jsonrpc": "2.0", "total": 20000, /* Nulla quis ullamco consectetur elit. Minim amet aliquip ad deserunt anim officia laborum consectetur ipsum eu. Cupidatat deserunt qui eiusmod exercitation labore amet id aliquip in qui. Aute duis ex exercitation magna aliquip mollit nisi amet id fugiat nulla. Pariatur aliquip non sint sint amet. Mollit anim reprehenderit aliquip commodo pariatur velit aliquip reprehenderit labore sit adipisicing. Exercitation adipisicing adipisicing voluptate aute id occaecat ipsum commodo minim sint et Lorem officia. */ "result": [ { "id": 1, "guid": "046447ee-da78-478c-b518-b612111942a5", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 37, "name": "Payton Murphy", "company": "Robotomic", "phone": "806-587-2379", "email": "payton@robotomic.com" }, { "id": 2, "guid": "3d06a20a-c8b8-4a17-add5-e9a27b66d202", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 40, "name": "Savannah Calhoun", "company": "Conotomics", "phone": "873-453-3007", "email": "savannah@conotomics.com" }, { "id": 3, "guid": "18885904-5685-4cec-9182-a1f6509c5ce4", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 39, "name": "Kaitlyn Carrington", "company": "Genland", "phone": "889-443-2207", "email": "kaitlyn@genland.com" }, { "id": 4, "guid": "8378a1ff-d289-471d-b1aa-fe0809d8b2db", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Genesis Goldman", "company": "iQualcar", "phone": "805-439-3302", "email": "genesis@iqualcar.com" }, { "id": 5, "guid": "93e92a87-8512-4db8-940e-fedb7d64973f", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 39, "name": "Leah Brooks", "company": "Westgate", "phone": "882-499-2432", "email": "leah@westgate.com" }, { "id": 6, "guid": "31456de2-2fd4-4075-9f3b-9afef6a6747d", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 40, "name": "Madelyn Carey", "company": "Titanirola", "phone": "823-450-3828", "email": "madelyn@titanirola.com" }, { "id": 7, "guid": "416f7fec-a695-4652-b6a4-c663344941fd", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 37, "name": "Trinity Campbell", "company": "eSteganoergy", "phone": "824-540-3213", "email": "trinity@esteganoergy.com" }, { "id": 8, "guid": "ce62e5ff-12ec-4097-82aa-2d5570653af7", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Savannah Oldman", "company": "Proline", "phone": "820-584-2077", "email": "savannah@proline.com" }, { "id": 9, "guid": "454cf0c8-0466-4703-8579-a6a97e6914b9", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 23, "name": "Samantha Chandter", "company": "iOptystix", "phone": "884-598-3615", "email": "samantha@ioptystix.com" }, { "id": 10, "guid": "5ea1251f-ca94-4385-9ff7-99bf8c4b3707", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 20, "name": "Layla Thorndike", "company": "Titanirola", "phone": "807-439-3000", "email": "layla@titanirola.com" }, { "id": 11, "guid": "79567436-45ec-4331-a707-4cb9272272ef", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Victoria Fulton", "company": "Titanirola", "phone": "893-535-3674", "email": "victoria@titanirola.com" }, { "id": 12, "guid": "1e3be706-e1f2-443b-8757-bf602ae7e89d", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Angelina Thorndike", "company": "Conrama", "phone": "893-410-3150", "email": "angelina@conrama.com" }, { "id": 13, "guid": "d31d10cc-089c-4432-969c-51ebf3570bd1", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 27, "name": "Makayla Fisher", "company": "Inridium", "phone": "852-514-2754", "email": "makayla@inridium.com" }, { "id": 14, "guid": "23236036-1fb8-4691-a394-1f04c694e757", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 21, "name": "Valeria Chapman", "company": "Vencom", "phone": "857-554-3909", "email": "valeria@vencom.com" }, { "id": 15, "guid": "db1679a3-688d-4961-8d1b-711fdd98e4e3", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 37, "name": "Alexandra Wallace", "company": "Xeicon", "phone": "800-445-3677", "email": "alexandra@xeicon.com" }, { "id": 16, "guid": "82dabc5a-4cf1-4b41-9c45-500128c8b3df", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Kaitlyn Vance", "company": "Teraserv", "phone": "836-513-3038", "email": "kaitlyn@teraserv.com" }, { "id": 17, "guid": "049d3676-7708-4a5c-af8d-0738db178817", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 28, "name": "Avery Ogden", "company": "Qualserve", "phone": "808-571-2740", "email": "avery@qualserve.com" }, { "id": 18, "guid": "a7eccc57-1a1c-4114-ae38-9ffba11c9246", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 32, "name": "Savannah Gerald", "company": "Cryptotegrity", "phone": "876-411-2611", "email": "savannah@cryptotegrity.com" }, { "id": 19, "guid": "f9bd1424-fe55-4c65-a1d6-f4943da1ba34", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 30, "name": "Serenity Neal", "company": "Tekcar", "phone": "800-587-2691", "email": "serenity@tekcar.com" }, { "id": 20, "guid": "c8286c32-95ba-4cc5-9186-5d3d61e1f62c", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Jasmine Carey", "company": "Infragraph", "phone": "875-545-2084", "email": "jasmine@infragraph.com" }, { "id": 21, "guid": "bd380c03-8558-425b-84b1-ecd8142af14f", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 24, "name": "Amelia WifKinson", "company": "OpKeycomm", "phone": "811-479-3113", "email": "amelia@opkeycomm.com" }, { "id": 22, "guid": "30d856da-1843-4781-bf90-91360bf55dae", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 34, "name": "Emma Ogden", "company": "Textiqua", "phone": "835-422-2698", "email": "emma@textiqua.com" }, { "id": 23, "guid": "3b0e71e6-dde1-4f9c-8563-53bc0fdf601e", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 30, "name": "Evelyn Ford", "company": "Fibroserve", "phone": "810-471-3020", "email": "evelyn@fibroserve.com" }, { "id": 24, "guid": "209bbb71-d5a3-458d-bf98-7a50a2f42bbd", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Molly Oliver", "company": "Conrama", "phone": "883-518-2720", "email": "molly@conrama.com" }, { "id": 25, "guid": "1137ef18-6b98-41e6-bb94-5334f03526b4", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 38, "name": "Melanie Carrington", "company": "Mescaridic", "phone": "806-592-2714", "email": "melanie@mescaridic.com" }, { "id": 26, "guid": "1406fa4c-a0b7-403f-b1e2-af85b78cf2c1", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Ashley Carroll", "company": "Systheon", "phone": "872-480-3718", "email": "ashley@systheon.com" }, { "id": 27, "guid": "48532bf7-a9d5-4559-b7b4-6c857b807dcd", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 21, "name": "Katelyn Higgins", "company": "Allnet", "phone": "809-409-2096", "email": "katelyn@allnet.com" }, { "id": 28, "guid": "bf2256d9-e1c3-44f0-8458-f7759aafc571", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 24, "name": "Mya Mercer", "company": "Xeicon", "phone": "841-421-3710", "email": "mya@xeicon.com" }, { "id": 29, "guid": "b755923a-f7d8-4cbf-82d4-eef76de5e674", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 40, "name": "Gianna Galbraith", "company": "Anaframe", "phone": "813-420-2072", "email": "gianna@anaframe.com" }, { "id": 30, "guid": "5a96819e-ce98-45b7-8d54-28c7dd90117c", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 23, "name": "Gabrielle Molligan", "company": "US Omnigraphik", "phone": "894-554-2996", "email": "gabrielle@us omnigraphik.com" }, { "id": 31, "guid": "b55a1280-f555-44b6-8f1c-b2c00e1f60f2", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 39, "name": "Natalie Wainwright", "company": "Navivacs", "phone": "814-566-2925", "email": "natalie@navivacs.com" }, { "id": 32, "guid": "e935551e-b106-4960-b69a-0422890e6880", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 30, "name": "Autumn Molligan", "company": "Proline", "phone": "833-411-2666", "email": "autumn@proline.com" }, { "id": 33, "guid": "063e653b-2335-4d07-bda4-75173eaa08da", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Ashley Miller", "company": "Pericenta", "phone": "851-547-3159", "email": "ashley@pericenta.com" }, { "id": 34, "guid": "cf3dfe24-320b-4682-977d-5fd867bd5cb1", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 39, "name": "Brooklyn Webster", "company": "Compuamerica", "phone": "827-486-2808", "email": "brooklyn@compuamerica.com" }, { "id": 35, "guid": "84f17bd0-b971-4be0-8f3f-28b73e53d4a5", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Hailey Gibbs", "company": "Videobanc", "phone": "811-504-3512", "email": "hailey@videobanc.com" }, { "id": 36, "guid": "0b2ce302-5cb1-479a-b1a3-8f492cb65283", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 34, "name": "Samantha Morrison", "company": "Teknoplexon", "phone": "887-463-2120", "email": "samantha@teknoplexon.com" }, { "id": 37, "guid": "f4f15e54-c16a-4e2f-b1cb-6505ae98ee37", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Taylor Oswald", "company": "Xeicon", "phone": "819-459-3112", "email": "taylor@xeicon.com" }, { "id": 38, "guid": "fa104e34-97f7-4c34-8627-df4e07253302", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 28, "name": "Camila Waller", "company": "Teratopia", "phone": "837-594-2012", "email": "camila@teratopia.com" }, { "id": 39, "guid": "6d478567-68ca-4c47-97dc-954bc8319b2d", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 24, "name": "Zoey Ford", "company": "Unologic", "phone": "874-440-2700", "email": "zoey@unologic.com" }, { "id": 40, "guid": "f6ac734b-e475-487d-b3b5-37b6639c376b", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 24, "name": "Abigail Freeman", "company": "Syssoft", "phone": "898-459-3002", "email": "abigail@syssoft.com" }, { "id": 41, "guid": "0203f330-8f2c-41a0-a99b-229bbc9b55dc", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 36, "name": "Zoey Milton", "company": "Generola", "phone": "816-447-3124", "email": "zoey@generola.com" }, { "id": 42, "guid": "e88d7ffd-4625-4b3e-b829-e2f0a7d58680", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 40, "name": "Payton Thornton", "company": "Fibroserve", "phone": "866-513-2976", "email": "payton@fibroserve.com" }, { "id": 43, "guid": "03fa6c0e-9a18-46ed-8313-8ce1de3d4a9a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 36, "name": "Alyssa Ogden", "company": "Skydata", "phone": "844-408-3290", "email": "alyssa@skydata.com" }, { "id": 44, "guid": "0e7cfd86-184f-44ef-8c2c-808bb44a7c4d", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Alexis Oldman", "company": "Conrama", "phone": "859-507-3860", "email": "alexis@conrama.com" }, { "id": 45, "guid": "d8e7b890-a35f-4fc4-ad77-8b56e5c10de8", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Audrey Turner", "company": "Openserve", "phone": "880-581-2353", "email": "audrey@openserve.com" }, { "id": 46, "guid": "a6e83742-0a04-4993-8030-230514837caa", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Maya Miers", "company": "OpKeycomm", "phone": "803-460-3501", "email": "maya@opkeycomm.com" }, { "id": 47, "guid": "332aa9d3-eb42-4343-b079-46628cb81696", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Chloe Wayne", "company": "Proline", "phone": "890-573-2886", "email": "chloe@proline.com" }, { "id": 48, "guid": "67385697-bcb3-40f0-821a-f1d75dd62503", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Madison Brooks", "company": "eSteganoergy", "phone": "880-451-2793", "email": "madison@esteganoergy.com" }, { "id": 49, "guid": "8af583f6-7929-40eb-a52c-010f14e25d0c", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Lillian Galbraith", "company": "Netsystems", "phone": "875-528-3158", "email": "lillian@netsystems.com" }, { "id": 50, "guid": "c7fc495c-dedd-4c0a-9570-f14193a53886", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 21, "name": "Addison Daniels", "company": "Compuamerica", "phone": "826-585-2965", "email": "addison@compuamerica.com" }, { "id": 51, "guid": "03781014-082e-42a3-8a1d-af957050536c", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 23, "name": "Audrey Sheldon", "company": "US Infratouch", "phone": "812-588-2969", "email": "audrey@us infratouch.com" }, { "id": 52, "guid": "ff438497-453c-412a-980f-04836628915a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Valeria Hardman", "company": "OpKeycomm", "phone": "824-452-3622", "email": "valeria@opkeycomm.com" }, { "id": 53, "guid": "b9922441-470f-4e7c-817e-d3827b7794bb", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 31, "name": "Kaylee Michaelson", "company": "Rapigrafix", "phone": "808-596-2516", "email": "kaylee@rapigrafix.com" }, { "id": 54, "guid": "955e4fe2-e595-459a-acdc-3ed19f5c69b2", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Bailey Carrington", "company": "Fibrotopia", "phone": "870-472-2979", "email": "bailey@fibrotopia.com" }, { "id": 55, "guid": "fa1a2554-409e-4ea3-a661-9629faa895db", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 40, "name": "Bella Hawkins", "company": "Netsystems", "phone": "822-481-3541", "email": "bella@netsystems.com" }, { "id": 56, "guid": "54d8f80f-ce10-423f-b941-e6587bbc7e4f", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Kylie Sheldon", "company": "Quintegrity", "phone": "891-555-2893", "email": "kylie@quintegrity.com" }, { "id": 57, "guid": "a4d7811e-7030-4baa-bfa2-d6c420c25116", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Gabriella Croftoon", "company": "eEyetanic", "phone": "862-484-3428", "email": "gabriella@eeyetanic.com" }, { "id": 58, "guid": "f33d03ff-0737-4e24-a4ed-a1b6a073abe1", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 30, "name": "Chloe Ward", "company": "Jamrola", "phone": "800-450-2433", "email": "chloe@jamrola.com" }, { "id": 59, "guid": "9861e563-1613-4fef-b117-36fe0afd4c37", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 23, "name": "Khloe Hancock", "company": "Openserve", "phone": "893-592-3698", "email": "khloe@openserve.com" }, { "id": 60, "guid": "c6332bab-7d46-4dfd-9850-5824d8d7640b", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 32, "name": "Andrea Milton", "company": "Proline", "phone": "836-414-2328", "email": "andrea@proline.com" }, { "id": 61, "guid": "22bd60a1-0f48-4909-8c83-f55f291607db", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 39, "name": "Zoey Miln", "company": "Infraique", "phone": "845-440-2597", "email": "zoey@infraique.com" }, { "id": 62, "guid": "b6d62cfd-df30-4530-9f4c-870694700e4e", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 39, "name": "Jocelyn Day", "company": "Videobanc", "phone": "843-527-2382", "email": "jocelyn@videobanc.com" }, { "id": 63, "guid": "14beb613-b8ec-4953-a46b-b373234149c8", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Nevaeh Gustman", "company": "Pacwest", "phone": "895-484-2126", "email": "nevaeh@pacwest.com" }, { "id": 64, "guid": "bc1cd9cc-ae58-4b48-9a6c-3f441a254a27", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 35, "name": "Avery Hailey", "company": "Truegate", "phone": "840-560-2201", "email": "avery@truegate.com" }, { "id": 65, "guid": "60905bde-f447-4eb7-a1d9-56027ea6b01c", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 38, "name": "Kaylee Gardner", "company": "Venconix", "phone": "866-566-2532", "email": "kaylee@venconix.com" }, { "id": 66, "guid": "8229f71a-3d4b-477e-b69b-c3d2cc994dcb", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Melanie Chapman", "company": "RoboAerlogix", "phone": "829-483-2385", "email": "melanie@roboaerlogix.com" }, { "id": 67, "guid": "f340a27c-a6bc-4419-887e-eb4974122b01", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 32, "name": "Sydney Mercer", "company": "Anagraph", "phone": "879-549-2467", "email": "sydney@anagraph.com" }, { "id": 68, "guid": "e9a4d060-8af8-40ec-92a0-3b7ba53d4fc0", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Gabriella Hailey", "company": "eSteganoergy", "phone": "818-409-2159", "email": "gabriella@esteganoergy.com" }, { "id": 69, "guid": "2f553263-5440-4d0f-a27d-c0ab4cccb6da", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 30, "name": "Ariana Winter", "company": "OpKeycomm", "phone": "888-560-2724", "email": "ariana@opkeycomm.com" }, { "id": 70, "guid": "28a2bc9c-d7e3-4935-a942-25d8c73ce2da", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 32, "name": "Valeria White", "company": "SysUSA", "phone": "866-461-2778", "email": "valeria@sysusa.com" }, { "id": 71, "guid": "edf2bd2a-a1dd-4110-bced-ca898aabf8f1", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Lily Gustman", "company": "Unologic", "phone": "875-541-3769", "email": "lily@unologic.com" }, { "id": 72, "guid": "b468f12e-4b4f-410c-98ee-e08bbc45993a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 25, "name": "Jasmine Daniels", "company": "Anagraph", "phone": "828-536-3011", "email": "jasmine@anagraph.com" }, { "id": 73, "guid": "bcc8ecb6-3b57-4abb-8193-d6de5f9b6c84", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 28, "name": "Autumn Carey", "company": "Sontopia", "phone": "898-514-2249", "email": "autumn@sontopia.com" }, { "id": 74, "guid": "d115e8b7-7082-481a-981d-3d5c8b2cb638", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 32, "name": "Genesis Chesterton", "company": "Polytheon", "phone": "831-552-2814", "email": "genesis@polytheon.com" }, { "id": 75, "guid": "8dbcea88-84bf-4154-b95d-0bf5181210ca", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 37, "name": "Maya Brooks", "company": "Sontopia", "phone": "892-446-2969", "email": "maya@sontopia.com" }, { "id": 76, "guid": "322e3297-e665-4c10-b0a2-2d5f256d1b48", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 38, "name": "Madelyn Cook", "company": "Unconix", "phone": "842-600-2909", "email": "madelyn@unconix.com" }, { "id": 77, "guid": "8a2cc0a6-a316-4600-b673-1f9275e21432", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Brianna Campbell", "company": "Enlogia", "phone": "877-405-2653", "email": "brianna@enlogia.com" }, { "id": 78, "guid": "259ec896-0ae6-4707-991c-b9ee0c2ac42a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Eva Hailey", "company": "Cryptotegrity", "phone": "862-492-3121", "email": "eva@cryptotegrity.com" }, { "id": 79, "guid": "80948ec6-f7b2-4436-9af5-6ea04fbb5716", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 35, "name": "Angelina Wayne", "company": "Skydata", "phone": "843-466-2319", "email": "angelina@skydata.com" }, { "id": 80, "guid": "df82f61e-ec34-4527-89d4-2666b6cf40d1", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 30, "name": "Molly Adamson", "company": "Fibroserve", "phone": "874-566-2516", "email": "molly@fibroserve.com" }, { "id": 81, "guid": "75351ef9-3ba6-4779-bde3-8927a566b7b8", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 24, "name": "Eva Gustman", "company": "Enlogia", "phone": "823-579-3886", "email": "eva@enlogia.com" }, { "id": 82, "guid": "a23bf0bd-7353-4f88-b041-a6a71c2ea20c", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Madelyn Morrison", "company": "Anaframe", "phone": "897-497-2540", "email": "madelyn@anaframe.com" }, { "id": 83, "guid": "4652d92d-67b6-4e7f-aed4-a210d40238ac", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Ava Smith", "company": "Allnet", "phone": "882-554-2473", "email": "ava@allnet.com" }, { "id": 84, "guid": "76f782a8-9d92-4cc4-9e9c-c67281516a5e", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 40, "name": "Jessica Carey", "company": "Jamrola", "phone": "886-577-3461", "email": "jessica@jamrola.com" }, { "id": 85, "guid": "cdbbf9fe-0c97-4944-a9d4-c47df2528f0a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Alyssa Oliver", "company": "Westgate", "phone": "806-458-2960", "email": "alyssa@westgate.com" }, { "id": 86, "guid": "2e8b9cb6-b741-4416-9023-9521d98ede2e", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Jessica Winter", "company": "Conotomics", "phone": "813-514-3987", "email": "jessica@conotomics.com" }, { "id": 87, "guid": "9078f6f7-7662-4e20-9044-682ac87496c8", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 23, "name": "Molly Fisher", "company": "Conotomics", "phone": "845-523-2623", "email": "molly@conotomics.com" }, { "id": 88, "guid": "5e5bf44a-f376-4374-831e-e3d7bd431d0e", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 38, "name": "Payton Hancock", "company": "Robotemplate", "phone": "829-459-2458", "email": "payton@robotemplate.com" }, { "id": 89, "guid": "34292e46-7da6-45c4-ae35-02584a76e38e", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 31, "name": "Jasmine Day", "company": "Steganoconiche", "phone": "802-473-3320", "email": "jasmine@steganoconiche.com" }, { "id": 90, "guid": "2cd013c4-cc30-4a29-99fd-4ca87cae443a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 29, "name": "Avery Miers", "company": "Keytheon", "phone": "833-468-3209", "email": "avery@keytheon.com" }, { "id": 91, "guid": "e4cdeaa3-0a84-4df3-b414-ef274298b069", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Ella Brown", "company": "Jamconik", "phone": "898-520-3724", "email": "ella@jamconik.com" }, { "id": 92, "guid": "a4d3e9e2-8a49-43f3-9f41-2c212110111f", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Evelyn Nathan", "company": "iEnland", "phone": "881-405-2960", "email": "evelyn@ienland.com" }, { "id": 93, "guid": "1e4e9d0f-f57d-454a-b4f7-d23ba8722288", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 22, "name": "Leah Milton", "company": "iSkyvaco", "phone": "881-436-3566", "email": "leah@iskyvaco.com" }, { "id": 94, "guid": "9eff5d1a-1413-4a78-98ed-985dbf6f4516", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 35, "name": "Riley Waller", "company": "Enlogia", "phone": "825-560-3105", "email": "riley@enlogia.com" }, { "id": 95, "guid": "03c259af-fae6-403d-8c8c-6564cd434990", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 26, "name": "Madeline Nash", "company": "Aprama", "phone": "893-405-3053", "email": "madeline@aprama.com" }, { "id": 96, "guid": "bcb29d86-e92a-4a41-8cb9-c9286a4a8f52", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 33, "name": "Mya Hodges", "company": "Genland", "phone": "837-445-3835", "email": "mya@genland.com" }, { "id": 97, "guid": "7b9b60b7-cab5-4cfc-9b89-5f6979c2beaa", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 20, "name": "Zoe Owen", "company": "Qualserve", "phone": "851-548-3270", "email": "zoe@qualserve.com" }, { "id": 98, "guid": "581c6600-ff61-4d37-9151-9fce171af488", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 21, "name": "Serenity Chapman", "company": "Transtouch", "phone": "823-557-3299", "email": "serenity@transtouch.com" }, { "id": 99, "guid": "008e837a-503f-43a0-8b10-c3f87a65d21a", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 23, "name": "Mackenzie Fisher", "company": "Openserve", "phone": "831-588-3294", "email": "mackenzie@openserve.com" }, { "id": 100, "guid": "55f9d460-428f-422b-baa5-a78340b087e0", "picture": "http://placehold.it/32x32",//Voluptate commodo quis enim cupidatat ea ea nisi. "age": 38, "name": "Lillian Fisher", "company": "Gigaura", "phone": "805-509-3468", "email": "lillian@gigaura.com" } ] } strip-json-comments-3.1.1/test.js000066400000000000000000000061161370262031100167630ustar00rootroot00000000000000import test from 'ava'; import stripJsonComments from '.'; test('replace comments with whitespace', t => { t.is(stripJsonComments('//comment\n{"a":"b"}'), ' \n{"a":"b"}'); t.is(stripJsonComments('/*//comment*/{"a":"b"}'), ' {"a":"b"}'); t.is(stripJsonComments('{"a":"b"//comment\n}'), '{"a":"b" \n}'); t.is(stripJsonComments('{"a":"b"/*comment*/}'), '{"a":"b" }'); t.is(stripJsonComments('{"a"/*\n\n\ncomment\r\n*/:"b"}'), '{"a" \n\n\n \r\n :"b"}'); t.is(stripJsonComments('/*!\n * comment\n */\n{"a":"b"}'), ' \n \n \n{"a":"b"}'); t.is(stripJsonComments('{/*comment*/"a":"b"}'), '{ "a":"b"}'); }); test('remove comments', t => { const options = {whitespace: false}; t.is(stripJsonComments('//comment\n{"a":"b"}', options), '\n{"a":"b"}'); t.is(stripJsonComments('/*//comment*/{"a":"b"}', options), '{"a":"b"}'); t.is(stripJsonComments('{"a":"b"//comment\n}', options), '{"a":"b"\n}'); t.is(stripJsonComments('{"a":"b"/*comment*/}', options), '{"a":"b"}'); t.is(stripJsonComments('{"a"/*\n\n\ncomment\r\n*/:"b"}', options), '{"a":"b"}'); t.is(stripJsonComments('/*!\n * comment\n */\n{"a":"b"}', options), '\n{"a":"b"}'); t.is(stripJsonComments('{/*comment*/"a":"b"}', options), '{"a":"b"}'); }); test('doesn\'t strip comments inside strings', t => { t.is(stripJsonComments('{"a":"b//c"}'), '{"a":"b//c"}'); t.is(stripJsonComments('{"a":"b/*c*/"}'), '{"a":"b/*c*/"}'); t.is(stripJsonComments('{"/*a":"b"}'), '{"/*a":"b"}'); t.is(stripJsonComments('{"\\"/*a":"b"}'), '{"\\"/*a":"b"}'); }); test('consider escaped slashes when checking for escaped string quote', t => { t.is(stripJsonComments('{"\\\\":"https://foobar.com"}'), '{"\\\\":"https://foobar.com"}'); t.is(stripJsonComments('{"foo\\"":"https://foobar.com"}'), '{"foo\\"":"https://foobar.com"}'); }); test('line endings - no comments', t => { t.is(stripJsonComments('{"a":"b"\n}'), '{"a":"b"\n}'); t.is(stripJsonComments('{"a":"b"\r\n}'), '{"a":"b"\r\n}'); }); test('line endings - single line comment', t => { t.is(stripJsonComments('{"a":"b"//c\n}'), '{"a":"b" \n}'); t.is(stripJsonComments('{"a":"b"//c\r\n}'), '{"a":"b" \r\n}'); }); test('line endings - single line block comment', t => { t.is(stripJsonComments('{"a":"b"/*c*/\n}'), '{"a":"b" \n}'); t.is(stripJsonComments('{"a":"b"/*c*/\r\n}'), '{"a":"b" \r\n}'); }); test('line endings - multi line block comment', t => { t.is(stripJsonComments('{"a":"b",/*c\nc2*/"x":"y"\n}'), '{"a":"b", \n "x":"y"\n}'); t.is(stripJsonComments('{"a":"b",/*c\r\nc2*/"x":"y"\r\n}'), '{"a":"b", \r\n "x":"y"\r\n}'); }); test('line endings - works at EOF', t => { const options = {whitespace: false}; t.is(stripJsonComments('{\r\n\t"a":"b"\r\n} //EOF'), '{\r\n\t"a":"b"\r\n} '); t.is(stripJsonComments('{\r\n\t"a":"b"\r\n} //EOF', options), '{\r\n\t"a":"b"\r\n} '); }); test('handles weird escaping', t => { t.is(stripJsonComments(String.raw`{"x":"x \"sed -e \\\"s/^.\\\\{46\\\\}T//\\\" -e \\\"s/#033/\\\\x1b/g\\\"\""}`), String.raw`{"x":"x \"sed -e \\\"s/^.\\\\{46\\\\}T//\\\" -e \\\"s/#033/\\\\x1b/g\\\"\""}`); });