Breaking change:

Changed the TLB scheme for Account data to reflect new functionality (hash value of the initial account code). Accounts updated recently cannot be deserialized with old software for this reason, update is mandatory. Please refer to updated TLB scheme below:

/// account_none$0 = Account;
/// account#1 stuff:AccountStuff = Account;
/// addr:MsgAddressInt storage_stat:StorageInfo
/// storage:AccountStorage = AccountStuff;
///
/// account_storage$_ last_trans_lt:uint64
/// balance:CurrencyCollection state:AccountState
/// init_code_hash:(Maybe uint256)
/// = AccountStorage;
///
/// account_uninit$00 = AccountState;
/// account_active$1 *:StateInit = AccountState;
/// account_frozen$01 state_hash:uint256 = AccountState;
///
/// acc_state_uninit$00 = AccountStatus;
/// acc_state_frozen$01 = AccountStatus;
/// acc_state_active$10 = AccountStatus;
/// acc_state_nonexist$11 = AccountStatus;
///
/// tick_tock$* tick:Boolean tock:Boolean = TickTock;
/// _ split_depth:(Maybe (## 5)) special:(Maybe TickTock)
/// code:(Maybe ^Cell) data:(Maybe ^Cell)
/// library:(Maybe ^Cell) = StateInit;