diff --git a/contracts/FlowServiceAccount.cdc b/contracts/FlowServiceAccount.cdc index 32a4e38a5..0e8befa82 100644 --- a/contracts/FlowServiceAccount.cdc +++ b/contracts/FlowServiceAccount.cdc @@ -45,10 +45,8 @@ access(all) contract FlowServiceAccount { /// Returns 0 if the account has no default balance access(all) fun defaultTokenBalance(_ acct: &Account): UFix64 { var balance = 0.0 - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + balance = balanceRef.getBalance() } return balance diff --git a/contracts/FlowStakingCollection.cdc b/contracts/FlowStakingCollection.cdc index ec97510fe..df4a1ca60 100644 --- a/contracts/FlowStakingCollection.cdc +++ b/contracts/FlowStakingCollection.cdc @@ -1039,7 +1039,7 @@ access(all) contract FlowStakingCollection { access(all) fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID) @@ -1049,7 +1049,7 @@ access(all) contract FlowStakingCollection { access(all) fun getUnlockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.unlockedTokensUsed @@ -1059,7 +1059,7 @@ access(all) contract FlowStakingCollection { access(all) fun getLockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.lockedTokensUsed @@ -1069,7 +1069,7 @@ access(all) contract FlowStakingCollection { access(all) fun getNodeIDs(address: Address): [String] { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.getNodeIDs() @@ -1079,7 +1079,7 @@ access(all) contract FlowStakingCollection { access(all) fun getDelegatorIDs(address: Address): [DelegatorIDs] { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.getDelegatorIDs() @@ -1089,7 +1089,7 @@ access(all) contract FlowStakingCollection { access(all) fun getAllNodeInfo(address: Address): [FlowIDTableStaking.NodeInfo] { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.getAllNodeInfo() @@ -1099,7 +1099,7 @@ access(all) contract FlowStakingCollection { access(all) fun getAllDelegatorInfo(address: Address): [FlowIDTableStaking.DelegatorInfo] { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.getAllDelegatorInfo() @@ -1109,7 +1109,7 @@ access(all) contract FlowStakingCollection { access(all) fun getMachineAccounts(address: Address): {String: MachineAccountInfo} { let account = getAccount(address) - let stakingCollectionRef = account.capabilities.get<&StakingCollection>(self.StakingCollectionPublicPath)!.borrow() + let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") return stakingCollectionRef.getMachineAccounts() diff --git a/contracts/FlowStorageFees.cdc b/contracts/FlowStorageFees.cdc index 957732039..b0c78dac7 100644 --- a/contracts/FlowStorageFees.cdc +++ b/contracts/FlowStorageFees.cdc @@ -67,10 +67,8 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + balance = balanceRef.getBalance() } return self.accountBalanceToAccountStorageCapacity(balance) @@ -96,14 +94,12 @@ access(all) contract FlowStorageFees { var balance = 0.0 let acct = getAccount(accountAddress) - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - if accountAddress == payer { - // if the account is the payer, deduct the maximum possible transaction fees from the balance - balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) - } else { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + if accountAddress == payer { + // if the account is the payer, deduct the maximum possible transaction fees from the balance + balance = balanceRef.getBalance().saturatingSubtract(maxTxFees) + } else { + balance = balanceRef.getBalance() } } @@ -160,10 +156,8 @@ access(all) contract FlowStorageFees { let acct = getAccount(accountAddress) var balance = 0.0 - if let balanceCap = acct.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance) { - if let balanceRef = balanceCap.borrow() { - balance = balanceRef.getBalance() - } + if let balanceRef = acct.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { + balance = balanceRef.getBalance() } // get how much should be reserved for storage diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 21491621f..3e86a09a7 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -3,9 +3,9 @@ // FlowContractAudits.cdc (9.298kB) // FlowFees.cdc (9.71kB) // FlowIDTableStaking.cdc (99.285kB) -// FlowServiceAccount.cdc (8.517kB) -// FlowStakingCollection.cdc (56.024kB) -// FlowStorageFees.cdc (9.385kB) +// FlowServiceAccount.cdc (8.448kB) +// FlowStakingCollection.cdc (55.968kB) +// FlowStorageFees.cdc (9.15kB) // FlowToken.cdc (13.108kB) // LockedTokens.cdc (30.808kB) // NodeVersionBeacon.cdc (22.919kB) @@ -143,7 +143,7 @@ func flowidtablestakingCdc() (*asset, error) { return a, nil } -var _flowserviceaccountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\xcf\x6f\xdb\xb8\x12\xbe\xe7\xaf\x98\xe6\xb0\x4f\x06\x12\x27\x87\xc5\x1e\x8c\xb8\xfb\xdc\x34\x29\x02\xec\x7b\x0b\x24\xed\xf6\xb0\x58\x74\x69\x69\x64\x11\x95\x49\x83\xa4\xec\x78\x83\xfe\xef\x0f\xfc\x25\x91\xa2\xe4\x38\x6d\xdf\x6e\x2f\x75\x24\xf2\x9b\x99\x6f\x66\xa8\x8f\x24\x5d\x6f\xb8\x50\x70\xdb\xb0\x15\x5d\xd6\xf8\x9e\x7f\x46\x06\xa5\xe0\x6b\x38\x8d\x9e\x9d\x9e\xf8\x91\x35\xdf\x45\xa3\xfc\xdf\xd1\x88\x5b\x44\x69\x07\x5c\x3e\xde\xfe\xf2\xeb\xc7\xdb\x9b\x9b\x87\xc5\xdb\xb7\xf7\x37\x0f\x0f\xe1\xb0\x07\xc5\x05\x59\x61\x7f\xf4\xc3\xfb\x5f\xef\x17\xef\x6e\xc2\x49\x27\x24\xcf\x51\xca\x8c\xd4\xf5\x04\x72\xce\x94\x20\xb9\xc3\x40\xb1\xa5\x39\x2e\xf2\x9c\x37\x4c\xc1\xd3\xc9\x09\x00\x40\x38\x1c\xb7\xc8\x14\xbc\x17\x84\x49\x92\x2b\xca\xd9\x2d\xe2\x87\x4d\x41\x14\x16\x19\x43\xed\xeb\x0c\x3e\xdc\xd2\xc7\x9f\x7e\x9c\x8c\x4d\x76\xe8\xd7\x02\xc9\xb7\x03\x70\xb1\x28\x0a\x2c\x32\x12\x3d\x9b\xc1\xa2\x28\x04\x4a\x79\x24\xc6\x3d\xae\xf9\xf6\x2b\x50\xee\x64\x2f\x98\x7b\x94\x4a\xd0\x5c\x61\xe1\x63\xa2\xb2\x7b\x36\x83\x37\x9c\xd7\x0e\xed\xe2\xe2\x02\x16\x50\xd2\x47\x2c\xce\x05\x51\x08\x25\x22\xe4\x15\x11\x2b\x2c\x40\x71\xc0\x47\xcc\x1b\x85\x40\x40\x75\x6c\x27\x7e\x6c\x89\x08\xdf\x07\xf4\x1d\x67\x25\xd7\x8e\x6b\x23\x0c\x77\xe0\xc2\x1f\x34\x42\x92\xac\xa5\x86\xde\x57\x08\x35\x95\x0a\x78\xe9\xc7\x03\xb1\x14\xa2\x04\x55\x11\x05\x15\xd9\x22\x6c\x50\xac\xa9\x94\x94\xb3\xd0\x05\x3b\x41\x86\xd6\x7d\x71\xa6\x2e\x70\x21\x67\xf0\xe4\xf2\x63\x79\xfd\xd2\x39\x72\xc7\xa8\xa2\xa4\xa6\x7f\x21\x10\xd6\xba\xb2\xa3\xaa\x02\x12\x74\xdd\x6f\xa4\xa9\x15\x10\x56\xc0\xa6\x59\xd6\x54\x56\x90\x93\x0d\x59\xd2\x9a\x2a\x8a\x72\x9a\xf0\x50\x36\x0c\x28\xa3\xea\x2d\x96\x7a\xa6\x01\xc9\x3e\xe9\x21\x6a\x06\xa4\x51\x55\xf6\x40\xb6\xf8\x1b\xa9\x1b\x3c\x83\xeb\x00\x6a\x02\x3f\xb8\x42\x99\xc0\x93\x81\xb5\x9e\xc2\x75\x48\xff\x90\x63\x52\xf3\x45\x15\x50\x06\xd2\x36\x78\x3b\x5d\x9b\x9d\xba\x87\x53\x3d\x2e\xbb\x3a\x6f\x21\xa6\x96\xd5\x9b\xf5\x46\xed\x0d\x5a\x36\x39\x03\xc5\x67\x70\xe1\x66\x5c\x94\x7e\xa8\x79\xed\x8a\xb2\xef\x96\xe1\x25\xef\x68\xd9\xeb\x84\xa9\x0a\x9d\x87\x26\xa5\x9c\xd5\x7b\xc0\xc7\x0d\x97\x28\x43\x10\x3d\xac\xc0\x0d\x97\x54\x69\xe6\x4c\x7d\x82\xaa\x04\x6f\x56\x95\x79\x79\x8f\x39\xd2\x2d\x0a\xa0\x4c\xa1\x28\x49\xde\xc5\x56\xa3\x02\xe1\x5e\x5f\x77\xc6\xe7\x36\xe8\x28\x4b\x9e\x01\x2a\x65\x83\x57\x3f\x74\x0c\x18\x17\x5f\x67\xa3\x01\x47\x3c\x46\x90\xae\x1a\xb2\xd4\x83\x33\x20\x6a\x06\x17\x96\x96\x0e\xd1\x47\xf2\x7f\x62\x71\x49\x6a\xc2\x72\x84\x92\x62\x5d\x44\x14\xbe\x71\x6f\x86\x19\x74\xf3\xfe\x39\x02\x13\x07\x46\xf8\x73\x61\x58\xc8\xa0\x8f\xdf\xa1\x72\x65\x54\x5a\xa6\x4c\x77\x78\x3a\x38\x0b\xba\xdb\xcf\x69\xe7\xde\xa3\x6a\x04\x93\x70\x09\xb4\x34\x20\x7e\x19\xa8\x88\x04\xc6\x5b\x4c\x87\x36\xd8\xec\x45\xd0\xe8\xce\xc7\xb6\xdf\xdb\x8e\xf6\xeb\x60\xd0\xd9\x7a\xb5\xf2\x5e\xce\xe1\x72\x7a\xd9\xbe\xa1\x65\x2f\x33\x83\x29\x59\xa1\x1a\x4a\xc4\x18\x6d\x81\xe5\xd4\xc6\x3d\x96\x30\x0f\x0c\x4e\x97\x5c\x08\xbe\xcb\xfa\xb3\xf4\xbf\xce\xe7\x6e\xb2\x76\xc6\xc7\x3e\x89\x66\x7c\x39\xe9\x7e\xb5\x3f\x85\xa1\x3d\x62\x35\x48\xa8\x4d\x0a\x10\x10\x58\xa2\x40\x6d\xcb\xb5\x42\x9c\xe2\xad\xf9\x9d\x26\xf8\x50\x82\xec\x32\x17\x2d\xc7\x6f\x4c\xa8\x66\x41\x9e\x84\x09\x33\x2f\x23\x4d\x36\xfd\x48\x55\x55\x08\xb2\x23\xcb\x5a\x8f\xed\x91\x1f\x70\xe5\x02\x8c\x56\x5f\x4b\xe9\xd5\x8b\x61\x5f\x67\x5a\xa9\x1d\x58\x94\x43\xba\x7f\xfe\x19\x36\x84\xd1\x3c\x3b\xfd\xc0\x34\x9c\x66\xce\x1a\x3e\x8a\xcd\xd3\xa4\xbb\x3e\xd2\xba\x86\xa5\x59\xa4\x05\xe6\x5a\xad\x98\x4f\x4e\x4e\x98\x7d\x5a\xa3\x79\x54\x2a\x14\x06\x54\xee\xa8\xca\x2b\xae\x57\x6c\xc5\x5b\x69\x3a\x2d\xb0\x68\x72\x15\x4b\xc2\xa4\x1b\xaf\x49\x5d\x63\x01\xbb\x0a\x59\xac\x68\x80\x4a\x90\xcd\x72\x4d\x95\xb2\x8a\xc4\xc2\x19\x83\x65\x07\x64\x25\xad\x7e\xb8\x68\x54\xe5\x05\xaa\x59\x39\xbb\xd9\x74\xac\x48\x52\x07\x8f\xa9\x93\x20\xe9\xb4\x04\x89\x75\x39\x8d\xa5\x16\xcc\xe7\xae\xf7\xb3\xcb\x7e\x3b\xd9\x32\x19\xea\x10\xdd\x9b\xaa\xcd\x31\xcc\x2d\x72\x5a\xc9\xda\xbf\x49\xb4\xa4\x94\x88\x8b\xb5\x09\x7c\x3e\xe4\xce\x73\xde\xbe\x0e\xcc\x46\x5d\xdd\x73\x3d\x34\x33\x32\xe3\x24\x5d\x03\xa2\xf8\x4a\x44\x1b\xdd\xd5\x79\x08\xb1\x73\xdd\x90\x11\x83\x3f\xeb\x4c\x75\x88\x41\x5d\x19\xed\xe0\x5a\xe4\xea\xdc\x63\x26\x75\x7c\x0e\x6f\x4d\x86\x65\xb4\xcc\xe7\x4e\xa9\x1a\xc5\x6b\xaa\x87\xc0\x86\xec\xb1\xd5\x91\xd3\x00\x40\x0b\x46\x99\x76\x4e\x3a\xc4\xa3\xbb\x86\x35\xdf\xf4\x9c\xaa\xfd\xb0\x58\x94\xa8\x9a\xcd\x7f\x71\xe7\x2a\x4a\x6f\x70\xdc\xcf\x54\x2f\x06\x35\x38\x26\x1e\xcf\x6c\x00\x2f\x28\xda\x57\xe9\xae\x6e\x4a\x65\xbc\xf9\xc9\x0c\xe8\xd4\x09\xf5\x7e\x31\xb8\x25\xc7\x77\x1c\xe3\xca\x58\xe7\x82\xfe\x15\xef\x20\x9c\x7c\x3f\x0d\x6b\xe3\x24\x29\xc9\x74\x1b\x01\x57\xfd\xed\xeb\x74\x4d\x19\x5d\x37\x6b\xf7\xe8\x1e\x25\x8a\xad\xcd\xe5\x41\xdf\xc2\x8c\x4b\xcb\x3d\x50\x96\x73\x21\x30\x57\xf5\x3e\xf6\xec\xa5\xdd\x68\x48\x9a\x7c\x55\x91\x8f\x04\x1e\x83\xc9\x36\xfe\x16\x33\xf3\x06\x52\xc8\xa3\x19\x9b\x00\x91\xaf\xe0\xdf\xbd\xef\xce\x8b\xba\x2d\x1a\xdb\xaf\xa5\xfe\x6e\xa8\xab\xf0\x49\xcc\xb1\xf9\x06\x59\x2d\x32\x80\x93\xf2\x3d\x08\xe4\x41\x12\x6f\x7b\xec\x25\x4b\x84\x17\x83\x4a\x34\xe8\xf5\xe0\x8a\x6e\xf5\xc7\xc8\x96\xbd\xfe\x0c\x99\x6d\xa9\xff\x0c\xf5\xca\xfa\x0c\x4a\x52\x4b\x04\xae\x2a\x14\x3b\x2a\x87\xf5\x62\xd2\x5a\x9f\x3c\x7e\x77\x96\x60\x37\xab\xf1\x36\xf0\xae\x4c\x97\x2d\x2a\x4d\xb3\x89\xf6\xf4\xe0\x4c\x7b\xad\x15\xd1\x9e\x33\x34\x5f\x69\xef\x63\xac\x91\x7c\xeb\x9b\xb2\xa3\xe3\x27\x14\xc9\xba\xef\x94\x8d\xe6\x68\x60\x7d\x77\x6f\x93\x62\xe6\x42\xfe\xee\x82\xfc\x43\x6b\x14\xc3\x53\x9f\xff\xbb\x8e\x7a\x7f\xd0\xc0\x94\x34\x41\x98\x8d\xcf\x12\x5d\x30\x05\x2c\xf7\x40\x36\x1b\xc1\xb7\x5a\x7b\x38\xf6\xe1\xcf\x21\xb3\x7f\x1e\x91\x83\x5e\xc4\x09\xf9\x03\x51\xb5\xaa\x2e\xe7\x9b\xfd\x95\x1e\x9f\xc8\xb4\x03\x36\x26\x23\x1c\x18\xdd\xa2\x57\x4d\x9b\x5d\x81\x92\x37\xc2\x0a\xb6\xbc\x22\x6c\x85\x56\xf1\xe8\x1d\x9e\x04\x6e\x2b\xd4\x1f\x7f\x24\x65\x4c\xea\x3a\x38\x58\x39\x54\xb7\x83\x14\xad\x50\xc5\x75\x2a\x35\x33\xbf\x2f\x7c\x16\x0f\xd2\xe3\xa7\x4c\x3f\xe3\x5e\xf6\x62\x7c\x87\x4a\xc2\x8d\x39\xb8\xd2\x41\xde\x94\x25\x17\x0a\x3e\x22\x5d\x55\x4a\x76\x12\x4e\xda\xe6\xf7\x4e\xfe\x4b\xb6\x9f\xd3\x31\x77\x5b\x4c\x0b\xe9\x10\xb5\xd7\x4f\x1f\xee\x98\xfa\xe9\xc7\x19\xd8\xff\xbf\xbc\x24\xb7\xfd\xb9\x49\x9e\x71\xd0\xec\x98\x2c\x6f\x47\x03\xda\xc0\x77\x2e\x70\xdd\xc7\x12\x15\xec\x31\x51\xe1\x7d\xca\xfe\x83\x6b\x2e\xf6\xdf\x95\x32\x0b\xf9\xb7\x53\x16\x99\x7d\x9e\xb2\xb5\x0d\xfc\xeb\x29\xfb\x85\xae\xa9\x3a\x82\xb0\x23\xf9\x32\x70\x9a\x2d\x1b\xe8\x4b\x38\xb2\x33\x9e\x63\xc6\x18\x38\x9a\x97\xda\x44\x77\x80\x95\x6f\x5f\x60\x42\x4e\xda\xd9\x8b\x42\x4b\x0b\xa9\x84\xee\x79\x7f\x21\xe0\x2d\x3e\xa0\x13\xcd\xe1\x7e\xae\xc4\xe8\x88\xb2\xaf\x87\x93\x6d\x58\xef\xd0\x3f\x3d\xcb\xb0\x03\xe0\xd5\xa0\x70\xe8\x6d\x71\xd2\x23\x0d\xd4\xbc\x1d\xbe\xaf\xb0\xff\x8f\x9d\x6d\xc0\xb0\xf2\xe9\xef\x04\x1d\xca\x90\xc4\x8c\xa8\x1a\xda\x9e\x1c\xe2\x2b\xbd\x2d\xf9\x66\xce\x06\x34\xf8\x08\x6f\xcf\x5f\xd5\x7c\x15\x77\x03\x0e\x3c\xc7\xdf\xa2\x28\x64\x78\x96\xef\x65\x1b\xb1\x4f\xbb\x1d\x49\xc4\x2f\x17\xa3\xd4\x92\xa2\x48\xb5\xda\xc8\xf5\x4f\xca\xef\x33\x41\x19\x4d\x14\xfd\xfd\x07\xcc\xe7\xc0\x68\x7d\x0c\xd3\x63\x77\x5a\xf1\xdf\xdf\xc0\xf9\xa0\x7b\x7d\xdd\x17\xd1\x6f\x2f\xc8\xbe\x6f\x06\x84\xc1\xfc\x7b\x93\xf0\xea\x05\x49\x18\xbb\x14\xfc\x9e\x69\x98\x5a\x12\xb2\xcf\xb8\x1f\x07\x0e\x72\x31\xb4\x42\x1c\xb8\x84\xcc\x3e\x01\x9a\xb3\x42\x7f\xf5\xd8\x8b\x5c\x6f\xcc\x36\x44\x55\x30\x3f\x4a\xdb\x26\x73\x79\x5d\x98\xf3\x87\xe1\x4d\x5d\xff\xe3\x58\x73\x52\x44\x7a\x5a\x9b\x9e\x1c\xc9\x58\x74\xd3\xe5\x50\x5c\x6c\xf6\x62\x2b\x05\xa3\xa5\x8f\x5e\xe7\xbd\xf5\x75\x24\xf9\x2f\xbe\xcb\x75\xd8\xe3\x67\xe2\x41\xee\xf4\x3e\x39\xda\x6f\x0d\x9e\x26\x46\x37\x05\x63\xc7\x25\x76\xd4\xf8\x30\x2e\x24\xcc\xe1\xa9\x77\xc4\x41\xf4\x77\x1c\xae\xce\xfd\xfe\x20\xfa\xae\x07\xe7\x79\x66\xdc\x34\x5d\x1c\x23\xb5\x43\xa2\x6b\xf1\xbe\x17\xfd\x3b\x49\x03\x39\x70\xf9\xe8\xf3\xac\x5f\x7b\x31\xf3\xe5\xe4\x7f\x01\x00\x00\xff\xff\x89\x7a\xd6\xeb\x45\x21\x00\x00" +var _flowserviceaccountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\xdf\x6f\xdb\xb6\x16\x7e\xef\x5f\x71\x9a\x87\x5d\x19\x48\x9c\x3c\x0c\x7b\x30\xe2\xee\xba\x69\x52\x04\xd8\xbd\x03\x92\x76\x7d\x18\x86\x8e\x96\x8e\x2c\xa2\x32\x69\x90\x94\x1d\x2f\xc8\xff\x7e\xc1\x5f\x12\x29\x4a\x8e\xd3\xf6\x6e\x79\x89\x25\x91\x1f\xcf\xf9\xce\x39\xe4\x47\x92\xae\x37\x5c\x28\xb8\x69\xd8\x8a\x2e\x6b\xfc\xc0\xbf\x20\x83\x52\xf0\x35\x9c\x44\xef\x4e\x5e\xf9\x96\x35\xdf\x45\xad\xfc\x73\xd4\xe2\x06\x51\xda\x06\x17\x0f\x37\xbf\xfc\xfa\xe9\xe6\xfa\xfa\x7e\xf1\xee\xdd\xdd\xf5\xfd\x7d\xd8\xec\x5e\x71\x41\x56\xd8\x6f\x7d\xff\xe1\xd7\xbb\xc5\xfb\xeb\xb0\xd3\x2b\x92\xe7\x28\x65\x46\xea\x7a\x02\x39\x67\x4a\x90\xdc\x61\xa0\xd8\xd2\x1c\x17\x79\xce\x1b\xa6\xe0\xf1\xd5\x2b\x00\x80\xb0\x39\x6e\x91\x29\xf8\x20\x08\x93\x24\x57\x94\xb3\x1b\xc4\x8f\x9b\x82\x28\x2c\x32\x86\xda\xd6\x19\x7c\xbc\xa1\x0f\x3f\xfd\x38\x19\xeb\xec\xd0\xaf\x04\x92\x6f\x07\xe0\x62\x51\x14\x58\x64\x24\x7a\x37\x83\x45\x51\x08\x94\xf2\x48\x8c\x3b\x5c\xf3\xed\x57\xa0\xdc\xca\x9e\x33\x77\x28\x95\xa0\xb9\xc2\xc2\xfb\x44\x65\xf7\x6e\x06\x6f\x39\xaf\x1d\xda\xf9\xf9\x39\x2c\xa0\xa4\x0f\x58\x9c\x09\xa2\x10\x4a\x44\xc8\x2b\x22\x56\x58\x80\xe2\x80\x0f\x98\x37\x0a\x81\x80\xea\xd8\x4e\xec\xd8\x12\x11\x7e\x0f\xe8\x3b\x6e\x94\x5c\x1b\xae\x07\x61\xb8\x03\xe7\xfe\xe0\x20\x24\x89\x5a\x3a\xd0\x87\x0a\xa1\xa6\x52\x01\x2f\x7d\x7b\x20\x96\x42\x94\xa0\x2a\xa2\xa0\x22\x5b\x84\x0d\x8a\x35\x95\x92\x72\x16\x9a\x60\x3b\xc8\x70\x74\x9f\x9c\xa9\x09\x5c\xc8\x19\x3c\xba\xf8\x58\x5e\x9f\x3a\x43\x6e\x19\x55\x94\xd4\xf4\x2f\x04\xc2\x5a\x53\x76\x54\x55\x40\x82\xaa\xfb\x8d\x34\xb5\x02\xc2\x0a\xd8\x34\xcb\x9a\xca\x0a\x72\xb2\x21\x4b\x5a\x53\x45\x51\x4e\x13\x1e\xca\x86\x01\x65\x54\xbd\xc3\x52\xf7\x34\x20\xd9\x67\xdd\x44\xcd\x80\x34\xaa\xca\xee\xc9\x16\x7f\x23\x75\x83\xa7\x70\x15\x40\x4d\xe0\x07\x97\x28\x13\x78\x34\xb0\xd6\x52\xb8\x0a\xe9\x1f\x32\x4c\x6a\xbe\xa8\x02\xca\x40\xda\x02\x6f\xbb\xeb\x61\xa7\xee\xe5\x54\xb7\xcb\x2e\xcf\x5a\x88\xa9\x65\xf5\x7a\xbd\x51\x7b\x83\x96\x4d\x4e\x41\xf1\x19\x9c\xbb\x1e\xe7\xa5\x6f\x6a\x3e\xbb\xa4\xec\x9b\x65\x78\xc9\x3b\x5a\xf6\x3a\x60\xaa\x42\x67\xa1\x09\x29\x67\xf5\x1e\xf0\x61\xc3\x25\xca\x10\x44\x37\x2b\x70\xc3\x25\x55\x9a\x39\x93\x9f\xa0\x2a\xc1\x9b\x55\x65\x3e\xde\x61\x8e\x74\x8b\x02\x28\x53\x28\x4a\x92\x77\xbe\xd5\xa8\x40\xb8\xcf\x57\xdd\xe0\x73\xeb\x74\x14\x25\xcf\x00\x95\xb2\xc1\xcb\x1f\x3a\x06\x8c\x89\x6f\xb2\x51\x87\x23\x1e\x23\x48\x97\x0d\x59\x6a\xc1\x29\x10\x35\x83\x73\x4b\x4b\x87\xe8\x3d\xf9\x3f\xb1\xb8\x24\x35\x61\x39\x42\x49\xb1\x2e\x22\x0a\xdf\xba\x2f\xc3\x0c\xba\x7e\xff\x1c\x81\x89\x01\x23\xfc\x39\x37\x2c\x64\x50\xc7\xef\x51\xb9\x34\x2a\x2d\x53\xa6\x3a\x3c\x1d\x9c\x05\xd5\xed\xfb\xb4\x7d\xef\x50\x35\x82\x49\xb8\x00\x5a\x1a\x10\x3f\x0d\x54\x44\x02\xe3\x2d\xa6\x43\x1b\x2c\xf6\x22\x28\x74\x67\x63\x5b\xef\x6d\x45\xfb\x79\x30\xa8\x6c\x3d\x5b\x79\x2b\xe7\x70\x31\xbd\x68\xbf\xd0\x32\x8c\xcc\x1d\x96\x83\x21\x59\x72\x21\xf8\x6e\x28\x16\x63\xcc\x05\x83\xeb\xbf\x6e\xf0\x6e\xa4\xe9\x0a\x95\x77\xa2\x0b\xde\x53\x97\xb2\xc2\x30\x16\x11\x12\xc4\xc2\xf2\x09\x04\x04\x96\x28\x50\xa3\xbb\x2c\x8e\xa3\xb3\x35\xbf\xd3\xd8\x1c\xe2\xd6\xce\x50\xd1\x4c\xfa\xd6\x50\x60\xe6\xd2\x49\xc8\xb5\xf9\x18\xc9\xa9\xe9\x27\xaa\xaa\x42\x90\x1d\x59\xd6\xba\x6d\x8f\xb4\x80\x19\xe7\x60\x34\x71\x3a\xaa\x5f\x0c\xfb\x26\xd3\x22\xeb\xc0\x7c\x1a\x86\xe3\xe7\x9f\x61\x43\x18\xcd\xb3\x93\x8f\x4c\xc3\x69\xe6\xec\xc0\x47\xb1\x79\x92\x14\xc6\x27\x5a\xd7\xb0\x34\xf3\xab\xc0\x5c\x0b\x0d\xb3\x5a\xe4\x84\xd9\xb7\x35\x9a\x57\xa5\x42\x61\x40\xe5\x8e\xaa\xbc\xe2\x7a\xb2\x55\xbc\x55\x95\xd3\x02\x8b\x26\x57\xb1\x9a\x4b\x0a\xe9\x8a\xd4\x35\x16\xb0\xab\x90\xc5\x62\x04\xa8\x04\xd9\x2c\xd7\x54\x29\x2b\x26\x2c\x9c\x19\xb0\xec\x80\xac\x1a\xd5\x2f\x17\x8d\xaa\xbc\xb6\x34\x93\x5e\xd7\x9b\x8e\x25\x49\x6a\xe0\x31\x79\x12\x04\x9d\x96\x20\xb1\x2e\xa7\xb1\x4a\x82\xf9\xdc\x95\x6d\x76\xd1\x2f\x1e\x9b\x26\x43\x15\xa2\x4b\x57\xb5\x31\x86\xb9\x45\x4e\x33\x59\xdb\x37\x89\x66\x83\x12\x71\xb1\x36\x8e\xcf\x87\xcc\x79\xce\xda\x37\xc1\xb0\x51\x1d\xf7\x4c\x0f\x87\x19\xe9\x11\xf8\xe5\x7f\x45\xfe\x95\x88\xd6\xbb\xcb\xb3\x10\x62\xe7\xaa\x21\x23\x06\x7f\xd6\x0d\xd5\x21\x06\x79\x65\x96\x7d\x57\x22\x97\x67\x1e\x33\xc9\xe3\x33\x78\x67\x22\x2c\xa3\x19\x3a\x77\x22\xd3\x88\x55\x93\x3d\x04\x36\x64\x8f\xad\x04\x9c\x06\x00\x5a\xeb\xc9\xb4\x72\xd2\x26\x1e\xdd\x15\xac\x59\x8e\x73\xaa\xf6\xc3\x3a\x4f\xa2\x6a\x36\xff\xc5\x9d\xcb\x28\xbd\x37\x71\x3f\x53\xa9\x17\xe4\xe0\x98\xee\x3b\xb5\x0e\xbc\x20\x69\x5f\xa7\x1b\xb2\x29\x95\xf1\xbe\x25\x33\xa0\x53\xa7\xb1\xfb\xc9\xe0\xa6\x1c\x5f\x71\x8c\x2b\x33\x3a\x17\xf4\xaf\x58\xfc\x3b\xe5\x7d\x12\xad\x0a\x49\x4a\xa6\x3b\x00\xb8\xec\xef\x3c\xa7\x6b\xca\xe8\xba\x59\xbb\x57\x77\x28\x51\x6c\x6d\x2c\x0f\xda\x16\x46\x5c\x5a\xee\x81\xb2\x9c\x0b\x81\xb9\xaa\xf7\x27\x83\xeb\xd5\xb1\xd5\x68\x48\x9a\x7c\x55\x92\x8f\x38\x1e\x83\xc9\xd6\xff\x16\x33\xf3\x03\xa4\x90\x47\x33\x36\x01\x22\x5f\xc3\xbf\x7b\xeb\xce\x8b\xaa\x2d\x6a\xdb\xcf\xa5\xfe\x46\xa6\xcb\xf0\x49\xcc\xb1\x59\x83\xac\x54\x19\xc0\x49\xf9\x1e\x04\xf2\x20\x89\xb5\x3d\xf6\x92\x29\xc2\xeb\x38\x25\x1a\xf4\x52\x6e\x45\xb7\x7a\x31\xb2\x69\xaf\x97\x21\xb3\xa3\xf4\xcb\x50\x2f\xad\x4f\xa1\x24\xb5\x44\xe0\xaa\x42\xb1\xa3\x72\x58\xea\x25\xa5\xf5\xd9\xe3\x77\xc7\x00\x76\x9f\x19\xef\xe0\x6e\xcb\x74\xda\xa2\xd2\x14\x9b\x68\x37\xfe\xa7\xda\x6a\xad\x88\xf6\x9c\xa1\x59\xa5\xbd\x8d\xb1\x46\xf2\xa5\x6f\xd2\x8e\x8e\x1f\x2e\x24\xf3\xbe\x53\x36\x9a\xa3\x81\xf9\xdd\x7d\x4d\x92\x99\x0b\xf9\xbb\x73\xf2\x0f\xad\x51\x0c\x4f\x7d\xfe\x6f\x3b\xea\xfd\x19\x01\x53\xd2\x38\x61\xf6\x2c\x4b\x74\xce\x14\xb0\xdc\x03\xd9\x6c\x04\xdf\x6a\xed\xe1\xd8\x87\x3f\x87\x86\xfd\xf3\x88\x18\xf4\x3c\x4e\xc8\x1f\xf0\xaa\x55\x75\x39\xdf\xec\x2f\x75\xfb\x44\xa6\x1d\x18\x63\x32\xc2\x81\xd1\x2d\x7a\xd6\xb4\xd1\x15\x28\x79\x23\xac\x60\xcb\x2b\xc2\x56\x68\x15\x8f\xde\x9c\x49\xe0\x36\x43\xfd\xc9\x45\x92\xc6\xa4\xae\x83\x33\x91\x43\x79\x3b\x48\xd1\x0a\x55\x9c\xa7\x52\x33\xf3\xfb\xc2\x47\xf1\x20\x3d\xbe\xcb\xf4\x0b\xee\x65\xcf\xc7\xf7\xa8\x24\x5c\x9b\x33\x27\xed\xe4\x75\x59\x72\xa1\xe0\x13\xd2\x55\xa5\x64\x27\xe1\xa4\x2d\x7e\x6f\xe4\xbf\x64\xbb\x9c\x8e\x99\xdb\x62\x5a\x48\x87\xa8\xad\x7e\xfc\x78\xcb\xd4\x4f\x3f\xce\xc0\xfe\x7f\x7a\x49\x6c\xfb\x7d\x93\x38\xe3\xe0\xb0\x63\xb2\xbc\x6d\x0d\x68\x1d\xdf\x39\xc7\x75\x1d\x4b\x54\xb0\xc7\x44\x85\xf7\x29\xfb\x0f\xae\xb9\xd8\x7f\x57\xca\x2c\xe4\xdf\x4e\x59\x34\xec\xf3\x94\xad\xad\xe3\x5f\x4f\xd9\x2f\x74\x4d\xd5\x11\x84\x1d\xc9\x97\x81\xd3\x6c\x59\x47\x5f\xc2\x91\xed\xf1\x1c\x33\x66\x80\xa3\x79\xa9\x8d\x77\x07\x58\xf9\xf6\x09\x26\xe4\xa4\xed\xbd\x28\xb4\xb4\x90\x4a\xe8\x9a\xf7\x67\xf9\x7e\xc4\x7b\x74\xa2\x39\xdc\xcf\x95\x18\x9d\x2e\xf6\xf5\x70\xb2\x0d\xeb\x9d\xd7\xf7\xd6\x24\xbb\x60\x68\x99\xf8\x7a\x50\x38\xf4\xb6\x38\x71\x67\xfd\x87\x9a\xb7\xc3\x57\x0d\xf6\x7f\x1c\x8a\xa7\xe8\xe9\xf9\x81\xe7\x0e\x65\x48\x62\x46\x54\x0d\x6d\x4f\x0e\xf1\x95\x5e\x74\x7c\x33\x67\x03\x1a\x7c\x84\xb7\xe7\x6f\x59\xbe\x8a\xbb\x01\x03\x9e\xe3\x6f\x51\x14\x32\x3c\x86\xf7\xb2\x8d\xd8\xb7\xdd\x8e\x24\xe2\x97\x8b\x51\x6a\x49\x51\xa4\x5a\x6d\xe4\xe6\x26\xe5\xf7\x19\xa7\x8c\x26\x8a\x9e\xff\x80\xf9\x1c\x18\xad\x8f\x61\x7a\xec\x3a\x2a\x7e\xfe\x06\xce\x07\xcd\xeb\xeb\xbe\x88\x7e\x7b\xb7\xf5\x7d\x23\x20\x0c\xe6\xdf\x1b\x84\xd7\x2f\x08\xc2\xd8\x7d\xde\xf7\x0c\xc3\xd4\x92\x90\x7d\xc1\xfd\x38\x70\x10\x8b\xa1\x19\xe2\xc0\xfd\x61\xf6\x19\xd0\x9c\x15\xfa\x5b\xc3\x9e\xe7\x7a\x63\xb6\x21\xaa\x82\xf9\x51\xda\x36\xe9\xcb\xeb\xc2\x9c\x3f\x0c\x6f\xea\xfa\x8b\x63\xcd\x49\x11\xe9\x69\x3d\xf4\xe4\x48\xc6\xa2\x4b\x2a\x87\xe2\x7c\xb3\x77\x52\x29\x18\x2d\xbd\xf7\x3a\xee\xad\xad\x23\xc1\x7f\xf1\x35\xac\xc3\x1e\x4b\x80\xa7\x70\x7d\xd6\xfb\xe4\x68\xbf\x35\x78\x9a\x18\x1d\xf2\x8f\x1d\x97\xd8\x56\xe3\xcd\xb8\x90\x30\x87\xc7\xde\x11\x07\xd1\xeb\x38\x5c\x9e\xf9\xfd\x41\xb4\xae\x07\xe7\x79\xa6\xdd\x34\x9d\x1c\x23\xb5\x43\xa2\x1b\xed\xbe\x15\xfd\xeb\x44\x03\x39\x70\x6f\xe8\xe3\xac\x3f\x7b\x31\xf3\xf4\xea\x7f\x01\x00\x00\xff\xff\x4e\xe8\x55\xb6\x00\x21\x00\x00" func flowserviceaccountCdcBytes() ([]byte, error) { return bindataRead( @@ -159,11 +159,11 @@ func flowserviceaccountCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowServiceAccount.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0xd, 0xfc, 0xdc, 0xc6, 0xfa, 0x1d, 0xb, 0xa6, 0x4f, 0x2c, 0xd8, 0x8b, 0x52, 0xba, 0xa7, 0x77, 0x9c, 0xac, 0xd2, 0xcb, 0x69, 0xa, 0xdc, 0x67, 0x3, 0xb5, 0xab, 0xa1, 0xb4, 0xb, 0x27}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x44, 0xef, 0x8a, 0xc, 0x1a, 0xa0, 0x25, 0x21, 0x80, 0xc3, 0x30, 0xff, 0xc3, 0xb, 0x36, 0x22, 0xce, 0x67, 0x8b, 0x30, 0x1f, 0xc7, 0x80, 0x44, 0x35, 0x76, 0xd5, 0x9a, 0x68, 0x28, 0x48}} return a, nil } -var _flowstakingcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x1b\x37\xb2\xf0\xbb\x7e\x45\xdb\x0f\x8e\xb8\xa1\xa8\xd4\xf7\x9d\x3a\x75\x4a\x65\xc5\xab\x48\xb2\x57\xe5\x24\x76\x7c\xd9\x3c\xa4\xb6\xb2\xd0\x0c\x28\xce\x6a\x38\x60\x06\xa0\x14\x9e\xac\xfe\xfb\x29\xdc\xef\x73\xa1\x28\xd9\xa9\xb5\x1e\x6c\x89\x04\x1a\x40\xdf\xd1\x68\x34\x0e\xff\xb2\xb7\x07\x00\xf0\xb2\x26\xb7\xef\x19\xba\xae\x9a\xab\x53\x52\xd7\xb8\x60\x15\x69\xe4\x57\x1f\x16\x15\x85\x82\x34\xac\x45\x05\x83\x12\xcf\xab\x06\x53\x40\x50\x98\x76\x30\x27\x2d\x50\xd9\x1b\x50\x53\x42\x89\x6b\x7c\x85\x18\xff\x93\x5c\xfe\x0b\x17\x8c\x0a\x48\xb7\x8b\xaa\x58\x00\xaa\x6b\x72\x4b\x61\x4d\x71\x4b\x81\x11\xd1\x11\xbb\xdd\xb0\x80\x87\x28\x2c\x51\xb3\x81\x86\x94\x7c\x38\x0a\x6c\x81\x37\x70\x8b\x1a\x06\x55\x03\x08\x68\xd5\x5c\xd5\x18\x50\x51\x90\x75\xc3\x66\x62\x80\x0b\x06\x62\xae\xcb\x15\x62\xd5\x65\x8d\xe1\xb6\x62\x0b\xde\x11\x6a\x52\x5c\xe3\x12\x18\xb9\xc6\x8d\xee\x03\x14\xb3\xf5\x6a\x26\x57\xf9\x1e\x63\xd1\x90\x34\xf3\x9a\xdc\x1e\xf2\x7f\x0e\x0a\xd2\xe2\x03\xbd\x72\x0a\xef\xce\x4f\xce\x7e\x38\x17\x93\x5b\x92\x16\xc3\xa2\xba\x5a\x40\x8d\x6f\x70\x0d\x55\x33\x27\xed\x12\x09\x64\xa0\x4b\xb2\x66\x02\x96\x46\x89\xc5\x14\x1f\xec\x2f\x87\x7b\x7b\xd5\x72\x45\x5a\x06\x2f\xd7\xcd\x15\x9f\xe7\x07\x31\xad\x79\x4b\x96\xf0\xd4\xfb\xec\xa9\x69\x59\x93\x5b\xaf\x95\xfe\xdb\x6b\x71\x71\xf6\x01\x5d\xd6\x58\x11\xd2\x69\xea\x7f\x61\xfa\x7c\x2f\xb0\x22\xe0\x50\xd9\xfa\x9b\xdf\xbf\x7f\x73\xfa\xfa\xfc\xec\xc3\x9b\xd7\xe7\x3f\xbe\x3f\x39\x3b\x7b\x77\xfe\xfe\xbd\x3b\xc4\x7b\x46\x5a\x74\x85\x5f\x62\x6c\x7a\xbc\xfc\xfe\xcd\xcf\xef\x3f\xbc\x79\x77\xf2\xea\xfc\xe5\xf9\x79\xaa\xd3\x69\xbd\xa6\x0c\xb7\x3f\x9d\xea\x2e\x3f\x9d\x26\x5a\x9d\xbd\x7e\xa5\xbf\x3f\x7b\xfd\x2a\xd1\xe0\x7c\x45\x8a\x85\x6e\x72\xfe\xf6\xcd\xe9\xdf\x74\xa3\x3d\x54\x14\x98\xd2\x7d\x54\xd7\x13\xcb\xab\x49\xa6\x86\x3f\x24\xc1\x0f\x0f\x0f\xe1\x44\x31\xc2\x0a\xb1\x85\x64\x51\x17\x4e\x8d\x19\x44\xdd\xd5\xfa\xdf\x22\xb6\x38\x02\xe7\x8f\x61\xbd\xdf\xb6\xd5\x0d\x62\xaa\xb7\xf3\xc7\xc0\xde\xeb\xcb\xba\x2a\x54\x67\xf3\xbb\x5d\xce\xf9\x0d\x6e\x58\xbc\x0e\xcc\x3f\x86\x1f\x49\x89\x4f\xca\x92\x93\x3b\x02\xbc\xcf\x85\xec\xe2\x8c\x2f\xa8\xad\x9a\xab\x29\xb4\xa4\xc6\x47\xf0\xf1\xa2\x61\xff\x33\x05\xb4\xe4\x48\x3a\x25\xcb\x65\xc5\x18\x2e\x8f\xe0\xe3\xcb\xea\xf7\xff\xfe\xaf\x29\xa0\xb2\x6c\x31\xa5\x47\x70\x22\x7f\x79\x31\xc9\x8c\x7d\x26\x05\x9b\xb4\x83\x27\x50\xea\x1e\xfc\x43\x3e\x8f\xff\xff\xff\xc6\x4d\xa4\x03\x0b\xef\xf0\x92\xdc\xe0\xf2\x65\x4b\x96\x63\x31\x31\x7a\xc1\xa3\xc6\x4a\x2f\x7a\xf0\xda\x7e\x40\xc5\xa2\x6a\xb0\x62\xea\xd3\x16\x23\x86\xcb\x71\x0b\x9a\x58\x66\x7a\xcf\xda\x75\xc1\xf5\x18\x62\x40\x19\x69\x31\xb5\xf3\x83\x8b\x33\xa1\xf2\xa2\x89\x50\xd9\xe9\xcc\x2e\x84\xc2\x1f\xa2\x55\x8a\xc1\x0d\xbc\x1f\xbd\x39\xf6\xb7\xb7\xf8\xd9\x33\x8d\x6f\x2a\x7c\x0b\x55\x53\xb1\x21\x68\x9d\x38\xb3\xe2\x3f\x14\xd7\xf3\x59\x30\x1d\x38\x06\x09\xa9\xa3\xa5\x68\xe5\xfc\x65\x9a\xde\xed\xc9\x7f\x0d\x3a\x4f\x49\xc3\x50\xd5\xd0\x84\xa9\x40\x62\x9c\xaf\xb8\xbd\x13\x04\xd4\x6a\xc9\xf4\x95\x76\xb3\xe2\x46\x97\xe2\x82\x34\x25\x6a\x37\xc6\x88\x09\x02\x55\x14\x48\x53\x6f\x60\x89\xb9\x7d\x64\x04\x16\xa4\x2e\x4d\x7f\x6e\x8b\x7e\x3a\x05\xd2\x02\x57\xb1\xd2\x22\x0b\x83\xcb\x35\x37\x6f\x8d\xd6\x8c\xf0\x29\x15\xa8\xae\x37\xb0\x42\x1b\x61\xe4\x58\x8b\x1a\x8a\x94\x85\xc7\x98\x1a\x78\x2d\xae\x39\x6b\xf1\x9e\x0e\xd8\x15\x6e\xc5\xaa\xe8\x2c\xc7\x16\x3e\x83\x5e\x34\x73\xd2\xc1\x1c\xcd\x30\x9e\x70\xd8\xd9\xb4\xe1\xe8\x46\x2b\x74\x59\xd5\x15\xdb\xf0\x59\x72\x04\x88\xb5\xfe\x1d\xad\x6b\x81\x1f\xe1\x84\x48\x83\x7f\xdb\xe0\xd6\xed\xca\x88\x70\x1b\xca\x16\xdd\xf2\xb5\x95\x78\x45\x68\xc5\x14\x98\xaa\x35\x54\xd2\x04\xa8\xe6\xd0\x60\x5c\xe2\x32\x9c\xa3\xb6\x43\x72\xa2\x4b\x6f\xf1\x62\x22\x6f\x5b\x72\x53\x95\xb8\x3d\x72\xa6\xfb\x1c\xad\xd9\x62\xdf\x73\x02\x66\x3f\xab\xe9\x70\x13\x3e\x81\x67\xc6\xf6\xcf\x04\x94\x6f\xad\x0c\x24\xd9\xdf\x13\xf8\x87\x9b\x45\x28\x52\xab\x16\x07\x9f\xf0\x9f\x8e\xf1\x67\xc5\x02\x17\xd7\xfb\x93\x23\x78\x7a\xd1\xdc\xa0\xba\x2a\x85\x01\x07\xe9\xf6\x48\xca\xe9\xb6\x4f\x3d\xc0\x77\xb1\x84\x36\x7d\x22\xcc\xb1\x02\xc7\x02\x39\xf1\x97\x1d\xb3\x84\xe3\xae\x35\x38\xf2\xef\xb2\xd4\x2b\xcc\x84\xff\xaa\xf5\x2d\x90\xb9\xf8\x33\x60\xa5\x24\x93\xcf\xd7\x0d\x5c\x61\xa6\x14\x34\x47\x8f\xfa\x35\xc0\x6e\x8b\xd9\xba\x6d\x7a\xe7\x3f\xbb\x24\x6d\x4b\x6e\xf7\x27\x4f\x66\x82\xf3\x9f\xcc\xd4\x9c\xf2\xaa\x4b\xba\x1a\x50\x35\x0c\xb7\x73\x54\x60\xa9\x72\xa4\xff\x5e\xa0\x06\x56\xfc\x7b\xba\x90\x3a\x43\x88\x48\xec\xf8\x1a\x60\x94\xc8\xee\x84\x2d\x74\xff\xdf\xd6\xb8\xdd\x04\x3d\x93\xd6\xa5\xc5\x94\xac\xdb\x02\x3b\x53\xc9\xf8\x48\x19\xbd\x72\x83\x5a\xb5\x13\x90\x3e\xef\x47\x6a\xbd\x88\x6c\x87\x75\x33\xaa\x0b\xa7\x17\x2a\x4b\x6e\x43\xde\x08\x4d\xbb\xff\xab\x60\xc2\x23\xf8\x6b\xec\x89\xcf\x78\x33\xfe\x3b\x6e\x43\xd9\xe4\xea\xf1\x28\xa1\x32\x95\xcf\x91\x19\xd6\x58\x5e\x33\xb6\xb1\x4e\xf9\x09\x98\x4e\x13\x87\x69\x43\xe0\x4a\x0f\x7e\x20\xfe\x94\x22\x75\xc3\xdd\x73\x35\x94\xa3\x1e\xd2\x93\x16\x36\x5b\x00\x27\x98\x0a\x34\x9c\xff\x5e\xd1\x41\x16\xfc\xc5\xe4\x08\xbe\x23\xa4\xee\x92\x19\x69\xc7\x85\xcc\xfc\x22\x41\xfd\xa3\xab\xb9\xeb\xb5\x88\x3e\xee\x07\x9d\x3d\x4f\xea\x5a\x8c\xd5\xcc\x89\xe8\x98\xc1\x33\xff\xbe\x0f\x8e\x1d\xb3\x03\x98\xd7\xa8\x13\xa2\x4f\x2c\xb1\xac\x3f\x24\x2a\x52\xbc\xe5\x89\xbe\xe7\x60\x36\xac\x62\x35\x5e\x72\x37\xd3\xca\xda\x1b\x61\x3a\x8d\x68\x7f\x58\x60\x2b\xa2\xca\x6f\xe4\x9c\x4d\xa5\xff\xc8\xb7\xed\x52\xc8\x95\xba\x53\xbb\x7f\xd2\x62\x03\x02\xd5\x75\xa0\x08\x54\xfc\x40\xb8\x2b\x45\x64\xd4\xd5\xb6\x5e\x9b\x62\xd9\xd8\x40\x7b\x8d\xf1\x8a\x72\x37\xa6\xb8\xe6\x1a\x77\x41\x6e\x65\x48\x41\xf7\x6a\x4a\x23\xdc\x32\x32\x40\x01\xb5\x72\xdb\x8e\x4b\x57\x63\x55\x0c\xae\x1b\x72\x4b\x95\x27\xa6\xda\x32\x02\x57\xd5\x0d\xd6\x73\xe1\x0a\x11\x6e\x17\xb8\x91\x91\x0a\xed\x37\xf0\x51\xb4\x3f\x61\x60\x96\xd5\x7c\x8e\x5b\x8e\x4d\xb6\x59\x61\x69\x0f\x04\xd0\xbc\xce\x8b\x34\xdd\x51\x87\xf2\x73\xe4\xf8\xd0\xae\xf1\x86\x4b\x62\xc8\x2d\xdc\x60\xf8\x8a\x4e\x08\xec\xce\x7c\x12\x3e\x83\xe4\xf8\xc2\xb3\xad\xea\x1a\x2e\x31\x34\x55\xcd\xfd\x28\x61\x22\x15\x2d\x17\x88\x42\x43\xa0\x20\x6d\x8b\xe9\x8a\x34\x25\xe7\x06\x9f\xde\xf9\xa5\xec\x6e\x21\x2f\xfc\x95\xbc\x97\x3b\xa1\x90\x3b\xb9\xe9\x53\x81\x2a\x1b\xc7\x22\x2d\xf5\xfa\x9e\xa2\x46\x7a\xe9\x6b\x8a\x81\x34\xd8\xd9\x4f\xad\xb0\xec\x0f\x8e\xab\xc2\xbb\x70\xc7\x92\xf3\xd7\x25\x86\x95\x8c\x16\xa8\xa1\x6e\xe1\x12\x17\x88\x03\x12\xcc\x56\x90\x75\x5d\xf2\x56\x6b\xea\xa0\xc9\x61\xa9\x24\x96\x1a\x63\x7c\xe8\x11\xfc\xd5\xe8\x85\x4e\x33\x75\xd7\x0d\xce\x68\xa6\x21\x10\x4d\xe3\xbb\xbd\x00\x51\x82\x60\x56\xcc\x05\x41\xfe\x46\x6a\xee\x7f\xa9\xed\x8b\x54\x26\x96\xb7\x43\x96\x70\xc2\x3b\x54\xc8\x9f\xdc\x69\x05\x0a\x43\xf0\x5f\x43\xd4\x0e\x17\xd8\xa2\xa2\x53\x2e\xed\x0e\x5f\xe6\xd7\xcb\xec\xac\xc6\x30\xd9\xd4\x0b\xbb\xcd\xc4\x7f\x6f\xcc\xe6\x69\x02\xcf\xe2\xaf\xe5\x20\x21\x2f\x7e\xe0\x8a\x8d\x0e\x52\x6b\x3a\x1a\x89\x5b\xbe\x55\x94\x4c\x22\x82\xac\x46\xdf\x1a\xee\x3d\x14\x7b\x9e\x24\x03\xff\xcc\x95\x5b\x21\xc3\x2f\x1c\x42\x83\x6f\xd5\x00\x53\x88\xd5\xe8\x9a\xe2\x12\xe6\x55\x4b\xd9\x14\xe6\x84\xef\xb7\x70\x09\x97\x9b\x70\x6e\xf1\x08\x5a\x5b\xf2\x21\x34\xf8\x94\x9e\xd6\xed\x9a\xd4\x28\x9d\x22\xf0\x20\xce\x60\x8a\x36\x09\x27\x9f\x02\xa2\x94\x14\x95\xd8\x41\x8b\xf8\xb4\x40\x7d\x9e\xcd\x7c\xb7\x90\xf6\x18\x70\x7f\x2f\xe8\xed\x10\x76\xa9\xdf\xa7\x1e\xe4\x4f\x20\x09\x7a\xe8\x61\xdb\x4e\x6f\xe9\x99\x8d\xa6\xb3\x3c\xc7\xd3\xe8\xdd\x69\x7a\xa0\xe1\xd8\x1f\x6a\x2f\xbd\x33\x55\x4a\x17\x9e\x1f\xc0\x1f\x99\xcd\xab\x55\xa4\xaa\x55\xdc\x2c\xe4\x44\x38\x86\x6f\x66\xdf\xe4\x67\x18\xb5\xf4\x9a\x1e\x1e\xc2\x45\x6c\x81\x43\x8d\x39\x15\x7c\x55\xa1\xba\xfa\x5f\x0c\x95\x70\xe1\xf8\xee\x7c\x21\xc8\x12\xc2\xe3\x9a\xc8\x35\xfd\x0e\x5a\xbd\xa6\xd5\x5c\x44\x48\x1c\x2e\x7a\x73\xf9\x2f\x38\x76\x3f\x48\xd0\x54\xac\xcd\x6d\xe2\x75\xd8\x8b\xda\x1f\x1e\x82\xdc\xfb\x2a\xa9\xe4\x16\x44\x4c\x7e\x89\x1a\x74\x65\x2d\x8b\x38\x5f\x48\x38\x97\x29\x80\xdc\x05\xc4\x4c\xc9\x6c\xe0\x94\x76\x2e\x99\xff\xf0\x35\x3b\x94\xf9\x41\x4d\xe3\x38\x40\x84\xb3\x63\x97\xbf\xb9\xad\xf7\x27\x69\xbc\xf8\x3c\x19\x8f\x32\xf3\x7d\x31\xfe\x73\x07\xb8\xa6\x29\xe1\x49\x20\xda\xb5\x8b\x1d\xe3\x86\xcd\x52\x5c\x1c\xa8\x37\x38\x76\x45\x22\x74\x0c\x6a\x42\xb1\x36\x5a\xd2\xa0\x51\xb8\xc4\x73\x6e\xbb\x4b\x4c\x59\x4b\x36\xdc\x68\xe0\x1b\xdc\x6e\xd8\xc2\x0d\x1b\xca\xfd\x89\xb0\x7d\x58\xaa\xe5\x82\xc3\x12\x82\x08\x4b\xcc\x16\xa4\x9c\x2a\x4f\x5f\xd8\xfe\x15\x6a\xaa\x42\xb9\xa4\x2d\x56\xdb\x02\xfe\x85\xb2\x3f\x72\x8f\x20\x4e\x22\x9b\x8d\x0e\xe7\xb8\x67\x9d\xfc\x47\x4d\x69\x3f\xd4\x51\x36\xbc\xc9\x97\x2b\xb0\xe0\xee\x56\xa3\xb6\xa5\x1b\x4e\xb7\x1d\xfc\xfd\xaa\x8f\x5a\xed\x90\x8a\x40\xbd\x19\x2c\x43\x5b\x8b\x0a\xb3\xf3\x96\xff\x07\x3b\xef\xa6\xaa\x27\x5d\xf4\x9c\xbb\xae\x83\x1c\xb9\x4c\x9f\x04\xf4\x0d\xef\x74\x0b\xc3\xf2\xc1\x9c\x92\x2d\x2f\xce\x3a\xe7\xa9\xe8\x12\xe9\xe3\xee\x46\x67\xb1\x53\x14\xf9\xad\x75\xcd\x8d\x7a\xe0\x26\x29\x96\x71\x0e\xc9\x67\x2a\x22\xe8\x1c\xbc\xe2\x8a\x73\x1a\x90\x16\x2e\x09\x5b\x48\xe5\xe1\xfb\x46\x1f\x39\xe7\xfa\x5e\x90\xf2\x7b\x18\x1f\xd0\x78\x48\xd5\x5c\xf0\xa4\x38\xa2\xb6\x7c\x9b\x0e\x51\x4b\x2f\x43\xc5\x0a\xa4\x7d\xd8\x97\xa7\x6c\xda\xad\x99\x70\x3f\xde\x37\xe1\x42\xba\xef\xdc\x5d\xa6\x66\xd4\xd0\x16\xc6\x06\xd2\x2a\xb3\x6c\xe7\xef\x50\x8d\x9a\x02\x87\xa6\x74\x76\xa9\x3e\x3f\x08\xcf\xa1\x67\xcb\xaa\xa9\x96\xeb\xa5\xfa\xe8\x1d\xa6\xb8\xbd\x41\x36\x81\xc1\x22\x51\x59\xb8\x16\xcb\xc3\x94\xd0\xb4\xa9\xed\x94\xaf\xc0\x05\x8e\x43\x73\x15\xe9\xba\x27\x42\xd9\x85\x38\x01\x4f\xcb\x7b\x58\x71\x3e\x7a\x92\x41\x8a\xdf\xdb\xa2\x65\xa7\x48\x11\xcc\x40\x29\x6e\x03\x67\xd1\x7c\x27\xb8\x01\x9e\x1f\x07\xd3\xf8\x3a\xa4\xd7\x34\xd9\x7d\x89\x29\x45\x57\x58\xb8\x5a\x74\x3d\x9f\x57\x45\x25\xa2\x1e\x84\xa1\x1a\xd0\x0d\xaa\x6a\xee\x08\xca\x40\xbf\x5a\xcb\xd3\x08\xd0\x24\x69\xcc\x2f\xe6\xc6\x12\x28\x71\x28\x50\xc3\x37\x6d\xad\x3c\x73\x95\x72\x25\xe7\x38\xb5\x47\x3a\xdc\x29\x51\xb1\x72\xb6\xc0\xcb\x08\x72\x35\x87\xfd\xcc\xa2\x43\x3d\xae\x7f\x72\xde\x58\xfa\xf3\xaf\x15\x4e\xe3\x45\x81\x0d\xe3\x3f\x3f\x70\xa9\xac\x27\x6f\x64\x53\xfe\x1f\xdb\xfe\x0c\x9e\xf8\x0e\x97\xe3\xaa\x0b\x41\xf2\x43\xb8\x5d\x20\xa6\xda\x29\xc5\xa2\xbe\x60\x32\xba\xa7\xfc\x23\x4d\xfc\x68\x40\xe3\x45\x24\x57\x77\x78\x08\xeb\x55\x89\x18\x0e\x14\x99\xd8\x2b\xb6\xb8\x20\xad\xd8\xbc\xa1\x52\x44\x7b\xcc\x90\xca\xbe\xaa\x3e\x8a\x4f\x76\x42\x0a\x8f\xbe\xe9\x39\x0b\x6b\xbd\x5e\x7e\xf4\xbc\xe8\x0f\xe4\x23\xe5\xb2\xa8\x38\xe5\x60\x08\x20\xae\xc3\xe5\xe2\xbd\xc8\x45\x2f\x0a\xd4\x18\x2d\xfe\x6d\x8d\x29\x4b\xe0\x5c\x01\x5f\x56\xcd\x9a\x0a\x02\x72\x07\x08\x6e\x91\x02\x1a\x3a\xb4\xc1\x9e\x38\x42\x5f\x72\xbf\x90\xfb\xe6\xeb\x0c\x6e\xf2\xb8\x54\xeb\x7d\x7e\xe0\xec\xba\x0a\x91\xac\x70\xbe\x5c\xb1\x8d\xe0\xf8\xd0\x9d\x71\x56\xf9\x0a\x33\xb5\x4b\x61\x6b\x54\xfb\x36\x14\x15\x0b\x88\x1d\x5b\x77\x70\x39\xcf\xb7\xa4\x15\xa7\xda\xcf\x0f\xa0\x53\xcc\x7c\xe9\xcf\x02\xd5\x68\x71\xc0\xfa\xa6\x2b\x02\x9c\xc6\x59\x7e\xd1\x67\xfa\x10\x7a\x81\x97\x50\x35\x6a\xa3\x41\xd1\x12\x77\xac\x57\xa2\x66\xa6\x02\xd1\xfb\xf2\x60\x46\x2b\x16\x35\xd7\xf4\xa2\x32\x3d\x83\x75\x66\xa6\x6b\x34\x58\x86\xcf\xee\x86\xed\x3a\x0e\x0f\xe1\x7d\xd5\x88\x93\x04\x65\xb0\x1b\x12\x59\x6c\x64\x3d\xf2\x05\x92\xa1\xf8\x82\x2c\xb1\x65\xf9\x86\xb4\x4b\x54\x5b\x61\xbb\xcc\x09\xe8\x30\x1b\x78\x7f\x9b\x37\xda\xd2\x6d\x23\x92\x39\x03\x63\x48\xd3\xc3\x9e\x29\xf3\x92\xdd\x94\x29\xde\x34\xee\xec\x25\x2a\xae\x45\x8a\x85\x72\xa0\xd0\x9c\xe1\x16\x2e\x31\x57\x67\x4e\xc8\x8e\x53\x08\x81\xdc\x80\x91\x56\xa7\x0c\x89\x1c\xc9\x0c\xf4\x48\x65\x2a\xf7\xb7\x9a\xc3\x8a\x50\x5a\x89\x88\xd2\xe0\x18\xa0\x75\x7d\xcd\xc9\xa6\x70\x7f\xd5\xf9\x65\xd2\xe7\x1d\x16\x6c\xd2\x5b\x4d\xdc\xb6\xdc\xe5\x5f\x88\xd8\x7c\x23\x74\xf2\x25\x06\xd6\x56\x57\x57\xb8\x95\x9b\xc7\x55\x4b\xca\xb5\xcc\xb0\xb9\xc4\x05\xa2\x6b\xec\xfa\x33\x2a\x82\x8a\xeb\x32\x96\xa2\xc3\x43\x0d\x59\x9c\x0d\x90\x15\x6e\xeb\x8d\x0a\x65\x48\x03\xa2\x7c\x23\x71\xd0\xce\xd7\x29\x86\x89\x01\xf1\xf5\xf2\xdd\xa4\x62\xe9\xfd\x09\xe7\xf3\x3c\x6b\x25\x0d\xe9\x11\x3c\x3d\x45\x0d\xf7\x32\xf4\xa9\xd7\x52\x86\xd3\x51\x23\x3c\xed\xba\xc5\xa8\x14\xe7\x1e\x65\x18\x4f\xbb\xdf\x1e\x22\xf0\xef\xfb\x1c\xfc\x2b\x65\x3b\x3c\x07\x5f\xc6\xae\xd4\xe6\x55\xcc\xde\x0d\x1c\x40\x9f\xc3\x9f\x70\xba\xb8\x0b\x39\x06\xad\x9d\x7e\xe5\x28\xd1\x3f\x88\xc9\x99\x56\xd2\x3e\x42\x43\x45\xcf\xff\x8f\x2d\x43\x56\x55\x2b\x7e\x7c\x27\xb5\x4b\x52\x4a\xb7\x9c\x44\xac\x9a\x72\x28\x4c\x1b\xb2\x11\xf1\x4f\xaf\xcb\x60\x0f\x32\x85\xf0\x0c\x7a\x5c\xcd\x24\x15\xb1\x76\xf0\xf4\x69\x70\x81\x01\xd1\xa1\x5e\x5a\x7a\x03\x39\x94\x94\x23\x22\x7f\xf7\x66\xc0\x10\x6a\x66\x93\xd2\x65\xe7\xb5\xe0\xca\xa4\xa3\x30\xb2\xaa\x0e\x5d\x75\x9e\x9e\x3e\x9c\xaf\xd8\xac\xe7\x20\xa0\x1f\x59\x59\xab\x27\x99\x9d\x02\x6b\xd7\x58\x84\x5c\x52\xa6\x4c\xfb\xf3\xf8\xf7\x8a\x32\xaa\xcf\x2c\xe3\x94\x74\x71\x14\x27\x92\x09\x74\xac\x4e\x2c\x89\xac\xf8\xb7\xa8\x76\x83\x5c\x53\xa9\xd0\x6f\x2b\x8a\x61\x8e\x6a\x8a\x67\xe9\xb3\xaa\xfb\x67\xd6\x04\xfc\x10\x9c\x78\xfa\x29\xbb\x2f\x12\xc1\xde\xa0\xc3\x59\x3a\xd9\x77\x4c\x4f\x67\x8e\xa0\xba\x8d\x0b\xf0\x68\x36\x72\xb3\xcc\xb4\xaf\x88\x58\x74\x86\x0c\x8e\xee\x77\xe3\xdf\x8e\xee\xf7\x7f\xd4\x41\xc6\xaf\x7e\xb0\x3c\xec\x6f\xc5\x35\xa3\x4b\x23\x34\xc3\xb1\x07\xd3\x46\x8b\x33\xda\x26\x8f\xf6\x04\xa4\xa0\xc5\x08\x90\xdd\xe0\x92\xa0\xee\xba\xcc\xbf\x3d\x82\x52\x7b\x5d\x4e\x45\x29\x1b\x86\x4f\xa7\x20\x4e\xef\x84\x7b\xa3\xbd\x3e\xe7\xbc\x5a\x34\x37\x9f\x2f\x11\x2b\x16\x98\xa6\x0e\x9b\xb2\x29\xdc\x69\xb2\xee\x77\xa0\xf4\x49\xfa\x3c\x84\xff\x3c\x7b\x96\x43\xdc\xf8\x4e\x72\xb4\x27\x70\x9c\x4c\x6a\xed\x1d\x51\x74\xcc\x46\xc8\xf9\x4f\x9a\x19\x75\xac\xac\x5d\xc7\x11\x97\xbb\x64\x60\xee\x7b\x42\xae\x43\xb2\xd9\x9b\x58\x74\x85\x8b\x6a\x5e\xe1\x52\x27\xbc\xf8\x29\x33\x90\x58\x97\x9b\xda\x2a\x45\xc7\xac\xab\xfb\xc0\xc2\x5d\xae\x96\xda\x61\x96\x2f\x20\xb9\x47\xe9\x00\xc7\x11\x5d\x72\x62\x3d\x12\x93\xf1\xaa\xf9\x48\xfb\x7a\x8c\x04\x03\x65\x8d\xd5\x4b\xe5\xfd\x8b\x6d\x59\x59\x02\x6a\xa4\x49\xe2\x3a\xd0\xa6\xf6\xb8\xe9\x73\xf0\xe8\x59\xad\x89\x33\xb2\xaa\x54\x09\xdc\xb3\xaa\x8c\xbe\x54\x3a\x5c\xdc\x22\x38\xce\x65\x18\x89\x24\x4a\xcd\x22\x55\x19\x1f\xad\x89\x4d\xf9\x7b\x79\x98\x77\xec\xc2\x9c\x89\x6f\xa4\x67\x73\xd1\xbc\x13\x76\x7c\x7f\x02\x07\x41\x1b\xfe\xf5\x3b\x7c\x8b\xda\x32\x88\xcb\x6d\xb3\x6d\x77\x26\xe3\xb3\x03\x5e\x56\x3d\x17\xb8\x22\xee\xd1\x8b\x76\xa7\x5b\x95\x71\xc0\x42\xde\x0e\x70\x5b\xf1\x4f\xe2\x76\xd1\xdd\xab\x08\x57\xe6\xbb\x9f\x65\xb6\x95\x3d\x2f\xdb\x9f\x24\xe0\xe9\x9b\x47\x02\x1d\x22\x15\xfd\x45\x94\x8a\x0e\x71\x48\x24\x3c\xb3\xfb\xa5\x2a\xff\x01\xcf\x0f\x9e\x88\x05\x87\xd6\xe4\xbd\xb2\xf7\xe1\x95\x0d\x95\xa9\x6e\x85\x20\xd5\x59\x05\xcb\x4d\xa0\x4d\x5e\x41\x05\x52\x97\x1d\x57\x3f\x20\x73\xac\x2d\xa6\x19\x5e\x1d\xb8\xd0\x49\xee\x30\x5e\x64\x0d\x76\x07\x48\xed\x3d\x93\xc2\x13\x92\xd9\x2b\x7c\x7e\x1a\x73\x74\xac\x3b\xeb\x56\xd7\xb3\x3f\x95\xa8\xba\xb0\x84\xa4\x0e\xbf\xee\xe8\xce\x30\x89\x92\x40\x7c\xfb\xc4\x90\xcf\x50\xa1\xe8\xeb\xc4\x57\xa6\x5f\x06\x39\xea\x80\xe1\x03\xf9\xd8\x88\x04\x87\x69\xa7\x98\x4e\xd2\x82\x69\xe5\xfe\x97\x90\xde\x52\x52\xcd\xa7\x43\x78\x5f\x9d\x3e\x75\x5a\x2c\x3f\x62\xa8\x5c\x48\x91\x8e\xbd\xd0\x67\x20\x4e\x7e\xa4\x4e\x29\x14\x90\x93\xf0\xa8\xdc\x85\x32\x79\x4b\x0c\x97\x3e\xfc\x9f\x31\x94\x44\x7c\x5d\xd4\x18\xb5\x69\x05\x53\xe1\xba\x54\x6a\x46\xc0\x2a\x31\xf0\x6d\x89\x07\xc8\xc9\xe0\x55\xb7\xe7\x48\x0b\x4b\xa4\x2e\xb9\x33\x02\xd7\x18\xaf\xa0\x62\x46\x05\x85\x32\x1e\x64\xe2\x4b\x79\x97\x08\x73\x5c\x05\xbd\xd3\x9a\xf4\xd9\xea\x17\x83\xa2\x9b\xf2\x02\x64\x7a\x57\x99\xcd\x1a\x39\x82\xa7\xef\x7d\xbf\x8f\x43\x10\x48\x14\x64\x95\x5b\x63\x71\x77\x5f\x2f\x29\x0e\x8e\x67\x22\x33\xc7\x2a\x53\x61\xff\x9b\xd9\x37\x13\x1b\x89\x54\x8c\x23\x06\xe3\x3e\x7f\x32\x3f\xb5\x2b\xbb\x2f\xb9\x0d\x74\x2d\x8f\xe6\xe9\xec\x76\x70\x3b\x37\x45\x39\x78\x49\x68\x3b\xd5\x81\x9d\x47\x2e\xb1\x54\x70\xa1\x90\x51\x7c\x75\x7e\x3c\x55\xb1\x6a\x86\x6a\x68\xd6\xcb\x4b\xde\x72\x1e\x85\xff\x54\xa6\x94\x88\xc7\x70\x10\x25\x2e\xd7\x05\x73\x8f\x25\x85\xc8\xe0\x36\x0e\xd6\x6c\x13\x7e\xca\xfa\x50\xa0\x83\x94\x7c\xee\x34\xb3\x44\x33\x27\x5d\x42\xc1\x8a\x18\x95\xb7\xce\x1a\xbe\x58\x27\x85\x73\x89\x56\xf1\xc4\x75\x82\x97\x02\xfe\xfc\x20\xcf\x3c\xcf\x0f\xe2\x38\x86\x9a\xea\x69\x56\xbd\xb8\x71\x0b\xac\x82\x4c\x69\xec\x85\x6e\x88\x1e\x36\x11\x3d\x01\xd7\xd1\x1c\x74\x6f\x5d\x8b\x7b\xc6\x87\x1c\x61\x3c\x20\x15\x16\x34\xa7\x55\x0e\x2e\x07\x9f\x1d\x7e\x58\x60\x73\xe8\x61\x95\x8d\xbc\xf6\xcb\xf5\xb2\xd1\xfe\xc8\x65\x03\x71\x0d\xa0\xd4\x81\xba\x28\xf5\x75\x2e\xae\x6d\xc8\x68\x5e\x4c\x75\x91\x33\xb8\x9f\xd2\x3f\x16\xac\x0f\x72\xf6\x74\x60\xb4\x71\x80\x45\x0c\x1d\xc2\x1d\x18\xc5\x10\x64\xde\x2e\xf6\x1b\xa4\x78\xc7\xde\x75\x3d\x7f\x80\x5b\xfa\x40\xd6\xca\x0d\x19\x78\x56\xcb\x46\x28\x1e\xcb\x74\xd9\x11\x77\x6b\xbf\x1c\x07\x6d\x90\x09\x2b\x6d\x31\x8b\x39\x1c\xc3\xfe\xb3\x2e\x48\x88\xca\xcb\x02\x9d\xa4\x4b\x24\xba\x55\x73\x6f\x9c\x59\x55\x06\xf1\x2a\xf8\x23\xd6\x10\x70\xbf\xed\x48\x2f\x03\x64\x07\x7c\x58\x3b\x0c\x29\x5b\x1c\x0a\xe3\x96\xe6\x58\xd7\x58\xda\xce\x22\xc3\x43\x58\x65\x48\x5b\xe6\x68\xc1\xc3\x8d\xb3\x73\x79\x22\x69\x9f\xc1\xb1\xd1\x76\x18\xd7\x4c\x27\x38\x3b\x67\xa9\x21\xda\xf6\x8d\x32\x9e\x39\xe6\xeb\x33\x9f\x5d\x21\x46\x65\x32\xcf\xa2\x8d\x96\xfe\xd1\x96\x33\x2d\x52\xca\x90\x9d\xff\xbe\xc2\x82\x2f\x5c\x29\x34\xca\xcf\x5e\xcc\xd4\xf7\x1e\x1c\x7d\xd5\x64\xe8\x14\x1a\x3c\x18\x95\x0f\x34\xd2\xa6\x5b\xca\xee\xde\xac\x97\x09\xd8\x5b\xda\x76\x7b\xe3\x49\x5a\xf7\xab\x8a\x32\xdc\x8a\xcb\x75\xc1\x35\xd3\x2e\x9f\x40\xf5\x42\xa2\x9f\x46\xbc\xd4\x3f\x9a\x3e\x31\x39\x06\xda\x6f\x09\x5b\x6c\x29\x7d\xa3\x52\x1a\x2b\xee\x7d\xee\x56\x1c\xf1\xbe\x68\x30\xbb\x25\x2d\x9f\xc4\x89\xe6\xed\x54\x7f\xdb\xec\x35\xde\xa4\x9b\x28\xcc\x64\xbf\xf7\x93\xd8\xfd\xef\x56\x68\x83\xdb\x23\x10\x97\xd3\xbe\x13\x81\xf5\xbf\xa3\x7a\x8d\x27\xf0\xec\x24\x38\x00\x9c\xa8\x56\x2a\x89\x7a\x6a\xef\xb6\x55\x98\x4e\x45\x4d\x1f\x51\x1a\x6e\x0a\xaf\xf1\x86\x4e\xe1\xa2\xb9\x24\xbf\x5b\x38\x2f\x52\x39\xf2\x36\xfd\x51\xdf\xe3\x08\xf2\xee\x75\xf2\x55\xd4\xd3\xdf\x51\x24\xac\x9c\x0a\xd0\x2b\xab\x13\x9b\xd8\xf2\x08\xf2\x21\xe0\x74\xd8\x37\x41\xb1\xe8\xa3\xae\x5e\x82\x40\xde\x9f\x71\x6b\x97\x96\xf6\xf7\xb8\x5d\x10\xc3\x3a\x4a\xa7\x18\x4e\xc6\x86\xce\x5d\x85\x2c\xd1\x2b\x22\x6d\x0e\x56\xe2\xa8\x9b\xfc\x60\x94\x8a\xee\x0c\x5c\xab\xcd\x4d\x92\xe4\xef\xb0\x4e\x0e\x39\x8e\x0e\x83\xc2\x38\x29\xff\x79\xf1\xc2\xa8\x2c\x99\x79\x46\x98\xbe\xf8\x26\x36\x23\xad\x86\xf7\x34\xc3\x63\x23\x63\x15\x66\x7e\x22\x6a\x1b\x46\xd1\xdf\x69\xcd\xd4\x15\x87\x4f\x86\xdf\x45\x4a\x30\xe5\xfb\x1c\x2e\x83\x41\x8d\x07\x27\x8d\x9f\x82\xa9\xce\x04\x05\xaa\xeb\x60\x93\x58\xcd\xcd\xa2\x54\xd1\x9f\x63\x5b\x4c\x50\xac\xe8\x1d\xa9\xf1\x4c\x31\x04\x69\x67\x2d\x92\xfa\x00\xfe\xfd\xef\x81\x3d\x1b\x8a\x1b\xba\xa6\xb6\x67\x6c\xbd\xdc\xc3\x3c\xad\x50\x13\x85\x54\x0c\x2e\x03\xd4\x4e\xb5\xd2\x12\xff\x4d\x86\x59\x4c\x35\xe6\xe0\x53\x42\x4d\x2a\x75\x5d\xdc\x54\x1a\x4b\x51\x0d\xf9\x34\x3b\x94\x77\x21\xf5\x2d\x7a\x5c\xb5\x80\x39\x96\x0e\x74\xa9\xb0\xf0\x6a\x9c\x30\x7c\x4d\xbd\x31\x34\x44\x0d\x9c\xac\xd9\xe2\xc4\xa7\xb2\xaa\x09\x21\x83\x78\x66\x8b\x45\xc4\x3d\xa9\x42\xe3\xdd\x4d\x89\xd1\xe0\xdc\x45\xeb\xda\x24\x92\x39\xbe\xa2\xf0\x5b\x21\x0a\x7b\x5d\x5f\x39\xae\xb4\xef\x22\x70\x23\x9a\xaa\x28\x70\xb9\x66\xca\x69\x66\x2e\x40\xe9\x08\xd1\xca\x16\x27\x41\x65\x29\xeb\x22\x15\x70\x8d\x37\x2a\x1d\x29\x34\xb7\x36\x05\x35\xc3\x12\xbe\x55\xf4\xf9\x23\xb7\xcb\x52\xe7\xae\x9f\x91\xc5\xdb\xb9\x4e\x91\xa5\x0d\xb3\x84\xd2\xe3\xda\xd8\x17\x83\x63\x5d\x0c\x62\xdf\x17\xa4\x10\xb4\xbe\x5d\x90\x4c\x31\x2b\xec\xb8\xf1\x41\x9e\x2a\x72\xd7\x31\x8b\xee\x5a\x62\x6c\x56\x38\xa8\x9e\x51\x49\x80\x59\x45\xe9\x1a\x6f\x71\x41\x7f\xff\x50\x41\x10\xa5\x6c\xc5\x37\xb2\x10\x53\x7c\xf1\x2e\xb1\x96\xe3\xc4\x11\x7d\xfe\x8c\xd9\x68\xc9\xbc\x77\xe1\x29\xd2\xb8\x51\x67\x59\xba\x21\xf5\xd6\x04\xef\xe6\xc3\x1f\x26\x02\xb6\x11\xa1\x13\xe4\x68\x12\x3e\xb3\xa9\x26\x2d\x82\x9f\x4e\xe1\xef\x84\xd9\x88\x30\xa7\xbb\x2a\x5f\x64\x8a\x8e\x64\xf2\xc4\xb6\x34\x33\x89\xab\x52\x2e\x23\xe6\x26\x93\x0c\xd5\xfc\x56\xc8\xc9\x2b\xff\x50\x0e\x7e\x85\x99\x29\xc0\x2b\xbe\xde\xb7\x2e\x47\x20\x6e\xb1\x37\xe1\x32\xa8\xe6\x49\x8a\x6e\xf0\xfe\xf3\x03\x35\xd8\x14\x18\x39\xf2\xcb\xfc\xce\xc4\x17\x4e\x75\xdc\xf4\x0d\x3e\x2a\xd6\xa8\xce\xc7\x9c\xfa\x97\x29\xfc\x42\x67\x44\x5b\x32\x5f\xe6\x84\x3d\x1d\xe5\x4e\x57\x4b\x4d\xee\x87\x07\xf1\x39\x18\x5e\x1f\x44\xf6\x34\x00\xe3\x4f\xde\xab\x82\x9f\xfe\x49\x60\x5d\xf9\x04\x0e\x55\x33\x29\x78\x56\x50\x94\x95\x0d\x05\xe5\xec\xf5\x2b\x78\x8b\x5a\x56\x15\xd5\x0a\xf9\x7e\xd9\x10\x79\x51\x5e\xcb\x60\xb1\x49\xf8\x58\x29\x96\xd2\x19\x9e\xab\xee\x99\xa5\xe3\x9c\xd7\x57\xee\x82\x42\x19\x3a\x7b\xfd\xca\xf9\x7a\x47\x32\xe4\x8f\x69\x45\xe9\xec\xf5\xab\x99\xf3\xc5\x9f\x51\x94\x52\x52\xd3\x25\x21\x21\x85\xa7\xf7\x93\x86\x61\xcc\xef\xb1\xa4\xdf\x23\xe1\x3e\x07\x0e\xf3\x89\xac\x64\x6f\xaa\xc8\x0a\x17\xb8\x23\xe5\x88\x34\x58\x5d\x65\xd5\x05\x97\x02\x1f\xb5\xa2\xb2\x3c\x93\xbc\xc5\x6f\xe1\x96\xb8\xa8\x4a\x2c\x0b\x8c\xb4\xa8\xa1\xf3\xcc\x7e\xca\x56\xdf\x23\x80\x1a\x79\xf3\x27\xe5\xc6\x9a\x7a\x58\x35\xb5\x10\x5b\x7d\x1d\x81\xd4\x65\x02\x72\x41\x5a\x47\xeb\x71\x28\xf2\x60\x42\x15\xbb\xe3\x13\x74\x4a\xf4\x33\x22\x6e\xd3\x23\xa7\xd2\xdd\x16\x18\xd1\xaa\x68\x20\xc8\xa9\xf5\xcd\xab\x36\x76\xca\xfd\xdd\x8a\x8b\xc7\x68\x43\xa0\xb6\x93\x29\xef\x32\x91\x5f\xe5\xf3\xbf\x0a\xbf\x84\xc7\x5c\x3e\x0f\xc7\xce\xf8\x54\x57\x93\x77\x3d\x6e\xeb\x59\x0f\xbb\x7a\xb6\x6d\x72\x86\x0a\x6e\x8a\x44\xb3\x0c\xed\x9d\x6d\x9f\xcc\x96\xdf\x90\xb5\x4e\x84\x21\xb7\x4d\xef\xbd\xae\x2d\x76\x01\x17\x67\xb1\x83\xfe\x03\xba\xc6\x40\xd7\xad\x9a\x44\xb2\xb4\xb5\x32\x3b\xd1\xa9\x39\x95\x41\xeb\x82\x05\x99\x39\x17\x67\x7b\x3b\xf3\xe5\x42\x8a\x38\x5e\x99\x3c\x3e\xf3\xf9\xc0\xd8\x03\xa9\xc6\x9e\x3f\x4b\xf8\x51\xdf\xaa\xfb\x29\x7d\x2e\x56\x38\x34\x64\x82\x41\xaa\x5a\x51\xe8\xe9\x9a\xe3\x95\x95\x54\xad\x91\x12\x08\xe3\x45\xd0\x73\x6d\x56\xd7\x60\x3e\x76\x10\xa0\xb3\xdc\x92\x1d\xec\xc5\x59\x33\xb7\x37\x86\xa2\x21\x35\x4d\xfc\x5f\x24\xf9\x9b\xaf\x15\x41\x53\x57\x6b\x3d\x06\xbd\xbf\xfb\x91\xa2\xb4\x6f\xce\x07\x13\x3c\xb0\xf6\x2e\xc1\xbb\x1c\x81\x91\x04\xcf\x78\x6c\x0f\x48\xf7\x08\x1d\x03\xc9\x1f\xce\xf4\xc1\xb8\x60\x88\x7a\x89\x42\x01\x5c\x8f\x48\x1f\xc7\xeb\x1d\xd7\xea\xeb\x2e\x1c\xfe\x68\xfb\xfd\x9e\xf0\xc9\x0f\xa9\xe4\xa2\x3e\x9f\x79\x4c\xdc\x20\x9d\x2e\xe4\x47\x04\xb6\x8e\x00\x24\x92\x50\xf3\x39\x4f\xc3\xd3\xaf\x2f\xe6\x80\x6c\xb6\x8c\x22\xb7\x36\x7f\xaa\xe2\x98\x88\x70\x52\xb8\xc5\xfc\xf7\x86\xd3\x45\x9e\xc1\x6f\xbe\x52\xf5\x96\xb4\xcb\x22\x2c\x8d\x3e\xb8\x0c\x63\xa6\x36\xa8\x94\x78\x5b\x40\xdf\x9a\x51\xde\x11\x0c\x3a\xb0\x93\x10\x7d\x42\xbc\x24\xed\xb9\xca\x16\x4a\xa4\x86\x4e\xfb\x23\x84\x93\x23\x2f\xc8\xe7\x22\x7d\x87\xae\xc8\x63\x38\x11\xea\x02\x58\xdf\xd1\x4a\xfe\x2e\xcf\xa7\x88\xe5\xe7\x4a\x24\x46\x77\x13\xf3\x85\x77\x76\x5b\xfc\x10\x76\x50\x00\x11\x1e\xae\x08\x62\xcf\x58\x3f\x06\xc4\x4f\x14\x48\x74\x58\x21\x6d\x69\xa1\xfb\xac\x0d\x05\xa7\x6d\x39\xd4\xa6\xac\x2b\x6c\xc5\x65\x89\xa5\x75\xf1\x1a\xf4\x5d\xc7\xdc\x6e\x03\xec\x14\xda\xda\xb8\x15\xbe\xbe\x7f\xf3\xb3\x41\x41\xac\xe9\x06\x29\x36\x0d\xfa\x65\x4b\x96\x3d\xaf\x10\x04\x45\xec\x1e\x29\xb3\x5d\x3e\x65\x37\x32\x3f\xf0\x2e\xa5\x9d\x92\xb6\xb5\xd3\xba\xa5\x1d\x52\x21\x83\x29\x3f\x54\x98\xde\x21\x71\x95\xc1\x5e\xa6\xe2\x7b\xcb\xf0\x8c\x44\xf6\x4c\x4c\x27\xc5\xf1\x7e\x66\x84\x9e\x75\xbe\x32\x4d\x12\xc0\xd6\xe5\x07\xa1\xb7\x32\x80\x9c\x5b\x30\x6e\x56\x5b\x47\xb8\x99\x57\x4d\x6a\x67\xad\xcf\xbf\xa3\x3b\xb1\xdb\xe5\x05\x7b\x39\x40\x36\xfb\x69\xa7\x59\x40\xf9\x3c\xde\x6e\x91\x1b\x5e\xc7\xd4\xed\xc5\x11\x54\x95\x82\xfd\xfb\x8b\x89\x56\x73\xd5\x36\x7e\xc9\x4b\x5f\xcd\xed\xc9\x78\x33\x39\x5e\x06\x93\x36\xcf\x2b\x0c\x7f\x38\x75\x6d\x64\x1a\xa6\x9b\x59\xd9\x9f\xe6\x96\x3f\xab\xba\x7f\x92\x90\x97\xd2\x98\xf0\x93\x4c\x46\x17\xee\xb8\x48\x9d\xcd\xb6\x49\x25\xd8\x0c\xbf\xf1\xe6\xcd\x2f\x7d\xe7\xcd\x6f\x92\xbc\xf5\x76\x9f\xfc\x9b\x20\xb5\x33\x9c\x8c\x4d\xca\x89\xd3\x27\x03\xe9\x93\x8e\x32\x05\xe4\x2b\x3d\xc5\x25\x2a\x0a\x55\x64\xe5\x4c\x95\x78\xd7\x95\x3a\x1c\x87\xe3\xd7\xe0\xf5\x33\x7d\x2a\x9f\xf1\x79\xdf\xa8\xcb\x63\x93\x9e\xa4\x80\xd0\x71\xdf\xea\x52\x93\xf2\x0a\x9e\x65\x7b\x22\xba\x9b\xc9\x0e\x53\xb5\x63\x93\x5c\xb2\x34\x8b\xb2\x57\x47\x12\x6e\xec\x05\x87\x1c\x8e\xec\x65\x5d\xa9\x7c\xfb\xb3\xe9\x3b\xa8\xfa\xd0\xa9\xfe\xbb\x5b\xc4\x96\x57\x02\x14\xf9\xbd\x79\x9b\xe4\x66\xcb\x1b\x43\x93\x8c\xc7\x71\x93\xb1\xa5\x36\x85\xd7\xfb\xfa\x83\xf1\x8b\x0b\x54\xd7\xd4\x5e\x25\x37\x49\xcc\xb7\x0b\xac\xcb\x3e\x73\xc3\x63\xce\x5d\x75\xe2\xaf\x63\x74\x6c\x6d\x6d\x8e\x3c\x77\x18\xf7\xc0\x36\xee\x28\x43\x12\x3a\xb8\xe7\x06\x13\x54\xe9\x8d\x7f\x36\x55\xfd\x4f\x7d\xbb\x3d\x59\x87\xa3\x73\x0c\xa7\x32\x4b\x38\x90\x19\xc6\xcd\xf3\xb3\x70\x9c\x57\xa2\xbd\xc3\x19\x31\x2b\x39\x4f\xef\xc5\x51\x46\x94\xa3\xb4\x51\x16\xd8\xd4\x87\x09\x1b\xab\x2b\xf1\x9e\xe0\xcb\xd2\xab\xfa\x29\x14\x91\xec\x65\xf3\x52\xcd\xc3\x7c\x69\x8f\x6c\x90\x87\x24\x0b\xdb\xfe\x18\x66\xc7\x46\xea\xa0\xc1\xb7\x41\xf6\xf3\x67\xbe\x3d\x49\x27\x08\x98\xa4\x3c\x3f\x73\xce\x82\x99\xea\x1d\x41\xc5\xa2\xbb\x48\xda\x53\x19\x15\x77\xe1\xdf\xcc\xb2\x58\x36\x58\x1d\x18\x51\x91\x15\xd5\xed\x4a\xba\xee\x08\x24\x75\xa5\x3b\xff\x64\x75\x27\xfd\x9b\xb4\x67\x89\x9d\xd4\x76\x0b\x1a\xb2\x17\x90\x94\xb6\xef\xf3\x48\x59\x75\x6e\x0c\x76\x14\x2b\xcb\x55\x29\x1b\x24\x04\x62\xe0\x1f\xf1\xad\x72\x57\x07\x98\xc2\x17\x8f\xb4\x59\xcf\x5e\xec\xdb\x9d\x54\x98\x27\xf0\xa9\xaf\x17\xf5\x25\x7f\xfb\xbe\xbd\x22\x15\xca\x3d\x85\xd2\x51\x9d\x4a\x35\x4c\xf1\xb3\x12\x4c\xc7\x93\x19\x26\x9d\x90\x83\x19\xce\xc6\x17\xd7\x6d\x8a\x30\xa5\x2b\x23\xd9\x3a\x11\x1a\x45\x96\x85\xf4\x0e\xbc\x67\x27\x34\xb2\x5c\x65\x10\x4c\xed\x96\xe3\xce\x5a\xd4\xa8\xd9\xa8\x22\x30\xe1\x5d\xbb\xa9\x5f\x97\x70\x81\x97\xa9\x00\x69\xfe\x76\x5a\x58\xf7\xbf\xab\xec\xe3\x36\xef\x00\xa4\xc6\x75\xaa\xdf\x7f\x3b\xac\xf8\x3d\x6c\x59\x22\x3d\x07\xcb\x2d\x27\x17\x46\x61\x3a\x23\x3a\x83\xab\x6c\xa7\x43\x5a\x77\x5c\x00\x72\x84\xfe\xe8\x4b\x70\xcf\x95\xb2\x2c\x45\x5d\x41\x72\xd7\x19\xca\x53\x7a\x86\x5d\x52\xd2\xf7\x30\xc0\xee\xad\xb8\x3d\x41\xdf\xde\x98\x07\xd6\xe2\xf9\xc1\x18\x19\xef\xb2\xec\x0f\x23\x98\x9f\x42\x28\xc7\x0b\xe4\xae\x84\xb1\xcb\xb1\x79\x2c\xc1\xbc\x4b\x88\xa4\x23\x8e\xb4\xbf\x6a\x43\x92\x88\xaa\xdf\xbd\x9c\x37\x09\x23\x64\xe1\xad\x2a\xa8\xc7\x9e\xdb\xba\x31\x65\x53\x1e\xdf\x7d\x53\xc5\x9f\xca\xff\x30\x1f\x6e\xbb\xc2\xa0\x9f\xc8\x3f\x0a\x68\xd4\x7b\x3c\xd2\xeb\x0c\x45\x6b\xe8\x94\x8a\xf1\xa6\xaa\x67\xc2\xd1\x7c\x1f\xc6\xd6\x8c\x98\x45\x16\x63\x0f\xa1\x40\xc6\xcc\x6b\xb8\x16\x69\x55\x85\x89\x4f\xa2\x45\x74\x79\x8b\x2f\x5a\xe4\x73\xd1\x22\xb2\x76\x1d\x2a\x4b\x70\x5e\x15\xd2\x8f\x97\xa7\x5e\x23\xd2\x05\xea\x24\x1f\xc9\xaa\x33\x0d\xbe\xad\x37\xb0\xac\x1a\xd6\x5d\xa3\x5e\x85\xf1\x50\x8b\x9b\xaf\x18\x54\xcb\x25\x2e\x2b\xc4\xb0\xb8\xf1\x39\xaf\x65\x5d\x09\xc5\x64\x03\x5e\xbb\x80\xfb\x3d\x84\x92\x02\x17\xab\xa8\x80\x63\x7b\x55\x54\xcf\x73\x08\x3a\x38\xac\x96\x97\xf4\x4e\xe2\x67\xee\x39\x8a\xc5\x11\x64\x2f\x92\xd2\x49\x94\xf2\xc1\x7a\x13\x63\xe5\xb0\x64\x84\xa9\xf4\x0b\x10\xba\x3f\x8f\xa1\xff\xc7\x22\x77\x97\xfa\x7f\x87\x9c\x63\x4d\xc9\x88\x05\x3d\xaa\x29\x19\x33\xaf\x21\xa6\x44\x97\x62\xb7\xef\x2a\x5c\x3a\xfe\xe9\x63\x99\x14\x35\x0b\x69\x27\xab\xe6\x6a\x5b\x7b\x02\x5f\x0c\xca\x43\xb8\xa5\x11\x79\x3e\x5f\x87\xb4\x77\xaa\xd1\x4c\x77\xee\x8a\x8e\x9a\xc2\x63\x29\x8f\x71\x93\x1a\xa2\x39\x94\x92\x70\x1f\x69\x0b\xd5\x85\x3a\x79\x91\x36\x70\xa8\x9e\x30\xb5\x23\x6c\x76\xa1\x7e\xee\xd8\xd4\xd1\x8d\x9e\xfb\x4a\x1f\xd9\xc9\x19\x9e\xd4\x75\x58\x2b\xf7\xf3\x3e\x91\x83\x44\x79\xbf\x7b\x1c\xa9\x59\x2c\x7c\x1a\xd6\xcb\x4f\x60\x08\x9b\x99\x84\xd3\x4f\x15\x34\xd1\x13\xd8\x4d\xdc\xe4\x8b\x85\xda\xa1\x85\xf2\x73\xe9\xac\x11\xc8\x90\xac\xcf\x14\x58\xdc\x27\x9e\x0c\xb4\xf9\x71\x61\x97\x4f\x66\xeb\xb6\x5c\xe6\x4e\x2d\x9e\x4f\x02\xa1\x70\xb6\x9c\xd6\x48\xcc\x3f\x96\xf6\xda\x62\x35\xe3\xf4\xda\xa7\x0a\xe3\xe8\x09\x7c\x89\xe4\x7c\x6e\x6a\x4d\x46\x72\xd6\x3d\x8f\x49\xcb\x47\x08\xd4\x65\x35\x4d\x4c\xce\x30\x3a\xae\x93\x83\x9d\x8d\xf7\xa0\x46\xa6\xb3\x7f\xe2\x70\xce\x56\xaa\xbe\x67\x5f\xfc\x27\xd5\xf5\x03\x0d\xc0\x36\x8b\x3f\x3c\x04\xf3\xf0\xbb\xe1\x2f\xcd\x1a\xb9\x7b\x62\x61\x38\xb1\xef\x44\x5c\x37\x7c\xa7\xe0\xea\xa3\xc4\x0c\x52\x06\x3f\x84\x0f\x21\x87\x85\x67\x92\xb9\xb7\xad\xd5\x44\x3e\xdf\x88\xd4\x18\x03\x3b\x96\xec\x9f\x9b\x85\xed\x33\xb9\x63\xd7\xf7\xa0\x2c\xfd\x90\xec\xbc\x3b\x56\xce\xa5\x32\x9f\xd6\x84\xe2\x36\x28\x31\x2c\x3e\xa4\x9e\xb3\x41\xb5\xb3\x51\x1a\x67\x63\x0a\xba\xec\x72\x5d\x1b\x3b\x23\xb6\xe5\xc1\x8b\xe0\xf6\x05\x57\x8d\x5b\x59\xc5\x53\x75\x37\x27\xfa\xde\x1c\x48\x9c\xd8\x1b\x55\x02\x77\x0a\x4c\x0f\xf2\x6c\x0a\xbe\x2e\xc1\x75\xc3\x1e\x44\xfd\xcf\xf0\x5e\xfc\xf6\x3b\xaf\xa5\x1f\x8d\xd7\x55\x43\xc2\x9b\x47\xf8\xb0\x55\xea\x4b\xfb\xb4\x55\xfa\x7b\x13\xd7\x82\x63\xf1\xf8\x73\x5f\x09\x0a\x75\x15\x4c\x70\x8a\xcd\xe6\xe4\xae\xf5\xba\x61\x55\xed\x06\xb5\x16\xe8\x06\xc3\x25\xc6\xd6\x63\x6e\xa6\x9c\x6d\x45\x11\x78\x79\xb9\xc4\x93\x0a\xca\x10\xc3\xb3\x41\x8f\xff\xbb\x57\x20\xa2\xc5\xe0\x12\xbe\xe5\x4b\xe9\x7a\x3d\xbc\x27\x36\xd1\x47\x35\xeb\xc7\x77\x4d\xa3\x37\xdd\xac\x63\x29\x5a\x85\x0f\x5f\x4a\x66\x3b\x72\xbf\xa5\x68\xa0\x43\x97\xf2\x68\xd1\x0b\x3b\xc8\xb0\xe7\x09\x52\x70\x4a\x4c\x59\x4b\x36\x16\x56\xce\x6b\x8d\xab\x0c\x9c\xda\xb2\x27\xc9\x62\x03\xb9\x69\xb3\xec\x65\x7e\x0b\x71\xec\x9d\xfe\x24\x4a\xdc\x81\x66\xe1\x53\x33\xb9\xf8\xc8\x40\x74\xa4\x97\xa7\xee\x8a\x8a\xc9\x82\x42\x84\x53\x1d\x46\xa5\x1c\xea\xad\xd2\x9c\xac\x9b\x32\xfd\xec\x41\xf4\xd1\xa7\x7e\x45\xa2\xdf\x9f\xbb\x6f\xed\x0d\x50\x46\xbd\xfb\x61\x4e\x5d\x97\x8b\x11\x75\x39\x49\x6f\x58\x2b\x26\x1f\x87\x6f\x38\x57\xc9\xf7\x1a\x72\xc2\xb9\x8b\x0b\xf4\xf0\xb0\x97\xe8\xa1\xfb\x22\xbd\x2c\x9f\xd1\xe2\xb9\x74\x77\x06\x14\x65\x82\xc1\xf7\xe0\x9f\x74\x5c\x84\x07\x55\xcb\xc8\x9c\xae\xa8\x24\x51\x1d\xcb\x01\x61\x3f\x93\xdd\xaa\x79\x94\xe9\xaa\xaa\x12\xfd\x80\xaf\xd0\x77\x1b\x86\xe9\x5b\xdc\xca\x74\x57\x5c\x8a\x92\x10\x4f\x8e\x41\xbc\x7e\xd4\x91\x5d\x1e\x4e\x44\x31\xa0\x3b\x4a\x89\xe7\x7c\x59\x42\x26\x4f\x82\xe6\xfb\x5b\xd2\x2c\x2e\x28\x99\x9a\x5c\xa7\xaa\xc8\xcc\xde\x94\x37\xb8\xec\x48\xbf\xbd\x4b\x7e\xda\x5d\xa5\xa0\xa3\x6e\x42\x30\x8b\x49\x57\xc4\xa3\xfb\xd1\xb8\x78\xa2\xa3\x3c\x3b\xa3\x47\x52\xcf\x95\xe2\x8c\x47\x17\x7e\x77\x4f\x6f\x4e\x27\xd9\x3e\xaa\x23\x97\x5e\xc3\xa3\x3a\x71\xb9\x29\x0c\xf5\x7a\xc2\xfe\x9f\xc0\x79\xcb\x4d\x61\x8c\xe3\x36\x3a\x5c\x03\x7e\x4c\x63\xc0\x7b\x8e\x29\x08\xda\xef\xa0\xf1\x4b\x86\xf0\x67\xf3\xc1\x2c\x26\x12\x0e\x58\x47\xd1\xa4\x61\x38\xf8\x24\x8e\xd7\x3d\x9e\xbd\xc4\x5b\x3d\x7a\x99\x3d\x05\x7a\x85\x19\x8b\x62\x31\xee\xd1\x90\x28\xb9\x55\xd7\xea\xf2\x4e\xa9\x8e\x84\xea\xda\xe4\x1c\xca\xe3\x1f\x3a\xf8\xfc\xc7\x54\xb3\xbd\xc2\x4c\xd6\x4c\xa1\xfb\x93\x23\xf8\x45\x46\x45\x42\xdf\xc8\x54\x62\x3b\xa3\x4e\x9b\xe3\x48\x28\x66\xd7\x78\x43\x93\x61\x89\x7b\x70\x37\xef\xfe\xab\x7f\x75\xaf\x87\xb3\x3b\x42\xa6\xb2\x93\xae\x12\xe3\xc1\x9d\x19\x54\x24\x58\x59\x2d\xe3\xd7\x14\x90\xf8\xb3\x34\x3b\x2b\x0c\xce\xd0\x6a\x85\x9b\x72\x3f\x86\xb5\x65\xb9\x2e\x09\x76\xc8\x09\xa3\x66\x23\xe7\xc2\xa8\xc3\x4b\xd1\x69\xe2\x76\xec\xe4\x57\xf7\x39\x82\x5f\xdc\x0f\x46\x73\x96\xdd\xf8\x4a\xe6\x0a\x3b\x3b\x36\x83\x46\x63\x1d\xc3\x2f\xff\xf0\x71\xa6\xf3\x86\x2e\xce\xf8\xda\xd4\xc8\xf9\xd0\x98\xa0\x6f\xc7\x26\xfc\xc5\xac\x4a\xbc\x6f\xe8\xce\x49\x53\xdb\xc3\x4a\x9f\x15\xbc\x38\x7b\x12\xde\x7d\xfb\x13\x48\x95\x59\x62\x56\xbc\x82\x16\x09\x39\xcb\x81\xec\x06\x27\x40\x0d\x91\xd9\x78\x8a\x1d\x5f\xa6\xa5\xb8\x0b\x6a\x16\x62\x16\xda\x28\x76\xe9\x58\x49\xc0\x43\x99\xd9\xe5\x6e\xc2\x6e\xa5\x77\xdc\x69\x8f\x51\x3e\x3f\x8a\x1a\x21\x7c\x7f\xae\xb5\xcc\x2e\x8d\xd9\x49\x5d\x9b\xc8\x04\x57\x3e\x1d\x91\x8b\xac\x2e\x6a\xe6\xa4\xaf\x67\xac\x59\xc6\xd9\x48\xb7\xe7\x50\x9d\xa4\xe7\xa6\x79\x64\x44\x50\xe6\xcf\xa7\x4c\x3e\xa1\x89\x1e\x89\xe2\x84\x1d\xbf\x87\x21\xef\x28\x51\x9c\x12\x26\x5b\xf9\x2d\x29\x51\x3b\x32\xe9\x27\x75\xed\x1f\x02\x65\x24\xcb\x6b\x94\x12\x2f\x2f\x12\x3f\x08\xc6\x16\x82\x16\xba\x0c\x83\x84\xad\xe7\x70\x6c\x2b\x3f\x80\x83\xa8\x76\x7c\xac\xf6\x24\x61\xe8\xfc\xf3\x0d\xc5\xba\x7c\xe0\x3f\x9f\xd8\x7f\xf1\x21\xb6\xf3\x21\xb6\x61\xb5\xfb\xbb\x13\xe9\x90\x22\x0c\x67\x49\xfd\x73\x5f\x0f\xa4\x43\x6b\xbe\xc2\x8c\xaa\xd2\xee\x14\xea\x8a\x32\x20\xf3\xf8\xa5\x90\x66\x4e\xda\x25\xea\xd3\x83\x7e\x0d\x62\xb1\xbb\xf9\x43\x2a\xa0\xa3\x44\x1d\xfc\xbb\x80\x5e\x6e\x81\xe7\x20\xe2\x1a\x4e\x5e\x97\x41\x30\xb1\x01\x53\x41\x48\xe9\x76\xd5\x2f\x56\xe3\xde\x52\xf6\x20\x63\x3a\x28\x16\x71\xa7\xa8\xd2\x1c\xd1\xa7\x2c\x5c\x39\xa2\xc6\x8e\xa3\xa3\xaf\x41\x8d\xc4\x10\x47\x41\x36\x84\x09\x8d\xe8\x87\x83\x61\x50\xf6\xc5\x11\x7c\x47\x88\x5b\xb1\xb0\x96\x15\xc7\x05\xa9\x8e\x85\x41\x52\x55\xa0\xe3\x63\x2d\x1d\xab\xf2\x90\x22\x8f\x72\x50\xea\x19\x86\x2b\xcc\x9e\x3f\x8b\xb0\xf8\xad\x28\xf9\x38\x8b\x3e\x7f\x2b\x5e\xf8\x14\x8f\x71\x3c\x49\x9f\xf5\x74\x17\x4a\xe6\xf8\x8f\x80\xba\x27\x3b\x9a\x47\x12\x2b\xd8\x3a\xd5\x64\xcf\x61\xac\x14\x33\x64\xf3\x49\xd5\x8d\x61\x95\x7e\xec\xa6\x41\x25\x64\xe3\x63\x94\xc2\x16\x91\x7f\x62\x4e\x94\xbe\x90\xd6\x27\x6d\x9c\xff\x37\x84\x68\xf7\x25\xd9\xf7\x5f\x08\xb6\x2d\xc1\xc6\x92\x6b\x68\xf0\x56\x1b\xaa\x68\x62\x53\xae\xaf\x49\x83\x95\x7e\x9e\xe5\x68\xaa\x83\xb9\x09\x52\x26\x82\xbb\x5f\x88\xc9\x89\xe9\xc6\xc0\x87\x10\x72\x4c\xf8\xf4\xde\x04\xf5\x22\x41\x29\xaa\xe6\xc2\xab\x5f\x68\xab\x68\x9b\x28\x37\xdf\x43\xe0\x51\x21\xaa\x7b\x53\xd8\x0d\x59\xa5\x08\x3c\x30\x84\xf5\x85\xde\x8a\xde\x5e\x08\x70\x08\xb9\xb7\x0a\xa2\xec\x82\xec\xfe\xbe\x6c\x20\xed\xb3\x41\x96\x2f\x0c\x60\x19\x20\x08\x57\x85\x5c\xf0\xaa\x26\x97\xa8\xb6\x65\xb9\x1d\x66\x48\x3e\x24\xc9\xd9\x42\xb3\x83\x2e\xa2\x48\xd5\x53\x4a\x25\x5c\x6e\x84\xb3\x25\xb1\xfc\xd5\xd0\xbd\x52\x62\x3f\x99\xe0\x80\x81\xfb\xcb\x2f\xb4\x57\xb4\x8f\xb6\xe8\x21\xe9\xcf\x30\xc3\xed\xb2\x6a\x30\x15\x3b\xe0\xc6\x7d\x2d\x94\x62\x06\xeb\x95\x7c\x84\x0d\xe5\x1e\x4e\x49\xed\x79\xd5\x70\x7f\x43\x37\x38\x4e\x23\x48\x50\x75\xfb\xfd\xad\x5a\xfe\xae\x29\x55\x2c\x70\x71\x1d\x23\x4b\xbe\x1c\x48\x01\xc1\x65\x2b\xf2\x2c\xf0\x2d\xe0\xe5\x8a\x6d\x12\x4c\x6e\x1f\x23\x96\x97\x3c\xf8\x3c\x29\x54\xe6\x3e\x4d\x81\xea\x5a\x65\x80\x84\x28\x94\x0f\xd8\xc5\x98\xf3\x92\xdf\x8e\xc0\x46\x14\xb7\x78\x2f\x71\xea\x06\xd5\xc6\xc0\x9a\x82\xbb\x4f\x9a\x89\xff\x6c\xfd\xff\x09\x3c\x8b\xbf\x96\x83\x7c\xfb\x62\x72\x04\x7f\x8d\x23\x34\x7f\x84\xc4\x7c\x7e\xa0\x1f\x05\xec\x45\x81\xf7\x67\xb0\x24\xe7\x0f\x8f\x90\x55\x53\xb1\x7d\x37\xcb\x29\xcd\x0f\xce\x4b\xa3\x70\x0c\xe6\x75\xc9\x48\xd0\x7a\xc0\xbc\x6d\xab\x1b\xc4\x0c\x98\x95\xfc\x73\x3c\x18\xc3\x9d\x02\x8a\xf8\x2b\x03\xe4\x6e\xef\x6e\x0f\xfe\x2f\x00\x00\xff\xff\x36\xab\x70\xb3\xd8\xda\x00\x00" +var _flowstakingcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x1b\x37\xb2\xf0\xbb\x7e\x45\xdb\x0f\x8e\xb8\xa1\xa8\xd4\xf7\x9d\x3a\x75\x4a\x65\xc5\xab\x48\xb2\x57\xe5\x24\x76\x7c\xd9\x3c\xa4\xb6\xb2\xd0\x0c\x28\xce\x6a\x38\x60\x06\xa0\x14\x9e\xac\xfe\xfb\x29\xdc\xef\x73\xa1\x28\xd9\xa9\xb5\x1e\x6c\x89\x04\x1a\x40\xdf\xd1\x68\x34\x0e\xff\xb2\xb7\x07\x00\xf0\xb2\x26\xb7\xef\x19\xba\xae\x9a\xab\x53\x52\xd7\xb8\x60\x15\x69\xe4\x57\x1f\x16\x15\x85\x82\x34\xac\x45\x05\x83\x12\xcf\xab\x06\x53\x40\x50\x98\x76\x30\x27\x2d\x50\xd9\x1b\x50\x53\x42\x89\x6b\x7c\x85\x18\xff\x93\x5c\xfe\x0b\x17\x8c\x0a\x48\xb7\x8b\xaa\x58\x00\xaa\x6b\x72\x4b\x61\x4d\x71\x4b\x81\x11\xd1\x11\xbb\xdd\xb0\x80\x87\x28\x2c\x51\xb3\x81\x86\x94\x7c\x38\x0a\x6c\x81\x37\x70\x8b\x1a\x06\x55\x03\x08\x68\xd5\x5c\xd5\x18\x50\x51\x90\x75\xc3\x66\x62\x80\x0b\x06\x62\xae\xcb\x15\x62\xd5\x65\x8d\xe1\xb6\x62\x0b\xde\x11\x6a\x52\x5c\xe3\x12\x18\xb9\xc6\x8d\xee\x03\x14\xb3\xf5\x6a\x26\x57\xf9\x1e\x63\xd1\x90\x34\xf3\x9a\xdc\x1e\xf2\x7f\x0e\x0a\xd2\xe2\x03\xbd\x72\x0a\xef\xce\x4f\xce\x7e\x38\x17\x93\x5b\x92\x16\xc3\xa2\xba\x5a\x40\x8d\x6f\x70\x0d\x55\x33\x27\xed\x12\x09\x64\xa0\x4b\xb2\x66\x02\x96\x46\x89\xc5\x14\x1f\xec\x2f\x87\x7b\x7b\xd5\x72\x45\x5a\x06\x2f\xd7\xcd\x15\x9f\xe7\x07\x31\xad\x79\x4b\x96\xf0\xd4\xfb\xec\xa9\x69\x59\x93\x5b\xaf\x95\xfe\xdb\x6b\x71\x71\xf6\x01\x5d\xd6\x58\x11\xd2\x69\xea\x7f\x61\xfa\x7c\x2f\xb0\x22\xe0\x50\xd9\xfa\x9b\xdf\xbf\x7f\x73\xfa\xfa\xfc\xec\xc3\x9b\xd7\xe7\x3f\xbe\x3f\x39\x3b\x7b\x77\xfe\xfe\xbd\x3b\xc4\x7b\x46\x5a\x74\x85\x5f\x62\x6c\x7a\xbc\xfc\xfe\xcd\xcf\xef\x3f\xbc\x79\x77\xf2\xea\xfc\xe5\xf9\x79\xaa\xd3\x69\xbd\xa6\x0c\xb7\x3f\x9d\xea\x2e\x3f\x9d\x26\x5a\x9d\xbd\x7e\xa5\xbf\x3f\x7b\xfd\x2a\xd1\xe0\x7c\x45\x8a\x85\x6e\x72\xfe\xf6\xcd\xe9\xdf\x74\xa3\x3d\x54\x14\x98\xd2\x7d\x54\xd7\x13\xcb\xab\x49\xa6\x86\x3f\x24\xc1\x0f\x0f\x0f\xe1\x44\x31\xc2\x0a\xb1\x85\x64\x51\x17\x4e\x8d\x19\x44\xdd\xd5\xfa\xdf\x22\xb6\x38\x02\xe7\x8f\x61\xbd\xdf\xb6\xd5\x0d\x62\xaa\xb7\xf3\xc7\xc0\xde\xeb\xcb\xba\x2a\x54\x67\xf3\xbb\x5d\xce\xf9\x0d\x6e\x58\xbc\x0e\xcc\x3f\x86\x1f\x49\x89\x4f\xca\x92\x93\x3b\x02\xbc\xcf\x85\xec\xe2\x8c\x2f\xa8\xad\x9a\xab\x29\xb4\xa4\xc6\x47\xf0\xf1\xa2\x61\xff\x33\x05\xb4\xe4\x48\x3a\x25\xcb\x65\xc5\x18\x2e\x8f\xe0\xe3\xcb\xea\xf7\xff\xfe\xaf\x29\xa0\xb2\x6c\x31\xa5\x47\x70\x22\x7f\x79\x31\xc9\x8c\x7d\x26\x05\x9b\xb4\x83\x27\x50\xea\x1e\xfc\x43\x3e\x8f\xff\xff\xff\xc6\x4d\xa4\x03\x0b\xef\xf0\x92\xdc\xe0\xf2\x65\x4b\x96\x63\x31\x31\x7a\xc1\xa3\xc6\x4a\x2f\x7a\xf0\xda\x7e\x40\xc5\xa2\x6a\xb0\x62\xea\xd3\x16\x23\x86\xcb\x71\x0b\x9a\x58\x66\x7a\xcf\xda\x75\xc1\xf5\x18\x62\x40\x19\x69\x31\xb5\xf3\x83\x8b\x33\xa1\xf2\xa2\x89\x50\xd9\xe9\xcc\x2e\x84\xc2\x1f\xa2\x55\x8a\xc1\x0d\xbc\x1f\xbd\x39\xf6\xb7\xb7\xf8\xd9\x33\x8d\x6f\x2a\x7c\x0b\x55\x53\xb1\x21\x68\x9d\x38\xb3\xe2\x3f\x14\xd7\xf3\x59\x30\x1d\x38\x06\x09\xa9\xa3\xa5\x68\xe5\xfc\x65\x9a\xde\xed\xc9\x7f\x0d\x3a\x4f\x49\xc3\x50\xd5\xd0\x84\xa9\x40\x62\x9c\xaf\xb8\xbd\x13\x04\xd4\x6a\xc9\xf4\x95\x76\xb3\xe2\x46\x97\xe2\x82\x34\x25\x6a\x37\xc6\x88\x09\x02\x55\x14\x48\x53\x6f\x60\x89\xb9\x7d\x64\x04\x16\xa4\x2e\x4d\x7f\x6e\x8b\x7e\x3a\x05\xd2\x02\x57\xb1\xd2\x22\x0b\x83\xcb\x35\x37\x6f\x8d\xd6\x8c\xf0\x29\x15\xa8\xae\x37\xb0\x42\x1b\x61\xe4\x58\x8b\x1a\x8a\x94\x85\xc7\x98\x1a\x78\x2d\xae\x39\x6b\xf1\x9e\x0e\xd8\x15\x6e\xc5\xaa\xe8\x2c\xc7\x16\x3e\x83\x5e\x34\x73\xd2\xc1\x1c\xcd\x30\x9e\x70\xd8\xd9\xb4\xe1\xe8\x46\x2b\x74\x59\xd5\x15\xdb\xf0\x59\x72\x04\x88\xb5\xfe\x1d\xad\x6b\x81\x1f\xe1\x84\x48\x83\x7f\xdb\xe0\xd6\xed\xca\x88\x70\x1b\xca\x16\xdd\xf2\xb5\x95\x78\x45\x68\xc5\x14\x98\xaa\x35\x54\xd2\x04\xa8\xe6\xd0\x60\x5c\xe2\x32\x9c\xa3\xb6\x43\x72\xa2\x4b\x6f\xf1\x62\x22\x6f\x5b\x72\x53\x95\xb8\x3d\x72\xa6\xfb\x1c\xad\xd9\x62\xdf\x73\x02\x66\x3f\xab\xe9\x70\x13\x3e\x81\x67\xc6\xf6\xcf\x04\x94\x6f\xad\x0c\x24\xd9\xdf\x13\xf8\x87\x9b\x45\x28\x52\xab\x16\x07\x9f\xf0\x9f\x8e\xf1\x67\xc5\x02\x17\xd7\xfb\x93\x23\x78\x7a\xd1\xdc\xa0\xba\x2a\x85\x01\x07\xe9\xf6\x48\xca\xe9\xb6\x4f\x3d\xc0\x77\xb1\x84\x36\x7d\x22\xcc\xb1\x02\xc7\x02\x39\xf1\x97\x1d\xb3\x84\xe3\xae\x35\x38\xf2\xef\xb2\xd4\x2b\xcc\x84\xff\xaa\xf5\x2d\x90\xb9\xf8\x33\x60\xa5\x24\x93\xcf\xd7\x0d\x5c\x61\xa6\x14\x34\x47\x8f\xfa\x35\xc0\x6e\x8b\xd9\xba\x6d\x7a\xe7\x3f\xbb\x24\x6d\x4b\x6e\xf7\x27\x4f\x66\x82\xf3\x9f\xcc\xd4\x9c\xf2\xaa\x4b\xba\x1a\x50\x35\x0c\xb7\x73\x54\x60\xa9\x72\xa4\xff\x5e\xa0\x06\x56\xfc\x7b\xba\x90\x3a\x43\x88\x48\xec\xf8\x1a\x60\x94\xc8\xee\x84\x2d\x74\xff\xdf\xd6\xb8\xdd\x04\x3d\x93\xd6\xa5\xc5\x94\xac\xdb\x02\x3b\x53\xc9\xf8\x48\x19\xbd\x72\x83\x5a\xb5\x13\x90\x3e\xef\x47\x6a\xbd\x88\x6c\x87\x75\x33\xaa\x0b\xa7\x17\x2a\x4b\x6e\x43\xde\x08\x4d\xbb\xff\xab\x60\xc2\x23\xf8\x6b\xec\x89\xcf\x78\x33\xfe\x3b\x6e\x43\xd9\xe4\xea\xf1\x28\xa1\x32\x95\xcf\x91\x19\xd6\x58\x5e\x33\xb6\xb1\x4e\xf9\x09\x98\x4e\x13\x87\x69\x43\xe0\x4a\x0f\x7e\x20\xfe\x94\x22\x75\xc3\xdd\x73\x35\x94\xa3\x1e\xd2\x93\x16\x36\x5b\x00\x27\x98\x0a\x34\x9c\xff\x5e\xd1\x41\x16\xfc\xc5\xe4\x08\xbe\x23\xa4\xee\x92\x19\x69\xc7\x85\xcc\xfc\x22\x41\xfd\xa3\xab\xb9\xeb\xb5\x88\x3e\xee\x07\x9d\x3d\x4f\xea\x5a\x8c\xd5\xcc\x89\xe8\x98\xc1\x33\xff\xbe\x0f\x8e\x1d\xb3\x03\x98\xd7\xa8\x13\xa2\x4f\x2c\xb1\xac\x3f\x24\x2a\x52\xbc\xe5\x89\xbe\xe7\x60\x36\xac\x62\x35\x5e\x72\x37\xd3\xca\xda\x1b\x61\x3a\x8d\x68\x7f\x58\x60\x2b\xa2\xca\x6f\xe4\x9c\x4d\xa5\xff\xc8\xb7\xed\x52\xc8\x95\xba\x53\xbb\x7f\xd2\x62\x03\x02\xd5\x75\xa0\x08\x54\xfc\x40\xb8\x2b\x45\x64\xd4\xd5\xb6\x5e\x9b\x62\xd9\xd8\x40\x7b\x8d\xf1\x8a\x72\x37\xa6\xb8\xe6\x1a\x77\x41\x6e\x65\x48\x41\xf7\x6a\x4a\x23\xdc\x32\x32\x40\x01\xb5\x72\xdb\x8e\x4b\x57\x63\x55\x0c\xae\x1b\x72\x4b\x95\x27\xa6\xda\x32\x02\x57\xd5\x0d\xd6\x73\xe1\x0a\x11\x6e\x17\xb8\x91\x91\x0a\xed\x37\xf0\x51\xb4\x3f\x61\x60\x96\xd5\x7c\x8e\x5b\x8e\x4d\xb6\x59\x61\x69\x0f\x04\xd0\xbc\xce\x8b\x34\xdd\x51\x87\xf2\x73\xe4\xf8\xd0\xae\xf1\x86\x4b\x62\xc8\x2d\xdc\x60\xf8\x8a\x4e\x08\xec\xce\x7c\x12\x3e\x83\xe4\xf8\xc2\xb3\xad\xea\x1a\x2e\x31\x34\x55\xcd\xfd\x28\x61\x22\x15\x2d\x17\x88\x42\x43\xa0\x20\x6d\x8b\xe9\x8a\x34\x25\xe7\x06\x9f\xde\xf9\xa5\xec\x6e\x21\x2f\xfc\x95\xbc\x97\x3b\xa1\x90\x3b\xb9\xe9\x53\x81\x2a\x1b\xc7\x22\x2d\xf5\xfa\x9e\xa2\x46\x7a\xe9\x6b\x8a\x81\x34\xd8\xd9\x4f\xad\xb0\xec\x0f\x8e\xab\xc2\xbb\x70\xc7\x92\xf3\xd7\x25\x86\x95\x8c\x16\xa8\xa1\x6e\xe1\x12\x17\x88\x03\x12\xcc\x56\x90\x75\x5d\xf2\x56\x6b\xea\xa0\xc9\x61\xa9\x24\x96\x1a\x63\x7c\xe8\x11\xfc\xd5\xe8\x85\x4e\x33\x75\xd7\x0d\xce\x68\xa6\x21\x10\x4d\xe3\xbb\xbd\x00\x51\x82\x60\x56\xcc\x05\x41\xfe\x46\x6a\xee\x7f\xa9\xed\x8b\x54\x26\x96\xb7\x43\x96\x70\xc2\x3b\x54\xc8\x9f\xdc\x69\x05\x0a\x43\xf0\x5f\x43\xd4\x0e\x17\xd8\xa2\xa2\x53\x2e\xed\x0e\x5f\xe6\xd7\xcb\xec\xac\xc6\x30\xd9\xd4\x0b\xbb\xcd\xc4\x7f\x6f\xcc\xe6\x69\x02\xcf\xe2\xaf\xe5\x20\x21\x2f\x7e\xe0\x8a\x8d\x0e\x52\x6b\x3a\x1a\x89\x5b\xbe\x55\x94\x4c\x22\x82\xac\x46\xdf\x1a\xee\x3d\x14\x7b\x9e\x24\x03\xff\xcc\x95\x5b\x21\xc3\x2f\x1c\x42\x83\x6f\xd5\x00\x53\x88\xd5\xe8\x9a\xe2\x12\xe6\x55\x4b\xd9\x14\xe6\x84\xef\xb7\x70\x09\x97\x9b\x70\x6e\xf1\x08\x5a\x5b\xf2\x21\x34\xf8\x94\x9e\xd6\xed\x9a\xd4\x28\x9d\x22\xf0\x20\xce\x60\x8a\x36\x09\x27\x9f\x02\xa2\x94\x14\x95\xd8\x41\x8b\xf8\xb4\x40\x7d\x9e\xcd\x7c\xb7\x90\xf6\x18\x70\x7f\x2f\xe8\xed\x10\x76\xa9\xdf\xa7\x1e\xe4\x4f\x20\x09\x7a\xe8\x61\xdb\x4e\x6f\xe9\x99\x8d\xa6\xb3\x3c\xc7\xd3\xe8\xdd\x69\x7a\xa0\xe1\xd8\x1f\x6a\x2f\xbd\x33\x55\x4a\x17\x9e\x1f\xc0\x1f\x99\xcd\xab\x55\xa4\xaa\x55\xdc\x2c\xe4\x44\x38\x86\x6f\x66\xdf\xe4\x67\x18\xb5\xf4\x9a\x1e\x1e\xc2\x45\x6c\x81\x43\x8d\x39\x15\x7c\x55\xa1\xba\xfa\x5f\x0c\x95\x70\xe1\xf8\xee\x7c\x21\xc8\x12\xc2\xe3\x9a\xc8\x35\xfd\x0e\x5a\xbd\xa6\xd5\x5c\x44\x48\x1c\x2e\x7a\x73\xf9\x2f\x38\x76\x3f\x48\xd0\x54\xac\xcd\x6d\xe2\x75\xd8\x8b\xda\x1f\x1e\x82\xdc\xfb\x2a\xa9\xe4\x16\x44\x4c\x7e\x89\x1a\x74\x65\x2d\x8b\x38\x5f\x48\x38\x97\x29\x80\xdc\x05\xc4\x4c\xc9\x6c\xe0\x94\x76\x2e\x99\xff\xf0\x35\x3b\x94\xf9\x41\x4d\xe3\x38\x40\x84\xb3\x63\x97\xbf\xb9\xad\xf7\x27\x69\xbc\xf8\x3c\x19\x8f\x32\xf3\x7d\x31\xfe\x73\x07\xb8\xa6\x29\xe1\x49\x20\xda\xb5\x8b\x1d\xe3\x86\xcd\x52\x5c\x1c\xa8\x37\x38\x76\x45\x22\x74\x0c\x6a\x42\xb1\x36\x5a\xd2\xa0\x51\xb8\xc4\x73\x6e\xbb\x4b\x4c\x59\x4b\x36\xdc\x68\xe0\x1b\xdc\x6e\xd8\xc2\x0d\x1b\xca\xfd\x89\xb0\x7d\x58\xaa\xe5\x82\xc3\x12\x82\x08\x4b\xcc\x16\xa4\x9c\x2a\x4f\x5f\xd8\xfe\x15\x6a\xaa\x42\xb9\xa4\x2d\x56\xdb\x02\xfe\x85\xb2\x3f\x72\x8f\x20\x4e\x22\x9b\x8d\x0e\xe7\xb8\x67\x9d\xfc\x47\x4d\x69\x3f\xd4\x51\x36\xbc\xc9\x97\x2b\xb0\xe0\xee\x56\xa3\xb6\xa5\x1b\x4e\xb7\x1d\xfc\xfd\xaa\x8f\x5a\xed\x90\x8a\x40\xbd\x19\x2c\x43\x5b\x8b\x0a\xb3\xf3\x96\xff\x07\x3b\xef\xa6\xaa\x27\x5d\xf4\x9c\xbb\xae\x83\x1c\xb9\x4c\x9f\x04\xf4\x0d\xef\x74\x0b\xc3\xf2\xc1\x9c\x92\x2d\x2f\xce\x3a\xe7\xa9\xe8\x12\xe9\xe3\xee\x46\x67\xb1\x53\x14\xf9\xad\x75\xcd\x8d\x7a\xe0\x26\x29\x96\x71\x0e\xc9\x67\x2a\x22\xe8\x1c\xbc\xe2\x8a\x73\x1a\x90\x16\x2e\x09\x5b\x48\xe5\xe1\xfb\x46\x1f\x39\xe7\xfa\x5e\x90\xf2\x7b\x18\x1f\xd0\x78\x48\xd5\x5c\xf0\xa4\x38\xa2\xb6\x7c\x9b\x0e\x51\x4b\x2f\x43\xc5\x0a\xa4\x7d\xd8\x97\xa7\x6c\xda\xad\x99\x70\x3f\xde\x37\xe1\x42\xba\xef\xdc\x5d\xa6\x66\xd4\xd0\x16\xc6\x06\xd2\x2a\xb3\x6c\xe7\xef\x50\x8d\x9a\x02\x87\xa6\x74\x76\xa9\x3e\x3f\x08\xcf\xa1\x67\xcb\xaa\xa9\x96\xeb\xa5\xfa\xe8\x1d\xa6\xb8\xbd\x41\x36\x81\xc1\x22\x51\x59\xb8\x16\xcb\xc3\x94\xd0\xb4\xa9\xed\x94\xaf\xc0\x05\x8e\x43\x73\x15\xe9\xba\x27\x42\xd9\x85\x38\x01\x4f\xcb\x7b\x58\x71\x3e\x7a\x92\x41\x8a\xdf\xdb\xa2\x65\xa7\x48\x11\xcc\x40\x29\x6e\x03\x67\xd1\x7c\x27\xb8\x01\x9e\x1f\x07\xd3\xf8\x3a\xa4\xd7\x34\xd9\x7d\x89\x29\x45\x57\x58\xb8\x5a\x74\x3d\x9f\x57\x45\x25\xa2\x1e\x84\xa1\x1a\xd0\x0d\xaa\x6a\xee\x08\xca\x40\xbf\x5a\xcb\xd3\x08\xd0\x24\x69\xcc\x2f\xe6\xc6\x12\x28\x71\x28\x50\xc3\x37\x6d\xad\x3c\x73\x95\x72\x25\xe7\x38\xb5\x47\x3a\xdc\x29\x51\xb1\x72\xb6\xc0\xcb\x08\x72\x35\x87\xfd\xcc\xa2\x43\x3d\xae\x7f\x72\xde\x58\xfa\xf3\xaf\x15\x4e\xe3\x45\x81\x0d\xe3\x3f\x3f\x70\xa9\xac\x27\x6f\x64\x53\xfe\x1f\xdb\xfe\x0c\x9e\xf8\x0e\x97\xe3\xaa\x0b\x41\xf2\x43\xb8\x5d\x20\xa6\xda\x29\xc5\xa2\xbe\x60\x32\xba\xa7\xfc\x23\x4d\xfc\x68\x40\xe3\x45\x24\x57\x77\x78\x08\xeb\x55\x89\x18\x0e\x14\x99\xd8\x2b\xb6\xb8\x20\xad\xd8\xbc\xa1\x52\x44\x7b\xcc\x90\xca\xbe\xaa\x3e\x8a\x4f\x76\x42\x0a\x8f\xbe\xe9\x39\x0b\x6b\xbd\x5e\x7e\xf4\xbc\xe8\x0f\xe4\x23\xe5\xb2\xa8\x38\xe5\x60\x08\x20\xae\xc3\xe5\xe2\xbd\xc8\x45\x2f\x0a\xd4\x18\x2d\xfe\x6d\x8d\x29\x4b\xe0\x5c\x01\x5f\x56\xcd\x9a\x0a\x02\x72\x07\x08\x6e\x91\x02\x1a\x3a\xb4\xc1\x9e\x38\x42\x5f\x72\xbf\x90\xfb\xe6\xeb\x0c\x6e\xf2\xb8\x54\xeb\x7d\x7e\xe0\xec\xba\x0a\x91\xac\x70\xbe\x5c\xb1\x8d\xe0\xf8\xd0\x9d\x71\x56\xf9\x0a\x33\xb5\x4b\x61\x6b\x54\xfb\x36\x14\x15\x0b\x88\x1d\x5b\x77\x70\x39\xcf\xb7\xa4\x15\xa7\xda\xcf\x0f\xa0\x53\xcc\x7c\xe9\xcf\x02\xd5\x68\x71\xc0\xfa\xa6\x2b\x02\x9c\xc6\x59\x7e\xd1\x67\xfa\x10\x7a\x81\x97\x50\x35\x6a\xa3\x41\xd1\x12\x77\xac\x57\xa2\x66\xa6\x02\xd1\xfb\xf2\x60\x46\x2b\x16\x35\xd7\xf4\xa2\x32\x3d\x83\x75\x66\xa6\x6b\x34\x58\x86\xcf\xee\x86\xed\x3a\x0e\x0f\xe1\x7d\xd5\x88\x93\x04\x65\xb0\x1b\x12\x59\x6c\x64\x3d\xf2\x05\x92\xa1\xf8\x82\x2c\xb1\x65\xf9\x86\xb4\x4b\x54\x5b\x61\xbb\xcc\x09\xe8\x30\x1b\x78\x7f\x9b\x37\xda\xd2\x6d\x23\x92\x39\x03\x63\x48\xd3\xc3\x9e\x29\xf3\x92\xdd\x94\x29\xde\x34\xee\xec\x25\x2a\xae\x45\x8a\x85\x72\xa0\xd0\x9c\xe1\x16\x2e\x31\x57\x67\x4e\xc8\x8e\x53\x08\x81\xdc\x80\x91\x56\xa7\x0c\x89\x1c\xc9\x0c\xf4\x48\x65\x2a\xf7\xb7\x9a\xc3\x8a\x50\x5a\x89\x88\xd2\xe0\x18\xa0\x75\x7d\xcd\xc9\xa6\x70\x7f\xd5\xf9\x65\xd2\xe7\x1d\x16\x6c\xd2\x5b\x4d\xdc\xb6\xdc\xe5\x5f\x88\xd8\x7c\x23\x74\xf2\x25\x06\xd6\x56\x57\x57\xb8\x95\x9b\xc7\x55\x4b\xca\xb5\xcc\xb0\xb9\xc4\x05\xa2\x6b\xec\xfa\x33\x2a\x82\x8a\xeb\x32\x96\xa2\xc3\x43\x0d\x59\x9c\x0d\x90\x15\x6e\xeb\x8d\x0a\x65\x48\x03\xa2\x7c\x23\x71\xd0\xce\xd7\x29\x86\x89\x01\xf1\xf5\xf2\xdd\xa4\x62\xe9\xfd\x09\xe7\xf3\x3c\x6b\x25\x0d\xe9\x11\x3c\x3d\x45\x0d\xf7\x32\xf4\xa9\xd7\x52\x86\xd3\x51\x23\x3c\xed\xba\xc5\xa8\x14\xe7\x1e\x65\x18\x4f\xbb\xdf\x1e\x22\xf0\xef\xfb\x1c\xfc\x2b\x65\x3b\x3c\x07\x5f\xc6\xae\xd4\xe6\x55\xcc\xde\x0d\x1c\x40\x9f\xc3\x9f\x70\xba\xb8\x0b\x39\x06\xad\x9d\x7e\xe5\x28\xd1\x3f\x88\xc9\x99\x56\xd2\x3e\x42\x43\x45\xcf\xff\x8f\x2d\x43\x56\x55\x2b\x7e\x7c\x27\xb5\x4b\x52\x4a\xb7\x9c\x44\xac\x9a\x72\x28\x4c\x1b\xb2\x11\xf1\x4f\xaf\xcb\x60\x0f\x32\x85\xf0\x0c\x7a\x5c\xcd\x24\x15\xb1\x76\xf0\xf4\x69\x70\x81\x01\xd1\xa1\x5e\x5a\x7a\x03\x39\x94\x94\x23\x22\x7f\xf7\x66\xc0\x10\x6a\x66\x93\xd2\x65\xe7\xb5\xe0\xca\xa4\xa3\x30\xb2\xaa\x0e\x5d\x75\x9e\x9e\x3e\x9c\xaf\xd8\xac\xe7\x20\xa0\x1f\x59\x59\xab\x27\x99\x9d\x02\x6b\xd7\x58\x84\x5c\x52\xa6\x4c\xfb\xf3\xf8\xf7\x8a\x32\xaa\xcf\x2c\xe3\x94\x74\x71\x14\x27\x92\x09\x74\xac\x4e\x2c\x89\xac\xf8\xb7\xa8\x76\x83\x5c\x53\xa9\xd0\x6f\x2b\x8a\x61\x8e\x6a\x8a\x67\xe9\xb3\xaa\xfb\x67\xd6\x04\xfc\x10\x9c\x78\xfa\x29\xbb\x2f\x12\xc1\xde\xa0\xc3\x59\x3a\xd9\x77\x4c\x4f\x67\x8e\xa0\xba\x8d\x0b\xf0\x68\x36\x72\xb3\xcc\xb4\xaf\x88\x58\x74\x86\x0c\x8e\xee\x77\xe3\xdf\x8e\xee\xf7\x7f\xd4\x41\xc6\xaf\x7e\xb0\x3c\xec\x6f\xc5\x35\xa3\x4b\x23\x34\xc3\xb1\x07\xd3\x46\x8b\x33\xda\x26\x8f\xf6\x04\xa4\xa0\xc5\x08\x90\xdd\xe0\x92\xa0\xee\xba\xcc\xbf\x3d\x82\x52\x7b\x5d\x4e\x45\x29\x1b\x86\x4f\xa7\x20\x4e\xef\x84\x7b\xa3\xbd\x3e\xe7\xbc\x5a\x34\x37\x9f\x2f\x11\x2b\x16\x98\xa6\x0e\x9b\xb2\x29\xdc\x69\xb2\xee\x77\xa0\xf4\x49\xfa\x3c\x84\xff\x3c\x7b\x96\x43\xdc\xf8\x4e\x72\xb4\x27\x70\x9c\x4c\x6a\xed\x1d\x51\x74\xcc\x46\xc8\xf9\x4f\x9a\x19\x75\xac\xac\x5d\xc7\x11\x97\xbb\x64\x60\xee\x7b\x42\xae\x43\xb2\xd9\x9b\x58\x74\x85\x8b\x6a\x5e\xe1\x52\x27\xbc\xf8\x29\x33\x90\x58\x97\x9b\xda\x2a\x45\xc7\xac\xab\xfb\xc0\xc2\x5d\xae\x96\xda\x61\x96\x2f\x20\xb9\x47\xe9\x00\xc7\x11\x5d\x72\x62\x3d\x12\x93\xf1\xaa\xf9\x48\xfb\x7a\x8c\x04\x03\x65\x8d\xd5\x4b\xe5\xfd\x8b\x6d\x59\x59\x02\x6a\xa4\x49\xe2\x3a\xd0\xa6\xf6\xb8\xe9\x73\xf0\xe8\x59\xad\x89\x33\xb2\xaa\x54\x09\xdc\xb3\xaa\x8c\xbe\x54\x3a\x5c\xdc\x22\x38\xce\x65\x18\x89\x24\x4a\xcd\x22\x55\x19\x1f\xad\x89\x4d\xf9\x7b\x79\x98\x77\xec\xc2\x9c\x89\x6f\xa4\x67\x73\xd1\xbc\x13\x76\x7c\x7f\x02\x07\x41\x1b\xfe\xf5\x3b\x7c\x8b\xda\x32\x88\xcb\x6d\xb3\x6d\x77\x26\xe3\xb3\x03\x5e\x56\x3d\x17\xb8\x22\xee\xd1\x8b\x76\xa7\x5b\x95\x71\xc0\x42\xde\x0e\x70\x5b\xf1\x4f\xe2\x76\xd1\xdd\xab\x08\x57\xe6\xbb\x9f\x65\xb6\x95\x3d\x2f\xdb\x9f\x24\xe0\xe9\x9b\x47\x02\x1d\x22\x15\xfd\x45\x94\x8a\x0e\x71\x48\x24\x3c\xb3\xfb\xa5\x2a\xff\x01\xcf\x0f\x9e\x88\x05\x87\xd6\xe4\xbd\xb2\xf7\xe1\x95\x0d\x95\xa9\x6e\x85\x20\xd5\x59\x05\xcb\x4d\xa0\x4d\x5e\x41\x05\x52\x97\x1d\x57\x3f\x20\x73\xac\x2d\xa6\x19\x5e\x1d\xb8\xd0\x49\xee\x30\x5e\x64\x0d\x76\x07\x48\xed\x3d\x93\xc2\x13\x92\xd9\x2b\x7c\x7e\x1a\x73\x74\xac\x3b\xeb\x56\xd7\xb3\x3f\x95\xa8\xba\xb0\x84\xa4\x0e\xbf\xee\xe8\xce\x30\x89\x92\x40\x7c\xfb\xc4\x90\xcf\x50\xa1\xe8\xeb\xc4\x57\xa6\x5f\x06\x39\xea\x80\xe1\x03\xf9\xd8\x88\x04\x87\x69\xa7\x98\x4e\xd2\x82\x69\xe5\xfe\x97\x90\xde\x52\x52\xcd\xa7\x43\x78\x5f\x9d\x3e\x75\x5a\x2c\x3f\x62\xa8\x5c\x48\x91\x8e\xbd\xd0\x67\x20\x4e\x7e\xa4\x4e\x29\x14\x90\x93\xf0\xa8\xdc\x85\x32\x79\x4b\x0c\x97\x3e\xfc\x9f\x31\x94\x44\x7c\x5d\xd4\x18\xb5\x69\x05\x53\xe1\xba\x54\x6a\x46\xc0\x2a\x31\xf0\x6d\x89\x07\xc8\xc9\xe0\x55\xb7\xe7\x48\x0b\x4b\xa4\x2e\xb9\x33\x02\xd7\x18\xaf\xa0\x62\x46\x05\x85\x32\x1e\x64\xe2\x4b\x79\x97\x08\x73\x5c\x05\xbd\xd3\x9a\xf4\xd9\xea\x17\x83\xa2\x9b\xf2\x02\x64\x7a\x57\x99\xcd\x1a\x39\x82\xa7\xef\x7d\xbf\x8f\x43\x10\x48\x14\x64\x95\x5b\x63\x71\x77\x5f\x2f\x29\x0e\x8e\x67\x22\x33\xc7\x2a\x53\x61\xff\x9b\xd9\x37\x13\x1b\x89\x54\x8c\x23\x06\xe3\x3e\x7f\x32\x3f\xb5\x2b\xbb\x2f\xb9\x0d\x74\x2d\x8f\xe6\xe9\xec\x76\x70\x3b\x37\x45\x39\x78\x49\x68\x3b\xd5\x81\x9d\x47\x2e\xb1\x54\x70\xa1\x90\x51\x7c\x75\x7e\x3c\x55\xb1\x6a\x86\x6a\x68\xd6\xcb\x4b\xde\x72\x1e\x85\xff\x54\xa6\x94\x88\xc7\x70\x10\x25\x2e\xd7\x05\x73\x8f\x25\x85\xc8\xe0\x36\x0e\xd6\x6c\x13\x7e\xca\xfa\x50\xa0\x83\x94\x7c\xee\x34\xb3\x44\x33\x27\x5d\x42\xc1\x8a\x18\x95\xb7\xce\x1a\xbe\x58\x27\x85\x73\x89\x56\xf1\xc4\x75\x82\x97\x02\xfe\xfc\x20\xcf\x3c\xcf\x0f\xe2\x38\x86\x9a\xea\x69\x56\xbd\xb8\x71\x0b\xac\x82\x4c\x69\xec\x85\x6e\x88\x1e\x36\x11\x3d\x01\xd7\xd1\x1c\x74\x6f\x5d\x8b\x7b\xc6\x87\x1c\x61\x3c\x20\x15\x16\x34\xa7\x55\x0e\x2e\x07\x9f\x1d\x7e\x58\x60\x73\xe8\x61\x95\x8d\xbc\xf6\xcb\xf5\xb2\xd1\xfe\xc8\x65\x03\x71\x0d\xa0\xd4\x81\xba\x28\xf5\x75\x2e\xae\x6d\xc8\x68\x5e\x4c\x75\x91\x33\xb8\x9f\xd2\x3f\x16\xac\x0f\x72\xf6\x74\x60\xb4\x71\x80\x45\x0c\x1d\xc2\x1d\x18\xc5\x10\x64\xde\x2e\xf6\x1b\xa4\x78\xc7\xde\x75\x3d\x7f\x80\x5b\xfa\x40\xd6\xca\x0d\x19\x78\x56\xcb\x46\x28\x1e\xcb\x74\xd9\x11\x77\x6b\xbf\x1c\x07\x6d\x90\x09\x2b\x6d\x31\x8b\x39\x1c\xc3\xfe\xb3\x2e\x48\x88\xca\xcb\x02\x9d\xa4\x4b\x24\xba\x55\x73\x6f\x9c\x59\x55\x06\xf1\x2a\xf8\x23\xd6\x10\x70\xbf\xed\x48\x2f\x03\x64\x07\x7c\x58\x3b\x0c\x29\x5b\x1c\x0a\xe3\x96\xe6\x58\xd7\x58\xda\xce\x22\xc3\x43\x58\x65\x48\x5b\xe6\x68\xc1\xc3\x8d\xb3\x73\x79\x22\x69\x9f\xc1\xb1\xd1\x76\x18\xd7\x4c\x27\x38\x3b\x67\xa9\x21\xda\xf6\x8d\x32\x9e\x39\xe6\xeb\x33\x9f\x5d\x21\x46\x65\x32\xcf\xa2\x8d\x96\xfe\xd1\x96\x33\x2d\x52\xca\x90\x9d\xff\xbe\xc2\x82\x2f\x5c\x29\x34\xca\xcf\x5e\xcc\xd4\xf7\x1e\x1c\x7d\xd5\x64\xe8\x14\x1a\x3c\x18\x95\x0f\x34\xd2\xa6\x5b\xca\xee\xde\xac\x97\x09\xd8\x5b\xda\x76\x7b\xe3\x49\x5a\xf7\xab\x8a\x32\xdc\x8a\xcb\x75\xc1\x35\xd3\x2e\x9f\x40\xf5\x42\xa2\x9f\x46\xbc\xd4\x3f\x9a\x3e\x31\x39\x06\xda\x6f\x09\x5b\x6c\x29\x7d\xa3\x52\x1a\x2b\xee\x7d\xee\x56\x1c\xf1\xbe\x68\x30\xbb\x25\x2d\x9f\xc4\x89\xe6\xed\x54\x7f\xdb\xec\x35\xde\xa4\x9b\x28\xcc\x64\xbf\xf7\x93\xd8\xfd\xef\x56\x68\x83\xdb\x23\x10\x97\xd3\xbe\x13\x81\xf5\xbf\xa3\x7a\x8d\x27\xf0\xec\x24\x38\x00\x9c\xa8\x56\x2a\x89\x7a\x6a\xef\xb6\x55\x98\x4e\x45\x4d\x1f\x51\x1a\x6e\x0a\xaf\xf1\x86\x4e\xe1\xa2\xb9\x24\xbf\x5b\x38\x2f\x52\x39\xf2\x36\xfd\x51\xdf\xe3\x08\xf2\xee\x75\xf2\x55\xd4\xd3\xdf\x51\x24\xac\x9c\x0a\xd0\x2b\xab\x13\x9b\xd8\xf2\x08\xf2\x21\xe0\x74\xd8\x37\x41\xb1\xe8\xa3\xae\x5e\x82\x40\xde\x9f\x71\x6b\x97\x96\xf6\xf7\xb8\x5d\x10\xc3\x3a\x4a\xa7\x18\x4e\xc6\x86\xce\x5d\x85\x2c\xd1\x2b\x22\x6d\x0e\x56\xe2\xa8\x9b\xfc\x60\x94\x8a\xee\x0c\x5c\xab\xcd\x4d\x92\xe4\xef\xb0\x4e\x0e\x39\x8e\x0e\x83\xc2\x38\x29\xff\x79\xf1\xc2\xa8\x2c\x99\x79\x46\x98\xbe\xf8\x26\x36\x23\xad\x86\xf7\x34\xc3\x63\x23\x63\x15\x66\x7e\x22\x6a\x1b\x46\xd1\xdf\x69\xcd\xd4\x15\x87\x4f\x86\xdf\x45\x4a\x30\xe5\xfb\x1c\x2e\x83\x41\x8d\x07\x27\x8d\x9f\x82\xa9\xce\x04\x05\xaa\xeb\x60\x93\x58\xcd\xcd\xa2\x54\xd1\x9f\x63\x5b\x4c\x50\xac\xe8\x1d\xa9\xf1\x4c\x31\x04\x69\x67\x2d\x92\xfa\x00\xfe\xfd\xef\x81\x3d\x1b\x8a\x1b\xba\xa6\xb6\x67\x6c\xbd\xdc\xc3\x3c\xad\x50\x13\x85\x54\x0c\x2e\x03\xd4\x4e\xb5\xd2\x12\xff\x4d\x86\x59\x4c\x35\xe6\xe0\x53\x42\x4d\x2a\x75\x5d\xdc\x54\x1a\x4b\x51\x0d\xf9\x34\x3b\x94\x77\x21\xf5\x2d\x7a\x5c\xb5\x80\x39\x96\x0e\x74\xa9\xb0\xf0\x6a\x9c\x30\x7c\x4d\xbd\x31\x34\x44\x0d\x9c\xac\xd9\xe2\xc4\xa7\xb2\xaa\x09\x21\x83\x78\x66\x8b\x45\xc4\x3d\xa9\x42\xe3\xdd\x4d\x89\xd1\xe0\xdc\x45\xeb\xda\x24\x92\x39\xbe\xa2\xf0\x5b\x21\x0a\x7b\x5d\x5f\x39\xae\xb4\xef\x22\x70\x23\x9a\xaa\x28\x70\xb9\x66\xca\x69\x66\x2e\x40\xe9\x08\xd1\xca\x16\x27\x41\x65\x29\xeb\x22\x15\x70\x8d\x37\x2a\x1d\x29\x34\xb7\x36\x05\x35\xc3\x12\xbe\x55\xf4\xf9\x23\xb7\xcb\x52\xe7\xae\x9f\x91\xc5\xdb\xb9\x4e\x91\xa5\x0d\xb3\x84\xd2\xe3\xda\xd8\x17\x83\x63\x5d\x0c\x62\xdf\x17\xa4\x10\xb4\xbe\x5d\x90\x4c\x31\x2b\xec\xb8\xf1\x41\x9e\x2a\x72\xd7\x31\x8b\xee\x5a\x62\x6c\x56\x38\xa8\x9e\x51\x49\x80\x59\x45\xe9\x1a\x6f\x71\x41\x7f\xff\x50\x41\x10\xa5\x6c\xc5\x37\xb2\x10\x53\x7c\xf1\x2e\xb1\x96\xe3\xc4\x11\x7d\xfe\x8c\xd9\x68\xc9\xbc\x77\xe1\x29\xd2\xb8\x51\x67\x59\xba\x21\xf5\xd6\x04\xef\xe6\xc3\x1f\x26\x02\xb6\x11\xa1\x13\xe4\x68\x12\x3e\xb3\xa9\x26\x2d\x82\x9f\x4e\xe1\xef\x84\xd9\x88\x30\xa7\xbb\x2a\x5f\x64\x8a\x8e\x64\xf2\xc4\xb6\x34\x33\x89\xab\x52\x2e\x23\xe6\x26\x93\x0c\xd5\xfc\x56\xc8\xc9\x2b\xff\x50\x0e\x7e\x85\x99\x29\xc0\x2b\xbe\xde\xb7\x2e\x47\x20\x6e\xb1\x37\xe1\x32\xa8\xe6\x49\x8a\x6e\xf0\xfe\xf3\x03\x35\xd8\x14\x18\x39\xf2\xcb\xfc\xce\xc4\x17\x4e\x75\xdc\xf4\x0d\x3e\x2a\xd6\xa8\xce\xc7\x9c\xfa\x97\x29\xfc\x42\x67\x44\x5b\x32\x5f\xe6\x84\x3d\x1d\xe5\x4e\x57\x4b\x4d\xee\x87\x07\xf1\x39\x18\x5e\x1f\x44\xf6\x34\x00\xe3\x4f\xde\xab\x82\x9f\xfe\x49\x60\x5d\xf9\x04\x0e\x55\x33\x29\x78\x56\x50\x94\x95\x0d\x05\xe5\xec\xf5\x2b\x78\x8b\x5a\x56\x15\xd5\x0a\xf9\x7e\xd9\x10\x79\x51\x5e\xcb\x60\xb1\x49\xf8\x58\x29\x96\xd2\x19\x9e\xab\xee\x99\xa5\xe3\x9c\xd7\x57\xee\x82\x42\x19\x3a\x7b\xfd\xca\xf9\x7a\x47\x32\xe4\x8f\x69\x45\xe9\xec\xf5\xab\x99\xf3\xc5\x9f\x51\x94\x52\x52\xd3\x25\x21\x21\x85\xa7\xf7\x93\x86\x61\xcc\xef\xb1\xa4\xdf\x23\xe1\x3e\x07\x0e\xf3\x89\xac\x64\x6f\xaa\xc8\x0a\x17\xb8\x23\xe5\x88\x34\x58\x5d\x65\xd5\x05\x97\x02\x1f\xb5\xa2\xb2\x3c\x93\xbc\xc5\x6f\xe1\x96\xb8\xa8\x4a\x2c\x0b\x8c\xb4\xa8\xa1\xf3\xcc\x7e\xca\x56\xdf\x23\x80\x1a\x79\xf3\x27\xe5\xc6\x9a\x7a\x58\x35\xb5\x10\x5b\x7d\x1d\x81\xd4\x65\x02\x72\x41\x5a\x47\xeb\x71\x28\xf2\x60\x42\x15\xbb\xe3\x13\x74\x4a\xf4\x33\x22\x6e\xd3\x23\xa7\xd2\xdd\x16\x18\xd1\xaa\x68\x20\xc8\xa9\xf5\xcd\xab\x36\x76\xca\xfd\xdd\x8a\x8b\xc7\x68\x43\xa0\xb6\x93\x29\xef\x32\x91\x5f\xe5\xf3\xbf\x0a\xbf\x84\xc7\x5c\x3e\x0f\xc7\xce\xf8\x54\x57\x93\x77\x3d\x6e\xeb\x59\x0f\xbb\x7a\xb6\x6d\x72\x86\x0a\x6e\x8a\x44\xb3\x0c\xed\x9d\x6d\x9f\xcc\x96\xdf\x90\xb5\x4e\x84\x21\xb7\x4d\xef\xbd\xae\x2d\x76\x01\x17\x67\xb1\x83\xfe\x03\xba\xc6\x40\xd7\xad\x9a\x44\xb2\xb4\xb5\x32\x3b\xd1\xa9\x39\x95\x41\xeb\x82\x05\x99\x39\x17\x67\x7b\x3b\xf3\xe5\x42\x8a\x38\x5e\x99\x3c\x3e\xf3\xf9\xc0\xd8\x03\xa9\xc6\x9e\x3f\x4b\xf8\x51\xdf\xaa\xfb\x29\x7d\x2e\x56\x38\x34\x64\x82\x41\xaa\x5a\x51\xe8\xe9\x9a\xe3\x95\x95\x54\xad\x91\x12\x08\xe3\x45\xd0\x73\x6d\x56\xd7\x60\x3e\x76\x10\xa0\xb3\xdc\x92\x1d\xec\xc5\x59\x33\xb7\x37\x86\xa2\x21\x35\x4d\xfc\x5f\x24\xf9\x9b\xaf\x15\x41\x53\x57\x6b\x3d\x06\xbd\xbf\xfb\x91\xa2\xb4\x6f\xce\x07\x13\x3c\xb0\xf6\x2e\xc1\xbb\x1c\x81\x91\x04\xcf\x78\x6c\x0f\x48\xf7\x08\x1d\x03\xc9\x1f\xce\xf4\xc1\xb8\x60\x88\x7a\x89\x42\x01\x5c\x8f\x48\x1f\xc7\xeb\x1d\xd7\xea\xeb\x2e\x1c\xfe\x68\xfb\xfd\x9e\xf0\xc9\x0f\xa9\xe4\xa2\x3e\x9f\x79\x4c\xdc\x20\x9d\x2e\xe4\x47\x04\xb6\x8e\x00\x24\x92\x50\xf3\x39\x4f\xc3\xd3\xaf\x2f\xe6\x80\x6c\xb6\x8c\x22\xb7\x36\x7f\xaa\xe2\x98\x88\x70\x52\xb8\xc5\xfc\xf7\x86\xd3\x45\x9e\xc1\x6f\xbe\x52\xf5\x96\xb4\xcb\x22\x2c\x8d\x3e\xb8\x0c\x63\xa6\x36\xa8\x94\x78\x5b\x40\xdf\x9a\x51\xde\x11\x0c\x3a\xb0\x93\x10\x7d\x42\xbc\x24\xed\xb9\xca\x16\x4a\xa4\x86\x4e\xfb\x23\x84\x93\x23\x2f\xc8\xe7\x22\x7d\x87\xae\xc8\x63\x38\x11\xea\x02\x58\xdf\xd1\x4a\xfe\x2e\xcf\xa7\x88\xe5\xe7\x4a\x24\x46\x77\x13\xf3\x85\x77\x76\x5b\xfc\x10\x76\x50\x00\x11\x1e\xae\x08\x62\xcf\x58\x3f\x06\xc4\x4f\x14\x48\x74\x58\x21\x6d\x69\xa1\xfb\xac\x0d\x05\xa7\x6d\x39\xd4\xa6\xac\x2b\x6c\xc5\x65\x89\xa5\x75\xf1\x1a\xf4\x5d\xc7\xdc\x6e\x03\xec\x14\xda\xda\xb8\x15\xbe\xbe\x7f\xf3\xb3\x41\x41\xac\xe9\x06\x29\x36\x0d\xfa\x65\x4b\x96\x3d\xaf\x10\x04\x45\xec\x1e\x29\xb3\x5d\x3e\x65\x37\x32\x3f\xf0\x2e\xa5\x9d\x92\xb6\xb5\xd3\xba\xa5\x1d\x52\x21\x83\x29\x3f\x54\x98\xde\x21\x71\x95\xc1\x5e\xa6\xe2\x7b\xcb\xf0\x8c\x44\xf6\x4c\x4c\x27\xc5\xf1\x7e\x66\x84\x9e\x75\xbe\x32\x4d\x12\xc0\xd6\xe5\x07\xa1\xb7\x32\x80\x9c\x5b\x30\x6e\x56\x5b\x47\xb8\x99\x57\x4d\x6a\x67\xad\xcf\xbf\xa3\x3b\xb1\xdb\xe5\x05\x7b\x39\x40\x36\xfb\x69\xa7\x59\x40\xf9\x3c\xde\x6e\x91\x1b\x5e\xc7\xd4\xed\xc5\x11\x54\x95\x82\xfd\xfb\x8b\x89\x56\x73\xd5\x36\x7e\xc9\x4b\x5f\xcd\xed\xc9\x78\x33\x39\x5e\x06\x93\x36\xcf\x2b\x0c\x7f\x38\x75\x6d\x64\x1a\xa6\x9b\x59\xd9\x9f\xe6\x96\x3f\xab\xba\x7f\x92\x90\x97\xd2\x98\xf0\x93\x4c\x46\x17\xee\xb8\x48\x9d\xcd\xb6\x49\x25\xd8\x0c\xbf\xf1\xe6\xcd\x2f\x7d\xe7\xcd\x6f\x92\xbc\xf5\x76\x9f\xfc\x9b\x20\xb5\x33\x9c\x8c\x4d\xca\x89\xd3\x27\x03\xe9\x93\x8e\x32\x05\xe4\x2b\x3d\xc5\x25\x2a\x0a\x55\x64\xe5\x4c\x95\x78\xd7\x95\x3a\x1c\x87\xe3\xd7\xe0\xf5\x33\x7d\x2a\x9f\xf1\x79\xdf\xa8\xcb\x63\x93\x9e\xa4\x80\xd0\x71\xdf\xea\x52\x93\xf2\x0a\x9e\x65\x7b\x22\xba\x9b\xc9\x0e\x53\xb5\x63\x93\x5c\xb2\x34\x8b\xb2\x57\x47\x12\x6e\xec\x05\x87\x1c\x8e\xec\x65\x5d\xa9\x7c\xfb\xb3\xe9\x3b\xa8\xfa\xd0\xa9\xfe\xbb\x5b\xc4\x96\x57\x02\x14\xf9\xbd\x79\x9b\xe4\x66\xcb\x1b\x43\x93\x8c\xc7\x71\x93\xb1\xa5\x36\x85\xd7\xfb\xfa\x83\xf1\x8b\x0b\x54\xd7\xd4\x5e\x25\x37\x49\xcc\xb7\x0b\xac\xcb\x3e\x73\xc3\x63\xce\x5d\x75\xe2\xaf\x63\x74\x6c\x6d\x6d\x8e\x3c\x77\x18\xf7\xc0\x36\xee\x28\x43\x12\x3a\xb8\xe7\x06\x13\x54\xe9\x8d\x7f\x36\x55\xfd\x4f\x7d\xbb\x3d\x59\x87\xa3\x73\x0c\xa7\x32\x4b\x38\x90\x19\xc6\xcd\xf3\xb3\x70\x9c\x57\xa2\xbd\xc3\x19\x31\x2b\x39\x4f\xef\xc5\x51\x46\x94\xa3\xb4\x51\x16\xd8\xd4\x87\x09\x1b\xab\x2b\xf1\x9e\xe0\xcb\xd2\xab\xfa\x29\x14\x91\xec\x65\xf3\x52\xcd\xc3\x7c\x69\x8f\x6c\x90\x87\x24\x0b\xdb\xfe\x18\x66\xc7\x46\xea\xa0\xc1\xb7\x41\xf6\xf3\x67\xbe\x3d\x49\x27\x08\x98\xa4\x3c\x3f\x73\xce\x82\x99\xea\x1d\x41\xc5\xa2\xbb\x48\xda\x53\x19\x15\x77\xe1\xdf\xcc\xb2\x58\x36\x58\x1d\x18\x51\x91\x15\xd5\xed\x4a\xba\xee\x08\x24\x75\xa5\x3b\xff\x64\x75\x27\xfd\x9b\xb4\x67\x89\x9d\xd4\x76\x0b\x1a\xb2\x17\x90\x94\xb6\xef\xf3\x48\x59\x75\x6e\x0c\x76\x14\x2b\xcb\x55\x29\x1b\x24\x04\x62\xe0\x1f\xf1\xad\x72\x57\x07\x98\xc2\x17\x8f\xb4\x59\xcf\x5e\xec\xdb\x9d\x54\x98\x27\xf0\xa9\xaf\x17\xf5\x25\x7f\xfb\xbe\xbd\x22\x15\xca\x3d\x85\xd2\x51\x9d\x4a\x35\x4c\xf1\xb3\x12\x4c\xc7\x93\x19\x26\x9d\x90\x83\x19\xce\xc6\x17\xd7\x6d\x8a\x30\xa5\x2b\x23\xd9\x3a\x11\x1a\x45\x96\x85\xf4\x0e\xbc\x67\x27\x34\xb2\x5c\x65\x10\x4c\xed\x96\xe3\xce\x5a\xd4\xa8\xd9\xa8\x22\x30\xe1\x5d\xbb\xa9\x5f\x97\x70\x81\x97\xa9\x00\x69\xfe\x76\x5a\x58\xf7\xbf\xab\xec\xe3\x36\xef\x00\xa4\xc6\x75\xaa\xdf\x7f\x3b\xac\xf8\x3d\x6c\x59\x22\x3d\x07\xcb\x2d\x27\x17\x46\x61\x3a\x23\x3a\x83\xab\x6c\xa7\x43\x5a\x77\x5c\x00\x72\x84\xfe\xe8\x4b\x70\xcf\x95\xb2\x2c\x45\x5d\x41\x72\xd7\x19\xca\x53\x7a\x86\x5d\x52\xd2\xf7\x30\xc0\xee\xad\xb8\x3d\x41\xdf\xde\x98\x07\xd6\xe2\xf9\xc1\x18\x19\xef\xb2\xec\x0f\x23\x98\x9f\x42\x28\xc7\x0b\xe4\xae\x84\xb1\xcb\xb1\x79\x2c\xc1\xbc\x4b\x88\xa4\x23\x8e\xb4\xbf\x6a\x43\x92\x88\xaa\xdf\xbd\x9c\x37\x09\x23\x64\xe1\xad\x2a\xa8\xc7\x9e\xdb\xba\x31\x65\x53\x1e\xdf\x7d\x53\xc5\x9f\xca\xff\x30\x1f\x6e\xbb\xc2\xa0\x9f\xc8\x3f\x0a\x68\xd4\x7b\x3c\xd2\xeb\x0c\x45\x6b\xe8\x94\x8a\xf1\xa6\xaa\x67\xc2\xd1\x7c\x1f\xc6\xd6\x8c\x98\x45\x16\x63\x0f\xa1\x40\xc6\xcc\x6b\xb8\x16\x69\x55\x85\x89\x4f\xa2\x45\x74\x79\x8b\x2f\x5a\xe4\x73\xd1\x22\xb2\x76\x1d\x2a\x4b\x70\x5e\x15\xd2\x8f\x97\xa7\x5e\x23\xd2\x05\xea\x24\x1f\xc9\xaa\x33\x0d\xbe\xad\x37\xb0\xac\x1a\xd6\x5d\xa3\x5e\x85\xf1\x50\x8b\x9b\xaf\x18\x54\xcb\x25\x2e\x2b\xc4\xb0\xb8\xf1\x39\xaf\x65\x5d\x09\xc5\x64\x03\x5e\xbb\x80\xfb\x3d\x84\x92\x02\x17\xab\xa8\x80\x63\x7b\x55\x54\xcf\x73\x08\x3a\x38\xac\x96\x97\xf4\x4e\xe2\x67\xee\x39\x8a\xc5\x11\x64\x2f\x92\xd2\x49\x94\xf2\xc1\x7a\x13\x63\xe5\xb0\x64\x84\xa9\xf4\x0b\x10\xba\x3f\x8f\xa1\xff\xc7\x22\x77\x97\xfa\x7f\x87\x9c\x63\x4d\xc9\x88\x05\x3d\xaa\x29\x19\x33\xaf\x21\xa6\x44\x97\x62\xb7\xef\x2a\x5c\x3a\xfe\xe9\x63\x99\x14\x35\x0b\x69\x27\xab\xe6\x6a\x5b\x7b\x02\x5f\x0c\xca\x43\xb8\xa5\x11\x79\x3e\x5f\x87\xb4\x77\xaa\xd1\x4c\x77\xee\x8a\x8e\x9a\xc2\x63\x29\x8f\x71\x93\x1a\xa2\x39\x94\x92\x70\x1f\x69\x0b\xd5\x85\x3a\x79\x91\x36\x70\xa8\x9e\x30\xb5\x23\x6c\x76\xa1\x7e\xee\xd8\xd4\xd1\x8d\x9e\xfb\x4a\x1f\xd9\xc9\x19\x9e\xd4\x75\x58\x2b\xf7\xf3\x3e\x91\x83\x44\x79\xbf\x7b\x1c\xa9\x59\x2c\x7c\x1a\xd6\xcb\x4f\x60\x08\x9b\x99\x84\xd3\x4f\x15\x34\xd1\x13\xd8\x4d\xdc\xe4\x8b\x85\xda\xa1\x85\xf2\x73\xe9\xac\x11\xc8\x90\xac\xcf\x14\x58\xdc\x27\x9e\x0c\xb4\xf9\x71\x61\x97\x4f\x66\xeb\xb6\x5c\xe6\x4e\x2d\x9e\x4f\x02\xa1\x70\xb6\x9c\xd6\x48\xcc\x3f\x96\xf6\xda\x62\x35\xe3\xf4\xda\xa7\x0a\xe3\xe8\x09\x7c\x89\xe4\x7c\x6e\x6a\x4d\x46\x72\xd6\x3d\x8f\x49\xcb\x47\x08\xd4\x65\x35\x4d\x4c\xce\x30\x3a\xae\x93\x83\x9d\x8d\xf7\xa0\x46\xa6\xb3\x7f\xe2\x70\xce\x56\xaa\xbe\x67\x5f\xfc\x27\xd5\xf5\x03\x0d\xc0\x36\x8b\x3f\x3c\x04\xf3\xf0\xbb\xe1\x2f\xcd\x1a\xb9\x7b\x62\x61\x38\xb1\xef\x44\x5c\x37\x7c\xa7\xe0\xea\xa3\xc4\x0c\x52\x06\x3f\x84\x0f\x21\x87\x85\x67\x92\xb9\xb7\xad\xd5\x44\x3e\xdf\x88\xd4\x18\x03\x3b\x96\xec\x9f\x9b\x85\xed\x33\xb9\x63\xd7\xf7\xa0\x2c\xfd\x90\xec\xbc\x3b\x56\xce\xa5\x32\x9f\xd6\x84\xe2\x36\x28\x31\x2c\x3e\xa4\x9e\xb3\x41\xb5\xb3\x51\x1a\x67\x63\x0a\xba\xec\x72\x5d\x1b\x3b\x23\xb6\xe5\xc1\x8b\xe0\xf6\x05\x57\x8d\x5b\x59\xc5\x53\x75\x37\x27\xfa\xde\x1c\x48\x9c\xd8\x1b\x55\x02\x77\x0a\x4c\x0f\xf2\x6c\x0a\xbe\x2e\xc1\x75\xc3\x1e\x44\xfd\xcf\xf0\x5e\xfc\xf6\x3b\xaf\xa5\x1f\x8d\xd7\x55\x43\xc2\x9b\x47\xf8\xb0\x55\xea\x4b\xfb\xb4\x55\xfa\x7b\x13\xd7\x82\x63\xf1\xf8\x73\x5f\x09\x0a\x75\x15\x4c\x70\x8a\xcd\xe6\xe4\xae\xf5\xba\x61\x55\xed\x06\xb5\x16\xe8\x06\xc3\x25\xc6\xd6\x63\x6e\xa6\x9c\x6d\x45\x11\x78\x79\xb9\xc4\x93\x0a\xca\x10\xc3\xb3\x41\x8f\xff\xbb\x57\x20\xa2\xc5\xe0\x12\xbe\xe5\x4b\xe9\x7a\x3d\xbc\x27\x36\xd1\x47\x35\xeb\xc7\x77\x4d\xa3\x37\xdd\xac\x63\x29\x5a\x85\x0f\x5f\x4a\x66\x3b\x72\xbf\xa5\x68\xa0\x43\x97\xf2\x68\xd1\x0b\x3b\xc8\xb0\xe7\x09\x52\x70\x4a\x4c\x59\x4b\x36\x16\x56\xce\x6b\x8d\xab\x0c\x9c\xda\xb2\x27\xc9\x62\x03\xb9\x69\xb3\xec\x65\x7e\x0b\x71\xec\x9d\xfe\x24\x4a\xdc\x81\x66\xe1\x53\x33\xb9\xf8\xc8\x40\x74\xa4\x97\xa7\xee\x8a\x8a\xc9\x82\x42\x84\x53\x1d\x46\xa5\x1c\xea\xad\xd2\x9c\xac\x9b\x32\xfd\xec\x41\xf4\xd1\xa7\x7e\x45\xa2\xdf\x9f\xbb\x6f\xed\x0d\x50\x46\xbd\xfb\x61\x4e\x5d\x97\x8b\x11\x75\x39\x49\x6f\x58\x2b\x26\x1f\x87\x6f\x38\x57\xc9\xf7\x1a\x72\xc2\xb9\x8b\x0b\xf4\xf0\xb0\x97\xe8\xa1\xfb\x22\xbd\x2c\x9f\xd1\xe2\xb9\x74\x77\x06\x14\x65\x82\xc1\xf7\xe0\x9f\x74\x5c\x84\x07\x55\xcb\xc8\x9c\xae\xa8\x24\x51\x1d\xcb\x01\x61\x3f\x93\xdd\xaa\x79\x94\xe9\xaa\xaa\x12\xfd\x80\xaf\xd0\x77\x1b\x86\xe9\x5b\xdc\xca\x74\x57\x5c\x8a\x92\x10\x4f\x8e\x41\xbc\x7e\xd4\x91\x5d\x1e\x4e\x44\x31\xa0\x3b\x4a\x89\xe7\x7c\x59\x42\x26\x4f\x82\xe6\xfb\x5b\xd2\x2c\x2e\x28\x99\x9a\x5c\xa7\xaa\xc8\xcc\xde\x94\x37\xb8\xec\x48\xbf\xbd\x4b\x7e\xda\x5d\xa5\xa0\xa3\x6e\x42\x30\x8b\x49\x57\xc4\xa3\xfb\xd1\xb8\x78\xa2\xa3\x3c\x3b\xa3\x47\x52\xcf\x95\xe2\x8c\x47\x17\x7e\x77\x4f\x6f\x4e\x27\xd9\x3e\xaa\x23\x97\x5e\xc3\xa3\x3a\x71\xb9\x29\x0c\xf5\x7a\xc2\xfe\x9f\xc0\x79\xcb\x4d\x61\x8c\xe3\x36\x3a\x5c\x03\x7e\x4c\x63\xc0\x7b\x8e\x29\x08\xda\xef\xa0\xf1\x4b\x86\xf0\x67\xf3\xc1\x2c\x26\x12\x0e\x58\x47\xd1\xa4\x61\x38\xf8\x24\x8e\xd7\x3d\x9e\xbd\xc4\x5b\x3d\x7a\x99\x3d\x05\x7a\x85\x19\x8b\x62\x31\xee\xd1\x90\x28\xb9\x55\xd7\xea\xf2\x4e\xa9\x8e\x84\xea\xda\xe4\x1c\xca\xe3\x1f\x3a\xf8\xfc\xc7\x54\xb3\xbd\xc2\x4c\xd6\x4c\xa1\xfb\x93\x23\xf8\x45\x46\x45\x42\xdf\xc8\x54\x62\x3b\xa3\x4e\x9b\xe3\x48\x28\x66\xd7\x78\x43\x93\x61\x89\x7b\x70\x37\xef\xfe\xab\x7f\x75\xaf\x87\xb3\x3b\x42\xa6\xb2\x93\xae\x12\xe3\xc1\x9d\x19\x54\x24\x58\x59\x2d\xe3\xd7\x14\x90\xf8\xb3\x34\x3b\x2b\x0c\xce\xd0\x6a\x85\x9b\x72\x3f\x86\xb5\x65\xb9\x2e\x09\x76\xc8\x09\xa3\x66\x23\xe7\xc2\xa8\xc3\x4b\xd1\x69\xe2\x76\xec\xe4\x57\xf7\x39\x82\x5f\xdc\x0f\x46\x73\x96\xdd\xf8\x4a\xe6\x0a\x3b\x3b\x36\x83\x46\x63\x1d\xc3\x2f\xff\xf0\x71\xa6\xf3\x86\x2e\xce\xf8\xda\xd4\xc8\xf9\xd0\x98\xa0\x6f\xc7\x26\xfc\xc5\xac\x4a\xbc\x6f\xe8\xce\x49\x53\xdb\xc3\x4a\x9f\x15\xbc\x38\x7b\x12\xde\x7d\xfb\x13\x48\x95\x59\x62\x56\xbc\x82\x16\x09\x39\xcb\x81\xec\x06\x27\x40\x0d\x91\xd9\x78\x8a\x1d\x5f\xa6\xa5\xb8\x0b\x6a\x16\x62\x16\xda\x28\x76\xe9\x58\x49\xc0\x43\x99\xd9\xe5\x6e\xc2\x6e\xa5\x77\xdc\x69\x8f\x51\x3e\x3f\x8a\x1a\x21\x7c\x7f\xae\xb5\xcc\x2e\x8d\xd9\x49\x5d\x9b\xc8\x04\x57\x3e\x1d\x91\x8b\xac\x2e\x6a\xe6\xa4\xaf\x67\xac\x59\xc6\xd9\x48\xb7\xe7\x50\x9d\xa4\xe7\xa6\x79\x64\x44\x50\xe6\xcf\xa7\x4c\x3e\xa1\x89\x1e\x89\xe2\x84\x1d\xbf\x87\x21\xef\x28\x51\x9c\x12\x26\x5b\xf9\x2d\x29\x51\x3b\x32\xe9\x27\x75\xed\x1f\x02\x65\x24\xcb\x6b\x94\x12\x2f\x2f\x12\x3f\x08\xc6\x16\x82\x16\xba\x0c\x83\x84\xad\xe7\x70\x6c\x2b\x3f\x80\x83\xa8\x76\x7c\xac\xf6\x24\x61\xe8\xfc\xf3\x0d\xc5\xba\x7c\xe0\x3f\x9f\xd8\x7f\xf1\x21\xb6\xf3\x21\xb6\x61\xb5\xfb\xbb\x13\xe9\x90\x22\x0c\x67\x49\xfd\x73\x5f\x0f\xa4\x43\x6b\xbe\xc2\x8c\xaa\xd2\xee\x14\xea\x8a\x32\x20\xf3\xf8\xa5\x90\x66\x4e\xda\x25\xea\xd3\x83\x7e\x0d\x62\xb1\xbb\xf9\x43\x2a\xa0\xa3\x44\x1d\xfc\xbb\x80\x5e\x6e\x81\xe7\x20\xe2\x1a\x4e\x5e\x97\x41\x30\xb1\x01\x53\x41\x48\xe9\x76\xd5\x2f\x56\xe3\xde\x52\xf6\x20\x63\x3a\x28\x16\x71\xa7\xa8\xd2\x1c\xd1\xa7\x2c\x5c\x39\xa2\xc6\x8e\xa3\xa3\xaf\x41\x8d\xc4\x10\x47\x41\x36\x84\x09\x8d\xe8\x87\x83\x61\x50\xf6\xc5\x11\x7c\x47\x88\x5b\xb1\xb0\x96\x15\xc7\x05\xa9\x8e\x85\x41\x52\x55\xa0\xe3\x63\x2d\x1d\xab\xf2\x90\x22\x8f\x72\x50\xea\x19\x06\xfd\x2a\x47\x84\xc8\x6f\x45\xd5\xc7\x59\xf4\xf9\x5b\xf1\xc8\x67\xfc\x1e\x47\x77\x85\x64\x8e\xf8\x08\x94\x7b\xa4\xa3\x99\x23\x31\xf5\xad\x73\x4c\xf6\x1c\x8e\x4a\x71\x41\x36\x91\x54\x5d\x15\x56\x79\xc7\x6e\xfe\x53\x42\x28\x3e\x46\xb9\x6b\x11\xdd\x27\xe6\x28\xe9\x0b\x4d\x15\x4d\xe3\x8c\xbf\x21\xd4\xba\x2f\xad\xbe\xff\x42\xa9\xd1\x94\x1a\x4b\xa7\xa1\x71\x5a\x6d\x93\xa2\x89\x4d\xb9\x6a\x26\x0d\x56\xaa\x78\x96\x23\xa6\x8e\xdb\x26\x68\x98\x88\xe3\xfe\x87\x53\xd1\x8d\x73\x0f\xa1\xe0\x98\x10\xe9\xbd\x29\xe9\x45\x7b\x52\xe4\xcc\x85\x50\xbf\x10\x35\x51\x4b\xbe\x87\xb2\xa3\xe2\x4f\xf7\x26\xad\x1b\x8f\x4a\x51\x76\x60\x7c\xea\x0b\xa1\xbd\xc0\xde\x10\x3a\x6f\x15\x1a\xd9\x05\xbd\xfd\xdd\xd6\x40\xa2\x67\x43\x27\x5f\x28\x1f\x47\x9f\x42\xf2\xbf\xaa\xc9\x25\xaa\x6d\x95\x6d\x87\x0b\x92\xef\x42\x72\x7e\xd0\x7c\xa0\x6b\x22\x52\xf5\x32\x52\x09\x97\x1b\xe1\x49\x49\xf4\x7e\x35\x74\xeb\x93\xd8\x1e\x26\x48\x3f\x70\xbb\xf8\x85\xe8\xd1\x56\x3b\xa4\xf9\x19\x66\xb8\x5d\x56\x0d\xa6\x62\x27\xdb\xb8\xaf\x7e\x52\xcc\x60\xbd\x92\x8f\xa9\xa1\xdc\x03\x28\xa9\xbd\xab\x1a\xee\x6f\xe8\x06\xc7\xe9\x00\x09\x72\x6e\xbf\x4f\x55\xcb\x4f\x92\xe8\x0a\xb3\xed\xe8\xf3\x64\x56\x2c\x70\x71\x1d\x23\x4b\xbe\x00\x48\x01\xc1\x65\x2b\xf2\x25\xf0\x2d\xe0\xe5\x8a\x6d\x12\xdc\x6d\x1f\x15\x96\x97\x35\xf8\x3c\x29\x54\xe6\x5e\x4c\x81\xea\x5a\x65\x72\x84\x28\x94\x0f\xd1\xc5\x98\xf3\x92\xd8\x8e\xc0\x46\x06\xb7\x78\xf7\x70\xea\x06\xc7\xc6\xc0\x9a\x82\xbb\xfb\x99\x89\xff\x6c\x1d\xff\x09\x3c\x8b\xbf\x96\x83\x7c\xfb\x62\x72\x04\x7f\x8d\x23\x2d\x7f\x84\xc4\x7c\x7e\xa0\x1f\xf7\xeb\x45\x81\xf7\x67\xb0\x24\xe7\x0f\x8f\x90\x55\x53\xb1\x7d\x37\x5b\x29\xcd\x0f\xce\x8b\xa1\x70\x0c\xe6\x95\xc8\x48\xd0\x7a\xc0\xbc\x6d\xab\x1b\xc4\x0c\x98\x95\xfc\x73\x3c\x18\xc3\x9d\x02\x8a\xf8\x2b\x03\xe4\x6e\xef\x6e\x0f\xfe\x2f\x00\x00\xff\xff\x25\x78\x95\x5d\xa0\xda\x00\x00" func flowstakingcollectionCdcBytes() ([]byte, error) { return bindataRead( @@ -179,11 +179,11 @@ func flowstakingcollectionCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowStakingCollection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0xc8, 0xf2, 0xe3, 0xb2, 0x78, 0x49, 0xdf, 0xd, 0x4c, 0x1a, 0x73, 0x13, 0x89, 0x44, 0x8c, 0x33, 0x71, 0x5e, 0x9, 0xf7, 0xd5, 0x9d, 0x2e, 0x96, 0x94, 0x9d, 0x7b, 0x91, 0x5b, 0x14, 0x87}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xd2, 0xe5, 0xb1, 0x33, 0x50, 0x4c, 0xdb, 0x9c, 0x83, 0x2a, 0xe4, 0x3e, 0xf2, 0xa6, 0x13, 0x6e, 0xdd, 0xfd, 0x78, 0x59, 0xdd, 0xfc, 0xa7, 0x3c, 0xbc, 0x5d, 0x6b, 0x18, 0x99, 0x7f, 0xe9}} return a, nil } -var _flowstoragefeesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x5a\x59\x6b\x1c\xcb\xf5\x7f\x9f\x4f\x71\x30\xfc\xff\x77\xc6\x91\x7b\x24\xb8\x98\x20\xac\x80\xae\x13\x05\x43\x4c\x82\xad\x9b\x3c\x18\xc7\xaa\xe9\x3e\x3d\x53\xb8\xbb\x6a\xa8\xaa\x9e\xf1\x60\xfc\xdd\xc3\xa9\xad\xab\xb7\x59\x14\xf0\x4b\xf4\x62\xa9\xbb\xea\x77\xf6\xb5\xbd\x7c\x39\x83\x97\xf0\xb8\x41\x78\xa8\xe4\xfe\xa3\x91\x8a\xad\xf1\x01\x51\x83\xae\x99\x32\x90\x4b\x61\x14\xcb\xcd\x0c\xec\xc1\x7b\x01\x2c\xcf\x65\x23\xcc\x2f\x1a\xb4\x3b\x0d\x39\xdb\xb2\x9c\x9b\x03\x14\x68\x50\xd5\x5c\xa0\x86\x66\x0b\x46\xc2\x46\xee\xa1\x6e\xf2\x4d\x3c\x2a\x05\xe4\x1b\xc6\x05\x70\x03\x39\x13\xd0\x68\xcc\xc0\x02\x0f\xd1\xb8\x86\x9c\x55\x79\x53\x31\x83\x05\xac\x0e\x50\x37\x95\xe1\xdb\xea\xc0\xc5\x1a\xcc\x06\x81\xd5\xc4\x08\xc8\x12\x14\x6a\x54\x3b\x2c\xa0\xac\xe4\x1e\xf6\xdc\x6c\xe0\xa9\x95\x25\xf3\xd0\xef\x71\xcd\x7e\x3b\x18\xd4\xff\x40\xf5\xc1\xdf\x78\xf8\xdb\xdf\xff\xf5\x14\x54\x50\x73\xc1\xeb\xa6\x4e\x80\x2d\x9e\x91\x5f\x51\xe8\x84\x88\x54\xa3\xdc\x3e\xf5\x54\x98\x79\x3c\xff\xc8\x91\x64\x86\x4b\xf1\x04\x66\xc3\x35\xdd\xd9\x32\x5e\x40\xd1\x28\x92\xc9\x6b\x16\x72\x85\xf6\xd4\x15\x09\x4d\x82\xda\x07\x52\x65\xc4\xa7\x55\x96\xb1\x8f\x51\x14\xc4\x23\xab\x2a\x30\x8a\x09\xcd\x72\xba\xa5\xaf\x80\x89\x43\x04\x33\x1b\x66\x60\xc3\x0a\xfb\x70\xc7\xaa\x06\xc9\x02\x62\x8d\x05\x70\x41\x30\xbc\x15\x86\xb0\x37\x4c\xf7\x9e\x46\x11\xf3\x0d\xe6\x5f\xb1\x00\xb6\x66\x5c\x68\xd3\x3b\xd6\x68\x7a\x25\x0a\xff\xb8\x26\x2b\xb7\xea\x83\x1d\x6b\x2a\x93\x5e\x8d\xda\x56\xad\x5e\xac\x84\xef\xca\x8e\x00\x25\xe3\x95\x76\xfa\xb2\x0c\xd8\xbb\x89\xbc\xb0\xe7\x95\x3d\xd4\xaa\x27\x3a\x29\xd4\x72\xc7\xc5\x7a\x59\x60\x85\x86\x54\xcc\x8d\x37\xd3\x23\x31\x95\xfd\x93\x98\x7a\x22\x0e\x64\xa3\x72\x24\xa8\x8a\xfe\x22\x56\x09\xc9\x69\xa8\x43\x8d\x28\x11\xd2\x0a\x73\xd6\x68\x74\x8e\xe8\xa9\xd9\xeb\x1b\xb6\x43\x10\x72\xa0\xbe\xc0\xde\x72\x36\xe3\xf5\x56\x2a\x03\x0f\x8d\x58\xf3\x55\x85\x96\x17\x28\x95\xac\xe1\x45\xe7\xd9\x8b\x78\x32\x70\x1c\x4e\x85\xbf\x5f\xcc\x66\x2c\xcf\x51\xeb\x39\xab\xaa\x45\x8c\xd6\x41\x30\x7f\x9f\xcd\x00\x00\x96\x4b\xf8\x4b\xcd\x0d\xc5\xd3\x7e\x83\xa2\x17\x45\x03\x83\xb3\x56\x91\xe4\x16\x5b\x54\x6d\x10\x3c\xb4\xa6\x75\xfe\xa4\x2d\x85\x94\x1b\xdc\xa1\x30\xf0\xf1\x78\xf0\xbd\x75\xce\x38\xff\x02\x27\xa2\xf4\x16\x7e\x7f\xe0\xdf\x5e\xff\xba\x98\x16\x65\x18\xbf\x0f\x49\xfc\xda\x48\x48\x44\x12\x88\x85\xb6\x59\x8a\x2c\x76\x3c\xba\xbd\x88\xd9\x84\x8c\xef\xa7\x02\xbd\x95\x6e\x32\x17\x0c\xe5\xfa\x33\x96\x36\x87\x0e\xb2\x67\x64\x07\x77\xa8\x0e\xe7\xd8\x26\x0b\x98\x05\x61\x72\xeb\xc1\x5c\xc3\x5e\x91\xe6\x84\xbd\xd5\x08\xde\xa6\x3a\x0a\x4e\x64\x36\xad\x90\x42\xb9\xd8\xa1\xd2\x78\x05\x01\x46\x4b\x7a\xae\x90\x40\x84\x84\x4a\x6a\x4d\x67\xb7\x0a\x73\xae\x09\x3c\x64\x6c\x0a\x91\xc0\xb6\xf5\x59\x82\x6f\x71\x56\x8d\x69\x81\x86\x28\xd6\xa2\x29\x94\x65\x8e\xb8\xf5\x98\x43\x43\xec\x98\x3a\xd7\x83\x06\x8a\x3e\xd3\x77\xba\x5a\xbf\xc0\x7d\xa2\x15\x6c\x6a\xeb\xd8\xad\x42\x6d\xe9\x0b\x97\xe1\x3c\xf5\x88\xe6\x0b\x40\xc8\xf4\xe2\xd0\xc9\x45\xdc\xc0\x96\x29\xc3\x73\xbe\xb5\x35\x92\x8b\xab\xb1\xec\x18\xd3\xe3\x88\xca\x4e\xba\x65\x54\x16\x65\xd5\x82\x8e\x6b\xa3\xa8\x1a\xb5\x59\xd3\x2a\x87\xaa\xb9\x8b\x12\xcb\xc2\x96\x29\x56\x53\x3b\xa0\x83\x2f\x1d\xef\x2f\x86\xdc\x45\xf8\xfb\x0e\x55\x9f\xc9\x3c\x53\x2e\xbe\xf4\x33\x12\x99\xff\x5b\xff\xd2\x2a\x3b\x5c\x23\x5f\xc9\x22\x95\x94\xa7\xb2\x11\xa0\xd1\x9c\x48\x69\x17\xe4\x32\xf8\x1e\xe9\xd0\x0f\x2f\xfb\x6a\x3a\xd5\xbb\xc0\xdd\xdd\x29\x62\x3d\x1a\x00\x0a\x4d\xa3\x44\xe7\xe1\x8f\xce\x5f\x17\xf3\x70\x8a\x85\x0e\x3a\xd6\xfc\xec\xaa\x70\x02\x77\x31\x6b\x05\x98\x72\x8b\x91\xc0\x26\x9e\x7b\x2e\xd1\x8f\xe3\xa3\xf6\x9f\x4c\xf7\x67\xe5\xf9\xd3\x36\x9f\xc4\x20\x6b\x4f\xbf\xfc\xaf\xed\x7c\x84\xee\x34\xd9\xa1\x6d\x4f\x56\xc3\x49\xac\x51\x7b\x7a\x03\x84\x4c\xb1\x00\x2a\x64\xf3\xc5\x77\x27\xcb\x8f\x90\xa0\x96\xed\xb4\x70\xef\x0c\xfb\x36\x84\xbf\x53\x84\x73\x87\x41\x6e\x90\x69\x4e\x0e\x58\x11\xf3\x83\xbf\x5a\xe3\x9a\xad\xc8\x03\xe3\x9b\x77\x65\xa7\xf7\x23\x27\x12\x92\xea\xac\x6d\x74\x57\xac\x62\x22\x47\x4a\xd1\xd4\xb8\xd2\x11\x6a\x8f\x35\xb0\xf8\x4a\x96\x70\x9d\x5d\x43\x8c\x8f\xbe\xa3\x4d\x89\x33\xff\x12\x88\xde\x17\x85\x42\xad\x6f\xc1\xff\xb2\x08\x3e\x96\xb8\x02\x25\xf9\x40\xf1\x8e\x08\xc6\x37\x15\x1a\x02\x32\x70\x07\x6b\x34\x9e\xc8\xbc\x0b\xbd\x68\xcd\xc0\x4b\x7b\xc3\x63\xbd\x65\x5b\xb8\xb3\xd7\x33\xd2\xe4\x8a\x57\xdc\x70\xd4\xd9\x1a\xcd\x9b\xff\xef\x35\xd8\x7f\x9a\x2f\xb7\xcd\xaa\xe2\xf9\xb2\x0c\x2f\x7e\x73\x28\x23\xb1\x90\xd0\xf8\x80\x25\xdc\x25\x04\xb3\x95\x54\x4a\xee\xe7\xfd\x5b\xf4\xd3\x8a\xd8\x5e\x26\x66\x3c\xa1\xf9\x62\x22\x0c\x12\x3f\x73\x5e\x02\x1a\xab\x32\xf3\x5a\xf0\xb7\x1f\xa5\xd7\x8e\xf7\xd8\x68\x09\x4f\x6b\x71\xca\x13\xf5\xf9\xae\x08\x2b\x66\xf2\x8d\xfd\xd5\xdf\x3d\xcb\x39\xf4\xa4\x77\xa0\xbe\x85\x4f\xfe\xf7\xcf\x8b\x5b\xf8\xe4\x5c\xe4\x73\xa2\x44\xd2\xb9\x67\x82\xdb\xe3\xe1\xc8\x1d\x7c\xfa\x1c\x4f\x51\x67\xd3\x85\xa6\xf9\xa8\x4f\xac\x67\x9b\x04\xfa\x40\x75\x82\x94\x3b\xe9\xd8\x7d\xdf\x4b\x81\x5a\xfe\x32\xb6\xdd\xa2\x28\xe6\x01\x36\x4d\x1a\x3d\x5b\xb6\x97\xba\x16\x4a\x1c\x3e\x2a\xee\x41\xaa\xc7\xb6\x6f\x0a\x96\xb6\x13\xe7\x73\x8d\xb6\x5c\xc2\xa3\x9f\xf3\xed\x74\x6c\xa4\x1f\x61\x39\xdd\x19\xed\xd2\xe2\x5c\x29\xbb\x53\xf0\x0a\xa9\x0d\x96\x3b\x54\xa3\x5c\xb4\xe4\xa8\xf5\x3a\xa0\x22\x9a\x4c\x00\x7e\xcb\x71\x6b\x29\x30\x6d\x87\xdf\xb1\xbd\x45\x81\x8a\xdb\xd6\x95\xfa\x74\x3a\x14\x82\xa9\xe6\xa2\xf1\x45\x94\x7d\xb3\x45\x74\x2b\xb5\xa6\xf1\xb4\x3b\x12\x53\x3b\x17\x38\x98\x0f\xde\x70\x97\x28\xf1\x1b\xe6\x8d\x7d\x8a\x65\x49\x43\x2d\x71\x68\x06\xaf\xe8\x4d\xc5\x6b\x6e\xae\x80\x65\x5f\x33\x96\xdd\x42\x2e\xeb\x6d\x63\x5c\x21\xea\xbd\x5a\x53\x0b\x4d\x8f\x16\xa3\x51\x72\x91\x99\xe7\x47\xe2\xe6\xca\x69\x35\x66\xda\x2b\xd2\xc8\xe3\x37\xaa\x9a\xb1\xae\xff\xec\xd0\x9a\xce\xec\xcf\xc8\xee\x3f\x2b\xc3\x0f\xe9\x5c\x92\xe5\xfd\xed\x9e\xaa\xee\xee\xbc\xcf\x8f\x5f\xf0\x8e\xc9\xbb\xf5\x9a\x6b\x3f\xa7\x1c\x50\x5d\x41\x81\x45\x93\x9b\x33\x5d\xdd\xc6\x09\x1d\xf5\x4c\x4f\x52\x3d\x59\x94\x32\xcd\x4c\xa3\xec\x88\xfb\xb1\x59\xd9\xf6\x66\x1e\x1d\x6b\x31\x8a\xfb\x03\xb0\xd2\x78\x44\xd4\xcb\x2a\x61\x84\x1d\x3c\xfd\xd1\xab\x98\x27\xb2\xf1\x73\xca\xe6\x02\x9e\x91\xba\xcf\xa3\x71\x34\x67\x47\xa8\x76\x06\xd8\xcb\xa6\x2a\xdc\x08\x60\xd7\xc7\x6b\xbe\xf3\x4b\x25\xbb\x7a\x48\x7a\xb6\xc4\x89\x46\x46\x6a\x8e\x7b\x9b\x79\xce\xd4\xc4\x97\x80\x9c\x64\x91\x41\x0b\xe7\xea\x15\x30\xef\xee\x6e\xe9\xd6\xf7\x3d\x5e\x46\x26\xdf\xb8\x32\x7b\xee\xa0\xe0\x62\xe3\x8d\xdb\x42\xb4\x4b\x59\x6b\x85\x6e\x4e\x09\x0f\x93\x54\xd3\x9d\xbb\xfc\x81\x58\x3f\xdc\xc2\x9e\x63\xe1\x94\x1a\x9b\x68\x3b\x81\x5b\xc5\x8e\x76\x5f\x2e\x89\x9c\xd7\x6c\xc1\xbd\x9b\xeb\xb8\x48\x17\x36\xe1\xe5\x78\xfb\x3e\x6a\xb1\x71\xa2\x5f\xfc\xdc\x78\xcc\x3e\x9e\x75\x77\x30\x09\xe9\xf7\xfe\x7b\xc5\xfc\xc2\x79\x7a\x5a\xc2\xfe\x14\x12\xe5\xeb\x8b\x3e\x2a\xa1\xee\xca\xf6\x28\xe9\xd6\x59\x12\x3e\x6f\x2f\x41\xd3\xcd\xf7\xd3\x0e\x94\xf8\x4f\xcc\xb9\x83\x95\x60\xe7\x54\x63\x4c\xf8\x06\xe4\x97\xf5\x2b\x46\x5d\x95\x30\x12\x9e\x46\xed\xf8\x04\x35\x5f\x6f\x0c\x08\x69\xe0\xc0\xb1\x2a\x5c\x5e\x60\x75\x40\x18\x37\x26\x2c\x2f\x95\xbb\x67\xba\x5c\x8a\x1d\xaa\xa4\xef\xb2\x7d\xa0\x2d\x20\xbf\xbf\x13\xe6\xf5\xaf\x60\x41\xa8\x33\xf4\x4a\x7f\x1f\x4c\x7c\x24\xb9\x78\x54\x87\xe0\x99\xb3\x38\x8f\xd2\xa1\x44\x90\x76\x15\x75\xeb\x09\x4e\x24\x18\xcd\x4a\x0c\xb8\x81\xb5\x96\xa9\x39\x85\xaf\x6c\x8c\x6d\x40\x49\xc1\x8b\x4e\x83\x43\x05\xdc\x9d\x0c\x0b\x1b\xf8\x3f\xb8\xb9\xf6\x3f\x0b\x78\x49\x16\x77\x3f\x37\xf0\x87\xfe\xd1\x65\x72\x34\x65\xa9\xc0\x9c\xd7\xac\x82\xad\xe4\xc2\x40\x2e\x95\x42\x5b\x84\xb3\x56\x47\xc4\xa2\xfb\xc5\x66\x6e\xe6\x25\xb0\x3b\x64\x59\xc2\xcd\xf5\xbf\x5f\xbd\x86\xfd\x86\x57\x18\x24\x09\xf9\xcd\x7d\x09\xe3\xda\x9e\xf9\x63\x47\x9a\x60\xe1\x15\xdc\x41\x39\x16\xce\x37\xd7\xd7\x59\xc2\x6a\xc8\x5c\xe1\x5a\x7f\x18\xfc\x2b\x1a\x0d\x2f\xd8\x8e\xf1\x8a\xad\x2a\x7c\x91\x16\x93\x23\x9b\x07\x6a\xe5\xe3\xa5\xf1\x3b\xc4\x3f\xf5\xeb\x61\xe9\xd0\xa9\x0c\xbe\x7b\xdf\x6f\x98\x3d\x37\xb6\xa0\xce\x7e\xde\x32\xc3\x43\xd9\xd6\xf0\x3e\x48\x15\x5a\x92\x8b\x16\x1a\xcb\xe5\xba\x6d\x1e\x93\x91\xeb\xc2\xbd\x46\x38\x3d\xec\xa2\xff\x77\x36\x1e\xbe\xb1\x68\xbf\x33\x6d\x6c\x17\xb4\x1a\xff\x9c\xd1\x51\x59\x3c\xe0\x67\xfa\xd4\xbe\x21\x1f\x06\x4e\x26\x87\x8e\x6e\xbb\x30\xd6\x0c\x07\x32\x83\x0d\x8b\x0b\xaa\xf0\xfa\x92\x98\x6a\xbf\xad\x1c\x0b\xa9\x4e\xbe\x4e\xfa\x18\xff\x41\x26\x76\x94\x52\x9b\xb6\x99\xe9\x7c\x72\x9b\xa0\xe6\xa6\xde\x0a\x59\xef\x2b\x78\x40\xec\x7e\x0d\x9f\xaa\x00\xc7\xd4\x7d\x51\x34\x5d\x1e\x2c\x7d\xcb\x8f\x77\x15\x6e\xd1\x73\x7e\x9d\xb2\x71\x15\xd2\x12\x29\x7d\xd1\xa9\x05\x51\x65\x27\x3a\xdb\xa1\x07\xa7\xd1\x1c\x59\xbf\xb0\x43\xee\x8b\x7c\x7a\x17\x3e\x5c\x2b\x76\xf8\xf1\xaf\xdd\x22\x3b\x21\x96\x2a\xf4\xc8\xd7\x96\x9b\xec\x9a\x94\x72\x03\xef\x57\xd6\xf9\x6e\x92\xfe\xaf\x8b\x75\x6c\xa3\x7f\xed\x50\xa4\x82\x6b\xf8\xba\xa2\x30\x38\xe2\x8b\xb3\xae\xc7\x14\x35\x17\xf0\xe6\x95\xfb\x9f\x29\xbd\x4f\x74\x49\xe6\x49\x87\xc2\x68\x5d\xcd\x76\x38\x7f\xf3\xca\x62\x5c\x81\x91\xb7\xb0\xf4\xaf\xc2\xbf\xd4\x68\x59\xc8\x10\xf6\x3f\x66\xf0\x9f\x00\x00\x00\xff\xff\x69\xa6\x69\x37\xa9\x24\x00\x00" +var _flowstoragefeesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5a\xeb\x6b\x23\xc9\x11\xff\xae\xbf\xa2\x30\x24\x27\x6d\xbc\x23\x1b\x8e\x25\x18\x3b\xe0\xbb\xc4\x61\x21\x26\x61\xd7\x97\x7c\x58\x36\xeb\xd6\x4c\x8d\xa6\xd9\x99\x6e\xd1\xdd\x23\x59\x2c\xfb\xbf\x87\xea\xd7\xbc\xf5\x70\x60\xe1\xf4\xc5\xd2\x74\xf5\xaf\xde\xd5\x55\x3d\x5e\xbe\x99\xc1\x1b\x78\x2a\x10\x1e\x4a\xb9\xfb\x68\xa4\x62\x6b\x7c\x40\xd4\xa0\x2b\xa6\x0c\xa4\x52\x18\xc5\x52\x33\x03\x4b\x78\x2f\x80\xa5\xa9\xac\x85\xf9\x49\x83\x76\xd4\x90\xb2\x0d\x4b\xb9\xd9\x43\x86\x06\x55\xc5\x05\x6a\xa8\x37\x60\x24\x14\x72\x07\x55\x9d\x16\x91\x54\x0a\x48\x0b\xc6\x05\x70\x03\x29\x13\x50\x6b\x4c\xc0\x02\x0f\xd1\xb8\x86\x94\x95\x69\x5d\x32\x83\x19\xac\xf6\x50\xd5\xa5\xe1\x9b\x72\xcf\xc5\x1a\x4c\x81\xc0\x2a\x12\x04\x64\x0e\x0a\x35\xaa\x2d\x66\x90\x97\x72\x07\x3b\x6e\x0a\x78\x6e\x74\x49\x3c\xf4\x23\xae\xd9\x2f\x7b\x83\xfa\x5f\xa8\x3e\xf8\x1d\x0f\xff\xf8\xe7\x7f\x9e\x83\x09\x2a\x2e\x78\x55\x57\x2d\x60\x8b\x67\xe4\x57\x14\xba\xc5\x44\xaa\x51\x69\x9f\x7b\x26\x4c\x3c\x9e\x7f\xe4\x58\x32\xc3\xa5\x78\x06\x53\x70\x4d\x7b\x36\x8c\x67\x90\xd5\x8a\x74\xf2\x96\x85\x54\xa1\xa5\xba\x24\xa5\x49\x51\xfb\x40\xaa\x84\xe4\xb4\xc6\x32\xf6\x31\x8a\x8c\x64\x64\x65\x09\x46\x31\xa1\x59\x4a\xbb\xf4\x25\x30\xb1\x8f\x60\xa6\x60\x06\x0a\x96\xd9\x87\x5b\x56\xd6\x48\x1e\x10\x6b\xcc\x80\x0b\x82\xe1\x8d\x32\x84\x5d\x30\xdd\x7b\x1a\x55\x4c\x0b\x4c\xbf\x62\x06\x6c\xcd\xb8\xd0\xa6\x47\x56\x6b\x5a\x12\x99\x7f\x5c\x91\x97\x1b\xf3\xc1\x96\xd5\xa5\x69\x6f\x8d\xd6\x56\x8d\x5d\xac\x86\xef\xf3\x8e\x02\x39\xe3\xa5\x76\xf6\xb2\x02\xd8\xbd\x2d\x7d\x61\xc7\x4b\x4b\xd4\x98\x27\x06\x29\x54\x72\xcb\xc5\x7a\x99\x61\x89\x86\x4c\xcc\x8d\x77\xd3\x13\x09\x95\xfc\x9b\x84\x7a\x26\x09\x64\xad\x52\x24\xa8\x92\x7e\x91\xa8\x84\xe4\x2c\xd4\xe1\x46\x9c\x08\x69\x85\x29\xab\x35\xba\x40\xf4\xdc\xec\xf6\x82\x6d\x11\x84\x1c\x98\x2f\x88\xb7\x9c\xcd\x78\xb5\x91\xca\xc0\x43\x2d\xd6\x7c\x55\xa2\x95\x05\x72\x25\x2b\xb8\xe8\x3c\xbb\x88\x94\x41\xe2\x40\x15\x7e\x5f\xcc\x66\x2c\x4d\x51\xeb\x39\x2b\xcb\x45\xcc\xd6\x41\x32\x7f\x9b\xcd\x00\x00\x96\x4b\xf8\x5b\xc5\x0d\xe5\xd3\xae\x40\xd1\xcb\xa2\x81\xc3\x59\x63\x48\x0a\x8b\x0d\xaa\x26\x09\x1e\x1a\xd7\xba\x78\xd2\x96\x43\x5b\x1a\xdc\xa2\x30\xf0\xf1\x70\xf2\xfd\xea\x82\x71\xfe\x05\x8e\x64\xe9\x0d\xfc\xf6\xc0\x5f\xde\xfd\xbc\x98\x56\x65\x98\xbf\x0f\xad\xfc\xb5\x99\xd0\x52\x49\x20\x66\xda\x56\x29\xf2\xd8\xe1\xec\xf6\x2a\x26\x13\x3a\x3e\x4e\x25\x7a\xa3\xdd\x64\x2d\x18\xea\xf5\x57\xcc\x6d\x0d\x1d\x54\xcf\x28\x0e\x6e\x51\xed\x4f\xf1\x4d\x12\x30\x33\xc2\xe4\x36\x82\xb9\x86\x9d\x22\xcb\x09\xbb\xab\x16\xbc\x29\x75\x94\x9c\xc8\x6c\x59\x21\x83\x72\xb1\x45\xa5\xf1\x12\x02\x8c\x96\xf4\x5c\x21\x81\x08\x09\xa5\xd4\x9a\x68\x37\x0a\x53\xae\x09\x3c\x54\x6c\x4a\x91\x20\xb6\x8d\x59\x82\x6f\x70\x56\xb5\x69\x80\x86\x28\xd6\xa3\x6d\x28\x2b\x1c\x49\xeb\x31\x87\x8e\xd8\x32\x75\x6a\x04\x0d\x0c\x7d\x62\xec\x74\xad\x7e\x46\xf8\x44\x2f\xd8\xd2\xd6\xf1\x5b\x89\xda\xf2\x17\xae\xc2\x79\xee\x11\xcd\x1f\x00\xa1\xd2\x8b\x7d\xa7\x16\x71\x03\x1b\xa6\x0c\x4f\xf9\xc6\x9e\x91\x5c\x5c\x8e\x55\xc7\x58\x1e\x47\x4c\x76\x34\x2c\xa3\xb1\xa8\xaa\x66\x44\xae\x8d\xa2\xd3\xa8\xa9\x9a\xd6\x38\x74\x9a\xbb\x2c\xb1\x22\x6c\x98\x62\x15\xb5\x03\x3a\xc4\xd2\xe1\xfe\x62\x28\x5d\x84\xbf\xef\x70\xf5\x95\xcc\x0b\xe5\xf2\x4b\xbf\xa2\x90\xf9\xdf\xfa\xa7\xc6\xd8\x61\x1b\xc5\x4a\x12\xb9\xb4\x65\xca\x6b\x01\x1a\xcd\x91\x92\x76\x46\x2d\x83\x6f\x91\x0f\x7d\x78\xde\x37\xd3\xb1\xde\x05\xee\xee\x8e\x31\xeb\xf1\x00\x50\x68\x6a\x25\x3a\x0f\xbf\x77\x7e\x9d\x2d\xc3\x31\x11\x3a\xe8\x58\xf1\x93\x4f\x85\x23\xb8\x8b\x59\xa3\xc0\x54\x58\x8c\x24\x36\xc9\xdc\x0b\x89\x7e\x1e\x1f\xf4\xff\x64\xb9\x3f\xa9\xce\x1f\xf7\xf9\x24\x06\x79\x7b\x7a\xf1\xff\xf6\xf3\x01\xbe\xd3\x6c\x87\xbe\x3d\x7a\x1a\x4e\x62\x8d\xfa\xd3\x3b\x20\x54\x8a\x05\xd0\x41\x36\x5f\x7c\x73\xba\x7c\x0f\x05\x6a\xd9\x4c\x0b\xf7\xce\xb1\xbf\x86\xf4\x77\x86\x70\xe1\x30\xa8\x0d\xb2\x5d\x93\x03\x56\xc4\xfc\xe0\xb7\x56\xb8\x66\x2b\x8a\xc0\xb8\xf2\x3e\xef\xf4\x7e\x14\x44\x42\xd2\x39\x6b\x1b\xdd\x15\x2b\x99\x48\x91\x4a\x34\x35\xae\x44\x42\xed\xb1\x06\x16\x97\x64\x0e\x57\xc9\x15\xc4\xfc\xe8\x07\xda\x94\x3a\xf3\x2f\x81\xe9\x7d\x96\x29\xd4\xfa\x06\xfc\x97\x45\x88\xb1\x56\x28\x50\x91\x0f\x1c\xef\x88\x61\x5c\x29\xd1\x10\x90\x81\x3b\x58\xa3\xf1\x4c\xe6\x5d\xe8\x45\xe3\x06\x9e\xdb\x1d\x1e\xeb\x03\xe6\x70\x67\xb7\x27\x64\xc9\x15\x2f\xb9\xe1\xa8\x93\x95\x54\x4a\xee\x6e\xff\xd8\xeb\xb1\xff\x32\x5f\x6e\xea\x55\xc9\xd3\x65\x1e\x16\x7e\x71\x40\xfd\x74\x68\x64\x6d\x38\x25\x6b\x34\x9e\x7c\x3e\x1a\x22\xce\xc1\xa0\xb1\xcc\x13\xaf\x80\xa7\x7f\x92\x5e\x31\x1f\x6c\xd1\x88\x1e\x7d\x71\x2c\x88\xf4\xe9\x51\x04\x2b\x66\xd2\xc2\x7e\xf5\x7b\x4f\xf2\xab\x9e\x74\x2c\xea\x1b\xf8\xe4\xbf\x7f\x5e\xdc\xc0\x27\xe7\xdd\xcf\x2d\x93\x91\x4b\xbc\x10\xdc\x92\x07\x92\x3b\xf8\xf4\x39\x52\x51\x53\xd2\x85\xa6\xd1\xa6\xcf\xac\xe7\x89\x16\xf4\x9e\x4a\x3c\x19\x77\x32\x26\xfb\x61\xd3\x06\x6a\xe4\x4b\xd8\x66\x83\x22\x9b\x07\xd8\xb6\x33\x7b\xbe\x6c\x36\x75\x3d\xd4\x8a\xd5\x68\xb8\x07\xa9\x9e\x9a\x96\x27\x78\xda\x0e\x8b\xaf\x75\xda\x72\x09\x4f\x7e\x44\xb7\x83\xad\x91\x7e\xfa\xe4\xb4\x67\xb4\xc1\x8a\x23\xa1\xec\x0e\xb0\x2b\xa4\x0e\x56\x6e\x51\x8d\x4a\xd1\xb0\xa3\xae\x69\x8f\x8a\x78\x32\x01\xf8\x92\xe2\xc6\x72\x60\xda\xce\xad\x63\x57\x0e\x19\x2a\x6e\xbb\x4e\x6a\xb1\x89\x28\xa4\x4f\xc5\x45\xed\xcf\x3f\xf6\x62\xcf\xbf\x8d\xd4\x9a\x26\xcb\xee\x34\x4b\x9d\x58\x90\x60\x3e\x58\xe1\xae\xc6\xe1\x0b\xa6\xb5\x7d\x8a\x79\x4e\xf3\x28\x49\x68\x06\x4b\xb4\x52\xf2\x8a\x9b\x4b\x60\xc9\xd7\x84\x25\x37\x90\xca\x6a\x53\x1b\x77\x86\xf4\x96\xd6\xd4\xfd\xd2\xa3\xc5\x68\x96\x9c\xe5\xe6\xf9\x81\xbc\xb9\x74\x56\x8d\x45\xf2\x92\x2c\xf2\xf4\x42\x07\x5e\x3c\x92\x7f\x74\x6a\x4d\x17\xe5\x57\x14\xe6\x1f\x58\x9c\x3d\xab\x9e\xbe\x77\x77\x3e\x70\x87\xc4\x3e\xb2\x78\xf7\xac\xe4\xda\xcf\x08\x7b\x54\x97\x90\x61\x56\xa7\xe6\xc4\x58\xb5\x81\x4e\xa4\x5e\xd5\x51\x8e\x47\xcf\x90\x44\x33\x53\x2b\x3b\x5a\x7e\xac\x57\xb6\xad\x98\xc7\xa8\x58\x0c\x30\xbf\x03\x96\x1a\x27\xd4\x3b\xfd\xc0\x8a\x70\xbd\x96\xec\x48\xb1\x7c\xcd\xa9\xb6\x80\x57\x54\xd6\xd3\x78\x1c\x2c\xa9\x11\xaa\xe9\xae\x77\xb2\x2e\x33\xd7\x5c\xdb\x8b\xd9\x35\xdf\xfa\xeb\x1a\x3b\xd4\xb7\xba\xa1\x56\x88\x8c\x0c\xab\x1c\x77\xb6\x30\x9c\x68\x89\x2f\x01\xb9\x95\xe4\x83\xe6\xc8\x1d\x27\xc0\x7c\x20\xbb\xeb\xac\x7e\x64\xf1\x3c\x0a\x79\xeb\x4e\xc1\x53\x5b\x70\x17\xf9\xb7\x6e\xbe\x6f\xae\x3b\xad\x17\xba\x29\x1f\x1e\xb6\x2a\x41\x77\xa2\xf1\x04\xb1\xbc\xbb\xab\x70\x8e\x99\x33\x6a\x6c\x4f\xed\x6c\x6b\x0d\x3b\xda\x1c\xb9\x04\x3f\xad\x17\x82\x7b\x37\x31\x71\xd1\xbe\x0a\x09\x8b\xe3\x8d\xf1\xa8\xc7\xc6\x99\x7e\xf1\x13\xd9\x21\xff\x78\xd1\x1d\x61\x2b\x69\x1f\xfd\x9b\x80\xf9\x99\x93\xea\xb4\x86\xfd\xfe\x3e\xea\xd7\x57\x7d\x54\x43\xdd\xd5\xed\x49\xd2\xae\x93\x34\x7c\xdd\xc4\x4f\x73\xc3\xb7\xe3\x01\xd4\x8a\x9f\x58\x51\x07\x97\x6d\x1d\xaa\xda\x98\xf0\x76\xc5\x5f\x83\xaf\x18\x35\x3d\xc2\x48\x78\x1e\xf5\xe3\x33\x54\x7c\x5d\x18\x10\xd2\xc0\x9e\x63\x99\xb9\xba\xc0\xaa\x80\x30\xee\x4c\x58\x9e\xab\x77\xcf\x75\xa9\x14\x5b\x54\xad\xb6\xc8\xb6\x69\xf6\x78\xf8\xed\xbd\x30\xef\x7e\x06\x0b\x42\x8d\x9b\x37\xfa\x63\x70\xf1\x81\xe2\xe2\x51\x1d\x82\x17\xce\xe2\x3c\x49\x87\x12\x41\x9a\x4b\x9e\x1b\xcf\x70\xa2\xc0\x68\x96\x63\xc0\x0d\xa2\x35\x42\xcd\x29\x7d\x65\x6d\x6c\x7f\x48\x06\x5e\x74\xfa\x0f\x3a\xc7\x1d\x65\xb8\x0a\x81\x3f\xc0\xf5\x95\xff\x2c\xe0\x0d\x79\xdc\x7d\xae\xe1\x4f\x7d\xd2\x65\x8b\xb4\x2d\x52\x86\x29\xaf\x58\x09\x1b\xc9\x85\x81\x54\x2a\x85\xf6\x88\x4d\x1a\x1b\x91\x88\xee\x8b\xad\xdc\xcc\x6b\x60\x6f\x67\x65\x0e\xd7\x57\xff\x7d\xfb\x0e\x76\x05\x2f\x31\x68\x12\xea\x9b\x7b\xc7\xc4\xb5\xa5\xf9\x73\x47\x9b\xe0\xe1\x15\xdc\x41\x3e\x96\xce\xd7\x57\x57\x49\x4b\xd4\x50\xb9\xc2\xb6\xfe\xac\xf6\x77\x34\x1a\x2e\xd8\x96\xf1\x92\xad\x4a\xbc\x68\x1f\x26\x07\x66\x7a\xea\xb4\xe3\xa6\xf1\x3d\x24\x3f\xb5\xd3\x61\x9c\xef\x9c\x0c\xbe\xb9\xde\x15\xcc\xd2\x8d\x5d\xfd\x26\x3f\xee\x9a\xc0\x43\xd9\xb6\xed\x3e\x68\x15\x9a\x8f\xb3\xae\x0a\x96\xcb\x75\xd3\x43\xb6\x26\xa2\x33\x6f\x0c\x02\xf5\xb0\xc9\xfd\x5d\xdc\x25\xf8\x9e\xa0\x79\xf9\x52\xd8\x06\x66\x35\x7e\xc7\xdf\xd1\x36\x12\xf8\x69\xb9\xed\x9a\x50\xca\x02\xef\xc9\x76\xbe\x7b\xd2\x8f\x75\xaa\x81\xcd\xe0\xee\xc2\xe5\x43\x58\x3e\x27\x1d\x9a\x17\x0e\x87\xb2\xa1\x53\x6a\x5b\x2d\x88\x7f\x4b\x11\x9b\x41\xa9\x4d\xd3\x87\x74\xde\x43\x4d\x70\x73\xf3\x64\x89\xac\xf7\x6a\x38\x20\x76\x5f\x11\x4f\x15\xef\x43\xe6\x3e\x2b\x11\xce\x8f\xf3\xbe\xe7\xc7\x1b\x02\x77\x85\x72\xfa\x11\x63\x53\x22\x54\x14\x32\xfa\xa2\x53\xc6\xa3\xc9\x8e\x34\xa5\xc3\x08\x6e\x27\x62\x14\xfd\xcc\xe6\xb6\xaf\xf2\xf1\x0b\xe2\xe1\x85\x5d\x47\x1e\xbf\xec\x6e\x77\x5b\xcc\xda\x06\x3d\xf0\x0a\xe2\x3a\xb9\x22\xa3\x5c\xc3\xe3\xca\x06\xdf\x75\xab\x75\xeb\x62\x1d\xba\xe6\xbe\x72\x28\x52\xc1\x15\x7c\x5d\x51\x1a\x1c\x88\xc5\x59\x37\x62\xb2\x8a\x0b\xb8\x7d\xeb\xfe\x5d\xa3\xf7\xde\xaa\x55\x6b\xda\xf3\x5c\xf4\xae\x66\x5b\x9c\xdf\xbe\xb5\x18\x97\x60\xe4\x0d\x2c\xfd\x52\xf8\x4b\x3d\x92\x85\x0c\x69\xff\x7d\x06\xff\x0b\x00\x00\xff\xff\x1a\xc8\x81\x66\xbe\x23\x00\x00" func flowstoragefeesCdcBytes() ([]byte, error) { return bindataRead( @@ -199,7 +199,7 @@ func flowstoragefeesCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowStorageFees.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xda, 0x98, 0x68, 0xce, 0xb4, 0x3c, 0x60, 0x5e, 0xde, 0x47, 0x53, 0xf1, 0x9, 0x6d, 0xce, 0x44, 0x42, 0x9f, 0xe9, 0x93, 0xb2, 0xe3, 0x3b, 0x8e, 0x92, 0xbb, 0xc, 0x22, 0xd3, 0xbf, 0x8c, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf2, 0xb1, 0x11, 0xd6, 0x6, 0xff, 0x2d, 0x1d, 0xbc, 0x9a, 0x68, 0x3c, 0x76, 0x79, 0x85, 0xb7, 0xa2, 0x7b, 0x65, 0xa7, 0xe2, 0x39, 0x4a, 0xe8, 0xd4, 0xf0, 0xf7, 0xb7, 0x45, 0x6c, 0xae, 0xa6}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 2b15e9584..1aa259990 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -23,7 +23,7 @@ // dkg/admin/set_safe_threshold.cdc (444B) // dkg/admin/start_dkg.cdc (385B) // dkg/admin/stop_dkg.cdc (348B) -// dkg/create_participant.cdc (452B) +// dkg/create_participant.cdc (445B) // dkg/scripts/get_consensus_nodes.cdc (111B) // dkg/scripts/get_dkg_canonical_final_submission.cdc (106B) // dkg/scripts/get_dkg_completed.cdc (107B) @@ -46,12 +46,12 @@ // epoch/admin/reset_epoch.cdc (1.669kB) // epoch/admin/set_automatic_rewards.cdc (379B) // epoch/admin/set_bonus_tokens.cdc (624B) -// epoch/admin/update_clusters.cdc (343B) -// epoch/admin/update_dkg_phase_views.cdc (333B) -// epoch/admin/update_epoch_config.cdc (1.76kB) -// epoch/admin/update_epoch_views.cdc (334B) -// epoch/admin/update_reward.cdc (346B) -// epoch/admin/update_staking_views.cdc (336B) +// epoch/admin/update_clusters.cdc (361B) +// epoch/admin/update_dkg_phase_views.cdc (351B) +// epoch/admin/update_epoch_config.cdc (1.778kB) +// epoch/admin/update_epoch_views.cdc (352B) +// epoch/admin/update_reward.cdc (364B) +// epoch/admin/update_staking_views.cdc (354B) // epoch/node/register_dkg_participant.cdc (556B) // epoch/node/register_node.cdc (3.114kB) // epoch/node/register_qc_voter.cdc (547B) @@ -66,11 +66,11 @@ // epoch/scripts/get_randomize.cdc (128B) // flowToken/burn_tokens.cdc (1.135kB) // flowToken/create_forwarder.cdc (2.012kB) -// flowToken/mint_tokens.cdc (1.039kB) -// flowToken/scripts/get_balance.cdc (451B) +// flowToken/mint_tokens.cdc (1.019kB) +// flowToken/scripts/get_balance.cdc (435B) // flowToken/scripts/get_supply.cdc (208B) // flowToken/setup_account.cdc (1.478kB) -// flowToken/transfer_tokens.cdc (1.351kB) +// flowToken/transfer_tokens.cdc (1.331kB) // idTableStaking/admin/add_approved_and_limits.cdc (1.627kB) // idTableStaking/admin/add_approved_nodes.cdc (1.055kB) // idTableStaking/admin/capability_end_epoch.cdc (1.32kB) @@ -108,7 +108,7 @@ // idTableStaking/delegation/delegator_add_capability.cdc (869B) // idTableStaking/delegation/get_delegator_committed.cdc (321B) // idTableStaking/delegation/get_delegator_info.cdc (299B) -// idTableStaking/delegation/get_delegator_info_from_address.cdc (521B) +// idTableStaking/delegation/get_delegator_info_from_address.cdc (505B) // idTableStaking/delegation/get_delegator_request.cdc (330B) // idTableStaking/delegation/get_delegator_rewarded.cdc (319B) // idTableStaking/delegation/get_delegator_staked.cdc (315B) @@ -138,7 +138,7 @@ // idTableStaking/scripts/get_delegators_below_min.cdc (1.966kB) // idTableStaking/scripts/get_node_committed_tokens.cdc (263B) // idTableStaking/scripts/get_node_info.cdc (240B) -// idTableStaking/scripts/get_node_info_from_address.cdc (487B) +// idTableStaking/scripts/get_node_info_from_address.cdc (471B) // idTableStaking/scripts/get_node_initial_weight.cdc (251B) // idTableStaking/scripts/get_node_networking_addr.cdc (259B) // idTableStaking/scripts/get_node_networking_key.cdc (251B) @@ -164,32 +164,32 @@ // inspect_field.cdc (122B) // lockedTokens/admin/admin_create_shared_accounts.cdc (4.158kB) // lockedTokens/admin/admin_deploy_contract.cdc (454B) -// lockedTokens/admin/admin_deposit_account_creator.cdc (838B) +// lockedTokens/admin/admin_deposit_account_creator.cdc (818B) // lockedTokens/admin/admin_remove_delegator.cdc (471B) -// lockedTokens/admin/check_main_registration.cdc (975B) +// lockedTokens/admin/check_main_registration.cdc (955B) // lockedTokens/admin/check_shared_registration.cdc (639B) // lockedTokens/admin/custody_create_account_with_lease_account.cdc (3.403kB) // lockedTokens/admin/custody_create_only_lease_account.cdc (3.288kB) // lockedTokens/admin/custody_create_only_shared_account.cdc (3.523kB) // lockedTokens/admin/custody_create_shared_accounts.cdc (3.656kB) // lockedTokens/admin/custody_setup_account_creator.cdc (803B) -// lockedTokens/admin/deposit_locked_tokens.cdc (1.708kB) -// lockedTokens/admin/get_unlocking_bad_accounts.cdc (484B) +// lockedTokens/admin/deposit_locked_tokens.cdc (1.688kB) +// lockedTokens/admin/get_unlocking_bad_accounts.cdc (477B) // lockedTokens/admin/unlock_tokens.cdc (599B) -// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.894kB) +// lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc (2.87kB) // lockedTokens/delegator/delegate_new_tokens.cdc (1.232kB) // lockedTokens/delegator/delegate_rewarded_tokens.cdc (550B) // lockedTokens/delegator/delegate_unstaked_tokens.cdc (542B) -// lockedTokens/delegator/get_delegator_id.cdc (414B) -// lockedTokens/delegator/get_delegator_info.cdc (1.446kB) -// lockedTokens/delegator/get_delegator_node_id.cdc (418B) +// lockedTokens/delegator/get_delegator_id.cdc (398B) +// lockedTokens/delegator/get_delegator_info.cdc (1.464kB) +// lockedTokens/delegator/get_delegator_node_id.cdc (402B) // lockedTokens/delegator/register_delegator.cdc (1.604kB) // lockedTokens/delegator/request_unstaking.cdc (544B) // lockedTokens/delegator/withdraw_rewarded_tokens.cdc (828B) // lockedTokens/delegator/withdraw_rewarded_tokens_locked.cdc (550B) // lockedTokens/delegator/withdraw_unstaked_tokens.cdc (550B) -// lockedTokens/staker/get_node_id.cdc (409B) -// lockedTokens/staker/get_staker_info.cdc (1.153kB) +// lockedTokens/staker/get_node_id.cdc (393B) +// lockedTokens/staker/get_staker_info.cdc (1.171kB) // lockedTokens/staker/register_node.cdc (1.584kB) // lockedTokens/staker/request_unstaking.cdc (545B) // lockedTokens/staker/stake_new_tokens.cdc (1.284kB) @@ -201,11 +201,11 @@ // lockedTokens/staker/withdraw_rewarded_tokens_locked.cdc (551B) // lockedTokens/staker/withdraw_unstaked_tokens.cdc (551B) // lockedTokens/user/deposit_tokens.cdc (763B) -// lockedTokens/user/get_locked_account_address.cdc (423B) -// lockedTokens/user/get_locked_account_balance.cdc (422B) -// lockedTokens/user/get_multiple_unlock_limits.cdc (540B) -// lockedTokens/user/get_total_balance.cdc (2.81kB) -// lockedTokens/user/get_unlock_limit.cdc (413B) +// lockedTokens/user/get_locked_account_address.cdc (407B) +// lockedTokens/user/get_locked_account_balance.cdc (406B) +// lockedTokens/user/get_multiple_unlock_limits.cdc (520B) +// lockedTokens/user/get_total_balance.cdc (2.816kB) +// lockedTokens/user/get_unlock_limit.cdc (397B) // lockedTokens/user/withdraw_tokens.cdc (730B) // nodeVersionBeacon/admin/change_version_freeze_period.cdc (810B) // nodeVersionBeacon/admin/delete_version_boundary.cdc (835B) @@ -220,7 +220,7 @@ // quorumCertificate/admin/publish_voter.cdc (405B) // quorumCertificate/admin/start_voting.cdc (1.518kB) // quorumCertificate/admin/stop_voting.cdc (377B) -// quorumCertificate/create_voter.cdc (1.131kB) +// quorumCertificate/create_voter.cdc (1.123kB) // quorumCertificate/scripts/generate_quorum_certificate.cdc (329B) // quorumCertificate/scripts/get_cluster.cdc (192B) // quorumCertificate/scripts/get_cluster_complete.cdc (244B) @@ -261,16 +261,16 @@ // stakingCollection/stake_unstaked_tokens.cdc (724B) // stakingCollection/test/deposit_tokens.cdc (887B) // stakingCollection/test/get_tokens.cdc (693B) -// stakingCollection/transfer_delegator.cdc (2.047kB) -// stakingCollection/transfer_node.cdc (2.161kB) +// stakingCollection/transfer_delegator.cdc (2.027kB) +// stakingCollection/transfer_node.cdc (2.141kB) // stakingCollection/unstake_all.cdc (633B) // stakingCollection/update_networking_address.cdc (651B) // stakingCollection/withdraw_from_machine_account.cdc (713B) // stakingCollection/withdraw_rewarded_tokens.cdc (885B) // stakingCollection/withdraw_unstaked_tokens.cdc (900B) // stakingProxy/add_node_info.cdc (647B) -// stakingProxy/get_node_info.cdc (518B) -// stakingProxy/register_node.cdc (1.121kB) +// stakingProxy/get_node_info.cdc (468B) +// stakingProxy/register_node.cdc (1.13kB) // stakingProxy/remove_node_info.cdc (330B) // stakingProxy/remove_staking_proxy.cdc (338B) // stakingProxy/request_unstaking.cdc (500B) @@ -814,7 +814,7 @@ func dkgAdminStop_dkgCdc() (*asset, error) { return a, nil } -var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x6b\x02\x31\x10\x85\xef\xfb\x2b\xa6\x1e\x24\x0b\x1a\x7b\x5e\x6c\x65\xe9\xb6\x52\xbc\x48\x17\x7a\x1f\xb3\x63\x0c\xae\x49\x98\xcc\x6a\xa1\xf8\xdf\x8b\xee\x5a\x74\x2e\x09\x79\x79\x5f\x1e\x2f\xee\x10\x03\x0b\x7c\xb4\xe1\x54\xad\x96\xb0\xe5\x70\x80\xe7\x9f\x6a\xb5\x2c\xab\xea\xeb\xbd\xae\xb3\x4c\x18\x7d\x42\x23\x2e\x78\x85\x4d\xc3\x94\x52\x01\x65\xbf\x99\x80\x0f\x0d\x7d\x56\x05\xd4\xc2\xce\xdb\x1c\x7e\xb3\x0c\x00\x20\x32\x45\x64\x52\xc9\x59\x4f\x5c\x00\x76\xb2\x53\x35\x1e\xe9\x1b\xdb\x8e\x72\x18\x97\xc6\x84\xce\xcb\xc5\x00\xc3\xb4\x24\x80\xcd\xc1\x79\x78\x01\x4b\x32\xdc\xb8\xbd\x99\x6b\x83\x11\x37\xae\x75\xe2\x28\x69\x4b\x32\x1f\x0f\xa9\x75\x79\x71\xbd\xaa\x59\xec\x36\xad\x33\xb3\x66\x6f\xaf\x27\xf9\xd3\x3f\xfb\x32\x7a\x13\x98\xc3\x49\xe5\xb0\x58\x40\x44\xef\x8c\x1a\xbd\x85\xae\x6d\xc0\x07\x81\x5e\x1c\x02\x30\x6d\x89\xc9\x1b\x1a\xe5\xd9\x43\xbe\x66\x6f\xd7\xc8\xe2\x8c\x8b\xe8\x05\xe6\xd3\xde\xa0\x0d\x13\x0a\xdd\x49\xea\x56\x4c\xbf\xde\x61\xfa\x4a\x74\x92\xc0\x68\x49\x27\x3c\x92\x9a\x4f\x1f\xc1\x13\x90\x50\xdc\x3e\x45\xdf\x09\x75\xef\x5a\xa3\xec\xf2\x2b\xf1\x9c\x65\xe7\xbf\x00\x00\x00\xff\xff\x1d\x42\x51\x81\xc4\x01\x00\x00" +var _dkgCreate_participantCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\x41\x8b\xea\x30\x10\x80\xef\xfd\x15\x83\x07\x49\x41\xe3\x3b\x17\xdf\x93\xf2\xfa\x9e\x2c\x5e\x64\x0b\x7b\x1f\x93\xb1\x06\x6b\x12\x26\x53\x5d\x58\xfc\xef\x8b\xa6\x2e\x3a\x97\x84\x4c\xbe\x6f\x26\x13\x77\x8a\x81\x05\xfe\xf7\xe1\xd2\x6c\xd6\xb0\xe7\x70\x82\x5f\x9f\xcd\x66\x5d\x37\xcd\xfb\xbf\xb6\x2d\x0a\x61\xf4\x09\x8d\xb8\xe0\x15\x5a\xcb\x94\x52\x05\x75\xde\xcc\xc0\x07\x4b\x6f\x4d\x05\xad\xb0\xf3\x5d\x09\x5f\x45\x01\x00\x10\x99\x22\x32\xa9\xe4\x3a\x4f\x5c\x01\x0e\x72\x50\x2d\x9e\xe9\x03\xfb\x81\x4a\x98\xd6\xc6\x84\xc1\xcb\x0d\x80\x31\x7a\x12\x40\x7b\x72\x1e\x7e\x43\x47\x32\xde\x78\xd4\x2c\xb5\xc1\x88\x3b\xd7\x3b\x71\x94\xf4\x2e\x30\x87\xcb\x72\x3a\x36\xae\xeb\x1b\xf8\x47\x2d\xe2\xb0\xeb\x9d\x59\xd8\x63\x77\x3f\x29\x7f\xec\xf7\x58\xad\x20\xa2\x77\x46\x4d\xfe\x86\xa1\xb7\xe0\x83\x40\x36\x8d\x95\x99\xf6\xc4\xe4\x0d\x4d\xca\xe2\xa5\x31\x7b\xec\xb6\xc8\xe2\x8c\x8b\xe8\x05\x96\xf3\x0c\x68\xc3\x84\x42\x4f\x29\xf5\x98\x48\x5e\x9f\x34\x79\x16\x3a\x49\x60\xec\x48\x27\x3c\x93\x5a\xce\x5f\xc5\x33\x90\x50\x3d\x7e\x43\x3f\x25\xda\x4c\x6d\x51\x0e\xf9\x4d\xd7\xa2\xb8\x7e\x07\x00\x00\xff\xff\x55\x4a\x21\x15\xbd\x01\x00\x00" func dkgCreate_participantCdcBytes() ([]byte, error) { return bindataRead( @@ -830,7 +830,7 @@ func dkgCreate_participantCdc() (*asset, error) { } info := bindataFileInfo{name: "dkg/create_participant.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xab, 0xa9, 0xdb, 0x5f, 0xf1, 0x79, 0xdb, 0x4a, 0x52, 0xb8, 0x28, 0x3d, 0x7f, 0x76, 0x23, 0xbf, 0x83, 0x93, 0xb1, 0x3d, 0x6d, 0xcd, 0xb9, 0xb6, 0xd0, 0xec, 0xa, 0xe9, 0x7d, 0x3d, 0xb5, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0x65, 0x31, 0x8a, 0xd1, 0x16, 0x1b, 0x11, 0x22, 0x80, 0xb, 0xc8, 0x8f, 0x2, 0x22, 0xd3, 0xbc, 0xd7, 0x56, 0x70, 0xbc, 0x66, 0x61, 0x29, 0xf3, 0xd7, 0xb7, 0xb3, 0xaa, 0x3b, 0x39, 0x4}} return a, nil } @@ -1274,7 +1274,7 @@ func epochAdminSet_bonus_tokensCdc() (*asset, error) { return a, nil } -var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x61\x0f\xd2\x5e\x8a\x5e\x3c\x14\x75\x59\xba\x15\xbd\xe8\x62\xf1\x01\xc6\x76\xdc\x06\xd2\x4c\x98\x4c\xa9\x20\xfb\xee\x92\xc6\xdd\xc2\xce\x31\xf9\x27\xdf\xf7\xc7\x8c\x9e\x45\xe1\xd9\xf2\xdc\x78\xee\x06\xf8\x16\x1e\xe1\xf6\xa7\x39\xbc\xd7\x2f\xbb\xfd\xfe\xa3\x69\xdb\x2c\x53\x41\x17\xb0\x53\xc3\x2e\x77\x34\xbf\x4d\x63\x6d\xa7\xa0\x24\xa1\x82\xcf\x57\xa7\x77\xf7\x05\xfc\x66\x00\x00\x5e\xc8\xa3\x50\x1e\xcc\xd1\x91\x54\x10\x94\x05\x8f\x54\xc6\xfb\x25\x10\xc7\x92\x02\x45\xda\xae\x1f\x8d\x83\x47\x48\xe9\xf2\x1c\xfe\x62\x11\x9e\x1f\x6e\x2e\x56\xe5\x12\x7c\xca\xa3\x5c\xb5\xca\x96\x18\x8f\xdb\xb4\x75\x40\x1d\x8a\x0b\x22\xce\x76\x0b\x1e\x9d\xe9\xf2\x4d\xcd\x93\xed\xc1\xb1\x42\x7a\x1a\x96\xc5\xd4\xf5\x1f\x0a\x1e\x75\xd8\x14\xab\xe4\x2a\x58\x4e\xbe\x47\xa5\xd8\x9a\xad\xa5\x4e\x59\xce\xf5\xaf\x7e\x23\xf1\x4f\xd9\xe9\x2f\x00\x00\xff\xff\xe5\x8e\x5f\xc1\x57\x01\x00\x00" +var _epochAdminUpdate_clustersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc3\x40\x10\x86\xef\x79\x8a\xa1\x87\x92\x5c\x82\x5e\x3c\x04\xb5\xc4\x34\xa2\x17\x2d\x06\xbd\x8f\x9b\xb1\x09\x6c\x76\x96\xc9\x2c\x11\xa4\xef\x2e\x9b\x68\x03\x9d\xe3\xb2\xdf\xfc\xdf\xfc\xfd\xe0\x59\x14\x1e\x2d\x4f\xb5\x67\xd3\xc1\x97\xf0\x00\x57\xdf\xf5\xe1\xb5\x7a\x2a\xf7\xfb\xb7\xba\x69\x92\x44\x05\xdd\x88\x46\x7b\x76\xa9\xa3\xe9\x25\x0c\x95\x0d\xa3\x92\x8c\x05\xbc\x3f\x3b\xbd\xbe\xc9\xe0\x27\x01\x00\xf0\x42\x1e\x85\xd2\xb1\x3f\x3a\x92\x02\x30\x68\x97\x3e\xb0\x08\x4f\x1f\x68\x03\x65\xb0\x2d\x8d\xe1\xe0\x34\x12\x33\x12\xc7\x92\x02\xc5\xfc\xb2\x1d\x7a\x07\x77\xb0\xf0\xf9\xa8\x2c\x78\xa4\xfc\x73\xde\x70\xbb\x3d\x7b\xe6\xf3\xc7\xfb\x34\xea\x16\xab\x7e\x8e\xf1\xb9\x59\xa8\x03\x6a\x97\x9d\x23\xe2\xec\x76\xe0\xd1\xf5\x26\xdd\x54\x1c\x6c\x0b\x8e\x15\x96\xd5\x30\x83\xcb\xf5\x7f\xa1\xe0\x51\xbb\x4d\xb6\x4a\xae\x82\x79\xf0\x2d\x2a\xc5\x1e\xd8\x5a\x32\xca\xf2\x5f\xc8\x45\x3f\x4b\xfe\x29\x39\xfd\x06\x00\x00\xff\xff\xa3\xe1\xda\x3e\x69\x01\x00\x00" func epochAdminUpdate_clustersCdcBytes() ([]byte, error) { return bindataRead( @@ -1290,11 +1290,11 @@ func epochAdminUpdate_clustersCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_clusters.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0x6a, 0xa7, 0x9c, 0xe3, 0x1f, 0xbb, 0x47, 0x2d, 0x66, 0xa4, 0xcf, 0x32, 0xc0, 0x9, 0x79, 0x88, 0xbd, 0x25, 0x10, 0x92, 0x62, 0x53, 0xc1, 0x1d, 0x2, 0x4e, 0xfd, 0xc5, 0x13, 0x35, 0xb6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x30, 0x5d, 0x1c, 0xc7, 0x3b, 0xa4, 0x9b, 0x61, 0x88, 0xc0, 0x72, 0xc3, 0x5f, 0x76, 0x35, 0x4a, 0x68, 0x81, 0x77, 0x20, 0x81, 0xa4, 0x4e, 0x9b, 0xbf, 0x13, 0x24, 0x2f, 0x63, 0x1d, 0x2b, 0x3f}} return a, nil } -var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcf\x4a\xc4\x30\x10\x87\xef\x79\x8a\x61\x0f\xd2\x5e\x82\x07\xf1\x50\xd4\x65\xd9\xd6\x3f\x78\xb0\x58\xf4\x3e\xb6\xe3\x36\xd0\x66\x42\x32\x4b\x05\xd9\x77\x97\x6c\x6c\xcb\xce\x31\xf9\xcd\x7c\xdf\x8c\x19\x1d\x7b\x81\xc7\x81\xa7\xca\x71\xdb\xc3\xb7\xe7\x11\xae\x7f\xaa\xfa\x6d\xff\xbc\x2b\xcb\xf7\xaa\x69\x94\x12\x8f\x36\x60\x2b\x86\x6d\x66\x69\xaa\x7b\x0c\xf4\x69\x68\x0a\x05\x7c\xbc\x58\xb9\xbd\xc9\xe1\x57\x01\x00\x38\x4f\x0e\x3d\x65\xc1\x1c\x2c\xf9\x02\x82\xb0\xc7\x03\xe9\xf9\x3f\xd6\x40\x02\x14\x59\xbb\x6e\x34\x16\xee\x21\x85\xf5\x9c\xfd\x62\xef\x79\xba\xbb\x5a\x9c\xf4\x39\xf8\x90\x45\xb5\x62\x55\xd5\x18\x9f\x9b\xd4\x55\xa3\xf4\xf9\x82\x88\xb5\xdd\x82\x43\x6b\xda\x6c\xb3\xe7\xe3\xd0\x81\x65\x81\x34\x1a\xce\x8d\x69\xd3\x7f\x28\x38\x94\x7e\x93\xab\x65\xc2\x2a\xa8\x8f\xae\x43\xa1\xf2\xf5\x69\x5d\xfb\xf2\x08\x89\x7b\x52\xa7\xbf\x00\x00\x00\xff\xff\x6e\xfe\x1d\x5f\x4d\x01\x00\x00" +var _epochAdminUpdate_dkg_phase_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x6b\xb4\x30\x10\xc6\xef\x7e\x8a\x61\x0f\x8b\x5e\xe4\x3d\xbc\xf4\x20\x6d\x17\xbb\xda\x3f\xf4\x50\xa9\x74\xef\x53\x9d\xae\x01\xcd\x84\x64\x82\x85\xb2\xdf\xbd\xc4\xb4\x4a\xe7\x18\xf2\x3c\xbf\xdf\x8c\x9a\x0c\x5b\x81\xfb\x91\xe7\xda\x70\x37\xc0\x87\xe5\x09\xfe\x7d\xd6\xcd\xcb\xf1\xb1\xac\xaa\xd7\xba\x6d\x93\x44\x2c\x6a\x87\x9d\x28\xd6\xa9\xa6\xb9\x19\xd0\xd1\x49\xd1\xec\x0a\x78\x7b\xd2\x72\xf5\x3f\x83\xaf\x04\x00\xc0\x58\x32\x68\x29\x75\xea\xac\xc9\x16\x80\x5e\x86\xf4\x8e\xad\xe5\xf9\x84\xa3\xa7\x0c\xf6\x65\xd7\xb1\xd7\xf2\x9b\x08\x33\x92\x00\x05\x7a\xd9\x4f\x4a\xc3\x0d\xc4\x78\xee\x84\x2d\x9e\x29\x7f\x5f\x0a\xae\xf7\xab\x65\xbe\x7c\xbc\x4d\x83\x6c\xb1\xc9\xe7\x18\x9e\xdb\x98\x6a\x50\x86\x6c\x45\x84\x39\x1c\xc0\xa0\x56\x5d\xba\x3b\xb2\x1f\x7b\xd0\x2c\x10\xab\x61\x09\xc6\xdd\x7f\xa0\x60\x50\x86\x5d\x96\xac\x0d\x9b\x60\xee\x4d\x8f\x42\xd5\xf3\xc3\x76\x88\xbf\x67\x89\xdc\x4b\x72\xf9\x0e\x00\x00\xff\xff\x59\x08\x52\x6a\x5f\x01\x00\x00" func epochAdminUpdate_dkg_phase_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1310,11 +1310,11 @@ func epochAdminUpdate_dkg_phase_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_dkg_phase_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x48, 0xd5, 0x13, 0x99, 0xde, 0x25, 0xd0, 0xd1, 0x6f, 0x14, 0x2b, 0x27, 0x33, 0xd8, 0x85, 0xd8, 0x82, 0xe1, 0x50, 0x0, 0x40, 0x9f, 0xd0, 0x93, 0x66, 0x12, 0x47, 0x74, 0x57, 0xd1, 0xce, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x89, 0x8b, 0x7a, 0xd, 0xae, 0x66, 0x1b, 0x51, 0xc0, 0x64, 0x65, 0xa2, 0x4e, 0xae, 0xc5, 0x5d, 0x83, 0x1a, 0x91, 0x11, 0x9c, 0xfe, 0xdb, 0x9c, 0xb9, 0xd1, 0xd5, 0x84, 0x2b, 0xf1, 0x5d, 0xcd}} return a, nil } -var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xcd\x6e\xdb\x3a\x10\x85\xf7\x7e\x8a\x73\xb3\xb8\xb0\x01\x57\xe9\xa2\xe8\xc2\x68\x13\x04\xb1\x9b\x04\x69\x93\xa0\x4e\xd3\xf5\x58\x1c\x49\x44\x24\x52\x20\xa9\xa8\x40\x91\x77\x2f\x48\xca\xfa\x31\x8a\x06\x41\x51\x2f\xbc\xa0\x66\xce\x99\xf9\x86\x1c\x59\xd5\xda\x38\x7c\x2a\x75\xbb\xa9\x75\x5a\x20\x33\xba\xc2\xdb\x1f\x9b\xbb\xdb\xf3\xcb\xb3\xf5\xfa\xeb\x66\xbb\x9d\xcd\x9c\x21\x65\x29\x75\x52\xab\xb9\x78\xcc\xef\x0a\xb2\xfc\x99\xd5\x0a\xdf\xae\x94\x7b\xff\x6e\x09\xeb\xe8\x51\xaa\x7c\x72\xc6\x5e\x6f\x74\xb2\xc0\xcf\x19\x00\xd4\x86\x6b\x32\x3c\xb7\x32\x57\x6c\x56\xb0\x4e\x1b\xca\x39\xd9\x7f\xf7\xbf\x92\x5d\xcc\x3f\x13\x95\x54\xf8\x88\x18\x9c\xec\x63\x77\xda\x18\xdd\x7e\xf8\xbf\xaf\x3b\x09\x81\x27\x73\x5f\xfe\x6a\x68\x27\x21\x7f\xbc\x8d\x59\x77\xe4\x8a\x45\x6f\xe1\x7f\xa7\xa7\xa8\x49\xc9\x74\x7e\x74\xae\x9b\x52\x40\x69\x87\x28\x8d\x90\x18\x69\x74\xa6\xa8\xc9\x15\x47\x8b\x59\xaf\x20\x33\xfc\x37\x38\x49\xfb\x40\xa5\x14\x81\xcd\xb9\x56\x99\xcc\x1b\x43\x81\xd8\x00\x67\x89\x11\xbd\x81\xd0\xb8\xf3\x40\x28\xd6\x74\xc3\x2d\xe2\x50\x1e\x24\xb7\x16\x55\x63\x1d\x76\x8c\xdc\x30\x39\x36\x70\x05\x29\xb8\x82\x61\x9b\x0a\x3a\xdb\x0f\x01\xa4\x04\xd6\xd7\x17\x08\x46\x78\xf2\xb9\x47\x43\xdf\xcf\x43\x03\xc7\xc7\xc7\x58\x37\x0c\xa7\x83\x4c\x46\xa9\xf3\xa2\x1d\xfa\xbf\x77\x9d\x18\xb5\x1c\xa5\x9a\x5a\x90\xe3\xa0\x10\x6d\xd2\x00\x0b\x32\xaa\xa6\xda\x18\x4e\x1d\xb4\x11\x6c\x12\xdc\x17\xd2\xe2\xc9\x83\x0d\x2c\x21\x2d\x84\x56\x0c\xad\xc0\x94\x16\x13\x89\x89\x5d\xb4\x49\x70\xa9\xdb\xa0\xab\x9a\x6a\xc7\xc6\x17\x1c\x4a\xdb\xdb\xc5\x7c\x69\xb1\x63\xdf\x44\xcc\x12\x10\xec\xd8\x54\x52\xb1\x0d\x51\xa1\x98\x89\xbc\x54\x68\x0b\x99\x16\x5e\x37\x70\xba\x52\x61\x54\xcb\xd1\xc1\x36\x92\x39\x6b\xc2\xc3\x59\x06\x42\xc3\xd7\xf5\xf5\x45\x44\xa5\x98\x85\x1f\xc1\x8e\x7b\x7b\xdb\xa4\x45\x9c\x84\x77\x1f\xb5\x5f\x93\xb5\x6c\x93\x49\x29\x6f\x20\x55\x6a\x98\xac\x6f\xe0\xa0\x9c\xd5\x1e\xf7\xc1\x39\x76\x9c\x69\xc3\xaf\x2e\xf6\xc0\x58\xf0\x2b\x8c\xa7\x0e\xc1\xe0\x77\x38\x5e\xa8\x6c\x52\xc1\xcd\xed\xfd\x66\x85\xef\x0c\xb2\xb6\xa9\x18\x05\x1b\x1e\xb8\xf9\xdb\x58\x07\xcd\x92\x55\xee\xc2\x98\x2b\x4f\xd6\x56\x54\x96\x93\xab\xdc\xdd\xe1\x2e\x2e\xd3\x06\x54\x96\xa8\xb5\x63\xe5\x24\x95\xdd\x05\xeb\x1e\xf4\x88\xbf\xcc\xfa\x47\x8c\x93\xd1\xda\xc9\xd9\xc5\x1d\xf0\x85\x1d\x09\x72\x34\x5f\x24\x87\x23\x38\x78\xf4\xc3\xba\x4b\x22\xba\x10\x15\x32\xe6\xfd\xa2\xf8\x73\x46\x87\x28\xe6\x0c\x5b\xe7\x85\xac\x3d\xf9\x98\x36\x5a\x50\xa3\x9d\x01\x2e\x2d\xbf\x54\xf0\x3f\xb3\x7f\x3d\x9e\xe7\x59\xfc\x7f\xfe\x15\x00\x00\xff\xff\x25\xcd\x43\x1b\xe0\x06\x00\x00" +var _epochAdminUpdate_epoch_configCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x94\xc1\x6e\xdb\x3c\x10\x84\xef\x7e\x8a\xf9\x73\x08\x6c\xc0\xbf\xd2\x43\xd1\x83\xd1\x26\x70\x63\x37\x09\xd2\x26\x41\x9d\xa6\xe7\xb5\xb4\x92\x88\x48\xa4\x40\xae\xe2\x02\x45\xde\xbd\x20\x69\x5b\x92\x51\x34\x08\x8a\xea\xe0\x03\xcd\x99\xd9\xfd\x48\xae\xaa\x1b\x63\x05\x9f\x2a\xb3\x59\x36\x26\x2d\x91\x5b\x53\xe3\xcd\x8f\xe5\xdd\xed\xf9\xe5\x7c\xb1\xf8\xba\x5c\xad\x46\x23\xb1\xa4\x1d\xa5\xa2\x8c\x1e\x67\x8f\xc5\x5d\x49\x8e\x3f\xb3\x9e\xe1\xdb\x95\x96\x77\x6f\xa7\x70\x42\x8f\x4a\x17\x83\x35\xf6\x7e\xbd\x95\x09\x7e\x8e\x00\xa0\xb1\xdc\x90\xe5\xb1\x53\x85\x66\x3b\x03\xb5\x52\x8e\x3f\x1a\x6b\xcd\xe6\x81\xaa\x96\x27\x38\x9e\xa7\xa9\x69\xb5\xec\x14\xfe\xab\x58\xa2\xe3\x3c\xab\x95\xc6\x07\x44\x79\xe2\xc4\x58\x2a\x38\x59\x07\x83\xf7\xc7\xfb\x4e\x92\xb0\xf1\x74\xec\x1b\x9a\x75\x0d\x26\xe4\x97\x57\x51\x75\x47\x52\x4e\xf6\x11\xfe\x3b\x3b\x43\x43\x5a\xa5\xe3\xa3\x73\xd3\x56\x19\xb4\x11\x44\x6b\x04\x61\xe4\xb3\x0d\x45\x43\x52\x1e\x4d\x46\x7b\x07\x95\xe3\xbf\x2e\x49\xb9\x07\xaa\x54\x16\x68\x9d\x1b\x9d\xab\xa2\xb5\x14\x18\x76\xb8\xa6\xe8\xf1\xec\x98\xf5\x3b\x0f\xcc\x62\x4d\x37\xbc\x41\x3c\xa6\x07\xc5\x1b\x87\xba\x75\x82\x35\xa3\xb0\x4c\xc2\x16\x52\x92\x86\x94\x0c\xd7\xd6\x30\xf9\xee\x58\x40\x3a\xc3\xe2\xfa\x02\x21\x08\x4f\x5e\x7b\xd4\xf5\xfd\xdc\x35\x70\x72\x72\x82\x45\xcb\x10\x13\x6c\x72\x4a\xc5\x9b\x6e\xd1\xff\x7d\xea\x20\x68\xc3\xd1\xaa\x6d\x32\x12\x0e\x0e\x31\x26\x0d\xb0\xa0\xa2\x6b\x6a\xac\xe5\x54\x60\x6c\xc6\x36\xc1\x7d\xa9\x1c\x9e\x3c\xd8\xc0\x12\xca\x21\x33\x9a\x61\x34\x98\xd2\x72\x60\x31\x88\x8b\x31\x09\x2e\xcd\x26\xf8\xea\xb6\x5e\xb3\xf5\x05\x87\xd2\x76\x71\x51\xaf\x1c\xd6\xec\x9b\x88\xaa\x0c\x19\x0b\xdb\x5a\x69\x76\x61\x57\x28\x66\x60\xaf\x34\x36\xa5\x4a\x4b\xef\x1b\x38\x5d\xe9\x70\x54\xd3\xde\xc2\x2a\x92\x99\xb7\xe1\x29\x4d\x03\xa1\xee\xdf\xc5\xf5\x45\x44\xa5\x99\x33\x7f\x04\x6b\xde\xc7\xbb\x36\x2d\xe3\x49\xf8\xf4\x5e\xfb\x0d\x39\xc7\x2e\x19\x94\xf2\x3f\x94\x4e\x2d\x93\xf3\x0d\x1c\x94\x33\xdb\xe1\x3e\x58\xc7\x9a\x73\x63\xf9\xd5\xc5\x1e\x04\x67\xfc\x8a\xe0\x61\x42\x08\xf8\x1d\x8e\x17\x2a\x1b\x54\x70\x73\x7b\xbf\x9c\xe1\x3b\x83\x9c\x6b\x6b\x46\xc9\x96\x3b\x6e\xfe\x36\x36\xc1\xb3\x62\x5d\x48\x38\xe6\xda\x93\x75\x35\x55\xd5\xe0\x2a\x6f\xef\xf0\x76\x5f\x6e\x2c\xa8\xaa\xd0\x18\x61\x2d\x8a\xaa\xed\x05\xdb\x3e\xe8\x1e\x7f\x95\xef\x1f\x31\x4e\x7b\x63\xa7\x60\x89\x33\xe0\x0b\x0b\x65\x24\x34\x9e\x24\x87\x47\x70\xf0\xe8\xbb\x71\x97\x44\x74\x61\x57\x50\x8c\xf7\x83\xe2\xcf\x8a\x2d\xa2\xa8\xe9\xa6\xce\x0b\xaa\x1d\xf9\x28\xeb\x0d\xa8\xde\xcc\x00\x57\x8e\x5f\x2a\xf8\x9f\xc5\xbf\x1e\xcf\xf3\x28\xfe\x3e\xff\x0a\x00\x00\xff\xff\x1b\xd1\x45\xfa\xf2\x06\x00\x00" func epochAdminUpdate_epoch_configCdcBytes() ([]byte, error) { return bindataRead( @@ -1330,11 +1330,11 @@ func epochAdminUpdate_epoch_configCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_config.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x5b, 0x8c, 0x3b, 0xd7, 0x7f, 0x40, 0x68, 0x95, 0x1d, 0xf1, 0x20, 0x47, 0x1b, 0x53, 0xee, 0xde, 0x14, 0xcb, 0xfd, 0x24, 0xe4, 0x7, 0x33, 0xe, 0xcc, 0xab, 0xab, 0x42, 0xa5, 0x3a, 0x12}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0xbf, 0x44, 0xd1, 0x3d, 0x58, 0x92, 0x1b, 0xbe, 0xa2, 0xe5, 0x64, 0x67, 0xc3, 0x57, 0xcd, 0x62, 0xfa, 0x24, 0xf5, 0x3f, 0x6e, 0xa, 0x8b, 0x36, 0x5d, 0x58, 0xa7, 0xbe, 0x4c, 0xd7, 0x7d}} return a, nil } -var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x7d\x8a\x9f\x3d\x48\x7b\x09\x1e\xc4\x43\x51\x97\xb2\x5b\xd1\x93\x8b\x45\xef\xb1\x8d\xdb\x40\x9b\x09\xd3\x29\x15\x64\xdf\x5d\x92\xb8\x5d\xd8\x39\x85\xe4\x9f\xf9\xbe\x89\x1d\x3d\xb1\xe0\x79\xa0\xa5\xf6\xd4\xf6\xf8\x66\x1a\x71\xfb\x53\x1f\xde\x76\x2f\xd5\x7e\xff\x5e\x37\x4d\x96\x09\x6b\x37\xe9\x56\x2c\xb9\xdc\x99\xa5\x9a\xe3\xf1\xd3\x9a\x65\x2a\xf1\xf1\xea\xe4\xfe\xae\xc0\x6f\x06\x00\x9e\x8d\xd7\x6c\xf2\xc9\x1e\x9d\xe1\x12\x93\x10\xeb\xa3\x51\xe7\xf7\x50\x83\x11\x98\x40\xab\xba\xd1\x3a\x3c\x22\x85\xd5\x39\xfb\x45\xcc\xb4\x3c\xdc\xac\x56\x2a\x06\x9f\xf2\x20\x57\x5e\x64\x95\x0e\xd7\x4d\xea\x3a\x68\xe9\x8b\x15\x11\x6a\xbb\x85\xd7\xce\xb6\xf9\x66\x47\xf3\xd0\xc1\x91\x20\x8d\x46\x6c\x4c\xbb\xfe\x43\xe1\xb5\xf4\x9b\x22\x5b\x27\x5c\x04\xd5\xec\x3b\x2d\x26\x22\xe3\xce\xd7\x7f\x90\xb0\xa7\xec\xf4\x17\x00\x00\xff\xff\x6d\x14\x68\x15\x4e\x01\x00\x00" +var _epochAdminUpdate_epoch_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xf4\x30\x10\x86\xef\xfd\x15\xc3\x1e\x96\xf6\x12\xbe\xc3\x87\x87\xa2\x2e\x75\xb7\xa2\x27\x17\x8b\x7b\x1f\xd3\x71\x1b\x68\x33\x21\x9d\x50\x41\xf6\xbf\x4b\x12\xed\x82\x73\x0a\x21\xef\xfb\x3c\x19\x33\x39\xf6\x02\x8f\x23\x2f\xad\x63\x3d\xc0\x87\xe7\x09\xfe\x7d\xb6\xc7\x97\xfd\x53\x73\x38\xbc\xb6\x5d\x57\x14\xe2\xd1\xce\xa8\xc5\xb0\x2d\x2d\x2d\x4d\x48\xc7\x93\xa1\x65\xae\xe1\xed\xd9\xca\xcd\xff\x0a\xbe\x0a\x00\x00\xe7\xc9\xa1\xa7\x72\x36\x67\x4b\xbe\x06\x0c\x32\x94\x0f\xec\x3d\x2f\x27\x1c\x03\x55\xb0\x6d\xb4\xe6\x60\xe5\x37\x11\x67\x24\x01\x8a\xfc\xa6\x9f\x8c\x85\x3b\xc8\x71\x35\x0b\x7b\x3c\x93\x7a\x4f\x05\xb7\xdb\xd5\x53\xa5\x87\xf7\x65\xd4\xad\xaf\xfa\x0a\xe3\x75\x97\x53\x47\x94\xa1\x5a\x11\x71\x76\x3b\x70\x68\x8d\x2e\x37\x7b\x0e\x63\x0f\x96\x05\x72\x35\xa4\x60\xfe\xfd\x0f\x14\x1c\xca\xb0\xa9\x8a\xb5\xe1\x2a\xa8\x82\xeb\x51\x28\x21\xd3\x16\xfe\x6e\x25\x63\x2f\xc5\xe5\x3b\x00\x00\xff\xff\xda\xda\xbd\xf3\x60\x01\x00\x00" func epochAdminUpdate_epoch_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1350,11 +1350,11 @@ func epochAdminUpdate_epoch_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_epoch_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe5, 0xa, 0x0, 0x26, 0x59, 0x5f, 0x32, 0xb, 0x4a, 0x8b, 0xe5, 0xb0, 0x1d, 0x88, 0x80, 0x8d, 0xf3, 0x67, 0xa2, 0xc2, 0x9d, 0x21, 0xa1, 0x2d, 0xd2, 0x58, 0xfb, 0xaf, 0xa6, 0xb2, 0xc3, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xf2, 0x1e, 0xff, 0x58, 0x74, 0x21, 0xea, 0x1f, 0x45, 0xe4, 0xff, 0x4e, 0x3c, 0x33, 0x53, 0x58, 0xe2, 0xfb, 0x70, 0x69, 0x60, 0x9a, 0x8e, 0xfd, 0x45, 0xde, 0xc9, 0x99, 0xab, 0xe2, 0x64}} return a, nil } -var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\xcf\x4a\xc3\x40\x10\xc6\xef\x79\x8a\xa1\x07\x49\x2f\xc1\x83\x78\x08\x6a\x09\x6d\x82\x82\xd0\xd0\x20\xe2\x71\x4c\xc6\x64\x21\xd9\x59\x26\x13\x52\x91\xbe\xbb\x6c\xd7\xa6\xf8\x1d\x77\xbf\x3f\xbf\x5d\x33\x38\x16\x85\xa2\xe7\x39\x77\x5c\x77\xf0\x25\x3c\xc0\xed\x31\x2f\xf7\xdb\xe7\x6c\xb7\x3b\xe4\x55\x15\x45\x2a\x68\x47\xac\xd5\xb0\x8d\x2d\xcd\x07\x9a\x51\x9a\xac\xfc\x48\xe1\xad\x30\xc7\xfb\xbb\x35\xfc\x44\x00\x00\x4e\xc8\xa1\x50\x3c\x9a\xd6\x92\xa4\x30\x2a\x0b\xb6\x94\x5c\xee\xbd\x7a\x52\x20\x3f\x95\x35\x83\xb1\xf0\x08\xc1\x9c\x5c\xbc\x9f\x2c\xc2\xf3\xc3\xcd\x82\x94\x9c\x8d\x4f\xb1\x27\x4b\xaf\xa4\x09\xfa\xe3\x2a\xa4\x4a\xd4\x6e\xbd\x4c\x78\x6d\x36\xe0\xd0\x9a\x3a\x5e\x6d\x79\xea\x1b\xb0\xac\x10\xaa\xe1\x1c\x0c\x0f\xfd\x1b\x05\x87\xda\xad\xd6\xd1\xd2\x70\x05\x4c\x26\xd7\xa0\x52\xf1\xba\x7f\xaf\x26\xe7\xfa\xef\x17\x5b\x0b\xe1\x48\x25\x49\x4d\x56\xb1\xa5\x7f\x5f\x12\x28\x4e\xd1\xe9\x37\x00\x00\xff\xff\x86\x6a\x23\x6c\x5a\x01\x00\x00" +var _epochAdminUpdate_rewardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x90\x4f\x4b\xc3\x40\x10\xc5\xef\xf9\x14\x43\x0f\x25\xb9\x04\x0f\xe2\xa1\xa8\x25\xf6\x0f\x0a\x42\x43\x83\x8a\xc7\x71\x33\x26\x0b\xc9\xce\x32\x99\x25\x15\xe9\x77\x97\x24\x9a\xe2\x3b\x2e\xfb\x7b\xef\xb7\x6b\x5b\xcf\xa2\xb0\x6f\xb8\xdf\x79\x36\x35\x7c\x0a\xb7\x70\x75\xda\xe5\x87\xcd\x63\xb6\xdd\x1e\x77\x45\x11\x45\x2a\xe8\x3a\x34\x6a\xd9\xc5\x8e\xfa\x23\xf5\x28\x65\x96\xbf\xaf\xe0\x65\x6f\x4f\x37\xd7\x09\x7c\x47\x00\x00\x5e\xc8\xa3\x50\xdc\xd9\xca\x91\xac\x00\x83\xd6\xf1\x03\x8b\x70\xff\x8a\x4d\xa0\x04\x96\x99\x31\x1c\x9c\xfe\x11\x43\x1a\x52\xa0\x61\x3c\x2b\x5b\xeb\xe0\x0e\x26\x3c\xed\x94\x05\x2b\x4a\x3f\xc6\x82\xdb\xe5\x2c\x99\x8e\x17\xef\xe3\xc1\x75\x75\x71\x4f\x71\x38\x2e\x26\x2a\x47\xad\x93\x79\x62\xc8\x7a\x0d\x1e\x9d\x35\xf1\x62\xc3\xa1\x29\xc1\xb1\xc2\x54\x0d\x23\x38\x3d\xfd\x77\x14\x3c\x6a\xbd\x48\xa2\xb9\xe1\x22\x98\x06\x5f\xa2\xd2\xfe\xf9\xf0\x56\x04\xef\x9b\xaf\x27\x67\x84\xb0\xa3\x9c\xc4\x90\x53\xac\xe8\xdf\x27\x4d\x16\xe7\xe8\xfc\x13\x00\x00\xff\xff\x3c\x85\xfa\xd9\x6c\x01\x00\x00" func epochAdminUpdate_rewardCdcBytes() ([]byte, error) { return bindataRead( @@ -1370,11 +1370,11 @@ func epochAdminUpdate_rewardCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_reward.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x44, 0xdd, 0xa0, 0x7c, 0x7, 0xda, 0x45, 0xdf, 0xd7, 0x36, 0xc, 0x8d, 0xe4, 0x79, 0x8c, 0x26, 0x6c, 0x3c, 0x58, 0xc, 0x4a, 0x2, 0x8f, 0xfb, 0x6d, 0x32, 0x97, 0xa6, 0xa1, 0xc6, 0x1f, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x2, 0x3d, 0xb, 0xab, 0x39, 0xe2, 0x16, 0x8c, 0xbf, 0x88, 0x83, 0xe7, 0x2d, 0xdf, 0x3d, 0x95, 0x8, 0x37, 0x6f, 0x2c, 0x91, 0x1a, 0x20, 0xef, 0x99, 0xa4, 0xd6, 0xe4, 0xd6, 0x48, 0xee}} return a, nil } -var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\xc1\x4a\xc4\x30\x10\x86\xef\x79\x8a\x9f\x3d\x48\xf7\x12\x3c\x88\x87\xa2\x2e\x65\xb7\xa2\x27\x17\x8b\xde\xc7\x36\xb6\xc1\x36\x13\xd2\x29\x15\x64\xdf\x5d\xd2\xb8\x5d\x70\x8e\xc9\x3f\xf3\x7d\x33\x76\xf0\x1c\x04\x8f\x3d\xcf\xa5\xe7\xba\xc3\x67\xe0\x01\xd7\xdf\xe5\xf1\x65\xff\x54\x1c\x0e\xaf\x65\x55\x29\x25\x81\xdc\x48\xb5\x58\x76\x99\x33\x73\x25\xf4\x65\x5d\xfb\x6e\xcd\x3c\xe6\x78\x7b\x76\x72\x7b\xb3\xc5\x8f\x02\x00\x1f\x8c\xa7\x60\xb2\xd1\xb6\xce\x84\x1c\xa3\x70\xa0\xd6\xe8\xf3\x7f\xac\xde\x08\x4c\xa4\x15\xcd\x60\x1d\xee\x91\xc2\xfa\x9c\xfd\xe0\x10\x78\xbe\xbb\x5a\xad\xf4\x12\x7c\xc8\xa2\x5c\x7e\x91\xd5\x14\x9f\xab\xd4\x75\x24\xe9\xb6\x2b\x22\xd6\x6e\x07\x4f\xce\xd6\xd9\x66\xcf\x53\xdf\xc0\xb1\x20\x8d\xc6\xd2\x98\x76\xfd\x83\xc2\x93\x74\x9b\xad\x5a\x27\x5c\x04\xf5\xe4\x1b\x12\x53\x4c\xcb\x01\x96\xad\xff\x5f\x21\x81\x4f\xea\xf4\x1b\x00\x00\xff\xff\x40\x00\x86\xb4\x50\x01\x00\x00" +var _epochAdminUpdate_staking_viewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x5c\x90\x41\x4b\xc3\x40\x10\x85\xef\xf9\x15\x43\x0f\x25\xb9\x04\x0f\xe2\x21\xa8\x25\xb6\x11\x3d\x59\x0c\xf6\x3e\x26\x63\xb2\x98\xcc\x2c\x9b\x59\x22\x48\xff\xbb\x64\x57\x53\xf0\x1d\x97\x7d\xef\x7d\xf3\xcc\x68\xc5\x29\x3c\x0e\x32\x57\x56\x9a\x1e\x3e\x9c\x8c\x70\xf5\x55\x1d\x5f\xf6\x4f\xe5\xe1\xf0\x5a\xd5\x75\x92\xa8\x43\x9e\xb0\x51\x23\x9c\x32\xcd\xb5\xe2\xa7\xe1\xee\x64\x68\x9e\x0a\x78\x7b\x66\xbd\xb9\xce\xe0\x3b\x01\x00\xb0\x8e\x2c\x3a\x4a\x27\xd3\x31\xb9\x02\xd0\x6b\x9f\x3e\x88\x73\x32\x9f\x70\xf0\x94\xc1\xb6\x6c\x1a\xf1\xac\x7f\x8e\x45\x03\x29\xd0\xd2\x5f\xb6\xa3\x61\xb8\x83\x68\xcf\x27\x15\x87\x1d\xe5\xef\x21\xe0\x76\xbb\x72\xe6\xe1\xe3\x7d\xba\xe0\x16\x17\xfc\x1c\x97\xe7\x3a\xba\x8e\xa8\x7d\xb6\x56\x2c\xda\xed\xc0\x22\x9b\x26\xdd\xec\xc5\x0f\x2d\xb0\x28\xc4\x68\x08\xc6\x78\xfd\x6f\x29\x58\xd4\x7e\x93\x25\x6b\xc2\x05\x30\xf7\xb6\x45\xa5\xd2\x87\x49\xc2\x0e\xff\x77\x89\xc5\xe7\xe4\xfc\x13\x00\x00\xff\xff\x85\xd3\x6b\x51\x62\x01\x00\x00" func epochAdminUpdate_staking_viewsCdcBytes() ([]byte, error) { return bindataRead( @@ -1390,7 +1390,7 @@ func epochAdminUpdate_staking_viewsCdc() (*asset, error) { } info := bindataFileInfo{name: "epoch/admin/update_staking_views.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x17, 0x79, 0x9f, 0xce, 0x9e, 0x7e, 0x1, 0x7b, 0x24, 0xa3, 0x41, 0x43, 0x15, 0x98, 0x60, 0xa5, 0x10, 0xb5, 0x86, 0xc4, 0xfb, 0x7f, 0xf1, 0xa1, 0xc8, 0x59, 0xfd, 0x70, 0xc9, 0x16, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xa5, 0x3, 0x6a, 0x49, 0xa6, 0xd2, 0xf2, 0xf9, 0x18, 0xf9, 0x76, 0x20, 0x71, 0xea, 0x79, 0x7d, 0xed, 0x5e, 0x53, 0x4a, 0x92, 0x20, 0xb0, 0x12, 0x66, 0x4, 0xcf, 0x2, 0xc7, 0x48, 0xc9}} return a, nil } @@ -1674,7 +1674,7 @@ func flowtokenCreate_forwarderCdc() (*asset, error) { return a, nil } -var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xb1\x6e\xdb\x30\x10\xdd\xf5\x15\x57\x0d\x86\x04\x34\xd4\x52\x74\x30\x9c\x04\xee\x90\xad\x1d\xda\x24\x3b\x4d\x9d\xe5\x43\x69\x52\x38\x9e\xe2\x14\x46\xfe\xbd\x20\x29\xd9\x56\x1a\x97\x8b\x20\xf2\xdd\xbb\xf7\xde\x1d\xed\x7b\xcf\x02\x0f\x83\xeb\x68\x63\xf1\xd1\xff\x46\x07\x5b\xf6\x7b\x28\x67\x77\x65\x31\x21\xad\x3f\xcc\x50\xd3\x7f\x59\x14\x4d\xd3\xc0\xe3\x8e\x02\x08\x6b\x17\xb4\x11\xf2\x0e\xf6\xe4\x24\x80\x44\x48\x80\x21\x90\xeb\x40\x76\x08\xda\x18\x3f\x38\x01\xd9\x69\x81\x20\x9e\x31\xa4\xfb\xc8\x07\xb9\xc1\xba\xdd\x93\x03\xc6\xe0\x07\x36\x78\x66\xa7\x8c\x0c\xc8\x2f\x64\x4e\x4c\x45\x71\xd1\xb5\x62\x34\xd4\x13\x3a\x59\xc2\xba\x6d\x19\x43\xf8\x0c\x7a\x1f\x71\x4b\x78\x7a\xa0\xd7\xaf\x5f\x6a\x38\x16\x05\x00\x80\x45\xc9\xf2\x52\xbf\x25\x2c\x4e\x96\x54\xba\xa1\x20\xac\xc5\xf3\x1c\xfc\x13\x0d\xd2\x0b\xf2\x12\x16\xc7\x59\x52\x6a\x7a\x79\xcb\xf4\x3d\x63\xaf\x19\xab\x40\x9d\x8b\x70\x3d\xc8\xae\xfa\xe6\x99\xfd\xe1\x59\xdb\x01\x6b\x58\xac\xb3\x83\x93\xa2\x78\x02\xda\xad\x3a\xcb\x82\x5b\xc8\x04\x2a\x66\xa5\x3b\x3c\x01\xe3\x51\x9b\xc4\xb7\xba\x26\xfd\xae\x8a\xc3\x5a\x42\x33\x16\x37\xdb\x09\x97\x60\xf5\x8c\xec\xfe\x1e\x7a\xed\xc8\x54\xe5\xaf\xd4\x31\xe6\xed\xbc\xa4\xcc\x93\x20\xd0\xb1\xa8\xac\x3f\x12\x3b\x99\x87\x5b\xe8\x50\x46\x63\xe7\x69\xcc\x3b\x29\xa3\x7b\xbd\x21\x4b\x42\x18\x54\x87\xb2\xba\x9a\xe5\x5d\xd5\xf4\xc3\xc6\x92\x39\x4b\x9f\xde\xea\x4f\x1f\x65\x51\x5d\x33\xf5\xe4\xf4\xc6\x46\x27\x90\x81\xc0\x93\x64\xc6\x2d\x32\x3a\x83\x65\xae\x1d\x07\x88\xaf\x68\x06\x41\x38\x9e\x08\xe3\x12\xc4\xb5\x46\x86\xd5\xcd\xfb\x49\x29\xc3\xa8\x05\x7f\xe0\xe1\x7b\x82\x54\xda\x5a\x7f\xc0\x76\x3d\x6e\x5f\xde\xc2\xfa\x5f\xb2\xf6\x59\x0f\x56\x22\x63\xe6\x56\xf1\x93\x9c\x86\x4a\xbf\x2b\xfe\x4f\xf2\xaa\xc5\xde\x07\x92\x71\xe4\xab\x9b\x0b\xf2\x8b\xc2\x16\x83\xb0\xff\x33\xf6\x1a\xfd\xbe\xfd\x0d\x00\x00\xff\xff\x64\xd2\xbe\x72\x0f\x04\x00\x00" +var _flowtokenMint_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x31\x6f\xdb\x30\x10\x85\x77\xfd\x8a\x83\x86\x40\x06\x1a\x69\x29\x3a\x08\x4e\x02\x77\xc8\xd6\x0e\x6d\x92\x9d\xa2\xce\xf2\xa1\x14\x29\x1c\x4f\x71\x0a\x23\xff\xbd\x20\x29\xc9\x56\x5a\x57\x8b\x61\xf2\xdd\x77\xef\xdd\x91\xfa\xc1\xb1\xc0\xe3\x68\x3b\x6a\x0c\x3e\xb9\x5f\x68\x61\xcf\xae\x87\x7c\x75\x96\x67\xb3\xd2\xb8\xe3\x4a\x35\xff\xcf\xb3\xac\xaa\x2a\x78\x3a\x90\x07\x61\x65\xbd\xd2\x42\xce\x42\x4f\x56\x3c\x48\x90\x78\x18\x3d\xd9\x0e\xe4\x80\xa0\xb4\x76\xa3\x15\x90\x83\x12\xf0\xe2\x18\x7d\x3c\x0f\x3c\x48\x0d\x76\x6d\x4f\x16\x18\xbd\x1b\x59\xe3\x99\x4e\x49\xe9\x91\x5f\x49\x2f\xa4\x2c\xbb\xe8\x5a\x30\x6a\x1a\x08\xad\xd4\xb0\x6b\x5b\x46\xef\x3f\x81\xea\x83\xae\x86\xe7\x47\x7a\xfb\xf2\x79\x03\xa7\x2c\x03\x00\x30\x28\xc9\x5e\xec\x57\xc3\xcd\x12\xa9\x8c\x27\xe4\x85\x95\x38\x5e\x8b\x7f\xa0\x46\x7a\x45\xae\xe1\xe6\xb4\x9a\x54\x39\xdf\xbc\x27\xfc\xc0\x38\x28\xc6\xc2\x53\x67\x83\x5c\x8d\x72\x28\xbe\x3a\x66\x77\x7c\x51\x66\xc4\x0d\xdc\xec\x52\x82\xc5\x51\xf8\x3c\x9a\x7d\x79\xb6\x05\x77\x90\x00\x65\x98\x95\xea\x70\x11\x86\xaf\x6c\x22\x6f\x7b\xcd\xfa\x7d\x11\x96\x55\x43\x35\x15\x57\xfb\x59\x17\x65\x9b\x15\xec\xe1\x01\x06\x65\x49\x17\xf9\xcf\xd8\x31\xcc\xdb\x3a\x89\x33\x8f\x86\x40\x85\xa2\x7c\xf3\x2f\xb3\x73\x78\xb8\x83\x0e\x65\x0a\x76\xde\xc6\xba\x53\xa9\xd5\xa0\x1a\x32\x24\x84\x7e\xc9\x70\x6d\x9c\xf7\x45\x35\x8c\x8d\x21\x7d\x76\x3f\xdf\x5d\x0b\xf0\x6c\x55\x63\x82\x6b\x48\x70\xe0\xd9\x1e\xe3\x1e\x19\xad\xc6\x3c\xd5\x4e\xcb\xc2\x37\xd4\xa3\x20\x9c\x16\x60\x58\x78\x78\xc2\xc8\xb0\xbd\xfd\xb8\x95\x52\x33\x2a\xc1\xef\x78\xfc\x16\x25\x85\x32\xc6\x1d\xb1\xdd\x4d\x2f\x2d\xbd\xb8\xcd\xdf\xb0\xf6\x45\x8d\x46\x02\x31\xb1\xcb\xf0\x13\x23\xf9\x42\x7d\x28\xfe\xcf\x94\xcb\x16\x07\xe7\x49\xa6\xf5\x6e\x6f\x2f\xe0\x17\x85\x2d\x7a\x61\xf7\x7b\xea\x35\xe5\x7d\xff\x13\x00\x00\xff\xff\x4d\x4d\x2d\xec\xfb\x03\x00\x00" func flowtokenMint_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1690,11 +1690,11 @@ func flowtokenMint_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/mint_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x38, 0x6, 0x53, 0x7d, 0x25, 0x77, 0x12, 0xd3, 0xbc, 0x23, 0xaa, 0xb5, 0xf0, 0x80, 0xc7, 0x63, 0x64, 0x47, 0x7c, 0xda, 0x22, 0x20, 0xb6, 0x1c, 0x12, 0x83, 0xb2, 0x12, 0xe4, 0x90, 0xa5, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0x85, 0x9a, 0xca, 0x71, 0x4a, 0xfb, 0x5f, 0xd5, 0x56, 0xf3, 0x5f, 0xb8, 0xc1, 0xd8, 0xfe, 0x87, 0xff, 0x71, 0x1d, 0x2f, 0x26, 0x65, 0x2, 0x7, 0xfd, 0x3e, 0xa1, 0xab, 0x25, 0xc9, 0x2d}} return a, nil } -var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcf\x4e\xf3\x30\x10\xc4\xef\x7e\x8a\xf9\x72\xf8\x48\x2e\xc9\x05\x71\xa8\x80\xaa\x20\xf5\x01\x50\xe1\xee\x38\xeb\x76\x85\x6b\x47\xf6\x9a\x22\x55\x7d\x77\xd4\xfc\xab\x9a\x53\xec\xfd\xed\xcc\x8e\xb7\x69\xb0\x3b\x70\x42\x32\x91\x7b\x41\x24\xdd\x25\xc8\x81\xd0\x6a\xa7\xbd\x21\x58\x26\xd7\x21\x58\x68\x0f\x6d\x4c\xc8\x5e\x1e\x12\xb6\x2e\x9c\x76\xe1\x9b\x3c\xde\x46\x4e\x29\x3e\xf6\x21\x0a\xb6\xd9\xef\xb9\x75\x34\x56\x6d\x0c\x47\x14\x77\x77\xc5\x42\x2e\x1a\x13\x35\x9f\x0b\xa5\xb4\x31\x94\x52\xa9\x9d\xab\x60\xb3\xc7\x51\xb3\x2f\x27\xfb\x15\x36\x5d\x17\x29\xa5\x6a\x85\xcf\x2d\xff\x3e\x3d\xe2\xac\x14\x00\x38\x12\xfc\xe8\xec\xe4\x83\x2c\x5e\xb0\x27\xd9\x8c\x2d\x73\x6b\x35\x60\xd7\xaf\x36\xba\xd7\x2d\x3b\x16\xa6\x54\xef\x49\x9e\xff\x2f\xfe\xf5\xd7\x55\xe3\x7c\x37\x75\x3d\xe5\xbc\xbc\x96\x4d\x9f\x5b\xc7\xa6\xb1\x33\x3f\x95\xaa\x7f\x37\xf5\x36\xc4\x18\x4e\xe5\xcd\x6f\xbd\x46\xaf\x3d\x9b\xb2\x78\x0f\xd9\x75\xf0\x41\x30\x42\xf3\x0b\x22\x92\xa5\x48\xd7\x3f\x09\xc3\x0a\x86\x31\x8a\x6a\xcc\x16\x49\x72\xf4\x4b\xbc\x7a\xda\x8f\xba\xa8\xbf\x00\x00\x00\xff\xff\x5b\x5b\xf0\xc3\xc3\x01\x00\x00" +var _flowtokenScriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xcb\x4e\xf3\x30\x10\x85\xf7\x7e\x8a\xa3\x2c\xfe\x3f\xd9\x24\x1b\xc4\xa2\x02\xaa\x82\xd4\x07\x40\x85\xfd\xc4\x19\xb7\x23\x5c\x3b\xf2\x85\x22\x55\x7d\x77\x94\x2b\x6a\x56\xb1\xe7\x9b\x73\xe6\x8c\x9b\x06\x87\x93\x44\x44\x1d\xa4\x4f\x08\x4c\x5d\x44\x3a\x31\x5a\xb2\xe4\x34\xc3\x08\xdb\x0e\xde\x80\x1c\x48\x6b\x9f\x5d\xfa\x1f\xb1\xb7\xfe\x72\xf0\x5f\xec\xf0\x3a\x71\x4a\xc9\xb9\xf7\x21\x61\x9f\xdd\x51\x5a\xcb\x53\xd5\x04\x7f\x46\x71\x77\x57\xac\xe4\xaa\x31\x53\xcb\xb9\x50\x8a\xb4\xe6\x18\x4b\xb2\xb6\x82\xc9\x0e\x67\x12\x57\xce\xf6\x1b\xec\xba\x2e\x70\x8c\xd5\x06\x1f\x7b\xf9\x79\x7c\xc0\x55\x29\x00\xb0\x9c\xf0\x4d\xd9\xa6\x77\x36\x78\xc6\x91\xd3\x6e\x6a\x59\x5a\xab\x11\x1b\xbe\x5a\x53\x4f\xad\x58\x49\xc2\xb1\x6e\x7d\x08\xfe\xf2\xf4\x6f\x1d\xa1\xfe\x1c\x64\xae\x77\x83\xd7\x73\xd4\xdb\x4b\xd9\xf4\xb9\xb5\xa2\x1b\xb3\xf0\x73\xe9\x4f\x7f\xbb\x45\x4f\x4e\x74\x59\xbc\xf9\x6c\x3b\x38\x9f\x30\xb9\x2c\x1b\x43\x60\xc3\x81\x87\xbf\xe4\xc7\x95\x8f\x9e\x45\x35\x65\x09\x9c\x72\x70\x6b\x9c\x7a\x7e\x0f\x75\x53\xbf\x01\x00\x00\xff\xff\xb2\x75\x14\x0e\xb3\x01\x00\x00" func flowtokenScriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -1710,7 +1710,7 @@ func flowtokenScriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4c, 0xcf, 0xb2, 0x8c, 0x14, 0xdf, 0x77, 0xe7, 0xd2, 0xe8, 0xc8, 0x5d, 0x10, 0x4d, 0xd5, 0x3d, 0xf8, 0xf3, 0x1a, 0x4e, 0x75, 0xa1, 0x97, 0xad, 0x3b, 0xfe, 0x7c, 0x76, 0x1d, 0x30, 0x80, 0xa8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8c, 0xff, 0xa, 0x56, 0x3f, 0xfb, 0xe0, 0xd, 0xb, 0x7, 0x18, 0x80, 0xea, 0xfa, 0x73, 0xb0, 0x94, 0x62, 0xb6, 0xb1, 0x47, 0x85, 0x6a, 0x9b, 0xcc, 0x47, 0xc4, 0x1e, 0x51, 0x88, 0xc3, 0x7e}} return a, nil } @@ -1754,7 +1754,7 @@ func flowtokenSetup_accountCdc() (*asset, error) { return a, nil } -var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\x4d\x4f\xdc\x3c\x10\x3e\x93\x5f\x31\xec\x01\x12\xe9\x25\xb9\xbc\xea\x61\xb5\x85\xd2\x56\xf4\x8e\x28\x3d\x4f\x92\xc9\xc6\xaa\xd7\x8e\xc6\x13\x02\x42\xfc\xf7\xca\x76\x1c\x36\x20\x95\xee\x65\x95\xf1\xcc\x33\xcf\x87\x5d\x55\x70\xd7\x2b\x07\xc2\x68\x1c\x36\xa2\xac\x01\xe5\x00\x41\xe8\x30\x68\x14\x82\xce\xb2\xff\x3c\x3a\x97\x1e\x25\xab\x2a\x68\xec\xa8\x5b\xa8\x09\x46\x47\x2d\xd4\x4f\x80\xe6\xc9\x1a\x02\xb1\xe0\xc8\xb4\x20\xf6\x37\x19\xe7\x3f\xd1\x58\xe9\x89\x01\x9b\xc6\x8e\x26\x0c\x7b\x10\xe8\xd1\x41\x4d\x64\xc0\x91\xc0\x38\xf8\x56\xa6\x86\xd4\x03\xcd\xc3\x65\x56\x55\x59\xe0\x48\x30\x29\xe9\x5b\xc6\x09\xf0\xe0\x41\x00\xfd\x8a\x9e\x12\x28\x74\x6c\x0f\xb0\x27\xb9\x7e\x5d\x32\x25\x86\xbe\x6f\x40\xc6\x03\x09\x71\xa0\xe4\x2b\x47\xa2\xb2\x4c\x1d\x06\xcb\x02\x37\xa3\xd9\xab\x5a\xd3\x9d\xdf\x1f\x31\x37\xab\xda\x66\xe9\xd4\x76\x5a\x75\xa5\xef\x4d\x96\x1d\x21\xe7\x91\xee\x16\x7e\xde\xa8\xc7\x4f\xff\xff\x07\x62\xb7\x70\xdd\xb6\x4c\xce\x15\xf0\x9c\x65\x00\x00\xb3\xc4\x7b\x1c\xb5\x00\x93\xb3\x23\x37\x34\x7b\x64\x75\xeb\x22\xdd\xd9\x4f\x5f\x45\x26\xa8\x49\x99\x7d\x14\xd1\x11\x33\xb5\x01\x4a\x93\x78\xfb\x25\x60\x6d\xe1\xcb\x8a\x7c\x19\xaa\x71\xe7\xc0\x34\x20\x53\xee\xd4\xde\x10\x6f\x01\x47\xe9\xf3\xaf\x96\xd9\x4e\xf7\xa8\x47\x2a\xe0\x6c\xb6\x72\xa1\x39\x53\xfd\x41\x02\x08\x4c\x1d\x31\x99\x86\x92\x9d\x11\xe8\xdc\x81\x13\xcb\xd4\xc2\x43\xd8\x95\xe6\x3c\xaf\x50\xb9\xa5\x0e\x3e\xcf\xcd\xa5\x6f\xc5\x3d\x95\x75\xd8\xbb\x0b\x1c\xd6\x8c\x7f\xcd\xb1\x63\xad\x3d\xa5\xc5\xe5\x28\xe5\x32\xf7\xe6\x6f\xa1\x9a\x81\xaa\x2e\x9d\x87\xe3\x22\x3b\x39\x39\xb9\xba\x82\x01\x8d\x6a\xf2\xcd\xb7\x70\x1f\x8c\x15\x88\xfb\xde\x6b\xb0\x53\x94\x10\xa6\x4f\x37\xc5\x4a\x77\xa2\x92\x92\x08\xb9\x7f\xac\xdc\x91\xee\xca\x25\x12\xd8\x5d\x2c\x3e\x94\xe9\x4e\x2f\x97\x24\xfe\x17\x61\xf6\x25\x2e\xa7\x47\x6a\x46\xa1\x7f\xcb\x80\xa9\x51\x83\x22\x23\xe7\x0e\x6e\xe3\x53\xe2\x55\x04\xf3\xfb\xe2\x98\xc2\xd1\x7b\xc9\xc5\x16\x4b\xa7\xff\x95\x0d\x0e\x58\x2b\xad\x44\x91\x2b\xf7\x24\xbb\xb3\xe7\x75\x34\x69\xc1\xcb\x65\x5e\x0d\x63\xad\x55\xf3\x6a\x7f\x3a\x2b\x4e\xd7\xa0\xd1\xf8\xfc\xe3\x60\xe2\xf8\xdf\x15\x06\x43\xdf\x84\xf4\x9d\x06\xeb\x94\x84\xde\x64\xaf\x49\x89\x29\xf3\x0e\x83\xdf\xba\x74\xe4\x50\xd9\x46\xb0\xf9\x92\xed\x2e\xd6\x51\xa6\x98\x5e\xb2\x3f\x01\x00\x00\xff\xff\xd8\xb1\x73\x51\x47\x05\x00\x00" +var _flowtokenTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcd\x4e\xdc\x30\x10\x3e\x93\xa7\x98\xee\x01\xb2\x52\x49\x2e\x55\x0f\x2b\x0a\xa5\xad\xe8\x1d\x51\x7a\x9e\x38\x93\x8d\x55\xaf\x1d\x8d\x27\x2c\x08\xed\xbb\x57\xb6\xe3\xb0\x01\xa9\x74\x2f\xab\x8c\x67\xbe\xf9\x7e\xec\xba\x86\xbb\x5e\x7b\x10\x46\xeb\x51\x89\x76\x16\xb4\x07\x04\xa1\xdd\x60\x50\x08\x3a\xc7\xe1\xf3\xe8\x5c\x7a\x94\xa2\xae\x41\xb9\xd1\xb4\xd0\x10\x8c\x9e\x5a\x68\x9e\x00\xed\x93\xb3\x04\xe2\xc0\x93\x6d\x41\xdc\x1f\xb2\x3e\x7c\xa2\x75\xd2\x13\x03\x2a\xe5\x46\x1b\x87\x03\x08\xf4\xe8\xa1\x21\xb2\xe0\x49\x60\x1c\x42\x2b\x93\x22\xfd\x40\xd3\x70\x55\xd4\x75\x11\x39\x12\xec\xb5\xf4\x2d\xe3\x1e\x70\x17\x40\x00\xc3\x8a\x9e\x32\x28\x74\xec\x76\xb0\x25\xb9\x7e\x59\xb2\xcf\x0c\x43\xdf\x80\x8c\x3b\x12\xe2\x48\x29\x54\x8e\x44\x15\x85\xde\x0d\x8e\x05\x6e\x46\xbb\xd5\x8d\xa1\xbb\xb0\x3f\x61\xae\x16\xb5\xd5\xdc\x69\xdc\x7e\xd1\x95\xbf\x57\x45\x71\x84\x5c\x26\xba\x1b\xf8\x75\xa3\x1f\x3f\x7f\xfa\x08\xe2\x36\x70\xdd\xb6\x4c\xde\xaf\xe1\xb9\x28\x00\x00\x26\x89\xf7\x38\x1a\x01\x26\xef\x46\x56\x34\x79\xe4\x4c\xeb\x13\xdd\xc9\xcf\x50\x45\x26\x68\x48\xdb\x6d\x12\xd1\x11\x33\xb5\x11\xca\x90\x04\xfb\x25\x62\x6d\xe0\xeb\x82\x7c\x15\xab\x69\xe7\xc0\x34\x20\x53\xe9\xf5\xd6\x12\x6f\x00\x47\xe9\xcb\x6f\x8e\xd9\xed\xef\xd1\x8c\xb4\x86\xd3\xc9\xca\x99\xe6\x44\xf5\x27\x09\x20\x30\x75\xc4\x64\x15\x65\x3b\x13\xd0\x99\x07\x2f\x8e\xa9\x85\x87\xb8\x2b\xcf\x05\x5e\xb1\x72\x4b\x1d\x7c\x99\x9a\xab\xd0\x8a\x5b\xaa\x9a\xb8\xf7\x22\x72\x58\x32\xfe\x3d\xc5\x8e\x8d\x09\x94\x66\x97\x93\x94\xcb\x32\x98\xbf\x81\x7a\x02\xaa\xbb\x7c\x1e\x8f\xd7\xc5\xc9\xc9\xc9\xd5\x15\x0c\x68\xb5\x2a\x57\xdf\xe3\x7d\xb0\x4e\x20\xed\x7b\xab\xc1\xed\x93\x84\x38\xfd\x61\xb5\x5e\xe8\xce\x54\x72\x12\x31\xf7\xf7\x95\x7b\x32\x5d\x35\x47\x02\x17\xe7\xb3\x0f\x55\xbe\xd3\xf3\x25\x49\xff\xeb\x38\x7b\x48\xcb\xe9\x91\xd4\x28\xf4\x7f\x19\x30\x29\x3d\x68\xb2\x72\xe6\xe1\x36\x3d\x25\x5e\x44\x30\xbd\x2f\x4e\x29\x1c\xbd\x97\x52\xdc\x7a\xee\x0c\xbf\x4a\xe1\x80\x8d\x36\x5a\x34\xf9\x1c\xd0\xe9\xf3\x32\x9d\xbc\xe3\x70\x59\xd6\xc3\xd8\x18\xad\x5e\x12\xc8\x67\xef\x87\x90\xfa\xfe\xad\x26\x9a\xf7\x2a\x90\x1f\x34\x38\xaf\x25\xf6\x66\x2b\x6d\x4e\x47\xdb\x37\x18\xfc\xda\x91\x23\x37\xaa\x36\x81\x4d\x17\xea\xe2\x7c\x19\x5b\x8e\xe4\x50\xfc\x0d\x00\x00\xff\xff\xcb\x74\x8b\xdb\x33\x05\x00\x00" func flowtokenTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -1770,7 +1770,7 @@ func flowtokenTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "flowToken/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x54, 0x57, 0xce, 0xc7, 0x3c, 0xd3, 0x18, 0xd, 0x47, 0xdb, 0xf7, 0x91, 0x87, 0x63, 0x71, 0x2, 0x2, 0x0, 0xb6, 0xd6, 0x88, 0x65, 0x30, 0x75, 0x1, 0x4f, 0xb4, 0x7a, 0xde, 0x17, 0x31}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0xba, 0x25, 0xee, 0xa6, 0x70, 0x41, 0x3b, 0xa8, 0x36, 0xcf, 0x12, 0xd4, 0x60, 0xb5, 0x2d, 0x86, 0x12, 0xa0, 0xf7, 0x98, 0x93, 0x7d, 0x1e, 0xe9, 0xdb, 0xb6, 0x15, 0x43, 0x95, 0xb6, 0x59}} return a, nil } @@ -2514,7 +2514,7 @@ func idtablestakingDelegationGet_delegator_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x41\x6b\xe3\x40\x0c\x85\xef\xf3\x2b\xde\xfa\xb0\xd8\xb0\xd8\xf7\xb0\xbb\x21\x6c\x58\xc8\xa5\x14\x9a\x3f\x20\xcf\xc8\xce\xb4\x93\x91\x99\x91\xc9\x21\xe4\xbf\x97\xc4\x4d\x9c\xd2\x40\x75\x12\xd2\xe3\x7d\xd2\xf3\xfb\x41\x92\xe2\x7f\x90\xc3\x66\xbd\xa5\x36\xf0\x8b\xd2\x9b\x8f\x3d\xba\x24\x7b\x14\x5f\x17\x85\x31\x4d\x83\xed\xce\x67\x64\x9b\xfc\xa0\xe8\x59\x33\x28\x04\xe8\x8e\xe1\x63\x27\xa0\x56\x46\x05\xc1\x71\xe0\x9e\x54\x12\x28\x3a\x24\xd6\x31\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\xc6\x88\x3d\xf9\x58\x92\x73\x89\x73\x5e\x60\x35\x35\xd5\xe2\xc1\x61\xf5\xfa\x6a\xba\x39\xa3\x8e\xc6\x00\x40\x60\xbd\xa3\xfd\x39\xdf\xb4\xb2\x56\xc6\xa8\x57\xd7\xea\xa2\x3b\x57\x6d\x69\xa0\xd6\x07\xaf\x9e\x73\xdd\xb3\xfe\xfe\x79\x7c\xc0\x79\x12\xc7\x37\xd6\xf3\xd8\x06\x6f\x4f\x7f\xcb\x66\xb8\x74\x4d\x17\xe4\xf0\xa1\xbc\x89\xaa\x1f\x33\xa3\x95\x94\xe4\x50\xce\xd4\xe5\x12\x03\x45\x6f\xcb\xe2\x9f\x8c\xc1\x21\x8a\x62\x12\x21\x71\xc7\x89\xa3\x65\xa8\xdc\x7d\x21\xed\x2b\x5b\x2d\xaa\xe9\xc3\x29\xbd\x6f\x03\x29\xa3\x38\xde\xac\x17\xb3\x4f\x3d\x4d\x7e\xcd\x93\xcf\x6b\xef\x2a\x73\x32\xef\x01\x00\x00\xff\xff\x6d\x02\x1c\x02\x09\x02\x00\x00" +var _idtablestakingDelegationGet_delegator_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\xc1\x6a\xf3\x30\x10\x84\xef\x7a\x8a\xc1\x87\x1f\x1b\x7e\xec\x7b\x68\x1b\x42\x43\x21\x97\x52\x68\x5e\x60\x2d\xad\x13\xb5\x8a\xd6\x48\x6b\x72\x08\x79\xf7\x92\xb8\x89\x53\x1a\xa8\x4e\xcb\xee\x30\xdf\x68\xfc\xae\x97\xa4\x78\x09\xb2\x5f\x2d\xd7\xd4\x06\x7e\x57\xfa\xf4\x71\x83\x2e\xc9\x0e\xc5\xef\x43\x61\x4c\xd3\x60\xbd\xf5\x19\xd9\x26\xdf\x2b\x36\xac\x19\x14\x02\x74\xcb\xf0\xb1\x13\x50\x2b\x83\x82\xe0\x38\xf0\x86\x54\x12\x28\x3a\x24\xd6\x21\xc5\x0c\xaf\xc6\x90\xb5\x9c\x73\x49\x21\x54\xe8\x86\x88\x1d\xf9\x58\x92\x73\x89\x73\x9e\x61\x31\x0e\xd5\xec\x4e\xb0\x7a\x79\x31\x5d\x9d\x50\x07\x63\x00\x20\xb0\xde\xd0\x1e\x4f\x99\x16\xd6\xca\x10\xf5\xe2\x5a\x9d\x75\xa7\x57\x5b\xea\xa9\xf5\xc1\xab\xe7\x5c\xb7\x92\x92\xec\x1f\xfe\x1d\xee\xa0\x5e\xc5\xf1\x15\xf7\x36\xb4\xc1\xdb\xe3\x53\xd9\xf4\xe7\xa9\xe9\x82\xec\xbf\x95\x57\xd1\x44\x99\xcf\xd1\x53\xf4\xb6\x2c\x9e\x65\x08\x0e\x51\x14\x23\x0b\x89\x3b\x4e\x1c\x2d\x43\xe5\x26\xb5\xb4\x1f\x6c\xb5\xa8\xc6\x1f\x8d\x6d\xfd\x59\x40\x19\xc5\xf1\x6a\x39\x9b\x7c\xea\x71\xf3\x7f\xda\xfc\x3c\x7b\x57\x99\xa3\xf9\x0a\x00\x00\xff\xff\xb9\xc7\x94\xa1\xf9\x01\x00\x00" func idtablestakingDelegationGet_delegator_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -2530,7 +2530,7 @@ func idtablestakingDelegationGet_delegator_info_from_addressCdc() (*asset, error } info := bindataFileInfo{name: "idTableStaking/delegation/get_delegator_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xee, 0x81, 0x19, 0xa9, 0x97, 0x75, 0x8e, 0xb2, 0xa1, 0x41, 0x50, 0x8c, 0x76, 0xd6, 0x33, 0xfd, 0x16, 0xca, 0x13, 0x40, 0x46, 0x42, 0x25, 0xe4, 0xaf, 0x56, 0xad, 0x90, 0xc6, 0xae, 0x1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0x6d, 0xf0, 0x20, 0xdc, 0x44, 0xad, 0x75, 0x83, 0x22, 0xdd, 0xd0, 0xfe, 0x92, 0x57, 0x2d, 0xf0, 0xc2, 0x14, 0x1b, 0x47, 0x3a, 0xe7, 0x2c, 0xc6, 0xc0, 0xeb, 0x5b, 0xa3, 0xba, 0x2e, 0xa9}} return a, nil } @@ -3114,7 +3114,7 @@ func idtablestakingScriptsGet_node_infoCdc() (*asset, error) { return a, nil } -var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x73\xbd\xb8\xd8\x1b\x67\x1f\xda\x86\xd0\x50\xc8\xa6\x04\x9a\x17\x18\x4b\xe3\x44\xad\xac\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xa4\xd0\x1f\xaa\x95\x60\xce\xcc\x37\xf3\xf9\x61\x94\xa4\x78\x0a\x72\xda\x6e\xf6\xd4\x05\x7e\x51\x7a\xf3\xf1\x80\x3e\xc9\x80\xea\x6b\xa1\x32\x66\xb1\xc0\xfe\xe8\x33\xb2\x4d\x7e\x54\x1c\x58\x33\x28\x04\xe8\x91\xe1\x63\x2f\xa0\x4e\x26\x05\x21\x8a\x63\x50\x74\x48\xac\x53\x8a\x19\x5e\x8d\x21\x6b\x39\xe7\x9a\x42\x68\xd0\x4f\x11\x03\xf9\x58\x93\x73\x89\x73\x5e\x62\x5d\x3e\xcd\xf2\x9b\x9d\xda\x67\x71\xbc\x9d\x01\x67\x63\x00\x20\xb0\x5e\x19\x73\x9d\x13\xee\xe7\x55\xd6\xd6\xca\x14\xf5\x63\x62\x73\x0d\xce\xaf\xb5\x34\x52\xe7\x83\x57\xcf\xb9\x3d\xb0\xde\xfd\x3f\xff\xc0\x28\xf3\x76\x53\x17\xbc\xbd\x3c\xd4\x7f\x48\xed\x48\x8f\xcd\xbf\x1b\xab\x93\x94\xe4\x54\xdf\xe8\xab\x15\x46\x8a\xde\xd6\xd5\xa3\x4c\xc1\x21\x8a\xa2\x84\x90\xb8\xe7\xc4\xd1\x32\x54\x8a\xb2\x5c\xee\x91\xee\x95\xad\x56\x4d\x39\xb6\x38\xfc\x4d\x4b\x3d\x37\x6f\x37\xcb\x4f\x4e\x5a\xef\x1a\x73\x31\xef\x01\x00\x00\xff\xff\xb1\x05\x86\x48\xe7\x01\x00\x00" +var _idtablestakingScriptsGet_node_info_from_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x90\xcd\x6a\xeb\x30\x10\x85\xf7\x7a\x8a\x83\x17\x17\x7b\xe3\xec\xc3\x6d\x43\x68\x28\x64\x53\x02\xcd\x0b\x8c\xe5\x71\x32\xad\xa2\x31\xd2\x98\x2c\x42\xde\xbd\x38\xa2\xb4\xd0\x1f\xaa\x95\x60\x46\xe7\x3b\xfa\xe4\x34\x6a\x32\x3c\x06\x3d\x6f\x37\x7b\xea\x02\x3f\x1b\xbd\x4a\x3c\x60\x48\x7a\x42\xf5\x75\x50\x39\xb7\x58\x60\x7f\x94\x8c\xec\x93\x8c\x86\x03\x5b\x06\x85\x00\x3b\x32\x24\x0e\x0a\xea\x74\x32\x10\xa2\xf6\x0c\x8a\x3d\x12\xdb\x94\x62\x86\x98\x73\xe4\x3d\xe7\x5c\x53\x08\x0d\x86\x29\xe2\x44\x12\x6b\xea\xfb\xc4\x39\x2f\xb1\x2e\x97\x66\xf9\x4d\xa7\xf6\x49\x7b\xde\xce\x80\x8b\x73\x00\x10\xd8\x6e\x8c\x79\xce\x09\x77\x73\x95\xb5\xf7\x3a\x45\x7b\x4f\x6c\x6e\x8b\xf3\x69\x3d\x8d\xd4\x49\x10\x13\xce\x6d\xa7\x29\xe9\xf9\xff\xbf\xcb\x0f\x98\x12\xb9\x9b\xba\x20\xfe\x7a\x5f\xff\x61\x6b\x47\x76\xfc\xa0\xad\x56\x18\x29\x8a\xaf\xab\x07\x9d\x42\x8f\xa8\x86\xc2\x44\xe2\x81\x13\x47\xcf\x30\x2d\x8a\x72\xe9\xaf\xdd\x0b\x7b\xab\x9a\xf2\xb9\xe2\xec\x37\x0d\xf5\xfc\x78\xbb\x59\x7e\x72\xd0\x4a\xdf\xb8\xab\x7b\x0b\x00\x00\xff\xff\x31\x19\xe4\x4c\xd7\x01\x00\x00" func idtablestakingScriptsGet_node_info_from_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -3130,7 +3130,7 @@ func idtablestakingScriptsGet_node_info_from_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/scripts/get_node_info_from_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8b, 0xe8, 0xc9, 0xfe, 0x53, 0x28, 0xaa, 0x6a, 0xc3, 0xe, 0xaf, 0xe3, 0x7b, 0xcb, 0x12, 0xef, 0xc9, 0x34, 0x4e, 0x11, 0x2e, 0x75, 0x24, 0x7b, 0xea, 0x4c, 0x3e, 0x15, 0xf8, 0x45, 0x1c, 0x2a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x51, 0xd7, 0x3, 0x14, 0x4b, 0x6c, 0x3a, 0x16, 0x47, 0x8e, 0xdb, 0x75, 0x1b, 0x8, 0xe, 0x87, 0x83, 0x39, 0x57, 0x8d, 0x2b, 0x31, 0x72, 0x62, 0x9d, 0x31, 0xbc, 0x7e, 0xc6, 0xbe, 0x92, 0xeb}} return a, nil } @@ -3634,7 +3634,7 @@ func lockedtokensAdminAdmin_deploy_contractCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xb6\x87\xce\xbe\x24\x3b\x07\xeb\x8a\xcc\xc9\xa9\xc5\x1a\xb4\xc1\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x74\xc5\xd0\x77\x1f\x64\x1b\xa9\xbd\xa5\x28\x4f\x36\xc1\xff\x17\xf9\x91\xee\x10\x59\x14\xee\xd8\x3c\x93\xdd\xf2\x33\x85\x04\x4f\xc2\x07\xf8\xfa\xfb\xee\xbe\xbe\x5d\xaf\xb6\xf7\xb7\xeb\x9f\xcb\xd5\xea\x61\xfd\xf8\x58\x14\xf3\xf9\x1c\x34\x57\x01\xda\x83\x0b\x90\xdc\x3e\x24\xd0\xc6\x25\x50\xc1\x90\xd0\xa8\xe3\x00\xca\x60\x29\x72\x72\x0a\x08\x06\x23\xee\x9c\x77\xfa\xda\xc9\x5d\x50\xce\xd9\x36\x29\xdb\x57\x88\xc2\x47\x67\x49\xbe\x24\x40\x63\xb8\x0d\x0a\xda\xa0\x02\x7a\xcf\x2f\xd9\x9a\x0e\xd9\x0e\xad\xed\xd4\x43\x4d\xca\x39\x6d\x08\x84\x0c\x8b\x2d\x8a\xd1\xeb\xe5\x60\xbd\x19\x9c\x97\xd6\x0a\xa5\xb4\x80\xe1\xa3\x82\x3f\x45\x01\x00\x10\x85\x22\x0a\x95\xdd\x28\x0b\xc0\x56\x9b\xf2\x07\x8b\xf0\xcb\x2f\xf4\x2d\x55\x70\xb5\xec\x5f\x3b\x29\x72\x78\xd2\xd1\x48\x0f\x64\xc8\x1d\x49\xe0\x1a\xf6\xa4\x43\xfd\x07\x1d\x54\x27\x8f\x1c\xb3\x93\x89\xa3\x34\xdb\x93\x7e\xbb\x1a\x6f\x61\xd6\xff\x0c\x8e\xb5\x10\x2a\xcb\xf7\x72\x62\x91\xe3\x53\xcd\xa6\xdd\x79\x67\x36\xa8\xcd\x44\x5b\x5d\x4c\xbb\xd9\x75\x83\x97\xd3\x1e\x6f\x6e\x20\x62\x70\xa6\xbc\xac\xb9\xf5\x16\x02\x2b\xf4\x85\x23\x04\x79\x07\x3d\x03\xa1\x27\x12\x0a\x86\x2e\xab\x29\xaf\xee\x64\x96\x19\x73\xcd\xde\x53\x7f\x24\xd7\xfd\x0d\x7d\xc6\x61\x7b\x46\xfb\x0f\x87\x33\x0c\xde\x55\x1b\x71\x47\x54\x9a\x00\xa8\x2e\xde\xfb\xfb\x7f\x97\x33\xb4\xb6\x3e\x65\x4b\x83\x71\x71\x76\x82\x9e\xd5\x5b\xf1\x56\xfc\x0d\x00\x00\xff\xff\xfd\x8f\x6e\x94\x46\x03\x00\x00" +var _lockedtokensAdminAdmin_deposit_account_creatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x92\xc1\x6e\xdb\x30\x0c\x86\xef\x7e\x0a\xae\x87\xce\xbe\x24\x3b\x07\xeb\x8a\xcc\xc9\xa9\xc5\x1a\xb4\xc1\xee\x8c\xc4\xc6\x42\x15\x51\xa0\xe8\x74\xc5\xd0\x77\x1f\x64\x1b\xa9\x9d\x65\x18\x4f\x36\xc1\xff\x27\x3f\x8a\xee\x10\x59\x14\xee\xd9\xbc\x90\xdd\xf2\x0b\x85\x04\xcf\xc2\x07\xf8\xf2\xeb\xfe\xa1\xbe\x5b\xaf\xb6\x0f\x77\xeb\x1f\xcb\xd5\xea\x71\xfd\xf4\x54\x14\xf3\xf9\x1c\x34\x57\x01\xda\x83\x0b\x90\xdc\x3e\x24\xd0\xc6\x25\x50\xc1\x90\xd0\xa8\xe3\x00\xca\x60\x29\x72\x72\x0a\x08\x06\x23\xee\x9c\x77\xfa\xd6\xc9\x5d\x50\xce\xd9\x36\x29\xdb\x37\x88\xc2\x47\x67\x49\x3e\x27\x40\x63\xb8\x0d\x0a\xda\xa0\x02\x7a\xcf\xaf\xd9\x9a\x0e\xd9\x0e\xad\xed\xd4\x43\x4d\xca\x39\x6d\x08\x84\x0c\x8b\x2d\x8a\x51\xf7\x72\xb0\xde\x0c\xce\x4b\x6b\x85\x52\x5a\xc0\xf0\x51\xc1\xef\xa2\x00\x00\x88\x42\x11\x85\xca\x0e\x65\x01\xd8\x6a\x53\x7e\x67\x11\x7e\xfd\x89\xbe\xa5\x0a\xae\x97\x7d\xb7\x93\x22\x87\x27\x1d\x21\x3d\x92\x21\x77\x24\x81\x1b\xd8\x93\x0e\xf5\xff\x98\xa0\x3a\x79\xe4\x98\x9d\x4c\x1c\xa5\xd9\xae\xeb\xfb\xf5\x7a\xfc\x10\xb3\xfe\x67\x30\xad\x85\x50\x59\xbe\x95\x13\x97\x1c\xff\xd5\x6c\xda\x9d\x77\x66\x83\xda\x4c\xb4\xd3\x79\x6e\x6f\x21\x62\x70\xa6\xbc\xaa\xb9\xf5\x16\x02\x2b\xf4\x53\x8d\x70\xf3\xbe\x7b\x5e\xa1\x67\x12\x0a\x86\xae\xaa\xe9\x6e\xba\xf3\x58\xe6\x95\xd6\xec\x3d\xf5\x07\x71\xd3\xdf\xcb\x94\x79\x4f\x7a\x06\xbc\xbd\xa0\x3d\x03\xbe\x00\xfb\xa1\xda\x88\x3b\xa2\xd2\x84\xb4\xfa\xf4\x31\xdf\xdf\xef\x36\x43\x6b\xeb\x53\xb6\x34\x18\x17\x17\x09\xfa\x5d\xbd\x17\xef\xc5\x9f\x00\x00\x00\xff\xff\xe8\x42\x4a\xc5\x32\x03\x00\x00" func lockedtokensAdminAdmin_deposit_account_creatorCdcBytes() ([]byte, error) { return bindataRead( @@ -3650,7 +3650,7 @@ func lockedtokensAdminAdmin_deposit_account_creatorCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/admin_deposit_account_creator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0xca, 0x8e, 0xac, 0xef, 0xef, 0x5a, 0x5a, 0x35, 0xfb, 0x72, 0xc8, 0xf1, 0x54, 0x61, 0x28, 0x3e, 0x4e, 0x65, 0xed, 0xd, 0x5e, 0xf6, 0xc3, 0xcd, 0x61, 0xc8, 0x26, 0xb9, 0x36, 0x7a, 0xda}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4b, 0x9b, 0xd6, 0x2b, 0xef, 0xc1, 0x25, 0x88, 0xc2, 0x4f, 0x5a, 0x57, 0xd4, 0xda, 0xd7, 0xb, 0x75, 0xb8, 0x3f, 0xd6, 0xe4, 0x98, 0xc5, 0xea, 0xfe, 0xe2, 0xbe, 0x52, 0x22, 0x43, 0xc5, 0xa}} return a, nil } @@ -3674,7 +3674,7 @@ func lockedtokensAdminAdmin_remove_delegatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4d\x8b\xdb\x30\x10\xbd\xfb\x57\x4c\x7c\x58\x64\x28\xa6\x67\xd3\xec\x92\x26\x29\x2d\xbb\x74\x97\x4d\xe8\x7d\x22\x8f\x1d\xb1\xb2\x64\xa4\x31\x5b\x28\xf9\xef\xc5\x92\x1d\xac\x36\xf4\x50\x5d\x82\x26\xef\xcd\xfb\xb0\x54\xd7\x5b\xc7\xf0\x65\x30\xad\x3a\x69\x3a\xda\x37\x32\xd0\x38\xdb\x41\x9e\xcc\xf2\x6c\x46\x6a\xfb\x9e\xa0\xe6\x7b\x9e\xcd\x90\x27\x2b\xdf\xa8\x0e\x43\x1f\x51\x1f\x7f\x3e\x3d\x6f\x1f\xf7\xbb\xe3\xf3\xe3\xfe\xfb\x66\xb7\x7b\xdd\x1f\x0e\x59\xc6\x0e\x8d\x47\xc9\xca\x1a\xd1\xa1\x32\x1b\x29\xed\x60\xb8\x82\x4d\x5d\x3b\xf2\xbe\x80\x5f\x59\x06\x00\xd0\x3b\xea\xd1\x91\xf0\xaa\x35\xe4\x2a\xc0\x81\xcf\xe2\xb3\x75\xce\xbe\xff\x40\x3d\x50\x01\x77\x13\xf7\x4a\x19\x8f\x26\x06\xac\x3b\x65\x5e\xa9\x81\x35\x44\x76\xe9\xd9\x3a\x6c\xa9\x3c\x05\xfe\xa7\xbb\xa5\xdb\x32\xfc\x6c\x46\xce\xd6\x6a\x4d\xc1\xdb\xbd\x18\x33\x54\x49\xac\x72\x71\xf9\x03\x7e\x88\xfb\x5f\x90\xcf\xc5\xd5\xca\x78\x1e\x1e\xa0\x47\xa3\xa4\xc8\xb7\x76\xd0\x35\x18\xcb\x10\x4d\x00\x82\xa3\x86\x1c\x19\x49\xc0\x16\xf8\x4c\xa0\x83\x00\x70\xa8\x3a\xa4\x00\x79\xd5\xc8\x8b\x34\x65\x04\x4f\x1d\x7c\x33\x8d\x8d\x89\x5b\xe2\x69\xb6\xec\x37\x75\x55\x4a\xec\xf1\xa4\xb4\x62\x45\xbe\x6c\x89\x6f\x35\xf2\xd5\xea\x9a\xdc\xbd\xb8\x51\xc1\x42\xf4\x65\x38\x69\x25\x43\xf0\x55\xaa\x11\x63\x8a\xff\xed\xa3\x0f\x8b\xe1\x2f\xc1\x7f\xd6\x00\xeb\x9b\xb5\x8c\x11\x93\x45\xd3\x63\x13\x8b\x5d\xe8\x3d\x39\x16\x89\xdb\xf9\x21\x95\x8b\x52\x31\x52\xab\x54\xa8\x80\xd5\x1a\x8c\xd2\x1f\x12\x7e\x47\xde\x63\x4b\x15\xe4\xc7\x33\x81\xef\x49\xaa\x46\x51\x0d\x38\xb9\x55\x3e\x14\x80\xf3\x87\x9f\xe6\x2b\xd8\xa2\x19\xff\xf0\x64\xea\xe4\x51\xf8\xfc\xba\x3f\xf6\x7a\xc9\x2e\xd9\xef\x00\x00\x00\xff\xff\xc5\x16\x02\x9f\xcf\x03\x00\x00" +var _lockedtokensAdminCheck_main_registrationCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x52\x4d\x6b\xdc\x30\x14\xbc\xfb\x57\x4c\x7c\x08\x36\x14\xd3\xb3\xe9\x26\x6c\x77\xb7\xb4\x24\x34\x21\xbb\xf4\xfe\x56\x7e\xf6\x8a\xc8\x92\x91\x64\x52\x28\xf9\xef\xc5\xf2\x07\x56\x1b\x72\x89\x2e\x8b\xde\xce\xcc\x9b\x19\x4b\xb6\x9d\xb1\x1e\xdf\x7a\xdd\xc8\xb3\xe2\x93\x79\x66\x8d\xda\x9a\x16\x69\x34\x4b\x93\x19\xa9\xcc\x4b\x84\x9a\xef\x69\x32\x43\xee\x8d\x78\xe6\x2a\x0c\xdd\x88\xfa\xfc\xfb\xfe\x61\x77\x77\xd8\x9f\x1e\xee\x0e\x3f\xb7\xfb\xfd\xd3\xe1\x78\x4c\x12\x6f\x49\x3b\x12\x5e\x1a\x9d\xb5\x24\xf5\x56\x08\xd3\x6b\x5f\x62\x5b\x55\x96\x9d\xcb\xf1\x27\x49\x00\xa0\xb3\xdc\x91\xe5\xcc\xc9\x46\xb3\x2d\x41\xbd\xbf\x64\x5f\x8d\xb5\xe6\xe5\x17\xa9\x9e\x73\x5c\x4f\xdc\x85\x32\x1c\xc5\x1e\x54\xb5\x52\x3f\x71\x8d\x0d\x46\x76\xe1\xbc\xb1\xd4\x70\x71\x0e\xfc\x2f\xd7\x6b\xb7\x45\xf8\xd9\x0e\x9c\x9d\x51\x8a\x83\xb7\x9b\x6c\xc8\x50\x46\xb1\x8a\xd5\xe5\x1f\xf8\x71\xd4\x7f\x24\x7f\xc9\x17\x2b\xc3\xb9\xbd\x45\x47\x5a\x8a\x2c\xdd\x99\x5e\x55\xd0\xc6\x63\x34\x01\x82\xe5\x9a\x2d\x6b\xc1\xf0\x06\xfe\xc2\x50\x61\x01\x7c\xa8\x3a\xa4\x80\x58\x76\xa4\x79\x9c\x72\x04\x4f\x1d\xfc\xd0\xb5\x19\x13\x37\xec\xa7\xd9\xba\xdf\xd8\x55\x21\xa8\xa3\xb3\x54\xd2\x4b\x76\xef\x94\xf2\xdd\xa8\x8a\xed\x4d\xf6\x46\x0b\xab\xbd\x8f\xfd\x59\x49\xf1\x91\xec\x5d\x50\xc0\x7f\xca\xef\x46\xc6\xe6\xcd\x0a\x8a\x86\x7d\x24\x34\x3d\xac\x6c\xa5\x45\xce\xb1\xf5\x59\xe4\x76\x7e\x34\xc5\xaa\x40\x1a\xa9\x65\xbc\x28\xc7\xd5\x06\x5a\xaa\x4f\x11\xbf\x65\xe7\xa8\xe1\x12\xe9\xe9\xc2\x70\x1d\x0b\x59\x4b\xae\x40\x93\x5b\xe9\x42\x01\x34\x7f\xe4\x69\x7e\x85\x1d\xe9\xe1\x0f\xc7\xba\x8a\x1e\x80\x4b\x17\xfd\xb1\xd7\xd7\xe4\x35\xf9\x1b\x00\x00\xff\xff\xc8\x2d\x1b\x07\xbb\x03\x00\x00" func lockedtokensAdminCheck_main_registrationCdcBytes() ([]byte, error) { return bindataRead( @@ -3690,7 +3690,7 @@ func lockedtokensAdminCheck_main_registrationCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/check_main_registration.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x37, 0x54, 0x6f, 0x94, 0xa, 0xb4, 0xc8, 0xc2, 0x38, 0xf7, 0xd8, 0xda, 0x58, 0x74, 0x2f, 0x71, 0xfb, 0x3b, 0xd9, 0xb1, 0x8a, 0x67, 0x45, 0x6f, 0xb4, 0x53, 0x6e, 0x2e, 0x69, 0x96, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2, 0xc0, 0x78, 0xc8, 0x9a, 0xaf, 0x7c, 0xa6, 0x7f, 0x30, 0x91, 0x5c, 0x56, 0x52, 0x4e, 0x10, 0x2a, 0xd8, 0xac, 0xea, 0xa4, 0xc0, 0x2e, 0x28, 0xf, 0x40, 0xed, 0x8, 0x99, 0x57, 0xdd, 0x40}} return a, nil } @@ -3814,7 +3814,7 @@ func lockedtokensAdminCustody_setup_account_creatorCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xc1\x4e\xdc\x30\x10\x3d\x93\xaf\x98\xcd\x01\xb2\x12\x64\x7b\xa8\x7a\x88\x16\xe8\x76\x17\x7a\x00\x95\x0a\x28\x3d\x3b\xce\x64\xe3\xe2\xb5\x23\xdb\x61\x91\x10\xff\x5e\xd9\x8e\xd3\x78\x59\x41\x73\x89\x32\x1e\xbf\x79\x33\xf3\x5e\xd8\xa6\x95\xca\xc0\x65\x27\xd6\xac\xe4\x78\x2f\x1f\x51\x40\xad\xe4\x06\xd2\x28\x96\x26\x21\x93\xcb\x6d\x94\x15\xbe\xd3\x24\xa4\x5c\x4b\xfa\x88\x95\x0b\x6a\x9f\xf5\xe9\xf9\xfa\x66\x79\x75\xb1\xba\xbf\xb9\xba\xf8\xb1\x58\xad\x6e\x2f\xee\xee\x92\xc4\x28\x22\x34\xa1\x86\x49\x91\x19\x59\xc0\xa2\xaa\x14\x6a\x7d\x0c\x64\x23\x3b\x61\x0a\xf8\x75\xc9\x9e\xbf\x7c\x9e\xc2\x4b\x92\x00\x00\xcc\x66\x70\xdf\x20\x3c\x90\x8e\x1b\x50\xa8\x65\xa7\x28\x82\x69\x88\x81\x46\xf2\x4a\x83\x69\x10\x8c\x2f\xeb\xa2\x44\x21\x94\xc8\xc4\x1a\x5c\xa9\x1a\x95\xc2\xca\x41\x71\x34\xa0\x51\x18\x87\x55\xc0\xd7\x97\xa8\xd9\xdc\x85\x5f\x7d\xd5\x56\x61\x4b\x14\x66\xa4\xda\x30\x51\x00\xe9\x4c\x93\x7d\x93\x4a\xc9\xed\x03\xe1\x1d\x4e\xe1\x70\x41\xa9\xe5\x3b\xf0\xec\xb9\x7e\x47\x03\x04\x14\xd6\xa8\x50\x58\xa2\xd2\x11\x74\x38\x47\x1a\xb4\x91\x0a\x2b\x78\xb2\xa5\x86\x6b\x96\x97\x8b\xdc\x62\x0d\xa7\x3e\x37\xb7\x99\x64\x8d\x79\xe9\xaa\xce\x1d\x83\x98\xef\x6f\x66\x9a\x4a\x91\x2d\x29\xb9\x25\x34\xec\xc4\x37\x72\x96\xd9\x25\x14\x30\xeb\x81\x66\x75\x38\x77\xc7\xd3\xe4\xe0\xe0\xe0\xfc\x1c\x5a\x22\x18\xcd\xd2\xa5\xec\x78\x05\x42\x1a\xf0\xf5\xde\x76\x20\xb7\x02\xd5\x91\xf6\x8b\x98\xa4\xd3\x24\xa2\xef\x38\xef\xa1\x3f\x24\xd9\x27\xf4\x72\x38\xd6\x4a\xee\x5e\x0b\x7b\x69\x29\x39\x47\xa7\x8c\xb3\x2c\xba\x68\x1f\xdf\x4d\x74\x73\xf4\xb1\x73\xff\xce\x57\xff\x49\x4c\x13\x01\x4d\xa3\xaf\x77\xda\xdf\xb3\x42\xee\xaa\x79\xa9\xf9\x26\x81\x0e\x05\xc7\xf3\x20\x5a\xa3\x32\x71\x07\x61\x3e\xf9\x1a\x4d\xaf\x9c\x8c\x78\xe5\x17\x60\xe4\x14\x26\xa7\x20\x18\x3f\x8e\x2e\x6d\x50\x6b\xb2\xc6\x02\x52\xeb\x00\xdd\x22\x65\x35\xc3\x0a\x88\x07\x00\xa6\x1d\x65\x12\xa8\xf5\xf1\x09\x2c\x89\xb0\x07\x1a\x45\x15\xd1\xd6\x69\xf2\x6f\x12\x63\xd5\x06\x29\x05\x23\x39\xff\x7e\xa8\x5b\x8d\xbc\xce\x07\x43\xc1\xfc\x64\x50\x71\xbe\xed\x01\xb3\xe0\x6a\xff\xf6\xf3\xef\x3d\x86\xcf\x48\x3b\x83\x7b\x0c\x64\x2b\x2b\xa4\xac\x65\x28\xcc\x91\x86\xb6\x2b\x39\xa3\x43\xdf\xb2\xfc\x83\x34\xb6\xcf\x90\x0d\xa7\x30\x1a\xb1\x91\xd3\xff\x71\xe7\xb8\xd6\x2d\x52\x64\x4f\xa8\x76\xe1\x5d\xd0\x2b\x7c\x48\x8f\xd5\x4d\x49\x4b\x4a\xc6\x99\x61\xa8\xed\x9e\xe7\x87\x3b\x3f\x98\x00\xfd\xba\x47\xde\x33\xdf\xe3\xcc\xaf\x6b\xf0\xf2\x1b\x36\x6e\x77\x93\x7d\xb6\xca\x3e\xb6\xb4\xc7\x7a\xbf\xff\x5e\x2f\x6e\xa5\x69\x3c\xbd\x15\xb6\x52\x33\xbf\x9e\xb0\x60\x11\x24\xc3\xc4\x1b\x28\xb5\x4b\x7e\x34\xc6\xbc\xf2\x60\xfd\x5f\x6a\x7e\x12\x8b\x29\x08\xe5\x35\xf9\x1b\x00\x00\xff\xff\x86\x35\xe5\xe7\xac\x06\x00\x00" +var _lockedtokensAdminDeposit_locked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x4f\xdc\x30\x10\x3d\x93\x5f\x31\xe4\x00\x89\x04\xd9\x1e\xaa\x1e\x22\x3e\xba\xdd\x85\x1e\x40\xa5\x02\x4a\xcf\x8e\x33\xd9\xb8\x78\xed\xc8\x76\x58\x24\xc4\x7f\xaf\x6c\xc7\x69\xbc\xac\xa0\xb9\x44\x1e\xcf\xc7\x9b\x99\xf7\xcc\xd6\x9d\x54\x06\x2e\x7b\xb1\x62\x15\xc7\x7b\xf9\x88\x02\x1a\x25\xd7\x90\x46\xb6\x34\x09\x9e\x5c\x6e\x22\xaf\x70\x4e\x93\xe0\x72\x2d\xe9\x23\xd6\xce\xa8\xbd\xd7\xa7\xe7\xeb\x9b\xc5\xd5\xc5\xf2\xfe\xe6\xea\xe2\xc7\x7c\xb9\xbc\xbd\xb8\xbb\x4b\x12\xa3\x88\xd0\x84\x1a\x26\x45\x66\x64\x09\xf3\xba\x56\xa8\xf5\x11\x90\xb5\xec\x85\x29\xe1\xd7\x25\x7b\xfe\xf2\x39\x87\x97\x24\x01\x00\x98\xcd\xe0\xbe\x45\x78\x20\x3d\x37\xa0\x50\xcb\x5e\x51\x04\xd3\x12\x03\xad\xe4\xb5\x06\xd3\x22\x18\x5f\xd6\x59\x89\x42\xa8\x90\x89\x15\xb8\x52\x0d\x2a\x85\xb5\x4b\xc5\xd1\x80\x46\x61\x5c\xae\x12\xbe\xbe\x44\xcd\x16\xce\xfc\xea\xab\x76\x0a\x3b\xa2\x30\x23\xf5\x9a\x89\x12\x48\x6f\xda\xec\x9b\x54\x4a\x6e\x1e\x08\xef\x31\x87\x83\x39\xa5\x16\xef\x88\x73\xc0\xfa\x1d\x0d\x10\x50\xd8\xa0\x42\x61\x81\x4a\x07\xd0\xe5\x39\xd4\xa0\x8d\x54\x58\xc3\x93\x2d\x35\x86\x59\x5c\xce\x72\x8b\x0d\x9c\x7a\xdf\xc2\x7a\x92\x15\x16\x95\xab\x7a\xe2\x10\xc4\x78\x7f\x33\xd3\xd6\x8a\x6c\x48\xc5\x2d\xa0\x71\x27\xbe\x91\xb3\xcc\x2e\xa1\x84\xd9\x90\x68\xd6\x84\x7b\x77\x9d\x27\x7b\x7b\x7b\xe7\xe7\xd0\x11\xc1\x68\x96\x2e\x64\xcf\x6b\x10\xd2\x80\xaf\xf7\xb6\x03\xb9\x11\xa8\x0e\xb5\x5f\xc4\x7e\x9a\x27\x11\x7c\x87\x79\x07\xfc\xd1\xc9\x7e\xa1\x97\x83\x29\x57\x0a\xf7\x9b\xdb\xa0\x85\xe4\x1c\x1d\x33\xce\xb2\x28\xd0\x7e\xbe\x9b\x28\x72\x72\xd8\x8a\xbf\xf3\xd5\x7f\x12\xd3\x46\x89\xf2\xe8\xf4\x4e\xfb\x3b\x56\xc8\x5d\x35\x4f\x35\xdf\x24\xd0\xb1\xe0\x74\x1e\x44\x6b\x54\x26\xee\x20\xcc\xa7\x58\xa1\x19\x98\x93\x11\xcf\xfc\x12\x8c\xcc\x61\xff\x14\x04\xe3\x47\x51\xd0\x1a\xb5\x26\x2b\x2c\x21\xb5\x0a\xd0\x1d\x52\xd6\x30\xac\x81\xf8\x04\xc0\xb4\x83\x4c\x02\xb4\xc1\xbe\x0f\x0b\x22\xec\x85\x46\x51\x47\xb0\x75\x9a\xfc\x9b\xc4\x94\xb5\x81\x4a\x41\x48\x4e\xbf\x1f\xf2\x56\x23\x6f\x8a\x51\x50\x70\x72\x3c\xb2\xb8\xd8\x0c\x09\xb3\xa0\x6a\xff\xf7\xf3\x1f\x34\x86\xcf\x48\x7b\x83\x3b\x04\x64\x2b\x2b\xa4\xac\x63\x28\xcc\xa1\x86\xae\xaf\x38\xa3\x63\xdf\xb2\xfa\x83\x34\x96\xcf\xe8\x0d\xa7\x30\x19\xb1\x91\xf9\xff\xa8\x73\x5a\xeb\x16\x29\xb2\x27\x54\xdb\xe9\x9d\xd1\x33\x7c\x74\x8f\xd9\x4d\x49\x47\x2a\xc6\x99\x61\xa8\x47\xaa\x6f\xbd\x31\x21\xfb\xeb\x0e\x86\xcf\x7c\x9b\x33\xbf\xb1\x51\xce\x6f\x00\xf9\xf5\x7d\x24\x5f\x1f\xf4\x7e\xaf\x03\x37\xdc\xfa\xd2\x78\x52\x4b\xec\xa4\x66\x7e\x15\x61\x99\x22\xd0\x83\x89\x37\xa9\xd4\x36\xca\xc9\xc8\x8a\xda\x27\x1b\x5e\xa4\x93\xe3\x98\x38\x81\x14\xaf\xc9\xdf\x00\x00\x00\xff\xff\x7c\xc8\x24\x02\x98\x06\x00\x00" func lockedtokensAdminDeposit_locked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -3830,11 +3830,11 @@ func lockedtokensAdminDeposit_locked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/deposit_locked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xe3, 0xb, 0xc5, 0xa0, 0xac, 0x11, 0x5a, 0x85, 0x2c, 0xbc, 0xb0, 0x3c, 0xa8, 0xaf, 0x26, 0xde, 0xe3, 0xd2, 0x7c, 0x25, 0x54, 0xb0, 0xde, 0xc6, 0x2, 0x45, 0x83, 0xbd, 0xfd, 0x9d, 0x6c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x81, 0x88, 0x9a, 0xe4, 0x6, 0x5d, 0x7e, 0x3, 0x4, 0xee, 0x1c, 0xf5, 0xaf, 0xb1, 0x75, 0x9, 0x91, 0x78, 0x3d, 0xc7, 0x51, 0x59, 0x90, 0x85, 0xdc, 0x56, 0x1b, 0xd7, 0x2a, 0xac, 0xe4}} return a, nil } -var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\x69\x0f\x06\x2e\xf4\x62\x3c\x34\x62\x83\x1a\x3f\x80\x89\x27\xe3\x61\xd9\x1d\xc8\x84\xed\x0c\xd9\x3f\x51\x42\xf8\xee\xa6\x85\x62\x63\xd9\xd3\x6e\xf6\xbd\xf7\x7b\x33\x49\xa2\xb4\x46\xef\x53\x65\x6d\x06\x75\x64\x38\x2a\xe2\x34\x48\x8b\x5c\x9a\x23\xf1\x1e\x4a\x63\x1c\x7a\x9f\xed\x61\x98\xaf\x7b\xf8\x78\xa3\x9f\x87\xfb\x11\x86\x24\x01\x00\xb0\x18\x40\x4b\xd7\x4b\xfd\x4a\x3a\x90\xb0\x72\xfd\x9a\xbc\x80\x61\xfc\x73\x28\xad\x25\x72\x80\x02\x1a\x0c\xe5\xf4\xb8\x22\x67\x67\xe1\xa2\x36\x4b\xf2\x3b\xd6\xe8\x90\x35\x42\x71\xc9\xc8\xb5\xea\x54\x45\x96\x02\xa1\xcf\x1b\x0c\x8f\x77\x37\xf4\xa7\x74\xd7\xc5\xca\x92\xde\x45\xb6\xa2\x5b\xe2\xe6\x59\x99\x99\xeb\xb3\x4d\x5e\x89\x73\xf2\x9d\x4e\xdc\xd3\x39\x1c\xa0\x53\x4c\x3a\xdd\xbe\x48\xb4\x06\x58\xc2\xa9\x2a\x54\xca\x5c\xc0\xfe\xaa\xd7\x36\x9b\x66\xab\xc5\x81\x9a\xe0\x40\xbc\x56\x3c\x6f\xb1\xf7\x30\x2c\xa0\xff\xbb\xfb\x9c\xed\x5f\x50\xac\xd9\x97\xef\xcd\x39\x61\x5e\xa9\xc3\x10\x1d\xdf\x64\x25\xe3\x6f\x00\x00\x00\xff\xff\x3e\x5d\x4f\xeb\xe4\x01\x00\x00" +var _lockedtokensAdminGet_unlocking_bad_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x4f\x83\x40\x10\xc5\xef\x7c\x8a\xb1\x07\x03\x17\x7a\x31\x1e\x88\xd8\xa0\xc6\x0f\x60\xe2\xc9\x78\x58\x76\x87\x66\xc2\x76\x86\xec\x9f\x28\x21\x7c\x77\xd3\x42\xb1\x69\xd9\xd3\x6e\xf6\xbd\xf7\x7b\x33\x49\xa2\xb4\x46\xef\x53\x65\x6d\x06\x4d\x64\x38\x28\xe2\x34\x48\x8b\x5c\x99\x03\x71\x01\x95\x31\x0e\xbd\xcf\x0a\x18\xe6\x6b\x01\x9f\xef\xf4\xfb\xf8\x30\xc2\x90\x24\x00\x00\x16\x03\x68\xe9\x7a\x69\xde\x48\x07\x12\x56\xae\x5f\x93\x97\x30\x8c\xff\x0e\xa5\xb5\x44\x0e\x50\xc2\x1e\x43\x35\x3d\x2e\xc8\xd9\x49\xb8\xa8\xcd\x92\xfc\x81\x0d\x3a\x64\x8d\x50\x9e\x33\x72\xad\x3a\x55\x93\xa5\x40\xe8\xf3\x5a\x9c\x93\x9f\xa7\xfb\x9b\x02\xcf\xe9\xb6\x8b\xb5\x25\xbd\x8d\x6c\x45\xb7\xc4\xfb\x17\x65\x66\xb4\x9f\x80\xc7\xb3\xdb\x41\xa7\x98\x74\xba\x79\x95\x68\x0d\xb0\x84\x63\x47\xa8\x95\x39\x13\xfd\x45\xa1\x4d\x36\x0d\xd5\x88\x03\x35\x21\x81\x78\xad\x71\xde\x62\xef\x61\x58\x40\xd7\x4b\xfb\x9a\xed\xdf\x50\xae\xd9\x97\xef\xbb\x53\xc2\xbc\x4b\x87\x21\x3a\xbe\xc9\x4a\xc6\xbf\x00\x00\x00\xff\xff\x4f\xcb\x8e\xa1\xdd\x01\x00\x00" func lockedtokensAdminGet_unlocking_bad_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3850,7 +3850,7 @@ func lockedtokensAdminGet_unlocking_bad_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/get_unlocking_bad_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x51, 0xe, 0x74, 0xba, 0xa6, 0x38, 0x71, 0xa7, 0xb, 0xbc, 0x3b, 0xed, 0x9a, 0x7, 0xf, 0xee, 0xd, 0x97, 0x9b, 0x80, 0x62, 0xe8, 0x47, 0x4, 0x6d, 0xf3, 0xc5, 0xc3, 0x4c, 0x3d, 0xab}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0xb7, 0x87, 0x31, 0xb3, 0x2d, 0x91, 0xa6, 0xa3, 0x48, 0x62, 0x10, 0x24, 0x2, 0xc7, 0x38, 0xec, 0xbc, 0x61, 0x3c, 0xef, 0xae, 0x58, 0x43, 0x81, 0x83, 0x14, 0xe3, 0xd5, 0x94, 0xf4, 0x46}} return a, nil } @@ -3874,7 +3874,7 @@ func lockedtokensAdminUnlock_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\x70\xf7\x90\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xc5\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\xbb\xba\x24\x96\xc9\xc7\xaf\x47\x3e\xeb\x6a\x6b\x1d\xc3\x9d\xcd\x9f\x48\x3d\xda\x27\x32\x1e\xd6\xce\x56\xf0\xf3\xcb\xdd\xd7\xab\x2f\x37\xd7\x8f\x5f\xbf\xdc\xfc\xbd\xbc\xbe\xbe\xbf\x79\x78\x98\x4c\xe6\x73\x78\x2c\xb4\x07\x76\x68\x3c\xe6\xac\xad\x81\xda\x93\x07\x2e\x08\xca\x00\x02\x1c\x51\x50\x55\xda\x88\x03\x5b\xf0\xc4\xc1\xa2\x36\x62\x03\xa5\xae\x34\xc3\xda\x3a\xa8\xea\x92\xf5\xb6\x24\xc0\x3c\xb7\xb5\x61\x2f\x0e\xda\x00\x82\xd7\x66\x53\x52\x1a\x28\x06\x3f\x98\x02\x2a\xe5\xc8\x4b\xf0\xda\x93\x02\xf4\xf0\x44\xaf\x01\xc0\x17\xb6\x2e\x15\xac\x28\x09\x2a\x16\x7d\xc7\xc9\x24\x81\xcf\xa2\xdd\xad\x59\xdb\x05\xbc\x2d\xa3\xcd\x02\xbe\xff\xae\x5f\x7e\xfd\x65\x3f\x85\xb7\xc9\x04\x00\x60\xeb\x68\x8b\x8e\xb2\x50\xde\x02\xb0\xe6\x22\x7b\x60\xeb\x70\x43\x53\x38\x5b\xc6\x10\x07\x6b\x79\xe6\x73\xf8\xde\xa6\xb0\x1c\xe4\xce\x05\x32\x14\xa8\xc0\xdb\x8a\xc0\xcb\x30\xec\x1a\xc8\x39\xeb\x52\x04\x74\x04\x9e\xad\x23\x25\xed\x61\x99\x81\xd2\x21\x6f\x74\xaf\xe0\xad\x54\xfa\x0a\x39\x1a\xa9\x5a\x1b\xbf\xa5\x9c\x49\x41\x89\x4c\x1d\x9c\xdb\x75\xe8\x49\x3a\x3f\x43\xa4\xbc\x4c\xc9\xd5\xe6\x38\x10\xd6\x15\xf9\xf3\xd4\x95\x0b\x32\xc1\x39\x09\xac\x3d\x18\xcb\x60\x9f\xc9\xed\x9c\x66\x26\x73\xf0\x78\x46\x07\x2b\x54\x4d\xc5\x7e\xa4\xa7\x70\x19\x49\x32\xf3\xb1\x7f\xb3\xd2\xa2\xba\x18\x98\x7d\xca\x84\x90\x0b\x98\x37\x66\xf3\x38\x28\x6d\x36\xbf\x1d\xe1\xa7\x87\xb8\xf2\x7c\xfe\x0c\x6f\x7b\x61\xc4\x00\xec\x38\x96\x92\x38\x86\xbf\xa7\xf5\x20\x93\x95\x75\xce\xee\x2e\xce\xd2\xbd\x98\x85\x3f\x4b\xb1\xbb\xb2\x65\x49\xa1\x09\x6d\x72\x1d\xc3\xe4\x43\xcf\xbc\x61\xca\x37\xe4\x62\x90\xf1\x16\x8d\xce\xb3\x8f\x57\x81\xbb\xd2\xd5\x98\x04\x20\x38\x5a\x93\x23\x93\x93\x4c\x49\x26\x10\x92\x85\xfc\x00\xfb\x71\x7a\xac\x4b\xd6\xaa\xa5\x7c\x53\xbd\x50\xe6\xc8\xee\x99\xac\x49\x4a\xd0\x66\xbe\xcb\xb2\x14\xea\x09\xbe\x5e\x4b\x7b\x7c\x60\xdd\x8a\x72\xac\x3d\xc1\x8e\x40\x59\xf3\x13\x03\xec\xd0\x30\xb0\xed\xfb\x3b\x7a\x26\x17\xf7\x9c\x0c\x6b\xd7\x65\x99\x5e\x83\xec\x3c\xea\xd2\xf7\x1d\xd9\xc2\xa6\x39\x10\xda\xac\xad\xab\x30\x78\x48\x21\x87\x3b\xd0\x2c\x4c\xc7\x35\x66\xd9\x9c\x9d\x86\x08\x52\x60\x1c\xe8\x86\xb8\x79\x97\xf5\xda\xd1\xed\xbc\x3c\xb3\x1c\xb7\xb8\xd2\xa5\x66\x4d\x7e\xb6\x21\x1e\x9b\xfc\x9f\xb6\x54\xe4\x3e\x65\x23\xa3\x4e\x82\x7f\xab\x57\xa5\xce\xc3\x80\x3f\x0c\xe3\xc4\x91\x66\xd3\x7e\xfb\x5b\x42\x76\x6a\x69\xa7\x77\x39\x5a\xa2\xa4\x79\x37\x62\x9e\x4d\x87\xd0\x9d\x4e\x45\x5e\x46\x9f\x7b\xca\xad\x53\x2d\xfd\x1b\xd4\xb6\x6d\xd8\xee\xce\x58\x56\x52\x42\x3f\x8c\x3c\xa3\x2f\x9b\xf8\x41\x19\xfe\x42\x83\x1b\x72\x71\x48\xef\x65\x74\xb2\x51\x09\x75\xfe\xe8\x0a\x0b\x56\xe1\xba\x06\x01\xeb\x9f\x39\x74\x9b\xba\x22\xc3\xc9\xf9\x7a\x17\x59\x6e\x57\x84\x5c\x46\xc4\xcb\x64\x7f\xfe\xe9\xd1\xe9\xdf\x0f\x27\x53\xbc\x35\xb9\x23\xf4\x34\x14\xc0\xd5\x6b\x5c\xe6\x10\xe2\x5d\x88\x5e\xd3\x66\xba\xc1\x8b\x9a\x72\x27\x48\x99\xa2\x92\x71\xd1\x49\x79\x84\x05\x49\x52\x57\xd6\xb0\x36\xf5\xe1\xa0\x18\x7a\x61\xd0\x4c\x2e\xae\x5e\x73\x06\x4a\x6b\xb7\xa7\x50\xda\xd3\xc0\x89\x2a\xfb\x3a\xcf\x89\x94\xc8\xad\x51\xa0\x2c\x45\x85\x10\x91\x39\x05\xc5\x56\x84\xab\x42\xf7\x14\xa5\x7c\x85\xef\x9b\xe7\x4d\xf2\xa3\x06\xfb\xc1\xdb\x7d\x97\x93\xfb\xc1\xe1\x6b\x34\x91\x5e\x28\xaf\x43\xf9\x15\x3e\x91\x97\x73\x55\x90\x23\xc8\x0e\x45\x38\xc2\xbc\x08\xb6\x6d\x0a\x80\x2b\xfb\x4c\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xa2\xce\x85\x36\x1b\xd8\x09\xf5\x76\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xba\xa4\x8b\x7d\x3c\x69\xa5\xe6\xa3\x52\xaf\x08\x3c\x3e\xf7\x3a\x9a\x88\xed\x80\xa2\xa7\x09\x3c\x19\xe9\x4d\x57\x0f\x25\xda\x98\x32\x27\x31\xcf\x81\xed\xff\x8a\x74\x47\x7d\x47\x4c\xae\x70\x7b\xd0\xe2\xce\x4d\x6e\x13\xd1\xde\xd7\x74\x71\x36\x92\xca\x0f\xfe\x3c\x18\xc1\xde\xca\xc9\xf6\x45\x36\x9e\xcf\x39\x20\x2f\x60\x1e\x8c\xf2\x13\xe0\xfb\xc9\x7e\xf2\x5f\x00\x00\x00\xff\xff\x50\x66\x5c\xc1\x4e\x0b\x00\x00" +var _lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x56\x4d\x6f\xe3\x46\x0c\xbd\xfb\x57\xb0\x7b\xd8\xca\x40\x60\xf7\x50\xf4\x60\x24\xbb\x70\x93\xb4\x0d\x36\xed\x2e\x92\xec\xa9\xe8\x81\xd6\xd0\xd6\x20\xd2\x8c\x31\x43\xd9\x09\x02\xff\xf7\x82\x33\x92\x3d\xfa\x88\x5b\x5d\x12\xcb\xe4\xe3\xd7\x23\x9f\x75\xb5\xb5\x8e\xe1\xde\xe6\xcf\xa4\x9e\xec\x33\x19\x0f\x6b\x67\x2b\xf8\xe9\xe5\xfe\xeb\xf5\x97\xdb\x9b\xa7\xaf\x5f\x6e\xff\x5a\xde\xdc\x3c\xdc\x3e\x3e\x4e\x26\xf3\x39\x3c\x15\xda\x03\x3b\x34\x1e\x73\xd6\xd6\x40\xed\xc9\x03\x17\x04\x65\x00\x01\x8e\x28\xa8\x2a\x6d\xc4\x81\x2d\x78\xe2\x60\x51\x1b\xb1\x81\x52\x57\x9a\x61\x6d\x1d\x54\x75\xc9\x7a\x5b\x12\x60\x9e\xdb\xda\xb0\x17\x07\x6d\x00\xc1\x6b\xb3\x29\x29\x0d\x14\x83\x1f\x4d\x01\x95\x72\xe4\x25\x78\xed\x49\x01\x7a\x78\xa6\xd7\x00\xe0\x0b\x5b\x97\x0a\x56\x94\x04\x15\x8b\xbe\xe3\x64\x92\xc0\x67\xd1\xee\xce\xac\xed\x02\xde\x96\xd1\x66\x01\xdf\x7f\xd3\x2f\xbf\xfc\x7c\x98\xc2\xdb\x64\x02\x00\xb0\x75\xb4\x45\x47\x59\x28\x6f\x01\x58\x73\x91\x3d\xb2\x75\xb8\xa1\x29\x7c\x5c\xc6\x10\x47\x6b\x79\xe6\x73\xf8\xde\xa6\xb0\x1c\xe4\xce\x05\x32\x14\xa8\xc0\xdb\x8a\xc0\xcb\x30\xec\x1a\xc8\x39\xeb\x52\x04\x74\x04\x9e\xad\x23\x25\xed\x61\x99\x81\xd2\x21\x6f\x74\xaf\xe0\xad\x54\xfa\x0a\x39\x1a\xa9\x5a\x1b\xbf\xa5\x9c\x49\x41\x89\x4c\x1d\x9c\xbb\x75\xe8\x49\x3a\x3f\x43\xa4\xbc\x4c\xc9\xd5\xe6\x34\x10\xd6\x15\xf9\x8b\xd4\x95\x0b\x32\xc1\x39\x09\xac\x3d\x18\xcb\x60\x77\xe4\xf6\x4e\x33\x93\x39\x7a\xec\xd0\xc1\x0a\x55\x53\xb1\x1f\xe9\x29\x5c\x45\x92\xcc\x7c\xec\xdf\xac\xb4\xa8\x2e\x07\x66\x9f\x32\x21\xe4\x02\xe6\x8d\xd9\x3c\x0e\x4a\x9b\xcd\xaf\x27\xf8\xe9\x31\xae\x3c\x9f\x3f\xc3\xdb\x41\x18\x31\x00\x3b\x8d\xa5\x24\x8e\xe1\x1f\x68\x3d\xc8\x64\x65\x9d\xb3\xfb\xcb\x8f\xe9\x5e\xcc\xc2\x9f\xa5\xd8\x5d\xdb\xb2\xa4\xd0\x84\x36\xb9\x8e\x61\xf2\xa1\x67\xde\x30\xe5\x1b\x72\x31\xc8\x78\x8b\x46\xe7\xd9\x87\xeb\xc0\x5d\xe9\x6a\x4c\x02\x10\x1c\xad\xc9\x91\xc9\x49\xa6\x24\x13\x08\xc9\x42\x7e\x84\xfd\x30\x3d\xd5\x25\x6b\xd5\x52\xbe\xa9\x5e\x28\x73\x62\xf7\x4c\xd6\x24\x25\x68\x33\xdf\x65\x59\x0a\xf5\x04\x5f\xaf\xa5\x3d\x3e\xb0\x6e\x45\x39\xd6\x9e\x60\x4f\xa0\xac\xf9\x91\x01\xf6\x68\x18\xd8\xf6\xfd\x1d\xed\xc8\xc5\x3d\x27\xc3\xda\x75\x59\xa6\xd7\x20\x3b\x8f\xba\xf4\x7d\x47\xb6\xb0\x69\x0e\x84\x36\x6b\xeb\x2a\x0c\x1e\x52\xc8\xf1\x0e\x34\x0b\xd3\x71\x8d\x59\x36\x67\xa7\x21\x82\x14\x18\x07\xba\x21\x6e\xde\x65\xbd\x76\x74\x3b\x2f\xcf\x2c\xc7\x2d\xae\x74\xa9\x59\x93\x3f\x33\xfc\x3f\x6c\xa9\xc8\x7d\xca\x46\xa6\x9d\xc4\xff\x56\xaf\x4a\x9d\x87\x19\xf7\xdb\xdc\x12\xaf\x93\x73\x3b\xa5\xab\xd1\x52\x66\x1b\xe2\xfb\x11\xf3\x6c\x3a\x84\xee\x74\x24\xf2\x2f\xfa\x3c\x50\x6e\x9d\x6a\x69\xde\xa0\xb6\xed\xc1\x76\x47\xc6\xb2\x92\x12\xfa\x61\xe4\x19\x7d\xd9\xc4\x0f\x0a\xf0\x27\x1a\xdc\x90\x8b\xc3\x78\x2f\xa3\xa6\xd7\xd9\x68\xa3\x12\x8a\xfc\xde\x15\x10\xac\xc2\x15\x0d\x42\xd5\x3f\x67\xe8\x36\x75\x45\x86\x93\x33\xf5\x2e\xb2\xdc\xa8\x08\xb9\x8c\x88\x57\xc9\x9e\xfc\xdd\xa3\xcd\x3f\x3f\x9c\x4d\xf1\xce\xe4\x8e\xd0\xd3\x50\xe8\x56\xaf\x71\x69\x43\x88\x77\x21\x7a\x4d\x9b\xe9\x06\x2f\x6a\xc7\xbd\x20\x65\x8a\x4a\xc6\x45\x27\xe5\x11\x16\x24\x49\x5d\x5b\xc3\xda\xd4\xc7\xc3\x61\xe8\x85\x41\x33\xb9\xb8\x62\xcd\xba\x97\xd6\x6e\xcf\xa1\xb4\x27\x80\x13\xf5\xf5\x75\x9e\x13\x29\x91\x55\xa3\x40\x59\x8a\x4a\x20\x62\x72\x0e\x8a\xad\x08\x54\x85\xee\x39\x4a\xf6\x0a\xdf\x37\xcf\x9b\xe4\x47\x0d\x0e\x83\xb7\x87\x2e\x27\x0f\x83\x03\xd7\x68\x1f\xbd\x50\x5e\x87\xf2\x2b\x7c\x26\x2f\x67\xa9\x20\x47\x90\x1d\x8b\x70\x84\x79\x11\x6c\xdb\x14\x00\x57\x76\x47\xd3\x3e\xa2\x66\xa8\x08\x8d\x0f\xe2\xcd\x85\x36\x1b\xd8\x0b\xf5\xf6\xce\xca\xbf\x9a\x8b\x84\x0d\xf2\xad\xdc\xb4\xa4\x8b\x7d\x3c\x69\xa5\xe6\x93\x22\xaf\x08\x3c\xee\x7a\x1d\x4d\x44\x75\x40\xd1\xf3\x04\x9e\x8c\xf4\xa6\xab\x7b\x12\x6d\x4c\x81\x93\x98\x17\xc0\xf6\x3f\xc5\xb8\xa3\xb2\x23\x26\xd7\xb8\x3d\x6a\x6e\xe7\xf6\xb6\x89\x68\xef\x6b\xba\xfc\x38\x92\xca\xff\xfc\x19\x30\x82\xbd\x95\xbb\xec\x8b\x6c\x3c\x9f\x0b\x40\x5e\xc0\x3c\x18\xe5\x67\xc0\x0f\x93\xc3\xe4\xdf\x00\x00\x00\xff\xff\x01\x17\x79\x30\x36\x0b\x00\x00" func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -3890,7 +3890,7 @@ func lockedtokensAdminUnlock_tokens_for_multiple_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0xc3, 0x63, 0x8c, 0x56, 0x85, 0xd5, 0xc1, 0xb1, 0xfd, 0xcc, 0x48, 0x9b, 0x87, 0xa8, 0xec, 0xd6, 0x3, 0x67, 0x95, 0xfa, 0x92, 0x36, 0xbc, 0x80, 0xd3, 0x3f, 0x1f, 0x54, 0x94, 0xea, 0x4d}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0x91, 0xfe, 0x26, 0x3a, 0x56, 0xeb, 0x34, 0x12, 0xa2, 0x70, 0xa0, 0x43, 0x12, 0x68, 0xb5, 0x4d, 0xa7, 0xf5, 0xc1, 0x31, 0x5a, 0xf0, 0xa7, 0x29, 0xf0, 0xe5, 0xaa, 0x3a, 0x6e, 0xff, 0x1b}} return a, nil } @@ -3954,7 +3954,7 @@ func lockedtokensDelegatorDelegate_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\x4d\x0e\x1f\xd2\x25\x7c\xb4\xb7\xd0\x36\x98\xd8\x50\x13\xd3\x84\x24\x7d\x00\x59\x5e\xbb\x22\xb2\xd6\x48\x6b\x5a\x28\x7d\xf7\x62\xbb\x4d\xfa\x6f\x2f\x02\x31\xb3\xbf\xd9\xb1\x6d\x47\x81\xa1\x20\x73\xc2\xea\x48\x27\xf4\x11\xea\x40\x2d\xfc\x7f\x29\xb6\xeb\x4d\x96\x1e\xb7\x9b\xec\x21\x49\xd3\x7d\x76\x38\x08\xa1\x8d\xc1\x18\xa5\x76\x4e\x41\xdd\x7b\x68\xb5\xf5\x52\x1b\x43\xbd\xe7\x25\x24\x55\x15\x30\x46\xb5\x84\xc7\xdc\xf3\xf5\x15\xbc\x0a\x01\x00\xe0\x90\xc1\x8d\x84\x64\x92\xe6\xbe\xa6\x3d\xd6\x70\x0b\x0d\xf2\xc7\xdf\xe7\x1a\x35\x5a\x86\x59\x18\xdd\xe9\xd2\x3a\xcb\x16\xe3\xa2\x41\xbe\xf9\xf7\x35\xe7\x62\x7c\xee\xc9\x55\x18\xee\xe4\xd9\x35\xcc\x37\x59\xf1\x93\xbc\xeb\x4b\x67\xcd\x4e\xf3\xd3\xd9\xa4\x66\x17\x6a\x49\x21\xd0\xb3\xbc\xe4\x58\xad\xa0\xd3\xde\x1a\x39\x5f\x53\xef\x2a\xf0\xc4\x30\x89\x40\x43\xc0\x1a\x03\x7a\x83\xc0\x04\xdd\xb8\x19\x7e\x11\xe7\x6a\x2a\x22\x20\xf7\xc1\xff\xd9\xc5\x70\x5f\x8a\x0e\x1b\xcd\x14\xf2\x54\xaa\x99\x78\x13\xef\x01\x00\x00\xff\xff\x4a\x09\xbd\x3d\x9e\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xf9\x72\xf8\xb0\x2f\xa6\xb4\xb7\xd0\x36\x84\x38\xd0\x10\xd3\x84\x24\x7d\x00\x59\x5e\xbb\x22\xb2\xd6\x48\x6b\x5a\x28\x7d\xf7\x12\xbb\x4d\xff\xce\x45\x20\x66\xe6\xb7\x63\xdb\x8e\x83\xa0\x60\x73\xa4\xea\xc0\x47\xf2\x11\x75\xe0\x16\x17\xcf\xc5\x66\xb1\x5e\xe6\x87\xcd\x7a\x79\x3f\xcf\xf3\xdd\x72\xbf\x57\x4a\x1b\x43\x31\x26\xda\xb9\x14\x75\xef\xd1\x6a\xeb\x13\x6d\x0c\xf7\x5e\xa6\x98\x57\x55\xa0\x18\xd3\x29\x1e\x56\x5e\xae\x2e\xf1\xa2\x14\x00\x38\x12\xb8\x81\x30\x1f\xad\x2b\x5f\xf3\x8e\x6a\xdc\xa0\x21\x79\xff\xfb\xa8\x49\x87\xc8\x49\x99\xd1\x9d\x2e\xad\xb3\x62\x29\x66\x25\x87\xc0\x4f\xd7\xff\xbf\x9e\x9a\x0d\xcf\x1d\xbb\x8a\xc2\x6d\x72\x0e\x9e\xf4\xcd\x56\xfc\x84\x6f\xfb\xd2\x59\xb3\xd5\xf2\x78\x0e\x7d\x72\x67\x33\x74\xda\x5b\x93\x4c\x16\xdc\xbb\x0a\x9e\x05\x23\x1d\x1a\x81\x6a\x0a\xe4\x0d\x41\x18\xdd\x50\x83\x5f\xf5\x93\x74\x1c\x1e\x48\xfa\xe0\xff\xdc\x9e\x35\x24\x39\x39\x6a\xb4\x70\x58\xe5\x49\xfa\x4f\xbd\xaa\xb7\x00\x00\x00\xff\xff\x25\x15\x38\xf9\x8e\x01\x00\x00" func lockedtokensDelegatorGet_delegator_idCdcBytes() ([]byte, error) { return bindataRead( @@ -3970,11 +3970,11 @@ func lockedtokensDelegatorGet_delegator_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0x9, 0x93, 0xd2, 0xbb, 0xf1, 0xb5, 0xe3, 0x96, 0xa9, 0xa5, 0x95, 0x21, 0xa2, 0xb7, 0xba, 0x8b, 0x2a, 0x9a, 0x7f, 0x8b, 0x76, 0xae, 0x46, 0xe6, 0x2d, 0xcd, 0xc9, 0x6, 0x70, 0xd, 0x5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0x5a, 0x4d, 0xf6, 0x36, 0xfc, 0x9, 0xdc, 0x2b, 0x31, 0xb, 0x69, 0xb7, 0x23, 0x56, 0x1d, 0xe5, 0x81, 0xb7, 0x7e, 0xc4, 0x61, 0xcd, 0x39, 0x6a, 0x94, 0x30, 0x25, 0x80, 0x62, 0xd3, 0xd0}} return a, nil } -var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x10\xbd\xfb\x57\x0c\x7b\x40\x89\xb4\x0a\x3d\xa3\xa6\x12\xda\x50\x15\x2d\x62\x57\xc0\x6d\xb5\x07\x27\x9e\x04\x17\x63\x47\xb6\x23\x5a\x21\xfe\x7b\x95\x0f\x42\x4c\x82\x44\x37\x97\x88\xf1\x7b\x33\xcf\xf3\x1e\xe1\x87\x5c\x69\x0b\x3f\x85\x3a\x2e\xa2\x2d\x8d\x05\x6e\x2c\xdd\x73\x99\x41\xaa\xd5\x01\x9e\xfa\x07\x4f\xa4\xe1\x2c\x55\xb2\x47\xb6\x55\x7b\x94\xa6\x46\x7f\xfb\xb3\x7c\x7b\x79\x9d\x47\xdb\xb7\xd7\xf9\x6a\x16\x45\xeb\xf9\x66\x43\xc8\x64\x02\x6b\xb4\x85\x96\x06\xa8\x04\xaa\x35\xfd\x0b\x2a\x85\x08\x05\x66\xd4\x2a\xbd\x90\xa9\x02\x15\xff\xc6\xc4\x1a\xb0\x3b\x6a\xc1\xee\x10\x68\x92\xa8\x42\x5a\x48\x94\xb4\x5a\x09\x53\xb6\xe1\x12\xb8\x35\x20\x95\x3e\x50\xd1\x22\xa8\x64\x60\x76\x54\x23\xbb\x94\x08\xa1\x49\x82\xc6\x78\x54\x08\x1f\xd2\x42\xc2\x81\x72\xe9\x35\xa7\x53\x98\x31\xa6\xd1\x18\x7f\x0a\x1f\xfd\xfb\x05\x8e\xb0\x4f\x38\x11\x02\x00\x20\xd0\x02\xeb\x9e\xcc\xca\x8b\x3c\xd4\x21\x84\x8f\xcf\x6b\x93\xbc\x88\x67\x8d\xf2\x10\x32\xb4\xcd\x8f\x8b\x3a\x7f\x60\xdc\x0b\xcd\x21\xec\x10\x2b\x44\xf9\x04\x09\xcd\x69\xcc\x05\xb7\x1c\x4d\x90\xa1\xfd\x3e\x3e\x0d\xe8\x59\x29\x86\xad\xa6\xf7\x22\x16\x3c\x39\xff\xf0\xda\x2e\xe5\x33\xc9\xab\xf2\x24\x15\xea\xd8\xd0\x5a\x46\x0b\xf4\x47\xb5\x38\x9e\xba\xfa\xd6\x98\x42\xe8\xc8\x0d\x62\xa5\xb5\x3a\x7a\x3e\x9c\x5a\x76\x49\xe1\xa5\xd7\xe1\x40\xdc\xdc\x9d\xb9\xda\xa4\x62\xb8\x88\xa6\xce\xbc\xa0\x2e\x3e\x3b\xc0\xab\x3f\xb7\x68\xce\xae\x97\x20\x7d\xf8\xc5\xce\x80\xe6\x39\x4a\xe6\x95\x32\x6b\xdc\xf9\x6a\x87\xa8\xf2\xde\x58\x50\x52\xfe\xc7\x96\xee\x9f\x25\xa8\x5e\xbf\x94\x60\xa8\x6f\x6c\x70\x60\xcb\xdb\x81\xb5\x75\xef\xd4\xee\xee\x59\xd2\xd3\x58\x5b\x33\x24\xfd\x9e\x45\xf5\x62\x87\x48\xe5\x22\x33\xb4\xad\x53\xab\x0a\xe9\xf9\x0e\xbd\xe3\xc1\x23\x3d\x2a\x7e\xdb\x80\xa7\x97\xf1\xa3\x10\x24\x17\x30\x1e\x3b\x0d\x9b\xea\xc9\xd9\xd9\x97\x73\xd5\xcd\x56\xfd\x1e\x3d\xf7\x00\xc3\x99\x5a\x44\x23\x07\xe9\xdf\xc9\xe1\xfd\x60\xd5\xe1\xea\x44\x4c\x57\xdf\xc8\x01\x2e\x39\x93\x7f\x01\x00\x00\xff\xff\x26\x75\x5f\x79\xa6\x05\x00\x00" +var _lockedtokensDelegatorGet_delegator_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x8f\xda\x30\x14\xbc\xe7\x57\x3c\xf6\x80\x12\x69\x15\x7a\x46\x4d\x25\xd4\x50\x15\xed\x8a\x5d\x01\xb7\xd5\x1e\x9c\xf8\x05\x5c\x8c\x5f\x64\x3b\xa2\x15\xe2\xbf\x57\xf9\x20\xc4\x9b\x50\xd1\xcd\x25\xc2\x9e\x19\x8f\xdf\x4c\x10\x87\x9c\xb4\x85\x1f\x92\x8e\x8b\x78\xc3\x12\x89\x6b\xcb\xf6\x42\x6d\x21\xd3\x74\x80\x87\xfe\xc6\x83\xd7\x70\x9e\x29\xdd\x23\xdf\xd0\x1e\x95\xa9\xd1\x5f\x7e\x3f\xbf\x7c\x7f\x9a\xc7\x9b\x97\xa7\xf9\x72\x16\xc7\xab\xf9\x7a\xed\x79\x93\x09\xac\xd0\x16\x5a\x19\x60\x0a\x98\xd6\xec\x0f\x50\x06\x31\x4a\xdc\x32\x4b\x7a\xa1\x32\x02\x4a\x7e\x61\x6a\x0d\xd8\x1d\xb3\x60\x77\x08\x2c\x4d\xa9\x50\x16\x52\x52\x56\x93\x34\xa5\x8c\x50\x20\xac\x01\x45\xfa\xc0\x64\x8b\x60\x8a\x83\xd9\x31\x8d\xfc\xb2\xe4\x79\x2c\x4d\xd1\x18\x9f\x49\x19\x40\x56\x28\x38\x30\xa1\xfc\x66\x77\x0a\x33\xce\x35\x1a\x13\x4c\xe1\xad\x7f\xbf\xd0\x31\xf6\x0e\x27\xcf\x03\x00\x90\x68\x81\x77\x77\x66\xe5\x45\xee\x52\x88\xe0\xed\xfd\x2a\x92\x17\xc9\xac\x71\x1e\xc1\x16\x6d\xf3\xe3\xe2\x2e\xb8\x22\x29\xb7\x82\x14\x93\xad\xdc\x0a\x33\x88\x3a\x02\x15\xb2\x7c\xc2\x94\xe5\x2c\x11\x52\x58\x81\x26\x4c\x48\x6b\x3a\x7e\x1d\x9f\x06\xac\x2d\x89\x63\xab\xf7\x5a\x24\x52\xa4\xe7\x6f\x7e\x2b\x54\x3e\x93\xbc\x5a\x9e\x64\x92\x8e\x0d\xad\x65\xb4\xc0\xc6\xa6\xc8\xdc\xc1\xd4\x0e\x07\x8d\x9f\x5a\x6e\xc9\x10\x65\xe8\xd1\x40\xef\xdc\xe1\xb9\xce\x14\x71\x5c\xc4\x53\xe7\xb8\xb0\x5e\x7c\x74\x80\xd7\xa0\x3e\xa2\x05\xef\x5c\xa1\x0f\xbf\xe4\x1a\xb2\x3c\x47\xc5\xfd\xd2\x66\x8d\x3b\xf7\x73\xa9\x3f\x80\x26\x8b\x92\xfa\x9f\xf9\x74\x3f\xa0\xb0\x7a\xfd\x24\xc9\x51\x7f\xc8\xc3\x81\xf5\xce\xac\x33\x7c\x65\x76\x77\x23\x1b\x39\xec\xf2\x9f\x97\x70\xb3\xaa\x27\x0c\xd1\xa0\x54\xb8\x45\xdb\x46\xb6\xac\x90\x7e\xe0\xd0\x3b\x61\xdc\xa3\x51\xf1\x5b\x01\x91\x5d\x8e\x1f\x45\xa0\x84\x84\xf1\xd8\x11\x6c\x56\x4f\xce\xc4\x3e\x5d\xb0\x6e\xc9\xea\xf7\xe8\xb1\x07\x18\x2e\xd7\x22\x1e\x39\xc8\xe0\x46\x21\x6f\x37\xac\x6e\x59\xa7\x6b\xba\xfa\xd7\x1c\xe0\x7a\x67\xef\x6f\x00\x00\x00\xff\xff\x46\x00\x85\xd2\xb8\x05\x00\x00" func lockedtokensDelegatorGet_delegator_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -3990,11 +3990,11 @@ func lockedtokensDelegatorGet_delegator_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x50, 0x96, 0xec, 0xed, 0xa4, 0x44, 0x87, 0xe1, 0x5c, 0xfc, 0xc2, 0xfa, 0x38, 0xf, 0x8b, 0x4, 0xd5, 0x1a, 0xc3, 0x5d, 0x54, 0xe2, 0x59, 0x3f, 0xc7, 0x6f, 0xc1, 0xfc, 0xf5, 0xdd, 0xe5}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x68, 0xfa, 0x45, 0x3, 0xde, 0xf8, 0x83, 0x56, 0x56, 0x95, 0xb2, 0xb8, 0x4f, 0x46, 0x9a, 0x39, 0x7e, 0x9a, 0x44, 0x23, 0x6a, 0x1c, 0x59, 0x48, 0x8, 0xe9, 0x9a, 0xeb, 0xf1, 0xa8, 0x3a, 0xf6}} return a, nil } -var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xdf\x6a\x32\x31\x10\xc5\xef\xf3\x14\xa3\x17\x1f\xc9\x8d\x7c\xd7\xd2\x56\xc4\x15\x2a\x8a\x8a\xfa\x02\x31\x99\xdd\x06\xb3\x99\x65\x32\x4b\x0b\xa5\xef\x5e\x76\xb7\xd5\xfe\x9b\x9b\x40\x38\x67\x7e\x67\x4e\xa8\x1b\x62\x81\x0d\xb9\x0b\xfa\x13\x5d\x30\x65\x28\x99\x6a\xf8\xff\xb2\xd9\x2d\xd6\xcb\xe2\xb4\x5b\x2f\xb7\xf3\xa2\x38\x2c\x8f\x47\xa5\xac\x73\x98\xb3\xb6\x31\x1a\x28\xdb\x04\xb5\x0d\x49\x5b\xe7\xa8\x4d\x32\x85\xb9\xf7\x8c\x39\x9b\x29\x1c\x85\x43\xaa\xe0\x55\x29\x00\x80\x88\x02\xb1\x27\xcc\x07\xe9\x2a\x95\x74\xc0\x12\xee\xa1\x42\xf9\xf8\xfb\x5c\x63\x7a\x4b\x37\x13\x67\x1b\x7b\x0e\x31\x48\xc0\x3c\xa9\x50\xee\xfe\x7d\xcd\x39\xe9\x9f\x47\x8a\x1e\xf9\x41\x5f\x5d\xdd\x7c\x93\x6d\x7e\x92\xf7\xed\x39\x06\xb7\xb7\xf2\x74\x35\x99\xd1\x8d\x7a\x26\x66\x7a\xd6\xb7\x1c\xb3\x19\x34\x36\x05\xa7\xc7\x0b\x6a\xa3\x87\x44\x02\x83\x08\x2c\x30\x96\xc8\x98\x1c\x82\x10\x34\xfd\x66\xf8\x45\x1c\x9b\xa1\x08\x46\x69\x39\xfd\xd9\x45\x77\x5f\x81\x11\x2b\x2b\xc4\x5b\xf2\xb8\x2a\xb4\x19\xa9\x37\xf5\x1e\x00\x00\xff\xff\xa6\x2a\x70\xd1\xa2\x01\x00\x00" +var _lockedtokensDelegatorGet_delegator_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcf\x6a\xf3\x30\x10\xc4\xef\x7a\x8a\xfd\x72\xf8\xb0\x2f\xa6\xe7\xd0\x36\x98\xd8\xd0\x10\x93\x84\x38\x2f\x20\x4b\x6b\x57\x44\xd6\x9a\xd5\x9a\x16\x4a\xdf\xbd\xc4\x6e\xd3\xbf\x73\x11\x88\x99\xf9\xed\xb8\x7e\x20\x16\xa8\xc8\x9c\xd1\x9e\xe8\x8c\x21\x42\xcb\xd4\xc3\xcd\x73\xb5\x5f\x6f\xcb\xe2\xb4\xdf\x96\xbb\xbc\x28\x8e\x65\x5d\x2b\xa5\x8d\xc1\x18\x13\xed\x7d\x0a\xed\x18\xa0\xd7\x2e\x24\xda\x18\x1a\x83\x2c\x21\xb7\x96\x31\xc6\x74\x09\xb5\xb0\x0b\x1d\xbc\x28\x05\x00\xe0\x51\xc0\x4f\x84\x7c\xb6\x6e\x42\x4b\x47\x6c\xe1\x0e\x3a\x94\xf7\xbf\x8f\x9a\x74\x8a\x5c\x94\x19\x3d\xe8\xc6\x79\x27\x0e\x63\xd6\x10\x33\x3d\xdd\xfe\xff\x7a\x6a\x36\x3d\x0f\xe4\x2d\xf2\x7d\x72\x0d\x5e\xf4\xcd\x56\xfd\x84\x1f\xc6\xc6\x3b\x73\xd0\xf2\x78\x0d\x7d\x72\x57\x2b\x18\x74\x70\x26\x59\xac\x69\xf4\x16\x02\x09\xcc\x74\xd0\xc0\xd8\x22\x63\x30\x08\x42\x30\x4c\x35\xf0\xab\x7e\x91\xce\xc3\x19\x65\xe4\xf0\xe7\xf6\xac\x43\x29\xd0\x63\xa7\x85\x78\x47\x16\x37\x45\x92\xfe\x53\xaf\xea\x2d\x00\x00\xff\xff\x48\x1a\x69\xcc\x92\x01\x00\x00" func lockedtokensDelegatorGet_delegator_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4010,7 +4010,7 @@ func lockedtokensDelegatorGet_delegator_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/delegator/get_delegator_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0x58, 0x4e, 0x3f, 0x69, 0xdd, 0x3, 0x9a, 0xac, 0x6a, 0xd3, 0x8e, 0x57, 0x8f, 0x94, 0x62, 0xdf, 0xa7, 0x1f, 0xb6, 0xd4, 0x9b, 0x2a, 0x63, 0x25, 0x50, 0xd5, 0x15, 0xe7, 0x9e, 0x37, 0x4c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xf2, 0x8d, 0xfd, 0xd3, 0x74, 0x8f, 0xcb, 0x79, 0x88, 0x24, 0x6, 0x60, 0x63, 0x2f, 0xa7, 0x9f, 0x1b, 0x6f, 0x9f, 0xa9, 0xce, 0xcc, 0x82, 0x81, 0x51, 0xb9, 0x51, 0x38, 0x32, 0xe7, 0x8}} return a, nil } @@ -4114,7 +4114,7 @@ func lockedtokensDelegatorWithdraw_unstaked_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6a\x32\x31\x14\xc5\xf7\x79\x8a\xa3\x8b\x8f\x64\x23\xdf\x5a\xda\x8a\x38\x42\x45\x51\x51\x5f\x20\x26\x77\xa6\xc1\x4c\xee\x90\x64\x68\xa1\xf4\xdd\xcb\xcc\xb4\xda\x7f\x77\x13\x08\xe7\xdc\xdf\xb9\xc7\xd5\x0d\xc7\x8c\x0d\x9b\x0b\xd9\x13\x5f\x28\x24\x94\x91\x6b\xfc\x7f\xd9\xec\x16\xeb\x65\x71\xda\xad\x97\xdb\x79\x51\x1c\x96\xc7\xa3\x10\xda\x18\x4a\x49\x6a\xef\x15\xca\x36\xa0\xd6\x2e\x48\x6d\x0c\xb7\x21\x4f\x31\xb7\x36\x52\x4a\x6a\x8a\x63\x8e\x2e\x54\x78\x15\x02\x00\x3c\x65\xf8\x9e\x30\x1f\xa4\xab\x50\xf2\x81\x4a\xdc\xa3\xa2\xfc\xf1\xf7\xb9\x46\xf5\x96\x6e\x26\x46\x37\xfa\xec\xbc\xcb\x8e\xd2\xa4\xa2\x7c\xf7\xef\x6b\xce\x49\xff\x3c\xb2\xb7\x14\x1f\xe4\xd5\xd5\xcd\x37\xd9\xe6\x27\x79\xdf\x9e\xbd\x33\x7b\x9d\x9f\xae\x26\x35\xba\x51\xcf\x1c\x23\x3f\xcb\x5b\x8e\xd9\x0c\x8d\x0e\xce\xc8\xf1\x82\x5b\x6f\x11\x38\x63\x10\x41\x23\x52\x49\x91\x82\x21\x64\x46\xd3\x6f\xc6\x2f\xe2\x58\x0d\x45\x44\xca\x6d\x0c\x7f\x76\xd1\xdd\xb7\x65\x4b\xab\x42\xaa\x91\x78\x13\xef\x01\x00\x00\xff\xff\x7f\x01\x3c\x6e\x99\x01\x00\x00" +var _lockedtokensStakerGet_node_idCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\xcd\x6a\xeb\x30\x14\x84\xf7\x7a\x8a\xb9\x59\x5c\xec\x8d\xe9\x3a\xb4\x0d\x26\x36\x34\xc4\x24\x21\xce\x0b\xc8\xd2\xb1\x2b\x22\xeb\x18\x49\xa6\x85\xd2\x77\x2f\xb1\xdb\xf4\x77\x36\x02\x31\x33\xdf\x19\xd3\x0f\xec\x23\x2a\x56\x67\xd2\x27\x3e\x93\x0b\x68\x3d\xf7\xb8\x79\xae\xf6\xeb\x6d\x59\x9c\xf6\xdb\x72\x97\x17\xc5\xb1\xac\x6b\x21\xa4\x52\x14\x42\x22\xad\x4d\xd1\x8e\x0e\xbd\x34\x2e\x91\x4a\xf1\xe8\xe2\x12\xb9\xd6\x9e\x42\x48\x97\xa8\xa3\x37\xae\xc3\x8b\x10\x00\x60\x29\xc2\x4e\x84\x7c\xb6\x6e\x5c\xcb\x47\x6a\x71\x87\x8e\xe2\xfb\xdf\x47\x4d\x3a\x45\x2e\xca\x94\x1c\x64\x63\xac\x89\x86\x42\xd6\xb0\xf7\xfc\x74\xfb\xff\xeb\xa9\xd9\xf4\x3c\xb0\xd5\xe4\xef\x93\x6b\xf0\xa2\x6f\xb6\xea\x27\xfc\x30\x36\xd6\xa8\x83\x8c\x8f\xd7\xd0\x27\x77\xb5\xc2\x20\x9d\x51\xc9\x62\xcd\xa3\xd5\x70\x1c\x31\xd3\x21\xe1\xa9\x25\x4f\x4e\x11\x22\x63\x98\x6a\xf0\xab\x7e\x91\xce\xc3\x3d\xc5\xd1\xbb\x3f\xb7\x67\x1d\xc5\x1d\x6b\xda\x14\x49\xfa\x4f\xbc\x8a\xb7\x00\x00\x00\xff\xff\x3c\x30\xd3\x8b\x89\x01\x00\x00" func lockedtokensStakerGet_node_idCdcBytes() ([]byte, error) { return bindataRead( @@ -4130,11 +4130,11 @@ func lockedtokensStakerGet_node_idCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_node_id.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x97, 0xb1, 0x3d, 0x93, 0xa6, 0x1b, 0x6c, 0x64, 0xb4, 0x3d, 0xa3, 0xb7, 0xa3, 0x96, 0x73, 0xfe, 0x8f, 0xb6, 0xc3, 0x6c, 0x61, 0x71, 0x55, 0xa7, 0x77, 0x7c, 0x7a, 0xd0, 0xef, 0x9c, 0xab, 0x6f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc, 0x8d, 0x95, 0xc6, 0xec, 0x4e, 0xe4, 0xfe, 0xc9, 0x39, 0xfd, 0x1e, 0x88, 0x58, 0x1a, 0xf9, 0x41, 0x9e, 0xb9, 0x50, 0xd9, 0x4c, 0x4d, 0x57, 0x2f, 0x6, 0xb5, 0x4, 0xec, 0x49, 0xaa, 0x8b}} return a, nil } -var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x5f\x6f\xda\x30\x14\xc5\xdf\xfd\x29\xee\xfa\x30\x25\x2f\xe9\x9e\xd1\x32\x09\x35\x4c\x43\x45\x6d\x05\xbc\x55\x7d\xb8\xb1\x6f\xc0\xc3\xd8\x91\xed\xa8\x9b\x10\xdf\x7d\x72\x12\x52\xcc\x1f\xb1\xcd\x2f\x08\xfb\xfe\x8e\x0f\xe7\x58\xc8\x6d\x6d\xac\x87\xef\xca\xbc\x4f\x8b\x25\x96\x8a\x16\x1e\x37\x52\xaf\xa0\xb2\x66\x0b\x77\xe7\x07\x77\xac\x67\x66\x86\x6f\x48\x2c\xcd\x86\xb4\xeb\xa6\xbf\xfc\x9a\x3d\x3f\x3c\x4e\x8a\xe5\xf3\xe3\xe4\x69\x5c\x14\xf3\xc9\x62\xc1\xd8\xfd\x3d\xcc\xc9\x37\x56\x3b\x40\x0d\x68\x2d\xfe\x06\x53\xc1\x93\x11\x34\xd5\x95\x01\x53\xfe\x24\xee\x1d\xf8\x35\x7a\xf0\x6b\x02\xe4\xdc\x34\xda\x03\x37\xda\x5b\xa3\x5c\x50\x90\x1a\xa4\x77\xa0\x8d\xdd\xa2\x1a\x26\x50\x0b\x70\x6b\xb4\x24\x0e\x5b\x8c\x21\xe7\xe4\x5c\x82\x4a\xa5\x50\x35\x1a\xb6\x28\x75\xd2\x9f\x8e\x60\x2c\x84\x25\xe7\xd2\x11\xbc\x9e\xff\xb4\xec\xe0\xe9\x0d\x76\x8c\x01\x00\x28\xf2\xa0\xfb\xcd\x71\x70\x7e\x8b\xcb\xe1\xf5\xed\x03\xad\x9b\x72\xdc\x5b\xcd\x61\x45\xbe\xff\x72\xb0\x93\xc6\x97\x04\x35\xb2\x0f\x58\x43\x7e\x44\xb6\x23\x61\x65\x1c\x6b\x2c\xa5\x92\x5e\x92\xcb\x56\xe4\xbf\x7e\xde\x5d\xf1\xd2\x29\xbd\x34\xa5\x92\x7c\xff\x2d\x19\x24\xc2\xfa\x0b\xe4\x05\xfd\x7a\x60\xd2\x4f\x9d\x4b\x59\x9d\x18\x9d\x53\x05\x79\x6c\x3c\x2b\x8d\xb5\xe6\x3d\x49\x61\x37\xf0\x01\x92\xa1\xe7\xfc\xda\xd5\x21\xb9\xa4\x4d\xb9\x18\xc5\xfa\x99\x14\xe9\x20\x14\xf5\x90\x61\x5d\x93\x16\x49\x50\xee\x46\xf6\x1f\x61\xaa\xf6\x65\xf6\xf9\x05\xe4\x5f\x32\x3d\x7e\xd6\x59\xfb\xf1\xc3\x28\x41\xf6\x24\xc6\x68\x6c\x76\x7a\xe1\xed\x1c\xcf\x3c\x76\x71\x5e\xb2\x7e\x29\xd5\xa3\x36\xa6\xc5\x25\x2e\xa4\xb7\x22\xdf\xe6\x5b\x44\xe8\x7f\x96\x32\x2d\xd2\x48\xe2\x46\x1d\x5d\x25\x47\xc5\xd8\xf6\x3f\x20\xc6\xd8\x9e\xfd\x09\x00\x00\xff\xff\x4c\x99\xe5\xa6\x81\x04\x00\x00" +var _lockedtokensStakerGet_staker_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\xc1\x8e\xda\x30\x14\xbc\xe7\x2b\x9e\xf6\x50\x25\x97\x6c\xcf\xa8\xa9\x84\x1a\xaa\xa2\x5d\xed\xae\x80\xdb\x6a\x0f\x2f\xf6\x0b\xb8\x18\xbf\xc8\x76\xb4\xad\x10\xff\x5e\x39\x09\x21\x29\x50\xda\xfa\x82\xb0\x67\xc6\xf3\x66\xac\xa8\x5d\xc5\xd6\xc3\x57\xcd\xef\xf3\x7c\x85\x85\xa6\xa5\xc7\xad\x32\x6b\x28\x2d\xef\xe0\xee\xfc\xe0\x2e\xea\x38\x8f\x2c\xb6\x24\x57\xbc\x25\xe3\x5a\xf4\xc7\x1f\x8f\xcf\x5f\x1e\x66\xf9\xea\xf9\x61\xf6\x34\xcd\xf3\xc5\x6c\xb9\x8c\xa2\xfb\x7b\x58\x90\xaf\xad\x71\x80\x06\xd0\x5a\xfc\x09\x5c\xc2\x13\x4b\x9a\x9b\x92\x81\x8b\xef\x24\xbc\x03\xbf\x41\x0f\x7e\x43\x80\x42\x70\x6d\x3c\x08\x36\xde\xb2\x76\x41\x41\x19\x50\xde\x81\x61\xbb\x43\xdd\x23\xd0\x48\x70\x1b\xb4\x24\x8f\x5b\x51\x84\x42\x90\x73\x31\x6a\x9d\x40\x59\x1b\xd8\xa1\x32\x71\x77\x3a\x81\xa9\x94\x96\x9c\x4b\x26\xf0\x7a\x3e\x5a\x7a\xf4\xf4\x06\xfb\x28\x02\x00\xd0\xe4\xc1\x74\x9b\xd3\xe0\xfc\x16\x2f\x83\xd7\xb7\x13\xb5\xaa\x8b\x69\x67\x35\x83\x35\xf9\xee\xcf\xd1\x4e\x72\x42\x72\xe5\x15\x1b\xd4\x41\x29\xa8\x92\x5d\x50\x09\xd9\x40\xa1\x81\x86\x95\x0a\xac\xb0\x50\x5a\x79\x45\x2e\x2d\xd8\x5a\x7e\xff\xf4\x61\x7f\xc5\x56\x2b\xf6\x52\x17\x5a\x89\xc3\xe7\xb8\x57\x09\xeb\x2f\x28\x2f\xe8\x37\x3d\xa7\xf3\xab\xca\x3e\x97\xa1\xd5\xcb\x23\xec\x7b\x76\xe0\xa8\x50\x78\x76\xed\xe2\x10\x61\xdc\xc4\x9d\x4f\xc6\xf2\xa9\x92\x49\x2f\x34\x2a\x24\xc5\xaa\x22\x23\xe3\xa0\xdc\x42\x0e\xe7\xa9\xb6\x4f\xb5\x0b\x32\x50\xff\x31\xdc\xe1\x53\x4f\x9b\x9f\x6f\xac\x25\xd9\xdf\xf2\x1c\xc1\xce\xee\xbc\x19\xa8\xbe\xec\xf2\x8f\x43\x9c\xe2\x1d\xb4\x32\xcf\x21\xbb\xa8\x96\xae\xc9\x37\x41\xe7\x71\x32\xa0\xfe\x67\x3b\xf3\x3c\x19\x49\xdc\xe8\xa5\xed\x66\xd0\x90\x6d\xbe\x0a\x63\x5a\x74\x88\x7e\x05\x00\x00\xff\xff\xb4\x6c\x9a\x8a\x93\x04\x00\x00" func lockedtokensStakerGet_staker_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -4150,7 +4150,7 @@ func lockedtokensStakerGet_staker_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/staker/get_staker_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0xb6, 0xf9, 0x18, 0xa, 0x76, 0x3e, 0x66, 0x7f, 0x67, 0x88, 0x9c, 0x2b, 0xce, 0xd, 0xb0, 0xbc, 0xc8, 0xc2, 0x8b, 0x47, 0x19, 0x96, 0xd1, 0x93, 0xe9, 0x4, 0x4d, 0x7, 0x52, 0x9e, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x99, 0x7d, 0x68, 0x3c, 0x28, 0x9c, 0xb5, 0x1c, 0x9a, 0x60, 0x8a, 0x99, 0xf5, 0x71, 0x5c, 0xef, 0xc4, 0xab, 0x72, 0x68, 0x33, 0xba, 0x87, 0xeb, 0x57, 0xb7, 0x13, 0x22, 0xeb, 0x59, 0xae, 0xac}} return a, nil } @@ -4374,7 +4374,7 @@ func lockedtokensUserDeposit_tokensCdc() (*asset, error) { return a, nil } -var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x4e\xf3\x30\x10\x84\xef\x7e\x8a\xf9\x7b\xf8\x65\x5f\x2a\xce\x08\xa8\xaa\x26\x12\xa8\x11\xad\xda\xbe\x80\xe3\x6c\x8a\x55\xc7\x1b\xd9\x8e\x40\x42\xbc\x3b\x4a\x52\x52\x0a\xec\xc5\x96\x35\xb3\xdf\x78\x6c\xd3\x72\x48\x28\xd8\x9c\xa8\x3a\xf0\x89\x7c\x44\x1d\xb8\xc1\xcd\x5b\xb1\x59\xad\xf3\xec\xb0\x59\xe7\xcf\xcb\x2c\xdb\xe5\xfb\xbd\x10\xda\x18\x8a\x51\x6a\xe7\x14\xea\xce\xa3\xd1\xd6\x4b\x6d\x0c\x77\x3e\xdd\x62\x59\x55\x81\x62\x54\xd3\x0d\xef\x42\x00\x80\xa3\x04\x37\x20\x96\xa3\xf6\xc9\xd7\xbc\xa3\x1a\xf7\x38\x52\x3a\xbf\x7d\xed\x51\x83\xa5\x9f\xb9\xd1\xad\x2e\xad\xb3\xc9\x52\x9c\x1f\x29\xdd\xfd\xff\x1e\x74\x3e\x1c\x8f\xec\x2a\x0a\x0f\x72\x72\xf5\x73\x25\x2b\x7e\x92\xb7\x5d\xe9\xac\xd9\xea\xf4\x32\x99\xd4\xbf\x0b\xb5\xe4\x10\xf8\x55\x5e\x72\x2c\x16\x68\xb5\xb7\x46\xce\x56\xdc\xb9\x0a\x9e\x13\x46\x11\x34\x02\xd5\x14\xc8\x1b\x42\x62\xb4\xc3\x66\xfc\x22\xce\xd4\x58\x44\xa0\xd4\x05\xff\x67\x17\xfd\xff\xae\x7c\xe7\x0e\xa5\x12\x1f\xe2\x33\x00\x00\xff\xff\xad\x23\x7d\xb6\xa7\x01\x00\x00" +var _lockedtokensUserGet_locked_account_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xc1\x6a\xeb\x30\x10\x45\xf7\xfa\x8a\x4b\x16\x0f\x7b\x63\xde\xba\xb4\x0d\x26\x36\xb4\xc4\x34\x21\xc9\x0f\xc8\xf2\x38\x15\x91\x35\x46\x1a\xd3\x42\xe9\xbf\x97\xd8\xa9\xdb\xb4\x9d\x8d\x84\x98\x73\x8f\x66\x6c\xd7\x73\x10\x54\x6c\x4e\xd4\x1c\xf8\x44\x3e\xa2\x0d\xdc\xe1\xff\x6b\xb5\x59\xad\xcb\xe2\xb0\x59\x97\x4f\x79\x51\xec\xca\xfd\x5e\x29\x6d\x0c\xc5\x98\x68\xe7\x52\xb4\x83\x47\xa7\xad\x4f\xb4\x31\x3c\x78\xb9\x41\xde\x34\x81\x62\x4c\xe7\x1b\xde\x94\x02\x00\x47\x02\x37\x2a\xf2\xa9\xf7\xd1\xb7\xbc\xa3\x16\x77\x38\x92\x5c\xde\x3e\x73\xd2\x11\x39\x57\x66\x74\xaf\x6b\xeb\xac\x58\x8a\x59\xcd\x21\xf0\xcb\xed\xbf\xef\x7f\xcd\xc6\xe3\x81\x5d\x43\xe1\x3e\x99\xc1\x73\x5d\xb5\x55\x3f\xe5\xdb\xa1\x76\xd6\x6c\xb5\x3c\xcf\xd0\x97\x77\xb9\x44\xaf\xbd\x35\xc9\x62\xc5\x83\x6b\xe0\x59\x30\xd9\xa1\x11\xa8\xa5\x40\xde\x10\x84\xd1\x8f\x31\xf8\x15\xbf\x48\xa7\xc1\x03\xc9\x10\xfc\x9f\xb3\x67\x47\x92\x2b\xee\xb2\xb3\x24\x55\xef\xea\x23\x00\x00\xff\xff\xa3\x13\x04\x31\x97\x01\x00\x00" func lockedtokensUserGet_locked_account_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -4390,11 +4390,11 @@ func lockedtokensUserGet_locked_account_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x20, 0xea, 0x12, 0x83, 0xdb, 0xe4, 0x6, 0x68, 0x59, 0x15, 0x8d, 0xa7, 0x5, 0x1d, 0x2e, 0xb6, 0x91, 0xaf, 0xf4, 0xd1, 0xf9, 0xa8, 0x5c, 0x66, 0x51, 0x3a, 0x9a, 0x3d, 0xcd, 0x1f, 0xe0, 0x60}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0xee, 0x12, 0xd0, 0xaf, 0x24, 0x3e, 0x2a, 0xd, 0xb3, 0xdd, 0x7d, 0x78, 0x32, 0xfa, 0x16, 0xeb, 0xd5, 0x9c, 0xf6, 0x40, 0x13, 0x2f, 0x48, 0x2f, 0x17, 0xdb, 0x35, 0x9, 0x8, 0x30, 0x40}} return a, nil } -var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4f\x32\x31\x10\x86\xef\xfd\x15\xef\xc7\xe1\x4b\x7b\x21\x1e\x8c\x07\xa2\x12\x04\x8c\x86\x8d\x10\xc0\x1f\xd0\xed\xce\x62\x43\xb7\xb3\x69\xbb\x91\xc4\xf8\xdf\xcd\xee\x2a\x88\x3a\x97\x26\xcd\xfb\xcc\x33\x33\xb6\xaa\x39\x24\x64\x6c\xf6\x54\x6c\x79\x4f\x3e\xa2\x0c\x5c\xe1\xe2\x90\x2d\xa7\x8b\xf9\x6c\xbb\x5c\xcc\x9f\x26\xb3\xd9\x7a\xbe\xd9\x08\xa1\x8d\xa1\x18\xa5\x76\x4e\xa1\x6c\x3c\x2a\x6d\xbd\xd4\xc6\x70\xe3\xd3\x08\x93\xa2\x08\x14\xa3\x1a\xe1\xf9\xde\x1e\xae\x2e\xf1\x26\x04\x00\x38\x4a\x70\x9d\x61\xd2\x47\x1f\x7d\xc9\x6b\x2a\x71\x83\x1d\xa5\xcf\xbf\xaf\x36\xaa\x43\xda\x1a\x1a\x5d\xeb\xdc\x3a\x9b\x2c\xc5\xe1\x8e\xd2\xf5\xff\xef\x73\x0e\xbb\xe7\x81\x5d\x41\xe1\x56\x1e\xa9\xb6\xce\x62\xd9\x4f\xf3\xaa\xc9\x9d\x35\x2b\x9d\x5e\x8e\x90\xfa\x77\xb2\xe6\x1c\x02\xbf\xca\xd3\x1c\xe3\x31\x6a\xed\xad\x91\x83\x29\x37\xae\x80\xe7\x84\x3e\x04\x8d\x40\x25\x05\xf2\x86\x90\x18\x75\xd7\x19\xbf\x8c\x03\xd5\x1f\x22\x50\x6a\x82\xff\xf3\x16\xed\x7e\x67\xdc\x9d\x76\xda\x1b\x92\x4a\xbc\x8b\x8f\x00\x00\x00\xff\xff\xb2\x24\xdb\x94\xa6\x01\x00\x00" +var _lockedtokensUserGet_locked_account_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x41\x4b\xf3\x40\x10\x86\xef\xfb\x2b\x5e\x7a\xf8\x48\x2e\xe1\x3b\x88\x87\xa2\x96\xda\x46\x94\x06\x5b\xda\xfa\x03\x26\x9b\x49\x5d\xba\xd9\x09\xbb\x1b\x2c\x88\xff\x5d\x9a\x68\xb5\xea\x5c\x16\x96\x79\xde\x67\x5e\xd3\xb4\xe2\x23\x0a\xd1\x7b\xae\xb6\xb2\x67\x17\x50\x7b\x69\xf0\xff\x50\x2c\x67\x8b\x7c\xbe\x5d\x2e\xf2\xc7\xe9\x7c\xbe\xce\x37\x1b\xa5\x48\x6b\x0e\x21\x21\x6b\x53\xd4\x9d\x43\x43\xc6\x25\xa4\xb5\x74\x2e\x8e\x31\xad\x2a\xcf\x21\xa4\x63\x3c\xdd\x99\xc3\xe5\x05\x5e\x95\x02\x00\xcb\x11\xb6\x37\x4c\x87\xd5\x07\x57\xcb\x9a\x6b\x5c\x63\xc7\xf1\xe3\xef\x33\x26\xed\x91\xe3\x64\x9a\x5a\x2a\x8d\x35\xd1\x70\xc8\x4a\xf1\x5e\x5e\xae\xfe\x7d\x3f\x35\xeb\x9f\x7b\xb1\x15\xfb\x9b\xe4\x04\x1e\xe7\x6c\xad\xf8\x29\x5f\x75\xa5\x35\x7a\x45\xf1\xf9\x04\x7d\x79\x27\x13\xb4\xe4\x8c\x4e\x46\x33\xe9\x6c\x05\x27\x11\x83\x1d\x04\xcf\x35\x7b\x76\x9a\x11\x05\x6d\x1f\x83\x5f\xf1\xa3\x74\x28\xee\x39\x76\xde\xfd\xd9\x3d\xdb\x71\x3c\xe3\x6e\xc9\x92\xd3\x9c\xa4\xea\x4d\xbd\x07\x00\x00\xff\xff\x51\xcf\xd0\xa1\x96\x01\x00\x00" func lockedtokensUserGet_locked_account_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4410,11 +4410,11 @@ func lockedtokensUserGet_locked_account_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_locked_account_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x63, 0x6, 0x13, 0x4, 0x10, 0x1c, 0xe5, 0xa2, 0x76, 0xe1, 0x1a, 0x51, 0xa6, 0x46, 0xbd, 0xe7, 0x35, 0xc5, 0xd2, 0xd4, 0x7b, 0x8f, 0xe1, 0x17, 0x93, 0xc5, 0x7f, 0x6, 0x47, 0xf, 0xeb, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xb9, 0x88, 0x9f, 0x36, 0x87, 0x86, 0x21, 0x2f, 0xd1, 0x89, 0x78, 0xd, 0x96, 0x5d, 0xe1, 0xdf, 0x4, 0x17, 0x7d, 0x6e, 0xab, 0xa8, 0x39, 0x91, 0x2b, 0x5e, 0x13, 0xc9, 0xdd, 0xf3, 0x43}} return a, nil } -var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcf\x6e\xf2\x30\x10\xc4\xef\x7e\x8a\xf9\x38\x7c\x72\x2e\x51\x0f\x55\x0f\xa8\x14\x21\xa0\x6a\x45\x54\x10\x7f\x4e\x88\x83\x71\x36\xd4\xc2\xb1\x23\xdb\x69\x91\x10\xef\x5e\x25\x21\x6d\xd3\x76\x2f\x89\x3c\xb3\xbb\xbf\x1d\x95\x17\xd6\x05\x24\x56\x1e\x29\x5d\xdb\x23\x19\x8f\xcc\xd9\x1c\x37\xa7\x64\x3e\x9e\x4d\x27\xeb\xf9\x6c\xfa\x32\x9a\x4c\x96\xd3\xd5\x8a\x31\x21\x25\x79\xcf\x85\xd6\x11\xb2\xd2\x20\x17\xca\x70\x21\xa5\x2d\x4d\xf0\x7d\x6c\x47\x69\xea\xc8\xfb\x5d\xd4\xc7\x76\xf3\xa8\x4e\x77\xb7\x3b\x9c\x19\x03\x80\x37\xe1\xa0\x55\xae\x6a\x5f\xab\x0d\xb0\xdd\x35\x72\x66\x1d\xae\x83\xa0\x4c\xfb\xeb\x71\xae\xd5\xaa\x34\x05\xe8\x9a\x73\xd4\x88\xcf\x26\xb3\x4b\xca\x30\xc0\x81\xc2\xf5\xad\x85\x89\x3e\xdb\xaa\x8a\xa5\x28\xc4\x5e\x69\x15\x14\xf9\xf8\x40\xe1\xfe\xff\xf7\x8b\xe3\xfa\xf3\x64\x75\x4a\xee\x81\x77\x3a\xab\xea\x58\x93\x9f\x04\x8b\x72\xaf\x95\x5c\x88\xf0\xda\x69\x8c\xfe\x75\x09\xf6\xd6\x39\xfb\xce\xbb\x5c\xc3\x21\x0a\x61\x94\xe4\xbd\xb1\x2d\x75\x0a\x63\x03\x1a\x23\x04\x1c\x65\xe4\xc8\x48\x42\xb0\x28\xea\x2d\xf8\xb5\xbd\x17\xb1\xaf\x80\xea\x74\x63\x51\x14\x64\x52\xfe\x57\x54\xd5\xe9\x1b\x53\x29\x49\xe5\xe5\x51\x83\x73\x69\x66\x38\x0a\xa5\x33\xd7\x31\xec\xc2\x3e\x02\x00\x00\xff\xff\x40\x8a\xfc\x13\x1c\x02\x00\x00" +var _lockedtokensUserGet_multiple_unlock_limitsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x6f\xe2\x30\x14\xc4\xef\xfe\x14\x23\x0e\xab\xe4\x12\xed\x61\xb5\x07\x54\x8a\x10\x50\xb5\x22\x2a\x88\x3f\x27\xc4\xc1\x38\x2f\xd4\xc2\xf1\x8b\x6c\xa7\x45\x42\x7c\xf7\x2a\x09\xb4\x4d\xdb\x77\x49\xe4\x79\x33\xfe\x79\x74\x51\xb2\x0b\x48\x59\x1d\x29\x5b\xf3\x91\xac\x47\xee\xb8\xc0\xdf\x53\x3a\x1f\xcf\xa6\x93\xf5\x7c\x36\x7d\x1e\x4d\x26\xcb\xe9\x6a\x25\x84\x54\x8a\xbc\x8f\xa4\x31\x31\xf2\xca\xa2\x90\xda\x46\x52\x29\xae\x6c\xf0\x7d\x6c\x47\x59\xe6\xc8\xfb\x5d\xdc\xc7\x76\xf3\xa0\x4f\xff\xff\xed\x70\x16\x02\x00\x5e\xa5\x83\xd1\x85\x6e\xf6\x6e\xda\x00\xdb\x5d\x2b\xe7\xec\x70\x0d\x82\xb6\xb7\x5f\x8f\x73\xa3\xd6\x63\x28\xc0\x34\x9c\xa3\x56\x7c\xb2\x39\x2f\x29\xc7\x00\x07\x0a\xd7\xb3\x1b\x4c\xfc\x61\xab\x27\x51\xb2\x94\x7b\x6d\x74\xd0\xe4\x93\x3d\x3b\xc7\x6f\x77\x7f\xbe\x3e\x3a\x69\x3e\x8f\x6c\x32\x72\xf7\x51\xc7\x5c\x4f\x67\x35\xfd\x0e\xb1\xa8\xf6\x46\xab\x85\x0c\x2f\x1d\x63\x97\x61\x38\x44\x29\xad\x56\x51\x6f\xcc\x95\xc9\x60\x39\xa0\x25\x81\x84\xa3\x9c\x1c\x59\x45\x08\x8c\xb2\x89\xc3\x8f\x6b\x7a\xb1\xf8\x2c\xa3\x69\x32\x91\x65\x49\x36\x8b\x7e\xab\x25\x39\x50\xd8\xd8\x5a\x49\xeb\xdd\x28\x6e\x71\x2e\x6d\x86\xa3\x50\x39\x7b\x8d\x11\x17\xf1\x1e\x00\x00\xff\xff\x91\x29\xc0\x8b\x08\x02\x00\x00" func lockedtokensUserGet_multiple_unlock_limitsCdcBytes() ([]byte, error) { return bindataRead( @@ -4430,11 +4430,11 @@ func lockedtokensUserGet_multiple_unlock_limitsCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_multiple_unlock_limits.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x57, 0x8a, 0x53, 0x9b, 0xa4, 0x7, 0xc, 0xbe, 0x1d, 0x99, 0x45, 0x9d, 0x62, 0x3d, 0x1f, 0xc7, 0xb2, 0xfa, 0x6f, 0x55, 0x5c, 0xdf, 0x55, 0x98, 0xcb, 0xea, 0x22, 0xc2, 0x95, 0x9d, 0x5a, 0xaf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x67, 0x4, 0xcc, 0x3e, 0xbe, 0x5b, 0x53, 0xa4, 0xb6, 0x1c, 0xf7, 0xd3, 0x66, 0x9e, 0x8c, 0xf2, 0x8b, 0x61, 0xd4, 0xf, 0x31, 0xa, 0x4, 0x1d, 0xb2, 0x4b, 0x2e, 0x47, 0x83, 0xbc, 0x45}} return a, nil } -var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x5f\x4f\xdb\x3e\x14\x7d\xcf\xa7\xb8\xf0\xf0\xfb\x35\x5a\x95\xf2\x30\xed\xa1\x5a\x91\x3a\x02\x5b\x45\x45\x11\x74\xdb\xb3\x93\x38\xad\x85\x6b\x47\xb6\x03\x4c\xa8\xdf\x7d\x72\x1c\x3b\x71\x9a\x40\x07\x79\xe8\x1f\xdf\xe3\x7b\x8f\xcf\xb9\xbe\x21\xbb\x82\x0b\x05\x57\x25\xdb\x90\x84\xe2\x35\x7f\xc0\x0c\x72\xc1\x77\x70\xea\xad\x9d\x06\x16\x49\xf9\x93\x87\xb2\xff\x3d\xc4\x22\x5e\xa3\x84\xe2\x7b\x85\x1e\x08\xdb\xb4\xa0\x7e\xc0\xed\x59\xf2\xf4\x01\x67\x55\x1e\x69\xd0\x67\xcf\xcb\xd5\xc5\xf5\x65\xbc\x5e\x5d\x5f\xde\xcc\xe3\xf8\xee\xf2\xfe\x3e\x08\x26\x13\x58\x6f\x89\x04\x99\x0a\x52\x28\xd8\x60\x25\x41\x6d\x31\xac\x57\xeb\xf9\x12\x58\xb9\x4b\xb0\x00\x9e\xc3\xd5\x72\xf5\x1b\x10\x03\x94\xa6\xbc\x64\x0a\xf8\x13\x93\x63\x40\xa9\xe0\x52\x42\xc9\x68\x55\x6e\x0c\xf6\x1b\xb1\x0c\xa4\xa1\x14\x55\x45\xe6\x59\x26\xa1\x2c\x74\x6e\x89\xeb\xbc\x72\x5a\x85\x94\x21\x49\x18\x30\x2e\x76\x88\xda\x1a\xaf\xc5\x6c\xf2\x57\x31\x19\xa6\x78\x83\xd4\x01\x4c\x6e\x91\xc0\x59\x7f\x19\x3f\xd6\x5f\xa6\x83\x69\x95\x09\x02\x94\xa6\x58\xca\x11\xa2\x34\x84\xbc\x64\xb0\x43\x84\x8d\x50\x96\x09\x2c\xe5\x54\xab\xa0\x7f\x84\x53\xf8\x79\x45\x9e\xbf\x7c\x86\x97\x20\x00\x00\x78\x44\x02\x64\xb9\x83\x19\x9c\x45\x67\x66\x89\x62\xe5\x2a\xcc\xb4\x2f\x73\xf3\xc7\x26\x0b\x0d\x8c\xe4\x15\xf2\x11\x95\x54\xdd\xe1\x1c\x66\x76\x53\x94\xa2\x02\x25\x84\x12\x45\xb0\x8c\x36\x58\x7d\xfd\xcf\x75\x56\xf4\x4b\xc3\xcf\x47\x93\xa2\x4c\x28\x49\x27\xb9\x0d\x7c\x43\x14\xb1\x14\x87\x27\x55\x6e\xfd\x44\x09\x17\x82\x3f\x8d\xc2\x6a\xe5\xc5\xad\x1b\xb6\xfa\xf3\x93\x2b\x1e\x25\x66\x7b\x05\xda\x1b\x7e\x93\x09\x7c\xc7\xca\x88\x07\x75\xdc\xf4\xa3\xee\x32\xdb\x38\x96\xf4\xff\x12\x18\xcf\xb0\x95\x1d\x0a\xce\xa9\x74\x72\xe8\x90\xee\x73\x2c\x2e\x50\xd1\x9c\xb4\xe1\x7a\x78\xe4\x97\xc3\x2b\x12\xdd\xb8\x34\xb7\xd5\xf1\xf7\xe7\x23\x97\x42\x3f\x47\x6c\xb9\x45\x6a\xeb\xf6\x84\x27\x9e\x15\x0d\x4b\xe3\x87\xc7\xda\xc9\xd9\x92\xd2\x6e\x5a\xb0\x9c\xc3\x6c\xa8\xbc\x8e\x8e\x2a\x58\x3c\xf5\x6b\x44\x24\x0b\x7b\x7d\xb1\x49\x23\xc5\x15\xa2\x66\x16\x2c\xd8\x1d\x4e\xb9\xc8\x6a\x43\xdf\xeb\x52\xdd\xf3\x5c\x0c\x58\xe5\xe2\x1f\x76\x2a\xb6\x99\xfa\xcd\x6a\xb7\x70\xbd\xcd\xed\x18\x72\xc8\x91\x33\x06\xb5\xb9\x0e\xf9\xe3\x30\xc3\x26\xc5\x6d\x88\x4f\xd2\xda\xd6\x2e\x1c\x99\xc5\xb1\x07\x6c\xca\x74\xd1\x24\x6b\x4e\xd3\x6b\xb6\xc7\x70\xc8\xf1\x3e\xcf\xb7\x18\x7c\x7b\xc1\x48\x0a\xce\xa3\x3f\xce\x56\x03\xac\x27\x91\x2e\x74\xb4\xbd\xed\xf7\x51\x54\x7d\xfd\xe0\x34\xc3\xa2\x63\xa7\x07\x5b\x76\xab\xbd\x7d\xf9\x0e\x08\x1a\x8b\xfb\x78\xf7\x59\x6d\x5e\x54\x7d\x9a\xb4\x47\x5b\x57\xfa\xbe\xa2\xfa\xd4\x1e\xff\x7a\xb4\x8e\xea\xb9\xdd\xa9\x66\xef\x1c\xcf\x01\x51\x5a\x2d\x1d\x0e\xc2\xe6\x46\xfa\xe4\x5c\xc2\xd6\x04\x5a\xc4\x7d\xc7\xae\x89\x55\xf3\x24\xf6\x4e\xfe\x81\x41\xb4\x88\x43\x2f\xcd\x3f\x8e\xa0\x56\x4b\xbe\x2d\xca\xc0\xdc\x39\x56\x99\xd6\xfd\x7a\x45\x9e\xe6\x26\x1f\x6a\x74\xac\xc4\x2e\xc7\x80\xd6\xef\x1e\x2c\xbe\xf2\xe3\x81\x91\xd1\xf5\xe4\x5d\xd3\xa2\xf5\xec\x03\xff\x57\x6d\x98\xc0\xaa\x14\x4c\xe7\x0c\xf6\xc1\xdf\x00\x00\x00\xff\xff\xa9\x00\x16\xe2\xfa\x0a\x00\x00" +var _lockedtokensUserGet_total_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x30\x14\x7d\xcf\xaf\xb8\xe3\x81\xa5\x5a\x95\xf2\x30\xed\xa1\xa2\x48\xdd\x02\x5b\x45\x45\x11\x74\xdb\xb3\x1b\x3b\xad\x85\x6b\x47\xb6\x03\x4c\xa8\xff\x7d\x4a\x1c\x3b\x71\x9a\x94\x0e\x96\x87\x7e\xd8\xe7\xde\x73\x7c\xcf\xf5\x0d\xdd\x66\x42\x6a\xb8\xca\xf9\x9a\xae\x18\x59\x8a\x07\xc2\x21\x95\x62\x0b\x27\xde\xda\x49\x60\x91\x4c\x3c\x79\x28\xfb\xdf\x43\xcc\xe2\x25\x5a\x31\x72\xaf\xd1\x03\xe5\xeb\x06\xd4\xdf\x70\x31\x73\x91\x3c\x10\x5c\xe6\x51\x06\x7d\xf6\x3c\x5f\x7c\xbb\xbe\x8c\x97\x8b\xeb\xcb\x9b\x69\x1c\xdf\x5d\xde\xdf\x07\xc1\x68\x04\xcb\x0d\x55\xa0\x12\x49\x33\x0d\x6b\xa2\x15\xe8\x0d\x81\xe5\x62\x39\x9d\x03\xcf\xb7\x2b\x22\x41\xa4\x70\x35\x5f\xfc\x06\xc4\x01\x25\x89\xc8\xb9\x06\xf1\xc4\xd5\x10\x50\x22\x85\x52\x90\x73\x56\xd2\x0d\xc1\x7e\x23\x8e\x41\x19\x49\x51\x49\x32\xc5\x58\x41\x9e\x15\xb9\x15\xa9\xf2\xaa\x71\xb9\xa5\x8d\x48\xca\x81\x0b\xb9\x45\xcc\x72\x1c\xda\xb3\xc9\x0f\x62\x30\x61\x64\x8d\xf4\x1e\x4c\x6d\x90\x24\xb8\x9b\xc6\xdf\xeb\xa6\x69\x61\x1a\x34\x41\x80\x92\x84\x28\x15\x22\xc6\x06\x90\xe6\x1c\xb6\x88\xf2\x10\x61\x2c\x89\x52\xe3\xa2\x0a\xc5\x8f\xc1\x18\x7e\x5e\xd1\xe7\x2f\x9f\xe1\x25\x08\x00\x00\x1e\x91\x04\x95\x6f\x61\x02\x67\xd1\x99\x59\x62\x44\x3b\x86\x49\xe1\xcb\xd4\xfc\xb1\xc9\x06\x06\x46\xd3\x12\xf9\x88\x72\xa6\xef\x48\x0a\x13\x1b\x14\x25\x28\x43\x2b\xca\xa8\xa6\x44\x45\x2b\x21\xa5\x78\x3a\x3f\x75\xcd\x15\xfd\x2a\x22\x2e\xc2\x51\x96\xaf\x18\x4d\x46\xa9\xdd\xf8\x8a\x18\xe2\x09\x19\xc0\x4b\x99\xbf\x78\x8c\xb2\xe2\xf3\x93\x23\x8a\x56\x06\x57\x82\x76\x46\xcb\x68\x04\xdf\x89\x36\x85\x82\x6a\xdf\xf4\x5e\xd1\x51\xb6\x49\xac\xc0\x8f\x0a\xb8\xc0\xc4\x96\x18\x32\x21\x98\x72\x47\x17\x99\xa6\x82\x23\x76\x23\x70\xd9\xdb\x44\x7a\xa7\x73\xda\xba\x8f\xf9\xb2\x7f\x33\xa2\x3a\xd3\x6d\x79\xe4\xdd\x45\xe8\xb2\x14\xcf\x11\x21\xb7\x48\x6f\x5c\x8c\x6f\x00\x6f\xe9\xec\xd6\x5f\xd7\xd4\xc6\xcc\x78\x2a\x60\xd2\x47\x5e\xec\x86\x25\x2c\x1e\xfb\x14\x11\xc5\x83\x4e\x83\x6c\xd2\x48\x0b\x8d\x98\x19\x00\x33\x7e\x47\x12\x21\x71\x38\x78\x97\x5d\x55\xa3\x0b\xf9\x8a\x67\xb1\xc5\xfd\x0f\xcb\x5c\xb2\x6e\xd7\x9a\xfd\x5b\x85\xb9\x88\xda\xaa\x0f\x9e\x57\xd8\xd7\xd7\x29\xdb\x77\xca\x45\xf4\xdb\x15\x37\x21\xbe\x46\x6b\x60\x93\x37\x32\x8b\x43\x0f\x58\xd3\xb4\xd1\x14\x37\xfa\xae\xcb\x76\x4f\x61\x9f\xf7\x5d\xee\x6f\x08\xf8\x46\x83\xa9\x28\x38\x97\xfe\xec\x19\x6c\x5e\x2e\xd5\x40\x2a\x08\x8f\x31\x7a\x4d\xf4\xf9\x69\xf3\xb5\x14\x95\x5f\x3f\x04\xc3\x44\xb6\x5c\xf5\x60\x7b\x6c\x5d\x97\xd1\x77\x98\x75\x0b\x3c\xa8\xbf\x76\xdc\xbc\xae\xba\x4a\xd3\x1c\x7a\x6d\x07\xba\x38\x8b\x43\x7b\x64\xd5\x74\x0d\xab\xe1\xd1\x62\xb3\x97\x50\xa4\x80\x18\x2b\x97\xf6\x47\x64\x7d\x45\x7d\x71\x2e\x61\x63\x22\xcd\x62\x98\xf4\x0a\x2b\x07\x4c\x1c\x36\x27\xfd\x3b\x26\xd3\x2c\x1e\x78\x69\xfe\x71\x26\x35\x3a\xf3\xf5\xa2\xf4\x0c\xa2\x63\x2b\xd3\xb8\x66\x07\xca\x53\x5f\xe8\xfd\x1a\x1d\x5b\x62\x97\xa3\xa7\xd6\x6f\x9e\x2f\x7e\xe5\x87\x3d\x93\xa3\xed\xc9\x9b\x86\x46\xe3\xd9\x05\xfe\xaf\xca\x30\x49\x74\x2e\x79\x91\x33\xd8\x05\x7f\x03\x00\x00\xff\xff\xc1\x6b\x33\x5a\x00\x0b\x00\x00" func lockedtokensUserGet_total_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -4450,11 +4450,11 @@ func lockedtokensUserGet_total_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_total_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb, 0x69, 0xd5, 0xb7, 0x55, 0x5, 0x9c, 0xed, 0x57, 0x86, 0xf0, 0x8, 0xc, 0xe, 0xc, 0xa4, 0xab, 0x57, 0x1, 0x7d, 0x6b, 0xd9, 0xec, 0x38, 0xb, 0xe3, 0xf0, 0xc, 0x8, 0x31, 0xbe, 0x8f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa1, 0x83, 0x65, 0xde, 0x8e, 0x5f, 0x73, 0xa9, 0x48, 0x26, 0xc5, 0x33, 0xdc, 0xf6, 0xfc, 0x7d, 0x7e, 0x11, 0xc8, 0x82, 0x68, 0x99, 0xdd, 0xfc, 0x9, 0x19, 0x1, 0xc7, 0x81, 0xa7, 0xc0, 0xa2}} return a, nil } -var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\xcd\x4a\x03\x31\x14\x85\xf7\x79\x8a\x63\x17\x92\x6c\x8a\x0b\x71\x51\xd4\x52\xda\x8a\xd2\xc1\x96\xfe\x3c\x40\x26\x73\xa7\x86\x66\x72\x87\x24\x83\x05\xf1\xdd\x65\x66\xb4\xf5\xef\x6e\x02\xc9\x39\xf7\x3b\x39\xb6\xaa\x39\x24\x64\x6c\x0e\x54\x6c\xf9\x40\x3e\xa2\x0c\x5c\xe1\xea\x98\x2d\xa7\x8b\xf9\x6c\xbb\x5c\xcc\x9f\x27\xb3\xd9\x7a\xbe\xd9\x08\xa1\x8d\xa1\x18\xa5\x76\x4e\xa1\x6c\x3c\x2a\x6d\xbd\xd4\xc6\x70\xe3\xd3\x08\x93\xa2\x08\x14\xa3\x1a\x61\xf7\x60\x8f\x37\xd7\x78\x13\x02\x00\x1c\x25\xb8\x8e\x30\xe9\xa5\x4f\xbe\xe4\x35\x95\xb8\xc3\x9e\xd2\xe7\xdd\xd7\x1a\xd5\x59\xda\x19\x1a\x5d\xeb\xdc\x3a\x9b\x2c\xc5\xe1\x9e\xd2\xed\xe5\xf7\x9c\xc3\xee\x78\x64\x57\x50\xb8\x97\x27\x57\x3b\x3f\x64\xd9\x6f\xf2\xaa\xc9\x9d\x35\x2b\x9d\x5e\x4e\x26\x75\x71\xa6\xe6\x1c\x02\xbf\xca\x73\x8e\xf1\x18\xb5\xf6\xd6\xc8\xc1\x94\x1b\x57\xc0\x73\x42\x2f\x82\x46\xa0\x92\x02\x79\x43\x48\x8c\xba\xdb\x8c\x3f\xc4\x81\xea\x8b\x08\x94\x9a\xe0\xff\xed\xa2\xfd\xdf\xce\xb7\x2f\x99\xad\x6c\x92\x4a\xbc\x8b\x8f\x00\x00\x00\xff\xff\xe7\x23\xb7\x12\x9d\x01\x00\x00" +var _lockedtokensUserGet_unlock_limitCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8f\x4d\x6a\xc3\x30\x14\x84\xf7\x3a\xc5\x90\x45\xb1\x37\xa6\x8b\xd2\x45\x68\x1b\x42\x92\xd2\x12\xd3\x84\xfc\x1c\x40\x96\x9f\x53\x11\x59\xcf\x48\xcf\x34\x50\x7a\xf7\x62\xbb\x4d\x7f\x67\x23\x90\x66\xe6\xd3\xd8\xba\xe1\x20\xc8\xd9\x1c\xa9\xdc\xf1\x91\x7c\x44\x15\xb8\xc6\xe5\x29\x5f\xcd\x96\x8b\xf9\x6e\xb5\x5c\x3c\x4d\xe7\xf3\xcd\x62\xbb\x55\x4a\x1b\x43\x31\x26\xda\xb9\x14\x55\xeb\x51\x6b\xeb\x13\x6d\x0c\xb7\x5e\xc6\x98\x96\x65\xa0\x18\xd3\x31\xf6\xf7\xf6\x74\x7d\x85\x57\xa5\x00\xc0\x91\xc0\xf5\x84\xe9\x60\x7d\xf4\x15\x6f\xa8\xc2\x2d\x0e\x24\x1f\x77\x9f\x35\x69\x1f\xe9\x94\x19\xdd\xe8\xc2\x3a\x2b\x96\x62\x56\x70\x08\xfc\x72\x73\xf1\xfd\xab\x59\x7f\x3c\xb0\x2b\x29\xdc\x25\xe7\x60\xa7\x1f\xb6\xfc\x37\x7c\xdd\x16\xce\x9a\xb5\x96\xe7\x73\xe8\x8b\x3b\x99\xa0\xd1\xde\x9a\x64\x34\xe3\xd6\x95\xf0\x2c\x18\xe8\xd0\x08\x54\x51\x20\x6f\x08\xc2\x68\xfa\x1a\xfc\xa9\x1f\xa5\xc3\xf0\x40\xd2\x06\xff\xef\xf6\xec\x40\xb2\xf7\xdd\x4b\x6e\x6b\x2b\x49\xaa\xde\xd4\x7b\x00\x00\x00\xff\xff\x41\x2c\x60\x75\x8d\x01\x00\x00" func lockedtokensUserGet_unlock_limitCdcBytes() ([]byte, error) { return bindataRead( @@ -4470,7 +4470,7 @@ func lockedtokensUserGet_unlock_limitCdc() (*asset, error) { } info := bindataFileInfo{name: "lockedTokens/user/get_unlock_limit.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x9e, 0xdb, 0x4c, 0x59, 0x66, 0xe0, 0x8f, 0x1c, 0xe7, 0xd6, 0x7c, 0x51, 0xf5, 0x13, 0xc1, 0xff, 0x7f, 0x1b, 0x69, 0x8f, 0x3f, 0xd9, 0x95, 0xbf, 0x4f, 0x72, 0x44, 0xb7, 0x29, 0xf1, 0x33}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x7e, 0xa8, 0x61, 0xd1, 0xfa, 0x9f, 0xeb, 0x5c, 0xb8, 0xde, 0x5c, 0xae, 0xd1, 0xf0, 0x64, 0x54, 0xd7, 0x86, 0x64, 0x24, 0x4a, 0x10, 0x1e, 0xbc, 0x51, 0x5d, 0x28, 0x9e, 0xd, 0xe5, 0x7b}} return a, nil } @@ -4754,7 +4754,7 @@ func quorumcertificateAdminStop_votingCdc() (*asset, error) { return a, nil } -var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x4d\x6f\xdb\x30\x0c\xbd\xe7\x57\x70\x3d\x14\x0e\xd0\x3a\x3b\x07\xed\x8a\xc0\xdd\x86\x61\x87\x35\x4d\xd1\x9d\x19\x99\xb1\xb5\x2a\x92\x47\xd1\xc9\x82\xa1\xff\x7d\xa0\xe4\xba\x31\x66\x20\x88\x3e\xc8\xf7\xf8\x1e\x69\xdb\x7d\x17\x58\xe0\x8b\x0b\xc7\xca\xf5\x51\x88\xd7\x15\xec\x38\xec\xe1\xe3\x9f\x75\xb5\xba\xbf\x7f\xfc\xbc\xd9\xcc\x66\x8b\x05\x3c\x51\x14\x78\x62\xf4\x11\x8d\xd8\xe0\x61\x17\x18\x10\x7c\xa8\x09\x24\x00\xd3\xef\x5e\x23\x10\xd6\x15\x3c\x07\x21\x86\x1f\xdb\x5f\x64\x24\xa3\x49\x4b\x60\x82\x17\x46\x23\x8a\xf6\xd3\x3a\x07\x5b\x82\xbe\xab\x51\xa8\x56\x84\x3e\x52\x0a\xa3\x2e\x98\x76\x0c\x86\x63\x4b\x1e\xa4\x45\x01\x1b\xc1\x84\x7d\xe7\x48\xa8\x4e\x15\xb5\x04\x87\xc4\x14\x32\x53\xf0\xee\x04\x9e\xa8\x8e\x8a\xb7\x25\x30\x4c\x09\x3d\x78\x43\x80\xbe\x56\x88\x03\x3a\x5b\xa7\xe2\xe9\x40\x7c\x82\x5d\x2f\x3d\x0f\xac\x8a\x7a\x6c\x89\x73\x21\x49\x9a\x8d\x80\x43\x4e\x14\x7c\xa1\x3a\x1d\x27\x47\x1e\x90\x71\x4f\x42\x1c\x97\xba\xd5\x1f\xd6\x7b\xeb\x57\x75\xcd\x14\xe3\x32\x81\x60\xde\x40\xd8\xa5\xed\xba\xca\x31\xe7\x96\xe9\x79\x76\x4c\xad\x52\x18\xa5\xf8\x76\x9f\x01\x6c\xfd\x96\x9b\xad\x56\x27\x12\xb0\x31\xa1\xf7\xc9\x95\xd0\x11\xa3\x58\xdf\x68\xae\x56\x69\x7d\xf3\x9d\x4e\xcb\xe4\xd0\xb0\x87\x17\x3a\x25\xd5\xb9\x13\xce\x91\x91\xc0\x83\x18\x79\x6f\x6b\x31\x95\x30\x2c\xae\xc6\x92\x36\xc2\xd6\x37\x57\x13\x9a\x7c\x36\x87\xbf\xb3\x19\x00\x40\xc7\xd4\x21\x53\x11\x6d\xe3\x89\x97\x80\xbd\xb4\xc5\x06\x0f\xf4\x8c\xae\xa7\x39\x5c\xae\x72\xe9\x63\x82\x3e\x8b\x05\x7c\xa5\x41\x59\x32\x88\x69\x47\x4c\xda\xb8\x71\x80\xf2\xc5\x20\x7c\xcc\x74\x24\xc3\xcd\x2d\x34\x24\x03\xf8\x44\xc7\xfc\xff\xe0\x47\xda\xc1\x6d\x5e\x96\x06\x3b\xdc\x5a\x67\xc5\x52\x2c\x1b\x92\x9b\xcb\xc9\xfb\x50\xae\x34\xea\x53\xb1\xe8\xfa\xad\xb3\x66\x91\x66\xae\xd2\xd1\x0a\x3c\xff\x30\x42\xeb\x53\x6e\x03\x73\x38\x16\x73\xb8\xbb\x83\x0e\xbd\x35\xc5\x45\x15\x7a\xa7\x53\x23\x90\x2f\x01\xcf\xb4\x49\x78\x57\x76\x31\x9f\xd8\x91\x18\x48\xa7\xef\x7c\xc6\x75\x8a\x23\x1e\x08\xac\x68\x72\x94\xc0\xd8\xd0\x44\x5f\x8e\xbf\xb9\x1e\x85\x96\xf9\x3d\x48\x33\x56\xbc\x35\x32\xff\x4f\x1b\xf9\xbe\x3e\x2b\x25\xb7\xb1\x1c\x98\x4a\x25\x2f\x6e\xae\x13\xc9\x15\x48\x58\x4e\x3f\x1e\x65\x62\xd9\xe4\xe0\x07\x94\x36\x7b\xff\x3a\x7b\xfd\x17\x00\x00\xff\xff\x15\x36\x10\x1a\x6b\x04\x00\x00" +var _quorumcertificateCreate_voterCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x54\x41\x6f\x1a\x4d\x0c\xbd\xf3\x2b\xac\x1c\xa2\x45\x4a\x96\xef\x8c\x92\x2f\x42\x9b\xb6\xaa\x7a\x68\x08\x51\x7a\x36\x33\x86\x9d\x66\x98\xd9\x7a\xbc\x50\x54\xe5\xbf\x57\x9e\xd9\x00\xab\xae\x84\x18\xcf\xda\xcf\x7e\xcf\x0f\xdc\xae\x8b\x2c\xf0\xd9\xc7\x43\xe3\xfb\x24\xc4\xcb\x06\x36\x1c\x77\xf0\xdf\xef\x65\xb3\x78\x7c\x7c\xfe\xb4\x5a\x4d\x26\xb3\x19\xbc\x50\x12\x78\x61\x0c\x09\x8d\xb8\x18\x60\x13\x19\x10\x42\xb4\x04\x12\x81\xe9\x57\xaf\x19\x08\xcb\x06\x5e\xa3\x10\xc3\xf7\xf5\x4f\x32\x52\xd0\xa4\x25\x30\x31\x08\xa3\x11\x45\xfb\xe1\xbc\x87\x35\x41\xdf\x59\x14\xb2\x8a\xd0\x27\xca\x69\xd4\x45\xd3\x9e\x92\xe1\xd0\x52\x00\x69\x51\xc0\x25\x30\x71\xd7\x79\x12\xb2\x79\xa2\x96\x60\x9f\x3b\xc5\xd2\x29\x06\x7f\x84\x40\x64\x93\xe2\xad\x09\x0c\x53\x46\x8f\xc1\x10\x60\xb0\x0a\xb1\x47\xef\x6c\x1e\x9e\xf6\xc4\x47\xd8\xf4\xd2\xf3\xd0\x55\x51\x0f\x2d\x71\x19\x24\x53\x73\x09\x70\xa8\x49\x82\x6f\x64\xf3\x75\x56\xe4\x09\x19\x77\x24\xc4\x69\xae\xa1\x7e\xd0\xee\x5c\x58\x58\xcb\x94\xd2\x3c\x83\x60\x09\x20\x6e\x72\xb8\x6c\x4a\xce\xa5\x64\x7a\x5f\x14\x53\xa9\x14\x46\x5b\x7c\x7d\x2c\x00\xce\x7e\xd4\x16\xa9\x55\x89\x0c\x6c\x4c\xec\x43\x56\x25\x76\xc4\x28\x2e\x6c\xb5\x56\xa7\x74\x61\xfb\x8d\x8e\xf3\xac\xd0\x10\xc3\x1b\x1d\x33\xeb\xb2\x09\xef\xc9\x48\xe4\x81\x8c\x9c\xd7\x5a\x8d\x29\x0c\x87\x9b\xd3\x48\x2b\x61\x17\xb6\x37\xa3\x36\xe5\x6e\x0a\x7f\x26\x13\x00\x80\x8e\xa9\x43\xa6\x2a\xb9\x6d\x20\x9e\x03\xf6\xd2\x56\x2b\xdc\xd3\x2b\xfa\x9e\xa6\x70\xbd\x28\xa3\x9f\x0a\xf4\x99\xcd\xe0\x0b\x0d\xcc\xb2\x40\x4c\x1b\x62\xd2\xc5\x9d\x0c\x54\x5e\x0c\xc4\x4f\x95\x9e\x64\x78\x73\x0f\x5b\x92\x01\x7c\xc4\x63\xfa\x6f\xf2\x33\x6d\xe0\xbe\x1c\x6b\x83\x1d\xae\x9d\x77\xe2\x28\xd5\xeb\xc8\x1c\x0f\x77\xd7\xa3\x9f\x44\xbd\xd0\xc4\xff\xab\x59\xd7\xaf\xbd\x33\xb3\x6c\xbb\x46\xdd\x15\xf9\x0c\xae\xcf\xc3\x03\x74\x18\x9c\xa9\xae\x9a\xd8\x7b\x75\x8b\x40\x81\x04\xbc\xe0\x24\xf1\xcc\xe8\x6a\x3a\x92\x21\xc3\x92\xba\xee\xd2\xdb\xea\xde\x84\x7b\x02\x27\x5a\x9c\x24\x32\x6e\x69\xc4\xab\xe4\xdf\xdd\x9e\x08\xd6\xc5\xff\xd9\x5b\xd5\xc7\x02\xcb\xf7\x78\x81\xe7\xf3\xc5\x28\x65\x7d\xf5\xd0\xa9\xd6\xe6\xd5\xdd\x6d\x6e\x72\x03\x12\xe7\xe3\x3f\x8d\x3a\x77\x59\x95\xe4\x27\x94\xb6\xc8\xf2\x3e\x79\xff\x1b\x00\x00\xff\xff\x17\xb3\x35\x5f\x63\x04\x00\x00" func quorumcertificateCreate_voterCdcBytes() ([]byte, error) { return bindataRead( @@ -4770,7 +4770,7 @@ func quorumcertificateCreate_voterCdc() (*asset, error) { } info := bindataFileInfo{name: "quorumCertificate/create_voter.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf3, 0xeb, 0x93, 0xe4, 0xb2, 0xd3, 0xe5, 0xbe, 0xe1, 0xde, 0x2b, 0xe8, 0x21, 0xfc, 0x75, 0xbe, 0x75, 0x96, 0xf1, 0xe3, 0x20, 0xa9, 0x80, 0x9f, 0x29, 0xb4, 0xf0, 0x4d, 0x27, 0xe3, 0x2a, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe9, 0x48, 0xa6, 0x6f, 0xa7, 0x22, 0x17, 0x90, 0xdd, 0x8b, 0x56, 0x49, 0x45, 0x60, 0xb, 0x78, 0x4d, 0x45, 0x46, 0x85, 0x69, 0xb, 0xf, 0x31, 0x4f, 0x87, 0x38, 0xaf, 0xfd, 0x78, 0x6f, 0xde}} return a, nil } @@ -5574,7 +5574,7 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\x40\x8e\x04\xcb\xd5\xbd\x6f\x11\x1f\xca\x4d\x28\x8d\x8a\x00\x11\xda\xf7\x89\x77\x9c\x6c\xeb\xec\x58\xbb\xe3\x00\x45\xfc\xf7\xca\xeb\x0f\x62\xec\xb6\x41\xc2\x2f\x96\xbd\xb3\x67\x66\xce\x39\xb3\x6b\xd6\x19\x3b\x81\x4f\x29\x3f\xcc\x05\x7f\x18\xbb\x9c\x70\x9a\x52\x2c\x86\x2d\x24\x8e\xd7\xf0\xcf\xe3\xfc\x7e\xfc\x65\x76\x7d\x39\xb9\xb9\xba\xba\x98\xdc\xcf\x6e\xae\xc7\xd3\xe9\xdd\xc5\x7c\x3e\x18\x1c\x1f\xc3\xbd\x43\xeb\x13\x72\x1e\x10\xae\x59\xd3\x94\x52\x5a\xa2\xb0\x03\x5e\x7c\xa7\x58\x4a\x10\xb4\x80\xb9\xac\xd8\x99\x9f\x21\x34\x8e\x99\x73\x2b\x05\x00\x5a\x0d\xa8\xb5\x07\x59\xd1\x1b\x04\x61\x40\xcb\xb2\x22\x17\x76\xe4\x56\x3c\x54\x55\xc2\x6b\x99\x05\x88\xd1\x64\xc5\x24\x86\x34\x2c\x9e\x02\x92\x30\x8c\xb5\x76\xe4\xbd\x1a\x0c\xa4\x28\x12\x43\x74\x64\x59\xd3\x6c\x3a\x82\xb9\x38\x63\x97\x87\xa0\xeb\x74\xc5\xcf\xaf\x33\x2b\xff\xfd\x7b\x08\xc2\xa3\x7a\xfb\x10\x9e\x07\x00\x00\x29\x95\xbd\x74\x68\xba\xa3\x64\x04\x07\xbd\x0c\xaa\xce\x9f\x06\x4a\xb8\xb3\x36\xc1\x6c\x77\xa0\xe7\x1d\xe3\x6e\xf3\x45\x6a\xe2\x97\x41\x48\x9c\x39\xca\xd0\x51\x54\xb1\x39\x0a\xa2\x44\xff\xb3\x73\xfc\xf0\x0d\xd3\x9c\x86\x70\x30\x2e\xd7\xea\xb6\x8b\xa7\x90\x79\x45\xb5\x06\x05\xb5\x52\xa9\xde\x23\x5a\x25\xbb\x30\xac\x73\x2f\xb0\xc2\x0d\x01\xc2\x06\x53\xa3\x7b\xc4\x03\x63\x81\x9d\xa6\x20\xb6\xa3\x98\xcc\x86\xba\xa0\xaa\x29\xc5\x24\x10\xed\xf5\xb7\xae\x99\x7c\x55\xfc\x67\xdc\x50\x27\x20\xc2\x52\xd0\x11\x08\x0f\xb7\xdb\x0b\xcc\xa0\x35\x71\xb4\x3f\x25\x2f\xc6\x62\xa8\xac\x6e\x77\xbb\x8d\x9e\x06\x3c\x09\xe4\x99\xda\x1f\x36\x78\x15\xd9\x15\x73\x97\x24\x80\xe0\x28\x21\x47\x36\x0e\xc6\x2c\xfa\xdb\x1e\x87\x7e\x97\x14\x8f\xa7\x34\x51\xbf\x73\x1d\x9c\xd6\x35\x2a\x2f\xec\x70\x49\x6a\x11\xa4\x3c\xd9\xd5\x44\x67\x51\x81\x3d\xea\x1f\xff\x6e\xf8\xbc\xcc\x72\x8b\xb2\x1a\xb6\xd8\x3b\x3f\xaf\x09\x9c\x70\x9e\x6a\xb0\x2c\x50\x96\x52\x34\x5e\xb4\xdc\xc1\xda\x1f\x76\x58\x2a\x68\x29\xed\x5a\xc9\x08\x9c\x94\x5c\xed\x64\x3c\x61\x05\x0d\x64\x39\x62\x35\xce\x29\x2c\x49\xaa\x8f\x48\xb8\x9d\xba\xb4\x3f\x20\xc4\x98\xe1\xc2\xa4\x46\x9e\x6a\x91\xb2\x50\x0d\xac\x49\x56\xac\x3d\xe0\x06\x4d\x8a\x8b\x94\x80\x6d\x58\xaf\x0c\xdb\x27\xa1\x6a\x6b\xd8\x3f\xee\x70\xfa\x5a\xa4\x6a\xd2\x1b\xf2\x2d\x76\xd5\x92\x64\x67\x49\xdf\x79\x2e\x9c\x45\xef\x8a\x0f\xd2\xef\xb5\xab\x2b\x85\x8e\x3e\xc2\x11\x5b\xd3\x43\x8f\x14\xe7\x42\xed\x53\xe8\x8e\xd6\xdc\x77\x3e\x94\x97\xcc\x5f\xc7\x4a\xb5\xec\x61\x5b\x08\x27\x47\x7f\x1e\x36\xe5\x42\xee\x66\x43\x73\x8f\x94\xef\x37\xf7\xc8\xd6\x47\xdb\x6c\x53\xca\xd8\x1b\xe9\xbf\xec\x3e\xc2\x52\x0a\xb5\x6e\x40\x6f\xc2\x59\x1c\x9d\x1c\xb5\x9b\xdd\xab\x99\x7e\xf9\x15\x00\x00\xff\xff\x1a\x64\x3e\x60\xff\x07\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x4d\x4f\xdb\x40\x10\xbd\xe7\x57\x0c\x1c\x90\x23\x81\xa9\xda\x5b\xc4\x87\xd2\x84\xd2\xa8\x08\x10\xa1\xbd\x4f\xbc\xe3\x78\x5b\x67\xc7\xda\x1d\x07\x28\xe2\xbf\x57\x5e\x7f\x10\x63\xb7\x4d\x24\x7c\xb1\xec\x9d\x7d\x33\xf3\xde\x9b\x5d\xbd\xca\xd8\x0a\x7c\x49\xf9\x61\x2e\xf8\x4b\x9b\xe5\x84\xd3\x94\x22\xd1\x6c\x20\xb6\xbc\x82\x0f\x8f\xf3\xfb\xf1\xb7\xd9\xf5\xe5\xe4\xe6\xea\xea\x62\x72\x3f\xbb\xb9\x1e\x4f\xa7\x77\x17\xf3\xf9\x60\x70\x7c\x0c\xf7\x16\x8d\x8b\xc9\x3a\x40\xb8\x66\x45\x53\x4a\x69\x89\xc2\x16\x78\xf1\x93\x22\x29\x41\xd0\x00\xe6\x92\xb0\xd5\xbf\x7d\x68\x14\x31\xe7\x46\x0a\x00\x34\x0a\x50\x29\x07\x92\xd0\x1b\x04\x61\x40\xc3\x92\x90\xf5\x3b\x72\x23\x0e\xaa\x2a\xe1\xb5\xcc\x02\x44\x2b\x32\xa2\x63\x4d\x0a\x16\x4f\x1e\x49\x18\xc6\x4a\x59\x72\x2e\x1c\x0c\xa4\x28\x12\x7d\x74\x60\x58\xd1\x6c\x3a\x82\xb9\x58\x6d\x96\x87\xa0\xea\x74\xc5\xcf\xef\x33\x23\x9f\x3e\x1e\x82\xf0\xa8\xde\x3e\x84\xe7\x01\x00\x40\x4a\x65\x2f\x1d\x9a\xee\x28\x1e\xc1\x41\x2f\x83\x61\xe7\x4f\x03\x25\xdc\x59\x9b\x60\xb6\x3d\xd0\xf3\x96\x71\xb7\xf9\x22\xd5\xd1\xcb\xc0\x27\xce\x2c\x65\x68\x29\xa8\xd8\x1c\x79\x51\x82\xcf\x6c\x2d\x3f\xfc\xc0\x34\xa7\x21\x1c\x8c\xcb\xb5\xba\xed\xe2\x29\x64\x4e\xa8\xd6\xa0\xa0\x56\x2a\xd5\x7b\x44\xab\x64\x17\x86\x55\xee\x04\x12\x5c\x13\x20\xac\x31\xd5\xaa\x47\x3c\xd0\x06\xd8\x2a\xf2\x62\x5b\x8a\x48\xaf\xa9\x0b\x1a\x36\xa5\xe8\x18\x82\xbd\xfe\xd6\x15\x93\xab\x8a\xff\x8a\x6b\xea\x04\x04\x58\x0a\x3a\x02\xe1\xe1\x66\x7b\x9e\x19\x34\x3a\x0a\xf6\xa7\xe4\x44\x1b\xf4\x95\xd5\xed\x6e\xb6\xd1\xd3\x80\x23\x81\x3c\x0b\xf7\x87\x0d\x5e\x45\x76\xc5\xdc\x25\x09\x20\x58\x8a\xc9\x92\x89\xbc\x31\x8b\xfe\x36\xc7\xa1\xdf\x25\xc5\xe3\x28\x8d\xc3\xbf\xb9\x0e\x4e\xeb\x1a\x43\x27\x6c\x71\x49\xe1\xc2\x4b\x79\xb2\xad\x89\xce\x82\x02\x7b\xd4\x3f\xfe\xdd\xf0\x79\x99\xe5\x16\x25\x19\xb6\xd8\x3b\x3f\xaf\x09\x9c\x70\x9e\x2a\x30\x2c\x50\x96\x52\x34\x5e\xb4\xdc\xc1\xda\x1f\x76\x58\x2a\x68\x29\xed\x5a\xc9\x08\x1c\x97\x5c\x6d\x65\x3c\xe1\x10\x1a\xc8\x72\xc4\x6a\x9c\x53\x58\x92\x54\x1f\x81\x70\x3b\x75\x69\x7f\x40\x88\x30\xc3\x85\x4e\xb5\x3c\xd5\x22\x65\xbe\x1a\x58\x91\x24\xac\x1c\xe0\x1a\x75\x8a\x8b\x94\x80\x8d\x5f\xaf\x0c\xdb\x27\x61\xd8\xd6\xb0\x7f\xdc\xe1\xf4\xb5\xc8\xb0\x49\xaf\xc9\xb5\xd8\xdd\x55\xd5\x1d\x8f\x86\xb3\x60\xa7\xf8\xf7\x52\x7f\x63\x52\xe8\x91\xa2\x5c\xa8\x7d\xe2\xdc\xd1\x8a\xfb\xce\x82\xf2\x42\xf9\xef\x08\x85\x2d\x2b\x98\x16\xc2\xc9\xd1\xbf\x07\x2b\xb4\x3e\x77\xb3\xa1\xb9\x33\xca\xf7\x9b\x3b\x63\xe3\xa3\x6d\xac\x29\x65\xec\xb4\xf4\x5f\x6c\xef\x61\x9f\x10\x95\x6a\x40\x6f\xfc\xb9\x1b\x9c\x1c\xb5\x9b\xdd\xab\x99\x7e\xf9\x13\x00\x00\xff\xff\xf7\x72\x3a\xe6\xeb\x07\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5590,11 +5590,11 @@ func stakingcollectionTransfer_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd7, 0xa4, 0x2e, 0xfd, 0xe1, 0xe1, 0x6e, 0x5b, 0x7e, 0x6b, 0x48, 0x6, 0x75, 0xfc, 0xa8, 0x1a, 0xae, 0xed, 0xa4, 0xdf, 0xbd, 0x7d, 0x3b, 0xb6, 0xfc, 0x51, 0x6f, 0x88, 0x20, 0x29, 0x2f, 0xff}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x8c, 0x49, 0xb, 0x6a, 0x4c, 0xbe, 0x46, 0xb1, 0x22, 0x1b, 0x70, 0xf0, 0x9a, 0x50, 0xf, 0x46, 0xe, 0x64, 0x69, 0xfd, 0xa9, 0x88, 0x11, 0xb0, 0xa2, 0x1f, 0xe4, 0xbb, 0x2e, 0xb5, 0x14}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x51\x4f\xdb\x30\x10\x7e\xef\xaf\x38\x78\x40\xa9\x04\x61\xcf\x15\x05\x75\x2d\x63\xd5\x18\x20\x8a\xf6\x32\xed\xc1\x8d\x2f\x8d\xb7\xd4\x17\xd9\x97\x32\x86\xf8\xef\x93\xed\xa4\x6d\x48\xb6\x16\x89\xbc\x54\x4d\xce\xdf\x7d\xf7\x7d\x9f\x6d\xb5\x2c\xc8\x30\x7c\xca\xe9\x71\xc6\xe2\x97\xd2\x8b\x31\xe5\x39\x26\xac\x48\x43\x6a\x68\x09\x1f\x7e\xcf\x1e\x46\x5f\xa6\x37\x57\xe3\xdb\xeb\xeb\xcb\xf1\xc3\xf4\xf6\x66\x34\x99\xdc\x5f\xce\x66\xbd\xde\xe9\x29\x3c\x18\xa1\x6d\x8a\xc6\x82\x80\x1b\x92\xe8\x50\xd0\x00\xcd\x7f\x62\xc2\x01\x41\x68\x10\x25\x67\x64\xd4\x1f\x5f\x97\x24\x44\xa5\x66\xb7\x5a\x68\x09\x42\x4a\x0b\x9c\xe1\xf6\x72\x26\x10\x9a\x38\x43\xe3\xcb\x4b\xcd\x16\x2a\x7e\xb0\x21\xe8\x10\x94\x44\xcd\x2a\x55\x28\x61\xfe\xe4\x61\x98\x60\x24\xa5\x41\x6b\xe3\x5e\x8f\x1d\x3d\xe1\xab\x23\x4d\x12\xa7\x93\x01\xcc\xd8\x28\xbd\x38\x06\xa6\x41\x5d\xd9\x87\xe7\x1e\x00\x40\x8e\x81\x73\x4b\x8b\x7b\x4c\x07\x70\xd4\x29\x53\xdc\x7a\xb3\x86\x62\x6a\x7d\x1b\x8b\x62\x7f\xa0\xe7\x3d\xeb\xee\xca\x79\xae\x92\x97\x9e\x6f\x5c\x18\x2c\x84\xc1\xa8\x12\x6e\xe0\xc5\x8f\x3e\x92\x31\xf4\xf8\x4d\xe4\x25\xf6\xe1\x68\x14\xbe\xd5\x63\xbb\xc7\x79\x99\x61\x2d\xb7\x53\x91\x2b\x6b\x5f\x9b\x53\x79\xcb\x04\xcb\xd2\x32\x64\x62\x85\x20\x60\x25\x72\x25\x3b\x4c\x02\xa5\x81\x8c\x0c\xa6\x1a\x4c\x50\xad\xf0\x15\x62\xbc\x26\xa1\x52\x88\x0e\xba\x87\x96\x84\xb6\xa2\xfd\x59\xac\xb0\x55\x10\x89\x60\xe5\x00\x98\xfa\xdb\x83\x79\x4d\x84\x56\x49\x74\x38\x41\xcb\x4a\x0b\x4f\xab\x1e\x74\x7b\x86\x0e\xf6\x16\x19\xca\x22\x3e\xec\xaf\xf1\x2a\x99\x2b\xcd\xae\x90\x41\x80\xc1\x14\x0d\xea\xc4\xa7\xcf\x0d\xb7\x1d\xf8\xee\x7c\xb8\xc7\x62\x9e\xc6\xff\xca\x1b\x0c\x6b\x8e\xb1\x65\x32\x62\x81\xf1\xdc\x9b\x78\xb6\x6f\x7c\xce\x23\x87\x3d\xe8\xde\xdd\xed\xf2\x59\xe8\x72\x27\x38\xeb\x37\xd4\xbb\xb8\xa8\x05\x1c\x53\x99\x4b\xd0\xc4\x10\xa8\xb8\xc1\xdd\xc8\x2d\xac\xc3\x7e\x4b\x25\x27\x4b\x08\x6a\x65\x23\x50\x1a\xb4\xda\x1d\x39\xa6\x18\xd6\x78\x61\x67\xd5\x20\x43\x58\x20\x57\x7f\x22\xa6\x66\xdf\x90\x7a\x10\x90\x88\x42\xcc\x55\xae\xf8\xa9\x76\xa8\xf0\x54\x60\x89\x9c\x91\xb4\x20\x56\x42\xe5\x62\x9e\x23\x90\xf6\xdf\xab\xa8\x76\xf9\x17\x37\x0d\xec\xde\xe5\x30\xdc\x90\x8c\xd7\xed\x15\xda\x86\xb4\xf1\x02\x79\x6f\x3f\xdf\x78\x1c\x9c\x47\x6f\xaa\xf7\xbe\x1f\x34\xd9\x05\x97\xa3\x77\x8d\x83\xb3\x6f\x29\x92\x4c\x69\xac\xe4\x99\xea\x94\x60\xf8\xff\xdd\xe0\x84\xfa\xda\x58\x65\xa3\xfe\xf7\x70\xa4\xff\xd8\x49\x6f\xb1\xe9\xb9\x8e\x9b\x72\x5d\x53\x0a\x59\xb3\x05\x26\xe1\x16\x71\x90\x30\x9d\xbc\x0a\xf0\x3d\x2e\xa9\x75\x6e\x85\xeb\x6d\xe7\x76\x8f\x1b\xa3\xeb\xcd\xf2\xb3\x93\x1d\x33\x1b\xdf\xd5\x35\x5c\x5f\x5e\xe1\xb7\x49\x6e\x82\x05\x59\xc5\x1d\x97\xe8\x7b\x04\x39\x16\x52\x3a\xd4\x5b\x7f\xec\x47\x67\x27\x5b\x23\x1c\x1c\x77\x58\x39\xe8\x78\x17\x12\xf4\xd2\x7b\xf9\x1b\x00\x00\xff\xff\xf4\x19\x3e\xcb\x71\x08\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x55\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\x78\x40\x8e\x04\xe6\x3e\x47\x04\x94\x9b\x70\xb9\x51\x29\x20\x82\xfa\x52\xf5\x61\xe2\x1d\xc7\xdb\x3a\x3b\xd6\xee\x38\x94\x22\xfe\x7b\xb5\x5e\x3b\x1f\xd8\x6d\x40\xc2\x2f\x51\xec\xd9\x33\x67\xce\x39\xbb\xab\x97\x05\x5b\x81\xff\x72\x7e\x9c\x09\xfe\xd0\x66\x31\xe6\x3c\xa7\x44\x34\x1b\x48\x2d\x2f\xe1\x9f\x9f\xb3\x87\xd1\xa7\xe9\xcd\xd5\xf8\xf6\xfa\xfa\x72\xfc\x30\xbd\xbd\x19\x4d\x26\xf7\x97\xb3\x59\xaf\x77\x7a\x0a\x0f\x16\x8d\x4b\xc9\x3a\x40\xb8\x61\x45\x1e\x85\x2c\xf0\xfc\x3b\x25\x12\x10\xd0\x00\x96\x92\xb1\xd5\xbf\xaa\xba\x24\x61\x2e\x8d\xf8\xd5\x68\x14\xa0\x52\x0e\x24\xa3\xed\xe5\xc2\x80\x86\x25\x23\x5b\x95\x97\x46\x1c\xd4\xfc\x60\x43\xd0\x23\x68\x45\x46\x74\xaa\x49\xc1\xfc\xa9\x82\x11\x86\x91\x52\x96\x9c\x8b\x7b\x3d\xf1\xf4\xb0\xaa\x8e\x0c\x2b\x9a\x4e\x06\x30\x13\xab\xcd\xe2\x18\x84\x07\x4d\x65\x1f\x9e\x7b\x00\x00\x39\x05\xce\x2d\x2d\xee\x29\x1d\xc0\x51\xa7\x4c\x71\xeb\xcd\x1a\x4a\xb8\xf5\x6d\x8c\xc5\xdb\x81\x9e\xdf\x58\x77\x57\xce\x73\x9d\xbc\xf4\xaa\xc6\x85\xa5\x02\x2d\x45\xb5\x70\x83\x4a\xfc\xe8\x5f\xb6\x96\x1f\xbf\x60\x5e\x52\x1f\x8e\x46\xe1\x5b\x33\xb6\x7f\xbc\x97\x19\x35\x72\x7b\x15\xa5\xb6\xf6\xb5\x39\xb5\xb7\xc2\xb0\x2c\x9d\x40\x86\x2b\x02\x84\x15\xe6\x5a\x75\x98\x04\xda\x00\x5b\x15\x4c\xb5\x94\x90\x5e\xd1\x2b\xc4\x78\x4d\x42\xa7\x10\x1d\x74\x0f\xad\x98\x5c\x4d\xfb\x7f\x5c\x51\xab\x20\xc2\x60\xe5\x00\x84\xfb\xdb\x83\x55\x9a\xa0\xd1\x49\x74\x38\x21\x27\xda\x60\x45\xab\x19\x74\x7b\x86\x0e\xf6\x8e\x04\xca\x22\x3e\xec\xaf\xf1\x6a\x99\x6b\xcd\xae\x48\x00\xc1\x52\x4a\x96\x4c\x52\xa5\xcf\x0f\xb7\x1d\xf8\xee\x7c\xf8\xc7\x51\x9e\xc6\x7f\xca\x1b\x0c\x1b\x8e\xb1\x13\xb6\xb8\xa0\x78\x5e\x99\x78\xf6\xd6\xf8\x9c\x47\x1e\x7b\xd0\xbd\xbb\xdb\xe5\xb3\xd0\xe5\x0e\x25\xeb\xef\xa8\x77\x71\xd1\x08\x38\xe6\x32\x57\x60\x58\x20\x50\xf1\x83\xfb\x91\x5b\x58\x87\xfd\x96\x4a\x5e\x96\x10\xd4\xda\x46\xe0\x34\x68\xb5\x3f\x72\xc2\x31\xac\xf1\xc2\xce\x6a\x40\x86\xb0\x20\xa9\xff\x44\xc2\xbb\x7d\x43\xea\x01\x21\xc1\x02\xe7\x3a\xd7\xf2\xd4\x38\x54\x54\x54\x60\x49\x92\xb1\x72\x80\x2b\xd4\x39\xce\x73\x02\x36\xd5\xf7\x3a\xaa\x5d\xfe\xc5\xbb\x06\x76\xef\x72\x18\x6e\x48\xc6\xeb\xf6\x9a\xdc\x8e\xb4\xef\xb5\xf4\x9d\x27\xc2\x79\xf4\xae\xfa\x0f\xb7\xde\x5b\xb5\xc4\x24\xd3\x86\x6a\x29\xa6\x26\x65\x18\xfe\x3d\xf9\xf1\x82\xe4\xf3\xce\x2a\x17\xf5\xbf\x86\xe3\xfb\xdb\x5e\x7a\x8b\x4d\xcf\x75\xb4\xb4\xef\x9a\x72\xc8\x95\x2b\x28\x09\x37\x86\x87\x84\xe9\xe4\x55\x58\xef\x69\xc9\xad\x33\x2a\x5c\x65\x7b\xb7\x76\xbc\x33\xba\xd9\x2c\x3f\x3b\xd9\x33\xb3\xad\xba\xfa\x86\xeb\x8b\x2a\xfc\xee\x92\x9b\x50\xc1\x4e\x4b\xc7\x85\xf9\x11\xa1\x8d\x51\x29\x8f\x7a\x5b\x1d\xf1\xd1\xd9\xc9\xd6\x08\x07\xc7\x1d\x56\x0e\x3a\xde\x85\x04\xbd\xf4\x5e\x7e\x07\x00\x00\xff\xff\xb9\x90\x15\x27\x5d\x08\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5610,7 +5610,7 @@ func stakingcollectionTransfer_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/transfer_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdf, 0x67, 0xe8, 0xef, 0xe2, 0xef, 0x8, 0x3d, 0x4f, 0xe9, 0xd5, 0x36, 0x7d, 0x74, 0x7e, 0x3c, 0x5c, 0xdd, 0x9f, 0xfa, 0x21, 0xd0, 0x7, 0xed, 0xb4, 0x6e, 0x73, 0xc9, 0x4f, 0x45, 0xb2, 0x84}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe6, 0x1b, 0x1a, 0xa5, 0x3e, 0xdc, 0x67, 0xdb, 0x56, 0x2c, 0xe4, 0x41, 0xd2, 0xf0, 0xbe, 0x6b, 0x8f, 0xa9, 0xd1, 0xe2, 0xa2, 0xcf, 0x19, 0xfa, 0x65, 0x64, 0x60, 0x12, 0x9, 0x2f, 0x1f, 0xd8}} return a, nil } @@ -5734,7 +5734,7 @@ func stakingproxyAdd_node_infoCdc() (*asset, error) { return a, nil } -var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x91\xc1\x6a\xc3\x30\x0c\x86\xef\x79\x0a\xb5\x87\x91\xc0\x08\x3b\x97\x75\x25\xb4\x63\x2b\x83\x36\x34\x3b\x6c\x47\xd7\x51\x32\x33\xd7\x0a\x8a\xc2\x5a\x4a\xdf\x7d\xb8\x26\x29\x6b\x0f\xd3\xc5\xd8\xfa\xa5\x4f\xbf\x6c\x76\x0d\xb1\x40\x21\xea\xdb\xb8\x3a\x67\xda\x1f\xa0\x62\xda\xc1\xc3\xbe\x78\xcf\xde\x96\xab\x97\x7c\xb3\xfe\xf8\xcc\x16\x8b\xcd\x73\x51\x44\x91\xd2\x1a\xdb\x36\x56\xd6\x26\x50\x75\x0e\x76\xca\xb8\x58\x69\x4d\x9d\x93\x09\x64\x65\xc9\xd8\xb6\xf7\xe0\xa8\xc4\xe5\x62\x02\x85\xb0\x71\x75\x32\xf9\x03\x48\x57\x3e\xeb\x2a\x82\x63\x14\x01\x00\x58\x14\x68\x7c\x66\xae\x1a\xb5\x35\xd6\xc8\x01\xa6\x50\xa3\x64\xa1\x71\x0f\x48\xce\x6a\x1f\xa9\xee\x95\x06\xdb\xb4\x46\x79\xbc\xbb\x21\xf8\x07\xe4\xf3\xfd\x95\x6c\x89\x7c\xfc\x5f\x92\x77\x5b\x6b\xf4\xe9\x29\x1e\x48\x3e\x6e\xea\xd6\x0d\xb2\x12\xe2\xcb\xbc\xa1\x30\x57\xf2\x35\x54\x26\xa3\x2b\x77\x1b\xac\x60\x7a\x6d\x34\xdd\x12\x33\xfd\xc4\x17\x6f\xb3\x19\x34\xca\x19\x1d\x8f\xe7\xd4\xd9\x12\x1c\x09\x04\x11\x34\x67\x0a\x30\x56\xc8\xe8\x34\x82\x10\xb4\x61\xb8\xd0\x77\x9c\x04\x26\xa3\x74\xec\x06\xac\xdf\x50\xbf\xf4\xb8\xff\x9b\x70\x26\xa3\xe8\x14\xfd\x06\x00\x00\xff\xff\x9a\x82\xf5\x58\x06\x02\x00\x00" +var _stakingproxyGet_node_infoCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x4d\x4b\xf3\x40\x10\xc7\xef\xfb\x29\xe6\xe9\xe1\x21\x01\x09\x9e\x8b\x5a\x42\x2b\x5a\x84\x36\x34\x1e\xf4\xb8\xdd\x4c\xe2\xe2\x76\x67\x99\x9d\x60\x4b\xe9\x77\x97\x74\x49\x45\x7a\x70\x2e\x21\x3b\xf3\x7f\xe1\x67\x77\x81\x58\xa0\x16\xfd\x69\x7d\x57\x31\xed\x0f\xd0\x32\xed\xe0\x76\x5f\xbf\x96\x2f\xcb\xd5\x53\xb5\x59\xbf\xbd\x97\x8b\xc5\xe6\xb1\xae\x95\xd2\xc6\x60\x8c\x99\x76\x2e\x87\xb6\xf7\xb0\xd3\xd6\x67\xda\x18\xea\xbd\x4c\xa1\x6c\x1a\xc6\x18\x6f\xc0\x53\x83\xcb\xc5\x14\x6a\x61\xeb\xbb\x7c\xfa\x2b\xa0\x58\x0d\x5b\xdf\x12\x1c\x95\x02\x00\x70\x28\x10\x86\xcd\x06\x5b\xb8\x87\x0e\xa5\x4c\x8e\xa3\x73\x7e\x3e\x1b\xa6\x30\x3a\xe8\xad\x75\x56\x2c\xc6\x62\x4b\xcc\xf4\x75\xf7\xff\xca\x7d\x78\x40\x3e\xff\x3f\x93\x6b\x90\x8f\x7f\x9f\x54\xfd\xd6\x59\x73\x7a\xc8\x2e\x61\xc3\x5c\xe9\xd6\x01\x59\x0b\xf1\x7c\x2c\x72\x48\xc2\x4a\xcb\xc7\x45\xf9\x53\x78\x36\x83\xa0\xbd\x35\xd9\x64\x4e\xbd\x6b\xc0\x93\x40\xaa\x0d\xe1\xac\x03\xc6\x16\x19\xbd\x41\x10\x82\x98\xe2\x12\x8e\x49\x9e\xf8\x30\x4a\xcf\xfe\x82\xa8\xe8\x50\x46\x84\xd9\x48\x3a\x7d\xf3\x7f\xea\xa4\xbe\x03\x00\x00\xff\xff\x93\xce\x73\xe0\xd4\x01\x00\x00" func stakingproxyGet_node_infoCdcBytes() ([]byte, error) { return bindataRead( @@ -5750,11 +5750,11 @@ func stakingproxyGet_node_infoCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/get_node_info.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x35, 0xa9, 0x5b, 0x9b, 0x75, 0xa9, 0x9a, 0xa1, 0x30, 0x7a, 0xd, 0x7a, 0x1a, 0x78, 0xb3, 0x4, 0x94, 0x21, 0x5d, 0x94, 0xe3, 0xa, 0x14, 0x72, 0x17, 0x48, 0xb4, 0x9c, 0x62, 0x91, 0x65}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xe, 0xa9, 0xc, 0x81, 0xc6, 0xb5, 0x5b, 0x90, 0xf7, 0x7f, 0x67, 0x66, 0xeb, 0xac, 0xbd, 0x20, 0xea, 0x8a, 0xbf, 0xa9, 0xb2, 0xe9, 0x4f, 0x9, 0xe3, 0x29, 0x52, 0x8a, 0xa5, 0xfd, 0x60}} return a, nil } -var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcf\x8e\xda\x3c\x10\xbf\xe7\x29\xe6\xe3\xc0\x97\x48\x28\xea\xa1\xea\x21\x5a\x76\x45\x81\xb6\x2b\x56\x80\x08\xad\xda\xa3\xb1\x27\x60\x11\x3c\x91\x33\x51\x41\x2b\xde\xbd\x72\x9c\xb0\x81\xed\xb6\xf5\xc5\xc0\xcc\xfc\xfe\x8d\xd1\x87\x82\x2c\xc3\x13\xc9\x3d\xaa\x35\xed\xd1\x94\x90\x59\x3a\xc0\xbb\xe3\xd3\x62\x3c\x9b\x4e\xd6\x8b\xd9\x74\x3e\x9a\x4c\x56\xd3\x34\x0d\x9a\xee\x94\xc5\x5e\x9b\xed\xd2\xd2\xf1\xd4\x76\xa7\xeb\xd1\xec\x71\xfe\x79\xb9\x5a\x7c\xff\xd1\xb6\x07\x6c\x85\x29\x85\x64\x4d\x26\x14\x4a\x59\x2c\xcb\x04\x46\xfe\xc3\x00\xb4\x4a\x20\x65\xab\xcd\x76\x00\xe2\x40\x95\xe1\x04\xbe\x7e\xd2\xc7\x0f\xef\x23\x78\x0e\x02\x00\x80\x1c\x19\x76\x94\x2b\xb4\x2b\xcc\x12\xe8\x77\x75\xc6\xf5\xf5\xa5\xae\xfa\xee\xc2\x62\x21\x2c\x86\x42\x4a\x8f\x26\x2a\xde\x85\x1f\xc9\x5a\xfa\xf9\x4d\xe4\x15\x46\xd0\x1f\xf9\x9a\x63\x80\xe6\x94\x98\x67\xf1\x85\x05\x86\xd0\xcc\xc7\x25\x93\x15\x5b\x8c\x37\x35\xc2\xdd\x9b\xec\xf7\xa1\x0b\x21\x81\xb7\xea\xa9\xc7\x59\x0a\xde\x45\x17\x56\x77\x1e\x1e\xa0\x10\x46\xcb\xb0\x37\xa6\x2a\x57\x60\x88\xc1\x93\x81\xc5\x0c\x2d\x1a\x89\xc0\x04\x1d\xac\x9e\x47\x38\x7b\xc7\x78\x44\x59\x31\x76\xcc\xb8\xc4\x0c\x29\x5c\x14\x68\x05\x53\xe3\x68\x8b\xdc\x18\x6f\xf7\x10\xc5\x52\x14\x62\xa3\x73\xcd\x1a\xcb\x78\x8b\x7c\xa5\xec\xae\xdf\x5d\x72\x3c\x27\x85\xee\x07\xb4\xf5\x77\x2f\xe5\xf9\xef\x2d\xcb\x6a\x93\x6b\x79\xbe\xbf\xc2\x0e\x5f\xcd\xb5\x62\xc7\xad\xa4\x93\x1f\xac\x13\xfb\xaf\xc9\x3f\x8c\xe0\x5f\xc3\x73\x01\x00\x35\xa0\x50\xd4\x58\x70\xf1\x7b\xea\x45\xc1\xab\xbc\x1e\x4d\x46\x30\xbc\x8d\xce\xe5\x32\x6f\xaa\x61\xdd\x36\x49\x40\xab\x3f\x6e\xd1\xfc\xcf\x2e\x6f\xd0\x0e\x31\x23\xeb\xe1\x27\xc3\x5e\x2c\xc9\x48\xc1\xa1\x56\x51\x47\xc0\xf5\xeb\x8b\xa5\x45\xc1\xf8\x12\x66\xd8\x8a\x4b\x2e\x32\x5f\xfe\x2d\xfe\xfe\x8d\x9b\xce\x22\x60\x78\x4b\xe1\x43\x6a\xe0\x3b\xc3\xb7\xde\x85\x52\xdd\x4d\x5d\xfc\xb7\x3a\x62\xad\x06\x50\xb8\x52\x72\x4b\xda\x3e\xd2\x73\xf0\x2b\x00\x00\xff\xff\x02\xbf\x6d\x2f\x61\x04\x00\x00" +var _stakingproxyRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x53\xcf\x8e\xda\x3c\x10\xbf\xe7\x29\x46\x1c\xf6\x4b\x24\x14\x7d\x87\xaa\x87\xa8\xec\x8a\x02\x6d\x57\xac\x00\x11\x5a\xb5\x47\x63\x4f\xc0\x22\x78\x22\x67\xa2\x82\x56\xbc\x7b\xe5\x38\xc9\x06\xb6\xdb\xd6\x17\x03\x33\xf3\xfb\x37\x46\x1f\x0b\xb2\x0c\x4f\x24\x0f\xa8\x36\x74\x40\x53\x42\x66\xe9\x08\xff\x9f\x9e\x96\x93\xf9\x6c\xba\x59\xce\x67\x8b\xf1\x74\xba\x9e\xa5\x69\xd0\x74\xa7\x2c\x0e\xda\xec\x56\x96\x4e\xe7\xb6\x3b\xdd\x8c\xe7\x8f\x8b\xcf\xab\xf5\xf2\xfb\x8f\xb6\x3d\x60\x2b\x4c\x29\x24\x6b\x32\xa1\x50\xca\x62\x59\x26\x30\xf6\x1f\x86\xa0\x55\x02\x29\x5b\x6d\x76\x43\x10\x47\xaa\x0c\x27\xf0\xf5\x93\x3e\xbd\x7f\x17\xc1\x73\x10\x00\x00\xe4\xc8\xb0\xa7\x5c\xa1\x5d\x63\x96\xc0\x5d\x5f\x67\x5c\x5f\x5f\xea\xaa\xef\x2e\x2c\x16\xc2\x62\x28\xa4\xf4\x68\xa2\xe2\x7d\xf8\x91\xac\xa5\x9f\xdf\x44\x5e\x61\x04\x77\x63\x5f\x73\x0c\xd0\x9c\x12\xf3\x2c\xee\x58\x60\x04\xcd\x7c\x5c\x32\x59\xb1\xc3\x78\x5b\x23\x7c\x78\x93\xfd\x3e\x74\x21\x24\xf0\x56\x3d\xf5\x38\x2b\xc1\xfb\xa8\x63\x75\xe7\xe1\x01\x0a\x61\xb4\x0c\x07\x13\xaa\x72\x05\x86\x18\x3c\x19\x58\xcc\xd0\xa2\x91\x08\x4c\xd0\xc3\x1a\x78\x84\x8b\x77\x8c\x27\x94\x15\x63\xcf\x8c\x4b\xcc\x90\xc2\x65\x81\x56\x30\x35\x8e\x76\xc8\x8d\xf1\x76\x0f\x51\x2c\x45\x21\xb6\x3a\xd7\xac\xb1\xbc\x52\xd5\xf9\xed\xef\x39\x5e\x90\x42\xf7\x03\xda\xfa\xbb\x57\xf3\xfc\xf7\x96\x55\xb5\xcd\xb5\xbc\xdc\x87\x57\x1c\xee\xbc\x9a\x6d\x35\x4f\x5a\x65\x67\x3f\xec\x82\xbb\x9a\xfe\xe7\x14\x5d\x12\x40\x0d\x2c\x14\x35\x1a\x74\xc6\xcf\x83\x28\x78\x15\xdc\xa3\xc9\x08\x46\xb7\x19\xc6\x3b\xe4\x45\x53\x0d\xeb\xb6\x69\x02\x5a\xfd\x51\x88\xf9\x8f\x5d\xf0\xa0\x1d\x62\x46\xd6\xc3\x4f\x47\x83\x58\x92\x91\x82\x43\xad\xa2\x9e\x80\xeb\x67\x18\x4b\x8b\x82\xf1\x25\xd2\xb0\x15\x97\x74\x32\x5f\xfe\x36\xfe\xfe\x8d\x9b\xde\x3a\x60\x74\x4b\xe1\x43\x6a\xe0\x7b\xc3\xb7\xde\x85\x52\xfd\x5d\x75\xfe\x5b\x1d\xb1\x56\x43\x28\x5c\x29\xb9\x25\x6d\x5f\xeb\x25\xf8\x15\x00\x00\xff\xff\xe2\x06\x92\xc2\x6a\x04\x00\x00" func stakingproxyRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5770,7 +5770,7 @@ func stakingproxyRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingProxy/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0xc5, 0xa9, 0x42, 0x4e, 0xce, 0x54, 0xf, 0x64, 0x6, 0x2b, 0x7f, 0xfa, 0x96, 0x9e, 0x7b, 0xb0, 0x10, 0xab, 0xd9, 0x20, 0xb7, 0x8d, 0x95, 0x17, 0x85, 0xed, 0xd9, 0xb4, 0xfc, 0x74, 0x82}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xbd, 0x6a, 0x1b, 0xa4, 0xdb, 0xb0, 0xf, 0xe7, 0x71, 0x78, 0xd1, 0x20, 0xb5, 0xaa, 0x1f, 0xf6, 0xf6, 0x15, 0x62, 0x84, 0x12, 0x23, 0x5d, 0x8c, 0x21, 0xd6, 0xed, 0x88, 0x21, 0x1, 0xf6}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index a41b25966..b734805f8 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -247,7 +247,7 @@ { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities.get\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x8d0e87b65159ae63\nimport StakingProxy from 0x62430cf28c26d095\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,7 +284,7 @@ } ], "network": "mainnet", - "hash": "bf30cbfbf55229949e2b61c11696094d6b015ebcff660130e85db95cad02c0e2" + "hash": "b93128438ecb41c0a66ac921d2ede64ad85423d53a815e6b9e078eafc0fff282" }, { "id": "TH.17", @@ -1033,7 +1033,7 @@ { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "mainnet", - "hash": "e216a7e4d19e22831bce98085bd21d008ab7e816622d2cef45972083a945e1e4" + "hash": "93199b9c534b50efff8b0296411597aeda77c00ac8e8626d87f6d371702fd5e1" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,7 +1101,7 @@ } ], "network": "mainnet", - "hash": "44f5bd36cab4e0024326452164a5ed7e1c783d7498e516b93a03f30bec330093" + "hash": "323dec8d78355bf2b1c0407df44db1f52eb3a8c67047d44965ecb6926f97401e" }, { "id": "SCO.15", diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index 704ef2df7..8c2f56451 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -247,7 +247,7 @@ { "id": "TH.16", "name": "Register Operator Node", - "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities.get\n \u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e\n (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() \n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", + "source": "import LockedTokens from 0x95e019a17d0e23d7\nimport StakingProxy from 0x7aad92e5a0715d21\n\ntransaction(address: Address, id: String, amount: UFix64) {\n\n let holderRef: \u0026LockedTokens.TokenHolder\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.holderRef = account.storage.borrow\u003c\u0026LockedTokens.TokenHolder\u003e(from: LockedTokens.TokenHolderStoragePath)\n ?? panic(\"Could not borrow reference to TokenHolder\")\n }\n\n execute {\n let nodeOperatorRef = getAccount(address).capabilities\n .borrow\u003c\u0026StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}\u003e(\n StakingProxy.NodeOperatorCapabilityPublicPath\n )\n ?? panic(\"Could not borrow node operator public capability\")\n\n let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)\n ?? panic(\"Couldn't get info for nodeID=\".concat(id))\n\n self.holderRef.createNodeStaker(nodeInfo: nodeInfo, amount: amount)\n\n let nodeStakerProxy = self.holderRef.borrowStaker()\n\n nodeOperatorRef.addStakingProxy(nodeID: nodeInfo.id, proxy: nodeStakerProxy)\n }\n}\n", "arguments": [ { "type": "Address", @@ -284,7 +284,7 @@ } ], "network": "testnet", - "hash": "9145e4d398f3a28ef6f921c977cb12f71b8af28038e38c58286b7f5d09cee07a" + "hash": "1e71a6cd21af513921408df289070468e0a90538c7b55934855aaba710099175" }, { "id": "TH.17", @@ -1033,7 +1033,7 @@ { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers accoount\n// and adds the NodeStaker to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeStaker object to must have a valid Staking Collection in order to receive the NodeStaker.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeStaker to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info for the specified node ID\")\n\n // Remove the NodeStaker from the authorizers StakingCollection.\n let nodeStaker \u003c- self.fromStakingCollectionRef.removeNode(nodeID: nodeID)\n\n // Deposit the NodeStaker to the receivers StakingCollection.\n self.toStakingCollectionCap.addNodeObject(\u003c- nodeStaker!, machineAccountInfo: machineAccountInfo)\n }\n}", "arguments": [ { "type": "String", @@ -1059,12 +1059,12 @@ } ], "network": "testnet", - "hash": "89a9b588f0a4905125247cde161ef2266a46a97823ec169467cff2bdc11d0a76" + "hash": "baed78fd47e1579f8fff8deba3060986cf79ed179027a094624da645612635d5" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .get\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)!\n .borrow()\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers accoount\n// and adds the NodeDelegator to another accounts Staking Collection\n// identified by the to Address.\n\ntransaction(nodeID: String, delegatorID: UInt32, to: Address) {\n let fromStakingCollectionRef: \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n // The account to transfer the NodeDelegator object to must have a valid Staking Collection in order to receive the NodeDelegator.\n if (!FlowStakingCollection.doesAccountHaveStakingCollection(address: to)) {\n panic(\"Destination account must have a Staking Collection set up.\")\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003c\u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n\n // Get the PublicAccount of the account to transfer the NodeDelegator to. \n let toAccount = getAccount(to)\n\n // Borrow a capability to the public methods available on the receivers StakingCollection.\n self.toStakingCollectionCap = toAccount.capabilities\n .borrow\u003c\u0026FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow ref to StakingCollection\")\n }\n\n execute {\n // Remove the NodeDelegator from the authorizers StakingCollection.\n let nodeDelegator \u003c- self.fromStakingCollectionRef.removeDelegator(nodeID: nodeID, delegatorID: delegatorID)\n\n // Deposit the NodeDelegator to the receivers StakingCollection.\n self.toStakingCollectionCap.addDelegatorObject(\u003c- nodeDelegator!)\n }\n}", "arguments": [ { "type": "String", @@ -1101,7 +1101,7 @@ } ], "network": "testnet", - "hash": "f148c526ed3d8e496c6757e2f71827cd3f5a7c475b98327aa4977e90a30d1907" + "hash": "d5f6d5d1bc21315467fdca5fb53255171c8355571241ce93937c8772fd8d01d4" }, { "id": "SCO.15", diff --git a/transactions/dkg/create_participant.cdc b/transactions/dkg/create_participant.cdc index 491b383bc..0ac19dfa1 100644 --- a/transactions/dkg/create_participant.cdc +++ b/transactions/dkg/create_participant.cdc @@ -3,8 +3,8 @@ import FlowDKG from 0xDKGADDRESS transaction(address: Address, nodeID: String) { prepare(signer: auth(SaveValue) &Account) { - let admin = getAccount(address).capabilities.get<&FlowDKG.Admin>(/public/dkgAdmin)! - .borrow() ?? panic("Could not borrow admin reference") + let admin = getAccount(address).capabilities.borrow<&FlowDKG.Admin>(/public/dkgAdmin) + ?? panic("Could not borrow admin reference") let dkgParticipant <- admin.createParticipant(nodeID: nodeID) diff --git a/transactions/flowToken/mint_tokens.cdc b/transactions/flowToken/mint_tokens.cdc index a70673f67..8a35bc804 100644 --- a/transactions/flowToken/mint_tokens.cdc +++ b/transactions/flowToken/mint_tokens.cdc @@ -16,8 +16,7 @@ transaction(recipient: Address, amount: UFix64) { ?? panic("Signer is not the token admin") self.tokenReceiver = getAccount(recipient) - .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! - .borrow() + .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) ?? panic("Unable to borrow receiver reference") } diff --git a/transactions/flowToken/scripts/get_balance.cdc b/transactions/flowToken/scripts/get_balance.cdc index b82a320a8..6f0e3b6f9 100644 --- a/transactions/flowToken/scripts/get_balance.cdc +++ b/transactions/flowToken/scripts/get_balance.cdc @@ -6,8 +6,7 @@ import FlowToken from "FlowToken" access(all) fun main(account: Address): UFix64 { let vaultRef = getAccount(account) - .capabilities.get<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance)! - .borrow() + .capabilities.borrow<&FlowToken.Vault{FungibleToken.Balance}>(/public/flowTokenBalance) ?? panic("Could not borrow Balance reference to the Vault") return vaultRef.balance diff --git a/transactions/flowToken/transfer_tokens.cdc b/transactions/flowToken/transfer_tokens.cdc index abe214856..a86c03f63 100644 --- a/transactions/flowToken/transfer_tokens.cdc +++ b/transactions/flowToken/transfer_tokens.cdc @@ -27,8 +27,7 @@ transaction(amount: UFix64, to: Address) { // Get a reference to the recipient's Receiver let receiverRef = getAccount(to) - .capabilities.get<&{FungibleToken.Receiver}>(/public/flowTokenReceiver)! - .borrow() + .capabilities.borrow<&{FungibleToken.Receiver}>(/public/flowTokenReceiver) ?? panic("Could not borrow receiver reference to the recipient's Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc b/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc index 3d10e79a5..05a98f576 100644 --- a/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc +++ b/transactions/idTableStaking/delegation/get_delegator_info_from_address.cdc @@ -5,8 +5,7 @@ import FlowIDTableStaking from "FlowIDTableStaking" access(all) fun main(address: Address): FlowIDTableStaking.DelegatorInfo { let delegator = getAccount(address) - .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator)! - .borrow() + .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>(/public/flowStakingDelegator) ?? panic("Could not borrow reference to delegator object") return FlowIDTableStaking.DelegatorInfo(nodeID: delegator.nodeID, delegatorID: delegator.id) diff --git a/transactions/idTableStaking/scripts/get_node_info_from_address.cdc b/transactions/idTableStaking/scripts/get_node_info_from_address.cdc index 12c5a7f72..a06714dca 100644 --- a/transactions/idTableStaking/scripts/get_node_info_from_address.cdc +++ b/transactions/idTableStaking/scripts/get_node_info_from_address.cdc @@ -5,8 +5,7 @@ import FlowIDTableStaking from "FlowIDTableStaking" access(all) fun main(address: Address): FlowIDTableStaking.NodeInfo { let nodeStaker = getAccount(address) - .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath)! - .borrow() + .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>(FlowIDTableStaking.NodeStakerPublicPath) ?? panic("Could not borrow reference to node staker object") return FlowIDTableStaking.NodeInfo(nodeID: nodeStaker.id) diff --git a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc index 3af5fe4f5..5a964bcac 100644 --- a/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc +++ b/transactions/lockedTokens/admin/admin_deposit_account_creator.cdc @@ -9,10 +9,9 @@ transaction(custodyProviderAddress: Address) { prepare(admin: auth(BorrowValue) &Account) { let capabilityReceiver = getAccount(custodyProviderAddress) - .capabilities.get<&LockedTokens.LockedAccountCreator>( + .capabilities.borrow<&LockedTokens.LockedAccountCreator>( LockedTokens.LockedAccountCreatorPublicPath - )! - .borrow() + ) ?? panic("Could not borrow capability receiver reference") let tokenAdminCollection = admin.capabilities.get<&LockedTokens.TokenAdminCollection>( diff --git a/transactions/lockedTokens/admin/check_main_registration.cdc b/transactions/lockedTokens/admin/check_main_registration.cdc index 4c783d7b9..b074ad81b 100644 --- a/transactions/lockedTokens/admin/check_main_registration.cdc +++ b/transactions/lockedTokens/admin/check_main_registration.cdc @@ -11,8 +11,7 @@ transaction(mainAccount: Address) { ?? panic("Could not borrow a reference to the locked token admin collection") let lockedAccountInfoRef = getAccount(mainAccount) - .capabilities.get<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath)! - .borrow() + .capabilities.borrow<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) ?? panic("Could not borrow a reference to public LockedAccountInfo") let lockedAccount = lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc index 634bbbb0a..98ab5d9ff 100644 --- a/transactions/lockedTokens/admin/deposit_locked_tokens.cdc +++ b/transactions/lockedTokens/admin/deposit_locked_tokens.cdc @@ -36,10 +36,9 @@ transaction(to: Address, amount: UFix64) { // Get a reference to the recipient's Receiver let receiverRef = recipient - .capabilities.get<&{FungibleToken.Receiver}>( + .capabilities.borrow<&{FungibleToken.Receiver}>( /public/lockedFlowTokenReceiver - )! - .borrow() + ) ?? panic("Could not borrow receiver reference to the recipient's locked Vault") // Deposit the withdrawn tokens in the recipient's receiver diff --git a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc index 865ae6183..844c1a754 100644 --- a/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc +++ b/transactions/lockedTokens/admin/get_unlocking_bad_accounts.cdc @@ -6,7 +6,7 @@ access(all) fun main(tokenAdmin: Address): {Address: UFix64} { let account = getAccount(tokenAdmin) - let dictionaryReference = account.capabilities.get<&{Address: UFix64}>(/public/unlockingBadAccounts)!.borrow() + let dictionaryReference = account.capabilities.borrow<&{Address: UFix64}>(/public/unlockingBadAccounts) ?? panic("Could not get bad accounts dictionary") for address in dictionaryReference.keys { diff --git a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc index 2b6e906b8..e7e0ab18d 100644 --- a/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc +++ b/transactions/lockedTokens/admin/unlock_tokens_for_multiple_accounts.cdc @@ -26,8 +26,7 @@ transaction(unlockInfo: {Address: UFix64}) { // revert the entire transaction if it fails // to get the information for a single address if let lockedAccountInfoRef = getAccount(unlockedAddress) - .capabilities.get<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath)! - .borrow() { + .capabilities.borrow<&LockedTokens.TokenHolder>(LockedTokens.LockedAccountInfoPublicPath) { let lockedAccountAddress = lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/delegator/get_delegator_id.cdc b/transactions/lockedTokens/delegator/get_delegator_id.cdc index a3037f5f9..b0a70c04d 100644 --- a/transactions/lockedTokens/delegator/get_delegator_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_id.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UInt32 { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getDelegatorID()! diff --git a/transactions/lockedTokens/delegator/get_delegator_info.cdc b/transactions/lockedTokens/delegator/get_delegator_info.cdc index dbffec925..d3bd53707 100644 --- a/transactions/lockedTokens/delegator/get_delegator_info.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_info.cdc @@ -10,12 +10,12 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { let pubAccount = getAccount(account) - let delegatorCap = pubAccount - .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>( + let optionalDelegatorRef = pubAccount + .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator - )! + ) - if let delegatorRef = delegatorCap.borrow() { + if let delegatorRef = optionalDelegatorRef { let info = FlowIDTableStaking.DelegatorInfo( nodeID: delegatorRef.nodeID, delegatorID: delegatorRef.id @@ -23,12 +23,12 @@ access(all) fun main(account: Address): [FlowIDTableStaking.DelegatorInfo] { delegatorInfoArray.append(info) } - let lockedAccountInfoCap = pubAccount - .capabilities.get<&LockedTokens.TokenHolder>( + let optionalLockedAccountInfoRef = pubAccount + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! + ) - if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { + if let lockedAccountInfoRef = optionalLockedAccountInfoRef { let nodeID = lockedAccountInfoRef.getDelegatorNodeID() let delegatorID = lockedAccountInfoRef.getDelegatorID() diff --git a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc index 3b50d3989..afdf3bb7c 100644 --- a/transactions/lockedTokens/delegator/get_delegator_node_id.cdc +++ b/transactions/lockedTokens/delegator/get_delegator_node_id.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getDelegatorNodeID()! diff --git a/transactions/lockedTokens/staker/get_node_id.cdc b/transactions/lockedTokens/staker/get_node_id.cdc index 9ff08af32..e69e1bb97 100644 --- a/transactions/lockedTokens/staker/get_node_id.cdc +++ b/transactions/lockedTokens/staker/get_node_id.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): String { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getNodeID()! diff --git a/transactions/lockedTokens/staker/get_staker_info.cdc b/transactions/lockedTokens/staker/get_staker_info.cdc index e13cc0c26..aa7ca7403 100644 --- a/transactions/lockedTokens/staker/get_staker_info.cdc +++ b/transactions/lockedTokens/staker/get_staker_info.cdc @@ -10,22 +10,22 @@ access(all) fun main(account: Address): [FlowIDTableStaking.NodeInfo] { let pubAccount = getAccount(account) - let nodeStakerCap = pubAccount - .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>( + let optionalNodeStakerRef = pubAccount + .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath - )! + ) - if let nodeStakerRef = nodeStakerCap.borrow() { + if let nodeStakerRef = optionalNodeStakerRef { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) nodeInfoArray.append(info) } - let lockedAccountInfoCap = pubAccount - .capabilities.get<&LockedTokens.TokenHolder>( + let optionalLockedAccountInfoRef = pubAccount + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! + ) - if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { + if let lockedAccountInfoRef = optionalLockedAccountInfoRef { if let nodeID = lockedAccountInfoRef.getNodeID() { let info = FlowIDTableStaking.NodeInfo(nodeID: nodeID) nodeInfoArray.append(info) diff --git a/transactions/lockedTokens/user/get_locked_account_address.cdc b/transactions/lockedTokens/user/get_locked_account_address.cdc index 401c45ed5..d42bd13e4 100644 --- a/transactions/lockedTokens/user/get_locked_account_address.cdc +++ b/transactions/lockedTokens/user/get_locked_account_address.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): Address { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getLockedAccountAddress() diff --git a/transactions/lockedTokens/user/get_locked_account_balance.cdc b/transactions/lockedTokens/user/get_locked_account_balance.cdc index 0292f8c79..5e7c42772 100644 --- a/transactions/lockedTokens/user/get_locked_account_balance.cdc +++ b/transactions/lockedTokens/user/get_locked_account_balance.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc index 78f723a5c..a62cfe69b 100644 --- a/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc +++ b/transactions/lockedTokens/user/get_multiple_unlock_limits.cdc @@ -6,10 +6,9 @@ access(all) fun main(accounts: [Address]): [UFix64] { for account in accounts { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") limits.append(lockedAccountInfoRef.getUnlockLimit()) diff --git a/transactions/lockedTokens/user/get_total_balance.cdc b/transactions/lockedTokens/user/get_total_balance.cdc index 691886645..3e30d7711 100644 --- a/transactions/lockedTokens/user/get_total_balance.cdc +++ b/transactions/lockedTokens/user/get_total_balance.cdc @@ -21,30 +21,28 @@ access(all) fun main(address: Address): UFix64 { let account = getAccount(address) - if let vaultRef = account.capabilities.get<&FlowToken.Vault>(/public/flowTokenBalance)! - .borrow() - { + if let vaultRef = account.capabilities.borrow<&FlowToken.Vault>(/public/flowTokenBalance) { sum = sum + vaultRef.balance } // Get token balance from the unlocked account's node staking pools - let nodeStakerCap = account - .capabilities.get<&{FlowIDTableStaking.NodeStakerPublic}>( + let optionalNodeStakerRef = account + .capabilities.borrow<&{FlowIDTableStaking.NodeStakerPublic}>( FlowIDTableStaking.NodeStakerPublicPath - )! + ) - if let nodeStakerRef = nodeStakerCap.borrow() { + if let nodeStakerRef = optionalNodeStakerRef { let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeStakerRef.id) sum = sum + nodeInfo.totalTokensInRecord() } // Get token balance from the unlocked account's delegator staking pools - let delegatorCap = account - .capabilities.get<&{FlowIDTableStaking.NodeDelegatorPublic}>( + let optionalDelegatorRef = account + .capabilities.borrow<&{FlowIDTableStaking.NodeDelegatorPublic}>( /public/flowStakingDelegator )! - if let delegatorRef = delegatorCap.borrow() { + if let delegatorRef = optionalDelegatorRef { let delegatorInfo = FlowIDTableStaking.DelegatorInfo( nodeID: delegatorRef.nodeID, delegatorID: delegatorRef.id @@ -54,12 +52,12 @@ access(all) fun main(address: Address): UFix64 { } // Get the locked account public capability - let lockedAccountInfoCap = account + let optionalLockedAccountInfoRef = account .capabilities.get<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath )! - if let lockedAccountInfoRef = lockedAccountInfoCap.borrow() { + if let lockedAccountInfoRef = optionalLockedAccountInfoRef { // Add the locked account balance sum = sum + lockedAccountInfoRef.getLockedAccountBalance() diff --git a/transactions/lockedTokens/user/get_unlock_limit.cdc b/transactions/lockedTokens/user/get_unlock_limit.cdc index 994b11e0f..94ee17416 100644 --- a/transactions/lockedTokens/user/get_unlock_limit.cdc +++ b/transactions/lockedTokens/user/get_unlock_limit.cdc @@ -3,10 +3,9 @@ import LockedTokens from 0xLOCKEDTOKENADDRESS access(all) fun main(account: Address): UFix64 { let lockedAccountInfoRef = getAccount(account) - .capabilities.get<&LockedTokens.TokenHolder>( + .capabilities.borrow<&LockedTokens.TokenHolder>( LockedTokens.LockedAccountInfoPublicPath - )! - .borrow() + ) ?? panic("Could not borrow a reference to public LockedAccountInfo") return lockedAccountInfoRef.getUnlockLimit() diff --git a/transactions/quorumCertificate/create_voter.cdc b/transactions/quorumCertificate/create_voter.cdc index 4c16c9cb7..f01320bcd 100644 --- a/transactions/quorumCertificate/create_voter.cdc +++ b/transactions/quorumCertificate/create_voter.cdc @@ -17,8 +17,8 @@ transaction(adminAddress: Address, nodeID: String, stakingKey: String) { // Get the admin reference from the admin account let admin = getAccount(adminAddress) - let adminRef = admin.capabilities.get<&FlowClusterQC.Admin>(/public/voterCreator)! - .borrow() ?? panic("Could not borrow a reference to the admin") + let adminRef = admin.capabilities.borrow<&FlowClusterQC.Admin>(/public/voterCreator) + ?? panic("Could not borrow a reference to the admin") // Create a voter object and save it to storage let voter <- adminRef.createVoter(nodeID: nodeID, stakingKey: stakingKey) diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index f75695531..5254723ef 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -23,8 +23,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .get<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath)! - .borrow() + .borrow<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") } diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index 89be4bf6a..bf9f0de68 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -23,8 +23,7 @@ transaction(nodeID: String, to: Address) { // Borrow a capability to the public methods available on the receivers StakingCollection. self.toStakingCollectionCap = toAccount.capabilities - .get<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath)! - .borrow() + .borrow<&FlowStakingCollection.StakingCollection{FlowStakingCollection.StakingCollectionPublic}>(FlowStakingCollection.StakingCollectionPublicPath) ?? panic("Could not borrow ref to StakingCollection") let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID] diff --git a/transactions/stakingProxy/get_node_info.cdc b/transactions/stakingProxy/get_node_info.cdc index 50f0b70d8..5818d36a1 100644 --- a/transactions/stakingProxy/get_node_info.cdc +++ b/transactions/stakingProxy/get_node_info.cdc @@ -2,12 +2,10 @@ import StakingProxy from 0xSTAKINGPROXYADDRESS access(all) fun main(account: Address, nodeID: String): StakingProxy.NodeInfo { - let proxyCapability = getAccount(account) - .capabilities.get<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + let proxyRef = getAccount(account) + .capabilities.borrow<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( StakingProxy.NodeOperatorCapabilityPublicPath - )! - - let proxyRef = proxyCapability.borrow() + ) ?? panic("Could not borrow public reference to staking proxy") return proxyRef.getNodeInfo(nodeID: nodeID)! diff --git a/transactions/stakingProxy/register_node.cdc b/transactions/stakingProxy/register_node.cdc index 1976bda66..20a3c0f2e 100644 --- a/transactions/stakingProxy/register_node.cdc +++ b/transactions/stakingProxy/register_node.cdc @@ -11,9 +11,10 @@ transaction(address: Address, id: String, amount: UFix64) { } execute { - let nodeOperatorRef = getAccount(address).capabilities.get - <&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}> - (StakingProxy.NodeOperatorCapabilityPublicPath)!.borrow() + let nodeOperatorRef = getAccount(address).capabilities + .borrow<&StakingProxy.NodeStakerProxyHolder{StakingProxy.NodeStakerProxyHolderPublic}>( + StakingProxy.NodeOperatorCapabilityPublicPath + ) ?? panic("Could not borrow node operator public capability") let nodeInfo = nodeOperatorRef.getNodeInfo(nodeID: id)