Future<List<double>> applyBlindScale( List<int> encodedValues, double blindScale) async { return encodedValues.map((e) => e / blindScale).toList(); }