From 95c819fa8340759f202db7f9be78a6e8d8782f29 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Tue, 15 Aug 2023 16:02:51 -0500 Subject: [PATCH] WIP updates to transactions for stable cadence --- contracts/ExampleToken-v2.cdc | 75 ++++++---- contracts/FungibleTokenSwitchboard.cdc | 38 +++-- contracts/MultipleVaults.cdc | 2 +- contracts/utility/TokenForwarding.cdc | 35 +++-- lib/go/contracts/internal/assets/assets.go | 24 +-- lib/go/templates/forward_templates.go | 8 +- lib/go/templates/internal/assets/assets.go | 138 +++++++++--------- lib/go/templates/script_templates.go | 8 +- lib/go/templates/templates.go | 4 +- lib/go/templates/transaction_templates.go | 16 +- lib/go/test/forwarding_test.go | 2 +- lib/go/test/token_test.go | 20 +-- lib/go/test/token_test_helpers.go | 116 ++++----------- lib/go/test/token_v2_test.go | 23 --- transactions/burn_tokens.cdc | 2 +- transactions/generic_transfer.cdc | 2 +- .../create_private_forwarder.cdc | 2 +- .../setup_and_create_forwarder.cdc | 2 +- .../transfer_private_many_accounts.cdc | 4 +- transactions/safe_generic_transfer.cdc | 2 +- transactions/scripts/get_balance.cdc | 8 +- transactions/scripts/get_supply.cdc | 2 +- .../scripts/get_supported_vault_types.cdc | 2 +- .../scripts/metadata/get_token_metadata.cdc | 6 +- .../scripts/metadata/get_vault_data.cdc | 6 +- .../scripts/metadata/get_vault_display.cdc | 6 +- .../metadata/get_vault_supply_view.cdc | 6 +- .../switchboard/check_receiver_by_type.cdc | 2 +- .../scripts/switchboard/get_vault_types.cdc | 2 +- .../get_vault_types_and_address.cdc | 2 +- .../tokenForwarder/is_recipient_valid.cdc | 2 +- transactions/setup_account.cdc | 17 +-- .../switchboard/safe_transfer_tokens.cdc | 4 +- .../switchboard/safe_transfer_tokens_v2.cdc | 4 +- transactions/switchboard/transfer_tokens.cdc | 2 +- transactions/transfer_many_accounts.cdc | 4 +- transactions/transfer_tokens.cdc | 2 +- 37 files changed, 278 insertions(+), 322 deletions(-) delete mode 100644 lib/go/test/token_v2_test.go diff --git a/contracts/ExampleToken-v2.cdc b/contracts/ExampleToken-v2.cdc index e63d2a64..6f9b0f2a 100644 --- a/contracts/ExampleToken-v2.cdc +++ b/contracts/ExampleToken-v2.cdc @@ -1,26 +1,46 @@ -import FungibleToken from "FungibleToken-v2" +import FungibleToken from "FungibleToken" import MetadataViews from "MetadataViews" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import MultipleVaults from "MultipleVaults.cdc" -import ViewResolver from "ViewResolver.cdc" +import MultipleVaults from "MultipleVaults" +import ViewResolver from "ViewResolver" -access(all) contract ExampleToken: ViewResolver, MultipleVaults { +access(all) contract ExampleToken: ViewResolver { /// The event that is emitted when new tokens are minted access(all) event TokensMinted(amount: UFix64, type: String) /// Total supply of ExampleTokens in existence - access(contract) var totalSupply: {Type: UFix64} + access(all) var totalSupply: UFix64 /// Admin Path access(all) let AdminStoragePath: StoragePath + /// User Paths + access(all) let VaultStoragePath: StoragePath + access(all) let VaultPublicPath: PublicPath + /// Function to return the types that the contract implements access(all) view fun getVaultTypes(): [Type] { let typeArray: [Type] = [Type<@ExampleToken.Vault>()] return typeArray } + access(all) view fun getViews(): [Type] { + let vaultRef = self.account.getCapability(/public/exampleTokenVault) + .borrow<&ExampleToken.Vault>() + ?? panic("Could not borrow a reference to the vault resolver") + + return vaultRef.getViews() + } + + access(all) fun resolveView(_ view: Type): AnyStruct? { + let vaultRef = self.account.getCapability(/public/exampleTokenVault) + .borrow<&ExampleToken.Vault>() + ?? panic("Could not borrow a reference to the vault resolver") + + return vaultRef.resolveView(view) + } + /// Vault /// /// Each user stores an instance of only the Vault in their storage @@ -54,7 +74,8 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { access(all) view fun getViews(): [Type] { return [Type(), Type(), - Type()] + Type(), + Type()] } access(all) fun resolveView(_ view: Type): AnyStruct? { @@ -90,10 +111,10 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { receiverPath: self.publicPath, metadataPath: self.publicPath, providerPath: /private/exampleTokenVault, - receiverLinkedType: Type<&ExampleToken.Vault{FungibleToken.Receiver}>(), - metadataLinkedType: Type<&ExampleToken.Vault{FungibleToken.Balance, ViewResolver.Resolver}>(), - providerLinkedType: Type<&ExampleToken.Vault{FungibleToken.Provider}>(), - createEmptyVaultFunction: (fun(): @ExampleToken.Vault{FungibleToken.Vault} { + receiverLinkedType: Type<&ExampleToken.Vault>(), + metadataLinkedType: Type<&ExampleToken.Vault>(), + providerLinkedType: Type<&ExampleToken.Vault>(), + createEmptyVaultFunction: (fun(): @{FungibleToken.Vault} { return <-vaultRef.createEmptyVault() }) ) @@ -135,7 +156,7 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { /// created Vault to the context that called so it can be deposited /// elsewhere. /// - access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @ExampleToken.Vault{FungibleToken.Vault} { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @ExampleToken.Vault { self.balance = self.balance - amount return <-create Vault(balance: amount) } @@ -156,7 +177,7 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { destroy vault } - access(all) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { + access(FungibleToken.Withdrawable) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { let transferVault <- self.withdraw(amount: amount) // Get a reference to the recipient's Receiver @@ -174,13 +195,13 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { /// and store the returned Vault in their storage in order to allow their /// account to be able to receive deposits of this token type. /// - access(all) fun createEmptyVault(): @ExampleToken.Vault{FungibleToken.Vault} { + access(all) fun createEmptyVault(): @ExampleToken.Vault { return <-create Vault(balance: 0.0) } destroy() { if self.balance > 0.0 { - ExampleToken.totalSupply[self.getType()] = ExampleToken.totalSupply[self.getType()]! - self.balance + ExampleToken.totalSupply = ExampleToken.totalSupply - self.balance } } } @@ -196,7 +217,7 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { /// and returns them to the calling context. /// access(all) fun mintTokens(amount: UFix64): @ExampleToken.Vault { - ExampleToken.totalSupply[self.getType()] = ExampleToken.totalSupply[self.getType()]! + amount + ExampleToken.totalSupply = ExampleToken.totalSupply + amount emit TokensMinted(amount: amount, type: self.getType().identifier) return <-create Vault(balance: amount) } @@ -209,33 +230,29 @@ access(all) contract ExampleToken: ViewResolver, MultipleVaults { /// and store the returned Vault in their storage in order to allow their /// account to be able to receive deposits of this token type. /// - access(all) fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { - switch vaultType { - case Type<@ExampleToken.Vault>(): - return <- create Vault(balance: 0.0) - default: - return <- create Vault(balance: 0.0) - } + access(all) fun createEmptyVault(): @ExampleToken.Vault { + return <- create Vault(balance: 0.0) } init() { - self.totalSupply = {} - self.totalSupply[Type<@ExampleToken.Vault>()] = 1000.0 + self.totalSupply = 1000.0 self.AdminStoragePath = /storage/exampleTokenAdmin // Create the Vault with the total supply of tokens and save it in storage // - let vault <- create Vault(balance: self.totalSupply[Type<@ExampleToken.Vault>()]!) - self.account.save(<-vault, to: /storage/exampleTokenVault) + let vault <- create Vault(balance: self.totalSupply) + self.VaultStoragePath = vault.getDefaultStoragePath()! + self.VaultPublicPath = vault.getDefaultPublicPath()! + self.account.save(<-vault, to: self.VaultStoragePath) // Create a public capability to the stored Vault that exposes // the `deposit` method and getAcceptedTypes method through the `Receiver` interface // and the `getBalance()` method through the `Balance` interface // - self.account.link<&{FungibleToken.Receiver, FungibleToken.Balance}>( - /public/exampleTokenVault, - target: /storage/exampleTokenVault + self.account.link<&{FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver}>( + self.VaultPublicPath, + target: self.VaultStoragePath ) let admin <- create Minter() diff --git a/contracts/FungibleTokenSwitchboard.cdc b/contracts/FungibleTokenSwitchboard.cdc index 52747530..71f7b2dd 100644 --- a/contracts/FungibleTokenSwitchboard.cdc +++ b/contracts/FungibleTokenSwitchboard.cdc @@ -35,11 +35,11 @@ access(all) contract FungibleTokenSwitchboard { /// deposit methods to deposit funds on it. /// access(all) resource interface SwitchboardPublic { - access(all) view fun getVaultTypes(): [Type] + access(all) fun getVaultTypes(): [Type] access(all) view fun getVaultTypesWithAddress(): {Type: Address} access(all) view fun getSupportedVaultTypes(): {Type: Bool} - access(all) fun deposit(from: @FungibleToken.Vault) - access(all) fun safeDeposit(from: @FungibleToken.Vault): @FungibleToken.Vault? + access(all) fun deposit(from: @{FungibleToken.Vault}) + access(all) fun safeDeposit(from: @{FungibleToken.Vault}): @{FungibleToken.Vault}? access(all) view fun checkReceiverByType(type: Type): Bool access(all) view fun safeBorrowByType(type: Type): &{FungibleToken.Receiver}? } @@ -117,7 +117,7 @@ access(all) contract FungibleTokenSwitchboard { } /// Adds a new fungible token receiver capability to the switchboard - /// resource specifying which `Type` of `@FungibleToken.Vault` can be + /// resource specifying which `Type` of `@{FungibleToken.Vault}` can be /// deposited to it. Use it to include in your switchboard "wrapper" /// receivers such as a `@TokenForwarding.Forwarder`. It can also be /// used to overwrite the type attached to a certain capability without @@ -145,7 +145,7 @@ access(all) contract FungibleTokenSwitchboard { } /// Adds zero or more new fungible token receiver capabilities to the - /// switchboard resource specifying which `Type`s of `@FungibleToken.Vault`s + /// switchboard resource specifying which `Type`s of `@{FungibleToken.Vault}`s /// can be deposited to it. Use it to include in your switchboard "wrapper" /// receivers such as a `@TokenForwarding.Forwarder`. It can also be /// used to overwrite the types attached to certain capabilities without @@ -207,7 +207,7 @@ access(all) contract FungibleTokenSwitchboard { /// /// @param from: The deposited fungible token vault resource. /// - access(all) fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @{FungibleToken.Vault}) { // Get the capability from the ones stored at the switchboard let depositedVaultCapability = self.receiverCapabilities[from.getType()] @@ -230,7 +230,7 @@ access(all) contract FungibleTokenSwitchboard { /// funds if the deposit was successful, or still containing the funds /// if the reference to the needed vault was not found. /// - access(all) fun safeDeposit(from: @FungibleToken.Vault): @FungibleToken.Vault? { + access(all) fun safeDeposit(from: @{FungibleToken.Vault}): @{FungibleToken.Vault}? { // Try to get the proper vault capability from the switchboard // If the desired vault is present on the switchboard... if let depositedVaultCapability @@ -240,12 +240,12 @@ access(all) contract FungibleTokenSwitchboard { if let vaultRef = depositedVaultCapability.borrow() { // We deposit the funds on said vault - vaultRef.deposit(from: <-from.withdraw(amount: from.balance)) + vaultRef.deposit(from: <-from.withdraw(amount: from.getBalance())) } } // if deposit failed for some reason - if from.balance > 0.0 { - emit NotCompletedDeposit(type: from.getType(), amount: from.balance, + if from.getBalance() > 0.0 { + emit NotCompletedDeposit(type: from.getType(), amount: from.getBalance(), switchboardOwner: self.owner?.address) return <-from } @@ -289,7 +289,7 @@ access(all) contract FungibleTokenSwitchboard { /// `{FungibleToken.Receiver}` capabilities that can be effectively /// borrowed. /// - access(all) view fun getVaultTypes(): [Type] { + access(all) fun getVaultTypes(): [Type] { let effectiveTypes: [Type] = [] for vaultType in self.receiverCapabilities.keys { if self.receiverCapabilities[vaultType]!.check() { @@ -325,13 +325,23 @@ access(all) contract FungibleTokenSwitchboard { /// @return Dictionary of FT types that can be deposited. access(all) view fun getSupportedVaultTypes(): {Type: Bool} { let supportedVaults: {Type: Bool} = {} - let vaultTypes = self.getVaultTypes() - for vaultT in vaultTypes { - supportedVaults.insert(key: vaultT, true) + for vaultType in self.receiverCapabilities.keys { + if self.receiverCapabilities[vaultType]!.check() { + supportedVaults[vaultType] = true + } } return supportedVaults } + /// Returns whether or not the given type is accepted by the Receiver + /// A vault that can accept any type should just return true by default + access(all) view fun isSupportedVaultType(type: Type): Bool { + let supportedVaults = self.getSupportedVaultTypes() + if let supported = supportedVaults[type] { + return supported + } else { return false } + } + init() { // Initialize the capabilities dictionary self.receiverCapabilities = {} diff --git a/contracts/MultipleVaults.cdc b/contracts/MultipleVaults.cdc index f465ae11..11fb4378 100644 --- a/contracts/MultipleVaults.cdc +++ b/contracts/MultipleVaults.cdc @@ -1,6 +1,6 @@ -import FungibleToken from "FungibleToken-v2" +import FungibleToken from "FungibleToken" access(all) contract interface MultipleVaults { diff --git a/contracts/utility/TokenForwarding.cdc b/contracts/utility/TokenForwarding.cdc index 60d69d09..9675f28d 100644 --- a/contracts/utility/TokenForwarding.cdc +++ b/contracts/utility/TokenForwarding.cdc @@ -16,16 +16,16 @@ their tokens to. import FungibleToken from "FungibleToken" -pub contract TokenForwarding { +access(all) contract TokenForwarding { // Event that is emitted when tokens are deposited to the target receiver - pub event ForwardedDeposit(amount: UFix64, from: Address?) + access(all) event ForwardedDeposit(amount: UFix64, from: Address?) - pub resource interface ForwarderPublic { + access(all) resource interface ForwarderPublic { /// Helper function to check whether set `recipient` capability /// is not latent or the capability tied to a type is valid. - pub fun check(): Bool + access(all) fun check(): Bool /// Gets the receiver assigned to a recipient capability. /// This is necessary because without it, it is not possible to look under the hood and see if a capability @@ -33,10 +33,10 @@ pub contract TokenForwarding { /// malicious kinds of updates that could prevent listings from being made that are valid on storefronts. /// /// @return an optional receiver capability for consumers of the TokenForwarding to check/validate on their own - pub fun safeBorrow(): &{FungibleToken.Receiver}? + access(all) fun safeBorrow(): &{FungibleToken.Receiver}? } - pub resource Forwarder: FungibleToken.Receiver, ForwarderPublic { + access(all) resource Forwarder: FungibleToken.Receiver, ForwarderPublic { // This is where the deposited tokens will be sent. // The type indicates that it is a reference to a receiver @@ -48,10 +48,10 @@ pub contract TokenForwarding { // Function that takes a Vault object as an argument and forwards // it to the recipient's Vault using the stored reference // - pub fun deposit(from: @FungibleToken.Vault) { + access(all) fun deposit(from: @{FungibleToken.Vault}) { let receiverRef = self.recipient.borrow<&{FungibleToken.Receiver}>()! - let balance = from.balance + let balance = from.getBalance() receiverRef.deposit(from: <-from) @@ -60,7 +60,7 @@ pub contract TokenForwarding { /// Helper function to check whether set `recipient` capability /// is not latent or the capability tied to a type is valid. - pub fun check(): Bool { + access(all) fun check(): Bool { return self.recipient.check<&{FungibleToken.Receiver}>() } @@ -70,13 +70,13 @@ pub contract TokenForwarding { /// malicious kinds of updates that could prevent listings from being made that are valid on storefronts. /// /// @return an optional receiver capability for consumers of the TokenForwarding to check/validate on their own - pub fun safeBorrow(): &{FungibleToken.Receiver}? { + access(all) fun safeBorrow(): &{FungibleToken.Receiver}? { return self.recipient.borrow<&{FungibleToken.Receiver}>() } // changeRecipient changes the recipient of the forwarder to the provided recipient // - pub fun changeRecipient(_ newRecipient: Capability) { + access(all) fun changeRecipient(_ newRecipient: Capability) { pre { newRecipient.borrow<&{FungibleToken.Receiver}>() != nil: "Could not borrow Receiver reference from the Capability" } @@ -87,7 +87,7 @@ pub contract TokenForwarding { /// which can be deposited using the 'deposit' function. /// /// @return Array of FT types that can be deposited. - pub fun getSupportedVaultTypes(): {Type: Bool} { + access(all) view fun getSupportedVaultTypes(): {Type: Bool} { if !self.recipient.check<&{FungibleToken.Receiver}>() { return {} } @@ -97,6 +97,15 @@ pub contract TokenForwarding { return supportedVaults } + /// Returns whether or not the given type is accepted by the Receiver + /// A vault that can accept any type should just return true by default + access(all) view fun isSupportedVaultType(type: Type): Bool { + let supportedVaults = self.getSupportedVaultTypes() + if let supported = supportedVaults[type] { + return supported + } else { return false } + } + init(recipient: Capability) { pre { recipient.borrow<&{FungibleToken.Receiver}>() != nil: "Could not borrow Receiver reference from the Capability" @@ -107,7 +116,7 @@ pub contract TokenForwarding { // createNewForwarder creates a new Forwarder reference with the provided recipient // - pub fun createNewForwarder(recipient: Capability): @Forwarder { + access(all) fun createNewForwarder(recipient: Capability): @Forwarder { return <-create Forwarder(recipient: recipient) } } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index dc6cb6b7..e30494f3 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,16 +1,16 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../contracts/ExampleToken-v2.cdc (10.639kB) +// ../../../contracts/ExampleToken-v2.cdc (11.053kB) // ../../../contracts/ExampleToken.cdc (12.028kB) // ../../../contracts/FungibleToken-v2.cdc (11.218kB) // ../../../contracts/FungibleToken.cdc (10.016kB) // ../../../contracts/FungibleTokenMetadataViews.cdc (7.485kB) -// ../../../contracts/FungibleTokenSwitchboard.cdc (17.818kB) -// ../../../contracts/MultipleVaults.cdc (778B) +// ../../../contracts/FungibleTokenSwitchboard.cdc (18.32kB) +// ../../../contracts/MultipleVaults.cdc (775B) // ../../../contracts/utility/MetadataViews.cdc (26.308kB) // ../../../contracts/utility/NonFungibleToken.cdc (4.828kB) // ../../../contracts/utility/PrivateReceiverForwarder.cdc (2.592kB) -// ../../../contracts/utility/TokenForwarding.cdc (4.755kB) +// ../../../contracts/utility/TokenForwarding.cdc (5.29kB) // ../../../contracts/utility/ViewResolver.cdc (1.5kB) package assets @@ -81,7 +81,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x6d\x6f\xdb\x38\xf2\x7f\x9f\x4f\x31\xf5\x1f\xd8\xbf\x8d\x4d\x94\xec\x53\x6f\xd7\x88\x9b\xcd\x6e\x9b\xbb\x03\xb6\x40\xd1\x66\xbb\x2f\x8a\xa2\xa1\xa5\xb1\xcd\x8b\x44\x0a\x24\x65\xc7\x1b\xe4\xbb\x1f\xf8\x24\x91\x32\xe5\xb8\x69\x2f\x6f\x62\x4b\x9c\xe1\x3c\xfc\x66\x38\x33\x34\xad\x6a\x2e\x14\x5c\x35\x6c\x49\xe7\x25\x5e\xf3\x5b\x64\xb0\x10\xbc\x82\x51\xf4\xec\x64\xfd\xfd\xe8\xc8\x2d\x7e\x8d\x8a\x14\x44\x91\xf7\x14\x37\xd2\x2d\x8e\x9e\xb5\x2b\x23\x16\x29\xb2\xe1\x05\xdd\x6e\x4d\xa9\x68\x5d\xe2\x7b\xd2\x94\xaa\xdd\x2e\x7a\x98\xe5\x45\xde\xae\xd7\xd4\x6f\x51\xf2\x72\x8d\xc2\xad\x0e\x1f\xd9\xb5\x47\x24\xcf\x51\xca\x31\x29\xcb\x09\xe4\x9c\x29\x41\x72\x05\xaf\xee\x48\x55\x3b\x61\xa6\x11\xa3\xe3\xbe\x18\xf7\x47\x47\x00\x00\xa7\xa7\xa7\x70\xbd\x42\xc0\x35\x32\x05\x6a\x45\x14\x50\x09\x58\x51\xa5\xb0\x80\xcd\x0a\x19\x30\xdc\x80\xd2\x1c\x25\x10\x81\x50\x51\xa6\xb0\x30\xc4\xa1\x0c\x96\x81\xd9\x59\xbe\x36\x4b\xc6\xa4\xe2\x0d\x53\x53\xf8\xf3\x8a\xde\x3d\xff\xf1\x18\xd4\xb6\xc6\x29\xbc\x53\x82\xb2\xe5\x24\xd8\x9e\x2b\x52\x82\x6c\xea\xba\xdc\x02\x5f\x44\x4a\x48\xa0\x0c\xf0\x8e\x4a\x85\x2c\xc7\x70\x53\xaf\xf3\x04\xd6\x44\x80\xd2\x3c\xde\x19\x16\x53\xb8\xbf\x36\x1b\xd9\x6d\x1f\xba\x8d\x2e\x8b\x8a\x32\x78\x43\xd4\x6a\x47\xfa\x12\x95\x7d\xfd\x4e\x71\x41\x96\xa8\x17\x69\x51\xdb\x2f\x1d\x97\xab\x86\xe5\x8a\x72\x06\x8a\x83\x40\xd5\x08\x06\x6a\x85\x46\x39\x69\x0d\xa8\xbf\xb6\x2e\xa1\x5a\x97\x0a\x99\x92\x3b\x9b\xae\x29\x6e\x60\xd1\x30\x58\xa2\x32\x5e\xd1\x72\xcb\xf1\x64\x0a\x1f\xf4\xa7\x8f\x70\x6f\x48\xf4\x9f\x96\x4f\xef\x70\x29\x04\xd9\xb6\xef\x67\xf6\xc3\xf9\xaf\xa1\xc9\x32\xc3\xea\xc5\x78\xf2\xb1\xa5\xf6\x62\x7a\x06\xe6\x45\x60\x18\x43\xe1\xbf\xb5\x4f\x5f\x91\x7c\x05\x8d\x44\x01\x52\x71\x81\x12\x08\x03\xca\xa4\x22\x2c\x47\xed\x27\xce\xca\xad\xd1\xd5\x90\x6b\x47\xa9\x15\x52\xbb\x9a\x2c\x31\x82\xd7\xc2\x19\x4d\xba\x65\x8e\x86\xb0\x02\x96\x7c\x8d\x82\x61\x01\x73\xcb\xad\x16\x68\x9e\xd7\x5c\x2a\x6d\xc6\x82\x1a\xc2\x96\x1d\x65\xbd\x60\x37\x20\x55\x2b\xdc\x1a\x78\xe6\xa4\x2c\xb1\xc8\xa2\xdd\xf3\x15\xe6\xb7\x12\x56\xa4\xae\x91\x01\x51\x20\x1a\xa6\x68\x85\x86\x14\x75\x98\x91\x56\x42\x0d\xff\x1e\x8f\x96\x97\x0e\xa6\x46\xe4\xa8\x57\x30\xab\xff\x1c\x21\x17\x48\x74\xb0\x38\xcd\xb4\xe7\xf1\x4e\x69\x0b\x45\x40\xf0\xd0\xd8\xb6\xec\xb4\xb8\x05\x2e\x28\x33\xc4\xc7\x20\xb9\x7e\x2f\x50\x8b\xc0\x38\x6c\xc8\x16\x16\x5c\xcb\x56\x91\x92\xe6\x94\x37\xd2\xba\x43\x71\xb7\xa7\xb5\x62\x67\x1a\xde\xb8\x6d\x29\x03\x42\x45\x06\x97\x20\x6b\xcc\x29\x29\xc1\x84\xa4\x00\xe1\x34\x00\x86\x58\x48\xcd\x69\xde\xc9\xa0\xb8\x09\xee\x96\x5d\x17\xf8\xb1\x29\x42\x0c\xb7\x0c\x8d\x28\xd3\xd8\x35\x16\x8a\x3e\xd5\x84\x1e\x31\xf1\x0a\x73\x52\x7a\x30\xa9\x15\x95\xb0\x6e\x71\xb8\x13\x2a\x44\xf8\xd5\x3e\xb0\x8f\xfa\x0b\x25\x96\x0b\xbb\x52\x0e\x05\xf1\x20\x45\xdd\xcc\x4b\x9a\x5b\x82\x37\xed\xe7\x58\xee\xb7\x26\x8a\xa4\xf1\xaa\xdb\x01\x6a\xa2\x56\x1a\x45\x02\xcd\x63\xa3\x00\xc8\x15\x6f\xca\x42\x87\x1b\xd5\x48\x32\x20\x31\x21\x54\xa4\x75\x0b\xd2\xc0\x4b\x5c\x68\x16\x81\xcc\x3a\x1d\x04\x5f\x2f\x82\xa4\x10\x84\xb6\xd6\x24\x93\x09\x4d\x1f\x86\x75\xb0\x3a\xc7\x2a\x78\x27\x78\x1d\x56\x64\x8d\x40\xfc\xd2\x9c\xd4\x64\x4e\x4b\xaa\xb6\x87\x2a\xd2\xd9\x52\xeb\xd1\x7d\xdb\xa7\x46\xe7\x8b\x94\x16\x83\x09\x54\x9f\xb9\xc9\xdc\x19\xf0\xb7\xe9\x72\xf8\xcc\xce\xae\xae\xf5\xff\x17\xe3\xc9\x71\x44\xee\xff\x1e\x27\x7f\x49\x65\x5d\x92\xed\x17\x70\x30\x31\xf3\x92\x28\x12\xa5\xf0\x01\x0b\x68\xe5\x85\x3d\xe2\x35\xfd\xf8\x93\xb1\xc9\xd4\x6c\x33\x99\xc2\x25\xdb\xbe\x53\xa2\xc9\x55\xdf\xde\x72\x43\x55\xbe\xb2\x06\xbc\xdf\x11\x34\x27\x12\x0f\x91\xd4\x9a\x6a\x9a\x54\xd4\x59\xfc\x51\x06\xe3\x24\xb5\xfe\x5b\x28\x67\xcc\xa9\xc5\x45\xa8\xe7\xe7\x38\x62\x02\x44\x3e\xdb\x2f\x88\x5b\x7c\x91\xf6\x99\x15\xa6\xf5\xcb\x93\xc4\x09\xbd\x7a\x80\x40\xed\xf2\x8b\xa4\x44\x93\xa7\xba\xac\xb3\x4a\xda\x6b\xba\xce\xa8\xb0\xa0\x04\x66\x71\x95\x9c\xbd\xd6\x4f\x87\x9d\x65\x6c\x44\x4b\x9c\xf6\xc8\xfe\x75\x7d\xfd\xe6\x8a\x96\xb8\x9f\xb2\x11\xe5\x14\x46\x2b\xa5\x6a\x39\x3d\x3d\x25\x52\xa2\x92\xd9\x06\xe7\x92\x2a\x3c\xd1\x6c\x65\x96\xf3\xea\xf4\xa7\xc5\xf3\xef\x7f\xf9\x31\x3f\xcb\xff\x41\x7e\xce\x8b\xe2\xf9\x8f\x3f\xcc\xbf\xcb\x7f\xfe\xfe\xac\xf7\x82\xfc\xf4\x53\x3e\xff\x2e\xff\xe5\x87\xe7\x9f\xae\x4a\xbe\xf9\xf4\x17\x17\x45\x45\xc4\x6d\x26\xd7\xcb\xd1\xa0\x1c\x03\x01\xab\xff\x8c\x45\x6c\x51\x39\xa2\x15\x59\xe2\xa9\x5c\x2f\xbf\xbd\xab\xca\x34\xb7\x5d\xef\x44\xa6\x95\x69\xdb\xca\xf1\x07\xf3\xfa\x63\x9a\xfc\x90\x78\x72\xde\x1d\xb6\x35\x23\x95\xd6\xc1\x95\x8b\x2d\x33\x5b\xb6\x8f\x86\x0d\x20\xb7\xd5\x9c\x6b\x17\xbd\xba\xba\xde\xb3\xac\x40\x99\x0b\x5a\xeb\x32\x6a\x0a\xa3\x6b\x7d\x9a\x2c\xfc\x16\xa6\x90\xd0\x95\x4d\x23\xb1\x00\x62\xaa\x49\x74\x72\x28\x0e\x2b\x2c\x6b\xd8\xf2\x06\x0a\x5c\x63\xc9\xcd\x67\x01\x4c\x17\x52\x57\xd7\xf0\x7f\x9c\x69\x4f\x66\x7b\xf6\xc6\x3b\x85\x82\x91\xf2\xcf\xb7\x7f\xf4\x31\xf8\xaa\x7b\x35\x6e\x41\xe6\xf6\x3e\x59\xa8\x8c\xb3\x85\x66\xce\xc5\x72\xb4\x07\x04\x25\x5f\x72\x39\x75\x2e\xdc\x63\x2a\xae\xeb\x2d\x39\x4d\xa4\xd5\xf0\x6f\xa4\x36\xba\xc5\x12\xa3\x83\x84\x75\x8b\x4d\x10\x68\x59\x3f\xcd\x4b\x9e\xdf\xe6\x2b\x42\xd9\x28\x0d\x17\x30\x67\x46\xea\xe9\x93\x73\x47\x98\xc2\x86\xb3\x87\x29\x1f\xde\xe2\x02\x66\x51\x23\x97\x91\x3c\xd7\xdd\x60\x36\xe7\x42\xf0\xcd\xf9\x37\xa9\x96\x45\x37\xbb\xd3\x9d\x5a\x66\x58\xc1\x8b\x0b\xa8\x09\xa3\xf9\x78\xf4\xbb\xa9\x56\x18\x57\x60\xf9\x03\x01\x81\x0b\x14\xba\x6b\xd4\xf0\xf2\x35\x1b\x16\x56\xc0\x01\xab\x1d\x74\x68\x79\x33\x0c\x87\x59\x54\x7f\xf6\xd5\x19\x86\x8e\xc0\x1c\xe9\x1a\x45\x40\xd7\xd5\x42\xfb\xb2\x93\x15\xf0\x33\xc9\x6a\xc1\xd7\xb4\xf0\xbb\x9d\xd6\x82\xae\x89\x42\x1f\x17\x46\x75\xa3\xea\xe3\xf2\xfe\x41\xd9\x2d\x16\x36\x3f\x1a\x18\x25\x9c\x7b\x1f\x37\x06\x6f\x1d\xe9\xc3\x60\xa1\x14\x6a\xf6\x84\x0d\x7e\xb3\xcd\xc2\x71\x34\x04\xc9\xfc\x87\xfd\xdb\x7a\xcb\x3c\x61\xdb\x37\x8e\x74\xff\x06\xb6\x7b\x7b\x55\xd5\x6a\x6b\x98\xf8\x91\xc2\x14\xc6\x8b\x86\xe9\x22\x36\xd1\xd1\xdf\x27\x5a\xab\x87\x47\xb2\x8c\xc3\xf3\xf9\x89\x8f\xca\xac\xbf\xf5\x78\x4f\xfa\x48\xbf\x8a\x9f\x3e\xa4\xca\x6c\x46\xcb\xa1\x06\x64\x89\xea\x5d\x53\xd7\x5c\x28\x2c\xba\x99\x07\x70\x73\x68\x98\x66\x49\xb8\x16\x85\x40\x49\xa5\xe9\x67\x6d\x47\x12\x0d\x58\xa8\x6c\xd1\x67\xea\xe1\xda\x75\xc1\xb0\xa7\x43\x48\xec\xab\x4d\xed\xa6\x45\xbf\x71\x5e\xf6\xcd\xa9\xf3\x99\xf4\x54\x86\xa0\xb7\x7c\x06\xf7\xb1\x01\xe2\xd5\x1f\x4c\x30\x2e\xd1\x6c\x36\x9e\x7c\x84\x19\x28\xd1\x60\xb2\xf3\x89\x08\x0f\x6e\x7c\xa8\xdc\xd5\x6a\xac\x5a\xc4\x4e\xac\xa0\x7b\x9a\xad\x21\xbb\x7c\x50\xa6\x8b\xba\xb8\x80\x05\x29\x25\xa6\xdd\x09\x94\x51\x45\x49\x49\xff\xb6\xed\xaf\xef\xe7\x89\xea\xe6\x02\x06\x70\x66\x5c\x46\xab\x8e\x8d\x26\x1c\xf7\x1a\xfa\x49\xbf\x47\xd1\xf2\x79\x96\x33\xcf\x7c\xc7\x41\xb4\x40\xa6\xe8\x82\xa2\x80\x19\x8c\x76\xd2\xd7\x68\x97\x67\x90\x8c\x61\x16\x36\xd7\xe3\x8e\xd7\x34\xe0\x3b\x79\xb6\xcb\xa3\xcb\xb0\x30\x0b\xfa\xda\xc7\x39\xf4\xe2\xe1\x9f\xa8\x22\xd3\xb9\xa9\xd1\x9e\x49\x48\x80\x68\x97\xe4\x34\x8a\xad\x09\xf7\x38\xba\x6f\xbe\x9e\x1c\x1b\xaa\x56\x85\x20\x9b\xf0\x61\xb4\xa0\x1b\x7b\x9a\x08\x24\xb7\x76\x20\x68\x67\xbc\xae\x9e\x23\x62\xd9\x54\xc8\x54\x44\x48\x58\xd1\x72\x77\xf1\xeb\x88\xcc\x6c\xbb\x1d\x06\x66\x83\x5b\xff\x5b\xb9\x8c\xa9\x93\x82\x19\x4a\x61\x55\x73\x41\xc4\xd6\x8d\x11\xfd\xd8\xda\x94\x96\xba\x98\xe4\x65\x11\x71\x30\x03\x5a\x3b\x4f\xb6\x02\x08\x84\x39\x52\xb6\x04\x25\x08\x93\x0b\x14\x02\x8b\x4c\x6f\x24\x82\x01\x09\xc3\x4d\xb9\x8d\xf8\xf8\x51\x9f\xdb\x96\x47\x03\x3f\xc3\xd9\x8e\x0e\x41\x72\xa0\xca\x4c\x09\xcd\x7c\xad\xe6\xba\x93\x89\x65\xc2\x52\xa2\x19\xbb\xa4\x15\x77\x3e\x8f\x93\xfe\x5f\xce\x8e\x64\x5e\xa2\x6d\xfe\xbd\x65\x7b\xc3\xf6\xa7\x1f\x21\xbd\xa8\x8b\xbe\x9e\x38\xcf\xa5\x40\x76\x7e\x12\xce\x24\xbb\xd8\xb6\x14\x93\x21\xdc\x39\xdb\x7c\x1e\xec\x9c\xfd\xf9\xfc\x3f\x98\xf7\xb1\x67\xf0\x46\x8a\x42\x46\x6c\xa8\x92\x6d\x88\x39\xb7\xf5\x22\x8e\x6f\x18\x0a\x79\x00\x14\xa9\x04\x52\x96\x7c\x63\xa1\x56\xa0\x54\x82\xdb\xc9\xb5\xd4\xdb\x5b\xd1\xe6\x98\x93\x46\x62\x87\xee\x38\xd8\xb4\xc8\x01\x8a\x35\x5e\x51\x78\x49\xdc\xc8\xd5\xcc\x49\x0d\xed\xff\x77\xb2\xaf\x48\xac\xd7\x1c\x91\x69\x00\xca\xa6\xd2\x5d\x15\x2b\xec\x04\x79\xc1\xcd\x24\xdc\xa1\xcf\x48\xe8\xe7\xd9\x03\x38\x6b\xa7\x49\xce\x21\xae\x16\xff\x35\x09\x99\x7e\xa6\x6e\xeb\x7e\x38\x3f\xb1\x51\x4d\xe4\xb3\x14\x00\x0f\x46\xda\xb7\x96\xdf\x4e\xd6\xd2\x7f\xd1\x1b\x98\xc1\x59\x76\x16\xbd\xf7\x2e\x89\x73\xe8\x9e\x01\x9a\xcf\x01\x3b\x17\x56\xbe\xc4\x98\xc2\xef\xed\xe4\xf3\xfc\x9b\xc1\x52\x36\x65\x16\xcf\xfb\xbd\x37\x8f\x51\x73\x27\x6a\x7d\x94\x44\xf4\xee\x78\x48\xb4\x32\x02\x73\x5a\x53\x64\x1a\x1a\x7e\xff\x9d\xad\xbd\xf4\xb6\x19\xf3\xdf\x5c\x03\x96\xa8\xfb\xf6\x74\x53\x6d\xad\xb5\x57\x92\xf7\xae\xb3\xea\x2b\xf1\xd2\x42\xca\xac\xf7\x9a\x33\x9f\x8f\xdd\xad\x49\xc8\x47\xa4\x34\x0a\xb4\xc9\x62\x8c\x9e\x9f\x44\x46\x1e\x4c\x35\xfd\xd2\xf7\xc0\x9c\x13\x1f\x3d\xd6\x8f\x5a\x0b\x20\x61\x0a\xf9\x1b\x05\xdf\x39\xf6\xfc\x61\x42\xbb\xb3\x82\x94\xa5\x3e\x76\xdc\x99\x91\xc1\xa5\xbd\xd2\xa9\x1a\x69\xcf\x0e\x5b\xdb\xfa\xcb\xa8\x1d\x8e\xa6\x87\x75\x06\xd3\xbc\xdb\xb3\xa8\x7f\xfb\xa6\x1f\x70\x51\xd8\xdb\x22\x93\xaf\xec\xfb\x98\xa3\xed\xc9\xdd\x35\x10\xb1\x63\x1a\x6f\x69\x9f\x09\x64\x7b\x3d\x63\x47\x38\xba\x30\x3c\x2c\x95\xec\xf6\x1a\x4f\x3e\x95\x1e\x39\x64\xce\xb2\xb3\xa4\xdb\x5d\x2a\x18\xf7\x23\x93\x2e\xe2\x74\xf3\x42\x73\x48\xf4\x52\x91\xb0\xc1\x1d\x73\xa2\xb0\x3f\x74\xe9\x33\x38\x49\x17\x64\x10\x75\x53\xf6\x53\x70\x47\x6b\x2f\xf0\x8e\x60\xe0\x4a\xd2\x1f\x86\xf6\x98\x34\x8e\x22\xe6\xba\xdb\xf9\xd8\x5e\x59\xea\x83\xc6\x5f\xf3\x7d\xde\xf5\x9e\xbb\x3f\xbc\x8f\xf0\xa3\xd9\xd8\x6b\xfa\x03\x63\x49\x13\xc8\x60\xe3\x63\x73\x52\x6b\x64\x56\x3e\x42\x54\xf0\x6b\x80\xe3\xc1\x88\x0a\x29\xfa\x31\x75\x10\x36\x3b\xd1\x0f\xaa\x9c\x7a\xd8\xf8\x9f\xe0\xe2\xdb\x54\x75\x85\x15\x1d\xf8\x55\x85\xfd\xef\x7f\x55\x11\x73\xcb\x82\xd6\xe3\xcb\x8a\xb5\x1e\x0a\x93\x39\x34\xc4\xe3\x17\xe5\xce\xaf\x9b\x37\xbf\x6e\xce\xfc\x0a\xf9\x32\x15\x60\xc9\x3c\xb9\xf6\x8d\x78\xdb\xc5\xa7\xeb\xb0\x00\x95\xfe\x42\xcf\x53\xf6\x00\xdb\x8d\x78\xd3\xbf\x15\xd9\x9d\xe7\xb6\x48\x81\x03\x52\x2e\x98\x5c\x6b\x6e\x7c\xbf\x90\x53\x84\x38\x33\x25\x08\x73\xb7\x41\x79\x10\x44\xf1\x00\xa6\xff\x76\xef\x8f\x63\x60\x06\xdf\x9d\x9d\xe9\xda\x31\xa6\xef\xff\x0a\x08\x66\x70\xea\xf0\x11\xcd\x46\xed\x8f\x89\xa2\x69\xc8\xef\x56\xbd\xee\xe7\x2d\x06\xea\xfd\xa4\x66\xe0\xe1\x7e\x4e\xa5\xd1\x49\xd6\xa8\x81\x4e\x59\xf4\xc3\x19\xcb\xb2\xfd\x18\x55\xd8\x69\x33\x7e\x96\xf6\xcf\x26\xb1\xd6\x7e\x3a\xaf\xa5\x19\xbb\x71\xe1\x31\x28\x3e\x4d\x2b\xef\x0a\xad\x84\xf2\x89\xdf\x0a\xf4\xe6\xef\x41\xcb\x8e\x77\x35\x97\x18\x1e\x1e\x66\xe1\x8d\x8b\xa4\x1b\xa8\x50\xad\xb8\xed\x6b\x96\xa8\x2e\xcd\xa0\xcf\x8d\xc8\xfc\x3b\xb5\x12\xbc\x59\x5a\x33\xdf\xf8\x5a\xf8\x06\xcc\x71\xb5\x20\x79\x68\x4d\xdf\x1f\xc1\x4d\x38\x3b\xb9\x49\x72\x72\xaf\xd3\x8c\xd2\xb6\x2b\x29\xbb\x1d\xec\x0e\x8e\x21\x39\x9f\x7e\x78\x11\xdf\x22\x9c\x5a\xeb\x3d\x36\x85\x57\x44\x2c\x51\xed\x73\x4e\xbb\x3c\xf0\x92\x06\x91\x2d\x0a\x3a\x10\xd9\x73\x7d\xbc\x1f\x0e\x86\xc8\xc2\x21\x19\x23\x13\x17\xb4\x0f\x47\xf0\xdf\x00\x00\x00\xff\xff\x4f\xf0\x46\x99\x8f\x29\x00\x00" +var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x3a\x5b\x6f\xdb\x46\xd6\xef\xfe\x15\x27\xfa\x80\x7e\x12\x6a\xcb\xee\x2d\xdb\x0a\x76\xdc\xb4\x89\x77\x17\x68\x81\x20\x71\xd3\x87\x20\x48\x46\xe4\x91\x34\x6b\x72\x86\x98\x19\x4a\x56\x0d\xff\xf7\xc5\x99\x0b\x39\x43\x91\xb2\xec\xf4\x6d\xf9\x22\x91\x9c\x73\xe6\xdc\x6f\x43\x5e\x56\x52\x19\xb8\xaa\xc5\x92\xcf\x0b\xbc\x96\x37\x28\x60\xa1\x64\x09\xa3\xe4\xd9\xe8\xc8\xaf\xfc\x1d\x0d\xcb\x99\x61\xef\x39\x6e\xb4\x5f\x99\x3c\x6b\x56\x26\xf0\x7d\x60\xc3\x0b\xda\xdd\xea\xc2\xf0\xaa\xc0\xf7\xac\x2e\x4c\xb3\x5d\xf2\xb0\x59\x4b\x90\x6f\x51\xcb\x62\x8d\xca\xaf\x8c\x1f\x8d\x8e\x8e\x58\x96\xa1\xd6\x63\x56\x14\x13\xc8\xa4\x30\x8a\x65\x06\x5e\xdf\xb2\xb2\xf2\x44\xcc\x52\x24\x77\x47\x47\x00\x00\xa7\xa7\xa7\x70\xbd\x42\xc0\x35\x0a\x03\x66\xc5\x0c\x70\x0d\x58\x72\x63\x30\x87\xcd\x0a\x05\x08\xdc\x80\x21\x0c\x1a\x98\x42\x28\xb9\x30\x98\x5b\xe0\x78\x4f\x87\xc0\xee\xa4\x7f\xb7\x4b\xc6\xac\x94\xb5\x30\x33\xf8\xe3\x8a\xdf\x3e\xff\xfe\x18\xcc\xb6\xc2\x19\xbc\x33\x8a\x8b\xe5\x24\xda\x5e\x1a\x56\x80\xae\xab\xaa\xd8\x82\x5c\x24\x44\x6b\xe0\x02\xf0\x96\x6b\x83\x22\xc3\x9d\x4d\xd7\x4c\x81\x21\xf0\x77\x16\x3a\x6c\xd5\xe2\x7e\x99\x97\x5c\xc0\x1b\x66\x56\x3b\xb0\x05\x1a\xf7\xfa\x9d\x91\x8a\x2d\x91\x16\x11\x75\xcd\x4d\x8b\xe5\x0f\x8d\xca\x22\xd1\xbd\x58\xac\xae\x06\xb1\x0c\x42\xbc\xa9\xe7\x05\xcf\x1c\x40\xfb\xbf\xdd\xf5\xaa\x16\x99\xe1\x52\x80\x91\xa0\xd0\xd4\x4a\x80\x59\xa1\x95\xa2\x76\x9a\xa2\xdb\x46\xd7\x9c\x84\x56\xa2\x30\xbb\x44\xae\x39\x6e\x60\x51\x0b\x58\xa2\xb1\x5b\x5f\x13\x8e\xf1\x64\x06\x1f\xe8\xdf\x47\xb8\xb3\x20\x74\x11\x75\xb4\xc3\x4b\xa5\xd8\xb6\x79\x7f\xe1\xfe\x9c\xff\x1c\xeb\x66\x6a\x51\xbd\x18\x4f\x3e\x36\xd0\x81\xcc\x80\xc0\xbe\xb8\x3f\xda\x4f\x10\x39\xc5\x20\x2d\x6b\xda\xe3\x2d\x2e\xe0\x02\x34\x16\x8b\x29\xcb\x32\x32\xaa\xe9\x12\xcd\xaf\xac\x62\x73\x5e\x70\xb3\x1d\x9f\x56\x56\x7e\xa7\x18\x91\x67\xa9\x9b\x34\xc8\xe8\x9a\xce\xa5\x52\x72\x73\xfe\x55\x2f\x1b\xc9\xd2\xcb\x4b\xa8\x98\xe0\xd9\x78\xf4\xab\xac\x8b\x1c\x84\x34\xe0\xa0\x81\x81\xc2\x05\x2a\x32\x48\x52\x0d\x29\xc1\x52\x09\x2a\x78\x63\x8b\xaa\x2b\x99\xc0\xce\xb4\x65\x7c\x48\x46\x24\x1e\x8f\x91\x56\x8e\x3f\x59\xa9\xcd\x80\xa4\x34\x99\xc1\x4b\xb1\x7d\x67\x54\x9d\x99\xcb\xff\x11\x89\xc5\xb2\x20\x49\x24\x82\x23\x7f\xb1\x54\x85\xbb\xe6\xe9\x6b\x96\xad\xa0\x26\x07\xd6\x46\x2a\xd4\xc0\x04\x70\xa1\x0d\x23\x62\xe4\x02\xa4\x28\xb6\x96\x22\x0b\x4e\xe1\xc6\xac\x90\xbb\xd5\x6c\x89\x49\x90\x5c\x78\x8f\xd4\x7e\x99\x87\x61\x22\x87\xa5\x5c\xa3\x12\x98\xc3\xdc\x61\xab\x14\xda\xe7\x95\xd4\x86\x7c\x34\xe7\x16\xb0\x41\xc7\x45\x27\x2f\xd9\x50\x6b\x56\xb8\xb5\x41\x36\x63\x45\x81\xf9\x34\xd9\x3d\x5b\x61\x76\xa3\x61\xc5\xaa\x0a\x05\x30\x03\xaa\x16\x86\x97\x68\x41\x91\x62\x3a\x6b\x28\xa4\x20\xde\xc1\xd1\xe0\xa2\x14\x50\xab\x0c\x69\x85\x70\xfc\xcf\x11\x32\x85\x8c\x42\xbe\xe7\x8c\xc2\x0a\xde\x1a\x92\x50\x12\x65\x42\xdc\xd9\x36\xe8\x88\xdc\x1c\x17\x5c\x58\xe0\x63\xd0\x56\xc1\x0a\x89\x04\x21\x61\xc3\xb6\xb0\x90\x44\x5b\xc9\x0a\x9e\x71\x59\x6b\xa7\x0e\x23\xfd\x9e\x4e\x8a\xad\x68\x64\xed\xb7\xe5\x02\x18\x57\x53\x78\x09\xba\xc2\x8c\xb3\x02\x6c\x62\x51\xd6\x6c\x88\x03\x10\x88\xb9\x26\x4c\xf3\x96\x06\x23\x6d\x8a\x6a\xd0\xb5\xe9\x2b\x15\x45\xec\x6b\x0d\x42\x4b\xca\x2c\x55\x8d\x33\xf7\x90\x30\x63\x8d\xd8\xd4\x03\x73\x56\x04\x63\x32\x2b\xae\x9d\xc5\x36\x6b\xbb\xe9\xca\xaf\x4e\x53\x55\xb4\x90\x7c\xd6\xad\xd4\xfb\x32\x4a\x2f\x44\xb5\x27\xa3\xb4\xda\x27\xb7\xd2\x56\xab\x7e\x07\xa8\x98\x59\x91\x15\x29\x8c\x7c\x53\xaf\xac\x1b\x9b\x6d\xc5\xc9\x92\xac\x91\x58\x17\xca\xfb\x79\x8b\x42\xfa\x2b\x5c\x74\x52\x22\xc5\xf7\xe8\x36\x8e\x59\x91\xaf\xdb\x78\xa5\x7b\x38\xbd\x1f\xe6\xc1\xf1\x9c\xb2\x10\x94\x10\x78\x58\xb1\x35\x02\x0b\x4b\xb3\x26\x0a\x1e\xca\x48\x2b\x4b\xe2\xa3\xbd\xdb\xc7\x46\xab\x8b\x3e\x2e\x1e\x9f\x0c\x23\xfc\x2e\x17\x0f\x57\x98\xd3\xab\x6b\xfa\x7d\x31\x9e\x1c\x27\xe0\xe1\x7a\x18\xfc\x15\xd7\x55\xc1\xb6\x5f\x80\xc1\xfa\xcc\x2b\x66\xd8\x93\x71\x5c\xb7\x75\x5d\x52\x63\x0c\x48\xf1\x29\xe9\x92\x2e\xbd\xe1\x26\x5b\x39\x25\xdc\xed\x10\x9a\x31\x8d\x87\x70\xeb\xc4\x3d\xeb\x65\xd4\x6b\xed\x41\x04\xe3\x5e\x68\xba\x16\xc6\x2b\x64\xe6\x6c\x2b\xe6\xf3\x31\xca\x9c\x00\xd3\xcf\xf6\x13\xe2\x17\x5f\xf6\xeb\xcc\x11\xd3\xe8\xf6\x49\xe4\xc4\x96\x71\x00\x41\xcd\xf2\xcb\x5e\x8a\x26\x4f\x55\x59\x2b\x95\x7e\xad\x51\x29\x55\x62\xce\x19\x5c\xa4\x7d\xe1\xf4\x77\x7a\x3a\xac\x2c\x2b\x23\x5e\xe0\xac\x03\xf6\xaf\xeb\xeb\x37\x57\xbc\xc0\xfd\x90\xb5\x2a\x66\x30\x5a\x19\x53\xe9\xd9\xe9\x29\xd3\x1a\x8d\x9e\x6e\x70\xae\xb9\xc1\x13\x42\xab\xa7\x99\x2c\x4f\x7f\x58\x3c\xff\xf6\xa7\xef\xb3\xb3\xec\x1f\xec\xc7\x2c\xcf\x9f\x7f\xff\xdd\xfc\x9b\xec\xc7\x6f\xcf\x3a\x2f\xd8\x0f\x3f\x64\xf3\x6f\xb2\x9f\xbe\x7b\xfe\xe9\xaa\x90\x9b\x4f\x7f\x4a\x95\x97\x4c\xdd\x4c\xf5\x7a\x39\x1a\xa4\x63\xc0\x61\xe9\xb2\x12\xb9\xb6\x7d\xdc\x88\x97\x6c\x89\xa7\x7a\xbd\xfc\xfa\xb6\x2c\xfa\xb1\xed\x6a\x27\x11\xad\xee\x97\xad\x1e\x7f\xb0\xaf\x3f\xf6\x83\x1f\xe2\x4f\x5e\xbb\xc3\xb2\x16\xac\x24\x1e\x7c\x59\xdb\x20\x73\x0d\xec\x68\x58\x00\x7a\x5b\xce\x25\xa9\xe8\xf5\xd5\xf5\x9e\x65\x39\xea\x4c\xf1\x8a\x4a\xb1\x19\x8c\xae\x29\x23\x2d\xc2\x16\xb6\x18\xa1\xea\xa8\xd6\x98\x03\xb3\x15\xa9\x2f\xc3\xa9\x78\x59\x61\x51\xc1\x56\xd6\x90\xe3\x1a\x0b\x69\xff\x2b\x10\x54\x8c\x5d\x5d\xc3\xff\x49\x41\x9a\x9c\xee\xd9\x1b\x6f\x0d\x2a\xc1\x8a\x3f\xde\xfe\xd6\xb5\xc1\xd7\xed\xab\x71\x63\x64\x7e\xef\x93\x85\x99\x4a\xb1\x20\xe4\x52\x2d\x47\x7b\x8c\xa0\x90\x4b\xa9\x67\x5e\x85\x7b\x44\x25\xa9\x66\xd3\xb3\x9e\xb0\x1a\x5f\x23\xb3\xe1\xc6\xa0\x1a\x1d\x44\xac\x5f\x6c\x9d\x80\x68\xfd\x34\x2f\x64\x76\x93\xad\x18\x17\xa3\x7e\x73\x01\x9b\x33\xfa\x9e\x3e\x39\x76\xc4\x21\x6c\x38\x7a\x44\x8d\x58\xd2\x3d\x85\x86\x6c\x5f\x6b\xb5\x50\xb2\x9c\xed\xd4\x43\xc3\x0c\x3e\xae\xf9\x72\x65\x9c\x23\x70\x40\x6a\x07\x25\xad\x20\x86\x61\x37\x4b\x6a\xd8\x2e\x3b\xc3\xa6\xa3\x30\x43\xbe\x46\x15\xc1\xb5\xf5\xd4\xbe\xe8\xe4\x08\x7c\x24\x58\xa5\xe4\x9a\xe7\x61\xb7\xd3\x4a\xf1\x35\x33\xb8\xdb\x1a\x3f\x4c\xef\x6f\x5c\xdc\x60\xee\xe2\xa3\x35\xa3\xfe\xbe\xf9\x61\x0e\xbe\x18\x51\xe0\xe9\x8b\x11\xb9\x1e\xed\x75\x59\x99\xad\x5d\x1c\xa6\x52\x33\x18\x2f\x6a\x41\xa5\xea\xcf\x77\x3d\xed\xd2\xfd\x03\x5e\xef\xed\xeb\xfc\xa4\xe9\xef\xbb\x1b\x8d\xf7\xb8\x73\xff\xab\xf4\xe9\x7d\x5f\xe9\x2c\x78\x31\xd4\x54\x2c\xd1\x50\xb5\x29\x95\xc1\xbc\x1d\x92\x81\xb4\x41\xdc\x36\x40\xca\xb7\x1d\x0c\x0a\xae\x6d\x8f\xea\xba\x8c\x64\x22\xc7\x75\x63\x0d\xb6\x3e\xad\x7c\x67\x0b\x7b\xaa\xfe\x9e\x7d\x49\xb0\x77\x4e\x6d\xbf\x48\x59\x74\xc5\x49\xf1\x45\x07\x28\x0b\xd0\x59\x7e\x01\x77\xa9\x00\xd2\xd5\x1f\xac\x73\x2c\xd1\x6e\x36\x9e\x7c\x84\x0b\x30\xaa\xc6\xde\x6e\x26\x01\x3c\xb8\x99\xe1\x7a\x97\xab\xb1\x69\xec\x70\xe2\x08\xdd\xd3\x40\x0d\xc9\xe5\x83\xb1\x9d\xd1\xe5\x25\x2c\x58\xa1\xb1\x5f\x9d\xc0\x05\x37\x9c\x15\xfc\x2f\xd7\xd2\x86\x1e\x9d\x99\xb6\xd7\xb7\x06\x67\xe7\xab\xbc\x6c\xd1\x10\xe0\xb8\xd3\xa4\x4f\xba\x3d\x03\xd1\x17\x50\x5e\x04\xe4\x3b\x0a\xe2\x39\x0a\xc3\x17\x1c\x15\x5c\xc0\x68\x27\x9c\x8c\x76\x71\x46\xc1\x11\x2e\xe2\x86\x79\xdc\xe2\x9a\x45\x78\x27\xcf\x76\x71\xb4\x11\x0f\x2e\xa2\x5e\xf5\x61\x0c\x1d\x7f\xf8\x27\x9a\x44\x74\x7e\x12\xb4\x67\xba\x11\x59\xf4\x2f\x0e\x88\xac\xd8\x89\x70\x8f\xa2\xbb\xe2\xeb\xd0\xb1\xe1\x66\x95\x2b\xb6\x89\x1f\x26\x0b\xda\x39\xb9\xf5\x40\x76\xe3\x86\x7c\xee\xf4\xc1\xd7\x57\x4c\x2d\xeb\x12\x85\x49\x00\x99\xc8\x1b\xec\xde\x7f\x3d\x90\x3d\x61\x69\x06\x7c\xd3\xc1\xad\xff\x6d\x7c\x7c\xa4\xa0\x60\x07\x4d\x58\x56\x52\x31\xb5\xf5\xa3\xc1\x70\xa0\x62\x4b\x3d\x2a\xee\x64\x91\x27\x18\xec\x44\xdf\x9d\x74\x38\x02\x14\xc2\x1c\xb9\x58\x82\x51\x4c\xe8\x05\x2a\x85\xf9\x94\x36\x52\xd1\xd0\x43\xe0\xa6\xd8\x26\x78\xc2\xf8\xce\x6f\x2b\x93\x21\x9e\xc5\xec\xc6\x81\xa0\x25\x70\x63\x27\x7f\x76\x66\x56\x49\xea\x2c\x52\x9a\xb0\xd0\x68\x47\x29\xfd\x8c\x7b\x9d\xa7\x41\xff\x4f\x2f\x47\x36\x2f\xd0\x35\xe3\x41\xb2\x9d\x63\x20\x4a\x18\xbb\x29\x68\xbf\x83\x25\xb7\x27\x5e\x49\x7d\xf6\x74\x7e\x12\x8f\x14\x5b\x37\x76\x10\x93\x21\x13\xf3\x62\x78\x9c\x85\x79\x51\xcb\xf9\x7f\x30\xeb\x9a\x99\x35\x2d\x96\xe7\x3a\x41\xc3\x8d\x6e\xbc\xc9\x6b\xa8\xe3\x5c\x72\x23\x50\xe9\x03\xac\x8e\x6b\x60\x45\x21\x37\xce\xaa\x72\xd4\x46\x49\x37\x78\xd6\xb4\xbd\x23\x6d\x8e\x19\xab\x35\xb6\x86\x9c\xfa\x15\x91\x1c\x19\x2c\x99\x26\xaa\x40\x89\x9f\x98\xda\x31\xa7\x85\xfd\xff\x96\xf6\x15\x4b\xf9\x9a\x23\x0a\xb2\x35\x5d\x97\xd4\xd0\x88\xdc\x0d\x80\x17\xd2\x0e\xb2\xbd\xa1\x59\x0a\xc3\x38\x7a\xc0\xa4\x9a\x41\x8e\x57\x88\x2f\x83\xfb\x0b\x8c\x6e\x50\x6e\x4a\x6e\x38\x3f\x71\x0e\xcc\xf4\xb3\x3e\x5b\x3b\xd8\xd2\xbe\x76\xf8\x76\x02\x14\x5d\xc9\x1b\xb8\x80\xb3\xe9\x59\xf2\x3e\xa8\x24\x0d\x97\xbb\x49\xf3\x21\x2f\x0a\x51\x60\xe7\x30\x35\x14\x19\x33\x68\x4f\x75\xce\xbf\xea\x48\xea\xad\x5f\x74\xff\xa2\x4f\x5a\x01\xf7\xfb\x20\x35\xcb\xfd\x8e\xdf\x06\xe7\x49\xe0\x7d\x82\xe8\x69\x2e\x14\x66\xbc\xe2\x28\xc8\x62\xc2\xfe\x3b\x5b\x07\xea\x5d\x7b\x14\xee\x7c\x4b\xd4\x53\xf9\xed\xe9\x6f\x9a\x6a\x6b\x2f\x25\xef\x7d\xaf\xd3\x65\xe2\x95\xb3\x34\xbb\x3e\x70\x2e\x42\x44\xf6\x67\x21\x31\x1e\xd5\xc7\x51\xc4\xcd\x34\x35\xdd\xf3\x93\x44\xc8\x83\x11\xa8\x5b\xfc\x1e\x18\x8a\xd2\xe4\xe3\xf4\x48\x5c\x00\x8b\x23\xcb\x5f\xa8\xe4\x4e\xe2\x0b\xe9\x84\xb7\xd9\x82\x15\x05\x25\x1e\x9f\x35\xa6\xf0\xd2\x1d\xd4\x94\xb5\x76\xd9\xc3\x55\xb7\xe1\x88\x69\x07\xa3\xed\x2a\xbd\xc0\x08\x77\x93\x8d\xba\x67\x6a\xf4\x40\xaa\xdc\x9d\x01\xd9\x30\xe6\xde\xa7\x18\x5d\x97\xec\x0f\x77\x98\x1b\x9c\x04\x49\x87\x00\xa1\x9b\x43\x17\x37\x54\xa1\xd2\xf0\xb0\x08\xb3\xdb\x6d\x1c\x92\x97\x1e\x48\x33\x67\xd3\xb3\x5e\x0d\xfb\x60\x30\xee\x3a\x21\x5f\xa4\x01\xe7\x05\x61\xe8\x69\x9c\x12\xba\xa2\xef\x1d\xba\x93\x85\xf8\xd5\x49\x7f\x71\x05\x49\x67\xe4\xfe\x45\x67\xa8\xee\x80\xed\x08\x06\x8e\x0c\x43\xb6\x73\x79\xd0\x8a\x9c\xd9\x2f\x2c\xbc\xb6\xdc\x91\x22\x65\x92\x70\x0c\xf7\xb8\xe3\x37\x7f\xbe\x77\x97\x58\x02\xa1\x71\x1f\x83\x1c\xe8\x15\x04\xa0\xa3\x8d\x8f\x6d\x2a\x26\x1b\x2b\x83\xad\x9b\xe8\x9b\x93\xe3\x41\xdf\x88\x21\xba\xde\x71\x90\x95\xb5\xa4\x3f\xa5\x0a\x7a\x8a\xda\xbf\xee\xab\x8e\xb0\xe4\x03\x9f\xe6\xb8\xdf\xf0\x69\x4e\xda\x14\x4e\xa3\x2e\xe1\xcb\x8a\xad\x8e\x91\xf5\x06\xbb\xd8\xdc\xbe\x28\xc8\xfd\xbd\x01\xee\xef\x0d\x6e\x7f\x43\x60\xeb\xf3\x9f\xa7\x05\xb4\x46\x8d\xf0\x40\x34\xf3\xaa\xb3\x9d\x71\x1c\xc2\xac\xb9\xa4\x76\xf9\xcd\xd9\x19\x55\x42\xe9\x92\xee\x57\x56\x70\x01\xa7\x5e\x5a\xc9\x90\xcd\x7d\xac\x95\xb4\xf1\xbf\x3a\xca\xda\x6f\x2d\xac\xe2\xbb\x1e\x6c\x85\xe5\xbf\x50\x23\x5d\xb1\x35\x92\xda\xb9\x48\xbe\xe2\x70\x28\x9b\xbf\x49\xbd\xd8\x2f\x81\x2e\x83\x93\x94\xaf\xee\x77\x5f\x70\xe1\xcb\xc2\x81\x23\xf0\x67\x3d\xe0\x6f\xe2\x6e\xbd\x0b\x1d\x9f\x3b\x77\x80\xc3\x10\x99\x78\x1d\xfb\x29\xda\x31\x18\x39\xeb\x27\x6d\xd2\x27\xd5\x9e\x13\xf1\xce\x84\x38\x6a\x62\xf1\xb6\x92\x1a\xe3\x10\x6c\x17\x7e\xf6\x06\xfb\x19\x4a\x34\x2b\xe9\xca\xff\x25\x9a\x97\x76\xf4\xe5\x87\x46\xe1\x9d\x59\x29\x59\x2f\x9d\xfe\x3e\x87\xda\xf0\x33\xd8\xa0\xbf\x60\x59\xac\xa6\xd0\x46\xc0\xe7\x78\x9a\xf0\xb9\x17\x93\x7f\xdd\x8f\xa8\x5f\x6c\x05\x17\x37\x83\xd5\xf2\x71\xe7\xfb\x0f\x8f\xff\x38\xf9\x80\x72\x1a\xfe\xdc\xbf\x18\xef\x76\x14\x1d\xdd\xa6\xe3\x55\xc3\xd4\x12\xcd\x80\xa6\x9a\x95\x91\xca\xc8\x54\x5d\x9e\x6d\x4d\xd5\xa5\xca\xf1\x64\xaf\x59\x58\xa0\xc8\x2c\xba\x9e\x18\xfc\xfb\xfe\x08\xfe\x1b\x00\x00\xff\xff\x37\x20\x0d\x37\x2d\x2b\x00\x00" func exampletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -97,7 +97,7 @@ func exampletokenV2Cdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleToken-v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0x89, 0x59, 0xa, 0x45, 0x26, 0x91, 0xe0, 0xfe, 0x35, 0xa1, 0x41, 0x6f, 0x55, 0xb6, 0xd5, 0xaa, 0x40, 0x62, 0xc4, 0x1d, 0xa0, 0x4d, 0xbd, 0x15, 0xfa, 0x1e, 0xba, 0x1, 0x7b, 0xed, 0xa7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x33, 0x87, 0xed, 0xf4, 0x63, 0xf7, 0x7c, 0x8c, 0xb2, 0xd0, 0x4a, 0xe7, 0x97, 0xee, 0xde, 0x70, 0x41, 0xbe, 0x1f, 0xd1, 0xdb, 0x2, 0x40, 0x88, 0xc9, 0x27, 0x1d, 0x4b, 0x69, 0x70, 0x4}} return a, nil } @@ -181,7 +181,7 @@ func fungibletokenmetadataviewsCdc() (*asset, error) { return a, nil } -var _fungibletokenswitchboardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\xcf\x8f\xe3\xb6\xee\xbf\xcf\x5f\xc1\xce\xe1\xbb\x19\x20\x4d\x7a\xf8\xe2\x1d\x06\x9d\xee\xcf\xb7\x45\x2f\x7d\x45\x3b\x7d\x7b\x58\x2c\x30\x8a\x4d\x4f\x84\x71\x24\x43\x92\x93\x4d\x17\xfb\xbf\x3f\x50\x92\x6d\xc9\x96\x1d\x67\x76\x5e\x7f\x3c\x34\x87\x76\x93\x89\x28\x92\x22\xf9\x21\x45\x3a\x7c\x57\x49\x65\xe0\x6d\x2d\xee\xf9\xa6\xc4\x5b\xf9\x80\x02\x0a\x25\x77\x70\x19\x7d\x76\x79\x71\xb1\x5e\xaf\xe1\x76\x8b\x90\x49\x61\x14\xcb\x0c\x98\x2d\x33\xc0\xca\x52\x1e\x34\x30\x01\x2c\xcb\x64\x2d\x0c\x18\x09\x0a\x33\xe4\x7b\x84\x8a\x1d\x77\x28\x8c\x06\x2e\x60\x57\x97\x86\x57\x25\x42\xe1\xe9\x5a\x82\x86\x88\x6b\xa8\x35\x17\xf7\xc0\x80\xfe\x57\x22\xdc\x7d\x8a\x36\x5f\xfd\xec\xe8\xa9\xcf\x77\x90\xb1\x8a\x6d\x78\xc9\xcd\x71\xe5\x39\xe2\x3a\xf8\x10\xf4\x56\xd6\x65\x0e\x3c\x47\x56\x96\x47\xd8\x20\x68\x23\x15\xe6\xc0\x88\x61\x04\xbb\xe8\x2e\x22\xff\xcb\x81\x9b\x6c\xbb\x91\x4c\xe5\xed\x4e\x3f\xd5\x9b\x92\x67\x3f\x31\xb3\x85\x1b\x58\x57\xf6\xdd\xfa\x7b\x14\xa8\x78\xf6\xf6\xb6\xf9\xd6\x9d\xa5\xb6\xa9\x0d\x70\x03\x19\x13\xe1\x76\xe2\x78\xd8\xa2\x42\xc7\xe5\x05\xcb\x32\xd4\x7a\xc1\xca\xf2\xaa\x53\xe0\x18\x17\xf0\xe9\x02\xe0\x02\x00\x60\xbd\x86\x5f\x8c\x54\xec\x1e\x81\x89\x1c\x1c\x57\x40\x6c\x69\xfb\xf7\x90\x6c\x89\xa6\xf9\x32\x7d\xe1\x3a\x7c\x93\xfc\x72\x27\xe3\x75\xf0\xef\xe4\x57\x87\x6a\x89\x96\x78\x5e\x9d\x7d\xe0\x1e\x85\x37\x0e\xae\x01\x77\xdc\x18\xcc\xe1\xb0\x45\x01\x0c\x04\x1e\x60\xcf\xea\xd2\x84\x67\xc6\x35\xb0\x3c\xc7\x9c\x4c\x87\xb5\xb4\x74\xa0\x10\x85\x5a\xd6\x2a\xc3\x55\xfb\xd7\x01\x9b\x6e\xdb\x7f\x13\xed\xd7\x2d\xe9\x97\x44\x76\x61\x8e\x15\x5e\xc3\xed\xb1\xc2\x65\x48\xf5\x5f\x07\x81\xea\x1a\x5e\xe6\xb9\x42\xad\x9f\x2f\x1d\xcd\x53\xaf\x8e\xef\xde\xfa\xab\x33\xd4\x90\x52\x81\xc2\x9d\xdc\x63\xee\xbc\x8f\xc1\x93\xea\xe1\x67\x47\x3b\xd2\xc4\x97\xab\xe2\xc9\xd4\x91\x63\x25\xb5\x77\x21\x21\x0d\xb9\x51\x26\x77\x55\x89\x06\xf3\x93\xa2\xfe\x28\xcd\xeb\xe6\xcb\x6f\x1c\xa1\x48\x4e\xb6\xa3\xb0\x74\x0d\xbf\xbe\xe5\x1f\xff\xf1\xff\x33\x45\x1b\xd7\x4d\x4f\x2e\x2e\x0c\xaa\x82\x65\xe8\x64\x43\x51\x48\x95\xa1\xb6\xb1\x66\x87\x66\x2b\x9d\x55\x53\x94\xa4\x98\x20\x05\xd2\xfb\x6c\x8b\xd9\x03\x48\x41\x5f\x6b\xc9\xb1\x3d\xe3\x25\xdb\x94\xd8\x29\x95\xa3\x06\x59\x50\x60\x4c\x18\x81\x0d\x09\xac\xd4\x12\xf0\x63\x25\xb5\xdf\xb4\x25\xd7\x28\xd5\x71\xa1\x69\xdb\xe6\xa3\xa2\x16\xb9\xa6\xed\xb9\x99\x50\x6f\xbb\x4f\x27\x63\x10\xa4\x7c\x2c\xfa\xd4\xaa\x33\x5c\xba\xe7\x78\xa0\x5d\xe0\x1e\x8d\x35\x45\x3a\x0a\xbd\xb8\xba\x86\xf7\xf4\xaf\x0f\x67\x2c\x7a\xc7\xcd\xd6\xeb\x9e\xd6\x7f\xba\xb5\x47\xeb\x3f\xf9\x7c\x92\xd0\x2f\x75\x45\x08\x87\x79\xcc\x86\x27\xf3\x4a\xca\x32\x4d\x83\x96\x7b\x75\x2d\xc8\x23\xaf\xe1\x45\x8c\x49\x96\xde\xd5\xe8\x5a\xcd\x0a\x7c\x73\x7a\x7d\xfa\xe3\xe7\xd3\x62\x59\xeb\x69\x42\xf2\xab\x23\x89\x12\x58\xfc\x95\x13\x6b\x9a\x04\xb1\xf7\x4a\x2a\x25\x0f\xa9\xf5\xff\x37\x86\xbf\x8e\xb1\xcf\xb1\x0b\xb4\x76\x62\x3d\xc0\xe2\x9f\xb7\xff\x3e\xe4\x3b\xb8\x6f\xd2\x03\xd5\xd9\x6a\x68\xf0\x4b\xe7\x2d\x94\x10\x10\x11\x49\xee\x67\x7d\x28\xcf\xad\xc5\xbb\x38\x49\x7f\xdb\x39\x0f\x68\xbd\x6a\x60\xfa\x4c\x1c\xfb\x7b\xb3\x9d\xf4\x84\x3b\x77\x23\xd9\xf5\x1c\x47\x08\xcc\xff\x1a\xd2\x2a\x5a\x4e\xf9\x48\x7b\x26\xb4\xcd\x1b\x9e\x19\x2e\x05\x53\x47\xd8\xca\x32\x6f\xe4\x1d\xd3\x55\xac\xa2\x88\x12\x17\x39\x7e\xc4\x1c\x36\xc7\x14\x05\x87\x35\x24\xe3\x2a\x5a\xd5\x37\x90\x26\x2d\xb9\x82\x3d\x53\xed\xbe\xaf\x83\x6d\x5b\xb7\xe9\x80\xe5\xdb\x51\x53\xf9\xce\x5b\x49\xb3\xdd\xcb\x3c\xd7\x3e\x01\x38\x29\xe2\x91\x4e\x93\x44\x09\xc3\x5e\x44\x2d\x06\xc2\x81\x48\xf4\xe6\x45\xc5\x14\xdb\x05\x44\xaf\x5d\xfa\x1a\x6d\xe2\x22\x27\x30\xc8\x50\x19\xc6\x45\x97\x9d\x86\xa4\x42\x45\x06\x31\xd4\x9e\x1f\x98\xad\x92\xf5\xfd\x76\x2a\x69\x25\xc7\x88\x08\x1e\x78\x59\x12\xca\xb5\x69\x4f\x4f\xd8\xe9\x93\x6a\x83\x0c\xcb\xf3\x1f\xf1\x60\x43\xc6\x22\x94\x73\xd6\xf9\x5c\x05\xb1\xdb\xed\x04\x2e\x22\x00\x03\x85\x05\x2a\x14\x19\x36\xbc\x39\xd9\x2b\x49\x50\x60\x19\xf6\xb6\x16\x68\xf3\x80\xd0\xa7\x77\x60\xae\x1e\xb0\x31\x01\xb8\xd0\x3c\xc7\xbe\xa8\xd1\x1a\xca\x35\xed\x56\x3f\x63\x01\x37\x61\xb2\xbf\xb1\xac\x2d\xae\xc6\xe1\xfb\xf9\x73\xa8\x98\xe0\x19\x2c\x2e\x5f\x33\x61\xd3\x08\x27\x4e\x24\x8c\x13\xc4\xe6\x58\x1d\xf5\xcb\xab\x3e\xe7\xaf\x2d\x40\xf3\x82\xb8\x25\xd6\xc9\x74\x2b\x85\x7b\x2e\xeb\xa8\xdc\x28\xa4\x02\x43\x25\x88\x35\x91\x25\xad\x10\xd2\x44\xd4\x78\x01\x0b\x8d\x65\xb1\x4a\xb9\xd4\xfb\x46\xda\xd5\x3d\x5a\x74\x5a\x5c\x7d\x80\x9b\x1b\x10\xbc\xec\x9f\x8f\xe7\xac\xd6\x18\x9c\x48\x20\xdb\xb1\x42\x60\x1a\x1e\xd0\x71\x45\x3a\x6f\x62\x4a\x8a\x4e\x20\x04\x45\x51\xb3\x45\x31\xf8\xda\x99\x6c\x07\x34\x53\x3b\x52\xd2\x67\xd9\x09\x73\x41\x91\xf3\x8c\x19\x0b\x18\x54\x4d\xda\xf8\x10\xb0\xb6\x65\x1a\x36\x88\x22\x29\x82\xf5\x9e\xc1\x1f\xec\x36\x13\x75\xc0\x90\xf5\xe5\xec\x6c\xb7\xd1\xcb\x20\x3b\xb4\x9a\xb2\x50\xf5\x7c\xc5\x5c\x6e\x72\x46\x12\xdd\xbe\x06\xd9\x74\xe0\x01\x9e\x6c\x6c\xaa\x9f\x01\x4b\x8d\x69\x4b\xf9\xa1\xb1\xde\x03\xd3\xc0\x4a\x85\x2c\x3f\x52\xa4\xeb\x5b\x2f\x55\xc6\xce\x7a\xad\xff\x0c\x48\xd9\x4f\x17\x97\xb7\xad\x27\xb4\xa4\x9c\x0d\x72\x9b\xc6\x86\xb8\xd7\x73\x8b\x9e\x7b\x75\x09\xd7\x08\x44\xd4\xbb\x0d\x2a\xca\x7b\x67\x81\x05\xe5\xc8\x9b\xa3\xbb\x42\x88\xa3\xf6\x16\xa1\xa2\x52\x19\x6c\x25\x4e\xef\x8f\xc0\x54\x53\xa2\xc7\x31\x36\xf1\x4a\xa1\x89\xa5\xe7\x80\xa4\x47\x1a\xdc\x25\x41\xcc\xd7\xd8\x6e\x9e\x9a\x3f\x52\x47\xcf\xbf\x21\xb9\xbb\xbc\xc7\xbf\x09\x89\x9e\x8f\x0d\xfa\xd5\x91\xca\xf4\x85\x67\xfe\x7d\x57\xb9\x7f\x58\x76\x3c\xf8\x94\x3a\x01\x0b\xdf\xa3\xf3\xdb\xe6\x86\x67\xae\xcc\x83\xd0\xee\x64\xba\xa1\xbc\xfc\xa5\xa3\xb5\x48\x5a\xf5\x7a\x0d\x6f\xa5\x02\x64\xd9\xd6\xaa\x79\x49\x2b\x1c\x70\x30\x2a\x91\x7b\xb1\xcb\xc3\x8b\x19\xe0\x0f\x17\x43\x68\x7d\xa6\x47\x6c\x28\x6f\xf3\xb1\x88\x0c\x99\x32\xf1\x40\x66\xee\x8e\x7c\xe8\x6c\x24\x5b\xc0\xd3\x8d\x13\x94\x02\xcc\x2c\x24\xb6\x07\x73\x95\x72\xe1\x2f\x02\xe4\x64\xcc\x3c\xe0\xf9\xa8\x0c\x61\x3c\xf1\x3b\x53\x4c\x71\xf8\x8a\x39\xe8\xda\x1a\x5f\x51\x97\xe5\x71\xb5\x5a\x0d\x16\xf3\x62\x0e\xb2\x0f\xf5\xea\x37\x5e\xad\x56\x74\xcc\x21\x1a\x0b\x99\x84\x63\x97\x4f\xb5\x61\x6d\x8c\xa0\x0d\x25\xc9\x3f\xce\x03\xeb\xaf\xe6\xa1\x75\xb0\xe3\xaf\x4f\x81\xda\x01\xbd\x09\xa4\x6d\x5e\xe7\x8a\x31\x87\x26\x81\xae\xc8\xe7\x23\x79\xc2\x06\x93\x42\x74\x38\x9f\xc6\xf4\xe6\xf5\x08\x6c\x9f\x46\xe1\xa7\x40\xf2\x01\x68\x27\x63\x5a\xf3\xfa\x3c\xf8\xf4\xf3\x79\xe8\xf8\xb4\x05\x14\xe8\x0a\x33\x5e\x1c\xc9\xe8\x0e\x5b\x9e\x6d\xe1\x8e\x14\x77\x47\xc8\x73\x97\xba\x9b\xb8\x6b\x2e\xba\x23\x72\xbe\x2a\x72\xa1\x88\x9b\x95\x35\x78\x6e\xc3\x0c\x17\x59\x59\xe7\x14\x68\xe0\x28\x6b\x15\xb1\x74\x79\x50\xac\xaa\x50\x5d\xf6\x78\x73\xf2\x68\x0a\x2c\x5b\x72\x0f\x06\x77\x2f\x2c\x0f\x6f\xa5\x3a\x30\x45\xc5\xf2\xca\xff\x13\xd5\xdd\x0a\x7e\x70\x77\x87\xf6\x32\x6c\x13\xd7\x6e\xb5\x76\x4c\xc9\x3d\xaa\x83\xe2\xc6\xf9\xa1\xf3\x3b\x63\x58\xb6\xf5\xf7\xce\x6d\x05\x18\x96\x34\xdc\x6c\x65\x6d\x62\x51\xb7\x6c\x6f\x3d\x54\x76\x37\x11\x2c\x0a\xff\x05\x57\xda\x44\x28\xfd\xbf\x59\x97\xa6\xa4\xf2\xd7\x48\x8d\x86\x65\xd1\xb7\x55\xaf\x2c\x6b\x41\x91\xd1\x0c\x78\xe9\x14\xb2\x04\xc5\x28\xf2\xd3\x77\x5c\xae\xe9\x6d\xd4\x96\x71\xc6\x5e\x41\x35\x01\xb5\xc5\x24\xfa\x5b\x44\x4f\x33\x9e\xa7\x62\xdc\xdc\x2c\xea\x9d\x33\xd5\xf3\x0b\xed\xc7\x14\x02\x23\xaf\xe0\x96\x6e\x98\xa6\x85\x35\x6b\xaf\xb7\x70\x90\xea\x21\x4c\x8f\xad\xa8\x5a\xa3\x0a\xef\x0d\x56\xf6\x5e\x91\x42\xe6\x0e\xb5\x66\xf7\x78\x0d\x97\x2e\xd1\xd5\x3a\x4e\xba\x2c\x00\x13\x9e\x97\x3c\x1f\xd6\xce\x0d\xd6\x59\x0b\xb0\x66\x81\x06\x55\x88\x72\x31\x83\xd1\xfa\x71\xd4\x22\x72\x13\x30\xf5\xa4\x05\x66\xb2\xb8\x3c\x05\x3e\xf4\xdf\xbf\x68\x29\x99\x82\x9a\xdf\x50\x49\x90\x0a\x76\x94\x25\xce\xae\xc4\x7c\xcc\x88\x43\x66\xb2\x7b\x31\x02\x3c\x7a\x1c\x79\x74\x8f\x6c\x2a\x8c\xfc\x45\xb0\x47\x47\xe0\x33\x80\x1e\xd2\xe4\x5c\xf0\x21\x9c\x88\x16\x0e\xf1\x27\x65\x1f\xff\xfd\xea\xd6\xca\xd9\x81\x41\x5b\xd9\xf6\x11\x41\xc6\x87\x28\x45\x57\xf8\xfd\x91\x55\xb3\x8f\xf7\x93\xc5\xb3\x17\xd1\x35\xb5\x9e\x24\xce\xff\x5d\x8e\x9f\x2e\xc7\xf9\xf2\xfc\x8a\xfc\xf4\xd1\xfc\x5d\xb3\x47\xaf\x61\xcd\xfe\xc5\xd6\x7d\x56\xd1\xff\x64\x15\xf3\xe9\x6a\x79\x3a\xe7\xd0\xef\xf9\x87\x19\xe5\xf1\x13\x95\xc6\x67\x97\xc5\x73\xb2\x12\x12\x61\x22\x3a\x7d\x69\x0e\x72\x5e\x01\xfc\xd8\xfa\xd7\xcd\xb0\x10\x1e\xcf\x28\x7f\xdb\xca\x20\xe5\x1f\x4f\xd9\x40\x1c\x70\xe3\xdb\xad\x83\x5c\x20\x1a\xef\x79\x5c\xbb\xcf\x91\xf8\xf3\xb7\xfb\x7c\x6a\x32\x79\x06\x30\xab\xdb\xf7\xfb\x34\xfb\x46\x43\x8d\x84\x82\xbb\xde\x58\xef\xd4\x9d\x84\xf3\x0a\x97\x95\xfb\xf2\xe2\x01\x8f\xa9\x0b\xaa\x01\x37\xff\x7c\xca\x2a\xc6\x5b\xdd\xc9\x3a\x26\x1e\x10\xfb\xab\xb7\xc8\xfc\x57\x83\x48\x02\xfd\x8f\xec\xf0\x0a\x7b\x48\xc5\x13\x67\x06\x76\xd4\x44\xd6\xa4\x73\x57\x4b\xd8\x04\x4b\xc9\x0a\x55\xb7\x20\x71\x1b\x93\x8c\x46\x52\x35\x09\x2e\x41\x15\x37\xa7\xa3\x8e\x9b\x19\xa2\x78\xd3\x65\xc6\x49\x3e\x4f\x04\xb2\x47\xcc\x34\x8d\x67\x9c\xa9\x00\x2b\x05\xea\xde\x8c\xed\x94\xbf\xb7\xd2\xf4\x0c\xf0\x1c\x4b\xb8\x99\x40\x6c\xe2\x2b\xbc\xd6\x1e\x90\x0d\x22\x47\xac\x5d\xdf\xcc\x74\x57\x1b\xdd\x70\x90\xbd\x49\xe3\x3a\x14\x6a\x18\x41\x7c\x24\x8d\xaf\xa2\xbc\xcd\xe4\xa8\xb9\x6a\xe8\x4f\xc5\xbf\x47\xe5\x57\x63\xfa\x9c\x31\x30\xd1\x57\xc7\xeb\x66\xfa\x72\x14\x16\xda\x20\xd9\xd3\x40\x1b\x2f\x62\xeb\xfa\xf6\x6b\xfa\xff\xe8\x2d\xc3\x49\xf7\x33\xca\xdf\x28\x58\x3f\x1c\xb8\x61\x44\x6c\x4e\x4e\x10\x7b\xa1\x2f\x45\xf3\xfe\x34\x15\xdb\x4b\x6e\xa7\xb1\xac\x5e\x1e\xac\xc3\x86\x59\x74\xdf\x42\xc6\x2b\xed\x94\x5f\xef\x9b\x31\xc4\xf8\x96\xd4\x32\x63\x9a\xe4\x81\x62\x3c\x81\xa9\xf6\xc5\x71\xfa\xaa\x7d\x2a\x88\x28\x34\xb5\x12\xe7\xc4\x8f\x65\x7b\xe1\xd0\xcc\xa4\x06\xaa\xcd\x75\xa3\x83\xe6\x9a\x99\x6a\x89\xae\x84\x58\x82\xcd\xc4\x79\x59\xda\xe9\x76\xc6\x45\xa4\xe1\x88\x9c\x27\x34\x30\x2e\x81\x98\xb7\x6e\x48\xe4\x49\xcb\x85\xac\xc5\xdc\xf4\xe8\xcb\x46\x2e\x87\x51\xef\x56\x59\xac\x6f\x6a\x5d\x1f\xfb\x07\xa3\xdb\x27\xd3\x9c\xae\x0c\x8b\x42\x01\x19\x52\xa5\x50\x13\xc8\xbb\x49\xe0\x28\x25\xec\x95\x64\xbe\x1c\x1b\x73\xf7\xd9\xb1\xe3\x9c\xd8\x99\x9c\x2a\x79\x87\x60\x9c\x62\xc6\xe3\x44\x90\x77\x4d\x5c\xf5\x76\xba\x39\xa0\xbb\xcb\x9b\x26\x38\xaf\x4a\x7d\x4c\x18\x3d\x1d\x44\x47\xcb\xd4\x77\x9d\x4b\xb4\xe6\x4e\xc7\x69\xbb\x0d\xc3\x90\xdf\xbc\x26\x23\xe6\x8a\x3c\x31\x57\xec\xb0\x68\x66\xd7\xed\xa7\x1b\x56\x32\x91\xe1\xd5\x30\x2b\x1e\xab\xa0\x3c\x8f\xbc\xe8\xba\x43\x8c\x97\xbe\x43\xae\xe5\x8e\xbc\x90\x69\x29\xfa\x96\x16\x6e\x07\xdf\xc1\x37\xab\x6f\x12\x0a\xb0\x69\xe4\xf8\xf0\x7d\x6c\x4c\xdd\x18\x7e\x48\xfb\xfc\xfc\x6f\x56\x5a\x79\x15\xaf\x19\xec\xe1\x83\xa3\x53\xf6\x84\xea\x72\xd4\x46\x49\xef\xe1\x17\x09\x0a\x82\x97\x63\xe0\x66\x9b\x31\x3e\x5d\xef\xd7\x0f\xbc\x69\x39\xda\xe8\xcf\xb5\x6b\xa4\x9c\x6a\xad\xcd\x41\x8e\x43\x7c\x1b\x7c\xb4\x41\xb5\x41\x11\xdb\xde\xc1\x89\x7d\xbc\x54\x0c\x36\x52\x96\xc8\x04\xec\x98\x6d\x1b\x0d\x72\x3f\xa9\x1a\xe6\x99\x67\x9e\xe2\x7f\x38\xf8\xf8\xf8\xb9\xf5\x9e\xa5\xf1\xe2\x74\x4b\xc8\x0e\x60\x24\x2c\xd4\xcb\x53\xb0\x52\x63\xef\x98\x53\xa7\x79\x62\x9f\xaf\x9a\xfe\xd8\xd8\x91\x7f\x8f\x46\x7b\x68\xf3\xc9\x07\xd3\x9a\xdf\x8b\xe6\xb4\x2b\x25\xf7\xbc\x83\xb8\xe1\x44\xb6\x7d\x96\x8d\xd2\x0b\x24\xe5\x31\x75\x84\x0d\x66\xac\xd6\xd8\x42\x33\x37\x4b\x4a\x83\x7c\x0a\x52\x49\xad\x3d\x9e\x43\x29\xe5\x03\xd4\x22\x47\xd7\x5d\xdb\x4a\xe9\xa6\xe5\x35\x22\xe9\x90\x8d\x75\x3e\xb9\x7b\xc0\x44\x00\x7e\xac\x30\xb3\xd5\xbe\x35\x2c\x7b\x9c\x2b\xc7\xd2\x16\xcb\x4a\xc3\x7d\xcd\x54\x0e\xec\x9e\x71\xa1\xa9\x22\x2d\xb8\xe0\x06\xcb\x23\x64\x5b\xc6\x49\xc8\x5e\x93\x84\x68\x48\xdb\xb6\xe5\xc2\xd9\x48\xb4\xf1\x8e\x95\x3c\xb3\xf3\x3b\x0f\xdc\xc6\xcc\x02\xea\x2a\xef\x6a\xdc\xcc\x3e\xc7\x57\x29\x57\x05\x97\x5c\x53\xd2\xa6\x9d\x2f\x6e\x90\xe8\xef\x58\xee\x9b\xef\x4c\x61\x63\x86\xc2\xd5\x22\x85\x92\xc2\xe8\x93\xed\xea\xdf\xcf\xa7\x04\xc8\xca\xde\x67\x97\xa3\xb9\x69\x26\x85\xae\x77\xa8\xda\x66\x46\xd8\xad\x6a\x1e\x1a\x5a\x5b\x39\x99\xf1\x85\x09\x72\x05\xf2\x20\xa6\xfd\xee\xb1\x0f\x7b\x0c\x5d\xf1\x2b\xeb\x23\xe3\x7e\x6c\x12\x9d\x69\x48\xc7\xcb\x2f\xf0\xc3\xc1\xed\x50\xbf\x7d\x49\x39\x9b\x71\x75\xba\x9f\x85\x90\xf0\x20\xe4\xc1\x37\x1a\xfd\x43\xa7\xdd\x70\xc5\xe9\x29\x19\x97\xab\x55\x4c\x39\x67\xf6\xdc\x4d\xd8\x57\x90\x80\x3f\xe0\x51\x77\xc9\x50\xd7\xd7\xa0\x63\xf6\x85\x73\xb4\x76\xce\xd3\xaf\xbc\x75\x13\xd7\x03\xc5\xa2\xc0\xcc\xf0\x3d\xf9\x63\x44\xac\xb9\xef\x4f\xb3\x7a\xce\x33\x5b\xbd\x63\xa5\xb4\xab\xdd\xf5\x36\xec\x83\xc1\x0d\xbc\xff\x30\x68\xda\xb4\xae\x06\x7c\xe2\x88\x57\x56\x59\x43\x03\x9a\x84\x81\x96\x74\x17\xa3\x47\x12\xb6\x98\xe1\x15\xab\x2a\x14\xf9\xa2\x5d\x7f\x5e\x66\xe5\x8f\x38\xa6\xf9\x87\xdb\x24\xb0\x52\x8a\x7b\x8b\x18\xae\x4b\xe8\x1b\xa4\xb6\x4b\x18\xdf\x57\xd9\xc0\xe6\x37\x6e\x26\x7f\xd2\xd5\x65\xd2\xb6\x5f\x86\xb6\xbc\x63\x55\xd5\xa4\x0a\x13\x06\x1c\x33\x40\xd6\xe0\x33\xfc\x36\x28\xda\x54\xee\x99\x6e\xf9\x7e\xa4\xdd\x4e\x3f\x36\x78\xd2\x96\x83\xe5\xc3\xc5\x37\xf0\x69\x90\x63\xb7\xc3\x37\xb6\x4b\x1a\xcf\xca\x94\xbc\x77\x57\xfc\xa7\xf1\x07\xdf\xb4\x72\xb3\x08\xc1\x05\x4b\xef\x10\x66\xf8\x52\xa0\xb0\x60\xff\x73\x6e\xb5\xe6\xc9\x33\xc6\xd1\xd9\x8e\x1a\x30\x7c\x86\xcf\x52\xc8\x75\xe4\x5c\xaa\xe7\x47\x18\xec\x78\x83\x6e\x1e\x35\x75\xdd\x12\xfb\x48\xb7\xbf\x5b\x89\xc8\x3a\x87\x1f\x0c\xaf\xb8\xdf\x40\x20\xa2\xcf\xfc\x87\xcf\xda\x8d\x4f\x3b\xe3\x9b\x08\x56\xde\xde\x7a\x9e\x92\xe3\x76\xab\x93\x7e\x34\xe3\xa9\x59\xf8\x04\x03\x1f\xd2\xd1\x32\xdd\x5b\x30\x70\x9b\xb6\x72\xb7\x1b\x34\x57\x13\x3d\xf8\x19\x71\x1c\xf2\x9a\x60\xed\xd0\xbc\x7b\xbc\xac\xb8\xb0\xe3\x6e\x5d\x17\xe6\x76\x09\x46\xd5\x38\xf6\x6c\x4a\x60\x38\x3d\x52\x29\x73\xa1\x5c\x78\xe0\x65\xeb\x35\xfc\x20\xb8\xe1\xac\xe4\xbf\xe1\x60\x22\x65\x6c\xc2\x61\xd4\x0f\x62\x05\xfa\xcd\x83\x67\x71\xdf\x46\x56\xea\x7f\x98\x83\xf2\x46\x85\x94\x2f\xba\xa6\xd1\xa6\x64\xe2\x21\xba\x68\x82\x97\x50\x6b\x54\xb0\xab\x35\x99\x4a\x59\xb6\x04\xad\x0d\xb7\xb6\xdf\x8d\x76\xb8\x78\x4d\xaa\xc1\x3c\x7c\x4a\xdc\xe7\xa3\xda\xfd\xee\x44\xfb\x40\xed\x45\xdf\xd2\x6c\x2d\x68\x99\x0a\x9e\x19\x22\xfb\x7a\xd1\xff\x11\x8c\xe8\x18\xbe\xfd\xda\x4b\x12\xad\x0a\xb5\x30\x38\x05\xab\xcb\xe0\x77\x30\xe0\x06\xd6\x9e\xbd\x75\x31\xf2\xeb\x1b\xf1\xe2\xe4\x0f\x81\x8c\x2d\x75\x5f\x8e\x09\x9c\xf7\x8b\x22\x8d\x34\x9f\x2f\xfe\x13\x00\x00\xff\xff\xbf\xd0\x98\x62\x9a\x45\x00\x00" +var _fungibletokenswitchboardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5f\x73\xe3\x36\x0e\x7f\xcf\xa7\x40\xf3\x70\xeb\xcc\xa4\x76\x1f\x6e\xee\x21\xd3\x74\xff\xde\x76\xfa\xd2\xeb\x6c\xd3\xdb\x87\x9d\x9d\x09\x2d\x41\x31\x2f\x32\xa9\x21\x29\x7b\xdd\x9d\x7c\xf7\x1b\x90\x94\x44\x4a\x94\x2c\x67\x73\xfd\x73\x53\x3d\xec\xc6\xb6\x08\x02\x20\x80\x1f\x40\x50\xe2\xdb\x4a\x2a\x03\x6f\x6b\x71\xc7\xd7\x25\xde\xc8\x7b\x14\x50\x28\xb9\x85\xf3\xe8\xbb\xf3\xb3\xb3\xd5\x6a\x05\x37\x1b\x84\x4c\x0a\xa3\x58\x66\xc0\x6c\x98\x01\x56\x96\x72\xaf\x81\x09\x60\x59\x26\x6b\x61\xc0\x48\x50\x98\x21\xdf\x21\x54\xec\xb0\x45\x61\x34\x70\x01\xdb\xba\x34\xbc\x2a\x11\x0a\x4f\xd7\x12\x34\x44\x5c\x43\xad\xb9\xb8\x03\x06\xf4\x5f\x89\x70\xfb\x39\x9a\x7c\xf9\xce\xd1\x53\x0f\xb7\x90\xb1\x8a\xad\x79\xc9\xcd\x61\xe9\x39\xe2\x3a\xf8\x12\xf4\x46\xd6\x65\x0e\x3c\x47\x56\x96\x07\x58\x23\x68\x23\x15\xe6\xc0\x88\x61\x04\x3b\xe8\x36\x22\xff\xf3\x9e\x9b\x6c\xb3\x96\x4c\xe5\xed\x4c\x3f\xd5\xeb\x92\x67\x3f\x31\xb3\x81\x6b\x58\x55\xf6\xd3\xea\x7b\x14\xa8\x78\xf6\xf6\xa6\xb9\xeb\xd6\x52\x5b\xd7\x06\xb8\x81\x8c\x89\x70\x3a\x71\xd8\x6f\x50\xa1\xe3\xf2\x8c\x65\x19\x6a\xbd\x60\x65\x79\xd1\x29\x70\x8c\x0b\xf8\x7c\x06\x70\x06\x00\xb0\x5a\xc1\xcf\x46\x2a\x76\x87\xc0\x44\x0e\x8e\x2b\x20\xb6\xb4\xfd\x3d\x24\x5b\xa2\x69\x6e\xa6\x1b\xae\xc2\x0f\xc9\x9b\x3b\x19\xaf\x82\xbf\x93\xb7\x0e\xd5\x12\x0d\xf1\xbc\x3a\xfb\xc0\x1d\x0a\x6f\x1c\x5c\x03\x6e\xb9\x31\x98\xc3\x7e\x83\x02\x18\x08\xdc\xc3\x8e\xd5\xa5\x09\xd7\x8c\x6b\x60\x79\x8e\x39\x99\x0e\x6b\x69\xe9\x40\x21\x0a\xb5\xac\x55\x86\xcb\xf6\xd7\x01\x9b\x6e\xda\x7f\x13\xed\xd7\x2d\xe9\x97\x44\x76\x61\x0e\x15\x5e\xc1\xcd\xa1\xc2\xcb\x90\xea\xbf\xf6\x02\xd5\x15\xbc\xcc\x73\x85\x5a\x3f\xbf\x74\x34\x8f\x5d\x1d\xdf\xbd\xf1\x17\x27\xa8\x21\xa5\x02\x85\x5b\xb9\xc3\xdc\x79\x1f\x83\x27\xd5\xc3\x3b\x47\x3b\xd2\xc4\x97\xab\xe2\xc9\xd4\x91\x63\x25\xb5\x77\x21\x21\x0d\xb9\x51\x26\xb7\x55\x89\x06\xf3\xa3\xa2\xfe\x28\xcd\xeb\xe6\xe6\x37\x8e\x50\x24\x27\xdb\x52\x58\xba\x82\x5f\xde\xf2\x4f\xff\xf8\xfb\x4c\xd1\xc6\x75\xd3\x93\x8b\x0b\x83\xaa\x60\x19\x3a\xd9\x50\x14\x52\x65\xa8\x6d\xac\xd9\xa2\xd9\x48\x67\xd5\x14\x25\x29\x26\x48\x81\xf4\x39\xdb\x60\x76\x0f\x52\xd0\x6d\x2d\x39\xb6\x63\xbc\x64\xeb\x12\x3b\xa5\x72\xd4\x20\x0b\x0a\x8c\x09\x23\xb0\x21\x81\x95\x5a\x02\x7e\xaa\xa4\xf6\x93\xb6\xe4\x1a\xa5\x3a\x2e\x34\x4d\xdb\x7c\x55\xd4\x22\xd7\x34\x3d\x37\x13\xea\x6d\xe7\xe9\x64\x0c\x82\x94\x8f\x45\x9f\x5b\x75\x86\x43\x8b\x5a\xc0\x1d\x1a\x6b\x85\xb4\x0a\x7a\x71\x71\x05\x1f\xe8\xaf\x8f\xc9\xfb\x77\x1c\xf7\xc3\x41\xef\xb9\xd9\x78\xb5\xd3\xf8\xcf\x37\x76\x55\xfd\x37\x0f\x47\x09\xfd\x5c\x57\x04\x6e\x98\xc7\x6c\x78\x32\xaf\xa4\x2c\xd3\x34\x68\xb8\xd7\xd4\x82\x9c\xf1\x0a\x5e\xf4\xf0\xc8\x12\x7c\xb8\x18\x1d\xad\x59\x81\x6f\xe6\x50\x18\xfb\xe1\xf9\xb4\x70\xd6\x7c\x9a\x98\xfc\xea\x40\x02\x05\x26\x7f\xe1\x84\x9b\x26\x41\x2c\xbe\x92\x4a\xc9\x7d\x6a\xfc\xdf\xc6\x00\xd8\x31\xf6\x10\xfb\x40\x6b\x28\xd6\x05\x2c\x00\x7a\x07\xe8\x63\xbe\xc3\xfb\x26\x3f\x50\x9d\xb1\x86\x16\x7f\xe9\xdc\x85\x32\x02\x22\x22\xc9\xff\xac\x13\xe5\xb9\x35\x79\x17\x28\xe9\xb7\xad\x73\x81\xd6\xad\x06\xb6\xcf\xc4\xa1\x3f\x37\xdb\x4a\x4f\xb8\xf3\x37\x92\x5d\xcf\xf1\x84\xc0\xfe\xaf\x20\xad\xa2\xcb\x29\x27\x69\xd7\x84\xa6\x79\xc3\x33\xc3\xa5\x60\xea\x00\x1b\x59\xe6\x8d\xbc\x63\xba\x8a\x55\x14\x51\xe2\x22\xc7\x4f\x98\xc3\xfa\x90\xa2\xe0\xc0\x86\x64\x5c\x46\xa3\xfa\x06\xd2\xe4\x25\x17\xb0\x63\xaa\x9d\xf7\x75\x30\x6d\xeb\x3c\x1d\xb2\x7c\x3b\x6a\x2a\xdf\x79\x2b\x69\xa6\x7b\x99\xe7\xda\x67\x00\x47\x45\x3c\xd0\x6a\x92\x28\x61\xdc\x8b\xa8\xc5\x48\x38\x10\x89\x3e\xbc\xa8\x98\x62\xdb\x80\xe8\x95\xcb\x5f\xa3\x49\x5c\xe8\x04\x06\x19\x2a\xc3\xb8\xe8\xd2\xd3\x90\x54\xa8\xc8\x20\x88\xda\xf5\x03\xb3\x51\xb2\xbe\xdb\x4c\x65\xad\xe4\x18\x11\xc1\x3d\x2f\x4b\x82\xb9\x36\xef\xe9\x09\x3b\xbd\x52\x6d\xa0\x61\x79\xfe\x23\xee\x6d\xcc\x58\x84\x72\xce\x5a\x9f\x8b\x20\x78\xbb\x99\xc0\x45\x04\x60\xa0\xb0\x40\x85\x22\xc3\x86\x37\x27\x7b\x25\x09\x0b\x2c\xc3\xde\xd6\x02\x6d\xee\x11\xfa\xf4\xf6\xcc\x15\x04\x36\x26\x00\x17\x9a\xe7\xd8\x17\x35\x1a\x43\xc9\xa6\x9d\xea\x1d\x16\x70\x1d\x66\xfb\x6b\xcb\xda\xe2\x62\x1c\xbf\x9f\x3f\x87\x8a\x09\x9e\xc1\xe2\xfc\x35\x13\x36\x8f\x70\xe2\x44\xc2\x38\x41\x6c\x92\xd5\x51\x3f\xbf\xe8\x73\xfe\xda\x22\x34\x2f\x88\x5b\x62\x9d\x4c\xb7\x52\xb8\xe3\xb2\x8e\xea\x8d\x42\x2a\x30\x54\x83\x58\x13\xb9\xa4\x11\x42\x9a\x88\x1a\x2f\x60\xa1\xb1\x2c\x96\x29\x97\xfa\xd0\x48\xbb\xbc\x43\x8b\x51\x8b\x8b\x8f\x70\x7d\x0d\x82\x97\xfd\xf5\xf1\x9c\xd5\x1a\x83\x15\x09\x64\x3b\x54\x08\x4c\xc3\x3d\x3a\xae\x48\xe7\x4d\x4c\x49\xd1\x09\x84\xa0\x28\x6a\x36\x28\x06\xb7\x9d\xc8\x76\x40\x33\x35\x23\x65\x7d\x96\x9d\x30\x19\x14\x39\xcf\x98\xb1\x80\x41\xe5\xa4\x8d\x0f\x01\x6b\x1b\xa6\x61\x8d\x28\x92\x22\x58\xef\x19\xfc\x60\xa7\x99\x28\x04\x86\xac\x5f\xce\x4e\x77\x1b\xbd\x0c\xd2\x43\xab\x29\x0b\x55\xcf\x97\xcc\x65\x28\x27\x64\xd1\xed\x35\x48\xa7\x03\x0f\xf0\x64\x63\x53\x7d\x00\x2c\x35\xa6\x2d\xe5\x87\xc6\x7a\xf7\x4c\x03\x2b\x15\xb2\xfc\x40\x91\xae\x6f\xbd\x54\x1a\x3b\xeb\xb5\xfe\x33\x20\x65\xbf\x5d\x9c\xdf\xb4\x9e\xd0\x92\x72\x36\xc8\x6d\x1e\x1b\xe2\x5e\xcf\x2d\x7a\xee\xd5\xa5\x5d\x23\x10\x51\x6f\xd7\xa8\x28\xf1\x9d\x05\x16\x94\x24\xaf\x0f\x6e\x0f\x21\x8e\xda\x1b\x84\x8a\x6a\x65\xb0\xa5\x38\x7d\x3e\x00\x53\x4d\x8d\x1e\xc7\xd8\xc4\x95\x42\x13\x4b\xcf\x01\x49\x8f\x34\xb8\x5d\x82\x98\xaf\xb1\xd9\x3c\x35\xbf\xa4\x8e\x9e\xff\x40\x72\x77\x79\x8f\xff\x10\x12\x3d\x1d\x1b\xf4\xab\x03\xd5\xe9\x0b\xcf\xfc\x87\xae\x74\xff\x78\xd9\xf1\xe0\x13\xeb\x04\x2c\x7c\x8f\xce\x6f\x9b\x2d\x9e\xb9\x32\x0f\x42\xbb\x93\xe9\x9a\xb2\xf3\x97\x8e\xd6\x22\x69\xd5\xab\x15\xbc\x95\x0a\x90\x65\x1b\xab\xe6\x4b\x1a\xe1\x80\x83\x51\x8d\xdc\x8b\x5d\x1e\x5e\xcc\x00\x7f\xb8\x18\x42\xeb\x33\x3d\x62\x43\x79\x9b\x8f\x45\x64\xc8\x94\x89\x07\x32\x73\xb7\xe4\x43\x67\x23\xd9\x02\x9e\xae\x9d\xa0\x14\x60\x66\x21\xb1\x5d\x98\x8b\x94\x0b\x7f\x11\x20\x27\x63\xe6\x1e\x4f\x47\x65\x08\xe3\x89\x9f\x99\x62\x8a\xc3\x57\xcc\x41\xd7\xd6\xf8\x8a\xba\x2c\x0f\xcb\xe5\x72\x30\x98\x17\x73\x90\x7d\xa8\x57\x3f\xf1\x72\xb9\xa4\x65\x0e\xd1\x58\xc8\x24\x1c\xbb\x7c\xaa\x0d\x6b\x63\x04\x6d\x28\x49\xfe\x38\x0f\xac\xbf\x9a\x87\xd6\xc1\x8c\xbf\x3c\x05\x6a\x07\xf4\x26\x90\xb6\xb9\x4e\x15\x63\x0e\x4d\x02\x5d\x91\xcf\x47\xf2\x84\x0d\x26\x85\xe8\x70\x3e\x8d\xe9\xcd\xf5\x08\x6c\x9f\x46\xe1\xa7\x40\xf2\x01\x68\x27\x63\x5a\x73\x3d\x0c\xbe\x7d\x38\x0d\x1d\x9f\xb6\x80\x02\x5d\x61\xc6\x8b\x03\x19\xdd\x7e\xc3\xb3\x0d\xdc\x92\xe2\x6e\x09\x79\x6e\xd3\xbb\x13\xb7\xcd\x5e\x77\x44\xd0\xd7\x45\x2e\x18\x71\xb3\xb4\x26\xcf\x6d\xa0\xe1\x22\x2b\xeb\x9c\x42\x0d\x1c\x64\xad\x22\xa6\xce\xf7\x8a\x55\x15\xaa\xf3\x1e\x77\x4e\x22\x4d\xa1\x65\x43\x0e\xc2\xe0\xf6\x85\x65\xe2\xad\x54\x7b\xa6\xa8\x5c\x5e\xfa\x3f\x51\xdd\x2e\xe1\x07\xb7\x7d\x68\xf7\xc3\xd6\x71\xf5\x56\x6b\xc7\x94\xdc\xa1\xda\x2b\x6e\x9c\x27\x3a\xcf\x33\x86\x65\x1b\xbf\xf5\xdc\xd6\x80\x61\x51\xc3\xcd\x46\xd6\x26\x16\x75\xc3\x76\xd6\x47\x65\xb7\x17\xc1\x22\x00\x28\xb8\xd2\x26\xc2\xe9\xff\xcf\xca\x34\x25\x95\xdf\x48\x6a\x34\x2c\x8b\xbe\xb5\x7a\x65\x59\x0b\x8a\x8c\x66\xc0\x4b\xa7\x90\x4b\x50\x8c\x62\x3f\xdd\xe3\xb2\x4d\x6f\xa5\xb6\x90\x33\x76\x13\xaa\x09\xa9\x2d\x2a\xd1\x6f\x11\x3d\xcd\x78\x9e\x8a\x72\x73\xf3\xa8\xf7\xce\x54\x4f\x2f\xb5\x1f\x53\x0a\x8c\x5c\xc1\x3e\xdd\x30\x51\x0b\xab\xd6\x5e\x7b\x61\x2f\xd5\x7d\x98\x20\x5b\x51\xb5\x46\x15\xee\x1c\x2c\xed\xce\x22\x05\xcd\x2d\x6a\xcd\xee\xf0\x0a\xce\x5d\xaa\xab\x75\x9c\x76\x59\x08\x26\x44\x2f\x79\x3e\xac\x9e\x1b\xb4\xb3\x16\x60\xcd\x02\x0d\xaa\x10\xe7\x62\x06\xa3\xf1\xe3\xb8\x45\xe4\x26\x80\xea\x49\x4b\xcc\x64\x79\x79\x0c\x7e\xe8\xdf\x3f\x69\x31\x99\x02\x9b\x5f\x51\x49\x90\x0a\xb6\x94\x27\xce\xae\xc5\x7c\xcc\x88\x43\x66\xb2\x81\x31\x02\x3d\x7a\x0a\x7b\x74\x8f\x70\x2a\x90\xfc\x49\xd0\x47\x47\xf0\x33\x00\x1f\xd2\xe5\x5c\xf8\x21\xa4\x88\x06\x0e\x11\x28\x65\x21\xff\xfb\x0a\xd7\xca\xd9\xc1\x41\x5b\xdd\xf6\x31\x41\xc6\x8b\x28\x45\x57\xfc\xfd\x9e\x95\xb3\x8f\xf8\x93\x05\xb4\x17\xd1\xb5\xb7\x9e\x24\xd2\xff\x55\x92\x1f\x2f\xc9\xf9\xe5\xe9\x55\xf9\xf1\xa5\xf9\xab\x6e\x8f\xae\x61\xdd\xfe\xc5\xd6\x7d\x52\xe1\xff\x64\x55\xf3\xf1\x8a\x79\x3a\xeb\xd0\x1f\xf8\xc7\x19\x25\xf2\x13\x95\xc7\x27\x97\xc6\x73\xf2\x12\x12\x61\x22\x3a\x7d\x69\x16\x72\x5a\x11\xfc\xd8\x1a\xd8\x1d\x64\x21\x3c\x9e\x51\x02\xb7\xb5\x41\xca\x3f\x9e\xb2\x89\x38\xe0\xc6\xb7\x5c\x07\xb9\x40\x74\xc6\xe7\x71\x2d\x3f\x47\xe2\x8f\xdf\xf2\xf3\xa9\xc9\xe4\x1a\xc0\xac\x8e\xdf\x6f\xd3\xf0\x1b\x0d\x35\x12\x0a\xee\xfa\x63\xbd\x55\x77\x12\xce\x2b\x5d\x96\xee\xe6\xc5\x3d\x1e\x52\x9b\x54\x03\x6e\xfe\xf9\x94\x75\x8c\xb7\xba\xa3\x95\x4c\x7c\x4a\xec\xcf\xde\x26\xf3\xb7\x06\x91\x04\xfa\x5f\xd9\x03\x2c\xec\x3e\x15\x4f\x9c\x19\xd8\xe3\x26\xb2\x26\x9d\xbb\x5a\xc2\x26\x58\x4a\x56\xa8\xba\x01\x89\xfd\x98\x64\x34\x92\xaa\x49\x70\x09\xaa\xb8\x39\x1e\x75\xdc\xd9\x21\x8a\x37\x5d\x66\x9c\xe4\xf3\x48\x20\x7b\xd4\xe9\xa6\xf1\x9c\x33\x15\x62\xa5\x40\xdd\x3b\x6a\x3b\xe5\xf1\xad\x3c\x3d\x13\x3c\xc5\x16\xae\x27\x30\x9b\xf8\x0a\x37\xb7\x07\x64\x83\xd8\x11\xeb\xd7\xb7\x34\xdd\xf6\x46\x77\x44\xc8\xee\xa6\x71\x1d\x0a\x35\x8c\x21\x3e\x96\xc6\xdb\x51\xde\x6a\x72\xd4\x5c\x35\xf4\xa7\x22\xe0\xa3\x32\xac\x31\x7d\xce\x38\x36\xd1\x57\xc7\xeb\xe6\x10\xe6\x28\x30\xb4\x61\xb2\xa7\x81\x36\x62\xc4\xf6\xf5\xed\xd7\xf4\xff\xe8\x4e\xc3\x51\x07\x34\xca\xef\x2a\x58\x4f\x1c\x38\x62\x44\x6c\x4e\x56\x10\xfb\xa1\x2f\x46\xf3\xfe\x99\x2a\xb6\x93\xdc\x9e\xc9\xb2\x7a\xb9\xb7\x2e\x1b\xe6\xd1\x7d\x0b\x19\xaf\xb5\x53\x9e\xbd\x6b\x8e\x24\xc6\x3b\xa5\x96\x19\xd3\xa4\x0f\x14\xe5\x09\x4e\xb5\x2f\x8f\xd3\xdb\xed\x53\x61\x44\xa1\xa9\x95\x38\x25\x82\x5c\xb6\x5b\x0e\xcd\xd1\xd4\x40\xb5\xb9\x6e\x74\xd0\x6c\x35\x53\x35\xd1\x15\x11\x97\x60\x73\x71\x5e\x96\xf6\x90\x3b\xe3\x22\xd2\x70\x44\xce\x13\x1a\x18\x97\x40\xcc\x5b\x37\x24\xf2\xa4\xe5\x42\xd6\x62\x6e\x82\xf4\xe5\x87\x2f\x87\x91\xef\x46\x59\xc4\x6f\x2a\x5e\x8f\x00\x83\x53\xdc\x47\x93\x9d\xae\x18\x8b\xc2\x01\x19\x53\xa5\x50\x13\xd4\xbb\x43\xc1\x51\x62\xd8\x2b\xcc\x7c\x51\x36\xe6\xf2\xb3\xe3\xc7\x29\xf1\x33\x79\xbe\xe4\x3d\x82\x71\x8a\x19\x8f\x15\x41\xf6\x35\xb1\xe5\xdb\xe9\x66\x8f\x6e\x47\x6f\x9a\xe0\xbc\x5a\xf5\x31\xa1\xf4\x78\x20\x1d\x2d\x56\xdf\x77\x6e\xd1\x9a\x3c\x2d\xa7\xed\x3a\x0c\xc3\x7e\x73\x4d\x46\xcd\x25\x79\x63\xae\xd8\x7e\xd1\x1c\x63\x6f\x56\xe6\x15\x2b\x99\xc8\x28\x77\x1c\x26\xc8\x63\xc5\x94\x67\x94\x17\x5d\xab\x88\xf1\xd2\x37\xcc\xb5\xdc\x92\x3b\x32\x2d\x45\xdf\xdc\x06\x73\xc2\x77\xf0\xcd\xf2\x9b\x84\x2a\x6c\x5a\x39\x7e\x22\x3f\x36\xab\xee\x6c\xfe\x60\x82\xd3\x93\xc2\x59\xb9\xe6\x45\x3c\x66\x30\x87\x8f\x97\x4e\xf7\x13\x4a\xcc\x51\x1b\x25\xbd\xc3\x9f\x25\x28\x08\x5e\x8e\xe1\x9d\xed\xd1\xf8\x1c\xbe\x5f\x54\xf0\xa6\x13\x69\x01\x81\x6b\xd7\x5f\x39\xd6\x71\x9b\x03\x26\xfb\x78\x8b\xf8\x60\xe3\x6c\x03\x2c\xb6\xeb\x83\x13\xf3\x78\xa9\x18\xac\xa5\x2c\x91\x09\xd8\x32\xdb\x4d\x1a\xa4\x83\x52\x35\xcc\x33\xcf\x3c\x41\x42\x78\x22\xf2\xf1\x07\xda\x7b\xe6\xc6\x8b\xe3\x9d\x22\x7b\x32\x23\x61\xa6\x5e\x9e\x82\x95\x1a\x7b\xcb\x9c\x5a\xcd\x23\xf3\x7c\xd5\xb4\xcd\xc6\x96\xfc\x7b\x34\xda\xa3\x9d\xcf\x47\x98\xd6\xfc\x4e\x34\xab\x5d\x29\xb9\xe3\x1d\xea\x0d\x8f\x6a\xdb\xa7\xdc\x28\xe3\x40\x52\x1e\x53\x07\x58\x63\xc6\x6a\x8d\x2d\x5a\x73\x73\x49\x99\x91\xcf\x4a\x2a\xa9\xb5\x87\x78\x28\xa5\xbc\x87\x5a\xe4\xe8\x9a\x6e\x1b\x29\xdd\x31\x7a\x8d\x48\x3a\x64\x63\x0d\x51\xee\x1e\x3d\x11\x80\x9f\x2a\xcc\xec\x16\x80\x35\x2c\xbb\x9c\x4b\xc7\xd2\x06\xcb\x4a\xc3\x5d\xcd\x54\x0e\xec\x8e\x71\xa1\xa9\x4c\x2d\xb8\xe0\x06\xcb\x03\x64\x1b\xc6\x49\xc8\x5e\xe7\x84\x68\x48\xdb\xcd\xe5\xc2\xd9\x48\x34\xf1\x96\x95\x3c\xb3\x07\x7b\xee\xb9\x0d\xa1\x05\xd4\x55\xde\x15\xbe\x99\x7d\xc2\xaf\x52\xae\x34\x2e\xb9\xa6\x3c\x4e\x3b\x5f\x5c\x23\xd1\xdf\xb2\xdc\xf7\xe4\x99\xc2\xc6\x0c\x85\x2b\x4f\x0a\x25\x85\xd1\x47\xbb\xd8\xbf\x9d\x4f\x09\x90\x95\xdd\xe4\x2e\x47\xd3\xd5\x4c\x0a\x5d\x6f\x51\xb5\x1d\x8e\xb0\x85\xd5\x3c\x4e\xb4\xb2\x72\x32\xe3\x6b\x15\xe4\x0a\xe4\x5e\x4c\xfb\xdd\x63\x9f\x02\x19\xba\xe2\x57\xd6\x47\xc6\xfd\xd8\x24\x1a\xd6\x90\x8e\x97\x5f\xe0\x87\x83\x2d\xa3\x7e\x57\x93\x52\x38\xe3\x8a\x77\x7f\x44\x42\xc2\xbd\x90\x7b\xdf\x7f\xf4\x8f\xa3\x76\x67\x2e\x8e\x1f\x9f\x71\xa9\x5b\xc5\x94\x73\x66\xcf\xdd\x84\x7d\x05\x39\xf9\x3d\x1e\x74\x97\x1b\x75\xcd\x0e\x5a\x66\x5f\x4b\x47\x63\xe7\x3c\x17\xcb\x5b\x37\x71\x8d\x51\x2c\x0a\xcc\x0c\xdf\x91\x3f\x46\xc4\x9a\x26\x40\x9a\xd5\x99\x4f\x73\xf5\x56\x94\x12\xb0\x76\xc2\x9b\xb0\x2f\x06\xd7\xf0\xe1\xe3\xa0\x89\xd3\x7a\x19\xf0\x89\xd5\x5d\x5a\x3d\x0d\x6d\x67\x12\x01\x5a\xd2\x5d\x78\x1e\x49\xdd\x62\x86\x97\xac\xaa\x50\xe4\x8b\x76\xfc\x69\xe9\x95\x5f\xdd\x98\xe6\xef\x6e\x8e\xc0\x4a\x29\xee\x2c\x58\xb8\xae\xa1\x6f\x98\xda\xae\x61\xbc\x7f\x65\x63\x9a\x9f\xb8\x39\x0b\x94\xae\x35\x93\x66\xfd\x32\x34\xe3\x2d\xab\xaa\x26\x4b\x98\xb0\xdd\x98\x01\xb2\x06\x9f\xeb\xb7\xf1\xd0\x66\x71\xcf\x74\xcb\xf7\x51\x93\x7d\xcc\x03\x85\x47\x6d\x39\x18\x3e\x1c\x7c\x0d\x9f\x07\x89\x76\x7b\x1c\xc7\x76\x4d\xe3\xd3\x33\x25\xef\xed\x1d\xff\x61\xfc\xc1\x37\xb1\xdc\xd9\x84\x60\xbb\xa5\xb7\x08\x33\x7c\x29\x50\x58\x30\xff\x29\x7b\x5c\xf3\xe4\x19\xe3\xe8\x64\x47\x0d\x18\x3e\xc1\x67\x29\xda\x3a\x72\x2e\xcb\xf3\x47\x1a\xec\x71\x07\xdd\x3c\x84\xea\xba\x27\xf6\x39\x6f\xbf\xd3\x12\x91\x75\x0e\x3f\x38\xcc\xe2\x5e\x8c\x40\x44\x9f\xf9\x2f\x9f\xb5\x13\x1f\x77\xc6\x37\x11\xa2\xbc\xbd\xf1\x3c\x25\x0f\xe0\x2d\x8f\xfa\xd1\x8c\xe7\x69\xe1\x33\x0c\x7c\x48\x47\xc3\x74\x6f\xc0\xc0\x6d\xfe\x30\x6e\xd0\xe3\x3b\x36\x60\xa3\x6a\x7c\x8c\xb9\xf5\x88\x8e\x19\xd9\x3b\x6f\x4d\xfb\x0d\xda\x3c\xd9\x25\xdd\xd6\x0e\xee\xf8\xce\x1b\x97\x7d\x14\x27\xcb\xb0\x32\xdd\xa3\x9f\x4d\x54\xed\x99\x6c\xb0\xa1\x98\xb9\x57\x75\x60\xe5\x9e\x8e\xb5\x84\xfc\x4b\x33\xfe\x53\xeb\xc6\x90\xad\x80\x44\x34\xc7\x22\xda\xb9\x48\x1a\x07\xd7\x43\xdb\x38\x5a\xbf\x25\x6c\xa3\xd9\x92\x1a\x33\xb6\xd4\x36\x58\xe7\x60\xd7\x83\x25\x33\x89\x14\x25\xb5\x18\xf1\xba\xf9\x27\xaa\xa2\x22\x31\xdd\x91\xa6\x3a\x67\x60\x3f\xab\x15\xfc\x20\xb8\xe1\xac\xe4\xbf\xe2\xe0\x08\xd2\xd8\x91\x96\x51\x8b\x8d\x3d\xc4\x4f\x1e\x3c\x80\xfd\x36\x0a\x43\xfe\x75\x2c\x54\x13\x28\xa4\x5a\xc0\x75\x09\xd7\x25\x13\xf7\xd1\x9e\x22\xbc\x84\x5a\xa3\x82\x2d\xad\x79\xc6\xca\xb2\x25\x68\x83\x54\x1b\xdc\xba\xb3\x3c\x0e\x90\x49\x25\x98\x87\xef\x06\xf0\xb5\x86\x76\x6f\x1b\x69\x9f\xa2\x3e\xeb\x5b\x8b\xad\xf3\x2d\x53\xc1\x83\x62\x14\x40\x5e\xf4\x5f\x7d\x12\x2d\xd2\xb7\x5f\x7b\x49\xa2\x51\xa1\x16\x06\xab\x60\x75\x19\xbc\xfd\x04\xae\x61\xe5\xd9\x5b\x15\x23\xef\x5c\x89\x07\x27\x5f\xff\x32\x36\xd4\xdd\x1c\x13\x38\xed\x3d\x32\x8d\x34\x0f\x67\xff\x0d\x00\x00\xff\xff\x3b\x7a\x2f\x68\x90\x47\x00\x00" func fungibletokenswitchboardCdcBytes() ([]byte, error) { return bindataRead( @@ -197,11 +197,11 @@ func fungibletokenswitchboardCdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleTokenSwitchboard.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb4, 0xec, 0xe0, 0x85, 0xda, 0x5e, 0xa6, 0x3e, 0xef, 0xb8, 0x34, 0x17, 0x7d, 0x86, 0x82, 0x80, 0x61, 0xc9, 0x37, 0x5, 0x51, 0xb3, 0x51, 0xd2, 0xf8, 0x7f, 0xb1, 0x65, 0xf0, 0x38, 0xcf, 0x56}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0x66, 0x1f, 0x65, 0xb0, 0x36, 0x8c, 0x6, 0x3b, 0x5f, 0xc5, 0x53, 0xf0, 0x80, 0x41, 0xe7, 0x17, 0x7, 0x59, 0xdd, 0x79, 0xe6, 0x1, 0xe6, 0x1d, 0xd4, 0x1c, 0xe2, 0x3f, 0x3b, 0x3, 0x4d}} return a, nil } -var _multiplevaultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x8e\xd3\x30\x10\x86\xef\x79\x8a\x5f\x3d\x35\x07\xda\x15\x42\x1c\x22\x2d\x42\x20\x7a\xdb\x13\x85\x0b\xe2\x30\xeb\x4e\x1a\x0b\xc7\xb6\xec\x71\x4a\xa8\xfa\xee\xc8\x4e\xda\x6d\xd8\x0b\x3e\x58\xf5\x68\x3a\xff\x37\x9f\x52\x55\xba\xf7\x2e\x08\x76\xc9\x1e\xf5\xb3\xe1\xbd\xfb\xc5\x16\x6d\x70\x3d\x56\x8b\xda\x9b\xe1\xed\xaa\xaa\x48\x29\x8e\x71\x4d\xc6\xd4\x50\xce\x4a\x20\x25\xd0\x56\x38\xb4\xa4\x18\x4f\xc9\x88\xf6\x86\xbf\x53\x32\x12\x71\xae\x2a\x00\xd8\x6e\xb7\xf8\xec\xac\x90\xb6\x11\xd2\x31\xc4\x09\x19\xc4\xe4\xbd\x19\xe1\xda\x52\x6b\xe7\x30\x48\x4e\x8b\x38\x70\xab\x2d\x1f\xa0\x2d\xa4\xd3\xf1\x96\x56\x26\xce\x18\xd7\x5a\x8d\x81\xc2\x34\xf5\x6b\x19\xda\xe0\xbc\x1f\x3d\x37\xf8\xb6\xd3\xbf\xdf\xbf\xbb\xbc\x70\xec\x92\x55\xa2\x9d\x85\x38\x04\x96\x14\xec\x44\x34\x7a\xce\x6c\x24\xe5\xf9\xb2\x5a\xef\x0d\xf7\x6c\x25\xde\xe7\x96\xf5\x07\xcd\xa7\x4c\x8d\x23\x4b\xd9\x37\x27\xc6\x75\xdd\xe0\x47\xfe\xf5\x13\xe7\xf2\x97\x7c\xbc\x8b\x72\xf7\xcc\x27\x70\x4c\x46\x36\x86\xed\x51\x3a\x7c\xc0\x43\x83\xd5\x53\x8a\x59\xe6\x41\x2b\x12\xc6\x29\xc3\x2c\xad\xdc\x30\xef\x7c\xcc\xa2\xe2\xea\x36\xfe\x52\x4d\xf7\x6d\x67\x15\x98\x84\xbf\xf4\x5e\xc6\x02\x0a\x32\xc6\x9d\x22\xc8\x8e\x48\x91\xb3\xb9\xb9\x07\x04\xcb\x27\x4c\x5d\xc5\x46\x47\x11\x84\x3f\x1c\x1c\x9e\xc9\x90\x55\x7c\x1d\xfb\x4a\x48\x76\xf1\x6f\xd4\x7a\xb8\x9a\x69\x90\xef\xba\xc1\xc7\xf3\xe2\xbb\xda\x94\xbe\xcb\x7f\xd9\x3a\xb2\x7c\x9a\x20\xd6\x35\x1e\x1f\xf1\xb0\xc9\xda\xf6\x1d\x67\x6a\x33\xce\xe9\x87\x99\xbf\xcf\x3a\x3b\x1a\x78\x81\xff\xda\x53\xbe\xab\xcb\xdf\x00\x00\x00\xff\xff\xfb\xe4\x4c\x60\x0a\x03\x00\x00" +var _multiplevaultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xb1\x8e\x1a\x31\x10\x86\x7b\x3f\xc5\x2f\x2a\xb6\x81\x2b\xa2\x14\x2b\x5d\x14\x25\x0a\xdd\x55\x21\x69\xa2\x14\x73\x66\x96\xb5\xe2\xb5\x2d\x7b\x0c\xd9\x20\xde\x3d\xb2\x77\xe1\x20\x34\x71\x61\xe1\xd1\x30\xff\x37\x9f\x56\x29\x33\x04\x1f\x05\x9b\xec\xf6\xe6\xd5\xf2\xd6\xff\x62\x87\x2e\xfa\x01\x8b\xbb\xda\x42\x29\xd2\x9a\x53\x5a\x92\xb5\x0d\xb4\x77\x12\x49\x0b\x8c\x13\x8e\x1d\x69\xc6\x4b\xb6\x62\x82\xe5\xef\x94\xad\x24\x9c\x94\x02\x80\xf5\x7a\x8d\xcf\xde\x09\x19\x97\x20\x3d\x43\xbc\x90\x45\xca\x21\xd8\x11\xbe\xab\xb5\x6e\x4e\x82\x94\xa8\x84\x1d\x77\xc6\xf1\x0e\xc6\x41\x7a\x93\xae\x69\x75\xe2\x8c\x71\xa9\x35\x38\x50\x9c\xa6\x7e\xad\x43\x5b\x9c\xb6\x63\xe0\x16\xdf\x36\xe6\xf7\xfb\x77\xe7\x37\x8e\x4d\x76\x5a\x8c\x77\x10\x8f\xc8\x92\xa3\x9b\x88\xc6\xc0\x85\x8d\xa4\x3e\xdf\x56\x1b\x82\xe5\x81\x9d\xa4\xdb\xdc\xba\xfe\xc1\xf0\xb1\x50\x63\xcf\x52\xf7\x2d\x89\x69\xd9\xb4\xf8\x51\x7e\xfd\xc4\xa9\xfe\xa5\x9c\xe0\x93\xdc\x3c\xcb\x89\x9c\xb2\x95\x95\x65\xb7\x97\x1e\x1f\xf0\xd4\x62\xf1\x92\x53\x91\xb9\x33\x9a\x84\x71\x2c\x30\xf7\x56\xae\x98\x37\x3e\x66\x51\x69\x71\x1d\x7f\x56\xd3\x7d\xdd\x59\x47\x26\xe1\x2f\x43\x90\xb1\x82\x82\xac\xf5\xc7\x04\x72\x23\x72\xe2\x62\x6e\xee\x01\xc1\xf1\x11\x53\x57\xb5\xd1\x53\x02\xe1\x0f\x47\x8f\x57\xb2\xe4\x34\x5f\xc6\x3e\x08\x29\x2e\xfe\x8d\x5a\x1e\x2e\x66\x5a\x94\xbb\x69\xf1\xf1\x74\xf7\x51\xad\x6a\xdf\xf9\xbf\x6c\xed\x59\x3e\x4d\x10\xcb\x06\xcf\xcf\x78\x5a\x15\x6d\xdb\x9e\x0b\xb5\x1d\xe7\xf4\xdd\xcc\x3f\x14\x9d\x3d\x1d\xf8\x0e\xff\xd1\x53\xb9\xd5\xf9\x6f\x00\x00\x00\xff\xff\xe0\x68\x11\xe5\x07\x03\x00\x00" func multiplevaultsCdcBytes() ([]byte, error) { return bindataRead( @@ -217,7 +217,7 @@ func multiplevaultsCdc() (*asset, error) { } info := bindataFileInfo{name: "MultipleVaults.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc2, 0x4c, 0x8d, 0x93, 0x20, 0xfa, 0x5, 0xa0, 0xbd, 0x75, 0xac, 0x28, 0x2e, 0x9b, 0xa9, 0x15, 0x0, 0x51, 0xe1, 0x30, 0xcb, 0xde, 0x95, 0x17, 0x68, 0x5, 0x80, 0x7c, 0x52, 0xd1, 0x7d, 0x9c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0xe1, 0x53, 0x1, 0xa7, 0x8f, 0xfa, 0x71, 0xaf, 0xa5, 0xec, 0x46, 0xa0, 0xc7, 0x80, 0x89, 0xdd, 0x13, 0xdd, 0xc7, 0x89, 0x8c, 0x13, 0x8f, 0x83, 0x66, 0xc2, 0x55, 0xcd, 0x43, 0xb2, 0xfa}} return a, nil } @@ -281,7 +281,7 @@ func utilityPrivatereceiverforwarderCdc() (*asset, error) { return a, nil } -var _utilityTokenforwardingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x4d\x6f\xe4\x44\x10\xbd\xfb\x57\xd4\x06\x89\xcc\xac\xb2\x9e\x0b\xe2\x10\x6d\xd8\x2f\x08\x9c\x10\x0a\x01\x0e\x08\xb1\x3d\xed\xf2\xb8\x37\x3d\xdd\x56\x77\x79\xbc\xa3\x68\xfe\x3b\xaa\x6e\xbb\xfd\x91\x99\x90\x45\x08\x09\x69\x73\xc9\xd8\xea\xaa\x7a\x55\xf5\xea\x95\xed\xd5\xf3\xe7\x59\xf6\x05\x5c\x37\x66\xa3\xd6\x1a\xe1\xd6\xde\xa1\x81\x6b\xeb\x5a\xe1\x0a\x65\x36\xf0\xce\x1a\x72\x42\x52\x96\xdd\x56\xca\x83\xec\x2e\xc1\x57\xb6\xf5\x50\xd9\x16\x84\x01\x21\xa5\x6d\x0c\x81\xb4\x8d\x2e\xc0\x23\x41\x53\x83\x00\xd9\x78\xb2\xdb\xe4\x3c\xfa\xbe\x41\x89\x6a\x87\x2e\x23\x0b\x42\x6b\xdb\x02\x55\xb8\x05\xb2\x50\xc6\xa8\x40\x7c\xce\xf3\x1d\x01\x85\x2a\x4b\x74\x68\x28\xc5\x68\x2b\x34\xb8\x43\xc7\x66\x7b\x70\xd1\x5b\x67\x93\x33\x4a\xdc\x83\x14\x06\xea\x66\xad\x95\xaf\x80\x18\x76\x97\x10\x3a\x70\xe8\x6d\xe3\x24\x82\xf0\x20\x12\x18\x90\xa2\x16\x6b\xa5\x15\xed\xe1\x43\xe3\x09\xb4\xba\x43\x10\xf0\xab\x68\x34\x5d\x64\xc2\x14\x1c\x0e\x3c\x1a\xf6\x51\x58\xf4\xe6\x9c\x00\x77\x68\xc0\x20\x32\x64\xb8\x33\xb6\x05\x45\xa0\xfc\x00\x3a\xcf\xb2\xdf\x2a\x34\xe3\x12\xb5\xc2\x50\xc8\x4d\x3a\x14\xc4\x31\x12\xb6\x8b\x98\x92\x14\x5a\x87\x68\xf1\xc4\x8f\xd8\xa6\x13\x59\xd9\x18\x49\xca\xb2\xc7\x02\x6a\x67\x77\xaa\x40\x0e\xda\x2a\xaa\x82\x4d\x4a\xc8\x61\x80\x20\x11\xa8\x12\x14\x3d\x73\xec\x51\xa1\x33\xaa\x50\xb9\xa1\xdc\x79\x96\x3d\x5f\x65\x99\xda\xd6\xd6\xd1\xac\x6b\xa5\xb3\x5b\x38\x9b\xdc\x3b\xcb\xb2\xba\x59\x0f\x8c\x08\x37\x47\xcc\xb9\xcf\x32\x00\x80\xd5\x0a\xbe\xdb\x71\x03\x03\x0e\xe5\x01\xb7\x8a\x08\x8b\xd0\xc8\x3e\xb8\x70\x08\x05\xd6\xd6\x2b\x8a\xd5\xe4\x5c\x48\xb8\x0d\x52\xdf\x62\x17\xbc\x71\x44\x0c\xee\xfa\xa2\x14\xdf\x46\xbb\x85\xd8\x72\x81\x2f\xe1\x97\x6b\xf5\xf1\xeb\xaf\x2e\x02\xe4\x4b\x78\x53\x14\x0e\xbd\x7f\xb5\xcc\x92\x7d\xa2\x80\x32\x84\xae\x14\x12\x87\x1e\xfc\xc4\xac\x91\x3d\xf6\x88\x7f\x05\x3f\xa0\xae\xd1\x41\xaa\x3e\xb7\xaf\x42\x79\xc7\x39\x50\x85\x2e\x50\xfe\xbd\x43\xa9\x6a\x85\x86\xde\x8f\xe8\x34\xf1\xa3\x3c\x18\x4b\xa0\x05\x71\x06\xd6\xc5\x36\x0f\xd4\x23\x15\xb3\x17\x40\xfb\x1a\xf9\xf8\x4e\x68\x55\xe4\xc9\x09\xc3\x2f\x1b\x13\xa3\x2f\x96\x97\xf0\xd6\x5a\x3d\xc5\xfa\x3d\x32\xbf\x2a\x4c\x75\x03\xe1\xbd\xda\x98\xde\x73\x42\x39\x0a\x9c\x4f\x3c\x84\x41\x67\xa8\x28\xd1\x7b\xe1\xf6\xb0\x46\x29\x1a\x8f\x81\x66\xb6\x21\x50\x74\xd1\x51\x9d\xd3\xa9\xad\xf7\x41\x3c\xc8\x82\xb6\xf6\x0e\x9a\x30\x25\x8c\xa1\xb2\xb6\x08\x5c\xf5\x88\xa0\x4a\xd6\x84\x93\x95\xb1\x25\xcf\x09\x7e\xac\x51\x06\x12\x70\x05\xac\xe3\x08\x79\x84\x54\xa1\xae\x3d\x6c\x1a\xd6\x08\xb1\x11\xca\x78\x02\x65\x4a\x65\x14\xa1\xde\x83\xac\x84\xe2\x2c\xe7\x3c\xb4\x0e\x6c\x68\x92\x32\xa1\x9a\x30\x09\xbc\x15\x5a\x49\x65\x1b\x0f\x77\xca\x14\x01\x45\x53\x17\x82\xd0\x47\xc2\x46\x49\xab\x5d\x24\x9d\x56\x9e\x94\xd9\xf8\x38\x0f\x6b\x64\xff\x5b\x51\x74\x43\xc6\x2c\x8e\x21\xac\x01\x4f\xd6\x61\xe9\xac\x21\x3f\x29\xef\x24\xfa\x6b\x87\xd4\xb8\x20\x10\xb6\x66\x6a\x09\x3d\xf4\x6d\x44\x8c\xd2\x3a\x1e\x34\xdf\x6c\xd1\x05\x8c\x5c\xdc\x79\xa2\x3d\x2b\x57\x01\x03\x8b\x0b\x53\x35\xcc\xb8\x6d\xcd\x03\x0e\x79\x51\xe2\x5b\xeb\x9c\x6d\x99\x48\x5f\xde\x4f\x86\x3b\xef\x85\xe4\xf0\x2a\x18\x1e\x8e\x8c\x4f\x1a\x9a\x4b\x38\x6e\x7b\xf1\xf8\x5c\x25\xa2\xb5\x15\x3a\x0c\x29\x8d\x35\x20\x08\x43\xab\xb4\x86\x75\x50\x5e\xca\xa7\xb6\xd8\x0d\x89\x29\x94\x1c\xfa\x15\x69\x29\xc6\xfa\xd7\xb1\x7e\x10\x91\xe8\x22\xfd\x14\x92\x79\xbe\xf0\xa8\xcb\x25\xec\x84\x1b\x46\xe4\x12\xde\x0d\x74\x1d\x47\xef\x70\x1e\xf3\xb6\x5a\x71\x35\x3a\x9d\x08\xd2\x2b\xee\xd0\xf7\xbb\x04\xec\xfa\x03\x4a\x0a\xdb\xc7\x80\x70\x9b\x66\x1b\x96\x9b\x29\x7a\x55\xf6\x63\x4f\x8a\x7a\x31\x4c\x98\xce\x7d\xe7\xa9\xf1\xa1\xe9\xbc\x96\x98\x6a\xc5\x90\xf2\x31\x58\x7d\xd7\x3b\xe4\x8b\xa8\x8e\xaf\xa7\x8d\x0b\x8e\x97\x70\x9f\xac\xf8\x4f\x8f\x34\xf8\x06\x4b\xb8\x02\xae\x54\x9e\x00\xe5\xeb\x40\xa2\x97\x27\x19\xf4\xcd\x62\xf9\x2c\x7b\xe0\x72\x2d\xb4\xe0\xf6\x5c\x85\x59\xca\xbb\xcb\xe9\xb9\x51\xd8\x7c\x0a\xfc\xe5\x0b\xfe\xbf\x9c\x1e\xe7\xcd\x72\x7a\x2f\x74\x11\xfa\xc5\x10\x92\xb0\xad\x41\xf7\x2a\x17\x71\x49\x2c\x93\xb7\xc3\xff\x49\xff\x67\xfd\xea\x24\x65\xd6\xa4\x60\xf1\x68\x8f\x4e\x25\xff\x79\xa1\x7c\x5e\x28\xff\xea\x42\x79\x12\x5f\x9f\x20\x2a\xc7\x09\xcb\x6d\x33\x1b\xbc\x19\x58\x19\xae\xfd\x54\x45\xfb\x94\xcb\xf4\x62\xd0\xe9\x6c\xf7\x50\x5d\x0c\x47\x1f\x53\xd3\x59\xac\xc5\x9f\x60\xb0\xbd\x39\xb6\x3e\xe6\xaa\x5a\x3b\x9c\xdd\xe1\xbf\xb1\xf5\x53\x4a\x00\xcf\xae\xc0\x28\x7d\x09\x67\xef\x02\xad\x78\x7a\xa2\xd9\xb1\x37\x81\xc0\x31\x4e\x72\x80\x75\x36\x81\x70\x98\x5c\x4d\x3b\x02\x57\x13\x74\xa7\xd4\xe2\x0d\x6c\x90\x68\x22\x96\xcc\xe4\xd8\xe4\xd8\x84\xb0\xda\xc3\x38\x7a\xf0\x4d\xcd\x6f\x1b\x58\xc0\x7a\x1f\x5f\xd5\xfa\xc7\x8b\x8b\x89\xdb\xb6\x52\xb2\x0a\xef\x75\xeb\xf1\x53\xc2\xb0\x03\xcf\xbb\x9b\xe7\x29\xf0\xdf\x0f\xc9\x1b\xe7\xc4\x9e\x99\x70\x7d\xdb\xc1\x89\x13\x3a\x8b\xf2\x50\x7e\x37\x48\x3f\xf7\xc0\xc3\xce\xbc\x65\x6b\x66\xfd\x3d\xff\x8a\xb2\x7c\x98\xf5\x57\x95\xf0\xec\x93\x45\xf9\x08\x47\x3a\xf0\xf7\x87\x47\x5a\xc7\x0b\x76\xc7\xc0\xfe\xf9\xc2\x9e\xbb\xf3\x93\x84\xfd\x2c\xd5\xab\x39\x9e\xd9\xf1\xdf\x7b\x34\xf9\x06\x43\xb5\x16\xcb\x3f\xe0\x0a\xc8\x35\x78\x54\x0c\xa6\xd6\xc7\xc8\xc6\x2a\xbd\x38\xfa\xa4\xf6\xb4\x51\xfb\xa4\x72\xfc\xb7\x73\xf6\x50\x7a\x0e\xe3\x87\x70\xd6\xb8\x07\x9f\x06\xba\x5b\xfc\xa0\x69\xb0\x9d\x7c\xf0\xe8\x61\xa5\x8f\x04\x27\x34\xae\x9b\x92\xa4\x6d\x0f\x62\x9c\x28\x37\x3f\x46\xa6\x70\x43\xa1\xbb\x56\xbe\x7c\xd1\x7d\xe9\x38\xea\x26\xfd\x5c\x76\x19\x1e\xb2\xbf\x02\x00\x00\xff\xff\xa0\x39\x74\x80\x93\x12\x00\x00" +var _utilityTokenforwardingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x4d\x6f\x1b\x37\x13\xbe\xef\xaf\x98\xf8\x05\x5e\x4b\x81\x23\x5d\x8a\x1e\x8c\xb8\xf9\x6a\xdd\x9e\x8a\xc2\x75\xdb\x43\x11\x34\x14\x77\x56\xcb\x88\x22\x17\xe4\xac\x36\x82\xa1\xff\x5e\x0c\xc9\xfd\x94\xe4\x3a\x05\x5a\xa0\x40\x7c\x89\x76\x43\xce\x3c\x33\xf3\xcc\x33\xe4\x2e\x9f\x3f\xcf\xb2\xff\xc1\x6d\x6d\xd6\x6a\xa5\x11\xee\xed\x06\x0d\xdc\x5a\xd7\x08\x97\x2b\xb3\x86\x77\xd6\x90\x13\x92\xb2\xec\xbe\x54\x1e\x64\x7a\x04\x5f\xda\xc6\x43\x69\x1b\x10\x06\x84\x94\xb6\x36\x04\xd2\xd6\x3a\x07\x8f\x04\x75\x05\x02\x64\xed\xc9\x6e\x3b\xe3\xd1\xf6\x1d\x4a\x54\x3b\x74\x19\x59\x10\x5a\xdb\x06\xa8\xc4\x2d\x90\x85\x22\x7a\x05\xe2\x75\x9e\xdf\x08\xc8\x55\x51\xa0\x43\x43\x9d\x8f\xa6\x44\x83\x3b\x74\xbc\x6d\x0f\x2e\x5a\x4b\x7b\x16\x8c\x12\xf7\x20\x85\x81\xaa\x5e\x69\xe5\x4b\x20\x86\x9d\x02\x42\x07\x0e\xbd\xad\x9d\x44\x10\x1e\x44\x07\x06\xa4\xa8\xc4\x4a\x69\x45\x7b\xf8\x58\x7b\x02\xad\x36\x08\x02\x7e\x15\xb5\xa6\xab\x4c\x98\x9c\xdd\x81\x47\xc3\x36\x72\x8b\xde\x5c\x12\xe0\x0e\x0d\x18\x44\x86\x0c\x1b\x63\x1b\x50\x04\xca\xf7\xa0\x17\x59\xf6\x5b\x89\x66\x98\xa2\x46\x18\x0a\xb1\x49\x87\x82\xd8\x47\x87\xed\x2a\x86\x24\x85\xd6\xc1\x5b\x5c\xf1\x23\x36\xdd\x8a\xac\xa8\x8d\x24\x65\xd9\x62\x0e\x95\xb3\x3b\x95\x23\x3b\x6d\x14\x95\x61\x4f\x17\x90\xc3\x00\x41\x22\x50\x29\x28\x5a\x66\xdf\x83\x44\x67\x54\xa2\x72\x7d\xba\x17\x59\xf6\x7c\x99\x65\x6a\x5b\x59\x47\x93\xaa\x15\xce\x6e\xe1\x62\xf4\xee\x22\xcb\x84\x94\xe8\xfd\x4c\x68\x3d\xef\x99\x11\xfe\x73\xc0\xa0\x87\x2c\x03\x00\x58\x2e\xe1\xbb\x1d\x17\x32\xe0\x51\x1e\x70\xab\x88\x30\x0f\x05\x6d\x41\x08\x87\x90\x63\x65\xbd\xa2\x98\x55\x8e\x89\x84\x5b\x23\xb5\xa5\x76\xc1\xda\xd0\x33\x06\xb3\x6d\x92\xf2\x6f\xe3\xfe\x99\xd8\x72\xc2\xaf\xe1\x97\x5b\xf5\xe9\xeb\xaf\xae\x42\x08\xd7\xf0\x26\xcf\x1d\x7a\xff\x6a\x9e\x1d\xd9\xe9\xa8\xa1\x0c\xa1\x2b\x84\xc4\xbe\x36\x3f\x31\x9b\x64\x1b\x4b\x8c\x67\x09\x3f\xa0\xae\xd0\x41\x57\x15\x2e\x6b\x89\x72\xc3\x31\x51\x89\x2e\xb4\xc2\x07\x87\x52\x55\x0a\x0d\x7d\x18\xd0\x6c\x64\x47\x79\x30\x96\x40\x0b\xe2\x48\xac\x8b\xe5\xef\x29\x49\x2a\x66\x43\x00\xed\x2b\xe4\xe5\x3b\xa1\x55\xbe\xe8\x8c\x0c\xc3\x28\x6a\x13\x51\xcc\xe6\xd7\xf0\xd6\x5a\x3d\xc6\xfc\x3d\x32\xff\x4a\xec\xf2\x09\xc2\x7b\xb5\x36\xad\x87\x0e\xed\x00\xc0\x62\x64\x21\x08\x01\x43\x46\x76\x2a\xdc\x1e\x56\x28\x45\xed\x31\xd0\xd0\xd6\x04\x8a\xae\x52\x2b\x70\x58\x95\xf5\x3e\x88\x0b\x59\xd0\xd6\x6e\xa0\x0e\x5d\xc4\x18\x4a\x6b\xf3\xc0\x65\x8f\x08\xaa\x60\xcd\x38\x9b\x21\x5b\x70\x1f\xe1\xa7\x0a\x65\x20\x07\x67\xc2\x3a\xf6\xb0\x88\x90\x4a\xd4\x95\x87\x75\xcd\x1a\x22\xd6\x42\x19\x4f\xa0\x4c\xa1\x8c\x22\xd4\x7b\x90\xa5\x50\x1c\xe5\x94\x9f\xd6\x81\x0d\xc5\x52\x26\x64\x15\x46\x8e\xb7\x42\x2b\xa9\x6c\xed\x61\xa3\x4c\x1e\x50\xd4\x55\x2e\x08\x7d\x24\x72\x94\xbc\xca\x45\x12\x6a\xe5\x49\x99\xb5\x8f\xfd\xb2\x42\xb6\xbf\x15\x79\x6a\x42\x66\x77\x74\x61\x0d\x78\xb2\x0e\x0b\x67\x0d\xf9\x51\x7a\x47\xde\x5f\x3b\xa4\xda\x05\x01\xb1\x15\x53\x4c\xe8\xbe\x6e\x03\x82\x14\xd6\x71\x03\xfa\x7a\x8b\x2e\x60\xe4\xe4\x4e\x03\x6d\xd9\xb9\x0c\x18\x58\x7c\x98\xb2\x41\x03\x6c\x63\xce\x72\xc9\x8b\x02\xdf\x5a\xe7\x6c\xc3\x84\xfa\xff\xc3\x48\x04\x16\xad\xe0\x1c\x5e\x05\x03\x87\x47\xda\xaa\x6b\xa6\x6b\x38\x6d\xe3\xea\xf1\x7e\xeb\x88\xd7\x94\xe8\x30\x84\x38\xd4\x8a\x20\x20\x8d\xd2\x1a\x56\x41\xa9\x69\x31\xde\x8b\xa9\x79\x4c\xae\x64\x5f\xbf\x48\x53\x31\xd4\xcb\xd4\x05\xbd\xd8\x44\x13\xd3\x04\x79\xd4\xc5\x1c\x76\xc2\xf5\x2d\x73\x0d\xef\x7a\xfa\x0e\xbd\x27\x9c\xa7\xac\x2d\x97\x9c\x8d\xa4\x1f\x41\xaa\xc5\x06\x7d\x3b\x7b\xc0\xae\x3e\xa2\xa4\x30\xad\x0c\x08\xb7\xae\xb7\x61\x18\x9a\xbc\x55\x71\x3f\xb4\xa4\xa8\x15\xcd\x0e\xd3\xa5\x4f\x96\x6a\x1f\x48\xc0\x63\x8c\xa9\x97\xf7\x21\x3f\x12\x64\xc7\x82\x14\xc1\x2c\xaa\xe8\xeb\x09\x0b\x82\x87\xc3\x1c\x1e\xba\xfd\xfc\xa7\x07\xaa\x7d\x87\x05\xdc\x00\xe7\x6c\xd1\x41\x5b\xac\x02\xad\x5e\x9e\xe5\xd4\x37\xb3\xf9\xb3\xec\xc8\xe4\x4a\x68\xc1\x85\xba\x09\x5d\xb6\x58\x23\xbd\x8d\x6f\x66\xf3\xf1\xe2\x81\xef\xc5\x18\xff\xcb\x17\xfc\xef\x64\x39\x0f\xa4\xf3\x63\x24\x79\x6d\xe7\x48\x88\xc4\x36\x06\xdd\xab\x85\x88\x33\x65\xde\x59\x3b\xfc\x17\xc7\xc4\xa4\x78\x49\x79\x26\x15\x0b\x3b\x1e\x2d\xd8\xb9\x24\x7c\x99\x3b\x5f\xe6\xce\x3f\x32\x77\x9e\xc4\xdb\x27\x28\xcd\x69\xe2\x72\xf9\xcc\x1a\xef\x7a\x76\x86\x67\x3f\x16\xd9\x36\xf4\xa2\xbb\x67\x24\x19\x4e\x67\xf4\xbc\x5f\xfa\x14\xb1\x9d\xf8\x9c\xfd\x01\x06\x9b\xbb\x53\x53\x66\x2a\xb9\x95\xc3\xc9\x1b\xfe\x1b\xee\x7e\x4a\x2a\xe0\xd9\x0d\x18\xa5\xaf\xe1\xe2\x5d\xa0\x19\x77\x53\xdc\x76\xea\x82\x11\x38\xc7\xc1\xf6\xb0\x2e\x46\x10\x0e\xa3\xa7\x71\x65\xe0\x66\x84\xee\x9c\x7a\xbc\x81\x35\x12\x8d\x44\x94\x99\x1d\x8b\x1d\x8b\x11\x4e\x00\xa1\x3d\x3d\xf8\xba\xe2\x4b\x0c\xe6\xb0\xda\xc7\x1b\x60\x7b\x0a\xb9\x1a\x99\x6d\x4a\x25\xcb\x70\x5d\x5c\x0d\x0f\x13\xfd\xa8\xbc\x4c\x2f\x2f\x3b\xc7\x7f\xdd\x34\x6f\x9c\x13\x7b\x66\xc4\xed\x7d\x82\x13\x3b\x76\xe2\xe5\xb4\x2c\xef\x14\x36\x81\x03\x6b\xa4\x9f\xdb\x28\xc2\x78\xbd\x67\x53\xdc\x0a\x0f\xfc\x2b\x6a\xf6\x61\x52\x6c\x55\xc0\xb3\xcf\x56\xec\x13\x84\x49\x91\x3c\x1c\x1e\xa9\x23\x8f\xe2\x1d\x03\xfb\xfb\xa3\x7d\x6a\xce\x8f\x02\xf6\x93\x50\x6f\xa6\x78\x26\xcb\x7f\x6f\xd1\xf0\x91\x80\x37\xce\xe6\xef\xe1\x06\xc8\xd5\x78\x52\x21\xc6\xbb\xcf\x31\xef\x2e\x51\xac\x9d\xd5\x51\xfa\x03\x39\xd6\x6a\x97\x18\x17\xce\x90\x52\x62\xd5\x51\xae\xbf\x8a\x4f\x78\x1c\x40\xf6\x8c\x88\xbb\x40\x98\x7d\x34\xe4\xcb\xd0\x71\xe1\x23\x44\x02\xca\x01\xb0\xd1\x1c\x0b\xde\xfb\x38\x6d\x94\x3f\x66\xcd\x8c\x42\x16\xf9\xe7\xe9\x59\x7f\x22\xf7\x6d\x45\xcf\xd1\x70\x4a\xbb\x91\x09\xde\x3c\xa9\x0d\x43\x78\x7f\x9e\x69\xdd\xf2\x31\xe1\x00\xb5\x47\x78\x68\x57\x15\x82\x1f\x0f\xa7\x4a\xc5\xd3\x76\x76\xf2\x20\xfe\x34\x89\xfc\x2c\xe6\xfe\xbb\xfa\x78\x3c\x3a\x0e\xc3\xbb\x16\xcf\xa8\xa3\x2f\x45\xe9\x15\xdf\x23\x0c\x36\xa3\xef\x5f\x2d\xac\xee\x9b\xd1\x99\x19\x95\xd4\xed\x68\x36\x1d\xf9\x3a\x93\xf6\x6b\x78\xdd\xbb\xed\x13\x9e\x4a\xf9\xf2\x45\xfa\x00\x76\xd2\x4c\xf7\x73\x9e\x22\x3d\x64\x7f\x06\x00\x00\xff\xff\x04\xe4\x1e\xc0\xaa\x14\x00\x00" func utilityTokenforwardingCdcBytes() ([]byte, error) { return bindataRead( @@ -297,7 +297,7 @@ func utilityTokenforwardingCdc() (*asset, error) { } info := bindataFileInfo{name: "utility/TokenForwarding.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa7, 0x61, 0x0, 0x39, 0xe1, 0x8, 0xdd, 0x52, 0xdc, 0x52, 0x6f, 0xcf, 0x1c, 0x71, 0xb0, 0xeb, 0x88, 0x67, 0x4e, 0x94, 0x1f, 0xcb, 0x3f, 0xc6, 0x69, 0x6c, 0xb3, 0x22, 0xe1, 0x68, 0x7f, 0xad}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd0, 0xb5, 0xd5, 0xf5, 0x6a, 0x36, 0xe3, 0x16, 0x78, 0x95, 0x1e, 0xf3, 0x8a, 0x26, 0x5e, 0x7, 0x3d, 0x80, 0x17, 0x4a, 0x61, 0x1, 0x34, 0x70, 0x30, 0x61, 0x56, 0x5f, 0xc, 0xc2, 0x5e, 0x49}} return a, nil } diff --git a/lib/go/templates/forward_templates.go b/lib/go/templates/forward_templates.go index d800b692..40815530 100644 --- a/lib/go/templates/forward_templates.go +++ b/lib/go/templates/forward_templates.go @@ -40,7 +40,7 @@ func GenerateCreatePrivateForwarderScript(fungibleAddr, forwardingAddr, tokenAdd "0x"+forwardingAddr.String(), ) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } func GenerateSetupAccountPrivateForwarderScript(fungibleAddr, forwardingAddr, tokenAddr flow.Address, tokenName string) []byte { @@ -52,7 +52,7 @@ func GenerateSetupAccountPrivateForwarderScript(fungibleAddr, forwardingAddr, to "0x"+forwardingAddr.String(), ) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } func GenerateTransferPrivateManyAccountsScript(fungibleAddr, forwardingAddr, tokenAddr flow.Address, tokenName string) []byte { @@ -64,7 +64,7 @@ func GenerateTransferPrivateManyAccountsScript(fungibleAddr, forwardingAddr, tok "0x"+forwardingAddr.String(), ) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } func GenerateCreateAccountPrivateForwarderScript(fungibleAddr, forwardingAddr, tokenAddr flow.Address, tokenName string) []byte { @@ -76,5 +76,5 @@ func GenerateCreateAccountPrivateForwarderScript(fungibleAddr, forwardingAddr, t "0x"+forwardingAddr.String(), ) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index e86e1834..46e8468d 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -1,42 +1,42 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../transactions/burn_tokens.cdc (1.412kB) +// ../../../transactions/burn_tokens.cdc (1.445kB) // ../../../transactions/create_forwarder.cdc (2.319kB) -// ../../../transactions/generic_transfer.cdc (1.216kB) +// ../../../transactions/generic_transfer.cdc (1.249kB) // ../../../transactions/metadata/setup_account_from_vault_reference.cdc (1.839kB) // ../../../transactions/mint_tokens.cdc (1.707kB) // ../../../transactions/privateForwarder/create_account_private_forwarder.cdc (1.428kB) -// ../../../transactions/privateForwarder/create_private_forwarder.cdc (961B) +// ../../../transactions/privateForwarder/create_private_forwarder.cdc (943B) // ../../../transactions/privateForwarder/deploy_forwarder_contract.cdc (403B) -// ../../../transactions/privateForwarder/setup_and_create_forwarder.cdc (1.82kB) -// ../../../transactions/privateForwarder/transfer_private_many_accounts.cdc (1.144kB) -// ../../../transactions/safe_generic_transfer.cdc (1.831kB) -// ../../../transactions/scripts/get_balance.cdc (474B) -// ../../../transactions/scripts/get_supply.cdc (187B) -// ../../../transactions/scripts/get_supported_vault_types.cdc (971B) -// ../../../transactions/scripts/metadata/get_token_metadata.cdc (554B) -// ../../../transactions/scripts/metadata/get_vault_data.cdc (618B) -// ../../../transactions/scripts/metadata/get_vault_display.cdc (612B) -// ../../../transactions/scripts/metadata/get_vault_supply_view.cdc (695B) -// ../../../transactions/scripts/switchboard/check_receiver_by_type.cdc (562B) -// ../../../transactions/scripts/switchboard/get_vault_types.cdc (690B) -// ../../../transactions/scripts/switchboard/get_vault_types_and_address.cdc (721B) -// ../../../transactions/scripts/tokenForwarder/is_recipient_valid.cdc (436B) -// ../../../transactions/setup_account.cdc (1.323kB) +// ../../../transactions/privateForwarder/setup_and_create_forwarder.cdc (1.802kB) +// ../../../transactions/privateForwarder/transfer_private_many_accounts.cdc (1.21kB) +// ../../../transactions/safe_generic_transfer.cdc (1.864kB) +// ../../../transactions/scripts/get_balance.cdc (469B) +// ../../../transactions/scripts/get_supply.cdc (195B) +// ../../../transactions/scripts/get_supported_vault_types.cdc (979B) +// ../../../transactions/scripts/metadata/get_token_metadata.cdc (559B) +// ../../../transactions/scripts/metadata/get_vault_data.cdc (623B) +// ../../../transactions/scripts/metadata/get_vault_display.cdc (617B) +// ../../../transactions/scripts/metadata/get_vault_supply_view.cdc (700B) +// ../../../transactions/scripts/switchboard/check_receiver_by_type.cdc (570B) +// ../../../transactions/scripts/switchboard/get_vault_types.cdc (698B) +// ../../../transactions/scripts/switchboard/get_vault_types_and_address.cdc (729B) +// ../../../transactions/scripts/tokenForwarder/is_recipient_valid.cdc (444B) +// ../../../transactions/setup_account.cdc (1.061kB) // ../../../transactions/switchboard/add_vault_capability.cdc (1.415kB) // ../../../transactions/switchboard/add_vault_wrapper_capability.cdc (1.443kB) // ../../../transactions/switchboard/batch_add_vault_capabilities.cdc (1.34kB) // ../../../transactions/switchboard/batch_add_vault_wrapper_capabilities.cdc (1.591kB) // ../../../transactions/switchboard/remove_vault_capability.cdc (1.155kB) // ../../../transactions/switchboard/safe_deposit_to_lnf.cdc (4.493kB) -// ../../../transactions/switchboard/safe_transfer_tokens.cdc (2.087kB) -// ../../../transactions/switchboard/safe_transfer_tokens_v2.cdc (1.866kB) +// ../../../transactions/switchboard/safe_transfer_tokens.cdc (2.153kB) +// ../../../transactions/switchboard/safe_transfer_tokens_v2.cdc (1.932kB) // ../../../transactions/switchboard/setup_account.cdc (1.685kB) // ../../../transactions/switchboard/setup_royalty_account.cdc (5.883kB) // ../../../transactions/switchboard/setup_royalty_account_by_paths.cdc (5.958kB) -// ../../../transactions/switchboard/transfer_tokens.cdc (1.518kB) -// ../../../transactions/transfer_many_accounts.cdc (1.35kB) -// ../../../transactions/transfer_tokens.cdc (1.404kB) +// ../../../transactions/switchboard/transfer_tokens.cdc (1.551kB) +// ../../../transactions/transfer_many_accounts.cdc (1.416kB) +// ../../../transactions/transfer_tokens.cdc (1.437kB) package assets @@ -106,7 +106,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _burn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\x4f\x6f\x9b\x4e\x10\xbd\xf3\x29\xe6\xc7\xe1\x27\xe7\x10\x68\xa5\xaa\x07\x2b\x6e\xea\x44\xcd\xb1\xaa\x1a\xb7\x3d\x2f\x30\x98\x6d\x61\x17\xcd\x0e\xb5\xad\x28\xdf\xbd\xda\x59\xc0\x4b\x13\x97\x83\x91\x77\xdf\xbc\x79\x6f\xfe\x90\xe7\xb0\x6b\xb4\x03\x26\x65\x9c\x2a\x59\x5b\x03\xda\x81\x02\xc6\xae\x6f\x15\x23\xd4\x96\xfc\xdf\xe8\x9e\x1b\xc5\x49\x9e\x43\x69\x87\xb6\x82\x02\x61\x70\x58\x41\x71\x02\x6e\x10\x54\xd5\x69\x03\xaa\x2c\xed\x60\x18\xd8\x42\x31\x90\x01\xb6\xbf\xd0\x38\x1f\x54\x93\xed\x3c\x50\x13\x38\xb6\x84\x15\x7c\x57\x43\xeb\xf9\x12\xd1\x82\x12\xa0\xcd\x1e\x54\x27\x14\x87\x29\x8b\x82\x5e\x91\xea\x90\x91\x3c\xaf\x4f\x16\xa9\x4a\x12\xdd\xf5\x96\x18\x1e\x06\xb3\xd7\x45\x8b\x3b\x9f\x32\xa4\x4b\x17\x67\xe9\x84\xfc\x74\x54\x5d\xbf\x04\xc6\x47\x69\x92\x44\xfc\xab\x20\x67\x0d\xdf\x1e\xf4\xf1\xfd\xbb\x2b\x78\x4a\x12\x00\x80\x3c\xcf\x83\x03\x20\x74\x76\xa0\x12\xa5\x3e\xd0\xd8\xb6\x72\x41\xa4\x78\x0f\xa7\x8a\x10\x0a\xf4\xee\xbc\x4b\xac\x84\xa2\x45\x86\xdf\x9e\x62\x0d\x1f\x17\x4a\xb3\x50\x9a\x39\xcf\x57\xac\x91\xd0\xf8\x14\xc1\xff\xc2\xc1\x56\x2a\x6f\x8b\x9f\x58\xf2\xcc\x2b\xed\x58\xc3\xff\x31\x32\x13\xa4\x76\x4c\x8a\x2d\x9d\xe9\x77\x22\x96\x55\x0b\x6e\xe8\xfb\xf6\x04\xb6\x9e\xc4\x17\x58\x5b\x42\xc9\xe9\x85\xcf\xf4\x01\x78\x27\xb7\x53\x69\x02\x61\x4f\xd8\x2b\xc2\x95\xd3\x7b\x83\xb4\x86\xed\xc0\xcd\x36\x4c\xc5\x5c\x3b\xff\x38\x6c\xeb\x2c\xa6\x81\xcd\xc2\x56\x26\x8a\x1e\x05\x70\x8e\xca\x73\xf8\xa1\xb9\xa9\x48\x1d\xe0\xed\x9b\x49\xe5\x34\x5b\xe3\x10\x4a\x4d\x41\x1b\x19\x34\xb5\xc7\x65\xce\x70\x7b\x73\x0d\x41\x61\x56\x58\x22\x7b\xb8\x59\x56\x4a\x1a\xf0\x61\xe5\x89\xd7\xf0\xf2\xe6\x31\x10\x7f\x51\xdc\x5c\xfd\x37\xd3\xfb\x27\x3b\x8c\xf2\xe6\xb9\x09\xef\xab\x85\x87\x7b\x42\xbf\x62\x0a\xe8\xef\xce\x8e\x6b\x24\xbf\xf3\x60\x5d\xb2\x12\x60\x9b\x7f\x3a\x59\xf4\xfc\x55\x47\x82\x88\x1d\x2d\x0c\xdd\xde\x42\xaf\x8c\x2e\x57\xe9\xbd\x2c\xa4\xb1\x0c\x21\xd1\x65\xf9\x93\xf0\x34\x50\x3d\x07\xef\x78\xc4\x72\x60\x84\xa7\x99\xdf\x4f\x92\xec\x03\x49\x3f\x66\x4b\x59\x29\xf5\xf9\x8c\x87\x3b\xb9\x5d\x45\xd5\x0b\xf8\xcc\xbf\x44\xbe\x1b\x2d\xdd\x5c\x9f\xbb\x1b\xc1\x2b\x74\x4c\xf6\x34\x86\xc5\x72\x7a\xeb\x38\xd2\x72\x69\xf6\x60\xb3\x79\x65\x56\xaf\x61\x6a\x6f\xfa\x62\x7b\xba\xc1\xb1\xff\x6e\x55\xe8\x6d\xc4\x9f\x48\x09\x49\x47\x11\xcf\xc9\x9f\x00\x00\x00\xff\xff\xe2\xec\xe9\x43\x84\x05\x00\x00" +var _burn_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x54\xcd\x6e\xd4\x30\x10\xbe\xe7\x29\x86\x1c\xd0\xee\xa1\x09\x48\x88\xc3\xaa\x4b\x69\x2b\x7a\x44\x88\x16\x38\x4f\x92\xd9\x8d\x21\xb1\xa3\xf1\x84\x6d\x55\xf5\xdd\x91\xc7\x9b\xd4\xe9\x0f\x39\x6c\xb4\xf6\xe7\xef\x67\x66\x9c\xb2\x84\x9b\xd6\x78\x10\x46\xeb\xb1\x16\xe3\x2c\x18\x0f\x08\x42\xfd\xd0\xa1\x10\xec\x1c\x87\xbf\xc9\xbe\xb4\x28\x59\x59\x42\xed\xc6\xae\x81\x8a\x60\xf4\xd4\x40\x75\x07\xd2\x12\x60\xd3\x1b\x0b\x58\xd7\x6e\xb4\x02\xe2\xa0\x1a\xd9\x82\xb8\x3f\x64\x7d\x38\xb4\x63\xd7\x07\xa0\x61\xf0\xe2\x98\x1a\xf8\x89\x63\x17\xf8\x32\xf5\x42\x7a\xc0\xd8\x3d\x60\xaf\x14\x87\x49\x05\x61\x40\xc6\x9e\x84\x38\xf0\x06\xb1\xc4\x55\x96\x99\x7e\x70\x2c\x70\x35\xda\xbd\xa9\x3a\xba\x09\x92\x51\x2e\x5f\xac\xe5\x13\xf2\xcb\x2d\xf6\xc3\x12\x98\x2e\xe5\x59\x96\xf0\xaf\xa2\x9d\x0d\xfc\xb8\x32\xb7\x1f\x3f\xac\xe1\x3e\xcb\x00\x00\xca\xb2\x8c\x09\x80\xc9\xbb\x91\x6b\xd2\xfa\x40\xeb\xba\xc6\x47\x93\x9a\x3d\xae\x22\x13\x54\x14\xd2\x85\x94\xd4\x28\x45\x47\x02\x7f\x03\xc5\x06\x3e\x2f\x9c\x16\xb1\x34\xb3\xce\x77\xda\x11\x93\x0d\x12\x31\xff\x22\xc1\xb9\x56\xde\x55\xbf\xa9\x96\x99\x57\xdb\xb1\x81\xb7\x29\xb2\x50\xa4\xf1\xc2\x28\x8e\x1f\xe9\x6f\xd4\xac\x60\x07\x7e\x1c\x86\xee\x0e\xdc\x6e\x32\x5f\xd1\xce\x31\xa9\x66\x30\x3e\xd3\x47\xe0\x85\xee\x4e\xa5\x89\x84\x03\xd3\x80\x4c\x2b\x6f\xf6\x96\x78\x03\xe7\xa3\xb4\xe7\x71\x2a\xe6\xda\x85\xc7\x53\xb7\x2b\x52\x1a\xd8\x2e\x62\x15\xea\xe8\x5a\x01\x8f\xa7\xca\x12\x7e\x19\x69\x1b\xc6\x03\xbc\x7f\x37\xb9\x9c\x66\xeb\x38\x84\x5a\x53\x30\x56\x07\x0d\xf7\xb4\xd4\x8c\xbb\xa7\x27\x10\x1d\x16\x95\x63\x76\x87\x53\x1c\xa5\x5d\x2d\xbb\x30\x29\x61\xd5\xd1\xfa\x49\x29\xb5\x43\x9f\x56\x41\x79\x03\xcf\x77\xae\xa3\xf2\x37\x94\x76\xfd\x66\xd6\x0f\x4f\x71\x38\xb2\xce\x83\x15\xdf\xeb\x45\xc8\x4b\xa6\x70\x07\x11\xf8\x69\xeb\x8f\xf7\x4c\x7f\xe7\xc9\x7b\x2d\x6b\x84\x6d\x9f\x44\xfd\xcf\x50\xbc\x98\x48\x11\x69\xa2\x45\xa0\xb3\x33\x18\xd0\x9a\x7a\x95\x5f\xea\x8d\xb5\x4e\x20\x0a\xbd\x6e\x7f\x32\x9e\x47\xaa\x87\x98\x9d\x6e\xa9\x1e\x85\xe0\x7e\xe6\x0f\xa3\xa6\x17\x86\xb5\x61\x73\xa4\xa2\xd6\xfa\x7c\xa5\xc3\x85\xee\xae\x92\xea\x45\x7c\x11\x5e\x6a\xdf\x1f\x23\x9d\x9e\x3c\xb6\x3f\x81\x37\xe4\x85\xdd\xdd\xf1\x58\x6a\x67\x70\x5e\x12\x2f\xaf\x0d\x27\x6c\xb7\x2f\x0c\xf3\x09\x4c\xed\xcd\x9f\x5d\xaf\x7e\xf4\x12\x3e\x6c\x0d\x85\x18\xe9\x37\x54\x8f\xe4\x47\x13\x0f\xd9\xbf\x00\x00\x00\xff\xff\x43\x71\x53\xb8\xa5\x05\x00\x00" func burn_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -122,7 +122,7 @@ func burn_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "burn_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbe, 0x91, 0xe, 0x82, 0x84, 0xc4, 0xe2, 0x8f, 0x0, 0xc0, 0x5, 0x19, 0x4d, 0x9a, 0x77, 0x5a, 0xed, 0x97, 0x1, 0xc5, 0xd6, 0x8, 0x0, 0x0, 0x57, 0x2a, 0x64, 0x4f, 0xb5, 0xc0, 0xf9, 0x77}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc3, 0x7, 0x64, 0xb4, 0x35, 0x10, 0xef, 0x1b, 0xff, 0xdc, 0xca, 0x44, 0x80, 0xe9, 0x74, 0x3a, 0x8c, 0xcf, 0x64, 0x26, 0x26, 0xb4, 0xf9, 0xf8, 0xb4, 0x67, 0xac, 0x3f, 0x3d, 0xc1, 0xa3, 0x2}} return a, nil } @@ -146,7 +146,7 @@ func create_forwarderCdc() (*asset, error) { return a, nil } -var _generic_transferCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\x4d\x6f\xe3\x38\x0c\x3d\x37\xbf\xe2\x35\x87\xdd\x04\x48\xd3\xcb\x62\x0f\x41\x3f\x36\x28\xd0\xbd\x16\x9d\xce\xdc\x19\x89\xb6\x35\x75\x24\x83\xa2\xe3\x06\x45\xfe\xfb\x40\xb2\xe3\x24\x53\x4c\x2e\x56\x68\xf2\xf1\xf1\xf1\x59\x6e\xdb\x04\x51\x3c\xb7\xbe\x74\x9b\x9a\xdf\xc2\x3b\x7b\x14\x12\xb6\x98\x5e\xc4\xa6\x93\xc9\xed\xed\x2d\x9e\xc8\xa3\xa1\x18\xe1\x3c\xc8\xef\x11\x35\x08\x95\x8c\x86\xb4\x02\x79\x0b\x61\xc3\x6e\xc7\xd2\x47\x9c\x8f\xca\x64\x11\x0a\xfc\x6c\xa3\x42\x2b\x86\xe5\x82\xda\x5a\x97\x19\xef\xad\x72\x11\x35\x6b\xc4\x3e\xb4\x30\x55\x08\x91\x73\x96\x66\x22\x29\xd8\x91\x57\x68\x40\x64\x6f\x41\x11\x1d\xd7\x75\x4e\x31\xd4\xd0\xc6\xd5\x4e\xf7\x5f\xf3\x5c\x3a\xe6\x16\xb9\xcd\xda\xef\x07\xc4\x4c\xcb\x90\xc7\x86\xf3\x20\x9c\x31\xc9\x83\xa4\x6c\xb7\xec\x15\x15\x0b\x2f\x10\x03\x3a\xaa\x33\xb3\x58\x85\xb6\xb6\x19\xa7\x3f\xc2\x54\x6c\xde\x4f\x15\x3b\xaa\x5b\x8e\xa9\xf7\x96\xde\x19\xb1\x95\x7e\x06\xe7\x95\xbd\x65\x7b\xde\xda\xc5\x63\x5b\xe7\x33\x3d\x15\xf2\x91\x8c\xba\xe0\x67\xb4\x0d\xad\xd7\x15\xbe\x3f\xbb\x8f\x7f\xff\x59\x40\xc3\x0a\x6b\x6b\x85\x63\x5c\xe4\xb9\x58\x5e\x48\xab\x15\xbe\xf5\xb2\xa7\x3f\x8b\x51\xf2\xfe\xd5\x4b\xbb\xa9\x9d\x49\xe7\x39\x3e\x27\x13\x00\xc8\x3a\x33\x7e\x24\xd9\x21\x1c\x43\x2b\x26\x31\x24\x45\x15\x6a\x1b\x4f\x82\xc7\x3e\x4a\xc2\xd8\xb0\xf3\x25\x32\xbb\x82\x45\xd8\x66\xa8\x9a\x15\xca\xdb\x26\x63\xad\xf0\xdf\x85\x47\x96\x39\xda\xf7\x6c\x84\x1b\x12\x9e\x45\x57\x7a\x96\x15\xd6\xad\x56\x6b\x63\xd2\x7c\x23\xaf\x81\xdb\xff\xac\x20\x08\x17\x2c\xec\x13\xb1\x90\x09\xf5\x95\x7f\xc7\xec\x31\xb6\xd8\x65\xf0\x63\x5d\x22\x92\x23\xaf\x5c\xe0\x7e\x48\x5e\x6e\x82\x48\xe8\xee\xfe\xfa\xbc\xe4\xf5\x22\x61\xe7\x2c\xcb\xe1\x61\x96\xac\xbd\x3a\xd3\x72\x3e\xb9\xba\xba\x7a\x7c\x44\x43\xde\x99\xd9\xf4\x29\xef\xd7\x07\x45\x0f\xf5\x95\x56\xe8\x7a\x56\x79\xd6\xeb\xe9\xfc\x34\x4a\xe4\xba\x58\x8e\xe2\xe0\xee\x66\x24\xb8\xec\x9c\x56\x56\xa8\x1b\x37\xdc\x3f\x87\xe2\x43\xff\xe0\x0f\x36\xad\xf2\xb9\x3a\x69\x4a\x61\xe3\x1a\x97\x7c\x76\x8f\x92\x75\x10\x71\xa6\x61\xfe\x7b\x5a\x76\x41\xaf\xc7\x58\xb4\x2c\x59\x9f\xc6\x0f\xe5\x8b\x32\xaf\x43\xd5\xe1\x61\x76\x6e\xa3\x13\x74\xfa\x0d\xb2\xce\xe6\xd7\x17\x7b\x7b\x1b\xbc\x71\xb4\x4e\xbe\x35\xfe\xb8\xb9\xa3\x7e\xe3\x05\x71\xfa\x7c\x47\xd0\xb3\x19\x96\x96\x9b\x10\x9d\x0e\x0b\xbb\xbb\xb9\x54\x77\x3e\x08\x77\xf8\x15\x00\x00\xff\xff\xad\x94\x66\x8c\xc0\x04\x00\x00" +var _generic_transferCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x54\xc1\x6e\x22\x39\x10\x3d\x87\xaf\x78\xe1\xb0\xdb\x48\x84\x5c\x56\x7b\x40\x24\x59\x14\x29\x7b\x8d\x32\x99\x99\x73\x61\x17\xb4\x27\xc6\x6e\xd9\x65\x3a\x28\xe2\xdf\x47\x76\x37\x0d\x24\x1a\x2e\x6d\xca\x55\xaf\x5e\x3d\x3f\xdb\x6c\x1b\x1f\x04\x4f\xc9\x6d\xcc\xca\xf2\xab\x7f\x63\x87\x75\xf0\x5b\x8c\x2f\x62\xe3\xd1\xe8\xf6\xf6\x16\x8f\xe4\xd0\x50\x8c\x30\x0e\xe4\xf6\x88\xe2\x03\x6d\x18\x0d\x49\x0d\x72\x1a\x81\x15\x9b\x1d\x87\x2e\x62\x5c\x14\x26\x0d\xbf\xc6\xaf\x14\x05\x52\x33\x34\xaf\x29\x59\x99\x15\xbc\xd7\xda\x44\x58\x96\x88\xbd\x4f\x50\xb5\xf7\x91\x4b\x96\x14\x22\x39\xd8\x92\x13\x88\x47\x64\xa7\x41\x11\x2d\x5b\x5b\x52\x14\x35\xb4\x32\xd6\xc8\xfe\x6b\x9e\xc9\xcb\xd2\xa2\xb4\x59\xba\x7d\x8f\x58\x68\x29\x72\x58\x71\x19\x84\x0b\x26\x39\x50\xd8\xa4\x2d\x3b\x41\xcd\x81\xa7\x88\x1e\x2d\xd9\xc2\x2c\xd6\x3e\x59\x5d\x70\xba\x25\x54\xcd\xea\xed\x54\xb1\x23\x9b\x38\xe6\xde\x5b\x7a\x63\xc4\x14\xba\x19\x8c\x13\x76\x9a\xf5\x79\x6b\x13\x8f\x6d\x8d\x2b\xf4\x24\x90\x8b\xa4\xc4\x78\x57\xd1\xd6\x27\x27\x73\x7c\x7f\x32\xef\xff\xfe\x33\x85\xf8\x39\x96\x5a\x07\x8e\x71\x5a\xe6\xe2\xf0\x4c\x52\xcf\xf1\xad\x93\x3d\xff\x99\x0e\x92\x77\x5b\xcf\x69\x65\x8d\xca\xeb\x09\x3e\x46\x23\x00\x28\x3a\x33\x7e\x64\xd9\x11\x38\xfa\x14\x54\x66\x48\x82\xda\x5b\x1d\x4f\x82\xc7\x2e\x4a\x81\xb1\x62\xe3\x36\x28\xec\xd6\x1c\x02\xeb\x02\x65\x59\x20\xbc\x6d\x0a\xd6\x1c\xff\x5d\x78\x64\x56\xa2\x5d\xcf\x26\x70\x43\x81\xab\x68\x36\x8e\xc3\x1c\xcb\x24\xf5\x52\xa9\x3c\xdf\xc0\xab\xe7\xf6\x3f\x0b\x08\x81\xd7\x1c\xd8\x65\x62\xbe\x10\xea\x2a\xff\x8e\xc5\x63\xac\xb1\x2b\xe0\xc7\xba\x4c\xa4\x44\x5e\x78\x8d\xbb\x3e\x79\xb6\xf2\x21\xf8\x76\x41\x49\xea\xea\x92\xda\x4f\x23\xb5\x0e\xd4\xd2\xca\xf2\x04\x7f\x7d\x5c\xee\x3e\x07\xbf\x33\x9a\xc3\xe1\xbe\xca\xde\x9f\x9f\x89\x3d\x19\x5d\x5d\x5d\x3d\x3c\xa0\x21\x67\x54\x35\x7e\x2c\x06\x70\x5e\xd0\xf5\xfa\xca\xdb\xb7\x1d\xed\x22\xc6\xf5\x78\x72\x9a\x35\xb2\x5d\xcf\x06\xf5\xb0\xb8\x19\x26\x98\xb5\x3d\xbd\xc1\x02\xdd\xb7\x2f\x3e\x74\x1f\x7e\x67\x95\x84\xcf\xe5\xcb\x32\x04\x56\xa6\x31\xd9\x88\x77\xd8\xb0\xf4\x2a\x57\xe2\x27\x9f\xd3\x8a\x4d\x3a\xc1\x86\xa2\xd9\x86\xe5\x71\xb8\x49\x8b\xcf\xca\xbc\xf4\x55\x87\xfb\xea\xdc\x67\x27\xe8\xfc\xeb\x75\xaf\x26\xd7\x17\x07\xfb\xda\x9b\xe7\xe8\xad\xf2\xac\xfc\xf1\x68\x8f\xfa\x0d\x2f\xc8\xe9\x7e\x0f\xa0\x67\x33\xcc\x34\x37\x3e\x1a\xe9\x0f\x6c\x71\x73\xa9\xee\xa4\x17\xee\xf0\x3b\x00\x00\xff\xff\xb8\xde\x8f\x3a\xe1\x04\x00\x00" func generic_transferCdcBytes() ([]byte, error) { return bindataRead( @@ -162,7 +162,7 @@ func generic_transferCdc() (*asset, error) { } info := bindataFileInfo{name: "generic_transfer.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5b, 0x68, 0xc3, 0xf5, 0x27, 0xf, 0xe0, 0x8f, 0x1b, 0xce, 0xc8, 0xc2, 0xc4, 0x41, 0x1e, 0x30, 0x28, 0x2c, 0xb5, 0x73, 0xbd, 0x65, 0xb8, 0x49, 0xd7, 0x4, 0x76, 0xba, 0xdc, 0x41, 0xee, 0x78}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x32, 0xf0, 0x89, 0x6e, 0x8b, 0xe2, 0x48, 0x4c, 0x6, 0x93, 0xf7, 0xf6, 0xec, 0x59, 0x93, 0x5e, 0x12, 0x21, 0xb9, 0xef, 0x42, 0x4d, 0x91, 0x79, 0xcb, 0xd1, 0x9a, 0x75, 0xcd, 0x16, 0xec, 0x1c}} return a, nil } @@ -226,7 +226,7 @@ func privateforwarderCreate_account_private_forwarderCdc() (*asset, error) { return a, nil } -var _privateforwarderCreate_private_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\xcd\x8a\xa3\x40\x10\xbe\xf7\x53\x14\x39\xec\x1a\x48\xf4\x2e\xd9\x85\xb0\x6c\x8e\x43\x98\x09\x73\x2f\x4d\x8d\x36\x31\xdd\x52\x96\x66\x82\xe4\xdd\x87\xf6\x0f\x4d\x22\x0c\xd3\x07\x69\xaa\xbe\x9f\xae\xaf\xd4\xe7\xdc\xb2\xc0\xae\x34\x89\x8e\x32\x3a\xd8\x13\x19\xf8\x60\x7b\x86\xc5\xa4\xb6\x50\x1d\xf2\xff\x27\x9e\xf3\x29\x70\x5c\x1a\x70\x7b\xd6\x15\x0a\xbd\x52\x4c\xba\x22\xde\x59\xbe\x20\x1f\x89\x3b\xce\x5c\x7b\xa1\x54\x10\xc0\x21\xd5\x05\x08\xa3\x29\x30\x16\x6d\x0d\xc4\x4c\x28\x54\x00\x82\xa1\x0b\xe4\x2d\x19\xb8\x63\x83\x36\x80\x06\x30\x8e\x6d\x69\x04\x24\x45\x01\x27\x73\xb4\x54\x98\xdf\x02\x98\x31\xe1\xf1\x0a\x29\x56\x04\xf8\x48\xb7\xec\xaa\x65\x94\xe9\x18\xa4\x19\xac\x6f\x39\x95\xa8\x94\x46\xe9\x5e\xe6\x1d\xcb\x4c\x94\x1a\x3f\xb3\x56\x0a\x00\x20\x67\xca\x91\xc9\x2b\x74\x62\x88\x43\xd8\x96\x92\x6e\xdb\xc7\x2d\xa1\x6e\x20\xee\xf4\x26\xff\x30\xc7\x48\x67\x5a\xae\xf0\x07\x5a\x8e\x9f\x69\x73\xda\xfc\x1a\x27\xeb\x37\x7e\xf5\x64\x2b\x7e\x9f\xdf\xed\xaf\x37\xc8\xba\x13\x74\x33\x06\x34\x52\xe8\xc1\xab\x09\x54\x90\x13\x92\x10\x1e\xbd\xde\xc4\x32\x26\xb4\x47\x49\x07\xc6\x52\x0d\xd7\x8c\x04\x2a\x87\x83\xcd\x7a\x76\xdd\x7e\xbb\xb9\x17\xba\x0c\x25\x8f\x29\xd6\xb9\x26\x23\xe1\x93\x08\x46\x06\x5d\x14\x05\x56\xe4\x6d\xd6\x8d\xd5\x0a\xc4\x86\xf3\x66\x77\x8d\xd1\x00\x8f\xb2\x6d\xc2\xf5\xac\xd6\x70\xbb\xcf\xf6\xbb\xee\xfb\xe6\x87\x72\xe6\xcf\x03\xff\xc1\x14\xa3\x35\xb8\xef\x4d\xdd\xd4\x57\x00\x00\x00\xff\xff\x21\x07\xb3\xdd\xc1\x03\x00\x00" +var _privateforwarderCreate_private_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x52\x4f\x6b\xfa\x40\x10\xbd\xef\xa7\x18\x3c\xfc\x7e\x11\x34\xb9\x07\x5b\x90\x52\x8f\x45\x5a\xe9\x7d\x12\xa7\xc9\x62\xdc\x0d\x93\x49\xac\x88\xdf\xbd\x6c\xfe\x91\xa8\x81\xd2\x3d\x84\x65\xe6\xcd\x7b\xfb\xe6\x45\x1f\x73\xcb\x02\x9b\xd2\x24\x3a\xca\x68\x67\x0f\x64\xe0\x8b\xed\x11\x66\xa3\xda\x4c\xb5\xc8\xd7\x6f\x3c\xe6\x63\xe0\xb0\xd4\xe3\xb6\xac\x2b\x14\x7a\xa7\x98\x74\x45\xbc\xb1\x7c\x42\xde\x13\xb7\x33\x53\xed\x99\x52\x41\x00\xbb\x54\x17\x20\x8c\xa6\xc0\x58\xb4\x35\x10\x33\xa1\x50\x01\x08\x86\x4e\x90\x37\xc3\xc0\xed\x34\x68\x03\x68\x00\xe3\xd8\x96\x46\x40\x52\x14\x70\x34\x7b\x4b\x85\xf9\x2f\x80\x19\x13\xee\xcf\x90\x62\x45\x80\xf7\xe3\x96\x5d\xb5\x8c\x32\x1d\x83\xd4\xc6\xba\x96\x63\x89\x4a\xa9\x99\x6e\x69\x3e\xb1\xcc\x44\xa9\xe1\x33\x2f\x4a\x01\x00\xe4\x4c\x39\x32\x79\x85\x4e\x0c\x71\x08\xeb\x52\xd2\x75\xf3\xb8\x39\x5c\x6a\x88\x3b\x9d\xc8\x0b\xe6\x18\xe9\x4c\xcb\x19\x9e\xa0\x99\xf1\x33\x6d\x0e\xab\x7f\x97\x51\x06\x7e\xb7\xad\xeb\xb3\xd7\x93\xb8\x13\xb4\x8e\x02\x1a\x24\xd1\x81\x17\x23\xa8\x20\x27\x24\xe1\x28\x46\xbf\x76\xf2\x21\x96\x31\xa1\x2d\x4a\xda\x4f\xcc\x55\x7f\xcd\x48\xa0\x72\x38\x58\x2d\x27\xc3\xf5\x9b\x9c\xde\xe8\xd4\x97\x3c\xa6\x58\xe7\x9a\x8c\x84\x0f\x0c\x0f\x04\x5a\xe3\x05\x56\xe4\xad\x96\xb5\xd4\x02\xc4\x86\xd3\x62\x37\x8d\x81\x81\x7b\xda\x76\x9f\x93\x5c\xfd\xed\x76\xb7\xbf\x55\xdf\xd6\xbf\x8f\x13\x7f\xbc\xf0\x3f\xb8\x18\xc4\xe0\xbe\x57\x75\x55\x3f\x01\x00\x00\xff\xff\xff\x8d\xc1\x45\xaf\x03\x00\x00" func privateforwarderCreate_private_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -242,7 +242,7 @@ func privateforwarderCreate_private_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "privateForwarder/create_private_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x4e, 0xba, 0x8, 0xf3, 0x78, 0x7c, 0xcc, 0x89, 0x26, 0x9c, 0x27, 0xee, 0xbf, 0x6c, 0xac, 0xf, 0x4e, 0xa6, 0x77, 0x19, 0x5b, 0x1a, 0x91, 0xd0, 0xda, 0xff, 0xa5, 0x82, 0x37, 0x2a, 0xc6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3a, 0x2, 0x94, 0x1, 0x6d, 0xcc, 0xdb, 0x68, 0x91, 0xb0, 0xe4, 0xc2, 0x90, 0xcc, 0xa7, 0xe0, 0x29, 0x1b, 0x67, 0x32, 0xcf, 0xdc, 0x56, 0x8a, 0x4b, 0xdb, 0x5b, 0xd9, 0x78, 0x14, 0x25, 0x37}} return a, nil } @@ -266,7 +266,7 @@ func privateforwarderDeploy_forwarder_contractCdc() (*asset, error) { return a, nil } -var _privateforwarderSetup_and_create_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x4f\x8f\xa2\x4e\x10\xbd\xf3\x29\x2a\x73\x98\x40\xe2\xc8\xdd\xa0\xc9\xfc\x26\x33\xc7\x5f\xcc\xee\x64\xef\x65\x53\x42\x47\xec\x26\x45\xa1\x63\x8c\xdf\x7d\x43\x8b\x48\x8b\xec\xba\x9b\xe5\x44\xba\xfe\xbd\xaa\x57\xaf\x02\xbd\x2d\x2d\x0b\x7c\xd4\x26\xd3\xab\x82\x3e\xed\x86\x0c\xac\xd9\x6e\xe1\xc9\x7b\x7b\xba\x78\xbe\x7f\xe1\xb6\xf4\x1d\xfb\x4f\x9d\xdf\x92\xf5\x0e\x85\xbe\x91\x22\xbd\x23\xfe\xb0\xbc\x47\x4e\x89\xdb\x98\x31\xf3\x53\x10\xc4\x71\x0c\x9f\xb9\xae\x40\x18\x4d\x85\x4a\xb4\x35\x80\x69\x5a\x01\xc2\x0f\xac\x0b\x99\x00\x42\x79\x8e\x07\x6e\x13\xc0\xfa\x92\xc1\xc5\x23\xac\xb0\x40\xa3\x08\x14\x96\xb8\xd2\x85\x96\xc3\x04\xd0\xa4\x4d\x68\xbd\x2a\xb4\xea\x19\x9a\x58\x90\xfc\x9a\x2c\x08\xfa\xa5\x8f\x41\x00\x00\x50\x32\x95\xc8\x14\x56\x3a\x33\xc4\x33\x78\xad\x25\x7f\x55\xca\xd6\x46\x22\x38\x3a\x97\xe6\xd3\x6b\x38\x7b\x4c\x33\x92\xb7\xae\x46\xf2\x3c\xd6\xf1\xb4\xfb\x5b\x84\xa3\x3e\x37\x86\xa5\x6b\x61\x89\x92\x47\x53\x95\x93\xda\x84\x7d\x08\xcd\x17\xc7\xdd\x88\xba\xc9\xc0\x1e\x2b\xc0\x82\x09\xd3\x03\x54\x24\x50\x97\x5e\x0c\x93\xd4\x6c\xba\xa7\x53\x70\xa7\xa9\x95\x65\xb6\xfb\xe4\xb9\xcf\xf9\xd4\xb1\xb2\x08\x1b\x66\x67\x30\xb4\x7c\x17\xcb\x98\x91\x83\x0b\xf3\x39\x18\x5d\x0c\xd1\xbe\x31\x35\x60\x11\x0c\xed\xfd\x25\x73\x39\x1c\x77\x65\x2d\xa0\x05\xb4\x81\xea\x9c\xd2\x4b\xd2\x22\xac\x70\x47\xa1\x67\x68\xbe\xe4\xc5\xc3\xa5\x5c\xb5\xf7\x6d\x29\x07\x97\x3e\x8c\x26\x83\x10\xb1\xbf\x69\xc6\x8b\x88\xee\xcd\xad\x85\x54\x68\xb3\x49\x9e\x8f\x9e\xa0\xa6\x17\x2e\x4f\x0b\x1f\x6d\xdc\xf2\x16\x53\xaf\xf6\xc5\xd9\x47\x29\xc8\x19\xc9\xa3\x28\xa3\x2b\xae\x82\xa4\x5b\xf6\xeb\x8e\xc2\x7c\x64\x75\xc7\x91\xff\x12\x6c\xaf\x60\x9f\xe0\xa1\xfe\xc4\x3a\xf9\x9d\x89\x96\x1c\x05\xac\x29\x0e\x40\x5f\xa5\xad\xa8\xea\x27\x69\xdc\x2e\xca\x5e\x6b\x2a\x52\x90\x9c\x6d\x9d\xe5\xce\xf2\x5f\x6b\xd1\x46\x88\xd7\xa8\xe8\x3e\x11\xc3\x71\xdd\x34\xd8\xe6\xb9\x65\x66\x18\x77\xd5\xe1\x3f\x24\xe6\xaa\xd7\xe4\x65\xf4\x8c\xb6\x1b\xfc\x3f\xed\xbb\xa7\x90\x49\xe9\x52\x93\x91\xd9\x1d\x72\xa3\xc1\x56\x3a\xa1\x24\x2f\x5d\xb9\x89\xdb\xf8\x47\x4f\x50\x5f\xd4\x23\x0b\xff\xc8\xc5\xf3\xc6\xf6\xe7\xe7\xef\xfe\xd8\xff\xa2\x87\xc0\xd7\xf1\x29\x38\x05\x3f\x03\x00\x00\xff\xff\xa7\xc6\xef\xf9\x1c\x07\x00\x00" +var _privateforwarderSetup_and_create_forwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x54\x41\x8f\xa2\x4c\x10\xbd\xf3\x2b\x2a\x73\x98\x40\xa2\x72\x37\x68\x32\xdf\x64\xe6\xf8\xc5\xec\x4e\xf6\x5e\x36\x25\x74\xc4\x6e\x52\x14\x3a\xc6\xf8\xdf\x37\xb4\x88\xf4\x20\xbb\xee\x66\x39\x91\xae\x7a\x55\xaf\xeb\xd5\xeb\x40\xef\x4a\xcb\x02\xef\xb5\xc9\xf4\xba\xa0\x0f\xbb\x25\x03\x1b\xb6\x3b\x78\xf2\xce\x9e\xae\x99\x6f\x9f\xb8\x2b\xfd\xc4\xfe\x51\x97\xb7\x62\xbd\x47\xa1\x6f\xa4\x48\xef\x89\xdf\x2d\x1f\x90\x53\xe2\x16\x33\x16\x7e\x0a\x82\x38\x8e\xe1\x23\xd7\x15\x08\xa3\xa9\x50\x89\xb6\x06\x30\x4d\x2b\x40\xf8\x81\x75\x21\x13\x40\x28\x2f\x78\xe0\xb6\x00\x6c\xae\x15\x1c\x1e\x61\x8d\x05\x1a\x45\xa0\xb0\xc4\xb5\x2e\xb4\x1c\x27\x80\x26\x6d\xa0\xf5\xba\xd0\xaa\x17\x68\xb0\x20\xf9\xad\x58\x10\xf4\x5b\x9f\x82\x00\x00\xa0\x64\x2a\x91\x29\xac\x74\x66\x88\xe7\xf0\x52\x4b\xfe\xa2\x94\xad\x8d\x44\x70\x72\x29\xcd\xa7\x37\x70\xc9\x98\x65\x24\xaf\x5d\x8f\xe4\x79\xec\xc6\xb3\xee\x6f\x19\x8e\xe6\x7c\x09\xac\xdc\x15\x56\x28\x79\x34\x53\x39\xa9\x6d\xd8\xa7\xd0\x7c\x71\xdc\x8d\xa8\x9b\x0c\x1c\xb0\x02\x2c\x98\x30\x3d\x42\x45\x02\x75\xe9\x61\x98\xa4\x66\xd3\x1d\x9d\x83\x3b\x97\x5a\x5b\x66\x7b\x48\x9e\xfb\x9a\xcf\x9c\x2a\xcb\xb0\x51\x76\x0e\xc3\xc8\x77\xb1\x8c\x19\x39\xba\xb0\x58\x80\xd1\xc5\x90\xed\x2b\x53\x43\x16\xc1\xd0\xc1\x5f\x32\x57\xc3\x69\x57\xd6\x02\x5a\x40\x1b\xa8\x2e\x25\xbd\x22\x2d\xc3\x0a\xf7\x14\x7a\x81\xe6\x4b\xa6\x1e\x2f\xe5\xba\xbd\xed\x4a\x39\xba\xf2\x61\x34\x19\x40\xc4\xfe\xe6\x32\x1e\x22\xba\x37\xb7\x96\x52\xa1\xcd\x36\x79\x3e\x79\x86\x9a\x5d\xb5\x3c\x2f\x7d\xb6\x71\xab\x5b\x4c\xbd\xde\xd7\x64\x9f\xa5\x20\x67\x24\x8f\xb2\x8c\x6e\xbc\x0a\x92\x6e\xd9\x6f\x3b\x0a\x8b\x91\xd5\x1d\x67\xfe\x4b\xb2\xbd\x86\x7d\x81\x87\xfe\x13\xeb\xec\x77\x11\x5a\x72\x14\xb0\xa6\x38\x02\x7d\x96\xb6\xa2\xaa\x5f\xa4\x49\xbb\x3a\x7b\xa3\xa9\x48\x41\x72\xb6\x75\x96\xbb\xc8\x7f\x6d\x44\x1b\x21\xde\xa0\xa2\x87\x84\x68\x51\x5f\x75\x18\x0e\xf5\xe6\xba\x7f\x28\xc3\xcd\x9d\xc9\x74\xf4\xd1\x6c\xf7\xf5\x7f\x3a\x74\x47\x21\x93\xd2\xa5\x26\x23\xf3\x3b\x52\x46\x83\x1d\x74\xb6\x48\xa6\x5d\xbb\x89\xdb\xef\x47\x1f\x9c\xbe\x85\x47\xd6\xfb\x91\xf7\xcd\x1b\xdb\x9f\x3f\x76\xf7\xc7\xfe\x17\x77\x08\x7c\xd7\x9e\x83\x73\xf0\x33\x00\x00\xff\xff\xa6\x15\x6c\x77\x0a\x07\x00\x00" func privateforwarderSetup_and_create_forwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -282,11 +282,11 @@ func privateforwarderSetup_and_create_forwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "privateForwarder/setup_and_create_forwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf0, 0x8, 0x6, 0xa0, 0xee, 0x62, 0x7e, 0x1f, 0xc8, 0xb4, 0xf4, 0xe4, 0xf0, 0x3c, 0x15, 0xd2, 0x12, 0xf6, 0xcc, 0x38, 0x19, 0x38, 0x62, 0x89, 0x46, 0xc1, 0x4e, 0x16, 0xb, 0xb4, 0xcd, 0x7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x8c, 0x82, 0x7c, 0xd4, 0xe2, 0xcc, 0x1, 0xe4, 0xee, 0x59, 0x2d, 0xa9, 0xfb, 0xf0, 0x5d, 0xd0, 0x99, 0x94, 0x91, 0xbb, 0xb3, 0x7, 0xe2, 0xa2, 0x1e, 0x95, 0xf7, 0xdf, 0xc7, 0x1f, 0x51}} return a, nil } -var _privateforwarderTransfer_private_many_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x41\x6f\xda\x4e\x10\xc5\xcf\xec\xa7\x78\xe1\x90\x3f\x48\xff\x9a\x4b\xd5\x83\x95\x36\x42\x55\xe9\xa9\x52\x94\xa4\xbd\x54\x3d\x2c\xf6\xd8\x5e\xc5\xec\x5a\xb3\x63\x20\x8a\xf8\xee\x95\xbd\x8b\x65\x4a\x11\x97\x9e\x40\xb3\x6f\xde\xbe\xdf\xcc\xda\x6c\x1a\xc7\x82\x55\x6b\x4b\xb3\xae\xe9\xd9\xbd\x90\x45\xc1\x6e\x83\xe9\x49\x6d\xaa\xa2\xf2\xcb\x5e\x6f\x9a\x53\xe1\xb8\x34\xe8\x1e\xd8\x6c\xb5\xd0\x23\x65\x64\xb6\xc4\x2b\xc7\x3b\xcd\x39\x71\xec\xb9\x74\x3c\x55\x6a\xb1\x58\xe0\xb9\x32\x1e\xc2\xda\x7a\x9d\x89\x71\x36\xfc\x2f\x88\x3d\xc4\x61\xa3\xed\x2b\x74\x9e\x33\x79\x4f\x1e\x52\xb1\x6b\xcb\x0a\x52\x91\x61\x34\xc1\x19\x1c\xad\xbd\x52\x23\xa3\x59\x6c\x5b\x6e\x5c\x6b\xe5\x9b\x6e\x52\xbc\x2d\x43\x29\xc5\xf7\x95\xd9\x7f\x78\x7f\x98\xe3\x4d\x29\x00\xe8\x83\x10\x7e\xe8\xb6\x16\x30\x79\xd7\x72\x46\x90\x4a\x0b\x2a\x57\xe7\xdd\xcd\x04\xe9\xb0\x7d\xa8\x6a\x26\xac\xc9\xd8\x72\xc8\xcb\x94\xf7\x56\x35\x09\xb6\x9d\xcf\x23\x15\x29\x6e\xc7\x23\x4b\x7a\x7f\x35\xc8\x22\x40\x1c\x89\xb1\xe5\x13\xd9\x9c\x38\xc5\xed\xa5\xa1\x25\x41\x11\x2c\x1a\xa6\x46\x33\xcd\xbc\x29\x6d\xd7\xb5\x6c\xa5\x5a\x66\x59\x87\x3b\x80\x45\xb8\xaf\x24\xd0\x60\x2a\x88\xc9\x76\x64\xae\x27\x0a\x9d\xff\x79\x78\x71\x4c\x79\xc8\x3d\xf4\x79\xaa\x8b\xe4\x88\x82\x8f\x51\x9d\xac\x1d\xb3\xdb\xdd\xfd\x85\xec\xd3\xac\x5b\x79\x8a\xf3\x93\x27\x71\xac\x4b\x7a\xd0\x52\xcd\xd5\x64\x32\xb9\xbf\x47\xa3\xad\xc9\x66\xd3\xcf\xae\xad\x73\x58\x27\x08\xbe\xe7\x21\xdd\x2e\x64\xec\x8d\x6e\xa6\x73\x75\x1a\xf0\xc2\x10\xcf\xf3\x5e\x99\xe9\x31\xfc\x15\xd9\xbf\x27\x39\x84\x1f\xda\x53\xd6\x0a\x8d\x17\x57\x38\x3e\x3e\x7e\x18\x8b\x3f\x1f\x74\xf2\x42\xaf\x7e\xac\xbf\x36\x93\xc4\x93\xcd\x23\x5f\xbf\x1c\x7f\xfc\x48\xfe\x8f\x8f\x3b\xc5\xdd\xbb\x93\xb5\x27\x3b\x23\x55\xce\x7a\x37\xd3\xfd\xb5\xe9\x59\x8a\x9f\xb1\xf0\xeb\x66\x3e\x5a\xcd\x21\xa2\x1d\xd4\xef\x00\x00\x00\xff\xff\x92\x7f\xff\x83\x78\x04\x00\x00" +var _privateforwarderTransfer_private_many_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x93\x41\x6b\xdb\x40\x10\x85\xcf\xd9\x5f\xf1\xe2\x43\x2a\x43\x2b\x5f\x4a\x0f\x22\x6d\x30\xa5\xee\xa9\x10\x92\xb4\x3d\x94\x1e\xd6\xd2\x48\x5a\x22\xef\x8a\xd9\x91\xed\x10\xfc\xdf\x8b\xb4\x6b\x23\xd7\x18\x43\xe9\x49\x62\x76\xe6\xed\x7c\x6f\x76\xcc\xaa\x75\x2c\x58\x74\xb6\x32\xcb\x86\x9e\xdc\x33\x59\x94\xec\x56\x98\x1c\xc5\x26\x2a\x66\x7e\xd9\xea\x55\x7b\x9c\x38\x0e\x1d\xf2\xee\xd9\xac\xb5\xd0\x03\xe5\x64\xd6\xc4\x0b\xc7\x1b\xcd\x05\x71\xac\x39\x77\x3c\x51\x6a\x36\x9b\xe1\xa9\x36\x1e\xc2\xda\x7a\x9d\x8b\x71\x36\xfc\x97\xc4\x1e\xe2\xb0\xd2\xf6\x05\xba\x28\x98\xbc\x27\x0f\xa9\xd9\x75\x55\x0d\xa9\xc9\x30\xda\xa0\x0c\x8e\xd2\x5e\xa9\x91\x50\x12\xcb\xe6\x2b\xd7\x59\xf9\xa6\xdb\x0c\xaf\xf3\x10\xca\xf0\x7d\x61\xb6\x1f\xde\xef\xa6\x78\x55\x0a\x00\x86\x46\x08\x3f\x74\xd7\x08\x98\xbc\xeb\x38\x27\x48\xad\x05\xb5\x6b\x8a\xfe\x66\x82\xf4\xd8\x3e\x44\x35\x13\x96\x64\x6c\x75\xe8\x97\xa9\x18\xa4\x1a\x12\xac\x7b\x9d\x07\x2a\x33\xe8\x4e\xea\xe4\xc8\xdf\xf4\xa7\x91\xba\x60\xbd\xd1\xcb\x86\xa6\xb8\x19\x7b\x9a\x0e\x0d\xa8\x83\x4e\x24\x8c\x9e\x19\x5b\x3d\x92\x2d\x88\x33\xdc\x9c\x73\x35\x0d\x19\x41\xa2\x65\x6a\x35\x53\xe2\x4d\x65\xfb\xaa\x79\x27\xf5\x3c\xcf\x7b\x3f\x0e\xe4\x91\xfe\x2b\x09\x34\x98\x4a\x62\xb2\x3d\xba\x1b\x90\x43\xe5\x1b\x0f\x2f\x8e\xa9\x08\x60\x87\x3a\x4f\x4d\x99\xee\x59\xf1\x31\x66\xa7\x4b\xc7\xec\x36\xb7\xff\x82\xfe\x29\xe9\x1f\x4d\x86\xd3\x93\x47\x71\xac\x2b\xba\xd7\x52\x4f\xd5\xd5\xd5\xd5\xdd\x1d\x5a\x6d\x4d\x9e\x4c\x3e\xbb\xae\x29\x60\x9d\x20\x5c\x7c\x4a\xe1\x36\x01\x62\x10\xba\x9e\x4c\xd5\x31\xc1\x19\x97\x4f\x80\x2e\x99\xbe\x6f\xfe\x42\xda\xff\x27\xd9\x85\x0f\x6d\x29\xef\x84\xc6\x93\x2d\x1d\xef\xd7\x07\xc6\xe2\xef\x95\x48\x9f\xe9\xc5\x8f\xf3\x2f\x79\x92\x7a\xb2\x45\xe4\x1b\x86\xe3\xf7\x6b\xf6\x36\xae\x47\x86\xdb\x77\x47\xef\x22\xdd\xc4\xa1\x27\x7a\xb8\x36\x3b\xe9\xe2\x57\x0c\xfc\xbe\x9e\x8e\x46\xb3\x8b\x68\x3b\xf5\x27\x00\x00\xff\xff\x54\xc5\x91\xa8\xba\x04\x00\x00" func privateforwarderTransfer_private_many_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -302,11 +302,11 @@ func privateforwarderTransfer_private_many_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "privateForwarder/transfer_private_many_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x55, 0x3f, 0x3f, 0x6a, 0x6c, 0x28, 0x39, 0x37, 0x44, 0xea, 0xf7, 0x2c, 0xaa, 0x34, 0xb6, 0x13, 0x4b, 0x70, 0xab, 0x38, 0x36, 0x94, 0xe7, 0xdd, 0xd6, 0xf6, 0x84, 0x5, 0x69, 0xc, 0x1d, 0xc0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3c, 0x2, 0x1, 0x88, 0x2d, 0xc9, 0x4b, 0x75, 0xcf, 0xdf, 0x35, 0xdf, 0x90, 0x78, 0xfc, 0xba, 0xdd, 0xa, 0xa8, 0x58, 0x4f, 0x23, 0x6a, 0x71, 0xcb, 0xa3, 0x49, 0xea, 0xc2, 0x93, 0xe2, 0xb4}} return a, nil } -var _safe_generic_transferCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\xc1\x6e\xe3\x36\x10\x86\xcf\xf1\x53\xcc\xfa\xb0\x2b\x01\x5e\xe5\x52\xf4\x60\x24\x4d\xdd\x00\xe9\xa1\x87\x06\x89\xdb\x3b\x2d\x8e\x24\x36\x34\x29\x70\x46\x56\x0c\xc3\xef\x5e\x90\x94\x68\x2b\x4e\xda\xec\xc9\xf4\x98\x9c\xff\x9b\x9f\x33\xb4\xda\xb6\xd6\x31\x3c\x74\xa6\x56\x1b\x8d\x6b\xfb\x82\x06\x2a\x67\xb7\x30\x9f\xc4\xe6\xb3\xd9\xf5\xf5\x35\xdc\x0b\x03\xad\x20\x02\x65\x40\x98\x3d\x10\x5b\x27\x6a\x84\x56\x70\x03\xc2\x48\x70\x58\xa2\xda\xa1\x8b\x11\x65\x88\x51\x48\xb0\x15\xfc\xd3\x11\x03\x37\x08\x12\x2b\xd1\x69\x2e\x42\xbe\x75\xa3\x08\x34\x32\xc1\xde\x76\x50\x36\xd6\x12\x86\x5d\x1c\x40\x7c\xb0\x17\x86\x81\x2d\x10\x1a\x09\x82\xa0\x47\xad\xc3\x96\x52\xb4\x62\xa3\xb4\xe2\xfd\xe5\x3e\xe5\x97\x41\x22\xc8\xac\xcc\x7e\xc8\x18\xb0\x4a\x61\x60\x83\xa1\x10\x0c\x39\x85\x01\xe1\xea\x6e\x8b\x86\xa1\x41\x87\x0b\x20\x0b\xbd\xd0\x81\x8c\x1a\xdb\x69\x19\xf2\xc4\x25\x94\x0d\x96\x2f\xa7\x13\x3b\xa1\x3b\x24\xaf\xbd\x15\x2f\x08\xd4\xb9\x58\x83\x32\x8c\x46\xa2\x3c\x97\x56\x34\xca\x2a\x13\xf0\xd8\x09\x43\xa2\x64\x65\x4d\x26\xb6\xb6\x33\xbc\x84\xbf\x1e\xd4\xeb\xcf\x3f\x2d\x80\xed\x12\x56\x52\x3a\x24\x5a\x84\xba\xd0\x3d\x0a\x6e\x96\xf0\x1c\x6d\xf7\x5f\x16\xc9\xf2\xf8\xd3\x63\xb7\xd1\xaa\xf4\xeb\x1c\x0e\xb3\x19\x00\x40\xf0\x19\xe1\x6f\x6f\x3b\x38\x24\xdb\xb9\xd2\x13\x0a\x86\xc6\x6a\x49\x27\xc3\x29\x46\x85\x43\xd8\xa0\x32\x35\x04\xba\x0a\x9d\x43\x19\x52\x69\x64\x60\xdc\xb6\x21\xd7\x12\x7e\x9d\xf4\x48\x11\xa2\x49\xf3\x37\xeb\x9c\xed\x7d\xf9\x58\xa1\x43\x53\xe2\x88\x3a\x8a\xa9\x6a\x88\x78\x29\x51\x96\xbe\x7a\x90\x16\xc9\x7c\x63\xa0\xae\x0d\xad\xe9\xe1\x7c\xed\x01\xc7\x9f\x4b\x20\xd1\x91\xa7\xa1\xfc\x27\xac\x96\xf0\xf5\x10\x49\xc6\xe0\x31\xd2\xb4\x0e\x5b\xe1\x30\x23\x55\x1b\x74\x4b\x58\x75\xdc\xac\xa2\x5e\x72\x69\xa0\xfe\x1d\x19\x04\xb8\x84\xcc\x36\x12\x84\x93\xdf\x28\x74\x3c\x4a\xd8\x85\x52\xc7\x73\x9e\x26\x44\x9e\xb0\x82\xdb\x61\x73\xb1\x09\x06\xdc\x7c\x3d\x4c\x5d\x7a\x74\x76\xa7\x24\xba\xe3\x2f\x99\x1f\xb4\xe5\xd9\xcd\xe6\xb3\xab\xab\xab\xbb\x3b\x68\x85\x51\x65\x36\xbf\x0f\xdd\x66\x2c\x43\x4c\x75\x89\x65\xfb\x48\x15\x9c\xff\x32\xcf\x13\x51\x5a\x10\xea\xaa\xb8\x70\xea\x7f\x21\x93\x81\x3f\x0e\xf9\x51\xa6\x4f\xd0\x4f\xa9\x53\xa3\xc1\xcd\xf7\x64\x6f\xd1\x2b\x6e\xa4\x13\x7d\x9a\x96\xf8\x19\x4b\x1f\xee\x1b\x5f\xb1\xec\x18\xe1\x30\xb9\x21\x37\xa9\xbf\x46\x1e\x5a\x20\x63\x9b\x17\x35\xf2\x7d\x7a\x50\xfe\xcb\x8e\xf3\x71\xcb\x07\xfb\xb2\xfc\xcb\x44\x69\xe8\x5d\x94\x01\x7f\xbd\x6f\x91\xe0\xf6\x5c\xdf\xcb\x3d\x5f\x6e\xca\xf2\xf3\x56\xfc\xd3\xe8\x7d\x9a\xc0\x71\x66\xfa\x06\x4d\x30\x2f\xbd\xb4\x8a\xa0\x57\x5a\xc7\xf9\x38\x8d\x98\x9f\x69\xe1\x6a\x64\x94\xf0\xb0\x2e\x52\x62\x55\xbd\x87\x57\x94\xd6\xb0\x50\x86\xfe\xc0\x7d\x36\x75\xdf\xb3\xfa\x3d\x59\x9e\x9f\x19\x3a\x3e\x2c\x6f\xf0\xc2\x5f\xc7\x87\x03\x33\x5e\x7c\x62\x3f\xbd\xe1\x93\xc4\xe7\x4e\x49\x6c\x2d\x29\x1e\xda\xf0\xe6\xfb\x14\xee\x64\xd8\x11\x50\x13\xbe\x21\x7c\xbf\xfb\x3f\x9f\x73\x68\xaa\xe3\xbf\x01\x00\x00\xff\xff\x4c\xf3\x0f\xb7\x27\x07\x00\x00" +var _safe_generic_transferCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x95\xc1\x6e\xe3\x36\x10\x86\xcf\xf1\x53\xcc\xfa\xb0\x2b\x01\x5e\xe5\x52\xf4\x60\x24\x4d\xdd\x00\xe9\xa1\x87\x06\x89\xdb\x9e\xc7\xe2\x48\x62\x43\x93\x02\x39\xb2\x62\x18\x7e\xf7\x82\xa4\x44\x5b\x71\x52\x64\x4f\x61\x46\xe4\xfc\xdf\xfc\x9c\xa1\xe5\xb6\x35\x96\xe1\xa1\xd3\xb5\xdc\x28\x5a\x9b\x17\xd2\x50\x59\xb3\x85\xf9\x24\x36\x9f\xcd\xae\xaf\xaf\xe1\x1e\x35\xb4\xe8\x1c\x48\x0d\xa8\xf7\xe0\xd8\x58\xac\x09\x5a\xe4\x06\x50\x0b\xb0\x54\x92\xdc\x91\x8d\x11\xa9\x1d\x13\x0a\x30\x15\xfc\xdb\x39\x06\x6e\x08\x04\x55\xd8\x29\x2e\x42\xbe\x75\x23\x1d\x28\x62\x07\x7b\xd3\x41\xd9\x18\xe3\x28\xec\xe2\x00\xe2\x83\x3d\x6a\x06\x36\xe0\x48\x0b\x40\x07\x3d\x29\x15\xb6\x94\xd8\xe2\x46\x2a\xc9\xfb\xcb\x7d\xd2\x2f\x83\x44\x90\x59\xe9\xfd\x90\x31\x60\x95\xa8\x61\x43\xa1\x10\x0a\x39\x51\x03\xda\xba\xdb\x92\x66\x68\xc8\xd2\x02\x9c\x81\x1e\x55\x20\x73\x8d\xe9\x94\x08\x79\xe2\x12\xca\x86\xca\x97\xd3\x89\x1d\xaa\x8e\x9c\xd7\xde\xe2\x0b\x81\xeb\x6c\xac\x41\x6a\x26\x2d\x48\x9c\x4b\x4b\x37\xca\x4a\x1d\xf0\xd8\xa2\x76\x58\xb2\x34\x3a\xc3\xad\xe9\x34\x2f\xe1\xaf\x07\xf9\xfa\xf3\x4f\x0b\x60\xb3\x84\x95\x10\x96\x9c\x5b\x84\xba\xc8\x3e\x22\x37\x4b\x78\x8e\xb6\xfb\x7f\x16\xc9\xf2\xf8\xe9\xb1\xdb\x28\x59\xfa\x75\x0e\x87\xd9\x0c\x00\x20\xf8\x4c\xf0\xb7\xb7\x1d\x2c\x39\xd3\xd9\xd2\x13\x22\x43\x63\x94\x70\x27\xc3\x5d\x8c\xa2\x25\xd8\x90\xd4\x35\x04\xba\x8a\xac\x25\x11\x52\x29\x62\x60\xda\xb6\x21\xd7\x12\x7e\x9d\xf4\x48\x11\xa2\x49\xf3\x37\x63\xad\xe9\x7d\xf9\x54\x91\x25\x5d\xd2\x88\x3a\x8a\xc9\x6a\x88\x78\x29\x2c\x4b\x5f\x3d\x08\x43\x4e\x7f\x63\x70\x5d\x1b\x5a\xd3\xc3\xf9\xda\x03\x8e\x3f\x97\x40\xa2\x23\x4f\x43\xf9\x4f\x54\x2d\xe1\xeb\x21\x92\x8c\xc1\x63\xa4\x69\x2d\xb5\x68\x29\x73\xb2\xd6\x64\x97\xb0\xea\xb8\x59\x45\xbd\xe4\xd2\x40\xfd\x3b\x31\x20\xd8\x84\xcc\x26\x12\x84\x93\xdf\x5c\xe8\x78\x12\xb0\x0b\xa5\x8e\xe7\x3c\x4d\x88\x3c\x51\x05\xb7\xc3\xe6\x62\x13\x0c\xb8\xc1\x8e\x9b\x6c\x6a\xd4\x3f\x92\x1b\x61\xb1\xc7\x8d\xa2\x1c\xbe\x1e\xa6\x5f\x1f\xad\xd9\x49\x41\xf6\xf8\x4b\xe6\x27\x71\x79\x76\xf5\xf9\xec\xea\xea\xea\xee\x0e\x5a\xd4\xb2\xcc\xe6\xf7\xa1\x1d\xb5\x61\x88\x5a\x97\xdc\xa6\x8f\xd8\xe1\x6a\xbe\xcc\xf3\x84\x9c\x16\x8e\x54\x55\x5c\x58\x79\x51\xc5\x5b\xc8\xe4\xf0\x8f\x43\x7e\x94\xe9\x13\xf4\x53\xea\xd4\x89\x70\xf3\x3d\xf9\x5f\xf4\x83\xb9\x69\x9c\xe2\xdf\x58\xfa\xd0\x10\xf4\x4a\x65\xc7\x04\x87\xc9\x15\xda\x49\xfd\x35\xf1\xd0\x23\x19\x9b\xbc\xa8\x89\xef\xd3\x8b\xf3\x7f\x76\x9c\xcf\x63\x3e\xd8\x97\xe5\x5f\x26\x4a\x43\x73\x93\x08\xf8\xeb\x7d\x4b\x0e\x6e\xcf\xf5\xbd\xdc\xf3\xe5\xa6\x2c\x3f\xef\xd5\x3f\xb5\xda\xa7\x11\x1d\x87\xaa\x6f\x48\x07\xf3\xd2\x53\x2c\x1d\xf4\x52\xa9\x38\x40\xa7\x19\xf4\x43\x8f\xb6\x26\x26\x01\x0f\xeb\x22\x25\x96\xd5\x7b\x78\x45\x69\x34\xa3\xd4\xee\x0f\xda\x67\x53\xf7\x3d\xab\xdf\x93\xe5\xf9\x99\xa1\xe3\xcb\xf3\x06\x2f\xfc\xb6\x7c\x38\x51\xe3\xc5\x27\xf6\xd3\x23\x3f\x49\x7c\xee\x94\xa0\xd6\x38\xc9\x43\x1b\xde\x7c\x9f\xc2\x9d\x0c\x3b\x02\x29\x47\x6f\x08\xdf\xef\xfe\xcf\xe7\x1c\x9a\xea\xf8\x5f\x00\x00\x00\xff\xff\x5f\x5e\x68\x9b\x48\x07\x00\x00" func safe_generic_transferCdcBytes() ([]byte, error) { return bindataRead( @@ -322,11 +322,11 @@ func safe_generic_transferCdc() (*asset, error) { } info := bindataFileInfo{name: "safe_generic_transfer.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe7, 0x43, 0xff, 0xd2, 0xb1, 0x4c, 0xd0, 0x65, 0x16, 0x78, 0xc7, 0x6a, 0xb1, 0x54, 0x83, 0x87, 0x59, 0x2d, 0x90, 0x42, 0x4e, 0x45, 0xd4, 0x4d, 0x2b, 0x54, 0xf2, 0x49, 0x52, 0x91, 0x7, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc4, 0x6d, 0x61, 0x93, 0x3b, 0x93, 0x4b, 0x3, 0xaf, 0x69, 0x52, 0x75, 0xa0, 0xd9, 0x7b, 0xd6, 0xc0, 0x48, 0x4, 0x5c, 0x4, 0x41, 0x33, 0xa6, 0x25, 0xd3, 0x5d, 0x42, 0x52, 0x70, 0xb, 0x2}} return a, nil } -var _scriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x64\x91\x3f\x6f\xc2\x30\x10\xc5\x77\x7f\x8a\xa7\x0c\x6d\x58\x92\xa5\xea\x80\x4a\x11\x45\x65\x46\x15\xed\x7e\x49\x2e\x60\xd5\xb1\x23\xe7\xdc\x52\x21\xbe\x7b\x05\xc6\x94\xa8\x9e\xce\x77\xbf\xf7\x74\x7f\xca\x12\x9b\x9d\x1e\x30\xd4\x5e\xf7\x02\xcf\xd4\x0c\x90\x1d\xa3\x22\x43\xb6\x66\xb4\x9a\x4d\xa3\xca\x12\xae\x05\x59\x50\x5d\xbb\x60\xe5\x7e\xc0\xeb\x9e\xba\xde\xf0\xc6\x7d\xb2\xc5\x4b\xa4\x95\xd2\x5d\xef\xbc\x60\x15\xec\x56\x57\xa9\xda\x7a\xd7\x21\x1b\xe5\xb2\x44\x8e\x6c\x22\x78\x9b\xca\x94\xea\x43\x85\x36\x58\x74\xa4\x6d\x4e\x4d\xe3\x79\x18\xa6\x58\xc4\x60\x32\xc5\xfb\x4a\xef\x1f\x1f\x70\x50\x00\x60\x58\x52\x8f\x98\x61\xcb\xb2\x88\x9f\x24\x9c\x5c\xa9\x2f\x0a\x46\xde\xb8\xc5\x2c\x09\x8a\x2d\xcb\x92\x7a\xaa\xb4\xd1\xf2\x93\xdf\xb6\x51\x7c\x9c\xe8\x75\xa8\x8c\xae\xd7\x24\xbb\x68\x73\x7a\x45\xe5\xbc\x77\xdf\x4f\x77\xff\xf1\xc3\x68\xe2\xe2\xb2\xa3\xe3\x73\xfe\xa7\x9e\xcf\xd1\x93\xd5\x75\x9e\x2d\x5d\x30\x0d\xac\x13\x44\xc3\xb4\x52\x78\x6e\xd9\xf3\x29\x12\x77\xbe\xcc\xd9\x3b\x9b\xa8\xb3\x89\x67\x09\xde\x5e\x87\x29\x2e\x67\x53\x47\xf5\x1b\x00\x00\xff\xff\x86\x1f\x84\xe5\xda\x01\x00\x00" +var _scriptsGet_balanceCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\x91\xc1\x6e\xf2\x30\x10\x84\xef\x7e\x8a\x51\x0e\xff\x9f\x5c\x92\x4b\xd5\x03\x2a\x45\x14\x95\x33\xaa\x68\xef\x1b\x67\x03\x56\x1d\x3b\xb2\xd7\x2d\x15\xe2\xdd\xab\x10\x42\x21\xa7\xcd\x78\x66\xfc\xd9\xae\x2a\x6c\xf7\x26\x22\xea\x60\x7a\x41\x60\x6a\x22\x64\xcf\xa8\xc9\x92\xd3\x8c\xd6\xb0\x6d\x54\x55\xc1\xb7\x20\x07\xd2\xda\x27\x27\xff\x23\x5e\x0f\xd4\xf5\x96\xb7\xfe\x93\x1d\x5e\x46\xb7\x52\xa6\xeb\x7d\x10\xac\x93\xdb\x99\x7a\x5a\x6d\x83\xef\x90\xdd\x69\xd9\xe4\xbc\xab\x19\x8d\xb7\x52\xa6\x14\x69\xcd\x31\xe6\x64\x6d\x81\x36\x39\x74\x64\x5c\x4e\x4d\x13\x38\xc6\x19\x96\xe3\x50\xcc\xf0\xbe\x36\x87\xc7\x07\x1c\x15\x00\x58\x96\x89\x15\x73\xec\x58\x96\xe3\xcf\x14\x2c\xae\xae\x2f\x4a\x56\xde\xb8\xc5\x7c\x0a\x94\x3b\x96\x15\xf5\x54\x1b\x6b\xe4\xe7\xe9\xdf\xf1\x8e\xbc\xbc\x9c\xf5\xf4\x9c\xdf\x82\x96\x1f\x43\xcf\x26\xd5\xd6\xe8\x0d\xc9\x7e\xdc\x60\xf8\xca\xda\x87\xe0\xbf\xf3\x3f\x65\xb1\x40\x4f\xce\xe8\x3c\x5b\xf9\x64\x1b\x38\x2f\x18\x4d\xd3\x45\x22\x70\xcb\x81\x87\x49\xfc\xf9\x3d\xce\xf5\x59\xa1\xce\x25\x81\x25\x05\x77\x45\x1f\x80\x2f\xc1\xbc\x50\x27\xf5\x1b\x00\x00\xff\xff\xe3\x1d\xb9\xf4\xd5\x01\x00\x00" func scriptsGet_balanceCdcBytes() ([]byte, error) { return bindataRead( @@ -342,11 +342,11 @@ func scriptsGet_balanceCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/get_balance.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0x57, 0xbd, 0xcd, 0x3e, 0x2e, 0x5b, 0x5, 0xd, 0x3d, 0x3d, 0xdd, 0x7e, 0x9, 0x75, 0x67, 0x29, 0xcd, 0x32, 0x13, 0x3c, 0x9, 0xd4, 0x3b, 0x68, 0xa6, 0x10, 0x15, 0xd, 0x15, 0x67, 0x95}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa6, 0x21, 0xc8, 0x28, 0xfd, 0x65, 0xa1, 0x59, 0xda, 0x9d, 0xb0, 0xd1, 0x76, 0x3d, 0x80, 0xce, 0xaf, 0x56, 0x60, 0x75, 0xf7, 0x46, 0x7b, 0x8a, 0x53, 0xf5, 0x31, 0x86, 0xf, 0x8c, 0xb6, 0x15}} return a, nil } -var _scriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x31\xae\xc2\x30\x10\x04\xd0\x7e\x4f\x31\x4a\xf5\x7f\x83\x1b\x44\x41\x0f\x17\x20\x1c\xc0\x24\xb6\x62\x61\x7b\x57\xeb\xb5\x14\x84\xb8\x3b\x52\x2a\xd2\xce\x8c\x46\xcf\x39\x8c\x4b\x6a\x68\x93\x26\x31\x68\xf0\x73\x83\x2d\x01\xc6\xe6\x33\x5a\x17\xc9\x2f\xc4\x14\xf2\x4c\xce\x81\xe3\x56\x5e\x56\x5f\x24\x87\x91\x9f\xa1\xa2\x15\xaf\x86\x89\xab\xa9\x9f\x8c\x28\x15\x61\xb5\xfd\x26\x2a\x17\x0c\xbf\xd1\x40\x24\xfd\x81\xd8\x2b\x8a\x4f\xf5\xef\xff\x8c\xfb\x35\xad\xa7\x23\xde\x04\x00\x1a\xac\x6b\xdd\xbd\x1c\x36\xd3\x6d\x23\xd1\x87\xbe\x01\x00\x00\xff\xff\x06\xc5\x37\x4e\xbb\x00\x00\x00" +var _scriptsGet_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x54\xce\x3d\xaa\xc3\x30\x10\x04\xe0\x7e\x4f\x31\xb8\xb2\x9b\xa7\xe6\xf1\x8a\xd7\x27\x17\x88\x73\x80\x45\x96\xb0\x88\xfe\xd8\x5d\x83\x43\xc8\xdd\x03\xae\xe2\x76\x66\x18\x3e\xe7\x30\xaf\x49\xa1\x5e\x52\x37\x48\xe0\x45\x61\x6b\x80\x35\xe3\x0c\xdd\x7a\xcf\x4f\xc4\x14\xf2\x42\xce\xa1\xc5\xa3\xbc\xec\x5c\x7a\x0e\x73\x7b\x84\x0a\x2d\x2c\x06\xdf\xaa\x09\x7b\x23\x4a\xa5\x37\xb1\xf3\x26\x4a\x2b\x18\xbe\xa3\x81\x88\xbd\x0f\xaa\x23\xe7\x3c\x21\x6e\x15\x85\x53\x1d\xa7\x7f\xdc\xaf\x69\xff\xfb\xc5\x8b\x00\x40\x82\x6d\x52\x4f\x6f\x3f\x87\xed\x76\xd0\xe8\x4d\x9f\x00\x00\x00\xff\xff\x8f\xf7\xbd\x87\xc3\x00\x00\x00" func scriptsGet_supplyCdcBytes() ([]byte, error) { return bindataRead( @@ -362,11 +362,11 @@ func scriptsGet_supplyCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/get_supply.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbc, 0x3d, 0xd7, 0x2a, 0x1b, 0x2a, 0xd5, 0xeb, 0x39, 0x29, 0x29, 0x35, 0x13, 0xe0, 0x15, 0x56, 0xe1, 0x9c, 0xfa, 0x75, 0x51, 0x75, 0x93, 0x6b, 0x36, 0xd0, 0x9c, 0x42, 0xcf, 0xfc, 0x87, 0x98}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0xd5, 0xf3, 0x75, 0xbf, 0xc, 0x80, 0x25, 0xb3, 0x59, 0x1, 0x8c, 0xc6, 0x48, 0xfe, 0x86, 0xbb, 0x9, 0x17, 0xd, 0xcc, 0x8c, 0x6a, 0xbd, 0x42, 0x10, 0xf, 0x68, 0x44, 0x60, 0xad, 0x57}} return a, nil } -var _scriptsGet_supported_vault_typesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x4f\x6b\xdb\x4e\x10\xbd\xeb\x53\x3c\x7c\xf8\x45\x82\x1f\xf2\xdd\xb4\x0d\x69\xa1\xf4\x18\x92\xb4\x67\xad\x56\x23\xef\x92\x95\x46\xcc\x8e\x22\x8c\xf1\x77\x2f\x2b\xd9\x8d\x65\x12\x9f\xcc\x68\xde\x9f\x7d\x33\xe3\xbb\x81\x45\xf1\x73\xec\xf7\xbe\x0e\xf4\xc2\xaf\xd4\xa3\x15\xee\xb0\x59\xd5\x36\x59\xb6\xdd\x6e\xf1\xe2\x7c\x44\xb4\xe2\x07\x8d\x10\xd2\x51\xfa\x08\x75\x84\x38\x0e\x89\x88\x9a\x35\xd5\x5d\x84\x1e\x06\x42\x7d\x98\xbb\x06\xe1\x37\xdf\x50\x83\x4a\x8d\xec\x49\x2b\x98\xa6\x11\x8a\xb1\x9c\xd9\x6f\xab\x88\x8e\xc7\xd0\xc0\x71\x68\x66\xbc\x35\x83\xa9\x7d\xf0\x7a\xc0\xe4\xbc\x75\xb0\xdc\xb7\x2c\x5d\xc4\xe4\xd5\xad\xa5\xcb\x27\xb2\xe4\xdf\x48\x20\x14\x55\xbc\x4d\xe6\x92\x99\x59\x6a\x72\x3e\x10\xbc\xa2\x61\x8a\xfd\x9d\xa2\x33\xaa\x24\x98\x1c\xa9\x23\xb9\x56\x12\x6a\x49\x22\x94\xd1\x9e\xf9\xa1\x73\x4c\x2c\x30\xb0\x63\x54\xee\x20\x17\xb1\xe0\x5f\x09\xcb\x6b\x56\x76\x9e\x27\xaf\xd6\xd5\x6c\xa4\xa9\x12\xb2\x9a\xab\x17\x8f\x55\x89\x5f\x3c\x51\x22\x38\x87\xf0\x68\xd4\x55\x50\x0a\x21\x26\x53\x42\xb7\x01\x44\x65\xa1\x98\x0d\x63\x9d\x7c\xa1\x33\xbe\xcf\x17\xe8\x0e\x0f\x4b\x7e\xff\xe3\x9d\x6b\x87\xc7\xb1\x0e\xde\xa6\xff\xc5\x0e\xc7\x97\xc3\x40\x3b\x7c\x67\x0e\x27\x1c\xb3\x0c\x00\xb6\x5b\x3c\x58\x9b\x72\xbf\x91\x6a\x59\xd6\xe3\x5b\x68\x2f\x63\x9a\xc1\x81\xf4\x0a\xf2\x44\x2d\xbe\x62\x4f\xfa\x60\x2d\x8f\xbd\x9e\x9d\x15\x73\xeb\xed\xaf\xdc\x93\xfe\xf8\x07\xfd\xf2\xdf\xf1\xe3\x39\x9e\xbe\xe5\xef\xcf\xf9\x84\xa9\x66\x11\x9e\xf2\x02\x1f\x7e\xbe\xbf\xc7\x60\x7a\x6f\xf3\xcd\xef\xde\x2c\x73\xc4\x82\x58\x6d\x56\x5a\xa5\xab\x9d\x89\x63\xbd\x2c\xf1\x67\xbe\x96\x7b\x19\x8c\xba\x4d\x69\xb9\xb7\x46\xaf\x8c\x96\xca\xcf\x2a\xbe\xdf\xe7\x45\x51\x5c\x62\x7e\x9a\x2f\xe7\xe6\x70\xde\xcc\x18\x74\x56\x8a\xe5\xdc\xb8\xdc\xd7\x3a\xd5\x94\xd5\xf3\x05\xf2\x27\x21\xd2\x20\x63\x5e\x64\xa7\xbf\x01\x00\x00\xff\xff\x4f\x63\x8b\x60\xcb\x03\x00\x00" +var _scriptsGet_supported_vault_typesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x53\x4f\x8b\xdb\x3e\x10\xbd\xfb\x53\x3c\x72\xf8\xad\x0d\x3f\x9c\x7b\x68\xbb\x6c\x0b\xa5\xc7\x25\x49\x7b\xb6\x2c\x8f\x23\xb1\xb2\x65\x46\xe3\x98\x10\xf2\xdd\x8b\xe4\xa4\x1b\x87\xdd\x9c\xc2\x78\xde\x1f\xbd\x99\xb1\xdd\xe0\x59\xf0\x73\xec\x0f\xb6\x76\xb4\xf7\x6f\xd4\xa3\x65\xdf\x61\xb5\xa8\xad\xb2\x6c\xbd\x5e\x63\x6f\x6c\x40\xd0\x6c\x07\x09\x60\x92\x91\xfb\x00\x31\x84\x30\x0e\x91\x88\x9a\x25\xd5\x53\x80\x9c\x06\x42\x7d\x4a\x5d\x03\xfb\xa3\x6d\xa8\x41\x25\x8a\x0f\x24\x15\x54\xd3\x30\x85\x50\x26\xf6\xc7\x2a\x82\xf1\xa3\x6b\x60\xbc\x6b\x12\x5e\xab\x41\xd5\xd6\x59\x39\x61\x32\x56\x1b\x68\xdf\xb7\x9e\xbb\x80\xc9\x8a\x59\x4a\x97\x5b\xd2\x64\x8f\xc4\x60\x0a\xc2\x56\x47\x73\xd1\x4c\x92\x9a\x8c\x75\x04\x2b\x68\x3c\x85\xfe\x49\xd0\x29\x11\x62\x4c\x86\xc4\x10\xdf\x2b\x31\xb5\xc4\x01\xe2\xd1\x5e\xf9\x21\x29\x26\xcf\x50\xd0\x63\x10\xdf\x81\x6f\x62\xce\xbe\x11\xe6\xd7\x2c\xec\xec\x26\x2b\xda\xd4\x5e\x71\x53\x45\x64\x95\xaa\x37\x8f\x55\x89\x5f\x7e\xa2\x48\x70\x0d\xe1\x55\x89\xa9\x20\xe4\x5c\x88\xa6\x98\x1e\x03\x08\xe2\x99\x42\xa6\xb4\xa6\x10\x72\xe5\x5c\x11\xfd\xa1\x53\xb6\xcf\x67\x8a\x0d\x5e\xe6\x1c\xff\xc7\x3b\xe7\x06\xaf\x63\xed\xac\x8e\xff\x8b\x0d\xce\xfb\xd3\x40\x1b\x7c\xf7\xde\x5d\x70\xce\x32\x00\x58\xaf\xf1\x92\x58\x1f\x25\x5b\xcf\xcb\x31\xce\xb4\xb7\x71\x25\xb0\x23\xb9\x83\x6c\xa9\xc5\x57\x1c\x48\x5e\xb4\xf6\x63\x2f\x57\x67\x45\x6a\x7d\xfc\x95\x07\x92\x1f\xff\xa0\x5f\xfe\x3b\x7f\x3c\xcf\xcb\xb7\xfc\xfd\x39\x9f\x30\xd5\x9e\xd9\x4f\x79\x81\x0f\x3f\x3f\x3f\x63\x50\xbd\xd5\xf9\xea\x77\xaf\xe6\x79\x62\x46\x2c\x36\x2c\xae\xd4\xdd\xee\x84\xb1\x9e\x97\xf9\x33\x5f\xf3\xdd\x0c\x4a\xcc\xaa\xd4\xbe\xd7\x4a\xee\x8c\x96\xe2\x77\xc2\xb6\x3f\xe4\x45\x51\xdc\x62\xde\xa6\x0b\x7a\x38\xa0\xa3\x1a\x9d\x24\xa5\x50\xa6\xc6\xf9\xce\x96\xa9\xc6\xac\x76\x37\xc8\x9f\x88\x88\x83\x0c\x79\x91\x5d\xfe\x06\x00\x00\xff\xff\x68\x0a\x37\x89\xd3\x03\x00\x00" func scriptsGet_supported_vault_typesCdcBytes() ([]byte, error) { return bindataRead( @@ -382,11 +382,11 @@ func scriptsGet_supported_vault_typesCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/get_supported_vault_types.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x86, 0x41, 0x9, 0x4e, 0xa9, 0xac, 0x75, 0xc, 0x1d, 0x13, 0xf3, 0xf8, 0x1a, 0xc, 0xec, 0x9a, 0x27, 0x4f, 0x77, 0x1c, 0xd1, 0x65, 0x9f, 0x27, 0xd2, 0x91, 0x3e, 0x83, 0xa9, 0x98, 0xc2, 0xfb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9, 0xa7, 0x1a, 0xca, 0x78, 0x21, 0x6a, 0x9e, 0x9a, 0x54, 0x8, 0xc6, 0x88, 0x73, 0xfc, 0x67, 0x6a, 0x86, 0x23, 0x2a, 0xe7, 0xe0, 0x30, 0xcb, 0xe8, 0xba, 0x14, 0x9b, 0xf4, 0x2f, 0x40, 0x31}} return a, nil } -var _scriptsMetadataGet_token_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x90\xc1\x6e\xf2\x30\x10\x84\xef\x7e\x8a\x51\x0e\xbf\xc2\x85\x07\x40\x3f\x45\x08\x95\x5b\x25\x84\x10\xf7\x4d\xb2\x09\x56\x1d\x3b\x72\xd6\xd0\x0a\xf1\xee\x55\x88\x13\xd2\xaa\x25\x97\xd8\xeb\xf9\x46\xb3\xa3\xeb\xc6\x79\xc1\xeb\x07\xd5\x8d\xe1\x83\x7b\x67\x8b\xd2\xbb\x1a\xc9\x74\x94\xa8\xa8\xdb\x06\x5b\xe9\x2c\x4e\xdf\x58\xa8\x20\xa1\xa3\xe6\x4b\x1b\xa9\xbf\x05\xa3\xc7\x6f\xd8\x0f\xa5\x6a\x42\x86\x32\x58\xd4\xa4\x6d\x4a\x45\xe1\xb9\x6d\x17\x58\xf7\x87\xd9\xe2\x49\x8e\xf9\xf6\xd0\xfd\x71\x55\x00\x60\x58\x40\x79\xee\x82\x15\x2c\x51\xb1\xac\xfb\xcb\xe0\x39\x53\xa3\xec\x4c\xc1\xc8\x9e\x4b\x2c\x07\xe2\xfe\xd4\x7d\xf3\x8a\x65\x43\x0d\x65\xda\x68\xf9\x4c\xa7\xcd\xcc\x8f\x1d\xb6\x0b\x99\xd1\xf9\x8e\xe4\x34\x7b\x40\x99\xf3\xde\x5d\xfe\xff\xbb\x7e\xcf\xb7\xe7\xd6\x99\x33\xfb\xdb\x4b\xfa\x10\xaf\x56\x68\xc8\xea\x3c\x4d\x36\x2e\x98\x02\xd6\x09\x7a\x1e\x04\xcf\x25\x7b\xb6\x39\x43\x1c\xe4\xc4\x7d\x54\xf8\x68\x94\x4c\x96\x28\xe5\xbe\xfc\xf2\x59\x41\x15\x4b\xdf\x51\x7a\xd6\x7c\x19\xe2\x2c\xc6\x02\xa2\x9d\x67\x09\xde\x46\x47\x75\x53\x5f\x01\x00\x00\xff\xff\xb0\x79\xad\x83\x2a\x02\x00\x00" +var _scriptsMetadataGet_token_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x50\x41\x6e\xc2\x30\x10\xbc\xfb\x15\xab\x1c\x2a\xe7\x92\x07\xa0\x52\x84\x50\xb9\x55\x42\x08\x71\xdf\x38\x9b\x60\xd5\xb1\x23\x7b\x0d\xad\x10\x7f\xaf\x42\x1c\xf0\xa5\xe4\x92\xdd\xf5\xcc\x68\x66\x74\x3f\x38\xcf\xf0\xf9\x83\xfd\x60\xe8\xe0\xbe\xc9\x42\xeb\x5d\x0f\x45\x7e\x2a\x44\xc2\x6d\xa3\xed\x74\x9d\xae\x5f\xc4\xd8\x20\xe3\x51\xd3\x25\x24\xd6\xff\x80\x87\xc6\xb8\xed\x29\x38\x73\x26\x9f\x58\xf9\xa9\x10\x02\x95\xa2\x10\x24\x1a\x53\x42\x1b\x2d\xf4\xa8\xad\xc4\xa6\xf1\x14\xc2\x02\xd6\xd3\x50\x2e\x5e\xb8\xa9\xb6\x87\xf1\x0f\x57\x01\x00\x60\x88\x01\x95\x72\xd1\x32\x2c\xa1\x23\x5e\x4f\xcb\xac\x59\x8a\x07\xec\x8c\xd1\xf0\x9e\x5a\x58\xce\x8c\xfb\xd3\xf8\x55\x1d\xf1\x06\x07\xac\xb5\xd1\xfc\x2b\xf3\x7e\xaa\xe3\x48\xdb\xc5\xda\x68\xb5\x43\x3e\x95\x4f\x52\xed\xbc\x77\x97\xf7\xb7\x6b\x9e\xb1\x9a\x87\xdb\x87\x7c\x62\x57\x2b\x18\xd0\x6a\x25\x8b\x8d\x8b\xa6\x01\xeb\x18\x26\x3a\x20\x78\x6a\xc9\x93\x55\x04\xec\x80\x4f\x34\x39\x05\x3f\xb7\x96\x65\x68\xf9\x9e\x7d\xf9\xaa\x9f\x8e\x78\xaa\x48\x9e\x33\x5f\x8b\x47\xfe\x24\xe7\x89\xa3\xb7\x49\x51\xdc\xc4\x5f\x00\x00\x00\xff\xff\xc1\x67\x30\x82\x2f\x02\x00\x00" func scriptsMetadataGet_token_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -402,11 +402,11 @@ func scriptsMetadataGet_token_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/metadata/get_token_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0x89, 0xb8, 0x68, 0xb4, 0x7b, 0x3a, 0xf1, 0x23, 0xb6, 0xba, 0xd6, 0x20, 0xb4, 0xe5, 0x36, 0x8d, 0xa, 0xda, 0x17, 0xe9, 0x2, 0x38, 0x9c, 0x1b, 0x23, 0x3f, 0xf3, 0xca, 0xe2, 0x63, 0x66}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xeb, 0x4, 0x5d, 0xcc, 0x81, 0x83, 0xe1, 0x57, 0x2f, 0x6f, 0xe2, 0x42, 0xc2, 0x4c, 0x62, 0xcc, 0x6c, 0x6c, 0xb2, 0x2e, 0x80, 0x86, 0xde, 0x6b, 0xdc, 0x5c, 0xf7, 0xa5, 0x9c, 0x74, 0xfe, 0x25}} return a, nil } -var _scriptsMetadataGet_vault_dataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xcd\x6e\xc2\x30\x10\x84\xef\x7e\x8a\x51\x0e\x55\xb8\xf0\x00\xa8\x14\x21\x5a\x6e\x95\x10\x42\xdc\x37\xc9\x26\x58\x75\xec\xc8\x59\x43\x2b\xc4\xbb\x57\xe4\x87\xa4\x88\x92\x53\xb2\x99\x59\x7f\x33\xb2\x2e\x2b\xe7\x05\x1f\xdf\x54\x56\x86\x77\xee\x8b\x2d\x72\xef\x4a\x44\xe3\x51\xa4\x3a\xdd\x3a\xd8\x42\x27\xdd\xf4\x93\x85\x32\x12\xda\x6b\x3e\xd5\x9d\xeb\x7f\xc1\x6d\xc7\x23\xdb\x9d\x52\x55\x21\x41\x1e\x2c\x4a\xd2\x36\xa6\x2c\xf3\x5c\xd7\x33\x2c\xdb\x97\xc9\xec\x09\xc7\x74\xbd\xdb\x53\x30\xf2\x4e\x42\x38\x2b\x00\x30\x2c\xa0\x34\x75\xc1\x0a\xe6\x28\x58\x96\xed\x47\xbf\x78\xa2\x6e\xb2\xe3\xd5\xba\xe5\x1c\xf3\xde\xd1\xfc\xba\x3e\xd3\x82\x65\x45\x15\x25\xda\x68\xf9\x89\xc7\xf5\x4c\x9b\x13\x37\x21\x31\x3a\xdd\x90\x1c\x26\x83\x29\x71\xde\xbb\xd3\xeb\xcb\xf9\x2f\xe4\x96\x6b\x67\x8e\xec\x2f\x6f\xf1\x20\x5e\x2c\x50\x91\xd5\x69\x1c\xad\x5c\x30\x19\xac\x13\xb4\x7e\x10\x3c\xe7\xec\xd9\xa6\x0c\x71\x90\x03\xb7\xa8\xf0\xdd\xa2\xe8\x3e\x44\x93\x7f\xfe\xac\xa8\x82\x65\xd4\x55\xdc\x47\x7f\xc4\xd3\xde\x8b\xcc\x71\xdd\x40\xe9\x6b\xf2\x92\xad\x60\x5c\xf6\x51\xf3\xa9\xc7\xf0\x2c\xc1\xdb\x81\x44\x5d\xd4\x6f\x00\x00\x00\xff\xff\x7c\x3d\xc8\xc1\x6a\x02\x00\x00" +var _scriptsMetadataGet_vault_dataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xcd\x6e\xf2\x30\x10\xbc\xfb\x29\x56\x39\x7c\x4a\x2e\x79\x00\xf4\x51\x84\x68\xb9\x55\x42\x08\x71\xdf\x38\x9b\x60\xd5\xb1\x23\x7b\x0d\xad\x10\xef\x5e\xe5\xc7\x60\x55\x2d\x3e\xed\xae\x67\xd6\x33\x23\xab\xae\xb7\x8e\xe1\xed\x13\xbb\x5e\xd3\xc1\x7e\x90\x81\xc6\xd9\x0e\xb2\x74\x94\x89\x19\xb7\x0d\xa6\x55\xd5\x3c\x7d\x27\xc6\x1a\x19\x8f\x8a\x2e\x7e\x66\xfd\x0d\xb8\xef\x18\xba\x3d\x79\xab\xcf\xe4\x66\x56\x3a\xca\x84\x40\x29\xc9\xfb\x1c\xb5\x2e\xa0\x09\x06\x3a\x54\x26\xc7\xba\x76\xe4\xfd\x02\xd6\x53\x51\x2c\x9e\xa8\x29\xb7\x87\x23\x06\xcd\xaf\xc8\x08\x57\x01\x00\xa0\x89\x01\xa5\xb4\xc1\x30\x2c\xa1\x25\x5e\x4f\x4d\x5c\x5c\x88\x3b\xec\x3c\x50\xf7\xd4\xc0\x32\x32\xc6\xab\xe1\x94\x2d\xf1\x06\x7b\xac\x94\x56\xfc\x95\xa7\x21\x95\xe3\x8b\xbb\x50\x69\x25\x77\xc8\xa7\xe2\x41\xaa\xac\x73\xf6\xf2\xff\xdf\x35\x35\x5a\xc6\xe2\xf6\x92\x3f\xb0\xab\x15\xf4\x68\x94\xcc\xb3\x8d\x0d\xba\x06\x63\x19\x26\x3a\x20\x38\x6a\xc8\x91\x91\x04\x6c\x81\x4f\x34\x29\x05\x17\xa3\xfb\xe9\x61\xb4\xbf\x7c\x96\x53\x4b\x9c\x44\x95\x47\xe7\xbf\xe9\x99\x3e\x47\x6d\xc9\x8f\xa2\xd4\x60\xbc\x23\xc3\x90\x66\x7d\x56\x74\x89\x32\x1c\x71\x70\xe6\xa1\x44\xdc\xc4\x77\x00\x00\x00\xff\xff\xdc\x42\xe6\x38\x6f\x02\x00\x00" func scriptsMetadataGet_vault_dataCdcBytes() ([]byte, error) { return bindataRead( @@ -422,11 +422,11 @@ func scriptsMetadataGet_vault_dataCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/metadata/get_vault_data.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0x5d, 0x35, 0x37, 0x9c, 0x20, 0x9d, 0x73, 0xe, 0x3d, 0x27, 0x8c, 0xc3, 0x42, 0xe, 0xda, 0x6e, 0x97, 0xb7, 0xef, 0x97, 0xc1, 0x94, 0x44, 0x1, 0x48, 0xae, 0x3b, 0xc1, 0xc9, 0x9, 0xfd}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0xd9, 0xb2, 0xdd, 0x3e, 0x25, 0x45, 0xeb, 0xe9, 0x35, 0xac, 0xc6, 0x68, 0xff, 0x6b, 0x27, 0x94, 0xcc, 0x4f, 0xc7, 0x1f, 0xe0, 0x32, 0x85, 0x98, 0x5d, 0xe7, 0x92, 0xd9, 0x39, 0xac, 0x5c}} return a, nil } -var _scriptsMetadataGet_vault_displayCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\xc1\x6e\xc2\x30\x10\x44\xef\xf9\x8a\x51\x0e\x55\xb8\xf0\x01\xa8\x14\x21\x5a\x6e\x95\x10\x42\xdc\x37\xc9\x26\x58\x75\x6c\xcb\x5e\x43\x11\xe2\xdf\x2b\x48\x42\x68\x45\xc9\x29\x5e\xcf\xac\xde\x8c\xac\x1a\x67\xbd\xe0\xe3\x9b\x1a\xa7\x79\x63\xbf\xd8\xa0\xf2\xb6\x41\x7a\x3f\x4a\x93\x4e\xb7\x8c\xa6\x56\x79\x37\xfd\x64\xa1\x92\x84\xb6\x8a\x0f\xa1\x73\xfd\x2f\xb8\xed\x78\x64\xfb\xa3\x4c\x5c\xcc\x51\x45\x83\x86\x94\xc9\xa8\x2c\x3d\x87\x30\xc1\xbc\xfd\x19\x4d\x9e\x70\x8c\x97\x9b\x77\x15\x9c\xa6\x23\x4e\x09\x00\x68\x16\x50\x51\xd8\x68\x04\x53\xd4\x2c\xf3\xf6\xd0\xaf\x1d\x25\x37\xd9\x9e\xa2\x96\x35\x57\x98\xf6\x8e\xeb\xd5\xe5\x1b\xd7\x2c\x0b\x72\x94\x2b\xad\xe4\x98\xdd\x97\x33\xde\x5e\x6c\xab\x98\x6b\x55\xac\x48\x76\xa3\xc1\x94\x5b\xef\xed\xe1\xf5\xe5\xf4\x1b\x71\xcd\xc1\xea\x3d\xfb\xf3\x5b\x36\x88\x67\x33\x38\x32\xaa\xc8\xd2\x85\x8d\xba\x84\xb1\x82\xd6\x0f\x82\xe7\x8a\x3d\x9b\x82\x21\x16\xb2\xe3\x16\x15\xbe\x5b\x94\xde\x85\xa8\xa4\xcf\x3f\x7d\x56\x53\xcd\x72\x6b\x2a\xeb\x83\x3f\xa2\x69\xdf\x44\x69\x39\x5c\x91\xd4\x25\x77\xc3\x46\x30\x14\xbd\x57\x7c\xe8\x11\x3c\x4b\xf4\x66\xa0\x48\xce\xc9\x4f\x00\x00\x00\xff\xff\x0a\x42\x8f\xe8\x64\x02\x00\x00" +var _scriptsMetadataGet_vault_displayCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\xc1\x6e\xea\x30\x10\xbc\xfb\x2b\x56\x39\x3c\x39\x97\x7c\x00\x7a\x14\x21\x5a\x6e\x95\x10\x42\xdc\x37\xce\x26\x58\x75\xec\xc8\x5e\x43\x11\xe2\xdf\xab\x90\x98\xe4\xd0\x92\xd3\xee\x64\x66\x35\x33\xb2\x6e\x3b\xe7\x19\x3e\xbe\xb1\xed\x0c\x1d\xdc\x17\x59\xa8\xbd\x6b\x21\x9b\x43\x99\x18\x79\xdb\x68\x1b\x5d\x8e\xe8\x27\x31\x56\xc8\x78\xd4\x74\x09\xa3\xea\x6f\xc2\xf3\x46\xbf\xed\x29\x38\x73\x26\x3f\xaa\xe6\x50\x26\x04\x2a\x45\x21\x48\x34\x26\x87\x3a\x5a\x68\x51\x5b\x89\x55\xe5\x29\x84\x05\xac\x87\x21\x5f\xbc\x70\x53\x6c\x0f\xef\x3a\x74\x06\xaf\x70\x13\x00\x00\x86\x18\x50\x29\x17\x2d\xc3\x12\x1a\xe2\xf5\xb0\xa4\xb3\xb9\x78\xd2\xce\x18\x0d\xef\xa9\x86\x65\x52\x3c\x7e\xf5\x5f\xd1\x10\x6f\xb0\xc3\x52\x1b\xcd\x57\x39\xaf\xa8\x38\xf6\xb2\x5d\x2c\x8d\x56\x3b\xe4\x53\x3e\x89\x4a\xe7\xbd\xbb\xfc\xff\x77\x9b\xc7\x2c\xd2\x70\x7f\x93\x13\x77\xb5\x82\x0e\xad\x56\x32\xdb\xb8\x68\x2a\xb0\x8e\x61\x90\x03\x82\xa7\x9a\x3c\x59\x45\xc0\x0e\xf8\x44\x83\x53\xf0\xa9\xb8\x59\x86\x9a\x53\xfc\xe5\xab\x96\x1a\xe2\x67\x51\x32\xe5\xfe\xcd\xcd\xf0\x30\x2a\x47\xe1\x61\x49\xf7\xb1\x5b\xb2\x0c\x53\xcf\x67\x4d\x97\x64\xc1\x13\x47\x6f\x27\x17\xe2\x2e\x7e\x02\x00\x00\xff\xff\x19\x3b\x78\xae\x69\x02\x00\x00" func scriptsMetadataGet_vault_displayCdcBytes() ([]byte, error) { return bindataRead( @@ -442,11 +442,11 @@ func scriptsMetadataGet_vault_displayCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/metadata/get_vault_display.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2b, 0x88, 0xc5, 0xf0, 0xf3, 0x55, 0x38, 0xcc, 0xbc, 0x76, 0xcb, 0xd1, 0x4d, 0x6, 0xc7, 0x35, 0xf1, 0x9f, 0x3c, 0x68, 0x4e, 0xb0, 0x5f, 0x41, 0x46, 0x28, 0x24, 0xe0, 0x82, 0xc1, 0xe4, 0xad}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb7, 0xcd, 0xf3, 0xa8, 0x80, 0x29, 0x7f, 0x6c, 0x85, 0x8f, 0xa7, 0x7f, 0x6, 0x5a, 0x2a, 0xba, 0xcb, 0xc6, 0x1d, 0xb2, 0xb7, 0x22, 0x9b, 0x6b, 0x27, 0x67, 0xce, 0x88, 0x3e, 0x1, 0xf9, 0x34}} return a, nil } -var _scriptsMetadataGet_vault_supply_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x92\x41\xef\x9a\x40\x10\xc5\xef\xfb\x29\x46\x0e\x2d\x5c\xf0\xd2\xf4\x60\x44\x63\x4c\xed\xa9\x89\xb1\xd6\xfb\x02\x83\x6e\xba\xec\x6e\x76\x67\x55\x62\xfc\xee\x0d\x2c\x02\x6d\xea\x9f\xd3\x32\xfb\xde\x6f\x98\x37\x88\xda\x68\x4b\xf0\xed\xce\x6b\x23\xf1\xa8\x7f\xa3\x82\xca\xea\x1a\xa2\x69\x29\x62\xbd\x6e\xe7\xd5\x59\xe4\x7d\xf5\x07\x12\x2f\x39\xf1\x93\xc0\x9b\xeb\x5d\xef\x05\x03\xe3\x7f\xb6\x7f\x94\x6c\x3e\x9f\xc3\x77\x24\x07\x74\x41\x20\x4d\x5c\x82\xf3\xc6\xc8\x06\x74\xd5\xd5\xae\xdc\x4b\xfa\xec\x80\xba\x2f\x2e\x85\xc5\x82\x64\x13\x68\xc3\x3d\x63\xc6\xe7\x50\x79\x05\x35\x17\x2a\xe6\x65\x69\xd1\xb9\x05\x6c\xc2\x21\x59\xc0\xaf\x9d\xb8\x7f\xfd\x02\x0f\x06\x00\x20\x91\x80\x17\x85\xf6\x8a\x20\x83\x33\xd2\x26\xbc\xbc\x8c\x09\x1b\x64\x1d\xfe\x80\x15\x64\x2f\x47\x77\xd5\x3e\xe9\x19\x69\xcb\x0d\xcf\x85\x14\xd4\xc4\xd3\x18\xd3\x53\x6b\xdb\xfb\x5c\x8a\x62\xcf\xe9\x92\x8c\xa6\x5c\x5b\xab\x6f\xcb\x4f\x8f\xbf\x92\x48\x0f\xe8\xb4\xbc\xa2\x7d\xae\xe2\x51\xbc\x5e\x83\xe1\x4a\x14\x71\xb4\xd5\x5e\x96\xa0\x34\x41\xf0\x03\x07\x8b\x15\x5a\x54\x45\x1b\xdb\x98\x04\xd8\x1e\x14\x4d\x86\xa8\xe8\x67\xc8\x34\x1b\xe6\x49\x7b\x5d\xdb\x3d\x3e\x36\x06\x97\xef\x17\x9a\x1e\xdb\xbd\x04\xc4\x2a\x4e\x92\xd9\x48\x0e\xbb\x6a\x55\x90\x8d\x6d\xb8\x9b\x7d\xf0\x03\x4d\x71\x81\x64\x91\xbc\x55\x13\x58\x1a\x8e\xec\xc9\xfe\x04\x00\x00\xff\xff\x64\xda\x15\x73\xb7\x02\x00\x00" +var _scriptsMetadataGet_vault_supply_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x52\x3d\x6f\xdb\x30\x10\xdd\xf9\x2b\x2e\x1a\x5a\x69\x91\x97\xa2\x43\x10\x25\x08\x82\xa6\x53\x01\xc3\x75\xbd\x9f\xa8\x93\x4d\x94\x22\x05\xf2\x68\x5b\x30\xfc\xdf\x0b\x89\xfa\x5a\x5c\x4d\xc7\xc7\xf7\x1e\xef\xde\x49\x35\xad\x75\x0c\x3f\xae\xd8\xb4\x9a\xf6\xf6\x2f\x19\xa8\x9d\x6d\x20\x59\x43\x89\x18\x79\x9f\xc1\x1c\x55\x39\xa2\xbf\x88\xb1\x42\xc6\x83\xa2\x8b\x1f\x55\x8f\x09\xb3\x47\x7f\xda\x91\xb7\xfa\x4c\x6e\x54\xad\xa1\x44\x88\xcd\x66\x03\x3f\x89\x3d\xf0\x89\x80\x2d\xa3\x06\x1f\xda\x56\x77\x60\xeb\x01\x3b\x63\xd0\xfc\xd5\x03\x0f\xfd\x56\xca\x91\x64\xdd\x45\xb3\xf9\x5e\x08\x94\x92\xbc\x4f\x51\xeb\x0c\xea\x60\xa0\x41\x65\x52\xac\x2a\x47\xde\x3f\xc3\x7b\x2c\xb2\x67\xf8\xf3\xa9\xae\xdf\xbf\xc1\x4d\x00\x00\x68\x62\x40\x29\x6d\x30\x0c\x05\x1c\x89\xdf\xe3\x61\x12\x66\x62\xa6\x0d\xcf\xec\xa8\x86\x62\x52\x0c\x57\xfd\x97\x1f\x89\x3f\xb0\xc5\x52\x69\xc5\x5d\xba\x0e\x33\x3f\xf4\xb2\x6d\x28\xb5\x92\x5b\xe4\x53\xb6\x88\x4a\xeb\x9c\xbd\xbc\x7c\xb9\xad\x03\xc9\xa7\xe2\xfe\x9a\x2e\xdc\xb7\x37\x68\xd1\x28\x99\x26\x1f\x36\xe8\x0a\x8c\x65\x88\x72\x40\x70\x54\x93\x23\x23\xfb\xf4\x96\x40\xc0\x4d\x11\xaf\x66\xa8\xf9\x77\x8c\xb6\x98\xc7\xc9\x47\x5e\xdf\x44\xba\xef\x5a\x7a\x79\xbc\xd5\x7c\xdf\xaf\x27\x5a\xbc\xa6\x59\xf6\xb4\x38\xc7\x95\xf5\x2c\x28\x96\x67\xd0\x3f\xfd\xe7\x2f\x5a\xdb\x45\x27\x47\x1c\x9c\x59\x99\xe5\xb1\x14\x77\xf1\x2f\x00\x00\xff\xff\xaf\x06\xd2\x34\xbc\x02\x00\x00" func scriptsMetadataGet_vault_supply_viewCdcBytes() ([]byte, error) { return bindataRead( @@ -462,11 +462,11 @@ func scriptsMetadataGet_vault_supply_viewCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/metadata/get_vault_supply_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0xf4, 0x97, 0x7, 0x1a, 0x5a, 0xb3, 0x78, 0x62, 0xda, 0xea, 0x72, 0xcd, 0x10, 0xe3, 0x91, 0x7b, 0xcd, 0x30, 0xb, 0x80, 0x58, 0xac, 0xef, 0x93, 0xab, 0x5f, 0xe9, 0x99, 0x1c, 0x8f, 0xc7}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x6c, 0x38, 0xe6, 0xf9, 0x6b, 0xf9, 0xc3, 0xd, 0x5a, 0x63, 0xe2, 0xd0, 0x7, 0x2, 0xb, 0x5, 0x85, 0x2e, 0xfa, 0x1c, 0x69, 0x18, 0xff, 0xd5, 0xd2, 0x13, 0x3d, 0x84, 0x4e, 0xb8, 0x88, 0x54}} return a, nil } -var _scriptsSwitchboardCheck_receiver_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\xc1\x6e\xe3\x20\x18\x84\xef\x7e\x8a\x91\x0f\x2b\x73\xf1\x03\x44\xd9\x64\x93\x55\x7b\x8e\x92\xb4\x77\xc0\xbf\x6d\x14\x0c\x08\xff\x34\xb5\xa2\xbc\x7b\x95\xda\x6d\xdd\x4a\x39\xf4\xf6\xc3\xcc\xc0\xc7\x60\xba\xe0\x23\xe3\x31\xb9\xc6\x28\x4b\x47\x7f\x22\x77\x38\x1b\xd6\xad\xf2\x32\x56\xa8\xa3\xef\x90\xdf\x93\xf3\x6c\xca\x3f\xbc\xca\x2e\x4c\xfa\x94\x99\x6f\xe5\x59\x16\x92\x42\x9d\x1c\x3a\x69\x5c\xd1\x7f\x1d\xb1\xc0\xa6\xaa\x22\xf5\xbd\x58\x60\xeb\xbd\xc5\x25\xb3\xc4\x98\x39\xf6\x54\xe3\x2f\x1a\xe2\x8d\xd6\x3e\x39\x9e\xa7\x45\x06\x00\x65\x43\xfc\x5f\x06\xa9\x8c\x35\x3c\x2c\xff\x5c\xee\xf1\x96\xb3\x79\x97\x94\x35\xfa\xba\x2a\xee\x9a\x47\xc7\x4e\x72\x3b\x5d\xa3\x7c\x8c\xfe\x5c\x08\xbc\x2f\xd7\x6b\x04\xe9\x8c\x2e\xf2\x27\x27\x95\x25\xb0\xc7\xe8\x80\xfe\x84\xc1\xd9\x70\x8b\x48\x3d\x47\xa3\x99\x2a\xf0\x10\x08\xbe\xc6\x6f\x18\xa7\x46\x4b\xed\x9d\x96\xdf\xde\x5f\xb2\x3f\x70\x34\xae\x29\x84\xf8\x90\x91\xcb\xb1\xa8\x5c\x8c\xdc\x91\x38\x45\xf7\xa3\xd2\x52\xb7\xa4\x4f\x7b\xd2\x64\x5e\x28\x6e\x87\xe3\x10\xa8\xb8\xc1\x2d\x70\x1b\x97\xff\xe6\xff\x57\x3e\xcb\x64\x79\x55\x08\x91\x5d\xdf\x02\x00\x00\xff\xff\xfb\xcb\x2f\x00\x32\x02\x00\x00" +var _scriptsSwitchboardCheck_receiver_by_typeCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x91\x41\x6f\xe2\x30\x14\x84\xef\xf9\x15\xa3\x1c\x56\xf6\x25\x3f\x00\xb1\xb0\xb0\x6a\xcf\x08\x68\xef\xce\xcb\x4b\x62\xe1\xd8\x91\xf3\x52\x1a\x21\xfe\x7b\x45\x93\xb6\x69\x25\x0e\xbd\x3d\x7b\x66\xec\xcf\x63\xdb\xb4\x21\x0a\x1e\x7b\x5f\xd9\xdc\xf1\x31\x9c\xd8\x1f\xce\x56\xa8\xce\x83\x89\x05\xca\x18\x1a\xa4\xf7\xe4\x34\x99\xf2\x0f\xaf\xa6\x69\x27\x7d\xca\xcc\xb7\xd2\x24\x31\x44\xdc\x75\xca\x38\xa7\x51\xf6\x1e\x8d\xb1\x5e\x75\x5f\x47\x2d\xb0\x29\x8a\xc8\x5d\xa7\x17\xd8\x86\xe0\x70\x49\x1c\x0b\x66\x8e\x3d\x97\xf8\x8b\x8a\x65\x43\x14\x7a\x2f\xf3\xb4\x4e\x00\x20\xab\x58\xfe\x9b\xd6\xe4\xd6\x59\x19\x96\x7f\x2e\xf7\xb8\xb3\xd9\xbc\xeb\x73\x67\xe9\xba\x52\x77\xcd\xa3\x63\x67\xa4\x9e\xae\xc9\x43\x8c\xe1\xac\x34\xde\x97\xeb\x35\x5a\xe3\x2d\xa9\xf4\xc9\x9b\xdc\x31\x24\x60\x74\x80\x3e\x61\x70\xb6\x52\x23\x72\x27\xd1\x92\x70\x01\x19\x5a\x46\x28\xf1\x1b\xc6\xa9\xd9\x8c\x82\x27\xf3\xed\xfd\x99\x84\x83\x44\xeb\x2b\xa5\xf5\x87\x8c\xd4\x8c\x45\xa5\x7a\xe4\x8e\x2c\x7d\xf4\x3f\x2a\xcd\xa8\x66\x3a\xed\x99\xd8\xbe\x70\xdc\x0e\xc7\xa1\x65\x75\x83\x5b\xe0\x36\x2e\xff\xcd\xff\x31\x7b\x36\xbd\x93\x95\xd2\x3a\xb9\xbe\x05\x00\x00\xff\xff\xda\xcb\x5c\xb3\x3a\x02\x00\x00" func scriptsSwitchboardCheck_receiver_by_typeCdcBytes() ([]byte, error) { return bindataRead( @@ -482,11 +482,11 @@ func scriptsSwitchboardCheck_receiver_by_typeCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/switchboard/check_receiver_by_type.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2a, 0x6a, 0x82, 0xa3, 0xd9, 0xd7, 0x0, 0x73, 0xa9, 0xff, 0x8d, 0x6b, 0x2b, 0x4b, 0xa6, 0x55, 0x22, 0xfd, 0x77, 0x7, 0x8f, 0xbd, 0xb6, 0xdd, 0x72, 0xa1, 0x29, 0xeb, 0xcc, 0xd3, 0x61, 0x83}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x81, 0xb8, 0x6e, 0x4b, 0xcb, 0x6a, 0xa3, 0x48, 0xfb, 0xf, 0xdc, 0xa5, 0xe5, 0x47, 0xac, 0x7c, 0xae, 0xc4, 0x91, 0x8b, 0x70, 0x1, 0x95, 0xf7, 0x73, 0xee, 0xf6, 0x9e, 0x85, 0x22, 0xec, 0xc9}} return a, nil } -var _scriptsSwitchboardGet_vault_typesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\x31\x0b\xdb\x30\x14\x84\x77\xfd\x8a\xc3\x43\xb1\x17\x7b\x0f\x4d\x43\x08\xb4\x6b\x48\x43\x97\x52\x88\x2c\x3f\xdb\xa2\xb6\x64\xa4\xa7\x86\x10\xf2\xdf\x8b\xac\xa6\x71\x4a\x02\xf5\x64\xa4\xef\xde\xe9\xdd\xe9\x71\xb2\x8e\xf1\x39\x98\x4e\xd7\x03\x1d\xed\x4f\x32\x68\x9d\x1d\x91\x3d\x9d\x65\xe2\x15\xf9\xf5\xac\x59\xf5\xb5\x95\xae\x79\x25\x5a\x5c\x67\x42\x54\x15\x8e\xbd\xf6\xf0\xca\xe9\x89\xe1\x48\x36\x1e\xdc\x13\x3c\x5b\x47\x0d\x7e\xc9\x30\x30\x94\x9c\x64\xad\x07\xcd\x9a\x7c\x9a\x29\xe1\x17\x36\xd6\x44\x4d\x1c\x36\x49\xef\xa9\x81\x54\xca\x06\xc3\x62\x0a\x35\xda\x60\x30\x4a\x6d\xf2\x3f\x87\x2b\x6c\x9b\xc6\x91\xf7\xc5\x0a\xdf\x8f\x97\x89\x7e\xe0\x2a\x04\x00\x0c\xc4\x51\xc9\x58\xa3\x23\xde\x26\xfc\x2e\x2b\x12\x53\x55\xf8\x12\x31\x38\x6a\xc9\x91\x51\x04\xb6\xe9\xc5\x8b\x07\x29\x6b\x5a\xeb\x46\x6d\xba\x78\xbb\x58\x79\x1f\xea\x41\xab\xbf\x6e\x0b\xcd\x81\x5a\xac\x67\xfb\xb2\x23\xde\xdd\x37\xbe\xe4\xef\xd2\x2b\xd3\xac\xbd\xe4\xbe\x98\x07\xc6\xaf\xac\xad\x73\xf6\xfc\xf1\xc3\x5b\xd5\xe2\xff\xfa\x3f\x50\x72\xb9\x7d\xca\x1f\x26\x9b\x0d\x26\x69\xb4\xca\xb3\x9d\x0d\x43\x03\x63\x19\xc9\xf7\x39\x95\xc5\x76\xd9\x23\xbe\x03\x71\x70\x73\x61\x70\xe4\x63\xbd\xb6\xc5\xa9\x23\xfe\x16\xbb\x8e\x85\xf8\xbc\x38\xcd\xb4\x4b\xe8\x73\x4a\xe5\x3f\xa8\x10\x37\xf1\x3b\x00\x00\xff\xff\xfb\x2b\x45\x36\xb2\x02\x00\x00" +var _scriptsSwitchboardGet_vault_typesCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcd\x0a\xdb\x30\x10\x84\xef\x7a\x8a\xc1\x87\x62\x5f\xec\x7b\x68\x1a\x42\xa0\xbd\x86\x34\xf4\x52\x0a\x91\xe5\xb5\x2d\x2a\x4b\x46\x5a\x37\x84\x90\x77\x2f\xb2\x9a\xc6\x29\x09\xd4\x27\xa3\xfd\x66\x66\x7f\xf4\x30\x3a\xcf\xf8\x3c\xd9\x4e\xd7\x86\x8e\xee\x27\x59\xb4\xde\x0d\xc8\x9e\xde\x32\xf1\x8a\xfc\x7a\xd6\xac\xfa\xda\x49\xdf\xbc\x12\x2d\xca\x99\x10\x55\x85\x63\xaf\x03\x82\xf2\x7a\x64\x78\x92\x4d\x00\xf7\x84\xc0\xce\x53\x83\x5f\x72\x32\x0c\x25\x47\x59\x6b\xa3\x59\x53\x48\x9e\x12\x61\x11\xe3\x6c\xd4\x44\xb3\x51\x86\x40\x0d\xa4\x52\x6e\xb2\x2c\xa4\x52\x14\x42\x2e\x8d\x29\xd0\x4e\x16\x83\xd4\x36\xff\x53\x5c\x61\xdb\x34\x9e\x42\x28\x56\xf8\x7e\xbc\x8c\xf4\x03\x57\x21\x00\xc0\x10\x47\x07\xc6\x1a\x1d\xf1\x36\xe1\x77\x59\x91\x98\xaa\xc2\x97\x88\xc1\x53\x4b\x9e\xac\x22\xb0\x4b\x9d\x2f\x1a\x53\xce\xb6\xce\x0f\xda\x76\xb1\xba\x18\x7d\x3f\xd5\x46\xab\xbf\x69\x0b\xcd\x81\x5a\xac\xe7\xf8\xb2\x23\xde\xdd\x27\xbf\xe4\xef\xb6\x58\x26\xaf\xbd\xe4\xbe\x98\x0d\xe3\x57\xd6\xce\x7b\x77\xfe\xf8\xe1\xad\x6a\xf1\x7f\xfd\x1f\x28\xa5\xdc\x3e\xe5\x8f\x90\xcd\x06\xa3\xb4\x5a\xe5\xd9\xce\x4d\xa6\x81\x75\x8c\x94\xfb\xbc\x95\xc5\x74\xd9\x63\x7d\x07\xe2\xc9\xcf\x87\x83\xa7\x10\xcf\xec\x5a\x9c\x3a\xe2\x6f\xf1\xe6\xf1\x20\x21\x2f\x4e\x33\xed\x13\xfa\xbc\xa5\xf2\x1f\x54\x88\x9b\xf8\x1d\x00\x00\xff\xff\x0f\x40\x25\x01\xba\x02\x00\x00" func scriptsSwitchboardGet_vault_typesCdcBytes() ([]byte, error) { return bindataRead( @@ -502,11 +502,11 @@ func scriptsSwitchboardGet_vault_typesCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/switchboard/get_vault_types.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x69, 0xfb, 0xd8, 0x58, 0x9d, 0x15, 0x34, 0x8a, 0xe2, 0xfb, 0x58, 0x75, 0x8d, 0xe6, 0x9e, 0x1b, 0x57, 0xc3, 0x55, 0x9e, 0x21, 0x35, 0x9a, 0xd7, 0x46, 0x47, 0xcd, 0x80, 0x37, 0x2b, 0xc0, 0x1a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x31, 0x74, 0x9c, 0xc1, 0x57, 0xd3, 0x1b, 0xfe, 0x8, 0x2c, 0x71, 0xb9, 0x27, 0x9a, 0xd1, 0x61, 0xe0, 0x73, 0x5e, 0x58, 0xb4, 0xd9, 0x69, 0x25, 0x6f, 0x62, 0x61, 0x45, 0x1a, 0xbd, 0x79, 0x52}} return a, nil } -var _scriptsSwitchboardGet_vault_types_and_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\xca\xdb\x30\x10\xc4\xef\x7a\x8a\xc1\x87\x62\x5f\xec\xfb\x47\xbf\x86\x10\x68\xaf\x21\x0d\xed\x35\xb2\xbc\xb6\x45\x6d\xc9\x48\xab\x86\x10\xf2\xee\x45\x56\xfe\x38\x90\x40\x7d\x32\xab\xfd\xcd\xec\xee\xe8\x71\xb2\x8e\xf1\x3d\x98\x4e\xd7\x03\xed\xed\x1f\x32\x68\x9d\x1d\x91\x3d\xd5\x32\xf1\xaa\xf3\xe7\x51\xb3\xea\x6b\x2b\x5d\xf3\x0a\x5a\x3c\x67\x42\x54\x15\xf6\xbd\xf6\xf0\xca\xe9\x89\xe1\x48\x36\x1e\xdc\x13\x3c\x5b\x47\x0d\xfe\xca\x30\x30\x94\x9c\x64\xad\x07\xcd\x9a\x7c\xd2\x94\xf0\x0b\x1b\x6b\x22\x13\xc5\x26\xe9\x3d\x35\x90\x4a\xd9\x60\x58\x4c\xa1\x46\x1b\x0c\x46\xa9\x4d\x7e\x2d\x7e\x60\xdd\x34\x8e\xbc\x2f\x3e\x70\xde\x9f\x26\xba\x17\x2e\x38\x0b\x01\x00\x03\x71\x94\x60\x7c\xa2\x23\x5e\x27\xee\xc6\x17\xa9\xa7\xaa\xf0\x23\xb6\xc1\x51\x4b\x8e\x8c\x22\xb0\x4d\xa3\x2f\x26\x53\xd6\xb4\xd6\x8d\xda\x74\xf1\x75\xb1\xfb\x36\xd4\x83\x56\x77\xb7\x05\xb3\xa3\x16\x9f\xb3\x7d\xd9\x11\x6f\x6e\xab\x9f\xf2\x77\x67\x2c\x93\xd6\x56\x72\x5f\xcc\x82\xf1\x2b\x6b\xeb\x9c\x3d\x7e\xfd\xf2\x96\x5a\xfc\x9f\xff\xa7\x29\xb9\x5c\xbe\xe5\x0f\x93\xd5\x0a\x93\x34\x5a\xe5\xd9\xc6\x86\xa1\x81\xb1\x8c\xe4\xfb\x7c\x95\xc5\x76\xd9\xe3\x7c\x3b\xe2\xe0\xe6\xe4\xe0\xc8\xc7\x9c\x6d\x8b\x43\x47\xfc\x2b\x86\x1e\x93\xf1\xbf\x35\xf7\xd7\x70\xf2\xe2\x30\x83\x2e\x51\xcf\x07\x2b\xdf\x53\x42\x5c\xc4\xbf\x00\x00\x00\xff\xff\x3b\x85\x5a\x09\xd1\x02\x00\x00" +var _scriptsSwitchboardGet_vault_types_and_addressCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x91\xcf\xca\xdb\x30\x10\xc4\xef\x7a\x8a\xc1\x87\x62\x5f\xec\xfb\x47\xbf\x86\x10\x68\xaf\x21\x0d\xed\x35\xb2\xbc\xb6\x45\x65\xc9\x48\xeb\x86\x10\xf2\xee\x45\x56\xfe\x38\x90\x40\x7d\x32\xda\xfd\xcd\x48\x33\x7a\x18\x9d\x67\x7c\x9f\x6c\xa7\x6b\x43\x7b\xf7\x87\x2c\x5a\xef\x06\x64\x4f\x67\x99\x78\xb5\xf9\xf3\xa8\x59\xf5\xb5\x93\xbe\x79\x05\x2d\xc6\x99\x10\x55\x85\x7d\xaf\x03\x82\xf2\x7a\x64\x78\x92\x4d\x00\xf7\x84\xc0\xce\x53\x83\xbf\x72\x32\x0c\x25\x47\x59\x6b\xa3\x59\x53\x48\x9a\x12\x61\x61\xe3\x6c\x64\xa2\xd8\x28\x43\xa0\x06\x52\x29\x37\x59\x16\x52\x29\x0a\x21\x97\xc6\x14\x68\x27\x8b\x41\x6a\x9b\x5f\x87\x1f\x58\x37\x8d\xa7\x10\x8a\x0f\x9c\xf7\xa7\x91\xee\x07\x17\x9c\x85\x00\x00\x43\x1c\xa5\x18\x9f\xe8\x88\xd7\x89\xbb\xf1\x45\xda\xa9\x2a\xfc\x88\x6b\xf0\xd4\x92\x27\xab\x08\xec\xd2\x13\x16\x37\x54\xce\xb6\xce\x0f\xda\x76\x71\xba\xc8\x60\x3b\xd5\x46\xab\xbb\xdb\x82\xd9\x51\x8b\xcf\xd9\xbe\xec\x88\x37\xb7\x08\x4e\xf9\xbb\x38\xcb\xa4\xb5\x95\xdc\x17\xb3\x60\xfc\xca\xda\x79\xef\x8e\x5f\xbf\xbc\xa5\x16\xff\xe7\xff\x59\x4a\x2e\x97\x6f\xf9\xc3\x64\xb5\xc2\x28\xad\x56\x79\xb6\x71\x93\x69\x60\x1d\x23\xf9\x3e\xa7\xb2\x78\x5d\xf6\x88\x6f\x47\x3c\xf9\xb9\x41\x78\x0a\xb1\x6f\xd7\xe2\xd0\x11\xff\x8a\xe5\xc7\x66\xc2\x6f\xcd\xfd\xb5\x9c\xbc\x38\xcc\xa0\x4f\xd4\x73\x60\xe5\x7b\x4a\x88\x8b\xf8\x17\x00\x00\xff\xff\xa3\xe8\x69\xc6\xd9\x02\x00\x00" func scriptsSwitchboardGet_vault_types_and_addressCdcBytes() ([]byte, error) { return bindataRead( @@ -522,11 +522,11 @@ func scriptsSwitchboardGet_vault_types_and_addressCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/switchboard/get_vault_types_and_address.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbb, 0x85, 0x7a, 0x8d, 0xe8, 0x53, 0x96, 0x74, 0xb7, 0x16, 0xcf, 0x4b, 0x9e, 0xba, 0x84, 0x74, 0xf3, 0xc9, 0xee, 0x30, 0x27, 0x8d, 0x28, 0xff, 0xe2, 0xe3, 0xb1, 0x25, 0x3e, 0x9, 0x9a, 0xad}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7f, 0xe6, 0xe9, 0x2e, 0x23, 0x2d, 0xf9, 0x64, 0x3, 0xf2, 0xc5, 0x39, 0xb7, 0x30, 0x55, 0xc, 0x68, 0xf4, 0x1e, 0xc9, 0x1e, 0x14, 0x1c, 0x6e, 0xd9, 0x90, 0x58, 0xc2, 0xfc, 0x82, 0x76, 0xd3}} return a, nil } -var _scriptsTokenforwarderIs_recipient_validCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x90\x51\x6a\xc3\x30\x10\x44\xff\x7d\x8a\xc1\x1f\xc5\x86\xe2\x03\x98\xb6\x21\x2d\xe4\x3b\x94\xf6\x00\xb2\xb4\x76\x44\x64\xad\x58\xaf\x08\x21\xe4\xee\xa5\x36\x2d\x24\x24\x44\x5f\x62\x79\x3b\x33\x3b\x7e\x4c\x2c\x8a\x2f\xde\x53\xdc\xb0\x1c\x8c\x38\x1f\x07\xf4\xc2\x23\xca\xab\x69\x59\x14\x29\x77\xe8\x73\xc4\x68\x7c\xac\x8c\x73\xd2\x62\xed\x9c\xd0\x34\x3d\x43\x2f\xe9\xad\xd1\x5d\x8b\x6d\xee\x82\xb7\xbf\xff\xba\xc5\x3b\x73\xc0\xa9\x00\x80\x40\x8a\x7e\x61\x49\x3e\xa9\xc7\x2b\x06\xd2\xb5\xb5\x9c\xa3\xce\xca\xf5\xcc\xdd\x78\xcd\x40\xfa\x61\x92\xe9\x7c\xf0\x7a\x7c\x79\x3a\x5d\xc5\x6c\x36\x7f\xba\x8b\xf9\xf9\xad\xba\x11\xed\xbe\x7c\xc7\x22\x7c\xa8\xee\x02\xab\x15\x92\x89\xde\x56\xe5\x77\x34\x5d\x20\x28\x63\xd9\xc1\xc3\x28\x10\x9a\x54\xbc\x55\xe8\x31\xd1\x52\xb3\x81\xfd\xbf\xa6\xac\x8b\xd9\x56\x48\xb3\xc4\x8b\x86\x1a\xbb\x23\xbb\xaf\xea\xe2\xfc\x13\x00\x00\xff\xff\xb3\xce\xc9\xb2\xb4\x01\x00\x00" +var _scriptsTokenforwarderIs_recipient_validCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x50\x4b\x6a\xc3\x40\x0c\xdd\xfb\x14\x0f\x2f\xca\x18\x8a\x0f\x60\xda\x86\xb4\x90\x75\x28\xed\x01\xe4\xb1\xec\x0c\x19\x8f\x8c\x2c\x13\x42\xc8\xdd\x4b\x6d\x5a\x48\x48\x88\x56\x42\xbc\x9f\x5e\xe8\x07\x51\xc3\x97\xec\x39\x6d\x44\x0f\xa4\x4d\x48\x1d\x5a\x95\x1e\xf9\xd5\x35\xcf\x32\xf2\x9e\xc7\xd1\x51\x8c\x05\xda\x29\xa1\xa7\x90\x1c\x35\x8d\x56\x58\x37\x8d\xf2\x38\x3e\xc3\x2e\x59\x5b\xb2\x5d\x85\xed\x54\xc7\xe0\x7f\xf7\xa2\xc2\xbb\x48\xc4\x29\x03\x80\xc8\x86\x76\xc1\xb2\x7e\x72\x8b\x57\x74\x6c\x6b\xef\x65\x4a\x36\x2b\x17\x33\xee\xc6\x94\x1d\xdb\x07\x0d\x54\x87\x18\xec\xf8\xf2\x74\xba\x8a\x5b\x6e\xfe\x74\x17\xf3\xf3\x9b\xbb\x11\xed\xbe\x7c\x2d\xaa\x72\x70\x77\x01\xab\x15\x06\x4a\xc1\xbb\xfc\x3b\x51\x1d\x19\x26\x58\x38\x78\x18\x05\xca\xa3\x69\xf0\x06\x3b\x0e\xbc\xd4\x4d\xf0\xff\xdf\xe4\x45\x36\xdb\x2a\xdb\xa4\xe9\xa2\xa1\xd2\xef\xd8\xef\x5d\x91\x9d\x7f\x02\x00\x00\xff\xff\x1c\x3c\x53\x68\xbc\x01\x00\x00" func scriptsTokenforwarderIs_recipient_validCdcBytes() ([]byte, error) { return bindataRead( @@ -542,11 +542,11 @@ func scriptsTokenforwarderIs_recipient_validCdc() (*asset, error) { } info := bindataFileInfo{name: "scripts/tokenForwarder/is_recipient_valid.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb6, 0xad, 0x9e, 0x22, 0xd4, 0xc2, 0x63, 0x91, 0x2a, 0xff, 0xe3, 0x37, 0x70, 0xe5, 0xa, 0x40, 0x70, 0xa3, 0xb5, 0x5f, 0x14, 0xc3, 0x8, 0x79, 0xd4, 0xb9, 0xf6, 0x7, 0xd7, 0x51, 0x7a, 0xc8}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7a, 0x23, 0x4d, 0x2, 0xff, 0x47, 0x5f, 0xfa, 0x75, 0xc3, 0x97, 0xa7, 0xe, 0x25, 0x75, 0xe4, 0xab, 0xb9, 0x6d, 0xd0, 0x4a, 0x83, 0x54, 0x49, 0x43, 0x4e, 0x6f, 0xf8, 0x6a, 0xd6, 0x3b, 0xf9}} return a, nil } -var _setup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x53\xc1\x6a\xdc\x30\x10\xbd\xfb\x2b\x5e\x73\x28\xbb\x90\xae\xef\x21\x0d\xa4\x25\xbd\x15\x42\x1a\x72\x9f\xb5\xc7\xb6\x88\x56\x32\xa3\x71\x36\x26\xec\xbf\x17\x69\xbd\xc6\x6a\x96\x16\x4a\xa9\x6f\x7a\x7a\x7a\x33\xef\x79\xa6\x2c\xf1\xd8\x99\x00\x15\x72\x81\x2a\x35\xde\xc1\x04\x10\x94\x77\xbd\x25\x65\x34\x5e\xe2\x71\x71\xaf\x1e\x64\xad\xdf\x17\x65\x09\x72\xa3\x77\x9c\xa0\xba\x06\xe1\x89\x06\xab\x10\x0e\x7e\x90\x2a\xe1\xda\xb1\x11\x50\x55\xf9\xc1\x29\x42\x04\x48\xe3\x53\xed\x78\x44\x45\x0e\x43\xe0\x78\x00\xbf\xd2\xae\xb7\xfc\xe8\x9f\xd9\x15\x85\xd9\xf5\x5e\x14\xdf\x06\xd7\x9a\xed\x84\xa2\x11\xbf\xc3\x45\x86\x5d\x9c\x98\x77\x8b\xe7\x13\x71\x09\xcd\xbc\xef\xac\x54\x93\xd2\x93\xe1\x7d\x98\x88\x19\x76\x51\x14\x4b\xbb\xab\x35\xde\x8a\x02\x00\x7a\xe1\x9e\x84\x57\xc1\xb4\x8e\xe5\x0a\xb7\x83\x76\xb7\x47\x63\x33\x27\x7e\x65\x89\x07\xd6\x41\x1c\x98\xc4\x8e\x30\x4d\xf2\x77\xca\x80\xac\x30\xd5\x23\x82\x7a\xe1\x98\x75\xd6\x79\x4a\x70\x96\x32\x0d\x8e\xd5\x36\x5b\x2f\xe2\xf7\xd7\x1f\x97\xe4\x4d\x22\xdf\xac\xa2\x89\x2b\xbc\xbf\xf9\xa1\x5e\xa8\xe5\x7b\xd2\x6e\x8d\x0f\x9f\xe1\x8c\xc5\xdb\xac\x1d\x3f\x49\x7d\xce\xd0\x21\x33\xf1\x55\x38\x4e\x00\xc1\xf1\xfe\x4c\x93\x20\x57\xa3\x1f\x14\x46\x61\x5c\xb2\x43\x2d\xcf\x02\x53\xdf\x81\x5e\x78\x95\xd5\xbc\xfe\x94\x75\x5a\xa5\x2a\x77\xbb\x5e\xc7\x24\xbb\x5a\x5f\x66\x74\xf5\x7f\xb0\x36\xb3\xd7\xe7\xbb\xef\x87\xad\x35\x15\x2a\xea\x69\x6b\xac\xd1\x71\x1a\xcb\xc9\x45\x9c\x47\x78\x67\x47\xf0\x6b\xef\x03\x87\xa5\x48\xa4\xd5\xdc\xfb\x60\x14\xcd\xe0\xa6\x05\xe8\xc4\x0f\x6d\x97\x2e\x1f\xb8\x62\xf3\xc2\x02\xe3\x94\xa5\xa1\xea\x5d\x00\xd6\xb8\xe7\x73\xbf\xed\x2d\x1b\xe3\xcd\x49\xe8\x70\x93\xa7\x95\x3d\x3c\x91\xee\x93\xa5\x68\xfe\x97\xac\x48\x5a\xd6\xff\x90\xd7\x14\x55\x82\xbf\x90\x25\x57\x71\x1a\x87\x07\x0e\xde\x66\x71\x84\xbf\xcc\x63\x52\xbd\xcc\xf7\x75\x73\x2a\xf0\xdb\x98\x92\xde\xbf\xca\xe8\xb8\x17\x87\xe2\x67\x00\x00\x00\xff\xff\xd1\xd3\xfa\x7f\x2b\x05\x00\x00" +var _setup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x41\x6f\xe2\x30\x10\x85\xef\xf9\x15\x6f\x39\x54\x20\x51\x72\xaf\xd8\x4a\xdd\x55\xf7\x5c\xb1\x55\xef\x83\x19\xc0\xaa\x63\x47\xe3\x09\x34\x42\xfc\xf7\x95\x4d\x48\x93\x76\x57\x5b\x9f\xe2\xe7\xe7\xf1\x7c\x2f\x53\x96\x78\xde\xdb\x08\x15\xf2\x91\x8c\xda\xe0\x61\x23\x08\xca\x55\xed\x48\x19\xdb\x20\x69\x3b\x38\xd7\x00\x72\x2e\x1c\x8b\xb2\x04\xf9\x36\x78\xce\xd2\x66\x03\xc2\x0b\x35\x4e\x21\x1c\x43\x23\x26\xeb\xba\x67\x2b\x20\x63\x42\xe3\x15\x31\x09\xa4\xe9\xaa\xee\xb9\x85\x21\x8f\x26\x72\xda\x80\xdf\xa8\xaa\x1d\x3f\x87\x57\xf6\x45\x61\xab\x3a\x88\xe2\x57\xe3\x77\x76\xdd\xa9\xd8\x4a\xa8\x30\x19\x69\x93\xab\xf3\x71\x70\xbd\x33\x0e\xa5\xde\xf7\x62\xf9\xb8\xe2\x18\xdc\x81\xa5\xf3\x0d\xa5\x49\x51\x0c\x61\xa7\x33\x9c\x8a\x02\x00\x6a\xe1\x9a\x84\xa7\xd1\xee\x3c\xcb\x1d\x1e\x1a\xdd\x3f\x5c\xb0\x7a\x4f\x5a\x65\x89\x15\x6b\x23\x1e\x4c\xe2\x5a\xd8\x6d\xa6\xbb\x26\x40\x4e\x98\x36\x2d\xa2\x06\xe1\x94\xf4\xa8\xef\x9c\x5f\x5f\xca\x6e\x71\x79\x6d\xb1\x0e\x22\xe1\xb8\xbc\x19\x9a\x17\xd9\x7c\x3f\x4d\x0c\x77\xf8\x7c\xf2\x5b\x83\xd0\x8e\x9f\x48\xf7\x33\x7c\xfb\x0e\x6f\x1d\x4e\x7d\xed\xb4\x24\xf7\xd9\x4b\xe7\x77\x08\xc7\x8a\x43\xfe\x97\xcb\xdb\x71\x69\x23\x4c\xca\x8f\x55\xad\x6d\x7e\x65\x3a\x1b\xa1\xff\xcc\xc7\x20\x78\x3e\xfe\x05\x0d\xe4\x37\xa8\x1b\x85\x55\x58\x9f\x43\xa0\x1d\xf7\x05\x3a\xda\x48\x07\x9e\x8e\x3a\x5d\xde\xe6\x6e\xe6\x23\x51\xc3\x7f\xb0\x7b\xf7\x3f\x7a\xac\x9b\xb5\xb3\x06\x86\x6a\x5a\x5b\x67\xb5\xed\x06\xb6\xeb\x35\x4d\x2a\xf8\xad\x0e\x91\x63\x96\x57\x6c\xd8\x1e\x58\xe6\xf8\x41\x8e\xbc\xe1\x79\xe6\xe9\xa7\xc9\x7a\x65\xd9\x92\xe1\xf8\x91\xc8\x59\xff\xba\xbc\x39\x8d\x26\x77\xf1\x5e\x6e\xac\xf7\xc5\x87\x73\xb9\xb8\x7e\x9c\xef\xc7\xd1\x7c\x4e\xe0\x29\x63\xa5\x00\x3e\xe4\x45\xb2\x63\xfd\x7a\x66\x97\x99\x38\x17\x7f\x02\x00\x00\xff\xff\x4a\xf8\xc4\x5d\x25\x04\x00\x00" func setup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -562,7 +562,7 @@ func setup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9e, 0x15, 0xa6, 0xb4, 0xe3, 0x94, 0x35, 0x36, 0xea, 0x97, 0xd0, 0x1a, 0xdb, 0xf6, 0x88, 0x5a, 0x71, 0x39, 0xa1, 0x41, 0xca, 0x9a, 0x62, 0xd4, 0x1b, 0xf1, 0x6c, 0x42, 0x62, 0xb9, 0xa0, 0x8b}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2c, 0xe, 0x96, 0x72, 0x65, 0xe6, 0xd9, 0xb, 0x20, 0x5e, 0xd8, 0x4b, 0x0, 0xb, 0xed, 0x2, 0x6f, 0xd6, 0x2f, 0x95, 0x33, 0xf, 0xd1, 0x6a, 0xbb, 0x69, 0xca, 0x19, 0xff, 0xd0, 0x69, 0x63}} return a, nil } @@ -686,7 +686,7 @@ func switchboardSafe_deposit_to_lnfCdc() (*asset, error) { return a, nil } -var _switchboardSafe_transfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x55\x4d\x6f\xdc\x36\x10\x3d\x7b\x7f\xc5\x64\x0f\xb5\x16\x70\xe4\x4b\xd1\xc3\xc2\x49\x6a\x24\x75\xaf\x41\xe2\xb6\x67\x4a\x1c\x49\xac\xb5\x1c\x61\x38\xb2\xbc\x30\xfc\xdf\x0b\x7e\x48\x4b\xf9\x03\xb5\x0f\xb6\x48\x0e\x67\xe6\xbd\x79\x7c\x36\x87\x81\x58\xe0\x66\xb4\xad\xa9\x7a\xbc\xa5\x3b\xb4\xd0\x30\x1d\x60\xbb\xda\xdb\x6e\x5e\x8b\xfc\x39\x19\xa9\xbb\x8a\x14\xeb\xd7\x2e\x65\xc7\xcb\xfd\x3f\x1e\xd4\x61\x58\x17\xca\xb7\xb6\x9b\xcd\xe5\x25\xdc\x76\xc6\x81\xb0\xb2\x4e\xd5\x62\xc8\x82\x71\xa0\x40\xf0\x30\xf4\x4a\x10\x1a\x62\xbf\xcc\xce\xa5\x53\x02\x35\x8d\xbd\x86\x0a\x61\x74\xa8\xa1\x3a\x82\xb2\x47\xb2\x08\x3e\xa3\x10\x38\xb4\x1a\xc4\x17\x71\x7e\xa9\x2c\x49\x87\x0c\xaa\xae\x69\xb4\x02\xd2\x31\x8d\x6d\x07\x0a\x5c\x86\x6a\x74\xc6\xb6\x20\x1d\x82\x53\x0d\x7e\xc3\x81\x9c\x11\x9f\xf0\x80\xd2\x91\x2e\x63\xab\x71\x01\x93\xe9\x7b\xb0\x24\x30\x28\x6b\x6a\x30\x4d\xbc\x98\xa5\xd3\x84\x2e\x44\x74\xea\x1e\xfd\xa9\x4f\x55\xab\x41\x55\xa6\x37\x72\x0c\x6d\x0a\x71\x38\x02\x8d\xce\x30\x6a\xb8\xb9\xbd\x00\x46\x19\xd9\xce\xbd\xe8\xd8\x07\x6a\xb8\x57\x63\x2f\x60\xac\x13\x54\xba\x8c\xdc\x21\x4c\x46\x3a\xcd\x6a\x02\x75\x08\xd8\x94\x47\xde\xe1\x82\x35\xf0\xde\xa2\x5c\xa7\xf5\x34\x33\xe7\x83\x06\xc5\xea\x80\x82\xec\x66\xe6\xfc\x6e\xc6\x76\xb9\xc9\x16\x85\xd0\x1e\xae\xb5\x66\x74\xee\x22\xd5\xdb\xc3\x5f\x37\xe6\xe1\xb7\x5f\x77\xf0\xb8\x01\x00\x08\xbf\x52\x6b\x8c\x0d\x32\xda\x1a\xe7\xc4\x11\x41\xe8\x28\x56\x3f\x22\x9f\xbb\xb9\xd5\x70\xb5\x47\x89\x61\x3f\xb0\xd9\xc3\x2f\xb9\x5e\xca\xbf\xfd\x7e\x5e\x20\x6c\x00\xa3\xa3\x91\x7d\x15\xaf\x8c\x8e\x7a\xed\x22\x8c\x34\x7f\xbf\xab\x18\xa1\xc2\xc0\xa9\xc7\xd3\x20\x33\xea\xa5\xa0\x43\x2b\x21\xd7\x1e\x7e\x5f\xa9\x3a\x95\x0c\x81\x03\xe3\xa0\x18\x0b\x67\x5a\x8b\xbc\x87\xeb\x51\xba\x44\xaa\x07\x1f\x62\x52\x6f\x7f\xa2\x80\x7a\x09\x3f\xde\x3c\x77\x71\xee\x69\xa0\xcb\x3d\x87\x7d\x53\xce\xd0\xe1\x53\x8a\x2e\x2b\x62\xa6\xe9\xea\x15\x26\x3e\x17\x9e\xc9\x3d\xbc\x3c\xf9\x29\xc4\xaa\xc5\xef\x4a\xba\xdd\xe6\xec\xec\xec\xcb\x97\x28\xd3\x62\xfb\x35\x4c\xdf\xab\x32\xe6\x7d\xd9\x24\x4d\xb1\xc7\x90\xe8\xc3\x76\xb7\x02\xf6\xcf\x2c\xb6\xc4\xed\x32\xca\x77\x40\x5b\x48\x86\xab\x8f\x2b\xac\xe5\x2c\xe1\x62\x96\x54\xfc\xbb\x3b\x09\xea\x29\x76\x81\x0f\x58\x8f\x82\xaf\xb0\x2d\x41\x6e\xb5\x19\x0c\x5a\x39\x77\x30\x8c\x55\x6f\xea\xe5\x11\x50\xf5\x2f\xd6\xa7\x7e\xfc\xcc\x97\x68\xf8\x94\x3d\x8f\x42\x68\xf7\x9e\x51\xe6\xb5\x72\x67\xfc\x81\x35\x9a\x7b\xe4\x55\xa9\xcc\x15\xe2\x68\x97\xdb\x65\x8b\xf2\x75\xb1\x84\xe2\x2d\x47\x2d\xbf\x07\x38\x71\x9e\x90\xfd\x2c\xea\x78\xf3\x66\xf6\xfd\xf8\x9e\xa0\x58\xe9\xe9\x73\xf1\xff\xc2\x89\x48\xd7\xdc\x64\x50\x3f\x6c\x77\xcb\xfc\x56\x1f\x97\x97\x90\xcc\x35\x50\xd9\x8c\x56\x3b\x08\xc6\xbe\x32\xd0\x8b\xd9\x54\x93\x03\x9e\x0c\xb5\x26\xaf\x77\xc1\x3c\xa3\x0f\xcc\xad\x39\x9a\x68\x56\x20\xf9\x26\x50\x13\x21\xdd\x19\xdb\x5e\x80\x23\x98\x30\x39\x34\xe5\xf9\x18\x6b\xf2\xe8\xa4\x23\x97\x52\x2c\xc7\xa6\x09\x63\xb5\x24\xdf\x66\x73\x5e\x84\xbd\x1a\x75\x99\xfd\x23\x49\x8f\xf5\xea\xe3\xb3\xd7\xf0\xa6\xfa\x77\x8f\xab\x51\xaf\x9f\x8c\x7e\x96\xf4\x45\x2f\x27\x9d\x3c\x9d\xf4\xac\xd1\x09\xd3\xf1\x59\x07\xab\x67\xf6\xb4\xf9\x2f\x00\x00\xff\xff\x53\xe1\x5a\x5d\x27\x08\x00\x00" +var _switchboardSafe_transfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x55\x4d\x6f\xdc\x36\x10\x3d\x7b\x7f\xc5\x64\x0f\xb1\x16\x70\xe4\x4b\xd1\xc3\xc2\x49\x6a\x24\x75\xaf\x41\xe2\xb6\x67\x4a\x1c\x89\x6c\xb4\x1c\x61\x38\xb2\xbc\x30\xfc\xdf\x0b\x92\x92\x96\xf2\x07\x6a\xd4\x07\xef\x92\x9c\x8f\xf7\x66\xde\xcc\xda\x43\x4f\x2c\x70\x33\xb8\xd6\x56\x1d\xde\xd2\x4f\x74\xd0\x30\x1d\x60\xbb\xba\xdb\x6e\x5e\xb2\xfc\x31\x5a\xa9\x4d\x45\x8a\xf5\x4b\x4e\xd9\xf3\xe2\xff\xfb\xbd\x3a\xf4\xeb\x44\xf9\xd5\x76\xb3\xb9\xbc\x84\x5b\x63\x3d\x08\x2b\xe7\x55\x2d\x96\x1c\x58\x0f\x0a\x04\x0f\x7d\xa7\x04\xa1\x21\x0e\xc7\xec\x5d\x8c\x12\xa8\x69\xe8\x34\x54\x08\x83\x47\x0d\xd5\x11\x94\x3b\x92\x43\x08\x11\x85\xc0\xa3\xd3\x20\x21\x89\x0f\x47\xe5\x48\x0c\x32\xa8\xba\xa6\xc1\x09\x88\x61\x1a\x5a\x03\x0a\x7c\xc6\x6a\xf0\xd6\xb5\x20\x06\xc1\xab\x06\xbf\x62\x4f\xde\x4a\x08\x78\x40\x31\xa4\xcb\x04\x35\x1d\x60\xb4\x5d\x07\x8e\x04\x7a\xe5\x6c\x0d\xb6\x49\x8e\x59\x38\x4d\xe8\xa3\x85\x51\x77\x18\x5e\x43\xa8\x5a\xf5\xaa\xb2\x9d\x95\x63\x84\x29\xc4\xf1\x09\x34\x7a\xcb\xa8\xe1\xe6\xf6\x02\x18\x65\x60\x37\x63\xd1\x09\x07\x6a\xb8\x53\x43\x27\x60\x9d\x17\x54\xba\x4c\xb5\x43\x18\xad\x18\xcd\x6a\x04\x75\x88\xdc\x54\x60\x6e\x70\xe1\x1a\xeb\xde\xa2\x5c\x4f\xe7\x71\xae\x5c\x30\xea\x15\xab\x03\x0a\xb2\x9f\x2b\x17\x6e\xb3\x6a\x97\x9b\xec\x50\x08\xed\xe1\x5a\x6b\x46\xef\x2f\xa6\x7c\x7b\xf8\xf3\xc6\xde\xff\xfa\xcb\x0e\x1e\x36\x00\x00\xf1\xdf\x04\x8d\xb1\x41\x46\x57\xe3\x1c\x38\x31\x88\x88\x52\xf6\x23\xf2\xb9\x9f\xa1\x46\xd7\x0e\x25\x99\x7d\xc7\x66\x0f\x6a\x10\x53\xac\x74\x56\xfe\x3d\xf1\x55\x55\x87\x3b\x78\x9f\x0b\xaa\xfc\x2b\x38\xe6\x08\xe2\x05\x30\x7a\x1a\x38\xc0\x08\xd2\x31\xd4\x69\x9f\x78\x4e\x02\x09\xb7\x8a\x11\x2a\x8c\x45\x0f\x84\x1b\x64\x46\xbd\x20\xf2\xe8\x24\xc6\xda\xc3\x6f\x6b\x38\x29\x65\x34\xec\x19\x7b\xc5\x58\x78\xdb\x3a\xe4\x3d\x5c\x0f\x62\xa6\xaa\x87\xea\x44\x9b\x09\xdb\x1f\x28\xa0\x9e\xd7\x27\x79\x9e\xfb\x24\x8c\xa9\xe3\x8b\x9f\xc7\xae\x29\xe7\xda\xc0\xc7\xc9\xba\xac\x88\x99\xc6\xab\xff\x53\xaa\x4f\x45\xe8\xc5\x1e\x9e\xbf\xfc\x10\x62\xd5\xe2\x37\x25\x66\xb7\x39\x3b\x3b\xfb\xfc\x39\x09\xbd\xd8\x7e\x89\xfa\x09\xba\x4e\x89\x9f\xb3\xa0\x31\x91\x88\x81\xde\x6d\x77\x2b\xe6\x33\xa6\xb9\xf8\x8b\x18\xde\xc0\x7d\xe9\x02\x5c\x7d\x58\x15\xa3\x9c\x87\xa0\x98\x45\x99\x3e\x77\x27\x49\x3e\x26\x14\x78\x8f\xf5\x20\xf8\x42\x3b\x24\x0a\xb6\xb6\xbd\x45\x27\xe7\x1e\xfa\xa1\xea\x6c\xbd\x8c\x11\x55\xff\x60\x7d\xc2\x13\x44\xb1\x58\xc3\xc7\x6c\xc0\x0a\xa1\xdd\x5b\x7a\x9d\xe7\xca\x77\xeb\x77\xac\xd1\xde\x21\xaf\x52\x65\x7b\x25\xf5\x7e\xf1\x2e\x5b\x94\x2f\xcb\x52\x29\x5e\xdb\xc9\xe5\xb7\x48\x27\xf5\x13\xb2\xbf\x59\x3e\xef\x5f\xf5\xcc\xbe\x3f\xbc\xc5\x28\x65\x7a\xfc\x54\xfc\xb7\x70\x12\xd3\x75\x6d\x32\xaa\xef\xb6\xbb\xa5\x7f\xab\x2f\x97\x97\x30\xad\xe7\x58\xca\x66\x70\xda\x43\xfc\x69\x58\xad\xe0\x8b\x79\x2d\x4f\x3b\xf4\xb4\x92\x6b\x0a\x7a\x17\xcc\x23\x06\xc3\x7c\xb9\xa7\x35\x9c\x25\x98\x36\x2f\x50\x93\x28\xfd\xb4\xae\xbd\x00\x4f\x30\xe2\xb4\xe3\x29\x8f\xc7\x58\x53\x60\x27\x86\xfc\x14\x62\x79\xb6\x4d\x6c\xab\x23\xf9\x3a\xaf\xf7\x45\xd8\xab\x56\x97\xd9\x4f\xd1\x34\xac\x57\x1f\x9e\x4c\xc3\xab\xea\xdf\x3d\xac\x5a\xbd\x1e\x19\xfd\x24\xe8\x33\x2c\x27\x9d\x3c\x9e\xf4\xac\xd1\x0b\xd3\xf1\x09\x82\xd5\x98\x3d\x6e\xfe\x0d\x00\x00\xff\xff\xc6\x5e\xa3\xf4\x69\x08\x00\x00" func switchboardSafe_transfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -702,11 +702,11 @@ func switchboardSafe_transfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "switchboard/safe_transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x86, 0x70, 0xee, 0x6e, 0x97, 0x1c, 0x9c, 0x3a, 0xb5, 0xce, 0x49, 0x1c, 0x37, 0x46, 0x5c, 0xb7, 0xce, 0x1, 0x38, 0x34, 0x5a, 0x92, 0xdc, 0x3b, 0xa1, 0xf9, 0xc3, 0x25, 0xb6, 0x5e, 0x29}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0x29, 0xd0, 0x42, 0x9b, 0x75, 0xbc, 0x64, 0x0, 0x59, 0x4, 0xa4, 0x2, 0x60, 0xe3, 0xb8, 0xe7, 0x2a, 0x4c, 0xf, 0x42, 0xa0, 0xfa, 0x1e, 0xf, 0x22, 0x14, 0xd5, 0xee, 0xc7, 0x38, 0x3e}} return a, nil } -var _switchboardSafe_transfer_tokens_v2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6f\xe3\x38\x0c\x3d\x37\xbf\xe2\x35\x87\xad\x03\xec\xba\x97\xc5\x1e\x82\x7e\x17\xdb\xbd\x16\x6d\xb7\x73\x96\x6d\x3a\xd6\x54\x91\x0c\x89\xae\x63\x14\xf9\xef\x03\x59\x8e\x23\xa7\x29\xa6\xb9\xc4\x92\xc8\x47\x3e\x3e\x92\x72\x5d\x1b\xcb\x78\x68\xf4\x4a\x66\x8a\x5e\xcc\x1b\x69\x94\xd6\xac\x31\x9f\xdc\xcd\x67\xc7\x2c\x9f\x5b\xc9\x79\x95\x19\x61\x8b\x63\x4e\xd1\xf3\xe8\xff\xef\x46\xac\xeb\x69\xa0\xf8\x6a\x3e\x9b\x9d\x9f\xe3\xa5\x92\x0e\x6c\x85\x76\x22\x67\x69\x34\xa4\x83\x00\xd3\xba\x56\x82\x09\xa5\xb1\xfe\x18\xbd\x73\x25\x18\xb9\x69\x54\x81\x8c\xd0\x38\x2a\x90\x75\x10\xba\x33\x9a\xe0\x11\xd9\xc0\x91\x2e\xc0\x3e\x88\xf3\x47\xa1\x0d\x57\x64\x21\xf2\xdc\x34\x9a\xc1\x95\x35\xcd\xaa\x82\x80\x8b\x58\x35\x4e\xea\x15\xb8\x22\x14\x54\x1b\x27\xd9\x83\xad\x89\x2b\x53\x20\x6b\x18\x19\x95\xc6\x8e\x8f\xde\xb6\x25\xb4\x52\x29\xd0\xa6\x56\x32\x97\xac\x3a\xe4\x15\xe5\x6f\x68\x2b\xea\x03\x5a\xca\x49\xbe\x7b\xd3\x5c\xd4\x22\x93\x4a\x72\x07\xe9\x3c\x70\x66\xac\x35\xad\xc8\x14\xc1\x58\x68\xc3\x10\xba\x80\x2c\xd1\x91\xf3\x49\x68\x48\x0e\xe8\x43\xc0\x3e\xb3\x77\xd1\x28\xf6\x94\xfc\x21\xa0\x93\x8d\xc0\xd3\x59\x54\xaa\x84\xcd\x12\xb7\x45\x61\xc9\xb9\x3f\x21\xd6\x9e\xfb\x12\xff\x3f\xc8\xcd\x3f\x7f\x2f\xf0\x31\x9b\x01\x40\x2f\x81\xc7\x2a\xc9\x92\xce\x69\x07\x1e\x22\xf5\xaa\xf9\x63\x2d\x3a\xb2\x67\x6e\x57\xc2\xde\x55\x11\x07\xb3\x27\x2a\x97\xf8\x23\xd6\x36\x7d\xf5\xf7\x71\x80\xfe\x02\x96\x9c\x69\xac\x8f\xe2\x55\xac\x8c\x2a\x7a\xb2\xa3\x56\xfe\x56\x58\x42\x46\xbd\x16\x9e\x4b\x49\xd6\x52\x31\x06\x74\xa4\xb9\xc7\x5a\xe2\x66\xd2\x81\x43\xc8\xde\xb0\xb6\x54\x0b\x4b\x89\x93\x2b\x4d\x76\x89\xdb\x86\xab\xdb\x90\xf9\x48\x7c\xc8\xed\x3f\x62\x88\xcf\xf4\x83\xe7\x99\x83\x63\x63\xa9\x08\x3c\x47\x3f\x47\xaa\x4c\x77\xd4\x71\x39\x58\xa7\x41\xd3\x8b\x23\x95\xb8\x4a\x7c\x25\x97\xf8\xfc\xf2\xcc\xc6\x8a\x15\x3d\x0a\xae\x16\xb3\x93\x93\x93\xeb\x6b\xd4\x42\xcb\x3c\x99\xdf\xf7\x3d\xee\x3b\x23\xe0\x7e\x4e\xd2\xb4\x21\xc7\x1e\xe8\x74\xbe\x98\x10\xfb\x21\xb9\x2a\xac\x68\x77\xb5\x1d\xa5\xfc\x06\xb5\xb1\xc8\xb8\xf8\x6b\xc2\x35\x6d\x07\xd4\x64\xd7\x4e\xe1\x7f\x08\xbd\x0d\x7f\xb4\xa1\xbc\x61\x3a\x52\xe9\xa1\x6d\x65\x2d\x49\xf3\x99\x43\xdd\x64\x4a\xe6\xe3\x60\x9a\xec\x27\xe5\xfb\x5c\xbc\xde\xa3\x35\x2e\xb1\x22\x1e\x54\x4c\xd8\x2c\xbe\x23\x63\x1c\x2b\xde\x60\x4f\xc3\xe8\x4c\x42\x45\xcb\x20\xc8\x3a\x7a\xa7\x2b\xe2\xfb\x71\xc8\x92\xaf\x36\x5f\xfa\xd8\xd3\x09\x5a\x22\xfa\x8d\x9d\xf1\xa5\x67\xf4\xfd\xf1\x1d\xa3\x10\x69\x7b\x95\xfc\xbe\x69\x86\x25\x31\xa9\x4d\x44\xf5\x74\xbe\xf0\x29\x4e\xaa\xf9\x2a\x94\x2c\xfc\xfa\xdd\xaf\x99\x83\x25\x96\x75\xc3\xbe\x74\xa2\xa4\xbb\x3e\xd4\x5d\xf7\xd2\xd5\x34\xc2\xc8\x72\xa7\x5f\xf0\x1e\x26\x65\x52\xe3\xf4\xd0\x3b\xe1\xae\xa6\x25\xfc\xe7\xc5\xcd\xb1\x31\x5a\x2c\x3e\x26\x95\x3d\xc0\x1b\x76\xe5\x30\x6d\x43\xf3\x8e\xdd\xbc\x17\x65\x0b\x52\xce\x37\x68\x8c\x55\x90\x63\x6b\xba\x83\x11\xd8\xfb\xec\x5a\x7c\xfb\x2b\x00\x00\xff\xff\x27\xe8\xc0\x2f\x4a\x07\x00\x00" +var _switchboardSafe_transfer_tokens_v2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x54\x4d\x6f\xe3\x38\x0c\x3d\x37\xbf\xe2\x35\x87\xd6\x06\x76\xdd\xcb\x62\x0f\x41\xbf\x8b\xe9\x5c\x8b\xb6\xd3\x39\xcb\x36\x1d\x6b\xaa\x48\x86\x44\x37\x31\x8a\xfc\xf7\x81\x2c\xdb\xb1\xd3\x14\x53\x4c\x2e\xb1\x24\xf2\x91\x7c\x8f\xa4\x5c\x55\xc6\x32\xee\x6b\xbd\x94\xa9\xa2\x67\xf3\x4a\x1a\x85\x35\x2b\xcc\x27\x77\xf3\xd9\x21\xcb\xa7\xb5\xe4\xac\x4c\x8d\xb0\xf9\x21\xa7\xd1\xf3\xe0\xff\x6d\x23\x56\xd5\x34\xd0\xf8\x6a\x3e\x9b\x9d\x9d\xe1\xb9\x94\x0e\x6c\x85\x76\x22\x63\x69\x34\xa4\x83\x00\xd3\xaa\x52\x82\x09\x85\xb1\xfe\x38\x7a\xe7\x52\x30\x32\x53\xab\x1c\x29\xa1\x76\x94\x23\x6d\x20\x74\x63\x34\xc1\x23\xb2\x81\x23\x9d\x83\x7d\x10\xe7\x8f\x42\x1b\x2e\xc9\x42\x64\x99\xa9\x35\x83\x4b\x6b\xea\x65\x09\x01\x37\xaa\xaa\x76\x52\x2f\xc1\x25\x21\xa7\xca\x38\xc9\x1e\x6c\x45\x5c\x9a\x1c\x69\xcd\x48\xa9\x30\x76\x78\xf4\xb6\x6b\xc2\x5a\x2a\x05\xda\x54\x4a\x66\x92\x55\x83\xac\xa4\xec\x15\xeb\x92\xda\x80\x96\x32\x92\x6f\xde\x34\x13\x95\x48\xa5\x92\xdc\x40\x3a\x0f\x9c\x1a\x6b\xcd\x5a\xa4\x8a\x60\x2c\xb4\x61\x08\x9d\x43\x16\x68\xc8\xf9\x24\x34\x24\x07\xf4\x2e\x60\x9b\xd9\x9b\xa8\x15\xfb\x92\xfc\x21\xa0\x93\x1d\x81\x27\xb3\x11\x55\x11\x9b\x05\x6e\xf2\xdc\x92\x73\xff\x40\xac\x7c\xed\x0b\xfc\xb8\x97\x9b\xff\xff\x8b\xf1\x3e\x9b\x01\x40\x2b\x81\xc7\x2a\xc8\x92\xce\xa8\x07\x0f\x91\x5a\xd5\xfc\xb1\x12\x0d\xd9\x53\xd7\x53\xd8\xba\x2a\xe2\x60\xf6\x48\xc5\x02\xa2\xe6\x32\x9a\xf4\x44\xf2\x53\x72\x99\x5b\xd1\x56\x19\xe3\x64\x2c\x7e\xf2\xe2\x1d\xc7\x19\xb4\x17\xb0\xe4\x4c\x6d\x7d\x1a\x5e\xe6\xd2\xa8\xbc\x65\x63\x10\xd3\xdf\x0a\x4b\x48\xa9\x15\xcb\x17\x5b\x90\xb5\x94\x0f\x19\x39\xd2\xdc\x62\x2d\x70\x3d\x4d\x27\x84\x6c\x0d\x2b\x4b\x95\xb0\x14\x39\xb9\xd4\x64\x17\xb8\xa9\xb9\xbc\x09\xa5\x0d\xcc\x74\xb9\x7d\x27\x86\xf8\xc8\x4f\xf0\x3c\x75\x70\x6c\x2c\xe5\x81\x88\xc1\xcf\x91\x2a\x92\x9e\x1b\x5c\x74\xd6\x49\x10\xfd\xfc\x6f\xa8\xba\x8c\xbc\x16\x0b\x7c\x7c\x79\x62\x63\xc5\x92\x1e\x04\x97\xf1\xec\xe8\xe8\xe8\xea\x0a\x95\xd0\x32\x8b\xe6\x77\xed\x94\xf8\xde\x0a\x81\x3f\x56\x61\xd6\xa1\x88\x16\xe8\x78\x1e\x4f\x2a\xef\x73\xea\xc9\x1f\x9a\xe1\x0b\xb5\x0f\x2a\xe0\xfc\xdf\x09\x19\xc9\xba\x43\x8d\xfa\x86\x0c\xff\x5d\xe8\x6d\xf8\xa3\x0d\x65\x35\xd3\x01\x29\xba\xc6\x97\x95\x24\xcd\xa7\x0e\x55\x9d\x2a\x99\x0d\xa3\x6d\xd2\x5f\x94\xed\x72\xf1\x0d\x31\x58\xe3\x02\x4b\xe2\x4e\xe6\x88\x4d\xfc\x15\x9d\xc7\xb1\xc6\x3b\xf0\xb1\x1b\xbe\x49\xa8\xd1\x3a\x09\xba\x0f\xde\xc9\x92\xf8\x6e\x18\xd3\xe8\xb3\xdd\x99\x3c\xb4\xe5\x04\x2d\x31\xfa\xf5\xad\x73\xf2\xa9\xe7\xe8\xfb\xfd\x2b\x46\x21\xd2\xf6\x32\xfa\x73\xd3\x74\x6b\x66\xc2\xcd\xa8\xd4\xe3\x79\xec\x53\x9c\xb0\xf9\x22\x94\xcc\xfd\x02\xdf\x2d\xaa\xbd\x35\x98\x36\xdd\xc6\x75\xa2\xa0\xdb\x36\xd4\x6d\xf3\xdc\x54\x34\xc0\xc8\xa2\xd7\x2f\x78\x77\xa3\x34\xe1\x38\xd9\xf7\x8e\xb8\xa9\x68\x01\xff\x79\x7e\x7d\x68\x8c\xe2\xf8\x7d\xc2\xec\x1e\x5e\xb7\x6d\xbb\x69\xeb\x9a\x77\xe8\xe6\x9d\x28\x5b\x90\x72\xbe\x41\xc7\x58\x39\x39\xb6\xa6\xd9\x1b\x81\x9d\x4f\xdf\xe2\xdb\xdf\x01\x00\x00\xff\xff\xef\x92\x6f\xa2\x8c\x07\x00\x00" func switchboardSafe_transfer_tokens_v2CdcBytes() ([]byte, error) { return bindataRead( @@ -722,7 +722,7 @@ func switchboardSafe_transfer_tokens_v2Cdc() (*asset, error) { } info := bindataFileInfo{name: "switchboard/safe_transfer_tokens_v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd1, 0xa8, 0xe5, 0xd9, 0x92, 0x93, 0xd8, 0xb9, 0x8e, 0xfe, 0x39, 0x53, 0xee, 0x71, 0xfe, 0xeb, 0xb2, 0x79, 0x2c, 0xa0, 0xaf, 0xad, 0x55, 0x33, 0xff, 0x89, 0x59, 0x44, 0x9f, 0xcb, 0x9, 0x23}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xbf, 0x44, 0x4c, 0xb2, 0x5b, 0x45, 0x85, 0x8e, 0x98, 0x69, 0xa5, 0xd1, 0xb1, 0x81, 0x9d, 0x55, 0xac, 0x5f, 0x97, 0x18, 0xcf, 0xcf, 0x7b, 0x5f, 0x99, 0x27, 0xf8, 0x9b, 0x75, 0x53, 0x61, 0x5e}} return a, nil } @@ -786,7 +786,7 @@ func switchboardSetup_royalty_account_by_pathsCdc() (*asset, error) { return a, nil } -var _switchboardTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4f\x4f\xdb\x4e\x10\x3d\xe3\x4f\x31\xbf\x1c\x7e\x38\x52\x08\x97\xaa\x87\x88\x3f\x45\xb4\xf4\x8a\x28\x6d\xcf\x63\x7b\x62\x6f\xeb\xec\xac\x66\xc7\x84\x08\xf1\xdd\xab\xdd\xb5\x8d\x0d\x95\x68\x0e\x71\x3c\x3b\x7f\xde\xbc\xf7\x36\x66\xe7\x58\x14\x6e\x3a\x5b\x9b\xa2\xa5\x7b\xfe\x4d\x16\xb6\xc2\x3b\x58\xcc\x62\x8b\xac\xcf\xfc\xf2\x88\x3b\x37\x4f\x9c\x86\x16\x59\x76\x7a\x0a\xf7\x8d\xf1\xa0\x82\xd6\x63\xa9\x86\x2d\x18\x0f\x08\x4a\x3b\xd7\xa2\x12\x6c\x59\xc2\xeb\xe4\x5c\x1b\xd4\x50\x58\x72\xd7\x56\x50\x10\x74\x9e\x2a\x28\x0e\x80\xf6\xc0\x96\x40\x19\x3c\xd9\x0a\x34\xcc\xf0\xe1\x15\x2d\x6b\x43\x02\x58\x96\xdc\xd9\x58\xac\x8d\x70\x57\x37\x80\xe0\xf7\x46\xcb\xa6\x60\x94\x6a\x05\xe8\xa1\x65\x5b\x87\xa7\x36\x74\x80\x06\x1f\x08\x3c\x29\x74\x2e\x04\x8c\x84\xda\x49\x05\xa0\xad\x52\x12\x56\x55\xc8\x00\x27\xec\x48\xa0\x44\x87\x85\x69\x8d\x1e\x02\x00\x13\x66\xa6\x65\x63\xa6\x90\xf7\xc0\xdb\x58\x20\x54\x92\x79\x78\x41\xb7\x8a\x51\xdc\x85\xdf\xa1\x36\xae\xbe\xa5\x38\x39\x4c\x0b\xa7\xb7\x5d\xd1\x9a\xf2\x16\xb5\x89\xfc\x84\x50\x4d\x96\xc4\x94\x70\x73\xff\xd2\x71\x6f\xda\x36\x10\xa4\x0d\x85\x6a\x87\x82\x3b\x52\x12\x9f\x4d\xf8\xcc\x95\x37\x70\x95\x30\xad\xfa\xb9\x1b\xf8\x7e\x63\x1e\x3f\x7e\x58\x8d\xbd\xc2\xac\xcd\x64\xee\x12\x9e\xb2\x0c\x00\xa0\x5f\xea\x01\xbb\x56\x41\xc8\x73\x27\x25\x45\x8d\xa0\xe1\xb6\x8a\x3c\x8e\x52\x84\x28\x0a\x41\x41\xc6\xd6\xe3\x66\x42\x55\x6c\xd5\x92\x06\xe5\xf4\x47\xe8\xb5\x81\x4f\x33\x53\xad\x63\x34\xcd\x74\x42\x0e\x85\x72\x6f\x6a\x4b\xb2\x81\xab\x4e\x9b\xab\xc4\xde\x88\xab\xc7\xf6\x95\x14\x10\x84\xb6\x24\x64\xcb\x68\x8e\x00\x28\x55\x1e\x7b\xf0\xca\x42\x55\x82\x3f\xd6\x05\x20\x31\x72\x47\x5b\x38\xef\x93\xd7\x05\x8b\xf0\xfe\xec\xff\xa9\x85\x13\xaa\x8b\x3c\x98\x7b\x03\x6f\x4f\xbe\x29\x0b\xd6\x14\x19\xcb\x8e\x8e\x8e\x2e\x2f\xc1\xa1\x35\x65\xbe\xb8\x8e\xee\xb5\xac\x90\xfa\xbe\xc5\xc8\xfb\x04\x31\x36\xfa\x6f\xb1\x9c\xed\xf5\xd3\x68\x53\x09\xee\x07\x6a\xe3\xed\x7a\x7f\x33\x4f\xed\x76\x3d\x72\x0c\x67\x27\xe3\x9e\xeb\x7d\xdf\x31\x1f\x2c\x90\x9e\xcb\x58\x1b\xbf\x9e\x13\x02\x7a\xa4\xb2\x53\xfa\x0b\xd1\xbd\x9d\x8d\x33\x64\xf5\xd8\x83\x8b\x76\x19\x8c\x0d\x5c\xfc\xa2\x72\xce\xf2\x98\x0d\xe7\x50\x93\xf6\x22\xe6\xca\xcb\x7f\x51\x71\x3a\xeb\xae\x37\xea\xeb\xf6\x31\x98\x74\x1c\xd3\xc7\x9c\xf0\x59\xd7\xa4\xd7\xe3\x6d\xcd\xa7\x86\x5f\xce\x13\x07\x03\x3c\xcd\x8d\x39\x4c\x7e\xbe\xc8\xdf\xd7\xb8\xbf\x99\xb3\x55\x26\xff\x27\xaf\x65\xfe\x4c\x8e\xbd\x49\xcc\x0e\x02\xd9\x41\x73\x63\xdf\xb0\x20\xaf\x59\x98\x30\xb0\xae\x52\xb3\xde\xac\x67\x27\x73\x33\xcc\x85\x7e\xce\xfe\x04\x00\x00\xff\xff\x2d\x30\xef\xcf\xee\x05\x00\x00" +var _switchboardTransfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\x4d\x6f\xdb\x38\x10\x3d\x47\xbf\x62\xd6\x87\x44\x06\x1c\xe7\xb2\xd8\x83\x91\x8f\x0d\xd2\xa6\xd7\x20\x4d\xdb\xf3\x88\x1a\x8b\x6c\x65\x92\x18\x8e\xe2\x18\x41\xfe\x7b\x41\x52\x52\xa4\xa4\x40\xea\x83\x65\x0d\xe7\xe3\xcd\x7b\x8f\x36\x3b\xef\x58\xe0\xb6\xb3\x8d\xa9\x5a\x7a\x70\xbf\xc8\xc2\x96\xdd\x0e\x16\xb3\xd8\xa2\xe8\x33\x3f\x3f\xe1\xce\xcf\x13\xa7\xa1\x45\x51\x9c\x9d\xc1\x83\x36\x01\x84\xd1\x06\x54\x62\x9c\x05\x13\x00\x41\x68\xe7\x5b\x14\x82\xad\xe3\xf8\x3a\x39\x17\x8d\x12\x0b\x95\xeb\xda\x1a\x2a\x82\x2e\x50\x0d\xd5\x01\xd0\x1e\x9c\x25\x10\x07\x81\x6c\x0d\x12\x67\x84\xf8\x8a\xd6\x89\x26\x06\x54\xca\x75\x36\x15\x8b\x66\xd7\x35\x1a\x10\xc2\xde\x88\xd2\x95\x43\xae\x57\x80\x01\x5a\x67\x9b\xf8\x14\x4d\x07\xd0\xf8\x48\x10\x48\xa0\xf3\x31\x60\x38\xd6\x4e\x2a\x00\x6d\x9d\x93\xb0\xae\x63\x06\x78\x76\x9e\x18\x14\x7a\xac\x4c\x6b\xe4\x10\x01\x98\x38\x33\x2f\x9b\x32\x99\x42\x00\xb7\x4d\x05\x4c\x8a\xcc\xe3\x2b\xba\x55\x8a\xe2\x2e\xfe\x8e\xb5\x69\xf5\x2d\xa5\xc9\x71\x5a\x3c\xbd\xeb\xaa\xd6\xa8\x3b\x14\x9d\xf8\x89\xa1\x86\x2c\xb1\x51\x70\xfb\xf0\xda\x71\x6f\xda\x36\x12\x24\x9a\x62\xb5\x47\xc6\x1d\x09\x71\x28\x26\x7c\x96\xe2\x36\x70\x9d\x31\xad\xfa\xb9\x1b\xf8\x76\x6b\x9e\xfe\xfb\x77\x35\xf6\x8a\xb3\x36\x93\xb9\x4b\x78\x2e\x0a\x00\x80\x7e\xa9\x47\xec\x5a\x01\xa6\xe0\x3a\x56\x94\x34\x02\xed\xda\x3a\xf1\x38\x4a\x11\xa3\xc8\x04\x15\x19\xdb\x8c\x9b\x31\xd5\xa9\x55\x4b\x12\x95\x93\xef\xb1\xd7\x06\xfe\x9f\x99\x6a\x9d\xa2\x79\xa6\x67\xf2\xc8\x54\x06\xd3\x58\xe2\x0d\x5c\x77\xa2\xaf\x33\x7b\x23\xae\x1e\xdb\x17\x12\x40\x60\xda\x12\x93\x55\xc9\x1c\x11\x50\xae\x3c\x09\x10\xc4\x31\xd5\x19\xfe\x58\x17\x81\xa4\xc8\x3d\x6d\xe1\xa2\x4f\x5e\x57\x8e\xd9\xed\xcf\xb1\x13\x5d\xce\xa1\xfd\x30\xa2\x6b\xc6\x3d\x56\x2d\x2d\xe1\x78\xea\xf1\x0c\xfb\xb2\x8c\xee\xdf\xc0\xfb\x93\xaf\xe2\x18\x1b\x4a\x94\x16\x47\x47\x47\x57\x57\xe0\xd1\x1a\x55\x2e\x6e\x92\xbd\xad\x13\xc8\x83\xdf\x2f\xe1\xf6\x79\x87\xd4\xe8\x9f\xc5\x72\xb6\xf8\x80\x69\xe0\x3e\x5d\xbf\x8f\x57\x0f\xd4\x6e\xd7\xa3\x08\x70\x7e\x3a\x12\xb1\xde\xf7\x1d\xcb\xc1\x23\xf9\xb9\x4c\xb5\xe9\xeb\x25\x23\xa0\x27\x52\x9d\xd0\x1f\x94\xe8\xfd\x6e\xbc\x21\x2b\x27\x01\x7c\xf2\xd3\xe0\x7c\x70\xd5\x4f\x52\x73\x19\xc6\x6c\xb8\x80\x86\xa4\x57\xb9\x14\xb7\xfc\x1b\x99\xa7\xb3\xee\x7b\x27\xbf\x6d\x9f\x82\x59\xe8\x31\x7d\xcc\x89\x9f\x75\x43\x72\x33\x5e\xe7\x72\x7a\x23\x96\xf3\xc4\xde\x21\xc7\xcf\x73\x7b\x0c\x93\x5f\x2e\xcb\x8f\x35\xee\xaf\xee\x6c\x95\xc9\x1f\xce\x5b\x99\x3f\x91\x77\xc1\x64\x66\x07\x81\xec\xa0\xb9\xb1\xef\x58\xe0\xb7\x2c\x4c\x18\x58\xd7\xb9\x59\x6f\xd6\xf3\xd3\xb9\x19\xe6\x42\xbf\x14\xbf\x03\x00\x00\xff\xff\x3f\x7d\x09\xec\x0f\x06\x00\x00" func switchboardTransfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -802,11 +802,11 @@ func switchboardTransfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "switchboard/transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x42, 0x4f, 0x7e, 0xc3, 0x84, 0x4d, 0x7a, 0xf4, 0x33, 0x40, 0xa8, 0x15, 0xe6, 0x5c, 0xa9, 0x54, 0x16, 0x76, 0x6a, 0xee, 0x7d, 0x88, 0x23, 0xc2, 0xe3, 0xa1, 0xef, 0xaa, 0xd9, 0x6d, 0xa}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x16, 0xa7, 0xa7, 0x4d, 0x8d, 0x23, 0x60, 0xab, 0x4, 0x57, 0x96, 0x4, 0x1a, 0x97, 0x6, 0xb7, 0x12, 0xaa, 0x97, 0x5e, 0xbc, 0x46, 0x86, 0x7e, 0xef, 0xc0, 0x58, 0x4e, 0xa3, 0xc5, 0xc4, 0x6a}} return a, nil } -var _transfer_many_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x84\x54\x4d\x6f\x9b\x40\x10\x3d\x87\x5f\x31\xe1\xd0\xe0\x43\xc8\xa5\xea\x01\x39\x89\xac\xb4\xe9\xa9\x52\x94\xa6\xed\xa1\xaa\x94\x05\x06\xd8\x06\xef\xae\x66\x87\xd8\x91\xe5\xff\x5e\x2d\xbb\x20\x6c\xac\xd4\x17\x4b\xf3\xf1\xe6\xcd\xbc\xc7\xca\xb5\xd1\xc4\x70\xdf\xa9\x5a\xe6\x2d\x3e\xe9\x17\x54\x50\x91\x5e\x43\x7c\x10\x8b\xa3\x50\xf9\x65\x2b\xd6\xe6\xb0\x70\x1a\x8a\xa3\xe8\xea\xea\x0a\x9e\x48\x28\x5b\x21\x59\x60\x17\x75\x7f\x20\xa0\x95\x96\x41\x57\x20\xca\x92\xd0\x5a\xb4\x60\x0d\x16\xb2\x92\x58\x82\x54\xc0\x0d\xc2\x73\xc8\xad\xd6\xba\x53\xfc\x4d\x98\x67\x30\x82\xc4\x1a\x19\x29\x8a\xd8\xc1\x8a\x82\xa5\x56\xc9\x71\x61\x06\xbb\x95\x0f\x65\xf0\xe3\x5e\x6e\x3f\x7d\xdc\x2f\x60\x17\x45\x00\x00\x8e\x51\x83\xf0\x53\x74\x2d\x03\xa1\xd5\x1d\x15\x08\xdc\x08\x86\x46\xb7\xa5\xed\x47\x0f\x4c\x5d\x54\x10\x42\x8e\x52\xd5\xc0\x61\x13\xc2\xb2\x87\x6a\x91\xe1\xd5\xe1\x3c\x62\x95\xc1\x87\xe9\xee\x69\x8f\xef\x27\x1a\x42\x23\x08\x13\x2b\x6b\x85\x94\xc1\xaa\xe3\x66\x55\x14\x8e\xeb\xc8\x2a\x30\xfb\x8a\x0c\x02\x08\x2b\x24\x54\x8e\x96\xee\xe9\xf8\xce\x0b\x0b\x96\x35\x61\xe9\x87\x8e\x7d\x16\xdb\x2a\x1d\x78\xc0\x75\xa8\x4e\x73\x4d\xa4\x37\xcb\x13\xb4\x6e\x12\x27\x56\x06\xf3\xcc\x77\xd6\x24\x6a\x7c\x10\xdc\x2c\xa2\xb3\xb3\xb3\xdb\x5b\x30\x42\xc9\x22\x89\xef\x74\xd7\x96\xa0\x34\x83\xc7\x9d\x93\xd4\x1b\xcf\xb1\x07\x3a\x8f\x17\x3d\xbf\xbd\x5f\x0f\xb7\x58\x74\x8c\xd3\x6d\x2b\x4d\x83\xf8\x4e\xf0\x63\x09\xd3\x17\x7c\xb3\xd3\xfa\x70\xa1\x5f\x92\x9b\x92\xc4\x66\x90\xa8\xb7\xdd\xff\x6f\x34\xc8\x65\x51\xb1\x97\x7e\x79\x79\x78\xb8\x74\x13\x90\x13\xd1\x73\xc8\x66\x94\x7e\x87\xc0\x9f\xf3\xc5\x8c\x96\x13\xce\xb1\x20\x2c\xa4\x91\xa8\xf8\xc2\x82\xe9\xf2\x56\x16\x20\xbc\xd4\xa0\xf3\xbf\x58\xcc\x19\x8d\x1d\x70\x0d\x35\x72\x30\xc6\x60\xe9\xd3\x93\x4e\x58\x64\x3a\xf8\x11\x0b\x94\xaf\x48\xa7\x66\xf5\x09\xef\x93\xb1\x25\xad\x91\xef\x84\x11\xb9\x6c\x25\xbf\x25\x07\xb6\x18\xb0\x1e\xfa\x65\xbc\x31\xe0\xe8\x37\x5a\x6d\x77\xf0\x4e\x8c\xbd\xfb\x9b\x64\xde\xf4\xae\xb5\x7c\xdf\xfb\x5b\xf6\x32\xc6\xf3\x03\x7d\x46\xa3\xad\xf4\x72\x0c\x9a\xaa\xc1\x2e\xe1\x69\x99\xe2\xd0\xa9\x6b\x4d\x2e\x95\x96\x1e\x30\x7c\x34\xcb\xcb\xd1\x43\x93\xd9\xfb\xe0\xf6\x7d\xf4\x2f\x00\x00\xff\xff\x59\x4e\x87\x84\x46\x05\x00\x00" +var _transfer_many_accountsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x94\x4d\x4f\xdc\x30\x10\x86\xcf\xe4\x57\x0c\x7b\x80\xec\x81\x70\xa9\x7a\x88\xf8\xd0\x8a\x96\x9e\x2a\x21\x4a\xdb\x43\x55\x09\x27\x99\x24\x2e\x59\xdb\x1a\x4f\x58\x10\xda\xff\x5e\x39\xb6\x57\xc9\x66\x45\xa5\x72\x41\x1a\xcf\xc7\x3b\xef\x3c\x59\xb9\x36\x9a\x18\x6e\x7b\xd5\xc8\xa2\xc3\x07\xfd\x84\x0a\x6a\xd2\x6b\x58\x4c\x62\x8b\x24\x64\x7e\x7e\x11\x6b\x33\x4d\x1c\x87\x16\x49\x72\x7e\x7e\x0e\x0f\x24\x94\xad\x91\x2c\xb0\x8b\xba\x7f\x20\xa0\x93\x96\x41\xd7\x20\xaa\x8a\xd0\x5a\xb4\x60\x0d\x96\xb2\x96\x58\x81\x54\xc0\x2d\xc2\x63\x78\x5b\xad\x75\xaf\xf8\xab\x30\x8f\x60\x04\x89\x35\x32\x52\x92\xb0\x6b\x2b\x4a\x96\x5a\xa5\xfb\x89\x39\xbc\xad\x7c\x28\x87\xef\xb7\xf2\xe5\xe3\x87\xed\x12\xde\x92\x04\x00\xc0\x29\x6a\x11\x7e\x88\xbe\x63\x20\xb4\xba\xa7\x12\x81\x5b\xc1\xd0\xea\xae\xb2\xc3\xe8\xa8\xd4\x45\x05\x21\x14\x28\x55\x03\x1c\x36\x21\xac\x86\x56\x1d\x32\x3c\xbb\x3e\xf7\x58\xe7\x20\x7a\x6e\xd3\x89\x51\xd9\x4f\xc9\x6d\x45\x62\x23\x8a\x0e\x97\x70\x32\x36\x27\x1b\x04\x78\x49\x86\xd0\x08\xc2\xd4\xca\x46\x21\xe5\xb0\xea\xb9\x5d\x95\xa5\x5b\x66\x27\x3b\x48\xff\x82\x0c\x02\x08\x6b\x24\x54\x4e\xb7\x1e\xf4\xfa\xca\x53\x0b\x96\x35\x61\xe5\x55\xed\xea\x2c\x76\x75\x16\x85\xc2\x65\xc8\xce\x0a\x4d\xa4\x37\x17\xff\xa3\xfb\x2a\x75\xe7\xce\x61\xfe\xf2\x8d\x35\x89\x06\xef\x04\xb7\xcb\xe4\xe8\xe8\xe8\xfa\x1a\x8c\x50\xb2\x4c\x17\x37\xba\xef\x2a\x50\x9a\xc1\x0f\x9e\x6f\xa1\x37\x7e\x89\xa1\xd1\xf1\x62\x39\x2c\xb0\xf5\xfb\xe3\x0b\x96\x3d\xe3\xd8\x8e\x5a\x53\xc4\xc7\x21\xb3\x0f\x41\xf6\x84\xaf\x76\x9c\x1f\x2c\x8c\xcb\xc5\x23\x0f\xe0\xfe\xdb\xc4\x78\x70\x8b\x8a\x3d\x3c\x17\x67\x53\x67\xb3\x4d\xe8\x9c\x8a\x41\x43\x3e\x93\xf4\x2b\x04\x7e\x1f\x2f\x67\xb2\xdc\x65\x9d\x0a\xc2\x52\x1a\x89\x8a\x4f\x2d\x98\xbe\xe8\x64\x09\xc2\xb3\x00\xba\xf8\x83\xe5\x5c\xd1\xae\x02\x2e\xa1\x41\x0e\xe4\xc4\x8f\xe2\xf0\xa4\x03\x0c\x8d\x07\xdf\x63\x89\xf2\x19\xe9\xd0\xac\xe1\xc1\x83\xb4\x2b\xc9\x1a\xe4\x1b\x61\x44\x21\x3b\xc9\xaf\xe9\x04\x8b\xd8\xeb\x6e\x58\xc6\x83\x01\x7b\x7f\x91\xc5\x93\xb7\x29\x88\xb1\x76\x7b\x95\xce\x8b\xde\x45\xcb\xd7\xbd\xbf\xe5\x70\xc6\xc5\xdc\xa0\x4f\x68\xb4\x95\xfe\x1c\xf1\xa6\x2a\xe2\x12\x7e\x9c\xc6\x7d\xe8\x90\x5b\x23\xa7\xb2\xca\x37\x0c\x1f\xcd\xc5\xd9\x8e\xa1\xd1\xec\x6d\xa0\x7d\x9b\xfc\x0d\x00\x00\xff\xff\x5e\xe9\xfc\xf4\x88\x05\x00\x00" func transfer_many_accountsCdcBytes() ([]byte, error) { return bindataRead( @@ -822,11 +822,11 @@ func transfer_many_accountsCdc() (*asset, error) { } info := bindataFileInfo{name: "transfer_many_accounts.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc9, 0x3a, 0x6, 0xa3, 0x37, 0xad, 0x9b, 0x2, 0xd, 0x14, 0x2a, 0xef, 0xa6, 0xe0, 0x60, 0x2f, 0xd6, 0xd2, 0xae, 0x2a, 0x85, 0x4e, 0x5d, 0xc2, 0xe7, 0x60, 0x62, 0x48, 0x4a, 0x73, 0x20, 0x55}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x65, 0xb0, 0xa4, 0x7c, 0x24, 0x55, 0x8, 0xc3, 0xb, 0x38, 0xd5, 0x7d, 0x1a, 0x9e, 0x8a, 0xf, 0xb7, 0x52, 0xac, 0x4, 0xea, 0x6a, 0xc2, 0x19, 0xb3, 0x6f, 0xcb, 0x4a, 0xac, 0x53, 0x8e}} return a, nil } -var _transfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4d\x6f\xd3\x40\x10\xbd\xfb\x57\x0c\x39\x50\x47\xa2\xce\x05\x71\x88\xfa\x41\x55\x28\xd7\xaa\x14\x38\xaf\xed\x97\x78\xc1\xd9\xb5\x66\xc7\x4d\xab\xaa\xff\x1d\xed\xae\xd7\xd8\x09\xe2\x23\x97\xc8\xe3\x99\x37\x6f\xde\x7b\x5e\xad\xe8\xbe\xd1\x8e\x84\x95\x71\xaa\x12\x6d\x0d\x69\x47\x8a\x04\xbb\xae\x55\x02\xda\x58\xf6\x8f\x93\xf7\xd2\x28\xc9\x56\x2b\xaa\x6c\xdf\xd6\x54\x82\x7a\x87\x9a\xca\x27\x52\xe6\xc9\x1a\x90\x58\x72\x30\x35\x89\xfd\x01\xe3\xfc\xa3\x32\x56\x1a\x30\xa9\xaa\xb2\xbd\x09\xc3\x1e\x84\x1a\xe5\xa8\x04\x0c\x39\x08\xf5\x9d\x6f\x65\x54\xd0\x0f\x18\x86\x8b\x6c\xb5\xca\x02\x47\xd0\x5e\x4b\x53\xb3\xda\x93\xda\x79\x10\x52\x7e\x45\x83\x04\x4a\x1b\xb6\x3b\xda\x42\xae\x7e\x2d\xd9\x27\x86\xbe\xaf\x53\xac\x76\x10\x70\xa0\xe4\x2b\x93\xa3\xb2\x4c\xef\x3a\xcb\x42\x37\xbd\xd9\xea\xb2\xc5\xbd\xdf\x1f\x31\x17\xb3\xda\x22\x75\x7e\x7c\x54\xbb\x6e\xde\x38\x2d\x2d\xb2\x6c\x82\x9f\x47\xd2\x6b\xfa\x72\xa3\x1f\xdf\xbd\x7d\x43\x62\xd7\x74\x55\xd7\x0c\xe7\x96\xf4\x9c\x65\x44\x44\xc3\xa1\x5f\x55\xdf\x0a\x31\x9c\xed\xb9\xc2\xa0\x94\x6d\x6b\x17\x49\x0f\xaa\xfa\xaa\x62\x50\x09\x6d\xb6\xf1\x94\x0d\x98\x51\x07\xa8\x16\xe2\x4d\x90\x80\xb5\xa6\xf7\xb3\x13\x8a\x50\x8d\x3b\x3b\x46\xa7\x18\xb9\xd3\x5b\x03\x5e\xd3\x55\x2f\xcd\xa0\xe0\xc8\x6b\xe0\xf6\x09\x42\x8a\x18\x1b\x30\x4c\x85\xa4\x62\x9c\x3c\x71\xe4\xc4\x32\x6a\x7a\x08\xe0\x69\xce\x13\x09\x95\x3b\x6c\xe8\x7c\x68\x2e\x4a\xcb\x6c\xf7\x67\xaf\xa7\x82\x45\x56\x17\xb9\x97\x72\x4d\xc7\x6f\x3e\x8b\x65\xb5\xc5\xad\x92\x66\x39\xc2\xfb\xdf\xe5\x25\x75\xca\xe8\x2a\x5f\x5c\x07\xbf\x8d\x15\x8a\x0b\x8e\xc9\xda\x7d\xe4\x1a\x10\x5f\x2d\x96\xb3\x03\xbf\xa5\x84\x0d\x1a\x07\x53\xff\x7e\xa2\x43\xbb\x29\x46\xb1\xe9\xec\x74\x3c\xb8\x48\x99\x1d\xed\x8f\xff\x91\xff\x4b\x5c\x8e\x47\x54\xbd\xe0\x37\x62\xfb\xd5\x8c\x4a\x77\x1a\x46\x4e\x1c\x75\x7d\xd9\xea\x6a\x0c\xbc\x2d\xbf\xa3\x9a\x2b\x3d\x76\xd3\xf9\xe4\x53\xc8\xc5\x2e\xff\xc5\xc9\xe9\xae\xbb\xf8\x1d\xf2\x21\x7c\x28\x46\x2f\xc7\xf6\x62\x0b\xb9\x56\x9d\x2a\x75\xab\xe5\x29\x9f\x59\x97\x70\x6e\x03\xf7\x63\xf3\xc6\x28\x3c\xcf\x23\x9a\xe6\x5e\x2e\xf2\xff\x70\x3b\xce\xfc\xf9\xb2\xe0\xd2\x81\xf3\x1f\xd0\x59\xa7\xa3\xe2\xc9\x33\x93\x62\xa0\xcd\x11\x06\x1f\xaa\x33\x51\xa6\xa8\x23\xd8\x10\xe4\xb3\xd3\x79\x3e\x92\xf7\x2f\xd9\xcf\x00\x00\x00\xff\xff\xf7\x59\xaf\xcf\x7c\x05\x00\x00" +var _transfer_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4f\x6f\xdb\x3e\x0c\xbd\xfb\x53\xf0\x97\x43\xeb\x00\xbf\x3a\x97\x61\x87\xa0\x7f\x56\x74\xeb\xae\x45\xd7\x6d\x67\x5a\x66\x62\x6d\x8e\x24\x50\x74\xd3\xa2\xe8\x77\x1f\x24\x59\x9e\x9d\x0c\xfb\xe3\x8b\x21\x8a\x7c\x7c\x7c\x8f\x5a\xad\xe0\xa1\xd5\x1e\x84\xd1\x78\x54\xa2\xad\x01\xed\x01\x41\x68\xe7\x3a\x14\x82\x8d\xe5\x70\x9c\xdc\x4b\x8b\x52\xac\x56\xa0\x6c\xdf\x35\x50\x13\xf4\x9e\x1a\xa8\x9f\x01\xcd\xb3\x35\x04\x62\xc1\x93\x69\x40\xec\x77\x32\x3e\x1c\xd1\x58\x69\x89\x01\x95\xb2\xbd\x89\xc5\x01\x04\x5a\xf4\x50\x13\x19\xf0\x24\xd0\xbb\x90\xca\xa4\x48\x3f\xd2\x50\x5c\x15\xab\x55\x11\x39\x12\xec\xb5\xb4\x0d\xe3\x1e\x70\x17\x40\x00\x43\x8b\x96\x32\x28\x6c\xd8\xee\x60\x4b\x72\xfd\xb3\xc9\x3e\x33\x0c\x79\x0e\x19\x77\x24\xc4\x91\x52\x88\x4c\x86\x2a\x0a\xbd\x73\x96\x05\x6e\x7b\xb3\xd5\x75\x47\x0f\xa1\x7f\xc2\x5c\xcc\x62\x8b\x9c\xf9\xe1\x09\x77\x6e\x9e\x38\x0d\x2d\x8a\x62\x82\x5f\x26\xd2\x6b\xf8\x7c\xab\x9f\xde\xbe\xf9\x1f\xc4\xae\xe1\xba\x69\x98\xbc\x5f\xc2\x4b\x51\x00\x00\x0c\x83\x7e\xc1\xbe\x13\x60\xf2\xb6\x67\x45\x83\x52\xb6\x6b\x7c\x22\x3d\xa8\x1a\xa2\xc8\x04\x35\x69\xb3\x4d\xa3\x6c\x88\x99\x9a\x08\xd5\x91\x04\x13\x24\x62\xad\xe1\xdd\x6c\x84\x2a\x46\x53\x4f\xc7\xe4\x90\xa9\xf4\x7a\x6b\x88\xd7\x70\xdd\x4b\x3b\x28\x38\xf2\x1a\xb8\x7d\x24\x01\x04\xa6\x0d\x31\x19\x45\x59\xc5\x54\x79\xea\xc1\x8b\x65\x6a\xe0\x31\x82\xe7\xba\x40\x24\x46\xee\x69\x03\x17\x43\x72\x55\x5b\x66\xbb\x3f\xc7\x5e\xda\x72\x4e\xed\xeb\xe0\x32\xd6\x1d\x2d\xe1\x64\xaa\x68\xa2\x7d\x59\x06\xad\xd7\x70\x7c\xf3\x49\x2c\xe3\x96\xee\x50\xda\xe5\xd8\x3f\x7c\x57\x57\xe0\xd0\x68\x55\x2e\x6e\xe2\x42\x18\x2b\x90\x18\x1c\x4f\x63\xf7\x69\x98\x88\xf8\xdf\x62\x39\x53\x20\x93\xcb\x26\x44\xd7\xff\xac\x81\xa7\x6e\x53\x8d\x6e\xc0\xf9\xd9\xa8\x48\x95\x97\x7a\xdc\x8f\xf4\x4f\xfc\x5f\x53\x73\x7a\x22\xd5\x0b\xfd\xc2\x8d\xd0\x9a\x49\x69\xa7\xc9\xc8\xa9\x07\xd7\xd7\x9d\x56\xe3\x8b\xb0\xf5\x37\x52\x73\x2b\xc6\x6c\xb8\x98\xbc\x95\x52\xec\xf2\x6f\xac\x9e\xf6\xba\x4f\x0f\x95\x0f\xe1\x63\x30\x99\x3d\xa6\x57\x5b\x92\x1b\x74\x58\xeb\x4e\xcb\x73\x39\xb3\x2e\xe3\xdc\x45\xee\xc7\xe6\xe5\x5d\x39\x79\x99\x2f\x4a\xae\x7b\xbd\x2c\xff\xc1\xed\x54\xf3\xfb\xc9\xa2\x4b\x07\xce\xbf\x27\x67\xbd\x4e\x8a\x67\xcf\x4c\x5e\x03\x6d\x8e\x30\xf8\x50\x9d\x89\x32\x55\x93\xc0\x86\x45\x3e\x3f\x9b\xef\x47\xf6\xfe\xb5\xf8\x11\x00\x00\xff\xff\x85\x73\xf9\x99\x9d\x05\x00\x00" func transfer_tokensCdcBytes() ([]byte, error) { return bindataRead( @@ -842,7 +842,7 @@ func transfer_tokensCdc() (*asset, error) { } info := bindataFileInfo{name: "transfer_tokens.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x9d, 0x16, 0xc6, 0x17, 0xab, 0x4d, 0xba, 0x5d, 0xd7, 0x3e, 0xe9, 0x51, 0xf7, 0xc1, 0x21, 0x29, 0x68, 0xd8, 0x18, 0xbe, 0xb4, 0x85, 0xd9, 0xcb, 0x64, 0x28, 0x51, 0xe0, 0xca, 0xba, 0xde, 0x5a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x33, 0x7d, 0x86, 0xb0, 0xdd, 0x7b, 0x77, 0x45, 0xfe, 0xe1, 0xd5, 0x1f, 0x9e, 0xc1, 0x2a, 0x7d, 0xe9, 0xc5, 0xbf, 0x53, 0xa, 0xd2, 0x93, 0x49, 0xc2, 0xeb, 0xb3, 0xdf, 0xc7, 0xd6, 0x80}} return a, nil } diff --git a/lib/go/templates/script_templates.go b/lib/go/templates/script_templates.go index 319b4910..faa8e6ac 100644 --- a/lib/go/templates/script_templates.go +++ b/lib/go/templates/script_templates.go @@ -18,7 +18,7 @@ const ( func GenerateInspectVaultScript(fungibleAddr, tokenAddr flow.Address, tokenName string) []byte { code := assets.MustAssetString(scriptsPath + readBalanceFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } // GenerateInspectSupplyScript creates a script that reads @@ -28,14 +28,14 @@ func GenerateInspectSupplyScript(fungibleAddr, tokenAddr flow.Address, tokenName code := assets.MustAssetString(scriptsPath + readSupplyFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } // GenerateInspectSupplyViewScript creates a script that reads // the total supply of tokens in existence through a metadata view -func GenerateInspectSupplyViewScript(fungibleAddr, tokenAddr, metadataViewsAddr, ftMetadataViewsAddr flow.Address, tokenName string) []byte { +func GenerateInspectSupplyViewScript(fungibleAddr, tokenAddr, metadataViewsAddr, ftMetadataViewsAddr, viewResolverAddr flow.Address, tokenName string) []byte { code := assets.MustAssetString(scriptsPath + readSupplyViewFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, metadataViewsAddr, ftMetadataViewsAddr, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, metadataViewsAddr, ftMetadataViewsAddr, viewResolverAddr, tokenName) } diff --git a/lib/go/templates/templates.go b/lib/go/templates/templates.go index c37cc77d..c6d0737b 100644 --- a/lib/go/templates/templates.go +++ b/lib/go/templates/templates.go @@ -21,14 +21,16 @@ var ( placeholderForwarding = regexp.MustCompile(`"TokenForwarding"`) placeholderMetadataViews = regexp.MustCompile(`"MetadataViews"`) placeholderFTMetadataViews = regexp.MustCompile(`"FungibleTokenMetadataViews"`) + placeholderViewResolver = regexp.MustCompile(`"ViewResolver"`) ) -func replaceAddresses(code string, ftAddress, tokenAddress, forwardingAddress, metadataViewsAddress, ftMetadataViewsAddr flow.Address, tokenName string) []byte { +func replaceAddresses(code string, ftAddress, tokenAddress, forwardingAddress, metadataViewsAddress, ftMetadataViewsAddr, viewResolverAddr flow.Address, tokenName string) []byte { code = placeholderFungibleToken.ReplaceAllString(code, "0x"+ftAddress.String()) code = placeholderExampleToken.ReplaceAllString(code, "0x"+tokenAddress.String()) code = placeholderForwarding.ReplaceAllString(code, "0x"+forwardingAddress.String()) code = placeholderMetadataViews.ReplaceAllString(code, "0x"+metadataViewsAddress.String()) code = placeholderFTMetadataViews.ReplaceAllString(code, "0x"+ftMetadataViewsAddr.String()) + code = placeholderViewResolver.ReplaceAllString(code, "0x"+viewResolverAddr.String()) storageName := MakeFirstLowerCase(tokenName) code = defaultTokenName.ReplaceAllString(code, tokenName) diff --git a/lib/go/templates/transaction_templates.go b/lib/go/templates/transaction_templates.go index cd77479f..f84de772 100644 --- a/lib/go/templates/transaction_templates.go +++ b/lib/go/templates/transaction_templates.go @@ -26,11 +26,11 @@ const ( // a new Vault instance and stores it in storage. // balance is an argument to the Vault constructor. // The Vault must have been deployed already. -func GenerateCreateTokenScript(fungibleAddr, tokenAddr, metadataViewsAddr flow.Address, tokenName string) []byte { +func GenerateCreateTokenScript(fungibleAddr, tokenAddr, metadataViewsAddr, viewResolverAddr flow.Address, tokenName string) []byte { code := assets.MustAssetString(setupAccountFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, metadataViewsAddr, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, metadataViewsAddr, flow.EmptyAddress, viewResolverAddr, tokenName) } // GenerateDestroyVaultScript creates a script that withdraws @@ -65,7 +65,7 @@ func GenerateTransferVaultScript(fungibleAddr, tokenAddr flow.Address, tokenName code := assets.MustAssetString(transferTokensFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } // GenerateTransferGenericVaultScript creates a script that withdraws an tokens from an account @@ -74,7 +74,7 @@ func GenerateTransferGenericVaultScript(fungibleAddr flow.Address) []byte { code := assets.MustAssetString(genericTransferFilename) - return replaceAddresses(code, fungibleAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, "") + return replaceAddresses(code, fungibleAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, "") } // GenerateTransferManyAccountsScript creates a script that transfers the same number of tokens @@ -83,7 +83,7 @@ func GenerateTransferManyAccountsScript(fungibleAddr, tokenAddr flow.Address, to code := assets.MustAssetString(transferManyAccountsFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } // GenerateMintTokensScript creates a script that uses the admin resource @@ -92,7 +92,7 @@ func GenerateMintTokensScript(fungibleAddr, tokenAddr flow.Address, tokenName st code := assets.MustAssetString(mintTokensFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } // GenerateBurnTokensScript creates a script that uses the admin resource @@ -100,7 +100,7 @@ func GenerateMintTokensScript(fungibleAddr, tokenAddr flow.Address, tokenName st func GenerateBurnTokensScript(fungibleAddr, tokenAddr flow.Address, tokenName string) []byte { code := assets.MustAssetString(burnTokensFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } // GenerateTransferInvalidVaultScript creates a script that withdraws an tokens from an account @@ -140,5 +140,5 @@ func GenerateTransferInvalidVaultScript(fungibleAddr, tokenAddr, otherTokenAddr, func GenerateCreateForwarderScript(fungibleAddr, forwardingAddr, tokenAddr flow.Address, tokenName string) []byte { code := assets.MustAssetString(createForwarderFilename) - return replaceAddresses(code, fungibleAddr, tokenAddr, forwardingAddr, flow.EmptyAddress, flow.EmptyAddress, tokenName) + return replaceAddresses(code, fungibleAddr, tokenAddr, forwardingAddr, flow.EmptyAddress, flow.EmptyAddress, flow.EmptyAddress, tokenName) } diff --git a/lib/go/test/forwarding_test.go b/lib/go/test/forwarding_test.go index 2b85a279..f49a9555 100644 --- a/lib/go/test/forwarding_test.go +++ b/lib/go/test/forwarding_test.go @@ -23,7 +23,7 @@ func TestPrivateForwarder(t *testing.T) { serviceSigner, _ := b.ServiceKey().Signer() exampleTokenAccountKey, exampleTokenSigner := accountKeys.NewWithSigner() - fungibleAddr, exampleTokenAddr, _, _, _ := + fungibleAddr, _, exampleTokenAddr, _, _, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) forwardingCode := contracts.PrivateReceiverForwarder(fungibleAddr.String()) diff --git a/lib/go/test/token_test.go b/lib/go/test/token_test.go index f672e8ca..fb0c41a7 100644 --- a/lib/go/test/token_test.go +++ b/lib/go/test/token_test.go @@ -20,7 +20,7 @@ func TestTokenDeployment(t *testing.T) { b, adapter, accountKeys := newTestSetup(t) exampleTokenAccountKey, _ := accountKeys.NewWithSigner() - fungibleAddr, exampleTokenAddr, _, _, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) + fungibleAddr, _, exampleTokenAddr, _, _, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) t.Run("Should have initialized Supply field correctly", func(t *testing.T) { script := templates.GenerateInspectSupplyScript(fungibleAddr, exampleTokenAddr, "ExampleToken") @@ -35,13 +35,13 @@ func TestCreateToken(t *testing.T) { serviceSigner, _ := b.ServiceKey().Signer() exampleTokenAccountKey, _ := accountKeys.NewWithSigner() - fungibleAddr, exampleTokenAddr, _, metadataViewsAddr, fungibleMetadataViewsAddr := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) + fungibleAddr, resolverAddr, exampleTokenAddr, _, metadataViewsAddr, fungibleMetadataViewsAddr := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) joshAccountKey, joshSigner := accountKeys.NewWithSigner() joshAddress, _ := adapter.CreateAccount(context.Background(), []*flow.AccountKey{joshAccountKey}, nil) t.Run("Should be able to create empty Vault that doesn't affect supply", func(t *testing.T) { - script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, "ExampleToken") + script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, resolverAddr, "ExampleToken") tx := createTxWithTemplateAndAuthorizer(b, script, joshAddress) signAndSubmit( @@ -71,7 +71,7 @@ func TestCreateToken(t *testing.T) { supply := executeScriptAndCheck(t, b, script, nil) assert.Equal(t, CadenceUFix64("1000.0"), supply) - script = templates.GenerateInspectSupplyViewScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, fungibleMetadataViewsAddr, "ExampleToken") + script = templates.GenerateInspectSupplyViewScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, fungibleMetadataViewsAddr, resolverAddr, "ExampleToken") supply = executeScriptAndCheck(t, b, script, [][]byte{ jsoncdc.MustEncode(cadence.Address(joshAddress)), }) @@ -85,14 +85,14 @@ func TestExternalTransfers(t *testing.T) { serviceSigner, _ := b.ServiceKey().Signer() exampleTokenAccountKey, exampleTokenSigner := accountKeys.NewWithSigner() - fungibleAddr, exampleTokenAddr, forwardingAddr, metadataViewsAddr, _ := + fungibleAddr, resolverAddr, exampleTokenAddr, forwardingAddr, metadataViewsAddr, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) joshAccountKey, joshSigner := accountKeys.NewWithSigner() joshAddress, _ := adapter.CreateAccount(context.Background(), []*flow.AccountKey{joshAccountKey}, nil) // then deploy the tokens to an account - script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, "ExampleToken") + script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, resolverAddr, "ExampleToken") tx := createTxWithTemplateAndAuthorizer(b, script, joshAddress) signAndSubmit( @@ -395,13 +395,13 @@ func TestVaultDestroy(t *testing.T) { serviceSigner, _ := b.ServiceKey().Signer() exampleTokenAccountKey, exampleTokenSigner := accountKeys.NewWithSigner() - fungibleAddr, exampleTokenAddr, _, metadataViewsAddr, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) + fungibleAddr, resolverAddr, exampleTokenAddr, _, metadataViewsAddr, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) joshAccountKey, joshSigner := accountKeys.NewWithSigner() joshAddress, _ := adapter.CreateAccount(context.Background(), []*flow.AccountKey{joshAccountKey}, nil) // then deploy the tokens to an account - script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, "ExampleToken") + script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, resolverAddr, "ExampleToken") tx := flow.NewTransaction(). SetScript(script). SetGasLimit(100). @@ -524,13 +524,13 @@ func TestMintingAndBurning(t *testing.T) { serviceSigner, _ := b.ServiceKey().Signer() exampleTokenAccountKey, exampleTokenSigner := accountKeys.NewWithSigner() - fungibleAddr, exampleTokenAddr, _, metadataViewsAddr, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) + fungibleAddr, resolverAddr, exampleTokenAddr, _, metadataViewsAddr, _ := DeployTokenContracts(b, adapter, t, []*flow.AccountKey{exampleTokenAccountKey}) joshAccountKey, joshSigner := accountKeys.NewWithSigner() joshAddress, _ := adapter.CreateAccount(context.Background(), []*flow.AccountKey{joshAccountKey}, nil) // then deploy the tokens to an account - script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, "ExampleToken") + script := templates.GenerateCreateTokenScript(fungibleAddr, exampleTokenAddr, metadataViewsAddr, resolverAddr, "ExampleToken") tx := flow.NewTransaction(). SetScript(script). SetGasLimit(100). diff --git a/lib/go/test/token_test_helpers.go b/lib/go/test/token_test_helpers.go index 467728e8..de60c5bd 100644 --- a/lib/go/test/token_test_helpers.go +++ b/lib/go/test/token_test_helpers.go @@ -25,6 +25,7 @@ func DeployTokenContracts( key []*flow.AccountKey, ) ( fungibleAddr flow.Address, + viewResolverAddr flow.Address, tokenAddr flow.Address, forwardingAddr flow.Address, metadataViewsAddr flow.Address, @@ -32,8 +33,20 @@ func DeployTokenContracts( ) { var err error + // Deploy the ViewResolver contract + resolverAddress, err := adapter.CreateAccount(context.Background(), + nil, + []sdktemplates.Contract{ + { + Name: "ViewResolver", + Source: string(nftcontracts.Resolver()), + }, + }, + ) + assert.NoError(t, err) + // Deploy the NonFungibleToken contract - nonFungibleTokenCode := nftcontracts.NonFungibleToken() + nonFungibleTokenCode := nftcontracts.NonFungibleTokenV2(resolverAddress) nftAddress, err := adapter.CreateAccount(context.Background(), nil, []sdktemplates.Contract{ @@ -46,7 +59,7 @@ func DeployTokenContracts( assert.NoError(t, err) // Deploy the FungibleToken contract - fungibleTokenCode := contracts.FungibleToken() + fungibleTokenCode := contracts.FungibleTokenV2(resolverAddress.String()) fungibleAddr, err = adapter.CreateAccount(context.Background(), nil, []sdktemplates.Contract{ @@ -62,7 +75,7 @@ func DeployTokenContracts( assert.NoError(t, err) // Deploy the MetadataViews contract - metadataViewsCode := nftcontracts.MetadataViews(fungibleAddr, nftAddress) + metadataViewsCode := nftcontracts.MetadataViews(fungibleAddr, nftAddress, resolverAddress) metadataViewsAddr, err = adapter.CreateAccount(context.Background(), nil, []sdktemplates.Contract{ @@ -75,7 +88,7 @@ func DeployTokenContracts( assert.NoError(t, err) // Deploy the FungibleTokenMetadataViews contract - fungibleTokenMetadataViewsCode := contracts.FungibleTokenMetadataViews(fungibleAddr.String(), metadataViewsAddr.String()) + fungibleTokenMetadataViewsCode := contracts.FungibleTokenMetadataViews(fungibleAddr.String(), metadataViewsAddr.String(), resolverAddress.String()) fungibleMetadataViewsAddr, err = adapter.CreateAccount(context.Background(), nil, []sdktemplates.Contract{ @@ -90,8 +103,20 @@ func DeployTokenContracts( _, err = b.CommitBlock() assert.NoError(t, err) + // Deploy the MultipleVaults contract interface + multipleVaultsAddress, err := adapter.CreateAccount(context.Background(), + key, + []sdktemplates.Contract{ + { + Name: "MultipleVaults", + Source: string(contracts.MultipleVaults(fungibleAddr.String())), + }, + }, + ) + assert.NoError(t, err) + // Deploy the ExampleToken contract - exampleTokenCode := contracts.ExampleToken(fungibleAddr.String(), metadataViewsAddr.String(), fungibleMetadataViewsAddr.String()) + exampleTokenCode := contracts.ExampleTokenV2(fungibleAddr.String(), metadataViewsAddr.String(), fungibleMetadataViewsAddr.String(), resolverAddress.String(), multipleVaultsAddress.String()) tokenAddr, err = adapter.CreateAccount(context.Background(), key, []sdktemplates.Contract{ @@ -138,84 +163,5 @@ func DeployTokenContracts( _, err = b.CommitBlock() assert.NoError(t, err) - return fungibleAddr, tokenAddr, forwardingAddr, metadataViewsAddr, fungibleMetadataViewsAddr -} - -// Deploys the FungibleToken-V2, ExampleToken, and TokenForwarding contracts -// to different accounts and returns their addresses -func DeployV2TokenContracts( - b *emulator.Blockchain, - t *testing.T, - key []*flow.AccountKey, -) ( - fungibleAddr flow.Address, - tokenAddr flow.Address, - //forwardingAddr flow.Address, -) { - var err error - - // Deploy the ViewResolver contract - resolverAddress := deploy(t, b, "ViewResolver", nftcontracts.Resolver()) - - // Deploy the FungibleToken contract - fungibleTokenCode := contracts.FungibleTokenV2(resolverAddress.String()) - fungibleAddr, err = b.CreateAccount( - nil, - []sdktemplates.Contract{ - { - Name: "FungibleToken", - Source: string(fungibleTokenCode), - }, - }, - ) - assert.NoError(t, err) - - _, err = b.CommitBlock() - assert.NoError(t, err) - - // Deploy the NonFungibleToken contract (required for Metadata Views) - NFTAddress := deploy(t, b, "NonFungibleToken", nftcontracts.NonFungibleTokenV2(resolverAddress)) - - // Deploy the MetadataViews contract - metadataViewsAddr := deploy(t, b, "MetadataViews", nftcontracts.MetadataViews(fungibleAddr, NFTAddress, resolverAddress)) - - // Deploy the FTMetadataViews contract - ftMetadataViewsAddr := deploy(t, b, "FungibleTokenMetadataViews", contracts.FungibleTokenMetadataViews(fungibleAddr.String(), metadataViewsAddr.String(), resolverAddress.String())) - - // Deploy the MultipleVaults contract interface - multipleVaultsAddress := deploy(t, b, "MultipleVaults", contracts.MultipleVaults(fungibleAddr.String())) - - // Deploy the ExampleToken contract - exampleTokenCode := contracts.ExampleTokenV2(fungibleAddr.String(), metadataViewsAddr.String(), ftMetadataViewsAddr.String(), resolverAddress.String(), multipleVaultsAddress.String()) - exampleTokenAddress, err := b.CreateAccount( - key, - []sdktemplates.Contract{ - { - Name: "ExampleToken", - Source: string(exampleTokenCode), - }, - }, - ) - assert.NoError(t, err) - - _, err = b.CommitBlock() - assert.NoError(t, err) - - // // Deploy the TokenForwarding contract - // forwardingCode := contracts.TokenForwarding(fungibleAddr.String()) - // forwardingAddr, err = b.CreateAccount( - // key, - // []sdktemplates.Contract{ - // { - // Name: "TokenForwarding", - // Source: string(forwardingCode), - // }, - // }, - // ) - // assert.NoError(t, err) - - // _, err = b.CommitBlock() - // assert.NoError(t, err) - - return fungibleAddr, exampleTokenAddress //, nil + return fungibleAddr, resolverAddress, tokenAddr, forwardingAddr, metadataViewsAddr, fungibleMetadataViewsAddr } diff --git a/lib/go/test/token_v2_test.go b/lib/go/test/token_v2_test.go deleted file mode 100644 index a9cbb2f5..00000000 --- a/lib/go/test/token_v2_test.go +++ /dev/null @@ -1,23 +0,0 @@ -package test - -import ( - "testing" - - // sdktemplates "github.com/onflow/flow-go-sdk/templates" - // "github.com/stretchr/testify/assert" - // "github.com/stretchr/testify/require" - - // "github.com/onflow/cadence" - // jsoncdc "github.com/onflow/cadence/encoding/json" - "github.com/onflow/flow-go-sdk" - // "github.com/onflow/flow-go-sdk/crypto" - // "github.com/onflow/flow-ft/lib/go/contracts" - // "github.com/onflow/flow-ft/lib/go/templates" -) - -func TestV2TokenDeployment(t *testing.T) { - b, accountKeys := newTestSetup(t) - - exampleTokenAccountKey, _ := accountKeys.NewWithSigner() - _, _ = DeployV2TokenContracts(b, t, []*flow.AccountKey{exampleTokenAccountKey}) -} diff --git a/transactions/burn_tokens.cdc b/transactions/burn_tokens.cdc index aadaff50..bdbdc9c3 100644 --- a/transactions/burn_tokens.cdc +++ b/transactions/burn_tokens.cdc @@ -23,7 +23,7 @@ transaction(amount: UFix64) { self.supplyBefore = ExampleToken.totalSupply // Withdraw 10 tokens from the admin vault in storage - self.vault <- signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath)! + self.vault <- signer.borrow(from: ExampleToken.VaultStoragePath)! .withdraw(amount: amount) // Create a reference to the admin admin resource in storage diff --git a/transactions/generic_transfer.cdc b/transactions/generic_transfer.cdc index 0ff46941..5835bf7d 100644 --- a/transactions/generic_transfer.cdc +++ b/transactions/generic_transfer.cdc @@ -14,7 +14,7 @@ transaction(amount: UFix64, to: Address, senderPath: StoragePath, receiverPath: prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - let vaultRef = signer.borrow<&{FungibleToken.Provider}>(from: senderPath) + let vaultRef = signer.borrow(from: senderPath) ?? panic("Could not borrow reference to the owner's Vault!") self.tempVault <- vaultRef.withdraw(amount: amount) diff --git a/transactions/privateForwarder/create_private_forwarder.cdc b/transactions/privateForwarder/create_private_forwarder.cdc index 6dc90aa1..5fc699c9 100644 --- a/transactions/privateForwarder/create_private_forwarder.cdc +++ b/transactions/privateForwarder/create_private_forwarder.cdc @@ -9,7 +9,7 @@ import PrivateReceiverForwarder from "PrivateReceiverForwarder" transaction { prepare(signer: AuthAccount) { - receiverCapability = signer.link<&ExampleToken.Vault{FungibleToken.Receiver}>( + receiverCapability = signer.link<&{FungibleToken.Receiver}>( /private/exampleTokenReceiver, target: ExampleToken.VaultStoragePath ) diff --git a/transactions/privateForwarder/setup_and_create_forwarder.cdc b/transactions/privateForwarder/setup_and_create_forwarder.cdc index c957ef18..a2cf67b4 100644 --- a/transactions/privateForwarder/setup_and_create_forwarder.cdc +++ b/transactions/privateForwarder/setup_and_create_forwarder.cdc @@ -31,7 +31,7 @@ transaction { // Create a public capability to the Vault that only exposes // the balance field through the Balance interface - signer.link<&ExampleToken.Vault{FungibleToken.Balance}>( + signer.link<&{FungibleToken.Balance}>( ExampleToken.VaultPublicPath, target: ExampleToken.VaultStoragePath ) diff --git a/transactions/privateForwarder/transfer_private_many_accounts.cdc b/transactions/privateForwarder/transfer_private_many_accounts.cdc index 7aebbfe3..8877c8f5 100644 --- a/transactions/privateForwarder/transfer_private_many_accounts.cdc +++ b/transactions/privateForwarder/transfer_private_many_accounts.cdc @@ -7,14 +7,14 @@ import PrivateReceiverForwarder from "PrivateReceiverForwarder" transaction(addressAmountMap: {Address: UFix64}) { // The Vault resource that holds the tokens that are being transferred - let vaultRef: &ExampleToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &ExampleToken.Vault let privateForwardingSender: &PrivateReceiverForwarder.Sender prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - self.vaultRef = signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath) + self.vaultRef = signer.borrow(from: ExampleToken.VaultStoragePath) ?? panic("Could not borrow reference to the owner's Vault!") self.privateForwardingSender = signer.borrow<&PrivateReceiverForwarder.Sender>(from: PrivateReceiverForwarder.SenderStoragePath) diff --git a/transactions/safe_generic_transfer.cdc b/transactions/safe_generic_transfer.cdc index ec1558be..63d109da 100644 --- a/transactions/safe_generic_transfer.cdc +++ b/transactions/safe_generic_transfer.cdc @@ -17,7 +17,7 @@ transaction(amount: UFix64, to: Address, senderPath: StoragePath, receiverPath: prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - let vaultRef = signer.borrow<&{FungibleToken.Provider}>(from: senderPath) + let vaultRef = signer.borrow(from: senderPath) ?? panic("Could not borrow reference to the owner's Vault!") self.senderReceiverRef = signer.borrow<&{FungibleToken.Receiver}>(from: senderPath) diff --git a/transactions/scripts/get_balance.cdc b/transactions/scripts/get_balance.cdc index 5ecd644e..c404f50c 100644 --- a/transactions/scripts/get_balance.cdc +++ b/transactions/scripts/get_balance.cdc @@ -4,11 +4,11 @@ import FungibleToken from "FungibleToken" import ExampleToken from "ExampleToken" -pub fun main(address: Address): UFix64 { +access(all) fun main(address: Address): UFix64 { let account = getAccount(address) - let vaultRef = account.getCapability(ExampleToken.VaultPublicPath) - .borrow<&ExampleToken.Vault{FungibleToken.Balance}>() + let vaultRef = account.getCapability<&{FungibleToken.Balance}>(ExampleToken.VaultPublicPath) + .borrow() ?? panic("Could not borrow Balance reference to the Vault") - return vaultRef.balance + return vaultRef.getBalance() } diff --git a/transactions/scripts/get_supply.cdc b/transactions/scripts/get_supply.cdc index c5b7fee1..1c2ccd09 100644 --- a/transactions/scripts/get_supply.cdc +++ b/transactions/scripts/get_supply.cdc @@ -3,6 +3,6 @@ import ExampleToken from "ExampleToken" -pub fun main(): UFix64 { +access(all) fun main(): UFix64 { return ExampleToken.totalSupply } diff --git a/transactions/scripts/get_supported_vault_types.cdc b/transactions/scripts/get_supported_vault_types.cdc index f5ed70ee..645f2845 100644 --- a/transactions/scripts/get_supported_vault_types.cdc +++ b/transactions/scripts/get_supported_vault_types.cdc @@ -4,7 +4,7 @@ import FungibleToken from "FungibleToken" /// `target` address should hold the capability which conforms with FungibleToken.Receiver restricted type /// while it doesn't matter whether capability refers to fungible token or a custom receiver like /// `FungibleTokenSwitchboard` or `TokenReceiver`. However `targetPath` tells where the capability stores -pub fun main(target: Address, targetPath: PublicPath): {Type: Bool} { +access(all) fun main(target: Address, targetPath: PublicPath): {Type: Bool} { // Access the capability for the provided target address let capabilityRef = getAccount(target) diff --git a/transactions/scripts/metadata/get_token_metadata.cdc b/transactions/scripts/metadata/get_token_metadata.cdc index d307d082..3186d0e8 100644 --- a/transactions/scripts/metadata/get_token_metadata.cdc +++ b/transactions/scripts/metadata/get_token_metadata.cdc @@ -1,13 +1,13 @@ import ExampleToken from "ExampleToken" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import MetadataViews from "MetadataViews" +import ViewResolver from "ViewResolver" -pub fun main(address: Address): FungibleTokenMetadataViews.FTView { +access(all) fun main(address: Address): FungibleTokenMetadataViews.FTView { let account = getAccount(address) let vaultRef = account .getCapability(ExampleToken.VaultPublicPath) - .borrow<&{MetadataViews.Resolver}>() + .borrow<&{ViewResolver.Resolver}>() ?? panic("Could not borrow a reference to the vault resolver") let ftView = FungibleTokenMetadataViews.getFTView(viewResolver: vaultRef) diff --git a/transactions/scripts/metadata/get_vault_data.cdc b/transactions/scripts/metadata/get_vault_data.cdc index a008e257..10f4d422 100644 --- a/transactions/scripts/metadata/get_vault_data.cdc +++ b/transactions/scripts/metadata/get_vault_data.cdc @@ -1,13 +1,13 @@ import ExampleToken from "ExampleToken" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import MetadataViews from "MetadataViews" +import ViewResolver from "ViewResolver" -pub fun main(address: Address): FungibleTokenMetadataViews.FTVaultData { +access(all) fun main(address: Address): FungibleTokenMetadataViews.FTVaultData { let account = getAccount(address) let vaultRef = account .getCapability(ExampleToken.VaultPublicPath) - .borrow<&{MetadataViews.Resolver}>() + .borrow<&{ViewResolver.Resolver}>() ?? panic("Could not borrow a reference to the vault resolver") let vaultData = FungibleTokenMetadataViews.getFTVaultData(vaultRef) diff --git a/transactions/scripts/metadata/get_vault_display.cdc b/transactions/scripts/metadata/get_vault_display.cdc index 52893fcd..24e60a7e 100644 --- a/transactions/scripts/metadata/get_vault_display.cdc +++ b/transactions/scripts/metadata/get_vault_display.cdc @@ -1,13 +1,13 @@ import ExampleToken from "ExampleToken" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import MetadataViews from "MetadataViews" +import ViewResolver from "ViewResolver" -pub fun main(address: Address): FungibleTokenMetadataViews.FTDisplay { +access(all) fun main(address: Address): FungibleTokenMetadataViews.FTDisplay { let account = getAccount(address) let vaultRef = account .getCapability(ExampleToken.VaultPublicPath) - .borrow<&{MetadataViews.Resolver}>() + .borrow<&{ViewResolver.Resolver}>() ?? panic("Could not borrow a reference to the vault resolver") let ftDisplay = FungibleTokenMetadataViews.getFTDisplay(vaultRef) diff --git a/transactions/scripts/metadata/get_vault_supply_view.cdc b/transactions/scripts/metadata/get_vault_supply_view.cdc index 488c3576..f68eece8 100644 --- a/transactions/scripts/metadata/get_vault_supply_view.cdc +++ b/transactions/scripts/metadata/get_vault_supply_view.cdc @@ -1,15 +1,15 @@ import ExampleToken from "ExampleToken" import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" -import MetadataViews from "MetadataViews" +import ViewResolver from "ViewResolver" /// Gets the total supply of the vault's token directly from the vault -pub fun main(address: Address): UFix64 { +access(all) fun main(address: Address): UFix64 { let account = getAccount(address) let vaultRef = account .getCapability(ExampleToken.VaultPublicPath) - .borrow<&{MetadataViews.Resolver}>() + .borrow<&{ViewResolver.Resolver}>() ?? panic("Could not borrow a reference to the vault resolver") let ftSupply = vaultRef.resolveView(Type())! diff --git a/transactions/scripts/switchboard/check_receiver_by_type.cdc b/transactions/scripts/switchboard/check_receiver_by_type.cdc index 808a33dd..15f0411f 100644 --- a/transactions/scripts/switchboard/check_receiver_by_type.cdc +++ b/transactions/scripts/switchboard/check_receiver_by_type.cdc @@ -1,7 +1,7 @@ import FungibleTokenSwitchboard from "FungibleTokenSwitchboard" import ExampleToken from "ExampleToken" -pub fun main(switchboard: Address): Bool { +access(all) fun main(switchboard: Address): Bool { let switchboardRef = getAccount(switchboard) .getCapability<&{FungibleTokenSwitchboard.SwitchboardPublic}>(FungibleTokenSwitchboard.PublicPath) .borrow() diff --git a/transactions/scripts/switchboard/get_vault_types.cdc b/transactions/scripts/switchboard/get_vault_types.cdc index d92e8183..e6802e60 100644 --- a/transactions/scripts/switchboard/get_vault_types.cdc +++ b/transactions/scripts/switchboard/get_vault_types.cdc @@ -3,7 +3,7 @@ import FungibleTokenSwitchboard from "FungibleTokenSwitchboard" // This script reads the stored vault capabilities from a switchboard on the // passed account -pub fun main(account: Address): [Type] { +access(all) fun main(account: Address): [Type] { let acct = getAccount(account) diff --git a/transactions/scripts/switchboard/get_vault_types_and_address.cdc b/transactions/scripts/switchboard/get_vault_types_and_address.cdc index e6d0826c..3212a993 100644 --- a/transactions/scripts/switchboard/get_vault_types_and_address.cdc +++ b/transactions/scripts/switchboard/get_vault_types_and_address.cdc @@ -3,7 +3,7 @@ import FungibleTokenSwitchboard from "FungibleTokenSwitchboard" // This script reads the stored vault capabilities from a switchboard on the // passed account -pub fun main(account: Address): {Type: Address} { +access(all) fun main(account: Address): {Type: Address} { let acct = getAccount(account) diff --git a/transactions/scripts/tokenForwarder/is_recipient_valid.cdc b/transactions/scripts/tokenForwarder/is_recipient_valid.cdc index c3bfc8a0..e66967da 100644 --- a/transactions/scripts/tokenForwarder/is_recipient_valid.cdc +++ b/transactions/scripts/tokenForwarder/is_recipient_valid.cdc @@ -1,6 +1,6 @@ import TokenForwarding from "TokenForwarding" -pub fun main(addr: Address, tokenForwardingPath: PublicPath): Bool { +access(all) fun main(addr: Address, tokenForwardingPath: PublicPath): Bool { let forwarderRef = getAccount(addr) .getCapability<&{TokenForwarding.ForwarderPublic}>(tokenForwardingPath) .borrow() diff --git a/transactions/setup_account.cdc b/transactions/setup_account.cdc index 20a5a433..f38b242d 100644 --- a/transactions/setup_account.cdc +++ b/transactions/setup_account.cdc @@ -4,7 +4,7 @@ import FungibleToken from "FungibleToken" import ExampleToken from "ExampleToken" -import MetadataViews from "MetadataViews" +import ViewResolver from "ViewResolver" transaction () { @@ -15,21 +15,16 @@ transaction () { return } + let vault <- ExampleToken.createEmptyVault() + // Create a new ExampleToken Vault and put it in storage signer.save( - <-ExampleToken.createEmptyVault(), + <-vault, to: ExampleToken.VaultStoragePath ) - // Create a public capability to the Vault that only exposes - // the deposit function through the Receiver interface - signer.link<&ExampleToken.Vault{FungibleToken.Receiver}>( - ExampleToken.ReceiverPublicPath, - target: ExampleToken.VaultStoragePath - ) - - // Create a public capability to the Vault that exposes the Balance and Resolver interfaces - signer.link<&ExampleToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>( + // Create a public capability to the Vault that exposes the Receiver, Balance, and Resolver interfaces + signer.link<&{FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver}>( ExampleToken.VaultPublicPath, target: ExampleToken.VaultStoragePath ) diff --git a/transactions/switchboard/safe_transfer_tokens.cdc b/transactions/switchboard/safe_transfer_tokens.cdc index f1ea3ef6..9ad39e43 100644 --- a/transactions/switchboard/safe_transfer_tokens.cdc +++ b/transactions/switchboard/safe_transfer_tokens.cdc @@ -11,14 +11,14 @@ import ExampleToken from "ExampleToken" transaction(to: Address, amount: UFix64) { // The reference to the vault from the payer's account - let vaultRef: &ExampleToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &ExampleToken.Vault // The Vault resource that holds the tokens that are being transferred let sentVault: @FungibleToken.Vault prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - self.vaultRef = signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath) + self.vaultRef = signer.borrow(from: ExampleToken.VaultStoragePath) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/switchboard/safe_transfer_tokens_v2.cdc b/transactions/switchboard/safe_transfer_tokens_v2.cdc index 2d3e2f4e..b129cde5 100644 --- a/transactions/switchboard/safe_transfer_tokens_v2.cdc +++ b/transactions/switchboard/safe_transfer_tokens_v2.cdc @@ -9,14 +9,14 @@ import ExampleToken from "ExampleToken" transaction(to: Address, amount: UFix64) { // The reference to the vault from the payer's account - let vaultRef: &ExampleToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &ExampleToken.Vault // The Vault resource that holds the tokens that are being transferred let sentVault: @FungibleToken.Vault prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - self.vaultRef = signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath) + self.vaultRef = signer.borrow(from: ExampleToken.VaultStoragePath) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/switchboard/transfer_tokens.cdc b/transactions/switchboard/transfer_tokens.cdc index 7283ddf7..0682e115 100644 --- a/transactions/switchboard/transfer_tokens.cdc +++ b/transactions/switchboard/transfer_tokens.cdc @@ -17,7 +17,7 @@ transaction(to: Address, amount: UFix64, receiverPath: PublicPath) { prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - let vaultRef = signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath) + let vaultRef = signer.borrow(from: ExampleToken.VaultStoragePath) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault diff --git a/transactions/transfer_many_accounts.cdc b/transactions/transfer_many_accounts.cdc index 18af72db..0ad6f13b 100644 --- a/transactions/transfer_many_accounts.cdc +++ b/transactions/transfer_many_accounts.cdc @@ -6,12 +6,12 @@ import ExampleToken from "ExampleToken" transaction(addressAmountMap: {Address: UFix64}) { // The Vault resource that holds the tokens that are being transferred - let vaultRef: &ExampleToken.Vault + let vaultRef: auth(FungibleToken.Withdrawable) &ExampleToken.Vault prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - self.vaultRef = signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath) + self.vaultRef = signer.borrow(from: ExampleToken.VaultStoragePath) ?? panic("Could not borrow reference to the owner's Vault!") } diff --git a/transactions/transfer_tokens.cdc b/transactions/transfer_tokens.cdc index 5cba8dfe..910fad04 100644 --- a/transactions/transfer_tokens.cdc +++ b/transactions/transfer_tokens.cdc @@ -16,7 +16,7 @@ transaction(amount: UFix64, to: Address) { prepare(signer: AuthAccount) { // Get a reference to the signer's stored vault - let vaultRef = signer.borrow<&ExampleToken.Vault>(from: ExampleToken.VaultStoragePath) + let vaultRef = signer.borrow(from: ExampleToken.VaultStoragePath) ?? panic("Could not borrow reference to the owner's Vault!") // Withdraw tokens from the signer's stored vault