/*static class Presence { long room; S name; int n; }*/ static L getWebChatPresences(long room) { Map data = jsonDecodeMap(loadPageSilently("tinybrain.de:8080/tb-int/groupchat.json.presences.php?room=" + room)); L> lines = (L) data.get("presences"); new L names; for (Map m : lines) names.add(m.get("name")); ret names; }