convertCSV = d => ({
...d,
calendar_year: parseInt(d.calendar_year),
filed_year: parseInt(d.filed_year),
incident_year: parseInt(d.incident_year),
amount_awarded: parseFloat(d.amount_awarded),
other_expenses: parseFloat(d.other_expenses),
total_incurred: parseFloat(d.total_incurred)
})