static LPair parseColonPropertyPairs(S text) { new LPair l; for (S s : tlft(text)) { int i = indexOf(s, ':'); if (i > 0) addPair(l, trimSubstring(s, 0, i), trimSubstring(s, i+1)); } ret l; }