static void ai_downloadRelations(S... relations) { for (S rel : relations) { Map map = cast loadJSONPage("http://smartbot.botcompany.de/json/relations/" + urlencode(rel)); if (map.containsKey("loading")) fail("Smart Bot is loading"); L> results = (L) map.get("results"); for (L t : unnull(results)) post(listToTriple(t)); } }