this.format.getAllGroups().forEach((rawGroup) => {
            const id = this.format.getItemID(rawGroup);
            if (!this._groups.find((g) => g.id === id)) {
                this._groups.push(new Group(this, rawGroup));
            }