this.format.getAllEntries().forEach((rawEntry) => {
            const id = this.format.getItemID(rawEntry);
            if (!this._entries.find((e) => e.id === id)) {
                this._entries.push(new Entry(this, rawEntry));
            }