sbool moduleSelector_sameList(LS a, LS b) { if (l(a) != l(b)) false; for i over a: if (!eq(firstIntAsString(a.get(i)), firstIntAsString(b.get(i)))) false; true; }