From 8d2322e780c050906892b0bcec1157f5194811dd Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Wed, 21 Feb 2024 10:59:20 +0000
Subject: [PATCH 1/8] Add encoder
---
encoder.go | 272 ++++++++++++++++++++++++++++++++++++++++++++++++
encoder_test.go | 235 +++++++++++++++++++++++++++++++++++++++++
2 files changed, 507 insertions(+)
create mode 100644 encoder.go
create mode 100644 encoder_test.go
diff --git a/encoder.go b/encoder.go
new file mode 100644
index 0000000..36b80d3
--- /dev/null
+++ b/encoder.go
@@ -0,0 +1,272 @@
+/*
+This is free and unencumbered software released into the public domain. For more
+information, see or the accompanying UNLICENSE file.
+*/
+
+package gedcom
+
+import (
+ "bufio"
+ "fmt"
+ "io"
+ "strings"
+)
+
+// An Encoder encodes and writes GEDCOM objects to an input stream.
+type Encoder struct {
+ w *bufio.Writer
+}
+
+// NewEncoder returns a new encoder that writes to w.
+func NewEncoder(w io.Writer) *Encoder {
+ bw := bufio.NewWriter(w)
+ return &Encoder{
+ w: bw,
+ }
+}
+
+func (e *Encoder) Encode(g *Gedcom) error {
+ if err := e.header(g.Header); err != nil {
+ return fmt.Errorf("header: %w", err)
+ }
+
+ return e.flush()
+}
+
+func (e *Encoder) flush() error {
+ return e.w.Flush()
+}
+
+func (e *Encoder) tagFull(level int, tag string, xref string, value string) error {
+ if _, err := e.w.WriteString(fmt.Sprintf("%d %s", level, tag)); err != nil {
+ return err
+ }
+
+ if xref != "" {
+ if _, err := e.w.WriteString("@" + xref + "@"); err != nil {
+ return err
+ }
+ }
+
+ if value != "" {
+ if _, err := e.w.WriteString(" " + value); err != nil {
+ return err
+ }
+ }
+
+ if _, err := e.w.WriteString("\n"); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (e *Encoder) tag(level int, tag string, value string) error {
+ return e.tagFull(level, tag, "", value)
+}
+
+func (e *Encoder) tagIfValue(level int, tag string, value string) error {
+ if value == "" {
+ return nil
+ }
+ return e.tagFull(level, tag, "", value)
+}
+
+func (e *Encoder) xref(level int, tag string, xref string) error {
+ if _, err := e.w.WriteString(fmt.Sprintf("%d %s @%s@", level, tag, xref)); err != nil {
+ return err
+ }
+
+ if _, err := e.w.WriteString("\n"); err != nil {
+ return err
+ }
+ return nil
+}
+
+func (e *Encoder) text(level int, tag string, value string) error {
+ conts := strings.Split(value, "\n")
+ if err := e.tag(level, tag, conts[0]); err != nil {
+ return err
+ }
+
+ for i := 1; i < len(conts); i++ {
+ cont := conts[i]
+ if len(cont) <= 246 {
+ if err := e.tag(level+1, "CONT", cont); err != nil {
+ return err
+ }
+ continue
+ }
+
+ if err := e.tag(level+1, "CONT", cont[:246]); err != nil {
+ return err
+ }
+ for len(cont) > 246 {
+ cont = cont[246:]
+ if err := e.tag(level+1, "CONC", cont[:246]); err != nil {
+ return err
+ }
+ }
+
+ }
+
+ return nil
+}
+
+func (e *Encoder) textIfValue(level int, tag string, value string) error {
+ if value == "" {
+ return nil
+ }
+ return e.text(level, tag, value)
+}
+
+func (e *Encoder) header(h *Header) error {
+ if h == nil {
+ return nil
+ }
+ e.tag(0, "HEAD", "")
+ e.tagIfValue(1, "CHAR", h.CharacterSet)
+ e.tagIfValue(2, "VERS", h.CharacterSetVersion)
+ e.sourceSystem(0, h.SourceSystem)
+ e.tagIfValue(1, "DEST", h.Destination)
+ e.tagIfValue(1, "DATE", h.Date)
+ e.tagIfValue(2, "TIME", h.Time)
+
+ if h.Submitter != nil {
+ e.xref(1, "SUBM", h.Submitter.Xref)
+ }
+
+ if h.Submission != nil {
+ e.xref(1, "SUBN", h.Submission.Xref)
+ }
+ e.tagIfValue(1, "FILE", h.Filename)
+ e.tagIfValue(1, "COPR", h.Copyright)
+
+ if h.Version != "" || h.Form != "" {
+ e.tag(1, "GEDC", "")
+ if h.Version != "" {
+ e.tag(2, "VERS", h.Version)
+ }
+ if h.Form != "" {
+ e.tag(2, "FORM", h.Form)
+ }
+ }
+ e.tagIfValue(1, "LANG", h.Language)
+ e.textIfValue(1, "NOTE", h.Note)
+ e.userDefinedList(1, h.UserDefined)
+
+ return nil
+}
+
+func (e *Encoder) sourceSystem(level int, s SystemRecord) error {
+ e.tag(level+1, "SOUR", s.Xref)
+ e.tagIfValue(level+2, "VERS", s.Version)
+ e.tagIfValue(level+2, "NAME", s.ProductName)
+ e.tagIfValue(level+2, "CORP", s.BusinessName)
+
+ e.address(level+3, s.Address)
+
+ e.tagIfValue(level+2, "DATA", s.SourceName)
+ e.tagIfValue(level+3, "DATE", s.SourceDate)
+ e.tagIfValue(level+3, "COPR", s.SourceCopyright)
+ e.userDefinedList(1, s.UserDefined)
+
+ return nil
+}
+
+func (e *Encoder) userDefinedList(level int, uds []UserDefinedTag) error {
+ for _, ud := range uds {
+ if err := e.userDefined(level, ud); err != nil {
+ return fmt.Errorf("user defined tag list: %w", err)
+ }
+ }
+ return nil
+}
+
+func (e *Encoder) userDefined(level int, ud UserDefinedTag) error {
+ if err := e.tagFull(level, ud.Tag, ud.Xref, ud.Value); err != nil {
+ return fmt.Errorf("address tag: %w", err)
+ }
+
+ return e.userDefinedList(level+1, ud.UserDefined)
+}
+
+func (e *Encoder) address(level int, ar AddressRecord) error {
+ if err := e.addressDetailList(level, ar.Address); err != nil {
+ return fmt.Errorf("user defined tag: %w", err)
+ }
+
+ for _, v := range ar.Phone {
+ if err := e.textIfValue(level, "PHON", v); err != nil {
+ return fmt.Errorf("phone number: %w", err)
+ }
+ }
+
+ for _, v := range ar.Email {
+ if err := e.textIfValue(level, "EMAIL", v); err != nil {
+ return fmt.Errorf("email: %w", err)
+ }
+ }
+
+ for _, v := range ar.Fax {
+ if err := e.textIfValue(level, "FAX", v); err != nil {
+ return fmt.Errorf("fax: %w", err)
+ }
+ }
+
+ for _, v := range ar.WWW {
+ if err := e.textIfValue(level, "WWW", v); err != nil {
+ return fmt.Errorf("www: %w", err)
+ }
+ }
+
+ return nil
+}
+
+func (e *Encoder) addressDetailList(level int, ads []*AddressDetail) error {
+ for _, ad := range ads {
+ if err := e.addressDetail(level, ad); err != nil {
+ return fmt.Errorf("address detail list: %w", err)
+ }
+ }
+
+ return nil
+}
+
+func (e *Encoder) addressDetail(level int, ar *AddressDetail) error {
+ if ar == nil {
+ return nil
+ }
+ if err := e.text(level, "ADDR", ar.Full); err != nil {
+ return fmt.Errorf("address detail: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "ADR1", ar.Line1); err != nil {
+ return fmt.Errorf("address line 1: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "ADR2", ar.Line2); err != nil {
+ return fmt.Errorf("address line 2: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "ADR3", ar.Line3); err != nil {
+ return fmt.Errorf("address line 3: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "CITY", ar.City); err != nil {
+ return fmt.Errorf("city: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "STAE", ar.State); err != nil {
+ return fmt.Errorf("address state: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "POST", ar.PostalCode); err != nil {
+ return fmt.Errorf("postal code: %w", err)
+ }
+
+ if err := e.textIfValue(level+1, "CTRY", ar.Country); err != nil {
+ return fmt.Errorf("county: %w", err)
+ }
+
+ return nil
+}
diff --git a/encoder_test.go b/encoder_test.go
new file mode 100644
index 0000000..b189ae5
--- /dev/null
+++ b/encoder_test.go
@@ -0,0 +1,235 @@
+package gedcom
+
+import (
+ "bytes"
+ "strings"
+ "testing"
+
+ "github.com/google/go-cmp/cmp"
+)
+
+func TestEncodeHeader(t *testing.T) {
+ testCases := []struct {
+ name string
+ header *Header
+ want []string
+ }{
+ {
+ name: "allged",
+ header: &Header{
+ SourceSystem: SystemRecord{
+ Xref: "APPROVED_SOURCE_NAME",
+ Version: "Version number of source-program",
+ ProductName: "Name of source-program",
+ BusinessName: "Corporation name",
+ Address: AddressRecord{
+ Address: []*AddressDetail{
+ {
+ Full: "Corporation address line 1\nCorporation address line 2\nCorporation address line 3\nCorporation address line 4",
+ Line1: "Corporation address line 1",
+ Line2: "Corporation address line 2",
+ City: "Corporation address city",
+ State: "Corporation address state",
+ PostalCode: "Corporation address ZIP code",
+ Country: "Corporation address country",
+ },
+ },
+ Phone: []string{
+ "Corporation phone number 1",
+ "Corporation phone number 2",
+ "Corporation phone number 3 (last one!)",
+ },
+ },
+ SourceName: "Name of source data",
+ SourceDate: "1 JAN 1998",
+ SourceCopyright: "Copyright of source data",
+ },
+ Destination: "Destination of transmission",
+ Date: "1 JAN 1998",
+ Time: "13:57:24.80",
+ Submitter: &SubmitterRecord{Xref: "SUBMITTER"},
+ Submission: &SubmissionRecord{Xref: "SUBMISSION"},
+ Filename: "ALLGED.GED",
+ Copyright: "(C) 1997-2000 by H. Eichmann. You can use and distribute this file freely as long as you do not charge for it",
+ Version: "5.5",
+ Form: "LINEAGE-LINKED",
+ CharacterSet: "ASCII",
+ CharacterSetVersion: "Version number of ASCII (whatever it means) ",
+ Language: "language",
+ Note: "A general note about this file:" + "\n" +
+ "It demonstrates most of the data which can be submitted using GEDCOM5.5. It shows the relatives of PERSON1:" + "\n" +
+ "His 2 wifes (PERSON2, PERSON8), his parents (father: PERSON5, mother not given), " + "\n" +
+ "adoptive parents (mother: PERSON6, father not given) and his 3 children (PERSON3, PERSON4 and PERSON7)." + "\n" +
+ "In PERSON1, FAMILY1, SUBMITTER, SUBMISSION and SOURCE1 as many datafields as possible are used." + "\n" +
+ "All other individuals/families contain no data. Note, that many data tags can appear more than once" + "\n" +
+ "(in this transmission this is demonstrated with tags: NAME, OCCU, PLACE and NOTE. Seek the word 'another'." + "\n" +
+ "The data transmitted here do not make sence. Just the HEAD.DATE tag contains the date of the creation" + "\n" +
+ "of this file and will change in future Versions!" + "\n" +
+ "This file is created by H. Eichmann: h.eichmann@@gmx.de. Feel free to copy and use it for any " + "\n" +
+ "non-commercial purpose. For the creation the GEDCOM standard Release 5.5 (2 JAN 1996) has been used." + "\n" +
+ "Copyright: The church of Jesus Christ of latter-day saints, gedcom@@gedcom.org" + "\n" +
+ "Download it (the GEDCOM 5.5 specs) from: ftp.gedcom.com/pub/genealogy/gedcom." + "\n" +
+ "Some Specials: This line is very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very long but not too long (255 caharcters is the limit). " + "\n" +
+ "This @@ (commercial at) character may only appear ONCE!" + "\n" +
+ "Note continued here. The word TEST should not be broken!",
+ UserDefined: []UserDefinedTag{
+ {Tag: "_MYOWNTAG", Value: "This is a non-standard tag. Not recommended but allowed", Level: 1},
+ },
+ },
+
+ want: []string{
+ "0 HEAD",
+ "1 CHAR ASCII",
+ "2 VERS Version number of ASCII (whatever it means) ",
+ "1 SOUR APPROVED_SOURCE_NAME",
+ "2 VERS Version number of source-program",
+ "2 NAME Name of source-program",
+ "2 CORP Corporation name",
+ "3 ADDR Corporation address line 1",
+ "4 CONT Corporation address line 2",
+ "4 CONT Corporation address line 3",
+ "4 CONT Corporation address line 4",
+ "4 ADR1 Corporation address line 1",
+ "4 ADR2 Corporation address line 2",
+ "4 CITY Corporation address city",
+ "4 STAE Corporation address state",
+ "4 POST Corporation address ZIP code",
+ "4 CTRY Corporation address country",
+ "3 PHON Corporation phone number 1",
+ "3 PHON Corporation phone number 2",
+ "3 PHON Corporation phone number 3 (last one!)",
+ "2 DATA Name of source data",
+ "3 DATE 1 JAN 1998",
+ "3 COPR Copyright of source data",
+ "1 DEST Destination of transmission",
+ "1 DATE 1 JAN 1998",
+ "2 TIME 13:57:24.80",
+ "1 SUBM @SUBMITTER@",
+ "1 SUBN @SUBMISSION@",
+ "1 FILE ALLGED.GED",
+ "1 COPR (C) 1997-2000 by H. Eichmann. You can use and distribute this file freely as long as you do not charge for it",
+ "1 GEDC",
+ "2 VERS 5.5",
+ "2 FORM LINEAGE-LINKED",
+ "1 LANG language",
+ "1 NOTE A general note about this file:",
+ "2 CONT It demonstrates most of the data which can be submitted using GEDCOM5.5. It shows the relatives of PERSON1:",
+ "2 CONT His 2 wifes (PERSON2, PERSON8), his parents (father: PERSON5, mother not given), ",
+ "2 CONT adoptive parents (mother: PERSON6, father not given) and his 3 children (PERSON3, PERSON4 and PERSON7).",
+ "2 CONT In PERSON1, FAMILY1, SUBMITTER, SUBMISSION and SOURCE1 as many datafields as possible are used.",
+ "2 CONT All other individuals/families contain no data. Note, that many data tags can appear more than once",
+ "2 CONT (in this transmission this is demonstrated with tags: NAME, OCCU, PLACE and NOTE. Seek the word 'another'.",
+ "2 CONT The data transmitted here do not make sence. Just the HEAD.DATE tag contains the date of the creation",
+ "2 CONT of this file and will change in future Versions!",
+ "2 CONT This file is created by H. Eichmann: h.eichmann@@gmx.de. Feel free to copy and use it for any ",
+ "2 CONT non-commercial purpose. For the creation the GEDCOM standard Release 5.5 (2 JAN 1996) has been used.",
+ "2 CONT Copyright: The church of Jesus Christ of latter-day saints, gedcom@@gedcom.org",
+ "2 CONT Download it (the GEDCOM 5.5 specs) from: ftp.gedcom.com/pub/genealogy/gedcom.",
+ "2 CONT Some Specials: This line is very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very very long but not too long (255 caharcters is the limit). ",
+ "2 CONT This @@ (commercial at) character may only appear ONCE!",
+ "2 CONT Note continued here. The word TEST should not be broken!",
+ "1 _MYOWNTAG This is a non-standard tag. Not recommended but allowed",
+ // "0 @SUBMITTER@ SUBM",
+ // "1 NAME /Submitter-Name/",
+ // "1 ADDR Submitter address line 1",
+ // "2 CONT Submitter address line 2",
+ // "2 CONT Submitter address line 3",
+ // "2 CONT Submitter address line 4",
+ // "2 ADR1 Submitter address line 1",
+ // "2 ADR2 Submitter address line 2",
+ // "2 CITY Submitter address city",
+ // "2 STAE Submitter address state",
+ // "2 POST Submitter address ZIP code",
+ // "2 CTRY Submitter address country",
+ // "1 PHON Submitter phone number 1",
+ // "1 PHON Submitter phone number 2",
+ // "1 PHON Submitter phone number 3 (last one!)",
+ // "1 LANG English",
+ // "1 CHAN ",
+ // "2 DATE 19 JUN 2000",
+ // "3 TIME 12:34:56.789",
+ // "2 NOTE A note",
+ // "3 CONT Note continued here. The word TE",
+ // "3 CONC ST should not be broken!",
+ // "1 _MYOWNTAG This is a non-standard tag. Not recommended but allowed",
+ },
+ },
+ }
+
+ for _, tc := range testCases {
+ tc := tc
+ t.Run(tc.name, func(t *testing.T) {
+ g := &Gedcom{
+ Header: tc.header,
+ }
+
+ buf := new(bytes.Buffer)
+ enc := NewEncoder(buf)
+
+ err := enc.Encode(g)
+ if err != nil {
+ t.Fatalf("unexpected error: %v", err)
+ }
+
+ lines := strings.Split(strings.TrimSpace(buf.String()), "\n")
+ if diff := cmp.Diff(tc.want, lines); diff != "" {
+ t.Errorf("header mismatch (-want +got):\n%s", diff)
+ }
+ })
+ }
+}
+
+func TestEncodeText(t *testing.T) {
+ testCases := []struct {
+ name string
+ text string
+ want []string
+ }{
+ {
+ name: "multiline",
+ text: "line 1\nline 2\nline 3",
+ want: []string{
+ "1 NOTE line 1",
+ "2 CONT line 2",
+ "2 CONT line 3",
+ },
+ },
+ {
+ name: "max length line",
+ text: strings.Repeat("0123456789", 24) + "012345", // 246 characters
+ want: []string{
+ "1 NOTE " + strings.Repeat("0123456789", 24) + "012345",
+ },
+ },
+ {
+ name: "long line",
+ text: strings.Repeat("0123456789", 24) + "0123456789",
+ want: []string{
+ "1 NOTE " + strings.Repeat("0123456789", 24) + "012345",
+ "2 CONC 6789",
+ },
+ },
+ }
+
+ for _, tc := range testCases {
+ tc := tc
+ t.Run(tc.name, func(t *testing.T) {
+ buf := new(bytes.Buffer)
+ enc := NewEncoder(buf)
+
+ err := enc.text(1, "NOTE", tc.text)
+ if err != nil {
+ t.Fatalf("unexpected error: %v", err)
+ }
+ err = enc.flush()
+ if err != nil {
+ t.Fatalf("unexpected error during flush: %v", err)
+ }
+
+ lines := strings.Split(strings.TrimSpace(buf.String()), "\n")
+ if diff := cmp.Diff(tc.want, lines); diff != "" {
+ t.Errorf("header mismatch (-want +got):\n%s", diff)
+ }
+ })
+ }
+}
From b18b3bb506445e9a005866cdcb56980219efc3b7 Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Sun, 28 Jul 2024 16:35:48 +0100
Subject: [PATCH 2/8] Expand encoder
---
decoder.go | 25 +-
decoder_test.go | 6 +-
encoder.go | 822 +-
encoder_test.go | 114 +-
testdata/README.md | 5 +
testdata/alexclark.ged | 19500 +++++++++++++++++++++++++++++++++++++++
testdata/simpsons.ged | 171 +
types.go | 12 +-
8 files changed, 20506 insertions(+), 149 deletions(-)
create mode 100644 testdata/README.md
create mode 100644 testdata/alexclark.ged
create mode 100644 testdata/simpsons.ged
diff --git a/decoder.go b/decoder.go
index 7eeb6c0..041b8b8 100644
--- a/decoder.go
+++ b/decoder.go
@@ -207,7 +207,8 @@ func makeRootParser(d *Decoder, g *Gedcom) parser {
d.pushParser(makeIndividualParser(d, obj, level))
case "SUBM":
// TODO: parse submitters
- g.Submitter = append(g.Submitter, &SubmitterRecord{})
+ obj := d.submitter(xref)
+ g.Submitter = append(g.Submitter, obj)
case "FAM":
obj := d.family(xref)
g.Family = append(g.Family, obj)
@@ -356,7 +357,13 @@ func makeNameParser(d *Decoder, n *NameRecord, minLevel int) parser {
n.Note = append(n.Note, r)
d.pushParser(makeNoteParser(d, r, level))
default:
- d.unhandledTag(level, tag, value, xref)
+ n.UserDefined = append(n.UserDefined, UserDefinedTag{
+ Tag: tag,
+ Value: value,
+ Xref: xref,
+ Level: level,
+ })
+ d.pushParser(makeUserDefinedTagParser(d, &n.UserDefined[len(n.UserDefined)-1], level))
}
return nil
@@ -415,6 +422,7 @@ func makeSourceParser(d *Decoder, s *SourceRecord, minLevel int) parser {
d.pushParser(makeTextParser(d, &s.Title, level))
case "ABBR":
s.FiledBy = value
+ d.pushParser(makeTextParser(d, &s.FiledBy, level))
case "AUTH":
s.Originator = value
d.pushParser(makeTextParser(d, &s.Originator, level))
@@ -541,8 +549,10 @@ func makeCitationParser(d *Decoder, c *CitationRecord, minLevel int) parser {
switch tag {
case "PAGE":
c.Page = value
+ d.pushParser(makeTextParser(d, &c.Page, level))
case "QUAY":
c.Quay = value
+ d.pushParser(makeTextParser(d, &c.Quay, level))
case "NOTE":
r := &NoteRecord{Note: value}
c.Note = append(c.Note, r)
@@ -910,15 +920,8 @@ func makeMediaParser(d *Decoder, m *MediaRecord, minLevel int) parser {
f.Format = value
d.pushParser(makeMediaFileFormatParser(d, f, level))
case "TITL": // version 5.5
- var f *FileRecord
- if len(m.File) == 0 {
- f = &FileRecord{}
- m.File = append(m.File, f)
- } else {
- f = m.File[len(m.File)-1]
- }
- f.Title = value
- d.pushParser(makeTextParser(d, &f.Title, level))
+ m.Title = value
+ d.pushParser(makeTextParser(d, &m.Title, level))
case "RIN":
m.AutomatedRecordId = value
case "REFN":
diff --git a/decoder_test.go b/decoder_test.go
index a640218..e25de01 100644
--- a/decoder_test.go
+++ b/decoder_test.go
@@ -499,7 +499,7 @@ func TestSubmitter(t *testing.T) {
t.Fatalf("unexpected error: %v", err)
}
- submitters := []*SubmitterRecord{{}}
+ submitters := []*SubmitterRecord{{Xref: "SUBMITTER"}}
if diff := cmp.Diff(submitters, g.Submitter); diff != "" {
t.Errorf("submitter mismatch (-want +got):\n%s", diff)
@@ -609,7 +609,6 @@ func TestFamily(t *testing.T) {
{
Name: `\\network\drive\path\file name.bmp`,
Format: "bmp",
- Title: "A bmp picture",
},
},
Note: []*NoteRecord{
@@ -617,6 +616,7 @@ func TestFamily(t *testing.T) {
Note: "A note\nNote continued here. The word TEST should not be broken!",
},
},
+ Title: "A bmp picture",
},
},
UserDefined: []UserDefinedTag{
@@ -704,7 +704,6 @@ func TestSource(t *testing.T) {
{
Name: `\\network\drive\path\file name.bmp`,
Format: "bmp",
- Title: "A bmp picture",
},
},
Note: []*NoteRecord{
@@ -712,6 +711,7 @@ func TestSource(t *testing.T) {
Note: "A note\nNote continued here. The word TEST should not be broken!",
},
},
+ Title: "A bmp picture",
},
},
UserDefined: []UserDefinedTag{
diff --git a/encoder.go b/encoder.go
index 36b80d3..99f40e7 100644
--- a/encoder.go
+++ b/encoder.go
@@ -14,7 +14,8 @@ import (
// An Encoder encodes and writes GEDCOM objects to an input stream.
type Encoder struct {
- w *bufio.Writer
+ w *bufio.Writer
+ err error
}
// NewEncoder returns a new encoder that writes to w.
@@ -26,120 +27,191 @@ func NewEncoder(w io.Writer) *Encoder {
}
func (e *Encoder) Encode(g *Gedcom) error {
- if err := e.header(g.Header); err != nil {
- return fmt.Errorf("header: %w", err)
+ e.header(g.Header)
+
+ for _, r := range g.Individual {
+ e.individual(r)
+ }
+
+ for _, r := range g.Family {
+ e.family(r)
+ }
+
+ for _, r := range g.Media {
+ e.media(0, r)
+ }
+
+ for _, r := range g.Repository {
+ e.repository(r)
}
+ for _, r := range g.Source {
+ e.source(r)
+ }
+
+ for _, r := range g.Submitter {
+ e.submitter(0, r)
+ }
+
+ e.userDefinedList(0, g.UserDefined)
+ e.trailer(g.Trailer)
+
return e.flush()
}
func (e *Encoder) flush() error {
+ if e.err != nil {
+ return e.err
+ }
return e.w.Flush()
}
-func (e *Encoder) tagFull(level int, tag string, xref string, value string) error {
- if _, err := e.w.WriteString(fmt.Sprintf("%d %s", level, tag)); err != nil {
- return err
+func (e *Encoder) tagWithID(level int, tag string, id string) {
+ if e.err != nil {
+ return
+ }
+ if id == "" {
+ e.err = fmt.Errorf("tag %s missing id", tag)
+ return
+ }
+ if _, err := e.w.WriteString(fmt.Sprintf("%d @%s@ %s", level, id, tag)); err != nil {
+ e.err = fmt.Errorf("write tag with id %s @%s@: %w", tag, id, err)
+ return
}
- if xref != "" {
- if _, err := e.w.WriteString("@" + xref + "@"); err != nil {
- return err
- }
+ if _, err := e.w.WriteString("\n"); err != nil {
+ e.err = fmt.Errorf("write tag %s: %w", tag, err)
+ return
+ }
+}
+
+func (e *Encoder) tag(level int, tag string, value string) {
+ if e.err != nil {
+ return
+ }
+
+ if _, err := e.w.WriteString(fmt.Sprintf("%d %s", level, tag)); err != nil {
+ e.err = fmt.Errorf("write tag %s: %w", tag, err)
+ return
}
if value != "" {
if _, err := e.w.WriteString(" " + value); err != nil {
- return err
+ e.err = fmt.Errorf("write tag %s: %w", tag, err)
+ return
}
}
-
if _, err := e.w.WriteString("\n"); err != nil {
- return err
+ e.err = fmt.Errorf("write tag %s: %w", tag, err)
+ return
}
- return nil
-}
-
-func (e *Encoder) tag(level int, tag string, value string) error {
- return e.tagFull(level, tag, "", value)
}
-func (e *Encoder) tagIfValue(level int, tag string, value string) error {
+// maybeTag writes a tag with a level if the value is not empty
+func (e *Encoder) maybeTag(level int, tag string, value string) {
+ if e.err != nil {
+ return
+ }
if value == "" {
- return nil
+ return
}
- return e.tagFull(level, tag, "", value)
+ e.tag(level, tag, value)
}
-func (e *Encoder) xref(level int, tag string, xref string) error {
- if _, err := e.w.WriteString(fmt.Sprintf("%d %s @%s@", level, tag, xref)); err != nil {
- return err
+// tagWithPointer writes a tag with a pointer reference
+func (e *Encoder) tagWithPointer(level int, tag string, xref string) {
+ if e.err != nil {
+ return
}
+ if _, err := e.w.WriteString(fmt.Sprintf("%d %s @%s@\n", level, tag, xref)); err != nil {
+ e.err = fmt.Errorf("write tag with pointer %s @%s@: %w", tag, xref, err)
+ return
+ }
+}
- if _, err := e.w.WriteString("\n"); err != nil {
- return err
+// tagWithOptionalPointer writes a tag with a pointer reference if it is non empty
+func (e *Encoder) tagWithOptionalPointer(level int, tag string, xref string) {
+ if e.err != nil {
+ return
+ }
+ if xref != "" {
+ e.tagWithPointer(level, tag, xref)
+ } else {
+ e.tag(level, tag, "")
}
- return nil
}
-func (e *Encoder) text(level int, tag string, value string) error {
- conts := strings.Split(value, "\n")
- if err := e.tag(level, tag, conts[0]); err != nil {
- return err
+// tagWithText writes a tag with text, handling continuations
+func (e *Encoder) tagWithText(level int, tag string, value string) {
+ if e.err != nil {
+ return
}
+ conts := strings.Split(value, "\n")
+ e.textOneLine(level, tag, conts[0])
+
for i := 1; i < len(conts); i++ {
- cont := conts[i]
- if len(cont) <= 246 {
- if err := e.tag(level+1, "CONT", cont); err != nil {
- return err
- }
- continue
- }
+ e.textOneLine(level+1, "CONT", conts[i])
+ }
+}
- if err := e.tag(level+1, "CONT", cont[:246]); err != nil {
- return err
- }
- for len(cont) > 246 {
- cont = cont[246:]
- if err := e.tag(level+1, "CONC", cont[:246]); err != nil {
- return err
- }
- }
+func (e *Encoder) textOneLine(level int, tag string, value string) {
+ if e.err != nil {
+ return
+ }
+ if len(value) <= 246 {
+ e.tag(level, tag, value)
+ return
}
+ e.tag(level, tag, value[:246])
+
+ for len(value) > 246 {
+ value = value[246:]
+ if len(value) <= 246 {
+ e.tag(level+1, "CONC", value)
+ return
+ }
- return nil
+ e.tag(level+1, "CONC", value[:246])
+ }
}
-func (e *Encoder) textIfValue(level int, tag string, value string) error {
+// maybeTagWithText writes a tag with text only if the text is not empty
+func (e *Encoder) maybeTagWithText(level int, tag string, value string) {
+ if e.err != nil {
+ return
+ }
if value == "" {
- return nil
+ return
}
- return e.text(level, tag, value)
+ e.tagWithText(level, tag, value)
}
-func (e *Encoder) header(h *Header) error {
+func (e *Encoder) header(h *Header) {
+ if e.err != nil {
+ return
+ }
if h == nil {
- return nil
+ return
}
e.tag(0, "HEAD", "")
- e.tagIfValue(1, "CHAR", h.CharacterSet)
- e.tagIfValue(2, "VERS", h.CharacterSetVersion)
+ e.maybeTag(1, "CHAR", h.CharacterSet)
+ e.maybeTag(2, "VERS", h.CharacterSetVersion)
e.sourceSystem(0, h.SourceSystem)
- e.tagIfValue(1, "DEST", h.Destination)
- e.tagIfValue(1, "DATE", h.Date)
- e.tagIfValue(2, "TIME", h.Time)
+ e.maybeTag(1, "DEST", h.Destination)
+ e.maybeTag(1, "DATE", h.Date)
+ e.maybeTag(2, "TIME", h.Time)
if h.Submitter != nil {
- e.xref(1, "SUBM", h.Submitter.Xref)
+ e.tagWithPointer(1, "SUBM", h.Submitter.Xref)
}
if h.Submission != nil {
- e.xref(1, "SUBN", h.Submission.Xref)
+ e.tagWithPointer(1, "SUBN", h.Submission.Xref)
}
- e.tagIfValue(1, "FILE", h.Filename)
- e.tagIfValue(1, "COPR", h.Copyright)
+ e.maybeTag(1, "FILE", h.Filename)
+ e.maybeTag(1, "COPR", h.Copyright)
if h.Version != "" || h.Form != "" {
e.tag(1, "GEDC", "")
@@ -150,123 +222,615 @@ func (e *Encoder) header(h *Header) error {
e.tag(2, "FORM", h.Form)
}
}
- e.tagIfValue(1, "LANG", h.Language)
- e.textIfValue(1, "NOTE", h.Note)
+ e.maybeTag(1, "LANG", h.Language)
+ e.maybeTagWithText(1, "NOTE", h.Note)
e.userDefinedList(1, h.UserDefined)
-
- return nil
}
-func (e *Encoder) sourceSystem(level int, s SystemRecord) error {
+func (e *Encoder) sourceSystem(level int, s SystemRecord) {
+ if e.err != nil {
+ return
+ }
e.tag(level+1, "SOUR", s.Xref)
- e.tagIfValue(level+2, "VERS", s.Version)
- e.tagIfValue(level+2, "NAME", s.ProductName)
- e.tagIfValue(level+2, "CORP", s.BusinessName)
+ e.maybeTag(level+2, "VERS", s.Version)
+ e.maybeTag(level+2, "NAME", s.ProductName)
+ e.maybeTag(level+2, "CORP", s.BusinessName)
- e.address(level+3, s.Address)
+ e.address(level+3, &s.Address)
- e.tagIfValue(level+2, "DATA", s.SourceName)
- e.tagIfValue(level+3, "DATE", s.SourceDate)
- e.tagIfValue(level+3, "COPR", s.SourceCopyright)
+ e.maybeTag(level+2, "DATA", s.SourceName)
+ e.maybeTag(level+3, "DATE", s.SourceDate)
+ e.maybeTag(level+3, "COPR", s.SourceCopyright)
e.userDefinedList(1, s.UserDefined)
-
- return nil
}
-func (e *Encoder) userDefinedList(level int, uds []UserDefinedTag) error {
+func (e *Encoder) userDefinedList(level int, uds []UserDefinedTag) {
+ if e.err != nil {
+ return
+ }
for _, ud := range uds {
- if err := e.userDefined(level, ud); err != nil {
- return fmt.Errorf("user defined tag list: %w", err)
- }
+ e.userDefined(level, ud)
}
- return nil
}
-func (e *Encoder) userDefined(level int, ud UserDefinedTag) error {
- if err := e.tagFull(level, ud.Tag, ud.Xref, ud.Value); err != nil {
- return fmt.Errorf("address tag: %w", err)
+func (e *Encoder) userDefined(level int, r UserDefinedTag) {
+ if e.err != nil {
+ return
+ }
+ if r.Xref != "" {
+ e.tagWithPointer(level, r.Tag, r.Xref)
+ } else {
+ e.tag(level, r.Tag, r.Value)
}
+ e.userDefinedList(level+1, r.UserDefined)
+}
- return e.userDefinedList(level+1, ud.UserDefined)
+func (e *Encoder) address(level int, r *AddressRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ e.addressDetailList(level, r.Address)
+
+ for _, v := range r.Phone {
+ e.maybeTagWithText(level, "PHON", v)
+ }
+
+ for _, v := range r.Email {
+ e.maybeTagWithText(level, "EMAIL", v)
+ }
+
+ for _, v := range r.Fax {
+ e.maybeTagWithText(level, "FAX", v)
+ }
+
+ for _, v := range r.WWW {
+ e.maybeTagWithText(level, "WWW", v)
+ }
}
-func (e *Encoder) address(level int, ar AddressRecord) error {
- if err := e.addressDetailList(level, ar.Address); err != nil {
- return fmt.Errorf("user defined tag: %w", err)
+func (e *Encoder) addressDetailList(level int, rs []*AddressDetail) {
+ if e.err != nil {
+ return
+ }
+ for _, ad := range rs {
+ e.addressDetail(level, ad)
}
+}
- for _, v := range ar.Phone {
- if err := e.textIfValue(level, "PHON", v); err != nil {
- return fmt.Errorf("phone number: %w", err)
- }
+func (e *Encoder) addressDetail(level int, r *AddressDetail) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ e.tagWithText(level, "ADDR", r.Full)
+ e.maybeTagWithText(level+1, "ADR1", r.Line1)
+ e.maybeTagWithText(level+1, "ADR2", r.Line2)
+ e.maybeTagWithText(level+1, "ADR3", r.Line3)
+ e.maybeTagWithText(level+1, "CITY", r.City)
+ e.maybeTagWithText(level+1, "STAE", r.State)
+ e.maybeTagWithText(level+1, "POST", r.PostalCode)
+ e.maybeTagWithText(level+1, "CTRY", r.Country)
+}
+
+func (e *Encoder) place(level int, r *PlaceRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ if r.Name == "" && len(r.Phonetic) == 0 && len(r.Romanized) == 0 && r.Latitude == "" && r.Longitude == "" && len(r.Note) == 0 && len(r.Citation) == 0 {
+ return
}
- for _, v := range ar.Email {
- if err := e.textIfValue(level, "EMAIL", v); err != nil {
- return fmt.Errorf("email: %w", err)
- }
+ e.tag(level, "PLAC", r.Name)
+ for _, sr := range r.Phonetic {
+ e.tag(level+1, "FONE", sr.Name)
+ e.maybeTag(level+1, "TYPE", sr.Type)
+ }
+
+ for _, sr := range r.Romanized {
+ e.tag(level+1, "ROMN", sr.Name)
+ e.maybeTag(level+2, "TYPE", sr.Type)
}
- for _, v := range ar.Fax {
- if err := e.textIfValue(level, "FAX", v); err != nil {
- return fmt.Errorf("fax: %w", err)
+ if r.Latitude != "" || r.Longitude != "" {
+ e.tag(level+1, "MAP", "")
+ e.maybeTag(level+2, "LATI", r.Latitude)
+ e.maybeTag(level+2, "LONG", r.Longitude)
+
+ }
+
+ e.noteList(level+1, r.Note)
+ e.citationList(level+1, r.Citation)
+}
+
+func (e *Encoder) variantPlaceName(level int, r *VariantPlaceNameRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ e.tag(level, r.Name, r.Type)
+ e.maybeTag(level+1, "TYPE", r.Type)
+}
+
+func (e *Encoder) individual(r *IndividualRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+
+ level := 0
+ e.tagWithID(level, "INDI", r.Xref)
+ for _, v := range r.Name {
+ e.name(level+1, v)
+ }
+ e.maybeTagWithText(level+1, "SEX", r.Sex)
+
+ e.eventList(level+1, r.Event)
+ e.eventList(level+1, r.Attribute)
+
+ for _, sr := range r.Parents {
+ e.familyLink(level+1, "FAMC", sr)
+ }
+ for _, sr := range r.Family {
+ e.familyLink(level+1, "FAMS", sr)
+ }
+
+ if len(r.Submitter) > 0 {
+ // Submitter []*SubmitterRecord
+ e.err = fmt.Errorf("not implemented: Submitter")
+ return
+ }
+ if len(r.Association) > 0 {
+ // TODO: Association
+ // Association []*AssociationRecord
+ e.err = fmt.Errorf("not implemented: Association")
+ return
+ }
+
+ e.maybeTagWithText(level+1, "RFN", r.PermanentRecordFileNumber)
+ e.maybeTagWithText(level+1, "AFN", r.AncestralFileNumber)
+
+ e.userReferenceList(level+1, r.UserReference)
+ e.maybeTagWithText(level+1, "RIN", r.AutomatedRecordId)
+ e.change(level+1, &r.Change)
+ e.noteList(level+1, r.Note)
+ e.citationList(level+1, r.Citation)
+ e.mediaRefList(level+1, r.Media)
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) family(r *FamilyRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+
+ level := 0
+ e.tagWithID(level, "FAM", r.Xref)
+ e.individualRef(level+1, "HUSB", r.Husband)
+ e.individualRef(level+1, "WIFE", r.Wife)
+ for _, sr := range r.Child {
+ e.individualRef(level+1, "CHIL", sr)
+ }
+ e.eventList(level+1, r.Event)
+ e.maybeTag(level+1, "NCHI", r.NumberOfChildren)
+ e.userReferenceList(level+1, r.UserReference)
+ e.maybeTagWithText(level+1, "RIN", r.AutomatedRecordId)
+ e.change(level+1, &r.Change)
+ e.noteList(level+1, r.Note)
+ e.citationList(level+1, r.Citation)
+ e.mediaRefList(level+1, r.Media)
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) mediaList(level int, rs []*MediaRecord) {
+ if e.err != nil {
+ return
+ }
+ for _, r := range rs {
+ e.media(level, r)
+ }
+}
+
+func (e *Encoder) media(level int, r *MediaRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ if level == 0 {
+ e.tagWithID(level, "OBJE", r.Xref)
+ } else {
+ e.tagWithOptionalPointer(level, "OBJE", r.Xref)
+ }
+
+ for _, sr := range r.File {
+ e.file(level+1, sr)
+ }
+ e.userReferenceList(level+1, r.UserReference)
+ e.maybeTagWithText(level+1, "RIN", r.AutomatedRecordId)
+
+ e.change(level+1, &r.Change)
+ e.noteList(level+1, r.Note)
+ e.citationList(level+1, r.Citation)
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) repository(r *RepositoryRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+
+ level := 0
+ e.tagWithID(level, "REPO", r.Xref)
+ e.maybeTag(level+1, "NAME", r.Name)
+ e.address(level+1, &r.Address)
+ e.noteList(level+1, r.Note)
+ e.userReferenceList(level+1, r.UserReference)
+ e.maybeTagWithText(level+1, "RIN", r.AutomatedRecordId)
+ e.change(level+1, &r.Change)
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) source(r *SourceRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+
+ level := 0
+ e.tagWithID(level, "SOUR", r.Xref)
+ e.maybeTagWithText(level+1, "TITL", r.Title)
+ if r.Data != nil {
+ e.tag(level+1, "DATA", "")
+ for _, sr := range r.Data.Event {
+ e.tag(level+2, "EVEN", sr.Kind)
+ e.maybeTag(level+3, "DATE", sr.Date)
+ e.maybeTag(level+3, "PLAC", sr.Place)
}
+
}
- for _, v := range ar.WWW {
- if err := e.textIfValue(level, "WWW", v); err != nil {
- return fmt.Errorf("www: %w", err)
+ e.maybeTagWithText(level+1, "AUTH", r.Originator)
+ e.maybeTagWithText(level+1, "ABBR", r.FiledBy)
+ e.maybeTagWithText(level+1, "PUBL", r.PublicationFacts)
+ e.maybeTagWithText(level+1, "TEXT", r.Text)
+
+ if r.Repository != nil && r.Repository.Repository != nil && r.Repository.Repository.Xref != "" {
+ e.tagWithPointer(level+1, "REPO", r.Repository.Repository.Xref)
+ e.noteList(level+2, r.Repository.Note)
+ for _, sr := range r.Repository.CallNumber {
+ e.tag(level+2, "CALN", sr.CallNumber)
+ e.maybeTag(level+3, "MEDI", sr.MediaType)
}
}
- return nil
+ e.userReferenceList(level+1, r.UserReference)
+ e.maybeTagWithText(level+1, "RIN", r.AutomatedRecordId)
+ e.change(level+1, &r.Change)
+ e.noteList(level+1, r.Note)
+ e.mediaRefList(level+1, r.Media)
+ e.userDefinedList(level+1, r.UserDefined)
}
-func (e *Encoder) addressDetailList(level int, ads []*AddressDetail) error {
- for _, ad := range ads {
- if err := e.addressDetail(level, ad); err != nil {
- return fmt.Errorf("address detail list: %w", err)
- }
+func (e *Encoder) submitter(level int, r *SubmitterRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
}
+ e.tagWithID(level, "SUBM", r.Xref)
+ e.maybeTagWithText(level+1, "NAME", r.Name)
+ e.address(level+1, r.Address)
+ e.mediaRefList(level+1, r.Media)
- return nil
+ for _, l := range r.Language {
+ e.maybeTagWithText(level+1, "LANG", l)
+ }
+ e.maybeTagWithText(level+1, "RFN", r.SubmitterRecordFileID)
+ e.maybeTagWithText(level+1, "RIN", r.AutomatedRecordId)
+ e.noteList(level+1, r.Note)
+ e.change(level+1, r.Change)
+}
+
+func (e *Encoder) trailer(r *Trailer) {
+ if e.err != nil {
+ return
+ }
+ // nothing to do
}
-func (e *Encoder) addressDetail(level int, ar *AddressDetail) error {
- if ar == nil {
- return nil
+func (e *Encoder) name(level int, r *NameRecord) {
+ if e.err != nil {
+ return
}
- if err := e.text(level, "ADDR", ar.Full); err != nil {
- return fmt.Errorf("address detail: %w", err)
+ if r == nil {
+ return
}
+ e.maybeTagWithText(level, "NAME", r.Name)
+ e.maybeTagWithText(level+1, "TYPE", r.Type)
+ e.maybeTagWithText(level+1, "NPFX", r.NamePiecePrefix)
+ e.maybeTagWithText(level+1, "GIVN", r.NamePieceGiven)
+ e.maybeTagWithText(level+1, "NICK", r.NamePieceNick)
+ e.maybeTagWithText(level+1, "SPFX", r.NamePieceSurnamePrefix)
+ e.maybeTagWithText(level+1, "SURN", r.NamePieceSurname)
+ e.maybeTagWithText(level+1, "NSFX", r.NamePieceSuffix)
- if err := e.textIfValue(level+1, "ADR1", ar.Line1); err != nil {
- return fmt.Errorf("address line 1: %w", err)
+ if len(r.Phonetic) > 0 {
+ // TODO: FONE
+ // Phonetic []*VariantNameRecord
+ e.err = fmt.Errorf("not implemented: FONE")
+ return
}
- if err := e.textIfValue(level+1, "ADR2", ar.Line2); err != nil {
- return fmt.Errorf("address line 2: %w", err)
+ if len(r.Romanized) > 0 {
+ // TODO: ROMN
+ // Romanized []*VariantNameRecord
+ e.err = fmt.Errorf("not implemented: ROMN")
+ return
}
- if err := e.textIfValue(level+1, "ADR3", ar.Line3); err != nil {
- return fmt.Errorf("address line 3: %w", err)
+ e.citationList(level+1, r.Citation)
+ e.noteList(level+1, r.Note)
+ e.userDefinedList(level+1, r.UserDefined)
+
+ return
+}
+
+func (e *Encoder) change(level int, r *ChangeRecord) {
+ if e.err != nil {
+ return
}
+ if r == nil {
+ return
+ }
+ e.tagWithText(level, "CHAN", "")
+ e.maybeTagWithText(level+1, "DATE", r.Date)
+ e.maybeTagWithText(level+2, "TIME", r.Time)
+
+ e.noteList(level+1, r.Note)
+}
- if err := e.textIfValue(level+1, "CITY", ar.City); err != nil {
- return fmt.Errorf("city: %w", err)
+func (e *Encoder) noteList(level int, rs []*NoteRecord) {
+ if e.err != nil {
+ return
}
+ for _, sr := range rs {
+ e.note(level+1, sr)
+ }
+}
- if err := e.textIfValue(level+1, "STAE", ar.State); err != nil {
- return fmt.Errorf("address state: %w", err)
+func (e *Encoder) note(level int, r *NoteRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
}
+ e.tagWithText(level, "NOTE", "")
+}
+
+func (e *Encoder) citationList(level int, rs []*CitationRecord) {
+ if e.err != nil {
+ return
+ }
+ for _, sr := range rs {
+ e.citation(level, sr)
+ }
+}
- if err := e.textIfValue(level+1, "POST", ar.PostalCode); err != nil {
- return fmt.Errorf("postal code: %w", err)
+func (e *Encoder) citation(level int, r *CitationRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
}
+ if r.Source == nil {
+ e.err = fmt.Errorf("source missing")
+ return
+ }
+ if r.Source.Xref == "" {
+ e.tag(level, "SOUR", "")
+ } else {
+ e.tagWithPointer(level, "SOUR", r.Source.Xref)
+ }
+ e.maybeTagWithText(level+1, "PAGE", r.Page)
+ e.maybeTagWithText(level+1, "QUAY", r.Quay)
- if err := e.textIfValue(level+1, "CTRY", ar.Country); err != nil {
- return fmt.Errorf("county: %w", err)
+ if r.Data.Date != "" || len(r.Data.Text) != 0 || len(r.Data.UserDefined) != 0 {
+ e.data(level+1, &r.Data)
}
- return nil
+ e.noteList(level+1, r.Note)
+ e.mediaRefList(level+1, r.Media)
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) data(level int, r *DataRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+
+ e.tag(level, "DATA", "")
+ e.maybeTag(level+1, "DATE", r.Date)
+ for _, sr := range r.Text {
+ e.maybeTagWithText(level+1, "TEXT", sr)
+ }
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) familyLink(level int, tag string, r *FamilyLinkRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ if r.Family == nil {
+ e.err = fmt.Errorf("family missing")
+ return
+ }
+ if r.Family.Xref == "" {
+ e.err = fmt.Errorf("family missing xref")
+ return
+ }
+ e.tagWithPointer(level, tag, r.Family.Xref)
+ e.maybeTagWithText(level+1, "PEDI", r.Type)
+ e.noteList(level+1, r.Note)
+}
+
+func (e *Encoder) file(level int, r *FileRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ e.maybeTagWithText(level, "FILE", r.Name)
+ e.maybeTagWithText(level+1, "FORM", r.Format)
+ e.maybeTagWithText(level+2, "TYPE", r.FormatType)
+ e.maybeTagWithText(level+1, "TITL", r.Title)
+ e.userDefinedList(level+1, r.UserDefined)
+}
+
+func (e *Encoder) userReferenceList(level int, rs []*UserReferenceRecord) {
+ if e.err != nil {
+ return
+ }
+ for _, sr := range rs {
+ e.userReference(level+1, sr)
+ }
+}
+
+func (e *Encoder) userReference(level int, r *UserReferenceRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ e.maybeTagWithText(level, "REFN", r.Number)
+ e.maybeTagWithText(level+1, "TYPE", r.Type)
+ return
+}
+
+func (e *Encoder) individualRef(level int, tag string, r *IndividualRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ if r.Xref == "" {
+ e.err = fmt.Errorf("individual missing xref for %s", tag)
+ return
+ }
+ e.tagWithPointer(level, tag, r.Xref)
+}
+
+func (e *Encoder) familyRef(level int, tag string, r *FamilyRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ if r.Xref == "" {
+ e.err = fmt.Errorf("family missing xref")
+ return
+ }
+ e.tagWithPointer(level, tag, r.Xref)
+}
+
+func (e *Encoder) mediaRefList(level int, rs []*MediaRecord) {
+ if e.err != nil {
+ return
+ }
+ for _, r := range rs {
+ e.mediaRef(level, r)
+ }
+}
+
+func (e *Encoder) mediaRef(level int, r *MediaRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ return
+ }
+ if r.Xref != "" {
+ e.tagWithPointer(level, "OBJE", r.Xref)
+ return
+ }
+
+ // inline media
+ e.tag(level, "OBJE", "")
+ for _, sr := range r.File {
+ e.file(level+1, sr)
+ }
+ e.maybeTagWithText(level+1, "TITL", r.Title)
+}
+
+func (e *Encoder) eventList(level int, rs []*EventRecord) {
+ if e.err != nil {
+ return
+ }
+ for _, r := range rs {
+ e.event(level, r)
+ }
+}
+
+func (e *Encoder) event(level int, r *EventRecord) {
+ if e.err != nil {
+ return
+ }
+ if r == nil {
+ e.err = fmt.Errorf("event not specified")
+ return
+ }
+ e.tag(level, r.Tag, r.Value)
+ e.maybeTagWithText(level+1, "TYPE", r.Type)
+ e.maybeTagWithText(level+1, "DATE", r.Date)
+
+ e.address(level+1, &r.Address)
+ e.place(level+1, &r.Place)
+ e.maybeTag(level+1, "AGNC", r.ResponsibleAgency)
+ e.maybeTag(level+1, "RELI", r.ReligiousAffiliation)
+ e.maybeTag(level+1, "CAUS", r.Cause)
+ e.maybeTag(level+1, "RESN", r.RestrictionNotice)
+
+ if r.ChildInFamily != nil {
+ e.familyRef(level+1, "FAMC", r.ChildInFamily)
+ if r.Tag == "ADOP" {
+ e.maybeTag(level+2, "ADOP", r.AdoptedByParent)
+ }
+ }
+ e.noteList(level+1, r.Note)
+ e.citationList(level+1, r.Citation)
+ e.mediaRefList(level+1, r.Media)
+ e.userDefinedList(level+1, r.UserDefined)
}
diff --git a/encoder_test.go b/encoder_test.go
index b189ae5..6091bcb 100644
--- a/encoder_test.go
+++ b/encoder_test.go
@@ -2,6 +2,8 @@ package gedcom
import (
"bytes"
+ "fmt"
+ "os"
"strings"
"testing"
@@ -217,11 +219,8 @@ func TestEncodeText(t *testing.T) {
buf := new(bytes.Buffer)
enc := NewEncoder(buf)
- err := enc.text(1, "NOTE", tc.text)
- if err != nil {
- t.Fatalf("unexpected error: %v", err)
- }
- err = enc.flush()
+ enc.tagWithText(1, "NOTE", tc.text)
+ err := enc.flush()
if err != nil {
t.Fatalf("unexpected error during flush: %v", err)
}
@@ -233,3 +232,108 @@ func TestEncodeText(t *testing.T) {
})
}
}
+
+func TestDecodeEncode(t *testing.T) {
+ data, err := os.ReadFile("testdata/alexclark.ged")
+ if err != nil {
+ t.Fatalf("failed to read testdata/alexclark.ged")
+ }
+
+ d := NewDecoder(bytes.NewReader(data))
+
+ want, err := d.Decode()
+ if err != nil {
+ t.Fatalf("decode gedcom got error %q, wanted no error", err)
+ }
+
+ // Encode the parsed gedcom
+ buf := new(bytes.Buffer)
+ enc := NewEncoder(buf)
+ if err := enc.Encode(want); err != nil {
+ t.Fatalf("encode gedcom got error %q, wanted no error", err)
+ }
+
+ fmt.Println(buf.String())
+
+ // Decode the generated gedcom
+ // d2 := NewDecoder(buf)
+ // got, err := d2.Decode()
+ // if err != nil {
+ // t.Fatalf("decode generated gedcom got error %q, wanted no error", err)
+ // }
+
+ type dinfo struct {
+ name string
+ diff string
+ }
+
+ var diffs []dinfo
+
+ // // spot check some individuals
+ // indIDs := []string{"I8"}
+
+ // windmap := make(map[string]*IndividualRecord)
+ // gindmap := make(map[string]*IndividualRecord)
+ // for _, in := range want.Individual {
+ // windmap[in.Xref] = in
+ // }
+ // for _, in := range got.Individual {
+ // gindmap[in.Xref] = in
+ // }
+
+ // for _, id := range indIDs {
+ // wind, ok := windmap[id]
+ // if !ok {
+ // t.Errorf("id %s not found in wanted individuals", id)
+ // continue
+ // }
+ // gind, ok := gindmap[id]
+ // if !ok {
+ // t.Errorf("id %s not found in got individuals", id)
+ // continue
+ // }
+ // if diff := cmp.Diff(wind, gind); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Individual " + id, diff: diff})
+ // }
+ // }
+
+ // if diff := cmp.Diff(want.Header, got.Header); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Header", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Trailer, got.Trailer); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Trailer", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Family, got.Family); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Family", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Individual, got.Individual); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Individual", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Media, got.Media); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Media", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Repository, got.Repository); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Repository", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Source, got.Source); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Source", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.Submitter, got.Submitter); diff != "" {
+ // diffs = append(diffs, dinfo{name: "Submitter", diff: diff})
+ // }
+ // if diff := cmp.Diff(want.UserDefined, got.UserDefined); diff != "" {
+ // diffs = append(diffs, dinfo{name: "UserDefined", diff: diff})
+ // }
+
+ for _, d := range diffs {
+ t.Logf("%s diff containes %d lines", d.name, len(d.diff))
+ }
+
+ if len(diffs) > 0 {
+ t.Errorf("%d failed components", len(diffs))
+ }
+
+ for _, d := range diffs {
+ t.Errorf("%s mismatch (-want +got):\n%s", d.name, d.diff)
+ }
+}
diff --git a/testdata/README.md b/testdata/README.md
new file mode 100644
index 0000000..2500bbe
--- /dev/null
+++ b/testdata/README.md
@@ -0,0 +1,5 @@
+# Test Data
+
+
+ - alexclark.ged - originally from https://github.com/findmypast/gedcom-samples/
+ - simpsons.ged - originally from https://github.com/findmypast/gedcom-samples/
diff --git a/testdata/alexclark.ged b/testdata/alexclark.ged
new file mode 100644
index 0000000..2d57a8c
--- /dev/null
+++ b/testdata/alexclark.ged
@@ -0,0 +1,19500 @@
+0 HEAD
+1 SOUR FINDMYPAST
+2 NAME Findmypast Family Tree
+2 VERS 2.0
+2 CORP DC Thomson Family History
+3 ADDR The Glebe, 6 Chapel Place, Rivington Street
+4 CITY London
+4 POST EC2A 3DQ
+4 CTRY England
+3 WWW www.findmypast.com
+1 DATE 26 MAR 2021
+2 TIME 17:32:38
+1 FILE Alex Clark - Deceased Only2 - 2021 03 26 16-59.ged
+1 SUBM @SUBM1@
+1 DEST FINDMYPAST
+1 GEDC
+2 VERS 5.5.1
+2 FORM LINEAGE-LINKED
+1 CHAR UTF-8
+1 LANG English
+1 _ROOT @I48@
+0 @SUBM1@ SUBM
+1 NAME Not known
+0 @I1@ INDI
+1 NAME Charlotte /Goreham/
+2 GIVN Charlotte
+2 SURN Goreham
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1783
+1 DEAT
+2 _PRIM Y
+2 DATE 1852
+1 FAMS @F21@
+1 _UID 248DD8C1-D729-4DCF-8978-C7A7317A69F5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I2@ INDI
+1 NAME John /Davidson/
+2 GIVN John
+2 SURN Davidson
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1860
+1 FAMC @F31@
+1 _UID 9A64980F-9B5F-43FC-98E4-20CF279DC7E9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I3@ INDI
+1 NAME Isabella /Davidson/
+2 GIVN Isabella
+2 SURN Davidson
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1857
+1 FAMC @F31@
+1 _UID 07EE568D-417B-44C5-97B2-21416A38A6E7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I4@ INDI
+1 NAME Thomas /Carle/
+2 GIVN Thomas
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1863
+1 FAMS @F29@
+1 FAMC @F30@
+1 _UID C2DB0D7F-9E6C-40B1-B16A-AAA4B6624DE5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I5@ INDI
+1 NAME Isabella /Sutherland/
+2 GIVN Isabella
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1882
+1 FAMC @F26@
+1 _UID BE1AE745-0D83-4628-BC96-D81679515941
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I6@ INDI
+1 NAME Isabella /Carle/
+2 GIVN Isabella
+2 SURN Carle
+2 _PRIM Y
+1 SEX F
+1 FAMC @F29@
+1 _UID 841D5985-4920-4770-A32F-AFF71FC1553F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:27
+0 @I7@ INDI
+1 NAME Alice /Thorpe/
+2 GIVN Alice
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477957&source=GBC/1901/0007477958
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112455&source=GBC/1891/0006112453
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/5&source=GBC/1911/RG14/04762/0219/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1880
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477957&source=GBC/1901/0007477958
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112455&source=GBC/1891/0006112453
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477957&source=GBC/1901/0007477958
+1 EVEN was age 1 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Church House
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045860&source=GBC/1881/0005045856
+1 EVEN was age 11 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112455&source=GBC/1891/0006112453
+1 EVEN was age 21 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477957&source=GBC/1901/0007477958
+1 EVEN was age 31 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/5&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/5&source=GBC/1911/RG14/04762/0219/1
+1 FAMC @F6@
+1 _UID 9F9308DB-A5FC-425C-ABA9-E237E05B81EB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:59
+0 @I8@ INDI
+1 NAME John /Allmey/
+2 GIVN John
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104184&source=GBC/1871/0011104190
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230691
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 29 Dec 1827
+2 PLAC Stockport, Cheshire, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 23 Jun 1880
+2 PLAC Liverpool, Lancashire, England
+1 OCCU Tea Dealers Assistant
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230691
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104184&source=GBC/1871/0011104190
+1 EVEN was age 33 and the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Parliament Place
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230691
+1 EVEN was age 43 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104184&source=GBC/1871/0011104190
+1 FAMS @F34@
+1 FAMC @F35@
+1 _UID F4B099C9-FDE9-49F2-8282-442A3066D5BF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I9@ INDI
+1 NAME Ann /SMEE/
+2 GIVN Ann
+2 SURN SMEE
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 17 Oct 1785
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 26 Mar 1786
+2 PLAC Bocking, Essex
+1 FAMC @F45@
+1 _UID D61678DF-02CB-4637-8832-175FAC81F63B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:11
+0 @I10@ INDI
+1 NAME Rosina C /Edmunds/
+2 GIVN Rosina C
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 815; Line Number: 117; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/1/AZ/000367/117
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Feb 1925
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 815; Line Number: 117; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/1/AZ/000367/117
+1 DEAT
+2 _PRIM Y
+2 DATE 1964
+1 FAMC @F3@
+1 _UID EDB7401E-1081-49ED-8FC8-C8C470297978
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I11@ INDI
+1 NAME Louisa /Thorpe/
+2 GIVN Louisa
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477959&source=GBC/1901/0007477958
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112457&source=GBC/1891/0006112453
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1884
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477959&source=GBC/1901/0007477958
+1 OCCU Post Office Clerk
+2 _PRIM Y
+2 DATE 1901
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477959&source=GBC/1901/0007477958
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477959&source=GBC/1901/0007477958
+1 EVEN was age 7 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112457&source=GBC/1891/0006112453
+1 EVEN was age 17 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477959&source=GBC/1901/0007477958
+1 FAMC @F6@
+1 _UID 47722BE6-7D0A-4EA5-B2C7-FB82C192F4E2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:16
+0 @I12@ INDI
+1 NAME Jacob /Carle/
+2 GIVN Jacob
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1859
+1 FAMC @F30@
+1 _UID 859BFF67-0222-47B8-8A34-A1C6B06A4CA2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I13@ INDI
+1 NAME Margaret E /Thorpe/
+2 GIVN Margaret E
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477963&source=GBC/1901/0007477958
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1894
+2 PLAC St Leonard's, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477963&source=GBC/1901/0007477958
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477963&source=GBC/1901/0007477958
+1 EVEN was age 7 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477963&source=GBC/1901/0007477958
+1 FAMC @F6@
+1 _UID 8862D6BC-C4FC-46FE-BAA6-F2A9930DB7EE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:20
+0 @I14@ INDI
+1 NAME Harry /Edmunds/
+2 GIVN Harry
+2 SURN Edmunds
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Surrey, England, United Kingdom
+1 FAMC @F9@
+1 _UID 18C78BCA-C772-48B5-8A14-D77FC088806E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I15@ INDI
+1 NAME Christina /Carle/
+2 GIVN Christina
+2 SURN Carle
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 10 Oct 1891
+1 DEAT
+2 _PRIM Y
+2 DATE 31 Jan 1978
+1 FAMS @F25@
+1 FAMC @F29@
+1 _UID D743BEBB-AD7F-4508-BA62-5D55CD5C7F4D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I16@ INDI
+1 NAME Mary /Carle/
+2 GIVN Mary
+2 SURN Carle
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1861
+1 FAMC @F30@
+1 _UID BF923C72-A80C-4C16-990E-9754D5406EBF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I17@ INDI
+1 NAME Lily E /Edmunds/
+2 GIVN Lily E
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 982; Line Number: 55; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1920/4/AZ/000427/055
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Nov 1920
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 982; Line Number: 55; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1920/4/AZ/000427/055
+1 DEAT
+2 _PRIM Y
+2 DATE 1935
+1 FAMC @F3@
+1 _UID 77B6114A-6540-4AF5-9B55-4D80B718ED45
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I18@ INDI
+1 NAME /Whiteman/
+2 SURN Whiteman
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 9C; Page: 2373; Line Number: 184; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1964/2/AZ/001463/184
+1 SEX M
+1 FAMS @F32@
+1 _UID 8E932269-5840-4D9E-823F-1D8FB9F5FAEA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:30
+0 @I19@ INDI
+1 NAME Harry /Satchell/
+2 GIVN Harry
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1890
+1 FAMC @F16@
+1 _UID 546C68F2-DEF3-43AA-A908-C58B6C7467FE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I20@ INDI
+1 NAME Alexander /Davidson/
+2 GIVN Alexander
+2 SURN Davidson
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1874
+1 FAMC @F31@
+1 _UID 939E9DCB-A802-4229-BA95-81C838F0763A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I21@ INDI
+1 NAME Lydia /Waldron/
+2 GIVN Lydia
+2 SURN Waldron
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513232
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1899
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513232
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513232
+1 EVEN was age 2 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513237&source=GBC/1901/0009513232
+1 FAMC @F12@
+1 _UID 5DB3FAF8-ACDA-4462-B0ED-554B2920E4FA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:11
+0 @I22@ INDI
+1 NAME Donald /Davidson/
+2 GIVN Donald
+2 SURN Davidson
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1869
+1 FAMC @F31@
+1 _UID 6C0F797F-4079-480F-97D2-BAF66EF5239A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:27
+0 @I23@ INDI
+1 NAME Ellen /Carle/
+2 GIVN Ellen
+2 SURN Carle
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1899
+1 FAMC @F29@
+1 _UID DE992AD2-33C1-4C65-AC44-967AE6768BFB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I24@ INDI
+1 NAME Edward Frederick George "Ted" /Satchell/
+2 GIVN Edward Frederick George "Ted"
+2 SURN Satchell
+2 _PRIM Y
+2 NICK Ted
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Sep 1891
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 467; Line Number: 112; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1891/4/AZ/000494/112
+2 SOUR
+3 PAGE Record set: Ww1 Naval Casualties; Subcategory: First World War; Category: Military Service & Conflict; Collections from: United Kingdom, Overseas / Unknown;
+3 REF http://search.findmypast.com/record?id=GBM/NC/34469
+1 DEAT
+2 _PRIM Y
+2 DATE 30 Dec 1915
+2 PLAC Cromarty, Scotland
+2 ADDR sea in HMS Natal disaster
+1 BAPM
+2 _PRIM Y
+2 DATE 25 Sep 1891
+2 PLAC St Bartholomew, Southsea, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: CHU 32/1A/2; Page: 29; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, UnitedK
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00512576
+1 EVEN Regiment: Royal Navy; Rank: Cook's Mate; Service number: 366411
+2 TYPE Military service
+2 _PRIM Y
+2 DATE 1915
+2 SOUR
+3 PAGE Record set: Commonwealth War Graves Commission Debt Of Honour; Subcategory: First World War; Category: Military Service & Conflict; Collections from: United Kingdom, Overseas / Unknown;
+3 REF http://search.findmypast.com/record?id=GBM/CWGC/ROLLOFHONOUR/000846169
+1 FAMC @F16@
+1 _UID 3AAC17F2-B197-4864-B621-14E2D0F00DF8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I25@ INDI
+1 NAME Violet Rosina /Edmunds/
+2 GIVN Violet Rosina
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 550; Line Number: 140; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1952/3/AZ/001172/140
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 2373; Line Number: 23; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1939/3/AO/000607/023
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 2373; Line Number: 39; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1939/3/PZ/000359/039
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 718; Line Number: 56; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1919/1/AZ/000312/056
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 1411; Line Number: 76; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1940/2/AZ/001140/076
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 33/1A/4; Page: 4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00448119
+1 NAME Violet R /Edmunds/
+2 GIVN Violet R
+2 SURN Edmunds
+2 SOUR @S16@
+3 PAGE Volume: 2B; Page number: 2373; Line Number: 39; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1939/3/PZ/000359/039
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 11 Mar 1919
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Entry number: 281; District number: 5001A; Register number: A61A; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/2005/12/86823664
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 718; Line Number: 56; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1919/1/AZ/000312/056
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 33/1A/4; Page: 4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00448119
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 2005
+2 PLAC Southampton, Hampshire, England
+2 SOUR @S3@
+3 PAGE Entry number: 281; District number: 5001A; Register number: A61A; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/2005/12/86823664
+1 BAPM
+2 _PRIM Y
+2 DATE 27 Mar 1919
+2 PLAC St Matthew, Southsea, Hampshire, England
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 33/1A/4; Page: 4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00448119
+1 FAMS @F2@
+1 FAMC @F3@
+1 _UID 7892827C-5616-462C-99C9-E7F7C330168E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:59
+0 @I26@ INDI
+1 NAME Winifred F /Russell/
+2 GIVN Winifred F
+2 SURN Russell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Sep 1919
+2 SOUR @S7@
+3 PAGE Line number: 6; Schedule: 244; Schedule Sub Number: 3; TNA reference: RG101/1265B/018/6; Piece number: 1265B; Item number: 18; HouseHoldID: 1919102; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1265/1265B/018/06
+1 OCCU Shorthand Typist
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Orpington U.D., Kent, England
+2 SOUR @S7@
+3 PAGE Line number: 6; Schedule: 244; Schedule Sub Number: 3; TNA reference: RG101/1265B/018/6; Piece number: 1265B; Item number: 18; HouseHoldID: 1919102; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1265/1265B/018/06
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Orpington U.D., Kent, England
+2 ADDR 51 Andover Road, Crofton
+2 SOUR @S7@
+3 PAGE Line number: 6; Schedule: 244; Schedule Sub Number: 3; TNA reference: RG101/1265B/018/6; Piece number: 1265B; Item number: 18; HouseHoldID: 1919102; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1265/1265B/018/06
+1 EVEN was the daughter of the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Orpington U.D., Kent, England
+2 ADDR 51 Andover Road, Crofton
+2 SOUR @S7@
+3 PAGE Line number: 6; Schedule: 244; Schedule Sub Number: 3; TNA reference: RG101/1265B/018/6; Piece number: 1265B; Item number: 18; HouseHoldID: 1919102; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1265/1265B/018/06
+1 FAMS @F23@
+1 _UID 8389F017-6289-4BA2-A28F-09BE957365BB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I27@ INDI
+1 NAME Ernest Alfred /Blackman/
+2 GIVN Ernest Alfred
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603869
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Aug 1875
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603869
+1 DEAT
+2 _PRIM Y
+2 DATE 31 May 1916
+2 PLAC Great Britain
+2 SOUR
+3 PAGE Record set: Deaths at sea, 1781-1968; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/MARITIME/900330
+1 OCCU Gunner Rmarty
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5560; Schedule: 9999; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05560/0215/14
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603871
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5560; Schedule: 9999; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05560/0215/14
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603871
+1 EVEN was age 5 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603873&source=GBC/1881/0005603871
+1 EVEN was age 35
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Eastney Portsmouth
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5560; Schedule: 9999; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05560/0215/14
+1 FAMC @F11@
+1 _UID 42436B19-CA5B-4A17-A82D-A0101FFDBDA1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:15
+0 @I28@ INDI
+1 NAME Harriet Elizabeth /Thorpe/
+2 GIVN Harriet Elizabeth
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477960&source=GBC/1901/0007477958
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/6&source=GBC/1911/RG14/04762/0219/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1886
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477960&source=GBC/1901/0007477958
+1 OCCU Dressmaker
+2 _PRIM Y
+2 DATE 1901
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477960&source=GBC/1901/0007477958
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477960&source=GBC/1901/0007477958
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477960&source=GBC/1901/0007477958
+1 EVEN was age 5 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112458&source=GBC/1891/0006112453
+1 EVEN was age 25 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/6&source=GBC/1911/RG14/04762/0219/1
+1 OCCU Dressmaker Assistant
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/6&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/6&source=GBC/1911/RG14/04762/0219/1
+1 FAMC @F6@
+1 _UID E29B60EE-4794-4A85-B586-3A640C257356
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:59
+0 @I29@ INDI
+1 NAME Eva Muriel /Allmey/
+2 GIVN Eva Muriel
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7&source=GBC/1911/RG14/09750/0459/3
+2 SOUR @S1@
+3 PAGE Volume: 4A; Page: 1098; Line Number: 126; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/2/AZ/000237/126
+2 SOUR @S21@
+3 PAGE Archive: Essex Record Office; Record set: Essex Baptism Index 1538-1920; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-BAP/1466690
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Oct 1904
+2 PLAC Great Ilford, St Mary The Virgin, Essex, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7
+2 SOUR @S3@
+3 PAGE Entry number: 227; District number: 497/1; Register number: B66A; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, Eng
+4 CONC land;
+3 REF http://search.findmypast.com/record?id=BMD/D/2004/3/85918199
+2 SOUR @S21@
+3 PAGE Archive: Essex Record Office; Record set: Essex Baptism Index 1538-1920; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-BAP/1466690
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 2004
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Entry number: 227; District number: 497/1; Register number: B66A; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, Eng
+4 CONC land;
+3 REF http://search.findmypast.com/record?id=BMD/D/2004/3/85918199
+1 BAPM
+2 _PRIM Y
+2 DATE 6 Nov 1904
+2 PLAC Great Ilford, St Mary The Virgin, Essex, England
+2 SOUR @S21@
+3 PAGE Archive: Essex Record Office; Record set: Essex Baptism Index 1538-1920; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-BAP/1466690
+1 OCCU School
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, West Ham, London & Essex, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, London, Essex, England
+2 ADDR Grove Crescent
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7&source=GBC/1911/RG14/09750/0459/3
+1 EVEN was age 6 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/7&source=GBC/1911/RG14/09750/0459/5
+1 FAMS @F8@
+1 FAMC @F13@
+1 _UID 6AFB95E4-37C4-42E4-B031-75DA4411A01E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I30@ INDI
+1 NAME Alexander /Carle/
+2 GIVN Alexander
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1867
+1 FAMC @F30@
+1 _UID 89EC160E-D5E9-4AA9-AFB6-8941845072D6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I31@ INDI
+1 NAME John Joseph /Satchell/
+2 GIVN John Joseph
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1867
+2 PLAC Southsea, Hampshire
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908
+2 SOUR
+3 PAGE Volume: 2B; Page: 456; Line Number: 252; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1867/2/AZ/000633/252
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Apr 1907
+2 PLAC Portsmouth
+2 ADDR Portsmouth Infirmary
+1 OCCU Stoker R N
+2 _PRIM Y
+2 DATE 1889
+2 PLAC Milton, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693870&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: CHU 47/1B/8; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00140308/1
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908&source=GBC/1881/0005601909
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsmouth, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693870&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908&source=GBC/1881/0005601909
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601908&source=GBC/1881/0005601909
+1 EVEN was age 23 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693870&source=GBC/1891/0006693868
+1 FAMS @F16@
+1 FAMC @F54@
+1 _UID 9CDFAC57-DE22-47D1-94F1-4689159051B8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I32@ INDI
+1 NAME Sarah //
+2 GIVN Sarah
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372591&source=GBC/1871/0021372595
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1826
+2 PLAC Ireland
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372591&source=GBC/1871/0021372595
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Upperby, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372591&source=GBC/1871/0021372595
+1 EVEN was age 45 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Upperby, Carlisle, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372591&source=GBC/1871/0021372595
+1 FAMS @F18@
+1 _UID 5324A8AF-F8F2-4CCE-93D5-C3B7828FF46F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I33@ INDI
+1 NAME John /Thorpe/
+2 GIVN John
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX M
+1 FAMS @F21@
+1 _UID DF9DEB7A-CB22-4E82-91F5-470DA1542622
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:27
+0 @I34@ INDI
+1 NAME Phyllis /Aves/
+2 GIVN Phyllis
+2 SURN Aves
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 5E; Page: 323; Line Number: 45; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1947/2/AZ/001131/045
+1 SEX F
+1 FAMS @F5@
+1 _UID 1E951761-4354-400F-9919-DACAEA3DBCAA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:27
+0 @I35@ INDI
+1 NAME Thomas /Smee/
+2 GIVN Thomas
+2 SURN Smee
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Oct 1737
+2 PLAC Bocking, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 12 Mar 1742
+2 PLAC Bocking, Essex
+1 FAMS @F45@
+1 FAMC @F47@
+1 _UID 8A48CAC6-19B1-4AF1-B6AD-203D3B8197B7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I36@ INDI
+1 NAME William D /Carle/
+2 GIVN William D
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1900
+1 FAMC @F29@
+1 _UID CB616BFA-CEDD-4E1D-9EC5-ECE9B721F37C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I37@ INDI
+1 NAME George /Hunt/
+2 GIVN George
+2 SURN Hunt
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1916
+1 DEAT
+2 _PRIM Y
+2 DATE 1978
+1 FAMS @F22@
+1 FAMS @F23@
+1 FAMC @F24@
+1 _UID 07F48749-354C-475F-A815-9C43722E9F7B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I38@ INDI
+1 NAME Albert Edward /Edmunds/
+2 GIVN Albert Edward
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899210&source=GBC/1901/0002899208
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Wandsworth, Surrey, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899210&source=GBC/1901/0002899208
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Battersea, London, Surrey, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899210&source=GBC/1901/0002899208
+1 EVEN was age 0 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Battersea, Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899210&source=GBC/1901/0002899208
+1 FAMC @F7@
+1 _UID D4385E32-CA98-4319-838A-0C1DC92E6649
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:20
+0 @I39@ INDI
+1 NAME George /Carle/
+2 GIVN George
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1855
+1 FAMC @F30@
+1 _UID B301DEDF-B1E4-41CD-B8FD-9288B2D12D67
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I40@ INDI
+1 NAME James /Edmunds/
+2 GIVN James
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899208
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1886
+2 PLAC Wandsworth, Surrey
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899208
+1 OCCU News Agent
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Battersea, Wandsworth, London & Surrey, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899208
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Battersea, London, Surrey, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899208
+1 EVEN was age 15 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Battersea, Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899208
+1 FAMC @F7@
+1 _UID FA55E988-D0E1-4207-AB05-F10E49C8DA4F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I41@ INDI
+1 NAME Alfred Frank James /Clark/
+2 GIVN Alfred Frank James
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 4A; Page: 1098; Line Number: 126; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/2/AZ/000237/126
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1904
+2 PLAC West Ham, Essex, England
+2 SOUR @S1@
+3 PAGE Volume: 4A; Page: 267; Line Number: 1; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1904/2/AZ/000115/001
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1955
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 389; Line number: 104; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1955/4/AZ/000175/104
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/8&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/8&source=GBC/1911/RG14/09474/0435/1
+1 FAMS @F8@
+1 FAMC @F33@
+1 _UID BFEE2BE8-DCDC-41AB-9341-488C56D69354
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I42@ INDI
+1 NAME Johan /Sutherland/
+2 GIVN Johan
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1886
+1 FAMC @F26@
+1 _UID F3EED0D0-0769-491B-8410-1B3A01E5CF5B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I43@ INDI
+1 NAME Lillian /Allmey/
+2 GIVN Lillian
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414&source=GBC/1901/0011672411
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Nov 1895
+2 PLAC West Ham, Essex
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414
+2 SOUR
+3 PAGE Volume: 4A; Page: 187; Line Number: 224; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1895/4/AZ/000010/224
+1 DEAT
+2 _PRIM Y
+2 DATE abt May 1929
+2 PLAC Romford, Essex, England
+2 SOUR
+3 PAGE Volume: 4A; Page: 480; Line number: 94; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1929/2/AZ/000752/094
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Ilford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414&source=GBC/1901/0011672411
+1 EVEN was age 5 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Ilford, Romford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/4&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/4
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/4&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 DATE 1911
+2 PLAC Woodford, Essex, England
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672414
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/4
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/4&source=GBC/1911/RG14/09750/0459/5
+1 FAMC @F13@
+1 _UID 246BEABF-E2E7-48E3-BB4B-5BA008B89496
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:55
+0 @I44@ INDI
+1 NAME John /Sutherland/
+2 GIVN John
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1888
+1 DEAT
+2 _PRIM Y
+2 DATE 15 May 1952
+1 FAMS @F25@
+1 FAMC @F26@
+1 _UID 97CE0C96-662D-4DF8-A04F-C1CA4BD5AE22
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:15
+0 @I45@ INDI
+1 NAME Alice /Ledger/
+2 GIVN Alice
+2 SURN Ledger
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513234
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/2&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513235
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513232
+1 NAME Alice /Waldron/
+2 GIVN Alice
+2 SURN Waldron
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513234
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/2&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513232
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1862
+2 PLAC London, Middlesex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513234
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/2&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513235
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 OCCU Naval Ordnance
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/2&source=GBC/1911/RG14/05550/0637/1
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513234
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513232
+1 EVEN was age 40 and the wife of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513234
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513233&source=GBC/1901/0009513232
+1 EVEN was age 49 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/2&source=GBC/1911/RG14/05550/0637/1
+1 RESI
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/2&source=GBC/1911/RG14/05550/0637/1
+1 FAMS @F12@
+1 FAMC @F40@
+1 _UID 593DB7FF-56C7-4182-85AF-5A74470301A3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I46@ INDI
+1 NAME John /Sutherland/
+2 GIVN John
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1856
+1 FAMS @F26@
+1 FAMC @F27@
+1 _UID 7DD357DD-216D-4E42-9A80-88779F14FEC1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I47@ INDI
+1 NAME Isabella //
+2 GIVN Isabella
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1836
+1 FAMS @F31@
+1 _UID 6CA3F9BA-4B30-4031-A856-9431EF43B620
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I48@ INDI
+1 NAME Annie /Edmunds/
+2 GIVN Annie
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289801&source=GBC/1881/0003289798
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Croydon, Surrey, England
+2 ADDR Mortlake Road Militia Barracks
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289801&source=GBC/1881/0003289798
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289801&source=GBC/1881/0003289798
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289801&source=GBC/1881/0003289798
+1 EVEN was age 10 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289801&source=GBC/1881/0003289798
+1 FAMC @F9@
+1 _UID AA32BB5E-8304-4288-A411-22672BACE28A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I49@ INDI
+1 NAME Daisy Edith /Satchell/
+2 GIVN Daisy Edith
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 19 Jul 1893
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 6B; Page: 1492; Line number: 42; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1972/1/AZ/001131/042
+2 SOUR
+3 PAGE Volume: 2B; Page: 517; Line Number: 293; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1893/3/AZ/000513/293
+2 SOUR
+3 PAGE Line number: 16; Schedule: 327; Schedule Sub Number: 2; TNA reference: RG101/2272D/021/16; Piece number: 2272D; Item number: 21; HouseHoldID: 3125678; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272D/021/16
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1972
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 6B; Page: 1492; Line number: 42; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1972/1/AZ/001131/042
+1 OCCU Unpaid Domestic Duties
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 SOUR
+3 PAGE Line number: 16; Schedule: 327; Schedule Sub Number: 2; TNA reference: RG101/2272D/021/16; Piece number: 2272D; Item number: 21; HouseHoldID: 3125678; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272D/021/16
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 95 Goodwood Road
+2 SOUR
+3 PAGE Line number: 16; Schedule: 327; Schedule Sub Number: 2; TNA reference: RG101/2272D/021/16; Piece number: 2272D; Item number: 21; HouseHoldID: 3125678; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272D/021/16
+1 EVEN was the wife of the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 95 Goodwood Road
+2 SOUR
+3 PAGE Line number: 16; Schedule: 327; Schedule Sub Number: 2; TNA reference: RG101/2272D/021/16; Piece number: 2272D; Item number: 21; HouseHoldID: 3125678; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272D/021/16
+1 FAMC @F16@
+1 _UID 6B67AC42-579E-4608-9ADF-D0378DD68D41
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:14
+0 @I50@ INDI
+1 NAME Elizabeth Alice /Waldron/
+2 GIVN Elizabeth Alice
+2 SURN Waldron
+2 _PRIM Y
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1022; Line Number: 108; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1908/4/AZ/000378/108
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1022; Line Number: 312; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1908/4/AZ/000396/312
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 791; Line Number: 119; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1928/3/AZ/001236/119
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/2&source=GBC/1911/RG14/03112/0643/1
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 514; Line Number: 34; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1886/2/AZ/000612/034
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+1 NAME Elizabeth Alice /Thorpe/
+2 GIVN Elizabeth Alice
+2 SURN Thorpe
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/2&source=GBC/1911/RG14/03112/0643/1
+1 NAME Elizabeth Alice /Thorpe/
+2 GIVN Elizabeth Alice
+2 SURN Thorpe
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/19
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Apr 1886
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 22; Page: 0160; Line number: 147; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1977/4/AZ/001102/147
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/2&source=GBC/1911/RG14/03112/0643/1
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 514; Line Number: 34; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1886/2/AZ/000612/034
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/19
+1 DEAT
+2 _PRIM Y
+2 DATE Nov 1977
+2 PLAC Bath, Somerset, England
+2 SOUR @S3@
+3 PAGE Volume: 22; Page: 0160; Line number: 147; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1977/4/AZ/001102/147
+1 OCCU Unpaid Domestic Duties
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/19
+1 EVEN was age 25 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Aldershot, Farnham, Surrey, England
+2 ADDR 25 Gordon Road Aldershot
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/2&source=GBC/1911/RG14/03112/0643/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Aldershot, Surrey, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/2&source=GBC/1911/RG14/03112/0643/1
+1 EVEN was age 14 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513234
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513234&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513234&source=GBC/1901/0009513232
+1 EVEN was the wife of the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 77 Margate Road
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/19
+1 RESI
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513234
+1 RESI
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 77 Margate Road
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/19
+1 FAMS @F4@
+1 FAMC @F12@
+1 _UID 4DD7680D-89BC-4429-916B-5D94C6D07E81
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:13
+0 @I51@ INDI
+1 NAME Frank /Miles/
+2 GIVN Frank
+2 SURN Miles
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 5E; Page: 323; Line Number: 45; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1947/2/AZ/001131/045
+1 SEX M
+1 FAMS @F5@
+1 _UID A00B51CF-171D-4231-803A-E7E03EE4DE69
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I52@ INDI
+1 NAME Luezier /SMEE/
+2 GIVN Luezier
+2 SURN SMEE
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1817
+2 PLAC Braintree, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 1 Oct 1817
+2 PLAC Braintree, Essex
+1 FAMC @F44@
+1 _UID E7BC4533-6489-4D58-B958-9026B684DCAA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I53@ INDI
+1 NAME Susan /Edmunds/
+2 GIVN Susan
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289802&source=GBC/1881/0003289798
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1874
+2 PLAC Richmond, Surrey, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289802&source=GBC/1881/0003289798
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289802&source=GBC/1881/0003289798
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289802&source=GBC/1881/0003289798
+1 EVEN was age 7 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289802&source=GBC/1881/0003289798
+1 FAMC @F9@
+1 _UID 5F414FAE-CAC1-4F75-B45F-3491651A26EF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I54@ INDI
+1 NAME William /Davidson/
+2 GIVN William
+2 SURN Davidson
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1862
+1 FAMC @F31@
+1 _UID 2AB6A708-38CC-4E3F-B7E2-366FDFD63FDA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I55@ INDI
+1 NAME Edith M /Blackman/
+2 GIVN Edith M
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603875
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899799&source=GBC/1871/0002899797
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603869
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Poplar, Middlesex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603869
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1956
+2 PLAC Tonbridge, Kent, England
+2 SOUR
+3 PAGE Volume: 5B; Page: 883; Line number: 25; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1956/4/AZ/000089/025
+1 OCCU Hospital Nurse
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hackney, London, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 221; Folio: 131; Page: 2; Schedule: 0; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0004684137
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hackney, London, England
+2 ADDR Gates Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 221; Folio: 131; Page: 2; Schedule: 0; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0004684137
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899799&source=GBC/1871/0002899797
+1 EVEN was age 0 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Poplar, London, England, Middlesex
+2 ADDR Gates Street
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899799&source=GBC/1871/0002899797
+1 EVEN was age 10 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603871
+1 EVEN was age 30 and a servant in the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hackney, London, England
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 221; Folio: 131; Page: 2; Schedule: 0; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0004684137
+1 FAMC @F11@
+1 _UID 466B21CC-FDB8-4964-98DB-AF446A888CEB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I56@ INDI
+1 NAME William /SMEE/
+2 GIVN William
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1844
+2 PLAC Braintree, Essex
+1 FAMC @F43@
+1 _UID 4458AAD8-E8CA-46A6-9F73-A8EF481788EE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I57@ INDI
+1 NAME Eva M /Waldron/
+2 GIVN Eva M
+2 SURN Waldron
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/4&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513232
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1895
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/4&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513232
+1 OCCU Tailoress
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/4&source=GBC/1911/RG14/05550/0637/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/4&source=GBC/1911/RG14/05550/0637/1
+1 EVEN was age 6 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513232
+1 EVEN was age 23 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/4&source=GBC/1911/RG14/05550/0637/1
+1 RESI
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513236&source=GBC/1901/0009513232
+1 FAMC @F12@
+1 _UID B6E589BC-4B8A-4B63-8CE4-D28E5B012B03
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I58@ INDI
+1 NAME Robert /Edmunds/
+2 GIVN Robert
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289803&source=GBC/1881/0003289798
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1879
+2 PLAC Wandsworth, Surrey, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289803&source=GBC/1881/0003289798
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289803&source=GBC/1881/0003289798
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289803&source=GBC/1881/0003289798
+1 EVEN was age 2 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289803&source=GBC/1881/0003289798
+1 FAMC @F9@
+1 _UID B9BF19EC-2268-41F5-A10D-3E6DC05C1071
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I59@ INDI
+1 NAME Margaret /Davidson/
+2 GIVN Margaret
+2 SURN Davidson
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1866
+1 DEAT
+2 _PRIM Y
+2 DATE 1949
+1 FAMS @F29@
+1 FAMC @F31@
+1 _UID 3FCAA6E4-02D9-403C-8681-A92C96D27193
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:59
+0 @I60@ INDI
+1 NAME Christina C /Sutherland/
+2 GIVN Christina C
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1923
+1 DEAT
+2 _PRIM Y
+2 DATE 15 May 2004
+1 FAMS @F22@
+1 FAMC @F25@
+1 _UID BDBFF23B-F0E7-4D4A-AF55-7EC22041BE50
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I61@ INDI
+1 NAME Maria /Clark/
+2 GIVN Maria
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520342&source=GBC/1861/0006520341
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1857
+2 PLAC Essex, England
+1 OCCU Servant - 1871
+2 _PRIM Y
+2 DATE 1871
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC West Ham, Stratford, London, Essex, England
+2 ADDR Bridle Way
+1 EVEN
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Braintree, Essex, England
+2 ADDR Beckwiths Green
+1 EVEN was age 14 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+1 RESI
+2 DATE 1861
+2 PLAC Braintree, Essex, England
+2 ADDR Beckwiths Green
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520342&source=GBC/1861/0006520341
+1 FAMC @F42@
+1 _UID BAAE467F-90F6-4FEB-B060-FF6F1613E6A9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I62@ INDI
+1 NAME Mary /Stevens/
+2 GIVN Mary
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453&source=GBC/1891/0006112456
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477954&source=GBC/1901/0007477958
+2 SOUR @S16@
+3 PAGE Volume: 2B; Page number: 30; Line Number: 48; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1872/1/AZ/000234/048
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708324
+1 NAME Mary /Thorpe/
+2 GIVN Mary
+2 SURN Thorpe
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453&source=GBC/1891/0006112456
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477954&source=GBC/1901/0007477958
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1848
+2 PLAC Ditchling, Sussex, England
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453&source=GBC/1891/0006112456
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045856
+1 OCCU Coachman Wife
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045856
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453&source=GBC/1891/0006112456
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453
+1 EVEN was age 43 and the wife of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453&source=GBC/1891/0006112456
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112453
+1 EVEN was age 53 and the wife of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477954&source=GBC/1901/0007477958
+1 EVEN was age 33 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Church House
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045856
+1 EVEN was age 13 and the daughter of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708324
+1 EVEN was age 63 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/2&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708324
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/2&source=GBC/1911/RG14/04762/0219/1
+1 FAMS @F6@
+1 FAMC @F19@
+1 _UID A12AC5B4-4566-445C-8810-48A3CD249D53
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I63@ INDI
+1 NAME Sarah /Savage/
+2 GIVN Sarah
+2 SURN Savage
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899209
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899208
+1 NAME Sarah /Edmunds/
+2 GIVN Sarah
+2 SURN Edmunds
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899209
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899208
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1863
+2 PLAC Wandsworth, Surrey, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899209
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899208
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Battersea, Wandsworth, London, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899209
+1 EVEN was age 38 and the wife of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Battersea, Wandsworth, London, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899207&source=GBC/1901/0002899209
+1 FAMS @F7@
+1 _UID 80D6F8CF-E418-4E4E-B1B8-F008868813B7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I64@ INDI
+1 NAME Henry /Blackman/
+2 GIVN Henry
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1842
+2 PLAC Horsey Island, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346862
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346863
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID C04A3003-1A31-4BB2-AB5B-CA99CF66A675
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I65@ INDI
+1 NAME James /Smith/
+2 GIVN James
+2 SURN Smith
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 870; Line Number: 59; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/2/AZ/001466/059
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 81/W13/1A/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdo
+4 CONC m;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00416214
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1890
+1 FAMS @F10@
+1 FAMC @F107@
+1 _UID 2A30D554-88D7-4E6D-911E-4B98DDF737B4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I66@ INDI
+1 NAME Thomas Rowland /Thorpe/
+2 GIVN Thomas Rowland
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1022; Line Number: 108; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1908/4/AZ/000378/108
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 53; Line Number: 308; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1881/3/AZ/000549/308
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1022; Line Number: 312; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1908/4/AZ/000396/312
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 791; Line Number: 119; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1928/3/AZ/001236/119
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 11 Jul 1881
+2 PLAC Battle, Sussex, England
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 53; Line Number: 308; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1881/3/AZ/000549/308
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/18&source=TNA/R39/2278/2278F/007/19
+1 DEAT
+2 _PRIM Y
+2 DATE Aug 1962
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 424; Line number: 112; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1962/3/AZ/000935/112
+1 OCCU Electrician
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Aldershot, Farnham, Surrey, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/1
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112456
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112456&source=GBC/1891/0006112453
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112456
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112456&source=GBC/1891/0006112453
+1 EVEN was age 29 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Aldershot, Farnham, Surrey, England
+2 ADDR 25 Gordon Road Aldershot
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/1
+1 EVEN was age 19 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477958
+1 EVEN was the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 77 Margate Road
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/18&source=TNA/R39/2278/2278F/007/19
+1 OCCU Foreman Electrician Manager
+2 DATE 1939
+2 PLAC Aldershot, Farnham, Surrey, England
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/18&source=TNA/R39/2278/2278F/007/19
+1 RESI
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 77 Margate Road
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/18&source=TNA/R39/2278/2278F/007/19
+1 FAMS @F4@
+1 FAMC @F6@
+1 _UID 737A2E2B-22AA-45AC-9617-B01F16066ED1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:21
+0 @I67@ INDI
+1 NAME John Orlando /Edmunds/
+2 GIVN John Orlando
+2 SURN Edmunds
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1869
+2 PLAC Richmond, Surrey, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289800&source=GBC/1881/0003289798
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289800&source=GBC/1881/0003289798
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289800&source=GBC/1881/0003289798
+1 EVEN was age 12 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289800&source=GBC/1881/0003289798
+1 FAMC @F9@
+1 _UID 66E8BCF6-AFB3-4B38-AB6E-07B8D2C5A106
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I68@ INDI
+1 NAME /Maule/
+2 SURN Maule
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 9C; Page: 2373; Line Number: 184; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1964/2/AZ/001463/184
+1 SEX F
+1 FAMS @F32@
+1 _UID F65710A3-6F2A-4D1C-A141-AAC8D8DAA244
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:30
+0 @I69@ INDI
+1 NAME Inigo /Edmunds/
+2 GIVN Inigo
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899209
+2 SOUR @S1@
+3 PAGE Volume: 2A; Page: 258; Line Number: 39; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1864/1/AZ/000368/039
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899208
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289798
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1863
+2 PLAC Richmond, Surrey, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899209
+2 SOUR @S1@
+3 PAGE Volume: 2A; Page: 258; Line Number: 39; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1864/1/AZ/000368/039
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899208
+1 OCCU Coalporter
+2 _PRIM Y
+2 DATE 1901
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899209
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899208
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Battersea, Wandsworth, London, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899209
+1 EVEN was age 38 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Battersea, Wandsworth, London, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899206&source=GBC/1901/0002899209
+1 EVEN was age 17 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289798
+1 OCCU Farm Labourer
+2 DATE 1881
+2 PLAC Wandsworth, London & Surrey, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289798
+1 RESI
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289798
+1 FAMS @F7@
+1 FAMC @F9@
+1 _UID 31090A24-0310-46E5-8EE6-CFE95DBE77A1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I70@ INDI
+1 NAME George Edward /Hunt/
+2 GIVN George Edward
+2 SURN Hunt
+2 _PRIM Y
+1 SEX M
+1 FAMS @F24@
+1 _UID BC90C621-C053-4B6C-9A44-8E986DBF06C7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:57
+0 @I71@ INDI
+1 NAME Sarah /SMEE/
+2 GIVN Sarah
+2 SURN SMEE
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 3 May 1788
+2 PLAC Gt, Waltham, Essex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Apr 1858
+2 PLAC Good Easter, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 24 Jun 1788
+2 PLAC Bocking, Essex
+1 FAMC @F45@
+1 _UID CA78657C-BAA6-4EA3-BD49-E7DC553B8D27
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:20
+0 @I72@ INDI
+1 NAME Ernest Percival /Allmey/
+2 GIVN Ernest Percival
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672411
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/5&source=GBC/1911/RG14/09750/0459/3
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 7 Mar 1898
+2 PLAC Ilford, Essex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Volume: 5H; Page: 1982; Line number: 31; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1973/4/AZ/000018/031
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672414
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1973
+2 PLAC Horsham, Sussex, England
+2 SOUR
+3 PAGE Volume: 5H; Page: 1982; Line number: 31; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1973/4/AZ/000018/031
+1 OCCU School
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/5&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Ilford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672411
+1 EVEN was age 3 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Ilford, Romford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672414
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/5&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 DATE 1911
+2 PLAC Woodford, Essex, England
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/5
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672415&source=GBC/1901/0011672414
+1 FAMC @F13@
+1 _UID 9C090C6E-0B4A-4044-93B1-D5156D1A5330
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I73@ INDI
+1 NAME Joseph /SMEE/
+2 GIVN Joseph
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Dec 1778
+2 PLAC Braintree, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 8 Jul 1789
+2 PLAC Bocking, Essex
+1 RESI
+2 _PRIM Y
+2 PLAC Bocking, Essex, England
+1 FAMC @F45@
+1 _UID 577DC47F-C430-4176-AE34-877A8364009F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I74@ INDI
+1 NAME Eliza Selina /Blackman/
+2 GIVN Eliza Selina
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603869
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Aug 1877
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Volume: 2B; Page: 392; Line Number: 202; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1877/3/AZ/000051/202
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817866
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5609; Schedule: 319; HouseHoldID: 56090639; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05609/0639/2&source=GBC/1911/RG14/05609/0639/1
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 1932
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 628; Line number: 35; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1932/3/AZ/000229/035
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817866
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Albert Road
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817866
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 989; Folio: 85; Page: 41; Schedule: 298; HouseHoldID: 1512364; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010070568
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5609; Schedule: 319; HouseHoldID: 56090639; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05609/0639/2&source=GBC/1911/RG14/05609/0639/1
+1 EVEN was age 3 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603874
+1 EVEN was age 13 and the stepdaughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817866
+1 EVEN was age 25 and the step daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England, Town
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 989; Folio: 85; Page: 41; Schedule: 298; HouseHoldID: 1512364; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010070568
+1 EVEN was age 33 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 27 Norland Road Southsea
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5609; Schedule: 319; HouseHoldID: 56090639; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05609/0639/2&source=GBC/1911/RG14/05609/0639/1
+1 FAMS @F16@
+1 FAMC @F11@
+1 _UID CD39E12A-2578-464A-813D-EBB71CDC0A7B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:02
+0 @I75@ INDI
+1 NAME Sarah Jane /Thorpe/
+2 GIVN Sarah Jane
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477955&source=GBC/1901/0007477958
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/3&source=GBC/1911/RG14/04762/0219/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1875
+2 PLAC St Leonard's, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477955&source=GBC/1901/0007477958
+1 OCCU Dressmaker
+2 _PRIM Y
+2 DATE 1901
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477955&source=GBC/1901/0007477958
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477955&source=GBC/1901/0007477958
+1 EVEN was age 26 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477955&source=GBC/1901/0007477958
+1 EVEN was age 6 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Church House
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045858&source=GBC/1881/0005045856
+1 EVEN was age 36 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/3&source=GBC/1911/RG14/04762/0219/1
+1 OCCU Dressmaker
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/3&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/3&source=GBC/1911/RG14/04762/0219/1
+1 FAMC @F6@
+1 _UID 1F6E7D5A-5B50-456F-954D-650D7E3FEE03
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:07
+0 @I76@ INDI
+1 NAME Thomas /Carle/
+2 GIVN Thomas
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 FAMC @F29@
+1 _UID D60AC976-13AD-498A-B2A2-F76AA7992845
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I77@ INDI
+1 NAME Roseannah /Rooke/
+2 GIVN Roseannah
+2 SURN Rooke
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1867
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 4 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Upperby, Carlisle, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372595
+1 EVEN was age 24 and the wife of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Caldewgate, Carlisle, Cumberland, England
+2 ADDR Walkers Place, Charlotte Street
+1 EVEN was age 34 and the wife of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 EVEN was age 45 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 48 Brook Street
+1 FAMS @F17@
+1 FAMC @F18@
+1 _UID E6CA5564-E101-476A-8D0A-C9B33BD88BF3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I78@ INDI
+1 NAME Charles /Clark/
+2 GIVN Charles
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1
+2 SOUR @S7@
+3 PAGE Line number: 39; Schedule: 60; Schedule Sub Number: 1; TNA reference: RG101/1043G/006/39; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/39
+2 SOUR @S16@
+3 PAGE Volume: 4A; Page number: 37; Line Number: 251; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1884/1/AZ/000044/251
+2 SOUR @S1@
+3 PAGE Volume: 4A; Page: 10; Line Number: 178; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1905/2/AZ/000113/178
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 27 May 1865
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1
+2 SOUR @S7@
+3 PAGE Line number: 39; Schedule: 60; Schedule Sub Number: 1; TNA reference: RG101/1043G/006/39; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/39
+1 OCCU Soda Making Labour
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London & Essex, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 45 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/1
+1 EVEN was recorded at this address
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 46 Emma Street
+2 SOUR @S7@
+3 PAGE Line number: 39; Schedule: 60; Schedule Sub Number: 1; TNA reference: RG101/1043G/006/39; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/39
+1 EVEN was age 35 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428370
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+1 EVEN was age 17 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Milton Road
+1 OCCU Old Age Pensioner
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 SOUR @S7@
+3 PAGE Line number: 39; Schedule: 60; Schedule Sub Number: 1; TNA reference: RG101/1043G/006/39; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/39
+1 OCCU Corn Carman
+2 DATE 1901
+2 PLAC West Ham, London & Essex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428370
+1 RESI
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 46 Emma Street
+2 SOUR @S7@
+3 PAGE Line number: 39; Schedule: 60; Schedule Sub Number: 1; TNA reference: RG101/1043G/006/39; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/39
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428370
+1 FAMS @F33@
+1 FAMC @F42@
+1 _UID D06BB9F8-CDA0-4F53-9E8B-26BAFC5E2850
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I79@ INDI
+1 NAME Richard /Edmunds/
+2 GIVN Richard
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 718; Line Number: 56; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1919/1/AZ/000312/056
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1238; Line Number: 86; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1912/4/AZ/000094/086
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899209
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1238; Line Number: 20; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1912/4/AZ/000305/020
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 515; Line number: 119; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1963/4/AZ/000237/119
+2 SOUR @S1@
+3 PAGE Volume: 1D; Page: 718; Line Number: 51; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1888/2/AZ/000172/051
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 861; Line Number: 130; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1916/3/AZ/000409/130
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 806; Line Number: 97; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/4/AZ/000434/097
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 982; Line Number: 55; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1920/4/AZ/000427/055
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 815; Line Number: 117; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/1/AZ/000367/117
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/01&source=TNA/R39/2273/2273A/017/02
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899209&source=GBC/1901/0002899208
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 33/1A/4; Page: 4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00448119
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 11 Mar 1887
+2 PLAC Wandsworth, London, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899209
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 515; Line number: 119; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1963/4/AZ/000237/119
+2 SOUR @S1@
+3 PAGE Volume: 1D; Page: 718; Line Number: 51; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1888/2/AZ/000172/051
+2 SOUR @S7@
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/01
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/01&source=TNA/R39/2273/2273A/017/02
+1 DEAT
+2 _PRIM Y
+2 DATE Nov 1963
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 515; Line number: 119; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1963/4/AZ/000237/119
+1 OCCU Railway Shunter Traffic
+2 _PRIM Y
+2 DATE 1939
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/01&source=TNA/R39/2273/2273A/017/02
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Battersea, Wandsworth, London, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899209
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Battersea, Wandsworth, London, England
+2 ADDR Benfield Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 453; Folio: 18; Page: 28; Schedule: 176; HouseHoldID: 802592; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0002899209
+1 EVEN was the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 26 Grenville Road
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/01&source=TNA/R39/2273/2273A/017/02
+1 RESI
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 26 Grenville Road
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/01&source=TNA/R39/2273/2273A/017/02
+1 FAMS @F3@
+1 FAMC @F7@
+1 _UID D3BA989C-C4E0-4576-B885-9764E591CAC2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:11
+0 @I80@ INDI
+1 NAME Margaret /Carle/
+2 GIVN Margaret
+2 SURN Carle
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1897
+1 FAMC @F29@
+1 _UID B33DF216-DA2C-4BD0-B0D8-DAE06E0E1D18
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:56
+0 @I81@ INDI
+1 NAME Roland /Thorpe/
+2 GIVN Roland
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112456
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665185
+2 SOUR @S16@
+3 PAGE Volume: 2B; Page number: 30; Line Number: 48; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1872/1/AZ/000234/048
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112453
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665185&source=GBC/1861/0003665182
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/1
+1 NAME Rowland /Thorpe/
+2 GIVN Rowland
+2 SURN Thorpe
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE Apr 1845
+2 PLAC Fairlight, Sussex, England
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112456
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477953&source=GBC/1901/0007477958
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045855&source=GBC/1881/0005045856
+1 DEAT
+2 _PRIM Y
+2 DATE Mar 1929
+2 PLAC Hastings, Sussex, England
+1 OCCU Gardener
+2 _PRIM Y
+2 DATE 1891
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112456
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112453
+1 EVEN was age 45 and the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112456
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112453
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112456
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112452&source=GBC/1891/0006112453
+1 EVEN was age 55 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477953&source=GBC/1901/0007477958
+1 EVEN was age 15 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Guestling, Hastings, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665185
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665185&source=GBC/1861/0003665182
+1 EVEN was age 35 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Church House
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045855&source=GBC/1881/0005045856
+1 EVEN was age 65 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/1
+1 OCCU House Servant
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665185&source=GBC/1861/0003665182
+1 OCCU Gardener Domestic
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1861
+2 PLAC Guestling, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665185&source=GBC/1861/0003665182
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/1
+1 FAMS @F6@
+1 FAMC @F20@
+1 _UID 964B8C2C-D95D-4894-BFCF-C263AB83A6E8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I82@ INDI
+1 NAME Reuben /Stevens/
+2 GIVN Reuben
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045696
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708321&source=GBC/1861/0003708324
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_843294020
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_854640556
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1817
+2 PLAC Eastbourne, Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708321&source=GBC/1861/0003708324
+1 OCCU Agricultural Labourer
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045696
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708321&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045696
+1 EVEN was age 44 and the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708321&source=GBC/1861/0003708324
+1 EVEN was age 64 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Powder Mill Cottage
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045696
+1 RESI
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708321&source=GBC/1861/0003708324
+1 FAMS @F19@
+1 FAMC @F64@
+1 _UID 87501D11-D11D-4B6A-BD68-64C67B4300FD
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I83@ INDI
+1 NAME James /Muir/
+2 GIVN James
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361839&source=GBC/1871/0021361838
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1866
+2 PLAC Carlisle, Cumberland, England
+1 OCCU Horse Shoer
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Caldewgate, Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361839&source=GBC/1871/0021361838
+1 EVEN was age 26 and the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Caldewgate, Carlisle, Cumberland, England
+2 ADDR Walkers Place, Charlotte Street
+1 EVEN was age 35 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 EVEN was age 47 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 48 Brook Street
+1 FAMS @F17@
+1 FAMC @F48@
+1 _UID 9F61050E-218E-4EB9-B8A5-EA7165EF9932
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I84@ INDI
+1 NAME Lucy /Paine/
+2 GIVN Lucy
+2 SURN Paine
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045697&source=GBC/1881/0005045696
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708322&source=GBC/1861/0003708324
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_843294020
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_854640556
+1 NAME Lucy /Stevens/
+2 GIVN Lucy
+2 SURN Stevens
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045697&source=GBC/1881/0005045696
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708322&source=GBC/1861/0003708324
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1817
+2 PLAC Pyecombe, Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708322&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045697&source=GBC/1881/0005045696
+1 EVEN was age 44 and the wife of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708322&source=GBC/1861/0003708324
+1 EVEN was age 64 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Powder Mill Cottage
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 13; Page: 1; Schedule: 63; HouseHoldID: 1030960; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045697&source=GBC/1881/0005045696
+1 RESI
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708322&source=GBC/1861/0003708324
+1 FAMS @F19@
+1 FAMC @F65@
+1 _UID ECCD13B5-AE20-4520-AAB0-2696F4776B6F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:13
+0 @I85@ INDI
+1 NAME Malcolm Reginald /Clark/
+2 GIVN Malcolm Reginald
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 622; Line Number: 144; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1950/2/AZ/000231/144
+2 SOUR @S3@
+3 PAGE Entry number: 299; District number: 0611K; Register number: K19B; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/2003/1/85385051
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 873; Line Number: 162; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1966/2/AZ/000254/162
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 660; Line Number: 101; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1948/4/AZ/000230/101
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 743; Line Number: 44; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1956/1/AZ/000239/044
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 596; Line Number: 128; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1951/3/AZ/000217/128
+2 SOUR @S1@
+3 PAGE Volume: 6B; Page: 620; Line Number: 96; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1954/3/AZ/000225/096
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1923
+2 PLAC Billericay, Essex, England
+2 SOUR @S3@
+3 PAGE Entry number: 299; District number: 0611K; Register number: K19B; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/2003/1/85385051
+2 SOUR @S1@
+3 PAGE Volume: 4A; Page: 1098; Line Number: 126; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/2/AZ/000237/126
+1 DEAT
+2 _PRIM Y
+2 DATE Feb 2003
+2 PLAC Birmingham, Warwickshire, England, United Kingdom
+2 SOUR @S3@
+3 PAGE Entry number: 299; District number: 0611K; Register number: K19B; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/2003/1/85385051
+1 FAMS @F1@
+1 FAMC @F8@
+1 _UID 83C56714-FFE5-48EA-8A97-4E54D73CFAE6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:59
+0 @I86@ INDI
+1 NAME John /Muir/
+2 GIVN John
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1879
+2 PLAC Carlisle, Cumberland, England
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1891
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 12 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 FAMC @F48@
+1 _UID E7AFF78A-7302-47F8-B4F1-51850684D53A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I87@ INDI
+1 NAME Mary /Shawyer/
+2 GIVN Mary
+2 SURN Shawyer
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425011&source=GBC/1851/0006425010
+2 SOUR @S19@
+3 PAGE Batch number: I04389-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846918460
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835731&source=GBC/1871/0015835730
+1 NAME /Coker/
+2 SURN Coker
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835731&source=GBC/1871/0015835730
+1 SEX F
+1 BIRT
+2 DATE 1820
+2 PLAC Portchester, Hampshire, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835731&source=GBC/1871/0015835730
+1 BIRT
+2 _PRIM Y
+2 DATE 1821
+2 PLAC Portchester, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425011&source=GBC/1851/0006425010
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425011&source=GBC/1851/0006425010
+1 EVEN was age 30 and the wife of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425011&source=GBC/1851/0006425010
+1 EVEN was age 51 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835731&source=GBC/1871/0015835730
+1 RESI
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835731&source=GBC/1871/0015835730
+1 FAMS @F15@
+1 FAMC @F117@
+1 _UID 87DEFF5B-7617-4F8E-8DA0-FA330B63E0E9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I88@ INDI
+1 NAME Hugh /Smith/
+2 GIVN Hugh
+2 SURN Smith
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 870; Line Number: 59; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/2/AZ/001466/059
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 81/W13/1A/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdo
+4 CONC m;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00416214
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 588; Line number: 33; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1954/1/AZ/001119/033
+2 SOUR @S16@
+3 PAGE Volume: 2B; Page number: 2373; Line Number: 39; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1939/3/PZ/000359/039
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Mar 1913
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 870; Line Number: 59; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/2/AZ/001466/059
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 81/W13/1A/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdo
+4 CONC m;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00416214
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1954
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 6B; Page: 588; Line number: 33; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1954/1/AZ/001119/033
+1 BAPM
+2 _PRIM Y
+2 DATE 14 Dec 1913
+2 PLAC St Peter's Chapel, Daniel Street, Portsmouth, Hampshire, England
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 81/W13/1A/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdo
+4 CONC m;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00416214
+1 FAMS @F2@
+1 FAMC @F10@
+1 _UID 144F170E-3BB1-4C0B-A03C-33F683DCBF59
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:02
+0 @I89@ INDI
+1 NAME Margaret /Paterson/
+2 GIVN Margaret
+2 SURN Paterson
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1851
+1 DEAT
+2 _PRIM Y
+2 DATE 1913
+1 FAMS @F26@
+1 FAMC @F28@
+1 _UID A3FB82F4-4AFB-4931-A1FE-4CACCD7B820F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I90@ INDI
+1 NAME Reuben Herbert /Thorpe/
+2 GIVN Reuben Herbert
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477962&source=GBC/1901/0007477958
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/7&source=GBC/1911/RG14/04762/0219/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1891
+2 PLAC St Leonard's, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477962&source=GBC/1901/0007477958
+1 OCCU Piano Tuner
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/7&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477962&source=GBC/1901/0007477958
+1 EVEN was age 0 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112460&source=GBC/1891/0006112453
+1 EVEN was age 10 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477962&source=GBC/1901/0007477958
+1 EVEN was age 20 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/7&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/7&source=GBC/1911/RG14/04762/0219/1
+1 FAMC @F6@
+1 _UID 661B9497-1FA0-4D56-B597-58C773A95A41
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I91@ INDI
+1 NAME Mary Ann /Smee/
+2 GIVN Mary Ann
+2 SURN Smee
+2 _PRIM Y
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 22 Nov 1837
+2 PLAC Beckwith Green, East Braintree, Essex
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Apr 1910
+2 PLAC 13, Union Road, Leytonstone. - West Ham workhouse/infirmary
+1 PROB
+2 _PRIM Y
+2 DATE 28 Apr 1910
+2 PLAC London
+1 OCCU Agricultural Labourers Wife
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Braintree, Essex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520341
+1 RESI
+2 _PRIM Y
+2 DATE 1910
+2 PLAC 45, Marcus Street, West Ham
+1 EVEN was age 33 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+1 EVEN was age 45 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Milton Road
+1 EVEN was age 24 and the wife of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Braintree, Essex, England
+2 ADDR Beckwiths Green
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520341
+1 RESI
+2 DATE 1861
+2 PLAC Braintree, Essex, England
+2 ADDR Beckwiths Green
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520341
+1 FAMS @F42@
+1 FAMC @F43@
+1 _UID 7C080083-DF3A-4E5D-B942-549E216F0788
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I92@ INDI
+1 NAME Robert /Waldron/
+2 GIVN Robert
+2 SURN Waldron
+2 _PRIM Y
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 SEX M
+1 OCCU Cordwainer
+2 _PRIM Y
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 FAMS @F39@
+1 _UID BFFA5816-433E-4009-975E-341CBFC340C3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I93@ INDI
+1 NAME John /Allmey/
+2 GIVN John
+2 SURN Allmey
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Jan 1797
+2 PLAC Smeeton Westerby, Leicestershire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 2 Feb 1869
+2 PLAC Sheffield, Yorkshire, England
+1 FAMS @F35@
+1 FAMC @F36@
+1 _UID 56DF8EF6-D057-4501-8AF1-D22EFFD55D80
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I94@ INDI
+1 NAME Ethel /Lack/
+2 GIVN Ethel
+2 SURN Lack
+2 _PRIM Y
+1 SEX F
+1 FAMS @F24@
+1 _UID 8C2BC5E7-E32F-40C1-9B50-D1F7AEF3FB51
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I95@ INDI
+1 NAME James John /Thorpe/
+2 GIVN James John
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665185
+1 NAME James K /Thorpe/
+2 GIVN James K
+2 SURN Thorpe
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665182
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Feb 1809
+2 PLAC Fairlight, Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665185
+1 DEAT
+2 _PRIM Y
+2 DATE 31 Dec 1874
+2 PLAC Hastings, Sussex, England
+1 OCCU Retired Miller
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665185
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665182
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Guestling, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665185
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665182
+1 EVEN was age 52 and the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Guestling, Hastings, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page number: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665185
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665181&source=GBC/1861/0003665182
+1 EVEN was age 30
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Fairlight, Hastings, Sussex, England
+2 ADDR Winterston, Upper
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 1106; Folio number: 4; Page number: 1; Schedule: 926; HouseHoldID: 2769728; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0014803808
+1 RESI
+2 DATE 1841
+2 PLAC Fairlight, Sussex, England
+2 ADDR Winterston, Upper
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 1106; Folio number: 4; Page number: 1; Schedule: 926; HouseHoldID: 2769728; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0014803808
+1 FAMS @F20@
+1 FAMC @F21@
+1 _UID FEFE96A8-9863-413E-8DDD-12F60D719162
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I96@ INDI
+1 NAME Bertha /Thorpe/
+2 GIVN Bertha
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045857&source=GBC/1881/0005045856
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1874
+2 PLAC Hastings, Sussex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045857&source=GBC/1881/0005045856
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045857&source=GBC/1881/0005045856
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045857&source=GBC/1881/0005045856
+1 EVEN was age 7 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Church House
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045857&source=GBC/1881/0005045856
+1 FAMC @F6@
+1 _UID E3EBB5E5-62AD-4E8B-8A4E-96FC0CC480E8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I97@ INDI
+1 NAME Thomas /SMEE/
+2 GIVN Thomas
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Apr 1791
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 5 Jun 1791
+2 PLAC Independant, Bocking, Essex
+1 FAMC @F45@
+1 _UID AEE62059-AEEC-4928-8D78-1B732422A962
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I98@ INDI
+1 NAME George /SMEE/
+2 GIVN George
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 12 Sep 1770
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 17 Feb 1771
+2 PLAC Bocking, Essex
+1 FAMC @F45@
+1 _UID 912810EB-0A38-4B36-A8BE-13823531194A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I99@ INDI
+1 NAME David /Carle/
+2 GIVN David
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 FAMS @F30@
+1 _UID D187D417-C7E8-4D16-B262-BF718378E732
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I100@ INDI
+1 NAME John Roland /Thorpe/
+2 GIVN John Roland
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/3&source=GBC/1911/RG14/03112/0643/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1910
+2 PLAC Sussex St Leonards On Sea
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/3&source=GBC/1911/RG14/03112/0643/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Aldershot, Surrey, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/3&source=GBC/1911/RG14/03112/0643/1
+1 EVEN was age 1 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Aldershot, Farnham, Surrey, England
+2 ADDR 25 Gordon Road Aldershot
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 3112; Schedule: 321; HouseHoldID: 31120643; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/03112/0643/3&source=GBC/1911/RG14/03112/0643/1
+1 FAMC @F4@
+1 _UID FD05A756-725C-4EF3-895E-37B17AA1ECA2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I101@ INDI
+1 NAME Catharine A /Thorpe/
+2 GIVN Catharine A
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477961&source=GBC/1901/0007477958
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1889
+2 PLAC Shropshire, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477961&source=GBC/1901/0007477958
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112459&source=GBC/1891/0006112453
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477961&source=GBC/1901/0007477958
+1 EVEN was age 2 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112459&source=GBC/1891/0006112453
+1 EVEN was age 12 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477961&source=GBC/1901/0007477958
+1 FAMC @F6@
+1 _UID 1C52EEC3-232B-41A6-A08B-EEA156CC618B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I102@ INDI
+1 NAME Sarah /SMEE/
+2 GIVN Sarah
+2 SURN SMEE
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1835
+2 PLAC Braintree, Essex
+1 OCCU Silk Winder
+2 _PRIM Y
+1 FAMC @F43@
+1 _UID 837ADD8E-6A40-4B40-A636-142E9395EAD3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I103@ INDI
+1 NAME Thomas /SMEE/
+2 GIVN Thomas
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1814
+1 BAPM
+2 _PRIM Y
+2 DATE 17 Jan 1815
+2 PLAC Braintree, Essex
+1 FAMC @F44@
+1 _UID 453B8742-3ECA-460D-B5D0-C02EDE77CED3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I104@ INDI
+1 NAME Christian /Sim/
+2 GIVN Christian
+2 SURN Sim
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1833
+1 DEAT
+2 _PRIM Y
+2 DATE 1890
+1 FAMS @F30@
+1 _UID 39FB0477-285E-4EEC-9051-7D8596B2BF46
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I105@ INDI
+1 NAME Ellen Jane /Turner/
+2 GIVN Ellen Jane
+2 SURN Turner
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S16@
+3 PAGE Volume: 4A; Page number: 37; Line Number: 251; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1884/1/AZ/000044/251
+2 SOUR @S1@
+3 PAGE Volume: 4A; Page: 10; Line Number: 178; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1905/2/AZ/000113/178
+1 NAME Ellen /Clark/
+2 GIVN Ellen
+2 SURN Clark
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/8
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 28 Jul 1867
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/1
+2 SOUR @S7@
+3 PAGE Line number: 40; Schedule: 60; Schedule Sub Number: 2; TNA reference: RG101/1043G/006/40; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/40
+1 OCCU Unpaid Domestic Duties
+2 _PRIM Y
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 SOUR @S7@
+3 PAGE Line number: 40; Schedule: 60; Schedule Sub Number: 2; TNA reference: RG101/1043G/006/40; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/40
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 43 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/8
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/2&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was recorded at this address
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 46 Emma Street
+2 SOUR @S7@
+3 PAGE Line number: 40; Schedule: 60; Schedule Sub Number: 2; TNA reference: RG101/1043G/006/40; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/40
+1 EVEN was age 34 and the wife of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428371&source=GBC/1901/0010428370
+1 RESI
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 46 Emma Street
+2 SOUR @S7@
+3 PAGE Line number: 40; Schedule: 60; Schedule Sub Number: 2; TNA reference: RG101/1043G/006/40; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/40
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428371&source=GBC/1901/0010428370
+1 FAMS @F33@
+1 _UID F8194708-9EAB-4A15-AB25-17EEAF54FBF5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I106@ INDI
+1 NAME Agnes /Muir/
+2 GIVN Agnes
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 870; Line Number: 59; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/2/AZ/001466/059
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 81/W13/1A/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdo
+4 CONC m;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00416214
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1889
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 2 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Caldewgate, Carlisle, Cumberland, England
+2 ADDR Walkers Place, Charlotte Street
+1 EVEN was age 12 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 FAMS @F10@
+1 FAMC @F17@
+1 _UID 9C2F4D6D-C3C9-4257-A964-4BCCA461676F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I107@ INDI
+1 NAME Gwendoline Maud /Clark/
+2 GIVN Gwendoline Maud
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S3@
+3 PAGE Entry number: 144; District number: 4971B; Register number: B61A; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, Eng
+4 CONC land;
+3 REF http://search.findmypast.com/record?id=BMD/D/2002/9/84855303
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 19 Jun 1927
+2 SOUR @S3@
+3 PAGE Entry number: 144; District number: 4971B; Register number: B61A; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, Eng
+4 CONC land;
+3 REF http://search.findmypast.com/record?id=BMD/D/2002/9/84855303
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 2002
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Entry number: 144; District number: 4971B; Register number: B61A; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, Eng
+4 CONC land;
+3 REF http://search.findmypast.com/record?id=BMD/D/2002/9/84855303
+1 FAMC @F8@
+1 _UID B9503D61-09D0-4115-83FF-F7AA08C4FF30
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I108@ INDI
+1 NAME Mary /SMEE/
+2 GIVN Mary
+2 SURN SMEE
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Mar 1789
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 24 May 1789
+2 PLAC Bocking, Essex
+1 FAMC @F45@
+1 _UID 19844300-8D5F-4541-9AC5-AA812EE73330
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I109@ INDI
+1 NAME William /Davidson/
+2 GIVN William
+2 SURN Davidson
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1831
+1 FAMS @F31@
+1 _UID 44BFDB8C-21D3-4E8D-A137-52E62B991015
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I110@ INDI
+1 NAME Kenneth //
+2 GIVN Kenneth
+2 _PRIM Y
+1 SEX M
+1 FAMS @F41@
+1 _UID 505455F5-0B6F-4F30-8B78-842530FB42EB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I111@ INDI
+1 NAME Ada Mary /Blackman/
+2 GIVN Ada Mary
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603869
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Aug 1879
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Volume: 2B; Page: 518; Line Number: 19; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1879/3/AZ/000053/019
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603871
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817867
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603871
+1 EVEN was age 1 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603875&source=GBC/1881/0005603871
+1 EVEN was age 11 and the stepdaughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Albert Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817867
+1 FAMC @F11@
+1 _UID D2CD453F-0565-4DA7-BB59-5172E675A05C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I112@ INDI
+1 NAME John James /Thorpe/
+2 GIVN John James
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477956&source=GBC/1901/0007477958
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/4&source=GBC/1911/RG14/04762/0219/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1878
+2 PLAC Sedlescombe, Sussex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477956&source=GBC/1901/0007477958
+1 OCCU Nursery Gardener
+2 _PRIM Y
+2 DATE 1901
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477956&source=GBC/1901/0007477958
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Hastings St Leonards, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477956&source=GBC/1901/0007477958
+1 EVEN was age 23 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Hastings St Leonards, Hastings, Sussex, England
+2 ADDR Aldborough Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 871; Folio: 106; Page: 29; Schedule: 202; HouseHoldID: 1375185; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0007477956&source=GBC/1901/0007477958
+1 EVEN was age 3 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Sedlescombe, Battle, Sussex, England
+2 ADDR Church House
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1033; Folio: 16; Page: 7; Schedule: 101; HouseHoldID: 1030998; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005045859&source=GBC/1881/0005045856
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Hastings, Sussex, England
+2 ADDR Brankcombe Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 765; Folio: 136; Page: 33; Schedule: 159; HouseHoldID: 1315490; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006112454&source=GBC/1891/0006112453
+1 EVEN was age 33 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/4&source=GBC/1911/RG14/04762/0219/1
+1 OCCU Gardener Nursery
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/4&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/4&source=GBC/1911/RG14/04762/0219/1
+1 FAMC @F6@
+1 _UID 492939FD-4E24-49CE-ADA8-434DD4F7AA6C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I113@ INDI
+1 NAME Frederick R /Waldron/
+2 GIVN Frederick R
+2 SURN Waldron
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/3&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513235&source=GBC/1901/0009513232
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1888
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/3&source=GBC/1911/RG14/05550/0637/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513235&source=GBC/1901/0009513232
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Feb 1915
+2 PLAC Southsea, Hampshire, England
+2 ADDR 29 Duncan Road
+1 OCCU Engine Fitter
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/3&source=GBC/1911/RG14/05550/0637/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/3&source=GBC/1911/RG14/05550/0637/1
+1 EVEN was age 23 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/3&source=GBC/1911/RG14/05550/0637/1
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513235&source=GBC/1901/0009513232
+1 RESI
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513235&source=GBC/1901/0009513232
+1 NOTE https://search.findmypast.co.uk/bna/viewarticle?id=bl%2f0000290%2f19150223%2f046
+1 FAMC @F12@
+1 _UID 412EB82A-DFC3-4E9B-992E-2F7E089B414C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:31
+0 @I114@ INDI
+1 NAME Joseph /SMEE/
+2 GIVN Joseph
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 22 Mar 1805
+2 PLAC Braintree, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 6 Sep 1809
+2 PLAC Braintree, Essex
+1 FAMC @F44@
+1 _UID 92C41B98-81BC-48AA-824C-C3AF40878549
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I115@ INDI
+1 NAME Joseph /Clark/
+2 GIVN Joseph
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/7&source=GBC/1911/RG14/09474/0435/1
+1 NAME Josiah /Clark/
+2 GIVN Josiah
+2 SURN Clark
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428375&source=GBC/1901/0010428370
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 20 Jul 1894
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/7&source=GBC/1911/RG14/09474/0435/1
+1 OCCU Yard Boy At Jam Factory
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/7&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/7&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428375&source=GBC/1901/0010428370
+1 EVEN was age 16 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/7&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428375&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID BFA40E4F-A532-4E40-8093-050171662A8C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I116@ INDI
+1 NAME Margaret /Martin/
+2 GIVN Margaret
+2 SURN Martin
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104185&source=GBC/1871/0011104190
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230692&source=GBC/1861/0014230691
+1 NAME Margaret /Allmey/
+2 GIVN Margaret
+2 SURN Allmey
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104185&source=GBC/1871/0011104190
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230692&source=GBC/1861/0014230691
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1829
+2 PLAC Manchester, Lancashire, England, United Kingdom
+1 OCCU Grocer
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508556&source=GBC/1881/0016508560
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508556&source=GBC/1881/0016508560
+1 EVEN was age 32 and the wife of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Parliament Place
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230692&source=GBC/1861/0014230691
+1 EVEN was age 42 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104185&source=GBC/1871/0011104190
+1 EVEN was age 53 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508556&source=GBC/1881/0016508560
+1 FAMS @F34@
+1 _UID F41C3E93-1F06-4144-81CE-CBB344DA2AAB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I117@ INDI
+1 NAME Jane /Edmunds/
+2 GIVN Jane
+2 SURN Edmunds
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1862
+2 PLAC Surrey, England, United Kingdom
+1 FAMC @F9@
+1 _UID ACAB89B5-0391-45C1-AB74-CCECB2D73A75
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I118@ INDI
+1 NAME Josiah /Blackman/
+2 GIVN Josiah
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Jun 1843
+2 PLAC Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346867
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346863
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346868&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 804D8545-0D72-4DAA-ADB1-F9159EDAFFCF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I119@ INDI
+1 NAME Margaret Annie /Wilson/
+2 GIVN Margaret Annie
+2 SURN Wilson
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/3
+2 SOUR @S21@
+3 PAGE Archive: Essex Record Office; Record set: Essex Baptism Index 1538-1920; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-BAP/1466690
+1 NAME Margaret Annie /Allmey/
+2 GIVN Margaret Annie
+2 SURN Allmey
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/3
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Feb 1868
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672412&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Volume: 8B; Page: 399; Line Number: 175; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1868/1/AZ/000783/175
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672412&source=GBC/1901/0011672414
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/4
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, London, Essex, England
+2 ADDR Grove Crescent
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/3
+1 EVEN was age 23 and the wife of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC East Ham, West Ham, London & Essex, England, London, Essex
+2 ADDR Monega Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 1339; Folio: 13; Page: 27; Schedule: 122; HouseHoldID: 2120631; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0009927812&source=GBC/1891/0009927811
+1 EVEN was age 33 and the wife of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Ilford, Romford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672412&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672412&source=GBC/1901/0011672414
+1 EVEN was age 42 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/4
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 DATE 1901
+2 PLAC Ilford, Essex, England
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672412&source=GBC/1901/0011672414
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/2&source=GBC/1911/RG14/09750/0459/4
+1 FAMS @F13@
+1 _UID 86D26D75-D945-46D1-AFFD-EE86B5B3DBC7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I120@ INDI
+1 NAME William Paterson /Sutherland/
+2 GIVN William Paterson
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1894
+1 FAMC @F26@
+1 _UID 6EEE5EAA-7196-44A9-AB76-10DE41000D25
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I121@ INDI
+1 NAME James /Coker/
+2 GIVN James
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425015&source=GBC/1851/0006425010
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1849
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425015&source=GBC/1851/0006425010
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425015&source=GBC/1851/0006425010
+1 EVEN was age 2 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425015&source=GBC/1851/0006425010
+1 FAMC @F15@
+1 _UID 0AE9AF6F-1E87-4B74-AAE4-C18CDD41A2C8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I122@ INDI
+1 NAME Elizabeth /Cooledge/
+2 GIVN Elizabeth
+2 SURN Cooledge
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1745
+2 PLAC Layston, Hertfordshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 2 Sep 1744
+2 PLAC Layston, Hertford, England
+1 FAMS @F45@
+1 FAMC @F46@
+1 _UID E7DE3E2C-5AA9-4959-BDA0-0B9BFA222E41
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I123@ INDI
+1 NAME William /Edmunds/
+2 GIVN William
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289796&source=GBC/1881/0003289798
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1833
+2 PLAC Middlesex, England, United Kingdom
+1 OCCU Civil Service Cook Prison Department
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289796&source=GBC/1881/0003289798
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289796&source=GBC/1881/0003289798
+1 EVEN was age 46 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289796&source=GBC/1881/0003289798
+1 FAMS @F9@
+1 _UID 2C80609C-6D69-4F74-8C0E-E8B005C5BAE2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:02
+0 @I124@ INDI
+1 NAME Maud Elizabeth /Clark/
+2 GIVN Maud Elizabeth
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428372&source=GBC/1901/0010428370
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1886
+2 PLAC West Ham, Essex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428372&source=GBC/1901/0010428370
+1 OCCU Silk Weaver
+2 _PRIM Y
+2 DATE 1901
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428372&source=GBC/1901/0010428370
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428372&source=GBC/1901/0010428370
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428372&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID C904F31E-857D-45C7-AE87-A259383E5AFD
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:32
+0 @I125@ INDI
+1 NAME Frederick H /Thorpe/
+2 GIVN Frederick H
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/21&source=TNA/R39/2278/2278F/007/19
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 27 Dec 1917
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/21&source=TNA/R39/2278/2278F/007/19
+1 OCCU Audit Clerk
+2 _PRIM Y
+2 DATE 1939
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/21&source=TNA/R39/2278/2278F/007/19
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 77 Margate Road
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/21&source=TNA/R39/2278/2278F/007/19
+1 EVEN was the son of the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 77 Margate Road
+2 SOUR @S7@
+3 PAGE Line number: 19; Schedule: 95; Schedule Sub Number: 2; TNA reference: RG101/2278F/007/19; Piece number: 2278F; Item number: 7; HouseHoldID: 3137004; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2278/2278F/007/21&source=TNA/R39/2278/2278F/007/19
+1 FAMC @F4@
+1 _UID C2AC48EB-B44C-4432-9443-013E416E9A0E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:33
+0 @I126@ INDI
+1 NAME Thomas /SMEE/
+2 GIVN Thomas
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 10 May 1769
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 29 Oct 1769
+2 PLAC Bocking, Essex
+1 FAMC @F45@
+1 _UID 89850BB1-8060-451B-A179-96AADBD0185C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I127@ INDI
+1 NAME Mary /Fletcher/
+2 GIVN Mary
+2 SURN Fletcher
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1801
+2 PLAC Kibworth Beauchamp, Leicestershire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 20 Oct 1856
+2 PLAC Stockport, Cheshire, England, United Kingdom
+1 FAMS @F35@
+1 _UID EB093463-9813-4653-AF4D-54B0476E9B3D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:59
+0 @I128@ INDI
+1 NAME Cornelia /Nichols/
+2 GIVN Cornelia
+2 SURN Nichols
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1759
+2 PLAC Gumley, Leicestershire, England, United Kingdom
+1 FAMS @F36@
+1 FAMC @F37@
+1 _UID 51678002-E347-4EAC-B9CF-500449D92D51
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I129@ INDI
+1 NAME Cyril John /Allmey/
+2 GIVN Cyril John
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/3
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1901
+2 PLAC Romford, Essex, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Volume: 4A; Page: 529; Line Number: 125; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1901/2/AZ/000011/125
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/5
+1 OCCU School
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, Essex, England
+2 ADDR Grove Crescent
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/5
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/6&source=GBC/1911/RG14/09750/0459/5
+1 FAMC @F13@
+1 _UID 622BB561-531C-4546-93DF-EE75D45E1466
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I130@ INDI
+1 NAME Martha /Coker/
+2 GIVN Martha
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 32/1A/1; Page: 117; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United
+4 CONC Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00511669
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603875
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899798&source=GBC/1871/0002899797
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603869
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425014&source=GBC/1851/0006425010
+1 NAME Martha /Blackman/
+2 GIVN Martha
+2 SURN Blackman
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603875
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899798&source=GBC/1871/0002899797
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603869
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1846
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603869
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425014&source=GBC/1851/0006425010
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899798&source=GBC/1871/0002899797
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603874
+1 DEAT
+2 _PRIM Y
+2 DATE 1892
+2 PLAC Portsea, Hampshire
+1 BAPM
+2 _PRIM Y
+2 DATE 31 May 1846
+2 PLAC St. Peter and St. Paul, Fareham, Hampshire, England
+1 OCCU Wife
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603874
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Gates Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899798&source=GBC/1871/0002899797
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603874
+1 EVEN was age 35 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603870&source=GBC/1881/0005603874
+1 EVEN was age 25 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Poplar, London, England, Middlesex
+2 ADDR Gates Street
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899798&source=GBC/1871/0002899797
+1 EVEN was age 5 and the daughter of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425014&source=GBC/1851/0006425010
+1 FAMS @F11@
+1 FAMC @F15@
+1 _UID E6272AE2-BCE7-4D1C-AF80-77E9A8DC9B49
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I131@ INDI
+1 NAME Jonathan /Satchell/
+2 GIVN Jonathan
+2 SURN Satchell
+2 _PRIM Y
+2 NICK John
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1782
+2 PLAC Newport, IOW, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381477&source=GBC/1851/0006381478
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1854
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 273; Line number: 9; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1854/1/MZ/000601/009
+1 BAPM
+2 _PRIM Y
+2 DATE 1782
+2 PLAC Newport, Hampshire, England
+2 SOUR
+3 PAGE Batch number: I03941-4; Record set: England Births & Baptisms 1538-1975; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_880611712
+1 OCCU Sawyer
+2 _PRIM Y
+2 DATE 1851
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381477&source=GBC/1851/0006381478
+1 EVEN was age 55
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Green Row
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1720; HouseHoldID: 2739587; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754037
+1 EVEN was age 68 and the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381477&source=GBC/1851/0006381478
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Portsea, Hampshire, England
+2 ADDR Green Row
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381477&source=GBC/1851/0006381478
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1720; HouseHoldID: 2739587; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754037
+1 FAMS @F57@
+1 FAMC @F63@
+1 _UID F39C47BF-E09B-4FFF-8BD8-79FD00DA7981
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I132@ INDI
+1 NAME Margaret /Clark/
+2 GIVN Margaret
+2 SURN Clark
+2 _PRIM Y
+1 SEX F
+1 FAMS @F41@
+1 FAMC @F8@
+1 _UID 5AC90023-D8F4-4936-836A-9602CFADA304
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:34
+0 @I133@ INDI
+1 NAME Mary Anne /SMEE/
+2 GIVN Mary Anne
+2 SURN SMEE
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 13 Nov 1808
+2 PLAC Braintree, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 6 Sep 1809
+2 PLAC Braintree, Essex
+1 FAMC @F44@
+1 _UID 9F86DF38-89BE-4193-B9FB-3D7678B2A1E2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:34
+0 @I134@ INDI
+1 NAME William /SMEE/
+2 GIVN William
+2 SURN SMEE
+2 _PRIM Y
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 6 Sep 1802
+2 PLAC Bocking, Essex
+1 DEAT
+2 _PRIM Y
+2 DATE 1880
+2 PLAC Braintree, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 27 May 1803
+2 PLAC St Michael the Archangel, Braintree, Essex.
+1 OCCU Jobbing Man/ Labourer
+2 _PRIM Y
+1 FAMS @F43@
+1 FAMC @F44@
+1 _UID 50434886-CF86-4F3D-BFC8-CBCF535E4293
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:15
+0 @I135@ INDI
+1 NAME Frederick Robert /Waldron/
+2 GIVN Frederick Robert
+2 SURN Waldron
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513234
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 358; Line Number: 7; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1858/2/RZ/000847/007
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1858
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513234
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 358; Line Number: 7; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1858/2/RZ/000847/007
+1 OCCU Steward (Marine)
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513234
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232
+1 EVEN was age 41 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513234
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Ashby Place
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513234
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232&source=GBC/1901/0009513235
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1002; Folio: 108; Page: 20; Schedule: 99; HouseHoldID: 1528679; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0009513232
+1 EVEN was age 52 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/1
+1 OCCU Decorator
+2 DATE 1901
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+1 OCCU House Decorator
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/1
+1 OCCU Domestic Servant
+2 DATE 1885
+2 PLAC Portsmouth, St Thomas, Hampshire, England
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 RESI
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Duncan Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 5550; Schedule: 319; HouseHoldID: 55500637; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05550/0637/1
+1 FAMS @F12@
+1 FAMC @F39@
+1 _UID E82E7655-9256-4306-8A1C-8543176D7201
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I136@ INDI
+1 NAME Sidney Richard /Edmunds/
+2 GIVN Sidney Richard
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 806; Line Number: 97; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/4/AZ/000434/097
+2 SOUR @S3@
+3 PAGE Volume: 20; Page: 0396; Line number: 7; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1978/4/AZ/000318/007
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Sep 1913
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 806; Line Number: 97; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/4/AZ/000434/097
+2 SOUR @S3@
+3 PAGE Volume: 20; Page: 0396; Line number: 7; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1978/4/AZ/000318/007
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1978
+2 PLAC North East Hants, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 20; Page: 0396; Line number: 7; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1978/4/AZ/000318/007
+1 FAMC @F3@
+1 _UID DED04FB1-AD23-437F-AFF0-B36E5718FDEB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:34
+0 @I137@ INDI
+1 NAME Robert William /Allmey/
+2 GIVN Robert William
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508558&source=GBC/1881/0016508560
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1863
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508558&source=GBC/1881/0016508560
+1 OCCU Rice Merchants Apprentice
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508558&source=GBC/1881/0016508560
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508558&source=GBC/1881/0016508560
+1 EVEN was age 8 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104188&source=GBC/1871/0011104190
+1 EVEN was age 18 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508558&source=GBC/1881/0016508560
+1 FAMC @F34@
+1 _UID 19069295-6EC7-4C17-AAFD-220DBA4E1C9F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I138@ INDI
+1 NAME William /SMEE/
+2 GIVN William
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1 Mar 1776
+2 PLAC Bocking, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 14 Jul 1776
+2 PLAC Bocking, Essex
+1 FAMC @F45@
+1 _UID D6266A38-D5F1-409C-A485-9A89443D7518
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I139@ INDI
+1 NAME James /SMEE/
+2 GIVN James
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Feb 1812
+2 PLAC Braintree, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 29 May 1812
+2 PLAC Braintree, Essex
+1 FAMC @F44@
+1 _UID 8815B3D9-8390-4D34-ABA6-0ECA374D11FE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I140@ INDI
+1 NAME Elizabeth /Smee/
+2 GIVN Elizabeth
+2 SURN Smee
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 8 May 1725
+2 PLAC Halstead, Essex, England
+1 FAMC @F47@
+1 _UID B8F93214-7E2A-4C2E-A5BF-333D94B8BDB0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I141@ INDI
+1 NAME Isabella /Hutcheson/
+2 GIVN Isabella
+2 SURN Hutcheson
+2 _PRIM Y
+2 SOUR @S24@
+3 PAGE Batch number: M11935-6; Record set: Scotland Marriages 1561-1910; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_694588194/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1813
+2 PLAC Edinburgh, Midlothian
+1 OCCU Liv On Priv Means
+2 _PRIM Y
+2 DATE 1891
+2 PLAC St Mary Edinburgh, St Andrew, Midlothian, Scotland
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC St Mary Edinburgh, Midlothian, Scotland
+1 EVEN was age 78 and the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC St Mary Edinburgh, St Andrew, Midlothian, Scotland
+2 ADDR Mansfield Place
+1 FAMS @F49@
+1 FAMC @F52@
+1 _UID 66C56606-3007-4F2C-959E-746886F1CAB6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I142@ INDI
+1 NAME John /Ledger/
+2 GIVN John
+2 SURN Ledger
+2 _PRIM Y
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 SEX M
+1 OCCU Labourer
+2 _PRIM Y
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 FAMS @F40@
+1 _UID 6B2BC043-6BC9-4282-BA27-051F119A8A4B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I143@ INDI
+1 NAME Elecia /Clark/
+2 GIVN Elecia
+2 SURN Clark
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Essex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1947
+2 PLAC West Ham, Essex
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC West Ham, Stratford, London, Essex, England
+2 ADDR Bridle Way
+1 EVEN was age 10 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+1 FAMC @F42@
+1 _UID B4E7FB6D-D101-4D87-BC34-BC9042995B98
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I144@ INDI
+1 NAME Harriet Alice /Thorpe/
+2 GIVN Harriet Alice
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Nov 1878
+2 PLAC Byron, Middlesex County, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 123
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 123
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Jul 1925
+2 PLAC Byron, Middlesex County, Ontario, Canada
+1 RESI Marital Status: SingleRelation to Head of House: Daughter
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMC @F61@
+1 _UID FDAF68BD-32D5-4F7E-A5BE-85FC32E0B12F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I145@ INDI
+1 NAME George /Smee/
+2 GIVN George
+2 SURN Smee
+2 _PRIM Y
+1 SEX M
+1 FAMS @F47@
+1 _UID 489B8645-7953-4A63-A3DF-F025D7050CE3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I146@ INDI
+1 NAME Susannah /LINDSELL/
+2 GIVN Susannah
+2 SURN LINDSELL
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 25 May 1778
+2 PLAC Braintree, Essex
+1 BAPM
+2 _PRIM Y
+2 DATE 3 Jul 1778
+2 PLAC Braintree, Essex
+1 FAMS @F44@
+1 FAMC @F53@
+1 _UID B50A5DB5-D307-4AFB-BF9B-F19E93BF53D8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I147@ INDI
+1 NAME John /Sutherland/
+2 GIVN John
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX M
+1 FAMS @F27@
+1 _UID 71A22B97-8B33-44C4-99A1-D5711ECF26D5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I148@ INDI
+1 NAME Alfred /Blackman/
+2 GIVN Alfred
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1844
+2 PLAC Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346867
+1 DEAT
+2 _PRIM Y
+2 DATE 1845
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346863
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346869&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 8659AB6F-8490-469B-A073-4CBDF24A216C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I149@ INDI
+1 NAME William /LINDSELL/
+2 GIVN William
+2 SURN LINDSELL
+2 _PRIM Y
+1 SEX M
+1 FAMS @F53@
+1 _UID B575020A-5C3F-496C-83FE-1B5C9C1910ED
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:07
+0 @I150@ INDI
+1 NAME Elizabeth /Clark/
+2 GIVN Elizabeth
+2 SURN Clark
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1866
+2 PLAC Braintree, Essex, England
+1 OCCU General Servant
+2 _PRIM Y
+2 DATE 1881
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC West Ham, London, Essex, England
+2 ADDR Milton Road
+1 EVEN was age 4 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Milton Road
+1 FAMC @F42@
+1 _UID 9B82357B-E75C-4480-9E7C-31F5C53044CB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I151@ INDI
+1 NAME Elizabeth /Gurney/
+2 GIVN Elizabeth
+2 SURN Gurney
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1698
+2 PLAC of, Halstead, Essex, England
+1 FAMS @F47@
+1 _UID A864FB29-27BF-42AF-B55C-56593BC93B97
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I152@ INDI
+1 NAME Horsey John Robert /Satchell/
+2 GIVN Horsey John Robert
+2 SURN Satchell
+2 _PRIM Y
+2 NICK Jack
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 6 May 1890
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 508; Line Number: 123; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1890/2/AZ/000495/123
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1974
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 20; Page: 0970; Line number: 6; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1974/4/AZ/001019/006
+1 BAPM
+2 _PRIM Y
+2 DATE 14 Jun 1890
+2 PLAC St Bartholomew, Southsea, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: CHU 32/1A/2; Page: 1; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00512350
+1 EVEN Royal Navy
+2 TYPE Military service
+2 _PRIM Y
+1 OCCU Ldg Cks Mate R N
+2 _PRIM Y
+2 DATE 1915
+2 PLAC Southsea, St Bartholomew, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: CHU 32/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00193330/1
+1 FAMC @F16@
+1 _UID EC1CEA1A-2EAD-4799-8AAC-64BD8C62AE6D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I153@ INDI
+1 NAME David /Carle/
+2 GIVN David
+2 SURN Carle
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1851
+1 FAMC @F30@
+1 _UID 6D7E9025-717E-45B2-A592-9E3CC82670C0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I154@ INDI
+1 NAME Emily Florence /Clark/
+2 GIVN Emily Florence
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/10&source=GBC/1911/RG14/09474/0435/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428378&source=GBC/1901/0010428370
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1899
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/10&source=GBC/1911/RG14/09474/0435/1
+1 OCCU School
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/10&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/10&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 1 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428378&source=GBC/1901/0010428370
+1 EVEN was age 12 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/10&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428378&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID 17E534B6-1062-4516-8B37-4D53F10B75F4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I155@ INDI
+1 NAME William /Satchell/
+2 GIVN William
+2 SURN Satchell
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715623&source=GBC/1871/0015715624
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 10 Mar 1846
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 7; Page: 144; Line Number: 39; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1846/2/RZ/000220/039
+1 DEAT
+2 _PRIM Y
+2 DATE 1886
+2 PLAC Portsea Island, Hampshire, England
+1 EVEN Joined Royal Navy
+2 TYPE Military service
+2 _PRIM Y
+2 DATE 22 Jan 1858
+1 OCCU Naval Pensioner
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601878
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715623
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601878
+1 EVEN Was aged 5 and son of head of household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 14 Green Row
+1 EVEN Boy second class aged 16 - on same ship as brother John.
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 PLAC HMS Algiers
+1 EVEN was age 25 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Finsbury Street
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715623
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715623&source=GBC/1871/0015715624
+1 EVEN was age 35 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601878
+1 FAMS @F58@
+1 FAMC @F55@
+1 _UID 77F259A8-F575-4A96-A966-826EFDCF74EA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:18
+0 @I156@ INDI
+1 NAME Edmund /Blackman/
+2 GIVN Edmund
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1847
+2 PLAC Kingston, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346863
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346863
+1 EVEN was age 4 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346870&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 86F51F38-F91C-4BB8-B949-95DAD46728AC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I157@ INDI
+1 NAME William /Muir/
+2 GIVN William
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S23@
+3 PAGE Batch number: C11680-2; Record set: Scotland Births & Baptisms 1564-1950; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_685973048
+2 SOUR @S24@
+3 PAGE Batch number: M11935-6; Record set: Scotland Marriages 1561-1910; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_694588194/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1789
+2 PLAC Midlothian, Scotland, Cranston
+2 SOUR @S23@
+3 PAGE Batch number: C11680-2; Record set: Scotland Births & Baptisms 1564-1950; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_685973048
+1 DEAT
+2 _PRIM Y
+2 DATE 24 Dec 1845
+2 PLAC Canongate Kirkyard, Midlothian, Scotland
+1 BAPM
+2 _PRIM Y
+2 DATE 22 Mar 1789
+2 PLAC Cranston, Midlothian, Scotland
+2 SOUR @S23@
+3 PAGE Batch number: C11680-2; Record set: Scotland Births & Baptisms 1564-1950; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_685973048
+1 FAMS @F49@
+1 FAMC @F50@
+1 _UID 8C32C0F8-436F-46A6-A16F-C051CBD4C10C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I158@ INDI
+1 NAME James /Blackman/
+2 GIVN James
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346867
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415&source=GBC/1841/0013536416
+2 SOUR @S19@
+3 PAGE Batch number: M01634-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846948295/2
+2 SOUR @S26@
+3 PAGE Record set: Hampshire Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/M/810102813/4
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346863
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086&source=GBC/1861/0004068087
+1 SEX M
+1 BIRT
+2 DATE 1806
+2 PLAC East Meon, Hampshire, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415&source=GBC/1841/0013536416
+1 BIRT
+2 _PRIM Y
+2 DATE 10 Oct 1802
+2 PLAC East Meon, Hampshire, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346867
+1 DEAT
+2 _PRIM Y
+2 DATE Dec 1880
+2 PLAC Portsea, Hampshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 10 Oct 1802
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800203740/1
+1 EVEN was age 35
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415&source=GBC/1841/0013536416
+1 EVEN was age 47 and the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346863
+1 OCCU Farm Labourer
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346863
+1 EVEN was age 57 and the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Marys Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086&source=GBC/1861/0004068087
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086
+1 OCCU Gardener Labourer
+2 DATE 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: CHU 3/1D/48; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00114257/1
+2 SOUR
+3 PAGE Archive reference: CHU 3/1D/48; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00114257/2
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346863
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086&source=GBC/1861/0004068087
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086
+1 RESI
+2 DATE 1861
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Marys Road
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346862&source=GBC/1851/0006346863
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086&source=GBC/1861/0004068087
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536415
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068086
+1 FAMS @F14@
+1 FAMS @F60@
+1 FAMC @F59@
+1 _UID 5F50D7CA-E9A3-49E7-BFC4-95B819A00269
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:23
+0 @I159@ INDI
+1 NAME Alexander /Sutherland/
+2 GIVN Alexander
+2 SURN Sutherland
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1891
+1 FAMC @F26@
+1 _UID 09ACF4D1-C796-4EE3-B39A-C9977E788DE8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I160@ INDI
+1 NAME David /SMEE/
+2 GIVN David
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1833
+2 PLAC Essex
+1 FAMC @F43@
+1 _UID FEBCAEB5-429E-4A06-A662-A126FEB95426
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I161@ INDI
+1 NAME Rosina /Blackman/
+2 GIVN Rosina
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 718; Line Number: 56; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1919/1/AZ/000312/056
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1238; Line Number: 86; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1912/4/AZ/000094/086
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1238; Line Number: 20; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1912/4/AZ/000305/020
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 861; Line Number: 130; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1916/3/AZ/000409/130
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 806; Line Number: 97; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1913/4/AZ/000434/097
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 982; Line Number: 55; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1920/4/AZ/000427/055
+2 SOUR @S1@
+3 PAGE Volume: 2B; Page: 815; Line Number: 117; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1925/1/AZ/000367/117
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 32/1A/1; Page: 117; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United
+4 CONC Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00511669
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 33/1A/4; Page: 4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00448119
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Nov 1885
+2 PLAC Southsea, St Bartholomew, Hampshire, England
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 32/1A/1; Page: 117; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United
+4 CONC Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00511669
+2 SOUR @S3@
+3 PAGE Volume: 20; Page: 0729; Line number: 100; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1975/4/AZ/000321/100
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/02
+1 DEAT
+2 _PRIM Y
+2 DATE 1974
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S3@
+3 PAGE Volume: 20; Page: 0729; Line number: 100; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1975/4/AZ/000321/100
+1 BAPM
+2 _PRIM Y
+2 DATE 20 Dec 1885
+2 PLAC St Bartholomew, Southsea, Hampshire, England
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 32/1A/1; Page: 117; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United
+4 CONC Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00511669
+1 OCCU Unpaid Domestic Duties
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/02
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 26 Grenville Road
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/02
+1 EVEN was the wife of the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 26 Grenville Road
+2 SOUR @S7@
+3 PAGE Line number: 2; Schedule: 224; Schedule Sub Number: 2; TNA reference: RG101/2273A/017/2; Piece number: 2273A; Item number: 17; HouseHoldID: 3126878; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/2273/2273A/017/02
+1 EVEN was age 5 and the stepdaughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 876; Folio: 12; Page: 18; Schedule: 127; HouseHoldID: 1464509; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006817869
+1 FAMS @F3@
+1 FAMC @F11@
+1 _UID 1E990BBC-4023-4CCD-BA61-1497E6432A88
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:14
+0 @I162@ INDI
+1 NAME William /Muir/
+2 GIVN William
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361840&source=GBC/1871/0021361838
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1867
+2 PLAC Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361840&source=GBC/1871/0021361838
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361840&source=GBC/1871/0021361838
+1 EVEN was age 4 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361840&source=GBC/1871/0021361838
+1 FAMC @F48@
+1 _UID 854E0AB5-5FE5-408C-97F7-3A8F7A6F5473
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I163@ INDI
+1 NAME Richard /SMEE/
+2 GIVN Richard
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 19 May 1784
+2 PLAC Shalford, Essex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Apr 1854
+2 PLAC Braintree Essex England
+1 BAPM
+2 _PRIM Y
+2 DATE 15 Jun 1783
+2 PLAC Independant, Bocking, Essex
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Braintree, Essex, England
+1 FAMC @F45@
+1 _UID 52611B5C-CF3F-4B8E-980F-0F03D82DAA5A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I164@ INDI
+1 NAME Amy /Allmey/
+2 GIVN Amy
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104187&source=GBC/1871/0011104190
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230696&source=GBC/1861/0014230691
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Lancashire, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104187&source=GBC/1871/0011104190
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1878
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S3@
+3 PAGE Volume: 8B; Page: 106; Line number: 39; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1878/4/AZ/000007/039
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104187&source=GBC/1871/0011104190
+1 EVEN was age 0 and the daughter of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Parliament Place
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230696&source=GBC/1861/0014230691
+1 EVEN was age 10 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104187&source=GBC/1871/0011104190
+1 FAMC @F34@
+1 _UID A4FB52B4-137D-44DD-9887-0CEA82FCE4F0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I165@ INDI
+1 NAME Joseph /Smee/
+2 GIVN Joseph
+2 SURN Smee
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 31 May 1789
+2 PLAC Bocking, Essex, England
+1 FAMC @F45@
+1 _UID 2539B735-CFC7-4992-9715-EC285F596003
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I166@ INDI
+1 NAME William Arthur /Clark/
+2 GIVN William Arthur
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/3&source=GBC/1911/RG14/09474/0435/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Sep 1888
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/3&source=GBC/1911/RG14/09474/0435/1
+1 OCCU Coconut Presser
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/3&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/3&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 12 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428373&source=GBC/1901/0010428370
+1 EVEN was age 22 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/3&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428373&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID FC147112-34ED-4952-AEFC-4249DD2C9910
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I167@ INDI
+1 NAME Jean /Nisbet/
+2 GIVN Jean
+2 SURN Nisbet
+2 _PRIM Y
+1 SEX F
+1 FAMS @F52@
+1 _UID 34B79646-D1C3-45FE-B37E-90167D4D26FC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I168@ INDI
+1 NAME Samuel Huffman /Thorpe/
+2 GIVN Samuel Huffman
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 21 Apr 1875
+2 PLAC London, Ontario Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1911; Census Place: 33, London City, Ontario; Page: 14; Family No: 168
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 71; Census Place: Ward 3, London, Ontario; Page Number: 13
+2 SOUR
+3 PAGE Year: 1901; Census Place: Westminster, Middlesex (south/sud), Ontario; Page: 13; Family No: 136
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1911; Census Place: 33, London City, Ontario; Page: 14; Family No: 168
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 71; Census Place: Ward 3, London, Ontario; Page Number: 13
+2 SOUR
+3 PAGE Year: 1901; Census Place: Westminster, Middlesex (south/sud), Ontario; Page: 13; Family No: 136
+1 RESI
+2 _PRIM Y
+2 DATE 1958
+2 PLAC London, Ontario, Canada
+1 FAMC @F61@
+1 _UID 6BF219E3-436C-456F-9229-F34D17296DD0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I169@ INDI
+1 NAME Alicia /Rosenberry/
+2 GIVN Alicia
+2 SURN Rosenberry
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 DATE 1485
+1 BIRT
+2 DATE 1485
+2 PLAC England
+1 BIRT
+2 _PRIM Y
+2 DATE 1480
+1 DEAT Berkhampsted, Suffolk, England
+2 _PRIM Y
+2 DATE 1515
+2 CAUS Berkhampsted, Suffolk, England
+2 PLAC Hertfordshire, England
+1 FAMS @F73@
+1 FAMC @F94@
+1 _UID CE86F34D-71FF-430F-B530-5867849CFCD2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I170@ INDI
+1 NAME Maria /Edmunds/
+2 GIVN Maria
+2 SURN Edmunds
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289799&source=GBC/1881/0003289798
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1866
+2 PLAC Richmond, Surrey, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289799&source=GBC/1881/0003289798
+1 OCCU None
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289799&source=GBC/1881/0003289798
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Wandsworth, London, Surrey, England
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289799&source=GBC/1881/0003289798
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Wandsworth, London & Surrey, England, London, Surrey
+2 ADDR Wardley Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 659; Folio: 133; Page: 6; Schedule: 900; HouseHoldID: 688159; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0003289799&source=GBC/1881/0003289798
+1 FAMC @F9@
+1 _UID 0D69E501-5953-4059-8298-763580348C68
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I171@ INDI
+1 NAME Mary /Norman/
+2 GIVN Mary
+2 SURN Norman
+2 _PRIM Y
+2 SOUR @S22@
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202354/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 22 Nov 1719
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 14 Oct 1785
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire Burials; Subcategory: Parish Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/D/805501296/1
+1 FAMS @F66@
+1 FAMC @F89@
+1 _UID 5091144D-2749-4C15-9B8F-4D3B4A4D5133
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I172@ INDI
+1 NAME Frederick George /Blackman/
+2 GIVN Frederick George
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603869
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt Aug 1872
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Volume: 2B; Page: 419; Line Number: 27; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1872/3/AZ/000059/027
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603871
+1 DEAT
+2 _PRIM Y
+2 DATE abt May 1938
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 688; Line number: 139; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1938/2/AZ/000079/139
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603871
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603871
+1 EVEN was age 8 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603872&source=GBC/1881/0005603871
+1 FAMC @F11@
+1 _UID 40B48CDD-F719-4E77-A7F6-BE680A690D00
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I173@ INDI
+1 NAME Mansur John /Thorpe/
+2 GIVN Mansur John
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 26 Feb 1836
+2 PLAC Fairlight, Sussex, England
+2 SOUR
+3 PAGE Class: HO107; Piece: 1635; Folio: 69; Page: 14; GSU roll: 193538
+2 SOUR
+3 PAGE Class: RG 9; Piece: 561; Folio: 203; Page: 61; GSU roll: 542662
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Place: Ontario, Canada; Year: 1871; Page Number: 211
+2 SOUR
+3 PAGE New York State Archives, Cultural Education Center, Albany, New York; New York Civil War Muster Roll Abstracts, 1861-1900; Archive Collection #: 13775-83; Box #: 897; Roll #: 553
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; County Marriage Registers, 1858-June 1869; Series: MS248; Reel: 13
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Class: HO107; Piece: 1635; Folio: 69; Page: 14; GSU roll: 193538
+2 SOUR
+3 PAGE Class: RG 9; Piece: 561; Folio: 203; Page: 61; GSU roll: 542662
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Place: Ontario, Canada; Year: 1871; Page Number: 211
+2 SOUR
+3 PAGE New York State Archives, Cultural Education Center, Albany, New York; New York Civil War Muster Roll Abstracts, 1861-1900; Archive Collection #: 13775-83; Box #: 897; Roll #: 553
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; County Marriage Registers, 1858-June 1869; Series: MS248; Reel: 13
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Class: HO107; Piece: 1635; Folio: 69; Page: 14; GSU roll: 193538
+2 SOUR
+3 PAGE Class: RG 9; Piece: 561; Folio: 203; Page: 61; GSU roll: 542662
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Place: Ontario, Canada; Year: 1871; Page Number: 211
+2 SOUR
+3 PAGE New York State Archives, Cultural Education Center, Albany, New York; New York Civil War Muster Roll Abstracts, 1861-1900; Archive Collection #: 13775-83; Box #: 897; Roll #: 553
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; County Marriage Registers, 1858-June 1869; Series: MS248; Reel: 13
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 3 Feb 1895
+2 PLAC Fairlight, East Sussex, England
+1 BURI
+2 _PRIM Y
+2 PLAC Woodland, London, Middlesex County, Ontario, Canada
+1 EVEN
+2 TYPE Military service
+2 _PRIM Y
+2 DATE 25 Jul 1863
+2 PLAC Buffalo, New York
+2 SOUR
+3 PAGE New York State Archives, Cultural Education Center, Albany, New York; New York Civil War Muster Roll Abstracts, 1861-1900; Archive Collection #: 13775-83; Box #: 897; Roll #: 553
+2 SOUR
+3 PAGE New York State Archives, Cultural Education Center, Albany, New York; New York Civil War Muster Roll Abstracts, 1861-1900; Archive Collection #: 13775-83; Box #: 897; Roll #: 553
+2 SOUR
+3 PAGE New York State Archives, Cultural Education Center, Albany, New York; New York Civil War Muster Roll Abstracts, 1861-1900; Archive Collection #: 13775-83; Box #: 897; Roll #: 553
+1 RESI Marital Status: MarriedRelation to Head of House: Head
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 EVEN
+2 TYPE Arrival
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Ontario, Canada
+2 SOUR
+3 PAGE Place: Ontario, Canada; Year: 1871; Page Number: 211
+2 SOUR
+3 PAGE Place: Ontario, Canada; Year: 1871; Page Number: 211
+2 SOUR
+3 PAGE Place: Ontario, Canada; Year: 1871; Page Number: 211
+1 FAMS @F61@
+1 FAMC @F20@
+1 _UID 657309E6-12B2-4A47-81FD-46241CBA532D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:07
+0 @I174@ INDI
+1 NAME Sarah Jane /Muir/
+2 GIVN Sarah Jane
+2 SURN Muir
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1876
+2 PLAC Cumberland Carlisle
+1 OCCU Dressmaker Apprentice
+2 _PRIM Y
+2 DATE 1891
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 16 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 35 and the wife of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 16 South View Terrace Carlisle
+1 FAMC @F48@
+1 _UID F6F237DE-D2EF-4D18-846E-3D14F9B694AE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I175@ INDI
+1 NAME Margery /Dumbrell/
+2 GIVN Margery
+2 SURN Dumbrell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1553
+2 PLAC Rottingdean, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1617
+2 PLAC Rottingdean, Sussex, England
+1 FAMS @F71@
+1 FAMS @F93@
+1 FAMC @F92@
+1 _UID 5317C72C-9750-47A6-892C-30C6B43F1F0D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I176@ INDI
+1 NAME Harriet /Sutton/
+2 GIVN Harriet
+2 SURN Sutton
+2 _PRIM Y
+2 SOUR @S19@
+3 PAGE Batch number: M01634-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846948295/2
+1 NAME /Blackman/
+2 SURN Blackman
+2 TYPE MarriedName
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346862
+1 NAME Harriett /Sutton/
+2 GIVN Harriett
+2 SURN Sutton
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536416
+1 NAME Harriett /Sutton/
+2 GIVN Harriett
+2 SURN Sutton
+2 SOUR @S26@
+3 PAGE Record set: Hampshire Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/M/810102813/4
+1 SEX F
+1 BIRT
+2 DATE 1806
+2 PLAC Twyford, Hampshire, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536416
+1 BIRT
+2 DATE 1805
+2 PLAC Twyford, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1160; Folio: 92; Page: 25; Schedule: 705; HouseHoldID: 1140503; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005596265
+1 BIRT
+2 _PRIM Y
+2 DATE 1804
+2 PLAC Twyford, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346867
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Jan 1887
+2 PLAC Bishops Waltham, Hampshire, England
+1 EVEN was age 47 and the wife of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346862
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863&source=GBC/1851/0006346867
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346863
+1 EVEN was age 35 and the wife of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536416
+1 EVEN was age 76 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Garnier Road
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1160; Folio: 92; Page: 25; Schedule: 705; HouseHoldID: 1140503; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005596265
+1 EVEN was age 57 and the wife of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Marys Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068087
+1 RESI
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536416
+1 RESI
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Garnier Road
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1160; Folio: 92; Page: 25; Schedule: 705; HouseHoldID: 1140503; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005596265
+1 RESI
+2 DATE 1861
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Marys Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068087
+1 FAMS @F14@
+1 _UID B5B54AFD-6181-4AF4-8F3A-7F2AB5430941
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:07
+0 @I177@ INDI
+1 NAME Ellen Jane /Clark/
+2 GIVN Ellen Jane
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/9&source=GBC/1911/RG14/09474/0435/1
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428376&source=GBC/1901/0010428370
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1896
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/9&source=GBC/1911/RG14/09474/0435/1
+1 OCCU Sweet Wrapper - Clarnico
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/9&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/9&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 6 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428376&source=GBC/1901/0010428370
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/9&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428376&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID 338714E6-0683-4635-BC3F-6512C1B1A56C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I178@ INDI
+1 NAME Elizabeth /Satchell/
+2 GIVN Elizabeth
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1819
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381479&source=GBC/1851/0006381478
+1 OCCU Laundress
+2 _PRIM Y
+2 DATE 1851
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381479&source=GBC/1851/0006381478
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381479&source=GBC/1851/0006381478
+1 EVEN was age 32 and the daughter of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381479&source=GBC/1851/0006381478
+1 FAMC @F57@
+1 _UID 0053F1E3-E9A3-4B21-9A3D-D17CE27F6131
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I179@ INDI
+1 NAME Sarah /Smee/
+2 GIVN Sarah
+2 SURN Smee
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1730
+2 PLAC Halstead, Essex, England
+1 FAMC @F47@
+1 _UID 36360A77-6AC8-4AE0-B79B-8BC5A800C00E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I180@ INDI
+1 NAME Hanna /Drummond/
+2 GIVN Hanna
+2 SURN Drummond
+2 _PRIM Y
+2 SOUR @S23@
+3 PAGE Batch number: C11680-2; Record set: Scotland Births & Baptisms 1564-1950; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_685973048
+1 SEX F
+1 FAMS @F50@
+1 _UID E422C6BF-AEE7-46C8-998E-4D4BD8F73D3E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:58
+0 @I181@ INDI
+1 NAME Charles Joseph /Clark/
+2 GIVN Charles Joseph
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/4&source=GBC/1911/RG14/09474/0435/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 24 Sep 1890
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/4&source=GBC/1911/RG14/09474/0435/1
+1 OCCU Mill Hand Flour
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/4&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/4&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 10 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428374&source=GBC/1901/0010428370
+1 EVEN was age 21 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/4&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428374&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID 8786484E-92D6-4F97-AB94-084261AC24D1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I182@ INDI
+1 NAME John /Satchell/
+2 GIVN John
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1825
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381481&source=GBC/1851/0006381478
+1 OCCU Labourer
+2 _PRIM Y
+2 DATE 1851
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381481&source=GBC/1851/0006381478
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381481&source=GBC/1851/0006381478
+1 EVEN was age 26 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381481&source=GBC/1851/0006381478
+1 FAMC @F57@
+1 _UID F708FD2F-0606-4CA2-A58E-D460B1F1D07F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I183@ INDI
+1 NAME Isabella //
+2 GIVN Isabella
+2 _PRIM Y
+1 SEX F
+1 FAMS @F27@
+1 _UID B13E837A-2B24-47F2-A128-6076342DD0BF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I184@ INDI
+1 NAME Charles /Coker/
+2 GIVN Charles
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425016&source=GBC/1851/0006425010
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1850
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425016&source=GBC/1851/0006425010
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425016&source=GBC/1851/0006425010
+1 EVEN was age 1 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425016&source=GBC/1851/0006425010
+1 FAMC @F15@
+1 _UID F0961501-D1E1-4BE6-B9AA-7311D3CFD16F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I185@ INDI
+1 NAME Isabella /Plantagenet/
+2 GIVN Isabella
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1317
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Feb 1347
+1 FAMC @F81@
+1 _UID 7970A6AF-0E2C-4B58-81D8-BD2E182096A7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I186@ INDI
+1 NAME Arthur Reginald /Allmey/
+2 GIVN Arthur Reginald
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672411
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt Feb 1894
+2 PLAC West Ham, Essex, England
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672414
+2 SOUR
+3 PAGE Volume: 4A; Page: 258; Line Number: 247; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1894/1/AZ/000010/247
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3&source=GBC/1911/RG14/09750/0459/5
+1 OCCU Assistant Gloves
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, West Ham, London & Essex, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Ilford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672411
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Ilford, Romford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672414
+1 EVEN was age 17 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 DATE 1911
+2 PLAC Woodford, Essex, England
+2 ADDR Albert Road
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672413&source=GBC/1901/0011672414
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/3&source=GBC/1911/RG14/09750/0459/5
+1 FAMC @F13@
+1 _UID E6A628F1-B5F0-4311-AC42-4B3B037C20E3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I187@ INDI
+1 NAME Frank /Coker/
+2 GIVN Frank
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835733&source=GBC/1871/0015835730
+1 SEX M
+1 BIRT
+2 DATE 1859
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835733&source=GBC/1871/0015835730
+1 BIRT
+2 _PRIM Y
+2 DATE 1858
+2 PLAC Fareham, Hampshire, England
+1 RESI Relationship: Son
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Fareham, Hampshire, England
+1 EVEN was age 12 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835733&source=GBC/1871/0015835730
+1 RESI Relationship: Son
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835733&source=GBC/1871/0015835730
+1 FAMC @F15@
+1 _UID 8A339B38-723A-4015-9E86-20CFDA01F1CB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I188@ INDI
+1 NAME Silvester /Nichols/
+2 GIVN Silvester
+2 SURN Nichols
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1696
+2 PLAC Gumley, Leicestershire, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1757
+2 PLAC Gumley, Leicestershire, England, United Kingdom
+1 FAMS @F37@
+1 _UID 3F337250-8887-4372-9CEE-237ADC87CF53
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I189@ INDI
+1 NAME William Christopher /Satchell/
+2 GIVN William Christopher
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 16 Dec 1865
+2 PLAC Kingstown, Dublin, Ireland, Dun Laoghaire, St. Michael's
+2 SOUR
+3 PAGE Repository: National Library of Ireland; Record set: Ireland Roman Catholic Parish Baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Ireland;
+3 REF http://search.findmypast.com/record?id=IRE/PRS/BAP/3365214
+1 DEAT
+2 _PRIM Y
+2 DATE 1866
+2 PLAC Kingstown, Ireland
+1 BAPM
+2 _PRIM Y
+2 DATE 24 Dec 1865
+2 PLAC Kingstown, Dun Laoghaire, St. Michael's, Dublin, Ireland
+2 SOUR
+3 PAGE Repository: National Library of Ireland; Record set: Ireland Roman Catholic Parish Baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Ireland;
+3 REF http://search.findmypast.com/record?id=IRE/PRS/BAP/3365214
+1 FAMC @F54@
+1 _UID 7FCFA0DF-A959-425F-A670-6DB43404BA91
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I190@ INDI
+1 NAME Susanna //
+2 GIVN Susanna
+2 _PRIM Y
+1 SEX F
+1 FAMS @F53@
+1 _UID 6200FFEE-15D5-4892-873E-9D0F0ED501A0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I191@ INDI
+1 NAME Arthur John /Allmey/
+2 GIVN Arthur John
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508560
+2 SOUR @S21@
+3 PAGE Archive: Essex Record Office; Record set: Essex Baptism Index 1538-1920; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-BAP/1466690
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1867
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672411
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 1339; Folio: 13; Page: 27; Schedule: 122; HouseHoldID: 2120631; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0009927811
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508560
+2 SOUR
+3 PAGE Volume: 8B; Page: 211; Line Number: 22; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1867/2/AZ/000010/022
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672411&source=GBC/1901/0011672414
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/4
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 1946
+2 PLAC Southend On Sea, Essex, England
+2 SOUR
+3 PAGE Volume: 4A; Page: 574; Line number: 120; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1946/3/AZ/000011/120
+1 OCCU Ships Stores Dealer And Sail Maker
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/4
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672411&source=GBC/1901/0011672414
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/4
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/5
+1 EVEN was age 43 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/7
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/3
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/4
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/1&source=GBC/1911/RG14/09750/0459/5
+1 EVEN was age 33 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Ilford, Romford, Essex, England
+2 ADDR Albert Road
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672411
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 1650; Folio: 93; Page: 7; Schedule: 45; HouseHoldID: 2341213; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0011672411&source=GBC/1901/0011672414
+1 EVEN was age 23 and the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC East Ham, West Ham, London & Essex, England, London, Essex
+2 ADDR Monega Road
+2 SOUR @S4@
+3 PAGE Archive reference: RG12; Piece number: 1339; Folio: 13; Page: 27; Schedule: 122; HouseHoldID: 2120631; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0009927811
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508560
+1 EVEN was age 3 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104190
+1 OCCU Ships Tool Dealer
+2 DATE 1911
+2 SOUR @S21@
+3 PAGE Archive: Essex Record Office; Record set: Essex Baptism Index 1538-1920; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-BAP/1466690
+1 FAMS @F13@
+1 FAMC @F34@
+1 _UID 1F5CEDB5-33D3-4A9F-A52C-AFA33C797F9F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I192@ INDI
+1 NAME George /Smee/
+2 GIVN George
+2 SURN Smee
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Apr 1735
+2 PLAC Halstead, Essex, England
+1 FAMC @F47@
+1 _UID B6EEA954-9100-4CCF-8728-79416BAA5D77
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I193@ INDI
+1 NAME William /Mulhall/
+2 GIVN William
+2 SURN Mulhall
+2 _PRIM Y
+1 SEX M
+1 FAMS @F62@
+1 _UID 6B4AA5F6-EB22-427D-867A-6CB5576F880E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:19
+0 @I194@ INDI
+1 NAME Margaret /Rooke/
+2 GIVN Margaret
+2 SURN Rooke
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372594&source=GBC/1871/0021372595
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1860
+2 PLAC Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372594&source=GBC/1871/0021372595
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Upperby, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372594&source=GBC/1871/0021372595
+1 EVEN was age 11 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Upperby, Carlisle, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372594&source=GBC/1871/0021372595
+1 FAMC @F18@
+1 _UID 23072154-2434-4F59-80AE-CB6996E794AB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:35
+0 @I195@ INDI
+1 NAME David /Ford/
+2 GIVN David
+2 SURN Ford
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1674
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1730
+1 FAMS @F67@
+1 _UID 6CF797AE-14EC-4F7A-83B3-8DCBBFFCCF73
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I196@ INDI
+1 NAME Walter George /Allmey/
+2 GIVN Walter George
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508559&source=GBC/1881/0016508560
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1866
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508559&source=GBC/1881/0016508560
+1 OCCU Grocers Apprentice
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508559&source=GBC/1881/0016508560
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508559&source=GBC/1881/0016508560
+1 EVEN was age 5 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104189&source=GBC/1871/0011104190
+1 EVEN was age 15 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508559&source=GBC/1881/0016508560
+1 FAMC @F34@
+1 _UID 5F15099A-AA5C-4B3B-A55C-75D2AB9F6B6A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I197@ INDI
+1 NAME John /Muir/
+2 GIVN John
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1895
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 FAMC @F17@
+1 _UID 2B4DDE64-42A8-4B15-A8A1-1D90E8C13460
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I198@ INDI
+1 NAME Josiah /Clark/
+2 GIVN Josiah
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520340
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067972
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256197
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1837
+2 PLAC Braintree, Essex, England
+2 ADDR Kelvedon
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Oct 1907
+2 PLAC 85, Chapel Street, Stratford, West Ham
+1 PROB
+2 _PRIM Y
+2 DATE 23 Oct 1907
+1 OCCU Carman 1871 1881 /Labourer
+2 _PRIM Y
+2 DATE 1881
+2 PLAC West Ham, London & Essex, England
+1 EVEN was age 5 and the son of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256197
+1 EVEN was age 14 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Braintree, Essex, England
+2 ADDR London Road
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067972
+1 EVEN was age 34 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1626; Folio: 58; Page: 45; Schedule: 220; HouseHoldID: 2175329; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0010054766
+1 EVEN was age 44 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Milton Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1709; Folio: 31; Page: 56; Schedule: 288; HouseHoldID: 1629238; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0007933921
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC West Ham, London, Essex, England
+2 ADDR Milton Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1709; Folio: 31; Page: 56; Schedule: 288; HouseHoldID: 1629238; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0007933921
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1626; Folio: 58; Page: 45; Schedule: 220; HouseHoldID: 2175329; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0010054766
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067972
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256197
+1 EVEN was age 24 and the son in law of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Braintree, Essex, England
+2 ADDR Beckwiths Green
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520340
+1 OCCU Agricultural Labourer
+2 DATE 1861
+2 PLAC Braintree, Essex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520340
+1 OCCU Agricultural Labourer
+2 DATE 1851
+2 PLAC Braintree, Essex, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067972
+1 RESI
+2 DATE 1861
+2 PLAC Braintree, Essex, England
+2 ADDR Beckwiths Green
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 1115; Folio: 45; Page: 26; Schedule: 146; HouseHoldID: 1417512; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0006520340
+1 RESI
+2 DATE 1851
+2 PLAC Braintree, Essex, England
+2 ADDR London Road
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067972
+1 RESI
+2 DATE 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256197
+1 FAMS @F42@
+1 FAMC @F115@
+1 _UID 526A3013-A94A-490B-8701-D558F375D7A3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:17
+0 @I199@ INDI
+1 NAME Joan /Plantagenet/
+2 GIVN Joan
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 22 Jul 1210
+2 PLAC Coucy, Ardennes, Champagne-Ardenne, France
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Mar 1238
+2 PLAC London, Middlesex, England
+1 FAMC @F86@
+1 _UID F34FDD8E-9D34-4E0F-BE4A-C60CE437A677
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I200@ INDI
+1 NAME John /SMEE/
+2 GIVN John
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 28 Feb 1793
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 15 May 1793
+2 PLAC Independant, Bocking, Essex
+1 FAMC @F45@
+1 _UID 250222A6-3AF5-4158-8A73-B8C373D15023
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I201@ INDI
+1 NAME Janet //
+2 GIVN Janet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1818
+1 FAMS @F28@
+1 _UID AB8F846C-FB5A-4634-B08E-B98BC9899700
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I202@ INDI
+1 NAME Jane Elizabeth /Thorpe/
+2 GIVN Jane Elizabeth
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1849
+2 PLAC Fairlight, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE Sep 1909
+2 PLAC London, United Kingdom
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665186&source=GBC/1861/0003665182
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Guestling, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665186&source=GBC/1861/0003665182
+1 EVEN was age 12 and the daughter of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Guestling, Hastings, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665186&source=GBC/1861/0003665182
+1 FAMC @F20@
+1 _UID 0DCF254A-6202-4105-89D2-BEE47EBDE761
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I203@ INDI
+1 NAME Horsey George /Blackman/
+2 GIVN Horsey George
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S9@
+3 PAGE Archive reference: CHU 32/1A/1; Page: 117; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United
+4 CONC Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00511669
+1 NAME Henry G /Blackman/
+2 GIVN Henry G
+2 SURN Blackman
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 4433; Folio: 178; Page: 8; Schedule: 2; HouseHoldID: 4635367; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, Overseas /
+3 REF http://search.findmypast.com/record?id=GBC/1861/0021562041
+1 NAME Hersey /Blackman/
+2 GIVN Hersey
+2 SURN Blackman
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536422&source=GBC/1841/0013536416
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1840
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603875
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 4433; Folio: 178; Page: 8; Schedule: 2; HouseHoldID: 4635367; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, Overseas /
+3 REF http://search.findmypast.com/record?id=GBC/1861/0021562041
+2 SOUR
+3 PAGE Volume: 7; Page: 107; Line Number: 14; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1840/2/AK/000277/014
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603874
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 1888
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 284; Line number: 127; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1888/3/AZ/000028/127
+1 OCCU Naval Pensioner & Beer Retailer
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603874
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Gates Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899797
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603874
+1 EVEN was age 41 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Belgrave Tavern
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603875
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603871
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 133; Page: 4; Schedule: 1107; HouseHoldID: 1142193; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005603869&source=GBC/1881/0005603874
+1 EVEN was age 31 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Poplar, London, England, Middlesex
+2 ADDR Gates Street
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 583; Folio: 15; Page: 23; Schedule: 138; HouseHoldID: 493601; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0002899797
+1 EVEN was age 21
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Royal Navy At Sea and In Ports Abroad, Ships and Overseas Establishments
+2 ADDR Hms Hannibal
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 4433; Folio: 178; Page: 8; Schedule: 2; HouseHoldID: 4635367; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, Overseas /
+3 REF http://search.findmypast.com/record?id=GBC/1861/0021562041
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346867
+1 EVEN was age 1 and the son of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536422&source=GBC/1841/0013536416
+1 RESI
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536422&source=GBC/1841/0013536416
+1 FAMS @F11@
+1 FAMC @F14@
+1 _UID E33AA604-67E8-4C27-AE25-268A3A7C6780
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:22
+0 @I204@ INDI
+1 NAME Albert Edward /Blackman/
+2 GIVN Albert Edward
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE Aug 1883
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 487; Line Number: 357; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1883/3/AZ/000051/357
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1935
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 827; Line number: 11; Record set: England & Wales deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1935/1/AZ/000086/011
+1 OCCU Painter General
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5588; Schedule: 303; HouseHoldID: 55880615; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05588/0615/11
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5588; Schedule: 303; HouseHoldID: 55880615; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05588/0615/11
+1 EVEN was age 28 and a boarder in the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 2 Hay Street Portsea
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5588; Schedule: 303; HouseHoldID: 55880615; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05588/0615/11
+1 FAMC @F11@
+1 _UID FD369108-0D10-4A40-9590-A37310778FE5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I205@ INDI
+1 NAME Elizabeth /GOODY/
+2 GIVN Elizabeth
+2 SURN GOODY
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1800
+2 PLAC Bocking, Essex
+1 DEAT
+2 _PRIM Y
+2 DATE 1865
+2 PLAC Braintree, Essex
+1 FAMS @F43@
+1 _UID 2357E03C-70CC-492B-B433-EA487EDEE105
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I206@ INDI
+1 NAME Jane Smallfield /Thorpe/
+2 GIVN Jane Smallfield
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Jan 1871
+2 PLAC Peel, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1920; Census Place: Detroit Ward 13, Wayne, Michigan; Roll: T625_811; Page: 15A; Enumeration District: 383; Image: 699
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Year: 1930; Census Place: Detroit, Wayne, Michigan; Roll: 1056; Page: 12B; Enumeration District: 0587; Image: 786.0; FHL microfilm: 2340791
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 201
+2 SOUR
+3 PAGE The National Archives at Washington, D.C; Washington, D.C.; Series Title: Card Manifests (Alphabetical) of Individuals Entering through the Port of Detroit, Michigan, 1906-1954; NAI: 4527226; Record Group Title: Records of the Immigration a
+4 CONC nd Naturalizati
+2 SOUR
+3 PAGE Archives of Ontario; Series: MS929; Reel: 4
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1920; Census Place: Detroit Ward 13, Wayne, Michigan; Roll: T625_811; Page: 15A; Enumeration District: 383; Image: 699
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Year: 1930; Census Place: Detroit, Wayne, Michigan; Roll: 1056; Page: 12B; Enumeration District: 0587; Image: 786.0; FHL microfilm: 2340791
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 201
+2 SOUR
+3 PAGE The National Archives at Washington, D.C; Washington, D.C.; Series Title: Card Manifests (Alphabetical) of Individuals Entering through the Port of Detroit, Michigan, 1906-1954; NAI: 4527226; Record Group Title: Records of the Immigration a
+4 CONC nd Naturalizati
+2 SOUR
+3 PAGE Archives of Ontario; Series: MS929; Reel: 4
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 27 May 1944
+2 PLAC Eloise, Wayne, Michigan, USA
+1 RESI Marital Status: SingleRelation to Head of House: Daughter
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 EVEN
+2 TYPE Arrival
+2 _PRIM Y
+2 DATE 1911
+2 SOUR
+3 PAGE Year: 1920; Census Place: Detroit Ward 13, Wayne, Michigan; Roll: T625_811; Page: 15A; Enumeration District: 383; Image: 699
+2 SOUR
+3 PAGE Year: 1920; Census Place: Detroit Ward 13, Wayne, Michigan; Roll: T625_811; Page: 15A; Enumeration District: 383; Image: 699
+1 FAMC @F61@
+1 _UID 822ED79D-A226-4206-9066-3B3AB08261DC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I207@ INDI
+1 NAME George /Satchell/
+2 GIVN George
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1822
+2 PLAC Portsea St Mary, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381480&source=GBC/1851/0006381478
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800504147/1
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 1859
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 280; Line number: 20; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1859/3/PZ/000336/020
+1 OCCU Labourer
+2 _PRIM Y
+2 DATE 1851
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381480&source=GBC/1851/0006381478
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381480&source=GBC/1851/0006381478
+1 EVEN was age 29 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381480&source=GBC/1851/0006381478
+1 FAMC @F57@
+1 _UID 17C474D8-7865-455A-9C4E-7084948ABE65
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I208@ INDI
+1 NAME Henry /Satchell/
+2 GIVN Henry
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1811
+2 PLAC Portsea, Hampshire
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 632; Folio number: 91; Page number: 25; Schedule: 159; HouseHoldID: 879943; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fro
+4 CONC m: United Kingd
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004052355
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1157; Folio: 85; Page: 32; Schedule: 823; HouseHoldID: 1136938; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005579124
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800491710/1
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1889
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 324; Line number: 376; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1889/1/AZ/000328/376
+1 OCCU Labourer
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 632; Folio number: 91; Page number: 25; Schedule: 159; HouseHoldID: 879943; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fro
+4 CONC m: United Kingd
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004052355
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1157; Folio: 85; Page: 32; Schedule: 823; HouseHoldID: 1136938; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005579124
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Portsea, Hampshire, England
+2 ADDR Chalton Street
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 632; Folio number: 91; Page number: 25; Schedule: 159; HouseHoldID: 879943; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fro
+4 CONC m: United Kingd
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004052355
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1157; Folio: 85; Page: 32; Schedule: 823; HouseHoldID: 1136938; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005579124
+1 EVEN was age 49 and the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Chalton Street
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 632; Folio number: 91; Page number: 25; Schedule: 159; HouseHoldID: 879943; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fro
+4 CONC m: United Kingd
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004052355
+1 EVEN was age 69 and a lodger in the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Hampshire Street
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1157; Folio: 85; Page: 32; Schedule: 823; HouseHoldID: 1136938; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005579124
+1 FAMC @F57@
+1 _UID 1C496AB5-B79E-4B36-9CB9-095CA1D13AC6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I209@ INDI
+1 NAME George /Coker/
+2 GIVN George
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425013&source=GBC/1851/0006425010
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835732&source=GBC/1871/0015835730
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1844
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425013&source=GBC/1851/0006425010
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425013&source=GBC/1851/0006425010
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425013&source=GBC/1851/0006425010
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425013&source=GBC/1851/0006425010
+1 EVEN was age 27 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835732&source=GBC/1871/0015835730
+1 RESI
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835732&source=GBC/1871/0015835730
+1 FAMC @F15@
+1 _UID 92E685B9-55EE-4228-9CA7-0CF3CFF61693
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I210@ INDI
+1 NAME Anne /Rooke/
+2 GIVN Anne
+2 SURN Rooke
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372593&source=GBC/1871/0021372595
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1858
+2 PLAC Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372593&source=GBC/1871/0021372595
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Upperby, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372593&source=GBC/1871/0021372595
+1 EVEN was age 13 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Upperby, Carlisle, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372593&source=GBC/1871/0021372595
+1 FAMC @F18@
+1 _UID 4E71CDE7-8E7E-4307-AD2F-2C4436227650
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I211@ INDI
+1 NAME Jessie M /Thorpe/
+2 GIVN Jessie M
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1873
+2 PLAC Streetsville, Ontario
+2 SOUR
+3 PAGE Year: 1911; Census Place: 13 - Ward four, Hamilton West, Ontario; Page: 20; Family No: 209
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 63; Census Place: Ward No 4, Hamilton West, Ontario; Page Number: 24
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 3; Family No: 28
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 96
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1911; Census Place: 13 - Ward four, Hamilton West, Ontario; Page: 20; Family No: 209
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 63; Census Place: Ward No 4, Hamilton West, Ontario; Page Number: 24
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 3; Family No: 28
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 96
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 RESI Marital Status: MarriedRelation to Head of House: Wife
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Hamilton West, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1911; Census Place: 13 - Ward four, Hamilton West, Ontario; Page: 20; Family No: 209
+2 SOUR
+3 PAGE Year: 1911; Census Place: 13 - Ward four, Hamilton West, Ontario; Page: 20; Family No: 209
+1 FAMC @F61@
+1 _UID 5C235BCC-0051-4742-8D47-CCD4F698D674
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I212@ INDI
+1 NAME Susanna //
+2 GIVN Susanna
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1727
+2 PLAC Kibworth Beauchamp, Leicestershire, England, United Kingdom
+1 FAMS @F38@
+1 _UID 811325E5-F352-4093-BE1D-CEF5AF0EADDA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I213@ INDI
+1 NAME Henry III, Of England /Plantagenet/
+2 GIVN Henry III, Of England
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1 Oct 1207
+2 PLAC Winchester Castle, Hampshire, England
+2 SOUR
+3 PAGE Page 73
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Nov 1272
+2 PLAC Westminster, London, Midlesex, England
+2 SOUR
+3 PAGE page 73
+1 BURI
+2 _PRIM Y
+2 PLAC Westminster Abbey, London, England
+1 TITL King of England
+2 _PRIM Y
+1 FAMS @F84@
+1 FAMC @F86@
+1 _UID 7895944B-A4E8-49CA-9B4A-055DE350E32E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I214@ INDI
+1 NAME Robert /Allmey/
+2 GIVN Robert
+2 SURN Allmey
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1755
+2 PLAC Gumley, Leicestershire, England, United Kingdom
+1 FAMS @F36@
+1 FAMC @F38@
+1 _UID 480ADFA9-482F-4F12-9A05-813541E58AB2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I215@ INDI
+1 NAME John /Cooledge/
+2 GIVN John
+2 SURN Cooledge
+2 _PRIM Y
+2 SOUR @S17@
+3 PAGE Source: Boyd's marriage index, 1538-1850; Record set: England, Boyd's Marriage Indexes, 1538-1850; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/M/752008557/2
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 3 Dec 1710
+2 PLAC Layston, Hertfordshire, England
+1 DEAT
+2 _PRIM Y
+2 PLAC Bocking, Essex, England
+1 FAMS @F46@
+1 _UID 8A659D60-2D56-4624-AA2C-276568A9E87C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I216@ INDI
+1 NAME Elizabeth /Tiffin/
+2 GIVN Elizabeth
+2 SURN Tiffin
+2 _PRIM Y
+2 SOUR @S17@
+3 PAGE Source: Boyd's marriage index, 1538-1850; Record set: England, Boyd's Marriage Indexes, 1538-1850; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/M/752008557/2
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1717
+2 PLAC Bocking, Essex, England
+1 DEAT
+2 _PRIM Y
+2 PLAC Bocking, Essex, England
+1 FAMS @F46@
+1 _UID D8C5E406-F036-4997-8A78-C2F8CC2E83F8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I217@ INDI
+1 NAME Mary S /Coker/
+2 GIVN Mary S
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425012&source=GBC/1851/0006425010
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1843
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425012&source=GBC/1851/0006425010
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425012&source=GBC/1851/0006425010
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425012&source=GBC/1851/0006425010
+1 EVEN was age 8 and the daughter of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425012&source=GBC/1851/0006425010
+1 FAMC @F15@
+1 _UID 18DFA07A-FC43-418A-A573-CF977EA5DF6A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I218@ INDI
+1 NAME Thomas /Paine/
+2 GIVN Thomas
+2 SURN Paine
+2 _PRIM Y
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_843294020
+1 SEX M
+1 FAMS @F65@
+1 _UID AD088BFD-99DC-42D4-B166-2598F2711375
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:36
+0 @I219@ INDI
+1 NAME William /Ford/
+2 GIVN William
+2 SURN Ford
+2 _PRIM Y
+2 SOUR @S22@
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202354/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 28 Feb 1712
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 18 Mar 1799
+2 PLAC East Meon, Hampshire, England
+1 FAMS @F66@
+1 FAMC @F67@
+1 _UID 95DF72EC-6D96-47FE-9184-DD879773C9EA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I220@ INDI
+1 NAME Bertha Grant /Thorpe/
+2 GIVN Bertha Grant
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Oct 1880
+2 PLAC London, Middlesex, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 14 Apr 1961
+2 PLAC Detroit, Wayne, Michigan, USA
+1 RESI Marital Status: SingleRelation to Head of House: Daughter
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMC @F61@
+1 _UID 33DC4826-C0CC-4385-A41F-E7CFF9A56586
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:37
+0 @I221@ INDI
+1 NAME Elizabeth /Webb/
+2 GIVN Elizabeth
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 22 Oct 1681
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 11 Nov 1729
+2 PLAC East Meon, Hampshire, England
+1 FAMS @F67@
+1 FAMC @F68@
+1 _UID 13ADA14C-54DC-4789-9F76-A4EB01CCCD5A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:16
+0 @I222@ INDI
+1 NAME Edwin /Allmey/
+2 GIVN Edwin
+2 SURN Allmey
+2 _PRIM Y
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508557&source=GBC/1881/0016508560
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104186&source=GBC/1871/0011104190
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230695&source=GBC/1861/0014230691
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1858
+2 PLAC Liverpool, Lancashire, England
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508557&source=GBC/1881/0016508560
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230695&source=GBC/1861/0014230691
+1 OCCU Grocer
+2 _PRIM Y
+2 DATE 1881
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508557&source=GBC/1881/0016508560
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508557&source=GBC/1881/0016508560
+1 EVEN was age 3 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Parliament Place
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 2687; Folio: 50; Page: 38; Schedule: 169; HouseHoldID: 3088823; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0014230695&source=GBC/1861/0014230691
+1 EVEN was age 13 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 3778; Folio: 56; Page: 23; Schedule: 99; HouseHoldID: 2299312; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0011104186&source=GBC/1871/0011104190
+1 EVEN was age 23 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Liverpool, Lancashire, England
+2 ADDR Rathbone Street
+2 SOUR @S13@
+3 PAGE Archive reference: RG11; Piece number: 3617; Folio: 45; Page: 7; Schedule: 366; HouseHoldID: 3435553; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0016508557&source=GBC/1881/0016508560
+1 FAMC @F34@
+1 _UID C88D44B0-DC01-4CE9-B643-3EFA84107380
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I223@ INDI
+1 NAME Andrew /Muir/
+2 GIVN Andrew
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361837&source=GBC/1871/0021361838
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Lanarks Glasgow
+1 DEAT
+2 _PRIM Y
+2 DATE 24 Nov 1936
+2 PLAC Bathgate Cemetery, West Lothian, Scotland
+1 BAPM
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Old Monkland, Lanarkshire, Scotland
+1 OCCU Retd Blacksmith
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 30 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361837&source=GBC/1871/0021361838
+1 EVEN was age 50 and the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 20, Lord Street
+1 EVEN was age 70 and the father in law of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 16 South View Terrace Carlisle
+1 FAMS @F48@
+1 FAMC @F49@
+1 _UID DCF82B2F-6A81-4A70-B200-2802CC8EC830
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:16
+0 @I224@ INDI
+1 NAME Richard /Webb/
+2 GIVN Richard
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 30 Aug 1668
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Feb 1688
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID AE6FBF75-1C7B-49DC-9321-95B5274BE83C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I225@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Jul 1512
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 5 Feb 1558
+2 PLAC Lidgate, Suffolk, England
+1 BURI
+2 _PRIM Y
+2 DATE 25 Jul 1558
+2 PLAC Lidgate, Suffolk, England
+1 FAMS @F72@
+1 FAMC @F73@
+1 _UID 2611D0AF-78EB-4BD5-A19D-5265F1EDAB5B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I226@ INDI
+1 NAME Mary /Ford/
+2 GIVN Mary
+2 SURN Ford
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1787
+2 PLAC Exton, Hampshire
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800009472/1
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381478
+2 SOUR
+3 PAGE Volume: 2B; Page: 286; Line number: 172; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1867/2/AZ/000271/172
+1 DEAT
+2 _PRIM Y
+2 DATE abt May 1867
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 286; Line number: 172; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1867/2/AZ/000271/172
+1 OCCU Almswoman
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 642; Folio number: 132; Page number: 33; Schedule: 183; HouseHoldID: 895660; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004122611
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Portsea, Hampshire, England
+2 ADDR York Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1720; HouseHoldID: 2739587; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754038
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381478
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 642; Folio number: 132; Page number: 33; Schedule: 183; HouseHoldID: 895660; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004122611
+1 EVEN was age 50
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Green Row
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1720; HouseHoldID: 2739587; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754038
+1 EVEN was age 64 and the wife of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381478
+1 EVEN was age 74 and a lodger in the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR York Street
+2 SOUR
+3 PAGE Archive reference: RG09; Piece number: 642; Folio number: 132; Page number: 33; Schedule: 183; HouseHoldID: 895660; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004122611
+1 FAMS @F57@
+1 _UID 224731C6-4983-419B-80BB-2C3EB30309AE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I227@ INDI
+1 NAME Walter /Stevens/
+2 GIVN Walter
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708327&source=GBC/1861/0003708324
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1855
+2 PLAC Willingdon, Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708327&source=GBC/1861/0003708324
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708327&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708327&source=GBC/1861/0003708324
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708327&source=GBC/1861/0003708324
+1 FAMC @F19@
+1 _UID 6138A213-9277-4631-9F45-62D6D195649B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:38
+0 @I228@ INDI
+1 NAME Jane /Archibald/
+2 GIVN Jane
+2 SURN Archibald
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1842
+2 PLAC Cumberland Carlisle
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR English Dam Side
+1 EVEN was age 29 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361838
+1 EVEN was age 47 and the wife of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 69 and the mother in law of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 16 South View Terrace Carlisle
+1 FAMS @F48@
+1 _UID 47F49C62-AA55-4970-9415-CF8AEE1C6E34
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I229@ INDI
+1 NAME William /Satchell/
+2 GIVN William
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1815
+2 PLAC Portsea St Mary, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 295; Line number: 161; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1897/1/AZ/000335/161
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 860; Folio: 117; Page: 7; Schedule: 25; HouseHoldID: 1441474; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006716109
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800496664/1
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1897
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 295; Line number: 161; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1897/1/AZ/000335/161
+1 OCCU Sawyer
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Portsea, Portsmouth
+2 ADDR 14 Green Row
+1 RESI
+2 _PRIM Y
+2 DATE 1841 & 1851
+2 PLAC Portsea, Portsmouth
+2 ADDR 14 Green Row
+1 EVEN was age 77 and a pauper in the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Portsmouth Union (Workhouse)
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 860; Folio: 117; Page: 7; Schedule: 25; HouseHoldID: 1441474; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006716109
+1 FAMS @F55@
+1 FAMC @F57@
+1 _UID 638DCE1D-94E9-4586-8C18-1D1BFBEEA3CE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:15
+0 @I230@ INDI
+1 NAME William /Clark/
+2 GIVN William
+2 SURN Clark
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 3 Jan 1871
+2 PLAC West Ham, Essex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Nov 1946
+2 PLAC 2, Torrens Road, Stratford, West Ham
+2 ADDR Arterio Sclerosis ?
+1 PROB
+2 _PRIM Y
+2 DATE 4 Feb 1947
+2 PLAC London
+1 OCCU Distillers Miller
+2 _PRIM Y
+2 DATE 1901
+2 PLAC West Ham C.B., Essex, England
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 43 Emma Street
+1 EVEN was age 0 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC West Ham, London & Essex, England, Stratford, London, Essex
+2 ADDR Bridle Way
+1 EVEN was age 11 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Milton Road
+1 EVEN was aged 30. Son in law of the head of the household. Occupation Distillers Miller
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Skiers Street
+1 EVEN was age 43 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queens Road
+1 EVEN was recorded at this address
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 43 Emma Street
+1 EDUC Illiterate
+2 _PRIM Y
+1 FAMC @F42@
+1 _UID 31A12800-BDB6-4073-AF1E-46BE2CE1673B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I231@ INDI
+1 NAME Eliza /Coker/
+2 GIVN Eliza
+2 SURN Coker
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1854
+2 PLAC Fareham, Hampshire, England
+1 RESI Relationship: Daughter
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Fareham, Hampshire, England
+1 FAMC @F15@
+1 _UID EBA74F85-8E7B-4FA7-8B4E-6539DC51FE17
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:38
+0 @I232@ INDI
+1 NAME Andrew /Muir/
+2 GIVN Andrew
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1892
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 FAMC @F17@
+1 _UID 79BDF32A-A9A1-4081-A09C-E5974D2826FB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I233@ INDI
+1 NAME Benjamin /Thorpe/
+2 GIVN Benjamin
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665184&source=GBC/1861/0003665182
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1841
+2 PLAC Fairlight, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE Jun 1916
+2 PLAC Hailsham, Sussex, England
+1 OCCU Agricultural Labourer
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665184&source=GBC/1861/0003665182
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Guestling, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665184&source=GBC/1861/0003665182
+1 EVEN was age 20 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Guestling, Hastings, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665184&source=GBC/1861/0003665182
+1 FAMC @F20@
+1 _UID BDD2F675-BD41-41B7-A5ED-BEC2F37F55C7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I234@ INDI
+1 NAME Richard /Webb/
+2 GIVN Richard
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Mar 1640
+2 PLAC Hampshire
+1 DEAT
+2 _PRIM Y
+2 DATE 9 Feb 1686
+2 PLAC East Meon, Hampshire, England
+1 FAMS @F68@
+1 FAMC @F69@
+1 _UID E176BE23-0748-4E0C-8512-D7E0FDEA98B2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:19
+0 @I235@ INDI
+1 NAME William /SMEE/
+2 GIVN William
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1 Mar 1776
+2 PLAC Bocking, Essex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 14 Jul 1773
+2 PLAC Bocking, Essex
+1 FAMS @F44@
+1 FAMC @F45@
+1 _UID B27A638B-477F-4B1E-A040-E8FEC7FB0CC8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:24
+0 @I236@ INDI
+1 NAME Janet /Muir/
+2 GIVN Janet
+2 SURN Muir
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1877
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 14 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 FAMC @F48@
+1 _UID BEF4D05C-6A62-41AC-86CD-EFB2C1A464F6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:38
+0 @I237@ INDI
+1 NAME Jane Lee /Hall/
+2 GIVN Jane Lee
+2 SURN Hall
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1456
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1513
+2 PLAC England
+1 FAMS @F74@
+1 _UID 18BDFFAA-E455-4BB8-9A47-D4E15994EB12
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I238@ INDI
+1 NAME Mary Jane /Satchell/
+2 GIVN Mary Jane
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 14 Aug 1870
+2 PLAC Portsmouth Hants
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693871&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Volume: 2B; Page: 462; Line Number: 141; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1870/3/AZ/000619/141
+2 SOUR
+3 PAGE Line number: 16; Schedule: 198; Schedule Sub Number: 2; TNA reference: RG101/2272I/014/16; Piece number: 2272I; Item number: 14; HouseHoldID: 3126548; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272I/014/16
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5611; Schedule: 290; HouseHoldID: 56110579; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05611/0579/1
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1964
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 6B; Page: 511; Line number: 126; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1964/4/AZ/000963/126
+1 OCCU Unpaid Domestic Duties
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601909
+2 SOUR
+3 PAGE Line number: 16; Schedule: 198; Schedule Sub Number: 2; TNA reference: RG101/2272I/014/16; Piece number: 2272I; Item number: 14; HouseHoldID: 3126548; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272I/014/16
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 38 Harold Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693871&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601909
+2 SOUR
+3 PAGE Line number: 16; Schedule: 198; Schedule Sub Number: 2; TNA reference: RG101/2272I/014/16; Piece number: 2272I; Item number: 14; HouseHoldID: 3126548; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272I/014/16
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5611; Schedule: 290; HouseHoldID: 56110579; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05611/0579/1
+1 EVEN was age 10 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601909
+1 EVEN was age 20 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693871&source=GBC/1891/0006693868
+1 EVEN Was 30 and married
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 38 Boulton Road
+1 EVEN Was 40 and married, had 5 children, two had died by this time.
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 87 Boulton Road Southsea Portsmouth
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5611; Schedule: 290; HouseHoldID: 56110579; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05611/0579/1
+1 EVEN was recorded at this address
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 38 Harold Road
+2 SOUR
+3 PAGE Line number: 16; Schedule: 198; Schedule Sub Number: 2; TNA reference: RG101/2272I/014/16; Piece number: 2272I; Item number: 14; HouseHoldID: 3126548; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2272/2272I/014/16
+1 FAMC @F54@
+1 _UID A499DFE7-BCD5-4C61-AAD6-C55595A10B51
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I239@ INDI
+1 NAME Maud Elizabeth /Satchell/
+2 GIVN Maud Elizabeth
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1880
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693873&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Volume: 2B; Page: 523; Line Number: 12; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1880/2/AZ/000522/012
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Jan 1896
+2 PLAC Portsea Island, Hampshire, England
+2 ADDR Royal Portsmouth Hospital
+2 SOUR
+3 PAGE Volume: 2B; Page: 285; Line number: 265; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1896/1/AZ/000321/265
+1 CAUS Tubercular disease of knee 18 months, amputation of thigh 60 hours, tubercular meningitis 12hours notified by brother William Edward Satchell of 38 Boulton Road
+2 _PRIM Y
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsmouth, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693873&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601911&source=GBC/1881/0005601909
+1 EVEN was age 1 and the daughter of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601911&source=GBC/1881/0005601909
+1 EVEN was age 11 and the daughter of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693873&source=GBC/1891/0006693868
+1 FAMC @F54@
+1 _UID EB2DEA68-2AB2-4635-A789-79C2045B1AA4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I240@ INDI
+1 NAME William /Rooke/
+2 GIVN William
+2 SURN Rooke
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372596&source=GBC/1871/0021372595
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1870
+2 PLAC Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372596&source=GBC/1871/0021372595
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Upperby, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372596&source=GBC/1871/0021372595
+1 EVEN was age 1 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Upperby, Carlisle, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372596&source=GBC/1871/0021372595
+1 FAMC @F18@
+1 _UID 5AFA7D14-C9BC-4ECF-A053-633063D1E5E1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I241@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 26 Dec 1586
+2 PLAC Sussex
+1 DEAT
+2 _PRIM Y
+2 DATE 1629
+2 PLAC Sussex, England
+1 FAMC @F71@
+1 _UID 0E5F6B37-1FF0-41E8-8D74-4DE70E32BDB4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I242@ INDI
+1 NAME David /Muir/
+2 GIVN David
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1884
+2 PLAC Carlisle, Cumberland, England
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1891
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Charles Street
+1 FAMC @F48@
+1 _UID CCBE91CA-0EEC-4F9E-B18E-22B6C56EB175
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:38
+0 @I243@ INDI
+1 NAME Catherine Of /England/
+2 GIVN Catherine Of
+2 SURN England
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Nov 1253
+2 PLAC London, Middlesex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 3 May 1257
+2 PLAC London, Middlesex, England
+1 FAMC @F84@
+1 _UID 3668034F-19C1-485E-B41E-C6EE459BCA2D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I244@ INDI
+1 NAME Henry /Webb/
+2 GIVN Henry
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 DATE 17 Aug 1589
+2 PLAC Patcham, Sussex
+1 BIRT
+2 _PRIM Y
+2 DATE 17 Aug 1589
+2 PLAC Moulscombe, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 29 Jul 1657
+2 PLAC Moulscombe, Sussex, England
+1 BURI
+2 _PRIM Y
+2 DATE 17 Mar 1657
+2 PLAC St Olave, Bermondsey, Surrey, England
+2 SOUR
+3 PAGE London Metropolitan Archives, Saint Olave, Bermondsey, Composite register: baptisms, marriages, burials, Nov 1639 - Jun 1665, P71/OLA, Item 010
+2 SOUR
+3 PAGE London Metropolitan Archives, Saint Olave, Bermondsey, Composite register: baptisms, marriages, burials, Nov 1639 - Jun 1665, P71/OLA, Item 010
+1 FAMS @F70@
+1 FAMC @F71@
+1 _UID 04155E7F-2EE7-4AE8-91DD-0DC5F2C046E5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I245@ INDI
+1 NAME Charlotte Melina /Thorpe/
+2 GIVN Charlotte Melina
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Dec 1885
+2 PLAC London, Ontario
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Oct 1930
+2 PLAC Oxford, Ontario, Canada
+1 RESI Marital Status: SingleRelation to Head of House: Daughter
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMC @F61@
+1 _UID 3C168364-E5DA-49DD-9E6A-CBD2AE6605AD
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I246@ INDI
+1 NAME Eleanor Helen /Box/
+2 GIVN Eleanor Helen
+2 SURN Box
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 DATE 1519
+2 PLAC Sussex, England
+1 BIRT
+2 _PRIM Y
+2 DATE 1520
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 31 May 1580
+2 PLAC Sussex, England
+1 FAMS @F72@
+1 _UID 60D4D3EB-7634-4DDE-9162-5D5A86068A4D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:07
+0 @I247@ INDI
+1 NAME Nathaniel /Webb/
+2 GIVN Nathaniel
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Oct 1655
+2 PLAC Patcham, Sussex, England
+1 FAMC @F69@
+1 _UID 37DC8021-F2C0-4C59-998A-82CF35032EEE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I248@ INDI
+1 NAME Richard George /Satchell/
+2 GIVN Richard George
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Oct 1882
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693874&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Volume: 6B; Page: 354; Line number: 89; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1950/3/AZ/000761/089
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 1950
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 6B; Page: 354; Line number: 89; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1950/3/AZ/000761/089
+1 OCCU Pensioner R N
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 SOUR
+3 PAGE Line number: 19; Schedule: 165; Schedule Sub Number: 1; TNA reference: RG101/2270I/013/19; Piece number: 2270I; Item number: 13; HouseHoldID: 3122618; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2270/2270I/013/19
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5561; Schedule: 271; HouseHoldID: 55610555; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05561/0555/1&source=GBC/1911/RG14/05561/0555/2
+1 RESI
+2 _PRIM Y
+2 DATE 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 37 Telephone Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693874&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Line number: 19; Schedule: 165; Schedule Sub Number: 1; TNA reference: RG101/2270I/013/19; Piece number: 2270I; Item number: 13; HouseHoldID: 3122618; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2270/2270I/013/19
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5561; Schedule: 271; HouseHoldID: 55610555; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05561/0555/1&source=GBC/1911/RG14/05561/0555/2
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693874&source=GBC/1891/0006693868
+1 EVEN was age 30 and the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 22 Herbert Street Landport
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5561; Schedule: 271; HouseHoldID: 55610555; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05561/0555/1&source=GBC/1911/RG14/05561/0555/2
+1 EVEN was the head of the household
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC Portsmouth C.B., Hampshire, England
+2 ADDR 37 Telephone Road
+2 SOUR
+3 PAGE Line number: 19; Schedule: 165; Schedule Sub Number: 1; TNA reference: RG101/2270I/013/19; Piece number: 2270I; Item number: 13; HouseHoldID: 3122618; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Col
+4 CONC lections from:
+3 REF http://search.findmypast.com/record?id=TNA/R39/2270/2270I/013/19
+1 FAMC @F54@
+1 _UID C786CB04-6A5E-4D80-AA34-65677076FAF5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I249@ INDI
+1 NAME Elizabeth Joan /Roberts/
+2 GIVN Elizabeth Joan
+2 SURN Roberts
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1535
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Nov 1604
+2 PLAC Wivelsfield, Sussex, England
+1 FAMS @F92@
+1 _UID 2F298DB6-3FE6-4D7A-AC61-FC05A148536A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I250@ INDI
+1 NAME Bridget /Byrne/
+2 GIVN Bridget
+2 SURN Byrne
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1846
+2 PLAC Ireland
+2 SOUR
+3 PAGE Volume: 2B; Page: 358; Line number: 170; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1901/1/AZ/000344/170
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693869&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601907&source=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601907&source=GBC/1881/0005601909
+1 DEAT
+2 _PRIM Y
+2 DATE 9 Jan 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 85 Boulton Road
+2 SOUR
+3 PAGE Volume: 2B; Page: 358; Line number: 170; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1901/1/AZ/000344/170
+1 CAUS Serious effusion at the base of the brain from concussion through having accidentally fallen downstairs on Jan 2 1901. Coroners inquest held 11 Jan 1901
+2 _PRIM Y
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsmouth, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693869&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601907&source=GBC/1881/0005601908
+1 EVEN was age 35 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR 23 Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601907&source=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601907&source=GBC/1881/0005601909
+1 EVEN was age 44 and the wife of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693869&source=GBC/1891/0006693868
+1 FAMS @F54@
+1 _UID 4653C510-9A0F-4F28-93F6-2BF89844AFB2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I251@ INDI
+1 NAME Henry /Webb/
+2 GIVN Henry
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 FAMC @F76@
+1 _UID 51355994-4BE7-4E03-8D02-13EF7DE5FB14
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I252@ INDI
+1 NAME Thomas H /Clark/
+2 GIVN Thomas H
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/5&source=GBC/1911/RG14/09474/0435/1
+2 SOUR @S7@
+3 PAGE Line number: 41; Schedule: 60; Schedule Sub Number: 3; TNA reference: RG101/1043G/006/41; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/41
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 15 Mar 1905
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/5&source=GBC/1911/RG14/09474/0435/1
+2 SOUR @S7@
+3 PAGE Line number: 41; Schedule: 60; Schedule Sub Number: 3; TNA reference: RG101/1043G/006/41; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/41
+1 OCCU Barber - gave free haircuts to the cousins / Hairdresser 1939
+2 _PRIM Y
+2 DATE 1936
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/5&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/5&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/5&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was recorded at this address
+2 TYPE Register UK 1939
+2 _PRIM Y
+2 DATE 29 Sep 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 46 Emma Street
+2 SOUR @S7@
+3 PAGE Line number: 41; Schedule: 60; Schedule Sub Number: 3; TNA reference: RG101/1043G/006/41; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/41
+1 OCCU Hairdresser
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 SOUR @S7@
+3 PAGE Line number: 41; Schedule: 60; Schedule Sub Number: 3; TNA reference: RG101/1043G/006/41; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/41
+1 RESI
+2 DATE 1939
+2 PLAC West Ham C.B., Essex, England
+2 ADDR 46 Emma Street
+2 SOUR @S7@
+3 PAGE Line number: 41; Schedule: 60; Schedule Sub Number: 3; TNA reference: RG101/1043G/006/41; Piece number: 1043G; Item number: 6; HouseHoldID: 1593322; Record set: 1939 Register; Subcategory: Census; Category: Census, Land & Substitutes; Colle
+4 CONC ctions from: Un
+3 REF http://search.findmypast.com/record?id=TNA/R39/1043/1043G/006/41
+1 FAMC @F33@
+1 _UID BF4DB4A6-1FEF-407A-A597-A167B43E4E1F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I253@ INDI
+1 NAME Richard /Webb/
+2 GIVN Richard
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 30 Aug 1668
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Feb 1688
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID A9BDECB7-A884-431B-B1C6-D5C619C2CFC9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I254@ INDI
+1 NAME Catherine /Mulhall/
+2 GIVN Catherine
+2 SURN Mulhall
+2 _PRIM Y
+2 NICK Cate
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1846
+2 PLAC Kingstown, Ireland
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601879&source=GBC/1881/0005601878
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715624&source=GBC/1871/0015715623
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715624
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1899
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 327; Line number: 337; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1899/4/AZ/000347/337
+1 OCCU Charwoman
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Portsmouth
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601879&source=GBC/1881/0005601878
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715624&source=GBC/1871/0015715623
+1 EVEN was age 25 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Finsbury Street
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715624&source=GBC/1871/0015715623
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715624
+1 EVEN was age 35 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601879&source=GBC/1881/0005601878
+1 EVEN Aged 45 and a widow
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Collingwood Road
+1 FAMS @F58@
+1 FAMC @F62@
+1 _UID DA6CCE30-FA68-4AC1-A83A-6AD6651BF753
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I255@ INDI
+1 NAME Joan /White/
+2 GIVN Joan
+2 SURN White
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 DATE 1433
+2 PLAC Kent, Dorset, England
+1 BIRT
+2 DATE 1433
+2 PLAC Kent, England, United Kingdom
+1 BIRT
+2 _PRIM Y
+2 DATE 1435
+1 DEAT
+2 _PRIM Y
+2 DATE 1495
+2 PLAC Kent, Dorset, England
+1 FAMS @F75@
+1 FAMC @F95@
+1 _UID BD9E8977-BF62-488B-B445-47E8C5E09311
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:11
+0 @I256@ INDI
+1 NAME Joan /Webb/
+2 GIVN Joan
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1588
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1662
+2 PLAC Sussex, England
+1 FAMC @F71@
+1 _UID 50348C02-E571-470D-8396-34FBFEB37072
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I257@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 7 Feb 1642
+2 PLAC Falmer, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 18 Jul 1698
+1 FAMC @F69@
+1 _UID C1C1C618-539E-49C5-BB91-02BFB3C36E21
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I258@ INDI
+1 NAME Mary /Smee/
+2 GIVN Mary
+2 SURN Smee
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 29 Sep 1728
+2 PLAC Halstead, Essex, England
+1 FAMC @F47@
+1 _UID 8D059637-2E32-4231-8463-125E42822DBE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I259@ INDI
+1 NAME Peter /Webb/
+2 GIVN Peter
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Feb 1682
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID 71E99F8D-5A5D-48B9-A0E3-31EF2703854C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I260@ INDI
+1 NAME Adam /Webb/
+2 GIVN Adam
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1448
+2 PLAC Sussex, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1490
+2 PLAC Patcham, Sussex, England
+1 BURI
+2 _PRIM Y
+2 PLAC Suffolk, England
+1 FAMS @F74@
+1 FAMC @F75@
+1 _UID 772CBE62-C05B-43F9-9A91-6B39D87E2844
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:19
+0 @I261@ INDI
+1 NAME Amelia /Satchell/
+2 GIVN Amelia
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1849
+2 PLAC Portsea, Portsmouth
+1 FAMC @F55@
+1 _UID 10628AC2-552C-4ED7-8FF1-717C64F06F02
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I262@ INDI
+1 NAME Ann /Coker/
+2 GIVN Ann
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835736&source=GBC/1871/0015835730
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1856
+2 PLAC Fareham, Hampshire, England
+1 RESI Relationship: Daughter
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Fareham, Hampshire, England
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835736&source=GBC/1871/0015835730
+1 RESI Relationship: Daughter
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835736&source=GBC/1871/0015835730
+1 FAMC @F15@
+1 _UID 34675D96-9AC5-4A52-8AB7-960EBA31A610
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I263@ INDI
+1 NAME Henry /Webb/
+2 GIVN Henry
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1548
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Nov 1620
+2 PLAC Rottingdean, Sussex, England
+1 FAMS @F71@
+1 FAMC @F72@
+1 _UID 7BE09EF2-110B-4DA0-8A65-20E0AE5757A6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I264@ INDI
+1 NAME Eleanor Of /Aquitaine/
+2 GIVN Eleanor Of
+2 SURN Aquitaine
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1122
+2 PLAC Belin, Gironde, Aquitaine, France
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Apr 1204
+2 PLAC Fontevrault, Maine-et-Loire, Pays de la Loire, France
+1 FAMS @F87@
+1 _UID 1E86D75D-675E-44E4-AFFE-BD100669BDF4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I265@ INDI
+1 NAME Elizabeth /Webb/
+2 GIVN Elizabeth
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1661
+2 PLAC Hampshire, England
+1 FAMC @F68@
+1 _UID F7A72474-3F78-4207-ABBF-38C7BCD75469
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I266@ INDI
+1 NAME David /Hutcheson/
+2 GIVN David
+2 SURN Hutcheson
+2 _PRIM Y
+1 SEX M
+1 FAMS @F52@
+1 _UID 9A9F1806-4E33-4DC9-9743-E58CECB65257
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I267@ INDI
+1 NAME King Edward I Longshanks /Plantagenet/
+2 GIVN King Edward I Longshanks
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 17 Jun 1239
+2 PLAC Palace of Westminster, England
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Jul 1307
+2 PLAC Burgh On Sands, Cumberland, England
+1 FAMC @F84@
+1 _UID 2CC4F3E2-2369-427E-95D9-8BC3A7B5946B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I268@ INDI
+1 NAME Matthew Jonathon /Webb/
+2 GIVN Matthew Jonathon
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1475
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1 May 1550
+2 PLAC Patcham, Sussex, England
+1 FAMS @F73@
+1 FAMC @F74@
+1 _UID 01AD015B-49B3-4C78-8D4D-319AE1F5F497
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:19
+0 @I269@ INDI
+1 NAME Richard /Satchell/
+2 GIVN Richard
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 FAMS @F63@
+1 _UID D385E6DD-E5EC-41B6-8ECA-3E26767BA587
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I270@ INDI
+1 NAME Muriel /Roberts/
+2 GIVN Muriel
+2 SURN Roberts
+2 _PRIM Y
+1 SEX F
+1 _UID 67B6EFD3-43AB-4E3D-8A09-2B372CCFE4A7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I271@ INDI
+1 NAME Reuben /Stevens/
+2 GIVN Reuben
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_843294020
+1 SEX M
+1 FAMS @F64@
+1 _UID 56F34571-A19A-4D5F-9588-AC56B2D11A8E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I272@ INDI
+1 NAME William Richard /Satchell/
+2 GIVN William Richard
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 29 Nov 1865
+2 PLAC Kingstown Ireland
+1 DEAT
+2 _PRIM Y
+2 DATE abt Nov 1950
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 6B; Page: 468; Line number: 14; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1950/4/AZ/000931/014
+1 BAPM
+2 _PRIM Y
+2 DATE 1 Dec 1865
+2 PLAC Kingstown, Dun Laoghaire, St. Michael's, Dublin, Ireland
+2 SOUR
+3 PAGE Repository: National Library of Ireland; Record set: Ireland Roman Catholic Parish Baptisms; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Ireland;
+3 REF http://search.findmypast.com/record?id=IRE/PRS/BAP/3365196
+1 OCCU Labourer Bricklayers
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5614; Schedule: 71; HouseHoldID: 56140149; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05614/0149/4
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 998; Folio: 65; Page: 25; Schedule: 163; HouseHoldID: 1523744; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0008134069
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Pooles Place
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5614; Schedule: 71; HouseHoldID: 56140149; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05614/0149/4
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 998; Folio: 65; Page: 25; Schedule: 163; HouseHoldID: 1523744; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0008134069
+1 EVEN was age 35 and the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR Pooles Place
+2 SOUR
+3 PAGE Archive reference: RG13; Piece number: 998; Folio: 65; Page: 25; Schedule: 163; HouseHoldID: 1523744; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0008134069
+1 EVEN was age 46 and the brother of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Portsmouth, Hampshire, England
+2 ADDR 6 Cambridge Buildings High St Portsmouth
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 5614; Schedule: 71; HouseHoldID: 56140149; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/05614/0149/4
+1 FAMC @F58@
+1 _UID 54855A38-20D9-4278-A8D3-C54B2038888B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I273@ INDI
+1 NAME Mary Ann /Satchell/
+2 GIVN Mary Ann
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1842
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: VII; Page: 125; Line Number: 35; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1842/2/SZ/000022/035
+1 FAMC @F55@
+1 _UID 161B7953-4239-4E1B-8B7E-01098AE10B12
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I274@ INDI
+1 NAME Eleanor /Plantagenet/
+2 GIVN Eleanor
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1215
+2 PLAC Winchester, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Apr 1275
+2 PLAC Montargis, Loiret, Centre, France
+1 FAMC @F86@
+1 _UID D5EF38E9-9DED-4FF4-BF40-EF24C01EE707
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I275@ INDI
+1 NAME Sarah /Webb/
+2 GIVN Sarah
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1634
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1716
+1 FAMC @F70@
+1 _UID D9F0A4CC-D9A1-45E5-BB9E-6771D8EDF51A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I276@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1686
+2 PLAC East Meon, Hampshire.
+1 DEAT
+2 _PRIM Y
+2 DATE 1688
+2 PLAC East Meon, Hampshire.
+1 FAMC @F68@
+1 _UID 4D138496-020D-4AA7-9B18-DEBFC36D1E64
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I277@ INDI
+1 NAME Milissia /Webb/
+2 GIVN Milissia
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1581
+1 FAMC @F71@
+1 _UID D95FFCB3-8D05-43A0-A19A-F301AEC4C7C5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I278@ INDI
+1 NAME William /Muir/
+2 GIVN William
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1890
+2 PLAC Cumbd Carlisle
+1 OCCU Butcher Assistant
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 1 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Caldewgate, Carlisle, Cumberland, England
+2 ADDR Walkers Place, Charlotte Street
+1 EVEN was age 11 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 EVEN was age 21 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 48 Brook Street
+1 FAMC @F17@
+1 _UID E3492800-900D-41A4-8236-131891B6947A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I279@ INDI
+1 NAME Dorothy /Coll/
+2 GIVN Dorothy
+2 SURN Coll
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1642
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1688
+2 PLAC East Meon, Hampshire, England
+1 FAMS @F68@
+1 FAMC @F90@
+1 _UID D5B6E392-2AA5-4938-85CB-88A89E028B24
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:16
+0 @I280@ INDI
+1 NAME Richard /Coll/
+2 GIVN Richard
+2 SURN Coll
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1620
+2 PLAC East Meon, Hampshire, England
+1 FAMS @F90@
+1 _UID 7C7DB96D-DB55-425E-88AB-C97817DAB8DC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I281@ INDI
+1 NAME Aveline de /Forz/
+2 GIVN Aveline de
+2 SURN Forz
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 20 Jan 1259
+2 PLAC Burstwick, Yorkshire, England
+2 SOUR
+3 PAGE page 74
+1 DEAT
+2 _PRIM Y
+2 DATE 10 Nov 1274
+2 PLAC Stockwell, Surrey, England
+2 SOUR
+3 PAGE page 74
+1 BURI
+2 _PRIM Y
+2 PLAC Westminster Abbey, Westminster, London, England
+1 TITL Countess of Holderness
+2 _PRIM Y
+1 FAMS @F85@
+1 _UID F703B17C-63A0-486A-9773-3F7E0BCCF725
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I282@ INDI
+1 NAME William Edward /Thorpe/
+2 GIVN William Edward
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Jan 1877
+2 PLAC Middlesex, Ontario, Canada
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 70; Census Place: Ward 1, London, Ontario; Page Number: 13
+2 SOUR
+3 PAGE Archives of Ontario; Series: MS929; Reel: 29
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 70; Census Place: Ward 1, London, Ontario; Page Number: 13
+2 SOUR
+3 PAGE Archives of Ontario; Series: MS929; Reel: 29
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Mar 1944
+2 PLAC London, Middlesex, Ontario, Canada
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada
+1 RESI Marital Status: MarriedRelation to Head of House: Head
+2 _PRIM Y
+2 DATE 1 Jun 1921
+2 PLAC City of London, London, Ontario, Canada
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 70; Census Place: Ward 1, London, Ontario; Page Number: 13
+2 SOUR
+3 PAGE Reference Number: RG 31; Folder Number: 70; Census Place: Ward 1, London, Ontario; Page Number: 13
+1 FAMC @F61@
+1 _UID AED526A9-DE8A-44DB-88AB-244B1BC2039C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I283@ INDI
+1 NAME Mary /Plantagenet/
+2 GIVN Mary
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1320
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Sep 1362
+1 FAMC @F81@
+1 _UID D5B55EF7-D0D9-4D45-AC7A-89421507BD13
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I284@ INDI
+1 NAME Thomas /Webb/
+2 GIVN Thomas
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Dec 1664
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID 97387223-CDFD-4429-9296-49CF2EFA8D15
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I285@ INDI
+1 NAME Oliver John /Clark/
+2 GIVN Oliver John
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/6&source=GBC/1911/RG14/09474/0435/1
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Feb 1892
+2 PLAC West Ham Essex
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/6&source=GBC/1911/RG14/09474/0435/1
+1 DEAT
+2 _PRIM Y
+2 DATE 1949
+2 PLAC Hackney, London
+1 OCCU Mill Hand - flour 1911 / Inspector Naval Ordnance 1939
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/6&source=GBC/1911/RG14/09474/0435/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC West Ham, London, Essex, England
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/6&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 19 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Emma Street
+2 SOUR @S8@
+3 PAGE Archive reference: RG14; Piece number: 9474; Schedule: 218; HouseHoldID: 94740435; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09474/0435/6&source=GBC/1911/RG14/09474/0435/1
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC West Ham, London & Essex, England, London, Essex
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428377&source=GBC/1901/0010428370
+1 RESI
+2 DATE 1901
+2 PLAC West Ham, London, Essex, England
+2 ADDR Queen Street
+2 SOUR @S5@
+3 PAGE Archive reference: RG13; Piece number: 1564; Folio: 94; Page: 41; Schedule: 250; HouseHoldID: 2205617; Record set: 1901 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1901/0010428377&source=GBC/1901/0010428370
+1 FAMC @F33@
+1 _UID 4DD3D579-8CE1-4F57-BEBC-508B2B9A54ED
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I286@ INDI
+1 NAME Richard W /Taylor/
+2 GIVN Richard W
+2 SURN Taylor
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715625&source=GBC/1871/0015715624
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1866
+2 PLAC Ireland
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715625&source=GBC/1871/0015715624
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Portsea, Hampshire, England
+2 ADDR Finsbury Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715625&source=GBC/1871/0015715624
+1 EVEN was age 5 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Finsbury Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1129; Folio: 145; Page: 45; Schedule: 246; HouseHoldID: 3449991; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015715625&source=GBC/1871/0015715624
+1 FAMC @F58@
+1 _UID 84657667-26EA-48A5-A7F5-015E192D532A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I287@ INDI
+1 NAME Delahurne Delanherne /John/
+2 GIVN Delahurne Delanherne
+2 SURN John
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1214
+2 PLAC Lanherne, Cornwall, England
+1 DEAT
+2 _PRIM Y
+2 DATE 6 Aug 1270
+1 FAMC @F86@
+1 _UID 02805535-BE30-4B61-B18E-31B9C3CAF17A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I288@ INDI
+1 NAME Horace /Thorpe/
+2 GIVN Horace
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665183&source=GBC/1861/0003665182
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 27 Sep 1837
+2 PLAC Fairlight, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 18 Feb 1901
+2 PLAC Mars Bluff, South Carolina, United States
+1 OCCU Miller Journ
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665183&source=GBC/1861/0003665182
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Guestling, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665183&source=GBC/1861/0003665182
+1 EVEN was age 23 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Guestling, Hastings, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665183&source=GBC/1861/0003665182
+1 FAMC @F20@
+1 _UID BB6F9E2E-A43C-49ED-A586-67EA2EDA92F7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I289@ INDI
+1 NAME Richard /Plantagenet/
+2 GIVN Richard
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1247
+2 PLAC Westminster, Middlesex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1256
+2 PLAC Westminster, Middlesex, England
+1 FAMC @F84@
+1 _UID 232AD6CD-B13A-4600-8AC4-943B2D49FCED
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I290@ INDI
+1 NAME Elizabeth /Knight/
+2 GIVN Elizabeth
+2 SURN Knight
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1670
+1 FAMS @F91@
+1 _UID AD66ADE6-1F16-4710-A36A-650D2182A330
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I291@ INDI
+1 NAME Anne /Coleman/
+2 GIVN Anne
+2 SURN Coleman
+2 _PRIM Y
+1 NAME Ann /Coleman/
+2 GIVN Ann
+2 SURN Coleman
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1622
+2 PLAC Falmer, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1690
+2 PLAC Falmer, Sussex, England
+1 FAMS @F69@
+1 FAMC @F91@
+1 _UID 370E6D84-7D16-4990-8B89-597F27A31725
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:15
+0 @I292@ INDI
+1 NAME John George /Webb/
+2 GIVN John George
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 FAMC @F76@
+1 _UID FA6C1920-93AC-445F-B79C-46BC951DDB36
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I293@ INDI
+1 NAME William /Webb/
+2 GIVN William
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt Sep 1672
+2 PLAC East Meon, Hampshire based on IGI
+1 DEAT
+2 _PRIM Y
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID 27BF0863-1748-4FCC-B8A4-C4A72498E96D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I294@ INDI
+1 NAME Jane //
+2 GIVN Jane
+2 _PRIM Y
+1 SEX F
+1 DEAT
+2 _PRIM Y
+2 DATE 1784
+1 BURI
+2 _PRIM Y
+2 DATE 9 May 1784
+2 PLAC Whippingham, Hampshire, England
+2 SOUR
+3 PAGE Batch number: I06502-5; Record set: England Deaths & Burials 1538-1991; Subcategory: Parish Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_273700322
+1 FAMS @F63@
+1 _UID 3CBB7FF5-B11D-4F59-81A2-D207DE674C73
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I295@ INDI
+1 NAME Margaret /Muir/
+2 GIVN Margaret
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361841&source=GBC/1871/0021361838
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361841&source=GBC/1871/0021361838
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361841&source=GBC/1871/0021361838
+1 EVEN was age 0 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC St Cuthbert Within, Carlisle, Cumberland, England
+2 ADDR English Dam Side
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5217; Folio: 64; Page: 22; Schedule: 124; HouseHoldID: 4481472; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021361841&source=GBC/1871/0021361838
+1 FAMC @F48@
+1 _UID B37DDF4E-0B56-4571-8BE4-7B86FCC259B4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I296@ INDI
+1 NAME Beatrice /Plantagenet/
+2 GIVN Beatrice
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Jun 1242
+2 PLAC Bordeaux, Gironde, Aquitaine, France
+1 DEAT
+2 _PRIM Y
+2 DATE 24 Apr 1275
+2 PLAC Bretagne, France
+1 FAMC @F84@
+1 _UID E57E8C4C-8A00-427E-9253-D456C4728572
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I297@ INDI
+1 NAME Stephen /Webb/
+2 GIVN Stephen
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1647
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1721
+1 FAMC @F69@
+1 _UID 1C099897-9C6E-4087-87E2-A148F1323D1C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I298@ INDI
+1 NAME Peter /Rooke/
+2 GIVN Peter
+2 SURN Rooke
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372592&source=GBC/1871/0021372595
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1855
+2 PLAC Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372592&source=GBC/1871/0021372595
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Upperby, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372592&source=GBC/1871/0021372595
+1 EVEN was age 16 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Upperby, Carlisle, Cumberland, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 5219; Folio: 74; Page: 7; Schedule: 37; HouseHoldID: 4373269; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United King
+4 CONC dom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0021372592&source=GBC/1871/0021372595
+1 FAMC @F18@
+1 _UID 39D88DB4-08D1-4C34-9136-00A3094A122F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I299@ INDI
+1 NAME Joane Margery /Webb/
+2 GIVN Joane Margery
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1422
+2 PLAC Kent, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Apr 1463
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 FAMC @F76@
+1 _UID DA980CDF-AA24-4D91-9030-9B0EDAAA0F88
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I300@ INDI
+1 NAME John /Stevens/
+2 GIVN John
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708323&source=GBC/1861/0003708324
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1846
+2 PLAC Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708323&source=GBC/1861/0003708324
+1 OCCU Agricultural Labourer
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708323&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708323&source=GBC/1861/0003708324
+1 EVEN was age 15 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708323&source=GBC/1861/0003708324
+1 FAMC @F19@
+1 _UID 5C39AEB2-D694-4E70-83E8-BB263CE44A13
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I301@ INDI
+1 NAME Hannah /Shervill/
+2 GIVN Hannah
+2 SURN Shervill
+2 _PRIM Y
+1 SEX F
+1 FAMS @F56@
+1 _UID 42496CC5-5903-40F8-8C21-454DA60FE3F0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:39
+0 @I302@ INDI
+1 NAME Isabella /De Taillefer/
+2 GIVN Isabella
+2 SURN De Taillefer
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1188
+2 PLAC Angoulême, Charente, Poitou-Charentes, France
+1 DEAT
+2 _PRIM Y
+2 DATE 31 May 1246
+2 PLAC Fontevrault Abbey, Fontevrault, Maine Et Loire, France
+1 FAMS @F86@
+1 _UID 97FC5646-4265-489C-9ED0-2EAD65E74D7E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:26
+0 @I303@ INDI
+1 NAME John Gavin /Webb/
+2 GIVN John Gavin
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 4 Dec 1430
+2 PLAC Frittenden, Kent, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1495
+2 PLAC Frittenden, Kent, England
+1 BURI
+2 _PRIM Y
+2 DATE 1495
+2 PLAC Frittenden, Kent, England
+1 FAMS @F75@
+1 FAMC @F76@
+1 _UID 7B7714FC-C6EF-4BE8-9630-4E6DA2446F58
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:12
+0 @I304@ INDI
+1 NAME Robert /Coker/
+2 GIVN Robert
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425010
+2 SOUR @S19@
+3 PAGE Batch number: I04389-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846918460
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835730
+1 SEX M
+1 BIRT
+2 DATE 1819
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835730
+1 BIRT
+2 _PRIM Y
+2 DATE 1821
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425010
+1 OCCU Laborer
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425010
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425010
+1 EVEN was age 30 and the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1661; Folio: 94; Page: 1; Schedule: 207; HouseHoldID: 1306389; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006425010
+1 EVEN was age 52 and the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835730
+1 RESI
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835730
+1 FAMS @F15@
+1 FAMC @F116@
+1 _UID 57673863-61ED-4349-BF2D-99FC1E8C2D7A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I305@ INDI
+1 NAME Joseph /Webb/
+2 GIVN Joseph
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE Mar 1679
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID 50073186-4D1A-4F88-B99C-91DC5EBA2983
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I306@ INDI
+1 NAME Geoffrey V of Anjou /Plantagenet/
+2 GIVN Geoffrey V of Anjou
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 24 Aug 1113
+2 PLAC Anjou, Isere, Rhone-Alpes, France
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Sep 1151
+2 PLAC Eure, Loire, Rhone-Alpes, France
+1 FAMS @F88@
+1 _UID 6AE7C6CA-1B80-469C-84D3-1D1205D76178
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I307@ INDI
+1 NAME Mary /Palmer/
+2 GIVN Mary
+2 SURN Palmer
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1594
+2 PLAC Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1669
+2 PLAC Moulscombe, Sussex, England
+1 FAMS @F70@
+1 _UID 91E63CDD-4C4D-46D1-BE26-B7CCB5E62AF4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I308@ INDI
+1 NAME Richard /Fitzroy/
+2 GIVN Richard
+2 SURN Fitzroy
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1216
+2 PLAC Chilham Castle, Kent, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1246
+1 FAMC @F86@
+1 _UID EBFC3562-C40B-44B9-8F96-393FEFC8350D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I309@ INDI
+1 NAME Sarah A /Stevens/
+2 GIVN Sarah A
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708328&source=GBC/1861/0003708324
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1857
+2 PLAC Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708328&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708328&source=GBC/1861/0003708324
+1 EVEN was age 4 and the daughter of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708328&source=GBC/1861/0003708324
+1 FAMC @F19@
+1 _UID 788A78A7-998A-4068-B54B-366C07762FA7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I310@ INDI
+1 NAME William /Webb/
+2 GIVN William
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 16 Mar 1425
+2 PLAC Warwick, Warwickshire, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Jul 1523
+2 PLAC Wiltshire, England, United Kingdom
+1 BURI
+2 _PRIM Y
+2 PLAC St. Thomas, Jamaica
+1 CHR
+2 _PRIM Y
+2 PLAC Shaftesbury St James, Dorset, England, United Kingdom
+1 FAMC @F76@
+1 _UID C671926F-1D55-4EF5-BAEE-059193590E66
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I311@ INDI
+1 NAME Alice d /Joinville/
+2 GIVN Alice d
+2 SURN Joinville
+2 _PRIM Y
+1 SEX F
+1 FAMS @F83@
+1 _UID B21C1B10-A08E-4A38-B7C1-6BD6888FFB2B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I312@ INDI
+1 NAME John /Satchell/
+2 GIVN John
+2 SURN Satchell
+2 _PRIM Y
+2 SOUR @S3@
+3 PAGE Volume: 2B; Page: 345; Line number: 73; Record set: England & Wales Deaths 1837-2007; Subcategory: Civil Deaths & Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/D/1891/2/AZ/000395/073
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 24 Jan 1843
+2 PLAC Landport, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693868
+2 SOUR
+3 PAGE Volume: 2B; Page: 345; Line number: 73; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1891/2/AZ/000395/073
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601908
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Jun 1891
+2 PLAC Portsea Island, Hampshire, England
+2 ADDR Portsmouth Dockyard
+2 SOUR
+3 PAGE Volume: 2B; Page: 345; Line number: 73; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1891/2/AZ/000395/073
+1 EVEN Joined Royal Navy
+2 TYPE Military service
+2 _PRIM Y
+2 DATE 22 Jan 1858
+1 OCCU Excavater
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601909
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Portsmouth, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693868
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601909
+1 EVEN was age 37 and the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601908
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601906&source=GBC/1881/0005601909
+1 EVEN was age 48 and the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693868
+1 FAMS @F54@
+1 FAMC @F55@
+1 _UID 073B1151-4E09-4862-B1CF-0607084E5930
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I313@ INDI
+1 NAME William /Plantagenet/
+2 GIVN William
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1256
+2 PLAC Westminster, Middlesex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1256
+2 PLAC Westminster, Middlesex, England
+1 FAMC @F84@
+1 _UID 6B4558B2-3DB4-4D97-B02E-8087FFC99188
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I314@ INDI
+1 NAME Mary /Webb/
+2 GIVN Mary
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1588
+2 PLAC Patcham, Sussex
+1 DEAT
+2 _PRIM Y
+2 DATE abt 1662
+2 PLAC Sussex
+1 FAMC @F71@
+1 _UID 7E7BEF6E-36BF-477E-B7A6-752928E1FB31
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I315@ INDI
+1 NAME Suzanne /DeWarenne/
+2 GIVN Suzanne
+2 SURN DeWarenne
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1166
+2 PLAC Kenilworth, Essex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Oct 1216
+2 PLAC Newark, Nottinghamshire, England
+1 FAMS @F99@
+1 _UID 6446E792-A703-4F42-B497-1539AED8D920
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I316@ INDI
+1 NAME Sarah J /Muir/
+2 GIVN Sarah J
+2 SURN Muir
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 0 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 FAMC @F17@
+1 _UID 6ED165AA-5FEB-46AD-AA25-D4743C76F493
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I317@ INDI
+1 NAME Anne /Webb/
+2 GIVN Anne
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE Oct 1580
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1662
+2 PLAC Sussex, England
+1 FAMC @F71@
+1 _UID C07E81DD-45A1-4B0A-869C-8D68EBAC2E51
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I318@ INDI
+1 NAME Thomas /Norman/
+2 GIVN Thomas
+2 SURN Norman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1690
+1 DEAT
+2 _PRIM Y
+2 DATE 6 Feb 1760
+1 FAMS @F89@
+1 _UID 97D9244A-9DDC-4E53-BBA1-0D714DB7DD1B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I319@ INDI
+1 NAME Elizabeth /Webb/
+2 GIVN Elizabeth
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 23 Nov 1651
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 18 Oct 1694
+2 PLAC Sussex, England
+1 FAMC @F69@
+1 _UID 3779D6B0-3A9B-4007-BC35-4F3C53AE36B2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I320@ INDI
+1 NAME John /SMEE/
+2 GIVN John
+2 SURN SMEE
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1830
+2 PLAC Braintree, Essex
+1 OCCU Ag. Lab.
+2 _PRIM Y
+1 FAMC @F43@
+1 _UID 0B970BE1-AE80-4DD6-920E-34576BCB5289
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:40
+0 @I321@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 16 Mar 1405
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Jan 1455
+2 PLAC Stratford-upon-Avon, Warwickshire, England, United Kingdom
+1 CHR
+2 _PRIM Y
+2 DATE 5 Jun 1405
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 FAMS @F76@
+1 FAMC @F77@
+1 _UID E3990388-0BEE-4065-9E77-17107E7929FE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I322@ INDI
+1 NAME King Richard I "The Lionheart" of England /Plantagenet/
+2 GIVN King Richard I "The Lionheart" of England
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Sep 1157
+2 PLAC Oxford, Oxfordshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 6 Apr 1199
+2 PLAC Ch�lus, Haute-Vienne, Limousin, France
+1 FAMC @F87@
+1 _UID 59EFAA09-CA89-44DE-9AA1-C1C7966627F3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I323@ INDI
+1 NAME Frances /Waite/
+2 GIVN Frances
+2 SURN Waite
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 PLAC Andover
+1 BAPM
+2 _PRIM Y
+2 DATE 1 Feb 1702
+1 FAMS @F89@
+1 _UID 26477491-C219-4DA8-A8BC-919C9AC9C8E4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I324@ INDI
+1 NAME Eleanor of Provence /Berenger/
+2 GIVN Eleanor of Provence
+2 SURN Berenger
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 DATE 1223
+2 PLAC Aix En Provence, Bouches-du-Rhone, Provence-Alpes-Cote d'Azur, France
+1 BIRT
+2 _PRIM Y
+2 DATE 24/25 JUN 1291
+2 PLAC Amesbury, Eiltshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 24 Jun 1291
+2 PLAC Amesbury, Wiltshire, England
+1 BURI
+2 _PRIM Y
+2 PLAC Abbey of St Mary and St Melor, England
+1 TITL Queen Consort of England
+2 _PRIM Y
+1 FAMS @F84@
+1 FAMC @F97@
+1 _UID 641E821C-6538-4FE8-AEF1-B9B6E457727A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I325@ INDI
+1 NAME Margaret /Muir/
+2 GIVN Margaret
+2 SURN Muir
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1894
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR Linton Street
+1 EVEN was age 7 and the daughter of the head of the household
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Carlisle Botchergate, Carlisle, Cumberland, England
+2 ADDR 19, Linton Street
+1 FAMC @F17@
+1 _UID 0581EBD3-2F81-47BD-B414-1FB9C4857277
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I326@ INDI
+1 NAME Alexander /Muir/
+2 GIVN Alexander
+2 SURN Muir
+2 _PRIM Y
+2 SOUR @S23@
+3 PAGE Batch number: C11680-2; Record set: Scotland Births & Baptisms 1564-1950; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_685973048
+1 SEX M
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Mar 1866
+2 PLAC Strathaven Cemetery, South Lanarkshire, Scotland
+1 FAMS @F50@
+1 FAMC @F51@
+1 _UID E98C966F-BF09-4F31-9D8B-61FCD4CE13D3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:02
+0 @I327@ INDI
+1 NAME King Henry II England /Plantagenet/
+2 GIVN King Henry II England
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Mar 1133
+2 PLAC Le Mans, Sarthe, Pays de la Loire, France
+1 DEAT
+2 _PRIM Y
+2 DATE 6 Jul 1189
+2 PLAC Chinon, Indre-et-Loire, Centre, France
+1 FAMS @F87@
+1 FAMC @F88@
+1 _UID 184BFE56-CA17-4B17-85D9-60FE15CBD809
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I328@ INDI
+1 NAME Mary /Lawson/
+2 GIVN Mary
+2 SURN Lawson
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1813
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381482&source=GBC/1851/0006381478
+1 OCCU Laundress
+2 _PRIM Y
+2 DATE 1851
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381482&source=GBC/1851/0006381478
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381482&source=GBC/1851/0006381478
+1 EVEN was age 38 and the daughter of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Vincent Street
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 1659; Folio: 169; Page: 6; Schedule: 25; HouseHoldID: 1297526; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006381482&source=GBC/1851/0006381478
+1 FAMC @F57@
+1 _UID DD372DFA-CC44-43E0-AEB0-32FDBB53B174
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I329@ INDI
+1 NAME Peter /Muir/
+2 GIVN Peter
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 FAMS @F51@
+1 _UID 203B7AB3-7BFC-49A5-9320-37483778CF16
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I330@ INDI
+1 NAME Elizabeth /Webb/
+2 GIVN Elizabeth
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1639
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1710
+1 FAMC @F69@
+1 _UID 30D42618-5A49-4C00-B775-29D9DADD9196
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I331@ INDI
+1 NAME Richard /Satchell/
+2 GIVN Richard
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1876
+2 PLAC Suffolk, England
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601881&source=GBC/1881/0005601878
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601881&source=GBC/1881/0005601878
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601881&source=GBC/1881/0005601878
+1 EVEN was age 5 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601881&source=GBC/1881/0005601878
+1 FAMC @F58@
+1 _UID 199744AB-E17D-4553-B0AA-E44B624408F0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I332@ INDI
+1 NAME Richard /Webb/
+2 GIVN Richard
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1640
+2 PLAC Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 9 Feb 1686
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F70@
+1 _UID 2741BC55-273B-45C6-900D-397D80F3BA7F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I333@ INDI
+1 NAME James /Stevens/
+2 GIVN James
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708326&source=GBC/1861/0003708324
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1853
+2 PLAC Willingdon, Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708326&source=GBC/1861/0003708324
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708326&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708326&source=GBC/1861/0003708324
+1 EVEN was age 8 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708326&source=GBC/1861/0003708324
+1 FAMC @F19@
+1 _UID B6A83CA9-952A-4204-AEA1-7F87045CD7E3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I334@ INDI
+1 NAME George /Satchell/
+2 GIVN George
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsmouth, Hampshire, England
+1 FAMC @F58@
+1 _UID A30867C5-CA54-4DE6-8C9A-22E170C7EB90
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I335@ INDI
+1 NAME Elizabeth //
+2 GIVN Elizabeth
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1600
+1 FAMS @F114@
+1 _UID 1F291068-9DAC-479F-83FD-141BC5525058
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I336@ INDI
+1 NAME Elizabeth Sherwell /Satchell/
+2 GIVN Elizabeth Sherwell
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Nov 1839
+2 PLAC Portsea, Portsmouth
+2 SOUR
+3 PAGE Volume: 7; Page: 113; Line Number: 41; Record set: England & Wales Births 1837-2006; Subcategory: Civil Births; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/B/1839/4/MZ/000687/041
+1 OCCU Staymaker
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Portsmouth, Hampshire, England
+1 RESI
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Portsea, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1725; HouseHoldID: 2739592; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754056
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1147; Folio: 22; Page: 37; Schedule: 178; HouseHoldID: 3510964; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015804721
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 75; Page: 40; Schedule: 669; HouseHoldID: 1141755; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601824
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 875; Folio: 16; Page: 26; Schedule: 164; HouseHoldID: 1462446; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006810089
+1 EVEN was age 2
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Green Row
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1725; HouseHoldID: 2739592; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754056
+1 EVEN was age 31 and the wife of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG10; Piece number: 1147; Folio: 22; Page: 37; Schedule: 178; HouseHoldID: 3510964; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015804721
+1 EVEN was age 40 and the wife of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 75; Page: 40; Schedule: 669; HouseHoldID: 1141755; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601824
+1 EVEN was age 52 and the wife of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 875; Folio: 16; Page: 26; Schedule: 164; HouseHoldID: 1462446; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006810089
+1 FAMC @F55@
+1 _UID 337DEB71-AF55-4DF8-AE76-EBEE287038F1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I337@ INDI
+1 NAME Henry Thomas /Webb/
+2 GIVN Henry Thomas
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 15 May 1350
+2 PLAC Draycot, Yorkshire, England
+1 DEAT
+2 DATE 1420
+2 PLAC Draycot Foliott, Wiltshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Jan 1397
+2 PLAC Stratford On Avon, Warwickshire, England
+1 FAMS @F78@
+1 FAMC @F79@
+1 _UID EB6238C8-32A9-4AFD-934E-A4FB8B765585
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I338@ INDI
+1 NAME Rachel /Webb/
+2 GIVN Rachel
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1629
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1677
+1 FAMC @F70@
+1 _UID 566A46FA-537A-482D-89B9-4B163A954458
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I339@ INDI
+1 NAME Sarah Jane /Webb/
+2 GIVN Sarah Jane
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 FAMC @F76@
+1 _UID 68F23C77-3D6B-4967-BF8B-D9E21867AB82
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I340@ INDI
+1 NAME Matilda De Normandy /Beauclerc/
+2 GIVN Matilda De Normandy
+2 SURN Beauclerc
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Aug 1102
+2 PLAC London, Middlesex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 10 Sep 1169
+2 PLAC Rouen, Seine-Maritime, Haute-Normandie, France
+1 FAMS @F88@
+1 FAMC @F101@
+1 _UID DDA29B35-D1EC-42C8-B040-947AABF57B28
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I341@ INDI
+1 NAME Clarence /Rosenberry/
+2 GIVN Clarence
+2 SURN Rosenberry
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1464
+2 PLAC England
+1 DEAT Berkampsted, Suffolk, England
+2 _PRIM Y
+2 CAUS Berkampsted, Suffolk, England
+1 FAMS @F94@
+1 _UID D8C975C8-16C6-48B7-870A-6AD147A00002
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:12
+0 @I342@ INDI
+1 NAME Joseph /Webb/
+2 GIVN Joseph
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 6 Apr 1679
+2 PLAC East Meon, Hampshire based on IGI
+1 FAMC @F68@
+1 _UID 4CEA3C80-6C6C-411F-B331-D59CD0FA12B0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I343@ INDI
+1 NAME Elyas /de Richmond/
+2 GIVN Elyas
+2 SURN de Richmond
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1327
+2 PLAC Draycott, Yorkshire
+1 DEAT
+2 DATE 1399
+2 PLAC Draycott, Wiltshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1399
+2 PLAC Yorkshire, England
+1 FAMS @F79@
+1 _UID 3089F1B9-AC4F-4FF7-B509-74D67D9A6111
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:17
+0 @I344@ INDI
+1 NAME Bessy /Coker/
+2 GIVN Bessy
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835734&source=GBC/1871/0015835730
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1862
+2 PLAC Hampshire, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835734&source=GBC/1871/0015835730
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835734&source=GBC/1871/0015835730
+1 EVEN was age 9 and the daughter of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835734&source=GBC/1871/0015835730
+1 FAMC @F15@
+1 _UID FF4921CA-F136-4D82-AF12-3CED90E4E03F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I345@ INDI
+1 NAME Jane /Satchell/
+2 GIVN Jane
+2 SURN Satchell
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1836
+2 PLAC Portsea
+1 DEAT
+2 _PRIM Y
+2 DATE abt Feb 1857
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 259; Line number: 36; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1857/1/MZ/000626/036
+1 OCCU Staymaker
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+1 FAMC @F55@
+1 _UID D1888567-4D53-4B01-8FCC-40F89E12A39A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I346@ INDI
+1 NAME King John "Lackland" of England /Plantagenet/
+2 GIVN King John "Lackland" of England
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 24 Dec 1167
+2 PLAC Beaumont, Oxfordshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Oct 1216
+2 PLAC Newark, Nottinghamshire, England
+1 BURI
+2 _PRIM Y
+2 PLAC Departement de Maine-et-Loire, Pays de la Loire, France
+1 FAMS @F86@
+1 FAMS @F98@
+1 FAMS @F99@
+1 FAMS @F100@
+1 FAMC @F87@
+1 _UID F1C21A95-5DAD-42B6-B241-93559F3C40B8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:07
+0 @I347@ INDI
+1 NAME Mary //
+2 GIVN Mary
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1620
+1 FAMS @F90@
+1 _UID 8FBBB1FC-9B93-43D0-9819-20266DC7A561
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:04
+0 @I348@ INDI
+1 NAME Elaine /Webb/
+2 GIVN Elaine
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1626
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1689
+1 FAMC @F70@
+1 _UID C251916B-29BD-471F-9735-E1D9B0F265E9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I349@ INDI
+1 NAME Spencer Stonham /Thorpe/
+2 GIVN Spencer Stonham
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 24 Mar 1883
+2 PLAC London, Middlesex, Ontario, Canada
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 149
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 149
+2 SOUR
+3 PAGE Year: 1901; Census Place: London (City/Cité) Ward/Quartier No 1, London (city/cité), Ontario; Page: 8; Family No: 80
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 11 May 1916
+2 PLAC Detroit, Wayne County, Michigan, USA
+1 BURI
+2 _PRIM Y
+2 PLAC London, Middlesex County, Ontario, Canada
+1 RESI Marital Status: SingleRelation to Head of House: Son
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMC @F61@
+1 _UID EAEBDD72-6D73-4235-8AA6-67E09C850F91
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I350@ INDI
+1 NAME Henry /Webbe/
+2 GIVN Henry
+2 SURN Webbe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1500
+2 PLAC England
+1 DEAT
+2 _PRIM Y
+2 DATE abt 1565
+2 PLAC Long Melford, Suffolk, England
+1 FAMC @F73@
+1 _UID AB93DDFC-622E-410B-8AE9-B4BFDF85F7D3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I351@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 19 Dec 1675
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 12 Feb 1687
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID 552FB0AC-948B-4C86-818F-C8E94E3847DA
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I352@ INDI
+1 NAME Joan /Webb/
+2 GIVN Joan
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 21 Oct 1576
+2 PLAC Sussex
+1 DEAT
+2 _PRIM Y
+2 DATE 1653
+1 FAMC @F71@
+1 _UID 3CDACA7B-D606-456E-8587-FA66B38E00DB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:41
+0 @I353@ INDI
+1 NAME Jane /Shervill/
+2 GIVN Jane
+2 SURN Shervill
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1817
+2 PLAC Hampshire
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1725; HouseHoldID: 2739592; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754054
+1 DEAT
+2 _PRIM Y
+2 DATE 20 Jan 1857
+2 PLAC Portsea Island, Hampshire, England
+2 ADDR 6 Paradise Street, Landport
+2 SOUR
+3 PAGE Volume: 2B; Page: 259; Line number: 36; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1857/1/MZ/000626/036
+1 OCCU Staymaker
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Portsmouth
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Portsea, Hampshire, England
+2 ADDR Green Row
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1725; HouseHoldID: 2739592; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754054
+1 EVEN was age 25
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Green Row
+2 SOUR
+3 PAGE Archive reference: HO107; Piece number: 414; Folio number: 7; Page number: 8; Schedule: 1725; HouseHoldID: 2739592; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections fr
+4 CONC om: United King
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013754054
+1 FAMS @F55@
+1 FAMC @F56@
+1 _UID F141BC08-8178-45FF-894E-EC577DBFDD2C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:02
+0 @I354@ INDI
+1 NAME William /Blackman/
+2 GIVN William
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1739
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID ED1DFD7F-EBC8-4630-B332-BABD3ABDFE97
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I355@ INDI
+1 NAME Mary /Plantagenet/
+2 GIVN Mary
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1296
+1 DEAT
+2 _PRIM Y
+2 PLAC France
+1 FAMC @F82@
+1 _UID 0268F917-65EB-48B4-90E4-11A6E83715A3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I356@ INDI
+1 NAME Susannah /Prince/
+2 GIVN Susannah
+2 SURN Prince
+2 _PRIM Y
+1 NAME Susanna /Prince/
+2 GIVN Susanna
+2 SURN Prince
+2 SOUR @S19@
+3 PAGE Batch number: M13651-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_854543880
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Aug 1706
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 PLAC Abbotts Ann, Hampshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 18 Aug 1706
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMS @F109@
+1 FAMC @F111@
+1 _UID 6AE7DE17-6716-4130-B6FC-499C030FF06F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I357@ INDI
+1 NAME Richard /Dumbrell/
+2 GIVN Richard
+2 SURN Dumbrell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1524
+2 PLAC Rottingdean, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1596
+2 PLAC Sussex, England
+1 FAMS @F92@
+1 _UID 68EFFE2A-06E2-41EC-8227-3F5180748A20
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I358@ INDI
+1 NAME Nathaniel /Webb/
+2 GIVN Nathaniel
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Jul 1624
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Oct 1624
+1 FAMC @F70@
+1 _UID C7275782-4866-403D-B511-55425C5F495E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I359@ INDI
+1 NAME Elizabeth /De Burgh/
+2 GIVN Elizabeth
+2 SURN De Burgh
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 6 Jul 1332
+2 PLAC Carrickfergus Castle, Antrim, Ireland
+1 DEAT
+2 _PRIM Y
+2 DATE Dec 1363
+2 PLAC Antrim, Northern Ireland
+1 BURI
+2 _PRIM Y
+2 PLAC Clare, Suffolk, England
+1 FAMS @F79@
+1 FAMC @F80@
+1 _UID F17EA681-D2C8-4BD5-86FF-EDBB85BEC597
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I360@ INDI
+1 NAME William Edward /Satchell/
+2 GIVN William Edward
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1 Mar 1875
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693872&source=GBC/1891/0006693868
+2 SOUR
+3 PAGE Volume: 2B; Page: 280; Line number: 316; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1910/2/AZ/000277/316
+1 DEAT
+2 _PRIM Y
+2 DATE abt May 1910
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 280; Line number: 316; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1910/2/AZ/000277/316
+1 BAPM
+2 _PRIM Y
+2 DATE 11 Apr 1875
+2 PLAC St Mary, Portsea, Hampshire, England
+2 SOUR
+3 PAGE Archive reference: CHU 3/1B/36; Page: 122; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United
+4 CONC Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/BAP/00452780
+1 EVEN was age 6 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 77; Page: 43; Schedule: 689; HouseHoldID: 1141775; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601910&source=GBC/1881/0005601909
+1 EVEN was age 16 and the son of the head of the household
+2 TYPE Census UK 1891
+2 _PRIM Y
+2 DATE 5 Apr 1891
+2 PLAC Portsea, Portsea Island, Hampshire, England, Portsmouth
+2 ADDR Jersey Road
+2 SOUR
+3 PAGE Archive reference: RG12; Piece number: 857; Folio: 138; Page: 15; Schedule: 113; HouseHoldID: 1436706; Record set: 1891 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1891/0006693872&source=GBC/1891/0006693868
+1 EVEN Was PO Second Class
+2 TYPE Census UK 1901
+2 _PRIM Y
+2 DATE 31 Mar 1901
+2 PLAC Ramillies & Tender HMS Boxer Torpedo Boat Destroyer
+1 FAMC @F54@
+1 _UID DAD03F69-21A6-4BA9-8F00-BE14D8425E24
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I361@ INDI
+1 NAME Robert /Blackman/
+2 GIVN Robert
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1743
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID EC1DCDFD-0603-4E8C-B0DA-826EE33807B1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I362@ INDI
+1 NAME Dynnes /Webb/
+2 GIVN Dynnes
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1543
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1604
+1 FAMC @F72@
+1 _UID EB3F3469-B03A-4E4B-824A-E6BE43CAE55E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I363@ INDI
+1 NAME Alice Julian /Cloward/
+2 GIVN Alice Julian
+2 SURN Cloward
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1350
+2 PLAC Hampton Court, Warwickshire, England
+1 DEAT
+2 DATE 1410
+2 PLAC Stratford On Avon, Warwickshire, England
+1 DEAT
+2 DATE 1410
+2 PLAC Stratford, Warwickshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1390
+1 FAMS @F78@
+1 _UID 4BDF2715-863F-4692-8FF5-1911F3E5AB3B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:01
+0 @I364@ INDI
+1 NAME Patrick de /Chaworth/
+2 GIVN Patrick de
+2 SURN Chaworth
+2 _PRIM Y
+1 SEX M
+1 FAMS @F96@
+1 _UID C4AFBA3F-4C96-4B17-853A-19FDC8662517
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I365@ INDI
+1 NAME Sir Adam /Webb/
+2 GIVN Sir Adam
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1448
+2 PLAC Patcham, Sussex, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1490
+2 PLAC Patcham, Sussex, England, United Kingdom
+1 FAMC @F76@
+1 _UID A45BC974-9AD7-4067-94D5-3C56A26F600F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I366@ INDI
+1 NAME Henry /Plantagenet/
+2 GIVN Henry
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 DATE 1281
+2 PLAC Grosmont Castle, Monmouthshire, Wales.
+2 SOUR
+3 PAGE Page 75
+1 BIRT
+2 _PRIM Y
+2 DATE 1281
+2 PLAC Monmouth, Monmouthshire, Wales
+1 DEAT
+2 DATE 1345
+2 PLAC Leicester Castle, Leicester, Leicestershire, England
+2 SOUR
+3 PAGE page 75
+1 DEAT
+2 _PRIM Y
+2 DATE 1345
+2 PLAC Lancaster, Lancashire, England
+1 BURI
+2 _PRIM Y
+2 PLAC Newark Abbey, Leicester, Leicestershire, England
+1 TITL 3rd Earl of Lancaster
+2 _PRIM Y
+1 FAMS @F81@
+1 FAMS @F83@
+1 FAMC @F82@
+1 _UID 5CD41E97-1972-4C46-A7EB-E65D8B1BA663
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I367@ INDI
+1 NAME Mary /Blackman/
+2 GIVN Mary
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1747
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID ED15427A-A249-47E3-B8B0-BDDFB79B672C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I368@ INDI
+1 NAME Henry /Webb/
+2 GIVN Henry
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1 Jun 1583
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Jun 1583
+2 PLAC Patcham, Sussex, England
+1 FAMC @F71@
+1 _UID 347C97D1-46E8-42C0-BCFC-70A18314A1E0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I369@ INDI
+1 NAME King William I "The Conqueror" /De Normandy/
+2 GIVN King William I "The Conqueror"
+2 SURN De Normandy
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 DATE 14 Oct 1024
+2 PLAC Falaise, Duchy of Normandy, France
+1 BIRT
+2 _PRIM Y
+2 DATE 14 Oct 1024
+2 PLAC Falaise, Normandy, France
+1 DEAT
+2 _PRIM Y
+2 DATE 9 Sep 1087
+2 PLAC Rouen, Seine-Maritime, Haute-Normandie, France
+1 FAMS @F102@
+1 FAMC @F104@
+1 _UID D0E8321E-7035-448F-BBE2-373922122B9D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I370@ INDI
+1 NAME James /Prince/
+2 GIVN James
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1646
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Apr 1672
+2 PLAC Andover, Hampshire, England
+1 FAMS @F112@
+1 FAMC @F113@
+1 _UID 8B36099F-4C4C-4E49-928A-C86D29AA4B6B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I371@ INDI
+1 NAME Geoffrey /Webb/
+2 GIVN Geoffrey
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 12 Apr 1372
+2 PLAC Stratford On Avon, Warwickshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1425
+2 PLAC Stratford, Warwickshire, England
+1 FAMS @F77@
+1 FAMC @F78@
+1 _UID 31CC98B1-C1BD-417C-8D4B-960F6DBAC8FE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I372@ INDI
+1 NAME Hannah /Blackman/
+2 GIVN Hannah
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 11 Oct 1812
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F59@
+1 _UID 58A5A2F0-045F-448E-8C54-2A64A2CC68CC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I373@ INDI
+1 NAME Harold /Muir/
+2 GIVN Harold
+2 SURN Muir
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1907
+2 PLAC Cumbd Carlisle
+1 DEAT
+2 _PRIM Y
+2 DATE abt Aug 1978
+2 PLAC Carlisle, Cumberland, England
+1 OCCU School
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Carlisle, Cumberland, England
+1 EVEN was age 4 and the son of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Carlisle, Cumberland, England
+2 ADDR 48 Brook Street
+1 FAMC @F17@
+1 _UID DE9EBF49-6802-46DE-A956-66E9BFEBCFB7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I374@ INDI
+1 NAME Julian Mary /Burton/
+2 GIVN Julian Mary
+2 SURN Burton
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1375
+2 PLAC Stratford On Avon, Warwickshire, England
+1 DEAT
+2 DATE 1425
+2 PLAC Warwickshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1405
+2 PLAC Stratford, Warwickshire, England
+1 FAMS @F77@
+1 _UID 673E8263-CE9A-42BD-A845-3AC638D52517
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I375@ INDI
+1 NAME Blanche /d'Artois/
+2 GIVN Blanche
+2 SURN d'Artois
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1248
+2 PLAC Arras
+1 DEAT
+2 _PRIM Y
+2 DATE 2 May 1302
+2 PLAC Paris
+1 FAMS @F82@
+1 _UID 2AB37885-41EE-4167-A1FA-EFE34437B739
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:05
+0 @I376@ INDI
+1 NAME Edmund Crouchback /Plantagenet/
+2 GIVN Edmund Crouchback
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 16 Jan 1245
+2 PLAC London, England
+1 DEAT
+2 _PRIM Y
+2 DATE 5 Jun 1296
+2 PLAC Bayonne, Pyrenees-Atlantiques, Aquitaine, France
+1 BURI
+2 _PRIM Y
+2 DATE 15 Jul 1296
+2 PLAC Westminster Abbey, London
+1 TITL Earl of Leicester
+2 _PRIM Y
+1 FAMS @F82@
+1 FAMS @F85@
+1 FAMC @F84@
+1 _UID 878FB498-94DA-4614-BFB3-4C713A7E5459
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:14
+0 @I377@ INDI
+1 NAME Solloman /Prince/
+2 GIVN Solloman
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1657
+2 PLAC Hampshire, England
+1 FAMC @F113@
+1 _UID 8D94E5C1-BDA4-4D04-A9D3-09FD7531E730
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I378@ INDI
+1 NAME Edward /Webb/
+2 GIVN Edward
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 10 Oct 1666
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 25 Apr 1669
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F68@
+1 _UID 5852BD76-411A-4A5B-9620-E9E46C568079
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I379@ INDI
+1 NAME Ann /Webb/
+2 GIVN Ann
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1641
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1727
+1 FAMC @F69@
+1 _UID 1EB4A0F9-97A0-4070-8C9F-3F08F7B5B30A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I380@ INDI
+1 NAME Joanne /Webb/
+2 GIVN Joanne
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1447
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1517
+2 PLAC Wye, Kent, England, United Kingdom
+1 BURI
+2 _PRIM Y
+2 DATE 1517
+2 PLAC Kent, England, United Kingdom
+1 FAMC @F75@
+1 _UID 0C10ECF2-ED1F-463D-A260-4F8EF0F71796
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I381@ INDI
+1 NAME King Henry I of the English /Beauclerc/
+2 GIVN King Henry I of the English
+2 SURN Beauclerc
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE Sep 1068
+2 PLAC Selby, Yorkshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Dec 1135
+2 PLAC St Denis, Cher, Centre, France
+1 BURI
+2 _PRIM Y
+2 DATE 4 Dec 1135
+1 FAMS @F101@
+1 FAMC @F102@
+1 _UID E1A93F78-BA63-4D16-907D-D01C9CD5845F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I382@ INDI
+1 NAME Mary /Prince/
+2 GIVN Mary
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1634
+2 PLAC Hampshire, England
+1 FAMC @F113@
+1 _UID 85707B2C-E6B3-47C5-9819-9FE0BA18D720
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I383@ INDI
+1 NAME William /Blackman/
+2 GIVN William
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1685
+2 PLAC Amport Hampshire England
+1 FAMC @F110@
+1 _UID 41E611C5-01F3-464C-A9EB-236FDC12E811
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I384@ INDI
+1 NAME George /Blackman/
+2 GIVN George
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 23 Jun 1822
+2 PLAC Portsea, Hampshire, England
+1 FAMC @F60@
+1 _UID 3A337851-8314-40BD-BAFB-F10E57302648
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I385@ INDI
+1 NAME Richard /Shervill/
+2 GIVN Richard
+2 SURN Shervill
+2 _PRIM Y
+1 SEX M
+1 FAMS @F56@
+1 _UID 48732511-FDE9-4546-AB5A-F70273B27C12
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:18
+0 @I386@ INDI
+1 NAME Sarah //
+2 GIVN Sarah
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1411
+2 PLAC Kent, England
+1 FAMS @F95@
+1 _UID 605F4129-3795-4A6C-A4BC-C6FC062117DE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I387@ INDI
+1 NAME Isabella /Plantagenet/
+2 GIVN Isabella
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1214
+2 PLAC Winchester, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Dec 1241
+2 PLAC Naples, Napoli, Campania, Italy
+1 FAMC @F86@
+1 _UID 8840B2B6-C02B-4085-AE67-7B588097525D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I388@ INDI
+1 NAME James /Prince/
+2 GIVN James
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 24 Nov 1672
+2 PLAC Andover, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 8 Nov 1730
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMS @F111@
+1 FAMC @F112@
+1 _UID 0EAD1866-CA63-48CD-84B8-70F0A0B017ED
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I389@ INDI
+1 NAME Thomas /Stevens/
+2 GIVN Thomas
+2 SURN Stevens
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708325&source=GBC/1861/0003708324
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Willingdon, Sussex, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708325&source=GBC/1861/0003708324
+1 OCCU Agricultural Labourer
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708325&source=GBC/1861/0003708324
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Willingdon, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708325&source=GBC/1861/0003708324
+1 EVEN was age 10 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Willingdon, Eastbourne, Sussex, England
+2 ADDR Willingdon Street
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 566; Folio: 39; Page: 5; Schedule: 29; HouseHoldID: 806719; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdo
+4 CONC m, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003708325&source=GBC/1861/0003708324
+1 FAMC @F19@
+1 _UID 0E76D953-8C7A-48A5-B278-608EF435684E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I390@ INDI
+1 NAME Maud /Plantagenet/
+2 GIVN Maud
+2 SURN Plantagenet
+2 _PRIM Y
+1 NAME Matilda of Lancaster /Plantagenet/
+2 GIVN Matilda of Lancaster
+2 SURN Plantagenet
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1310
+1 DEAT
+2 _PRIM Y
+2 DATE 5 May 1377
+1 FAMS @F80@
+1 FAMC @F81@
+1 _UID C342283A-6E38-4CBD-9C46-B3B4E458A903
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:09
+0 @I391@ INDI
+1 NAME Andrew /Webb/
+2 GIVN Andrew
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1546
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 25 Dec 1598
+1 FAMC @F72@
+1 _UID 4B8D7088-1C9D-4C27-9ABF-FF704FADB544
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I392@ INDI
+1 NAME Johanne /Hall/
+2 GIVN Johanne
+2 SURN Hall
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1405
+2 PLAC Stratford-upon-Avon, Warwickshire, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1430
+2 PLAC London, Middlesex, England
+1 FAMS @F76@
+1 _UID 9987F313-5A42-4BA6-84BB-D8123892D7E5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I393@ INDI
+1 NAME Eliza /Blackman/
+2 GIVN Eliza
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 30 Jun 1816
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1881
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F59@
+1 _UID 2BA253CA-C8F5-483F-891E-978AF0FBC13A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I394@ INDI
+1 NAME Thomas /Blackman/
+2 GIVN Thomas
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1698
+2 PLAC Amport Hampshire England
+1 FAMC @F110@
+1 _UID 802AAFE0-D5F9-4DD0-8494-DA761C707F2F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I395@ INDI
+1 NAME William /Blackman/
+2 GIVN William
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1670
+2 PLAC Amport, Hampshire, England
+1 FAMS @F110@
+1 _UID 2EE543A8-053E-4A3A-9FE8-AF2F06D2100F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I396@ INDI
+1 NAME /Webb/
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1624
+2 PLAC Patcham, Sussex
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Oct 1624
+2 PLAC Patcham, Sussex
+1 FAMC @F70@
+1 _UID DA79262B-7C9F-418C-AD50-3245409614FE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:42
+0 @I397@ INDI
+1 NAME Samuel /Blackman/
+2 GIVN Samuel
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 8 May 1814
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F59@
+1 _UID 148BC2D1-CE28-4440-AF75-084BABBEFD94
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I398@ INDI
+1 NAME Margaret /Webbe/
+2 GIVN Margaret
+2 SURN Webbe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1415
+2 PLAC Worcester, Worcestershire, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 PLAC Worcester, Worcestershire, England, United Kingdom
+1 FAMC @F76@
+1 _UID 94F14805-F5B9-4629-82C5-5942EB451A95
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I399@ INDI
+1 NAME William /Webb/
+2 GIVN William
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1549
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 26 Jul 1567
+2 PLAC Patcham, Sussex, England
+1 FAMC @F72@
+1 _UID B11A6106-12C5-4D92-BC22-8F8C05CD6431
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I400@ INDI
+1 NAME Richard Stearl Cornwell /Plantagenet/
+2 GIVN Richard Stearl Cornwell
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Jan 1209
+2 PLAC Winchester, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 2 Apr 1272
+2 PLAC Berkhampsted, Hertfordshire, England
+1 FAMC @F86@
+1 _UID A0323165-0F93-464A-B816-5D687FA03D48
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I401@ INDI
+1 NAME Duke Richard II "The Good" /De Normandie/
+2 GIVN Duke Richard II "The Good"
+2 SURN De Normandie
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 23 Aug 963
+2 PLAC Normandy, France
+1 DEAT
+2 _PRIM Y
+2 DATE 28 Aug 1026
+2 PLAC F�camp, Seine-Maritime, Haute-Normandie, France
+1 FAMS @F105@
+1 _UID 0CA51A07-F3C5-43C5-AC6D-7EECB0C8979B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I402@ INDI
+1 NAME William /Webb/
+2 GIVN William
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1425
+1 DEAT
+2 _PRIM Y
+2 DATE 1523
+1 FAMC @F77@
+1 _UID C5B215EE-5668-46B6-A9F3-6F5A5900772F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I403@ INDI
+1 NAME John /Blackman/
+2 GIVN John
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1734
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID 2AFBA816-5D1A-4E6A-A441-046170AFBE02
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I404@ INDI
+1 NAME William /Prince/
+2 GIVN William
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Nov 1708
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMC @F111@
+1 _UID 54FB0C41-06FF-4DC4-8B6E-DE82557FA766
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I405@ INDI
+1 NAME Blanche of Lancaster //
+2 GIVN Blanche of Lancaster
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1305
+1 DEAT
+2 _PRIM Y
+2 DATE abt 10 Jul 1380
+1 FAMC @F81@
+1 _UID 5162264C-1FA6-4A5B-A2F2-4410FA98E603
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I406@ INDI
+1 NAME Isabella De /Beauchap/
+2 GIVN Isabella De
+2 SURN Beauchap
+2 _PRIM Y
+1 SEX F
+1 FAMS @F96@
+1 _UID 7D95C04E-D7F1-456B-8296-11F70363D60B
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I407@ INDI
+1 NAME James /Blackman/
+2 GIVN James
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536420&source=GBC/1841/0013536416
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346865&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 DATE 1836
+2 PLAC East MeonHampshire, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536420&source=GBC/1841/0013536416
+1 BIRT
+2 _PRIM Y
+2 DATE 1837
+2 PLAC East MeonHampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 8 Mar 1899
+2 PLAC Fareham, Hampshire, England
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346865&source=GBC/1851/0006346863
+1 EVEN was age 5 and the son of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536420&source=GBC/1841/0013536416
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536420&source=GBC/1841/0013536416
+1 EVEN was age 14 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346865&source=GBC/1851/0006346863
+1 RESI
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346865&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 1FC477D3-5D87-4889-9D6E-278BECB572DB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I408@ INDI
+1 NAME Thomas /White/
+2 GIVN Thomas
+2 SURN White
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1410
+2 PLAC Kent, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1480
+2 PLAC England
+1 FAMS @F95@
+1 _UID EEA87584-4495-4C05-86CF-FE4A6F7521DF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I409@ INDI
+1 NAME Nathaniel /Webb/
+2 GIVN Nathaniel
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1645
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1645
+1 FAMC @F69@
+1 _UID 6AAF5EC4-2C1A-438F-AADA-67BED42890F6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I410@ INDI
+1 NAME Eliza /Clark/
+2 GIVN Eliza
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256194&source=GBC/1841/0001256197
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1826
+2 PLAC Essex, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256194&source=GBC/1841/0001256197
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256194&source=GBC/1841/0001256197
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256194&source=GBC/1841/0001256197
+1 FAMC @F115@
+1 _UID 9245F772-A363-452A-BE8C-3F71B3A3A476
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I411@ INDI
+1 NAME Susannah /Blackman/
+2 GIVN Susannah
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Jul 1732
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMC @F109@
+1 _UID 068905F9-7553-42D4-A22F-6430A51D5200
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I412@ INDI
+1 NAME /Malcolm III/
+2 SURN Malcolm III
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1031
+2 PLAC in Atholl, Perth, Scotland
+1 DEAT
+2 _PRIM Y
+2 DATE 13 Nov 1093
+2 PLAC in Alnwick, Northumberland, England
+1 FAMS @F103@
+1 _UID 11C3A99D-10E2-4445-8B8F-4951D90FE6AC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I413@ INDI
+1 NAME Mary /Prince/
+2 GIVN Mary
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 20 Mar 1713
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Jun 1780
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F111@
+1 _UID ACAD725B-1172-4103-9580-3A1EA1C34974
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I414@ INDI
+1 NAME Maria /Clark/
+2 GIVN Maria
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067971&source=GBC/1851/0008067972
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256196&source=GBC/1841/0001256197
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1836
+2 PLAC Braintree, Essex, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067971&source=GBC/1851/0008067972
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Braintree, Essex, England
+2 ADDR London Road
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067971&source=GBC/1851/0008067972
+1 EVEN was age 5 and the daughter of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256196&source=GBC/1841/0001256197
+1 EVEN was age 15 and the daughter of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Braintree, Essex, England
+2 ADDR London Road
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067971&source=GBC/1851/0008067972
+1 RESI
+2 DATE 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256196&source=GBC/1841/0001256197
+1 FAMC @F115@
+1 _UID C9D05ED9-140A-4107-8479-3A430F4C61ED
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I415@ INDI
+1 NAME Martha /Blackman/
+2 GIVN Martha
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1741
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID DECCD1B0-C702-4325-B8C5-7FA306973916
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I416@ INDI
+1 NAME Adam /Webb/
+2 GIVN Adam
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1631
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1709
+1 FAMC @F70@
+1 _UID AD09E0C0-49DA-4186-881C-518F23063B92
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I417@ INDI
+1 NAME Joan /Webb/
+2 GIVN Joan
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1550
+2 PLAC Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1635
+1 FAMC @F72@
+1 _UID 63265758-21F9-431B-BE27-9BB66DC55394
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I418@ INDI
+1 NAME Henry /Blackman/
+2 GIVN Henry
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 2 Feb 1806
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Dec 1806
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F59@
+1 _UID 9506EC80-D8C9-4D4C-B93C-6A0A51679AD6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I419@ INDI
+1 NAME Joseph /Webb/
+2 GIVN Joseph
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 16 Dec 1649
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 5 Jun 1725
+2 PLAC Stanmer, Sussex, England
+1 FAMC @F69@
+1 _UID C0B98C21-280F-4F31-9B67-FEF4DE1B3D60
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I420@ INDI
+1 NAME Eleanor /Plantagenet/
+2 GIVN Eleanor
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1318
+1 DEAT
+2 _PRIM Y
+2 DATE 1 Jan 1372
+2 PLAC Arundel Castle, Arundel, Sussex, England
+2 SOUR
+3 PAGE Page 78
+2 SOUR
+3 PAGE Page 78
+2 SOUR
+3 PAGE Page 78
+1 BURI
+2 _PRIM Y
+2 PLAC Lewes Priory, Lewes, Sussex, England.
+2 SOUR
+3 PAGE Page 79
+2 SOUR
+3 PAGE Page 79
+2 SOUR
+3 PAGE Page 79
+1 FAMC @F81@
+1 _UID D792D9A2-B931-452D-9527-01375A1119A3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I421@ INDI
+1 NAME William /Blackman/
+2 GIVN William
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346864&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 15 May 1836
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 8 Mar 1899
+2 PLAC Gosport, Hampshire, England
+1 OCCU Farm Labourer
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346864&source=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346864&source=GBC/1851/0006346863
+1 EVEN was age 22 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346864&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 8B9BCE44-32CF-40A6-8A3C-536C657EE499
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I422@ INDI
+1 NAME John /Blackman/
+2 GIVN John
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S19@
+3 PAGE Batch number: M13651-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_854543880
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 7 Apr 1695
+2 PLAC Andover, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 3 Oct 1767
+2 PLAC Andover, Hampshire, England
+1 FAMS @F109@
+1 FAMC @F110@
+1 _UID A4641762-BBD7-474F-83EE-32143D2BF031
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I423@ INDI
+1 NAME John Joseph /Satchell/
+2 GIVN John Joseph
+2 SURN Satchell
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt May 1871
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 396; Line Number: 72; Record set: England & Wales Births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1871/2/AZ/000638/072
+2 SOUR
+3 PAGE Volume: 2B; Page: 324; Line number: 265; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1883/2/AZ/000314/265
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601880&source=GBC/1881/0005601878
+1 DEAT
+2 _PRIM Y
+2 DATE abt May 1883
+2 PLAC Portsea Island, Hampshire, England
+2 SOUR
+3 PAGE Volume: 2B; Page: 324; Line number: 265; Record set: England & Wales Deaths 1837-2007; Subcategory: Deaths & burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/D/1883/2/AZ/000314/265
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1881
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601880&source=GBC/1881/0005601878
+1 RESI
+2 _PRIM Y
+2 DATE 1881
+2 PLAC Portsea, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601880&source=GBC/1881/0005601878
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1881
+2 _PRIM Y
+2 DATE 3 Apr 1881
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Oxford Road
+2 SOUR
+3 PAGE Archive reference: RG11; Piece number: 1161; Folio: 76; Page: 42; Schedule: 683; HouseHoldID: 1141769; Record set: 1881 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Ki
+4 CONC ngdom;
+3 REF http://search.findmypast.com/record?id=GBC/1881/0005601880&source=GBC/1881/0005601878
+1 FAMC @F58@
+1 _UID 1015C6AD-130C-4C3D-8976-5719E74E6F8D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I424@ INDI
+1 NAME Thomas /Webb/
+2 GIVN Thomas
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1384
+2 PLAC Yorkshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1443
+2 PLAC Yorkshire, England
+1 FAMC @F77@
+1 _UID 90AE810A-2AA2-44D5-B01E-2A6E142EE1D6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I425@ INDI
+1 NAME Elizabeth /Webb/
+2 GIVN Elizabeth
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1591
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 24 Mar 1609
+2 PLAC Sussex, England
+1 FAMC @F71@
+1 _UID DC76259B-49AB-4208-A5E9-2697F721A467
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I426@ INDI
+1 NAME Albert /Coker/
+2 GIVN Albert
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835735&source=GBC/1871/0015835730
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1864
+2 PLAC Hampshire, England
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835735&source=GBC/1871/0015835730
+1 RESI
+2 _PRIM Y
+2 DATE 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835735&source=GBC/1871/0015835730
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1871
+2 _PRIM Y
+2 DATE 2 Apr 1871
+2 PLAC Fareham, Hampshire, England
+2 ADDR Trinity Street
+2 SOUR @S14@
+3 PAGE Archive reference: RG10; Piece number: 1154; Folio: 57; Page: 17; Schedule: 81; HouseHoldID: 3514322; Record set: 1871 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1871/0015835735&source=GBC/1871/0015835730
+1 FAMC @F15@
+1 _UID 9544F024-8EAE-4817-9586-0607635083F8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I427@ INDI
+1 NAME Mathilde /Flanders/
+2 GIVN Mathilde
+2 SURN Flanders
+2 _PRIM Y
+1 NAME Matilda /Flanders/
+2 GIVN Matilda
+2 SURN Flanders
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1031
+2 PLAC Flanders, France
+1 DEAT
+2 _PRIM Y
+2 DATE 2 Nov 1083
+2 PLAC Normandy, France
+1 FAMS @F102@
+1 _UID 7A9772D9-49A9-4C95-AF38-0BCB2987E11D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I428@ INDI
+1 NAME Frances /Prince/
+2 GIVN Frances
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Nov 1710
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMC @F111@
+1 _UID B27A9913-E686-4CB9-908C-B34F9A0D7A84
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I429@ INDI
+1 NAME Richard /Blackman/
+2 GIVN Richard
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 23 Dec 1737
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID 18A3613D-1F23-4FD0-8E6B-13C27CD0FEE8
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I430@ INDI
+1 NAME Alice /Webb/
+2 GIVN Alice
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1374
+2 PLAC Stratford On Avon, Warwickshire, England
+1 DEAT
+2 _PRIM Y
+2 PLAC Stratford On Avon, Warwickshire, England
+1 FAMC @F78@
+1 _UID E4D8F870-924C-4C31-85E2-B65322C8864F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I431@ INDI
+1 NAME Charles /Blackman/
+2 GIVN Charles
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1749
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID F477A369-D268-4D71-A648-5A50D4BB7F24
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I432@ INDI
+1 NAME Thomas /Byshoppe/
+2 GIVN Thomas
+2 SURN Byshoppe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1549
+2 PLAC Rottingdean, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1626
+1 FAMS @F93@
+1 _UID 53D8B4CD-145E-4D3E-96E2-A96A6C6A9C96
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:03
+0 @I433@ INDI
+1 NAME Richard /Webb/
+2 GIVN Richard
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 7 Aug 1575
+2 PLAC Patcham, Sussex
+1 DEAT
+2 _PRIM Y
+2 DATE 6 Dec 1631
+2 PLAC Patcham, Sussex
+1 FAMC @F71@
+1 _UID A94141AC-BFC6-4772-B62D-9F987046DD67
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I434@ INDI
+1 NAME Beatrice of /Savoy/
+2 GIVN Beatrice of
+2 SURN Savoy
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1205
+2 PLAC Chambéry, Savoie, Rhone-Alpes, France
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Jan 1267
+2 PLAC Chambery, Savoy, France
+1 FAMS @F97@
+1 _UID 53FB5C36-FFF0-450D-B4E2-5D00F5063DC2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I435@ INDI
+1 NAME Mary /Webb/
+2 GIVN Mary
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 18 Feb 1682
+2 PLAC East Meon, Hampshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 4 Nov 1685
+1 FAMC @F68@
+1 _UID 07A2C565-9A5B-4308-A3E3-6A19838D1060
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I436@ INDI
+1 NAME Judith /De Bretagne/
+2 GIVN Judith
+2 SURN De Bretagne
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 982
+2 PLAC Bretagne, France
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Jun 1017
+2 PLAC Normandie, France
+1 FAMS @F105@
+1 _UID D7032E55-0FF6-4965-979E-39ADBC01FD0C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I437@ INDI
+1 NAME Alice /Webb/
+2 GIVN Alice
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 DATE 1404
+2 PLAC Stratford On Avon, Warwickshire, England
+1 BIRT
+2 _PRIM Y
+2 DATE 1406
+2 PLAC Stratford-upon-Avon, Warwickshire, England
+1 DEAT
+2 _PRIM Y
+2 PLAC Stratford, Warwickshire, England
+1 FAMC @F77@
+1 _UID 3088FAF5-F5C8-4043-ADAA-B88E805A6AEB
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I438@ INDI
+1 NAME Harriet Jane /Sheridan/
+2 GIVN Harriet Jane
+2 SURN Sheridan
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 23 Jun 1844
+2 PLAC Streetsville, Ontario, Canada
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; County Marriage Registers, 1858-June 1869; Series: MS248; Reel: 13
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; County Marriage Registers, 1858-June 1869; Series: MS248; Reel: 13
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 5 Dec 1893
+2 PLAC London, Ontario, Canada
+1 BURI
+2 _PRIM Y
+2 PLAC Woodland, London, Middlesex County, Ontario, Canada
+1 RESI Marital Status: MarriedRelation to Head of House: Wife
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMS @F61@
+1 _UID AC48F136-B02B-4788-8F54-B297CA7E1D46
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:18
+0 @I439@ INDI
+1 NAME Matilda /Atheling/
+2 GIVN Matilda
+2 SURN Atheling
+2 _PRIM Y
+1 NAME Matilda /Canmore/
+2 GIVN Matilda
+2 SURN Canmore
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1080
+2 PLAC Dunfermline, Fife, Scotland
+1 DEAT
+2 _PRIM Y
+2 DATE 1 May 1118
+2 PLAC Westminster, Middlesex, England
+1 FAMS @F101@
+1 FAMC @F103@
+1 _UID 831444DA-9A04-4544-B053-E3770F53A25F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I440@ INDI
+1 NAME Thomas /Blackman/
+2 GIVN Thomas
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 19 Jun 1764
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 22 Jun 1764
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F108@
+1 _UID 0336F56C-0D52-4FD4-B6C6-A886EF5885B3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I441@ INDI
+1 NAME Ramon Berenguer IV of /Provence/
+2 GIVN Ramon Berenguer IV of
+2 SURN Provence
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1195
+2 PLAC Aix En Provence, Bouches-du-Rhone, Provence-Alpes-Cote d'Azur, France
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Aug 1245
+2 PLAC Aix En Provence, Bouches Du Rhone, Provence, France
+1 FAMS @F97@
+1 _UID E349E6E1-63A4-48C5-96AE-1682821F6FC0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:08
+0 @I442@ INDI
+1 NAME Harriet /Blackman/
+2 GIVN Harriet
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Jun 1808
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE Mar 1902
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F59@
+1 _UID 11FA129B-A2F4-40A7-9CD7-17F9C9D27F8E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I443@ INDI
+1 NAME Richard /Webb/
+2 GIVN Richard
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1618
+2 PLAC Moulscombe, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 30 Jul 1672
+2 PLAC Falmer, Sussex, England
+1 BAPM
+2 _PRIM Y
+2 DATE 31 May 1621
+2 PLAC Cambridge, Cambridgeshire, England
+2 SOUR
+3 PAGE Place: Cambridge, Cambridgeshire, England; Collection: St Sepulchre; -; Date Range: 1609 - 1689; Film Number: 1040428
+1 BURI
+2 _PRIM Y
+2 DATE 30 Jul 1672
+2 PLAC Rottingdean, England
+2 SOUR
+3 PAGE London Metropolitan Archives, St Giles Cripplegate, Composite register, 1667 - 1672, P69/GIS/A/002/MS06419, Item 007
+1 FAMS @F69@
+1 FAMC @F70@
+1 _UID ECDDCB4D-1379-46B7-AF6D-BB71BC906860
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:20
+0 @I444@ INDI
+1 NAME Sarah /Ford/
+2 GIVN Sarah
+2 SURN Ford
+2 _PRIM Y
+2 SOUR @S22@
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202354/1
+1 NAME Blah /Foo/
+2 NPFX Mrs
+2 GIVN Blah
+2 SURN Foo
+2 TYPE MarriedName
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 21 Jun 1772
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202354/1
+1 DEAT
+2 DATE 1819
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire Burials; Subcategory: Parish Burials; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/D/805602446/1
+1 DEAT
+2 _PRIM Y
+2 DATE 20 Nov 1819
+2 PLAC East Meon, Hampshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 16 Jul 1758
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202354/1
+1 FAMS @F59@
+1 FAMC @F66@
+1 _UID FF158782-7790-4E7C-9147-48D33EFB510C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:18
+0 @I445@ INDI
+1 NAME Sarah /Chase/
+2 GIVN Sarah
+2 SURN Chase
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Feb 1737
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 9 Jan 1819
+2 PLAC East Meon, Hampshire, England
+1 CHR
+2 _PRIM Y
+2 DATE 20 Feb 1737
+2 PLAC East Meon, Hampshire
+1 FAMS @F108@
+1 _UID 067CF60E-60FD-48F6-960C-D0138F0ACA0C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I446@ INDI
+1 NAME Margaret Stella /Allmey/
+2 GIVN Margaret Stella
+2 SURN Allmey
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt Nov 1908
+2 PLAC Romford, Essex, England
+2 SOUR
+3 PAGE Volume: 4A; Page: 525; Line Number: 179; Record set: England & Wales births 1837-2006; Subcategory: Births & baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/B/1908/4/AZ/000010/179
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/8&source=GBC/1911/RG14/09750/0459/5
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Woodford, Essex, England
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/8&source=GBC/1911/RG14/09750/0459/5
+1 EVEN was age 2 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Woodford, West Ham, Essex, England
+2 ADDR 10 Grove Crescent Woodford
+2 SOUR
+3 PAGE Archive reference: RG14; Piece number: 9750; Schedule: 230; HouseHoldID: 97500459; Record set: 1911 Census for England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/09750/0459/8&source=GBC/1911/RG14/09750/0459/5
+1 FAMS @F106@
+1 FAMC @F13@
+1 _UID F340596C-CC79-4BA1-BCCF-B03EE40A5059
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I447@ INDI
+1 NAME Mary Ann /Blackman/
+2 GIVN Mary Ann
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346871&source=GBC/1851/0006346863
+1 SEX F
+1 BIRT
+2 DATE 1838
+2 PLAC Petersfield, Hampshire
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536421&source=GBC/1841/0013536416
+1 BIRT
+2 _PRIM Y
+2 DATE 31 Dec 1837
+2 PLAC Petersfield, Hampshire
+1 DEAT
+2 _PRIM Y
+2 DATE aft 1891
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346871&source=GBC/1851/0006346863
+1 EVEN was age 3 and the daughter of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536421&source=GBC/1841/0013536416
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536421&source=GBC/1841/0013536416
+1 EVEN was age 2 and the daughter of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346871&source=GBC/1851/0006346863
+1 RESI
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346871&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 9D5500A7-79BC-4B07-9807-82C1DF589387
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I448@ INDI
+1 NAME John /Prince/
+2 GIVN John
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1622
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 PLAC England
+1 BAPM
+2 _PRIM Y
+2 DATE 26 Feb 1625
+2 PLAC Andover, Hampshire, England
+1 FAMS @F113@
+1 FAMC @F114@
+1 _UID 0910BCFF-C540-4EA2-9F1B-FDD1072371B5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I449@ INDI
+1 NAME William /Blackman/
+2 GIVN William
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 3 Sep 1797
+2 PLAC Bishops Waltham, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 9 Jan 1874
+2 PLAC Bordean, Hants
+1 RESI
+2 _PRIM Y
+2 PLAC Bishops-Waltham, Hampshire, England
+1 FAMC @F59@
+1 _UID 1E91B643-D7D0-4229-A8FB-04F871E2663E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:43
+0 @I450@ INDI
+1 NAME William /Clark/
+2 GIVN William
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067968&source=GBC/1851/0008067972
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256193&source=GBC/1841/0001256197
+1 SEX M
+1 BIRT
+2 DATE 1801
+2 PLAC Essex, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256193&source=GBC/1841/0001256197
+1 BIRT
+2 _PRIM Y
+2 DATE 1804
+2 PLAC Essex, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067968&source=GBC/1851/0008067972
+1 OCCU Labourer
+2 _PRIM Y
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+1 EVEN was age 47 and the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Braintree, Essex, England
+2 ADDR London Road
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067968&source=GBC/1851/0008067972
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Braintree, Essex, England
+2 ADDR London Road
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067968&source=GBC/1851/0008067972
+1 EVEN was age 40 and the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256193&source=GBC/1841/0001256197
+1 OCCU Agricultural Labourer
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1785; Folio: 600; Page: 11; Schedule: 47; HouseHoldID: 1630581; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United K
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0008067968&source=GBC/1851/0008067972
+1 RESI
+2 DATE 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256193&source=GBC/1841/0001256197
+1 FAMS @F115@
+1 _UID F67B1562-684D-47CD-B4BF-E0B60BC2890F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I451@ INDI
+1 NAME Mary Elizabeth /Thorpe/
+2 GIVN Mary Elizabeth
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE Jan 1871
+2 PLAC Streetsville, Peel, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 86
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1871; Census Place: Streetsville, Peel, Ontario; Roll: C-9957; Page: 1; Family No: 1
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 86
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 29 Aug 1946
+2 PLAC Seattle, King, Washington
+1 BURI
+2 _PRIM Y
+2 DATE 31 Aug 1946
+1 RESI Marital Status: SingleRelation to Head of House: Daughter
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMC @F61@
+1 _UID EF823180-A2A1-46C0-9A40-98F5E18A2BF2
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I452@ INDI
+1 NAME Daniel /Clark/
+2 GIVN Daniel
+2 SURN Clark
+2 _PRIM Y
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256195&source=GBC/1841/0001256197
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1832
+2 PLAC Essex, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256195&source=GBC/1841/0001256197
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256195&source=GBC/1841/0001256197
+1 EVEN was age 9 and the son of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Braintree, Essex, England
+2 ADDR Boars Head Yard
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 331; Folio number: 10; Page number: 14; Schedule: 1601; HouseHoldID: 320530; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections f
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0001256195&source=GBC/1841/0001256197
+1 FAMC @F115@
+1 _UID 08EDA55E-5B87-4B75-9305-9D50E4F076AF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I453@ INDI
+1 NAME Elizabeth Lucy /Blackman/
+2 GIVN Elizabeth Lucy
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 29 Jan 1832
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1917
+2 PLAC Portsmouth, Hampshire, England
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536418&source=GBC/1841/0013536416
+1 EVEN was age 9 and the daughter of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536418&source=GBC/1841/0013536416
+1 FAMC @F14@
+1 _UID 139C68E7-F930-41B6-BD73-D6BFAEC1F3D7
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I454@ INDI
+1 NAME Richard /Prince/
+2 GIVN Richard
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 3 May 1701
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 13 May 1730
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F111@
+1 _UID D128AE8A-3158-4206-BB56-708A63ED8E19
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I455@ INDI
+1 NAME Bridget Of /Cholderton/
+2 GIVN Bridget Of
+2 SURN Cholderton
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1671
+2 PLAC Hampshire, England
+1 FAMS @F110@
+1 _UID C12B3FD9-D12D-4DA6-9391-B7093ABDEC77
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I456@ INDI
+1 NAME Richard /Blackman/
+2 GIVN Richard
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 16 Feb 1795
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Oct 1868
+2 PLAC Oxenbourne, Hants
+1 FAMC @F59@
+1 _UID 5841418D-AE3A-4C96-BB6C-37E3B01786A6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I457@ INDI
+1 NAME Judith /Prince/
+2 GIVN Judith
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 8 Jun 1718
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 17 Aug 1741
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F111@
+1 _UID 85F86372-7417-47F2-A72F-3A625CA220E4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I458@ INDI
+1 NAME Sarah Jane /Blackman/
+2 GIVN Sarah Jane
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1834
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Jun 1915
+2 PLAC East Meon, Hampshire, England
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536419&source=GBC/1841/0013536416
+1 EVEN was age 7 and the daughter of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536419&source=GBC/1841/0013536416
+1 FAMC @F14@
+1 _UID BBFD4497-5344-4C7E-A025-1AE5F996CCE9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I459@ INDI
+1 NAME Ann /Webb/
+2 GIVN Ann
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1552
+2 PLAC Patcham, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1618
+2 PLAC St. Clements, Cambridge, Cambridgeshire, England
+1 BURI
+2 _PRIM Y
+2 DATE 12 Nov 1617
+2 PLAC St. Clements, Cambridge, Cambridgeshire, England
+1 FAMC @F72@
+1 _UID 339E697E-0EA7-40A3-866E-8B6ACA3FF618
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I460@ INDI
+1 NAME Ruth /Prince/
+2 GIVN Ruth
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 12 May 1700
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1749
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMC @F111@
+1 _UID BD459F0E-B38C-45EA-8F89-5CEAC3BE5788
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I461@ INDI
+1 NAME John /Blackman/
+2 GIVN John
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1849
+2 PLAC Droxford, Hampshire, England
+1 FAMC @F14@
+1 _UID 07FD3BEC-398C-400C-9626-C18C0E50F388
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I462@ INDI
+1 NAME George /Blackman/
+2 GIVN George
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 11 Aug 1799
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 14 Aug 1849
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F59@
+1 _UID 801019B3-557E-4F1E-AD84-17417167165C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I463@ INDI
+1 NAME Robert /Blackman/
+2 GIVN Robert
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Jan 1700
+2 PLAC Amport Hampshire England
+1 FAMC @F110@
+1 _UID 58A549E8-F72E-4805-98A1-4536C50769BD
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I464@ INDI
+1 NAME Robert /Prince/
+2 GIVN Robert
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Jan 1703
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Jan 1728
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F111@
+1 _UID 367B1B73-9F9D-4E0C-AC4C-FF13CA885B79
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I465@ INDI
+1 NAME Edward /Blackman/
+2 GIVN Edward
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068088&source=GBC/1861/0004068087
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1847
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068088&source=GBC/1861/0004068087
+1 OCCU Miller
+2 _PRIM Y
+2 DATE 1861
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068088&source=GBC/1861/0004068087
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Portsea, Hampshire, England
+2 ADDR St Marys Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068088&source=GBC/1861/0004068087
+1 EVEN was age 14 and the son of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR St Marys Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 634; Folio: 150; Page: 21; Schedule: 129; HouseHoldID: 883667; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kin
+4 CONC gdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0004068088&source=GBC/1861/0004068087
+1 FAMC @F14@
+1 _UID 88A986C9-E352-46CA-ACF7-EA2F281B86FD
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I466@ INDI
+1 NAME William /BLACKMAN/
+2 GIVN William
+2 SURN BLACKMAN
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1777
+2 PLAC Droxford, Hampshire.England
+1 DEAT
+2 _PRIM Y
+2 DATE 1819
+2 PLAC Bishops Waltham, Hampshire, England
+1 FAMC @F108@
+1 _UID FFA9B574-450D-4B44-895E-1D6360FA31DF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I467@ INDI
+1 NAME Mary /Welch/
+2 GIVN Mary
+2 SURN Welch
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1804
+2 PLAC Upham, Hampshire, England
+1 FAMS @F60@
+1 _UID 35D91F5C-F086-462D-B9D6-05EB70F23578
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:00
+0 @I468@ INDI
+1 NAME Honora /Soptsopp/
+2 GIVN Honora
+2 SURN Soptsopp
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1648
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMS @F112@
+1 _UID 1F99E535-D6CE-4CA1-8B22-990AB6173824
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I469@ INDI
+1 NAME George /Blackman/
+2 GIVN George
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346866&source=GBC/1851/0006346863
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1840
+2 PLAC Horsey Island, Hampshire, England
+1 OCCU Scholar
+2 _PRIM Y
+2 DATE 1851
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346866&source=GBC/1851/0006346863
+1 RESI
+2 _PRIM Y
+2 DATE 1851
+2 PLAC Portsea, Hampshire, England
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346866&source=GBC/1851/0006346863
+1 EVEN was age 7 and the son of the head of the household
+2 TYPE Census UK 1851
+2 _PRIM Y
+2 DATE 30 Mar 1851
+2 PLAC Portsea, Portsea Island, Hampshire, England
+2 ADDR Kingston
+2 SOUR @S12@
+3 PAGE Archive reference: HO107; Piece number: 1657; Folio: 495; Page: 26; Schedule: 105; HouseHoldID: 1291221; Record set: 1851 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: UnitedK
+4 CONC ingdom, England
+3 REF http://search.findmypast.com/record?id=GBC/1851/0006346866&source=GBC/1851/0006346863
+1 FAMC @F14@
+1 _UID 4ECDD6D6-D377-4B1B-B8C1-8273D348ABA5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I470@ INDI
+1 NAME Thomas /Blackman/
+2 GIVN Thomas
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 14 Jan 1735
+2 PLAC ABBOTS ANN, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 23 Feb 1823
+2 PLAC East Meon, Hampshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 14 Jan 1734
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMS @F108@
+1 FAMC @F109@
+1 _UID ECB500C9-6CB5-4844-88FF-C9CD8A80BAEC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I471@ INDI
+1 NAME Joan /Plantagenet/
+2 GIVN Joan
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1312
+1 DEAT
+2 _PRIM Y
+2 DATE 7 Jul 1345
+1 FAMC @F81@
+1 _UID 4A12DABE-B6C1-403C-992B-93FCBC02F355
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I472@ INDI
+1 NAME Judith /Webb/
+2 GIVN Judith
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 3 Nov 1689
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F112@
+1 _UID 4E9F6F7E-F287-4E7D-BD8A-DB6226AFF002
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I473@ INDI
+1 NAME John /Blackman/
+2 GIVN John
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 25 Jul 1791
+2 PLAC East Meon, Hampshire
+1 DEAT
+2 _PRIM Y
+2 DATE Jul 1869
+2 PLAC Petersfield, Hampshire
+1 FAMC @F59@
+1 _UID 494F7D85-BCE6-4291-96FB-EFC8572AFD82
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I474@ INDI
+1 NAME Elizabeth /Prince/
+2 GIVN Elizabeth
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1639
+2 PLAC Hampshire, England
+1 FAMC @F113@
+1 _UID 146226DE-D332-4545-9E34-1634CD77C8A6
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I475@ INDI
+1 NAME John /Prince/
+2 GIVN John
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1600?
+1 FAMS @F114@
+1 _UID 6B41FF2E-DF85-48F2-A7B6-7A75DED03734
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I476@ INDI
+1 NAME Matilda of Lancaster /Plantagenet/
+2 GIVN Matilda of Lancaster
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1310
+1 DEAT
+2 _PRIM Y
+2 DATE 5 May 1377
+1 FAMC @F81@
+1 _UID BBDCC180-4C28-4E2D-8922-6D888C214A34
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I477@ INDI
+1 NAME Isabel Hadwisa Hawise Joan Eleanor Avise /deClare/
+2 GIVN Isabel Hadwisa Hawise Joan Eleanor Avise
+2 SURN deClare
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1168
+2 PLAC Sudeley, Gloucestershire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Oct 1216
+2 PLAC Aberconway, Carveren, Wales
+1 FAMS @F100@
+1 _UID DEFFE431-280D-4FFC-8010-251E3A10D83D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I478@ INDI
+1 NAME John /Webb/
+2 GIVN John
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1543
+1 FAMC @F72@
+1 _UID 58B88EB7-A22C-4515-8022-0312213C9B73
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:44
+0 @I479@ INDI
+1 NAME John /Blackman/
+2 GIVN John
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 19 Feb 1769
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202695/1
+2 SOUR
+3 PAGE Class: HO107; Piece: 396; Book: 9; Civil Parish: East Meon; County: Hampshire; Enumeration District: 1; Page: 13; Line: 19; GSU roll: 288799
+1 DEAT
+2 _PRIM Y
+2 DATE 14 Jan 1849
+2 PLAC East Meon, Hampshire, England
+1 BAPM
+2 _PRIM Y
+2 DATE 19 Feb 1769
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Record set: Hampshire baptisms; Subcategory: Parish Baptisms; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/B/800202695/1
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC East Meon, Hampshire, England
+2 SOUR
+3 PAGE Class: HO107; Piece: 396; Book: 9; Civil Parish: East Meon; County: Hampshire; Enumeration District: 1; Page: 13; Line: 19; GSU roll: 288799
+1 FAMS @F59@
+1 FAMC @F108@
+1 _UID B4CC43CF-C67C-49CD-B729-278FC3B7DBC1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I480@ INDI
+1 NAME Margaret //
+2 GIVN Margaret
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1045
+2 PLAC in Budapest, Koztarsasag, Hungary
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Nov 1093
+2 PLAC in Edinburgh Castle, Edinburgh, Mid-Lothian, Scotland
+1 FAMS @F103@
+1 _UID FC1F68C8-F688-418E-985A-9720B4D3940F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I481@ INDI
+1 NAME Richard /Prince/
+2 GIVN Richard
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1663
+2 PLAC Hampshire, England
+1 FAMC @F113@
+1 _UID 7A3EC00D-52A9-490E-974A-E6A89AF64B25
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I482@ INDI
+1 NAME George /Blackman/
+2 GIVN George
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1 Sep 1765
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 8 Jan 1804
+2 PLAC Southwick, Hampshire, England
+1 FAMC @F108@
+1 _UID 4136FE22-CF6C-4E67-A425-92074E65890F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I483@ INDI
+1 NAME test /parent/
+2 GIVN test
+2 SURN parent
+2 _PRIM Y
+1 SEX M
+1 FAMS @F107@
+1 _UID 95531CE3-D4F9-46C6-B0F5-50F4EF512C6D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I484@ INDI
+1 NAME Sir John /Webbe/
+2 GIVN Sir John
+2 SURN Webbe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1430
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1495
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 FAMC @F76@
+1 _UID 762F9337-823E-44CC-832A-3B50E8731311
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I485@ INDI
+1 NAME James /Blackman/
+2 GIVN James
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 15 May 1744
+2 PLAC Andover, Hampshire, England
+1 FAMC @F109@
+1 _UID CA23FCB2-CE09-48E7-A4F2-9F59C28CC25A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I486@ INDI
+1 NAME Benjamin /Blackman/
+2 GIVN Benjamin
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1692
+2 PLAC Amport Hampshire England
+1 FAMC @F110@
+1 _UID B5033706-8CDF-4C0C-8551-E34380D7F563
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I487@ INDI
+1 NAME William /Blackman/
+2 GIVN William
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 23 Dec 1737
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F109@
+1 _UID 6861722E-BA6F-4EDB-907B-1439F44D2AAC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I488@ INDI
+1 NAME Mathilde /Chaworth/
+2 GIVN Mathilde
+2 SURN Chaworth
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1282
+2 PLAC Wales
+1 DEAT
+2 _PRIM Y
+2 DATE 1322
+2 PLAC Hampshire, England
+1 BURI
+2 _PRIM Y
+2 PLAC Mottisfont Abbey
+1 FAMS @F81@
+1 FAMC @F96@
+1 _UID 47F7F9C8-D504-4A37-880A-0B2808037C9D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:11
+0 @I489@ INDI
+1 NAME Marguerite Edith /Thorpe/
+2 GIVN Marguerite Edith
+2 SURN Thorpe
+2 _PRIM Y
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/8&source=GBC/1911/RG14/04762/0219/1
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1894
+2 PLAC St Leonards Sussex
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/8&source=GBC/1911/RG14/04762/0219/1
+1 OCCU Shop Assistant
+2 _PRIM Y
+2 DATE 1911
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/8&source=GBC/1911/RG14/04762/0219/1
+1 RESI
+2 _PRIM Y
+2 DATE 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/8&source=GBC/1911/RG14/04762/0219/1
+1 EVEN was age 17 and the daughter of the head of the household
+2 TYPE Census UK 1911
+2 _PRIM Y
+2 DATE 2 Apr 1911
+2 PLAC Hastings, Sussex, England
+2 ADDR St Peters Road
+2 SOUR @S8@
+3 PAGE Series: RG14; Piece number: 4762; Schedule: 106; HouseHoldID: 47620219; Record set: 1911 Census For England & Wales; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=GBC/1911/RG14/04762/0219/8&source=GBC/1911/RG14/04762/0219/1
+1 FAMC @F6@
+1 _UID 712A7FCD-780D-4F88-906F-7C314765A467
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I490@ INDI
+1 NAME Herleva /DeFalaise/
+2 GIVN Herleva
+2 SURN DeFalaise
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1003
+2 PLAC Falaise, Calvados, Basse-Normandie, France
+1 DEAT
+2 _PRIM Y
+2 DATE 1050
+2 PLAC Grestain, Eure, Haute-Normandie, France
+1 FAMS @F104@
+1 _UID 3C4FE345-51B5-4150-95DE-38D6C099DE78
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I491@ INDI
+1 NAME Henry /Blackman/
+2 GIVN Henry
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 10 Jun 1810
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE abt 1864
+2 PLAC Fareham, Hampshire
+1 FAMC @F59@
+1 _UID 96FAEB6F-9A62-4F33-A900-DC823454B732
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I492@ INDI
+1 NAME Edward /Blackman/
+2 GIVN Edward
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1689
+2 PLAC Amport Hampshire England
+1 FAMC @F110@
+1 _UID 92CFC204-54D5-4CE5-9125-6963BB212D01
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I493@ INDI
+1 NAME Sarah /Blackman/
+2 GIVN Sarah
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 13 Jun 1780
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F108@
+1 _UID CE29F24E-985D-455D-9502-CE8B170BD3EF
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I494@ INDI
+1 NAME John /Shawer/
+2 GIVN John
+2 SURN Shawer
+2 _PRIM Y
+2 SOUR @S19@
+3 PAGE Batch number: I04389-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846918460
+1 SEX M
+1 FAMS @F117@
+1 _UID A1201647-8C8C-492B-AB26-EA7D7A532182
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I495@ INDI
+1 NAME Thomas /Plantagenet/
+2 GIVN Thomas
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE abt 1277
+1 DEAT
+2 _PRIM Y
+2 DATE 22 Mar 1322
+1 TITL 2nd Earl of Lancaster
+2 _PRIM Y
+1 FAMC @F82@
+1 _UID 23D0DDA7-1593-4A5D-B14A-CF473E0350A9
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I496@ INDI
+1 NAME James /Prince/
+2 GIVN James
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 4 Apr 1698
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 8 Oct 1753
+2 PLAC ABBOTS ANN, Hampshire, England
+1 FAMC @F111@
+1 _UID 9374F7A1-F3F6-4F0E-9C15-96F9525EEBD4
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I497@ INDI
+1 NAME John of Beaufort /Plantagenet/
+2 GIVN John of Beaufort
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE bef May 1286
+1 DEAT
+2 _PRIM Y
+2 DATE abt 1327
+2 PLAC France
+1 TITL Lord of Beaufor
+2 _PRIM Y
+1 FAMC @F82@
+1 _UID BD79C8B4-75A1-48A2-B22E-52927089141A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I498@ INDI
+1 NAME Susannah /Webb/
+2 GIVN Susannah
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 7 Feb 1686
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMC @F112@
+1 _UID 656B2621-E268-4C28-A73F-F8AC9FA7E29C
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I499@ INDI
+1 NAME AGATHA /DeFERRERS/
+2 GIVN AGATHA
+2 SURN DeFERRERS
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1168
+2 PLAC Charltey, Staffordshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 19 Oct 1216
+2 PLAC Aberconway, Carveren, Wales
+1 FAMS @F98@
+1 _UID 08287604-13BE-48AA-BFDB-D7DA7ACC81FC
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:14
+0 @I500@ INDI
+1 NAME Margaret /Plantagenet/
+2 GIVN Margaret
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 5 Oct 1240
+2 PLAC Windsor, Berkshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 27 Feb 1275
+2 PLAC Cupar Castle, Scotland
+1 FAMC @F84@
+1 _UID 902AF3B1-D53E-43AD-A64D-2F7E1052ABF1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I501@ INDI
+1 NAME Sarah Mary /Thorpe/
+2 GIVN Sarah Mary
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 17 Oct 1815
+2 PLAC Fairlight, Sussex, England
+1 DEAT
+2 _PRIM Y
+2 DATE 4 Apr 1882
+2 PLAC Sedlescombe, Sussex, England
+1 RESI
+2 _PRIM Y
+2 DATE 1861
+2 PLAC Guestling, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665182
+1 EVEN was age 46 and the wife of the head of the household
+2 TYPE Census UK 1861
+2 _PRIM Y
+2 DATE 7 Apr 1861
+2 PLAC Guestling, Hastings, Sussex, England
+2 ADDR Friars Hill Road
+2 SOUR @S11@
+3 PAGE Archive reference: RG09; Piece number: 559; Folio: 26; Page: 1; Schedule: 5; HouseHoldID: 797843; Record set: 1861 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collections from: United Kingdom
+4 CONC , England;
+3 REF http://search.findmypast.com/record?id=GBC/1861/0003665182
+1 FAMS @F20@
+1 _UID 0234115A-29C4-4D81-B7EA-E563E1876A93
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:28
+0 @I502@ INDI
+1 NAME Robert I /deNormandy/
+2 GIVN Robert I
+2 SURN deNormandy
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 21 Jun 1008
+2 PLAC Falaise, Calvados, Normandy, France
+1 DEAT
+2 _PRIM Y
+2 DATE 2 Jul 1035
+2 PLAC Nicea, Bithynia, Turkey|, Turkey
+1 FAMS @F104@
+1 FAMC @F105@
+1 _UID F5A0398A-E045-44AA-B0F5-715F87DACE72
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I503@ INDI
+1 NAME John Harold /Webbe/
+2 GIVN John Harold
+2 SURN Webbe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 9 Jul 1450
+2 PLAC Stratford-upon-Avon, Warwickshire, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1490
+2 PLAC Stratford-upon-Avon, Warwickshire, England, United Kingdom
+1 FAMC @F75@
+1 _UID 1AC400C1-76CB-4412-837D-FA9DF84FD6BE
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I504@ INDI
+1 NAME William /de Burg/
+2 GIVN William
+2 SURN de Burg
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1312
+1 DEAT
+2 _PRIM Y
+2 DATE 1333
+1 TITL Earl of Ulster
+2 _PRIM Y
+1 FAMS @F80@
+1 _UID 0BB0B388-A037-448F-BADE-119877B074D5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:10
+0 @I505@ INDI
+1 NAME Jane /Blackman/
+2 GIVN Jane
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 4 Jan 1824
+1 FAMC @F60@
+1 _UID 73BCDB49-28FA-41C7-92A0-605F7F4FC545
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I506@ INDI
+1 NAME John Mansur /Thorpe/
+2 GIVN John Mansur
+2 SURN Thorpe
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 15 May 1867
+2 PLAC Streetsville, Ontario, Canada
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 100
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Archives of Ontario; Toronto, Ontario, Canada; Registrations of Marriages, 1869-1928; Series: MS932; Reel: 100
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 DEAT
+2 _PRIM Y
+2 DATE 26 Jul 1941
+2 PLAC Ontario, Canada
+1 BURI
+2 _PRIM Y
+2 PLAC London, Middlesex County, Ontario, Canada
+1 RESI Marital Status: SingleRelation to Head of House: Son
+2 _PRIM Y
+2 DATE 1891
+2 PLAC Ward 1, London City, Ontario, Canada
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+2 SOUR
+3 PAGE Year: 1891; Census Place: Ward 1, London City, Ontario; Roll: T-6351; Family No: 147
+1 FAMC @F61@
+1 _UID 9D0931CA-653A-467F-92DC-D9EC9C92DBC3
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I507@ INDI
+1 NAME Mary /Borden/
+2 GIVN Mary
+2 SURN Borden
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1466
+2 PLAC England
+1 DEAT Berkampsted, Suffolk, England
+2 _PRIM Y
+2 CAUS Berkampsted, Suffolk, England
+1 FAMS @F94@
+1 _UID 8A7587FB-4342-464E-825F-A361853D6235
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:32:06
+0 @I508@ INDI
+1 NAME Harriett /Blackman/
+2 GIVN Harriett
+2 SURN Blackman
+2 _PRIM Y
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536417&source=GBC/1841/0013536416
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1828
+2 PLAC Hampshire, England
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536417&source=GBC/1841/0013536416
+1 RESI
+2 _PRIM Y
+2 DATE 1841
+2 PLAC Wymering, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536417&source=GBC/1841/0013536416
+1 EVEN was age 13 and the daughter of the head of the household
+2 TYPE Census UK 1841
+2 _PRIM Y
+2 DATE 6 Jun 1841
+2 PLAC Wymering, Fareham, Hampshire, England
+2 ADDR Horsea Island
+2 SOUR @S15@
+3 PAGE Archive reference: HO107; Piece number: 390; Folio number: 15; Page number: 24; Schedule: 1028; HouseHoldID: 2700292; Record set: 1841 England, Wales & Scotland Census; Subcategory: Census; Category: Census, Land & Substitutes; Collectionsf
+4 CONC rom: United Kin
+3 REF http://search.findmypast.com/record?id=GBC/1841/0013536417&source=GBC/1841/0013536416
+1 FAMC @F14@
+1 _UID F80C1FED-19E8-4400-A048-1448D227D9F5
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I509@ INDI
+1 NAME Thomas /Richmond/
+2 GIVN Thomas
+2 SURN Richmond
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1384
+2 PLAC Draycott, Yorkshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1420
+2 PLAC Draycott, Wiltshire, England
+1 FAMC @F79@
+1 _UID 669BD735-A888-4F19-B099-427C7967D1A1
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I510@ INDI
+1 NAME Jone /Prince/
+2 GIVN Jone
+2 SURN Prince
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1643
+2 PLAC Hampshire, England
+1 FAMC @F113@
+1 _UID C2F9C403-8EF5-4F1B-B7DF-EB62D459889F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I511@ INDI
+1 NAME Ruth /Burger/
+2 GIVN Ruth
+2 SURN Burger
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1675
+2 PLAC Andover, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 11 Mar 1749
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMS @F111@
+1 _UID CA0F46BF-E4E5-4604-B6C8-3211A060CA32
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I512@ INDI
+1 NAME Hannah /Blackman/
+2 GIVN Hannah
+2 SURN Blackman
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 13 Jun 1780
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 16 Apr 1816
+2 PLAC East Meon, Hampshire, England
+1 FAMC @F108@
+1 _UID 8F0CB573-0566-4FF7-A198-68CDFB47EE82
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:45
+0 @I513@ INDI
+1 NAME Thomas /Blackman/
+2 GIVN Thomas
+2 SURN Blackman
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 27 Oct 1793
+2 PLAC East Meon, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 2 Aug 1869
+2 PLAC Petersfield, Hampshire, England
+1 FAMC @F59@
+1 _UID C18998BB-8A29-4DE6-A98E-19434D6CD827
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I514@ INDI
+1 NAME Alice //
+2 GIVN Alice
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1625
+2 PLAC Abbotts Ann, Hampshire, England
+1 FAMS @F113@
+1 _UID CDDE350C-9616-463F-B22B-321E70D9F88E
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I515@ INDI
+1 NAME Sir Henry Thomas /Webb/
+2 GIVN Sir Henry Thomas
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 15 May 1350
+2 PLAC Stratford, Warwickshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE abt 1399
+2 PLAC Stratford, Warwickshire, England
+1 FAMC @F79@
+1 _UID E43E4B3E-7499-4294-B62A-A2318554C88F
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I516@ INDI
+1 NAME Richard de /Richmond/
+2 GIVN Richard de
+2 SURN Richmond
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 DATE 1356
+2 PLAC Draycot, Yorkshire, England
+1 BIRT
+2 _PRIM Y
+2 DATE 1355
+2 PLAC Draycot, Yorkshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1420
+2 PLAC Draycot Foliott, Wiltshire, England
+1 FAMC @F79@
+1 _UID E81852E8-B44D-4609-852B-AF1682861402
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I517@ INDI
+1 NAME Alice Margaret /Webb/
+2 GIVN Alice Margaret
+2 SURN Webb
+2 _PRIM Y
+1 SEX F
+1 BIRT
+2 _PRIM Y
+2 DATE 1459
+2 PLAC Frittenden, Kent, England, United Kingdom
+1 DEAT
+2 _PRIM Y
+2 DATE 1495
+2 PLAC Kent, England
+1 FAMC @F75@
+1 _UID E476A023-978F-4B7A-A6C1-EB4D49B5900D
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I518@ INDI
+1 NAME William /Prince/
+2 GIVN William
+2 SURN Prince
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 27 Dec 1699
+2 PLAC Abbotts Ann, Hampshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1700
+1 FAMC @F111@
+1 _UID 6A6097F0-F2D5-4C25-8A88-09259CD34B82
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I519@ INDI
+1 NAME Robert /Coker/
+2 GIVN Robert
+2 SURN Coker
+2 _PRIM Y
+2 SOUR @S19@
+3 PAGE Batch number: I04389-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846918460
+1 SEX M
+1 FAMS @F116@
+1 _UID 7F50EC70-B64E-4B9C-97CA-CB6BE1F6BF58
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I520@ INDI
+1 NAME Henry Grosmont of Derby /Plantagenet/
+2 GIVN Henry Grosmont of Derby
+2 SURN Plantagenet
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE ABT 1299/1314
+1 DEAT Bubonic Plague
+2 _PRIM Y
+2 DATE 24 MAR 1360/1361
+2 CAUS Bubonic Plague
+2 PLAC Leicester Castle, Leicester, Leicestershire, England
+1 BURI
+2 _PRIM Y
+2 PLAC Newark Abbey, Leicester, Leicestershire, England
+1 TITL 1st Duke of Lancaster
+2 _PRIM Y
+1 FAMC @F81@
+1 _UID F6BD83F4-07F8-43CA-81FE-2982F0F0762A
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @I521@ INDI
+1 NAME Sir Thomas de /Webb/
+2 GIVN Sir Thomas de
+2 SURN Webb
+2 _PRIM Y
+1 SEX M
+1 BIRT
+2 _PRIM Y
+2 DATE 1384
+2 PLAC Draycott, Wiltshire, England
+1 DEAT
+2 _PRIM Y
+2 DATE 1420
+2 PLAC Draycott, Wiltshire, England
+1 FAMC @F78@
+1 _UID 39A780D3-E789-458C-8634-6B32F26601A0
+1 CHAN
+2 DATE 26 MAR 2021
+3 TIME 17:31:46
+0 @F1@ FAM
+1 HUSB @I85@
+1 MARR
+2 _PRIM Y
+2 DATE abt Feb 1946
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1272; Line Number: 51; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1946/1/AZ/001183/051
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1272; Line Number: 75; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1946/1/AZ/000203/075
+1 CHAN
+2 DATE 13 DEC 2016
+3 TIME 09:12:22
+0 @F2@ FAM
+1 HUSB @I88@
+1 WIFE @I25@
+1 MARR
+2 _PRIM Y
+2 DATE abt Aug 1939
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S16@
+3 PAGE Volume: 2B; Page number: 2373; Line Number: 39; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1939/3/PZ/000359/039
+1 CHAN
+2 DATE 1 DEC 2017
+3 TIME 14:23:56
+0 @F3@ FAM
+1 HUSB @I79@
+1 WIFE @I161@
+1 MARR
+2 _PRIM Y
+2 DATE abt Nov 1912
+2 PLAC Portsmouth, Hampshire, England
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1238; Line Number: 86; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1912/4/AZ/000094/086
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1238; Line Number: 20; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1912/4/AZ/000305/020
+1 CHIL @I136@
+1 CHIL @I25@
+1 CHIL @I17@
+1 CHIL @I10@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 15:40:49
+0 @F4@ FAM
+1 HUSB @I66@
+1 WIFE @I50@
+1 MARR
+2 _PRIM Y
+2 DATE 26 Dec 1908
+2 PLAC St Jude, Southsea, Hampshire, England
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1022; Line Number: 108; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1908/4/AZ/000378/108
+2 SOUR @S2@
+3 PAGE Volume: 2B; Page: 1022; Line Number: 312; Record set: England & Wales marriages 1837-2008; Subcategory: Marriages & divorces; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom;
+3 REF http://search.findmypast.com/record?id=BMD/M/1908/4/AZ/000396/312
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 36/1B/4; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00168004/2
+1 CHIL @I100@
+1 CHIL @I125@
+1 CHAN
+2 DATE 1 DEC 2017
+3 TIME 15:10:14
+0 @F5@ FAM
+1 HUSB @I51@
+1 WIFE @I34@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 21:16:05
+0 @F6@ FAM
+1 HUSB @I81@
+1 WIFE @I62@
+1 MARR
+2 _PRIM Y
+2 DATE abt Feb 1872
+2 PLAC Hastings, Sussex, England
+2 SOUR @S16@
+3 PAGE Volume: 2B; Page number: 30; Line Number: 48; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1872/1/AZ/000234/048
+1 CHIL @I96@
+1 CHIL @I75@
+1 CHIL @I112@
+1 CHIL @I7@
+1 CHIL @I66@
+1 CHIL @I11@
+1 CHIL @I28@
+1 CHIL @I101@
+1 CHIL @I90@
+1 CHIL @I13@
+1 CHIL @I489@
+1 CHAN
+2 DATE 8 OCT 2018
+3 TIME 09:06:43
+0 @F7@ FAM
+1 HUSB @I69@
+1 WIFE @I63@
+1 CHIL @I40@
+1 CHIL @I79@
+1 CHIL @I38@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 22:05:02
+0 @F8@ FAM
+1 HUSB @I41@
+1 WIFE @I29@
+1 MARR
+2 _PRIM Y
+2 DATE abt Nov 1923
+2 PLAC Rochford, Essex, England
+2 SOUR @S16@
+3 PAGE Volume: 4A; Page number: 1386; Line Number: 12; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1923/4/AZ/000016/012
+1 CHIL @I85@
+1 CHIL @I107@
+1 CHIL @I132@
+1 CHAN
+2 DATE 19 MAY 2019
+3 TIME 20:17:32
+0 @F9@ FAM
+1 HUSB @I123@
+1 CHIL @I14@
+1 CHIL @I117@
+1 CHIL @I69@
+1 CHIL @I170@
+1 CHIL @I67@
+1 CHIL @I48@
+1 CHIL @I53@
+1 CHIL @I58@
+1 CHAN
+2 DATE 16 DEC 2016
+3 TIME 11:59:10
+0 @F10@ FAM
+1 HUSB @I65@
+1 WIFE @I106@
+1 CHIL @I88@
+1 CHAN
+2 DATE 1 DEC 2017
+3 TIME 14:26:20
+0 @F11@ FAM
+1 HUSB @I203@
+1 WIFE @I130@
+1 CHIL @I55@
+1 CHIL @I172@
+1 CHIL @I27@
+1 CHIL @I74@
+1 CHIL @I111@
+1 CHIL @I204@
+1 CHIL @I161@
+1 CHAN
+2 DATE 1 DEC 2017
+3 TIME 14:42:11
+0 @F12@ FAM
+1 HUSB @I135@
+1 WIFE @I45@
+1 MARR
+2 _PRIM Y
+2 DATE 6 Jul 1885
+2 PLAC St Thomas Of Canterbury, Portsmouth, St Thomas, Hampshire, England
+2 SOUR @S10@
+3 PAGE Archive reference: CHU 2/1C/23; Archive: Portsmouth History Centre; Record set: Hampshire, Portsmouth Marriages; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/PORTSMOUTH/MAR/00163139/1
+1 CHIL @I50@
+1 CHIL @I113@
+1 CHIL @I57@
+1 CHIL @I21@
+1 CHAN
+2 DATE 19 NOV 2018
+3 TIME 12:49:59
+0 @F13@ FAM
+1 HUSB @I191@
+1 WIFE @I119@
+1 CHIL @I186@
+1 CHIL @I43@
+1 CHIL @I72@
+1 CHIL @I129@
+1 CHIL @I29@
+1 CHIL @I446@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 13:53:22
+0 @F14@ FAM
+1 HUSB @I158@
+1 WIFE @I176@
+1 MARR
+2 _PRIM Y
+2 DATE 8 Dec 1826
+2 PLAC St. Mary's Church, Portsea, Hampshire, England
+2 SOUR @S19@
+3 PAGE Batch number: M01634-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846948295/2
+1 CHIL @I508@
+1 CHIL @I453@
+1 CHIL @I458@
+1 CHIL @I421@
+1 CHIL @I407@
+1 CHIL @I447@
+1 CHIL @I469@
+1 CHIL @I203@
+1 CHIL @I64@
+1 CHIL @I118@
+1 CHIL @I148@
+1 CHIL @I156@
+1 CHIL @I465@
+1 CHIL @I461@
+1 CHAN
+2 DATE 10 DEC 2020
+3 TIME 15:02:46
+0 @F15@ FAM
+1 HUSB @I304@
+1 WIFE @I87@
+1 MARR
+2 _PRIM Y
+2 DATE 11 May 1842
+2 PLAC Alverstoke, Hampshire, England
+2 SOUR @S19@
+3 PAGE Batch number: I04389-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_846918460
+1 CHIL @I217@
+1 CHIL @I209@
+1 CHIL @I130@
+1 CHIL @I121@
+1 CHIL @I184@
+1 CHIL @I231@
+1 CHIL @I262@
+1 CHIL @I187@
+1 CHIL @I344@
+1 CHIL @I426@
+1 CHAN
+2 DATE 20 JAN 2021
+3 TIME 14:04:30
+0 @F16@ FAM
+1 HUSB @I31@
+1 WIFE @I74@
+1 CHIL @I19@
+1 CHIL @I152@
+1 CHIL @I24@
+1 CHIL @I49@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 14:40:04
+0 @F17@ FAM
+1 HUSB @I83@
+1 WIFE @I77@
+1 CHIL @I106@
+1 CHIL @I278@
+1 CHIL @I232@
+1 CHIL @I325@
+1 CHIL @I197@
+1 CHIL @I316@
+1 CHIL @I373@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 14:49:18
+0 @F18@ FAM
+1 WIFE @I32@
+1 CHIL @I298@
+1 CHIL @I210@
+1 CHIL @I194@
+1 CHIL @I77@
+1 CHIL @I240@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 14:49:46
+0 @F19@ FAM
+1 HUSB @I82@
+1 WIFE @I84@
+1 MARR
+2 _PRIM Y
+2 DATE 19 Apr 1845
+2 PLAC Saint Nicholas, Brighton, Sussex, England
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_843294020
+2 SOUR @S19@
+3 PAGE Batch number: M14793-7; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_854640556
+1 CHIL @I300@
+1 CHIL @I62@
+1 CHIL @I389@
+1 CHIL @I333@
+1 CHIL @I227@
+1 CHIL @I309@
+1 CHAN
+2 DATE 24 OCT 2019
+3 TIME 15:43:58
+0 @F20@ FAM
+1 HUSB @I95@
+1 WIFE @I501@
+1 CHIL @I173@
+1 CHIL @I288@
+1 CHIL @I233@
+1 CHIL @I81@
+1 CHIL @I202@
+1 CHAN
+2 DATE 18 DEC 2020
+3 TIME 16:31:52
+0 @F21@ FAM
+1 HUSB @I33@
+1 WIFE @I1@
+1 CHIL @I95@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:02:12
+0 @F22@ FAM
+1 HUSB @I37@
+1 WIFE @I60@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:05:00
+0 @F23@ FAM
+1 HUSB @I37@
+1 WIFE @I26@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:07:57
+0 @F24@ FAM
+1 HUSB @I70@
+1 WIFE @I94@
+1 CHIL @I37@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:08:48
+0 @F25@ FAM
+1 HUSB @I44@
+1 WIFE @I15@
+1 CHIL @I60@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:09:59
+0 @F26@ FAM
+1 HUSB @I46@
+1 WIFE @I89@
+1 CHIL @I5@
+1 CHIL @I42@
+1 CHIL @I44@
+1 CHIL @I159@
+1 CHIL @I120@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:12:29
+0 @F27@ FAM
+1 HUSB @I147@
+1 WIFE @I183@
+1 CHIL @I46@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:15:00
+0 @F28@ FAM
+1 WIFE @I201@
+1 CHIL @I89@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:15:29
+0 @F29@ FAM
+1 HUSB @I4@
+1 WIFE @I59@
+1 CHIL @I15@
+1 CHIL @I80@
+1 CHIL @I23@
+1 CHIL @I36@
+1 CHIL @I6@
+1 CHIL @I76@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:16:58
+0 @F30@ FAM
+1 HUSB @I99@
+1 WIFE @I104@
+1 CHIL @I153@
+1 CHIL @I39@
+1 CHIL @I12@
+1 CHIL @I16@
+1 CHIL @I4@
+1 CHIL @I30@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:19:54
+0 @F31@ FAM
+1 HUSB @I109@
+1 WIFE @I47@
+1 CHIL @I3@
+1 CHIL @I2@
+1 CHIL @I54@
+1 CHIL @I59@
+1 CHIL @I22@
+1 CHIL @I20@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:22:47
+0 @F32@ FAM
+1 HUSB @I18@
+1 WIFE @I68@
+1 CHAN
+2 DATE 18 JAN 2018
+3 TIME 22:52:56
+0 @F33@ FAM
+1 HUSB @I78@
+1 WIFE @I105@
+1 MARR
+2 _PRIM Y
+2 DATE abt Feb 1884
+2 PLAC West Ham, Essex, England
+2 SOUR @S16@
+3 PAGE Volume: 4A; Page number: 37; Line Number: 251; Record set: England & Wales Marriages 1837-2005; Subcategory: Civil Marriage & Divorce; Category: Birth, Marriage & Death (Parish Registers); Collections from: United Kingdom, England;
+3 REF http://search.findmypast.com/record?id=BMD/M/1884/1/AZ/000044/251
+1 CHIL @I124@
+1 CHIL @I166@
+1 CHIL @I181@
+1 CHIL @I285@
+1 CHIL @I115@
+1 CHIL @I177@
+1 CHIL @I154@
+1 CHIL @I41@
+1 CHIL @I252@
+1 CHAN
+2 DATE 16 JUL 2018
+3 TIME 15:45:38
+0 @F34@ FAM
+1 HUSB @I8@
+1 WIFE @I116@
+1 CHIL @I222@
+1 CHIL @I164@
+1 CHIL @I137@
+1 CHIL @I196@
+1 CHIL @I191@
+1 CHAN
+2 DATE 25 MAY 2018
+3 TIME 12:32:00
+0 @F35@ FAM
+1 HUSB @I93@
+1 WIFE @I127@
+1 CHIL @I8@
+1 CHAN
+2 DATE 25 MAY 2018
+3 TIME 12:33:37
+0 @F36@ FAM
+1 HUSB @I214@
+1 WIFE @I128@
+1 CHIL @I93@
+1 CHAN
+2 DATE 25 MAY 2018
+3 TIME 12:34:49
+0 @F37@ FAM
+1 HUSB @I188@
+1 CHIL @I128@
+1 CHAN
+2 DATE 25 MAY 2018
+3 TIME 12:35:34
+0 @F38@ FAM
+1 WIFE @I212@
+1 CHIL @I214@
+1 CHAN
+2 DATE 25 MAY 2018
+3 TIME 12:36:22
+0 @F39@ FAM
+1 HUSB @I92@
+1 CHIL @I135@
+1 CHAN
+2 DATE 19 NOV 2018
+3 TIME 12:49:59
+0 @F40@ FAM
+1 HUSB @I142@
+1 CHIL @I45@
+1 CHAN
+2 DATE 19 NOV 2018
+3 TIME 12:49:59
+0 @F41@ FAM
+1 HUSB @I110@
+1 WIFE @I132@
+1 CHAN
+2 DATE 31 DEC 2018
+3 TIME 18:18:15
+0 @F42@ FAM
+1 HUSB @I198@
+1 WIFE @I91@
+1 MARR
+2 _PRIM Y
+2 DATE 25 Dec 1856
+2 PLAC Braintree, Essex, England
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+1 CHIL @I61@
+1 CHIL @I143@
+1 CHIL @I78@
+1 CHIL @I150@
+1 CHIL @I230@
+1 MARB
+2 _PRIM Y
+2 DATE 1856
+2 PLAC Essex, England, Braintree
+2 SOUR @S27@
+3 PAGE Archive: Essex Record Office; Record set: Essex Marriages And Banns 1537-1935; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/ESSEX-MAR/0230698/1
+1 CHAN
+2 DATE 18 DEC 2020
+3 TIME 08:31:54
+0 @F43@ FAM
+1 HUSB @I134@
+1 WIFE @I205@
+1 CHIL @I320@
+1 CHIL @I160@
+1 CHIL @I102@
+1 CHIL @I91@
+1 CHIL @I56@
+1 CHAN
+2 DATE 4 SEP 2019
+3 TIME 13:22:10
+0 @F44@ FAM
+1 HUSB @I235@
+1 WIFE @I146@
+1 CHIL @I134@
+1 CHIL @I114@
+1 CHIL @I133@
+1 CHIL @I139@
+1 CHIL @I103@
+1 CHIL @I52@
+1 CHAN
+2 DATE 4 SEP 2019
+3 TIME 13:22:57
+0 @F45@ FAM
+1 HUSB @I35@
+1 WIFE @I122@
+1 CHIL @I126@
+1 CHIL @I98@
+1 CHIL @I235@
+1 CHIL @I138@
+1 CHIL @I73@
+1 CHIL @I163@
+1 CHIL @I9@
+1 CHIL @I71@
+1 CHIL @I108@
+1 CHIL @I165@
+1 CHIL @I97@
+1 CHIL @I200@
+1 CHAN
+2 DATE 4 SEP 2019
+3 TIME 13:23:42
+0 @F46@ FAM
+1 HUSB @I215@
+1 WIFE @I216@
+1 MARR
+2 _PRIM Y
+2 DATE 1741
+2 PLAC Bocking, Essex, England
+2 SOUR @S17@
+3 PAGE Source: Boyd's marriage index, 1538-1850; Record set: England, Boyd's Marriage Indexes, 1538-1850; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=GBPRS/M/752008557/2
+1 CHIL @I122@
+1 CHAN
+2 DATE 4 SEP 2019
+3 TIME 13:42:13
+0 @F47@ FAM
+1 HUSB @I145@
+1 WIFE @I151@
+1 CHIL @I140@
+1 CHIL @I258@
+1 CHIL @I179@
+1 CHIL @I192@
+1 CHIL @I35@
+1 CHAN
+2 DATE 4 SEP 2019
+3 TIME 13:45:11
+0 @F48@ FAM
+1 HUSB @I223@
+1 WIFE @I228@
+1 CHIL @I83@
+1 CHIL @I162@
+1 CHIL @I295@
+1 CHIL @I174@
+1 CHIL @I236@
+1 CHIL @I86@
+1 CHIL @I242@
+1 CHAN
+2 DATE 8 SEP 2019
+3 TIME 23:36:32
+0 @F49@ FAM
+1 HUSB @I157@
+1 WIFE @I141@
+1 MARR
+2 _PRIM Y
+2 DATE 4 May 1833
+2 PLAC Gorbals, Lanark, Scotland
+2 SOUR @S24@
+3 PAGE Batch number: M11935-6; Record set: Scotland Marriages 1561-1910; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_694588194/1
+1 CHIL @I223@
+1 CHAN
+2 DATE 16 JUN 2020
+3 TIME 00:55:52
+0 @F50@ FAM
+1 HUSB @I326@
+1 WIFE @I180@
+1 MARR
+2 _PRIM Y
+2 DATE 4 Jun 1784
+2 PLAC Dalkeith, Midlothian, Scotland
+2 SOUR @S24@
+3 PAGE Batch number: M11683-8; Record set: Scotland Marriages 1561-1910; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: Scotland, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_695870161/2
+1 CHIL @I157@
+1 CHAN
+2 DATE 16 JUN 2020
+3 TIME 00:56:45
+0 @F51@ FAM
+1 HUSB @I329@
+1 CHIL @I326@
+1 CHAN
+2 DATE 8 SEP 2019
+3 TIME 23:39:21
+0 @F52@ FAM
+1 HUSB @I266@
+1 WIFE @I167@
+1 CHIL @I141@
+1 CHAN
+2 DATE 8 SEP 2019
+3 TIME 23:41:34
+0 @F53@ FAM
+1 HUSB @I149@
+1 WIFE @I190@
+1 CHIL @I146@
+1 CHAN
+2 DATE 8 SEP 2019
+3 TIME 23:58:56
+0 @F54@ FAM
+1 HUSB @I312@
+1 WIFE @I250@
+1 CHIL @I189@
+1 CHIL @I31@
+1 CHIL @I238@
+1 CHIL @I360@
+1 CHIL @I239@
+1 CHIL @I248@
+1 CHAN
+2 DATE 11 SEP 2019
+3 TIME 14:39:15
+0 @F55@ FAM
+1 HUSB @I229@
+1 WIFE @I353@
+1 CHIL @I345@
+1 CHIL @I336@
+1 CHIL @I273@
+1 CHIL @I312@
+1 CHIL @I155@
+1 CHIL @I261@
+1 CHAN
+2 DATE 12 SEP 2019
+3 TIME 13:20:43
+0 @F56@ FAM
+1 HUSB @I385@
+1 WIFE @I301@
+1 CHIL @I353@
+1 CHAN
+2 DATE 16 SEP 2019
+3 TIME 15:58:23
+0 @F57@ FAM
+1 HUSB @I131@
+1 WIFE @I226@
+1 CHIL @I208@
+1 CHIL @I328@
+1 CHIL @I229@
+1 CHIL @I178@
+1 CHIL @I207@
+1 CHIL @I182@
+1 CHAN
+2 DATE 16 SEP 2019
+3 TIME 15:59:59
+0 @F58@ FAM
+1 HUSB @I155@
+1 WIFE @I254@
+1 CHIL @I272@
+1 CHIL @I286@
+1 CHIL @I423@
+1 CHIL @I331@
+1 CHIL @I334@
+1 CHAN
+2 DATE 17 SEP 2019
+3 TIME 10:53:32
+0 @F59@ FAM
+1 HUSB @I479@
+1 WIFE @I444@
+1 CHIL @I473@
+1 CHIL @I513@
+1 CHIL @I456@
+1 CHIL @I449@
+1 CHIL @I462@
+1 CHIL @I158@
+1 CHIL @I418@
+1 CHIL @I442@
+1 CHIL @I491@
+1 CHIL @I372@
+1 CHIL @I397@
+1 CHIL @I393@
+1 CHAN
+2 DATE 17 SEP 2019
+3 TIME 10:58:25
+0 @F60@ FAM
+1 HUSB @I158@
+1 WIFE @I467@
+1 CHIL @I384@
+1 CHIL @I505@
+1 CHAN
+2 DATE 17 SEP 2019
+3 TIME 10:58:25
+0 @F61@ FAM
+1 HUSB @I173@
+1 WIFE @I438@
+1 CHIL @I506@
+1 CHIL @I451@
+1 CHIL @I206@
+1 CHIL @I211@
+1 CHIL @I168@
+1 CHIL @I282@
+1 CHIL @I144@
+1 CHIL @I220@
+1 CHIL @I349@
+1 CHIL @I245@
+1 CHAN
+2 DATE 17 SEP 2019
+3 TIME 11:05:53
+0 @F62@ FAM
+1 HUSB @I193@
+1 CHIL @I254@
+1 CHAN
+2 DATE 16 OCT 2019
+3 TIME 14:14:44
+0 @F63@ FAM
+1 HUSB @I269@
+1 WIFE @I294@
+1 CHIL @I131@
+1 CHAN
+2 DATE 22 OCT 2019
+3 TIME 16:38:41
+0 @F64@ FAM
+1 HUSB @I271@
+1 CHIL @I82@
+1 CHAN
+2 DATE 24 OCT 2019
+3 TIME 15:43:13
+0 @F65@ FAM
+1 HUSB @I218@
+1 CHIL @I84@
+1 CHAN
+2 DATE 24 OCT 2019
+3 TIME 15:43:13
+0 @F66@ FAM
+1 HUSB @I219@
+1 WIFE @I171@
+1 CHIL @I444@
+1 CHAN
+2 DATE 7 DEC 2019
+3 TIME 19:40:42
+0 @F67@ FAM
+1 HUSB @I195@
+1 WIFE @I221@
+1 CHIL @I219@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:03:31
+0 @F68@ FAM
+1 HUSB @I234@
+1 WIFE @I279@
+1 CHIL @I265@
+1 CHIL @I284@
+1 CHIL @I378@
+1 CHIL @I253@
+1 CHIL @I224@
+1 CHIL @I293@
+1 CHIL @I351@
+1 CHIL @I305@
+1 CHIL @I342@
+1 CHIL @I221@
+1 CHIL @I435@
+1 CHIL @I259@
+1 CHIL @I276@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:04:50
+0 @F69@ FAM
+1 HUSB @I443@
+1 WIFE @I291@
+1 CHIL @I330@
+1 CHIL @I234@
+1 CHIL @I379@
+1 CHIL @I257@
+1 CHIL @I409@
+1 CHIL @I297@
+1 CHIL @I419@
+1 CHIL @I319@
+1 CHIL @I247@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:05:49
+0 @F70@ FAM
+1 HUSB @I244@
+1 WIFE @I307@
+1 CHIL @I443@
+1 CHIL @I396@
+1 CHIL @I358@
+1 CHIL @I348@
+1 CHIL @I338@
+1 CHIL @I416@
+1 CHIL @I275@
+1 CHIL @I332@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:06:55
+0 @F71@ FAM
+1 HUSB @I263@
+1 WIFE @I175@
+1 CHIL @I433@
+1 CHIL @I352@
+1 CHIL @I317@
+1 CHIL @I277@
+1 CHIL @I368@
+1 CHIL @I241@
+1 CHIL @I256@
+1 CHIL @I314@
+1 CHIL @I244@
+1 CHIL @I425@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:08:15
+0 @F72@ FAM
+1 HUSB @I225@
+1 WIFE @I246@
+1 CHIL @I478@
+1 CHIL @I362@
+1 CHIL @I391@
+1 CHIL @I263@
+1 CHIL @I399@
+1 CHIL @I417@
+1 CHIL @I459@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:28:55
+0 @F73@ FAM
+1 HUSB @I268@
+1 WIFE @I169@
+1 CHIL @I350@
+1 CHIL @I225@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:30:58
+0 @F74@ FAM
+1 HUSB @I260@
+1 WIFE @I237@
+1 CHIL @I268@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:32:04
+0 @F75@ FAM
+1 HUSB @I303@
+1 WIFE @I255@
+1 CHIL @I380@
+1 CHIL @I260@
+1 CHIL @I503@
+1 CHIL @I517@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:33:09
+0 @F76@ FAM
+1 HUSB @I321@
+1 WIFE @I392@
+1 MARR
+2 _PRIM Y
+2 DATE 1403
+1 CHIL @I398@
+1 CHIL @I299@
+1 CHIL @I310@
+1 CHIL @I484@
+1 CHIL @I303@
+1 CHIL @I365@
+1 CHIL @I251@
+1 CHIL @I292@
+1 CHIL @I339@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:38:01
+0 @F77@ FAM
+1 HUSB @I371@
+1 WIFE @I374@
+1 CHIL @I424@
+1 CHIL @I321@
+1 CHIL @I437@
+1 CHIL @I402@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:37:34
+0 @F78@ FAM
+1 HUSB @I337@
+1 WIFE @I363@
+1 CHIL @I371@
+1 CHIL @I430@
+1 CHIL @I521@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:40:41
+0 @F79@ FAM
+1 HUSB @I343@
+1 WIFE @I359@
+1 CHIL @I337@
+1 CHIL @I515@
+1 CHIL @I516@
+1 CHIL @I509@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 19:45:04
+0 @F80@ FAM
+1 HUSB @I504@
+1 WIFE @I390@
+1 CHIL @I359@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 20:22:47
+0 @F81@ FAM
+1 HUSB @I366@
+1 WIFE @I488@
+1 CHIL @I520@
+1 CHIL @I405@
+1 CHIL @I390@
+1 CHIL @I476@
+1 CHIL @I471@
+1 CHIL @I185@
+1 CHIL @I420@
+1 CHIL @I283@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 20:44:53
+0 @F82@ FAM
+1 HUSB @I376@
+1 WIFE @I375@
+1 CHIL @I495@
+1 CHIL @I366@
+1 CHIL @I497@
+1 CHIL @I355@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 20:54:05
+0 @F83@ FAM
+1 HUSB @I366@
+1 WIFE @I311@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 20:57:17
+0 @F84@ FAM
+1 HUSB @I213@
+1 WIFE @I324@
+1 CHIL @I267@
+1 CHIL @I500@
+1 CHIL @I296@
+1 CHIL @I376@
+1 CHIL @I289@
+1 CHIL @I243@
+1 CHIL @I313@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 20:59:24
+0 @F85@ FAM
+1 HUSB @I376@
+1 WIFE @I281@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 20:59:24
+0 @F86@ FAM
+1 HUSB @I346@
+1 WIFE @I302@
+1 CHIL @I213@
+1 CHIL @I400@
+1 CHIL @I199@
+1 CHIL @I287@
+1 CHIL @I387@
+1 CHIL @I274@
+1 CHIL @I308@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:05:59
+0 @F87@ FAM
+1 HUSB @I327@
+1 WIFE @I264@
+1 CHIL @I322@
+1 CHIL @I346@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:08:52
+0 @F88@ FAM
+1 HUSB @I306@
+1 WIFE @I340@
+1 CHIL @I327@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:11:31
+0 @F89@ FAM
+1 HUSB @I318@
+1 WIFE @I323@
+1 CHIL @I171@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:21:32
+0 @F90@ FAM
+1 HUSB @I280@
+1 WIFE @I347@
+1 CHIL @I279@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:29:14
+0 @F91@ FAM
+1 WIFE @I290@
+1 CHIL @I291@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:31:45
+0 @F92@ FAM
+1 HUSB @I357@
+1 WIFE @I249@
+1 CHIL @I175@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:37:43
+0 @F93@ FAM
+1 HUSB @I432@
+1 WIFE @I175@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:37:43
+0 @F94@ FAM
+1 HUSB @I341@
+1 WIFE @I507@
+1 CHIL @I169@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:43:10
+0 @F95@ FAM
+1 HUSB @I408@
+1 WIFE @I386@
+1 CHIL @I255@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 21:48:17
+0 @F96@ FAM
+1 HUSB @I364@
+1 WIFE @I406@
+1 CHIL @I488@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:02:40
+0 @F97@ FAM
+1 HUSB @I441@
+1 WIFE @I434@
+1 CHIL @I324@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:07:31
+0 @F98@ FAM
+1 HUSB @I346@
+1 WIFE @I499@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:10:07
+0 @F99@ FAM
+1 HUSB @I346@
+1 WIFE @I315@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:10:07
+0 @F100@ FAM
+1 HUSB @I346@
+1 WIFE @I477@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:10:07
+0 @F101@ FAM
+1 HUSB @I381@
+1 WIFE @I439@
+1 CHIL @I340@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:12:07
+0 @F102@ FAM
+1 HUSB @I369@
+1 WIFE @I427@
+1 CHIL @I381@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:21:23
+0 @F103@ FAM
+1 HUSB @I412@
+1 WIFE @I480@
+1 CHIL @I439@
+1 CHAN
+2 DATE 10 DEC 2019
+3 TIME 22:24:00
+0 @F104@ FAM
+1 HUSB @I502@
+1 WIFE @I490@
+1 CHIL @I369@
+1 CHAN
+2 DATE 29 JAN 2020
+3 TIME 01:03:07
+0 @F105@ FAM
+1 HUSB @I401@
+1 WIFE @I436@
+1 CHIL @I502@
+1 CHAN
+2 DATE 29 JAN 2020
+3 TIME 01:03:36
+0 @F106@ FAM
+1 WIFE @I446@
+1 MARR
+2 _PRIM Y
+2 DATE 1950
+1 CHAN
+2 DATE 24 JUN 2020
+3 TIME 12:12:04
+0 @F107@ FAM
+1 HUSB @I483@
+1 CHIL @I65@
+1 CHAN
+2 DATE 11 NOV 2020
+3 TIME 12:04:00
+0 @F108@ FAM
+1 HUSB @I470@
+1 WIFE @I445@
+1 CHIL @I440@
+1 CHIL @I482@
+1 CHIL @I479@
+1 CHIL @I466@
+1 CHIL @I493@
+1 CHIL @I512@
+1 CHAN
+2 DATE 23 NOV 2020
+3 TIME 17:15:11
+0 @F109@ FAM
+1 HUSB @I422@
+1 WIFE @I356@
+1 MARR
+2 _PRIM Y
+2 DATE 10 Oct 1731
+2 PLAC Old Alresford, Hampshire, England
+2 SOUR @S19@
+3 PAGE Batch number: M13651-1; Record set: England Marriages 1538-1973; Subcategory: Parish Marriages; Category: Birth, Marriage & Death (Parish Registers); Collections from: England, United Kingdom;
+3 REF http://search.findmypast.com/record?id=R_854543880
+1 CHIL @I411@
+1 CHIL @I403@
+1 CHIL @I470@
+1 CHIL @I487@
+1 CHIL @I429@
+1 CHIL @I354@
+1 CHIL @I415@
+1 CHIL @I361@
+1 CHIL @I485@
+1 CHIL @I367@
+1 CHIL @I431@
+1 CHAN
+2 DATE 20 JAN 2021
+3 TIME 14:35:02
+0 @F110@ FAM
+1 HUSB @I395@
+1 WIFE @I455@
+1 CHIL @I383@
+1 CHIL @I492@
+1 CHIL @I486@
+1 CHIL @I422@
+1 CHIL @I394@
+1 CHIL @I463@
+1 CHAN
+2 DATE 23 NOV 2020
+3 TIME 17:18:46
+0 @F111@ FAM
+1 HUSB @I388@
+1 WIFE @I511@
+1 CHIL @I496@
+1 CHIL @I518@
+1 CHIL @I460@
+1 CHIL @I454@
+1 CHIL @I464@
+1 CHIL @I356@
+1 CHIL @I404@
+1 CHIL @I428@
+1 CHIL @I413@
+1 CHIL @I457@
+1 CHAN
+2 DATE 23 NOV 2020
+3 TIME 17:21:27
+0 @F112@ FAM
+1 HUSB @I370@
+1 WIFE @I468@
+1 CHIL @I388@
+1 CHIL @I498@
+1 CHIL @I472@
+1 CHAN
+2 DATE 23 NOV 2020
+3 TIME 17:23:00
+0 @F113@ FAM
+1 HUSB @I448@
+1 WIFE @I514@
+1 CHIL @I382@
+1 CHIL @I474@
+1 CHIL @I510@
+1 CHIL @I370@
+1 CHIL @I377@
+1 CHIL @I481@
+1 CHAN
+2 DATE 23 NOV 2020
+3 TIME 17:23:42
+0 @F114@ FAM
+1 HUSB @I475@
+1 WIFE @I335@
+1 CHIL @I448@
+1 CHAN
+2 DATE 23 NOV 2020
+3 TIME 17:24:53
+0 @F115@ FAM
+1 HUSB @I450@
+1 CHIL @I410@
+1 CHIL @I452@
+1 CHIL @I414@
+1 CHIL @I198@
+1 CHAN
+2 DATE 18 DEC 2020
+3 TIME 08:31:54
+0 @F116@ FAM
+1 HUSB @I519@
+1 CHIL @I304@
+1 CHAN
+2 DATE 20 JAN 2021
+3 TIME 14:04:29
+0 @F117@ FAM
+1 HUSB @I494@
+1 CHIL @I87@
+1 CHAN
+2 DATE 20 JAN 2021
+3 TIME 14:04:29
+0 @S1@ SOUR
+1 ABBR England & Wales births 1837-2006 - Findmypast
+1 TITL England & Wales births 1837-2006 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 12:30:19
+0 @S2@ SOUR
+1 ABBR England & Wales marriages 1837-2008 - Findmypast
+1 TITL England & Wales marriages 1837-2008 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 12:32:56
+0 @S3@ SOUR
+1 ABBR England & Wales deaths 1837-2007 - Findmypast
+1 TITL England & Wales deaths 1837-2007 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 12:33:48
+0 @S4@ SOUR
+1 ABBR 1891 England, Wales & Scotland Census - Findmypast
+1 TITL 1891 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 21:53:40
+0 @S5@ SOUR
+1 ABBR 1901 England, Wales & Scotland Census - Findmypast
+1 TITL 1901 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 22:05:02
+0 @S6@ SOUR
+1 ABBR Richard Edmunds on the 1939 Register
+1 TITL Richard Edmunds on the 1939 Register
+1 CHAN
+2 DATE 13 DEC 2016
+3 TIME 09:42:04
+0 @S7@ SOUR
+1 ABBR 1939 Register - Findmypast
+1 TITL 1939 Register - Findmypast
+1 CHAN
+2 DATE 13 DEC 2016
+3 TIME 09:42:50
+0 @S8@ SOUR
+1 ABBR 1911 Census For England & Wales - Findmypast
+1 TITL 1911 Census For England & Wales - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 20 MAR 2017
+3 TIME 11:35:06
+0 @S9@ SOUR
+1 ABBR Hampshire, Portsmouth Baptisms - Findmypast
+1 TITL Hampshire, Portsmouth Baptisms - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 1 DEC 2017
+3 TIME 14:27:12
+0 @S10@ SOUR
+1 ABBR Hampshire, Portsmouth Marriages - Findmypast
+1 TITL Hampshire, Portsmouth Marriages - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 1 DEC 2017
+3 TIME 15:10:14
+0 @S11@ SOUR
+1 ABBR 1861 England, Wales & Scotland Census - Findmypast
+1 TITL 1861 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 6 JAN 2018
+3 TIME 15:01:06
+0 @S12@ SOUR
+1 ABBR 1851 England, Wales & Scotland Census - Findmypast
+1 TITL 1851 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 JAN 2018
+3 TIME 15:56:20
+0 @S13@ SOUR
+1 ABBR 1881 England, Wales & Scotland Census - Findmypast
+1 TITL 1881 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 12 JAN 2018
+3 TIME 16:10:39
+0 @S14@ SOUR
+1 ABBR 1871 England, Wales & Scotland Census - Findmypast
+1 TITL 1871 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 17 JAN 2018
+3 TIME 14:42:43
+0 @S15@ SOUR
+1 ABBR 1841 England, Wales & Scotland Census - Findmypast
+1 TITL 1841 England, Wales & Scotland Census - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 17 JAN 2018
+3 TIME 14:55:14
+0 @S16@ SOUR
+1 ABBR England & Wales Marriages 1837-2005 - Findmypast
+1 TITL England & Wales Marriages 1837-2005 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 16 JUL 2018
+3 TIME 15:45:38
+0 @S17@ SOUR
+1 ABBR England, Boyd's Marriage Indexes, 1538-1850 - Findmypast
+1 TITL England, Boyd's Marriage Indexes, 1538-1850 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 4 SEP 2019
+3 TIME 13:42:13
+0 @S18@ SOUR
+1 ABBR This person has been found in another Findmypast member's family tree.
+2 CONT
+2 CONT Our members' trees are a rich source of information to help you build your own tree
+1 TITL This person has been found in another Findmypast member's family tree.
+2 CONT
+2 CONT Our members' trees are a rich source of information to help you build your own tree
+1 CHAN
+2 DATE 10 SEP 2019
+3 TIME 12:28:23
+0 @S19@ SOUR
+1 ABBR England Marriages 1538-1973 - Findmypast
+1 TITL England Marriages 1538-1973 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 24 OCT 2019
+3 TIME 15:43:13
+0 @S20@ SOUR
+1 ABBR Warwickshire Burials - Findmypast
+1 TITL Warwickshire Burials - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 1 NOV 2019
+3 TIME 07:47:39
+0 @S21@ SOUR
+1 ABBR Essex Baptism Index 1538-1920 - Findmypast
+1 TITL Essex Baptism Index 1538-1920 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 9 NOV 2019
+3 TIME 21:07:39
+0 @S22@ SOUR
+1 ABBR Hampshire baptisms - Findmypast
+1 TITL Hampshire baptisms - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 7 DEC 2019
+3 TIME 19:40:42
+0 @S23@ SOUR
+1 ABBR Scotland Births & Baptisms 1564-1950 - Findmypast
+1 TITL Scotland Births & Baptisms 1564-1950 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 16 JUN 2020
+3 TIME 00:55:20
+0 @S24@ SOUR
+1 ABBR Scotland Marriages 1561-1910 - Findmypast
+1 TITL Scotland Marriages 1561-1910 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 16 JUN 2020
+3 TIME 00:55:52
+0 @S25@ SOUR
+1 ABBR England Births & Baptisms 1538-1975 - Findmypast
+1 TITL England Births & Baptisms 1538-1975 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 25 AUG 2020
+3 TIME 20:59:10
+0 @S26@ SOUR
+1 ABBR Hampshire Marriages - Findmypast
+1 TITL Hampshire Marriages - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 10 DEC 2020
+3 TIME 15:03:29
+0 @S27@ SOUR
+1 ABBR Essex Marriages And Banns 1537-1935 - Findmypast
+1 TITL Essex Marriages And Banns 1537-1935 - Findmypast
+1 AUTH Findmypast
+1 REPO @R1@
+1 CHAN
+2 DATE 18 DEC 2020
+3 TIME 08:31:53
+0 @R1@ REPO
+1 NAME Findmypast
+1 ADDR The Glebe, 6 Chapel Place, Rivington Street, London, EC2A 2D
+2 CONC Q England
+2 ADR1 The Glebe
+2 ADR2 6 Chapel Place
+2 ADR3 Rivington Street
+2 CITY London
+2 POST EC2A 2DQ
+2 CTRY England
+1 WWW http://www.findmypast.com
+1 CHAN
+2 DATE 12 DEC 2016
+3 TIME 12:30:19
+0 TRLR
diff --git a/testdata/simpsons.ged b/testdata/simpsons.ged
new file mode 100644
index 0000000..728c4ea
--- /dev/null
+++ b/testdata/simpsons.ged
@@ -0,0 +1,171 @@
+0 HEAD
+1 SOUR GRAMPS
+2 VERS 2.2.6-1
+2 NAME GRAMPS
+1 DEST GEDCOM 5.5
+1 DATE 9 MAR 2007
+1 CHAR UTF-8
+1 SUBM @SUBM@
+1 FILE /home/bodon/dok/gramps_data/Untitled_1.ged
+1 COPR Copyright (c) 2007 .
+1 GEDC
+2 VERS 5.5
+2 FORM LINEAGE-LINKED
+0 @SUBM@ SUBM
+1 NAME Not Provided
+1 ADDR Not Provided
+2 CONT Not Provided
+0 @Abraham_Simpson@ INDI
+1 NAME Abraham /Simpson/
+2 GIVN Abraham
+2 SURN Simpson
+1 SEX M
+1 FAMS @F0002@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:05:36
+0 @Bart_Simpson@ INDI
+1 NAME Bart /Simpson/
+2 GIVN Bart
+2 SURN Simpson
+1 SEX M
+1 FAMC @F0000@
+1 OBJE
+2 FORM URL
+2 FILE http://en.wikipedia.org/wiki/Bart_Simpson
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:04:14
+0 @Clancy_Bouvier@ INDI
+1 NAME Clancy /Bouvier/
+2 GIVN Clancy
+2 SURN Bouvier
+1 SEX M
+1 FAMS @F0003@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:13:45
+0 @Homer_Simpson@ INDI
+1 NAME Homer /Simpson/
+2 GIVN Homer
+2 SURN Simpson
+1 SEX M
+1 FAMC @F0002@
+1 FAMS @F0000@
+1 OBJE
+2 FORM URL
+2 FILE http://en.wikipedia.org/wiki/Homer_Simpson
+1 OBJE
+2 FORM URL
+2 FILE safety.officer@springfieldnuclear.com
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:05:36
+0 @Jacqueline_Bouvier@ INDI
+1 NAME Jacqueline /Bouvier/
+2 GIVN Jacqueline
+2 SURN Bouvier
+1 SEX F
+1 FAMS @F0003@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:13:45
+0 @Lisa_Simpson@ INDI
+1 NAME Lisa /Simpson/
+2 GIVN Lisa
+2 SURN Simpson
+1 SEX F
+1 FAMC @F0000@
+1 OBJE
+2 FORM URL
+2 FILE lisa@springfieldhigh.edu
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:04:14
+0 @Maggie_Simpson@ INDI
+1 NAME Maggie /Simpson/
+2 GIVN Maggie
+2 SURN Simpson
+1 SEX F
+1 FAMC @F0000@
+1 OBJE
+2 FORM URL
+2 FILE http://en.wikipedia.org/wiki/Maggie_Simpson
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:04:14
+0 @Marge_Simpson@ INDI
+1 NAME Marge /Simpson/
+2 GIVN Marge
+2 SURN Simpson
+1 SEX F
+1 FAMC @F0003@
+1 FAMS @F0000@
+1 OBJE
+2 FORM URL
+2 FILE http://en.wikipedia.org/wiki/Marge_Simpson
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:13:45
+0 @Mona_Simpson@ INDI
+1 NAME Mona /Simpson/
+2 GIVN Mona
+2 SURN Simpson
+1 SEX F
+1 FAMS @F0002@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:05:36
+0 @Patty_Bouvier@ INDI
+1 NAME Patty /Bouvier/
+2 GIVN Patty
+2 SURN Bouvier
+1 SEX F
+1 FAMC @F0003@
+1 OBJE
+2 FORM URL
+2 FILE http://en.wikipedia.org/wiki/Patty_and_Selma_Bouvier
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:13:45
+0 @Selma_Bouvier@ INDI
+1 NAME Selma /Bouvier/
+2 GIVN Selma
+2 SURN Bouvier
+1 SEX F
+1 FAMC @F0003@
+1 OBJE
+2 FORM URL
+2 FILE http://en.wikipedia.org/wiki/Patty_and_Selma_Bouvier
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:13:45
+0 @F0000@ FAM
+1 REFN 0
+1 HUSB @Homer_Simpson@
+1 WIFE @Marge_Simpson@
+1 CHIL @Bart_Simpson@
+1 CHIL @Maggie_Simpson@
+1 CHIL @Lisa_Simpson@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:04:14
+0 @F0002@ FAM
+1 REFN 2
+1 HUSB @Abraham_Simpson@
+1 WIFE @Mona_Simpson@
+1 CHIL @Homer_Simpson@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:05:36
+0 @F0003@ FAM
+1 REFN 3
+1 HUSB @Clancy_Bouvier@
+1 WIFE @Jacqueline_Bouvier@
+1 CHIL @Patty_Bouvier@
+1 CHIL @Selma_Bouvier@
+1 CHIL @Marge_Simpson@
+1 CHAN
+2 DATE 11 FEB 2007
+3 TIME 15:13:45
+0 TRLR
diff --git a/types.go b/types.go
index 6e9b61d..cadd09e 100644
--- a/types.go
+++ b/types.go
@@ -96,6 +96,7 @@ type IndividualRecord struct {
type MediaRecord struct {
Xref string
File []*FileRecord
+ Title string
UserReference []*UserReferenceRecord
AutomatedRecordId string
Change ChangeRecord
@@ -183,7 +184,15 @@ type CitationRecord struct {
}
type SubmitterRecord struct {
- Xref string
+ Xref string
+ Name string
+ Address *AddressRecord
+ Media []*MediaRecord
+ Language []string
+ SubmitterRecordFileID string
+ AutomatedRecordId string
+ Note []*NoteRecord
+ Change *ChangeRecord
}
type NameRecord struct {
@@ -199,6 +208,7 @@ type NameRecord struct {
Romanized []*VariantNameRecord
Citation []*CitationRecord
Note []*NoteRecord
+ UserDefined []UserDefinedTag
}
type VariantNameRecord struct {
From 88218b4f1cb28864403d2dfb5a8b2a6ff6ab2ce5 Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Sun, 28 Jul 2024 17:02:13 +0100
Subject: [PATCH 3/8] Update from master
---
decoder.go | 11 +++++-
decoder_test.go | 90 ++++++++++++++++++++++++++++++++++++++++++++++++-
2 files changed, 99 insertions(+), 2 deletions(-)
diff --git a/decoder.go b/decoder.go
index 041b8b8..20d070b 100644
--- a/decoder.go
+++ b/decoder.go
@@ -252,7 +252,16 @@ func makeIndividualParser(d *Decoder, i *IndividualRecord, minLevel int) parser
case "SEX":
i.Sex = value
case "BIRT", "CHR", "DEAT", "BURI", "CREM", "ADOP", "BAPM", "BARM", "BASM", "BLES", "CHRA", "CONF", "FCOM", "ORDN", "NATU", "EMIG", "IMMI", "CENS", "PROB", "WILL", "GRAD", "RETI", "EVEN":
- e := &EventRecord{Tag: tag, Value: value}
+ e := &EventRecord{Tag: tag}
+ if value != "" {
+ if value == "Y" && (tag == "BIRT" || tag == "CHR" || tag == "DEAT") {
+ e.Value = "Y"
+ } else {
+ // any event other value is invalid and added as a note instead
+ r := &NoteRecord{Note: value}
+ e.Note = append(i.Note, r)
+ }
+ }
i.Event = append(i.Event, e)
d.pushParser(makeEventParser(d, tag, e, level))
case "CAST", "DSCR", "EDUC", "IDNO", "NATI", "NCHI", "NMR", "OCCU", "PROP", "RELI", "RESI", "SSN", "TITL", "FACT":
diff --git a/decoder_test.go b/decoder_test.go
index e25de01..8790f5f 100644
--- a/decoder_test.go
+++ b/decoder_test.go
@@ -1482,7 +1482,95 @@ func TestPlace(t *testing.T) {
}
if diff := cmp.Diff(tc.want, g.Individual[0].Event[0].Place); diff != "" {
- t.Errorf("place mismatch (-want +got):\n%s", diff)
+ t.Errorf("mismatch (-want +got):\n%s", diff)
+ }
+ })
+ }
+}
+
+func TestEvent(t *testing.T) {
+ testCases := []struct {
+ name string
+ input string
+ want *EventRecord
+ }{
+ {
+ // findmypast uses the note as the value of the EVEN
+ name: "even_value_to_note",
+ input: `
+ 1 EVEN was age 10 and the daughter of the head of the household
+ 2 TYPE Census UK 1881
+ 2 _PRIM Y
+ 2 DATE 3 Apr 1881
+ `,
+ want: &EventRecord{
+ Tag: "EVEN",
+ Type: "Census UK 1881",
+ Date: "3 Apr 1881",
+ Note: []*NoteRecord{
+ {Note: "was age 10 and the daughter of the head of the household"},
+ },
+ UserDefined: []UserDefinedTag{{Tag: "_PRIM", Value: "Y", Level: 2}},
+ },
+ },
+ {
+ // A Y after a DEAT, BIRT or CHR is allowed, indicating the event is known to have happened
+ name: "death_known",
+ input: `
+ 1 DEAT Y
+ `,
+ want: &EventRecord{
+ Tag: "DEAT",
+ Value: "Y",
+ },
+ },
+ {
+ // A Y after a DEAT, BIRT or CHR is allowed, indicating the event is known to have happened
+ name: "birt_known",
+ input: `
+ 1 BIRT Y
+ `,
+ want: &EventRecord{
+ Tag: "BIRT",
+ Value: "Y",
+ },
+ },
+ {
+ // A Y after a DEAT, BIRT or CHR is allowed, indicating the event is known to have happened
+ name: "chr_known",
+ input: `
+ 1 CHR Y
+ `,
+ want: &EventRecord{
+ Tag: "CHR",
+ Value: "Y",
+ },
+ },
+ {
+ name: "death_standard",
+ input: `
+ 1 DEAT
+ 2 DATE 2 OCT 1937
+ `,
+ want: &EventRecord{
+ Tag: "DEAT",
+ Date: "2 OCT 1937",
+ },
+ },
+ }
+
+ for _, tc := range testCases {
+ t.Run(tc.name, func(t *testing.T) {
+ tc.input = "0 @test@ INDI\n" + tc.input
+ d := NewDecoder(bytes.NewReader([]byte(tc.input)))
+
+ g, err := d.Decode()
+ if err != nil {
+ t.Fatalf("unexpected error: %v", err)
+ }
+
+ if diff := cmp.Diff(tc.want, g.Individual[0].Event[0]); diff != "" {
+ t.Errorf("event mismatch (-want +got):\n%s", diff)
}
})
}
From 41c5e78fedad6f459f0d6a16640475093ba32688 Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Sun, 28 Jul 2024 17:30:16 +0100
Subject: [PATCH 4/8] Optimize encoding test diffing
---
cmp_test.go | 84 ++++++++++++++++++++++++++
decoder.go | 20 ++++++-
decoder_test.go | 155 ++++++++++++++++++++++++++----------------------
encoder.go | 5 +-
encoder_test.go | 92 ++++++++++------------------
5 files changed, 221 insertions(+), 135 deletions(-)
create mode 100644 cmp_test.go
diff --git a/cmp_test.go b/cmp_test.go
new file mode 100644
index 0000000..5d7d753
--- /dev/null
+++ b/cmp_test.go
@@ -0,0 +1,84 @@
+package gedcom
+
+import "github.com/google/go-cmp/cmp"
+
+// familyXrefComparer is a Comparer that compares FamilyLinkRecords only by Family xref
+var familyXrefComparer = cmp.Comparer(func(a, b *FamilyLinkRecord) bool {
+ if a == nil {
+ return b == nil
+ }
+
+ if b == nil {
+ return a == nil
+ }
+
+ if a.Family == nil {
+ return b.Family == nil
+ }
+
+ if b.Family == nil {
+ return a.Family == nil
+ }
+
+ return a.Family.Xref == b.Family.Xref
+})
+
+// individualXrefComparer is a Comparer that compares IndividualRecords only by xref
+var individualXrefComparer = cmp.Comparer(func(a, b *IndividualRecord) bool {
+ if a == nil {
+ return b == nil
+ }
+
+ if b == nil {
+ return a == nil
+ }
+
+ return a.Xref == b.Xref
+})
+
+// sourceXrefComparer is a Comparer that compares CitationRecords only by source xref
+var sourceXrefComparer = cmp.Comparer(func(a, b *CitationRecord) bool {
+ if a == nil {
+ return b == nil
+ }
+
+ if b == nil {
+ return a == nil
+ }
+
+ if a.Source == nil {
+ return b.Source == nil
+ }
+
+ if b.Source == nil {
+ return a.Source == nil
+ }
+
+ return a.Source.Xref == b.Source.Xref
+})
+
+// eventIgnoreComparer is a Comparer that ignores event comparisons
+var eventIgnoreComparer = cmp.Comparer(func(a, b []*EventRecord) bool {
+ return true
+})
+
+// mediaFileNameCompare is a Comparer that compares MediaRecord only by first file name
+var mediaFileNameCompare = cmp.Comparer(func(a, b *MediaRecord) bool {
+ if a == nil {
+ return b == nil
+ }
+
+ if b == nil {
+ return a == nil
+ }
+
+ if len(a.File) == 0 {
+ return len(b.File) == 0
+ }
+
+ if len(b.File) == 0 {
+ return len(a.File) == 0
+ }
+
+ return a.File[0].Name == b.File[0].Name
+})
diff --git a/decoder.go b/decoder.go
index 20d070b..2b7c71a 100644
--- a/decoder.go
+++ b/decoder.go
@@ -257,7 +257,7 @@ func makeIndividualParser(d *Decoder, i *IndividualRecord, minLevel int) parser
if value == "Y" && (tag == "BIRT" || tag == "CHR" || tag == "DEAT") {
e.Value = "Y"
} else {
- // any event other value is invalid and added as a note instead
+ // event value is invalid and added as a note instead
r := &NoteRecord{Note: value}
e.Note = append(i.Note, r)
}
@@ -265,7 +265,16 @@ func makeIndividualParser(d *Decoder, i *IndividualRecord, minLevel int) parser
i.Event = append(i.Event, e)
d.pushParser(makeEventParser(d, tag, e, level))
case "CAST", "DSCR", "EDUC", "IDNO", "NATI", "NCHI", "NMR", "OCCU", "PROP", "RELI", "RESI", "SSN", "TITL", "FACT":
- e := &EventRecord{Tag: tag, Value: value}
+ e := &EventRecord{Tag: tag}
+ if value != "" {
+ if tag == "RESI" {
+ // event value is invalid and added as a note instead
+ r := &NoteRecord{Note: value}
+ e.Note = append(i.Note, r)
+ } else {
+ e.Value = value
+ }
+ }
i.Attribute = append(i.Attribute, e)
d.pushParser(makeEventParser(d, tag, e, level))
case "FAMC":
@@ -864,7 +873,12 @@ func makeFamilyParser(d *Decoder, f *FamilyRecord, minLevel int) parser {
case "CHIL":
f.Child = append(f.Child, d.individual(stripXref(value)))
case "ANUL", "CENS", "DIV", "DIVF", "ENGA", "MARR", "MARB", "MARC", "MARL", "MARS", "EVEN", "RESI":
- e := &EventRecord{Tag: tag, Value: value}
+ e := &EventRecord{Tag: tag}
+ if value != "" {
+ // any event other value is invalid and added as a note instead
+ r := &NoteRecord{Note: value}
+ e.Note = append(e.Note, r)
+ }
f.Event = append(f.Event, e)
d.pushParser(makeEventParser(d, tag, e, level))
case "NCHI":
diff --git a/decoder_test.go b/decoder_test.go
index 8790f5f..84612e1 100644
--- a/decoder_test.go
+++ b/decoder_test.go
@@ -68,11 +68,6 @@ func TestIndividual(t *testing.T) {
t.Fatalf("unexpected error: %v", err)
}
- // Create a comparison option that ignores events
- eventOpt := cmp.Comparer(func(a, b []*EventRecord) bool {
- return true
- })
-
// Create a comparison option that compares just names
nameOpt := cmp.Comparer(func(a, b *NameRecord) bool {
if a == nil {
@@ -86,69 +81,6 @@ func TestIndividual(t *testing.T) {
return a.Name == b.Name
})
- // Create a comparison option that compares families by xref
- familyOpt := cmp.Comparer(func(a, b *FamilyLinkRecord) bool {
- if a == nil {
- return b == nil
- }
-
- if b == nil {
- return a == nil
- }
-
- if a.Family == nil {
- return b.Family == nil
- }
-
- if b.Family == nil {
- return a.Family == nil
- }
-
- return a.Family.Xref == b.Family.Xref
- })
-
- // Create a comparison option that compares citations by source xref only
- sourceOpt := cmp.Comparer(func(a, b *CitationRecord) bool {
- if a == nil {
- return b == nil
- }
-
- if b == nil {
- return a == nil
- }
-
- if a.Source == nil {
- return b.Source == nil
- }
-
- if b.Source == nil {
- return a.Source == nil
- }
-
- return a.Source.Xref == b.Source.Xref
- })
-
- // Create a comparison option that compares media files by name only
- fileOpt := cmp.Comparer(func(a, b *MediaRecord) bool {
- if a == nil {
- return b == nil
- }
-
- if b == nil {
- return a == nil
- }
-
- if len(a.File) == 0 {
- return len(b.File) == 0
- }
-
- if len(b.File) == 0 {
- return len(a.File) == 0
- }
-
- return a.File[0].Name == b.File[0].Name
- })
-
individuals := []*IndividualRecord{
{
Xref: "PERSON1",
@@ -308,7 +240,7 @@ func TestIndividual(t *testing.T) {
},
}
- if diff := cmp.Diff(individuals, g.Individual, eventOpt, familyOpt, nameOpt, sourceOpt, fileOpt); diff != "" {
+ if diff := cmp.Diff(individuals, g.Individual, nameOpt, eventIgnoreComparer, familyXrefComparer, sourceXrefComparer, mediaFileNameCompare); diff != "" {
t.Errorf("submitter mismatch (-want +got):\n%s", diff)
}
}
@@ -1488,7 +1420,7 @@ func TestPlace(t *testing.T) {
}
}
-func TestEvent(t *testing.T) {
+func TestIndividualEvent(t *testing.T) {
testCases := []struct {
name string
input string
@@ -1575,3 +1507,86 @@ func TestEvent(t *testing.T) {
})
}
}
+
+func TestIndividualAttribute(t *testing.T) {
+ testCases := []struct {
+ name string
+ input string
+ want *EventRecord
+ }{
+ {
+ name: "even_value_to_note",
+ input: `
+ 1 RESI Marital Status: MarriedRelation to Head of House: Head
+ 2 DATE 1 Jun 1921
+ `,
+ want: &EventRecord{
+ Tag: "RESI",
+ Date: "1 Jun 1921",
+ Note: []*NoteRecord{
+ {Note: "Marital Status: MarriedRelation to Head of House: Head"},
+ },
+ },
+ },
+ }
+
+ for _, tc := range testCases {
+ t.Run(tc.name, func(t *testing.T) {
+ tc.input = "0 @test@ INDI\n" + tc.input
+ d := NewDecoder(bytes.NewReader([]byte(tc.input)))
+
+ g, err := d.Decode()
+ if err != nil {
+ t.Fatalf("unexpected error: %v", err)
+ }
+
+ if diff := cmp.Diff(tc.want, g.Individual[0].Attribute[0]); diff != "" {
+ t.Errorf("event mismatch (-want +got):\n%s", diff)
+ }
+ })
+ }
+}
+
+func TestFamilyEvent(t *testing.T) {
+ testCases := []struct {
+ name string
+ input string
+ want *EventRecord
+ }{
+ {
+ // findmypast uses the note as the value of the EVEN
+ name: "even_value_to_note",
+ input: `
+ 1 EVEN was age 10 and the daughter of the head of the household
+ 2 TYPE Census UK 1881
+ 2 _PRIM Y
+ 2 DATE 3 Apr 1881
+ `,
+ want: &EventRecord{
+ Tag: "EVEN",
+ Type: "Census UK 1881",
+ Date: "3 Apr 1881",
+ Note: []*NoteRecord{
+ {Note: "was age 10 and the daughter of the head of the household"},
+ },
+ UserDefined: []UserDefinedTag{{Tag: "_PRIM", Value: "Y", Level: 2}},
+ },
+ },
+ }
+
+ for _, tc := range testCases {
+ t.Run(tc.name, func(t *testing.T) {
+ tc.input = "0 @test@ FAM\n" + tc.input
+ d := NewDecoder(bytes.NewReader([]byte(tc.input)))
+
+ g, err := d.Decode()
+ if err != nil {
+ t.Fatalf("unexpected error: %v", err)
+ }
+
+ if diff := cmp.Diff(tc.want, g.Family[0].Event[0]); diff != "" {
+ t.Errorf("event mismatch (-want +got):\n%s", diff)
+ }
+ })
+ }
+}
diff --git a/encoder.go b/encoder.go
index 99f40e7..0946b4a 100644
--- a/encoder.go
+++ b/encoder.go
@@ -616,7 +616,7 @@ func (e *Encoder) noteList(level int, rs []*NoteRecord) {
return
}
for _, sr := range rs {
- e.note(level+1, sr)
+ e.note(level, sr)
}
}
@@ -627,7 +627,8 @@ func (e *Encoder) note(level int, r *NoteRecord) {
if r == nil {
return
}
- e.tagWithText(level, "NOTE", "")
+ e.tagWithText(level, "NOTE", r.Note)
+ e.citationList(level+1, r.Citation)
}
func (e *Encoder) citationList(level int, rs []*CitationRecord) {
diff --git a/encoder_test.go b/encoder_test.go
index 6091bcb..7479d27 100644
--- a/encoder_test.go
+++ b/encoder_test.go
@@ -256,11 +256,11 @@ func TestDecodeEncode(t *testing.T) {
fmt.Println(buf.String())
// Decode the generated gedcom
- // d2 := NewDecoder(buf)
- // got, err := d2.Decode()
- // if err != nil {
- // t.Fatalf("decode generated gedcom got error %q, wanted no error", err)
- // }
+ d2 := NewDecoder(buf)
+ got, err := d2.Decode()
+ if err != nil {
+ t.Fatalf("decode generated gedcom got error %q, wanted no error", err)
+ }
type dinfo struct {
name string
@@ -269,61 +269,33 @@ func TestDecodeEncode(t *testing.T) {
var diffs []dinfo
- // // spot check some individuals
- // indIDs := []string{"I8"}
-
- // windmap := make(map[string]*IndividualRecord)
- // gindmap := make(map[string]*IndividualRecord)
- // for _, in := range want.Individual {
- // windmap[in.Xref] = in
- // }
- // for _, in := range got.Individual {
- // gindmap[in.Xref] = in
- // }
-
- // for _, id := range indIDs {
- // wind, ok := windmap[id]
- // if !ok {
- // t.Errorf("id %s not found in wanted individuals", id)
- // continue
- // }
- // gind, ok := gindmap[id]
- // if !ok {
- // t.Errorf("id %s not found in got individuals", id)
- // continue
- // }
- // if diff := cmp.Diff(wind, gind); diff != "" {
- // diffs = append(diffs, dinfo{name: "Individual " + id, diff: diff})
- // }
- // }
-
- // if diff := cmp.Diff(want.Header, got.Header); diff != "" {
- // diffs = append(diffs, dinfo{name: "Header", diff: diff})
- // }
- // if diff := cmp.Diff(want.Trailer, got.Trailer); diff != "" {
- // diffs = append(diffs, dinfo{name: "Trailer", diff: diff})
- // }
- // if diff := cmp.Diff(want.Family, got.Family); diff != "" {
- // diffs = append(diffs, dinfo{name: "Family", diff: diff})
- // }
- // if diff := cmp.Diff(want.Individual, got.Individual); diff != "" {
- // diffs = append(diffs, dinfo{name: "Individual", diff: diff})
- // }
- // if diff := cmp.Diff(want.Media, got.Media); diff != "" {
- // diffs = append(diffs, dinfo{name: "Media", diff: diff})
- // }
- // if diff := cmp.Diff(want.Repository, got.Repository); diff != "" {
- // diffs = append(diffs, dinfo{name: "Repository", diff: diff})
- // }
- // if diff := cmp.Diff(want.Source, got.Source); diff != "" {
- // diffs = append(diffs, dinfo{name: "Source", diff: diff})
- // }
- // if diff := cmp.Diff(want.Submitter, got.Submitter); diff != "" {
- // diffs = append(diffs, dinfo{name: "Submitter", diff: diff})
- // }
- // if diff := cmp.Diff(want.UserDefined, got.UserDefined); diff != "" {
- // diffs = append(diffs, dinfo{name: "UserDefined", diff: diff})
- // }
+ if diff := cmp.Diff(want.Header, got.Header); diff != "" {
+ diffs = append(diffs, dinfo{name: "Header", diff: diff})
+ }
+ if diff := cmp.Diff(want.Trailer, got.Trailer); diff != "" {
+ diffs = append(diffs, dinfo{name: "Trailer", diff: diff})
+ }
+ if diff := cmp.Diff(want.Family, got.Family, individualXrefComparer, sourceXrefComparer); diff != "" {
+ diffs = append(diffs, dinfo{name: "Family", diff: diff})
+ }
+ if diff := cmp.Diff(want.Individual, got.Individual, familyXrefComparer, sourceXrefComparer); diff != "" {
+ diffs = append(diffs, dinfo{name: "Individual", diff: diff})
+ }
+ if diff := cmp.Diff(want.Media, got.Media, sourceXrefComparer); diff != "" {
+ diffs = append(diffs, dinfo{name: "Media", diff: diff})
+ }
+ if diff := cmp.Diff(want.Repository, got.Repository, sourceXrefComparer); diff != "" {
+ diffs = append(diffs, dinfo{name: "Repository", diff: diff})
+ }
+ if diff := cmp.Diff(want.Source, got.Source); diff != "" {
+ diffs = append(diffs, dinfo{name: "Source", diff: diff})
+ }
+ if diff := cmp.Diff(want.Submitter, got.Submitter); diff != "" {
+ diffs = append(diffs, dinfo{name: "Submitter", diff: diff})
+ }
+ if diff := cmp.Diff(want.UserDefined, got.UserDefined); diff != "" {
+ diffs = append(diffs, dinfo{name: "UserDefined", diff: diff})
+ }
for _, d := range diffs {
t.Logf("%s diff containes %d lines", d.name, len(d.diff))
From 0910342e8c477228219f56875ee6865a2f27213c Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Wed, 28 Aug 2024 10:33:49 +0100
Subject: [PATCH 5/8] Handle trailer
---
decoder.go | 2 ++
encoder.go | 4 ++--
encoder_test.go | 27 +--------------------------
3 files changed, 5 insertions(+), 28 deletions(-)
diff --git a/decoder.go b/decoder.go
index 2b7c71a..317bb68 100644
--- a/decoder.go
+++ b/decoder.go
@@ -225,6 +225,8 @@ func makeRootParser(d *Decoder, g *Gedcom) parser {
obj := d.media(xref)
g.Media = append(g.Media, obj)
d.pushParser(makeMediaParser(d, obj, level))
+ case "TRLR":
+ g.Trailer = &Trailer{}
default:
g.UserDefined = append(g.UserDefined, UserDefinedTag{
Tag: tag,
diff --git a/encoder.go b/encoder.go
index 0946b4a..aabed1e 100644
--- a/encoder.go
+++ b/encoder.go
@@ -557,7 +557,7 @@ func (e *Encoder) trailer(r *Trailer) {
if e.err != nil {
return
}
- // nothing to do
+ e.tag(0, "TRLR", "")
}
func (e *Encoder) name(level int, r *NameRecord) {
@@ -601,7 +601,7 @@ func (e *Encoder) change(level int, r *ChangeRecord) {
if e.err != nil {
return
}
- if r == nil {
+ if r == nil || (r.Date == "" && r.Time == "" && len(r.Note) == 0) {
return
}
e.tagWithText(level, "CHAN", "")
diff --git a/encoder_test.go b/encoder_test.go
index 7479d27..f7905f6 100644
--- a/encoder_test.go
+++ b/encoder_test.go
@@ -2,7 +2,6 @@ package gedcom
import (
"bytes"
- "fmt"
"os"
"strings"
"testing"
@@ -131,29 +130,7 @@ func TestEncodeHeader(t *testing.T) {
"2 CONT This @@ (commercial at) character may only appear ONCE!",
"2 CONT Note continued here. The word TEST should not be broken!",
"1 _MYOWNTAG This is a non-standard tag. Not recommended but allowed",
- // "0 @SUBMITTER@ SUBM",
- // "1 NAME /Submitter-Name/",
- // "1 ADDR Submitter address line 1",
- // "2 CONT Submitter address line 2",
- // "2 CONT Submitter address line 3",
- // "2 CONT Submitter address line 4",
- // "2 ADR1 Submitter address line 1",
- // "2 ADR2 Submitter address line 2",
- // "2 CITY Submitter address city",
- // "2 STAE Submitter address state",
- // "2 POST Submitter address ZIP code",
- // "2 CTRY Submitter address country",
- // "1 PHON Submitter phone number 1",
- // "1 PHON Submitter phone number 2",
- // "1 PHON Submitter phone number 3 (last one!)",
- // "1 LANG English",
- // "1 CHAN ",
- // "2 DATE 19 JUN 2000",
- // "3 TIME 12:34:56.789",
- // "2 NOTE A note",
- // "3 CONT Note continued here. The word TE",
- // "3 CONC ST should not be broken!",
- // "1 _MYOWNTAG This is a non-standard tag. Not recommended but allowed",
+ "0 TRLR",
},
},
}
@@ -253,8 +230,6 @@ func TestDecodeEncode(t *testing.T) {
t.Fatalf("encode gedcom got error %q, wanted no error", err)
}
- fmt.Println(buf.String())
-
// Decode the generated gedcom
d2 := NewDecoder(buf)
got, err := d2.Decode()
From 235aff4c018d3ed1d9c32d7eb75f71c47ae9d639 Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Wed, 28 Aug 2024 11:05:06 +0100
Subject: [PATCH 6/8] Add encode example and update readme
---
README.md | 30 ++++++++--
encoder_example.go | 141 +++++++++++++++++++++++++++++++++++++++++++++
2 files changed, 167 insertions(+), 4 deletions(-)
create mode 100644 encoder_example.go
diff --git a/README.md b/README.md
index f9ae1c5..ee0e14a 100644
--- a/README.md
+++ b/README.md
@@ -7,9 +7,15 @@ Go package to parse GEDCOM files.
[![Go Report Card](https://goreportcard.com/badge/github.com/iand/gedcom)](https://goreportcard.com/report/github.com/iand/gedcom)
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/iand/gedcom)
+## Purpose
+
+The `gedcom` package provides tools for working with GEDCOM files in Go. GEDCOM (Genealogical Data Communication) is a standard format used for exchanging genealogical data between software applications. This package includes functionality for both parsing existing GEDCOM files and generating new ones.
+
+The package includes a streaming decoder for reading GEDCOM files and an encoder for creating GEDCOM files from Go structs.
+
## Usage
-The package provides a Decoder with a single Decode method that returns a Gedcom struct. Use the NewDecoder method to create a new decoder.
+The package provides a `Decoder` with a single `Decode` method that returns a Gedcom struct. Use the `NewDecoder` method to create a new decoder.
This example shows how to parse a GEDCOM file and list all the individuals. In this example the entire input file is read into memory, but the decoder is streaming so it should be able to deal with very large files: just pass an appropriate Reader.
@@ -40,17 +46,33 @@ The structures produced by the Decoder are in [types.go](types.go) and correspon
This package does not implement the entire GEDCOM specification, I'm still working on it. It's about 80% complete which is enough for about 99% of GEDCOM files. It has not been extensively tested with non-ASCII character sets nor with pathological cases such as the [GEDCOM 5.5 Torture Test Files](http://www.geditcom.com/gedcom.html).
+### Using the Encoder
+
+In addition to decoding GEDCOM files, this package also provides an Encoder for generating GEDCOM files from the structs in [types.go](types.go). You can create an encoder using the `NewEncoder` method, which writes to an `io.Writer`.
+
+To see an example of how to use the encoder, refer to [encoder_example.go](encoder_example.go). This example illustrates how to create individual and family records, populate them with data, and encode them into a valid GEDCOM file.
+
+You can run the example using the following command:
+
+```bash
+go run encoder_example.go
+```
+
## Installation
Simply run
- go get github.com/iand/gedcom
+Run the following in the directory containing your project's `go.mod` file:
+
+```bash
+go get github.com/iand/gedcom@latest
+```
-Documentation is at [http://godoc.org/github.com/iand/gedcom](http://godoc.org/github.com/iand/gedcom)
+Documentation is at [https://pkg.go.dev/github.com/iand/gedcom](https://pkg.go.dev/github.com/iand/gedcom)
## Authors
-* [Ian Davis](http://github.com/iand) -
+* [Ian Davis](http://github.com/iand)
## Contributors
diff --git a/encoder_example.go b/encoder_example.go
new file mode 100644
index 0000000..b057c6d
--- /dev/null
+++ b/encoder_example.go
@@ -0,0 +1,141 @@
+//go:build ignore
+
+// run this using go run encoder_example.go
+package main
+
+import (
+ "log"
+ "os"
+
+ "github.com/iand/gedcom"
+)
+
+func main() {
+ g := new(gedcom.Gedcom)
+
+ sub := &gedcom.SubmitterRecord{
+ Xref: "SUBM",
+ Name: "John Doe",
+ }
+
+ g.Submitter = append(g.Submitter, sub)
+
+ g.Header = &gedcom.Header{
+ SourceSystem: gedcom.SystemRecord{
+ Xref: "gedcom",
+ SourceName: "github.com/iand/gedcom",
+ },
+ Submitter: sub,
+ CharacterSet: "UTF-8",
+ Language: "English",
+ Version: "5.5.1",
+ Form: "LINEAGE-LINKED",
+ }
+
+ // Define the family record
+ family := &gedcom.FamilyRecord{
+ Xref: "F1",
+ }
+ // Add the family to the GEDCOM
+ g.Family = append(g.Family, family)
+
+ // Define the father individual record
+ father := &gedcom.IndividualRecord{
+ Xref: "I1",
+ Name: []*gedcom.NameRecord{
+ {
+ Name: "John /Doe/",
+ },
+ },
+ Sex: "M",
+ Event: []*gedcom.EventRecord{
+ {
+ Tag: "BIRT",
+ Date: "1 JAN 1950",
+ Place: gedcom.PlaceRecord{
+ Name: "London, England",
+ },
+ },
+ },
+ }
+ // Add the father to the GEDCOM
+ g.Individual = append(g.Individual, father)
+
+ // Add the father to the family
+ family.Husband = father
+
+ // Define the mother individual record
+ mother := &gedcom.IndividualRecord{
+ Xref: "I2",
+ Name: []*gedcom.NameRecord{
+ {
+ Name: "Jane /Smith/",
+ },
+ },
+ Sex: "F",
+ Event: []*gedcom.EventRecord{
+ {
+ Tag: "BIRT",
+ Date: "5 MAY 1952",
+ Place: gedcom.PlaceRecord{
+ Name: "Manchester, England",
+ },
+ },
+ },
+ }
+ // Add the mother to the GEDCOM
+ g.Individual = append(g.Individual, mother)
+
+ // Add the mother to the family
+ family.Wife = mother
+
+ // Create individual record for a child
+ child := &gedcom.IndividualRecord{
+ Xref: "I3",
+ Name: []*gedcom.NameRecord{
+ {
+ Name: "Michael /Doe/",
+ },
+ },
+ Sex: "M",
+ Event: []*gedcom.EventRecord{
+ {
+ Tag: "BIRT",
+ Date: "15 JUL 1980",
+ Place: gedcom.PlaceRecord{
+ Name: "London, England",
+ },
+ },
+ },
+ // Link child to the family
+ Parents: []*gedcom.FamilyLinkRecord{
+ {
+ Family: family,
+ Type: "CHIL",
+ },
+ },
+ }
+ // Add the child to the GEDCOM
+ g.Individual = append(g.Individual, child)
+
+ // Add the child to the family
+ family.Child = append(family.Child, child)
+
+ // Add an event to the family
+ family.Event = append(family.Event, &gedcom.EventRecord{
+ Tag: "MARR",
+ Date: "10 JUN 1975",
+ Place: gedcom.PlaceRecord{
+ Name: "London, England",
+ },
+ },
+ )
+
+ g.Trailer = &gedcom.Trailer{}
+
+ enc := gedcom.NewEncoder(os.Stdout)
+ if err := enc.Encode(g); err != nil {
+ log.Fatalf("failed to encode gedcom: %v", err)
+ return
+ }
+}
From 953acac16f0fdd85c729b5ecb9b5879cd329ba67 Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Wed, 28 Aug 2024 11:06:44 +0100
Subject: [PATCH 7/8] Remove obsolete check badge from readme
---
README.md | 3 +--
1 file changed, 1 insertion(+), 2 deletions(-)
diff --git a/README.md b/README.md
index ee0e14a..a2b1f28 100644
--- a/README.md
+++ b/README.md
@@ -1,8 +1,7 @@
# gedcom
-Go package to parse GEDCOM files.
+Go package to parse and produce GEDCOM files.
-[![Check Status](https://github.com/iand/gedcom/actions/workflows/check.yml/badge.svg?branch=master)](https://github.com/iand/gedcom/actions/workflows/check.yml)
[![Test Status](https://github.com/iand/gedcom/actions/workflows/test.yml/badge.svg?branch=master)](https://github.com/iand/gedcom/actions/workflows/test.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/iand/gedcom)](https://goreportcard.com/report/github.com/iand/gedcom)
[![go.dev reference](https://img.shields.io/badge/go.dev-reference-007d9c?logo=go&logoColor=white)](https://pkg.go.dev/github.com/iand/gedcom)
From 195ec37430810fa4321974a7fa2248d7179ee0f6 Mon Sep 17 00:00:00 2001
From: Ian Davis <18375+iand@users.noreply.github.com>
Date: Wed, 28 Aug 2024 11:10:40 +0100
Subject: [PATCH 8/8] Fix lint warnings
---
encoder.go | 18 +-----------------
1 file changed, 1 insertion(+), 17 deletions(-)
diff --git a/encoder.go b/encoder.go
index aabed1e..c902019 100644
--- a/encoder.go
+++ b/encoder.go
@@ -37,9 +37,7 @@ func (e *Encoder) Encode(g *Gedcom) error {
e.family(r)
}
- for _, r := range g.Media {
- e.media(0, r)
- }
+ e.mediaList(0, g.Media)
for _, r := range g.Repository {
e.repository(r)
@@ -350,17 +348,6 @@ func (e *Encoder) place(level int, r *PlaceRecord) {
e.citationList(level+1, r.Citation)
}
-func (e *Encoder) variantPlaceName(level int, r *VariantPlaceNameRecord) {
- if e.err != nil {
- return
- }
- if r == nil {
- return
- }
- e.tag(level, r.Name, r.Type)
- e.maybeTag(level+1, "TYPE", r.Type)
-}
-
func (e *Encoder) individual(r *IndividualRecord) {
if e.err != nil {
return
@@ -593,8 +580,6 @@ func (e *Encoder) name(level int, r *NameRecord) {
e.citationList(level+1, r.Citation)
e.noteList(level+1, r.Note)
e.userDefinedList(level+1, r.UserDefined)
-
- return
}
func (e *Encoder) change(level int, r *ChangeRecord) {
@@ -736,7 +721,6 @@ func (e *Encoder) userReference(level int, r *UserReferenceRecord) {
}
e.maybeTagWithText(level, "REFN", r.Number)
e.maybeTagWithText(level+1, "TYPE", r.Type)
- return
}
func (e *Encoder) individualRef(level int, tag string, r *IndividualRecord) {