Monte Carlo problem, saving at different time points with 'saveat' from DifferentialEquations pkg

Is it possible to save at different time points for each ODE problem in a Monte Carlo study?

DifferentialEquations.solve(MCprob, saveat=[10.0,20.0])

works fine, but saves each ODE problem at the same time points.

I am aware of the fact, that I can extract the solutions at the given time points for each ODE problem individually after solving.

Yeah, our API doesn’t give you a nice way to do this.