findEntryByID(id: EntryID): FormatAEntry {
        return this.getAllEntries().find((entry) => entry.id === id) || null;
    }