static List<String> lut = List.generate(256, (i){ return ( i < 16 ? '0' : '' ) + ( i ).toRadixString( 16 ); });