!7 p { for (AIConcept c : values(aiConceptsMap_cached())) pcall { if (c.pngFile.has()) { BufferedImage img = c.pngFile->getImage(); if (img != null) { S text = c.globalID + " - " + c.name + (nempty(c.comment) ? " / " + c.comment : ""); print("Uploading " + text); uploadToImageServerIfNotThere(img, text); } } } print("Done image upload."); }