···389389 let oldEntityID = child.getAttribute("data-entityid") as string;
390390 let factsData = child.getAttribute("data-facts");
391391 if (factsData) {
392392- let facts = JSON.parse(atob(factsData)) as Fact<any>[];
392392+ let facts = JSON.parse(factsData) as Fact<any>[];
393393394394 let oldEntityIDToNewID = {} as { [k: string]: string };
395395 let oldEntities = facts.reduce((acc, f) => {