Well this is an array index out of bound error, Therefore the number "381" is too high for either the array "anIntArray1494", "aByteArrayArray1491", "anIntArray1492", "anIntArray1495" or "anIntArray1493".
Soo you can either:
Change
toCode:method394(192, i + anIntArray1494[c] + 1, aByteArrayArray1491[c], anIntArray1492[c], i1 + anIntArray1495[c] + 1, anIntArray1493[c], 0);
Or you can do something like:Code:try { method394(192, i + anIntArray1494[c] + 1, aByteArrayArray1491[c], anIntArray1492[c], i1 + anIntArray1495[c] + 1, anIntArray1493[c], 0); } catch(IndexOutOfBoundsException e) { System.err.println("IndexOutOfBoundsException: " + e.getMessage()); }
Code:if(c >= anIntArray1494.length || c >= anIntArray1492.length || c >= anIntArray1495.length || c >= anIntArray1493.length || c >= aByteArrayArray1491.length) return; method394(192, i + anIntArray1494[c] + 1, aByteArrayArray1491[c], anIntArray1492[c], i1 + anIntArray1495[c] + 1, anIntArray1493[c], 0);


?
