>>40
鍵はAssembly-CSharp.dll弄らないと取得できないな
複合してる部分はBgirl.Common.NetworkBundleManager.RequestBundleImpl()内の
byte[] decryptedData = Cipher.DecryptRJ128ByteArray(bundleInfo.CryptKey, Cipher.DEFAULT_ASSET_BUNDLE_IV_128, textAsset.bytes);

decryptedBundle = acr.assetBundle;の次の行に以下のコードを追加すればデータロード時に一緒に複合ABが保存される。
System.IO.File.WriteAllBytes(Application.persistentDataPath+"/"+bundleInfo.CachePath+".decrypted", decryptedBundle);

一応鍵は以下の部分から手に入る
bundleInfo.CryptKeyはBundleInfoModel.Paramのck。Bgirl.Common.AjaxBundleController.Background.Actionにコード追加で取得可
Cipher.DEFAULT_ASSET_BUNDLE_IV_128はCipher.Cipher()にコード追加で取得可