101    public function mapSlab(
string $singleId, 
string $doubleId, \Closure $getBlock) : void{
 
  102        $this->map($singleId, fn(Reader $in) => Helper::decodeSingleSlab($getBlock($in), $in));
 
  103        $this->map($doubleId, fn(Reader $in) => Helper::decodeDoubleSlab($getBlock($in), $in));
 
 
  118    public function mapLog(
string $unstrippedId, 
string $strippedId, \Closure $getBlock) : void{
 
  119        $this->map($unstrippedId, fn(Reader $in) => Helper::decodeLog($getBlock(), false, $in));
 
  120        $this->map($strippedId, fn(Reader $in) => Helper::decodeLog($getBlock(), 
true, $in));