static MultiSet getSentencesFromWebBotLog(S botID) { S html = loadPage("http://ai1.lol/" + psI(botID) + "/raw/logs"); new MultiSet sentences; for (L li : html_contentsOfLIs(html)) { S dialogID = trim(first(li)); for (L li2 : html_contentsOfLIs(li)) { S msg = htmldecode(join(li2)); sentences.add(trim(dropPrefix("<", dropPrefix(">", msg)))); } } ret sentences; }