!7 p-exp { long lastDate = 0; for (S s : mL("Telegram Bot Log")) pcall { Map map = safeUnstructureMap(s); S type = cast map.get('type); S text = cast map.get('text); long date = parseLocalDateWithMilliseconds(map.get('date)); print("Type: " + type + ", date diff: " + (date-lastDate) + ", text: " + quote(text)); lastDate = date; } }