diff --git a/contracts/FlowStakingCollection.cdc b/contracts/FlowStakingCollection.cdc index 3687a70b..4d10c1ce 100644 --- a/contracts/FlowStakingCollection.cdc +++ b/contracts/FlowStakingCollection.cdc @@ -60,7 +60,8 @@ access(all) contract FlowStakingCollection { init(nodeID: String, role: UInt8, machineAccountVaultProvider: Capability) { pre { - machineAccountVaultProvider.check(): "Invalid Flow Token Vault Provider" + machineAccountVaultProvider.check(): + "FlowStakingCollection.MachineAccountInfo.init: Invalid Flow Token Vault Provider." } self.nodeID = nodeID self.role = role @@ -135,7 +136,9 @@ access(all) contract FlowStakingCollection { tokenHolder: Capability? ) { pre { - unlockedVault.check(): "Invalid FlowToken.Vault capability" + unlockedVault.check(): + "FlowStakingCollection.StakingCollection.init: Cannot Initialize a Staking Collection! " + .concat("The provided FlowToken Vault capability with withdraw entitlements is invalid.") } self.unlockedVault = unlockedVault @@ -162,6 +165,25 @@ access(all) contract FlowStakingCollection { self.machineAccounts = {} } + /// Gets a standard error message to show when the requested staker + /// is not controlled by the staking collection + /// + /// @param nodeID: The ID of the requested node + /// @param delegatorID: The ID of the requested delegator + access(all) view fun getStakerDoesntExistInCollectionError(funcName: String, nodeID: String, delegatorID: UInt32?): String { + let errorBeginning = "FlowStakingCollection.StakingCollection.".concat(funcName).concat(": ") + if let delegator = delegatorID { + return errorBeginning.concat("The specified delegator with node ID ") + .concat(nodeID).concat(" and delegatorID ").concat(delegator.toString()) + .concat(" does not exist in the owner's collection. ") + .concat("Make sure that the IDs you entered correspond to a delegator that is controlled by this staking collection.") + } else { + return errorBeginning.concat("The specified node with ID ") + .concat(nodeID).concat(" does not exist in the owner's collection. ") + .concat("Make sure that the ID you entered corresponds to a node that is controlled by this staking collection.") + } + } + /// Called when the collection is destroyed via `Burner.burn()` access(contract) fun burnCallback() { @@ -192,7 +214,11 @@ access(all) contract FlowStakingCollection { assert( amount <= lockedBalance + unlockedBalance, - message: "Insufficient total available Flow balance" + message: "FlowStakingCollection.StakingCollection.getTokens: Cannot get tokens to stake! " + .concat("The amount of FLOW requested to use, ") + .concat(amount.toString()).concat(", is more than the sum of ") + .concat(" locked and unlocked FLOW, ").concat((lockedBalance+unlockedBalance).toString()) + .concat(", in the owner's accounts.") ) // If all the tokens can be removed from locked, withdraw and return them @@ -230,7 +256,11 @@ access(all) contract FlowStakingCollection { assert( amount <= unlockedBalance, - message: "Insufficient total Flow balance" + message: "FlowStakingCollection.StakingCollection.getTokens: Cannot get tokens to stake! " + .concat("The amount of FLOW requested to use, ") + .concat(amount.toString()).concat(", is more than the amount of FLOW, ") + .concat((unlockedBalance).toString()) + .concat(", in the owner's accounts.") ) self.unlockedTokensUsed = self.unlockedTokensUsed + amount @@ -245,7 +275,8 @@ access(all) contract FlowStakingCollection { pre { // This error should never be triggered in production becasue the tokens used fields // should be properly managed by all the other functions - from.balance <= self.unlockedTokensUsed + self.lockedTokensUsed: "Cannot deposit more than is already used" + from.balance <= self.unlockedTokensUsed + self.lockedTokensUsed: + "FlowStakingCollection.StakingCollection.depositTokens: Cannot deposit more FLOW than is already used" } let unlockedVault = self.unlockedVault.borrow()! @@ -350,8 +381,12 @@ access(all) contract FlowStakingCollection { /// because the operator may want to keep it the same access(CollectionOwner) fun removeNode(nodeID: String): @FlowIDTableStaking.NodeStaker? { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified node does not exist in this collection" - self.lockedTokensUsed == UFix64(0.0): "Cannot remove node if locked tokens are used" + self.doesStakeExist(nodeID: nodeID, delegatorID: nil): + self.getStakerDoesntExistInCollectionError(funcName: "removeNode", nodeID: nodeID, delegatorID: nil) + self.lockedTokensUsed == UFix64(0.0): + "FlowStakingCollection.StakingCollection.removeNode: Cannot remove a node from the collection " + .concat("if the collection manages any locked tokens. This is to prevent locked tokens ") + .concat("from being unlocked and withdrawn before their allotted unlocking time.") } if self.nodeStakers[nodeID] != nil { @@ -380,8 +415,12 @@ access(all) contract FlowStakingCollection { /// If the user has used any locked tokens, removing NodeDelegator objects is not allowed. access(CollectionOwner) fun removeDelegator(nodeID: String, delegatorID: UInt32): @FlowIDTableStaking.NodeDelegator? { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified delegator does not exist in this collection" - self.lockedTokensUsed == UFix64(0.0): "Cannot remove delegator if locked tokens are used" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "removeDelegator", nodeID: nodeID, delegatorID: delegatorID) + self.lockedTokensUsed == UFix64(0.0): + "FlowStakingCollection.StakingCollection.removeDelegator: Cannot remove a delegator from the collection " + .concat("if the collection manages any locked tokens. This is to prevent locked tokens ") + .concat("from being unlocked and withdrawn before their allotted unlocking time.") } if self.nodeDelegators[nodeID] != nil { @@ -404,11 +443,16 @@ access(all) contract FlowStakingCollection { return <- nodeDelegator } else { - panic("Expected delegatorID does not correspond to the delegator in the Staking Collection.") + panic("FlowStakingCollection.StakingCollection.removeDelegator: " + .concat("Expected delegatorID ").concat(delegatorID.toString()) + .concat(" does not correspond to the Staking Collection's delegator ID ") + .concat(delegatorRef.id.toString())) } } else { // The function does not allow for removing a NodeDelegator stored in the locked account, if one exists. - panic("Cannot remove delegator stored in locked account.") + panic("FlowStakingCollection.StakingCollection.removeDelegator: " + .concat("Cannot remove a delegator with ID ").concat(delegatorID.toString()) + .concat(" because it is stored in the locked account.")) } } @@ -446,7 +490,9 @@ access(all) contract FlowStakingCollection { self.nodeStakers[id] <-! nodeStaker let nodeReference = self.borrowNode(id) - ?? panic("Could not borrow node reference") + ?? panic("FlowStakingCollection.StakingCollection.removeDelegator: " + .concat("Could not borrow a reference to the newly created node with ID") + .concat(id).concat(".")) let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeReference.id) @@ -536,7 +582,8 @@ access(all) contract FlowStakingCollection { ) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Cannot add a machine account record for a node that you do not own" + self.doesStakeExist(nodeID: nodeID, delegatorID: nil): + self.getStakerDoesntExistInCollectionError(funcName: "addMachineAccountRecord", nodeID: nodeID, delegatorID: nil) } let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeID) @@ -545,19 +592,25 @@ access(all) contract FlowStakingCollection { if nodeInfo.role == FlowEpoch.NodeRole.Collector.rawValue { let qcVoterRef = machineAccount.storage.borrow<&FlowClusterQC.Voter>(from: FlowClusterQC.VoterStoragePath) - ?? panic("Could not access QC Voter object from the provided machine account") + ?? panic("FlowStakingCollection.StakingCollection.addMachineAccountRecord: " + .concat("Could not access a QC Voter object from the provided machine account.")) assert( nodeID == qcVoterRef.nodeID, - message: "QC Voter Object in machine account does not match machine node ID" + message: "FlowStakingCollection.StakingCollection.addMachineAccountRecord: " + .concat("The QC Voter Object in the machine account with node ID ").concat(qcVoterRef.nodeID) + .concat(" does not match the Staking Collection's specified node ID ").concat(nodeID) ) } else if nodeInfo.role == FlowEpoch.NodeRole.Consensus.rawValue { let dkgParticipantRef = machineAccount.storage.borrow<&FlowDKG.Participant>(from: FlowDKG.ParticipantStoragePath) - ?? panic("Could not access DKG Participant object from the provided machine account") + ?? panic("FlowStakingCollection.StakingCollection.addMachineAccountRecord: " + .concat("Could not access a DKG Participant object from the provided machine account.")) assert( nodeID == dkgParticipantRef.nodeID, - message: "DKG Participant Object in machine account does not match machine node ID" + message: "FlowStakingCollection.StakingCollection.addMachineAccountRecord: " + .concat("The DKG Participant Object in the machine account with node ID ").concat(dkgParticipantRef.nodeID) + .concat(" does not match the Staking Collection's specified node ID ").concat(nodeID) ) } @@ -579,7 +632,8 @@ access(all) contract FlowStakingCollection { /// to create their machine account with their node access(CollectionOwner) fun createMachineAccountForExistingNode(nodeID: String, payer: auth(BorrowValue) &Account): auth(Storage, Capabilities, Contracts, Keys, Inbox) &Account? { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: nil) + self.doesStakeExist(nodeID: nodeID, delegatorID: nil): + self.getStakerDoesntExistInCollectionError(funcName: "createMachineAccountForExistingNode", nodeID: nodeID, delegatorID: nil) } let nodeInfo = FlowIDTableStaking.NodeInfo(nodeID: nodeID) @@ -594,7 +648,8 @@ access(all) contract FlowStakingCollection { let lockedTokenManager = tokenHolderObj.borrow()!.borrowTokenManager() let lockedNodeReference = lockedTokenManager.borrowNode() - ?? panic("Could not borrow a node reference from the locked account") + ?? panic("FlowStakingCollection.StakingCollection.createMachineAccountForExistingNode: " + .concat("Could not borrow a node reference from the locked account")) return self.registerMachineAccount(nodeReference: lockedNodeReference, payer: payer) } @@ -606,11 +661,13 @@ access(all) contract FlowStakingCollection { /// Allows the owner to withdraw any available FLOW from their machine account access(CollectionOwner) fun withdrawFromMachineAccount(nodeID: String, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: nil): + self.getStakerDoesntExistInCollectionError(funcName: "withdrawFromMachineAccount", nodeID: nodeID, delegatorID: nil) } if let machineAccountInfo = self.machineAccounts[nodeID] { let vaultRef = machineAccountInfo.machineAccountVaultProvider.borrow() - ?? panic("Could not borrow reference to machine account vault") + ?? panic("FlowStakingCollection.StakingCollection.withdrawFromMachineAccount: " + .concat("Could not borrow reference to machine account vault.")) let tokens <- vaultRef.withdraw(amount: amount) @@ -618,7 +675,9 @@ access(all) contract FlowStakingCollection { unlockedVault.deposit(from: <-tokens) } else { - panic("Could not find a machine account for the specified node ID") + panic("FlowStakingCollection.StakingCollection.withdrawFromMachineAccount: " + .concat("Could not find a machine account for the specified node ID ") + .concat(nodeID).concat(".")) } } @@ -627,7 +686,9 @@ access(all) contract FlowStakingCollection { let delegatorIDs = self.getDelegatorIDs() for idInfo in delegatorIDs { if idInfo.delegatorNodeID == nodeID { - panic("Cannot register a delegator for a node that is already being delegated to") + panic("FlowStakingCollection.StakingCollection.registerDelegator: " + .concat("Cannot register a delegator for node ").concat(nodeID) + .concat(" because that node is already being delegated to from this Staking Collection.")) } } @@ -674,7 +735,8 @@ access(all) contract FlowStakingCollection { /// Updates the stored networking address for the specified node access(CollectionOwner) fun updateNetworkingAddress(nodeID: String, newAddress: String) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: nil): + self.getStakerDoesntExistInCollectionError(funcName: "updateNetworkingAddress", nodeID: nodeID, delegatorID: nil) } // If the node is stored in the collection, borrow it @@ -690,7 +752,8 @@ access(all) contract FlowStakingCollection { /// Function to stake new tokens for an existing Stake or Delegation record in the StakingCollection access(CollectionOwner) fun stakeNewTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "stakeNewTokens", nodeID: nodeID, delegatorID: delegatorID) } // If staking as a delegator, use the delegate functionality @@ -733,7 +796,8 @@ access(all) contract FlowStakingCollection { /// Function to stake unstaked tokens for an existing Stake or Delegation record in the StakingCollection access(CollectionOwner) fun stakeUnstakedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "stakeUnstakedTokens", nodeID: nodeID, delegatorID: delegatorID) } if let delegatorID = delegatorID { @@ -755,7 +819,8 @@ access(all) contract FlowStakingCollection { /// Function to stake rewarded tokens for an existing Stake or Delegation record in the StakingCollection access(CollectionOwner) fun stakeRewardedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "stakeRewardedTokens", nodeID: nodeID, delegatorID: delegatorID) } if let delegatorID = delegatorID { @@ -782,7 +847,8 @@ access(all) contract FlowStakingCollection { /// Function to request tokens to be unstaked for an existing Stake or Delegation record in the StakingCollection access(CollectionOwner) fun requestUnstaking(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "requestUnstaking", nodeID: nodeID, delegatorID: delegatorID) } if let delegatorID = delegatorID { @@ -805,7 +871,8 @@ access(all) contract FlowStakingCollection { /// Only available for node operators access(CollectionOwner) fun unstakeAll(nodeID: String) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: nil): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: nil): + self.getStakerDoesntExistInCollectionError(funcName: "unstakeAll", nodeID: nodeID, delegatorID: nil) } if let node = self.borrowNode(nodeID) { @@ -819,7 +886,8 @@ access(all) contract FlowStakingCollection { /// Function to withdraw unstaked tokens for an existing Stake or Delegation record in the StakingCollection access(CollectionOwner) fun withdrawUnstakedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "withdrawUnstakedTokens", nodeID: nodeID, delegatorID: delegatorID) } if let delegatorID = delegatorID { @@ -842,7 +910,8 @@ access(all) contract FlowStakingCollection { /// Function to withdraw rewarded tokens for an existing Stake or Delegation record in the StakingCollection access(CollectionOwner) fun withdrawRewardedTokens(nodeID: String, delegatorID: UInt32?, amount: UFix64) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "withdrawRewardedTokens", nodeID: nodeID, delegatorID: delegatorID) } if let delegatorID = delegatorID { @@ -886,7 +955,8 @@ access(all) contract FlowStakingCollection { /// or delegator object from the StakingCollection. access(CollectionOwner) fun closeStake(nodeID: String, delegatorID: UInt32?) { pre { - self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): "Specified stake does not exist in this collection" + self.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID): + self.getStakerDoesntExistInCollectionError(funcName: "closeStake", nodeID: nodeID, delegatorID: delegatorID) } if let delegatorID = delegatorID { @@ -894,7 +964,8 @@ access(all) contract FlowStakingCollection { assert( delegatorInfo.tokensStaked + delegatorInfo.tokensCommitted + delegatorInfo.tokensUnstaking == 0.0, - message: "Cannot close a delegation until all tokens have been withdrawn, or moved to a withdrawable state." + message: "FlowStakingCollection.StakingCollection.closeStake: " + .concat("Cannot close a delegation until all tokens have been withdrawn, or moved to a withdrawable state.") ) if delegatorInfo.tokensUnstaked > 0.0 { @@ -913,7 +984,7 @@ access(all) contract FlowStakingCollection { let delegator <- tokenManager.removeDelegator() destroy delegator } else { - panic("Token Holder capability needed and not found.") + panic("FlowStakingCollection.StakingCollection.closeStake: Token Holder capability needed and not found.") } emit DelegatorRemovedFromStakingCollection(nodeID: nodeID, delegatorID: delegatorID, address: self.owner?.address) @@ -924,7 +995,7 @@ access(all) contract FlowStakingCollection { /// Set the machine account for this node to `nil` because it no longer exists if let machineAccountInfo = self.machineAccounts[nodeID] { let vaultRef = machineAccountInfo.machineAccountVaultProvider.borrow() - ?? panic("Could not borrow vault ref from machine account") + ?? panic("FlowStakingCollection.StakingCollection.closeStake: Could not borrow vault ref from machine account") let unlockedVault = self.unlockedVault!.borrow()! var availableBalance: UFix64 = 0.0 @@ -940,7 +1011,7 @@ access(all) contract FlowStakingCollection { assert( stakeInfo.tokensStaked + stakeInfo.tokensCommitted + stakeInfo.tokensUnstaking == 0.0, - message: "Cannot close a stake until all tokens have been withdrawn, or moved to a withdrawable state." + message: "FlowStakingCollection.StakingCollection.closeStake: Cannot close a stake until all tokens have been withdrawn, or moved to a withdrawable state." ) if stakeInfo.tokensUnstaked > 0.0 { @@ -959,7 +1030,7 @@ access(all) contract FlowStakingCollection { let staker <- tokenManager.removeNode() destroy staker } else { - panic("Token Holder capability needed and not found.") + panic("FlowStakingCollection.StakingCollection.closeStake: Token Holder capability needed and not found.") } emit NodeRemovedFromStakingCollection(nodeID: nodeID, role: stakeInfo.role, address: self.owner?.address) @@ -1075,31 +1146,31 @@ access(all) contract FlowStakingCollection { // Getter functions for accounts StakingCollection information /// Function to get see if a node or delegator exists in an accounts staking collection - access(all) fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { + access(all) view fun doesStakeExist(address: Address, nodeID: String, delegatorID: UInt32?): Bool { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.doesStakeExist(nodeID: nodeID, delegatorID: delegatorID) } /// Function to get the unlocked tokens used amount for an account - access(all) fun getUnlockedTokensUsed(address: Address): UFix64 { + access(all) view fun getUnlockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.unlockedTokensUsed } /// Function to get the locked tokens used amount for an account - access(all) fun getLockedTokensUsed(address: Address): UFix64 { + access(all) view fun getLockedTokensUsed(address: Address): UFix64 { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.lockedTokensUsed } @@ -1109,7 +1180,7 @@ access(all) contract FlowStakingCollection { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.getNodeIDs() } @@ -1119,7 +1190,7 @@ access(all) contract FlowStakingCollection { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.getDelegatorIDs() } @@ -1129,7 +1200,7 @@ access(all) contract FlowStakingCollection { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.getAllNodeInfo() } @@ -1139,7 +1210,7 @@ access(all) contract FlowStakingCollection { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.getAllDelegatorInfo() } @@ -1149,19 +1220,36 @@ access(all) contract FlowStakingCollection { let account = getAccount(address) let stakingCollectionRef = account.capabilities.borrow<&StakingCollection>(self.StakingCollectionPublicPath) - ?? panic("Could not borrow ref to StakingCollection") + ?? panic(self.getCollectionMissingError(address)) return stakingCollectionRef.getMachineAccounts() } /// Determines if an account is set up with a Staking Collection - access(all) fun doesAccountHaveStakingCollection(address: Address): Bool { + access(all) view fun doesAccountHaveStakingCollection(address: Address): Bool { let account = getAccount(address) return account.capabilities .get<&StakingCollection>(self.StakingCollectionPublicPath) .check() } + /// Gets a standard error message for when a signer does not store a staking collection + /// + /// @param account: The account address if talking about an account that is not the signer. + /// If referring to the signer, leave this argument as `nil`. + access(all) view fun getCollectionMissingError(_ account: Address?): String { + if let address = account { + return "The account ".concat(address.toString()) + .concat("does not store a Staking Collection object at the path ") + .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) + .concat(". They must initialize their account with this object first!") + } else { + return "The signer does not store a Staking Collection object at the path " + .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) + .concat(". The signer must initialize their account with this object first!") + } + } + /// Creates a brand new empty staking collection resource and returns it to the caller access(all) fun createStakingCollection( unlockedVault: Capability, diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 1d5725ba..affe30b3 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -3,7 +3,7 @@ // FlowFees.cdc (9.634kB) // FlowIDTableStaking.cdc (101.556kB) // FlowServiceAccount.cdc (8.509kB) -// FlowStakingCollection.cdc (56.819kB) +// FlowStakingCollection.cdc (64.095kB) // FlowStorageFees.cdc (9.13kB) // FlowToken.cdc (13.18kB) // LockedTokens.cdc (32.558kB) @@ -142,7 +142,7 @@ func flowserviceaccountCdc() (*asset, error) { return a, nil } -var _flowstakingcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x73\x1b\x37\xd6\xe0\xbb\x7e\xc5\xb1\x1f\x1c\x69\x42\x51\xa9\xdd\xad\xad\x2d\x95\x14\x47\xb1\x6c\x8f\xca\x89\xed\xf1\x65\xf2\x90\x9a\x4a\xc0\x6e\x50\xec\x51\xb3\xc1\x34\x40\x29\x5c\x8f\xfe\xfb\x57\xb8\xdf\xfb\x42\x51\xb2\x53\x63\x3d\xd8\x12\x09\x1c\x00\xe7\x8e\x83\x83\x83\xa3\xbf\xed\xed\x01\x00\xbc\xa8\xc9\xcd\x7b\x86\xae\xaa\xe6\xf2\x19\xa9\x6b\x5c\xb0\x8a\x34\xf2\xab\x0f\x8b\x8a\x42\x41\x1a\xd6\xa2\x82\x41\x89\xe7\x55\x83\x29\x20\x28\x4c\x3b\x98\x93\x16\xa8\xec\x0d\xa8\x29\xa1\xc4\x35\xbe\x44\x8c\xff\x49\x66\xff\xc6\x05\xa3\x02\xd2\xcd\xa2\x2a\x16\x80\xea\x9a\xdc\x50\x58\x53\xdc\x52\x60\x44\x74\xc4\x6e\x37\x2c\xe0\x21\x0a\x4b\xd4\x6c\xa0\x21\x25\x1f\x8e\x02\x5b\xe0\x0d\xdc\xa0\x86\x41\xd5\x00\x02\x5a\x35\x97\x35\x06\x54\x14\x64\xdd\xb0\xa9\x18\xe0\x82\x81\x98\xeb\x72\x85\x58\x35\xab\x31\xdc\x54\x6c\xc1\x3b\x42\x4d\x8a\x2b\x5c\x02\x23\x57\xb8\xd1\x7d\x80\x62\xb6\x5e\x4d\xe5\x2a\xdf\x63\x2c\x1a\x92\x66\x5e\x93\x9b\x23\xfe\xcf\x61\x41\x5a\x7c\xa8\x57\x4e\xe1\xdd\xf3\xb3\xf3\x9f\x9f\x8b\xc9\x2d\x49\x8b\x61\x51\x5d\x2e\xa0\xc6\xd7\xb8\x86\xaa\x99\x93\x76\x89\x04\x32\xd0\x8c\xac\x99\x80\xa5\x51\x62\x31\xc5\x07\xfb\xdb\xd1\xde\x5e\xb5\x5c\x91\x96\xc1\x8b\x75\x73\xc9\xe7\xf9\x41\x4c\x6b\xde\x92\x25\x3c\xf6\x3e\x7b\x6c\x5a\xd6\xe4\xc6\x6b\xa5\xff\xf6\x5a\x5c\x9c\x7f\x40\xb3\x1a\x2b\x42\x3a\x4d\xfd\x2f\x4c\x9f\x9f\x04\x56\x04\x1c\xaa\x5a\xbb\x1f\x79\xb0\xdf\x33\xd2\xa2\x4b\xfc\x02\x63\xea\x00\x76\x3e\xf5\x5a\x3f\xab\xd7\x94\xe1\xf6\x1f\xcf\x9c\xb6\xe6\x33\xaf\xe5\xf9\xab\x97\x4e\x9b\xf3\x57\x2f\xbd\x6f\x9f\xaf\x48\xb1\x70\xbe\x17\x7f\x9b\x16\x3f\xae\xdb\x06\xb7\xea\x6b\xf9\xc7\xe3\xbd\x3d\x54\x14\x98\xd2\x7d\x54\xd7\x07\x96\x6f\x93\x0c\x0e\x9f\x24\xf1\x8f\x8e\x8e\xe0\x4c\x31\xc5\x0a\xb1\x85\x64\x57\x17\x4e\x8d\x19\x44\xdd\xd5\xe2\xdf\x22\xb6\x38\x06\xe7\x8f\x61\xbd\xdf\xb6\xd5\x35\x62\xaa\xb7\xf3\xc7\xc0\xde\xeb\x59\x5d\x15\xaa\xb3\xf9\xdd\x2e\xe7\xf9\x35\x6e\x58\xbc\x0e\xcc\x3f\x86\xd7\xa4\xc4\x67\x65\xc9\xe9\x1c\x01\xde\xe7\x02\x77\x71\xce\x17\xd4\x56\xcd\xe5\x04\x5a\x52\xe3\x63\xf8\x78\xd1\xb0\xff\x37\x01\xb4\xe4\x48\x7a\x46\x96\xcb\x8a\x31\x5c\x1e\xc3\xc7\x17\xd5\x9f\xff\xf7\xff\x4c\x00\x95\x65\x8b\x29\x3d\x86\x33\xf9\xcb\xd3\x83\xcc\xd8\xe7\x52\xc8\x49\x3b\x78\x02\xa5\xee\xc1\x3f\xe4\xf3\xf8\xdf\xff\x6b\xdc\x44\x3a\xb0\xf0\x0e\x2f\xc9\x35\x2e\x5f\xb4\x64\x39\x16\x13\xa3\x17\x3c\x6a\xac\xf4\xa2\x07\xaf\xed\x67\x54\x2c\xaa\x06\x2b\xa6\x7e\xd6\x62\xc4\x70\x39\x6e\x41\x07\x96\x99\xde\xb3\x76\x5d\x70\x9d\x86\x18\x50\x46\x5a\x4c\xed\xfc\xe0\xe2\x5c\xa8\xbf\x68\x22\x54\x76\x3a\xb7\x0b\xa1\xf0\x49\xb4\x4a\x31\xb8\x81\xf7\xda\x9b\x63\x7f\x7b\x8b\x9f\x3d\xd3\xf8\xba\xc2\x37\x50\x35\x15\x1b\x82\xd6\x03\x67\x56\xfc\x87\xe2\x7a\x3e\x0d\xa6\x03\xa7\x20\x21\x75\xb4\x14\xad\x9c\xbf\x4c\xd3\xdb\x3d\xf9\xaf\x41\xe7\x33\xd2\x30\x54\x35\x34\x61\x36\x90\x18\xe7\x1b\x6e\xfb\x04\x01\xb5\x5a\x32\x7d\xa5\x0d\xad\xb8\x01\xa6\xb8\x20\x4d\x89\xda\x8d\x31\x68\x82\x40\x15\x05\xd2\xd4\x1b\x58\x62\x6e\x2b\x19\x81\x05\xa9\x4b\xd3\x9f\xdb\xa5\x7f\x3c\x03\xd2\x02\x57\xbc\xd2\x3a\x0b\xe3\xfb\xe2\xa7\x37\xbf\xf0\xd6\x68\xcd\x08\x9f\x52\x81\xea\x7a\x03\x2b\xb4\x11\x06\x8f\xb5\xa8\xa1\x48\x59\x7b\x8c\xa9\x81\xd7\xe2\x9a\xb3\x16\xef\xe9\x80\x5d\xe1\x56\xac\x8a\x4e\x73\x6c\xe1\x33\xe8\x45\x33\x27\x1d\xcc\xd1\x0c\xe3\x09\x87\x9d\x4d\x1b\x8e\x6e\xb4\x42\xb3\xaa\xae\xd8\x86\xcf\x92\x23\x40\xac\xf5\x9f\x68\x5d\x0b\xfc\x08\x87\x44\x1a\xff\x9b\x06\xb7\x6e\x57\x46\x84\x0b\x51\xb6\xe8\x86\xaf\xad\xc4\x2b\x42\x2b\xa6\xc0\x54\xad\xa1\x92\x26\x40\x35\x87\x06\xe3\x12\x97\xe1\x1c\xb5\x1d\x92\x13\x5d\x7a\x8b\x17\x13\x79\xdb\x92\xeb\xaa\xc4\xed\xb1\x33\xdd\x13\xb4\x66\x8b\x7d\xcf\x21\x98\xfe\xa2\xa6\x73\x00\x4f\x8c\x0f\x30\x15\x10\xbe\xb7\xfc\x9f\x64\x7d\x4f\xd8\xef\x67\x06\xa1\x28\xad\x5a\x1c\x7c\xc2\x7f\x3a\xc6\x9e\x16\x0b\x5c\x5c\xed\x1f\x1c\xc3\xe3\x8b\xe6\x1a\xd5\x55\x29\x0c\x37\x48\xd7\x47\x52\x4c\xb7\x7d\xec\x01\xbe\x8d\x25\xb3\xe9\x13\x5d\x8e\x11\x38\x15\x88\x89\xbf\xec\x98\x25\x9c\x76\xad\xc1\x91\x7b\x97\x95\x5e\x62\x26\x7c\x58\xad\x67\x81\xcc\xc5\x9f\x01\x0b\x25\x99\x5b\xe8\xb3\xf9\xba\x81\x4b\xcc\x94\x76\xe6\x38\x52\xbf\x06\x28\x6e\x31\x5b\xb7\x4d\xef\x22\xa6\x33\xd2\xb6\xe4\x66\xff\xe0\xd1\x54\xb0\xfd\xa3\xa9\x9a\x58\x5e\x6f\x49\x3f\x03\xaa\x86\xe1\x76\x8e\x0a\x2c\xf5\x8d\x74\xe4\x0b\xd4\xc0\x8a\x7f\x4f\x17\x52\x61\x08\xf9\x88\x3d\x60\x03\x8c\x12\xd9\x9d\xb0\x85\xee\xff\xc7\x1a\xb7\x9b\xa0\x67\xd2\xb4\xb4\x98\x92\x75\x5b\x60\x67\x2a\x19\x07\x29\xa3\x54\xae\x51\xab\xb6\x04\xd2\xd3\xfd\x48\xad\x0b\x91\xed\xb0\x6e\x46\x75\xe1\xf4\x42\x65\xc9\x0d\xc8\x1b\xa1\x66\xf7\x7f\x13\x9c\x78\x0c\x3f\xc4\x2e\xf9\x94\x37\xe3\xbf\xe3\x36\x14\x4e\xae\x1b\x8f\x13\xfa\x52\x39\x1c\x99\x61\x8d\xd9\x35\x63\x1b\xd3\x94\x9f\x80\xe9\x94\x06\x6d\xd8\xb0\x24\x98\x8a\xc9\x3e\xff\xb3\xa2\x83\x8c\xec\xd3\x83\x63\xf8\x91\x90\x3a\x3b\xe5\x4b\xcc\xa4\xa9\x15\x9c\xfd\xab\x04\xf5\xaf\xae\xe6\xae\x63\x21\xfa\xb8\x1f\x74\xf6\x3c\xab\x6b\x31\x56\x33\x27\xa2\x63\x06\x1b\xfc\xfb\x3e\x38\x76\xcc\x0e\x60\x5e\xa3\x4e\x88\x3e\x95\xc5\xb2\x3e\x49\x54\xa4\x38\xc0\x13\x50\xcf\x07\x6c\x58\xc5\x6a\xbc\xe4\x9e\xa0\x95\x88\x37\xc2\xba\x19\x01\xfc\xb0\xc0\x56\x90\x94\x6b\xc7\xf9\x8f\x4a\x17\x8f\xef\xb2\xa5\x28\x2a\xcd\xa4\x36\xeb\xa4\xc5\x06\x04\xaa\xeb\x40\x5c\xd5\x76\x5f\x78\x14\x45\x64\x77\xd5\x2e\x5c\x5b\x4b\xd9\xd8\x40\x7b\x85\xf1\x8a\x72\x4f\xa3\xb8\xe2\xca\x71\x41\x6e\x64\x04\x40\xf7\x6a\x4a\x23\x82\x72\x23\x4f\x01\xb5\x72\x97\x8d\x4b\x57\xaf\x54\x0c\xae\x1a\x72\x43\x95\xb3\xa4\xda\x32\x02\x97\xd5\x35\xd6\x73\xe1\x6a\x0b\x6e\x16\xb8\x91\x81\x05\x6d\xda\xf9\x28\xda\xe4\x1b\x98\x65\x35\x9f\xe3\x96\x63\x93\x6d\x56\x58\xaa\x6e\x01\xd4\xb4\x30\xbf\xfc\x72\xf6\xee\xf5\xc5\xeb\x97\xc7\x70\x31\x87\x0d\x59\x43\x89\x29\x6b\xc9\x86\xbb\x6b\x91\x2e\xb4\xe1\x89\xdf\x55\xb3\xdf\xa1\x20\xcb\x25\x6a\xca\x89\x01\xc8\x81\xdc\x54\x75\x0d\x35\xa1\x58\x51\x59\x79\x2d\xfc\xbb\x56\x07\x48\x6c\xfc\x84\xb4\x54\xd2\x33\x1d\x83\x30\x90\x97\xa8\x41\x97\x98\x4e\xf5\x54\x6f\x94\xbf\xa8\xa7\x5c\xb1\x89\xf8\x7c\xb9\xa6\x0c\x70\xc5\xf5\xb4\xf4\x03\xe7\xb8\xb5\x43\x8b\xb9\x38\x18\x42\x81\xc3\xba\x6e\x54\x80\x47\xcf\x57\x93\x2e\x85\x68\xd1\x40\xf5\x28\xdd\x96\x2d\xbe\x41\x6d\x49\x61\x5e\xb5\x94\xc1\x0c\xcf\x39\x87\xaa\x89\x72\x11\x73\xb9\xba\xe1\xb4\xf5\xd0\x1a\x19\x87\xdf\x61\x89\xd9\x82\x94\xfe\x72\xf3\x76\x26\x02\x70\x9c\x33\x38\x13\x15\x94\x98\xf2\xff\xb8\x12\xd0\x31\x06\x8b\x0f\xc5\xc2\xd7\xdc\x1a\x87\xca\x80\x5b\x6d\xdf\xda\x08\xa3\xbd\x13\xaf\x90\x8f\x9e\x1c\x5b\xec\x2b\x38\x8b\xcd\x30\x34\x55\xcd\xbd\x58\xe1\xa8\x28\x31\x5d\x20\x0a\x0d\x81\x82\xb4\x2d\xa6\x2b\xd2\x94\x9c\x9f\x7c\x51\xce\x2f\x63\x37\x8b\x78\xea\xaf\xe2\xbd\xdc\x83\x86\x4a\x87\xfb\x1d\x29\x69\xf0\xfa\x3e\x43\x8d\xdc\x1f\x71\x26\x21\x0d\x76\x76\xb2\x2b\xac\x58\xda\x71\x16\x79\x17\xee\xd2\x73\x4e\x99\x61\x58\xc9\x38\x8d\x1a\xea\x06\x66\xb8\x40\x8a\xdb\x36\x50\x90\x75\x5d\xf2\x56\x6b\xea\xa0\xc8\xd1\x14\x49\x0c\x35\xc6\xf2\xd3\x63\xf8\xc1\xa8\xfb\x4e\x1f\xe1\xb6\x1b\x9c\x31\x38\x43\x20\x9a\xc6\xb7\x7b\x01\xa2\x04\xb1\xac\xf6\x16\x04\xf9\x3b\xa9\xb9\x07\xac\x36\x8e\xd2\x46\x58\x9e\x0e\xd9\xc1\x09\xac\x51\x21\xed\x72\x8f\x1b\xd8\x01\xc1\x7b\x0d\x51\xb1\x05\x60\x8b\x8a\x4e\xb8\x12\x77\x78\x32\xbf\x5e\x66\x67\x35\x94\xc1\x26\x5e\xe0\x73\x2a\xfe\x7b\x63\xb6\xac\x07\xf0\x24\xfe\x5a\x0e\x10\xf2\xe1\x07\x6e\xab\xe8\x20\x4b\xa5\x75\x31\x6e\xf9\x06\x5d\x32\x88\x08\x73\x1b\x13\x6a\x38\xf7\x48\xec\x34\x93\xcc\xfb\x0b\xd7\x6e\x85\x0c\x7a\x71\x08\x0d\xbe\x51\x03\x4c\x20\xb6\x8c\x6b\x8a\x4b\xa9\x31\x27\x30\x27\x7c\x97\x8b\x4b\x98\x6d\xc2\xb9\xc5\x23\x68\xbd\xcc\x87\xd0\xe0\x53\xa6\x57\xb7\x6b\x52\xa3\x74\xb2\xff\xbd\x78\xe1\x29\xda\x24\xb6\x58\x14\x10\xa5\xa4\xa8\x44\xdc\x42\x98\x60\x81\xfa\x3c\x8b\xf9\xfe\x38\xed\xf1\xc9\xfc\x5d\xb8\xb7\x35\xdb\x95\x4e\x9f\x78\x50\x1f\x58\x02\xf4\xb0\xc3\x36\xfb\xde\x92\x33\xdb\x7b\x67\x69\x8e\xd3\xd8\xbb\xbf\xf7\x40\xc3\xa9\x3f\xd4\x5e\x3a\x1e\xa0\x14\x2d\x9c\x1c\xc2\xa7\x4c\xc8\xc0\x2a\x4f\xd5\x2a\x6e\x16\x72\x20\x9c\xc2\x77\xd3\xef\xf2\x33\x8c\x5a\x7a\x4d\x8f\x8e\xb8\x07\x16\x5a\xdc\x50\x4b\x4e\x04\x3f\x55\xa8\xae\xfe\x3f\x86\x4a\x78\xe3\x57\xb8\x11\xc1\x3d\x27\xe6\xa0\xe0\x71\x0d\xe4\x9a\x7a\x07\xad\x5e\xd3\x6a\x2e\xe2\x51\x0e\x07\xbd\x99\xfd\x1b\x4e\xdd\x0f\x12\x34\x15\x6b\x73\x9b\x78\x1d\xf6\xa2\xf6\x47\x47\x20\x83\x0d\x4a\x1a\xb9\xd5\x10\x93\x97\x1e\xa8\xb1\x26\xe2\x1c\x27\xb1\x4f\x48\x01\xe4\xde\x3c\x66\x8e\x3f\xec\xf4\xeb\x5c\x32\xff\xe1\x6b\x76\x28\xf3\xb3\x9a\xc6\x69\x80\x08\x27\x44\x22\x7f\x73\x5b\xef\x1f\xa4\xf1\xe2\xf3\x64\x3c\xca\xd4\xf7\xbd\xf8\xcf\x2d\xe0\x9a\xa6\x84\x27\x81\x68\xd7\x16\x76\x8c\x1b\x36\x4b\x71\x71\xa0\xd6\xe0\xd4\x15\x89\xc8\x19\xa8\x6b\xae\x2d\xd5\x7e\xc9\xdd\xc4\x54\x54\xbb\xd0\x1c\xf5\x15\x82\xdf\x95\x07\x3c\x5b\xb7\xcd\xfe\xc1\xef\xf9\x50\x28\xdf\xf4\xf2\x46\x1c\xf8\x0c\x71\xc5\xe0\x3a\xcb\x9a\x50\x32\xba\xc0\xa7\x27\x66\xed\x06\x0a\xa2\xb6\xa5\x7b\xd8\x60\x3b\xf8\xa1\x02\x7f\x08\xed\x34\x8a\x63\x0c\x33\x58\x86\x16\x05\xdf\x84\x09\x1d\x62\x82\x1e\xf2\xff\x20\xe8\xd1\x54\xf5\x41\x17\xfe\xe7\xae\x89\x97\x23\x97\xe9\x73\x92\xbe\xe1\x9d\x6e\xe1\xa1\x45\x30\xa7\x64\xcb\x8b\xf3\x70\x9e\x03\x18\xc0\x71\x40\x94\x33\xe0\x24\x00\x4c\x55\xa4\xd3\x39\x54\x56\x7b\x47\xd2\xc2\x8c\xb0\x85\x14\x4f\xdf\xeb\xf8\x48\x31\x0d\x1c\x18\xe5\x51\x30\xb1\x9f\xd3\xbe\x47\x35\x07\xee\x67\x89\xe3\x77\xb9\xf7\x17\xae\x63\x32\xe4\x2e\xed\xb7\x0a\xac\x48\x0d\xbc\x2f\x4f\x0d\xb5\xc3\x70\xc0\xbd\x63\xdf\x40\x0a\xf9\xb9\x4d\xb1\x61\x68\x6d\x62\x13\x64\xd5\x45\xb6\xf3\x8f\xa8\x46\x4d\x81\x43\x63\x35\x9d\xa9\xcf\x0f\xc3\xa3\xf6\xe9\xb2\x6a\xaa\xe5\x7a\xa9\x3e\x7a\x87\x29\x6e\xaf\x91\x4d\xce\xb0\x48\x54\x36\xa4\xc5\xf2\x70\x28\x34\x1e\x7a\x4b\xec\xa9\x48\x81\xe3\xd0\x20\x44\xda\xe4\x91\x50\x27\x21\x4e\xc0\xd3\xa3\x1e\x56\x9c\x8f\x1e\x65\x90\xe2\xf7\xb6\x68\xd9\x29\x52\x04\x33\x50\x8a\xdb\xc0\x0d\x33\xdf\x09\x6e\x80\x93\xd3\x60\x1a\xdf\x86\xf4\x9a\x24\xbb\x2f\x31\xa5\xe8\x12\x0b\x67\x86\xae\xe7\xf3\xaa\xa8\x44\x88\x88\x30\x54\x03\xba\x46\x55\x2d\xf6\xff\xe2\x00\x43\xad\xe5\x71\x04\xe8\x20\x69\x2e\x2f\xe6\x7a\x63\xa0\xc5\xa1\x40\x0d\xdf\x0a\xb5\xf2\x0c\x59\xca\x95\x9c\xe3\xc4\x1e\x51\xc9\x48\x89\x08\xff\xb3\x05\x5e\x46\x90\xab\x39\xec\x67\x16\x1d\x7a\x73\xfa\x27\xe7\xef\xa4\x3f\xff\x56\xe1\x34\x5e\x14\xd8\x93\x89\x93\x43\x97\xca\x7a\xf2\x46\x36\xe5\xff\xb1\x75\xcd\xe0\x89\xef\x1b\x39\xae\xba\x10\x24\x3f\x84\x9b\x05\x62\xaa\x9d\x52\x2c\xea\x0b\x26\x43\xa1\xca\x03\xd1\xc4\x8f\x06\x34\x76\x3a\xb9\xba\xa3\x23\x58\xaf\x4a\xc4\x70\xa0\xc8\xc4\x2e\xac\xc5\x05\x69\xc5\xb6\x08\x95\x22\x7e\x62\x86\x54\xc7\x40\xaa\x8f\xe2\x93\x9d\x90\xc2\xa3\x6f\x7a\xce\xc2\xbe\xae\x97\x1f\x3d\x3f\xf5\x03\xf9\x48\xb9\x2c\x2a\x4e\x39\x1c\x02\x88\xeb\x70\xb9\x78\x2f\x1e\xd0\x8b\x02\x35\x46\x8b\xff\x58\x63\xca\x12\x38\x57\xc0\x97\x55\xb3\xa6\x82\x80\xf8\x1a\xb7\x70\x83\x14\xd0\xd0\x65\x0c\x76\x9b\x11\xfa\x92\x1e\x79\xee\x9b\x6f\x33\xb8\xc9\xe3\x52\xad\xf7\xe4\xd0\xd9\xd7\x14\x22\xf9\xe2\xf9\x72\xc5\x36\x82\xe3\xf7\x85\xee\xfd\xb0\x59\xe1\x63\xe0\xff\x9e\xfc\x10\x6e\xef\xf6\x0f\x12\x5a\x01\xcc\x31\xa2\xda\x2a\xb0\x35\xaa\x7d\x33\x8b\x8a\x05\xc4\xde\xa5\x3b\x3f\xb9\x94\xb7\xa4\x15\x9e\xdb\xc9\x21\x74\x4a\xa2\xaf\x20\xb2\x40\x35\xe6\x1c\xb0\xbe\x75\x8b\x00\xa7\xd1\x9a\x5f\xf4\xb9\x3e\x77\x5f\xe0\x25\x54\x8d\xf2\xf6\x29\x5a\xe2\x8e\xf5\x4a\xd4\x4c\x55\x60\x7f\x9f\xa3\xe8\xd8\xe8\x1e\x35\xd7\xf4\xa2\x32\x3d\x83\x75\x66\xa6\x6b\x94\x5c\x86\x15\x6f\x87\xb9\xfe\x47\x47\xf0\xbe\x6a\xc4\xc9\x8c\xb2\xe9\x0d\x89\x8c\xba\xb0\x11\x92\x03\x16\x48\x1e\x6d\x14\x64\x89\xad\x54\x34\xa4\x5d\xa2\xda\xca\xe3\x2c\x27\xc3\xc3\xcc\xe4\xdd\xcd\xe2\x68\x63\xb8\x8d\xd4\xe6\x6c\x90\x21\x4d\x0f\x7b\xa6\x2c\x50\xd6\x31\x56\xbc\x69\x3c\x5e\xbe\x91\x91\x67\x22\xd2\xc7\x42\x73\x86\x5b\x98\x61\xae\xf1\x9c\x78\x19\xa7\x10\x12\x87\x08\x58\x64\xcd\xa8\x8c\x59\xd2\x4c\x73\xd0\x23\xad\xaa\x3c\xe4\x6a\x0e\x2b\x42\x29\xf7\x61\x47\x04\xe0\xac\x77\xac\xd8\x5c\x79\xc8\x92\xd9\xd3\x6e\xf1\xb0\x88\x8f\x38\x84\xa9\x28\xe0\xb6\xe5\xbb\x82\x85\x08\x8a\x37\x42\x6d\xcf\x30\xb0\xb6\xba\xbc\xc4\x2d\xf7\xe5\x1b\x58\xb5\xa4\x5c\xcb\x5d\xe4\x0c\x17\x88\xae\xb1\xeb\xf2\xa8\xf0\x25\xae\xcb\x58\x8a\x8e\x8e\x34\x64\x11\x94\x27\x2b\xdc\xd6\x1b\x15\x4f\x90\x36\x46\xb9\x4f\x22\xbd\x80\xaf\x53\x0c\x13\x03\xe2\xeb\x35\x9e\xe6\x49\x17\x57\x25\xcd\xec\x31\x3c\x7e\x86\x1a\xee\x83\xe8\x03\xc4\xa5\x0c\x61\x23\xb1\x31\x46\x75\x8b\x51\x29\xce\x1a\xca\x30\x9e\x75\xb7\x1d\x46\xe0\xfd\xf7\xb9\xff\x97\xca\x6c\x78\xee\xbf\x8c\x1d\xa9\xcd\xa8\x98\xbd\x9b\x5d\x05\x7d\xdb\x81\x84\x4b\xc6\x1d\xcc\x81\x18\xed\x74\x38\x47\x09\xfc\xa1\x47\xc4\xb4\x56\xf6\xd1\x18\x6a\x76\xfe\x7f\x6c\x0a\xb2\xba\x59\x31\xe0\x3b\xa9\x4e\x92\x62\xb9\xe5\x24\x62\x5d\x94\xc3\x5e\xda\x72\x8d\x88\x3a\x7a\x5d\x06\x7b\x95\x01\xae\x33\x98\x71\xb5\x90\x54\xba\xda\xdf\xd3\xe7\xc4\x05\x06\x44\x87\x3a\x6d\xe9\xfd\xe4\x50\x2a\x8e\x08\xb5\xdd\x85\xed\x42\x80\x99\xed\x4a\x97\x39\xd7\x42\x2a\x33\xaa\xc2\x28\xa6\x3a\xd4\xd4\x19\x88\x3a\xa7\xa1\x62\xd3\x9e\xa0\x7b\x3f\x9e\xb2\xc6\x4d\xb2\x38\x05\xd6\xae\xb1\x08\xbe\xa4\x2c\x96\xf6\xec\xf1\x9f\x15\x65\x54\x9f\x09\xc6\xc9\xf6\xe2\xb8\x4b\xe4\x60\xe8\x38\x9b\x58\x12\x59\xf1\x6f\x51\xed\x06\xa8\x26\x52\x6f\xdf\x54\x14\xc3\x1c\xd5\x14\x4f\xd3\xe7\x41\x77\x4f\x48\x0a\x58\x21\x38\x51\xf4\x93\x91\x9f\x26\x02\xab\x41\x87\xf3\x74\x1a\xf3\x98\x9e\xce\x1c\x41\x75\x1b\x17\xea\xd1\x6c\xe4\xa6\xd0\x69\x97\x10\xb1\xe8\x8c\x16\x1c\x3d\xef\xc6\x9a\x1d\x3d\xef\xff\xa8\x43\x83\xdf\xfc\xc0\x74\xd8\xdf\x4a\x6a\x46\x83\x46\x68\x86\x53\x0f\xa6\x8d\xf4\x26\x42\xed\x01\x80\xf3\x28\x5d\x3b\x84\x14\xb4\x18\x01\xb2\x1b\x5c\x12\xd4\x6d\x97\xa9\xb7\xc7\x3d\x6a\xd7\xcb\xa9\x28\x65\xc3\xf0\xe9\x04\xc4\x49\x99\xf0\x62\xb4\x73\xe7\xa6\xf7\xf0\xe6\xe6\xf3\x25\x62\xc5\x02\xd3\xd4\xc1\x4e\x36\x39\x3d\x4d\xd6\xfd\x0e\x94\x3e\x4a\x9f\x3d\xf0\x9f\x27\x4f\x72\x88\x1b\xdf\x49\x8e\xf6\x08\x4e\x93\x69\xbb\xbd\x23\x8a\x8e\xd9\xe8\x36\xff\x49\x33\xa3\x8e\x9a\xb5\xeb\x58\x93\xdf\x26\x43\x74\x3f\x11\x72\x15\x92\xcd\x26\x74\xd1\x15\x2e\xaa\x79\x85\x4b\x9d\x50\xe2\xa7\xa4\x40\x62\x5d\x6e\xde\xae\x14\x1d\xb3\xae\xee\xc3\x06\x77\xb9\x5a\x6a\x87\x19\xbd\x80\xe4\x1e\xa5\x03\x1c\x47\x74\xc9\x89\xf5\x48\x4c\xc6\xab\xe6\x23\xed\xeb\x31\x12\x0c\x94\x35\x56\x2f\x94\x93\x2f\x76\x5f\x65\x09\xa8\x91\x26\x89\xeb\x40\x9b\x3a\xe3\x66\x1d\xc2\x83\xa7\xec\x06\x48\xe3\x32\x5a\x95\x2a\x45\x7d\x5a\x95\xd1\x97\x4a\x87\x8b\xfb\x11\xa7\xb9\x0c\x1e\x91\x7b\xaa\x59\xa4\x2a\xe3\x63\x31\xb1\xf7\x7e\x2f\x93\xea\x4e\x5d\x98\x53\xf1\x8d\x74\x6a\x2e\x9a\x77\xc2\x8e\xef\x1f\xc0\x61\xd0\x86\x7f\xfd\x4e\x64\xe0\x05\x11\xba\x6d\x76\xe7\xce\x64\x7c\x76\xc0\xcb\xaa\xe7\x6a\x5a\xc4\x3d\x7a\xd1\xee\x74\xab\x32\x8e\x4b\xc8\xbb\x0f\x6e\x2b\xfe\x49\xdc\x2e\xba\x55\x16\xe1\xca\x7c\xf7\x8b\xcc\x66\xb2\xd9\x02\xfb\x07\x09\x78\xfa\x4e\x95\x40\x87\xc8\xb3\x7f\x1a\xe5\xd9\x43\x1c\xf9\x08\xf3\x15\x7e\xad\xca\x7f\xc1\xc9\xe1\x23\xb1\xe0\xd0\x9a\xbc\x57\xf6\x3e\xbc\x8c\xa2\xd2\xf0\xad\x10\xa4\x3a\xab\xb0\xb9\x89\xa7\xc9\x8b\xb6\x40\xea\xb2\xe3\x52\x0b\x64\x8e\x90\xc5\x34\xc3\xcb\x11\x17\x3a\x83\x1f\xc6\x8b\xac\xc1\xee\x00\xa9\xbd\x63\xc6\x7b\x42\x32\x7b\x85\xcf\xcf\xfe\x8e\x8e\x64\xa7\xdd\xea\x7a\xfa\x97\x12\x55\x17\x96\x90\xd4\xfe\x8b\x9c\x83\xc4\x55\xe1\x28\x6a\xeb\xe1\xac\x4f\xbe\x7b\xe4\x96\x2f\x49\xe1\xf4\xdb\xc4\x57\xa6\x5f\x06\x9b\xea\x6c\xe2\x03\xf9\x28\x33\x93\xef\x24\xe7\x11\x4d\xfc\x9c\xa3\x5f\x43\xee\x91\x72\x6f\x3e\x1d\x22\x49\xea\x54\xab\xd3\xfe\xf9\x61\x46\xe5\x90\x8a\x9c\xf8\x85\x3e\x5b\x71\x32\x1a\x75\x12\xa0\x80\x9c\x84\x47\xe5\x9e\x96\xc9\xdb\x74\xb8\xf4\xe1\xff\x82\xa1\x24\xe2\xeb\xa2\xc6\xa8\x4d\xab\xab\x0a\xd7\xa5\x52\x5a\x02\x56\x89\x81\x6f\x72\x3c\x40\x4e\xbe\xad\xba\x65\x48\x5a\x58\xa2\x8d\x49\x5e\xbf\xc2\x78\x05\x15\x33\x0a\x2d\xd4\x18\xc1\x75\x08\xa9\x3d\x24\xc2\x1c\xc7\x43\xef\xdb\x0e\xfa\x2c\xff\xd3\x41\x21\x51\x79\x51\x34\xbd\x47\xcd\xe6\x8f\x1c\xc3\xe3\xf7\xbe\x17\xc9\x21\x08\x24\x0a\xb2\xca\x8d\xb6\xa8\x77\xa0\x97\x14\x47\xd4\x33\xd1\x9d\x53\x95\x01\xb1\xff\xdd\xf4\xbb\x03\x1b\xc3\x54\x8c\x23\x06\xe3\x3b\x88\x64\x46\x69\x57\x5e\x5e\x72\x53\xe9\xda\x31\xcd\xd3\xd9\xcd\xe5\x76\x4e\x8f\x72\x17\x93\xd0\x76\xaa\x51\x3b\xcf\x69\x62\xa9\xe0\x42\x21\x43\xff\xea\x5c\x7a\xa2\x02\xdc\x0c\xd5\xd0\xac\x97\x33\xde\x72\x1e\x85\x10\xcd\xfd\x07\xce\xc9\x22\xbf\xaa\x5c\x17\xcc\x3d\xee\x14\x22\x83\xdb\x38\xf4\xb3\x4d\x1c\x2b\xeb\x91\x81\x0e\x74\xf2\xb9\xd3\xcc\x12\xcd\x9c\x74\xd9\x09\x2b\x62\x54\x5e\xd0\x6b\xf8\x62\x9d\xe4\xcb\x25\x5a\xc5\x13\xd7\xa9\x5e\x0a\xf8\xc9\x61\x9e\x79\x4e\x0e\xe3\xa8\x88\x9a\xea\xb3\xac\x7a\x71\xa3\x20\x58\x85\xac\xd2\xd8\x0b\x9d\x1a\x3d\x6c\x22\x16\x03\xae\xdb\x3a\xe8\x7e\xbf\x16\xf7\x8c\x47\xda\x69\x49\x06\xe4\x44\x98\x23\x2e\x07\x97\x83\x0f\x1c\x3f\x2c\xb0\x39\x29\xb1\xca\x46\x5e\x8f\xe6\x7a\xd9\x68\x7f\xe4\xb2\x81\x48\xda\x2f\x75\xd8\x2f\x4a\x5a\x9d\x8b\x4b\x16\x32\x36\x18\x53\x7d\x85\x9a\xaa\xd8\x4f\xe9\x1f\x0b\xd6\x07\x39\x7d\x3c\x30\x76\x39\xc0\x22\x86\xee\xe5\x0e\x8c\x62\x08\x32\x6f\x17\xfb\x0d\x52\xbc\xff\xef\x2a\x63\x30\xc0\xc9\xbd\x27\x6b\xe5\x06\x20\x3c\xab\x65\xe3\x1d\x0f\x65\xba\xec\x88\xbb\xb5\x5f\x8e\x83\x36\xc8\x84\x95\xb6\xe8\xc7\x1c\x4e\x61\xff\x49\x17\x24\x44\x65\x8a\x7f\x27\xe9\x12\x09\x74\xd5\xdc\x1b\x67\x5a\x95\x41\xf4\x0b\x3e\xc5\x1a\x02\xee\xb6\xb9\xe9\x65\x80\xec\x80\xf7\x6b\x87\x21\x65\x8b\x43\x61\xdc\xd2\x1c\xeb\xba\x54\xdb\x59\x64\xb8\x0f\xab\x0c\x69\xcb\x1c\x2d\x78\xb8\x71\x76\xae\x3d\x24\xed\x33\x38\x36\xda\x0e\xe3\x9a\xe9\x04\x67\xe7\x2c\x35\x44\x9b\xc8\x4e\xe3\x99\xec\x0f\xce\x86\x32\xb7\x89\xd4\x3f\x39\x6e\xcd\xf7\x18\xbc\xa3\xd3\x3f\x7d\xe9\x40\x3e\xe2\xb2\x87\xcd\x69\x81\x55\x66\xf2\xf9\x9f\x2b\x2c\xb8\xce\x95\x71\xa3\x5a\xed\x05\x4d\x7d\x1f\xc2\xd1\x86\x4d\x86\x0b\x42\x73\x0a\xa3\x52\x94\x46\x7a\x0c\x96\x6f\x76\xef\x34\x94\x09\xd8\x5b\x7a\x0e\xf6\x26\x94\xf4\x1d\x2e\x2b\xca\x70\x2b\x2e\xdb\x05\x57\x4e\xbb\x3c\x0e\xd5\x0b\x89\x7e\x1a\xf1\x52\xbb\x69\xfa\xc4\xe4\x18\xe8\x1d\x48\xd8\x62\xc3\xea\x9b\xac\xd2\xf8\x08\xde\xe7\x6e\xed\x17\xef\x8b\x06\xb3\x1b\xd2\xf2\x49\x9c\x69\x86\x4f\xf5\xb7\xcd\x5e\xe1\x4d\xba\x89\xc2\x4c\xf6\x7b\x3f\xf5\xde\xff\x6e\x85\x36\xb8\x3d\x06\x71\x61\xed\x47\x71\x08\xf0\x4f\x54\xaf\xf1\x01\x3c\x39\x0b\x0e\x2b\x0f\x54\x2b\x95\xfa\x3d\xb1\xf7\xdd\x2a\x4c\x27\xa2\xb2\x92\x28\xd6\x37\x81\x57\x78\x43\x27\x70\xd1\xcc\xc8\x9f\x16\xce\xd3\x54\x66\xbf\x4d\xda\xd4\xf7\x45\x82\xdb\x02\x3a\x1f\x2c\xea\xe9\xef\x57\x12\x36\x54\x1d\x26\x28\x9b\x16\x1b\xf0\xf2\x18\xf2\xe1\xea\x74\x88\x3a\x41\xb1\xe8\xa3\xae\x5e\x82\x40\xde\x9f\x71\x6b\x97\x96\xf6\xf7\xb8\x5d\x10\x3e\x3b\x4e\x67\x3d\x1e\xec\x2c\xcc\x6f\xf1\xdd\x11\xe5\x1f\x18\xd9\x97\x1f\x3c\x50\xc8\x5e\x6d\xc4\x92\x0c\xf4\x0e\xeb\x8c\x98\xd3\xe8\x18\x2c\x8c\x10\xf3\x9f\xa7\x4f\x8d\x02\x94\xa9\x75\x84\xe9\xeb\x75\x62\xe3\xd4\x6a\x78\x8f\x33\x1c\x3b\x32\xae\x62\xe6\x27\xe2\xd5\xe1\xf9\xc1\x3b\xad\xe7\xba\x4e\x20\x92\x07\x0f\x22\x2d\x9a\xf2\x3d\x19\x97\xe8\xa0\x28\x88\x73\x95\x81\x82\xa9\xb8\x05\x05\xaa\xeb\x60\x43\x5b\xcd\xcd\xa2\x54\x41\xa7\x53\x5b\x39\x52\xac\xe8\x1d\xa9\xf1\x54\xb1\x17\x69\xa7\x2d\x92\xda\x05\xfe\xf3\x9f\x81\x3d\x1b\x8a\x1b\xba\xa6\xb6\x67\x6c\x0b\xdd\x63\x4c\xad\x9e\xfd\xf3\xbf\x7d\x0f\x97\x01\x6a\x27\x5a\x05\x8a\xff\x0e\x86\xd9\x5f\x35\xe6\xe0\xf3\x51\x4d\x2a\x75\x19\xdd\x54\x8f\x4b\x51\x0d\xf9\x34\x3b\x92\x37\x2e\xf5\xfd\x7c\x5c\xb5\x80\x39\x96\x0e\x75\xf9\x37\xb7\xcc\xab\xee\xf0\xa6\xa9\x37\x86\x86\xa8\x81\xb3\x35\x5b\x9c\xf9\x54\x56\x95\x26\x64\xc0\xd1\x6c\x07\x89\xb8\x2b\x56\x68\xbc\xbb\xc9\x40\x1a\x9c\xbb\x68\x5d\xcc\x46\x32\xc7\x37\x14\xfe\x28\x44\xb1\xb6\xab\x4b\xc7\xed\xf7\x1d\x0e\x6e\x92\x53\xb5\x0a\x66\x6b\xa6\x1c\x7c\xe6\x02\x94\x6e\x15\xad\x6c\x35\x1b\x54\x96\xb2\xdc\x55\x01\x57\x78\xa3\x12\xb1\x42\xe3\x6d\x73\x6c\x33\x2c\xe1\xdb\x58\x9f\x3f\x72\x3b\x42\x75\xe2\xfc\x05\xd9\xcf\x9d\xeb\x14\x59\xae\x32\x4b\x28\x3d\xae\x8d\xd3\x31\x38\xd5\x65\x26\xf6\x7d\x41\x0a\x41\xeb\xeb\x13\xc9\xe4\xba\xc2\x8e\x1b\x1f\x61\xaa\xc2\x85\x1d\xb3\xe8\xae\x13\xc7\xa6\x85\x83\xea\x29\x95\x04\x88\x84\x7a\x5a\x51\xba\xc6\x23\xeb\x01\xec\x1f\x29\x70\xa2\x6e\xb1\xf8\x46\x7c\x11\xe6\x09\xc7\xf3\x55\x74\x8b\x53\x15\xba\x8d\x70\xcf\x41\xbb\xa7\x56\xe3\x46\x9d\xc5\x07\x87\x54\xd6\x83\xe8\x24\x2d\xa4\xb3\x8c\xdd\x6d\x44\xd0\x07\x39\x7a\x85\xcf\x6c\xa2\x09\x8d\xe0\x1f\xcf\xe0\x9f\x84\xd9\x58\x36\xe7\x02\x55\xfd\xca\x14\x37\xc9\xe4\xcb\x6d\x69\x74\x12\x97\xc7\x5c\xb6\xcc\x4d\x26\x19\x64\xfa\xa3\x90\x93\x57\xbe\xa7\x1c\xfc\x12\x33\x53\x68\x59\x7c\xbd\x6f\x1d\x90\x40\xf8\x62\xdf\xc2\x65\x57\xc5\x52\x53\x8a\xae\xf1\xfe\xc9\xa1\x1a\x6c\x02\x8c\x1c\xfb\x25\x9e\xa7\xe2\x0b\xa7\xfe\x71\xfa\x4e\x23\x15\x6b\x54\x27\x7b\x4e\x85\xd3\x14\x7e\xa1\x33\x16\x2f\x99\x2f\x93\x69\x90\x8e\xcf\xa7\xeb\xe1\x26\xf7\xda\x83\xf8\x1c\x0c\xaf\x0f\x22\x7b\x1a\x80\x71\x35\xef\x54\xa6\x51\xff\x24\xb0\xae\x3c\x04\x87\xaa\x99\x54\x44\x2b\x28\xca\xe6\x86\x82\x72\xfe\xea\x25\xbc\x45\x2d\xab\x8a\x6a\x85\x7c\x2f\x6d\x88\xbc\x28\x1f\x66\xb0\xd8\x24\x3c\xae\x14\x4b\xe9\x4c\xd7\x55\xf7\xcc\xd2\x11\xda\xab\x4b\x77\x41\xa1\x0c\x9d\xbf\x7a\xe9\x7c\xbd\x23\x19\xf2\xc7\xb4\xa2\x74\xfe\xea\xe5\xd4\xf9\xe2\xab\x28\x75\xb0\xc2\x97\x23\x4a\xee\xd7\x41\x66\x63\xc2\x35\x0f\x9c\xf1\x33\xf9\x0a\x82\xa9\x3a\x2c\xdc\xeb\x8e\x44\x2e\xd2\x60\x75\x55\x58\x97\x8a\x0a\xfc\xdf\x8a\xca\xc2\x52\xb2\x4a\x82\x85\x5b\xe2\xa2\x2a\xb1\x2c\x91\xa2\x8b\xf7\xa5\x06\xb1\xa5\x20\x09\xa0\x46\x5e\x9b\x4a\xb9\xc8\xa6\x8a\x57\x4d\x2d\xc4\x56\xdf\xef\x20\x75\x99\x80\x5c\x90\xd6\x21\x3c\x87\x22\x0f\x68\x54\xe5\x45\x3e\x41\xe7\x79\x07\x46\x44\xb5\x02\xb7\xa8\xe0\x16\x18\xd1\x8a\x6d\x20\xc8\x89\xf5\xfb\xab\x36\x76\xf8\xfd\x9d\x90\x8b\xc7\x68\xb3\xa1\xb6\xaa\x29\xcf\x35\x91\xb5\xe6\x4b\x53\x2a\x50\x14\x9c\xfd\x79\xdf\xf9\xdc\x1e\xef\x00\x26\xfa\x59\x02\xd7\xcd\x4f\x6d\x0b\x42\x05\xbb\xdb\x3c\x16\x15\xa9\x15\x19\x7e\x19\xf6\x70\x76\x9d\xf2\x9a\x82\x28\x9e\x29\x73\x86\xc8\x4d\xd3\x7b\x79\x6e\x8b\x4d\xc8\xc5\x79\xbc\x3f\xf8\x19\x5d\x61\xa0\xeb\x16\xdb\x0a\x9a\x51\xb5\x74\x65\xe7\xa2\x04\x03\x2a\x23\xf0\x05\x0b\x92\x98\x2e\xce\xf7\x76\xe6\x3c\x86\x14\x71\xdc\x40\x79\xd2\xe8\x73\x84\x31\x40\x52\xf5\x9d\x3c\x49\x38\x6e\xdf\xab\x8b\x41\x7d\x3e\x5d\x38\x34\x64\x62\x51\xaa\x24\x53\xe8\x5a\x9b\x93\xa8\x95\x54\xc7\x91\x9e\x08\xc3\x55\xd0\x73\x2d\x59\x97\xf7\x3e\x75\x10\x90\xcd\x26\x04\xef\x62\xb2\x99\xdb\x1b\x43\xd1\x90\x9a\xe6\x30\x43\xdc\xae\x30\x5f\x2b\x82\xa6\xae\x2e\x7b\x0c\x7a\x77\x7f\x27\x45\x69\xdf\x7f\x18\x4c\xf0\xc0\xbd\x70\x09\xde\xe5\x79\x8c\x24\x78\xc6\x45\xbc\x47\xba\x47\xe8\x18\x48\xfe\x70\xa6\xf7\xc6\x05\x43\xd4\x4b\x14\x89\xe0\x7a\x44\x3a\x55\x5b\xc7\x1a\x04\x27\x7c\xfe\x70\x43\x1c\xca\xf9\x39\x95\x94\xd5\xe7\xb1\xef\x2e\x6a\x91\xe0\x8c\x87\x0c\x58\xc4\xe7\x05\xf9\x54\xb3\xe1\x39\xf4\x17\x73\x40\x36\x49\x49\xb1\x8e\x36\xa5\xaa\x52\xb2\x08\xd6\x52\xb8\xc1\xfc\x77\x51\x96\x58\xa6\x3e\x6c\xbe\x51\xe5\xb3\xb4\x87\x24\xac\x96\x3e\xd1\x0d\xc3\xbf\x36\x3e\x96\x78\xfa\x42\x5f\x7d\x52\xce\x18\x84\x4e\x4f\xf2\x24\x53\x42\xf4\xe9\xf8\x82\xb4\xcf\x55\x92\x56\x22\x23\x77\xd2\x1f\xec\xdc\x41\x8c\xd3\x25\xd4\x0e\x5d\xa1\x87\x70\x62\xd4\xcd\xbf\xbe\x93\xa5\xfc\x25\xae\xcf\x71\x94\x91\xab\x43\x19\x5d\x4a\xcd\xd7\x5e\xda\x6d\x85\x49\xd8\x41\x95\x49\xb8\xbf\x4a\x93\x3d\x63\xbd\x0e\x88\x9f\xa8\x42\xe9\xb0\x42\xda\xd2\x43\xf7\x51\x23\x0a\x0e\x1b\x73\xa8\x4d\x59\x77\xd8\x8a\xcb\x12\x4b\xeb\xe2\x35\xe8\xbb\x87\xbb\xdd\x1e\xdd\xa9\xb5\xb6\x71\x8b\xbc\xfd\xf4\xe6\x17\x83\x82\x58\x3b\x0e\x52\x86\x1a\xf4\x8b\x96\x2c\x13\xa8\x70\x75\x60\x50\xc7\xf0\x81\x2e\x21\xc8\x42\xfe\x23\x53\x39\x6f\x53\xda\x29\x69\xce\x3b\x2d\x62\xda\x21\x16\x32\x98\xf2\x83\x85\x31\x1f\x12\x0b\x1a\xec\xe5\x2a\xbe\xb7\x0c\xcf\x48\x64\x03\xc5\x74\x52\x1c\xef\xa7\x99\xe8\x59\xe7\x2b\x0f\x25\x01\x6c\x5d\x81\x12\x7a\x4b\x42\xc8\xb9\x05\xe3\x66\xb5\x75\x84\x9b\x79\xd5\xa4\x76\xf6\xfa\xf8\x3f\xba\x0c\xbd\x5d\x0a\xb7\x97\x50\x65\x53\xc9\x76\x9a\x52\x95\x4f\xb9\xee\x16\xb9\xe1\xc5\x67\xdd\x5e\x1c\x41\x55\x29\xd8\xbf\xbf\x02\x6c\x35\x57\x6d\xe3\xc7\xe9\xf4\x9d\xec\x9e\xf4\x41\x93\x30\x67\x30\x69\x93\xe6\xc2\xf0\x8b\x53\xbc\x48\x66\xcc\xba\x49\xb0\xfd\x39\x83\xf9\xc3\xb9\xbb\x67\x5c\x79\xd9\xa7\x09\x3f\xc9\xa4\xc7\xe1\x8e\x1b\xf4\xd9\xd4\xa5\x54\xb6\xd2\x1d\xae\x3a\x7a\x13\x1e\x76\xd9\xd1\xef\x32\xe8\xba\xe3\xbd\x25\x33\x05\x39\xbd\xe1\x4a\x6c\x86\x53\x9c\xd9\x1a\xc8\xb2\x74\xd5\x29\x20\x5f\x85\x2a\x9e\xab\xc2\xb2\xd2\xa1\xd4\xaa\x6a\xfc\xba\xe0\x8b\xe3\xbe\xfc\x16\x44\x48\xb5\xfb\x9f\xf1\xa0\xdf\xa8\x5b\x83\x07\x3d\x19\x16\xe1\x36\x60\xab\xdb\x6c\xca\xc7\x78\x92\xed\x89\xe8\x6e\x26\x3b\x4c\x71\x8f\xcd\x18\xca\xd2\x2c\x4a\x2c\x1e\x49\xb8\xb1\x37\x5b\x72\x38\xb2\x77\xbe\xa5\x2a\xef\xbf\x46\xd1\x41\xd5\xfb\xbe\xe3\xb1\xbb\x45\x6c\x79\x17\x44\x91\xdf\x9b\xb7\xc9\x3b\xb7\xbc\x31\x34\xff\x7b\x1c\x37\x19\xcb\x6c\xb3\xab\xbd\xaf\x3f\x18\x2f\xbb\x40\x75\x4d\x6d\x45\x02\x93\x5f\x7e\xb3\xc0\xba\x8e\x38\x37\x63\xe6\xd8\x5a\xe7\x64\x3b\x26\xcc\x96\x57\x37\x8f\x43\x41\x7c\xde\x1d\x77\x94\x41\x11\x1d\xaa\x74\xc3\x19\xaa\x82\xcb\xef\x4d\x55\xff\xae\x8b\x24\x24\xcb\xb9\x74\x8e\xe1\x14\xf8\x09\x07\x32\xc3\xb8\x49\x93\x16\x8e\xf3\xa4\xba\x77\x1a\x25\x66\x25\xe7\xe9\x3d\xc9\xcb\x88\x72\xbb\x36\xca\x9e\x9b\x32\x43\x61\x63\x55\x59\xc1\x13\x7c\x59\xcb\x57\xbf\x5a\x23\x32\xe7\x6c\xca\xb0\x79\xc1\x32\xed\xdf\x0d\xf2\xb7\x64\xa5\xe4\xd7\x61\xe2\x72\xa4\x0e\x1a\x7c\x13\x24\xa6\x7f\xe1\x9b\x9d\x30\x00\x7a\xe1\x67\x38\xfa\x69\x88\x16\xcc\x44\xef\x2f\x2a\x16\x5d\x42\xd3\x7e\xcf\xa8\x28\x0e\xff\x66\x9a\xc5\xb2\xc1\xea\xc0\xf8\x8c\x2c\xd1\x6f\x57\xd2\x75\x7d\x23\xa9\x2b\xdd\xf9\x27\x8b\x84\xe9\xdf\xa4\x3d\x4b\xec\xcb\xb6\x5b\xd0\x90\x9d\x85\xa4\xb4\x7d\x4a\x49\xca\xaa\x73\x55\xb4\xa3\xe6\x5d\xae\xd8\xdd\x20\x21\x10\x03\xbf\xc6\x37\xca\xf9\x1d\x60\x0a\x9f\x3e\xd0\xd6\x3f\x7b\xa3\x73\x77\x52\xa1\x15\xa3\x78\xea\xc6\xd1\x8b\xba\xba\x83\xde\x6f\x18\xfd\x8f\x72\xaf\xd7\x74\x14\x39\x53\x0d\x53\xfc\xac\x04\xd3\xf1\x64\x86\x49\x27\xe4\x60\x86\xb3\xf1\xc5\x75\x9b\x5a\x5e\xe9\x02\x5b\xb6\x40\x88\x46\x91\x65\x21\xbd\x9f\xef\xd9\x57\x8d\xac\x75\x1a\x84\x66\xbb\xe5\xb8\xb3\x72\x39\x6a\x36\xaa\x96\x50\x78\xc9\x72\xe2\x97\xb7\x5c\xe0\x65\x2a\xdc\x9a\xbf\x96\x18\x3e\x24\xd1\x55\x38\x74\x9b\x87\x25\x52\xe3\x3a\xcf\x29\x7c\x3f\xec\x35\x05\xd8\xb2\xe6\x7e\x0e\x96\x5b\x95\x30\x8c\xe9\x74\xc6\x87\x06\xd7\x64\x4f\x07\xc8\x6e\xb9\x00\xe4\x08\xfd\xd1\x97\xe0\x9e\xdb\x7e\x59\x8a\xba\x82\xe4\xae\x33\x94\xa7\xf4\x0c\xbb\xa4\xa4\xef\xa5\x89\xdd\x5b\x71\x9b\x0f\xb0\xbd\x31\x0f\xac\xc5\xc9\xe1\x18\x19\xef\xb2\xec\xf7\x23\x98\x9f\x43\x28\xc7\x0b\xe4\xae\x84\xb1\xcb\xb1\x79\x28\xc1\xbc\x4d\x88\xa4\x23\x8e\xb4\xbf\x5c\x47\x92\x88\xaa\xdf\x9d\x9c\x37\x09\x23\x64\xe1\xad\xea\xed\xc7\x9e\x5b\xf8\x5e\xf0\x83\xba\x6f\xaa\x24\x58\xf9\x5f\xe6\xc3\x6d\x57\x5f\xf6\x33\xf9\x47\x01\x8d\x7a\x0f\x5b\x7a\x9d\xa1\x68\x0d\x9d\x52\x31\xde\x54\xf5\x4c\x38\x9a\xef\xfd\xd8\x9a\x11\xb3\xc8\x62\xec\x3e\x14\xc8\x98\x79\x0d\xd7\x22\xad\x2a\x2d\xf2\x59\xb4\x88\xae\x6b\xf2\x55\x8b\x7c\x29\x5a\x44\x16\x2d\x44\x65\x09\xce\x33\x55\xca\xf1\x49\x3e\x6f\xa5\x2b\x13\xea\x97\xea\x51\x2b\x62\x0a\xf5\x06\x96\x55\xc3\xba\x5f\x39\x50\x61\x3c\xd4\xe2\xe6\x1b\x06\xd5\x72\x89\xcb\x0a\x31\x2c\xae\xcf\xce\x6b\x59\xf2\x43\x31\xd9\x80\xb7\x51\xe0\x6e\xcf\xe6\xa4\xc0\xc5\x2a\x2a\xe0\xd8\x5e\x15\xd5\xf3\x96\x86\x0e\x0e\xab\xe5\x25\xbd\x93\xe8\xbd\x77\x81\x62\x71\xa0\xd9\x8b\xa4\x74\x4a\xe8\xd1\x11\x50\x62\x63\xac\x1c\x96\x8c\x30\x95\x7e\xe5\x49\xf7\xe7\x21\xf4\xff\x58\xe4\xee\x52\xff\xef\x90\x73\xac\x29\x19\xb1\xa0\x07\x35\x25\x63\xe6\x35\xc4\x94\xe8\x8a\xfe\xf6\x79\x8e\x99\xe3\x9f\x3e\x94\x49\x51\xb3\x90\x76\xb2\x6a\x2e\xb7\xb5\x27\xf0\xd5\xa0\xdc\x87\x5b\x1a\x91\xe7\xcb\x75\x48\x7b\xa7\x1a\xcd\x74\xe7\xae\xe8\xa8\x29\x3c\x94\xf2\x18\x37\xa9\x21\x9a\x43\x29\x09\xf7\x49\xbf\x50\x5d\xa8\x93\x17\x69\x03\x87\xea\x09\x53\x88\xc3\xe6\x2a\xea\x17\xaf\x4d\x01\xe5\xe8\x71\xb8\xf4\x91\x9d\x9c\xe1\x59\x5d\x87\x45\x92\xbf\xec\x13\x39\x48\xd4\x75\xbc\xc3\x91\x9a\xc5\xc2\xe7\x61\xbd\xfc\x04\x86\xb0\x99\x49\x5f\xfd\x5c\x41\x13\x3d\x81\xdd\xc4\x4d\xbe\x5a\xa8\x1d\x5a\x28\x3f\x33\xcf\x1a\x81\x0c\xc9\xfa\x4c\x81\xc5\x7d\xe2\x81\x49\x9b\x6d\x17\x76\xf9\x6c\xb6\x6e\xcb\x65\xee\xd4\xe2\xf9\x24\x10\x0a\x67\xcb\x69\x8d\xc4\xfc\x43\x69\xaf\x2d\x56\x33\x4e\xaf\x7d\xae\x30\x8e\x9e\xc0\xd7\x48\xce\x97\xa6\xd6\x64\x24\x67\xdd\xf3\x3a\xb9\x7c\x7d\x42\x5d\x97\xd3\xc4\xe4\x0c\xa3\xe3\x3a\x39\xd8\xd9\x78\x0f\x6a\x64\x72\xfc\x67\x0e\xe7\x6c\xa5\xea\x7b\xf6\xc5\x7f\x51\x5d\x3f\xd0\x00\x6c\xb3\xf8\xa3\x23\x10\x55\x68\x3d\xfe\xd2\xac\x91\xbb\x75\x16\x86\x13\xfb\x4e\xc4\x75\xc3\x77\x0a\xae\x3e\x4a\xcc\x20\x65\xd0\xbb\xd6\x1e\xf5\x72\x67\x92\xb9\x97\xd0\xd5\x44\xbe\xdc\x88\xd4\x18\x03\x3b\x96\xec\x5f\x9a\x85\xed\x33\xb9\x63\xd7\x77\xaf\x2c\x7d\x9f\xec\xbc\x3b\x56\xce\xa5\x32\x3f\xab\x09\xc5\x6d\x50\xfd\x59\x7c\x48\x3d\x67\x83\x6a\x67\xa3\x34\xce\xc6\x04\x74\x45\xec\xba\x36\x76\x46\x6c\xcb\x83\xf7\xe3\xed\x43\xc0\x1a\xb7\xb2\x24\xaa\xea\x6e\x4e\xf4\xbd\x39\x90\x38\xb1\x37\x2a\x01\xef\xd4\xfe\x1e\xe4\xd9\x14\x7c\x5d\x82\xeb\x86\xbd\xab\xfb\xdf\xe1\xbd\xf8\xed\x77\xfe\x88\x42\x34\x5e\x57\x45\x0c\x6f\x1e\xe1\x73\x67\xa9\x2f\xed\x83\x67\xe9\xef\x4d\x5c\x0b\x4e\xc5\xcb\xe1\x7d\x05\x35\xd4\xc5\x32\xc1\x29\x36\x9b\x93\xbb\xd6\xeb\x86\x55\xb5\x1b\xd4\x5a\xa0\x6b\x0c\x33\x8c\xad\xc7\xdc\x4c\x38\xdb\x8a\xea\xff\xf2\x72\x89\x27\x15\x94\x21\x86\xa7\xa9\x4a\x1b\x29\x87\x32\xbf\x18\x5c\xc2\xf7\x7c\x29\x5d\xaf\xce\xf7\xc4\x26\xfa\xa8\x66\xfd\xf8\xae\x69\xf4\xa6\x9b\x75\x2c\x45\xab\xf0\xe1\x4b\xc9\x6c\x47\xee\xb6\x14\x0d\x74\xe8\x52\x1e\x2c\x7a\x61\x07\x19\xf6\x2e\x45\x0a\x4e\x89\x29\x6b\xc9\xc6\xc2\xca\x79\xad\x71\xcd\x82\x67\xb6\x88\x4b\xb2\x74\x41\x6e\xda\x2c\x5b\x1a\xc0\x42\x1c\x5b\x21\x20\x89\x12\x77\xa0\x69\xf8\xc6\x50\x2e\x3e\x32\x10\x1d\xe9\xe5\xa9\x9b\xa7\x62\xb2\xa0\x10\xe1\xd4\xba\x51\x29\x87\x7a\xab\x34\x27\xeb\xa6\x4c\xbf\x48\x11\x7d\x34\xe2\xf9\x90\x11\x5c\xdf\xf9\xfa\xd6\x48\x7f\xee\xae\x95\x3c\x40\x19\xf5\xee\xf7\x5d\x75\x95\x31\x46\xd4\xe5\x24\xbd\x61\xad\xb8\xab\x0d\x35\x69\x38\x57\xc9\xa7\x34\x72\xc2\xb9\x8b\xeb\xf8\x70\xbf\x57\xf2\xa1\xfb\x5a\xbe\x2c\xc6\xd1\xe2\xb9\x74\x77\x06\x94\x98\x82\xc1\xb7\xea\x1f\x75\x5c\xab\x07\xf5\x90\xbf\x39\x5d\x51\x49\xa2\x3a\x96\x03\xc2\x7e\x26\xbb\x55\xf3\x28\xd3\x55\x95\x55\xfa\x19\x5f\xa2\x1f\x37\x0c\xd3\xb7\xb8\x95\xe9\xae\xb8\x14\x05\x26\x1e\x9d\x82\x78\xf6\xaa\x23\xbb\x3c\x9c\x88\x62\x40\x77\x94\x12\xcf\xf9\xb2\x84\x4c\x9e\x05\xcd\xf7\xb7\xa4\x59\x58\x52\x33\x97\x36\xde\xa1\x2a\x32\xb3\x37\xc5\x12\x66\x1d\xe9\xb7\xb7\xc9\x4f\xbb\x6b\x1e\x74\x54\x61\x08\x66\x71\xd0\x15\xf1\xe8\x7e\x2d\x30\x9e\xe8\x28\xcf\xce\xe8\x91\xd4\x23\xb6\x38\xe3\xd1\x85\xdf\xdd\xd1\x9b\xd3\x49\xb6\x0f\xea\xc8\xa5\xd7\xf0\xa0\x4e\x5c\x6e\x0a\x43\xbd\x9e\xb0\xff\x67\x70\xde\x72\x53\x18\xe3\xb8\x8d\x0e\xd7\x80\x1f\xd3\x18\xf0\x90\x67\x0a\x82\xf6\x3b\x68\xfc\x84\x25\xfc\xd5\x7c\x30\x8b\x89\x84\x03\xd6\x51\x82\x69\x18\x0e\x3e\x8b\xe3\x75\x87\xf7\x4e\xf1\x56\xaf\x9d\x66\x4f\x81\x5e\x62\xc6\xa2\x58\x8c\x7b\x34\x24\x0a\x78\xd5\xb5\xba\xbc\x53\xaa\x23\xa1\xba\x36\x39\x87\xf2\xf8\x87\x0e\x3e\xff\x31\xe5\x7b\x2f\x31\x93\x15\x58\xe8\xfe\xc1\x31\xfc\x2a\xa3\x22\xa1\x6f\x64\xea\xba\x9d\x53\xa7\xcd\x69\x24\x14\xd3\x2b\xbc\xa1\xc9\xb0\xc4\x1d\xb8\x9b\x77\xff\xcd\xbf\xba\xd7\xc3\xd9\x1d\x21\x53\xd9\x49\xd7\x9c\xf1\xe0\x4e\x0d\x2a\x12\xac\xac\x96\xf1\x5b\x0a\x48\xfc\x59\x9a\x9d\x15\x06\xa7\x68\xb5\xc2\x4d\xb9\x1f\xc3\xda\xb2\xf8\x97\x04\x3b\xe4\x84\x51\xb3\x91\x73\x61\xd4\xe1\xa5\xe8\x34\x71\x3b\x76\xf2\x6b\x05\x1d\xc3\xaf\xee\x07\xa3\x39\xcb\x6e\x7c\x25\x73\x85\x9d\x1d\x9b\x41\xa3\xb1\x4e\xe1\xd7\x7f\xf9\x38\xd3\x79\x43\x17\xe7\x7c\x6d\x6a\xe4\x7c\x68\x4c\xd0\xb7\x63\x13\xfe\x74\x5a\x25\x1e\xb6\x74\xe7\xa4\xa9\xed\x61\xa5\xcf\x0a\x5e\x9c\x3f\x0a\xef\xbe\xfd\x05\xa4\xca\x2c\x31\x2b\x5e\x41\x8b\x84\x9c\xe5\x40\x76\x83\x13\xa0\x86\xc8\x6c\x3c\xc5\x8e\x2f\xd3\x52\xdc\x05\x35\x0b\x31\x0b\x6d\x14\xbb\x74\xac\x24\xe0\xa1\xcc\xec\x72\x37\x61\xb7\xd2\x3b\xee\xb4\xc7\x28\x9f\xd7\xa2\x46\x08\xdf\x9f\x6b\x2d\xb3\x4b\x63\x76\x56\xd7\x26\x32\xc1\x95\x4f\x47\xe4\x22\xab\x8b\x9a\x39\xe9\xeb\x19\x6b\x96\x71\x36\xd2\xed\x39\x54\x27\xe9\xb9\x69\x1e\x19\x11\x94\xf9\xeb\x29\x93\xcf\x68\xa2\x47\xa2\x38\x61\xc7\xef\x60\xc8\x3b\x8a\x24\xa7\x84\xc9\xd6\x91\x4b\x4a\xd4\x8e\x4c\xfa\x59\x5d\xfb\x87\x40\x19\xc9\xf2\x1a\xa5\xc4\xcb\x8b\xc4\x0f\x82\xb1\x85\xa0\x85\x2e\xc3\x20\x61\xeb\x39\x1c\xdb\xca\x0f\xe0\x20\xaa\x1d\x1f\xab\x3d\x4a\x18\x3a\xff\x7c\x43\xb1\x2e\x1f\xf8\xaf\x27\xf6\x5f\x7d\x88\xed\x7c\x88\x6d\x58\xed\xee\xee\x44\x3a\xa4\x08\xc3\x59\x52\xff\xdc\xd5\x03\xe9\xd0\x9a\x2f\x31\xa3\xaa\xb8\x3c\x85\xba\xa2\x0c\xc8\x3c\x7e\xf7\xa4\x99\x93\x76\x89\xfa\xf4\xa0\x5f\xd1\x58\xec\x6e\x3e\x49\x05\x74\x9c\x28\xe4\x7f\x1b\xd0\xcb\x2d\x17\x1d\x44\x5c\xc3\xc9\xeb\x32\x08\x26\x36\x60\x2a\x08\x29\xdd\xae\xfa\xc5\x6a\xdc\x5b\xca\x1e\x64\x4c\x07\xc5\x22\xee\x14\x55\x9a\x23\xfa\x94\x85\x2b\x47\xd4\xd8\x71\x74\xf4\x35\xa8\x91\x18\xe2\x28\xc8\x86\x30\xa1\x11\xfd\xa6\x73\xf8\x10\x50\x3a\xfb\xe2\x18\x7e\x24\xc4\xad\x58\x58\xcb\xfa\xe5\x82\x54\xa7\xc2\x20\xa9\x9a\xd2\xf1\xb1\x96\x8e\x55\x79\x48\x91\x47\x39\x28\xf5\xa8\x84\x7e\x63\x24\x42\xe4\xf7\xa2\xea\xe3\x34\xfa\xfc\xad\x78\x31\x35\x7e\x5d\xa4\xbb\xde\x32\x47\x7c\x04\xca\x3d\xd2\xd1\xcc\x91\x98\xfa\xd6\x39\x26\x7b\x0e\x47\xa5\xb8\x20\x9b\x48\xaa\xae\x0a\xab\xbc\x63\x37\xff\x29\x21\x14\x1f\xa3\xdc\xb5\x88\xee\x07\xe6\x28\xe9\x2b\x4d\x15\x4d\xe3\x8c\xbf\x21\xd4\xba\x2b\xad\x7e\xfa\x4a\xa9\xd1\x94\x1a\x4b\xa7\xa1\x71\x5a\x6d\x93\xa2\x89\x4d\xb8\x6a\x26\x0d\x56\xaa\x78\x9a\x23\xa6\x8e\xdb\x26\x68\x98\x88\xe3\xfe\x97\x53\xd1\x8d\x73\x0f\xa1\xe0\x98\x10\xe9\x9d\x29\xe9\x45\x7b\x52\xe4\xcc\x85\x50\xbf\x12\x35\x51\x99\xbe\x87\xb2\xa3\xe2\x4f\x77\x26\xad\x1b\x8f\x4a\x51\x76\x60\x7c\xea\x2b\xa1\xbd\xc0\xde\x10\x3a\x6f\x15\x1a\xd9\x05\xbd\xfd\xdd\xd6\x40\xa2\x67\x43\x27\x5f\x29\x1f\x47\x9f\x42\xf2\xbf\xac\xc9\x0c\xd5\xb6\xca\xb6\xc3\x05\xc9\x57\x2e\x39\x3f\x68\x3e\xd0\x35\x11\xa9\x7a\x67\xa9\x84\xd9\x46\x78\x52\x12\xbd\xdf\x0c\xdd\xfa\x24\xb6\x87\x09\xd2\x0f\xdc\x2e\x7e\x25\x7a\xb4\xd5\x0e\x69\x7e\x8e\x19\x6e\x97\x55\x83\xa9\xd8\xc9\x36\xee\x1b\xa6\x14\x33\x58\xaf\xe4\x73\x6e\x28\xf7\x9c\x4a\x6a\xef\xaa\x86\xfb\x3b\xba\xc6\x71\x3a\x40\x82\x9c\xa3\xf7\xa9\xc1\xea\x53\x14\xf2\x90\xcc\x51\xb1\x03\x5a\x4d\x8b\x05\x2e\xae\x62\x24\xca\xa7\x0d\x29\x20\x98\xb5\x22\x8f\x02\xdf\x00\x5e\xae\xd8\x26\xc1\xf5\xf6\x75\x65\x79\x89\x83\x2f\x80\x42\x65\xee\xcb\x14\xa8\xae\x55\x86\x47\x88\x5a\xf9\x44\x5e\xc7\x8b\x23\x5e\x96\xdb\xb1\x7d\xec\x6e\x33\xf2\x55\x47\x9b\x16\xe6\x44\xac\x86\xc2\x9b\x80\xbb\x3d\x9a\x8a\xff\x6c\xa1\xff\x03\x78\x12\x7f\x2d\x07\xf8\x5e\x3e\x5d\x71\x70\x0c\x3f\xc4\xf1\x98\x4f\x21\xcd\x4f\x0e\xf5\x23\x84\x31\x42\x02\x3c\x78\x7f\x4e\xfc\x35\x39\x7f\x78\x64\xad\x9a\x8a\xed\xbb\x39\x4d\x69\x4e\x71\x5e\x49\x85\x53\x30\x8f\x61\x46\xe2\xd8\x03\xe6\x6d\x5b\x5d\x23\x66\xc0\xac\xe4\x9f\xe3\xc1\x18\xbe\x15\x50\xc4\x5f\x19\x20\xb7\x7b\xb7\x7b\xf0\x3f\x01\x00\x00\xff\xff\x5b\xff\x62\x07\xf3\xdd\x00\x00" +var _flowstakingcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x59\x73\x1b\x37\xd6\xe8\xbb\x7e\xc5\xb1\x1e\x1c\x6a\x42\x51\xa9\x7b\x6f\xdd\xfa\x4a\x65\xc5\x71\x2c\xdb\xa3\x72\x62\x7b\xbc\x4c\x1e\x52\x53\x09\xd8\x0d\x8a\x3d\x6e\x36\x98\x06\x28\x85\xe3\xf1\x7f\xff\x0a\xfb\xde\x0b\x45\xc9\x76\x39\x7c\xb0\x45\x76\x63\x3b\x38\x3b\xce\x39\x38\xf9\xdb\xc1\x01\x00\xc0\xd3\x9a\x5c\xbf\x61\xe8\x7d\xd5\x5c\x3e\x26\x75\x8d\x0b\x56\x91\x46\x3e\x7a\xbb\xac\x28\x14\xa4\x61\x2d\x2a\x18\x94\x78\x51\x35\x98\x02\x82\xc2\xbc\x07\x0b\xd2\x02\x95\xad\x01\x35\x25\x94\xb8\xc6\x97\x88\xf1\xaf\x64\xfe\x6f\x5c\x30\x2a\x7a\xba\x5e\x56\xc5\x12\x50\x5d\x93\x6b\x0a\x1b\x8a\x5b\x0a\x8c\x88\x86\xd8\x6d\x86\x45\x7f\x88\xc2\x0a\x35\x5b\x68\x48\xc9\x87\xa3\xc0\x96\x78\x0b\xd7\xa8\x61\x50\x35\x80\x80\x56\xcd\x65\x8d\x01\x15\x05\xd9\x34\x6c\x26\x06\xb8\x60\x20\xe6\xba\x5a\x23\x56\xcd\x6b\x0c\xd7\x15\x5b\xf2\x86\x50\x93\xe2\x3d\x2e\x81\x91\xf7\xb8\xd1\x6d\x80\x62\xb6\x59\xcf\xe4\x2a\xdf\x60\x2c\x5e\x24\xcd\xa2\x26\xd7\x27\xfc\x9f\xe3\x82\xb4\xf8\x58\xaf\x9c\xc2\xeb\x27\x8f\xce\x7f\x7e\x22\x26\xb7\x22\x2d\x86\x65\x75\xb9\x84\x1a\x5f\xe1\x1a\xaa\x66\x41\xda\x15\x12\xc0\x40\x73\xb2\x61\xa2\x2f\x0d\x12\x0b\x29\x3e\xd8\xdf\x4e\x0e\x0e\xaa\xd5\x9a\xb4\x0c\x9e\x6e\x9a\x4b\x3e\xcf\xb7\x62\x5a\x8b\x96\xac\xe0\xd0\xfb\xed\xd0\xbc\x59\x93\x6b\xef\x2d\xfd\xdd\x7b\xe3\xe2\xfc\x2d\x9a\xd7\x58\x6d\xa4\xf3\xaa\xff\xc0\xb4\xf9\x49\x40\x45\xf4\x43\xd5\xdb\xee\x4f\x5e\xdf\x6f\x18\x69\xd1\x25\x7e\x8a\x31\x75\x3a\x76\x7e\xf5\xde\x7e\x5c\x6f\x28\xc3\xed\x3f\x1e\x3b\xef\x9a\xdf\xbc\x37\xcf\x9f\x3f\x73\xde\x39\x7f\xfe\xcc\x7b\xfa\x64\x4d\x8a\xa5\xf3\x5c\x7c\x37\x6f\xfc\xb8\x69\x1b\xdc\xaa\xc7\xf2\xcb\xe1\xc1\x01\x2a\x0a\x4c\xe9\x04\xd5\xf5\x91\xc5\xdb\x24\x82\xc3\x07\xb9\xf9\x27\x27\x27\xf0\x48\x21\xc5\x1a\xb1\xa5\x44\x57\xb7\x9f\x1a\x33\x88\x9a\xab\xc5\xbf\x42\x6c\x79\x0a\xce\x97\x61\xad\x5f\xb5\xd5\x15\x62\xaa\xb5\xf3\x65\x60\xeb\xcd\xbc\xae\x0a\xd5\xd8\xfc\x6d\x97\xf3\xe4\x0a\x37\x2c\x5e\x07\xe6\x3f\xc3\x0b\x52\xe2\x47\x65\xc9\xf7\x39\xea\x78\xc2\x09\xee\xe2\x9c\x2f\xa8\xad\x9a\xcb\x29\xb4\xa4\xc6\xa7\xf0\xee\xa2\x61\xff\x33\x05\xb4\xe2\x40\x7a\x4c\x56\xab\x8a\x31\x5c\x9e\xc2\xbb\xa7\xd5\x9f\xff\xff\xff\x4d\x01\x95\x65\x8b\x29\x3d\x85\x47\xf2\x8f\x87\x47\x99\xb1\xcf\x25\x91\x93\x76\xf0\x04\x4a\xdd\x82\xff\xc8\xe7\xf1\x7f\xff\xcf\xb8\x89\x74\x40\xe1\x35\x5e\x91\x2b\x5c\x3e\x6d\xc9\x6a\x2c\x24\x46\x2f\x78\xd4\x58\xe9\x45\x0f\x5e\xdb\xcf\xa8\x58\x56\x0d\x56\x48\xfd\xb8\xc5\x88\xe1\x72\xdc\x82\x8e\x2c\x32\xbd\x61\xed\xa6\xe0\x3c\x0d\x31\xa0\x8c\xb4\x98\xda\xf9\xc1\xc5\xb9\x60\x7f\xd1\x44\xa8\x6c\x74\x6e\x17\x42\xe1\x83\x78\x2b\x85\xe0\xa6\xbf\x17\xde\x1c\xfb\xdf\xb7\xf0\x39\x30\x2f\x5f\x55\xf8\x1a\xaa\xa6\x62\x43\xc0\x7a\xe4\xcc\x8a\x7f\x28\xae\x17\xb3\x60\x3a\x70\x06\xb2\xa7\x8e\x37\xc5\x5b\xce\x37\xf3\xea\xc7\x03\xf9\xaf\x01\xe7\x63\xd2\x30\x54\x35\x34\x21\x36\x90\x18\xe7\x1b\x2e\xfb\xc4\x06\x6a\xb6\x64\xda\x4a\x19\x5a\x71\x01\x4c\x71\x41\x9a\x12\xb5\x5b\x23\xd0\xc4\x06\x55\x14\x48\x53\x6f\x61\x85\xb9\xac\x64\x04\x96\xa4\x2e\x4d\x7b\x2e\x97\xfe\xf1\x18\x48\x0b\x9c\xf1\x4a\xe9\x2c\x84\xef\xd3\x9f\x5e\xfe\xc2\xdf\x46\x1b\x46\xf8\x94\x0a\x54\xd7\x5b\x58\xa3\xad\x10\x78\xac\x45\x0d\x45\x4a\xda\x63\x4c\x4d\x7f\x2d\xae\x39\x6a\xf1\x96\x4e\xb7\x6b\xdc\x8a\x55\xd1\x59\x0e\x2d\x7c\x04\xbd\x68\x16\xa4\x03\x39\x9a\x61\x38\xe1\xa0\xb3\x79\x87\x83\x1b\xad\xd1\xbc\xaa\x2b\xb6\xe5\xb3\xe4\x00\x10\x6b\xfd\x27\xda\xd4\x02\x3e\x42\x21\x91\xc2\xff\xba\xc1\xad\xdb\x94\x11\xa1\x42\x94\x2d\xba\xe6\x6b\x2b\xf1\x9a\xd0\x8a\xa9\x6e\xaa\xd6\xec\x92\xde\x80\x6a\x01\x0d\xc6\x25\x2e\xc3\x39\x6a\x39\x24\x27\xba\xf2\x16\x2f\x26\xf2\xaa\x25\x57\x55\x89\xdb\x53\x67\xba\x0f\xd0\x86\x2d\x27\x9e\x42\x30\xfb\x45\x4d\xe7\x08\xee\x1b\x1d\x60\x26\x7a\xf8\xde\xe2\x7f\x12\xf5\x3d\x62\xbf\x9d\x19\x84\xa4\xb4\x6e\x71\xf0\x0b\xff\x74\x8c\x3d\x2b\x96\xb8\x78\x3f\x39\x3a\x8d\x1a\xf1\xcf\x61\x52\x88\xcf\x62\x54\x9a\x71\x00\x9c\xc2\x45\x73\x85\xea\xaa\x14\xb2\x1f\xa4\xf6\x24\x37\xdd\x0c\x77\xe8\x8d\xf3\x31\xa6\xee\xa6\x8f\xfc\x39\x54\xe1\x4c\x00\x37\x7e\xd8\xb1\x52\x38\xeb\x82\x83\xc3\x3b\x5c\x74\x7c\x86\x99\xd0\x83\x35\xaf\x06\xb2\x10\x5f\x03\x34\x4c\x12\x88\xe0\x89\x8b\x4d\x03\x97\x98\x29\x0e\x3f\x39\x32\xcc\x3e\xd8\xa6\x16\xb3\x4d\xdb\xf4\x2e\x62\x36\x27\x6d\x4b\xae\x27\x47\xf7\x66\x82\x74\xee\xcd\xd4\xc4\xf2\xbc\x4f\xea\x2a\x50\x35\x0c\xb7\x0b\x54\x60\xc9\xb3\xa4\x31\x50\xa0\x06\xd6\xfc\x39\x5d\x4a\xa6\x23\x68\x2c\xd6\xa2\x4d\x67\x94\xc8\xe6\x84\x2d\x75\xfb\x3f\x36\xb8\xdd\x06\x2d\x93\xe2\xa9\xc5\x94\x6c\xda\x02\x3b\x53\xc9\x28\x59\x19\xc6\x74\x85\x5a\x65\x56\x48\x6d\xf9\x1d\xb5\x6a\x48\xb6\xc1\xa6\x19\xd5\x84\xef\x17\x2a\x4b\x2e\x84\x5e\x0a\x56\x3d\xf9\x4d\x60\xe2\x29\xfc\x10\xab\xf5\x33\xfe\x1a\xff\x1b\xb7\x21\x81\x73\xa2\x38\x4d\xf0\x5c\xa5\xb4\x64\x86\x35\xa2\xdb\x8c\x6d\xc4\x5b\x7e\x02\xa6\x51\xba\x6b\x83\x86\x25\xc1\x54\x4c\xf6\xc9\x9f\x15\x1d\x24\xa8\x1f\x1e\x9d\xc2\x8f\x84\xd4\xd9\x29\x5f\x62\x26\xc5\xb5\xc0\xec\x5f\x65\x57\xff\xea\x7a\xdd\x55\x4e\x44\x1b\xf7\x87\xce\x96\x8f\xea\x5a\x8c\xd5\x2c\x88\x68\x98\x81\x06\x7f\xde\xd7\x8f\x1d\xb3\xa3\x33\xef\xa5\xce\x1e\xfd\x5d\x16\xcb\xfa\x20\x41\x91\xc2\x00\x8f\x40\x3d\x3d\xb2\x61\x15\xab\xf1\x8a\x6b\x93\x96\x22\x5e\x0a\x09\x69\x08\xf0\xed\x12\x5b\x42\x52\xea\x21\xc7\x3f\x2a\xd5\x44\x6e\xa9\x4b\x52\x54\x9c\x49\x19\xfc\xa4\xc5\xa6\x0b\x54\xd7\x01\xb9\x2a\x97\x81\xd0\x4a\x8a\x48\x76\x2b\x4b\x5e\x4b\x5c\xf9\xb2\xe9\xed\x39\xc6\x6b\xca\xb5\x95\xe2\x3d\x67\x8e\x4b\x72\x2d\xbd\x08\xba\x55\x53\x1a\x12\x94\xce\x00\x0a\xa8\x95\x96\x3a\x2e\x5d\xbe\x52\x31\x78\xdf\x90\x6b\xaa\x14\x2e\xf5\x2e\x23\x70\x59\x5d\x61\x3d\x17\xce\xb6\xe0\x7a\x89\x1b\xe9\x9c\xd0\xea\x01\x1f\x45\xab\x0d\xa6\xcf\xb2\x5a\x2c\x70\xcb\xa1\xc9\xb6\x6b\x2c\x59\xb7\xe8\xd4\xbc\x61\xfe\xf8\xe5\xd1\xeb\x17\x17\x2f\x9e\x9d\xc2\xc5\x02\xb6\x64\x03\x25\xa6\xac\x25\x5b\xae\xf2\x45\xbc\xd0\xba\x38\x7e\x57\xaf\xfd\x0e\x05\x59\xad\x50\x53\x4e\x4d\x87\xbc\x93\xeb\xaa\xae\xa1\x26\x14\xab\x5d\x56\x9a\x0f\x7f\xd6\x6a\x27\x8b\xf5\xc1\x90\x96\xca\xfd\x4c\xfb\x31\x4c\xcf\x2b\xd4\xa0\x4b\x4c\x67\x7a\xaa\xd7\x4a\xe7\xd4\x53\xae\xd8\x54\xfc\xbe\xda\x50\x06\xb8\xe2\x7c\x5a\xea\x92\x0b\xdc\xda\xa1\xc5\x5c\x1c\x08\xa1\x40\xe9\xdd\x34\xca\x49\xa4\xe7\xab\xb7\x2e\x05\x68\xf1\x82\x6a\x51\xba\x6f\xb6\xf8\x1a\xb5\x25\x85\x45\xd5\x52\x06\x73\xbc\xe0\x18\xaa\x26\xca\x49\xcc\xc5\xea\x86\xef\xad\x07\xd6\x48\x38\xfc\x0e\x2b\xcc\x96\xa4\xf4\x97\x9b\x97\x33\x51\x07\xa7\x39\x81\x33\x55\x8e\x8d\x19\xff\x8f\x33\x01\xed\xa7\xb0\xf0\x50\x28\x7c\xc5\xa5\x71\xc8\x0c\xb8\xd4\xf6\xa5\x8d\x10\xda\x7b\xd1\x2c\xf9\xe8\xc9\xb1\x85\x6d\xc2\x51\x6c\x8e\xa1\xa9\x6a\xae\x09\x0b\x45\x45\x91\xe9\x12\x51\x68\x08\x14\xa4\x6d\x31\x5d\x93\xa6\xe4\xf8\xe4\x93\x72\x7e\x19\xfb\x59\xc4\x43\x7f\x15\x6f\xa4\x1d\x1b\x32\x1d\xae\x77\xa4\xa8\xc1\x6b\xfb\x18\x35\xd2\xc6\xe2\x48\x42\x1a\xec\x58\xc3\x6b\xac\x50\xda\x51\x16\x79\x13\x6e\x16\x70\x4c\x99\x63\x58\x4b\x5f\x8f\x1a\xea\x1a\xe6\xb8\x40\x0a\xdb\xb6\x50\x90\x4d\x5d\xf2\xb7\x36\xd4\x01\x91\xc3\x29\x92\x10\x6a\x8c\xe4\xa7\xa7\xf0\x83\x61\xf7\x9d\x3a\xc2\xc7\xee\xee\x8c\xc0\x19\xd2\xa3\x79\xf9\xe3\x41\x00\x28\xb1\x59\x96\x7b\x8b\x0d\xf9\x3b\xa9\xb9\x06\xac\x8c\x4f\x29\x23\x2c\x4e\x87\xe8\xe0\x38\xe7\xa8\xa0\x76\x69\x27\x07\x72\x40\xe0\x5e\x43\x94\x7f\x02\xd8\xb2\xa2\x53\xce\xc4\x1d\x9c\xcc\xaf\x97\xd9\x59\x0d\x45\xb0\xa9\xe7\x3c\x9d\x89\xff\x5e\x1a\xb3\xf7\x08\xee\xc7\x8f\xe5\x00\x21\x1e\xbe\xe5\xb2\x8a\x0e\x92\x54\x9a\x17\xe3\x96\x1b\xf9\x12\x41\x84\xab\xdc\x88\x50\x83\xb9\x27\xc2\x5a\x4d\x22\xef\x2f\x9c\xbb\x15\xd2\x71\xc6\x7b\x68\xf0\xb5\x1a\x60\x0a\xb1\x64\xdc\x50\x5c\x4a\x8e\x39\x85\x05\xe1\x96\x32\x2e\x61\xbe\x0d\xe7\x16\x8f\xa0\xf9\x32\x1f\x42\x77\x9f\x12\xbd\xfa\xbd\x26\x35\x4a\x27\xfa\xdf\x8a\x16\x9e\xda\x9b\x84\x89\x45\x01\x51\x4a\x8a\x4a\xf8\x3e\x84\x08\x16\xa0\xcf\xa3\x98\xaf\x8f\xd3\x1e\x9d\xcc\xb7\xe4\x3d\xd3\x6c\x5f\x3c\x7d\xea\xf5\x7a\xc7\x14\xa0\x87\x1d\xe6\x30\xf0\x96\xbc\x93\x8b\x20\xfe\x45\x7a\x08\x1e\xa3\x86\xf3\x8c\x8b\xa6\x62\x15\xaa\xab\xff\x60\x40\x5a\x28\x3b\x4a\xef\x3d\x38\x4c\x0e\x36\x2b\x48\x53\x20\x36\x39\xe4\x6a\xf0\x5a\xda\xc4\xa5\x73\x54\x23\x9d\x0d\x8e\x0a\x2b\x10\xc5\x38\x94\x1c\x0d\x9b\x72\x82\xae\xa4\xbb\x62\x76\x78\xd4\xe7\x95\xf0\x00\x02\x67\x3e\x80\x0e\xd2\x5e\x0c\x25\x1e\xe0\xc1\x31\x7c\xc8\x38\x3a\x2c\xcb\x57\x6f\xc5\xaf\x85\x74\x03\x67\xf0\xdd\xec\xbb\xfc\x0c\xa3\x37\xbd\x57\x4f\x4e\xb8\xde\x18\xea\x09\x21\x6f\x9f\x0a\x2a\x50\xfb\x53\x09\x1b\x82\x43\x77\x29\x90\x29\xec\x8f\xf3\x4d\x57\x41\x71\xc0\xef\xbd\x5a\x2d\x84\x27\xce\xc1\xfb\x97\xf3\x7f\xc3\x99\xfb\x43\x02\x13\xc5\xda\xdc\x57\xbc\x06\x07\xd1\xfb\x27\x27\x20\x5d\x24\x8a\x87\x70\x59\x27\x26\x2f\xf5\x66\x23\x03\xc5\x09\x56\xc2\xba\x49\x75\xc8\x6d\x10\xcc\x1c\x2d\xde\x69\xd7\xb9\x64\xfe\xe1\x6b\x76\x76\xe6\x67\x35\x8d\xb3\x00\x10\x8e\x63\x47\xfe\xe5\xbe\x3d\x39\x4a\xc3\xc5\xc7\xc9\x78\x94\x99\xaf\x31\xf2\xcf\x47\xc0\x35\x4d\x91\x7c\x02\xd0\xae\x04\xef\x18\x37\x7c\x2d\x85\xc5\x01\x33\x86\x33\x97\x24\x02\x15\x46\xf8\xdc\x84\xe5\xd5\x94\xa8\x2d\x01\xb7\x2d\x69\x61\x85\x29\x45\x97\xc2\x70\xa1\x5c\x74\x6b\x23\x10\x5a\xfc\xc7\x06\x53\x2e\x15\xa4\xa4\xf6\xfa\xaa\xa8\x50\x51\x84\x33\x98\x73\x17\x21\xe3\x3a\x2c\x2c\xd5\xce\xeb\xe3\x87\x35\x6a\xd1\xca\xb8\xc4\x39\xeb\xb9\x38\xd7\x8e\x40\x3b\x3a\x7f\x9e\x6a\xe7\xf9\x55\x72\x8d\xcd\x4b\xbd\x9e\x44\xc9\x55\xce\x09\xa6\x0d\x13\x8e\x9c\x8b\xc6\xf2\xcd\x27\x1c\x54\x93\xc5\xa6\x29\x5e\xa0\x15\xb6\xbe\x9d\x81\xbe\x1e\xf9\x38\x40\x0e\x8e\xc0\x62\x0b\x7e\xc4\x97\x55\xd3\xf0\x17\xce\x86\x73\xfd\x43\xcd\xb2\xf5\xa4\x8e\x0c\x0f\x3f\x85\x80\xef\x2a\x0e\x61\x55\x7b\xef\x74\x27\x81\xb3\xca\x69\xea\xcf\xce\x93\x11\x74\x8d\x8b\x6a\x51\xb9\x10\xb6\xca\x03\xdf\x89\xc3\x98\xb4\xc0\x11\x34\x12\x70\x76\xce\xbe\x8d\x22\xda\xeb\x67\xe6\xd7\x19\x23\x12\x90\x93\xa3\xee\xce\x0f\x85\x4b\x4e\x20\x28\xe6\x3b\xa9\x15\x73\xe1\xd9\xfd\x86\xba\x51\x0c\x7d\xf3\x3c\xfc\x99\x5b\xeb\x74\xd3\x62\xeb\x44\xb8\x38\xa7\xc2\x13\x80\x1b\x86\x5b\x5c\x3a\xa6\xa0\xb2\xfe\x0d\x44\xf4\x29\x56\x48\x26\x15\x4d\x45\x54\x84\xd2\x32\xc7\x51\xc6\xec\x8e\xd8\x0e\xb1\x31\x3b\xec\xc9\x2d\x43\x31\x03\x44\xe9\xcf\x51\xde\x94\x1b\x01\x30\xc7\x08\x1f\x23\xd1\x93\xe1\x74\x8e\x0f\xaa\xa2\xda\x03\xc2\x65\x50\x85\xe0\x77\xe5\xc0\x98\x6f\xda\x66\x72\xf4\x7b\xfe\x34\x8c\xb3\x11\xfe\x12\xef\x7c\x8e\xb8\x5e\xe7\xfa\x3a\x40\x11\xbc\x84\x31\xe7\xd3\x82\x7d\xbb\x7e\xde\xe8\xdd\xd2\x3d\x6f\xb6\x0d\x7c\x4f\xaf\x3f\x84\xb6\xf9\xc5\x49\xb6\x19\x2c\x23\x94\x8a\x9a\x50\xa9\x4c\x19\x9f\xb5\xfc\x3f\xe0\x63\x4d\x55\x87\x80\x8d\x06\x75\x49\xb7\x6a\xfc\xa9\x0f\x1f\xde\x69\x16\x9e\x5b\x07\x73\x4a\xbe\x79\x71\xbe\x03\x02\x38\xf6\xa3\xb2\xe5\x9c\x18\xb0\x99\x3a\xa8\x72\xe2\x8a\x94\xeb\x8f\xb4\x30\x27\x6c\x29\xf5\x14\xdf\x68\x7c\x47\x31\x0d\xec\x4f\x65\x10\x32\xe1\x8e\xd3\xa6\x63\xb5\x00\x6e\x26\x8b\x08\x2c\xe9\xba\x15\x96\x7f\xf2\xd4\x55\x9a\x5f\x4a\x54\x49\x55\x74\x22\x03\x47\xb4\xbd\x77\x74\x0a\x3f\x7c\xf0\xed\x1b\xa1\x48\x7c\x4c\xa1\x61\xa8\x76\xc7\xba\xb8\xd5\x9b\xb2\x8d\x7f\x44\x35\x6a\x0a\x1c\x6a\xed\xb3\xb9\xfa\xfd\x38\x8c\xb6\x9a\xad\xaa\xa6\x5a\x6d\x56\xea\xa7\xd7\x98\xe2\xf6\x0a\xd9\xf8\x3c\x0b\x44\xa5\x4c\xb7\x58\xc6\x07\x84\x5a\xb4\xf6\x68\x7a\xba\xa2\x80\x71\x28\xf7\x22\xb5\xea\x9e\xd0\xab\x42\x98\x80\xa7\x50\x7a\x50\x71\x7e\xba\x97\x01\x8a\xdf\xda\x82\x65\xaf\x40\x11\xc8\x40\x29\x6e\x03\x2b\xda\x3c\x13\xd8\x00\x0f\xce\x82\x69\x7c\x1b\xee\xd7\x34\xd9\x5c\xa9\x81\xa7\xc3\x35\x10\x83\x88\xc6\xf8\xbc\xd4\x66\x88\x8d\x86\xcc\x19\x9c\xfa\xe3\x89\x2d\xb5\x04\xb2\x90\x61\x0d\x56\x8b\x63\x84\x6f\xf9\x34\x27\x66\xc2\xce\x64\x3f\xae\xba\x60\x86\x99\x72\x84\x5a\x49\xbf\x1a\x92\xdc\x9f\x6e\x56\x7c\xc8\x81\x7d\x1f\x26\xdd\x5a\x7c\xbe\x53\x47\x67\x99\x78\x10\xff\x36\xd8\x81\xa3\x5e\x4d\x26\x1a\x75\x1a\x4a\x5f\xed\xbd\x09\x85\x1e\xff\x1c\x25\xcd\xb7\x8b\x85\x76\xaf\xe9\x4d\x2a\x50\x03\x73\xae\x2d\x8b\x68\x2e\xc9\xde\xe4\x44\xa7\xd6\xb6\x97\xe7\x0d\x42\xe3\x60\x4b\xbc\x8a\x7a\xae\x16\x30\xc9\xe0\x5e\xe8\x13\xd1\x9f\x9c\xfd\x9d\xfe\xfd\x5b\x85\x17\xf1\xa2\xc0\x2a\x43\x0f\x8e\x5d\x62\xd3\x93\x37\x2c\x52\xfe\x1f\x43\x2a\x03\x27\x8e\xcc\x1c\x56\x5d\x00\x92\x3f\xc2\x35\xd7\x50\xe4\x7b\x8a\xbf\xab\x07\xd2\x0e\xa1\xca\x22\xd6\x18\x10\x0d\x68\xb4\xbc\xe4\xea\x4e\x4e\x60\xb3\x2e\x11\xc3\x81\x3c\x11\xbe\xcc\x16\x17\xa4\x15\x0a\x11\x2a\xc5\x29\x84\x19\x52\x99\x41\xaa\x8d\x62\x3d\x7b\xd9\x0a\x6f\x7f\xd3\x73\x16\x6a\xce\x66\xf5\xce\xf3\x9b\xbc\x25\xef\x28\x67\x89\x0a\x53\x8e\x87\x74\xc4\x45\xa9\x5c\xbc\xe7\x55\xef\x05\x81\x1a\xc3\xb0\x8f\x5c\xe7\xab\xaa\xd9\x50\xb1\x81\xf8\x0a\xb7\x70\x8d\x54\xa7\xa1\x0b\x23\xf0\xd9\x46\xe0\x4b\x7a\x88\x72\x4f\xbe\xcd\xc0\x26\x0f\x4b\xb5\xde\x07\xc7\xd6\x1f\x37\x2b\x44\x18\xe4\x93\xd5\x9a\x6d\x05\xc6\x4f\x84\x08\x7c\xbb\x5d\xe3\x53\xe0\xff\x3e\xf8\x21\x74\x92\x72\x4e\x93\x03\xc4\x33\xcc\x94\xeb\x8a\x6d\x50\xed\x6b\x3b\xa8\x58\x42\xec\xed\x70\xe7\x27\x97\xf2\x8a\xb4\x42\x81\x7e\x70\x0c\x9d\x94\xe8\x33\x88\x6c\xa7\x1a\x72\x4e\xb7\xbe\x92\x11\x75\x9c\x06\x6b\x7e\xd1\xe7\x3a\x02\x6e\x89\x57\x50\x35\xca\xfb\x44\xd1\x0a\x77\xac\x57\x82\x66\xa6\x8e\xc7\x27\x1c\x44\xa7\x86\xf7\xa8\xb9\xa6\x17\x95\x69\x19\xac\x33\x33\x5d\xc3\xe4\x32\xa8\xf8\x71\x98\xe1\x78\x72\x02\x6f\xaa\x46\xc4\x37\x28\xd5\xaa\x21\x91\x6e\x25\x64\x84\xc4\x80\x25\x92\x01\x02\x05\x59\x61\x4b\x15\x0d\x69\x57\xa8\xb6\xf4\x38\xcf\xd1\xf0\x30\x6d\xe5\x2f\xed\xa4\x53\x3b\xf1\x47\x1d\x3c\xc8\xe4\xd3\xab\x1c\xbb\xf0\xc6\x9c\xa4\x37\x04\xd0\xc3\x04\x52\x72\x3e\x6b\x05\x2a\x0e\x60\xcc\x3b\x6e\xb5\x4b\xdf\x83\x34\x28\xd0\x82\xe1\x16\xe6\x98\xcb\x15\xe7\x6c\x8f\xd3\x81\x3c\x5b\xc1\x22\x4a\x58\x65\x08\x91\x66\x96\xeb\x3d\x92\x5d\xca\x1c\xac\x16\xb0\x26\x94\x72\x83\x6d\xc4\x61\xa1\x35\x05\x15\x33\x51\xe6\xa0\x64\x29\x69\x1b\x70\xd8\xe9\x94\x08\x18\xa9\xa8\x72\x0c\xd3\xa5\x38\xc0\x6f\x84\x70\x9c\x63\x60\x6d\x75\x79\x29\x7c\x35\x55\x03\xeb\x96\x94\x1b\xe9\x32\x99\xe3\x02\xd1\x0d\x76\x15\x4b\x75\xd4\x8a\xeb\x32\xe6\x55\x27\x27\xba\x67\x11\x40\x40\xd6\xb8\xad\xb7\xea\x14\x41\x4a\x72\xa5\xa4\x8a\x50\x48\xbe\x4e\x31\x4c\xdc\x11\x5f\xaf\x31\xab\x1e\x74\x61\x55\x52\x99\xb9\xe1\xa9\x9b\x07\x7b\xc3\x63\x74\xdc\x94\xa0\x61\x19\x87\xce\x09\x99\x1b\xb1\x75\x8b\x51\x29\xe2\x2c\xca\x30\x56\xf7\x66\xe6\x79\x60\x3a\xf7\xd9\xce\x97\x4a\xd8\x7b\xb6\xb3\x3c\x81\x52\x9e\x1c\xb1\x04\x37\x3a\x1d\xfa\x6c\xe9\x84\x22\xcd\xcd\x82\x81\x3b\xd4\x69\x26\x8c\x62\x20\xc7\x1e\x52\xa4\x65\xa9\x0f\xc6\x50\x1e\xf3\xff\x63\xee\x96\x95\xa8\x12\xe4\xf0\x5a\xb2\xa7\x24\x99\xef\x38\x89\x98\xb7\xe5\xa0\x97\x66\xe7\x23\xce\x2e\xbd\x26\x83\x6d\x81\x00\xd6\x19\xc8\xb8\x5c\x4d\x32\x71\xad\xa5\xeb\x18\xb9\x02\x03\xa2\x43\x55\xed\xb4\x33\x66\xe8\x2e\x8e\x38\xb0\xbb\x09\xda\x85\x1d\x66\x8c\xcc\x2e\x25\x4c\x13\xa9\x8c\x26\x0f\xcf\x42\xd5\x61\x89\xce\xe0\xd0\x2a\x4d\xc5\x66\xd1\x50\x63\xb1\x3d\x2b\x2c\x25\x8a\x53\x60\xed\x06\x0b\xcf\x65\x4a\x02\x6a\x7b\x4c\x9c\x17\x50\xad\x3f\xc4\xc9\x8a\x22\xd4\x47\xc4\x9f\x6a\x27\xb5\x58\x12\x59\xf3\xa7\xa8\x76\xbd\xbb\x53\x29\x07\xae\x2b\x8a\x61\x81\x6a\x8a\x67\xdd\x27\x79\xbb\x07\x63\x07\xa8\x10\x44\x53\xf9\xc9\x5c\x0f\x13\xc7\xb3\x41\x83\xf3\x74\x1a\xd8\x98\x96\xce\x1c\x41\x35\x1b\xe7\x27\xd5\x68\xe4\xa6\x0f\x68\x45\x1e\xb1\x28\x3e\x0d\x1c\x3e\xef\x9e\x58\x3b\x7c\xde\xff\xa8\x83\xc5\xdf\xfc\xe3\xed\xb0\xbd\xa5\xd4\x0c\x07\x8d\xc0\x0c\x67\x5e\x9f\xf6\x98\x24\x71\x60\x1f\x74\x70\x1e\xa5\xbb\x85\x3d\x05\x6f\x8c\xe8\xb2\xbb\xbb\x64\x57\x1f\xbb\x44\xbd\x0d\x1a\x51\xc6\x04\xdf\x45\x49\x1b\x06\x4f\xa7\x20\xa2\x84\x84\x56\xa4\x95\x45\x37\xb4\x99\xbf\x6e\x7e\x5f\x21\x56\x2c\x31\xed\x3c\xfc\x0d\x93\xfb\xd2\xdb\x3a\xe9\x00\xe9\xbd\x74\x04\x03\xff\xdc\xbf\x9f\x03\xdc\xf8\x46\x72\xb4\x7b\x70\x96\x4c\x59\xea\x1d\x51\x34\xcc\x1e\x0d\xf1\x4f\x1a\x19\xb5\xaf\xb3\xdd\xc4\x9c\xfc\x63\xd2\xb1\xfa\x13\x21\xef\xc3\x6d\xb3\xc1\xec\xc1\x59\xac\x62\x75\x6e\xd2\x69\xce\xda\x11\x74\x24\x49\xc7\xac\xab\xfb\xa4\xce\x5d\xae\xa6\xda\x61\x42\x2f\xd8\x72\x6f\xa7\x03\x18\x47\xfb\x92\x23\xeb\x91\x90\x8c\x57\xcd\x47\xd2\xa7\xd2\x29\x04\xca\x0a\xab\xa7\xca\x68\x10\xd6\x5c\x59\x02\x6a\xa4\x48\xe2\x3c\xd0\x86\x0d\xbb\x19\x17\x70\xe7\xe9\x4a\x89\x68\x90\xaa\x54\xe9\x79\xb3\xaa\x8c\x1e\x2a\x1e\x2e\xf2\x4b\xcf\x72\xd1\xcb\x22\xef\x46\xa3\x48\x55\xc6\x67\xca\x8c\x30\x54\xbf\x91\x09\x05\x67\x6e\x9f\x33\xf1\x44\x2a\x35\x17\xcd\x6b\x21\xc7\x27\x47\x70\x1c\xbc\xc3\x1f\xbf\x16\xd9\x07\x81\x5f\x75\x17\x6b\xdf\x99\x8c\x8f\x0e\x78\x55\xf5\xa4\xf6\x47\xd8\xa3\x17\xed\x4e\xb7\x2a\x63\x6f\x92\xcc\x1d\x75\xdf\xe2\xbf\xc4\xef\x45\x59\xf9\x11\xac\xcc\xb3\x5f\x64\x24\xb7\x8d\x39\x9c\x1c\x25\xfa\xd3\x39\xe9\x02\x1c\xc2\xa5\xf2\x30\xca\x31\x84\xd8\x93\x12\x46\x3d\xfe\x5a\x95\xff\x82\x07\xc7\xf7\xfc\xb0\x28\x50\xde\x3d\x25\xef\xc3\x64\x5e\x95\x82\x68\x89\x20\xd5\x58\x1d\x76\x18\x2f\xa8\x2c\x54\x02\xa4\x2e\x3b\x92\x82\x21\x13\x88\x26\xa6\x19\x26\x86\x5e\xe8\xec\x45\x18\x4f\xb2\x06\xba\x03\xa8\xf6\x86\xd9\x7e\x09\xca\xec\x25\x3e\x3f\xf3\x2d\x8a\x67\x98\x75\xb3\xeb\xd9\x17\x45\xaa\x6e\x5f\x82\x52\xfb\x0b\x61\x0c\x22\x57\x05\xa3\xe8\x5d\x0f\x66\x7d\xf4\xdd\x43\xb7\x7c\x49\x0a\xa6\xdf\x26\x1e\x99\x76\x19\x68\x2a\x97\xef\x5b\xf2\x4e\x66\x65\xdd\x88\xce\xa3\x3d\xf1\x23\x97\x7f\x0d\xb1\x47\xd2\x7d\x1c\xd1\xd8\x41\x49\xea\x2c\xb2\x53\xfe\xf9\x6e\x4b\xa5\x90\x8a\x7c\xc0\xa5\x3e\x11\x73\xb2\x39\x74\x02\x84\xe8\x39\xd9\x1f\xd5\xc1\xa1\x48\x9a\xfe\x7e\xff\xbf\x60\x28\x89\x8c\x1d\xad\x31\x6a\xd3\xec\xaa\xc2\x75\xa9\x98\x96\xe8\xab\xc4\xc0\x8d\x1c\xaf\x23\x27\xd7\x48\x55\x69\x20\x2d\xac\xd0\xd6\x24\xee\xbd\xc7\x78\x0d\x15\x33\x0c\x2d\xe4\x18\x41\x2a\xa8\xe4\x1e\x12\x60\x8e\xe2\xa1\xed\xb6\xa3\x3e\xc9\xff\x70\x90\x8b\x55\x16\xda\x48\xdb\xa8\xd9\xe0\xab\xb4\xab\x52\xc7\x83\x8d\x0a\x5c\x3d\xb4\x0b\x3c\xb4\xe1\xab\xc3\xc2\xbe\x20\xef\x23\x3a\x53\x41\x48\x93\xef\x66\xdf\xdd\x34\x9f\xc1\xce\xd0\xb8\x55\x35\x1a\x4b\x54\x30\x27\x51\x4e\xdc\x5e\x4f\x5a\x83\xca\xe1\x73\x1a\xa8\x74\xcf\x18\xb5\x67\xd2\x07\x5e\x09\x97\xca\xba\x95\x45\x68\x7c\xbf\x5e\x5f\xb4\xa3\x98\xa0\x3c\x37\xb0\xb9\x60\x4e\x82\x67\xa3\x53\x36\x55\x46\x71\x5d\x13\xc1\x73\xe4\xcb\xc2\x41\x56\xad\x70\x77\xf6\x44\xd2\x68\x77\xf5\x04\xcd\x33\xb2\xc6\xfb\x6e\x4a\xa5\x52\xc7\x93\xbd\xed\x55\x62\x75\x9e\x5e\xc6\x5c\x87\x6f\x98\x04\xb9\x8a\xd6\x98\xaa\x03\x09\x86\x6a\x68\x36\xab\x39\x7f\x73\x11\xb9\x68\x4d\x6e\x2d\xe7\x14\x22\xf8\xb3\xdc\x14\xcc\x0d\x02\x10\x2c\x09\xb7\xb1\x6b\x6d\x17\x3f\x61\x56\xe3\x05\xed\x48\xe6\x73\xa7\x99\x25\x9a\x39\xc5\x89\x3d\x54\x16\x7f\x68\xf8\x62\x9d\x14\x99\x15\x5a\xc7\x13\xd7\x71\xa8\xaa\xf3\x07\xc7\x79\xe4\x79\x70\x1c\x7b\x9d\xd4\x54\x1f\x67\xd9\xb7\xeb\x65\xc2\xca\x25\x98\x86\x5e\xa8\x34\xea\x61\x13\xbe\x2e\x70\xcd\x82\x41\xf5\xa7\x34\x53\xcb\x68\xfc\x9d\x92\x7a\x40\xa4\x90\x39\x92\x74\x60\x39\xcc\xd6\x56\xd5\x06\xf4\xc9\x96\x0d\xb3\x96\xe5\x7b\xb8\xdc\x33\xd2\x15\xb9\x68\x20\x12\x42\x4b\xed\x56\x8d\x52\x8b\x16\x22\x81\x57\xfa\x5e\xe3\x5d\x5f\xa3\xa6\x2a\x26\x87\x3e\x47\x15\xfc\xd4\x76\xeb\x77\x39\x38\x9e\x7a\x80\xc6\x11\xaa\xef\x7b\x50\x3a\xc2\x2e\xf3\x7a\x47\xbf\xc0\x8f\xfd\x2b\x5d\x65\xb6\x06\x18\x11\xb7\xa4\x0d\xb8\x0e\x9e\xfd\x6b\x05\x66\xf6\x7d\xaa\x41\xa7\x5b\xed\xce\x54\x84\x73\x6b\xd4\x85\x7a\x82\x75\xaf\xfd\xa5\x2c\x74\x29\x0b\x8e\xb5\x31\x48\x5f\x28\x6d\x05\xc0\x05\x9c\xc1\xe4\x7e\x57\x4f\x88\xca\x5c\xdd\x4e\x3a\x49\x84\x52\x57\x0b\x6f\x9c\x59\x55\x06\xae\x5c\xf8\x10\xb3\x63\xb8\x99\xa5\x3e\x1e\xcd\xe1\x4e\x94\x1e\x48\x29\x3e\x21\xe7\xdb\x51\xf7\xd1\x45\x6a\x77\x53\x7f\xe0\x36\x54\x20\x48\xab\x41\xd1\x82\x87\x6b\x42\x4e\x26\x70\x52\x19\x02\x47\x21\xb2\xc3\xb8\x3a\x51\x02\xb3\x73\x6a\x11\x44\x1e\x91\x4e\x4d\x25\xd9\x1e\x1c\xef\x48\xce\x23\xa2\x3f\x39\x6c\xcd\xb7\x18\xec\x9e\xd0\x9f\xbe\x88\x44\x1f\x70\xb1\x9f\x5f\x29\x41\x69\x82\x55\x3a\xc9\xce\x6c\x7f\x60\xf4\xde\x93\x3f\xd7\xb8\xf0\xb2\x41\xd3\x09\x86\x17\xe7\xe3\xa3\xe4\xac\xf6\xe6\xa7\x01\xa6\x91\xf3\x9b\xa0\xdc\xe8\xc0\x68\xbe\x80\x1d\xba\xb3\xdc\x39\xcc\x61\xbc\x16\x6a\xc9\x63\x1f\x8a\xe8\x9e\x37\xdd\x6c\x48\x5e\x15\xb0\x69\x90\xbb\xec\xbc\xdd\x71\xed\x79\x92\x2c\xb3\x0b\x16\xb3\xc3\xa3\x81\x2a\xb4\x2d\x37\x21\x95\xe8\xcb\x8a\x32\xdc\x8a\x8a\x26\x41\x5d\x9f\x2e\xd5\x5b\xb5\x42\xa2\x9d\xc6\x3e\x29\x79\xf2\x38\x39\x50\x4d\x96\x7d\x0b\xcf\x98\xaf\x4e\x94\x46\x59\xf6\x7e\x77\x8b\x74\x7a\x0f\x1a\xcc\xae\x49\xcb\x27\xf1\x48\x33\xa3\x54\x7b\xfb\xda\x73\xbc\x4d\xbf\xa2\x20\x93\x7d\xee\x27\xc8\xf9\xcf\xd6\x68\x8b\xdb\x53\x10\x55\x41\x7e\x14\xa7\x8d\xff\x44\xf5\x06\x1f\xc1\xfd\x47\x41\x54\xc4\x91\x7a\x4b\x25\x68\x4d\x6d\x51\x91\x0a\xd3\xa9\x28\x81\x2b\xaa\xaa\x4f\xe1\x39\xde\xd2\x29\x5c\x34\x73\xf2\xa7\xed\xe7\x61\x2a\xff\xce\xc6\xf4\x6b\x7d\x3d\xc8\xe9\xd3\x81\xac\x51\x4b\xdf\x70\x4f\xe8\x37\xea\xd4\x52\xe9\x1b\xb1\x72\x55\x9e\x42\xfe\x5c\x2c\x7d\x16\x96\xd8\xb1\xe8\xa7\xae\x56\x62\x83\xbc\xaf\xf1\xdb\xee\x5e\xda\xbf\xe3\xf7\x02\x3f\xfd\x69\x3a\x28\xfe\x68\x6f\xe7\x89\x16\xde\x1d\xc7\x89\x03\x8f\x10\xe5\x0f\x77\x74\x36\xa8\x3c\x12\x49\x04\x7a\x8d\x75\xe8\xdd\x59\x74\xde\x1e\x1e\x45\xf1\xcf\xc3\x87\xb7\x28\xaa\x2d\xe7\x96\xf1\xc6\x84\xe9\x4a\x23\x08\x5a\x33\x51\xc5\xbe\x1a\x7c\x5d\x6f\x41\xa6\xbf\xf8\xd9\xed\x1d\xa2\x54\x8f\x50\x95\x36\xd4\x5e\xb0\xe6\x24\x70\x46\x3a\x43\x0d\x2c\xc5\x21\x5e\x78\xa8\xfa\x5a\xf3\xe4\xae\x63\xd9\xe4\x69\xac\x58\x22\x37\x39\x05\xf7\x09\xaa\x44\x3a\x59\x79\x14\x4c\x19\x67\x28\x50\x5d\x07\x5e\xa8\x6a\x61\x16\xa5\x2a\xfc\x9e\xd9\xeb\x08\xc4\x8a\x5e\x93\x1a\xcf\xd4\xd6\x91\x76\xd6\x22\xc9\x09\xe1\xbf\xff\x1d\xd8\xb2\xa1\xb8\xa1\x1b\x6a\x5b\x66\x4b\x16\xc8\x3a\xc3\x0a\x24\x7e\x50\xc4\xc4\x83\x65\x00\xda\xa9\x66\xd7\xe2\xbf\x71\x65\x12\x06\x07\x8d\xe8\xad\x52\xd5\xc9\x4c\x49\xf2\xd4\xae\xa1\xb8\x2a\x89\x2e\x07\xaa\xec\x74\xcc\xa1\x74\xac\x6b\x8a\xbb\x77\x87\xe8\x06\x2f\x9b\x7a\x6b\xf6\x10\x35\xf0\x68\xc3\x96\x8f\xfc\x5d\x56\x9e\x08\x81\xe6\x95\xa9\xb8\x40\x44\xf6\x79\xa1\xe1\xee\x46\x48\xea\xee\xdc\x45\xeb\xea\xa6\x12\x39\xbe\xa1\xf0\x47\x21\x2a\x80\xbf\xbf\x74\xcc\x47\x5f\x8b\xe1\xea\x43\xaa\x78\xdd\x7c\xc3\x94\xd6\xc3\xdc\x0e\xa5\xda\x4b\x2b\x5b\xde\x14\x95\xa5\xac\x7f\x5c\xc0\x7b\xbc\x55\xd1\xa9\xa1\xa2\x61\x13\x19\x32\x28\xe1\xeb\x03\x3e\x7e\xe4\x3c\x0b\x2a\x0c\xe7\x33\x92\xf5\x7b\xe7\x29\xf2\x0e\x84\xec\x46\xe9\x71\xad\x73\x9d\xc1\x99\xae\x3b\x38\xf1\x09\x29\xec\x5a\x67\x02\x26\x23\x8e\x0b\x3b\x6e\x1c\xd7\xa1\xaa\xe1\x77\xcc\xa2\xbb\x70\x38\x9b\x15\x0e\xa8\x67\x54\x6e\x40\x44\xd4\xb3\x8a\xd2\x0d\x1e\x59\x20\x6e\x72\xa2\xba\x13\x97\xe1\x88\x27\xe2\x41\x98\x3c\x11\xcf\x57\xed\x5b\x1c\xbf\xd5\xad\x30\xf4\x44\x1f\x79\x6c\x35\x7e\xa9\xb3\xa2\xfd\x90\x52\xeb\x10\x85\x17\x84\xfb\x2c\x1d\xee\x5b\x51\x76\x02\x39\x7c\x85\xcf\x6c\xaa\x37\x1a\xc1\x3f\x1e\xc3\x3f\x09\xb3\x07\x50\x1c\x0b\x54\x39\x64\x53\x0e\x26\x13\x44\xbc\xa3\xd0\x49\xe4\x41\xbb\x68\x99\x9b\x4c\xd2\x59\xf9\x47\x21\x27\xaf\xf4\x64\x39\xf8\x25\x66\xe6\xf6\x1e\xf1\x78\x62\x95\xa5\x80\xf8\x62\x85\xc2\x45\x57\x85\x52\x33\x8a\xae\xf0\xe4\xc1\xb1\x1a\x6c\x0a\x8c\x9c\xfa\xf7\x06\xcd\xc4\x03\xe7\x52\x9d\x74\x7a\x3e\x15\x6b\x54\xe1\x0e\xce\xb5\x19\x29\xf8\x42\xe7\x01\x9a\x44\xbe\x4c\xf8\x55\xfa\x50\x2d\x7d\xc9\x4a\x52\xa1\x1a\x84\xe7\x60\x70\x7d\xd0\xb6\xa7\x3b\x30\x6a\xf1\x8d\xea\xf6\xeb\x4f\x02\xea\x4a\x43\x70\x76\x35\x13\x9f\x6d\x09\x45\xc9\xdc\x90\x50\xce\x9f\x3f\x83\x57\xa8\x65\x55\x51\xad\x91\xaf\xa5\x0d\xa1\x17\xa5\xc3\x0c\x26\x9b\x84\xc6\x95\x42\x29\x1d\xfe\xbf\xee\x9e\x59\xda\xd3\xff\xfe\xd2\x5d\x50\x48\x43\xe7\xcf\x9f\x39\x8f\xf7\x44\x43\xfe\x98\x96\x94\xce\x9f\x3f\x9b\x39\x0f\xfe\x22\xa5\x0e\x54\xf8\x7c\x48\xc9\x7d\x1c\x84\x7b\x27\x54\xf3\x40\x19\x7f\x24\xaf\xd6\x33\xe9\xc7\x42\xbd\xee\x88\x6e\x25\x0d\x56\x55\x2f\x74\xed\xe0\x40\xff\x95\xa7\x74\xe2\x60\x59\x69\xd5\xb2\xdf\x12\x17\x55\x89\x65\xf5\x49\x5d\xcd\x3d\x35\x88\xbd\x1b\x80\x00\x6a\x64\x6e\x6a\x4a\x45\x36\x65\x9d\x6b\x6a\x7b\x6c\x75\xd2\x1b\xa9\xcb\x44\xcf\x05\x69\x9d\x8d\xe7\xbd\x90\x56\xcd\x72\xab\x26\x08\xf6\xce\x40\x99\x6e\xee\x55\x99\xdf\x01\x22\x9a\xb1\x0d\xec\x72\x6a\xf5\xfe\xaa\x8d\x15\x7e\xdf\x12\x72\xe1\x18\x19\x1b\xd6\x90\xef\xbc\xe4\x45\x85\xf2\xfa\xd4\x94\x72\x6a\x05\x07\xf6\xde\x33\x1f\xdb\x63\x0b\x60\xaa\xef\xba\x73\xd5\xfc\x94\x59\x10\x32\xd8\xcf\x34\xb8\x2f\x03\xb0\xd1\x91\x7e\x89\x94\xe4\x1d\xac\x98\x8b\xf3\xd8\xc0\x48\x14\x02\x8c\xee\xf0\x52\x82\x32\x0a\x2b\xa2\xf2\x88\xa5\x60\x41\x68\xe8\xc5\xf9\xc1\xde\xb4\xcf\x70\x1f\x1c\x3d\x52\x1e\x79\xfb\x28\x65\x24\x98\xe4\x9d\x0f\xee\x27\x34\xbf\xef\x55\xba\x65\x9f\x52\x98\x42\x83\xf1\x8e\xb7\x0c\x0a\x0c\x3e\x2b\xb3\x4e\x38\x55\x96\x37\xb6\x02\xcc\xe1\xab\x29\x14\x1d\x6c\x55\xec\x5b\x83\x9e\x72\x20\x2a\x09\xf4\xec\xcc\x01\x76\x36\x1e\x1c\x76\x2a\x08\x72\x53\xc0\xbc\x95\xa8\x2a\x21\xf1\xb2\x13\x53\x83\x42\xa8\xba\x8b\x68\x69\xa3\x8f\x18\x45\x7e\x5f\xfe\x68\x31\x4e\x35\xb3\x83\xe7\x46\x4c\x3a\xd3\x6e\xa2\x88\x86\x03\xc4\xca\xe4\x60\x42\x0a\xf4\x3e\x97\x90\xba\x54\xc2\x14\x30\x3f\x0b\x42\xca\x58\x09\xb7\x4a\x4f\x11\xe8\x3f\x43\xb2\x0a\xe1\xb2\x13\x75\xe5\x16\xfa\x19\x12\xd9\x10\xa9\x18\x79\xe0\xb8\xf8\x93\xc6\xc4\xce\x3e\x36\x81\x4b\x9f\xde\xcd\x16\xbb\x30\x7f\x4e\x45\x10\xf7\x59\xaa\xfb\xf3\xd6\x25\x88\xe1\x2e\x1d\x75\xf1\x99\x5e\x3e\x2e\x7a\x78\x42\xdd\xc5\x02\x90\x8d\xa8\xd5\x27\x66\x2a\x85\x42\x85\x14\x8a\x43\x0a\x0a\xd7\x98\xff\x2d\xee\x67\x92\xa1\x63\xdb\x6f\x54\x21\x5a\x6d\x19\x08\x65\x4b\x87\x8a\x84\xc7\x1e\xd6\x2f\x9c\xb8\x47\x54\xe7\x41\x2b\x23\x04\x42\x65\x3f\x19\x6d\x20\x7b\xf4\xf7\xf1\x29\x69\x9f\xa8\x88\xe2\x44\x7a\xce\xb4\xdf\xc9\xbf\x07\xdf\xbe\xbb\x51\x9f\xa9\x09\x30\x00\x74\x9f\x8b\x39\xa0\x2a\x13\xf4\x1d\x48\x37\xd9\x24\xf3\x4f\x71\xaa\x98\xbb\x6d\x23\x2a\x9a\x91\xaf\xe8\xb9\xdf\x7b\x34\x60\x0f\x77\x69\xc0\xed\xdd\xa7\xd1\x33\xd6\x8b\x60\xf3\x13\x77\x6d\x38\xa8\x90\x97\xe5\xe3\xf5\xbb\x01\x84\xd2\xa7\xc4\x40\x4f\xf4\x82\x60\x78\x36\x84\x21\xb3\xa5\x49\xe5\x0e\x76\x42\xef\x04\x4c\xbb\x90\x1c\xfa\x0a\x94\xec\xe6\xa7\x73\x4a\x07\x6f\x01\x5d\xa1\xaa\x16\x37\xff\x89\x72\x68\x1a\x06\xb1\xa4\x18\x24\x18\x74\xd7\x4f\x5b\xb2\x4a\x80\xc2\x95\x07\x41\x75\xf4\x2f\x83\x7b\xe7\xd7\xb7\x03\xd3\x76\xbf\x29\xb6\x95\xd4\x97\x3a\x55\x8e\xb4\x41\x27\x38\x4a\xca\x8e\x13\xda\xd2\x10\x27\xf3\x9e\xac\xb4\x3c\xc0\x76\x30\xd4\x14\xe1\x7a\x41\x47\xa1\x3e\x23\x56\x9e\x36\xc8\xfc\xc0\x3e\x0d\xa2\x7c\x91\xca\x64\x07\x3b\x57\xe6\x87\xde\x6a\x5f\x72\x6e\xc1\xb8\x59\x41\x77\xeb\x1b\x91\xd8\x80\x45\xd5\x70\x15\x35\x17\x27\x95\x32\xbd\x3a\xbb\x6e\x82\x1b\x4d\x86\xc7\xe3\x76\xc4\xd5\xda\x30\xe8\xbd\x46\xd6\xe6\x53\xd0\xba\x39\xd9\xf0\x9b\x42\xdc\x56\x1c\xa4\x55\x29\x18\x40\xff\x75\x1d\xd5\x42\xbd\x1b\x5e\xca\x61\x6b\x00\xed\x2d\xc2\x3f\x00\xc6\xb0\xc0\x41\x1d\xf2\x6d\xf6\xc9\xc9\xff\x52\x51\x0d\x03\xac\xf4\xa8\x5f\xa7\xc6\x00\x62\x26\x0a\x4b\x57\xf2\x94\x19\x37\x5e\x12\x8d\x92\x6e\x15\x4d\x20\x43\x84\x7b\x90\x90\xbe\xee\xb7\x68\x97\x6f\x16\x34\xec\x25\xb7\x24\x74\x76\x13\xe1\x8d\x3b\xaa\x4d\x65\xa3\x6f\x53\x01\xb7\x37\x28\x0b\xe2\x4d\x78\x58\x61\x10\xbf\xc9\xa0\xd2\x20\xb7\x16\x8f\x1b\xa4\x0c\x85\x2b\xb1\x41\xba\x71\xe2\x4c\xc0\x87\xa4\x25\x4b\xc3\x50\x58\xa5\x5b\x56\xe1\xfd\x45\x21\xc7\x51\xb7\x76\xea\xe2\x88\x8e\x2a\xfd\x5b\x70\x70\xa6\xad\xe3\x8c\x35\xf7\x52\x55\xd8\x38\xea\x09\xbc\x0b\xad\xe4\x9d\x2a\x13\x28\xb5\xf3\x7e\xb6\x25\xa2\xfb\x99\xec\x30\x49\x38\x36\x90\x34\xbb\x67\x96\x2b\xed\xb6\x71\x63\xb3\x94\x73\x30\xb2\xf5\x91\xa4\x18\xea\xcf\xd2\xec\xd8\xd5\xdb\x4e\x21\xdd\xdf\x22\x76\x4c\x35\x55\xdb\xef\xcd\xdb\xa4\xb5\x59\xdc\x18\x9a\x77\x35\x0e\x9b\x8c\x20\xb1\x09\x42\xde\xe3\xb7\xc6\xf0\x2a\x50\x5d\x53\x5b\xbd\xcb\xe4\x75\x5d\x2f\xb1\xbe\xb0\x8a\x0b\x49\x13\xcd\xa4\xd3\x8a\x6c\x38\x33\xd8\x7b\xbc\xcc\x25\xf2\x10\x87\x41\xc5\x0d\xa5\xcf\x50\x1f\x5f\xb8\xde\x3e\x55\xed\xf0\xf7\xa6\xaa\x7f\xd7\x05\xc5\x92\xa5\x0f\x3b\xc7\x70\x8a\x61\x86\x03\x99\x61\xdc\x58\x7a\xdb\x8f\x5d\x8e\x1f\xa4\x20\x66\x25\xe7\xe9\xe5\xe3\x31\xa2\x94\xcc\xad\xba\x7a\xce\x94\xe4\x0c\x5f\x56\x55\xc8\x3c\xc2\x97\xb7\x95\xe8\xdb\xad\x45\x40\xb5\xcd\x7a\xd1\x52\x25\xa3\xcd\x0e\xd2\x15\xe5\x5d\x30\x2f\xc2\xdc\x9b\x88\x1d\x34\xf8\x3a\xc8\xad\xfa\x42\xec\xdf\xcc\x02\x6f\xea\xb1\xb4\x25\x26\xb4\x12\xe7\xc7\xbb\x5b\x3e\x3c\xd5\x46\x60\xc5\xa2\xac\x79\xad\x49\x8d\xf2\x51\xf2\x27\xb3\xec\xbe\x99\x7d\x1a\xe8\x7d\x94\xb7\xcb\xd9\x95\x74\x25\x1f\x26\xb9\xaf\x3b\xff\x64\x89\x5e\xfd\x97\xdc\xb7\x84\x9d\xbe\xdb\x82\x86\xd8\x59\xa2\x16\x8f\x73\x89\xbb\xa4\x7e\xa7\x90\x48\x47\xc5\xe9\x5c\xa9\xe9\x41\x64\x25\x06\x7e\x81\xaf\x95\x3a\x3d\x40\xb8\x3e\xbc\x23\xff\x92\x57\xef\x23\x6d\x61\xed\x46\x68\xfe\x92\x77\xae\xf7\x91\xa4\x33\xcd\xbc\xc5\x05\xd8\x0e\xef\xd6\xd5\xda\xb4\xc9\x64\x64\x14\xca\xdd\x69\xdd\x51\xb4\x58\xbd\x98\xa2\x10\x45\xea\x8e\xb6\x35\x8c\xde\x21\xd7\x67\xe2\xfe\xdc\x1b\xd6\xe6\x4d\x17\xcc\xb5\x05\xff\x34\x88\x2c\x52\x6a\x27\x4e\x8f\xed\x37\xf2\xee\x82\xe0\x28\xa3\x9b\x33\x74\xde\x1f\x85\x9a\xad\xaa\x0d\x1a\xd6\x99\x98\xfa\xe5\xea\x97\x78\x95\x3a\x9e\xc8\x57\x66\x08\x6f\x55\xec\xba\x08\x60\x97\x5b\x16\x53\xe3\x3a\x97\xda\x7d\x3f\xec\x4e\x3b\xd8\xf1\xe6\xb3\x5c\x5f\x6e\x95\xf1\xd0\x91\xd7\xe9\x14\x1c\x7c\x33\x56\xda\x01\xf2\x91\x13\x40\x6e\xa3\xdf\xf9\x14\xdc\x53\x09\x20\xbb\xa3\x2e\x21\xb9\xeb\x0c\xe9\x29\x3d\xc3\x2e\x2a\xe9\xbb\xef\x6f\xff\x7a\x81\x8d\x98\xda\x5d\x3d\x08\xe4\xcf\x83\xe3\x31\x34\xde\xa5\x2b\xdc\x0e\x61\x7e\x0a\xa2\x1c\x4f\x90\xfb\x22\xc6\x2e\x55\xe9\xae\x08\xf3\x63\x82\x24\x1d\x72\xa4\xfd\xe5\xe1\x92\x9b\xa8\xda\xdd\x48\x1d\x94\x7d\x84\x28\xbc\xd3\x7d\x5c\xb1\x2e\xb8\x69\x4c\x7d\xc6\xbb\x57\x08\x55\x89\xdf\xf2\x33\xd7\x0a\xf7\xad\x14\xfa\xcb\xde\x97\x66\xb8\xdb\x2d\x14\x9f\x48\xeb\x0a\x76\xbe\xf7\xdc\xae\x57\xc5\x8a\xd6\xd0\x49\x6b\xe3\x05\x60\xcf\x84\xa3\xf9\xde\x8e\x04\x1b\x31\x8b\x2c\xc4\x6e\x83\x2d\x8d\x99\xd7\x70\xde\xd4\xaa\x9a\x6d\x9f\x84\x37\xe9\x82\x71\x5f\x19\x6f\xf2\x97\xfd\x15\xf0\x26\x59\x30\x1d\x95\x25\x38\x77\x81\x2a\x25\x2d\x79\x21\xb2\x3e\xb1\x94\xd8\x49\x85\x13\x54\xd6\x4c\x59\x55\x0d\xeb\xbe\x61\x4d\xb9\x45\x51\x8b\x9b\x6f\x18\x54\xab\x15\x2e\x2b\xc4\xb0\xa8\x52\xb1\xa8\x65\x05\x35\x85\xba\x03\xee\x79\x84\x9b\x5d\x01\x9a\xea\x2e\x66\x7c\x01\x1d\xf4\x32\xbe\x9e\x7b\xfc\xb4\xb3\x5d\x2d\x2f\xa9\x49\x85\xf5\xb8\x24\x88\xc5\xf1\x73\x2f\x90\xd2\x41\xf7\x27\x27\x40\x89\xf5\x59\xf3\xbe\xa4\x7f\xad\xf4\xab\xde\xbb\x9f\xbb\x90\x2a\x63\x81\xbb\x4f\xa9\xb2\x47\xcc\xb1\x02\x6a\xc4\x82\xee\x54\x40\x8d\x99\xd7\x10\x01\xa5\x6f\x13\xb3\x57\x03\xce\x1d\x5d\xfa\xae\x04\x95\x9a\x85\x94\xbe\x55\x73\xb9\xab\x94\x82\x2f\x49\x4c\x85\x8b\xfe\x0a\x64\x94\x65\x1c\xd1\x8e\x7f\xbe\x9a\x73\xef\x54\xa3\x99\xee\x5d\x67\x1e\x35\x85\xbb\xe2\x47\xe3\x26\x35\x84\x19\x29\xbe\xe3\xde\x2b\x1f\x72\x20\x75\x94\x25\xc5\xea\x50\xd6\x63\x4a\x68\xd9\x08\x63\x13\xeb\xa5\xef\x83\x89\xee\xce\x4e\x9f\xaa\xca\x19\x3e\xaa\xeb\xf0\xce\x97\x2f\xe4\xd0\xd4\xcc\x7f\xc7\x20\xe1\x3d\x1e\x74\x5a\x50\x7e\x1a\xfc\xcd\x4f\x60\x08\xae\x9a\xc8\xf5\x4f\xe5\x78\xd2\x13\xd8\x8f\xef\xe9\x8b\x92\x9c\xe9\xa5\x7f\x05\xf2\xd3\x0f\xed\xb4\x22\x2a\x83\x0b\x7d\x82\xca\x6e\xaa\x7b\x43\x7d\x14\x04\x1e\x36\xf9\x64\x92\x78\xc7\x65\xee\x55\x1e\xfb\x5b\x20\x38\xd9\x8e\xd3\x1a\x09\xf9\xbb\x62\x8b\x3b\xac\x66\x1c\xc3\xfc\x54\xde\x30\x3d\x81\xaf\xcf\x21\x96\x5e\xf9\x57\xc0\x2f\xa5\x4f\x4c\x7a\x48\xf2\x8e\x30\x79\x87\xa0\xca\x73\xd6\xb0\xe2\x98\xa8\x3d\x64\xb9\xbe\xb3\x9e\x33\xd4\xc8\x24\x95\x4f\xec\x18\xdb\x49\x86\xf4\x78\x18\xbe\x50\x21\x32\x50\xb2\xec\xb2\xf8\x93\x13\x10\xf7\x07\x78\xf8\xa5\x51\x23\x97\x9b\x1b\x3a\x66\xfb\xe2\x20\xf4\x8b\xaf\x55\xbf\xfa\x00\x39\x03\x94\x6c\x22\x59\x76\xf7\x72\x27\xd1\xe1\xb9\x75\x30\x91\xcf\xd7\xb7\x37\x46\x72\x8f\xdd\xf6\xcf\x4d\x74\xf7\xc9\xf2\xb1\xeb\xbb\x55\x94\xbe\x4d\x74\xde\x1f\x2a\xe7\x82\xec\x1f\xd7\x84\xe2\x36\xb8\x5a\x43\xfc\x48\x3d\x2d\x86\x6a\x2d\xa6\x34\x5a\xcc\x14\xf4\x1d\x29\x75\x6d\xe4\x8c\xf0\x46\x28\xb4\x9c\xa3\xe2\xbd\x01\x23\x1f\xc5\xc0\x56\xd6\x70\x57\xcd\x4d\x1c\x87\x37\x07\x12\x87\x9c\x47\x77\x1f\x39\x29\x66\x83\x54\xa6\x82\xaf\x4b\x60\xdd\x20\x35\xe9\x0b\x53\x8b\xec\xea\x3e\xa1\x2a\xe4\xbf\xbf\xf7\xab\xc8\xa2\xf1\xba\x4a\x41\x79\xf3\x08\x6f\xc0\x4e\x3d\xb4\x77\x60\xa7\x9f\x1b\xdf\x20\x9c\x9d\xc1\x77\xb3\xef\xf6\x55\x49\xca\xee\xdc\xf0\xd4\x6d\x99\xf8\x29\x5a\xda\x58\x63\x6e\x5b\x6c\x1a\x56\xd5\xae\xcf\x71\x89\xae\x30\xcc\x31\xb6\x26\x43\x33\xe5\xe4\x25\xae\xe7\x92\xe9\x59\x1e\xf5\x52\x86\x58\x74\xab\x1e\xa4\x8b\x9f\xba\x59\x44\x11\xa0\x70\x09\xdf\x73\x30\x65\xb4\x22\x81\xe5\x3d\x6e\x9f\x3e\x8c\xb0\x96\x4c\xd7\x34\x7a\xa3\x21\x3b\x96\xa2\x65\xcd\xf0\xa5\x64\x0c\xb2\x9b\x2d\x45\x77\x3a\x74\x29\x77\xe6\xbf\xb1\x83\x0c\xbb\x39\x2e\xd5\x4f\x89\x29\x6b\xc9\xd6\xf6\x95\x53\xaf\xe3\x12\x34\x8f\x6d\x99\xb0\x64\x25\x9a\xdc\xb4\x59\xb6\xd2\x8b\xed\x71\x6c\xc1\x97\x24\x48\xdc\x81\xc2\xbb\x61\xb2\x1e\xa2\x81\xe0\x48\x2f\x6f\x6c\x35\x18\x87\xf9\x88\x05\x82\x02\x9e\x53\x81\x4d\x45\xd1\x6a\x3b\x70\x41\x36\x4d\x99\xe2\x10\x09\x5c\x1c\x71\x29\xe0\x08\x4a\xe9\xbc\xc0\x78\xa4\xb2\x7a\xd3\x62\x4e\xa0\x34\x96\x37\x1d\x45\x9a\x6d\xc9\x56\x46\x54\x4e\xa0\x73\x97\x5a\x43\xa0\x26\x0d\xc7\x44\x79\x73\x5c\x8e\xa0\xf7\x51\xc3\x04\x6e\xb7\x8e\x09\xec\x56\x91\xc8\xc1\xc1\xa8\x28\x89\xac\xe1\xd4\xe2\x85\xd4\xff\x02\xf0\x1e\x66\xcc\xd8\x61\x15\x45\xee\x75\x94\x14\xe1\x9f\x2b\xd4\xda\x53\x36\x15\x2b\xad\xbd\x66\x20\x74\x80\x64\xb3\x6a\x11\x05\x7c\xab\x02\x81\x3f\xe3\x4b\xf4\xe3\x96\x61\xfa\x0a\xb7\x32\xea\x1b\x97\xa2\x3c\xd0\xbd\x33\x10\xf7\x03\x77\x24\x59\x84\x13\x51\x48\xeb\x8e\x52\xe2\x05\x5f\x96\xa0\xe3\x47\xc1\xeb\x93\x1d\xf7\x39\x2c\x8a\x9e\xcb\x9e\xe8\x60\x49\x99\xd9\x9b\x42\x31\xf3\x8e\x28\xf4\x8f\xc9\x5f\xbb\xeb\xbd\x74\x54\xa0\x09\x66\x91\xab\x40\x35\xe0\x92\xf6\x78\xa2\xa3\xb4\x53\xc3\x7b\x42\xcd\x34\x7c\xe0\x6a\xa5\xe1\xb3\xbb\xd0\x48\x03\x55\x53\xc7\xa7\xef\x47\xcb\x1c\xa8\x64\xa6\xd7\x7d\xa7\x0a\x66\x6e\x0a\x43\x35\xb2\xb0\xfd\x27\x50\x2c\x73\x53\x18\xa3\x54\x8e\xf6\x79\x81\xef\x18\x72\xb5\xc4\xb0\xb8\xc5\x00\x15\x51\xf6\xf2\x65\xeb\x87\x16\x12\x09\xe5\xb0\xa3\xda\xdf\x30\x18\x7c\x31\x4a\xa1\x2c\xd6\x37\x42\x1f\x94\x95\x69\x2d\x12\x8b\xd2\xb4\x3d\xba\xa0\x3f\x91\xc4\x94\x4e\x64\xb2\x18\x8b\x9c\x60\xee\x61\x9f\xa8\x2f\x59\xd7\x2a\x57\xae\x54\x87\x7c\x75\x6d\xc2\x66\xe5\x81\x1e\x1d\x7c\xa2\x67\x2e\x7a\xb8\xc4\x4c\x16\x94\xa2\x93\xa3\x53\xf8\x55\xba\xa3\x42\xbd\xcd\x94\x1d\x3d\xa7\xce\x3b\x67\x11\x21\xcd\xde\xe3\x2d\x4d\xba\x70\x6e\x40\x11\xbc\xf9\x6f\x7e\xa6\x6c\x0f\x35\x74\xf8\xaa\x65\x23\x5d\x42\xcb\xeb\x77\x66\x40\x91\x40\x7f\xb5\x8c\xdf\x52\x9d\xc4\xbf\xa5\x49\x40\x41\x70\x86\xd6\x6b\xdc\x94\x93\xb8\xaf\x1d\x4b\x44\xca\x6e\x87\x9c\x19\x6b\x34\x72\xf2\xb3\x1d\x5c\x8a\xce\x87\x77\x43\x27\xbf\xf4\xd9\x29\xfc\xea\xfe\x30\x1a\xb3\xac\x21\x2f\x91\x2b\x6c\xec\xc8\x19\x1a\x8d\x75\x06\xbf\xfe\xcb\x87\x99\x8e\x53\xbb\x38\xe7\x6b\x53\x23\xe7\xdd\x88\x62\x7f\x3b\x9c\x0a\x0f\x67\x55\xe2\x2a\x7d\x77\x4e\x7a\xb7\x3d\xa8\xf4\x49\xce\x8b\xf3\x7b\x51\xb5\xbc\xcf\x9f\xaa\xcc\x12\xb3\xe4\x15\xbc\x91\xa0\xb3\x5c\x97\xdd\xdd\x89\xae\x86\xd0\x6c\x3c\xc5\x8e\x87\x69\x2a\xee\xea\x35\xdb\x63\xb6\xb7\x51\xe8\xd2\xb1\x92\x00\x87\x32\xb3\xcb\x25\x9e\xef\xc4\x77\xdc\x69\x8f\x61\x3e\x2f\x44\xd9\xa0\x66\x41\x0c\x97\xd9\xa7\x30\x7b\x54\xd7\xc6\x6b\xc2\x99\x4f\x87\x57\x25\xcb\x8b\x9a\x05\xe9\x6b\x19\x73\x96\x71\x32\xd2\x6d\x39\x94\x27\xe9\xb9\x69\x1c\x19\xe1\x30\xfa\xf2\x98\xc9\x27\x14\xd1\x23\x41\x9c\x90\xe3\x37\x10\xe4\x1d\xd7\x0a\xa4\x88\xc9\x96\x96\x4c\x52\xd4\x9e\x44\xfa\xa3\xba\xf6\x0f\xcc\x32\x94\xe5\xbd\x94\x22\x2f\xef\x64\x61\x50\x1f\x3b\x10\x5a\xa8\x32\x0c\x22\xb6\x9e\x83\xc4\x9d\xf4\x00\xde\x45\xb5\xe7\x23\xc8\x7b\x09\x41\xe7\x9f\xd7\x28\xd4\xe5\x03\x7f\x79\x64\xff\x97\x0e\xb1\x9b\x0e\xb1\x0b\xaa\xdd\x5c\x9d\x48\xbb\x2e\x61\x38\x4a\xea\xcf\x4d\x35\x90\x0e\xae\xf9\x0c\x33\xaa\xae\x63\xa1\x50\x57\x94\x01\x59\xc4\x17\xdc\x35\x0b\xd2\xae\x50\x1f\x1f\xf4\xab\x6b\x0b\xeb\xe6\x83\x64\x40\xa7\x89\xab\x6f\x3e\x06\xfb\xe5\x5e\x2a\x10\x78\x76\xc3\xc9\xeb\xaa\x23\xc6\x37\x60\x0a\x76\x29\xde\xae\xda\xc5\x6c\xdc\x5b\xca\x01\x64\x44\x07\xc5\xc2\x57\x15\x15\x9f\x24\xfa\x04\x88\x33\x47\xd4\xd8\x71\xb4\x97\x37\x28\x9b\xea\xc2\xc8\x54\x4c\x0d\x62\x51\x8c\x7f\x44\x95\xa7\x9b\xc2\xa0\xd8\x97\x53\xf8\x91\x10\xb7\x92\x69\x2d\xef\xd8\x10\xfb\x75\x26\xa4\x92\xba\x7e\x20\x3e\x77\xd3\x4e\x2e\x0f\x32\xf2\xac\x09\xa5\xee\x62\xd2\x37\x9f\x45\xd0\xfc\x5e\x54\x83\x8d\xfd\x53\xaf\xc4\x05\xfb\xf1\x9d\x67\xe6\xe4\x49\x47\xd0\xd8\x26\x3f\x57\x94\x56\xcd\xa5\x8c\x9a\xd1\x53\x76\xe6\xac\xb1\x23\x31\xed\x9d\xa3\x7b\x0e\x1c\x94\x4a\xa1\x41\x36\x84\x57\xa5\xbb\xab\x50\x72\x37\xf2\x2c\xb9\xe3\x97\x98\xbd\x8b\x42\x07\xa3\x8d\x3f\x32\x07\x57\x7f\x6d\x2a\x4e\x05\x5b\x0e\xd9\xae\xbd\x6c\xd6\x4f\x7f\x6d\xd5\xa8\xad\x1a\xbb\x51\x43\x5d\xb5\x5a\x2c\x45\xeb\x9b\x72\xee\x4c\x1a\xac\xb8\xf1\x2c\xda\xcd\xc0\x75\x9b\xd8\xbf\x84\x2b\xf7\x2b\xde\x41\xd7\xcd\x3d\x64\xf7\xc6\x78\x48\x6f\xbc\x8b\x9e\xb3\x27\xb5\x95\x39\x0f\xea\xd7\xbd\xa1\x89\x3b\x36\x7a\x76\x75\x94\xeb\xe9\xc6\xdb\xea\xba\xa2\x52\xbb\x3a\xd0\x35\xf5\x75\x6f\xb2\xe7\xcf\x1b\xb2\xc7\x3b\x79\x44\xf6\xb1\xd7\xbe\x91\x35\x70\xc3\xb3\x1e\x93\xaf\x7e\xd7\x03\x87\x53\xb8\xf5\xcf\x6a\x32\x47\xb5\xad\xb5\xef\x60\x40\xf2\x06\x73\x8e\x0b\x1a\x07\x74\xd5\x51\xaa\x6e\xfe\x2b\x61\xbe\x15\xaa\x93\x9c\xe7\x37\x43\xac\x9d\x8c\x45\x98\xd8\xf6\x81\x16\xe2\xd7\xbd\xe1\x91\x65\x1d\xee\xf7\x39\x66\xb8\x5d\x55\x0d\xa6\xc2\x70\x6d\xdc\xbb\xe9\x29\x66\xb0\x59\xcb\xfb\x4e\x51\xee\x32\xa8\xac\xa9\xaa\xc6\xfc\x3b\xba\xc2\x71\x08\x40\x62\x3f\x47\x9b\xa5\x01\x08\x52\x5b\xe4\x41\x99\xc3\x63\x0f\x9b\x35\x2b\x96\xb8\x78\x9f\xa0\x1c\xe9\x10\xa1\x0c\x35\x25\x6a\x4b\xc0\x7c\xcb\x74\x88\x96\xa0\x91\xeb\x25\xe6\x2c\x91\x56\x97\x0d\x6e\xed\xed\xcc\xf2\x2a\x60\x94\xa3\x8e\x93\x93\x13\x33\xc6\x0f\x6b\xd4\xa2\x95\x5e\xea\xa9\xb8\x2b\xc3\xe4\xde\xa8\xcb\x18\xaa\x05\x30\x54\xcb\x72\xe5\x73\xb2\x61\xee\xa6\xca\x1b\x20\xa8\xbe\x36\x43\x4d\x65\x66\xfa\x0f\x3f\x17\x0b\x79\xe1\x4b\x2b\x4b\x88\x39\x6d\xa6\x50\x63\x74\xa5\xae\xd1\x45\xed\xe5\x66\x85\xf9\x1c\xa8\x0c\x82\x8d\xf9\xb9\x6b\x26\x65\xb0\xfb\x37\xbb\x2e\x85\x15\x0f\x8f\xb4\x33\xc3\x41\x0c\xe5\xe4\xd3\xcb\x35\xb4\x99\xf6\x0a\x1d\xba\x20\x3a\xd4\x69\x16\xaa\xf1\x8c\x11\xd9\xfd\x24\x71\xb4\x60\x52\x32\xa2\x8d\x8a\x29\xc1\xdc\xec\x2c\xc1\xba\x46\x6c\x99\xba\xc8\x4d\x77\x39\x30\x5a\xc7\xb9\x02\x7e\xd8\x4c\x67\x1c\x21\xb6\xb0\xda\x50\xce\x99\x2b\x56\xa1\xba\xfa\x8f\xbe\xbd\x24\xb8\xbe\xb8\xa2\x26\xfb\xaa\x6a\x29\xbb\xe7\x4c\x37\x19\x70\xe4\xc2\x33\x87\xc1\x03\x01\xf3\x69\xe0\xa2\x67\x7d\x63\xe8\x84\x84\x2f\x6f\xfe\xe6\xb4\x3f\x6f\x45\xd0\x14\xbe\x06\xbc\x5a\xb3\x6d\x82\xa2\xa1\xc5\x94\x6c\xda\x02\xab\x54\x39\x0e\x53\x0a\x95\xc9\x4a\x2c\x50\x5d\xab\x10\xb0\x50\x2a\xca\xdb\x5d\x63\x56\x6a\x26\xe6\x85\xce\x9e\xda\xbb\xa0\xb7\x23\x2f\x3d\xb7\xb1\xa6\x8e\x7b\x7a\x68\x7f\x53\x70\x9d\x20\x33\xf1\x9f\xbd\xe8\xe7\x08\xee\xc7\x8f\xe5\x00\xdf\xcb\xab\xab\x8e\x4e\xe1\x87\xd8\xf9\xfa\x21\x64\xf6\x0f\x8e\xf5\x1d\xdd\x31\x40\x02\x38\x78\x5f\xa7\xfe\x9a\x9c\x2f\x1e\x3f\xe7\xe8\x31\x71\x83\x1e\xd3\x22\xc2\x41\x44\x38\x03\x73\x57\x7c\x24\x8c\x7b\xba\x79\xd5\x56\x57\x88\x99\x6e\xd6\xf2\xeb\xf8\x6e\x8c\xc0\x12\xbd\x88\x6f\x99\x4e\x3e\x1e\x7c\x3c\x80\xff\x0d\x00\x00\xff\xff\xcf\xc5\x5c\x93\x5f\xfa\x00\x00" func flowstakingcollectionCdcBytes() ([]byte, error) { return bindataRead( @@ -158,7 +158,7 @@ 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{0x3f, 0x37, 0xaa, 0xee, 0x19, 0x91, 0xf2, 0x3, 0xca, 0x6c, 0x21, 0x27, 0x5b, 0xfc, 0x8a, 0x10, 0xa8, 0x1f, 0x8e, 0x4c, 0x70, 0x50, 0x53, 0xd3, 0x5d, 0xd7, 0xbf, 0x8a, 0x9c, 0xb7, 0xb2, 0xec}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0xc0, 0xf4, 0xd3, 0x81, 0xc8, 0x10, 0x7, 0xcb, 0x6e, 0xa2, 0xf4, 0x8b, 0x29, 0x86, 0x2a, 0xf0, 0xa7, 0x3, 0x58, 0x27, 0x24, 0xee, 0x99, 0xed, 0x72, 0x19, 0x47, 0xb9, 0x19, 0xb6, 0xe8}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index b86c8aca..5f8bf61e 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -246,16 +246,16 @@ // randomBeaconHistory/scripts/get_source_of_randomness.cdc (305B) // randomBeaconHistory/scripts/get_source_of_randomness_page.cdc (326B) // randomBeaconHistory/transactions/set_backfiller_max_entries.cdc (379B) -// stakingCollection/close_stake.cdc (1.08kB) -// stakingCollection/create_machine_account.cdc (2.613kB) +// stakingCollection/close_stake.cdc (875B) +// stakingCollection/create_machine_account.cdc (2.408kB) // stakingCollection/create_new_tokenholder_acct.cdc (3.643kB) // stakingCollection/deploy_collection_contract.cdc (312B) -// stakingCollection/register_delegator.cdc (1.018kB) -// stakingCollection/register_multiple_delegators.cdc (1.089kB) -// stakingCollection/register_multiple_nodes.cdc (1.906kB) -// stakingCollection/register_node.cdc (2.907kB) -// stakingCollection/request_unstaking.cdc (1.006kB) -// stakingCollection/restake_all_stakers.cdc (1.627kB) +// stakingCollection/register_delegator.cdc (792B) +// stakingCollection/register_multiple_delegators.cdc (884B) +// stakingCollection/register_multiple_nodes.cdc (1.701kB) +// stakingCollection/register_node.cdc (2.681kB) +// stakingCollection/request_unstaking.cdc (801B) +// stakingCollection/restake_all_stakers.cdc (1.422kB) // stakingCollection/scripts/does_account_have_staking_collection.cdc (257B) // stakingCollection/scripts/get_all_delegator_info.cdc (357B) // stakingCollection/scripts/get_all_node_info.cdc (337B) @@ -267,18 +267,18 @@ // stakingCollection/scripts/get_node_ids.cdc (248B) // stakingCollection/scripts/get_unlocked_tokens_used.cdc (294B) // stakingCollection/setup_staking_collection.cdc (3.494kB) -// stakingCollection/stake_new_tokens.cdc (1.13kB) -// stakingCollection/stake_rewarded_tokens.cdc (1.023kB) -// stakingCollection/stake_unstaked_tokens.cdc (1.023kB) +// stakingCollection/stake_new_tokens.cdc (925B) +// stakingCollection/stake_rewarded_tokens.cdc (818B) +// stakingCollection/stake_unstaked_tokens.cdc (818B) // stakingCollection/test/deposit_tokens.cdc (878B) // stakingCollection/test/get_tokens.cdc (684B) -// stakingCollection/transfer_delegator.cdc (2.481kB) -// stakingCollection/transfer_node.cdc (2.798kB) -// stakingCollection/unstake_all.cdc (932B) -// stakingCollection/update_networking_address.cdc (950B) -// stakingCollection/withdraw_from_machine_account.cdc (1.012kB) -// stakingCollection/withdraw_rewarded_tokens.cdc (1.184kB) -// stakingCollection/withdraw_unstaked_tokens.cdc (1.199kB) +// stakingCollection/transfer_delegator.cdc (2.276kB) +// stakingCollection/transfer_node.cdc (2.593kB) +// stakingCollection/unstake_all.cdc (727B) +// stakingCollection/update_networking_address.cdc (745B) +// stakingCollection/withdraw_from_machine_account.cdc (807B) +// stakingCollection/withdraw_rewarded_tokens.cdc (979B) +// stakingCollection/withdraw_unstaked_tokens.cdc (994B) // stakingProxy/add_node_info.cdc (640B) // stakingProxy/get_node_info.cdc (461B) // stakingProxy/register_node.cdc (1.145kB) @@ -5285,7 +5285,7 @@ func randombeaconhistoryTransactionsSet_backfiller_max_entriesCdc() (*asset, err return a, nil } -var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xd4\x40\x0c\xbd\xe7\x57\x98\x1c\xaa\x44\xaa\x52\x09\x6e\x2b\x60\x05\x45\x48\x3d\x81\xd8\xc2\xdd\x3b\xf1\x26\x86\xc9\x38\x9a\x71\xba\x7c\xa8\xff\x1d\x4d\x26\xc9\x2e\x34\x54\x5c\x3a\x87\xdd\xc4\xb1\xfd\xde\xf3\x3c\x73\xd7\x8b\x57\x78\x6f\xe5\xb8\x53\xfc\xc6\xae\xb9\x16\x6b\xc9\x28\x8b\x83\x83\x97\x0e\xf2\xd5\x6f\x79\x96\x5d\x5d\xc1\xb5\x95\x40\x01\x64\x50\x40\x08\x29\x07\x64\xff\x95\x8c\x02\x3b\xd0\x96\x96\xa8\x59\x4a\x63\xe1\x6d\xcb\x01\x6a\xa1\x00\x4e\x14\x3c\x75\x72\x47\x63\xba\x27\x23\xbe\x4e\xc8\xf1\x9d\x6b\x72\xca\xfa\x03\x14\xf7\x96\x2e\x63\xed\x7e\x50\x60\x4d\xd5\x1d\x61\x84\x41\x1d\x93\xd1\x18\x19\x9c\xa6\x80\x49\xdc\x58\xc1\xa0\x8b\x28\x74\x47\x3e\xa6\x50\x18\xa3\xd8\x20\xbb\x2c\x53\x8f\x2e\xe0\x48\xac\x70\x52\xd3\xcd\xbb\x0d\xec\xd4\xb3\x6b\x2e\xa1\x26\x4b\x0d\xaa\xf8\x18\xfc\x7c\xe3\xf4\xc5\xf3\x6d\x09\xbf\x32\x00\x80\xf1\xc7\x92\xce\x02\x4f\xa3\xf9\x44\x87\x0d\xe0\xa0\x6d\xb1\x3a\xb9\xea\xf4\xf8\xe1\xe8\xc8\x97\x70\xb1\x9e\xf7\x20\x92\x8d\x98\xbd\xa7\x1e\x3d\x15\x93\xd8\x09\xea\xad\x78\x2f\xc7\x2f\x68\x07\x2a\xe1\xe2\x4d\xfa\x36\x73\x8d\x27\x90\x3d\x54\x6b\x5c\xe1\xd5\x3c\xb7\x2a\xa8\x78\x6c\xa8\xda\x8f\xcd\x5e\x3e\x85\x86\xd7\x45\xbc\xda\xcd\xba\xe1\x1e\xa6\xef\x12\xa3\x8f\xa8\x6d\xb9\x48\x89\x67\xbb\x85\x1e\x1d\x9b\x22\xbf\x8d\x26\xe3\xc6\x91\x3f\x19\x2a\x0a\x21\x40\x98\xfa\xc1\x99\xa7\x27\x77\x4e\x8e\xe9\x51\x5b\xc8\xff\xe8\x3c\x9f\xca\x88\x33\xa8\xff\x18\xc0\x63\x4c\x2b\x95\xe4\xa0\xa2\x2c\x1f\x6d\x9d\x57\x70\xc6\xbe\x1b\x42\xdc\x1a\x56\x46\xcb\x3f\xc7\x75\x60\xbf\x78\xfa\xc8\xda\x82\xc6\xb5\x99\x14\x1c\xd8\x07\x7d\x96\x4f\x10\xf7\xc9\x1c\xf4\x9d\xcc\xa0\xf4\x3f\xf7\x5e\x8d\x0b\x12\x75\xd0\x62\xfc\xf4\xff\x97\xf1\xcf\x5e\x66\xac\xfb\xec\x77\x00\x00\x00\xff\xff\x14\x27\x43\xd2\x38\x04\x00\x00" +var _stakingcollectionClose_stakeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6e\xd4\x30\x10\xbd\xe7\x2b\x46\x3d\x54\x89\x54\xa5\x12\xdc\x56\xc0\x0a\x0a\x48\x3d\x20\x10\x0b\xdc\x67\x9d\xd9\xac\xc1\x99\x89\xc6\x93\x2e\x08\xf5\xdf\x91\xed\x26\x8b\x68\x90\xb8\xe0\x43\x12\x3f\xbf\xf1\x7b\xf3\x32\x7e\x18\x45\x0d\xde\x06\x39\xed\x0c\xbf\x79\xee\x6f\x24\x04\x72\xe6\x85\xe1\xa0\x32\xc0\xc5\xea\xd9\x45\x55\x5d\x5f\xc3\x4d\x90\x48\x11\x64\x32\x40\x88\x85\x03\xb2\xff\x4a\xce\xc0\x33\xd8\x91\x16\xd4\x2d\xa5\xa9\xf0\xd3\xd1\x47\xe8\x84\x22\xb0\x18\x28\x0d\x72\x47\x99\xae\xe4\x44\xbb\xa2\x9c\xf6\xbe\x23\x36\x6f\x3f\xc0\x70\x1f\xe8\x2a\xd5\xee\x27\x03\x6f\xa5\x7a\x20\x4c\x32\x68\x99\x8c\xce\xc9\xc4\x56\x00\x57\xbc\x79\x03\x87\x9c\x54\xe8\x8e\x34\x51\x28\x66\x14\x7b\xf4\x5c\x55\xa6\xc8\x11\xb3\xb1\x9a\xa5\xa3\xdb\xd7\x1b\xd8\x99\x7a\xee\xaf\xa0\xa3\x40\x3d\x9a\x68\x02\x3f\xdf\xb2\x3d\x7d\xb2\x6d\xe0\x67\x05\x00\x90\x1f\x81\x6c\x6e\xf0\x1c\xcd\x47\x3a\x6c\x00\x27\x3b\xd6\xab\xc9\xb5\xe7\xcf\xf7\x27\x26\x6d\xe0\x72\x9d\xf7\x08\xa9\xb2\xe6\xa8\x34\xa2\x52\xfd\xd0\xec\x83\xd4\x2b\x51\x95\xd3\x17\x0c\x13\x35\x70\xf9\xb2\x9c\xcd\x5e\xd3\x8a\x14\x0e\xed\x9a\x57\x78\x3e\xe7\xd6\x46\x13\xc5\x9e\xda\x7d\xbe\xec\xd9\xff\xe8\xe1\x45\x9d\x7e\xed\x66\x7d\xe0\x1e\xd3\x77\xc5\xd1\x07\xb4\x63\xb3\xb4\x92\xd6\x76\x0b\x23\xb2\x77\x7f\xf1\xd7\x93\x9d\x77\xef\x7c\x8c\x9e\xfb\x37\xaa\xa2\x35\xfb\xd0\x94\xab\xee\x4b\x9e\xf4\x9d\xdc\x64\xf4\x2f\x51\xb5\x79\xa6\x92\x1a\x2d\xb3\x52\xde\x7f\xcc\xca\x6f\x9b\x59\xeb\xbe\xfa\x15\x00\x00\xff\xff\x40\xb3\x19\xea\x6b\x03\x00\x00" func stakingcollectionClose_stakeCdcBytes() ([]byte, error) { return bindataRead( @@ -5301,11 +5301,11 @@ func stakingcollectionClose_stakeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/close_stake.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x84, 0x56, 0xc9, 0x37, 0x25, 0x88, 0xc3, 0x4d, 0x52, 0x67, 0x25, 0xa, 0x1b, 0xa8, 0x92, 0xc4, 0x7c, 0x2f, 0xc5, 0xd, 0x69, 0xc8, 0x83, 0xa3, 0xb4, 0xd6, 0xcc, 0x72, 0xb5, 0xde, 0xba, 0x72}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x54, 0x47, 0x43, 0x69, 0xff, 0x8a, 0x89, 0xde, 0x70, 0x9c, 0x67, 0x36, 0x21, 0x2f, 0x67, 0x71, 0xf2, 0xb, 0xcf, 0x73, 0x23, 0x41, 0x32, 0x80, 0x99, 0x72, 0x4e, 0xe4, 0x51, 0x0, 0xc5}} return a, nil } -var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x96\x5d\x6f\xe2\x46\x17\xc7\xaf\xe3\x4f\xf1\x7f\xb8\x58\xd9\x12\x72\x02\xd9\x44\x11\x7a\xe8\x8a\xb0\x59\x65\xc5\xa6\x8d\x4a\x5b\xa9\x57\xe8\x60\x1f\xf0\x34\x66\xc6\x9a\x19\xc2\xd2\x2a\xdf\xbd\xf2\xf8\x05\xbc\xf6\xd2\x48\x6d\x7c\x01\x7e\x39\xef\xe7\x77\x8e\x46\x6c\x32\xa5\x2d\xa6\x7a\x9f\x59\xe5\x95\x4f\x9f\x52\xb5\x9b\x5b\x7a\x12\x72\x3d\x55\x69\xca\x91\x15\x4a\x62\xa5\xd5\x06\xbd\xce\x6f\x3d\xcf\x3b\x3f\x3f\xc7\x54\x33\x59\x36\x20\x6c\x28\x4a\x84\x64\x50\x14\xa9\xad\xb4\x58\x29\x0d\x82\x54\x31\xc3\x26\x64\x21\x0c\x28\xd5\x4c\xf1\x1e\x42\xc2\x26\x0c\x53\xd8\x44\x54\x1b\x75\x26\x49\xc6\xa0\x38\x36\xc8\xb6\xcb\x54\x44\x78\xe2\xbd\x81\x55\x4e\x45\xf2\xae\x72\xe0\x79\x56\x93\x34\xe4\x14\xfd\xdc\xcf\xe7\x8f\x23\xcc\xad\x16\x72\xdd\x87\x87\xa3\xab\x0c\x6d\x52\x28\xce\x78\xff\x5a\xb9\xb9\x58\x4b\xb2\x5b\xcd\x93\x74\xad\xb4\xb0\xc9\x66\x84\x5f\x3f\x4b\x7b\xf3\x4f\x8a\xf7\x64\x92\x6f\x75\x02\xfc\xe5\x94\xdc\x4f\xca\xb6\xca\xff\x50\xd3\x9f\x79\x35\x02\x6d\x6d\xe2\x77\x96\x3c\x3c\xdc\xfe\xb4\x93\xac\x03\xbc\xeb\x96\x6b\xbd\xf1\x9c\xcf\x4c\x73\x46\x9a\xfd\xb2\x80\xa5\xab\x5b\xa5\xb5\xda\xfd\x46\xe9\x96\x03\xbc\x2b\x53\xa8\x62\xcd\x2f\xc3\xe9\x2a\xec\x8a\x15\xe3\xaa\x17\xa1\xb1\x4a\xd3\x9a\xc3\xa5\x33\xf6\xff\xb7\xc8\xe1\x07\x3f\xa7\x71\xd4\x4d\x6a\x5b\x7c\x5e\x44\xf4\x48\x36\x09\x1a\xbd\xfa\xf0\x01\x19\x49\x11\xf9\xbd\x5f\x72\x06\xc5\x5a\xb2\x46\xac\xd8\x40\xaa\xbc\x27\x4a\x33\x08\xa5\x3d\x1c\x0d\x83\x5a\xfe\xc1\x91\x05\x59\x47\x62\x46\x36\x41\xaf\x61\xb9\xba\xc2\x48\xc9\x88\xec\x77\x0a\x70\x2a\xd2\xd0\xaa\x02\x4c\x3f\x08\x4e\x9a\xee\x85\x38\x8a\x7e\xb3\x35\x16\x42\x0a\x2b\x28\x15\x7f\xe6\xf3\xc6\x42\xd7\x83\xb8\x13\x36\x81\x4d\x84\xa9\x32\x58\x09\x6d\xec\xff\x7a\x41\xe0\xd5\x3e\xc4\xca\x11\xd9\xe4\x18\xe3\xef\xf7\x3e\x8c\xdc\xe0\x3f\x34\x14\x3e\x29\x7d\xf7\x55\x18\x2b\xe4\xfa\x47\x15\x73\x3d\x94\xc5\x7f\x1f\x19\xed\x59\x8f\xaa\xc0\x8e\x19\xab\x47\x42\xac\xf3\xb1\xc1\x18\xed\xd1\xf3\x35\x15\x98\x8e\x5e\x33\xa8\xed\xfa\x1d\x1a\x3f\x25\x99\xf7\xba\x48\xa1\xb5\xb8\x5c\xbd\x32\xad\x9e\x45\xcc\x71\xbe\x7d\x46\x78\xc8\x0b\x5c\xbe\x02\xb9\xb2\x3b\x6f\xa0\xca\x1d\x34\xed\xf0\x9c\x47\x57\x6c\xbb\x48\x69\xcd\x26\x53\x32\x76\xbb\xab\x0d\x4a\xdd\x49\x25\x19\x6a\xe5\x98\xa2\x67\x12\x29\x2d\x53\xee\xf2\x60\xdc\x46\xcd\x99\x72\x1b\x31\xec\xb5\x33\xac\x6d\xfe\xae\xb6\x87\x0c\x7a\x41\xf5\xfe\x15\x65\x3b\x49\x60\x6d\x1f\xcb\x6d\x31\x05\x2a\xcb\x79\x30\x20\xcd\x60\x61\x13\xd6\x18\xc0\xbf\x9b\x7e\x9c\x4f\x16\x8f\xc3\xab\xeb\xa0\x8f\x61\xf5\x6c\x38\xca\x86\x57\xd7\x4f\x83\xa0\x0f\xa5\x71\x09\xff\xf6\xcb\x7c\x71\xfb\x65\x3e\x18\x2e\x2e\x6f\x06\x41\xd8\x20\xb2\x22\x22\x29\x37\x29\xc6\x68\x2c\xd5\x53\x34\x34\x04\xdf\x12\x84\x3c\xb8\xff\x90\x81\x16\x06\x4d\xfb\x6f\x41\x40\xa3\x54\xff\xa2\xf9\x03\xf8\xf3\xfb\xc9\x70\x51\xf7\xdc\x3d\x5d\xde\xbc\x0f\xfa\x79\xa7\xe7\xf7\x93\xcb\xf2\xdb\xa9\xa8\xdf\x97\x92\x85\xde\x15\xfc\xd9\xc3\x64\x3a\x18\xde\x2c\x9a\xa4\x38\x7e\xae\xe1\xcf\xee\xa6\xd3\xc9\xcc\xd9\x75\xf0\x1c\xdb\x6c\x81\x54\x9c\x26\x66\xbc\xc7\x18\x8f\xd5\xbd\xef\x9d\x9d\x9d\xe5\x12\xf5\xd7\x0e\x9c\xc2\x98\x23\x15\xf3\x3d\x7f\xf5\x83\x7e\xa5\x60\x3a\x8e\x06\xe5\xf6\xf2\x0a\x89\xe0\xc4\x11\x21\x74\x0d\xa4\x38\xf6\x8f\x1c\xd7\xb7\xfd\x9a\xfa\xd2\x70\xf5\xd8\xc7\x8e\xc5\x3a\xb1\x23\x0c\x2e\x2e\x2e\xc2\x8b\x83\x8b\x17\x70\x6a\xf8\x9b\x8d\x5a\x51\xae\xb6\x69\x8c\x23\xd0\xbb\x0f\x6b\xee\x7c\xa5\x62\x3e\x6a\xd0\x8b\x57\xfc\xbe\x78\x7f\x07\x00\x00\xff\xff\xd3\xbf\x19\x92\x35\x0a\x00\x00" +var _stakingcollectionCreate_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x5b\x6f\xa3\x46\x14\x7e\x0e\xbf\xe2\x88\x87\xd5\x20\x21\x12\x3b\x9b\x28\x42\x75\x57\x0e\x9b\x55\x56\xde\xb4\x51\x51\x2b\xf5\xc9\x3a\x81\x63\x18\x85\xcc\xa0\x99\x21\x5e\xab\xca\x7f\xaf\x18\x2e\x36\x0b\x71\x23\x75\xc3\x03\xcc\xe5\xdc\xbf\x6f\xce\xc0\x9f\x4a\xa9\x0c\x44\x6a\x57\x1a\xe9\xb4\xb3\x2f\x85\xdc\xc6\x06\x1f\xb9\xc8\x22\x59\x14\x94\x18\x2e\x05\x6c\x94\x7c\x02\x77\x72\xcf\x75\x9c\xd3\xd3\x53\x88\x14\xa1\x21\x0d\x08\x4f\x98\xe4\x5c\x10\x60\x92\xc8\x4a\x18\xd8\x48\x05\x08\x42\xa6\x04\x26\x47\x03\x5c\x03\x16\x8a\x30\xdd\x01\x17\x60\x72\x02\xdd\xd8\x84\xa4\x37\x6a\x4d\xa2\x48\x01\xd3\x54\x43\x59\x3d\x14\x3c\x81\x47\xda\x69\x30\xd2\xaa\x08\xda\x76\x0e\x1c\xc7\x28\x14\x1a\xad\x22\xab\xfd\x7c\xfd\x1c\x42\x6c\x14\x17\x99\x0f\x0e\x1c\x3c\x6d\x68\xcb\x46\x71\x45\xbb\xb7\xca\xc5\x3c\x13\x68\x2a\x45\xcb\x22\x93\x8a\x9b\xfc\x29\x84\x3f\xbf\x0a\x73\xf5\x5f\x8a\xb7\xa8\xf3\x1f\x75\x3c\xf8\xc7\x2a\xd9\x57\x41\xa6\xcb\x7f\x5f\xd3\x3f\x68\x13\x02\x56\x26\x67\x93\x25\x0f\xf6\xc3\xdf\xb7\x82\x94\x07\x1f\xa6\xe5\x46\x2b\x8e\xf5\x59\x2a\x2a\x51\x11\x6b\x0b\xd8\xba\xba\x96\x4a\xc9\xed\x5f\x58\x54\xe4\xc1\x87\x36\x85\x2e\xd6\xfa\xd1\x54\x6c\x82\xa9\x58\x61\xd1\x61\x11\x68\x23\x15\x66\x14\x3c\x58\x63\xbf\xbc\x47\x0e\xbf\xb2\x9a\x8d\xe1\x34\x53\xc7\xe2\x71\x13\xd1\x3d\x9a\xdc\x1b\x60\xf5\xe9\x13\x94\x28\x78\xf2\x4a\x7c\x19\x99\xfd\xec\x8e\x6b\xcd\x45\x76\xa3\x94\x54\x4c\xf0\xc2\xf3\x9c\xde\x16\xdf\x58\x10\x87\xd0\xc3\xe2\xf5\x72\x05\x89\x3d\x2b\x77\x03\x85\x2f\x52\xdd\x7c\xe7\xda\x70\x91\xfd\x26\x53\xea\x79\xdc\x7c\x7d\x28\x71\x47\x2a\xec\xea\x7c\x08\x4b\xcf\x22\x9e\xd5\x4c\x83\x05\x8c\xd9\xca\x14\x36\xc8\x86\x6f\xe1\xf6\xb0\x4e\x83\x5a\xb9\x11\x0a\x21\x0d\x34\x29\x8c\xce\xfa\x96\x9b\x1c\x4a\x25\x9f\x79\x4a\x69\x7d\x60\x43\xb8\xab\xb4\xe9\x96\x00\xeb\x28\x1b\x6f\x80\x9d\x3b\x50\xb8\x85\xe7\x3a\xba\xa6\x41\x24\x52\x29\xd2\xa5\x14\xa9\x3d\xee\xee\x28\x9a\x20\x91\x22\x41\xc3\x5c\x29\x08\xe4\xc6\x36\x04\x7c\x46\x5e\xe0\x43\x41\x53\x1e\xb4\x6d\x42\x35\xce\xb6\x89\x04\xee\x38\xc3\xde\xe6\xdf\xb2\xda\x67\xe0\x7a\xdd\xfa\x1b\xca\x16\x18\xd9\x74\x13\xe6\x1d\xb1\x0f\x0f\x95\xb1\x11\xcb\xb2\xe6\x83\x06\x54\x04\xc4\x4d\x4e\x0a\x66\xc0\x6e\xa2\xcf\xf1\x72\x7d\x3f\xbf\xb8\xf4\x7c\x98\x77\x73\x4d\x49\x39\xbf\xb8\x7c\x9c\x79\x3e\x48\x05\xe7\xc0\xae\xbf\xc5\xeb\xeb\x6f\xf1\x6c\xbe\x3e\xbf\x9a\x79\x81\x7b\xc8\xc8\x8e\x11\x79\xdb\x7c\x60\x01\x83\x3e\x74\x8c\x0d\x03\xc1\xf7\x24\x42\x1d\xdc\x4f\xe4\xc0\x88\x06\x43\xfb\xef\xc1\x80\x41\xa9\xfe\x07\xf8\x33\x60\xf1\xed\x72\xbe\xee\x31\xb7\xb3\xf3\xab\x8f\x9e\x5f\x23\x1d\xdf\x2e\xcf\xdb\xbd\x63\x51\x7f\x6c\x25\x1b\xbd\x0b\x60\xab\xbb\x65\x34\x9b\x5f\xad\x87\x4c\xb1\xfc\xb9\x04\xb6\xba\x89\xa2\xe5\xca\xda\xb5\xe4\x39\xb4\x39\x22\x52\x73\x01\xaf\x68\x07\x0b\xb8\xef\xc6\xcc\x39\x39\x39\xa9\x25\xfa\xdd\x09\x3a\x05\x29\x25\x32\xa5\x5b\xfa\xce\x3c\xbf\x53\xd0\x13\xb7\x69\xdb\xbd\x9c\x46\xc2\x3b\x72\xab\x06\x16\x40\x4c\x53\x76\xe0\xb8\x1f\xfa\x3d\xeb\x5b\xc3\xdd\xd4\x87\x2d\xf1\x2c\x37\x21\xcc\xce\xce\xce\x82\xb3\xbd\x8b\x17\xa0\x42\xd3\x0f\x1d\xb5\x63\xb9\xac\x8a\x14\x0e\x88\x3e\xfd\x7f\x63\x7f\x49\x64\x4a\x07\x00\xbd\x38\xcd\xfb\xc5\xf9\x37\x00\x00\xff\xff\x3d\xc2\xe1\x49\x68\x09\x00\x00" func stakingcollectionCreate_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5321,7 +5321,7 @@ func stakingcollectionCreate_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/create_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4e, 0x70, 0xe3, 0xd9, 0xa2, 0x1c, 0x7f, 0x68, 0x91, 0x9c, 0x16, 0x5c, 0x8c, 0x39, 0xc8, 0x59, 0x2f, 0x71, 0x5c, 0xca, 0x58, 0xa5, 0xd2, 0x60, 0x8d, 0xd7, 0x30, 0xc4, 0xf5, 0xe, 0x40, 0xce}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xc8, 0xdd, 0xc1, 0xca, 0x65, 0x17, 0x82, 0xd8, 0x8d, 0xea, 0xfb, 0x76, 0x3e, 0x97, 0x2a, 0x7c, 0xfe, 0x15, 0xee, 0xcc, 0xac, 0xac, 0xc5, 0x56, 0x71, 0x4c, 0x5f, 0x88, 0x53, 0xd8, 0xcc}} return a, nil } @@ -5365,7 +5365,7 @@ func stakingcollectionDeploy_collection_contractCdc() (*asset, error) { return a, nil } -var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x41\x6f\xd4\x4c\x0c\xbd\xe7\x57\xbc\x2f\x87\x2a\x91\x3e\x65\x2f\x88\xc3\x0a\xa8\x80\xaa\x12\x27\x50\x17\xb8\x4f\x27\x4e\x62\x9a\x8c\x23\x8f\xa3\xad\x40\xfd\xef\x28\x99\x84\x2d\xea\x52\x71\xc1\x87\xdd\x28\xb6\x9f\xdf\x8b\x9f\x79\x18\x45\x0d\xd7\xbd\x1c\x0f\xe6\xee\x38\xb4\xef\xa5\xef\xc9\x1b\x4b\x40\xa3\x32\x20\x3f\x9b\xcb\xb3\x6c\xb7\xdb\xe1\x86\x5a\x8e\x46\x1a\xe1\x50\x53\x4f\xad\x33\x51\x70\x80\x75\x84\x98\x9a\xe0\x4f\x88\x4a\x51\x26\xf5\xb4\x34\x37\xa2\xa9\x6e\x24\xcf\x0d\x53\x8d\x20\x35\x7d\xb8\x82\x0b\xf5\x92\x70\x83\x4c\xc1\x20\x0d\x4c\xee\x28\x44\x98\xc0\xcb\x30\xb0\x65\x99\xa9\x0b\xd1\x2d\xa8\x05\xd7\x7b\x1c\x4c\x39\xb4\xff\xaf\x3d\x7b\x7c\xb9\xe6\xfb\x97\x2f\x4a\xfc\xc8\x00\x60\xf9\xe9\xc9\x36\x4e\x27\x21\x37\xd4\xec\xe1\x26\xeb\x8a\xb3\x3a\xab\xd3\xe3\xc7\x63\x20\x2d\x71\x71\xbe\xee\xc9\x9b\x6c\x99\x39\x2a\x8d\x4e\xa9\x70\xde\x27\x5e\xcb\xa8\x77\xa2\x2a\xc7\xaf\xae\x9f\xa8\xc4\xc5\xdb\x94\xdb\xb8\xce\x11\xa9\x6f\xaa\x73\x5c\xf1\x1a\x2b\x54\x15\x4d\xd4\xb5\x54\xdd\x2e\x60\xaf\xfe\x85\x86\x37\xc5\x6c\x81\xfd\x79\x7b\x3c\x2d\x3f\x24\x46\x9f\x9c\x75\xe5\x2f\x29\x73\x5c\x5e\x62\x74\x81\x7d\x91\x7f\x9e\xf7\xcd\x6d\x20\x45\x2d\x14\x11\x64\xde\x89\x28\xc1\x61\xc5\xc3\x23\x07\xca\xed\x37\xf2\x06\x67\x8b\x1f\x46\x67\x1d\xf2\xdf\x90\xb7\xa8\xbc\x04\xef\xec\x0f\x1f\xe0\x39\xa6\x95\x49\xf2\x4e\x51\x96\xcf\x42\xe7\x15\x1e\xb1\x1f\xa6\x68\xe0\xc0\xc6\xae\xe7\xef\x34\xf3\x63\xdd\x76\x83\x23\x5b\x07\xeb\x38\x6e\x0a\x1a\xd6\xa5\x1e\xa2\x35\xe9\x6c\x64\x5d\x4f\xe7\xbf\x7c\x9d\xfb\x90\x1c\x43\xf7\xe4\x27\xa3\xbf\x31\x43\xb5\x61\x5c\x6d\xa7\x57\xa4\x0b\xda\x83\xeb\xd3\x29\xa4\xff\x32\x81\xad\xa3\x1e\xb2\x9f\x01\x00\x00\xff\xff\x5a\x6d\x31\x30\xfa\x03\x00\x00" +var _stakingcollectionRegister_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xc1\x6a\xe3\x40\x0c\xbd\xfb\x2b\x44\x0e\xc1\x86\xc5\xb9\x2c\x7b\x30\xbb\x1b\xda\xa6\x81\x1e\x4a\x4b\x42\x7b\x9f\x8e\x65\x47\x64\x3c\x32\x1a\x99\x04\x4a\xfe\xbd\xc4\xe3\xd4\x87\xb8\xd0\x4b\x75\xb0\x67\x46\xd2\xd3\x7b\xe2\x51\xd3\xb2\x28\xac\x1d\x1f\xb6\x6a\xf6\xe4\xeb\x3b\x76\x0e\xad\x12\x7b\xa8\x84\x1b\x98\x4d\xe6\x66\x49\xb2\x58\x2c\x60\x83\x35\x05\x45\x09\x60\xa0\x44\x87\xb5\x51\x16\x20\x0f\xba\x43\x08\xb1\x09\xec\x88\x28\x18\xb8\x13\x8b\x7d\x73\xc5\x12\xeb\x5a\xb4\x54\x11\x96\xe0\xb9\xc4\x87\x15\x18\x5f\xf6\x09\xd3\x70\xe7\x15\xb8\x02\xe5\x3d\xfa\x00\xca\x60\xb9\x69\x48\x93\x44\xc5\xf8\x60\x7a\xd4\x94\xca\x02\xb6\x2a\xe4\xeb\x5f\x43\x4f\x01\x2f\x6b\x3a\xfe\xf9\x9d\xc1\x7b\x02\x00\xd0\x7f\x1c\xea\x85\xd3\x28\x64\x83\x55\x01\xa6\xd3\x5d\x3a\xa9\x33\x1f\x8f\x4f\x07\x8f\x92\xc1\x7c\xba\xee\xea\x25\xe9\x67\xb6\x82\xad\x11\x4c\x8d\xb5\x91\x57\x3f\xea\x96\x45\xf8\xf0\x6a\x5c\x87\x19\xcc\x6f\x62\xee\xc2\xf5\x1c\x01\x5d\x95\x4f\x71\x85\x7f\x30\x40\xe5\x41\x59\x4c\x8d\xf9\x5b\x0f\xf6\xf7\x27\x34\xfc\x4f\xcf\x16\x28\xa6\xed\x71\x5d\xbe\x8d\x8c\x9e\x8d\xee\xb2\x4f\x29\xe7\x58\x2e\xa1\x35\x9e\xec\x17\xfc\x6a\xd4\xf1\xf6\x48\x21\x90\xaf\xef\x45\x58\x52\x4f\x2e\x8b\x50\xa7\xb8\x4f\x3c\xa2\xed\x14\xbf\xb3\xaa\x5c\x06\x73\xae\x2e\xc6\x4c\xa3\xbf\x0a\xa0\x72\x34\x4a\xfc\x67\x11\x6c\x18\x75\x4a\x3e\x02\x00\x00\xff\xff\xd7\x98\xa0\xcd\x18\x03\x00\x00" func stakingcollectionRegister_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5381,11 +5381,11 @@ func stakingcollectionRegister_delegatorCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_delegator.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x11, 0x8a, 0xbb, 0x0, 0xc2, 0xfc, 0x89, 0xd1, 0xb7, 0xdf, 0x50, 0x9d, 0xb8, 0x30, 0x82, 0xa8, 0x78, 0x2b, 0xb4, 0x76, 0xb1, 0x88, 0xf9, 0x3b, 0x2e, 0x1e, 0x29, 0xcb, 0xe1, 0xf2, 0xc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfe, 0xb8, 0xe5, 0xa, 0xa0, 0x52, 0x6b, 0x3d, 0xfc, 0x3d, 0x3d, 0x3d, 0x40, 0x5c, 0x82, 0xc1, 0x16, 0xba, 0x5d, 0xff, 0xde, 0xbf, 0xa2, 0x4e, 0xae, 0xbf, 0xf4, 0xec, 0x24, 0xd5, 0xee, 0x33}} return a, nil } -var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4f\x6f\xd4\x4e\x0c\xbd\xe7\x53\xbc\x5f\x0e\x55\xa2\x1f\x4a\x41\x42\x1c\x56\x94\x0a\xa8\x2a\x71\x02\xb5\xc0\xa5\xda\xc3\x74\xe2\x24\xa6\xc9\x38\x9a\x71\xd8\x0a\xb4\xdf\x1d\x4d\xfe\xec\x6e\xd5\x65\x6f\xf8\x10\x45\x1e\xcf\xf3\xf3\xf8\x3d\xee\x7a\xf1\x8a\xeb\x56\x36\xb7\x6a\x1e\xd8\xd5\x1f\xa5\x6d\xc9\x2a\x8b\x43\xe5\xa5\x43\x7a\xf4\x2c\x4d\x92\xf3\xf3\x73\xdc\x50\xcd\x41\xc9\x07\x74\x43\xab\xdc\xb7\x84\x92\x5a\xaa\x8d\x8a\x0f\x60\x07\x6d\x08\x61\xba\x0c\xbb\x47\xf6\x14\x64\xf0\x96\x46\x90\x4a\xfc\x54\xd7\x93\xe5\x8a\xa9\x84\x93\x92\x3e\x5d\x05\x18\x57\xc2\x74\x32\x38\x85\x54\x50\x79\x20\x17\xa0\x02\x2b\x5d\xc7\x9a\x24\xea\x8d\x0b\x66\x84\xcc\xb8\x0c\x2b\xdc\xdd\xaa\x67\x57\xaf\x5f\xcc\xd7\x62\xea\xdb\x35\x3f\xbe\x79\xbd\xce\xf1\x3b\x01\x80\xf1\xd3\x92\x2e\xb4\xf6\x33\xdd\x50\xb5\x82\x19\xb4\xc9\x8e\x8e\x5c\xec\x7f\x3f\x6f\x1c\xf9\x1c\x67\xc7\xeb\x9e\x65\x92\xb1\x67\xef\xa9\x37\x9e\x32\x63\x6d\xa4\x36\xb7\xfa\x20\xde\xcb\xe6\xbb\x69\x07\xca\x71\xf6\x7e\x3a\x5b\xb8\xc6\x08\xd4\x56\xc5\x31\xae\xb8\xc0\x0c\x55\x04\x15\x6f\x6a\x2a\xee\x47\xb0\xb7\xff\x62\x86\x77\x59\x54\xc3\xea\xb8\x52\x9e\x97\xdf\x4e\x8c\xbe\x18\x6d\xf2\xdd\x28\x31\x2e\x2f\xd1\x1b\xc7\x36\x4b\xbf\xc6\x95\x73\xed\xc8\xa3\x14\x0a\x70\x12\x77\x22\x9e\x60\x30\xe3\xe1\x40\x8c\x72\xff\x83\xac\xc2\xe8\xa8\x95\xde\x68\x83\xf4\x09\xf2\x12\x85\x15\x67\x8d\xfe\xe5\x01\x4e\x31\x2d\x54\x26\xfd\x64\x79\x7e\x12\x3a\x2d\x70\xc0\xbe\x1b\x82\x82\x1d\x2b\x9b\x96\x7f\x51\xe4\xc7\x7e\xd9\x0d\x36\xac\x0d\xb4\xe1\xb0\x4c\x50\xb1\x0f\xfa\x5f\x3a\xb7\xd8\x4e\xe2\xa0\x47\xb2\x83\xd2\xc1\xde\x7f\x1a\x0f\xc6\x05\x5e\xee\x32\xd1\x27\x5c\x46\x57\x71\x19\x0e\x2a\x4f\xaa\xa4\xf0\xb3\x45\xaf\x16\x5f\x66\x93\xbb\x56\xe0\x72\xb1\xc9\x6a\xb1\xcb\x1d\xaf\xf3\xd1\x24\x4f\xc0\x23\x0d\xc6\xff\x78\xb5\xcb\x6e\x67\xee\xdb\xe4\x4f\x00\x00\x00\xff\xff\x25\xc6\x16\xe7\x41\x04\x00\x00" +var _stakingcollectionRegister_multiple_delegatorsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x8b\xd4\x40\x10\xc5\xef\xf9\x14\x8f\x3d\x2c\x09\x4a\x56\x41\x3c\x04\xd7\x45\x5d\x17\x3c\x88\xb2\x83\x5e\x96\x39\xb4\x49\x25\x53\x6c\xa7\x2b\x54\x57\x9c\x05\x99\xef\x2e\xf9\x37\xb3\xb2\xd1\x9b\x7d\x08\xe9\xea\xea\xd7\xef\x15\x3f\x6e\x3b\x51\xc3\x8d\x97\xfd\xc6\xdc\x3d\x87\xe6\x83\x78\x4f\xa5\xb1\x04\xd4\x2a\x2d\xce\x56\xcf\xce\x92\xe4\xe2\xe2\x02\xb7\xd4\x70\x34\xd2\x88\xb6\xf7\xc6\x9d\x27\x54\xe4\xa9\x71\x26\x1a\xc1\x01\xb6\x23\xc4\xe9\x32\xca\x93\xb2\x52\x94\x5e\x4b\x1a\x45\x6a\xd1\xa9\xaf\xa3\x92\x6b\xa6\x0a\x41\x2a\xfa\x74\x1d\xe1\x42\x05\xd7\x4a\x1f\x0c\x52\xc3\xe4\x9e\x42\x84\x09\x4a\x69\x5b\xb6\x24\x31\x75\x21\xba\x51\x32\xe5\x2a\x16\xb8\xdb\x98\x72\x68\xb6\xcf\xe7\x6b\x43\xe9\xdb\x0d\x3f\xbc\x7e\xb5\xcd\xf0\x2b\x01\x80\xf1\xe3\xc9\x16\x5b\xa7\x4c\xb7\x54\x17\x70\xbd\xed\xd2\xd5\xc8\xf9\xe9\xf7\xcb\x3e\x90\x66\x38\x5f\xef\x7b\x52\x49\xc6\x37\x3b\xa5\xce\x29\xa5\xae\x2c\x07\x6b\xf3\x53\xef\x45\x55\xf6\xdf\x9d\xef\x29\xc3\xf9\xbb\xe9\x6c\xf1\x3a\xac\x48\xbe\xce\xd7\xbc\xe2\x12\xb3\x54\x1e\x4d\xd4\x35\x94\xff\x18\xc5\xde\xfc\x8f\x0c\x6f\xd3\x81\x86\x62\x9d\x94\xa7\xed\x9b\xc9\xd1\x57\x67\xbb\xec\x18\x65\x58\x57\x57\xe8\x5c\xe0\xf2\x2f\xfe\x1a\xb2\xd3\xee\x33\xc7\xc8\xa1\xf9\xa8\x2a\x9a\x06\xf6\xd9\x24\x75\x98\xe6\x49\x0f\x54\xf6\x46\x8f\x46\xf5\xd3\x29\x18\x97\x78\x71\xac\x0c\x68\x71\x35\x80\xc8\x55\x7c\xd4\xf9\xcf\xc1\xe6\x3a\x53\x7d\xbd\xa0\x9c\x4e\x40\x16\xe0\x6a\x21\xab\x58\x08\xbb\xe3\x6d\x36\x72\xf5\x87\xf8\x60\x83\xf1\x0c\x2f\x8f\xd5\xc3\xec\xfd\x90\xfc\x0e\x00\x00\xff\xff\x68\x18\x79\x7f\x74\x03\x00\x00" func stakingcollectionRegister_multiple_delegatorsCdcBytes() ([]byte, error) { return bindataRead( @@ -5401,11 +5401,11 @@ func stakingcollectionRegister_multiple_delegatorsCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_delegators.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1b, 0x7b, 0xa2, 0xd3, 0xa6, 0x90, 0x89, 0x6e, 0x4b, 0xca, 0x82, 0x7, 0x41, 0xff, 0xb8, 0x0, 0x53, 0xd5, 0x74, 0xc, 0xc6, 0x8, 0x35, 0x43, 0x18, 0xe4, 0xa1, 0xc2, 0x88, 0x99, 0xfe, 0xfc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x46, 0x2, 0x31, 0xce, 0x8, 0x7c, 0xcb, 0xc, 0xb7, 0xe8, 0xfb, 0x70, 0x30, 0xb3, 0xef, 0xd7, 0xb5, 0x37, 0xf8, 0xa6, 0xe, 0x3f, 0xe5, 0xa0, 0xee, 0x8b, 0xfa, 0x92, 0x5d, 0xd2, 0xc7, 0xf9}} return a, nil } -var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4b\x6f\xdb\x38\x10\xbe\xeb\x57\x4c\x7c\x08\x24\xac\xa1\x64\x81\xc5\x62\x21\xac\x1b\xa4\x41\x03\x14\x29\xda\x22\x69\x7b\x31\x7c\x60\xa4\x91\x34\x8d\x44\x0a\xc3\x71\x5c\xe5\xf1\xdf\x0b\xea\x61\x5b\x91\x9c\x9c\xca\x83\x20\xce\xf3\x23\xe7\xe3\x47\x65\x65\x58\xe0\x82\xeb\x4a\x8c\xd7\xed\x2e\x0b\xb3\xb9\x11\x75\x47\x3a\xbb\x30\x45\x81\xb1\x90\xd1\x90\xb2\x29\x61\x36\xe9\x9b\x79\xde\xc9\xc9\x09\x5c\x63\x46\x56\x90\x2d\x94\xeb\x42\xa8\x2a\x10\xb4\x49\xd0\x02\x69\x90\x1c\xc1\xb6\x79\x10\xef\x8a\x32\x5a\xb3\xe6\x18\x9b\xfc\xd4\x70\x1b\x57\x61\x4c\x29\x61\xd2\xa4\x03\xe9\xd4\x70\xa9\x5c\xbc\xe7\x09\x2b\x6d\x55\x93\xec\x53\x62\x23\x58\xde\x08\x93\xce\x56\x73\x0f\xf6\x16\x9b\x02\x9d\xf3\xfb\x47\x2d\xff\xbd\xf0\x69\x94\x8d\x61\x87\xe4\x3c\x49\x18\xad\xc5\x83\x65\x76\xa1\x57\x58\x1f\x8c\xea\xce\xf5\x5a\x88\x2a\xcd\x5a\x4b\x83\xe8\x92\x7e\xfd\xfb\xcf\x0b\x77\xb5\xbe\x2d\x28\xee\x0a\x2c\xdb\x69\x84\x57\x58\x7f\x22\x2b\x1f\xb4\x70\xbd\x3a\x5b\x05\xf0\xd8\xe4\x34\x9f\x02\xa5\x6f\xbb\x1b\xc3\x35\xa6\x11\xa8\xb5\xe4\xfe\xe4\x94\xc2\xdd\xef\x97\x8d\x46\x0e\xe0\x78\x3a\x6e\x64\xf1\x9a\x9e\x15\x63\xa5\x18\x7d\x15\xc7\xee\x30\x5d\xab\xf7\x86\xd9\x6c\x7e\xa8\x62\x8d\x01\x1c\x9f\xb7\xbe\x1e\x6b\x73\x3b\x58\xa4\xe1\x14\x56\x58\x40\x57\x2a\xb4\x62\x58\x65\x18\xde\x36\xc5\xfe\xff\x13\x67\x78\xe7\x3b\x02\x47\xd3\xe4\x1e\x87\xdf\xb4\x88\xbe\x2a\xc9\x83\xc1\xa8\xce\xce\xa0\x52\x9a\x62\x7f\xf6\xcd\x51\x95\x32\x8d\x0c\x89\x41\x0b\xda\xb8\x99\x18\x46\x50\xd0\xd5\x83\xbd\xf7\x63\x6e\x7f\x62\x2c\xa0\xa4\xe1\x78\xa5\x24\x87\xd9\xa0\x72\xbf\xc2\xd8\xe8\x58\xc9\x81\x0b\x78\x0d\x69\x28\xa6\x65\x9f\x1f\x04\xaf\x96\x9e\x85\xb0\x87\xbe\x5c\x5b\x01\xd2\x24\xa4\x0a\x7a\x40\x87\x8f\xb8\x9f\x0d\x6c\x48\x72\x90\x9c\x6c\x7f\x82\x94\xd8\xca\xd1\x2c\x08\xbc\x6d\x8f\x7b\xc5\x40\xb0\x80\xd3\x9d\xc9\x3d\x66\x4a\xdc\xd3\xa7\xc4\xee\xd1\xc1\x2d\x4a\x1b\x02\x97\x2a\xce\x49\x63\xc7\x19\x58\x1c\xa6\x4a\xc8\x9d\xb4\x7c\x36\x09\xfa\xa3\xa3\x51\x12\x01\x25\xf3\x91\xdd\xa9\x40\xd4\x6a\xc1\x92\x56\x63\xff\x48\x09\xa2\x29\x71\x78\x23\xf5\x0a\xeb\xe8\x85\x50\x4c\x66\xec\x54\x22\xda\x57\x8c\xc9\xd8\x56\x2e\xa2\x5e\x36\x26\x63\x2a\x55\x23\x47\xfd\x98\x02\x18\x04\x3c\x8e\xef\x28\xdd\x53\x99\x25\xad\x60\xb1\x00\x4d\x05\x3c\x3d\x0d\xed\x47\x61\x81\x3a\x93\xdc\xf9\x4f\x27\xea\xb4\xad\x9b\x07\x70\xa1\xb4\xe3\x7c\xc5\xe6\x9e\x12\x84\x07\x64\x03\x77\x58\xdb\xad\x90\x77\x03\xee\x31\xce\xc6\xa4\x7c\x1e\x59\x5c\xee\x1d\xd6\x8e\x38\x43\x5c\x07\xb0\x0c\x49\x14\xba\xfe\xa1\x4a\x12\x7f\x9b\x1c\xb9\x72\xe1\x76\x3b\x87\x5c\xd9\xfc\xbc\xc8\x0c\x93\xe4\x65\xeb\x1d\x98\xe6\xb0\x41\xca\x72\x69\x5d\xed\xff\x5b\xc8\x87\x3b\xf7\x14\x08\xfe\x82\xbf\xbd\xa1\xff\xd9\x7b\xf6\x7e\x07\x00\x00\xff\xff\x1b\xdf\x16\x1d\x72\x07\x00\x00" +var _stakingcollectionRegister_multiple_nodesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4d\x6f\x9b\x40\x10\xbd\xf3\x2b\xa6\x3e\x44\xa0\x5a\x24\x95\xaa\xaa\x42\x75\xa3\x34\x4a\xa4\x2a\xfd\x52\xa2\xf6\x62\xf9\xb0\x61\x07\x18\x65\xd9\x45\xb3\xeb\xb8\x34\xc9\x7f\xaf\x16\xb0\x31\x01\x37\xa7\x72\xb0\xd8\x99\x37\x6f\x1f\x33\xf3\x4c\x65\x65\xd8\xc1\x39\xd7\x95\x33\x41\x77\xba\x54\x66\x73\xe3\xc4\x1d\xe9\xfc\xdc\x28\x85\xa9\x23\xa3\x21\x63\x53\xc2\x6c\x32\x37\x0b\x82\xe3\xe3\x63\xb8\xc6\x9c\xac\x43\xb6\x50\xae\x95\xa3\x4a\x21\x68\x23\xd1\x02\x69\x70\x05\x82\x6d\xeb\x20\xed\x49\x19\xad\x59\x73\x8a\x4d\x7d\x66\xb8\xc5\x55\x98\x52\x46\x28\x9b\x72\x20\x9d\x19\x2e\x85\xc7\x07\x81\x63\xa1\xad\x68\x8a\x43\x92\x36\x81\xe5\x8d\x63\xd2\xf9\x6a\x1e\xc0\xde\xc3\x46\xa1\x4f\xfe\xfc\xac\xdd\xfb\x67\x39\x8d\x6e\x63\xd8\x2b\x39\x93\x92\xd1\x5a\x3c\x48\xd3\x43\xaf\xb0\x3e\x88\xea\xbe\xeb\x5f\x10\x51\x9a\xb5\x76\x8d\xa2\x4b\xfa\xfd\xee\xed\xb3\x74\xb5\xbe\x55\x94\x76\x04\xcb\x76\x1a\xf1\x15\xd6\x5f\xc8\xba\x0b\xed\xb8\x5e\x9d\xae\x22\x78\x68\x6a\x9a\x1f\x85\x6e\x7b\x6d\x3f\x86\x6b\xcc\x12\x10\x6b\x57\x84\x93\x53\x8a\xfb\xd7\xef\x1b\x8d\x1c\xc1\xd1\x34\x6e\x14\x09\x9a\x3b\x2b\xc6\x4a\x30\x86\x22\x4d\xfd\xc7\x74\x57\x7d\x32\xcc\x66\xf3\x4b\xa8\x35\x46\x70\x74\xd6\xe6\xb6\x5a\x9b\xee\xa0\xca\xe2\x29\xad\xb0\x80\x8e\x2a\xb6\xce\xb0\xc8\x31\xbe\x6d\xc8\x3e\xfc\x8f\x6f\xf8\x18\xfa\x05\x4e\xa6\x97\x7b\x0c\xbf\x69\x15\xfd\x10\xae\x88\x06\xa3\x3a\x3d\x85\x4a\x68\x4a\x0f\xe8\xcb\xd1\xf5\xa7\xaf\x64\x2d\xe9\xfc\x82\xd9\x70\xa8\x49\x45\x51\xb0\xe3\xba\x17\x0c\x04\x0b\x38\xe9\x43\x7e\xff\x49\x7a\xb7\x90\xb4\x7b\x1d\xf4\x0f\x65\xcd\xcc\x4b\x91\x16\xa4\xb1\x6b\x33\x2c\x0e\x77\x37\xe6\xce\x8d\xdf\x8c\xc4\x70\xc0\xd5\xf0\xc9\x04\x48\xce\x47\x71\x6f\x9c\xa4\xb5\xcf\x92\x56\xe3\xfc\xc8\x3c\xc9\x94\x9f\x5e\x28\xbd\xc2\x3a\x79\xe6\xad\xc9\x8a\xde\x58\xc9\xbe\xc9\x26\xb1\xad\xc3\x92\xad\xd3\x26\x31\x95\xa8\x91\x93\xed\xd6\x45\x30\x00\x3c\x8c\x7b\x94\xed\x19\x73\x49\x2b\x58\x2c\x40\x93\x82\xc7\xc7\x61\xfc\x55\xac\x50\xe7\xae\xf0\xf9\x93\x09\x9e\xf6\x6a\xbf\x33\xb3\x73\xa1\xb5\x71\x50\xb1\xb9\x27\x89\xf0\x07\xd9\xc0\x1d\xd6\x76\xf7\xdf\xd7\x0d\x78\xab\x71\x16\x8d\xd8\x9e\x46\x11\x5f\x7b\x87\xb5\x5f\x9c\xa1\xae\x03\x5a\x86\x4b\x14\xfb\xfb\x63\x21\x65\xb8\x2b\x4e\x3c\x5d\xbc\x3b\xce\xa1\x10\xb6\x38\x53\xb9\x61\x72\x45\xd9\x66\x07\xa1\x39\x6c\x90\xf2\xc2\xb5\xa9\xf6\xfd\x25\xe5\xc3\x93\xb7\x02\xc1\x6b\x78\x13\x0c\xf3\x4f\xc1\x53\xf0\x37\x00\x00\xff\xff\x8d\x72\xb3\x22\xa5\x06\x00\x00" func stakingcollectionRegister_multiple_nodesCdcBytes() ([]byte, error) { return bindataRead( @@ -5421,11 +5421,11 @@ func stakingcollectionRegister_multiple_nodesCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_multiple_nodes.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x79, 0xec, 0xcd, 0xc3, 0x7, 0xfc, 0x97, 0xd0, 0x0, 0x27, 0x25, 0x60, 0x58, 0x61, 0xc1, 0xae, 0xfe, 0xa1, 0x4e, 0x8d, 0x57, 0xbb, 0xe5, 0x83, 0x85, 0x10, 0xf6, 0x66, 0xbd, 0x19, 0x20, 0x4b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x47, 0xb7, 0xe8, 0x7e, 0xfb, 0x6e, 0x3f, 0xd7, 0xaf, 0xa1, 0x39, 0x8a, 0xdd, 0x2c, 0x5, 0x2c, 0x7e, 0xae, 0x41, 0xa6, 0xaf, 0x33, 0x8a, 0xb4, 0x29, 0x49, 0x92, 0xf0, 0xb4, 0xd1, 0xaf, 0xab}} return a, nil } -var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdb\x6e\xdb\x46\x13\xbe\x36\x9f\x62\x7e\x5d\x04\x24\x20\xd0\x96\x7c\x80\x21\xfc\x6a\x20\xab\x09\x5c\x28\x69\x8d\xa8\x29\xd0\x2b\x61\xc5\x1d\x91\x5b\x53\x3b\xc4\xec\xca\x8a\x5b\xe4\xdd\x8b\x5d\x1e\x24\x96\xb4\x92\x1e\xa2\x0b\x6a\x97\x73\xde\xf9\xbe\x59\xaa\x6d\x41\x6c\x61\xce\xcf\x85\xa5\xa0\xda\xbd\xcd\x69\xbf\xb4\xe2\x51\xe9\x74\x4e\x79\x8e\x89\x55\xa4\x61\xc3\xb4\x85\x41\xaf\x6c\x10\x04\xe7\xe7\xe7\xf0\x01\x53\x65\x2c\xb2\x01\x01\x12\x73\x4c\x85\x25\x06\xa5\xc1\x66\x08\xa6\x34\x82\xe4\xe0\x91\xd1\xd0\x8e\x13\xf4\xc6\x1b\xe2\x52\xaf\xc0\x44\x6d\x14\x4a\xd0\x24\x11\x94\xde\x10\x6f\x85\xd7\x17\x5a\x7a\x15\xb1\xa5\x9d\xb6\x40\x1b\xb0\xf4\x88\xda\x80\x25\x48\x68\xbb\x55\x36\x08\x2c\x0b\x6d\x84\xf7\x1f\x2a\x39\x81\xa5\x65\xa5\xd3\x61\x00\x47\x3f\xa6\x1c\x27\xf0\xf1\x07\x6d\x6f\xdb\x02\x8d\x76\x4f\xec\xd2\x9c\x49\xc9\x68\x4c\xbf\xfd\x41\x6d\x81\xcf\xfd\x2a\x55\xb5\x2f\xca\xcb\x12\x26\xf0\xf1\xad\xfa\x74\x73\xd5\x96\x6d\x45\x92\x29\x8d\xb3\x24\x71\x3a\xc7\x2e\xe0\xb4\xde\x52\xa5\x5a\xd8\x1d\xe3\x2c\x4f\x89\x95\xcd\xb6\x75\x95\x5f\x30\xbc\x17\x26\xfb\xab\x4d\x04\x7f\x04\xde\x2a\x47\x5b\x97\x73\xe8\xf8\x07\xdc\x4c\x40\xec\x6c\x16\xf6\x02\x22\x3e\x2c\x7f\xda\x6b\xe4\x08\x5e\xf5\xeb\x75\xde\x94\x31\x0b\xc6\x42\x30\x86\xa2\x4c\xb1\x0a\x75\x47\xcc\xb4\xff\x45\xe4\x3b\x8c\xe0\x55\x95\xbe\xcb\xb3\x39\x75\xcc\x37\x71\x5f\xae\x30\x85\xca\x55\x6c\x2c\xb1\x48\x31\x5e\x7b\x67\xff\xff\x16\x35\x7c\x17\x3a\xae\x4c\xfa\x79\xd4\x55\x5f\x96\x19\x3d\x08\x9b\x45\xad\x3e\xbd\x7e\x0d\x85\xd0\x2a\x09\x07\x3f\x3b\x62\xa8\x54\x23\x83\x24\x34\xa0\xc9\xf5\x84\x18\x41\x40\xe5\x0f\x8e\xa8\x4a\xeb\xdf\x30\xb1\x20\xac\xa7\x4b\x21\x6c\x06\x83\x96\xe7\xfa\x17\x27\xa4\x13\x61\x5f\x38\x80\x53\x99\xc6\x96\x4a\x50\x86\x51\x74\xd2\xf5\x20\x86\xa3\xec\xb7\x3b\x63\x41\x69\x65\x95\xc8\xd5\xef\xe8\xf2\x53\x5c\xf7\x06\xf6\xca\x66\x60\x33\x65\xea\x0a\x36\x8a\xbd\x3e\x10\x4b\x64\xc7\x73\xae\x66\xcc\xff\x06\x51\x14\x34\x81\xd5\xc6\xc3\xb4\x0d\x6c\x98\xbe\x0c\x88\xb8\xf6\xf3\x23\x49\x0c\x5b\x05\xb8\xa9\xa1\x64\xdf\xc4\x70\xcf\x2f\x0e\x8c\xce\xab\x93\xb3\xa3\xb5\x7d\x79\x84\x1c\xd6\xfd\x63\xa4\xfc\x6f\xcb\x0a\xf1\x8c\x3c\xa9\xcf\xb6\x11\x1d\xf3\x05\x6a\x7a\xab\xd4\xd1\x1f\xa6\xd0\x1d\x21\x21\x8b\x92\x72\x93\xaf\x19\x38\x5d\x2c\x1c\x40\x3c\x17\xda\xe1\xb6\x3e\xf9\x72\xbe\xfb\x96\x17\x4c\x4f\x4a\xa2\xac\x23\x34\x80\x78\x74\xc5\xbf\x77\x98\xa9\x54\x40\x78\x24\xf9\xa0\x20\xea\xa8\xc0\x62\x0f\x4f\x2e\x49\xb0\x99\xb0\x90\x10\x33\x9a\x82\xb4\xf4\x77\x43\x17\xfb\x0d\x38\x49\xa3\xbf\x47\xdc\xad\xf2\x24\x54\x2e\xd6\x39\xf6\x45\x30\xfe\x7e\x72\x34\x71\x39\x99\x78\xd0\x2d\xb4\xf1\xf9\x2b\xed\x0e\x15\x0d\xa2\xfa\xfd\x57\x9c\xde\x49\x52\x35\xfe\x61\xbd\x2b\x89\x4d\x85\x43\xb3\x01\xc1\x08\xa8\x6c\x86\x0c\x23\x08\xdf\xcc\xbf\x5f\xce\x56\x0f\xe3\xeb\x9b\x68\x08\xe3\x7a\x6f\x30\x29\xc6\xd7\x37\x8f\xa3\x68\x08\xc4\x70\x09\xe1\xdd\xbb\xe5\xea\xee\xdd\x72\x34\x5e\x5d\xde\x8e\xa2\xb8\xc5\xa7\x1a\x18\x59\x75\x31\xc0\x14\x5a\x77\xc4\x29\x50\xb4\x14\xff\x19\x1e\xfc\xd4\xfa\x3b\x98\x70\x79\xfe\x87\x70\xe8\x20\xa2\xed\xff\x5b\x80\xa1\x75\x6a\xff\x02\x07\x23\x08\x97\xf7\xb3\xf1\xaa\x69\xbf\xdf\x5d\xde\x5e\x45\x43\xd7\xf4\xe5\xfd\xec\xb2\x92\x9d\xca\xfa\xaa\xd2\x2c\xed\xae\x21\x5c\xbc\x9f\xcd\x47\xe3\xdb\x55\x1b\x34\x1e\x4a\x37\x10\x2e\xde\xcc\xe7\xb3\x85\xf7\xeb\x71\x74\xec\xb3\x83\xa9\x62\xb7\xce\x55\xb2\xc0\x67\x98\xc2\x43\xbd\x0e\x83\xb3\xb3\x33\xa7\xd1\x48\x7b\x90\x15\x4b\x4c\x48\xe2\x3d\x7e\x0a\xa3\x61\x6d\x60\x7a\x3e\x7a\xaa\x79\x16\x94\x1a\xd1\x89\x8f\x9f\xd8\x37\x50\x48\x19\x1e\x05\x6e\x96\xc3\x86\x00\x95\xe3\x7a\x3b\x84\x3d\xaa\x34\xb3\x13\x18\x5d\x5c\x5c\xc4\x17\x87\x10\x9f\x83\xf2\xf9\x39\xf8\x33\x00\x00\xff\xff\x3e\xe9\x3d\x75\x5b\x0b\x00\x00" +var _stakingcollectionRegister_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xdb\x6e\xdb\x46\x10\x7d\x36\xbf\x62\xa0\x87\x60\x09\x08\xb4\x25\x5f\x60\x08\x55\x03\x59\x75\xe0\x42\x71\x6b\x84\x48\x81\x3e\x09\x6b\x72\x44\x2e\x4c\xed\x10\xb3\x4b\x2b\x46\x91\x7f\x2f\x96\x37\x89\x25\xad\xa4\x6d\xec\x07\x99\xcb\xb9\x9d\xd9\x39\x67\x40\xb5\xcd\x89\x2d\x2c\xf9\x25\xb7\xe4\xd5\xa7\x0f\x19\xed\x42\x2b\x9f\x94\x4e\x96\x94\x65\x18\x59\x45\x1a\x36\x4c\x5b\x18\x0d\xda\x46\x9e\x77\x7a\x7a\x0a\x9f\x30\x51\xc6\x22\x1b\x90\x10\x63\x86\x89\xb4\xc4\xa0\x34\xd8\x14\xc1\x54\x41\x10\xed\x33\x32\x1a\x2a\x38\xc2\x32\x78\x43\x5c\xf9\xe5\x18\xa9\x8d\xc2\x18\x34\xc5\x08\x4a\x6f\x88\xb7\xb2\xf4\x97\x3a\x2e\x5d\xe4\x96\x0a\x6d\x81\x36\x60\xe9\x09\xb5\x01\x4b\x10\xd1\x76\xab\xac\xe7\x59\x96\xda\xc8\x32\xbf\x50\xf1\x0c\x42\xcb\x4a\x27\x63\x0f\x0e\xfe\x98\x32\x9c\xc1\xe7\x5f\xb5\xbd\xee\x1a\x34\xda\x1d\xb1\x83\xb9\x88\x63\x46\x63\x86\xe3\xf7\x6e\x2b\x7c\x19\x76\xa9\xbb\x7d\xd5\x5e\xb5\x30\x83\xcf\x1f\xd4\x97\xab\x8b\xae\x6d\x2b\xa3\x54\x69\x5c\x44\x91\xf3\x39\x4c\x01\xc7\xfd\x42\x95\x68\x69\x0b\xc6\x45\x96\x10\x2b\x9b\x6e\x9b\x2e\xbf\x11\x78\x27\x4d\xfa\xcf\x18\x1f\xfe\xf2\xca\xa8\x0c\x6d\xd3\xce\x7e\xe2\x9f\x70\x33\x03\x59\xd8\x54\x0c\x12\x22\xd8\x3f\xfe\xbe\xd3\xc8\x3e\xbc\x1b\xf6\xeb\xbd\xa9\x6a\xe6\x8c\xb9\x64\x14\xb2\x82\x58\x97\xba\x21\x66\xda\xfd\x21\xb3\x02\x7d\x78\x57\xc3\x77\x38\xdb\x5b\xc7\x6c\x13\x0c\x61\x85\x39\xd4\xa9\x02\x63\x89\x65\x82\xc1\x63\x99\xec\xa7\xb7\xe8\xe1\x67\xe1\xb4\x32\x1b\xd6\x51\xdf\x3d\xac\x10\x3d\x48\x9b\xfa\x9d\x39\xbd\x7f\x0f\xb9\xd4\x2a\x7a\x05\x5f\x82\x76\x7f\xba\x57\xc6\x28\x9d\xdc\x32\x13\x0b\xad\x32\xdf\xf7\xda\x5c\x6a\x53\x0e\xb1\x3b\x76\x98\xbf\x7e\x5d\x01\xd7\x4a\xfe\x8d\x62\x14\x1d\x4c\x4e\x53\x2a\x1e\xd2\x93\xfb\xfd\xa6\x9c\x7a\xaf\x8e\x2a\xab\x73\x7c\x5d\x60\xfb\xe7\x61\x91\x55\xff\xbb\xb6\x5c\xbe\x20\xcf\x1a\x56\xb4\xa6\x43\x36\xb5\xe4\x57\x89\x13\x07\xcc\xa1\x2f\x30\xc1\xb2\x22\xe4\xec\x7b\xe4\xd8\x1d\x6f\x67\xc4\xa3\xa5\xd4\x9a\x2c\x34\x37\x5f\x6d\xbf\x9d\xb2\x29\xe4\x4c\xcf\x2a\xc6\xb8\xa9\xd0\x80\x86\x27\xd7\xfc\x7d\x61\x6c\xe3\x02\xd2\x81\xad\x8a\x82\x6c\xaa\x02\xcb\x1d\x3c\x3b\x90\x60\x53\x69\x21\x22\x66\x34\x39\xe9\xb8\xdc\x9c\xa3\x1e\xa8\x20\x22\x1d\x49\x2b\x46\xa4\xb1\xdc\xb2\x6e\xe7\x3e\x4b\x95\xc9\xc7\x0c\x87\x2a\x98\x72\x7b\x3b\x96\x3a\x4c\x26\x18\xf5\x1b\x6d\x73\xfe\x49\xc5\xbe\xa3\x91\xdf\xbc\xff\x8e\xdb\x0b\x2c\x55\x7b\x50\xf8\x47\xf2\xc3\x63\x61\x4b\xc4\x94\x3b\x36\x1b\x90\x8c\x80\xca\xa6\xc8\x30\x01\x71\xbb\xfc\x25\x5c\xac\x1f\xa6\x97\x57\xfe\x18\xa6\xcd\xd9\x60\x94\x4f\x2f\xaf\x9e\x26\xfe\x18\x88\xe1\x1c\xc4\xcd\xc7\x70\x7d\xf3\x31\x9c\x4c\xd7\xe7\xd7\x13\x3f\x18\x1d\xea\xa9\x21\x46\x5a\xaf\x4d\x98\x43\x67\x83\x1e\x23\x45\xc7\xf1\xbf\xf1\xc1\x35\xf7\xaf\x38\xe1\x70\xfe\x40\x3a\xf4\x18\xd1\xcd\xff\x16\x64\xe8\xdc\xda\xff\xe0\xc1\x04\x44\x78\xb7\x98\xae\xdb\xf1\x97\xa7\xf3\xeb\x0b\x7f\xec\x86\x1e\xde\x2d\xce\x6b\xdb\x31\xd4\x17\xb5\x67\x15\x77\x09\x62\x75\xbf\x58\x4e\xa6\xd7\xeb\x2e\x69\x4a\x2a\x5d\x81\x58\xdd\x2e\x97\x8b\x55\x99\xb7\xe4\xd1\x61\xce\x1e\xa7\xf2\xe2\x31\x53\xd1\x0a\x5f\x60\x0e\x0f\xcd\xb3\xf0\x4e\x4e\x4e\x9c\x47\x6b\x1d\x60\x56\x10\x63\x44\x31\xde\xe1\x17\xe1\x8f\x9b\x00\x33\xf0\x49\x50\xef\x33\xaf\xf2\xf0\x8f\x7c\x1a\x04\xe5\x00\x65\x1c\x8b\x83\xc2\xed\xe3\xb8\x15\x40\x9d\xb8\x39\x8e\x61\x87\x2a\x49\xed\x0c\x26\x67\x67\x67\xc1\xd9\xbe\xc4\x57\xaf\xfa\xfd\xea\xfd\x1d\x00\x00\xff\xff\xd7\x95\x57\x16\x79\x0a\x00\x00" func stakingcollectionRegister_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5441,11 +5441,11 @@ func stakingcollectionRegister_nodeCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/register_node.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9e, 0x4, 0x85, 0x80, 0x12, 0x6a, 0xf8, 0x59, 0xb2, 0xf9, 0xdb, 0x8c, 0x78, 0x96, 0xa7, 0xfd, 0x68, 0xe0, 0xc7, 0x24, 0xc9, 0x25, 0xf4, 0x37, 0xba, 0xf0, 0x41, 0x90, 0x9a, 0x5a, 0x9b, 0x79}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0xd7, 0xb2, 0xa8, 0x3d, 0xc5, 0x89, 0x1c, 0x98, 0x92, 0x61, 0xa8, 0x61, 0x7d, 0xd4, 0xe8, 0x5a, 0xb0, 0xa6, 0x73, 0x2c, 0xf3, 0xb0, 0x2e, 0x80, 0x4f, 0x72, 0x86, 0xec, 0x5f, 0xad, 0xa}} return a, nil } -var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x3c\x7c\xa8\x6c\xa9\x72\x24\x40\x1c\x22\x20\xe2\x43\x95\x7a\x02\x35\x84\xfb\x76\x33\x8e\x07\x9c\x1d\x33\x3b\x56\x2a\x50\xff\x3b\xb2\x37\x4e\x02\x0d\x15\x97\xce\x21\x9b\xdd\x9d\x7d\xf3\xc6\xf3\x1e\x6f\x3b\x51\xc3\x55\x2b\xbb\xa5\xb9\xef\x1c\x36\x1f\xa4\x6d\xc9\x1b\x4b\x40\xad\xb2\x45\x7e\xf6\x2e\xcf\xb2\xd9\x6c\x86\x1b\xfa\xd1\x53\xb4\x88\x3e\xc4\x94\x82\x5a\x14\xd6\x10\x62\x47\x9e\x6b\xa6\x35\x82\xac\x09\xa2\x58\x53\x4b\x1b\x67\xa2\xe0\x90\x52\xf6\x4f\xfc\x01\x36\xcb\x4c\x5d\x88\x6e\xdc\x14\xc3\xc3\xeb\x8f\x73\x2c\x4d\x39\x6c\x2e\x8f\x00\xc3\xe1\xea\x3a\xd8\x8b\xe7\x8b\x4b\xb8\xad\xf4\xc1\xe6\x58\x5d\xf1\xdd\xab\x97\x25\x7e\x65\x00\x30\xfe\xb4\x64\x53\x91\x23\xf5\x1b\xaa\xe7\x70\xbd\x35\xc5\xd9\xce\xaa\xe3\xdf\x4f\xbb\x40\x5a\xe2\xe2\x7c\xde\x83\x93\x6c\xac\xd9\x29\x75\x4e\xa9\x70\xde\x27\x5e\x63\xa9\xf7\xa2\x2a\xbb\xaf\xae\xed\xa9\xc4\xc5\xbb\x74\x37\x71\x1d\x22\x52\x5b\x57\xe7\xb8\xe2\x0d\xf6\x50\x55\x34\x51\xb7\xa1\xea\x76\x04\x7b\xfd\x14\x3d\xbc\x2d\x86\xa1\xcf\xcf\x0b\xe2\x61\xfa\x32\x31\xfa\xec\xac\x29\x0f\xad\x0c\xb1\x58\xa0\x73\x81\x7d\x91\x7f\x19\x06\xcd\x9b\x40\x8a\xb5\x50\x44\x90\x61\x26\xa2\x04\x87\x3d\x1e\x4e\x34\x27\xb7\xdf\xc8\x1b\x9c\x8d\x0a\xe9\x9c\x35\xc8\xff\x40\x9e\xa2\xf2\x12\xbc\xb3\x7f\x7c\x80\xc7\x98\x56\x26\x49\x51\x45\x59\x3e\x0a\x9d\x57\x38\x61\xbf\xed\xa3\x81\x03\x1b\xbb\x96\x7f\xd2\xc0\x8f\x75\x9a\x0d\x76\x6c\x0d\xac\xe1\x38\x75\x50\xb3\x46\x7b\x96\xef\x4b\xdc\x27\x71\xd0\x1d\xf9\xde\xe8\x7f\xe6\x5e\x69\xf2\xd6\x6a\x72\xd6\xc1\x0e\x69\xfd\xcb\x0e\x27\x9b\xa3\x25\xd2\x3a\x31\xb8\xcf\x7e\x07\x00\x00\xff\xff\xb0\x92\xe9\xea\xee\x03\x00\x00" +var _stakingcollectionRequest_unstakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\x4b\xc3\x40\x10\xbd\xe7\x57\x0c\x3d\x94\x04\x4a\x0a\x2a\x1e\x82\x5a\xfc\x2a\xf4\x20\x4a\x4b\xbd\xaf\xdb\x49\xba\xb8\xdd\x89\xb3\x13\x5a\x90\xfe\x77\x49\xb6\x69\xc4\x46\xf0\xe2\x1e\xb2\x99\xdd\x37\x6f\xde\xcc\x3e\xb3\x29\x89\x05\xa6\x96\xb6\x0b\x51\xef\xc6\x15\xf7\x64\x2d\x6a\x31\xe4\x20\x67\xda\xc0\xa0\xf7\x6e\x10\x45\xe3\xf1\x18\xe6\xf8\x51\xa1\x17\x0f\x95\xf3\x01\x02\x39\x31\xc8\x1a\xc1\x97\xa8\x4d\x6e\x70\x05\x8e\x56\x08\xc4\xb0\x42\x8b\x85\x12\x62\x30\x2e\x40\x0e\x29\xfa\x48\x1b\x45\xc2\xca\x79\xd5\x04\x71\x9d\x38\x7b\xc8\x60\x21\x6c\x5c\x31\xea\x08\xea\xc3\xe5\xcc\xc9\xf9\xd9\x64\x04\x6a\x43\x95\x93\x0c\x96\x53\xb3\xbb\xbc\x48\xe0\x33\x02\x00\x68\x3e\x16\xa5\x2d\xd2\x49\x9f\x63\x9e\x81\xaa\x64\x1d\xf7\x76\x96\x76\xbf\xcf\x5b\x87\x9c\xc0\xb0\x1f\x77\x72\x12\x35\x35\x4b\xc6\x52\x31\xc6\x4a\xeb\xa0\xab\x29\x75\x47\xcc\xb4\x7d\x55\xb6\xc2\x04\x86\xb7\xe1\xae\xd5\x5a\x2f\x8f\x36\x4f\xfb\xb4\xc2\x35\x1c\xa8\x52\x2f\xc4\xaa\xc0\xf4\xad\x21\xbb\xfa\x8f\x1e\x6e\xe2\xfa\xd1\xb3\x7e\x43\x9c\xc2\x17\x41\xd1\x8b\x92\x75\x72\x6c\xa5\x5e\x93\x09\x94\xca\x19\xfd\x8b\xbe\x02\xa5\x8b\x9e\x8c\xf7\xc6\x15\x8f\xcc\xc4\xb1\x33\x36\x09\x54\xfb\x30\x4f\xdc\xa1\xae\x04\xff\x32\xaa\x94\x83\x1d\x97\xad\x19\x8f\x0e\x0a\xfb\x0f\x07\x7d\x0b\x3a\x17\x85\xbd\x55\xb0\x8f\xbe\x02\x00\x00\xff\xff\xc2\xd1\x78\x19\x21\x03\x00\x00" func stakingcollectionRequest_unstakingCdcBytes() ([]byte, error) { return bindataRead( @@ -5461,11 +5461,11 @@ func stakingcollectionRequest_unstakingCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/request_unstaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x24, 0xf0, 0x4, 0x94, 0xcb, 0xc1, 0xfa, 0xaa, 0x89, 0x1a, 0xc2, 0xe5, 0x1b, 0x4c, 0xb4, 0x38, 0x99, 0x6f, 0xc2, 0x23, 0x1d, 0x58, 0xc4, 0xd4, 0xf7, 0xfd, 0x9b, 0xf5, 0x2e, 0xf, 0x19}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x64, 0xdd, 0xc7, 0x6a, 0x3a, 0x9f, 0xf1, 0xd9, 0x10, 0xc8, 0x3c, 0x1d, 0x59, 0xbb, 0x43, 0xad, 0x7b, 0x16, 0x8c, 0xad, 0x80, 0x71, 0xe2, 0x68, 0x8, 0x79, 0xd6, 0xb8, 0x5e, 0x2c, 0x51}} return a, nil } -var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x4f\x8f\x9b\x4e\x0c\xbd\xf3\x29\xfc\xe3\xb0\x02\x69\x35\xb9\x47\xbf\x74\xd5\x6e\x54\x69\x2f\x69\xb5\x89\x7a\x77\xc0\xc0\x34\xc3\x38\x9a\x71\x94\xaa\xab\x7c\xf7\x8a\xff\xb0\x21\xe9\xa1\xed\x1c\x10\x62\xec\xe7\xe7\x67\x3f\x74\x79\x64\x27\xf0\xd9\xf0\x79\x2b\x78\xd0\x36\x7f\x66\x63\x28\x11\xcd\x16\x32\xc7\x25\x84\xb3\x77\x61\x30\xca\x7c\x59\xef\x70\x6f\xa8\x0d\x1a\xa5\x4d\x2f\xc2\x20\x58\x2c\x16\xf0\xcc\x65\xa9\xc5\x83\xa3\x33\xba\x94\x52\x10\x3e\x90\xf5\x20\x0c\x5e\xf0\x40\x90\xb1\x03\x34\x06\x2c\xa7\xe4\x01\x6d\x0a\x29\x19\xca\x51\xd8\x79\xd0\x16\x10\x92\x9e\x47\x10\x88\x43\xeb\xb1\x21\xfc\x16\x00\x00\xd4\x0f\x43\x52\xc3\x4d\x58\xbf\x52\xb6\x04\x3c\x49\x11\xcd\x36\xa5\x86\xd7\x2f\x67\x4b\x2e\x86\x87\xf9\xb8\xab\x2f\x41\x5d\xf3\xe8\xe8\x88\x8e\x22\x4c\x12\x3e\x59\x69\x4b\x7d\x62\xe7\xf8\xfc\x0d\xcd\x89\x62\x78\xf8\xd8\xdc\xc5\x2d\xd7\xea\x78\x32\x99\x9a\xe3\x0a\x2b\x68\xa1\x94\x17\x76\x98\x93\xda\xd7\x60\xff\xff\x8b\x1e\x3e\x44\xd5\xe0\x96\xf3\xbb\x70\x1d\xbe\x6d\x18\x7d\x45\x29\xe2\xbe\x95\xea\x3c\x3d\xc1\x11\xad\x4e\xa2\x70\x57\x10\x78\x9d\x5b\x72\x90\x32\x79\xb0\x5c\xcd\x84\x1d\x01\x42\xb7\x2c\xa3\x75\xe3\xfd\x77\x4a\x04\x50\x40\x0a\x82\x23\x4a\x01\xe1\x04\xb9\x3b\x2a\x61\x9b\xa0\xdc\x10\xe0\x1e\x53\x25\xbc\x15\xa7\x6d\x1e\xc5\xf1\x5d\xe8\x50\xc1\x88\x7d\x79\xf2\x02\xda\x6a\xd1\x68\xf4\x4f\xaa\xf8\x69\xd7\xcd\x06\xce\x5a\x0a\x90\x42\xfb\xae\x83\x4c\x3b\x2f\xff\x85\x6d\x89\x4b\xb3\x1c\xf4\x83\x92\x93\xd0\x68\xee\xd5\x8a\x56\x3b\xfe\xb2\xf6\xb0\xba\xbd\x05\x2a\x27\xd9\x34\x61\x51\x1c\xf4\xd9\x95\x4b\x9a\xec\xca\x13\x1d\xce\xdb\xa4\xab\xbe\x82\xcd\x18\x56\x33\x5e\x55\x9b\xf6\x36\x6a\x00\x96\x2d\xd0\x54\x9c\xdb\xd4\x6a\xc3\xbe\xb6\x46\xde\xd5\x3e\x7e\x87\xf4\x38\x98\xb7\xfe\xa8\xcd\x23\x60\xd9\xd8\xa3\xa3\xa6\x9a\x3f\x40\x87\x33\x14\xbf\x04\x13\xb1\x46\xbf\x81\xdf\xe8\xb5\x1e\x6a\x5e\x89\xd6\xa3\x54\xba\x8d\x20\xaf\xa5\x1b\x98\xdf\xd4\x6f\x3d\x0e\xe9\x5b\xef\x13\x55\xff\xb6\x99\x53\x63\x26\xee\xbd\xf6\x7f\x61\x10\x7f\xc4\x66\x98\xd6\x44\x8d\x3b\x23\x6b\x9e\x97\xe0\x57\x00\x00\x00\xff\xff\xe6\xf7\x0c\x94\x5b\x06\x00\x00" +var _stakingcollectionRestake_all_stakersCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xdb\x30\x0c\xbd\xeb\x57\x10\x39\x14\x36\x50\x38\xf7\x60\x59\xb1\x35\x1b\xd0\xc3\xb2\xa1\x2d\x76\x67\x6d\xda\x15\x22\x8b\x81\xc4\x20\x03\x8a\xfc\xf7\x41\x96\xe3\x8f\xc4\xde\x0e\x5b\x7d\x30\x6c\x91\x7c\x7c\x7c\x7c\xd2\xf5\x9e\x9d\xc0\x57\xc3\xc7\x27\xc1\x9d\xb6\xd5\x3d\x1b\x43\xb9\x68\xb6\x50\x3a\xae\x61\x31\x19\x5b\xa8\x41\xe5\xc3\xe6\x19\x5f\x0c\xb5\x49\x83\xb2\x71\x60\xa1\xd4\x72\xb9\x84\x7b\xae\x6b\x2d\x1e\x1c\x1d\xd1\x15\x54\x80\xf0\x8e\xac\x07\x61\xf0\x82\x3b\x82\x92\x1d\xa0\x31\x60\xb9\x20\x0f\x68\x0b\x28\xc8\x50\x85\xc2\xce\x83\xb6\x80\x90\x77\x3c\x94\x12\x87\xd6\x63\x24\xfc\xa6\x00\x00\x9a\x97\x21\x69\xe0\x46\xac\x1f\xa9\x5c\x01\x1e\xe4\x35\x99\x1c\x2a\xeb\x3f\xbf\x1f\x2d\xb9\x14\x6e\xa6\xf3\xae\x4e\x54\xd3\x73\xef\x68\x8f\x8e\x12\xcc\x73\x3e\x58\x69\x5b\x7d\x66\xe7\xf8\xf8\x13\xcd\x81\x52\xb8\xf9\x14\x63\x69\xcb\x35\x3c\x9e\x4c\x99\x4d\x71\x85\x35\xb4\x50\x99\x17\x76\x58\x51\xf6\xd2\x80\x7d\x78\x8f\x19\x3e\x26\x61\x71\xab\x69\x2f\x5c\xa7\x3f\x45\x46\x3f\x50\x5e\xd3\x6e\x94\xf0\xdc\xdd\xc1\x1e\xad\xce\x67\xf8\x55\x24\xfd\xdf\x37\xed\xbd\xb6\xd5\x17\xe7\xd8\x25\x56\x9b\x34\x42\x9d\xa2\x9e\xf4\x8b\xf2\x83\xd0\x40\xaa\xb0\xd5\x60\x8b\x87\x8d\x87\xf5\xbc\x70\xa1\xc9\x36\xa6\x25\xa9\xea\xaa\x83\xb1\x62\x75\xb0\xd1\x19\xe7\x6d\xc4\xbe\xeb\x60\x4b\x86\xf5\x84\xbd\xb3\x6d\x1b\x4d\x22\xc0\xaa\x05\x1a\x8b\x30\x4f\xad\xf1\xf8\x63\xeb\xfd\xe7\xc6\xfa\x17\x48\xb7\xbd\xdf\x9b\x43\x6d\x6e\x01\xeb\xe8\xa8\x33\xb5\x2c\x5e\x9a\x33\x4e\xdf\xfc\xa4\x46\x62\x0d\x6e\xce\x5f\xf4\xda\xf4\x3d\xaf\x44\xeb\x50\x82\x6e\x03\xc8\x6b\xe9\x7a\xe6\xb3\xfa\x6d\x86\x29\xdd\xe8\x5d\x61\xd6\x7d\x6d\xa7\xd4\x98\xc8\xbb\xd4\xfe\x3f\x2c\xe2\x9f\xd8\xf4\xdb\x1a\xa9\xf1\x87\x95\xc5\xf7\x49\xfd\x0e\x00\x00\xff\xff\xa7\x0a\xf7\xe7\x8e\x05\x00\x00" func stakingcollectionRestake_all_stakersCdcBytes() ([]byte, error) { return bindataRead( @@ -5481,7 +5481,7 @@ func stakingcollectionRestake_all_stakersCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/restake_all_stakers.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x37, 0x7a, 0xf2, 0xeb, 0xe4, 0x34, 0x89, 0x2d, 0x3a, 0x65, 0xe9, 0xf7, 0xb, 0x82, 0xf9, 0xe8, 0x3a, 0x9d, 0xe5, 0x5f, 0xcc, 0xd6, 0x99, 0x41, 0x79, 0xf5, 0x3c, 0x72, 0x92, 0x51, 0x3d, 0xd1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xec, 0xec, 0xe1, 0xff, 0x40, 0x25, 0xb, 0x4a, 0x72, 0x3d, 0x49, 0x47, 0xb8, 0x1d, 0x2a, 0x27, 0x12, 0x34, 0xed, 0x65, 0x30, 0xf3, 0xc3, 0x2e, 0xc, 0x3c, 0xf4, 0xdd, 0x49, 0xbc, 0xb4, 0xf1}} return a, nil } @@ -5705,7 +5705,7 @@ func stakingcollectionSetup_staking_collectionCdc() (*asset, error) { return a, nil } -var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x93\xcf\x6e\xd3\x40\x10\xc6\xef\x7e\x8a\x0f\x1f\x2a\x5b\xaa\x5c\x09\x10\x87\x08\xa8\xa0\xa8\x52\x2f\x80\x48\xcb\x7d\x63\x8f\xe3\x21\xeb\x1d\x6b\x77\x8c\x03\xa8\xef\x8e\xbc\x8e\x93\xd0\x86\x8a\x0b\x7b\xf0\xda\xbb\xe3\xdf\x7c\xf3\x8f\xdb\x4e\xbc\xe2\xda\xca\xb0\x54\xb3\x61\xb7\xbe\x12\x6b\xa9\x54\x16\x87\xda\x4b\x8b\xf4\xe4\x5d\x9a\x24\x17\x17\x17\xb8\x92\xb6\x65\x0d\x70\x34\x40\x65\x43\x2e\x40\x05\x41\xcd\x86\x50\x8b\x87\x36\x84\xd0\x51\xc9\x35\x53\x05\x27\x15\x41\x3c\x2a\xb2\xb4\x36\x2a\x1e\xec\x26\x93\x09\x8f\x72\xcf\x8f\xf4\xdb\x86\x66\x6a\x94\x32\x9a\x5a\x29\x37\x54\xe1\xbb\xe9\xad\xc2\x78\x42\x1f\xa8\x42\xcd\x3e\xe8\x39\xb8\x06\x2b\x68\xcb\x41\x43\x24\xd4\x62\xad\x0c\x54\x61\xf5\x23\xfe\xfd\x90\xd6\xbb\x63\x5e\x92\xa8\x37\x2e\x98\xa8\x20\x1b\xd5\xde\x7c\x58\x60\xa9\x9e\xdd\xfa\xfc\xa0\x7a\x3c\xbc\xbb\x71\xfa\xe2\xf9\xe5\x39\x4c\x2b\xbd\xd3\x05\xee\xae\x79\xfb\xea\x65\x8e\x5f\x09\x00\xc4\x87\x25\x9d\x23\x3b\x24\xee\x0b\xd5\x0b\x98\x5e\x9b\xec\x64\x5e\x8b\xc3\xeb\xa7\xc1\x91\xcf\x71\x76\xda\xee\xd1\x49\x12\x7d\x76\x9e\x3a\xe3\x29\x33\x65\x39\xe9\x8a\xae\xde\x8b\xf7\x32\x7c\x35\xb6\xa7\x1c\x67\xef\xa6\xbb\x59\xeb\xb8\x02\xd9\xba\x38\xa5\x15\x6f\xb0\x43\x15\x41\xc5\x9b\x35\x15\xab\x08\x7b\xfd\x3f\x62\x78\x9b\x8d\x95\x59\x9c\x6e\xc7\xc7\xe6\xcb\x49\xd1\x67\xa3\x4d\xbe\x0f\x65\x5c\x97\x97\xe8\x8c\xe3\x32\x4b\xc7\x16\x0a\xbc\x76\xe4\x51\x09\x05\x38\x19\x6b\x22\x9e\x60\xb0\xe3\xe1\xa8\xe3\x65\xf5\x8d\x4a\x85\xd1\xd8\x1d\x9d\xd1\x06\xe9\x1f\xe4\x79\x15\xa5\xb8\xd2\xe8\x5f\x12\xf0\x94\xd2\x42\x65\xea\xa8\x2c\xcf\x9f\x44\xa7\x05\x8e\xd4\xb7\x7d\x50\xb0\x63\x65\x63\xf9\x27\x8d\xfa\xd8\xcf\xb5\xc1\xc0\xda\x40\x1b\x0e\x73\x04\x71\x20\x9e\xa5\x3b\x17\xf7\x53\x73\xd0\x96\xca\x5e\xe9\x5f\xea\x1e\x0f\xe9\x23\x0d\xb7\x71\x62\xf6\xc3\x30\xed\x0f\x86\xe1\xe8\xe3\x30\x10\xd3\x3e\xfb\xbf\x4f\x7e\x07\x00\x00\xff\xff\xd7\x6d\xde\x3e\x6a\x04\x00\x00" +var _stakingcollectionStake_new_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x92\x4f\x6f\xd3\x40\x10\xc5\xef\xfe\x14\x4f\x3d\x54\xb6\x14\x25\x12\x20\x0e\x11\x10\x41\xa1\x52\x0f\xfc\x11\x69\xb9\x6f\xed\xb1\xb3\xca\x7a\xc7\x9a\x1d\xe3\x20\xd4\xef\x8e\xbc\x4b\xe2\xaa\x31\x12\x97\xee\xc1\xeb\x9d\x1d\xff\xe6\xcd\xf8\xd9\xb6\x63\x51\x5c\x3b\x1e\xb6\x6a\xf6\xd6\x37\x57\xec\x1c\x95\x6a\xd9\xa3\x16\x6e\x71\x31\x7b\x77\x91\x65\xab\xd5\x0a\x57\xdc\xb6\x56\x03\x3c\x0d\x50\xde\x93\x0f\x50\x46\x50\xb3\x27\xd4\x2c\xd0\x1d\x21\x74\x54\xda\xda\x52\x05\xcf\x15\x81\x05\x15\x39\x6a\x8c\xb2\xc0\xfa\x94\x92\xf0\x28\x4f\xfc\x48\xbf\xdd\xd1\x91\x1a\xa5\x8c\xa9\x8e\xcb\x3d\x55\xf8\x69\x7a\xa7\x30\x42\xe8\x03\x55\xa8\xad\x04\x5d\xc0\xd6\xb0\x0a\x3a\xd8\xa0\x21\x12\x6a\x76\x8e\x07\xaa\x70\xff\x2b\x7e\xfd\x94\xd6\xfb\xc7\xbc\x2c\x53\x31\x3e\x98\xa8\x20\x1f\xd5\xde\x7c\x5c\x63\xab\x62\x7d\xb3\x98\x54\x8f\xc1\xbb\x1b\xaf\x2f\x5f\x6c\x16\x30\x2d\xf7\x5e\xd7\xb8\xbb\xb6\x87\xd7\xaf\x0a\xfc\xce\x00\x20\x3e\x1c\xe9\xb1\xb3\x69\x70\xdf\xa9\x5e\xc3\xf4\xba\xcb\x67\xe7\xba\x9c\x5e\xbf\x0e\x9e\xa4\xc0\xe5\x7c\xde\x59\x24\x8b\x35\x3b\xa1\xce\x08\xe5\xa6\x2c\x93\xae\x58\xea\x03\x8b\xf0\xf0\xc3\xb8\x9e\x0a\x5c\xbe\x4f\x77\x47\xad\xe3\x0a\xe4\xea\xe5\x9c\x56\xbc\xc5\x5f\xd4\x32\x28\x8b\x69\x68\x79\x1f\x61\x6f\x9e\xa3\x87\x77\xf9\xf8\x67\xd6\xf3\x76\x3c\x4f\xdf\x26\x45\xdf\x8c\xee\x8a\x53\x2b\xe3\xda\x6c\xd0\x19\x6f\xcb\x7f\xe8\x6b\x48\xa7\xd3\x67\x1b\x82\xf5\xcd\x27\x11\x96\xdc\x5b\x57\x24\xd4\x43\x9a\x27\x1d\xa8\xec\x95\xfe\x67\x54\x31\x48\x5f\x68\xb8\x8d\x26\x3b\xf9\x27\xed\x4f\xfc\xf3\xe8\x30\x79\x28\xed\xc7\xfa\x0f\xd9\x9f\x00\x00\x00\xff\xff\xdc\x5a\x9c\x30\x9d\x03\x00\x00" func stakingcollectionStake_new_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5721,11 +5721,11 @@ func stakingcollectionStake_new_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_new_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x61, 0xbf, 0x81, 0xfa, 0xdd, 0x72, 0x13, 0x9b, 0x1b, 0xc2, 0x3f, 0xd8, 0xd7, 0x80, 0xa7, 0x94, 0x88, 0x64, 0x4e, 0xff, 0xbf, 0x9d, 0x53, 0x99, 0x34, 0x43, 0x89, 0x14, 0xd, 0x9b, 0x5, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x29, 0xa1, 0x5b, 0xef, 0x75, 0xe2, 0xf9, 0x6f, 0x1c, 0xfb, 0x45, 0xaa, 0x65, 0xcd, 0x25, 0x9c, 0x92, 0x1, 0xac, 0x2f, 0xd8, 0xa3, 0x44, 0xf2, 0x4f, 0x43, 0x99, 0x4a, 0xbc, 0xb3, 0xf8}} return a, nil } -var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xc1\x6e\x9b\x40\x10\xbd\xf3\x15\xaf\x1c\x22\x90\x22\x2c\xb5\x55\x0f\x56\x5b\xab\x4d\x15\x29\xa7\x56\x71\xd2\xfb\x66\x19\x60\x6b\xd8\x41\xb3\x83\x88\x5a\xe5\xdf\x2b\xc0\xd8\x6e\x43\xad\x5e\xb2\x07\x96\x9d\x1d\xde\x7b\xc3\xbc\x71\x4d\xcb\xa2\xb8\xae\xb9\xdf\xaa\xd9\x39\x5f\x5e\x71\x5d\x93\x55\xc7\x1e\x85\x70\x83\x78\xf1\x2e\x8e\xa2\xd5\x6a\x85\x2b\x6e\x1a\xa7\x01\x42\xbd\x91\x9c\x72\x28\xef\xc8\x07\x28\x23\xa8\xd9\x11\x0a\x16\x68\x45\x08\x2d\x59\x57\x38\xca\xe1\x39\x27\xb0\x20\xa7\x9a\x4a\xa3\x2c\x70\x7e\x4a\x99\x38\x60\x0f\x24\x51\xa4\x62\x7c\x30\xe3\x21\x19\x3e\xbc\xf9\xb2\xc6\x56\xc5\xf9\xf2\xf2\x08\x30\x04\xef\x6f\xbc\xbe\x79\xbd\xb9\x84\x69\xb8\xf3\xba\xc6\xfd\xb5\x7b\x7c\xf7\x36\xc5\xaf\x08\x00\xc6\x47\x4d\x3a\x93\x1c\x0b\xb9\xa5\x62\x0d\xd3\x69\x95\x2c\xd6\x99\x1d\x5f\xbf\xf6\x9e\x24\xc5\xc5\x72\xde\xb3\x48\x34\x72\xb6\x42\xad\x11\x4a\x8c\xb5\x93\xae\x91\xea\x33\x8b\x70\xff\xdd\xd4\x1d\xa5\xb8\xf8\x34\xdd\xcd\x5a\x87\x15\xa8\x2e\xb2\x25\xad\xf8\x80\x3d\x54\x16\x94\xc5\x94\x94\x3d\x8c\x60\xef\x5f\xa2\x86\x8f\xc9\x60\x81\xf5\xb2\x3d\x9e\xa7\x6f\x27\x45\xdf\x8c\x56\xe9\xa1\x94\x61\x6d\x36\x68\x8d\x77\x36\x89\xef\x86\x46\xbb\xd2\x93\x20\x67\x0a\xf0\x3c\xf4\x84\x85\x60\xb0\xc7\xc3\x89\x03\xf9\xe1\x07\x59\x85\xd1\xd1\x21\xad\xd1\x0a\xf1\x1f\xc8\xf3\xca\x2c\x7b\x6b\xf4\x1f\x3f\xe0\x9c\xd2\x4c\x79\x72\x54\x92\xa6\x67\xa1\xe3\x0c\x27\xea\x9b\x2e\x28\x9c\x77\xea\x4c\xed\x7e\xd2\xa0\xcf\xc9\xdc\x1b\xf4\x4e\x2b\x68\xe5\xc2\x5c\x41\xe1\x24\xe8\xab\x78\x4f\xf1\x34\x99\x83\x1e\xc9\x76\x4a\xff\xd3\xf7\x31\x48\xb7\xfb\x31\xbb\x1b\xa7\xec\x30\x11\xd3\xfe\xd7\x44\x9c\x1c\x8e\x53\x31\xed\xb3\x88\xa7\xe8\x77\x00\x00\x00\xff\xff\xe4\xc4\x32\x6b\xff\x03\x00\x00" +var _stakingcollectionStake_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4f\x4b\xeb\x40\x10\xbf\xe7\x53\x0c\x3d\x94\x04\x4a\x0a\xef\x3d\xde\x21\xa8\x45\xab\x85\x1e\x44\x69\xad\xf7\x35\x99\xa4\x4b\x37\x3b\x61\x76\x42\x0a\xd2\xef\x2e\xc9\xb6\x8d\xd8\x08\x5e\xdc\x43\x36\x33\x3b\xfb\xfb\xb3\xfc\x74\x59\x11\x0b\x2c\x0c\x35\x6b\x51\x3b\x6d\x8b\x39\x19\x83\xa9\x68\xb2\x90\x33\x95\x30\x1a\x3c\x1b\x05\xc1\x74\x3a\x85\x39\x95\xa5\x16\x07\x8c\x8d\xe2\x0c\x33\x10\xda\xa1\x75\x20\x04\x4e\xd4\x0e\x21\x27\x06\xd9\x22\xb8\x0a\x53\x9d\x6b\xcc\xc0\x52\x86\x40\x0c\x19\x1a\x2c\x94\x10\x83\xb6\x7e\xc4\x73\x40\x7a\x26\x09\x02\x61\x65\x9d\xea\x8a\xb0\xbd\xb8\xbc\x4f\x60\x2d\xac\x6d\x31\xe9\x01\xda\xe6\x66\x69\xe5\xef\x9f\xd9\x04\x54\x49\xb5\x95\x04\x36\x0b\xbd\xff\xff\x2f\x82\xf7\x00\x00\xa0\xfb\x18\x94\x13\x49\x6f\x64\x85\x79\x02\xaa\x96\x6d\x38\xe8\x33\xee\x7f\x9f\x1a\x8b\x1c\xc1\x78\x78\xee\xa2\x13\x74\x9c\x15\x63\xa5\x18\x43\x95\xa6\x5e\x57\x47\x75\x47\xcc\xd4\xbc\x2a\x53\x63\x04\xe3\x5b\x7f\x76\xd2\xda\x2e\x87\x26\x8f\x87\xb4\xc2\x35\x1c\xa1\x62\x27\xc4\xaa\xc0\xf8\xad\x03\xbb\xfa\x0d\x0f\x37\x61\x1b\x81\x64\x38\x1e\x97\xe3\x6b\xaf\xe8\x59\xc9\x36\x3a\x5b\x69\xd7\x6c\x06\x95\xb2\x3a\xfd\x46\x5f\x81\xd2\x57\x8f\xda\x39\x6d\x8b\x07\x66\xe2\xd0\x6a\x13\x79\xa8\x83\x7f\x4f\xdc\x63\x5a\x0b\xfe\xe4\xa9\xba\x26\xae\x8e\xc9\x7c\xe9\x82\x79\x0e\x91\xdf\xbf\x84\xe8\x53\xd1\x07\xc9\xef\x27\x11\x87\xe0\x23\x00\x00\xff\xff\xd5\xea\x1c\x7e\x32\x03\x00\x00" func stakingcollectionStake_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5741,11 +5741,11 @@ func stakingcollectionStake_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5, 0x4c, 0x72, 0x28, 0x71, 0xaf, 0x2, 0xc6, 0xba, 0xa, 0x8a, 0xdf, 0x3a, 0xee, 0x3f, 0xfb, 0x37, 0x4b, 0x3e, 0xb, 0xc8, 0x28, 0xbd, 0x34, 0xac, 0xa0, 0x4a, 0xa5, 0xbd, 0xf, 0x91, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xae, 0x75, 0x5a, 0x3, 0x98, 0x98, 0xf1, 0xb2, 0x89, 0xdb, 0xd4, 0x68, 0xd5, 0xad, 0xec, 0x14, 0xad, 0x43, 0x6c, 0xd3, 0x4c, 0x24, 0x88, 0xbd, 0x4e, 0x20, 0x3c, 0x8a, 0xca, 0x70, 0x4, 0x5}} return a, nil } -var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xc1\x6e\xd3\x40\x10\xbd\xfb\x2b\x1e\x3e\x54\xb6\x54\xb9\x12\x20\x0e\x11\x10\x41\x51\xa5\x9e\x40\xa4\xe1\xbe\x5d\x8f\xed\x21\xf6\x8e\xb5\x3b\x56\x2a\x50\xff\x1d\xd9\x1b\x27\x81\x9a\x8a\x0b\x7b\xf0\x7a\x67\xc7\xef\xbd\xf1\xbc\xe1\xae\x17\xaf\xb8\x69\x65\xbf\x51\xb3\x63\x57\x5f\x4b\xdb\x92\x55\x16\x87\xca\x4b\x87\x74\xf1\x2e\x4d\x92\xab\xab\x2b\x5c\x4b\xd7\xb1\x06\x0c\x2e\xa8\xd9\x51\x09\x95\x1d\xb9\x00\x15\x4c\x01\x54\xe2\xa1\x0d\x21\xf4\x64\xb9\x62\x2a\xe1\xa4\x24\x88\x47\x49\x2d\xd5\x46\xc5\x83\x5d\x4c\x89\x1c\xb0\x47\x92\x24\x51\x6f\x5c\x30\xd3\x21\x1b\x3f\xbc\xfd\xb4\xc2\x46\x3d\xbb\xfa\xf2\x04\x30\x06\xb7\xb7\x4e\x5f\xbd\x5c\x5f\xc2\x74\x32\x38\x5d\x61\x7b\xc3\x0f\x6f\x5e\xe7\xf8\x99\x00\xc0\xf4\x68\x49\x67\x92\x53\x21\x5f\xa9\x5a\xc1\x0c\xda\x64\x8b\x75\x16\xa7\xd7\xcf\x7b\x47\x3e\xc7\xc5\x72\xde\x93\x48\x32\x71\xf6\x9e\x7a\xe3\x29\x33\xd6\x46\x5d\x13\xd5\x47\xf1\x5e\xf6\xdf\x4c\x3b\x50\x8e\x8b\x0f\xf1\x6e\xd6\x3a\xae\x40\x6d\x55\x2c\x69\xc5\x3b\x1c\xa0\x8a\xa0\xe2\x4d\x4d\xc5\xfd\x04\xf6\xf6\x7f\xd4\xf0\x3e\x1b\x2d\xb0\x5a\xb6\xc7\xd3\xf4\x4d\x54\xf4\xc5\x68\x93\x1f\x4b\x19\xd7\x7a\x8d\xde\x38\xb6\x59\x7a\x37\x36\x9a\x6b\x47\x1e\xa5\x50\x80\x93\xb1\x27\xe2\x09\x06\x07\x3c\x9c\x39\x50\xee\xbf\x93\x55\x18\x9d\x1c\xd2\x1b\x6d\x90\xfe\x86\x3c\xaf\xc2\x8a\xb3\x46\xff\xf2\x03\x9e\x53\x5a\xa8\x44\x47\x65\x79\xfe\x2c\x74\x5a\xe0\x4c\x7d\x37\x04\x05\x3b\x56\x36\x2d\xff\xa0\x51\x1f\xfb\xb9\x37\xd8\xb3\x36\xd0\x86\xc3\x5c\x41\xc5\x3e\xe8\x8b\xf4\x40\xf1\x18\xcd\x41\x0f\x64\x07\xa5\x7f\xe9\xfb\x14\xa4\xed\x61\xcc\xee\xa6\x29\x3b\x4e\x44\xdc\xff\x98\x88\xb3\xc3\x69\x2a\xe2\x3e\x8b\x78\x4c\x7e\x05\x00\x00\xff\xff\x49\x02\xe2\xae\xff\x03\x00\x00" +var _stakingcollectionStake_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\xcd\x6a\xe3\x30\x10\xbe\xfb\x29\x86\x1c\x82\x0d\xc1\x81\xdd\x65\x0f\x66\xb7\xa1\x4d\x1b\xc8\xa1\xb4\x34\x4d\xef\xaa\x3d\x76\x44\x64\x8d\x19\x8d\x49\xa0\xe4\xdd\x8b\xa5\x24\x2e\x8d\x0b\xbd\x54\x07\xcb\x33\x1a\x7d\x3f\xe2\xd3\x75\x43\x2c\xb0\x30\xb4\x5b\x89\xda\x6a\x5b\xcd\xc9\x18\xcc\x45\x93\x85\x92\xa9\x86\xd1\xe0\xd9\x28\x8a\xa6\xd3\x29\xcc\xa9\xae\xb5\x38\x68\xad\x13\xb5\xc5\x02\x84\xb6\x68\x1d\x08\x81\x6f\x40\x49\x0c\xb2\x41\x70\x0d\xe6\xba\xd4\x58\x80\xa5\x02\x81\x18\x0a\x34\x58\x29\x21\x06\x6d\xc3\x48\xe0\x80\xfc\x4c\x12\x45\xc2\xca\x3a\xe5\x8b\xb8\xbb\xb8\xbc\xcd\x60\x25\xac\x6d\x35\xe9\x01\xba\xe6\x7a\x69\xe5\xf7\xaf\xd9\x04\x54\x4d\xad\x95\x0c\xd6\x0b\xbd\xff\xfb\x27\x81\xb7\x08\x00\xc0\x7f\x0c\xca\x89\xa4\x37\xf2\x84\x65\x06\xaa\x95\x4d\x3c\xe8\x33\xed\x7f\x1f\x76\x16\x39\x81\xf1\xf0\xdc\x45\x27\xf2\x9c\x0d\x63\xa3\x18\x63\x95\xe7\x41\x97\xa7\xba\x21\x66\xda\xbd\x28\xd3\x62\x02\xe3\xeb\x70\x76\xd2\xda\x2d\x87\xa6\x4c\x87\xb4\xc2\x7f\x38\x42\xa5\x4e\x88\x55\x85\xe9\xab\x07\xfb\xf7\x13\x1e\xae\xe2\x2e\x02\xd9\x70\x3c\x2e\xc7\x57\x41\xd1\xa3\x92\x4d\x72\xb6\xd2\xad\xd9\x0c\x1a\x65\x75\xfe\x85\xbe\x0a\xa5\xaf\xee\xb5\x73\xda\x56\x77\xcc\xc4\xb1\xd5\x26\x09\x50\x87\xf0\x9e\xb8\xc7\xbc\x15\xfc\xce\x53\xf9\x26\xae\x8f\xc9\x7c\xf6\xc1\x3c\x87\x28\xec\x9f\x42\xf4\xa1\xe8\x83\x14\xf6\x93\x88\x43\xf4\x1e\x00\x00\xff\xff\xd7\xb6\x39\xaf\x32\x03\x00\x00" func stakingcollectionStake_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5761,7 +5761,7 @@ func stakingcollectionStake_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/stake_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xaa, 0x11, 0xd4, 0x8d, 0x77, 0x5a, 0x47, 0x53, 0xe, 0x1b, 0x6a, 0x62, 0x8e, 0xaf, 0x8b, 0x47, 0x12, 0x52, 0x12, 0x42, 0x4d, 0x91, 0x8c, 0xb2, 0xa3, 0xf3, 0xa9, 0x3e, 0xe3, 0x81, 0x3, 0xa1}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe8, 0xe9, 0x9d, 0x57, 0x5f, 0xa9, 0x50, 0xcc, 0x7d, 0xb1, 0x6d, 0xb2, 0xe4, 0x16, 0x7c, 0xfa, 0x8a, 0xea, 0x30, 0x0, 0x86, 0x8a, 0x57, 0x85, 0x48, 0x7a, 0x33, 0x63, 0xcd, 0x94, 0xc9, 0x93}} return a, nil } @@ -5805,7 +5805,7 @@ func stakingcollectionTestGet_tokensCdc() (*asset, error) { return a, nil } -var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x5d\x4f\xdb\x4a\x10\x7d\xcf\xaf\x18\xf2\xc0\x75\x24\x30\xd2\xbd\x6f\x11\x5c\xc4\x05\xdd\x96\x97\x82\xa0\xed\xfb\xc4\x3b\x8e\xa7\x75\x76\xac\xdd\x49\x52\xa8\xf8\xef\xd5\xae\x3f\x88\x13\x43\xa3\x0a\xfc\x02\xf1\xee\x9e\x39\x67\xe6\xcc\xac\x79\x51\x89\x53\xf8\xbf\x94\xf5\xbd\xe2\x77\xb6\xf3\x4b\x29\x4b\xca\x94\xc5\x42\xee\x64\x01\xe3\xc1\xb5\xf1\x68\x74\x72\x02\x9f\x1d\x5a\x9f\x93\xf3\x80\xf0\x49\x0c\x5d\x51\x49\x73\x54\x71\x20\xb3\x6f\x94\x69\x8d\x80\x16\x70\xa9\x85\x38\x7e\x8c\x5b\xb3\x4c\x96\x56\xc3\x79\xb4\x06\xd0\x18\x0f\x5a\xd0\x16\x80\x0a\xa0\x15\x2d\xc8\xb5\x07\x3c\x34\x2c\xe0\x99\x46\x00\x61\x43\x56\x39\x67\x32\x30\x7b\x88\x48\x2a\x70\x61\x8c\x23\xef\xd3\xd1\x48\x03\x47\x8c\xbb\x13\x2b\x86\xae\xaf\xa6\x70\xaf\x8e\xed\xfc\x08\x4c\x1b\x2e\xbc\xfc\x72\x6d\xf5\x9f\xbf\x8f\x40\x65\xda\x1e\x9f\xc0\xcf\x11\x00\x40\x49\xb5\x94\x9d\x34\xdc\x51\x3e\x8d\xe2\x92\xc1\x2c\xa5\xcf\xff\xde\xac\x2d\xb9\x09\x1c\x0e\xef\xdb\x79\xd3\x85\x55\xd9\x59\xbb\xc4\x6a\xba\x3f\x50\x44\xaa\x1c\x55\xe8\x28\x69\x52\xd9\x70\xfe\x4f\x9c\x93\xf5\x57\x2c\x97\x34\x81\xc3\x8b\x7a\xad\xd5\x1c\x9e\x50\xe2\x82\xda\x02\x84\xbc\x6a\x53\xf1\x81\x8a\x35\x25\x57\x81\xc5\xd2\x2b\x14\xb8\x22\x40\x58\x61\xc9\x66\xa0\x72\xc0\x16\xc4\x19\x8a\x95\x76\x94\x11\xaf\x68\x17\x34\xed\xa8\x70\x0e\xc9\xc1\xb0\x66\x23\xe4\x1b\xf2\x1f\x71\x45\x3b\x1b\x12\xac\xab\x39\x05\x95\xc9\xa6\xbc\x98\x19\xb4\x9c\x25\xe3\x20\xd3\x90\x67\x8b\x91\x5c\xab\x38\x40\x83\x15\x05\xaf\xe2\x82\x9c\x01\x21\x8d\x6e\xd4\x48\xbf\x42\x2d\x60\xdc\x0b\x11\x9e\x34\x13\x9b\xa1\xbe\x60\x93\x9d\x37\xf7\x2a\x0e\xe7\x74\x8b\x5a\xa4\xc1\x01\xc1\xae\xc9\x64\xf2\x22\xec\x38\x85\x46\x81\x6e\x4b\x88\xc5\x60\xcb\xca\x58\xf2\x63\xcc\x31\x77\x3d\x05\x6b\xd6\x02\xb4\x60\xdf\x75\x2c\x3b\xaf\x07\xe3\x8d\x58\x4f\xa3\x4d\x3f\x7c\x20\x05\x04\x47\x39\x39\xb2\x59\xec\xb5\x20\x7b\xb3\xc1\x87\xcd\x1c\x1e\x4f\x65\x9e\xbe\xd4\x48\x70\xd6\xb2\x4a\x7d\x2d\x3f\x9d\x45\x83\x9e\xbe\x47\x83\xfd\x9b\x04\x1e\xd3\xe1\xc9\xf7\x6a\x41\xfa\x55\x38\x3f\xdf\xb4\x90\xe7\xb9\x25\xf7\x76\xb6\x79\x47\xeb\x0c\xd8\xa7\x61\xff\xc7\x8e\xd9\xf6\x49\x10\x76\xbb\x9c\x95\x9c\x35\xed\x09\x92\xd7\x6e\xd9\x6b\xa0\xa8\xa4\xd0\x41\xd6\xb3\xb0\xc5\x39\x83\x39\x69\xf3\x23\x51\xe9\x87\xae\xc7\x1a\x20\x64\x58\xe1\x8c\x4b\xd6\x87\xd6\xa6\x55\x64\x03\x0b\xd2\x42\x8c\x07\x5c\x21\x97\x38\x2b\x09\xc4\xc6\xf5\x66\x10\x0d\x99\x38\xed\xbb\x78\x78\x2e\xc3\xd9\x33\xc9\xb4\x0b\xcf\xe4\x7b\xe9\x6f\x7d\xbd\xbf\x57\xf7\xdc\x58\x27\xfb\x35\x93\x5e\xca\xb2\x34\xd1\x9a\xb3\x36\x4b\xbd\x5e\xc6\x5d\xe1\x61\x52\x6f\xe6\xe6\xaf\xee\x0a\x1f\xd7\x51\x9a\x01\x41\x3f\x28\x5b\x2a\xf5\xaf\x8f\x3b\x5a\xc8\xd0\x60\xaf\xbf\x0c\x7e\x3b\x39\xd2\x5e\xfd\x6d\x0f\xe1\xf4\xf8\xf5\x79\x92\xba\x18\xbb\x3b\xd0\xdd\xfe\xf5\xdf\xad\xdb\x7f\xe3\x47\xdf\x4d\x57\x54\x89\x67\x1d\xfe\x44\x79\x0b\xcf\xa4\x68\x4c\x07\x7a\x13\x7b\x2a\x39\x3d\xee\x8b\x3d\x68\x33\xfd\xf4\x2b\x00\x00\xff\xff\xb4\xec\xd6\x82\xb1\x09\x00\x00" +var _stakingcollectionTransfer_delegatorCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x55\x4d\x73\xeb\x36\x0c\xbc\xfb\x57\x20\x3a\xbc\x4a\x33\xef\x29\x33\xed\xcd\x93\x34\x93\x26\xfd\xc8\xa1\x4d\x26\x69\x7b\x87\x45\xc8\x42\x2b\x13\x1a\x12\xb6\x9b\x74\xf2\xdf\x3b\xa4\x3e\x6c\x45\x4a\xea\x43\xab\x8b\x2d\x91\x5c\x60\x77\x01\x90\x37\x8d\x38\x85\x1f\x6a\xd9\x3f\x29\xfe\xc9\x76\x7d\x23\x75\x4d\x85\xb2\x58\x28\x9d\x6c\x20\x99\x5d\x4b\x16\x8b\xf3\x73\xf8\xd5\xa1\xf5\x25\x39\x0f\x08\xbf\x88\xa1\x5b\xaa\x69\x8d\x2a\x0e\x64\xf5\x07\x15\xda\x22\xa0\x05\xdc\x6a\x25\x8e\x5f\xe2\xd6\xa2\x90\xad\xd5\x70\x1e\xad\x01\x34\xc6\x83\x56\xf4\x06\x40\x05\xd0\x8a\x56\xe4\xfa\x03\x1e\xba\x2c\xe0\x90\x46\x00\x61\x43\x56\xb9\x64\x32\xb0\x7a\x8e\x48\x2a\x70\x6d\x8c\x23\xef\xf3\xc5\x42\x43\x8e\x18\x77\xa7\x56\x0c\xdd\xdd\x2e\xe1\x49\x1d\xdb\xf5\x67\x30\x7d\xb8\xf0\xf1\xb7\x3b\xab\xdf\x7c\xfd\x19\x54\x96\xfd\xf1\x0c\xfe\x5e\x00\x00\xd4\xd4\x52\x99\xc8\xf0\x48\xe5\x32\x92\x4b\x67\x55\xca\x0f\x7f\xef\xf7\x96\x5c\x06\x9f\xe6\xf7\x4d\xbe\x0c\x61\x55\x26\x6b\x37\xd8\x2c\x4f\x07\x8a\x48\x8d\xa3\x06\x1d\xa5\x9d\x94\x5d\xce\xdf\x89\x73\xb2\xff\x1d\xeb\x2d\x65\xf0\xe9\xba\x5d\xeb\x39\x87\x27\x58\x5c\x51\x6f\x40\xd0\x55\x3b\xc7\x67\x1c\xeb\x2c\x57\x81\xcd\xd6\x2b\x54\xb8\x23\x40\xd8\x61\xcd\x66\xc6\x39\x60\x0b\xe2\x0c\x45\xa7\x1d\x15\xc4\x3b\x9a\x82\xe6\x43\x2a\x5c\x42\x7a\x36\xcf\xd9\x08\xf9\x2e\xf9\x9f\x70\x47\x93\x0d\x29\xb6\x6e\x2e\x41\x25\x3b\xa6\x17\x95\x41\xcb\x45\x9a\x04\x9a\x86\x3c\x5b\x8c\xc9\xf5\x8c\x03\x34\x58\x51\xf0\x2a\x2e\xd0\x99\x21\xd2\xf1\x46\x8d\xe9\x37\xa8\x15\x24\xa3\x10\xe1\xc9\x0b\xb1\x05\xea\x3b\x65\x32\xf9\xf2\xa4\xe2\x70\x4d\x0f\xa8\x55\x1e\x2a\x20\x94\x6b\x9a\x65\xef\xc2\x26\x39\x74\x0c\xf4\x2d\x85\x68\x06\x5b\x56\xc6\x9a\x5f\xa2\xc6\x3c\xf4\x14\xec\x59\x2b\xd0\x8a\xfd\xd0\xb1\xec\xbc\x9e\x25\x47\xb1\x5e\x17\xc7\xf5\xf0\x23\x29\x20\x38\x2a\xc9\x91\x2d\x62\xaf\x05\xda\xc7\x0d\x3e\x5f\xcc\xe1\xf1\x54\x97\xf9\x7b\x8d\x04\x97\x7d\x56\xb9\x6f\xe9\xe7\xab\x58\xa0\x17\xff\x47\x83\x7d\x9b\x86\x3c\x96\xf3\x93\xef\x43\x43\xc6\x2e\x5c\x5d\x75\x25\x34\x0f\xb4\x26\x3d\xbc\xfd\xcc\xde\xb3\x5d\x7f\xef\x9c\xb8\xd4\x72\x9d\x65\x13\x69\x83\x96\x0f\xdb\x55\xcd\x45\x57\xd1\x20\x65\x2b\xf0\x49\x3d\xa8\x92\xc3\x00\xd9\x8e\x8f\x1e\xe7\x12\xd6\xa4\xdd\x4b\xaa\x32\x0e\xdd\x4e\x02\x40\x28\xb0\xc1\x15\xd7\xac\xcf\xbd\xb3\x4d\xcc\x06\x36\xa4\x95\x18\x0f\xb8\x43\xae\x71\x55\x13\x88\x8d\xeb\x5d\xef\xce\xf9\x9e\x8f\x8d\x9f\x1f\x65\x70\x79\x48\x32\x1f\xc2\x33\xf9\x91\xcc\x7d\x29\x9c\x6e\xef\x89\x1b\x5b\xb1\x3f\xf0\x35\xb9\x91\x6d\x6d\xe2\x10\x58\xf5\x2a\x8d\xca\x1f\xa7\xc4\xc3\x70\x3b\xd6\xe6\xab\xe1\xd6\x4b\xda\x28\x5d\x4f\xd1\x5f\x54\x6c\x95\xc6\x13\xf7\x91\x36\x32\x37\x0b\xdb\xcb\xf4\x5f\x9b\x2d\x1f\xf9\x6f\x47\x08\x17\x5f\x3e\x6e\xc1\xdc\xc5\xd8\xc3\x81\xe1\xc2\x6c\x7f\xdf\x5c\x98\x47\x2f\xe3\x6a\xba\xa5\x46\x3c\xeb\xfc\xad\xfe\x5f\xd4\x4c\x8e\xc6\x0c\xa0\xf7\x71\x70\xa5\x17\x5f\xc6\x64\xcf\x7a\xa5\x5f\xff\x09\x00\x00\xff\xff\x24\xdc\xce\xff\xe4\x08\x00\x00" func stakingcollectionTransfer_delegatorCdcBytes() ([]byte, error) { return bindataRead( @@ -5821,11 +5821,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{0x5b, 0xa2, 0x3f, 0xb5, 0x3, 0xb, 0x22, 0xea, 0xd2, 0xe6, 0x91, 0x4b, 0x67, 0x84, 0xbb, 0xb4, 0xd3, 0x2b, 0x3a, 0x26, 0x84, 0x77, 0x86, 0xc2, 0x59, 0xe3, 0x5c, 0x59, 0x28, 0xf9, 0xfe, 0x5b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0x25, 0xc1, 0xa3, 0x71, 0x26, 0x7a, 0x30, 0x7f, 0x6b, 0x9e, 0x7b, 0x29, 0x83, 0x43, 0xf, 0x34, 0x79, 0xf1, 0x9b, 0xee, 0x1c, 0x1e, 0x30, 0x9a, 0x33, 0x56, 0x3a, 0xb8, 0xba, 0xce, 0x9c}} return a, nil } -var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\xc1\x6e\xdb\x46\x10\xbd\xeb\x2b\xc6\x3a\xa4\x14\x90\x30\x77\xc1\x6e\x90\xda\x68\xeb\x43\x9a\x20\x2e\x7a\x29\x7a\x18\x71\x87\xe4\x34\xd4\x8e\xb0\x3b\x92\x91\x14\xfe\xf7\x62\x97\x4b\x8a\x14\x69\xcb\x08\x62\x9e\x24\x72\x76\xe6\xbd\x99\xf7\x86\xe4\xed\x4e\x9c\xc2\xaf\x8d\xdc\xdf\x29\x7e\x61\x5b\x5d\x4b\xd3\x50\xa1\x2c\x16\x4a\x27\x5b\x58\xce\x3e\x5b\x2e\x16\x6f\xdf\xc2\x9f\x0e\xad\x2f\xc9\x79\x40\xf8\x43\x0c\x85\x30\x72\x20\x9b\x7f\xa9\xd0\xf6\x38\x5a\xc0\xbd\xd6\xe2\xf8\x5b\x8c\x2b\x0a\xd9\x5b\x0d\x87\xd1\x1a\x40\x63\x3c\x68\x4d\xc3\xd3\x2a\x80\x56\xb4\x26\xd7\x45\x7b\x48\xf5\xe1\x08\x20\x64\x60\x43\x56\xb9\x64\x32\xb0\xf9\x1a\xd3\xa8\xc0\x7b\x63\x1c\x79\x9f\x2f\x16\x1a\xd0\x61\x8c\xce\xac\x18\xba\xbd\x59\xc3\x9d\x3a\xb6\xd5\x6b\x50\x59\x77\x91\x2b\xf8\x6f\x01\x00\xd0\x50\x0b\x79\xc2\xf5\x33\x95\xeb\x48\x22\x9b\x6d\x45\x7e\xfc\xf9\xf1\xde\x92\x5b\xc1\xab\xf9\xb8\xc9\x9d\xbe\xac\xca\xe4\xd9\x35\xee\xd6\xcf\x4f\x14\x33\xed\x1c\xed\xd0\x51\x96\xba\x96\x30\xff\x22\xce\xc9\xfd\x5f\xd8\xec\x69\x05\xaf\xde\xb7\xcf\x3a\xce\xe1\x0a\x73\xac\xa9\xeb\x75\x68\xa1\xa6\xb1\x9e\x4e\x26\xcd\x55\x05\xb6\x7b\xaf\x50\xe3\x81\x00\xe1\x80\x0d\x9b\x99\x09\x01\x5b\x10\x67\xda\x89\x3a\x2a\x88\x0f\x74\x92\x31\xef\x41\x70\x09\xd9\xc5\x3c\x5b\x23\xe4\x13\xec\xdf\xf1\x40\x93\x80\x0c\xdb\x39\xae\x41\x65\x35\x24\x16\x7b\x82\x96\x8b\x6c\x19\x08\x1a\xf2\x6c\x31\x22\xeb\xb8\x86\xd4\x60\x45\xc1\xab\xb8\xc0\x65\x86\x45\x22\x8d\x1a\xb1\xef\x50\x6b\x58\x8e\x4a\x84\x2b\x2f\xc4\x16\xa8\x8f\x08\x64\x72\xe7\x4e\xc5\x61\x45\x9f\x50\xeb\x3c\xcc\x3e\x68\x32\x5b\xad\x1e\x4d\xbb\xcc\x21\x31\xd0\x53\x0a\x71\x12\x6c\x59\x19\x1b\xfe\x16\x1b\xcc\xbd\x71\xe0\x9e\xb5\x06\xad\xd9\xf7\x9e\x64\xe7\xf5\x62\x39\xa8\xf5\xb0\x18\x2a\xe1\x37\x52\x40\x70\x54\x92\x23\x5b\x44\x43\x05\xda\x43\x0b\xcf\xcb\x38\x5c\x9e\x9a\x32\x7f\xcc\x42\x70\xd5\xa1\xca\x7d\x4b\x3f\xdf\x44\x69\x5e\xbe\x84\xb5\x7e\xce\x02\x8e\xf5\xfc\x62\x7b\x72\x20\xe3\x29\xbc\x7b\x37\x94\x90\xe7\xca\x92\xfb\x71\xb2\x79\x41\xe9\xcc\xc8\x27\xa1\xff\x6e\xc5\x9c\xea\x24\x10\xfb\xb4\xdf\x34\x5c\x24\x7b\x82\x94\xad\x5a\xce\xaf\x12\x95\x1c\xfa\x7c\xed\x0a\xec\x92\x5c\x41\x45\x9a\xfe\x64\x2a\xe3\xba\xed\x36\x03\x84\x02\x77\xb8\xe1\x86\xf5\x6b\xa7\xd1\x5d\x84\x02\x5b\xd2\x5a\x8c\x07\x3c\x20\x37\xb8\x69\x08\xc4\xc6\xe7\x69\x05\xcd\x29\x38\x1f\x4b\x78\x7e\x1d\xc3\xd5\x11\x64\xde\x97\x67\xf2\xa3\xde\x77\xa2\x7e\xbe\x50\x9f\x19\xd8\x76\xfa\x29\x85\x5e\xcb\xbe\x31\x51\x97\x9b\xae\x4b\x23\x23\xe3\x94\x78\xd8\xd1\xc3\xde\xfc\xd4\xbf\xa1\x97\x83\xbe\x87\xf9\x6c\xb1\xa8\xd9\x52\xe2\x7f\x6b\x4b\x81\xab\xa7\x0d\x9f\x57\xa4\x1f\x46\xa7\x7c\xb6\xfa\xbb\x7d\x11\xff\x73\x96\x42\x75\xac\xd9\xeb\x89\x43\xd5\xf8\x55\xa1\xbd\x9c\x8f\x88\xa1\x94\x56\x66\xa1\x04\xdc\xde\x9c\xf1\x5b\x0b\x64\x35\xf0\xc8\x07\xfc\x42\xe0\xf7\x2e\x58\x22\xf9\x36\xa6\xaa\xd1\x43\x21\xb6\xe4\x6a\xef\xc8\x00\x4e\x70\x2d\xcf\xd8\x2f\x7c\xe9\x84\x24\xac\xe0\xa8\x62\xaf\x14\xf2\xa4\xd6\xfb\xb4\x3b\x8a\xe3\xec\x4f\xcd\xf6\x99\xb6\x32\x79\x77\x1e\x1b\xf1\xe4\x72\xce\x47\x53\xb4\xc7\xe3\x97\x6f\xce\x8c\xcf\xc5\xaa\xa1\x60\xff\xf5\x94\x7a\x36\x02\x77\x43\x3b\xf1\xac\x33\x5f\x71\x3f\xc2\x74\x39\x1a\x13\xb2\x7e\x8c\xcb\x28\xbb\x7c\x33\xa0\x70\xf1\x7a\x46\x95\xeb\x99\x7b\xed\x78\x1e\x16\x0f\xff\x07\x00\x00\xff\xff\xfa\xac\xe2\x90\xee\x0a\x00\x00" +var _stakingcollectionTransfer_nodeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x56\x4b\x73\xdb\x46\x0c\xbe\xeb\x57\xc0\x3c\xa4\xe4\x4c\xc2\xdc\x35\x76\x33\xa9\xdd\x87\x0f\x6e\x32\x71\xa7\x97\x4e\x0f\x10\x17\x24\xd1\x50\x0b\xcd\x2e\x24\x4f\xdc\xf1\x7f\xef\xec\x72\x29\x91\x26\xfd\x38\x34\x3c\x49\x24\x16\xf8\x1e\x00\x48\xde\xee\xc4\x29\xfc\xd2\xc9\xdd\xad\xe2\x57\xb6\xcd\xa5\x74\x1d\x55\xca\x62\xa1\x76\xb2\x85\x6c\xf1\x59\xb6\x5a\xbd\x7f\x0f\x7f\x38\xb4\xbe\x26\xe7\x01\xe1\x77\x31\x14\xc2\xc8\x81\x6c\xfe\xa1\x4a\xfb\xe3\x68\x01\xf7\xda\x8a\xe3\xfb\x18\x57\x55\xb2\xb7\x1a\x0e\xa3\x35\x80\xc6\x78\xd0\x96\xc6\xa7\x55\x00\xad\x68\x4b\x6e\x88\xf6\x90\xea\xc3\x09\x40\xc8\xc0\x86\xac\x72\xcd\x64\x60\xf3\x2d\xa6\x51\x81\x8f\xc6\x38\xf2\xbe\x5c\xad\x34\xa0\xc3\x18\x9d\x5b\x31\x74\x7d\xb5\x86\x5b\x75\x6c\x9b\xb7\xa0\xb2\x1e\x22\x0b\xf8\x77\x05\x00\xd0\x51\x0f\x79\xc6\xf5\x0b\xd5\xeb\x48\x22\x5f\x94\xa2\x3c\xfd\xfc\x74\x67\xc9\x15\xf0\x66\x39\x6e\x76\xe7\x58\x56\x65\xf6\xec\x12\x77\xeb\xd7\x27\x8a\x99\x76\x8e\x76\xe8\x28\x4f\xaa\x25\xcc\x3f\x89\x73\x72\xf7\x27\x76\x7b\x2a\xe0\xcd\xc7\xfe\xd9\xc0\x39\x5c\xc1\xc7\x96\x06\xad\x83\x84\x9a\x6c\x7d\xec\x4c\xf2\x55\x05\xb6\x7b\xaf\xd0\xe2\x81\x00\xe1\x80\x1d\x9b\x05\x87\x80\x2d\x88\x33\xbd\xa3\x8e\x2a\xe2\x03\x3d\xca\x58\x1e\x41\x70\x0d\xf9\xd9\x32\x5b\x23\xe4\x13\xec\xdf\xf0\x40\xb3\x80\x1c\x7b\x1f\xd7\xa0\x52\x8c\x89\x45\x4d\xd0\x72\x95\x67\x81\xa0\x21\xcf\x16\x23\xb2\x81\x6b\x48\x0d\x56\x14\xbc\x8a\x0b\x5c\x16\x58\x24\xd2\xa8\x11\xfb\x0e\xb5\x85\x6c\x52\x22\x5c\x65\x25\xb6\x42\x7d\xa2\x41\x66\x77\x6e\x55\x1c\x36\xf4\x19\xb5\x2d\x83\xf7\xa1\x27\xf3\xa2\x78\x32\x6d\x56\x42\x62\xa0\x8f\x29\x44\x27\xd8\xb2\x32\x76\x7c\x1f\x05\xe6\xe3\xe0\xc0\x1d\x6b\x0b\xda\xb2\x3f\xce\x24\x3b\xaf\x67\xd9\xa8\xd6\xc3\x6a\xdc\x09\xbf\x92\x02\x82\xa3\x9a\x1c\xd9\x2a\x0e\x54\xa0\x3d\x1e\xe1\xe5\x36\x0e\x97\xa7\xae\x2e\x9f\x1a\x21\xb8\x18\x50\x95\xbe\xa7\x5f\x6e\x62\x6b\x9e\x7f\x8f\xd1\xfa\x31\x0f\x38\xd6\xcb\x8b\xed\x59\x43\xa6\x2e\x7c\xf8\x90\x5a\x68\x39\x51\x43\x7a\xfa\x77\xc3\xde\xb3\x6d\x7e\x76\x4e\x5c\x6e\xb9\x2b\x8a\x99\xb4\x41\xcb\xcf\xfb\x4d\xc7\x55\xea\x68\x90\xba\x17\xf8\xe5\xe9\x53\x29\xe1\x98\xaf\xdf\x1a\x43\x92\x0b\x68\x48\xd3\x9f\x5c\x65\x5a\xb7\x5f\x00\x80\x50\xe1\x0e\x37\xdc\xb1\x7e\x1b\x6c\xdd\x45\x28\xb0\x25\x6d\xc5\x78\xc0\x03\x72\x87\x9b\x8e\x40\x6c\x7c\x9e\xa6\x76\xc9\xf4\x72\xea\xfa\xf2\x06\x83\x8b\x13\xc8\xf2\x58\x9e\xc9\x4f\x34\x1e\xfa\xe0\xf5\xde\xbe\x32\xb0\x57\xfa\x19\x53\xb3\x4b\xd9\x77\x26\x6e\x80\xcd\xa0\xd2\xa4\xf7\x71\x4e\x3c\xac\xb5\xb1\x36\x3f\x1c\x5f\x6a\xd9\x48\xf7\xe0\xcf\x16\xab\x96\x2d\x25\xfe\xd7\xb6\x16\xb8\x78\x7e\x46\x42\x3f\xdd\x4c\x4e\xf9\xbc\xf8\xab\x7f\x77\xfd\xfd\x22\x85\xe6\x54\xf3\xd8\x4f\x1c\xaa\xc6\x17\x71\xc0\xec\xb9\xb1\x63\xc4\x50\x4b\xdf\x66\xa1\x04\x5c\x5f\x2d\x6c\xb6\xf1\x1a\xea\x81\x14\xa3\xad\x74\x83\x5f\x09\xfc\xde\x85\xbd\x93\x36\x64\x4c\xd5\xa2\x87\x4a\x6c\xcd\xcd\xde\x91\x01\x9c\xe1\xca\xe6\xcb\x6e\xb2\xf0\xc2\xc7\x41\x48\xc2\x0a\x8e\x1a\xf6\x4a\x21\x4f\x92\xde\xa7\x2d\x5d\x9d\xbc\xcf\x1e\x0d\xdb\x17\xda\xca\xec\x75\x73\x12\xe2\xd9\x7d\x56\x4e\x5c\xb4\xa7\xe3\xe7\xef\x5e\xb0\xcf\xc5\xaa\xa1\xe0\xf1\x83\x23\x69\x36\x01\x77\x45\x3b\xf1\xac\x0b\x1f\x3e\xff\xc7\xd0\x95\x68\x4c\xc8\xfa\x29\x6e\xfc\xfc\xfc\xdd\x88\xc2\xd9\xdb\x85\xae\x5c\x2f\xdc\xeb\xed\x79\x58\x3d\xfc\x17\x00\x00\xff\xff\x9a\x34\xb5\x63\x21\x0a\x00\x00" func stakingcollectionTransfer_nodeCdcBytes() ([]byte, error) { return bindataRead( @@ -5841,11 +5841,11 @@ 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{0xf3, 0x52, 0x4a, 0x37, 0xb3, 0x95, 0x4c, 0x5d, 0x9f, 0xaa, 0x51, 0x25, 0x19, 0x19, 0x24, 0xae, 0xd3, 0xc4, 0xc8, 0x5c, 0x7, 0x87, 0x4d, 0x15, 0xa1, 0x1d, 0x34, 0xbf, 0x99, 0x7, 0x69, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x3f, 0xd8, 0x90, 0x98, 0xb2, 0x6, 0x1, 0xe8, 0xc5, 0xef, 0xc0, 0xa6, 0x4f, 0xfb, 0xdf, 0x1d, 0x4, 0xe0, 0x4c, 0xc3, 0x60, 0xed, 0x59, 0xe7, 0xe3, 0x67, 0xa1, 0xd3, 0x1a, 0xfa, 0xe1}} return a, nil } -var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcb\x6e\xd4\x40\x10\xbc\xfb\x2b\x0a\x1f\x22\xfb\xe2\xbd\xaf\x80\x68\x01\x21\x21\x45\x02\x65\x11\xf7\xc9\x6c\xdb\x6e\x76\x76\xda\xf4\xb4\xb5\x08\x94\x7f\x47\x7e\x6d\x82\x62\x22\x2e\xe9\x83\x5f\xd3\x53\x55\xed\xaa\xe1\x53\x27\x6a\xf8\x18\xe4\xbc\x37\x77\xe4\xd8\xbc\x97\x10\xc8\x1b\x4b\x44\xad\x72\x42\xbe\xba\x96\x67\xd9\x66\xb3\xc1\x2d\xfd\xe8\x29\x59\x82\x09\xfa\x98\xcc\x1d\x09\xbb\x9b\x1b\x98\x1c\x29\x26\xd4\xa2\xb0\x96\x90\x3a\xf2\x5c\x33\x1d\x10\xe5\x40\x10\xc5\x81\x02\x35\xce\x44\xc1\x71\x6a\x99\x18\xe0\x2f\x14\x59\x66\xea\x62\x72\xe3\x4b\x31\x6c\xfc\xf4\x61\x8b\xbd\x29\xc7\xa6\xc4\xef\x0c\x00\xc6\x4b\x20\x5b\xb6\x3f\x08\xbc\xa5\x7a\x0b\xd7\x5b\x5b\xac\xea\xaf\x1e\x1e\x3f\x9f\x23\x69\x89\xab\xf5\xbe\x27\x5f\xb2\x91\xb3\x53\xea\x9c\x52\xe1\xbc\x97\x3e\xda\x4c\xf5\x4e\x54\xe5\xfc\xcd\x85\x9e\x4a\x5c\xed\xa6\xb5\x45\xeb\x50\x89\x42\x5d\xad\x69\xc5\x1b\xcc\x50\x55\x32\x51\xd7\x50\x75\x37\x82\xbd\x7e\x89\x19\xde\x16\x83\xb5\xdb\x75\xdb\x9f\xb6\xef\x27\x45\x5f\x9c\xb5\xe5\x65\x94\xa1\xae\xaf\xd1\xb9\xc8\xbe\xc8\xbf\x0e\x16\x72\x13\x49\x71\x10\x4a\x88\x32\x78\x22\x4a\x70\x98\xf1\xf0\x28\x59\x72\xf7\x9d\xbc\xc1\xd9\xe8\x7d\xe7\xac\x45\xfe\x17\xf2\x52\x95\x97\xe8\x9d\xfd\xe3\x07\x3c\xa7\xb4\x32\x99\xb2\x52\x94\xe5\xb3\xd0\x79\x85\x47\xea\x4f\x7d\x32\x70\x64\x63\x17\xf8\x17\x0d\xfa\x58\x17\x6f\x70\x66\x6b\x61\x2d\xa7\x65\x82\x9a\x35\xd9\xab\x7c\xa6\xb8\x9f\xc2\x41\x3f\xc9\xf7\x46\xff\xe3\x7b\x35\x9f\x9a\x5d\x08\x97\x88\x4f\xf7\x05\xf1\x3e\xfb\x13\x00\x00\xff\xff\x31\xf6\xac\xca\xa4\x03\x00\x00" +var _stakingcollectionUnstake_allCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4b\x6b\xf3\x40\x0c\xbc\xfb\x57\x0c\x39\x04\xfb\xe2\xdc\xc3\xf7\x35\xa4\x2f\x28\xa4\xb4\x24\xd0\xfb\x76\x23\x3b\x4b\x36\x2b\x57\x2b\x93\x42\xc9\x7f\x2f\xf6\xe6\x71\x88\x0b\xbd\x54\x07\xdb\xb2\xa4\x99\xd1\xc3\xed\x1a\x16\xc5\xa3\xe7\xfd\x4a\xcd\xd6\x85\xfa\x8e\xbd\x27\xab\x8e\x03\x2a\xe1\x1d\x46\x83\xb1\x51\x96\x4d\x26\x13\x2c\xe9\xa3\xa5\xa8\x11\xca\x68\x43\x54\xb3\x25\xcc\x17\x0b\x28\x6f\x29\x44\x54\x2c\xd0\x0d\x21\x36\x64\x5d\xe5\x68\x8d\xc0\x6b\x02\x0b\xd6\xe4\xa9\x36\xca\x02\x17\x52\x4a\x62\x80\x3d\x53\x64\x99\x8a\x09\xd1\xf4\x4e\xde\x15\x3e\xdd\x4f\xb1\x52\x71\xa1\x2e\xf0\x95\x01\x40\xff\xf0\xa4\xa7\xf2\x8b\xc0\x25\x55\x53\x98\x56\x37\xf9\xa0\xfe\xf2\xf2\xf9\xb2\x0f\x24\x05\xc6\xc3\x79\x57\x7f\xb2\x9e\xb3\x11\x6a\x8c\x50\x6e\xac\xe5\x36\xe8\x91\xea\x96\x45\x78\xff\x66\x7c\x4b\x05\xc6\xf3\x14\x3b\x69\xed\x2c\x92\xaf\xca\x21\xad\xf8\x8f\x23\x54\x19\x95\xc5\xd4\x54\xbe\xf7\x60\xff\xfe\xa2\x87\x9b\xbc\x5b\xed\x74\x78\xed\xd7\xe9\xab\xa4\xe8\xd5\xe8\xa6\x38\xb7\xd2\xd9\x6c\x86\xc6\x04\x67\x7f\xd0\x57\x93\x5e\xbc\x67\x17\xa3\x0b\xf5\x83\x08\x4b\x1e\x9c\x2f\x12\xd4\x21\xcd\x93\x3e\xc9\xb6\x4a\xbf\x19\x55\x79\x3c\xb4\xb9\xf7\xe7\xab\x48\xef\x13\xe2\x21\xfb\x0e\x00\x00\xff\xff\xe9\x4c\x75\x07\xd7\x02\x00\x00" func stakingcollectionUnstake_allCdcBytes() ([]byte, error) { return bindataRead( @@ -5861,11 +5861,11 @@ func stakingcollectionUnstake_allCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/unstake_all.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2f, 0xa9, 0x2e, 0x7d, 0xf7, 0x4f, 0x15, 0xc0, 0xe7, 0x22, 0xb8, 0xd9, 0x2e, 0x85, 0xaa, 0xb8, 0xeb, 0x3a, 0x84, 0xc5, 0x76, 0x15, 0x48, 0x67, 0x9b, 0x47, 0x53, 0xe5, 0xaf, 0x8, 0x5d, 0x71}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x50, 0xc0, 0x6, 0x59, 0x7f, 0xf9, 0x38, 0x8f, 0xc8, 0x96, 0xee, 0xab, 0x4b, 0x7c, 0x23, 0xb4, 0x49, 0x99, 0x73, 0x98, 0x9, 0xfa, 0xf5, 0xe8, 0x47, 0x72, 0x3b, 0xce, 0xaa, 0x2a, 0x51, 0xc3}} return a, nil } -var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x6f\xd4\x40\x0c\xbd\xe7\x57\x3c\x72\xa8\x12\x09\x65\xef\x2b\xa0\x2a\x45\x48\x5c\x00\xb1\x88\xbb\x3b\x71\x92\x81\xec\x38\xf2\x38\x0a\x02\xf5\xbf\xa3\x7c\x6d\x5b\x36\xac\xb8\x74\x0e\xc9\xc8\x76\x9e\x9f\xf3\x9e\xfd\xb1\x13\x35\xbc\x6f\x65\x38\x18\xfd\xf0\xa1\xbe\x95\xb6\x65\x67\x5e\x02\x2a\x95\x23\xd2\xcd\x5c\x9a\x24\xbb\xdd\x0e\xb7\x0d\x85\x9a\x23\xac\x61\x04\xb6\x41\x74\x2c\x03\x95\xa5\x72\x8c\xa8\x44\xa7\x54\xec\xd8\xf9\xca\x73\x89\x20\x25\x27\x89\x29\x85\x48\x13\x50\x36\x46\x3e\xbc\xdb\xe3\x60\xea\x43\xfd\x12\x81\x87\x9b\xf9\xf3\x35\x96\xe3\x77\x02\x00\xd3\xa3\x65\x43\xfc\x9b\xcd\x17\xae\xf6\xa0\xde\x9a\x6c\x93\x6c\xf1\x70\xfd\x34\x04\xd6\x1c\x57\xdb\x75\x67\x91\x64\xea\xd9\x29\x77\xa4\x9c\x91\x73\xd2\x07\x5b\x5a\xbd\x15\x55\x19\xbe\x51\xdb\x73\x8e\xab\x9b\x39\xb7\x72\x1d\x4f\xe4\xb6\x2a\xb6\xb8\xe2\x35\x16\xa8\x22\x9a\x28\xd5\x5c\xdc\x4d\x60\xaf\x9e\x63\x86\x37\xd9\xa8\xe3\x7e\x5b\xe3\xf3\xf2\xc3\xcc\xe8\x33\x59\x93\x9f\x46\x19\xcf\xf5\x35\x3a\x0a\xde\x65\xe9\xd7\x51\x52\x5f\x07\x56\x94\xc2\x11\x41\x46\x4d\x44\x19\x84\x05\x0f\x8f\x6c\x24\x77\xdf\xd9\x19\xc8\x26\x2f\x74\x64\x0d\xd2\x27\xc8\xeb\x29\x9c\x04\x47\xf6\x8f\x1f\x70\x89\x69\x61\x32\x7b\x25\xcb\xf3\x8b\xd0\x69\x81\x47\xec\x8f\x7d\x34\xf8\xe0\xcd\x53\xeb\x7f\xf1\xc8\xcf\xeb\xaa\x0d\x06\x6f\x0d\xac\xf1\x71\x9d\xa0\xf2\x1a\xed\x45\xba\xb4\xb8\x9f\xcd\xc1\x3f\xd9\xf5\xc6\xff\xa3\x7b\xd1\x77\x25\x19\x7f\x3c\x2d\xca\x62\xf4\xd3\x0e\xcc\xef\xa7\x3b\xf0\x70\x5f\xdb\xde\x27\x7f\x02\x00\x00\xff\xff\xf5\xef\xa5\xd5\xb6\x03\x00\x00" +var _stakingcollectionUpdate_networking_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\x6b\xe3\x40\x0c\xbd\xcf\xaf\x10\x39\x04\x1b\x16\xe7\x1e\x76\x37\x64\xb3\x2d\xf4\xd0\x0f\x1a\xe8\x5d\xb5\x65\x7b\xe8\x44\x32\x1a\x19\x17\x4a\xfe\x7b\xb1\x9d\x0f\xda\xb8\xd0\x4b\x75\xb0\x65\x49\x7e\x7a\x92\x9e\xdf\x35\xa2\x06\xd7\x41\xba\xad\xe1\x8b\xe7\x6a\x23\x21\x50\x6e\x5e\x18\x4a\x95\x1d\xcc\x26\x73\x33\xe7\x16\x8b\x05\x6c\x6a\xe4\x8a\x22\x58\x4d\xc0\x64\x9d\x68\x5f\x06\x58\x14\x4a\x31\x42\x29\x3a\xa4\x62\x43\xb9\x2f\x3d\x15\xc0\x52\x90\x73\xa6\xc8\x11\x07\xa0\xa4\x8f\xdc\xfc\x5f\xc2\xd6\xd4\x73\xf5\x0b\x98\xba\xf5\xf8\xfb\x31\x96\xc2\x9b\x03\x00\x18\x1e\x81\x0c\xe2\x67\x36\x8f\x54\x2e\x01\x5b\xab\x93\x49\xb2\xd9\xd9\xbd\xef\x98\x34\x85\xf9\x74\xdd\x45\xc4\x0d\x3d\x1b\xa5\x06\x95\x12\xcc\x73\x69\xd9\x0e\xad\xfe\x89\xaa\x74\x4f\x18\x5a\x4a\x61\xbe\x1e\x73\x47\xae\xbd\x45\x0a\x65\x36\xc5\x15\xfe\xc0\x01\x2a\x8b\x26\x8a\x15\x65\xcf\x03\xd8\xef\x9f\x98\xe1\x6f\xd2\xdf\x71\x39\x7d\xe3\xcb\xf2\xed\xc8\xe8\x01\xad\x4e\x4f\xa3\xf4\xb6\x5a\x41\x83\xec\xf3\x2f\xf8\x55\x64\xe7\xaf\x5b\x1f\xa3\xe7\xea\x4a\x55\x34\x61\x1f\xd2\x11\x6a\x3f\xee\x93\x5e\x29\x6f\x8d\xbe\xb3\xaa\xac\x6d\x0a\x34\xba\x3b\x69\xeb\xa0\x8d\x93\x6c\xc6\xf7\x47\xd9\x9c\xfd\x63\xdb\xbd\x7b\x0f\x00\x00\xff\xff\x15\xa3\x70\x9b\xe9\x02\x00\x00" func stakingcollectionUpdate_networking_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -5881,11 +5881,11 @@ func stakingcollectionUpdate_networking_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/update_networking_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0xd5, 0x96, 0xd6, 0x50, 0x8d, 0x3, 0xf9, 0x4d, 0x25, 0x46, 0xe2, 0x73, 0xe6, 0xd2, 0x72, 0xe4, 0x48, 0x41, 0x8c, 0xfc, 0x27, 0x1d, 0x3, 0x59, 0xf3, 0x17, 0xf5, 0xa5, 0xd4, 0xdd, 0x2b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0xda, 0xa2, 0x4a, 0x71, 0xac, 0xb7, 0x49, 0xa9, 0xef, 0xf6, 0x6f, 0xa6, 0x1b, 0xec, 0x13, 0x1c, 0xb9, 0xce, 0x20, 0xc6, 0x84, 0xbf, 0xee, 0x7f, 0x1, 0x0, 0x1, 0x2, 0x1f, 0xac, 0x8f}} return a, nil } -var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4d\x8f\xd4\x30\x0c\xbd\xf7\x57\x98\x1e\x56\xad\x84\x3a\x17\xc4\x61\x04\xac\xf8\xd0\x48\x1c\x10\x68\x07\xb8\x7b\x53\x4f\x6b\x26\x8d\x4b\xe2\xd2\x05\xb4\xff\x1d\xa5\x6d\x66\x17\xb6\x8c\xb8\xe0\x43\x53\x25\xce\xf3\x7b\xf1\x33\x77\xbd\x78\x85\x9d\x95\x71\xaf\x78\x64\xd7\xbc\x16\x6b\xc9\x28\x8b\x83\x83\x97\x0e\xf2\xd5\xb3\x3c\xcb\x36\x9b\x0d\x5c\xd1\xd7\x81\x82\x82\x0a\x8c\xac\x6d\xed\x71\x04\x95\x23\xb9\x30\x5f\xd6\x96\xa0\x43\xd3\xb2\x23\x40\x63\x64\x70\x3a\xdd\xfb\xd8\x52\xca\x43\x4f\x80\x83\x4a\x87\xca\x06\xad\xfd\x0e\x35\xf5\x12\x58\xa9\x8e\xb0\x11\x61\x70\x56\xcc\x91\xea\x04\x01\xdf\x70\xb0\x9a\x65\xea\xd1\x05\x9c\xf8\x14\x4e\x6a\x7a\xfb\x66\x0b\x7b\xf5\xec\x9a\xc7\x80\x5d\xcc\xdc\xc2\xa7\x1d\xdf\x3c\x7d\x52\xc2\xcf\x0c\x00\x60\xfa\x58\x52\x08\x7f\x0a\xba\xa2\xc3\x36\xf2\x68\x8b\x55\xbd\xd5\xdd\xef\xfb\xd1\x91\x2f\xe1\x62\x3d\xef\xc1\x4e\x36\xd5\xec\x3d\xf5\xe8\xa9\x58\x14\x2c\xa5\x5e\x89\xf7\x32\x7e\x46\x3b\x50\x09\x17\x2f\xe7\xb3\xc4\x35\x46\x20\x7b\xa8\xd6\xb8\xc2\xf3\xf4\x18\x55\x50\xf1\xd8\x50\x75\x3d\x81\x3d\xfb\x1f\x1a\x5e\x14\xb1\x9b\xdb\x75\x9b\x3c\x4c\xdf\xcf\x8c\x3e\xa0\xb6\xe5\x49\x4a\x8c\xcb\x4b\xe8\xd1\xb1\x29\xf2\x68\x80\xc0\x8d\x23\x0f\xb5\x50\x00\x27\xb1\x27\x12\xbd\x00\x0b\x1e\xdc\x73\xa2\x5c\x7f\x21\xa3\x80\x3a\xf9\xa1\x47\x6d\x21\xff\x0d\x39\x45\x65\xc4\x19\xd4\xbf\x3c\xc0\x39\xa6\x95\xca\xec\x9d\xa2\x2c\xcf\x42\xe7\x15\xdc\x63\xdf\x0d\x41\x81\x1d\x2b\xa3\xe5\x1f\x14\xf9\xb1\x3f\x19\x35\x0e\x05\x68\xcb\x21\x29\x38\xb0\x0f\xfa\x28\x5f\x4a\xdc\xce\xe6\xa0\x1b\x32\x83\xd2\xbf\xf4\xbd\x4a\x63\xb6\xf3\xd2\xbd\x9b\x27\x6b\xf1\xcd\x69\x04\xe6\xf5\x6e\x04\xe6\x35\x55\xbc\xcd\x7e\x05\x00\x00\xff\xff\x2f\x85\xdb\xe9\xf4\x03\x00\x00" +var _stakingcollectionWithdraw_from_machine_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x52\x4d\x8f\x9b\x30\x10\xbd\xf3\x2b\x46\x39\x44\x20\x55\xe4\x52\xf5\x80\xda\x46\xfd\x8a\xd4\x43\xd4\x2a\x69\x7b\x9f\x9a\x09\x58\x31\x1e\x3a\x1e\x4a\xaa\x2a\xff\x7d\x05\x0e\x89\xb4\x61\xa5\xbd\xac\x0f\x18\xf0\xcc\x9b\xf7\x9e\x9f\x6d\x5a\x16\x85\x8d\xe3\x7e\xaf\x78\xb4\xbe\xfa\xc4\xce\x91\x51\xcb\x1e\x0e\xc2\x0d\x2c\x66\xcf\x16\x49\xb2\x5a\xad\x60\x47\x7f\x3a\x0a\x0a\xca\xd0\x5b\xad\x4b\xc1\x1e\x94\x8f\xe4\x43\x6c\xd6\x9a\xa0\x41\x53\x5b\x4f\x80\xc6\x70\xe7\x75\xec\xfb\x51\xd3\x54\x87\x42\x80\x9d\x72\x83\x6a\x0d\x3a\xf7\x0f\x4a\x6a\x39\x58\xa5\x72\x80\x1d\x10\x3a\xef\xd8\x1c\xa9\x9c\x20\xe0\x2f\x76\x4e\x93\x44\x05\x7d\xc0\x91\x4f\xea\xb9\xa4\xaf\x9f\x0b\xd8\xab\x58\x5f\xbd\x02\x6c\x86\xca\x02\x7e\x6e\xec\xe9\xcd\xeb\x0c\xfe\x27\x00\x00\xe3\xc3\x91\x42\x78\x2c\x68\x47\x87\x62\xe0\x51\xa7\xb3\x7a\xf3\xdb\xeb\xb7\xde\x93\x64\xb0\x9c\xaf\xbb\xfb\x93\x8c\x33\x5b\xa1\x16\x85\xd2\x8b\x82\xcb\xa8\x8f\x2c\xc2\xfd\x2f\x74\x1d\x65\xb0\xfc\x10\xcf\x26\xae\xc3\x0a\xe4\x0e\xf9\x1c\x57\x78\x37\x99\x91\x07\x65\xc1\x8a\xf2\xdf\x23\xd8\xdb\x97\xd0\xf0\x3e\x1d\x6e\xb3\x98\x8f\xc9\x7d\xf9\x3e\x32\xfa\x8e\x5a\x67\x57\x29\xc3\x5a\xaf\xa1\x45\x6f\xcd\x13\xfc\x2a\xd2\xdb\xd7\xd6\x86\x60\x7d\xf5\x45\x84\x25\xf5\xd6\x65\x11\xea\x1c\xfd\xa4\x13\x99\x4e\xe9\x39\x56\xe5\x53\x32\x37\xc2\xcd\x36\x86\xf1\x62\xf5\x35\x35\x71\xbf\xa5\x26\xee\xd3\xc4\x73\xf2\x10\x00\x00\xff\xff\x99\x8e\x9c\x18\x27\x03\x00\x00" func stakingcollectionWithdraw_from_machine_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -5901,11 +5901,11 @@ func stakingcollectionWithdraw_from_machine_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_from_machine_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x54, 0x15, 0xf, 0xab, 0x19, 0xae, 0x68, 0x40, 0x7b, 0x19, 0x19, 0x5c, 0xb6, 0x93, 0x66, 0x6a, 0xf2, 0x27, 0xb, 0xce, 0xb1, 0xe9, 0x51, 0xaf, 0x7b, 0x61, 0xe4, 0x3f, 0x43, 0x63, 0xf0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbd, 0xe4, 0x9d, 0x49, 0xaf, 0x7e, 0x6a, 0x20, 0xf7, 0x6d, 0x91, 0xc5, 0xba, 0xd4, 0xf5, 0x71, 0xc, 0xa5, 0xad, 0x7b, 0xfd, 0xd9, 0xfc, 0xb6, 0x81, 0xc8, 0x98, 0x6e, 0x3d, 0x3c, 0xd5, 0xf3}} return a, nil } -var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4f\x6f\xd4\x3e\x14\xbc\xe7\x53\xcc\x2f\x87\x2a\x91\x56\x59\xe9\x07\xe2\xb0\x02\x56\x05\x54\xa9\x27\xd0\x6e\xcb\xdd\x75\x5e\x36\x66\xbd\x7e\xc1\x7e\x21\x2d\xa8\xdf\x1d\x39\x7f\x76\x17\x1a\x2a\x2e\xf8\x10\x27\xf6\xcb\xbc\x19\x7b\xc6\x1c\x1a\xf6\x82\x2b\xcb\xdd\x56\xd4\xde\xb8\xdd\x7b\xb6\x96\xb4\x18\x76\xa8\x3c\x1f\x90\xce\xee\xa5\x49\xb2\x5c\x2e\xb1\xa1\xaf\x2d\x05\x81\x30\x3a\x23\x75\xe9\x55\x07\x4f\x9d\xf2\x25\x95\x10\xde\x93\x0b\xa8\xd8\x43\x6a\x42\x68\x48\x9b\xca\x50\x09\xc7\x25\x81\x3d\x4a\xb2\xb4\x53\xc2\x1e\xc6\x0d\x25\x43\x1b\xe8\x63\x9f\xbe\xcb\x4d\x4d\x13\x98\xf2\x04\xd5\x0a\x1f\x94\x18\xad\xac\x7d\x40\x49\x0d\x07\x23\x7d\xbf\x1e\xa4\x75\x96\xf5\x9e\x4a\x28\xad\xb9\x75\x82\x6f\xaa\xb5\x82\xca\xf8\x20\x8b\x1e\xef\xd2\x95\xb1\xd2\x41\xb9\x07\x8c\xc5\x67\xf8\x27\x44\xe3\x46\xcc\x39\xc4\x24\x11\xaf\x5c\x50\x3d\xcf\x2c\x6a\xba\xfe\xb0\xc2\x56\xbc\x71\xbb\xc5\x49\x5b\x5c\xbc\xbd\x76\xf2\xe2\xff\xf5\x02\xea\x10\xff\x5f\xe1\xf6\xca\xdc\xbf\x7a\x99\xe3\x47\x02\x00\xfd\xc3\x92\x4c\xfa\x4f\xc7\xbc\xa1\x6a\x15\xf5\xd6\xd9\xec\x2d\x14\xa7\xd7\x8f\x9d\x23\x9f\xe3\x62\xbe\xee\xc9\x4a\xd2\xf7\x6c\x3c\x35\xca\x53\x36\xea\x1a\x5b\xbd\x63\xef\xb9\xfb\xac\x6c\x4b\x39\x2e\x2e\x87\xbd\x89\x6b\x1c\x81\x6c\x55\xcc\x71\xc5\x9b\xe9\x88\x8a\x20\xec\xd5\x8e\x8a\xbb\x1e\xec\xf5\xbf\xd0\xf0\x36\x8b\x06\x5d\xcd\x9b\xf7\x69\xf9\x76\x60\xf4\x49\x49\x9d\x1f\xa5\xc4\xb1\x5e\xa3\x51\xce\xe8\x2c\x8d\x46\x0b\x66\xe7\xc8\xa3\x64\x0a\x70\x1c\xef\x84\xa3\xe7\x30\xe2\xe1\x2c\x1f\x7c\xf7\x85\xb4\x40\x49\xef\x91\x46\x49\x8d\xf4\x17\xe4\x69\x14\x9a\x9d\x56\xf2\x87\x03\x78\x8e\x69\x21\x3c\x38\x2a\xcb\xf3\x67\xa1\xd3\x02\x67\xec\x0f\x6d\x10\x18\x67\xc4\x28\x6b\xbe\x53\xe4\x67\xfc\xd1\xbe\x31\xaa\x90\xda\x84\x49\x41\x9f\x8d\xff\xd2\xb1\xc5\xe3\x60\x0e\xba\x27\xdd\x0a\xfd\xcd\xbd\x17\x53\xf8\x37\x63\xf6\x6f\xfa\x34\x1d\x43\x31\xcc\xbf\x85\xe2\xec\xe3\x14\x8c\x61\x9e\x78\x3c\x26\x3f\x03\x00\x00\xff\xff\x64\x09\x14\x85\xa0\x04\x00\x00" +var _stakingcollectionWithdraw_rewarded_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\xcd\x6e\xd3\x40\x10\xbe\xfb\x29\x46\x3d\x54\xb1\x14\x39\x12\x20\x0e\x11\x10\x95\x9f\x4a\x3d\x20\x50\xd2\x72\x1f\xec\xb1\xbd\xca\x66\xc6\xcc\x8e\x71\x2b\xd4\x77\x47\x5e\xdb\x71\x45\x8d\xc4\x85\x3d\x78\xbd\xbb\xe3\xef\x67\xfc\xad\x3b\x35\xa2\x06\xd7\x5e\xba\x83\xe1\xd1\x71\xf5\x41\xbc\xa7\xdc\x9c\x30\x94\x2a\x27\xb8\x58\x3c\xbb\x48\x92\xcd\x66\x03\x7b\xfa\xd1\x52\x30\x30\x81\xce\x59\x5d\x28\x76\xa0\xd4\xa1\x16\x54\x80\xc9\x91\x38\x40\x29\x0a\x56\x13\x84\x86\x72\x57\x3a\x2a\x80\xa5\x20\x10\x85\x82\x3c\x55\x68\xa2\xe0\x78\x28\x19\x68\x20\x3f\xf3\x44\x96\xdb\x9a\x26\x30\x54\x02\x6c\x4d\x4e\x68\x2e\x47\xef\x1f\xa0\xa0\x46\x82\xb3\xc8\x17\x41\x5a\xf6\x92\x1f\xa9\x00\xcc\x73\x69\xd9\xe0\x27\xb6\xde\xa0\x74\x1a\x6c\x1d\xf1\xae\xb8\xe8\x2b\x19\x90\x1f\x60\x2c\x7e\x82\x3f\x23\x3a\x1e\x31\x97\x10\x93\xc4\x14\x39\x60\xd4\xb9\xea\x3d\xdd\x7c\xdc\xc2\xc1\xd4\x71\xb5\x9e\xbd\xf5\x9b\x77\x37\x6c\x2f\x5f\xec\xd6\x80\xa7\xfe\xfb\x2d\xdc\x5d\xbb\xfb\xd7\xaf\x52\xf8\x95\x00\x00\xc4\x87\x27\x9b\xfc\xcf\x6d\xde\x53\xb9\xed\xfd\xd6\xab\xc5\xbf\x90\xcd\xaf\x5f\x3a\x26\x4d\xe1\x72\xb9\xee\xd9\x4e\x12\x39\x1b\xa5\x06\x95\x56\xa3\xaf\x91\xea\xbd\xa8\x4a\xf7\x0d\x7d\x4b\x29\x5c\x5e\x0d\x67\x93\xd6\x7e\x04\xf2\x65\xb6\xa4\x15\xde\x4e\x2d\xca\x82\x89\x62\x45\xd9\xf7\x08\xf6\xe6\x7f\x78\x78\xb7\xea\x03\xba\x5d\x0e\xef\xf3\xf2\xc3\xa0\xe8\x2b\x5a\x9d\x9e\xad\xf4\x63\xb7\x83\x06\xd9\xe5\x7f\xd1\x57\x91\xcd\xab\xcf\x2e\x04\xc7\xd5\x27\x55\xd1\x15\x3b\x9f\x0e\x50\x8f\x43\x3f\xe9\x9e\xf2\xd6\xe8\x5f\x5a\x95\x4d\xf7\x65\x3f\x5e\x97\xdb\x18\xc0\x73\x8e\x86\xf9\x8f\x1c\x3d\x59\xcc\x59\x1a\xe6\x49\xc7\x63\xf2\x3b\x00\x00\xff\xff\x56\xdb\x41\xce\xd3\x03\x00\x00" func stakingcollectionWithdraw_rewarded_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5921,11 +5921,11 @@ func stakingcollectionWithdraw_rewarded_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_rewarded_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4d, 0x1a, 0xd6, 0x74, 0xe7, 0xa8, 0x11, 0x39, 0x43, 0xae, 0x9, 0x42, 0x5f, 0xa8, 0xe1, 0x3a, 0xb1, 0x85, 0xc4, 0x5f, 0xfe, 0x1d, 0x2, 0x4a, 0xa0, 0x99, 0x7d, 0x9d, 0xf5, 0x5, 0xc8, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x63, 0x8a, 0x1, 0x16, 0xdc, 0x1c, 0x8f, 0x1, 0x1b, 0x88, 0x6f, 0xa7, 0x3f, 0x2d, 0xed, 0x93, 0x82, 0x18, 0x77, 0x47, 0x3, 0x41, 0xd8, 0xf0, 0x11, 0xba, 0xc3, 0xb1, 0xce, 0x1c, 0xbd}} return a, nil } -var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x54\x41\x6f\xd3\x4c\x10\xbd\xfb\x57\xcc\xe7\x43\x65\x4b\x95\x2b\x7d\x20\x0e\x11\x10\x15\x50\xa5\x9e\x40\x4d\xc3\x7d\xba\x1e\xc7\x43\x36\x3b\x66\x77\x4c\x5a\x50\xff\x3b\xda\xb5\x9d\x04\x6a\x2a\x2e\xec\x21\x8e\xbd\xa3\xf7\xde\xcc\xbe\xb7\xbc\xeb\xc4\x2b\x5c\x59\xd9\xaf\x14\xb7\xec\x36\xef\xc5\x5a\x32\xca\xe2\xa0\xf1\xb2\x83\x7c\x76\x2f\xcf\xb2\x8b\x8b\x0b\xb8\xa1\xaf\x3d\x05\x05\x15\xd8\xb3\xb6\xb5\xc7\x3d\xf4\x2e\x28\x6e\xa9\x06\x95\x2d\xb9\x00\x8d\x78\xd0\x96\x20\x74\x64\xb8\x61\xaa\xc1\x49\x4d\x20\x1e\x6a\xb2\xb4\x41\x15\x0f\xec\x86\x92\x81\x06\xcc\x81\x27\xb1\xdc\xb6\x34\x81\xa1\x27\xc0\x5e\x65\x87\xca\x06\xad\x7d\x80\x9a\x3a\x09\xac\x89\x2f\x81\xf4\xce\x8a\x89\xfc\x68\x8c\xf4\x4e\xe1\x1b\xf6\x56\xa1\x61\x1f\xf4\x3c\xe1\x5d\xba\x3a\x56\x3a\x40\xf7\x00\x63\xf1\x09\xfe\x11\x91\xdd\x88\x39\x8b\xc8\x0d\xb0\x02\x87\x58\xe1\x29\xcb\xd4\xa3\x0b\x98\x64\x17\xb1\xc5\xeb\x0f\x0b\x58\xa9\x67\xb7\x39\x3f\xb6\x1a\x3f\xae\xaf\x9d\xbe\xf8\x7f\x79\x0e\xb8\x8b\x70\x0b\x58\x5f\xf1\xfd\xab\x97\x25\xfc\xc8\x00\x00\xd2\x8f\x25\x9d\xc6\x71\x9c\xfa\x0d\x35\x8b\xd8\x7e\x5b\xcc\x1e\x4a\x75\xfc\xfb\x71\xef\xc8\x97\x70\x36\x5f\xf7\xe4\x4b\x96\x38\x3b\x4f\x1d\x7a\x2a\xc6\x36\x47\xaa\x77\xe2\xbd\xec\x3f\xa3\xed\xa9\x84\xb3\xcb\x61\x6f\xd2\x1a\x57\x20\xdb\x54\x73\x5a\xe1\xcd\x34\xb1\x2a\xa8\x78\xdc\x50\x75\x97\xc0\x5e\xff\x8b\x1e\xde\x16\xd1\xaf\x8b\x79\x2f\x3f\x2d\x5f\x0d\x8a\x3e\xa1\xb6\xe5\xa1\x95\xb8\x96\x4b\xe8\xd0\xb1\x29\xf2\xe8\xbb\xc0\x1b\x47\x1e\x6a\xa1\x00\x4e\xe2\x99\x48\xb4\x20\x8c\x78\x70\x12\x17\xb9\xfb\x42\x46\x01\x35\x59\xa6\x43\x6d\x21\xff\x05\x79\x5a\x95\x11\x67\x50\xff\x30\x80\xe7\x94\x56\x2a\x83\xa3\x8a\xb2\x7c\x16\x3a\xaf\xe0\x44\xfd\xae\x0f\x0a\xec\x58\x19\x2d\x7f\xa7\xa8\x8f\xfd\xc1\xcd\x31\xb9\xa0\x2d\x87\xa9\x83\x14\x95\xff\xf2\x91\xe2\x71\x30\x07\xdd\x93\xe9\x95\xfe\xe6\xdc\xab\xe9\x2e\x58\x8f\x57\xc1\x6d\x0a\xd7\x21\x14\xc3\xf3\xb7\x50\x9c\xbc\x1c\x83\x31\x3c\x27\x1d\x8f\xd9\xcf\x00\x00\x00\xff\xff\x45\x0d\xaa\xe1\xaf\x04\x00\x00" +var _stakingcollectionWithdraw_unstaked_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x53\x4b\x6b\xdc\x30\x10\xbe\xfb\x57\x0c\x39\x84\x35\x2c\x5e\x68\x4b\x0f\x4b\xdb\x25\x7d\x04\x72\x28\x2d\xd9\x6c\xef\xaa\x3d\xb6\x87\xd5\xce\xb8\xa3\x71\x9d\x50\xf2\xdf\x8b\xfc\x58\x87\xc6\x85\x5e\xaa\x83\x65\x49\xc3\xf7\x18\x7d\xa2\x53\x23\x6a\x70\xed\xa5\xdb\x9b\x3b\x12\x57\x1f\xc4\x7b\xcc\x8d\x84\xa1\x54\x39\xc1\xc5\xe2\xd9\x45\x92\x6c\x36\x1b\xb8\xc5\x1f\x2d\x06\x03\x13\xe8\xc8\xea\x42\x5d\x07\x2d\x07\x73\x47\x2c\xc0\xe4\x88\x1c\xa0\x14\x05\xab\x11\x42\x83\x39\x95\x84\x05\xb0\x14\x08\xa2\x50\xa0\xc7\xca\x99\x28\x10\x0f\x25\x03\x0d\xe4\x67\x9e\x9e\xe5\xae\xc6\x09\xcc\x29\x82\x6b\x4d\x4e\xce\x28\x77\xde\x3f\x40\x81\x8d\x04\xb2\x9e\xaf\x07\x69\xd9\x4b\x1e\xf9\x5d\x9e\x4b\xcb\x06\x3f\x5d\xeb\x0d\x4a\xd2\x60\xeb\x1e\xef\x8a\x8b\x58\xc9\xe0\xf8\x01\xc6\xe2\x27\xf8\x33\x22\xf1\x88\xb9\x88\x48\x25\x90\x01\x85\x58\xa1\x98\x24\xa6\x8e\x83\xeb\x65\xaf\xa2\xc5\x9b\x8f\x5b\xd8\x9b\x12\x57\xeb\xd9\x6a\xdc\x3c\xdc\xb0\xbd\x7c\xb1\x5b\x83\x3b\x45\xb8\x2d\x1c\xae\xe9\xfe\xf5\xab\x14\x7e\x25\x00\x00\xfd\xc7\xa3\x4d\xed\x98\xbb\x7e\x8b\xe5\x36\xda\xaf\x57\x8b\x97\x92\xcd\xbf\x5f\x3a\x46\x4d\xe1\x72\xb9\xee\xd9\x4e\xd2\x73\x36\x8a\x8d\x53\x5c\x8d\x36\x47\xaa\xf7\xa2\x2a\xdd\x37\xe7\x5b\x4c\xe1\xf2\x6a\x38\x9b\xb4\xc6\x11\xd0\x97\xd9\x92\x56\x78\x3b\x75\x2c\x0b\x26\xea\x2a\xcc\xbe\xf7\x60\x6f\xfe\x87\x87\x77\xab\x98\xd7\xed\x72\x96\x9f\x97\xef\x07\x45\x5f\x9d\xd5\xe9\xd9\x4a\x1c\xbb\x1d\x34\x8e\x29\xff\x8b\xbe\x0a\x6d\x5e\x7d\xa6\x10\x88\xab\x4f\xaa\xa2\x2b\x26\x9f\x0e\x50\x8f\x43\x3f\xf1\x1e\xf3\xd6\xf0\x5f\x5a\x95\x4d\xcf\xe7\x30\xbe\x9e\xbb\x3e\x8f\xe7\x1c\x0d\xf3\x1f\x39\x7a\xb2\x98\xb3\x34\xcc\x93\x8e\xc7\xe4\x77\x00\x00\x00\xff\xff\xdd\xfc\xae\x13\xe2\x03\x00\x00" func stakingcollectionWithdraw_unstaked_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -5941,7 +5941,7 @@ func stakingcollectionWithdraw_unstaked_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "stakingCollection/withdraw_unstaked_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xe3, 0x6f, 0x4d, 0x72, 0x36, 0xbb, 0xb2, 0x7f, 0xb, 0x76, 0xad, 0x5a, 0xcc, 0xc0, 0x93, 0x59, 0x66, 0x1d, 0x50, 0xa, 0xef, 0xc9, 0xc1, 0xa2, 0xb1, 0x26, 0x33, 0xba, 0x45, 0x43, 0x88}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x60, 0x41, 0xb0, 0x7d, 0xf, 0xc5, 0x4e, 0x3, 0x89, 0x2e, 0xfb, 0x1b, 0x4, 0x12, 0x64, 0x4d, 0x27, 0x8d, 0x3d, 0xd7, 0xfe, 0xb3, 0x4d, 0x7b, 0xb7, 0x45, 0x31, 0x15, 0xd8, 0x80, 0xb7, 0xdb}} return a, nil } diff --git a/lib/go/templates/manifest.mainnet.json b/lib/go/templates/manifest.mainnet.json index fae0ae13..0ce6bf67 100755 --- a/lib/go/templates/manifest.mainnet.json +++ b/lib/go/templates/manifest.mainnet.json @@ -452,7 +452,7 @@ { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first in order to register!\"))\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -478,12 +478,12 @@ } ], "network": "mainnet", - "hash": "dbaa15f8f97cc7882e4b22b85e2d296f80ce07e7c7030b7598fe3f7449a853f8" + "hash": "38eb95207a8f765441d110dfd46ea3c51dc69d2bcdaa9468e9ca9260609d1558" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first in order to register!\"))\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot register node with provided machine account key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot register node with the provided machine account key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot register node with provided machine account key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot register node with the provided machine account key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -586,12 +586,12 @@ } ], "network": "mainnet", - "hash": "60b021c1860d7dc79a4d5f9709e05c6ef934791ff98a6a5d5e40f85ee2ffe8da" + "hash": "cdd176913503adf21409bc39f935bee2d0246096f52568b082f7407f07a35c0f" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -639,12 +639,12 @@ } ], "network": "mainnet", - "hash": "667744eafba3f3958e6350afc31a183205eb04d20b0a69a50252f77b52028319" + "hash": "854ae3b997643f2d830756f480bf77f48c50c26af823e675db67c67e8dd2475d" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -688,12 +688,12 @@ } ], "network": "mainnet", - "hash": "6941c94197561cc70676459ecd4768e15a2625df1f5edbce7e598d68ea991e71" + "hash": "d65801ecd6852107d15a97d3b02db8226b86384e1be849fe50f1d02f7dbf5af6" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -737,12 +737,12 @@ } ], "network": "mainnet", - "hash": "32668d84d2d4ee176cd84f5bb02e827677ee561700df892d6ad3e5bcbac87d5a" + "hash": "adc143943ac8b73c9995c45d7f3130f7e81a6ddfe72bca681ef5df7fcf6063a3" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -786,12 +786,12 @@ } ], "network": "mainnet", - "hash": "c18223e1e5df913bae3b6ee4762f9bce8b29a54f71861d588cb59127e224057f" + "hash": "e80bcf35c25a0296b2afd99a156734e1ef37e3b244a4400faa98811e6305caf6" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -835,12 +835,12 @@ } ], "network": "mainnet", - "hash": "f0284568a862196d1592dc7b68ce17133602406aa9cc5a611dd648a35b2c4747" + "hash": "510ae0b5b3b89491b64a06054ce23989e1bd02fb3dac9bbca85f61a559f3364c" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -855,12 +855,12 @@ } ], "network": "mainnet", - "hash": "4eb99e54ffa1ba08143168038307d51de92ca1960d08d15fbeefb201badb4ca9" + "hash": "0dbf1bee6213b0828c0ba2a51ba0a20660ed6c7ab6632f75aac1ed669ed64bf8" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -904,12 +904,12 @@ } ], "network": "mainnet", - "hash": "54ef0ecf2b52833e0d05172c9af6997f68147a071dae2068e53e4e9f050df786" + "hash": "6239034e2884a0e32047bab081f4f2c9bdb4dba2ced6120a2d2c2f6489757868" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -953,12 +953,12 @@ } ], "network": "mainnet", - "hash": "9de32a9a248d40816117293ed327b7263766a490e159113ab4f69bb042ea4ec6" + "hash": "df691ad256dd053350e48313ca5b02dda34376376bb4303d997dc8679996fe3b" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -991,12 +991,12 @@ } ], "network": "mainnet", - "hash": "8431502ca6183e4a8d07d3f27e17b922a30b8f5bbdac29b70572490822017bcf" + "hash": "0c5f7a439634e49bb748df52d81074bb4ec44a940ce57ebf635522d82e1bb839" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeStaker object from an authorizers account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info from the signer's account for the node ID \"\n .concat(nodeID).concat(\". Make sure that the node has configured a machine account \")\n .concat(\"and has it registered in the staking collection.\"))\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 account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info from the signer's account for the node ID \"\n .concat(nodeID).concat(\". Make sure that the node has configured a machine account \")\n .concat(\"and has it registered in the staking collection.\"))\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", @@ -1022,12 +1022,12 @@ } ], "network": "mainnet", - "hash": "a49b4674b24e0768d23734358aa90fbf40e615a111c26fe1e2afdb081c8738e1" + "hash": "b0e32cf907ab70aaab435e1793c4b883f008a3c1650918cb8cf22f97eb789341" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n// Transfers a NodeDelegator object from an authorizers account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\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 account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\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", @@ -1064,12 +1064,12 @@ } ], "network": "mainnet", - "hash": "cba18c18aca4f1d635fc3f398576cde82a00b48109eb5653e967227407eb74fc" + "hash": "f468ac217ee2cee83cf76fa13f036349fff57cd163790bdc6a0c34badf8f30e2" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1095,12 +1095,12 @@ } ], "network": "mainnet", - "hash": "2b5c14abf44484af406f10a5ebd5037d8108818a89874d30cc58833cb8aea229" + "hash": "dcd4dd5d4466c1e2656f29585b48a32c9545247a2cb8a8653613272c7cc58f6c" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x8d0e87b65159ae63\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1126,7 +1126,7 @@ } ], "network": "mainnet", - "hash": "2dbc2822e4d19009ee952b0ed6b549d66d84ed7b17a0c9e702e59d4866aa1dd7" + "hash": "bffd96e1dfbdd84526b77e3056a0f54999c593b4db10f864d6b1461edac265ed" } ] } \ No newline at end of file diff --git a/lib/go/templates/manifest.testnet.json b/lib/go/templates/manifest.testnet.json index a3e85b61..8cfac72c 100755 --- a/lib/go/templates/manifest.testnet.json +++ b/lib/go/templates/manifest.testnet.json @@ -452,7 +452,7 @@ { "id": "SCO.02", "name": "Register Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first in order to register!\"))\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified nodeID and the amount of tokens to commit\n\ntransaction(id: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.registerDelegator(nodeID: id, amount: amount) \n }\n}\n", "arguments": [ { "type": "String", @@ -478,12 +478,12 @@ } ], "network": "testnet", - "hash": "ce7788b331a9c1a724224fd3c30786980cf5c37ffd3b3b7baa369c0261db8ea1" + "hash": "e477ffd71af218099bdf2305894f39f194d5caddcc55233b899a6cab8be137fe" }, { "id": "SCO.03", "name": "Register Node", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first in order to register!\"))\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot register node with provided machine account key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot register node with the provided machine account key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Registers a delegator in the staking collection resource\n/// for the specified node information and the amount of tokens to commit\n\ntransaction(id: String,\n role: UInt8,\n networkingAddress: String,\n networkingKey: String,\n stakingKey: String,\n amount: UFix64,\n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n\n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n\n if let machineAccount = self.stakingCollectionRef.registerNode(\n id: id,\n role: role,\n networkingAddress: networkingAddress,\n networkingKey: networkingKey,\n stakingKey: stakingKey,\n amount: amount,\n payer: account\n ) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot register node with provided machine account key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot register node with the provided machine account key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -586,12 +586,12 @@ } ], "network": "testnet", - "hash": "a2c3e16fb3445db52bdb6a2ef2e47df0918596bb2b2aaefef6fbe4cf8f1aeec5" + "hash": "c1daa4b832d52291c7757ff417b235f409aa5beb96c5e66695381836af652aeb" }, { "id": "SCO.04", "name": "Create Machine Account", - "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", + "source": "import Crypto\nimport FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Creates a machine account for a node that is already in the staking collection\n/// and adds public keys to the new account\n\ntransaction(nodeID: String, \n machineAccountKey: String, \n machineAccountKeySignatureAlgorithm: UInt8, \n machineAccountKeyHashAlgorithm: UInt8) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n\n if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) {\n let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a signature algorithm raw value that corresponds to \"\n .concat(\"one of the available signature algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeySignatureAlgorithm.toString())\n .concat(\" but the options are either 1 (ECDSA_P256), 2 (ECDSA_secp256k1), or 3 (BLS_BLS12_381).\"))\n\n let hashAlgo = HashAlgorithm(rawValue: machineAccountKeyHashAlgorithm)\n ?? panic(\"Cannot create machine account with provided key: Must provide a hash algorithm raw value that corresponds to \"\n .concat(\"one of of the available hash algorithms for Flow keys.\")\n .concat(\"You provided \").concat(machineAccountKeyHashAlgorithm.toString())\n .concat(\" but the options are 1 (SHA2_256), 2 (SHA2_384), 3 (SHA3_256), \")\n .concat(\"4 (SHA3_384), 5 (KMAC128_BLS_BLS12_381), or 6 (KECCAK_256).\"))\n \n let publicKey = PublicKey(\n\t\t\t publicKey: machineAccountKey.decodeHex(),\n\t\t\t signatureAlgorithm: sigAlgo\n\t\t )\n machineAccount.keys.add(publicKey: publicKey, hashAlgorithm: hashAlgo, weight: 1000.0)\n } else {\n panic(\"Could not create a machine account for the node\")\n }\n }\n}\n", "arguments": [ { "type": "String", @@ -639,12 +639,12 @@ } ], "network": "testnet", - "hash": "1392b5947c75339aaf4c3aad8a1658017ede00c65443ae092e729268ac8b6843" + "hash": "744140d602bb15e7610336cd02c5f0b2b22484306708ee0da683b3bdba457f62" }, { "id": "SCO.05", "name": "Request Unstaking", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests unstaking for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.requestUnstaking(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -688,12 +688,12 @@ } ], "network": "testnet", - "hash": "14c8778a38bb701c38e476cf5e7361c4761a5028de478079ebdc0304a0c75d9c" + "hash": "496fbcb63e434bd081f69ae11ddd7ec2ef1b9ac32abb443c26d4d09dfd2ca2ce" }, { "id": "SCO.06", "name": "Stake New Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits new tokens to stake for the specified node or delegator in the staking collection\n/// The tokens from the locked vault are used first, if it exists\n/// followed by the tokens from the unlocked vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.stakeNewTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -737,12 +737,12 @@ } ], "network": "testnet", - "hash": "48f72e3c7abef14de3801b762234d32106a5affc1d6d007e447d9bbdf9fdc3fd" + "hash": "8c03f3920896f68576d04b0f8980507441123c24a6600f706133915205968244" }, { "id": "SCO.07", "name": "Stake Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits rewarded tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.stakeRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -786,12 +786,12 @@ } ], "network": "testnet", - "hash": "09b70a91b130c201503e01b1d9df08f4dcfcf94dcbe32310662f99af74989d68" + "hash": "aeb4a5c1d131da3f54e717357330dc7a08daec9238b90d35f2e78fc3f21f822d" }, { "id": "SCO.08", "name": "Stake Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Commits unstaked tokens to stake for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.stakeUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -835,12 +835,12 @@ } ], "network": "testnet", - "hash": "667e76c85345783cc9fe157e27e714942d75a7cb608895b4347ec57b8e41cd98" + "hash": "8cea0b1817980400ddccb8d72e68f6984934f15172bb7a7f6f80f6c6e03bec56" }, { "id": "SCO.09", "name": "Unstake All", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Requests to unstake ALL tokens for the specified node or delegator in the staking collection\n\ntransaction(nodeID: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.unstakeAll(nodeID: nodeID)\n }\n}\n", "arguments": [ { "type": "String", @@ -855,12 +855,12 @@ } ], "network": "testnet", - "hash": "4acfc406aa2203fa457e69b476bbf66af8d03386d0795bbe9bfb16e58df57890" + "hash": "4e1af2295f9cac245e5c32b92265c635f80ed523d713038195dad7607e2785e3" }, { "id": "SCO.10", "name": "Withdraw Rewarded Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw rewarded tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.withdrawRewardedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -904,12 +904,12 @@ } ], "network": "testnet", - "hash": "2d88f4a7e8b872c54db197c3e9141156919ef919a33509ec66b3c8cca1a0e518" + "hash": "e35778812e8fcefc9ea0abf60a7466777466d071c860746768e83eff47b5b0ea" }, { "id": "SCO.11", "name": "Withdraw Unstaked Tokens", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw unstaked tokens for the specified node or delegator in the staking collection\n/// The tokens are automatically deposited to the unlocked account vault first,\n/// And then any locked tokens are deposited into the locked account vault if it is there\n\ntransaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.withdrawUnstakedTokens(nodeID: nodeID, delegatorID: delegatorID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -953,12 +953,12 @@ } ], "network": "testnet", - "hash": "638431bdb9308da32f316d4f50b7d9524f3be1530931b45000b83e220ea4b766" + "hash": "c511b86ca0d68fc751ad1ff0c8609eb7bf8a96e72f35ddd943d5ca27fb1e8f62" }, { "id": "SCO.12", "name": "Close Stake", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Closes out a staking object in the staking collection\n// This does not remove the record from the identity table,\n// but it does mean that the account that closes it cannot ever access it again\n\ntransaction(nodeID: String, delegatorID: UInt32?) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.closeStake(nodeID: nodeID, delegatorID: delegatorID)\n }\n}\n", "arguments": [ { "type": "String", @@ -991,12 +991,12 @@ } ], "network": "testnet", - "hash": "a66859d6e451e6a89ca69e7f579ca0ac3097f95448ea8c9eb3d65063d6986ec9" + "hash": "399b0c6a827d6747b1b50be9ead82ddc2669f38fd8ac57325bfa413a474646e2" }, { "id": "SCO.13", "name": "Transfer Node", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeStaker object from an authorizers account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info from the signer's account for the node ID \"\n .concat(nodeID).concat(\". Make sure that the node has configured a machine account \")\n .concat(\"and has it registered in the staking collection.\"))\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 account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\n\n let machineAccountInfo = self.fromStakingCollectionRef.getMachineAccounts()[nodeID]\n ?? panic(\"Could not get machine account info from the signer's account for the node ID \"\n .concat(nodeID).concat(\". Make sure that the node has configured a machine account \")\n .concat(\"and has it registered in the staking collection.\"))\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", @@ -1022,12 +1022,12 @@ } ], "network": "testnet", - "hash": "2083b56c966c791e67f44d102c0b8e03cddf520954c912f967d43b05cf37e045" + "hash": "a256c4ca6c2ba532692cc6ace370a5e3bb037445ccb78e8998f087d33f52b0ef" }, { "id": "SCO.14", "name": "Transfer Delegator", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n// Transfers a NodeDelegator object from an authorizers account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\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 account\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: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n let toStakingCollectionCap: \u0026FlowStakingCollection.StakingCollection\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(\"The desination account does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The destination account must initialize their account with this object first!\"))\n }\n\n // Get a reference to the authorizers StakingCollection\n self.fromStakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\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\u003e(FlowStakingCollection.StakingCollectionPublicPath)\n ?? panic(\"Could not borrow a reference to a StakingCollection in the receiver's account\")\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", @@ -1064,12 +1064,12 @@ } ], "network": "testnet", - "hash": "0833e3ea73966df91b1872c25d11696bfe9f167a15fb17056310d357ba99353a" + "hash": "3c099baacdfa17f1cb14797fc07623079e084cb7da938c9651fdcea820c954df" }, { "id": "SCO.15", "name": "Withdraw From Machine Account", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Request to withdraw tokens from the machine account\n/// The tokens are automatically deposited to the unlocked account vault\n\ntransaction(nodeID: String, amount: UFix64) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.withdrawFromMachineAccount(nodeID: nodeID, amount: amount)\n }\n}\n", "arguments": [ { "type": "String", @@ -1095,12 +1095,12 @@ } ], "network": "testnet", - "hash": "55c0a1ec2dbfc7d53794017d916427fd51cad3d44b08469c13f9e02c68af27b4" + "hash": "00fd0c796d7ad5d17350861c02e9ae689e8b38aed68c3df29171a5d7dea0bc10" }, { "id": "SCO.16", "name": "Update Networking Address", - "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(\"The signer does not store a Staking Collection object at the path \"\n .concat(FlowStakingCollection.StakingCollectionStoragePath.toString())\n .concat(\". The signer must initialize their account with this object first!\"))\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", + "source": "import FlowStakingCollection from 0x95e019a17d0e23d7\n\n/// Changes the networking address for the specified node\n\ntransaction(nodeID: String, newAddress: String) {\n \n let stakingCollectionRef: auth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\n\n prepare(account: auth(BorrowValue) \u0026Account) {\n self.stakingCollectionRef = account.storage.borrow\u003cauth(FlowStakingCollection.CollectionOwner) \u0026FlowStakingCollection.StakingCollection\u003e(from: FlowStakingCollection.StakingCollectionStoragePath)\n ?? panic(FlowStakingCollection.getCollectionMissingError(nil))\n }\n\n execute {\n self.stakingCollectionRef.updateNetworkingAddress(nodeID: nodeID, newAddress: newAddress)\n }\n}\n", "arguments": [ { "type": "String", @@ -1126,7 +1126,7 @@ } ], "network": "testnet", - "hash": "3aff9b5e9802697205142a54df641417122af04f43e778c3d39bac243aec172a" + "hash": "cc163008980bb5651dad75697beb263505c24f027bdd375ab7e9105da710fca5" } ] } \ No newline at end of file diff --git a/transactions/stakingCollection/close_stake.cdc b/transactions/stakingCollection/close_stake.cdc index 29c81c56..e40e55b2 100644 --- a/transactions/stakingCollection/close_stake.cdc +++ b/transactions/stakingCollection/close_stake.cdc @@ -10,9 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/create_machine_account.cdc b/transactions/stakingCollection/create_machine_account.cdc index 8b22a2c9..4e4d901d 100644 --- a/transactions/stakingCollection/create_machine_account.cdc +++ b/transactions/stakingCollection/create_machine_account.cdc @@ -13,9 +13,7 @@ transaction(nodeID: String, prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) if let machineAccount = self.stakingCollectionRef.createMachineAccountForExistingNode(nodeID: nodeID, payer: account) { let sigAlgo = SignatureAlgorithm(rawValue: machineAccountKeySignatureAlgorithm) diff --git a/transactions/stakingCollection/register_delegator.cdc b/transactions/stakingCollection/register_delegator.cdc index 9f4c8dd6..e1e51852 100644 --- a/transactions/stakingCollection/register_delegator.cdc +++ b/transactions/stakingCollection/register_delegator.cdc @@ -9,9 +9,7 @@ transaction(id: String, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first in order to register!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/register_multiple_delegators.cdc b/transactions/stakingCollection/register_multiple_delegators.cdc index c575030a..0e1dc5c2 100644 --- a/transactions/stakingCollection/register_multiple_delegators.cdc +++ b/transactions/stakingCollection/register_multiple_delegators.cdc @@ -9,9 +9,7 @@ transaction(ids: [String], amounts: [UFix64]) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/register_multiple_nodes.cdc b/transactions/stakingCollection/register_multiple_nodes.cdc index 8e6cbde4..e7b713d6 100644 --- a/transactions/stakingCollection/register_multiple_nodes.cdc +++ b/transactions/stakingCollection/register_multiple_nodes.cdc @@ -16,9 +16,7 @@ transaction(ids: [String], prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) var i = 0 diff --git a/transactions/stakingCollection/register_node.cdc b/transactions/stakingCollection/register_node.cdc index 3dd12a05..91e476a5 100644 --- a/transactions/stakingCollection/register_node.cdc +++ b/transactions/stakingCollection/register_node.cdc @@ -18,9 +18,7 @@ transaction(id: String, prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first in order to register!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) if let machineAccount = self.stakingCollectionRef.registerNode( id: id, diff --git a/transactions/stakingCollection/request_unstaking.cdc b/transactions/stakingCollection/request_unstaking.cdc index b99c14b7..5f0346cc 100644 --- a/transactions/stakingCollection/request_unstaking.cdc +++ b/transactions/stakingCollection/request_unstaking.cdc @@ -8,9 +8,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/restake_all_stakers.cdc b/transactions/stakingCollection/restake_all_stakers.cdc index 04e08065..47787aaf 100644 --- a/transactions/stakingCollection/restake_all_stakers.cdc +++ b/transactions/stakingCollection/restake_all_stakers.cdc @@ -9,9 +9,7 @@ transaction { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/stake_new_tokens.cdc b/transactions/stakingCollection/stake_new_tokens.cdc index 71f558b6..6e6dd5e4 100644 --- a/transactions/stakingCollection/stake_new_tokens.cdc +++ b/transactions/stakingCollection/stake_new_tokens.cdc @@ -10,9 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/stake_rewarded_tokens.cdc b/transactions/stakingCollection/stake_rewarded_tokens.cdc index c9fc2a7b..69c7363d 100644 --- a/transactions/stakingCollection/stake_rewarded_tokens.cdc +++ b/transactions/stakingCollection/stake_rewarded_tokens.cdc @@ -8,9 +8,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/stake_unstaked_tokens.cdc b/transactions/stakingCollection/stake_unstaked_tokens.cdc index 6a15b697..e4f9787c 100644 --- a/transactions/stakingCollection/stake_unstaked_tokens.cdc +++ b/transactions/stakingCollection/stake_unstaked_tokens.cdc @@ -8,9 +8,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/transfer_delegator.cdc b/transactions/stakingCollection/transfer_delegator.cdc index 94f30d27..37917dde 100644 --- a/transactions/stakingCollection/transfer_delegator.cdc +++ b/transactions/stakingCollection/transfer_delegator.cdc @@ -18,9 +18,7 @@ transaction(nodeID: String, delegatorID: UInt32, to: Address) { // Get a reference to the authorizers StakingCollection self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) // Get the PublicAccount of the account to transfer the NodeDelegator to. let toAccount = getAccount(to) diff --git a/transactions/stakingCollection/transfer_node.cdc b/transactions/stakingCollection/transfer_node.cdc index 422822b8..c8c35759 100644 --- a/transactions/stakingCollection/transfer_node.cdc +++ b/transactions/stakingCollection/transfer_node.cdc @@ -18,9 +18,7 @@ transaction(nodeID: String, to: Address) { // Get a reference to the authorizers StakingCollection self.fromStakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) // Get the PublicAccount of the account to transfer the NodeStaker to. let toAccount = getAccount(to) diff --git a/transactions/stakingCollection/unstake_all.cdc b/transactions/stakingCollection/unstake_all.cdc index 85cd2ec8..d5ef4375 100644 --- a/transactions/stakingCollection/unstake_all.cdc +++ b/transactions/stakingCollection/unstake_all.cdc @@ -8,9 +8,7 @@ transaction(nodeID: String) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/update_networking_address.cdc b/transactions/stakingCollection/update_networking_address.cdc index 0c59c512..50904ff5 100644 --- a/transactions/stakingCollection/update_networking_address.cdc +++ b/transactions/stakingCollection/update_networking_address.cdc @@ -8,9 +8,7 @@ transaction(nodeID: String, newAddress: String) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/withdraw_from_machine_account.cdc b/transactions/stakingCollection/withdraw_from_machine_account.cdc index f19a3e4a..51084e7d 100644 --- a/transactions/stakingCollection/withdraw_from_machine_account.cdc +++ b/transactions/stakingCollection/withdraw_from_machine_account.cdc @@ -9,9 +9,7 @@ transaction(nodeID: String, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc index c4ba5f03..9569389c 100644 --- a/transactions/stakingCollection/withdraw_rewarded_tokens.cdc +++ b/transactions/stakingCollection/withdraw_rewarded_tokens.cdc @@ -10,9 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute { diff --git a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc index f66bb370..ef77b3ab 100644 --- a/transactions/stakingCollection/withdraw_unstaked_tokens.cdc +++ b/transactions/stakingCollection/withdraw_unstaked_tokens.cdc @@ -10,9 +10,7 @@ transaction(nodeID: String, delegatorID: UInt32?, amount: UFix64) { prepare(account: auth(BorrowValue) &Account) { self.stakingCollectionRef = account.storage.borrow(from: FlowStakingCollection.StakingCollectionStoragePath) - ?? panic("The signer does not store a Staking Collection object at the path " - .concat(FlowStakingCollection.StakingCollectionStoragePath.toString()) - .concat(". The signer must initialize their account with this object first!")) + ?? panic(FlowStakingCollection.getCollectionMissingError(nil)) } execute {