The file you upload is for sure not encrypted, maybe obfuscated? The first 3 bytes at offset 0x14 are normal, there are long sequences of same bytes and it may sound more like a compression (but I don't see the 2 sizes).
Ok so the data starts at 0x14 then you xor the first 4 bytes with 00 00 00 40 then you xor the rest of the file with FF FF FF 3F but you need to subtract 1 from this number every time so FF FF FF 3F FE FF FF 3F FD FF FF 3F FC FF FF 3F FB FF FF 3F FA FF FF 3F F9 FF FF 3F F8 FF FF 3F
encryption "incremental xor" 0x40000000 -1 math OFFSET = 0x14 get SIZE asize math SIZE - OFFSET get NAME filename log NAME OFFSET SIZE
Please note that in this case it's 32bit because the key is bigger than 0xff, otherwise is 8bit. I guess there is also an option for forcing the 32bit mode with smaller keys.