static Map<S, Int> conceptsCountByDateAndHour(S dbID) {
  new TreeMap<S, Int> map;
  for (File f : conceptBackupFiles(dbID)) pcall {
    map.put(dropPrefix("concepts.structure.gz.backup", f.getName()), l(safeUnstructureGZFile(f)));
  }
  ret map;
}