findGroupByID(id: GroupID): FormatAGroup {
        return this.getAllGroups().find((group) => group.id === id) || null;
    }