private static Set<String> getMaleNames() {
    if (MALE_NAMES == null) {
      InputStream in = Utils.getMaleNames();
      try {
        MALE_NAMES = Utils.readStringsSet(in);
      } catch (Exception e) {
        throw new RuntimeException(e);
      }
    }

    return MALE_NAMES;
  }