export const statisticsByName: { [key: string]: Statistic } = statistics.reduce(
  (acc, c) => {
    acc[c.name] = c
    return acc
  },