First an friendly request: Please use the CODE-Tag for code and code output, that makes it just better readable.
The biggest problem I see is, that you are using a wrong parameter
Ifuse instead
Lfuse!
There are three fuses, you need to care about. A HIGH and a LOW Fuse and the EXTENDED Fuse.
You are now burning the HFUSE and the EFUSE, but with a messed up LFUSE, so your clock is too slow!
You should follow the recipe, not to disable RESET in your first shots, as with that you render your attiny unusable, if something is not correct, as the LFUSE in your example.
With disabling reset in the HFUSE, you need now HV-Programmers to change the fuses, as ISP-programmers need reset!
So this settings from the linked tutorial:
attiny85-RESET-enabled.bootloader.low_fuses=0xf1
attiny85-RESET-enabled.bootloader.high_fuses=0xdf
attiny85-RESET-enabled.bootloader.extended_fuses=0xfe
are the best fuses for this kind of try, as you can repeat it how often you need.
A good fuse-calculator is here:
http://www.engbedded.com/fusecalcGood luck for the next try!