diff --git a/contracts/ExampleToken-v2.cdc b/contracts/ExampleToken-v2.cdc index 3315abd..8f8685b 100644 --- a/contracts/ExampleToken-v2.cdc +++ b/contracts/ExampleToken-v2.cdc @@ -1,22 +1,22 @@ -import FungibleToken from "./FungibleToken-v2.cdc" -import MetadataViews from "./utility/MetadataViews.cdc" -import FungibleTokenMetadataViews from "./FungibleTokenMetadataViews.cdc" -import MultipleVaults from "./MultipleVaults.cdc" -import ViewResolver from "./utility/ViewResolver.cdc" +import FungibleToken from "FungibleToken-v2" +import MetadataViews from "MetadataViews" +import FungibleTokenMetadataViews from "FungibleTokenMetadataViews" +import MultipleVaults from "MultipleVaults.cdc" +import ViewResolver from "ViewResolver.cdc" -pub contract ExampleToken: ViewResolver, MultipleVaults { +access(all) contract ExampleToken: ViewResolver, MultipleVaults { /// The event that is emitted when new tokens are minted - pub event TokensMinted(amount: UFix64, type: String) + access(all) event TokensMinted(amount: UFix64, type: String) /// Total supply of ExampleTokens in existence access(contract) var totalSupply: {Type: UFix64} /// Admin Path - pub let AdminStoragePath: StoragePath + access(all) let AdminStoragePath: StoragePath /// Function to return the types that the contract implements - pub fun getVaultTypes(): [Type] { + access(all) view fun getVaultTypes(): [Type] { let typeArray: [Type] = [Type<@ExampleToken.Vault>()] return typeArray } @@ -33,31 +33,31 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { /// out of thin air. A special Minter resource needs to be defined to mint /// new tokens. /// - pub resource Vault: FungibleToken.Vault, FungibleToken.Provider, FungibleToken.Transferor, FungibleToken.Receiver, FungibleToken.Balance, ViewResolver.Resolver { + access(all) resource Vault: FungibleToken.Vault { /// The total balance of this vault - pub var balance: UFix64 + access(all) var balance: UFix64 access(self) var storagePath: StoragePath access(self) var publicPath: PublicPath /// Returns the storage path where the vault should typically be stored - pub fun getDefaultStoragePath(): StoragePath? { + access(all) view fun getDefaultStoragePath(): StoragePath? { return self.storagePath } /// Returns the public path where this vault should have a public capability - pub fun getDefaultPublicPath(): PublicPath? { + access(all) view fun getDefaultPublicPath(): PublicPath? { return self.publicPath } - pub fun getViews(): [Type] { + access(all) view fun getViews(): [Type] { return [Type(), Type(), Type()] } - pub fun resolveView(_ view: Type): AnyStruct? { + access(all) view fun resolveView(_ view: Type): AnyStruct? { switch view { case Type(): return FungibleTokenMetadataViews.FTView( @@ -93,7 +93,7 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { 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} { + createEmptyVaultFunction: (fun(): @ExampleToken.Vault{FungibleToken.Vault} { return <-vaultRef.createEmptyVault() }) ) @@ -102,13 +102,13 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { } /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts - pub fun getSupportedVaultTypes(): {Type: Bool} { + access(all) view fun getSupportedVaultTypes(): {Type: Bool} { let supportedTypes: {Type: Bool} = {} supportedTypes[self.getType()] = true return supportedTypes } - pub fun isSupportedVaultType(type: Type): Bool { + access(all) view fun isSupportedVaultType(type: Type): Bool { return self.getSupportedVaultTypes()[type] ?? false } @@ -121,7 +121,7 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { } /// Get the balance of the vault - pub fun getBalance(): UFix64 { + access(all) view fun getBalance(): UFix64 { return self.balance } @@ -135,7 +135,7 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { /// created Vault to the context that called so it can be deposited /// elsewhere. /// - pub fun withdraw(amount: UFix64): @ExampleToken.Vault{FungibleToken.Vault} { + access(FungibleToken.Withdrawable) fun withdraw(amount: UFix64): @ExampleToken.Vault{FungibleToken.Vault} { self.balance = self.balance - amount return <-create Vault(balance: amount) } @@ -149,14 +149,14 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { /// was a temporary holder of the tokens. The Vault's balance has /// been consumed and therefore can be destroyed. /// - pub fun deposit(from: @AnyResource{FungibleToken.Vault}) { + access(all) fun deposit(from: @AnyResource{FungibleToken.Vault}) { let vault <- from as! @ExampleToken.Vault self.balance = self.balance + vault.balance vault.balance = 0.0 destroy vault } - pub fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { + access(all) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { let transferVault <- self.withdraw(amount: amount) // Get a reference to the recipient's Receiver @@ -174,7 +174,7 @@ pub 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. /// - pub fun createEmptyVault(): @ExampleToken.Vault{FungibleToken.Vault} { + access(all) fun createEmptyVault(): @ExampleToken.Vault{FungibleToken.Vault} { return <-create Vault(balance: 0.0) } @@ -189,13 +189,13 @@ pub contract ExampleToken: ViewResolver, MultipleVaults { /// /// Resource object that token admin accounts can hold to mint new tokens. /// - pub resource Minter { + access(all) resource Minter { /// mintTokens /// /// Function that mints new tokens, adds them to the total supply, /// and returns them to the calling context. /// - pub fun mintTokens(amount: UFix64): @ExampleToken.Vault { + access(all) fun mintTokens(amount: UFix64): @ExampleToken.Vault { ExampleToken.totalSupply[self.getType()] = ExampleToken.totalSupply[self.getType()]! + amount emit TokensMinted(amount: amount, type: self.getType().identifier) return <-create Vault(balance: amount) @@ -209,7 +209,7 @@ pub 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. /// - pub fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { + access(all) fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { switch vaultType { case Type<@ExampleToken.Vault>(): return <- create Vault(balance: 0.0) diff --git a/contracts/ExampleToken.cdc b/contracts/ExampleToken.cdc index 15b67d6..d037d92 100644 --- a/contracts/ExampleToken.cdc +++ b/contracts/ExampleToken.cdc @@ -143,7 +143,7 @@ access(all) contract ExampleToken: FungibleToken { receiverLinkedType: Type<&ExampleToken.Vault{FungibleToken.Receiver}>(), metadataLinkedType: Type<&ExampleToken.Vault{FungibleToken.Balance, MetadataViews.Resolver}>(), providerLinkedType: Type<&ExampleToken.Vault{FungibleToken.Provider}>(), - createEmptyVaultFunction: (fun (): @ExampleToken.Vault { + createEmptyVaultFunction: (fun(): @ExampleToken.Vault { return <-ExampleToken.createEmptyVault() }) ) diff --git a/contracts/FungibleToken-v2.cdc b/contracts/FungibleToken-v2.cdc index db298ba..6bea512 100644 --- a/contracts/FungibleToken-v2.cdc +++ b/contracts/FungibleToken-v2.cdc @@ -31,7 +31,7 @@ to the Provider interface. */ -import ViewResolver from "./utility/ViewResolver.cdc" +import ViewResolver from "ViewResolver" /// FungibleToken /// @@ -40,31 +40,34 @@ import ViewResolver from "./utility/ViewResolver.cdc" /// utility methods that many projects will still want to have on their contracts, /// but they are by no means required. all that is required is that the token /// implements the `Vault` interface -pub contract FungibleToken { +access(all) contract FungibleToken { + + // An entitlement for allowing the withdrawal of tokens from a Vault + access(all) entitlement Withdrawable /// The event that is emitted when tokens are withdrawn from a Vault - pub event Withdraw(amount: UFix64, from: Address?, type: String) + access(all) event Withdraw(amount: UFix64, from: Address?, type: String) access(self) fun emitWithdrawEvent(amount: UFix64, from: Address?, type: String): Bool { emit Withdraw(amount: amount, from: from, type: type) return true } /// The event that is emitted when tokens are deposited to a Vault - pub event Deposit(amount: UFix64, to: Address?, type: String) + access(all) event Deposit(amount: UFix64, to: Address?, type: String) access(self) fun emitDepositEvent(amount: UFix64, to: Address?, type: String): Bool { emit Deposit(amount: amount, to: to, type: type) return true } /// The event that is emitted when tokens are transferred from one account to another - pub event Transfer(amount: UFix64, from: Address?, to: Address?, type: String) + access(all) event Transfer(amount: UFix64, from: Address?, to: Address?, type: String) access(self) fun emitTransferEvent(amount: UFix64, from: Address?, to: Address?, type: String): Bool { emit Transfer(amount: amount, from: from, to: to, type: type) return true } /// Event emitted when tokens are destroyed - pub event Burn(amount: UFix64, type: String) + access(all) event Burn(amount: UFix64, type: String) access(self) fun emitBurnEvent(amount: UFix64, type: String): Bool { if amount >= 0.0 { @@ -82,7 +85,7 @@ pub contract FungibleToken { /// because it leaves open the possibility of creating custom providers /// that do not necessarily need their own balance. /// - pub resource interface Provider { + access(all) resource interface Provider { /// withdraw subtracts tokens from the owner's Vault /// and returns a Vault with the removed tokens. @@ -99,7 +102,7 @@ pub contract FungibleToken { /// capability that allows all users to access the provider /// resource through a reference. /// - pub fun withdraw(amount: UFix64): @AnyResource{Vault} { + access(Withdrawable) fun withdraw(amount: UFix64): @AnyResource{Vault} { post { // `result` refers to the return value result.getBalance() == amount: @@ -119,14 +122,14 @@ pub contract FungibleToken { /// can do custom things with the tokens, like split them up and /// send them to different places. /// - pub resource interface Receiver { + access(all) resource interface Receiver { /// deposit takes a Vault and deposits it into the implementing resource type /// - pub fun deposit(from: @AnyResource{Vault}) + access(all) fun deposit(from: @AnyResource{Vault}) /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts - pub fun getSupportedVaultTypes(): {Type: Bool} { + access(all) view fun getSupportedVaultTypes(): {Type: Bool} { // Below check is implemented to make sure that run-time type would // only get returned when the parent resource conforms with `FungibleToken.Vault`. if self.getType().isSubtype(of: Type<@AnyResource{FungibleToken.Vault}>()) { @@ -140,15 +143,15 @@ pub contract FungibleToken { /// 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 - pub fun isSupportedVaultType(type: Type): Bool { + access(all) view fun isSupportedVaultType(type: Type): Bool { return false } } - pub resource interface Transferor { + access(all) resource interface Transferor { /// Function for a direct transfer instead of having to do a deposit and withdrawal /// - pub fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { + access(all) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { pre { receiver.check(): "Could not borrow a reference to the NFT receiver" } @@ -160,20 +163,20 @@ pub contract FungibleToken { /// This interface is now a general purpose metadata interface because /// a public interface is needed to get metadata, but adding a whole new interface /// for every account to upgrade to is probably too much of a breaking change - pub resource interface Balance { //: ViewResolver.Resolver { + access(all) resource interface Balance { //: ViewResolver.Resolver { /// Method to get the balance /// The balance could be a derived field, /// so there is no need to require an explicit field - pub fun getBalance(): UFix64 + access(all) view fun getBalance(): UFix64 - pub fun getSupportedVaultTypes(): {Type: Bool} - pub fun isSupportedVaultType(type: Type): Bool + access(all) view fun getSupportedVaultTypes(): {Type: Bool} + access(all) view fun isSupportedVaultType(type: Type): Bool /// ViewResolver Methods /// - pub fun getViews(): [Type] - pub fun resolveView(_ view: Type): AnyStruct? + access(all) view fun getViews(): [Type] + access(all) view fun resolveView(_ view: Type): AnyStruct? } /// Vault @@ -181,33 +184,33 @@ pub contract FungibleToken { /// Ideally, this interface would also conform to Receiver, Balance, Transferor, Provider, and Resolver /// but that is not supported yet /// - pub resource interface Vault { //: Receiver, Balance, Transferor, Provider, ViewResolver.Resolver { + access(all) resource interface Vault: Receiver, Balance, Transferor, Provider, ViewResolver.Resolver { /// Get the balance of the vault - pub fun getBalance(): UFix64 + access(all) view fun getBalance(): UFix64 /// getSupportedVaultTypes optionally returns a list of vault types that this receiver accepts - pub fun getSupportedVaultTypes(): {Type: Bool} + access(all) view fun getSupportedVaultTypes(): {Type: Bool} - pub fun isSupportedVaultType(type: Type): Bool + access(all) view fun isSupportedVaultType(type: Type): Bool /// Returns the storage path where the vault should typically be stored - pub fun getDefaultStoragePath(): StoragePath? { + access(all) view fun getDefaultStoragePath(): StoragePath? { return nil } /// Returns the public path where this vault should have a public capability - pub fun getDefaultPublicPath(): PublicPath? { + access(all) view fun getDefaultPublicPath(): PublicPath? { return nil } - pub fun getViews(): [Type] - pub fun resolveView(_ view: Type): AnyStruct? + access(all) view fun getViews(): [Type] + access(all) view fun resolveView(_ view: Type): AnyStruct? /// withdraw subtracts `amount` from the Vault's balance /// and returns a new Vault with the subtracted balance /// - pub fun withdraw(amount: UFix64): @AnyResource{Vault} { + access(Withdrawable) fun withdraw(amount: UFix64): @AnyResource{Vault} { pre { self.getBalance() >= amount: "Amount withdrawn must be less than or equal than the balance of the Vault" @@ -223,7 +226,7 @@ pub contract FungibleToken { /// deposit takes a Vault and adds its balance to the balance of this Vault /// - pub fun deposit(from: @AnyResource{FungibleToken.Vault}) { + access(all) fun deposit(from: @AnyResource{FungibleToken.Vault}) { // Assert that the concrete type of the deposited vault is the same // as the vault that is accepting the deposit pre { @@ -239,7 +242,7 @@ pub contract FungibleToken { /// Function for a direct transfer instead of having to do a deposit and withdrawal /// - pub fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { + access(all) fun transfer(amount: UFix64, receiver: Capability<&{FungibleToken.Receiver}>) { post { self.getBalance() == before(self.getBalance()) - amount: "New Vault balance from the sender must be the difference of the previous balance and the withdrawn Vault balance" @@ -249,7 +252,7 @@ pub contract FungibleToken { /// createEmptyVault allows any user to create a new Vault that has a zero balance /// - pub fun createEmptyVault(): @AnyResource{Vault} { + access(all) fun createEmptyVault(): @AnyResource{Vault} { post { result.getBalance() == 0.0: "The newly created Vault must have zero balance" } diff --git a/contracts/FungibleToken.cdc b/contracts/FungibleToken.cdc index 0e60510..9e8fff2 100644 --- a/contracts/FungibleToken.cdc +++ b/contracts/FungibleToken.cdc @@ -125,7 +125,7 @@ access(all) contract interface FungibleToken { /// /// @return dictionary of supported deposit vault types by the implementing resource. /// - access(all) fun getSupportedVaultTypes(): {Type: Bool} { + access(all) view fun getSupportedVaultTypes(): {Type: Bool} { // Below check is implemented to make sure that run-time type would // only get returned when the parent resource conforms with `FungibleToken.Vault`. if self.getType().isSubtype(of: Type<@FungibleToken.Vault>()) { @@ -160,7 +160,7 @@ access(all) contract interface FungibleToken { /// @return An array of Types defining the implemented views. This value will be used by /// developers to know which parameter to pass to the resolveView() method. /// - access(all) fun getViews(): [Type] { + access(all) view fun getViews(): [Type] { return [] } @@ -169,7 +169,7 @@ access(all) contract interface FungibleToken { /// @param view: The Type of the desired view. /// @return A structure representing the requested view. /// - access(all) fun resolveView(_ view: Type): AnyStruct? { + access(all) view fun resolveView(_ view: Type): AnyStruct? { return nil } } diff --git a/contracts/FungibleTokenMetadataViews.cdc b/contracts/FungibleTokenMetadataViews.cdc index 62489a6..e8509f0 100644 --- a/contracts/FungibleTokenMetadataViews.cdc +++ b/contracts/FungibleTokenMetadataViews.cdc @@ -11,15 +11,15 @@ import ViewResolver from "ViewResolver" /// metadata types, called views. Each view type represents /// a different kind of metadata. /// -pub contract FungibleTokenMetadataViews { +access(all) contract FungibleTokenMetadataViews { /// FTView wraps FTDisplay and FTVaultData, and is used to give a complete /// picture of a Fungible Token. Most Fungible Token contracts should /// implement this view. /// - pub struct FTView { - pub let ftDisplay: FTDisplay? - pub let ftVaultData: FTVaultData? + access(all) struct FTView { + access(all) let ftDisplay: FTDisplay? + access(all) let ftVaultData: FTVaultData? init( ftDisplay: FTDisplay?, ftVaultData: FTVaultData? @@ -34,7 +34,7 @@ pub contract FungibleTokenMetadataViews { /// @param viewResolver: A reference to the resolver resource /// @return A FTView struct /// - pub fun getFTView(viewResolver: &{ViewResolver.Resolver}): FTView { + access(all) view fun getFTView(viewResolver: &{ViewResolver.Resolver}): FTView { let maybeFTView = viewResolver.resolveView(Type()) if let ftView = maybeFTView { return ftView as! FTView @@ -49,32 +49,32 @@ pub contract FungibleTokenMetadataViews { /// This can be used by applications to give an overview and /// graphics of the FT. /// - pub struct FTDisplay { + access(all) struct FTDisplay { /// The display name for this token. /// /// Example: "Flow" /// - pub let name: String + access(all) let name: String /// The abbreviated symbol for this token. /// /// Example: "FLOW" - pub let symbol: String + access(all) let symbol: String /// A description the provides an overview of this token. /// /// Example: "The FLOW token is the native currency of the Flow network." - pub let description: String + access(all) let description: String /// External link to a URL to view more information about the fungible token. - pub let externalURL: MetadataViews.ExternalURL + access(all) let externalURL: MetadataViews.ExternalURL /// One or more versions of the fungible token logo. - pub let logos: MetadataViews.Medias + access(all) let logos: MetadataViews.Medias /// Social links to reach the fungible token's social homepages. /// Possible keys may be "instagram", "twitter", "discord", etc. - pub let socials: {String: MetadataViews.ExternalURL} + access(all) let socials: {String: MetadataViews.ExternalURL} init( name: String, @@ -98,7 +98,7 @@ pub contract FungibleTokenMetadataViews { /// @param viewResolver: A reference to the resolver resource /// @return An optional FTDisplay struct /// - pub fun getFTDisplay(_ viewResolver: &{ViewResolver.Resolver}): FTDisplay? { + access(all) view fun getFTDisplay(_ viewResolver: &{ViewResolver.Resolver}): FTDisplay? { if let maybeDisplayView = viewResolver.resolveView(Type()) { if let displayView = maybeDisplayView as? FTDisplay { return displayView @@ -111,35 +111,35 @@ pub contract FungibleTokenMetadataViews { /// This can be used by applications to setup a FT vault with proper /// storage and public capabilities. /// - pub struct FTVaultData { + access(all) struct FTVaultData { /// Path in storage where this FT vault is recommended to be stored. - pub let storagePath: StoragePath + access(all) let storagePath: StoragePath /// Public path which must be linked to expose the public receiver capability. - pub let receiverPath: PublicPath + access(all) let receiverPath: PublicPath /// Public path which must be linked to expose the balance and resolver public capabilities. - pub let metadataPath: PublicPath + access(all) let metadataPath: PublicPath /// Private path which should be linked to expose the provider capability to withdraw funds /// from the vault. - pub let providerPath: PrivatePath + access(all) let providerPath: PrivatePath /// Type that should be linked at the `receiverPath`. This is a restricted type requiring /// the `FungibleToken.Receiver` interface. - pub let receiverLinkedType: Type + access(all) let receiverLinkedType: Type /// Type that should be linked at the `receiverPath`. This is a restricted type requiring /// the `FungibleToken.Balance` and `ViewResolver.Resolver` interfaces. - pub let metadataLinkedType: Type + access(all) let metadataLinkedType: Type /// Type that should be linked at the aforementioned private path. This /// is normally a restricted type with at a minimum the `FungibleToken.Provider` interface. - pub let providerLinkedType: Type + access(all) let providerLinkedType: Type /// Function that allows creation of an empty FT vault that is intended /// to store the funds. - pub let createEmptyVault: ((): @{FungibleToken.Vault}) + access(all) let createEmptyVault: fun(): @{FungibleToken.Vault} init( storagePath: StoragePath, @@ -149,7 +149,7 @@ pub contract FungibleTokenMetadataViews { receiverLinkedType: Type, metadataLinkedType: Type, providerLinkedType: Type, - createEmptyVaultFunction: ((): @{FungibleToken.Vault}) + createEmptyVaultFunction: fun(): @{FungibleToken.Vault} ) { pre { receiverLinkedType.isSubtype(of: Type<&{FungibleToken.Receiver}>()): "Receiver public type must include FungibleToken.Receiver." @@ -172,7 +172,7 @@ pub contract FungibleTokenMetadataViews { /// @param viewResolver: A reference to the resolver resource /// @return A optional FTVaultData struct /// - pub fun getFTVaultData(_ viewResolver: &{ViewResolver.Resolver}): FTVaultData? { + access(all) view fun getFTVaultData(_ viewResolver: &{ViewResolver.Resolver}): FTVaultData? { if let view = viewResolver.resolveView(Type()) { if let v = view as? FTVaultData { return v diff --git a/contracts/FungibleTokenSwitchboard.cdc b/contracts/FungibleTokenSwitchboard.cdc index 66a82cd..5274753 100644 --- a/contracts/FungibleTokenSwitchboard.cdc +++ b/contracts/FungibleTokenSwitchboard.cdc @@ -6,49 +6,49 @@ import FungibleToken from "FungibleToken" /// `FungibleTokenSwitchboard.ReceiverPublicPath = /public/GenericFTReceiver` /// but it can be stored anywhere. /// -pub contract FungibleTokenSwitchboard { +access(all) contract FungibleTokenSwitchboard { // Storage and Public Paths - pub let StoragePath: StoragePath - pub let PublicPath: PublicPath - pub let ReceiverPublicPath: PublicPath + access(all) let StoragePath: StoragePath + access(all) let PublicPath: PublicPath + access(all) let ReceiverPublicPath: PublicPath /// The event that is emitted when a new vault capability is added to a /// switchboard resource. /// - pub event VaultCapabilityAdded(type: Type, switchboardOwner: Address?, + access(all) event VaultCapabilityAdded(type: Type, switchboardOwner: Address?, capabilityOwner: Address?) /// The event that is emitted when a vault capability is removed from a /// switchboard resource. /// - pub event VaultCapabilityRemoved(type: Type, switchboardOwner: Address?, + access(all) event VaultCapabilityRemoved(type: Type, switchboardOwner: Address?, capabilityOwner: Address?) /// The event that is emitted when a deposit can not be completed. /// - pub event NotCompletedDeposit(type: Type, amount: UFix64, + access(all) event NotCompletedDeposit(type: Type, amount: UFix64, switchboardOwner: Address?) /// The interface that enforces the method to allow anyone to check on the /// available capabilities of a switchboard resource and also exposes the /// deposit methods to deposit funds on it. /// - pub resource interface SwitchboardPublic { - pub fun getVaultTypes(): [Type] - pub fun getVaultTypesWithAddress(): {Type: Address} - pub fun getSupportedVaultTypes(): {Type: Bool} - pub fun deposit(from: @FungibleToken.Vault) - pub fun safeDeposit(from: @FungibleToken.Vault): @FungibleToken.Vault? - pub fun checkReceiverByType(type: Type): Bool - pub fun safeBorrowByType(type: Type): &{FungibleToken.Receiver}? + access(all) resource interface SwitchboardPublic { + access(all) view 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) view fun checkReceiverByType(type: Type): Bool + access(all) view fun safeBorrowByType(type: Type): &{FungibleToken.Receiver}? } /// The resource that stores the multiple fungible token receiver /// capabilities, allowing the owner to add and remove them and anyone to /// deposit any fungible token among the available types. /// - pub resource Switchboard: FungibleToken.Receiver, SwitchboardPublic { + access(all) resource Switchboard: FungibleToken.Receiver, SwitchboardPublic { /// Dictionary holding the fungible token receiver capabilities, /// indexed by the fungible token vault type. @@ -62,7 +62,7 @@ pub contract FungibleTokenSwitchboard { /// token vault deposit function through `{FungibleToken.Receiver}` that /// will be added to the switchboard. /// - pub fun addNewVault(capability: Capability<&{FungibleToken.Receiver}>) { + access(all) fun addNewVault(capability: Capability<&{FungibleToken.Receiver}>) { // Borrow a reference to the vault pointed to by the capability we // want to store inside the switchboard let vaultRef = capability.borrow() @@ -89,7 +89,7 @@ pub contract FungibleTokenSwitchboard { /// @param paths: The paths where the public capabilities are stored. /// @param address: The address of the owner of the capabilities. /// - pub fun addNewVaultsByPath(paths: [PublicPath], address: Address) { + access(all) fun addNewVaultsByPath(paths: [PublicPath], address: Address) { // Get the account where the public capabilities are stored let owner = getAccount(address) // For each path, get the saved capability and store it @@ -131,7 +131,7 @@ pub contract FungibleTokenSwitchboard { /// capability, rather than the `Type` from the reference borrowed from /// said capability /// - pub fun addNewVaultWrapper(capability: Capability<&{FungibleToken.Receiver}>, + access(all) fun addNewVaultWrapper(capability: Capability<&{FungibleToken.Receiver}>, type: Type) { // Check if the capability is working assert(capability.check(), message: "The passed capability is not valid") @@ -155,7 +155,7 @@ pub contract FungibleTokenSwitchboard { /// @param types: The types of the fungible token to be deposited on each path. /// @param address: The address of the owner of the capabilities. /// - pub fun addNewVaultWrappersByPath(paths: [PublicPath], types: [Type], + access(all) fun addNewVaultWrappersByPath(paths: [PublicPath], types: [Type], address: Address) { // Get the account where the public capabilities are stored let owner = getAccount(address) @@ -188,7 +188,7 @@ pub contract FungibleTokenSwitchboard { /// @param capability: The capability to a fungible token vault to be /// removed from the switchboard. /// - pub fun removeVault(capability: Capability<&{FungibleToken.Receiver}>) { + access(all) fun removeVault(capability: Capability<&{FungibleToken.Receiver}>) { // Borrow a reference to the vault pointed to by the capability we // want to remove from the switchboard let vaultRef = capability.borrow() @@ -207,7 +207,7 @@ pub contract FungibleTokenSwitchboard { /// /// @param from: The deposited fungible token vault resource. /// - pub 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 @@ pub contract FungibleTokenSwitchboard { /// funds if the deposit was successful, or still containing the funds /// if the reference to the needed vault was not found. /// - pub 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 @@ -258,7 +258,7 @@ pub contract FungibleTokenSwitchboard { /// @param vaultType: The type of the ft vault whose capability needs to be checked /// /// @return a boolean marking the capability for a type as valid or not - pub fun checkReceiverByType(type: Type): Bool { + access(all) view fun checkReceiverByType(type: Type): Bool { if self.receiverCapabilities[type] == nil { return false } @@ -274,7 +274,7 @@ pub contract FungibleTokenSwitchboard { /// @param vaultType: The type of the ft vault whose capability needs to be checked /// /// @return an optional receiver capability for consumers of the switchboard to check/validate on their own - pub fun safeBorrowByType(type: Type): &{FungibleToken.Receiver}? { + access(all) view fun safeBorrowByType(type: Type): &{FungibleToken.Receiver}? { if !self.checkReceiverByType(type: type) { return nil } @@ -289,7 +289,7 @@ pub contract FungibleTokenSwitchboard { /// `{FungibleToken.Receiver}` capabilities that can be effectively /// borrowed. /// - pub fun getVaultTypes(): [Type] { + access(all) view fun getVaultTypes(): [Type] { let effectiveTypes: [Type] = [] for vaultType in self.receiverCapabilities.keys { if self.receiverCapabilities[vaultType]!.check() { @@ -306,7 +306,7 @@ pub contract FungibleTokenSwitchboard { /// @return A dictionary mapping the `{FungibleToken.Receiver}` /// type to the receiver owner's address /// - pub fun getVaultTypesWithAddress(): {Type: Address} { + access(all) view fun getVaultTypesWithAddress(): {Type: Address} { let effectiveTypesWithAddress: {Type: Address} = {} // Check if each capability is live for vaultType in self.receiverCapabilities.keys { @@ -323,7 +323,7 @@ pub contract FungibleTokenSwitchboard { /// which can be deposited using the 'deposit' function. /// /// @return Dictionary of FT types that can be deposited. - pub fun getSupportedVaultTypes(): {Type: Bool} { + access(all) view fun getSupportedVaultTypes(): {Type: Bool} { let supportedVaults: {Type: Bool} = {} let vaultTypes = self.getVaultTypes() for vaultT in vaultTypes { @@ -342,7 +342,7 @@ pub contract FungibleTokenSwitchboard { /// Function that allows to create a new blank switchboard. A user must call /// this function and store the returned resource in their storage. /// - pub fun createSwitchboard(): @Switchboard { + access(all) fun createSwitchboard(): @Switchboard { return <-create Switchboard() } diff --git a/contracts/MultipleVaults.cdc b/contracts/MultipleVaults.cdc index 46a4cce..5d36fed 100644 --- a/contracts/MultipleVaults.cdc +++ b/contracts/MultipleVaults.cdc @@ -1,14 +1,14 @@ -import FungibleToken from "./FungibleToken-v2.cdc" +import FungibleToken from "FungibleToken-v2" -pub contract interface MultipleVaults { +access(all) contract interface MultipleVaults { /// Contains the total supply of the fungible tokens defined in this contract access(contract) var totalSupply: {Type: UFix64} /// Function to return the types that the contract implements - pub fun getVaultTypes(): [Type] { + access(all) view fun getVaultTypes(): [Type] { post { result.length > 0: "Must indicate what fungible token types this contract defines" } @@ -16,7 +16,7 @@ pub contract interface MultipleVaults { /// createEmptyVault allows any user to create a new Vault that has a zero balance /// - pub fun createEmptyVault(vaultType: Type): @AnyResource{FungibleToken.Vault} { + access(all) fun createEmptyVault(vaultType: Type): @AnyResource{FungibleToken.Vault} { post { result.getBalance() == 0.0: "The newly created Vault must have zero balance" } diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index ee62664..1592138 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -37,7 +37,7 @@ const ( // FungibleToken returns the FungibleToken contract interface. func FungibleToken() []byte { - code := assets.MustAssetString(filenameFungibleToken) + code := assets.MustAssetString(filenameFungibleTokenV2) return []byte(code) } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index de61512..b4e7f49 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,12 +1,12 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../contracts/ExampleToken-v2.cdc (10.591kB) -// ../../../contracts/ExampleToken.cdc (12.024kB) -// ../../../contracts/FungibleToken-v2.cdc (10.836kB) -// ../../../contracts/FungibleToken.cdc (10.006kB) -// ../../../contracts/FungibleTokenMetadataViews.cdc (7.279kB) -// ../../../contracts/FungibleTokenSwitchboard.cdc (17.536kB) -// ../../../contracts/MultipleVaults.cdc (766B) +// ../../../contracts/ExampleToken-v2.cdc (10.655kB) +// ../../../contracts/ExampleToken.cdc (12.023kB) +// ../../../contracts/FungibleToken-v2.cdc (11.268kB) +// ../../../contracts/FungibleToken.cdc (10.021kB) +// ../../../contracts/FungibleTokenMetadataViews.cdc (7.48kB) +// ../../../contracts/FungibleTokenSwitchboard.cdc (17.818kB) +// ../../../contracts/MultipleVaults.cdc (789B) // ../../../contracts/utility/MetadataViews.cdc (26.308kB) // ../../../contracts/utility/NonFungibleToken.cdc (4.828kB) // ../../../contracts/utility/PrivateReceiverForwarder.cdc (2.592kB) @@ -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\x5f\x6f\x1b\x37\x12\x7f\xcf\xa7\x98\xe8\x80\x9e\x84\xda\xb2\xfb\x2f\xd7\x0a\x76\x5c\xb7\x89\xef\x0e\x68\x81\x20\x71\x73\x0f\x41\x10\x53\xbb\x23\x89\xe7\x5d\x72\x41\x72\x25\xab\x86\xbf\xfb\x61\xf8\x67\x77\xb9\xe2\xca\x8a\xd3\xd3\x8b\xa4\x25\x67\x38\x33\xfc\xcd\x70\x66\xb8\xbc\xac\xa4\x32\x70\x55\x8b\x25\x9f\x17\x78\x2d\x6f\x51\xc0\x42\xc9\x12\x46\xd3\x93\xe8\xe9\xf1\xfa\xdb\x69\x96\x67\xa3\x67\x9e\xe4\x77\x34\x2c\x67\x86\xbd\xe7\xb8\xd1\x0d\x49\x6d\x78\xc1\xcd\xf6\x24\x1a\x8d\xe8\x22\xa6\x69\x26\xc3\x53\x62\x09\xea\xc2\xf0\xaa\xc0\xf7\xac\x2e\x4c\x4b\x1d\x3f\x8e\x28\x88\xc7\x5b\xd4\xb2\x58\xa3\xda\x11\xb9\x3b\xe8\xa8\x9e\x55\xf5\x1c\x32\x29\x8c\x62\x99\x81\xd7\x77\xac\xac\xbc\x50\xb3\x88\xd5\x51\x5f\x94\xfb\x67\xcf\x00\x00\x4e\x4e\x4e\xe0\x7a\x85\x80\x6b\x14\x06\xcc\x8a\x19\xe0\x1a\xb0\xe4\xc6\x60\x0e\x9b\x15\x0a\x10\xb8\x01\x43\x1c\x35\x30\x85\x50\x72\x61\x30\xb7\xc4\xb4\xb6\x23\xb4\x2b\xea\xdf\xed\xd0\x98\x95\xb2\x16\x66\x06\x7f\x5c\xf1\xbb\x17\xdf\x1f\x81\xd9\x56\x38\x83\x77\x46\x71\xb1\x9c\x74\x96\x95\x86\x15\xa0\xeb\xaa\x2a\xb6\x20\x17\x91\xf0\x1a\xb8\x00\xbc\xe3\xda\xa0\xc8\xd0\x92\xb0\x2c\x43\xad\xc7\x41\xd7\x09\xac\x99\x02\x43\x3c\xde\x59\x16\x33\xb8\xbf\xb6\x0b\xb9\x65\x1f\xda\x85\x2e\xf3\x92\x0b\x78\xc3\xcc\xaa\x91\xba\x40\xe3\x1e\xbf\x33\x52\xb1\x25\xd2\x20\x89\xd8\xfc\x69\xa9\xaf\x6a\x91\x19\x2e\x05\x18\x09\x0a\x4d\xad\x04\x98\x15\x5a\xa5\xb4\x33\x18\xfd\x6d\xb6\x80\x93\x0e\x25\x0a\xa3\x9b\xc5\x16\xb5\x80\x25\x1a\x6b\x78\x12\x51\x8f\x27\x33\xf8\x40\xbf\x3e\xc2\xbd\x9d\x45\x1f\x12\x89\x98\x5e\x2a\xc5\xb6\xcd\xf8\xb9\xfb\x71\xf6\x73\xd7\x3a\x53\xcb\xea\xe5\x78\xf2\xb1\xa1\x0e\x92\x05\x06\x76\xa0\x63\x03\x4b\x11\xfe\x35\x4f\x5f\xb3\x6c\x05\xb5\x46\x05\xda\x48\x85\x1a\x98\x00\x2e\xb4\x61\x22\x43\xda\x12\x29\x8a\xad\x55\xcf\x92\xd3\x9e\x98\x15\x72\x37\x9b\x2d\x31\x42\xd0\xc2\xdb\x49\xfb\x69\x9e\x86\x89\x1c\x96\x72\x8d\x4a\x60\x0e\x73\xc7\xad\x52\x68\x9f\x57\x52\x1b\xb2\x5c\xce\x2d\x61\xc3\x8e\x8b\x9e\xb7\x5b\x1c\x9a\x15\x6e\x2d\x02\x33\x56\x14\x98\x4f\xa3\xd5\xb3\x15\x66\xb7\x1a\x56\xac\xaa\x50\x00\x33\xa0\x6a\x61\x78\x89\x96\x14\xc9\x97\x58\x23\x21\x21\xbc\xc7\xa3\xe1\x45\xfe\x52\xab\x0c\x69\x86\x70\xfa\xcf\x11\x32\x85\x8c\xfc\xc1\x6b\x46\x9b\x8d\x77\x86\x2c\x14\xed\x7d\x40\xc3\xb6\x61\x47\xe2\xe6\xb8\xe0\xc2\x12\x1f\x81\x96\x34\xae\x90\x44\x10\x12\x36\x6c\x0b\x0b\x49\xb2\x95\xac\xe0\x19\x97\xb5\x76\xdb\x61\xa4\x5f\xd3\x59\xb1\x35\x8d\xac\xfd\xb2\x5c\x00\xe3\x6a\x0a\x97\xa0\x2b\xcc\x38\x2b\xc0\x7a\x9f\x02\xe5\x35\x00\x81\x98\x6b\xe2\x34\x6f\x65\x30\xd2\xfa\x6f\xc3\xae\xf5\xed\xd8\x14\x04\xdb\x86\x91\x15\x61\x16\x6f\x89\x83\xe0\x51\xef\xe1\x1b\x25\xd7\x3c\xa7\x68\x13\x3f\xbf\x56\x4c\xe8\x05\x2a\xb9\x33\xf2\x16\x33\xe4\xeb\x5d\x8a\x5f\x58\x41\x20\x3c\x8a\x82\xd8\xb4\x09\x8c\x3e\x7a\x75\x11\x60\x43\x01\xcc\x1d\x9d\xb7\x91\x86\x75\x83\xfb\xa0\x16\x85\x0d\x3f\x2b\xc4\x8a\x96\x99\x0f\x32\x1a\x8b\x85\x0b\x30\x7a\x28\x3e\x0c\x52\x54\xf5\xbc\xe0\x99\x23\x78\xd3\xfc\x8e\xe5\x7d\x6b\xbd\x55\x5b\xf4\xf8\x15\xa0\x62\x66\x45\x68\x55\x68\x1f\x5b\xc1\x41\xaf\x64\x5d\xe4\xe4\xd6\x9c\x10\x6b\xc1\x68\x5d\x35\x8f\x74\xf2\x11\xe6\x15\x2e\x88\xaa\x23\x26\x45\x9a\xce\xdf\x8b\x4e\xbc\xe9\x44\x0d\x12\x7e\xaa\x13\xca\x3d\x0c\x8b\xed\xd4\x8c\xa5\x0e\xf6\x0e\x62\xaf\xd8\x1a\x81\x85\xa9\x19\xab\xd8\xdc\x9e\x63\x7b\x64\x6f\x2d\x46\xa2\xb7\xff\xf6\x49\xde\x5a\x3c\x25\x78\x37\x02\xd3\xf9\x9c\x0c\xbe\x1d\x96\x2e\xde\xee\x39\xdf\xaf\xae\xe9\xfb\xe5\x78\x72\x14\x91\x87\xcf\xe3\xe4\xaf\xb8\xae\x0a\xb6\xfd\x02\x0e\xd6\xf9\x5e\x31\xc3\xa2\x33\x20\xa1\xb4\x72\x0e\x43\x74\xe3\x4f\xb0\xe6\xb8\x99\x59\xf6\x93\x19\x5c\x8a\xed\x3b\xa3\xea\xcc\xf4\x4d\xab\x37\xdc\x64\x2b\x3b\xb9\x37\x42\x9f\x8c\x69\x3c\x44\x42\x67\xa2\x59\x52\x41\x6f\xe9\x47\x19\x8c\x93\xd4\xf4\x59\x18\x6f\xc4\x99\x83\x40\x57\xcf\xcf\xd9\x80\x09\x30\xfd\x7c\xbf\x20\x7e\xf2\x45\x7a\xaf\x9c\x30\xcd\x7e\x3c\x49\x9c\xee\x6e\x1e\x20\x50\x33\xfd\x22\x29\xd1\xe4\xa9\x5b\xd6\x5a\x25\xbd\x6b\x94\xa0\x94\x98\x73\x06\xe7\x71\x66\x3d\xfd\x9d\x9e\x0e\x6f\x96\xb5\x11\x2f\x70\xd6\x23\xfb\xd7\xf5\xf5\x9b\x2b\x5e\xe0\x7e\xca\x5a\x15\x33\x18\xad\x8c\xa9\xf4\xec\xe4\x84\x69\x8d\x46\x4f\x37\x38\xd7\xdc\xe0\x31\xb1\xd5\xd3\x4c\x96\x27\x3f\x2c\x5e\x7c\xfb\xd3\xf7\xd9\x69\xf6\x0f\xf6\x63\x96\xe7\x2f\xbe\xff\x6e\xfe\x4d\xf6\xe3\xb7\xa7\xbd\x01\xf6\xc3\x0f\xd9\xfc\x9b\xec\xa7\xef\x5e\x7c\xba\x2a\xe4\xe6\xd3\x7f\xa4\xca\x4b\xa6\x6e\xa7\x7a\xbd\x1c\x0d\xca\x31\xe0\xa8\xf4\xb1\x16\x71\x89\xe7\x88\x97\x6c\x89\x27\x7a\xbd\xfc\xfa\xae\x2c\xd2\xdc\x76\x77\x27\x32\xad\x4e\xdb\x56\x8f\x3f\xd8\xe1\x8f\x69\xf2\x43\xfc\xc9\xef\xee\xb0\xad\x05\x2b\x49\x07\x9f\x67\x36\xcc\x5c\x6a\x3f\x1a\x36\x80\xde\x96\x73\x49\x5b\xf4\xfa\xea\x7a\xcf\xb4\x1c\x75\xa6\x78\x45\xf9\xd7\x0c\x46\xd7\x74\x56\x2c\xc2\x12\x36\x03\xa1\x94\xa8\xd6\x98\x03\xb3\x69\x28\x7a\x39\x8c\x84\x15\x16\x15\x6c\x65\x0d\x39\xae\xb1\x90\xf6\xb7\x02\x41\x19\xd8\xd5\x35\xfc\x4d\x0a\xda\xc9\xe9\x9e\xb5\xf1\xce\xa0\x12\xac\xf8\xe3\xed\x6f\x7d\x0c\xbe\x6e\x87\xc6\x0d\xc8\xfc\xda\xc7\x0b\x33\x95\x62\x41\xcc\xa5\x5a\x8e\xf6\x80\xa0\x90\x4b\xa9\x67\x7e\x0b\xf7\x98\x4a\x52\xa2\xa6\x67\x89\xb0\xda\xfd\x8c\xcc\x86\xca\x2f\x35\x3a\x48\x58\x3f\xd9\x3a\x01\xc9\xfa\x69\x5e\xc8\xec\x36\x5b\x31\x2e\x46\x69\xb8\x80\x3d\x2b\x52\x4f\x9f\x1c\x3b\xba\x21\x6c\x38\x7a\xd8\xe4\xe0\x2d\x2e\xe0\x3c\x2a\xf6\xa6\x2c\xcb\xa8\x62\x9c\xce\xa5\x52\x72\x73\xf6\x55\xaa\xd6\xa1\x52\x78\xb6\x93\xa9\x0c\x2b\x78\x71\x01\x15\x13\x3c\x1b\x8f\x7e\xb5\xb9\x88\x90\x06\x1c\x7f\x60\xa0\x70\x81\x8a\x2a\x4b\x82\x57\x48\xc2\x30\x77\x02\x0e\x58\xed\xa0\x43\x2b\x98\x61\xd8\xcd\xa2\x84\xb2\xaf\xce\x30\x74\x94\xcf\x93\x3b\x74\x6d\xda\xb3\x2f\x3a\x39\x01\x3f\x93\xac\xf2\x79\xbc\x23\x3b\xa9\x14\x5f\x33\x83\xc1\x2f\xac\xea\x2e\xff\x7f\x54\xde\xdf\xb8\xb8\xc5\xdc\xc5\x47\x0b\xa3\xc4\xe6\xde\xa7\x4b\x82\x87\xc1\x04\xa9\xab\xd9\x13\x16\xd8\x5f\x5b\xec\x5f\x36\x58\xe6\x09\xcb\x86\xe2\x68\xff\x02\xae\xec\x7b\x5d\x56\x66\x6b\x99\x84\xf6\xc3\x0c\xc6\x94\xd0\x51\xf6\x9a\xe8\x05\xdc\x27\x8a\xb3\x87\x47\xc2\x8c\x07\xf4\xd9\x71\x70\xcb\x69\x7f\xed\xf1\x9e\xf8\x91\x1e\x8a\x9f\x3e\xa4\xf2\x6b\xc1\x8b\xa1\xfa\x62\x89\xe6\x5d\x5d\x55\x52\x19\xcc\xdb\x6e\x09\x48\x7b\x6a\xd8\xf2\x47\xf9\x0a\x84\x41\xc1\xb5\xad\x84\x5d\xc1\x11\x75\x63\xb8\x6e\xe0\x67\xcb\xb3\xca\xd7\xcf\x10\x57\x03\x89\xa5\xc8\xba\xbe\x8b\xf4\x8b\x94\x45\xdf\x82\x14\xc3\x74\xa0\xb2\x04\xbd\xe9\xe7\x70\x1f\xeb\x1c\xcf\xfe\x60\x1d\x70\x89\x76\xb1\xf1\xe4\x23\x9c\x83\x51\x35\x26\x0b\x9b\x88\x70\x5f\x8a\xcf\xf5\xae\x22\x63\xd3\x00\x73\xe2\x64\xdb\x53\x3e\x0d\x99\xe2\x83\xb1\x45\xd2\xc5\x05\x2c\x58\xa1\x31\xbd\x69\xc0\x05\x37\x9c\x15\xfc\x4f\x57\xb6\x86\xfa\x9b\x99\xb6\x7f\x60\x61\x65\x3b\x68\xbc\x6c\xd9\x10\xe1\xb8\x57\x88\x4f\xfa\xa5\x08\xc9\x17\x58\x9e\x07\xe6\x3b\x7b\xc2\x73\x14\x86\x2f\x38\x2a\x38\x87\xd1\x4e\x94\x1a\xed\xf2\xec\xc4\x5c\x38\xef\x56\xc8\xe3\x96\xd7\xac\xc3\x77\xf2\x7c\x97\x47\x1b\x48\xe1\xbc\x53\xa9\x3e\xce\xa1\x87\xfa\x7f\xa2\x89\x4c\xe7\xbb\x4a\xbb\x9d\x0b\x8f\x5b\x1f\xbe\x08\xab\xce\x6a\x7b\xf6\xb6\x6f\xb1\xde\xd2\x1b\x6e\x56\xb9\x62\x9b\xee\xc3\x68\x42\xdb\xfc\xb4\xae\xc5\x6e\x5d\x8f\xd0\x75\x78\x7d\xa6\xc6\xd4\xb2\x2e\x51\x98\x88\x90\x89\xbc\xe1\xee\x1d\xd3\x13\xd9\x9e\x76\xd3\x1f\x9c\x0e\x2e\xfd\x6f\xe3\x63\x21\x79\xbb\xed\x53\x61\x59\x49\xc5\xd4\xd6\x77\x16\x43\xb3\xda\x26\x8d\x94\x26\xca\x22\x8f\x38\xd8\x36\xad\xeb\x26\x3b\x01\x14\xc2\x1c\xb9\x58\x82\xf1\xfd\x28\x85\xf9\x94\x16\x52\x9d\xc6\x86\xc0\x4d\xb1\x8d\xf8\x84\xee\x9f\x5f\x56\x46\x3d\x40\xcb\xd9\x75\x13\x41\x4b\xe0\xc6\x36\x0e\x6d\xcb\xad\x92\x54\xa3\xc4\x32\x61\xa1\xd1\xb6\x4b\xd2\x8a\x87\x6d\x0e\xa6\xeb\xf5\xd2\x9f\x1e\xfc\x7b\x9e\x14\xfd\x3d\xf6\x5b\x93\x42\xd1\xd9\x71\xb7\x0f\xd9\xfa\xab\xa3\x98\x0c\x01\xcb\x2b\xff\x79\xb8\xf2\x06\x96\xf3\xff\x62\xd6\x07\x97\x05\x14\xcb\x73\x1d\xb1\xe1\x46\x37\x6e\xe3\xf7\xa5\xe7\x45\x72\x23\x50\xe9\x03\xb0\xc6\x35\xb0\xa2\x90\x1b\x87\xa5\x1c\xb5\x51\xd2\x75\xab\x35\x2d\xef\x44\x9b\x63\xc6\x6a\x8d\x2d\x7c\x63\x6f\x22\x91\x3b\x30\x25\x40\xa2\x0a\x92\xf8\x36\xab\xed\x55\x5a\xda\xbf\xb7\xb2\xaf\x58\xac\xd7\x1c\x51\x10\xc2\x74\x5d\x52\x41\x24\x72\xd7\x35\x5e\x48\xdb\xfd\xf6\xf0\xb2\x12\x86\x1e\xf6\x10\x90\xfc\x46\xf8\xf4\xf9\xe7\x4b\xb1\x0d\x1d\xee\x24\x6a\xfa\x01\xb8\xc9\xda\xe1\xec\xd8\x79\x2e\xd3\xcf\x53\x18\x3c\x18\x6c\x5f\x3b\x7e\x3b\x91\x89\x3e\xd1\x08\x9c\xc3\xe9\xf4\x34\x1a\x0f\xbb\x12\x87\xc6\xc4\x99\x18\xfc\x7b\xe7\x2a\x2a\xe4\x05\x33\xf8\xb5\xe9\x46\x9e\x7d\x35\x98\x80\xa6\xcc\x11\x78\xbf\x0f\x66\xb1\xea\xed\x38\x6c\x70\x90\x88\xde\x47\xfb\x44\x01\xa2\x30\xe3\x15\x47\x41\xa8\x08\xeb\xef\x2c\x1d\xa4\x77\x25\x54\xf8\xe7\xcb\xa6\x44\xb2\xb6\xa7\x06\x6a\x12\xa4\xbd\x92\xbc\xf7\xf5\x50\x5f\x89\x57\x0e\x55\x76\x7e\xd0\x5c\x84\x58\xeb\x2f\x49\xba\x7c\x54\x4a\xa3\x8e\x36\xd3\x18\xa6\x67\xc7\x91\x91\x07\xa3\x4c\x3f\x5f\x3d\x30\xdc\xc4\xc7\x8a\xdb\x47\xd2\x02\x58\x37\x7a\xfc\x89\x4a\xee\x1c\x69\xe1\xa0\xe0\xed\x39\xc0\x8a\x82\x8e\x14\x7f\x1e\x4c\xe1\xd2\xdd\xe0\x94\xb5\x76\xe7\x82\x4b\x48\xc3\xdd\xd3\x0e\x47\x5b\x79\x7a\x83\x11\xef\xe6\x9c\xe9\x5f\xb6\xd1\x03\xa9\x72\x77\x39\x64\x43\x95\x1b\x8f\x39\xba\x4a\xda\xdf\xfa\x30\xd7\x5c\x09\x96\x0e\xc1\x40\x37\xb7\x23\xae\xf1\x42\x79\xde\xfe\x28\xb2\x5b\x18\x3c\xf9\x20\x7a\xe4\x5c\x39\x9d\x9e\x26\xb7\xdb\xbb\xfe\xb8\xef\x91\x7c\x11\x87\x97\x97\xc4\x21\x51\xf8\x44\xc2\x76\x6e\x8d\x13\x29\xf9\xa1\x53\x9f\xc3\x71\x3a\xc9\x82\xa8\xf4\x71\xbf\x3a\x57\xb1\xee\x9e\xee\x19\x0c\xdc\x3c\x86\xf3\xcf\x9d\x8c\x76\x83\x98\xbd\xc0\xf6\x7b\xeb\x6e\x26\xe9\x6c\x09\xb7\x79\x87\xdd\xe2\xf9\xeb\xc1\xfb\x08\x2f\x44\xee\x2e\xdc\x0f\xf4\x1d\x22\xd0\x9d\x05\x8f\xec\xa1\x4c\x48\x2c\x83\x47\x98\xce\xbd\xfe\xd1\xa0\x07\x75\x29\xfa\x3e\xb4\x17\x8b\xad\xc8\x07\x25\x47\x3d\x2c\xfc\x5f\x70\xf0\x75\x2a\x81\xc2\x92\x0f\xbc\x17\xe1\xbe\xc3\x7b\x11\x31\xb7\x69\xa7\x62\xf8\xb2\x7c\xac\x87\xba\x64\xac\xec\xe2\xef\x8b\x62\xe4\x5f\x1b\x1f\xff\xda\xd8\xf8\x17\xc4\xc5\xae\x43\x25\xe3\xe1\x3a\xd4\xcd\x4d\xd1\xfd\xf3\x63\xc1\x30\x5c\xb3\x05\xca\x1e\x50\xdb\xc6\x6b\xfa\xd5\x8f\xdd\x2e\x6b\x83\x10\x38\x20\xb4\x82\x8d\xa9\xf6\xca\xf5\x0b\x39\x45\x48\xb3\x45\x7d\x37\x46\x5b\x74\x77\x9c\x27\x6e\x91\xf4\x47\xf7\xbe\xeb\x02\xe7\xf0\xcd\xe9\x29\xe5\x84\x31\x7d\xff\x3d\x1e\x38\x87\x13\x8f\x8b\xa8\x63\xe9\x5e\x03\x8a\x9a\x17\xbf\x3a\xf5\xda\xb7\x55\x2c\xc4\xfb\x41\xcc\xc2\xc2\xbf\x00\x45\xa8\x64\x6b\x24\x80\x73\x11\xbd\x07\xe3\x58\x36\x3f\xa3\xcc\x39\x6d\xc6\xcf\xd2\xfe\xf9\x24\xd6\x3a\xf4\xcc\x49\x9a\xb1\xef\xe1\x1d\x81\x91\xb3\xb4\xf2\x3e\x91\x4a\x28\x9f\xb8\x9f\xef\x75\xc5\x3b\xe5\x36\xde\x55\x52\x63\xf7\xb0\xb0\x13\x6f\xbc\x07\xdd\x40\x89\x66\x25\x5d\xc9\xb2\x44\x73\x69\xbb\x6f\xbe\x89\x15\xc6\xcc\x4a\xc9\x7a\xe9\xcc\x7c\x13\x72\xdd\x1b\xb0\xc7\xd3\x82\x65\x5d\x6b\x86\xd2\x07\x6e\xba\x7d\x8f\x9b\x24\x27\x3f\x9c\x66\x94\xb6\x5d\xc1\xc5\xed\x60\xf6\x3f\xf0\x46\xca\xc3\xcb\xb8\xb7\x7f\xe2\xac\xf7\x58\x6f\xdc\x30\xb5\x44\xb3\x6f\x73\x9a\xe9\x9d\x5d\x22\x10\xb9\xc3\xbf\x05\x91\x3b\xc7\xc7\xfb\xe1\x60\x89\x1c\x1c\x92\x3e\x32\xf1\x4e\xfb\xf0\x0c\xfe\x17\x00\x00\xff\xff\xcc\xaf\x04\x79\x5f\x29\x00\x00" +var _exampletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\x5f\x6f\xdb\x38\x12\x7f\xcf\xa7\x98\xfa\x80\x3d\x1b\x4d\x9c\xb4\xdb\xf6\x76\x8d\xb8\x69\xb6\x6d\xee\x0e\xd8\x02\x45\x9b\xed\x3e\x14\x45\x43\x4b\x63\x9b\x17\x89\x14\x48\xca\x8e\x37\xc8\x77\x3f\xf0\x9f\x44\xca\x94\xe3\xa6\xdd\xbc\xc4\x96\x38\xc3\xf9\xf3\x9b\xe1\xcc\xd0\xb4\xac\xb8\x50\x70\x51\xb3\x05\x9d\x15\x78\xc9\xaf\x91\xc1\x5c\xf0\x12\x06\xd1\xb3\xa3\xd5\xd3\xc1\x81\x5b\xfc\x0e\x15\xc9\x89\x22\x9f\x28\xae\xa5\x5b\x1c\x3d\x6b\x56\x46\x2c\x52\x64\xfd\x0b\xda\xdd\xea\x42\xd1\xaa\xc0\x4f\xa4\x2e\x54\xb3\x5d\xf4\x70\x9c\xe5\x59\xb3\x5e\x53\x7f\x40\xc9\x8b\x15\x0a\xb7\x3a\x7c\x64\xd7\x1e\x90\x2c\x43\x29\x87\xa4\x28\x46\x90\x71\xa6\x04\xc9\x14\xbc\xbd\x21\x65\xe5\x84\x99\x44\x8c\x0e\xbb\x62\xdc\x1e\x1c\x00\x00\x1c\x1f\x1f\xc3\xe5\x12\x01\x57\xc8\x14\xa8\x25\x51\x40\x25\x60\x49\x95\xc2\x1c\xd6\x4b\x64\xc0\x70\x0d\x4a\x73\x94\x40\x04\x42\x49\x99\xc2\xdc\x10\x87\x32\x58\x06\x66\x67\xf9\xce\x2c\x19\x92\x92\xd7\x4c\x4d\xe0\x8f\x0b\x7a\xf3\xe2\xd9\x21\xa8\x4d\x85\x13\xf8\xa8\x04\x65\x8b\x51\xb0\x3d\x57\xa4\x00\x59\x57\x55\xb1\x01\x3e\x8f\x94\x90\x40\x19\xe0\x0d\x95\x0a\x59\x86\xe1\xa6\x5e\xe7\x11\xac\x88\x00\xa5\x79\x7c\x34\x2c\x26\x70\x7b\x69\x36\xb2\xdb\xde\xb5\x1b\x9d\xe7\x25\x65\xf0\x9e\xa8\xe5\x96\xf4\x05\x2a\xfb\xfa\xa3\xe2\x82\x2c\x50\x2f\xd2\xa2\x36\x5f\x5a\x2e\x17\x35\xcb\x14\xe5\x0c\x14\x07\x81\xaa\x16\x0c\xd4\x12\x8d\x72\xd2\x1a\x50\x7f\x6d\x5c\x42\xb5\x2e\x25\x32\x25\xb7\x36\x5d\x51\x5c\xc3\xbc\x66\xb0\x40\x65\xbc\xa2\xe5\x96\xc3\xd1\x04\x3e\xeb\x4f\x5f\xe0\xd6\x90\xe8\x3f\x2d\x9f\xde\xe1\x5c\x08\xb2\x69\xde\x4f\xed\x87\xd3\x57\xa1\xc9\xc6\x86\xd5\xcb\xe1\xe8\x4b\x43\xed\xc5\xf4\x0c\xcc\x8b\xc0\x30\x86\xc2\x7f\x6b\x9e\xbe\x25\xd9\x12\x6a\x89\x02\xa4\xe2\x02\x25\x10\x06\x94\x49\x45\x58\x86\xda\x4f\x9c\x15\x1b\xa3\xab\x21\xd7\x8e\x52\x4b\xa4\x76\x35\x59\x60\x04\xaf\xb9\x33\x9a\x74\xcb\x1c\x0d\x61\x39\x2c\xf8\x0a\x05\xc3\x1c\x66\x96\x5b\x25\xd0\x3c\xaf\xb8\x54\xda\x8c\x39\x35\x84\x0d\x3b\xca\x3a\xc1\x6e\x40\xaa\x96\xb8\x31\xf0\xcc\x48\x51\x60\x3e\x8e\x76\xcf\x96\x98\x5d\x4b\x58\x92\xaa\x42\x06\x44\x81\xa8\x99\xa2\x25\x1a\x52\xd4\x61\x46\x1a\x09\x35\xfc\x3b\x3c\x1a\x5e\x3a\x98\x6a\x91\xa1\x5e\xc1\xac\xfe\x33\x84\x4c\x20\xd1\xc1\xe2\x34\xd3\x9e\xc7\x1b\xa5\x2d\x14\x01\xc1\x43\x63\xd3\xb0\xd3\xe2\xe6\x38\xa7\xcc\x10\x1f\x82\xe4\xfa\xbd\x40\x2d\x02\xe3\xb0\x26\x1b\x98\x73\x2d\x5b\x49\x0a\x9a\x51\x5e\x4b\xeb\x0e\xc5\xdd\x9e\xd6\x8a\xad\x69\x78\xed\xb6\xa5\x0c\x08\x15\x63\x38\x07\x59\x61\x46\x49\x01\x26\x24\x05\x08\xa7\x01\x30\xc4\x5c\x6a\x4e\xb3\x56\x06\xc5\x4d\x70\x37\xec\xda\xc0\x8f\x4d\x11\x62\xb8\x61\x68\x44\x99\xc4\xae\xb1\x50\xf4\xa9\x26\xf4\x88\x89\x57\x98\x91\xc2\x83\x49\x2d\xa9\x84\x55\x83\xc3\xad\x50\x21\xc2\xaf\xf6\x81\x7d\xd0\x5d\x28\xb1\x98\xdb\x95\xb2\x2f\x88\x7b\x29\xaa\x7a\x56\xd0\xcc\x12\xbc\x6f\x3e\xc7\x72\x7f\x30\x51\x24\x8d\x57\xdd\x0e\x50\x11\xb5\xd4\x28\x12\x68\x1e\x1b\x05\x40\x2e\x79\x5d\xe4\x3a\xdc\xa8\x46\x92\x01\x89\x09\xa1\x3c\xad\x5b\x90\x06\xde\xe0\x5c\xb3\x08\x64\xd6\xe9\x20\xf8\x7a\x16\x24\x85\x20\xb4\xb5\x26\x63\x99\xd0\xf4\xae\x5f\x07\xab\x73\xac\x82\x77\x82\xd7\x61\x49\x56\x08\xc4\x2f\xcd\x48\x45\x66\xb4\xa0\x6a\xb3\xaf\x22\xad\x2d\xb5\x1e\xed\xb7\x5d\x6a\xb4\xbe\x48\x69\xd1\x9b\x40\xf5\x99\x9b\xcc\x9d\x01\x7f\x9b\x2e\xfb\xcf\xec\xf1\xc5\xa5\xfe\xff\x72\x38\x3a\x8c\xc8\xfd\xdf\xfd\xe4\x6f\xa8\xac\x0a\xb2\xf9\x0e\x0e\x26\x66\xde\x10\x45\xa2\x14\x7e\x9f\x05\x84\x3d\xe7\x35\x93\xe1\x57\xf3\x78\x62\xf6\x1a\x4d\xe0\x9c\x6d\x3e\x2a\x51\x67\xaa\x6b\x74\xb9\xa6\x2a\x5b\x5a\x1e\xb7\x5b\xd2\x66\x44\xe2\x3e\xe2\x5a\x7b\x4d\x92\xda\x3a\xb3\xdf\xcb\x60\x98\xa4\xd6\x7f\x73\xe5\x2c\x3a\xb1\xe0\x08\xf5\xfc\x16\x6f\x8c\x80\xc8\x47\xbb\x05\x71\x8b\xcf\xd2\x8e\xb3\xc2\x34\xce\x79\x90\x38\xa1\x6b\xf7\x10\xa8\x59\x7e\x96\x94\x68\xf4\x50\x97\xb5\x56\x49\x7b\x4d\x17\x1b\x25\xe6\x94\xc0\x34\x2e\x95\xc7\xef\xf4\xd3\x7e\x67\x19\x1b\xd1\x02\x27\x1d\xb2\xff\x5c\x5e\xbe\xbf\xa0\x05\xee\xa6\xac\x45\x31\x81\xc1\x52\xa9\x4a\x4e\x8e\x8f\x89\x94\xa8\xe4\x78\x8d\x33\x49\x15\x1e\x69\xb6\x72\x9c\xf1\xf2\xf8\xf9\xfc\xc5\xd3\x5f\x9f\x65\x27\xd9\xbf\xc8\x2f\x59\x9e\xbf\x78\xf6\xf3\xec\x49\xf6\xcb\xd3\x93\xce\x0b\xf2\xfc\x79\x36\x7b\x92\xfd\xfa\xf3\x8b\xaf\x17\x05\x5f\x7f\xfd\x93\x8b\xbc\x24\xe2\x7a\x2c\x57\x8b\x41\xaf\x1c\x3d\x51\xab\xff\x8c\x45\x6c\x65\x39\xa0\x25\x59\xe0\xb1\x5c\x2d\x1e\xdf\x94\x45\x9a\xdb\xb6\x77\x22\xd3\xca\xb4\x6d\xe5\xf0\xb3\x79\xfd\x25\x4d\xbe\x4f\x3c\x39\xef\xf6\xdb\x9a\x91\x52\xeb\xe0\x6a\xc6\x86\x99\xad\xdd\x07\xfd\x06\x90\x9b\x72\xc6\xb5\x8b\xde\x5e\x5c\xee\x58\x96\xa3\xcc\x04\xad\x74\x2d\x35\x81\xc1\xa5\x3e\x52\xe6\x7e\x0b\x53\x4d\xe8\xf2\xa6\x96\x98\x03\x31\x25\x25\x3a\x39\x14\x87\x25\x16\x15\x6c\x78\x0d\x39\xae\xb0\xe0\xe6\xb3\x00\xa6\xab\xa9\x8b\x4b\xf8\x07\x67\xda\x93\xe3\x1d\x7b\xe3\x8d\x42\xc1\x48\xf1\xc7\x87\xdf\xbb\x18\x7c\xdb\xbe\x1a\x36\x20\x73\x7b\x1f\xcd\xd5\x98\xb3\xb9\x66\xce\xc5\x62\xb0\x03\x04\x05\x5f\x70\x39\x71\x2e\xdc\x61\x2a\xae\x8b\x2e\x39\x49\xa4\xd5\xf0\x6f\xa0\xd6\xba\xcf\x12\x83\xbd\x84\x75\x8b\x4d\x10\x68\x59\xbf\xce\x0a\x9e\x5d\x67\x4b\x42\xd9\x20\x0d\x17\x30\x07\x47\xea\xe9\x83\x73\x47\x98\xc2\xfa\xb3\x87\xa9\x21\x3e\xe0\x1c\xa6\x51\x37\x37\x26\x59\xa6\x5b\xc2\xf1\x8c\x0b\xc1\xd7\xa7\x3f\xa5\xfa\x16\xdd\xf1\x4e\xb6\x0a\x9a\x7e\x05\xcf\xce\xa0\x22\x8c\x66\xc3\xc1\x6b\x53\xb2\x30\xae\xc0\xf2\x07\x02\x02\xe7\x28\x74\xeb\xa8\xe1\xe5\x0b\x37\xcc\xad\x80\x3d\x56\xdb\xeb\xd0\xf2\x66\xe8\x0f\xb3\xa8\x08\xed\xaa\xd3\x0f\x1d\x81\x19\xd2\x15\x8a\x80\xae\x2d\x88\x76\x65\x27\x2b\xe0\x37\x92\x55\x82\xaf\x68\xee\x77\x3b\xae\x04\x5d\x11\x85\x3e\x2e\x8c\xea\x46\xd5\xfb\xe5\xfd\x9d\xb2\x6b\xcc\x6d\x7e\x34\x30\x4a\x38\xf7\x36\xee\x0e\x3e\x38\xd2\xbb\xde\x6a\x29\xd4\xec\x01\x1b\xfc\x66\x3b\x86\xc3\x68\x12\x32\xf6\x1f\x76\x6f\xeb\x2d\xf3\x80\x6d\xdf\x3b\xd2\xdd\x1b\xd8\x16\xee\x6d\x59\xa9\x8d\x61\xe2\xe7\x0a\x13\x18\xce\x6b\xa6\x2b\xd9\x44\x5b\x7f\x9b\xe8\xaf\xee\xee\xc9\x32\x0e\xcf\xa7\x47\x3e\x2a\xc7\xdd\xad\x87\x3b\xd2\x47\xfa\x55\xfc\xf4\x2e\x55\x6b\x33\x5a\xf4\x75\x21\x0b\x54\x1f\xeb\xaa\xe2\x42\x61\xde\x0e\x3e\x80\x9b\x43\xc3\x74\x4c\xc2\xf5\x29\x04\x0a\x2a\x4d\x53\x6b\xdb\x92\x68\xca\x42\x65\x83\x3e\x53\x14\x57\xae\x15\x86\x1d\x6d\x42\x62\x5f\x6d\x6a\x37\x32\xfa\x8d\xf3\xa2\x6b\x4e\x9d\xcf\xa4\xa7\x32\x04\x9d\xe5\x53\xb8\x8d\x0d\x10\xaf\xfe\x6c\x82\x71\x81\x66\xb3\xe1\xe8\x0b\x4c\x41\x89\x1a\x93\xed\x4f\x44\xb8\x77\xed\x4f\xe5\xb6\x56\x43\xd5\x20\x76\x64\x05\xdd\xd1\x71\xf5\xd9\xe5\xb3\x32\xad\xd4\xd9\x19\xcc\x49\x21\x31\xed\x4e\xa0\x8c\x2a\x4a\x0a\xfa\x97\xed\x81\x7d\x53\x4f\x54\x3b\x1c\x30\x80\x33\x33\x33\x5a\xb6\x6c\x34\xe1\xb0\xd3\xd5\x8f\xba\x3d\x8a\x96\xcf\xb3\x9c\x7a\xe6\x5b\x0e\xa2\x39\x32\x45\xe7\x14\x05\x4c\x61\xb0\x95\xbe\x06\xdb\x3c\x83\x64\x0c\xd3\xb0\xc3\x1e\xb6\xbc\x26\x01\xdf\xd1\xa3\x6d\x1e\x6d\x86\x85\x69\xd0\xdc\xde\xcf\xa1\x13\x0f\xff\x46\x15\x99\xce\x8d\x8e\x76\x8c\x43\x02\x44\xbb\x24\xa7\x51\x6c\x4d\xb8\xc3\xd1\x5d\xf3\x75\xe4\x58\x53\xb5\xcc\x05\x59\x87\x0f\xa3\x05\xed\xec\xd3\x44\x20\xb9\xb6\x53\x41\x3b\xe8\x75\xf5\x1c\x11\x8b\xba\x44\xa6\x22\x42\xc2\xf2\x86\xbb\x8b\x5f\x47\x64\x06\xdc\xcd\x44\x70\xdc\xbb\xf5\x7f\x95\xcb\x98\x3a\x29\x98\xc9\x14\x96\x15\x17\x44\x6c\xdc\x2c\xd1\xcf\xae\x4d\x69\xa9\x8b\x49\x5e\xe4\x11\x07\x33\xa5\xb5\x43\x65\x2b\x80\x40\x98\x21\x65\x0b\x50\x82\x30\x39\x47\x21\x30\x1f\xeb\x8d\x44\x30\x25\x61\xb8\x2e\x36\x11\x1f\x3f\xef\x73\xdb\xf2\x68\xea\x67\x38\xdb\xf9\x21\x48\x0e\x54\x99\x51\xa1\x19\xb2\x55\x5c\x77\x32\xb1\x4c\x58\x48\x34\xb3\x97\xb4\xe2\xce\xe7\x71\xd2\xff\xd3\xd9\x91\xcc\x0a\x1c\x19\x14\x78\xcb\x76\x26\xee\x0f\x3f\x42\x3a\x51\x17\x7d\x3d\x72\x9e\x4b\x81\xec\xf4\x28\x1c\x4c\xb6\xb1\x6d\x29\x46\x7d\xb8\x73\xb6\xf9\x36\xd8\x39\xfb\xf3\xd9\xff\x30\xeb\x62\xcf\xe0\x8d\xe4\xb9\x8c\xd8\x50\x25\x9b\x10\x73\x6e\xeb\x44\x1c\x5f\x33\x14\x72\x0f\x28\x52\x09\xa4\x28\xf8\xda\x42\x2d\x47\xa9\x04\xb7\xe3\x6b\xa9\xb7\xb7\xa2\xcd\x30\x23\xb5\xc4\x16\xdd\x71\xb0\x69\x91\x03\x14\x6b\xbc\xa2\xf0\x92\xb8\xb9\xab\x19\x96\x1a\xda\x7f\xb6\xb2\x2f\x49\xac\xd7\x0c\x91\x69\x00\xca\xba\xd4\x5d\x15\xcb\xed\x18\x79\xce\xcd\x38\xdc\xa1\xcf\x48\xe8\x87\xda\x3d\x38\x33\xb9\x45\x03\xca\x39\xc4\xd5\xe2\xaf\xce\xd9\xc6\x8f\xbe\x93\xe8\xe9\x26\xed\xa6\x05\x80\xd3\x23\x1b\xe0\x44\x3e\x4a\x61\x71\x6f\xd0\x3d\xb6\xfc\xb6\x12\x98\xfe\x8b\xde\xc0\x14\x4e\xc6\x27\xd1\x7b\xef\x9d\x38\x9d\xf6\x1c\xaa\x5a\x7b\x9f\x0e\xb6\x2e\xb0\x7c\xb5\x31\x81\xd7\xcd\x24\xf4\xf4\xa7\xde\xaa\x36\x65\x16\xcf\xfb\x93\x37\x8f\x51\x73\x2b\x80\x7d\xc0\x44\xf4\xee\xa4\x48\x74\x35\x02\x33\x5a\x51\x64\x1a\x25\x7e\xff\xad\xad\xbd\xf4\xb6\x2f\xf3\xdf\x5c\x2f\x96\x28\x01\x77\x34\x56\x4d\xd9\xb5\x53\x92\x4f\xae\xc9\xea\x2a\xf1\xc6\xa2\xcb\xac\xf7\x9a\x33\x9f\x9a\xdd\x2d\x4a\xc8\x47\xa4\x34\x0a\xb4\x19\xc7\x70\x3d\x3d\x8a\x8c\xdc\x9b\x75\xba\x55\xf0\x9e\xe9\x27\x3e\x85\xac\x1f\xb5\x16\x40\xc2\x6c\xf2\x17\x0a\xbe\x75\x02\xfa\x73\x85\xb6\xc7\x06\x29\x0a\x7d\x02\xb9\xe3\x63\x0c\xe7\xf6\x8a\xa7\xac\xa5\x3d\x46\x6c\x99\xeb\x2f\xa7\xb6\x38\x9a\x76\xd6\x19\x4c\xf3\x6e\x8e\xa5\xee\x6d\x9c\x7e\xc0\x45\x6e\x6f\x8f\x4c\xea\xb2\xef\x63\x8e\xb6\x3d\x77\xd7\x42\xc4\x4e\x6c\xbc\xa5\x7d\x52\x90\xcd\x75\x8d\x9d\xe6\xe8\x1a\x71\xbf\xac\xb2\xdd\x76\x3c\xf8\x80\xba\xe7\xbc\x39\x19\x9f\x24\xdd\xee\x52\xc1\xb0\x1b\x99\x74\x1e\xa7\x9b\x97\x9a\x43\xa2\xad\x8a\x84\x0d\xee\x9c\x13\x35\xfe\xbe\x4b\x1f\xc1\x51\xba\x36\x83\xa8\xb1\xb2\x9f\x82\x3b\x5b\x7b\xa1\x77\x00\x3d\x57\x94\xfe\x5c\xb4\x27\xa6\x71\x14\x31\xd7\xdf\xce\xc7\xf6\x0a\x53\x9f\x39\xfe\xda\xef\xdb\xae\xfb\xdc\x7d\xe2\x6d\x84\x1f\xcd\xc6\x5e\xdb\xef\x19\x4b\x9a\x40\x06\x1b\x1f\x9a\x43\x5b\x23\xb3\xf4\x11\xa2\x82\x5f\x07\x1c\xf6\x46\x54\x48\xd1\x8d\xa9\xbd\xb0\xd9\x8a\xbe\x57\x11\xd5\xc1\xc6\xdf\x82\x8b\xc7\xa9\x42\x0b\x4b\xda\xf3\x2b\x0b\xfb\xdf\xff\xca\x22\xe6\x36\x0e\xba\x90\xef\xab\xdb\x3a\x28\x4c\xe6\xd0\x10\x8f\xdf\x95\x3b\x7f\x6c\xde\xfc\xb1\x39\xf3\x07\xe4\xcb\x54\x80\x25\xf3\xe4\xca\xf7\xe4\x4d\x43\xff\xea\xbe\x24\xe9\xef\xf6\x3c\x65\x07\xb0\xed\xb4\x37\xfd\xdb\x91\xed\xd1\x6e\x83\x14\xd8\x23\xe5\x82\xc9\xb5\xe6\x06\xf8\x3b\x39\x45\x88\x33\x03\x83\x30\x77\x1b\x94\x07\x41\x14\xcf\x62\xba\x6f\x77\xfe\x58\x06\xa6\xf0\xe4\xe4\x44\xd7\x8e\x31\x7d\xf7\x57\x41\x30\x85\x63\x87\x8f\x68\x4c\x6a\x7f\x5c\x14\x0d\x46\x5e\x5b\xf5\xda\x9f\xbb\x18\xa8\x77\x93\x9a\x81\x87\xfb\x79\x95\x46\x27\x59\xa1\x06\x3a\x65\xd1\x0f\x69\x2c\xcb\xe6\x63\x54\x61\xa7\xcd\xf8\x4d\xda\x3f\x1a\xc5\x5a\xfb\x41\xbd\x96\x66\xe8\x26\x87\x87\xa0\xf8\x24\xad\xbc\x2b\xb4\x12\xca\x27\x7e\x3b\xd0\x19\xc5\x07\xdd\x3b\xde\x54\x5c\x62\x78\x78\x98\x85\x57\x2e\x92\xae\xa0\x44\xb5\xe4\xb6\xc5\x59\xa0\x3a\x37\x33\x3f\x37\x2d\xf3\xef\xd4\x52\xf0\x7a\x61\xcd\x7c\xe5\x6b\xe1\x2b\x30\xc7\xd5\x9c\x64\xa1\x35\x7d\xab\x04\x57\xe1\x18\xe5\x2a\xc9\xc9\xbd\x4e\x33\x4a\xdb\xae\xa0\xec\xba\xb7\x3b\x38\x84\xe4\xa8\xfa\xee\x65\x7c\xa1\x70\x6c\xad\x77\xdf\x40\x5e\x11\xb1\x40\xb5\xcb\x39\xcd\xf2\xc0\x4b\x1a\x44\xb6\x28\x68\x41\x64\xcf\xf5\xe1\x6e\x38\x18\x22\x0b\x87\x64\x8c\x8c\x5c\xd0\xde\x1d\xc0\xff\x03\x00\x00\xff\xff\x1e\x5e\xd4\x96\x9f\x29\x00\x00" func exampletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -97,11 +97,11 @@ 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{0xe8, 0x70, 0x82, 0x12, 0x43, 0xa, 0xa3, 0x3e, 0x8d, 0xa7, 0xa3, 0xa0, 0xda, 0x9c, 0x14, 0x9e, 0xd3, 0xa9, 0xf4, 0xcd, 0xa2, 0xfe, 0xed, 0x18, 0xdd, 0xa4, 0x82, 0x36, 0x5c, 0x4f, 0x76, 0x2e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xee, 0x95, 0x51, 0xde, 0x3, 0xd6, 0x24, 0x25, 0x7f, 0x56, 0x6f, 0xf6, 0x0, 0xd3, 0x2e, 0x76, 0x93, 0xa4, 0x50, 0x45, 0xdc, 0xcb, 0xb9, 0x1, 0x1a, 0x1b, 0x16, 0x57, 0xbe, 0x96, 0x60, 0xbd}} return a, nil } -var _exampletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\xdd\x6f\xe3\x36\x12\x7f\xcf\x5f\x31\xe7\x03\x7a\x36\x9a\x38\xe9\xd7\x5e\x6b\xec\x76\x37\x7b\xdd\xe0\x0e\x68\x8b\x45\x9b\xb6\x0f\xc5\x62\x97\x96\xc6\x36\x2f\x12\xa9\x92\x94\x1d\x77\x91\xff\xfd\x30\xfc\x90\x48\x59\xb2\x1d\xa7\xe7\x97\xc4\x16\x67\x38\x9c\xf9\xcd\x07\x67\xc4\xcb\x4a\x2a\x03\x37\xb5\x58\xf2\x79\x81\xb7\xf2\x0e\x05\x2c\x94\x2c\x61\x94\xfc\x36\x3a\xf3\x2b\x7f\x40\xc3\x72\x66\xd8\xaf\x1c\x37\xda\xaf\x4c\x7e\x6b\x56\x26\xf4\x7d\x64\xc3\x0b\x46\x67\x67\x2c\xcb\x50\xeb\x31\x2b\x8a\x09\x64\x52\x18\xc5\x32\x03\x6f\xee\x59\x59\x79\x82\x59\x47\xe8\x8f\x67\x67\x00\x00\x97\x97\x97\x70\x2b\x0d\x2b\x40\xd7\x55\x55\x6c\x41\x2e\x12\x32\x0d\x5c\x00\xde\x73\x6d\x50\x64\x68\x49\xe2\xad\xd6\x4c\x81\x21\xf2\x9f\x2d\xf5\x0c\x7e\xb9\xe1\xf7\xcf\xbe\xb4\xeb\x1a\xfe\x3f\x1b\xa9\xd8\x12\x81\x89\x1c\xde\xd6\xf3\x82\x67\xf0\x96\x99\x95\xde\xe1\x56\xa0\x81\x5f\x59\x5d\x18\x4f\x41\xab\x66\x10\x7d\x19\xa6\x70\x7c\x1d\x41\xfb\x7f\xef\xfa\x9f\x30\x43\xbe\x46\xf5\x08\x92\xeb\xbc\xe4\x62\x50\xa8\x56\x91\x2b\x04\x5c\xa3\x30\x60\x56\xcc\x00\xd7\x80\x25\x37\x06\x73\xd8\xac\x50\x80\x59\x61\x6b\x1b\xae\x21\x53\xc8\x0c\xe6\x3b\x3b\x3a\x16\x4e\xfd\xff\x11\xdc\x70\x56\xf0\x3f\x31\x1f\x73\xf7\x7f\xaa\xea\xc9\xf1\xdb\x3b\x7b\x32\x85\xb0\xe1\x66\x95\x2b\xb6\xf1\xd8\x65\x4e\x87\x7b\x05\xf9\x2d\x90\x8c\x59\x29\x6b\x61\xc2\xfe\xe7\x96\xc5\x0c\xae\xf3\x5c\xa1\xd6\x2f\x4f\x92\x27\xc7\x4a\x6a\x4e\x4f\x8c\x3c\x4a\x9a\xef\x02\xc1\x8e\x34\x46\x9e\x22\x8b\xc0\x4d\x2c\x4f\xc9\xc5\x21\xc3\xfc\x60\x97\x74\xb6\x3f\xf1\xf0\xda\x28\xb9\x3d\xb0\xdf\xeb\x5a\x89\x27\xec\xc7\xec\x11\xed\xb9\x14\x28\xd4\xb2\x56\x19\x1e\x06\xa1\x3d\xa5\xfa\x97\x5b\x43\x0f\xe4\x06\xf3\xeb\x27\xc9\x30\xa7\x83\x3c\x46\x06\x7b\xf2\x46\x86\x68\xbb\x37\x2c\x5b\x41\xad\x51\x81\x36\x52\xa1\x06\x26\x80\x0b\x6d\x98\xc8\x90\xe2\x98\x14\xc5\xd6\x3a\x9d\xc5\x13\x05\x32\xb3\x42\xee\x56\xb3\x25\x26\x62\x2f\x6a\x91\x19\x2e\x5d\xbc\x6b\x69\x28\x64\x2d\xe5\x1a\x49\xf7\x30\x77\xdc\x2a\xe5\x42\x59\x25\xb5\x21\x7f\xce\xb9\x25\x6c\xd8\x71\xd1\x09\xb5\xc1\xf9\xb7\xd6\xdc\x19\x2b\x0a\xcc\xa7\xc9\xee\xd9\x0a\xb3\x3b\x0d\x2b\x56\x55\xa4\x27\x03\xaa\x16\x86\x97\x68\x49\x71\x8d\x0a\x58\x23\xa1\x55\x58\xca\xa3\xe1\xf5\x93\x57\x2a\xad\x10\xee\xfc\x73\x0c\xea\x0d\x27\xa3\x10\x84\xf7\x86\x34\x94\x44\x24\x6b\x33\x12\xb3\x61\xe7\xd0\xb9\xe0\xc2\x12\x9f\x83\x96\xf4\x5c\x59\x9b\x09\x09\x1b\xb6\x85\x85\x24\xd9\x4a\x56\xf0\x8c\xcb\x5a\x3b\x73\x18\xe9\xf7\x74\x5a\x6c\x55\x23\x6b\xbf\x2d\x17\xc0\xb8\x9a\xc2\x35\xe8\x0a\x33\xce\x0a\x8f\xb4\x16\x16\x02\x31\xd7\xc4\x69\xde\xca\x60\xa4\x45\x70\xc3\xae\xf5\xda\x54\x15\x31\x86\x1a\x86\x56\x94\x4e\x16\x9c\xbe\x55\x72\xcd\x73\x54\xe7\x9d\xdf\x43\x8e\xe8\xfe\xfe\x9a\x15\x84\xae\xf3\x34\xaf\x4f\x49\xef\x05\x99\xc9\x67\xd5\xd8\xb6\x36\x3d\xc2\xdc\x11\xfa\xd3\x6b\x58\x37\x21\xae\x2f\xa5\xfa\xd5\x4d\x3a\x4d\x98\xb6\x29\xc1\xda\x2f\x70\x26\xd4\x84\xb3\x5a\xed\x13\x56\x08\x44\x0d\x31\xe5\x8f\x71\x87\xf5\x04\x3e\x36\xcf\xe9\xa3\xb1\x58\x4c\x03\xcb\x17\x81\x79\xb3\xe4\x21\x15\xe5\x26\x60\xd2\x61\x87\xdd\x39\x27\x74\x41\x0a\x98\xfb\xa2\x96\x75\x89\xc2\x24\x84\xe4\x3f\x21\x09\x69\x47\xed\x89\x6c\x42\x6a\x1c\x70\x9a\x9e\xdc\x78\x5c\x69\x1f\x4b\x0c\x52\xed\xc4\xd4\xd6\xbb\x6b\x08\x3b\xb5\x76\x68\x59\xc9\x22\x4f\x38\x10\xe3\x52\x0a\xdc\x36\x4b\xe7\xc8\xc5\x12\x8c\x62\x42\x2f\x50\x29\xcc\xa7\xb4\x8d\x42\x53\x2b\xa1\xed\x7a\x81\x9b\x62\x9b\x70\x09\x0e\xe5\x37\x95\x89\x5b\x59\xc6\xce\x41\xc9\x61\xb8\xb1\xbe\x38\x8f\x92\x5c\xc2\x0b\x0b\x8d\x1b\x72\xaa\xe4\xa8\xc9\x92\x57\x15\x53\xac\x84\x10\xfa\x09\x54\x5e\x59\x84\x26\x97\x48\x9c\xa3\x74\xf2\x3a\x89\x95\x02\xcd\xb2\x73\x87\xb3\x7c\xdc\x09\x5a\xdc\x48\x61\x18\x17\x56\x23\xab\x84\x5d\x2d\x72\xdd\x2b\xa0\x87\x6e\xea\x26\xa1\x58\x60\xf3\x02\x27\x44\xdc\xb0\xea\x26\xb0\x19\xbc\x4a\x49\x9d\x44\x7b\x41\x99\x7c\xbd\xf0\xba\x48\x08\x28\xed\x0c\xd6\x2d\xee\x6f\xa8\x5b\x2c\x33\xb9\x11\xa8\x5e\x4e\x99\xab\x1b\x26\x09\x2f\xaf\xad\xe7\x17\x71\x48\x6b\xdd\xc8\x71\x9b\x3c\xca\x43\xbc\xda\xe5\xfc\xbf\x98\x75\xdd\xc4\xba\x06\xcb\x53\x6d\x03\x37\xba\x71\x74\x8f\xb7\x24\xa2\x20\xd8\x23\xe8\x01\xaf\xe1\x1a\x7c\xee\x26\x6a\x5f\x70\x58\x32\x4d\x5b\x3a\x71\xe6\x98\xb1\x5a\x63\xeb\x7c\x09\x97\x0d\x89\x19\x39\x1c\xb9\x16\xaa\xb0\xbb\x8f\xc2\x2d\xa6\xfe\xd1\xca\xbb\x62\xe9\x59\xe6\x88\x82\x90\xa6\xeb\x12\x73\x7b\x5c\x9b\x54\x16\xd2\x26\x47\xef\x2a\xbe\x24\x3a\xe8\x14\xce\x88\x87\xa1\x6c\x01\xec\x8c\xb0\xe1\x45\x31\xe8\x8f\xbd\x21\x99\x00\xec\x57\x8f\xdd\x86\x7d\xa0\xed\x86\x52\xba\x38\x58\xef\x83\xe7\x17\xbe\xce\xd6\x7f\x83\x57\xf1\xed\x6a\x9a\xea\xf9\x10\xd6\x3f\x75\xfc\xa6\xdd\xa8\xdc\x81\xfc\x6e\x71\x9c\x90\xb9\x1a\xf9\x20\xee\x13\x1a\x78\x01\x57\xd3\xab\xe4\x79\x40\x51\x1a\x60\x22\xf8\xfb\x05\xe3\xae\x5e\xf8\x22\x3d\xd5\xb7\xc4\xba\xb3\x86\x3e\x89\xa2\xa2\x4b\x26\xbc\x18\x7e\x74\x91\xb0\x4e\x58\x3e\x0c\xb9\x28\x81\x87\x4a\x19\xb9\x80\x25\x1a\x43\x88\x61\x45\x61\x51\x13\xb2\x3c\xb8\x7b\x38\xa7\x4d\xc9\x49\x5d\x31\x18\x4b\x31\x8c\x53\x1f\x3f\xae\xc9\xc5\x95\xdb\xe6\x76\x5b\xa1\x76\x55\x4d\xc0\x67\xcc\x7a\x6d\x6b\x0a\xb8\x75\x75\x42\x51\x63\x03\x59\x9b\xd7\xe6\x69\x32\x6a\xd5\xbd\xc6\x42\x56\x14\x04\x8c\x84\x3b\x21\x37\xb0\x59\xf1\x6c\x05\xd6\x51\xd0\xb8\xba\xac\x62\x5a\x87\x08\xa2\x5c\xd5\x42\x67\x1b\x4f\xa0\x44\xb3\x92\x03\x0e\xd7\x75\x86\x25\x1a\xab\x91\xf1\x64\x06\xbf\xd3\x69\xde\x7d\xec\x8b\x99\xf6\xd1\xf3\xe1\xbe\xc5\xf4\xe6\x96\xfe\x7e\x3b\x9e\x9c\xef\x58\x9f\x3e\x87\xc9\xbf\xe3\xba\x2a\xd8\xf6\x09\x1c\xac\x07\x7e\xc7\x0c\x3b\x99\xc7\x6d\x8b\xbf\x6f\xc7\x93\x77\x8f\x81\x59\x0a\xb0\xb6\x3c\xc6\x23\xb1\xe5\x62\x20\xe1\xc5\xc5\x40\x12\x35\x70\xc8\x51\x73\xe5\xd1\x34\xed\x87\x24\x68\xa3\xea\xcc\xd4\x8a\xb0\x50\x29\xa4\x64\x10\x00\xa9\xf0\x8f\x1a\xb5\xe9\x63\x30\x08\x8b\x18\x50\xef\x83\x58\xdb\x0a\x27\x33\xb8\x16\xdb\x9f\xed\x66\x2f\xbb\xb9\x7d\xc3\x4d\xb6\xb2\x8b\x7b\x62\x40\xc6\x34\x1e\x63\x44\x87\xa2\x59\xaf\xfd\xfc\x69\x0f\x32\x18\xf7\x52\xd3\x67\x61\x3c\xce\x7c\xd8\x8c\xcf\xf9\x18\x8c\x4e\x6c\x06\x38\x66\xf1\xcb\x7e\x28\x3a\x61\x1a\xc8\x9e\x24\x4e\x0c\xf8\x23\x04\x6a\x96\xbf\xec\x95\x68\x72\xaa\xc9\x5a\xad\xf4\x5b\x8d\xb2\x67\x89\x39\x67\xf0\xa2\x73\xd9\xfa\x81\x7e\xdd\x63\x2c\x5e\xe0\xac\x43\xf2\xef\xdb\xdb\xb7\x37\xbc\xc0\x61\x2a\xfa\xd4\xaa\x98\xc1\x68\x65\x4c\xa5\x67\x97\x97\x4c\x6b\x34\x7a\xba\xc1\x39\xe5\xd2\x0b\x62\xab\xa7\x99\x2c\x2f\xbf\x5a\x3c\xfb\xfc\x9b\x2f\xb3\xab\xec\x9f\xec\xeb\x2c\xcf\x9f\x7d\xf9\xc5\xfc\xb3\xec\xeb\xcf\xaf\x3a\x0f\xd8\x57\x5f\x65\xf3\xcf\xb2\x6f\xbe\x78\xf6\xfe\xa6\x90\x9b\xf7\xbf\x49\x95\x97\x4c\xdd\x4d\xf5\x7a\x39\x1a\x94\x63\x20\x06\xd1\xc7\x6a\x83\x14\x3b\x83\x11\x2f\xd9\x12\x2f\xf5\x7a\xf9\xe9\x7d\x59\xf4\x73\xdb\xb5\x4c\xa2\x56\xdd\xaf\x57\x3d\xfe\xdd\x3e\x7e\xd7\x4f\x7e\x8c\x2f\x79\xcb\x0e\xeb\x5a\xb0\x92\xce\xe0\x43\x5c\xc3\xcc\x55\x2f\xa3\x61\x05\xe8\x6d\x39\x97\x64\xa2\x37\x37\xb7\x7b\x96\xe5\xa8\x33\xc5\x2b\xaa\xba\x67\x30\xb2\x59\x74\x11\xb6\xb0\x75\x6a\x73\x43\x74\x95\x37\x7a\x39\xe8\xbe\x88\x45\x05\x5b\x59\x87\x64\x4a\xff\x2b\x10\x74\xad\xbb\xb9\x85\xbf\x4b\x41\x96\x9c\xee\xd9\x1b\xef\x0d\x2a\xc1\x8a\x5f\x7e\xfa\xbe\x8b\xc1\x37\xed\xa3\x71\x03\x32\xbf\xf7\xc5\xc2\x4c\xa5\x58\x10\x73\xa9\x96\xa3\x3d\x20\x28\xe4\x52\xea\x99\x37\xe1\x1e\x55\xc9\x8c\xb3\x42\xcf\x7a\x42\x6a\xfc\x19\x99\x0d\x37\x06\xd5\xe8\x28\x61\xfd\x62\xeb\x04\x24\xeb\xfb\x79\x21\xb3\xbb\x6c\xc5\xb8\x18\xf5\xc3\x05\x92\xba\x2b\xfe\x9c\x1c\x37\xe2\xf0\xf5\x84\x78\x1f\xb8\x0c\xa3\x54\xc7\xed\xfe\xdd\xa2\x3d\x1a\x00\x0c\x9b\x41\x85\x51\xc3\x2e\x93\xdd\x29\xc4\x3e\xcf\x77\xd2\x0f\xc9\x72\x0c\x8f\xca\x77\xba\x1c\x8f\xcb\x4a\xf1\x35\x33\x18\x00\x68\x99\x59\x5e\x87\x0f\xf3\x3d\x17\x77\x98\xbb\x40\x64\xed\xf5\xc9\xae\x44\x1f\xfb\xdb\x69\x0f\x83\x45\x56\x7c\xcc\x13\x36\x38\xd0\x97\xdb\xbf\x6f\x50\xcd\x09\xfb\x86\xfe\xe1\xfe\x0d\x5c\xe7\xe0\x4d\x59\x99\xad\x65\x12\x9a\x02\x33\x18\x53\xd9\x44\x55\x74\xcf\xb5\xf0\x80\xef\x36\x7d\x89\x84\xb2\xbb\xd5\x78\x8f\x63\xf6\x3f\x3a\xd1\x33\xd3\x2a\xf8\x54\xcf\x8c\xb8\x8c\x93\xb9\xe2\xd0\x8d\x6f\x32\x70\xc7\x8b\xb6\x13\xbc\x38\x4b\x17\x3c\xb4\x33\x84\xb4\x3f\x93\x76\x17\x9d\x15\x36\xdc\xac\x80\xc5\xed\x96\x3f\x51\xc9\xb6\x47\x2e\xf2\xa6\x5b\xc8\xdb\x66\x20\x2b\x0a\xaa\xa4\x7d\x53\x70\x0a\xd7\xae\x33\x5e\xd6\xda\x35\x07\x5d\x17\x38\xf4\xf4\x13\x6e\x76\x98\xe1\x6b\x70\x63\xa7\x3e\x03\x03\x0c\xfa\x41\xaa\xdc\x5d\xec\x6c\x7f\xc7\x3d\x6f\xb9\x65\x99\x6d\x13\xba\xe6\x20\x73\x09\x30\xf8\x71\xe8\x68\xe8\xa6\x27\xed\x92\xa3\xd9\x56\xb8\x3b\x59\x88\x9b\x86\xad\x6e\x42\xb7\x65\xb0\xfb\x4e\xf0\xde\x85\xe4\x0c\x5e\x75\x11\x7e\xa0\xcb\x76\x35\xbd\x9a\xc4\xa6\xeb\xed\xf0\xdb\x29\x2d\xd7\x46\x31\x23\x77\x5a\xf1\x03\x86\x8e\xac\xd7\x3b\x22\x3b\xd8\x94\x4d\x47\x62\xa4\x9e\x92\xdd\xf3\xb2\x2e\xe1\x8f\x9a\x09\xc3\xcd\x36\xee\xd2\xfa\x11\x4b\xd8\x25\x93\x75\x91\x7b\x61\x06\x7b\xb4\xdd\xc9\x88\x6b\x62\x59\x4a\x6f\x74\x37\x16\xf1\x9b\x1c\x75\x53\x73\x5b\xfe\x88\x1b\xc7\x7c\x60\xb2\x37\x83\x57\x7e\xf3\x8f\xbb\xbd\xa6\xbd\xa3\xc1\xe4\xeb\xfe\x7e\x6a\xbf\x04\x03\x0c\xf6\x76\x57\x87\x8d\xda\x99\x39\x1e\x6c\xd6\x90\xda\x5f\x1f\x41\x33\xa8\x56\x47\x6c\x91\xee\xf9\xf4\x68\xb0\x3b\xd8\xdc\xa7\xa5\xc0\x70\x38\x92\x85\xd9\x5f\x68\x2b\x3b\xac\x59\x97\x66\xe4\x18\x21\x1a\xb8\xd9\xe0\x4a\x16\xcd\x3c\xed\x71\x73\xb4\x06\x11\x3b\xdd\x8d\xdd\xa1\x44\x07\xee\x69\x1b\xba\x19\xe5\x75\xb7\x5a\x33\xd5\xf5\xab\xbe\x39\x58\x6a\x7c\xe2\xa6\xa3\x93\x9c\xdb\x26\x3a\xed\x5e\x86\xa0\x6c\xa2\xf7\x5c\xce\x13\x56\x31\x62\x62\x8a\x6e\x18\x7f\xcc\x88\xa6\xcf\xfd\x3b\x87\x7e\xdc\x34\xc6\xbd\x94\xf0\x18\x2f\x27\x0a\xd7\x12\xee\x19\xbb\x1c\x2c\x38\x2a\x85\x3d\x25\x88\x37\xb2\x6d\xda\xce\x60\xe4\x0c\x14\x64\xb3\xe9\x6d\x8e\xb0\xb4\xa0\x55\x64\x19\x61\xd3\xe5\xee\x15\xd5\xf3\x79\xee\x5b\xdc\x1d\x7b\x0f\xf0\x2d\x50\x6b\xc7\x94\x14\x12\xb0\xe4\x58\x8d\xf6\x54\x02\xa7\xb4\x92\x3f\xed\x1b\x2c\xed\xca\x0a\x7d\x07\x38\x38\x95\xea\xbc\x3d\xd2\x1d\x22\xc1\x93\xe6\x4e\x76\xce\xdb\x1f\xd1\xfb\x06\x6b\xdd\xe3\x24\xdf\xff\xea\x78\x43\x91\xf8\xf8\x58\xd3\xc4\xce\x3d\x8e\xef\xc7\x0c\xed\x58\x2d\xbc\x02\x72\x0e\xb8\x58\x60\x66\xf8\x1a\x8b\xad\xdd\x38\x78\x52\xbc\x7f\xd7\x87\x68\x83\x1f\xa5\xc1\x99\x1b\xb2\xb9\xfa\x2b\x7a\x5b\x87\xd5\x46\x96\xcc\x70\x0a\x0d\x5b\xd0\xf5\xdc\xbe\x3c\x81\x79\x33\x71\x4d\x38\xc5\x21\x27\x7d\xb3\xc4\x8a\x5d\x67\x46\xaa\xbf\x6c\xc6\x15\x8d\x82\x6b\xd5\xdf\x35\xee\x46\x08\x5a\xe8\x23\xc4\xff\x7b\xb0\x45\x54\x2c\x60\x6c\x78\x8e\xd5\x3f\x56\xea\xb8\x4f\xe7\x65\xa8\x5d\x5f\x88\xb0\x6a\xbd\x21\x3e\x82\x05\x7d\x1a\x04\x3e\xbb\xba\x8a\xc7\x5b\x76\x45\xf7\x96\x0f\x2f\xe0\xd2\x17\xde\xbb\xb7\xe6\x1e\xd2\xf6\x52\x4e\x94\x95\xfd\x96\x10\x86\x9b\x4f\x4a\xbb\xdb\x17\x18\x20\x0f\x0b\x53\xf2\xee\x9b\x8a\x43\x52\xdb\x75\xb1\x5b\x81\xab\x43\x22\x84\xda\x8b\x4f\x37\x6f\x46\xd9\xcc\xde\x55\xd8\x1a\xe9\xda\xc3\x45\xb8\x94\xb4\x68\x4e\x60\xd2\x1f\xc4\xba\xa6\x98\xa4\x87\xf1\x11\x64\x4a\xbb\x8c\x9f\x5f\x58\x66\xd1\xf4\xb2\x6b\xa1\x49\xdf\x79\x18\x38\xdd\x41\xc6\x2a\x36\xe7\x05\x65\x64\x9f\xdd\xed\x45\x2b\x8f\x5f\x1d\xc1\xfb\x4a\x6a\x8c\x93\xab\x5d\xf8\xc1\x5f\x95\x3e\xf8\x21\x19\x98\x95\x92\xf5\xd2\x69\xe7\x43\x30\xc4\x07\xb0\x55\xce\x82\x65\x91\x12\x92\x73\x14\x5c\xdc\x3d\xff\x64\xb8\x37\xb2\x1b\x9b\x0f\x75\x89\x0c\x53\x4b\x34\x03\xfa\x68\x56\x3e\x5d\x31\xf6\x55\xb2\x21\xed\x78\x73\x7e\x80\x05\xc7\xa2\x99\xe8\xc3\x87\x68\x2e\xd1\xaf\xb9\xd7\x81\xb0\x51\xdc\x3e\xbd\x1d\xdb\x04\xea\x55\xe4\xde\x3e\xd9\xa3\xb5\x68\x63\x99\x4d\x72\x2d\xb4\x93\xdb\xe7\x78\x3f\x92\x2d\x6d\x84\xe4\xae\xd7\xa6\x06\x7b\x43\x81\x8f\x89\xf8\xd5\x4a\xbd\x92\x9b\xa8\xbe\x6e\xde\xe1\xdb\x30\x0d\xbc\x7d\x65\xb8\xe1\x12\xc5\xce\x3d\x6f\x14\xf7\xbb\xe3\xc3\xd9\xc3\xd9\xff\x02\x00\x00\xff\xff\x75\x16\x68\xfb\xf8\x2e\x00\x00" +var _exampletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\xdd\x6f\xe3\x36\x12\x7f\xcf\x5f\x31\xe7\x03\x7a\x36\x9a\x38\xe9\xd7\x5e\x6b\xec\x76\x37\x7b\xdd\xe0\x0e\x68\x8b\x45\x9b\xb6\x0f\xc5\x62\x97\x96\xc6\x36\x2f\x12\xa9\x92\x94\x1d\x77\x91\xff\xfd\x30\xfc\x90\x48\x59\xb2\x1d\xa7\xe7\x97\xc4\x16\xe7\x83\x33\xbf\x99\x21\x67\xc4\xcb\x4a\x2a\x03\x37\xb5\x58\xf2\x79\x81\xb7\xf2\x0e\x05\x2c\x94\x2c\x61\x94\xfc\x36\x3a\xf3\x2b\x7f\x40\xc3\x72\x66\xd8\xaf\x1c\x37\xda\xaf\x4c\x7e\x6b\x56\x26\xf4\x7d\x64\xc3\x0b\x46\x67\x67\x2c\xcb\x50\xeb\x31\x2b\x8a\x09\x64\x52\x18\xc5\x32\x03\x6f\xee\x59\x59\x79\x82\x59\x47\xe9\x8f\x67\x67\x00\x00\x97\x97\x97\x70\x2b\x0d\x2b\x40\xd7\x55\x55\x6c\x41\x2e\x12\x32\x0d\x5c\x00\xde\x73\x6d\x50\x64\x68\x49\x62\x51\x6b\xa6\xc0\x10\xf9\xcf\x96\x7a\x06\xbf\xdc\xf0\xfb\x67\x5f\xda\x75\x0d\xff\x9f\x8d\x54\x6c\x89\xc0\x44\x0e\x6f\xeb\x79\xc1\x33\x78\xcb\xcc\x4a\xef\x70\x2b\xd0\xc0\xaf\xac\x2e\x8c\xa7\xa0\x55\x33\x88\xbe\x0c\x53\x38\xbe\x8e\xa0\xfd\xbf\x77\xfd\x4f\x98\x21\x5f\xa3\x7a\x04\xc9\x75\x5e\x72\x31\xa8\x54\x6b\xc8\x15\x02\xae\x51\x18\x30\x2b\x66\x80\x6b\xc0\x92\x1b\x83\x39\x6c\x56\x28\xc0\xac\xb0\xf5\x0d\xd7\x90\x29\x64\x06\xf3\x1d\x89\x8e\x85\x33\xff\x7f\x04\x37\x9c\x15\xfc\x4f\xcc\xc7\xdc\xfd\x9f\x9a\x7a\x72\xbc\x78\xe7\x4f\xa6\x10\x36\xdc\xac\x72\xc5\x36\x1e\xbb\xcc\xd9\x70\xaf\x22\xbf\x05\x92\x31\x2b\x65\x2d\x4c\x90\x7f\x6e\x59\xcc\xe0\x3a\xcf\x15\x6a\xfd\xf2\x24\x7d\x72\xac\xa4\xe6\xf4\xc4\xc8\xa3\xb4\xf9\x2e\x10\xec\x68\x63\xe4\x29\xba\x08\xdc\xc4\xfa\x94\x5c\x1c\x72\xcc\x0f\x76\x49\x47\xfc\x89\x9b\xd7\x46\xc9\xed\x01\x79\xaf\x6b\x25\x9e\x20\x8f\xd9\x2d\xda\x7d\x29\x50\xa8\x65\xad\x32\x3c\x0c\x42\xbb\x4b\xf5\x2f\xb7\x86\x1e\xc8\x0d\xe6\xd7\x4f\xd2\x61\x4e\x1b\x79\x8c\x0e\x76\xe7\x8d\x0e\x91\xb8\x37\x2c\x5b\x41\xad\x51\x81\x36\x52\xa1\x06\x26\x80\x0b\x6d\x98\xc8\x90\xf2\x98\x14\xc5\xd6\x06\x9d\xc5\x13\x25\x32\xb3\x42\xee\x56\xb3\x25\x26\x6a\x2f\x6a\x91\x19\x2e\x5d\xbe\x6b\x69\x28\x65\x2d\xe5\x1a\xc9\xf6\x30\x77\xdc\x2a\xe5\x52\x59\x25\xb5\xa1\x78\xce\xb9\x25\x6c\xd8\x71\xd1\x49\xb5\x21\xf8\xb7\xd6\xdd\x19\x2b\x0a\xcc\xa7\x89\xf4\x6c\x85\xd9\x9d\x86\x15\xab\x2a\xb2\x93\x01\x55\x0b\xc3\x4b\xb4\xa4\xb8\x46\x05\xac\xd1\xd0\x1a\x2c\xe5\xd1\xf0\xfa\xc9\x1b\x95\x56\x08\xb7\xff\x39\x06\xf3\x86\x9d\x51\x0a\xc2\x7b\x43\x16\x4a\x32\x92\xf5\x19\xa9\xd9\xb0\x73\xe8\x5c\x70\x61\x89\xcf\x41\x4b\x7a\xae\xac\xcf\x84\x84\x0d\xdb\xc2\x42\x92\x6e\x25\x2b\x78\xc6\x65\xad\x9d\x3b\x8c\xf4\x32\x9d\x15\x5b\xd3\xc8\xda\x8b\xe5\x02\x18\x57\x53\xb8\x06\x5d\x61\xc6\x59\xe1\x91\xd6\xc2\x42\x20\xe6\x9a\x38\xcd\x5b\x1d\x8c\xb4\x08\x6e\xd8\xb5\x51\x9b\x9a\x22\xc6\x50\xc3\xd0\xaa\xd2\xa9\x82\xd3\xb7\x4a\xae\x79\x8e\xea\xbc\xf3\x7b\xa8\x11\xdd\xdf\x5f\xb3\x82\xd0\x75\x9e\xd6\xf5\x29\xd9\xbd\x20\x37\xf9\xaa\x1a\xfb\xd6\x96\x47\x98\x3b\x42\xbf\x7b\x0d\xeb\x26\xc5\xf5\x95\x54\xbf\xba\x29\xa7\x09\xd3\xb6\x24\x58\xff\x05\xce\x84\x9a\xb0\x57\x6b\x7d\xc2\x0a\x81\xa8\x21\xa6\xfa\x31\xee\xb0\x9e\xc0\xc7\xe6\x39\x7d\x34\x16\x8b\x69\x60\xf9\x22\x30\x6f\x96\x3c\xa4\xaa\xdc\x04\x4c\x3a\xec\xb0\x3b\x17\x84\x2e\x49\x01\x73\x5f\xd4\xb2\x2e\x51\x98\x84\x90\xe2\x27\x14\x21\xed\xa8\x3d\x91\x2d\x48\x4d\x00\x4e\xd3\x9d\x1b\x8f\x2b\xed\x73\x89\x41\x3a\x3b\x31\xb5\xf5\xe1\x1a\xd2\x4e\xad\x1d\x5a\x56\xb2\xc8\x13\x0e\xc4\xb8\x94\x02\xb7\xcd\xd2\x39\x72\xb1\x04\xa3\x98\xd0\x0b\x54\x0a\xf3\x29\x89\x51\x68\x6a\x25\xb4\x5d\x2f\x70\x53\x6c\x13\x2e\x21\xa0\xbc\x50\x99\x84\x95\x65\xec\x02\x94\x02\x86\x1b\x1b\x8b\xf3\xa8\xc8\x25\xbc\xb0\xd0\xb8\xa1\xa0\x4a\xb6\x9a\x2c\x79\x55\x31\xc5\x4a\x08\xa9\x9f\x40\xe5\x8d\x45\x68\x72\x85\xc4\x05\x4a\xa7\xae\x93\x5a\x29\xd0\x2c\x3b\xb7\x39\xcb\xc7\xed\xa0\xc5\x8d\x14\x86\x71\x61\x2d\xb2\x4a\xd8\xd5\x22\xd7\xbd\x0a\x7a\xe8\xa6\x61\x12\x0e\x0b\x6c\x5e\xe0\x84\x88\x1b\x56\xdd\x02\x36\x83\x57\x29\xa9\xd3\x68\x2f\x28\x93\xaf\x17\xde\x16\x09\x01\x95\x9d\xc1\x73\x8b\xfb\x1b\xce\x2d\x96\x99\xdc\x08\x54\x2f\xa7\xcc\x9d\x1b\x26\x09\x2f\x6f\xad\xe7\x17\x71\x4a\x6b\xc3\xc8\x71\x9b\x3c\x2a\x42\xbc\xd9\xe5\xfc\xbf\x98\x75\xc3\xc4\x86\x06\xcb\x53\x6b\x03\x37\xba\x09\x74\x8f\xb7\x24\xa3\x20\xd8\x2d\xe8\x81\xa8\xe1\x1a\x7c\xed\x26\x6a\x7f\xe0\xb0\x64\x9a\x44\x3a\x75\xe6\x98\xb1\x5a\x63\x1b\x7c\x09\x97\x0d\xa9\x19\x05\x1c\x85\x16\xaa\x20\xdd\x67\xe1\x16\x53\xff\x68\xf5\x5d\xb1\x74\x2f\x73\x44\x41\x48\xd3\x75\x89\xb9\xdd\xae\x2d\x2a\x0b\x69\x8b\xa3\x0f\x15\x7f\x24\x3a\x18\x14\xce\x89\x87\xa1\x6c\x01\xec\x9c\xb0\xe1\x45\x31\x18\x8f\xbd\x29\x99\x00\xec\x57\x8f\x9d\xc0\x3e\xd0\x76\x53\x29\x5d\x1c\x6c\xf4\xc1\xf3\x0b\x7f\xce\xd6\x7f\x83\x57\xf1\xed\x6a\x9a\xda\xf9\x10\xd6\x3f\x75\xfc\xa6\xdd\xac\xdc\x81\xfc\xee\xe1\x38\x21\x73\x67\xe4\x83\xb8\x4f\x68\xe0\x05\x5c\x4d\xaf\x92\xe7\x01\x45\x69\x82\x89\xe0\xef\x17\x8c\xbb\x76\xe1\x8b\x74\x57\xdf\x12\xeb\xce\x1a\xfa\x24\x86\x8a\x2e\x99\xf0\x62\xf8\xd1\x45\xc2\x3a\x61\xf9\x30\x14\xa2\x04\x1e\x3a\xca\xc8\x05\x2c\xd1\x18\x42\x0c\x2b\x0a\x8b\x9a\x50\xe5\xc1\xdd\xc3\x39\x09\xa5\x20\x75\x87\xc1\x58\x8b\x61\x9c\xfa\xfc\x71\x4d\x21\xae\x9c\x98\xdb\x6d\x85\xda\x9d\x6a\x02\x3e\x63\xd6\x6b\x7b\xa6\x80\x5b\x77\x4e\x28\x6a\x6c\x20\x6b\xeb\xda\x3c\x2d\x46\xad\xb9\xd7\x58\xc8\x8a\x92\x80\x91\x70\x27\xe4\x06\x36\x2b\x9e\xad\xc0\x06\x0a\x1a\x77\x2e\xab\x98\xd6\x21\x83\x28\x77\x6a\xa1\xbd\x8d\x27\x50\xa2\x59\xc9\x81\x80\xeb\x06\xc3\x12\x8d\xb5\xc8\x78\x32\x83\xdf\x69\x37\xef\x3e\xf6\xe5\x4c\xfb\xe8\xf9\x70\xdf\x62\x7a\x73\x4b\x7f\xbf\x1d\x4f\xce\x77\xbc\x4f\x9f\xc3\xe4\xdf\x71\x5d\x15\x6c\xfb\x04\x0e\x36\x02\xbf\x63\x86\x9d\xcc\xe3\xb6\xc5\xdf\xb7\xe3\xc9\xbb\xc7\xc0\x2c\x05\x58\x7b\x3c\xc6\x23\xb1\xe5\x72\x20\xe1\xc5\xe5\x40\x52\x35\x70\xc8\x51\x73\xe5\xd1\x34\xed\x87\x24\x68\xa3\xea\xcc\xd4\x8a\xb0\x50\x29\xa4\x62\x10\x00\xa9\xf0\x8f\x1a\xb5\xe9\x63\x30\x08\x8b\x18\x50\xef\x83\x5a\xdb\x0a\x27\x33\xb8\x16\xdb\x9f\xad\xb0\x97\xdd\xda\xbe\xe1\x26\x5b\xd9\xc5\x3d\x39\x20\x63\x1a\x8f\x71\xa2\x43\xd1\xac\xd7\x7f\x7e\xb7\x07\x19\x8c\x7b\xa9\xe9\xb3\x30\x1e\x67\x3e\x6d\xc6\xfb\x7c\x0c\x46\x27\xb6\x02\x1c\xb3\xf8\x65\x3f\x14\x9d\x32\x0d\x64\x4f\x52\x27\x06\xfc\x11\x0a\x35\xcb\x5f\xf6\x6a\x34\x39\xd5\x65\xad\x55\xfa\xbd\x46\xd5\xb3\xc4\x9c\x33\x78\xd1\xb9\x6c\xfd\x40\xbf\xee\x71\x16\x2f\x70\xd6\x21\xf9\xf7\xed\xed\xdb\x1b\x5e\xe0\x30\x15\x7d\x6a\x55\xcc\x60\xb4\x32\xa6\xd2\xb3\xcb\x4b\xa6\x35\x1a\x3d\xdd\xe0\x9c\x6a\xe9\x05\xb1\xd5\xd3\x4c\x96\x97\x5f\x2d\x9e\x7d\xfe\xcd\x97\xd9\x55\xf6\x4f\xf6\x75\x96\xe7\xcf\xbe\xfc\x62\xfe\x59\xf6\xf5\xe7\x57\x9d\x07\xec\xab\xaf\xb2\xf9\x67\xd9\x37\x5f\x3c\x7b\x7f\x53\xc8\xcd\xfb\xdf\xa4\xca\x4b\xa6\xee\xa6\x7a\xbd\x1c\x0d\xea\x31\x90\x83\xe8\x63\xad\x41\x86\x9d\xc1\x88\x97\x6c\x89\x97\x7a\xbd\xfc\xf4\xbe\x2c\xfa\xb9\xed\x7a\x26\x31\xab\xee\xb7\xab\x1e\xff\x6e\x1f\xbf\xeb\x27\x3f\x26\x96\xbc\x67\x87\x6d\x2d\x58\x49\x7b\xf0\x29\xae\x61\xe6\x4e\x2f\xa3\x61\x03\xe8\x6d\x39\x97\xe4\xa2\x37\x37\xb7\x7b\x96\xe5\xa8\x33\xc5\x2b\x3a\x75\xcf\x60\x64\xab\xe8\x22\x88\xb0\xe7\xd4\xe6\x86\xe8\x4e\xde\xe8\xf5\xa0\xfb\x22\x16\x15\x6c\x65\x1d\x8a\x29\xfd\xaf\x40\xd0\xb5\xee\xe6\x16\xfe\x2e\x05\x79\x72\xba\x47\x36\xde\x1b\x54\x82\x15\xbf\xfc\xf4\x7d\x17\x83\x6f\xda\x47\xe3\x06\x64\x5e\xf6\xc5\xc2\x4c\xa5\x58\x10\x73\xa9\x96\xa3\x3d\x20\x28\xe4\x52\xea\x99\x77\xe1\x1e\x53\xc9\x8c\xb3\x42\xcf\x7a\x52\x6a\xfc\x19\x99\x0d\x37\x06\xd5\xe8\x28\x65\xfd\x62\x1b\x04\xa4\xeb\xfb\x79\x21\xb3\xbb\x6c\xc5\xb8\x18\xf5\xc3\x05\x92\x73\x57\xfc\x39\x39\x6f\xc4\xe9\xeb\x09\xf9\x3e\x70\x19\x46\xa9\x8e\xdb\xfd\xbb\x87\xf6\x68\x00\x30\xec\x06\x15\x46\x0d\xbb\x4c\x76\xa7\x10\xfb\x22\xdf\x69\x3f\xa4\xcb\x31\x3c\x2a\xdf\xe9\x72\x3c\x2e\x2b\xc5\xd7\xcc\x60\x00\xa0\x65\x66\x79\x1d\xde\xcc\xf7\x5c\xdc\x61\xee\x12\x91\xf5\xd7\x27\xbb\x1a\x7d\xec\x6f\xa7\x3d\x0c\x1e\xb2\xe2\x6d\x9e\x20\xe0\x40\x5f\x6e\xbf\xdc\x60\x9a\x13\xe4\x86\xfe\xe1\x7e\x01\xae\x73\xf0\xa6\xac\xcc\xd6\x32\x09\x4d\x81\x19\x8c\x17\xb5\xa0\x43\x74\xcf\xad\xf0\x40\xe8\x36\x6d\x89\x84\xb2\x2b\x69\xbc\x27\x2e\xfb\x1f\x9d\x18\x98\xe9\x21\xf8\xd4\xc0\x8c\xb8\x8c\x93\xb1\xe2\xd0\x85\x6f\x32\x70\xc5\x8b\xc4\x09\x5e\x9c\xa5\x0b\x1e\xda\x11\x42\xda\x9e\x49\x9b\x8b\xce\x0b\x1b\x6e\x56\xc0\xe2\x6e\xcb\x9f\xa8\x64\xdb\x22\x17\x79\xd3\x2c\xe4\x6d\x2f\x90\x15\x05\x1d\xa4\x7d\x4f\x70\x0a\xd7\xae\x31\x5e\xd6\xda\xf5\x06\x5d\x13\x38\xb4\xf4\x13\x6e\x76\x96\xe1\x8f\xe0\xc6\x0e\x7d\x06\xe6\x17\xf4\x83\x54\xb9\xbb\xd7\xd9\xf6\x8e\x7b\xde\x72\xcb\x32\xdb\x25\x74\xbd\x41\xe6\xea\x5f\x08\xe3\xd0\xd0\xd0\x4d\x4b\xda\xd5\x46\xb3\xad\x70\x77\xb0\x10\xf7\x0c\x5b\xdb\x84\x66\xcb\x60\xf3\x9d\x2e\x05\xbb\x90\x9c\xc1\xab\x2e\xc2\x0f\x34\xd9\xae\xa6\x57\x93\xd8\x75\xbd\x0d\x7e\x3b\xa4\xe5\xda\x28\x66\xe4\x4e\x27\x7e\xc0\xd1\x91\xf7\x7a\x27\x64\x07\x7b\xb2\xe9\x44\x8c\xcc\x53\xb2\x7b\x5e\xd6\x25\xfc\x51\x33\x61\xb8\xd9\xc6\x4d\x5a\x3f\x61\x09\x52\x32\x59\x17\xb9\x57\x66\xb0\x45\xdb\x1d\x8c\xb8\x1e\x96\xa5\xf4\x4e\x77\x53\x11\x2f\xe4\xa8\x8b\x9a\x13\xf9\x23\x6e\x1c\xf3\x81\xc1\xde\x0c\x5e\x79\xe1\x1f\x77\x5b\x4d\x7b\x27\x83\xc9\xd7\xfd\xed\xd4\x7e\x0d\x06\x18\xec\x6d\xae\x0e\x3b\xb5\x33\x72\x3c\xd8\xab\x21\xb3\xbf\x3e\x82\x66\xd0\xac\x8e\xd8\x22\xdd\xf3\xe9\xb1\x60\x77\xae\xb9\xcf\x4a\x81\xe1\x70\x26\x0b\xa3\xbf\xd0\x55\x76\x58\xb3\x21\xcd\x28\x30\x42\x36\x70\xa3\xc1\x95\x2c\x9a\x71\xda\xe3\xc6\x68\x0d\x22\x76\x9a\x1b\xbb\x33\x89\x0e\xdc\xd3\x2e\x74\x33\xc9\xeb\x8a\x5a\x33\xd5\x8d\xab\xbe\x31\x58\xea\x7c\xe2\xa6\xa3\x9d\x9c\xdb\x1e\x3a\x49\x2f\x43\x52\x36\xd1\x6b\x2e\xe7\x09\xab\x18\x31\x31\x45\x37\x8d\x3f\x66\x42\xd3\x17\xfe\x9d\x4d\x3f\x6e\x18\xe3\xde\x49\x78\x4c\x94\x13\x85\xeb\x08\xf7\x4c\x5d\x0e\x1e\x38\x2a\x85\x3d\x47\x10\xef\x64\xdb\xb3\x9d\xc1\xc8\x39\x28\xe8\x66\xcb\xdb\x1c\x61\x69\x41\xab\xc8\x33\xc2\x96\xcb\xdd\x1b\xaa\xe7\xf3\xdc\x77\xb8\x3b\xfe\x1e\xe0\x5b\xa0\xd6\x8e\x29\x19\x24\x60\xc9\xb1\x1a\xed\x39\x09\x9c\xd2\x49\xfe\xb4\x6f\xae\xb4\xab\x2b\xf4\x6d\xe0\xe0\x50\xaa\xf3\xf2\x48\x77\x86\x04\x4f\x1a\x3b\xd9\x31\x6f\x7f\x46\xef\x9b\xab\x75\xb7\x93\x7c\xff\xab\xf3\x0d\x65\xe2\xe3\x73\x4d\x93\x3b\xf7\x04\xbe\x9f\x32\xb4\x53\xb5\xf0\x06\xc8\x39\xe0\x62\x81\x99\xe1\x6b\x2c\xb6\x56\x70\x88\xa4\x58\x7e\x37\x86\x48\xc0\x8f\xd2\xe0\xcc\xcd\xd8\xdc\xf9\x2b\x7a\x59\x87\xd5\x46\x96\xcc\x70\x4a\x0d\x5b\xd0\xf5\xdc\xbe\x3b\x81\x79\x33\x70\x4d\x38\xc5\x29\x27\x7d\xb1\xc4\xaa\x5d\x67\x46\xaa\xbf\x6c\xc4\x15\x4d\x82\x6b\xd5\xdf\x34\xee\x66\x08\x5a\xe8\x33\xc4\xff\x7b\xae\x45\x54\x2c\x60\x6c\x78\x8c\xd5\x3f\x55\xea\x84\x4f\xe7\x5d\xa8\xdd\x58\x88\xb0\x6a\xa3\x21\xde\x82\x05\x7d\x9a\x04\x3e\xbb\xba\x8a\xa7\x5b\x76\x45\xf7\x92\x0f\x2f\xe0\xd2\x1f\xbc\x77\x2f\xcd\x3d\xa4\xed\x9d\x9c\x28\x2b\xfb\x2d\x21\x0c\x37\x9f\x94\x76\xb7\x2d\x30\x40\x1e\x16\xa6\xe4\xdd\x17\x15\x87\xb4\xb6\xeb\xe2\xb0\x02\x77\x0e\x89\x10\x6a\x2f\x3e\xdd\xba\x19\x55\x33\x7b\x57\x61\x6b\xa4\x6b\x0f\x17\xe1\x52\xd2\xa2\x39\x81\x49\x7f\x12\xeb\xba\x62\x92\x6e\xc6\x67\x90\x29\x49\x19\x3f\xbf\xb0\xcc\xa2\xe1\x65\xd7\x43\x93\xbe\xfd\x30\x70\xb6\x83\x8c\x55\x6c\xce\x0b\xaa\xc8\xbe\xba\xdb\x8b\x56\x1e\xbf\x39\x82\xf7\x95\xd4\x18\x17\x57\xbb\xf0\x83\xbf\x2a\x7d\xf0\x33\x32\x30\x2b\x25\xeb\xa5\xb3\xce\x87\xe0\x88\x0f\x60\x4f\x39\x0b\x96\x45\x46\x48\xf6\x51\x70\x71\xf7\xfc\x93\xe1\xd6\xc8\x6e\x6e\x3e\xd4\x24\x32\x4c\x2d\xd1\x0c\xd8\xa3\x59\xf9\x74\xc3\xd8\x37\xc9\x86\xac\xe3\xdd\xf9\x01\x16\x1c\x8b\x66\xa0\x0f\x1f\xa2\xb1\x44\xbf\xe5\x5e\x07\xc2\xc6\x70\xfb\xec\x76\x6c\x0f\xa8\xd7\x90\x7b\xdb\x64\x8f\xb6\xa2\xcd\x65\xb6\xc8\xb5\xd0\x4e\x6e\x9f\xe3\xfd\x48\xb6\xb4\x11\x92\xbb\x51\x9b\x3a\xec\x0d\x25\x3e\x26\xe2\x37\x2b\xf5\x4a\x6e\xa2\xf3\x75\xf3\x0a\xdf\x86\x69\xe0\xed\x1b\xc3\x0d\x97\x28\x77\xee\x79\xa1\xb8\x3f\x1c\x1f\xce\x1e\xce\xfe\x17\x00\x00\xff\xff\xeb\xea\x5f\xf7\xf7\x2e\x00\x00" func exampletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -117,11 +117,11 @@ func exampletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc7, 0x87, 0x6c, 0x37, 0x4e, 0x42, 0x77, 0x81, 0x43, 0xce, 0x92, 0xd1, 0x1b, 0x48, 0x7d, 0x31, 0x7b, 0x47, 0xe7, 0x19, 0xec, 0x88, 0xd7, 0x7d, 0x6, 0x87, 0xc5, 0x1c, 0xdf, 0xa, 0xce, 0x6f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xfd, 0xf1, 0x5, 0xc9, 0x71, 0x24, 0x60, 0xe1, 0x2c, 0x76, 0xee, 0x10, 0x46, 0x30, 0xb0, 0x34, 0xbd, 0xf, 0x37, 0xbd, 0xb6, 0xc7, 0x6e, 0xf0, 0x6f, 0x50, 0x32, 0x82, 0xa0, 0xfb, 0xdb}} return a, nil } -var _fungibletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5a\x4d\x8f\x1b\x37\xd2\xbe\xf7\xaf\x28\x4c\x80\xd7\x52\x5e\x45\xe3\xc3\x62\x0f\x42\x6c\xaf\x9d\xc4\x8b\x1c\x36\x08\xec\xd9\xe4\xb0\x58\xac\xa8\xee\x6a\x35\xe3\x6e\xb2\x43\xb2\x25\x6b\x8d\xf9\xef\x8b\x2a\x92\xfd\x2d\x8d\x66\xec\x00\x8b\x9d\xc3\x8c\xd4\x4d\x16\x8b\xc5\xa7\x9e\xfa\xe0\xdc\x7e\xfd\x75\x92\x7c\x05\x77\x05\xc2\xdb\x52\x1f\xe1\x6d\xa3\xf6\x72\x57\x22\xdc\xe9\x0f\xa8\xc0\x3a\xa1\x32\x61\xb2\x24\xf9\xea\x2b\xd8\xc6\x97\xfc\x6e\x0b\xa9\x56\xce\x88\xd4\x25\x09\x4f\x9f\x9f\x09\xd2\x82\xd2\x50\x6a\xb5\x47\x03\x42\x81\x54\x0e\x4d\x2e\x52\x4c\x5c\x21\x1c\x88\xb2\x84\x3c\x4e\x75\x3c\x35\xca\xb5\x70\xd4\x4d\x99\x41\x21\x0e\xf4\x8a\x9e\xe7\xda\x54\xe0\xf4\x3a\x49\x7e\xcc\x41\x40\x63\xd1\x58\x38\x0a\xe5\x2c\x0d\xc8\xb0\x2e\xf5\x09\x04\x28\x3c\x8e\x64\xad\xc0\x15\x28\x4d\xa7\x73\xa6\x91\x14\x73\xa0\x10\x33\x9a\x2c\xab\xba\xc4\x0a\x95\xa3\x91\x30\xd8\x6a\xa7\xf3\x0a\x76\x8d\x0b\xa2\x78\x01\x9b\x64\xfa\x8c\x88\x76\x92\x85\x0c\x73\xa9\x30\x03\xa9\xc0\x15\xd2\xb6\x5a\xac\xbd\x5d\x7f\x11\x4d\xe9\xb6\x60\xd0\xea\xc6\xa4\xbd\x99\x49\xf2\x83\x48\x8b\xb1\x7d\xda\x71\xee\x54\x23\x2f\x6e\xa7\xab\x9f\x17\x1a\x16\xfd\xd9\xe8\x83\xcc\xd0\x6c\x57\xb0\x7d\x87\x29\xca\x03\x7f\x16\x2a\x83\xed\x1b\x51\x0a\x95\xe2\xdc\x6c\xcb\xa7\x6d\x47\xdb\x4b\x4b\x61\x10\x6a\x83\xdf\xa4\x5a\x65\xd2\x49\xad\x2c\x8b\xaa\xb5\x75\xfd\x67\x7c\xe6\x06\xad\x33\x32\x75\x09\x29\x8a\x1f\x31\x6d\xe8\x25\xe8\x9c\x35\xcf\x1b\x95\xfa\xc1\x6c\x2e\x04\xde\xc9\x9a\xd7\x3d\x01\xad\x63\xb1\x16\x46\x38\x84\x1d\xa6\xa2\x21\x5d\x1c\xec\xe5\x01\x2d\x0f\x27\x50\xf0\x07\xb1\x93\xa5\x74\x27\xb2\x8d\x2d\x84\xc1\x44\x80\xc1\x1c\x0d\xaa\x94\xf1\xe4\x8f\x91\xa5\x7b\xbd\xb4\x2a\x4f\x80\x1f\x6b\x6d\x83\xa8\x5c\x62\x99\xd9\x4e\xa3\x44\x2a\xd0\x0a\x41\x1b\xa8\xb4\xc1\xa8\x71\x67\x0a\x02\x26\x61\xda\xea\xa0\x90\x47\xe8\x48\x9b\x4a\x7c\x40\x48\x1b\xeb\x74\xd5\x5a\x38\x98\xa6\x3d\x44\xb2\xcd\xd0\xca\x04\x70\x0d\x07\x61\xa4\x6e\x68\xb4\x54\x7b\x0b\x47\xe9\x0a\x16\xef\xd1\xb8\x4e\xde\x6a\x03\xf8\x51\x90\x98\x15\x08\xc8\x45\x93\xa2\x83\x54\x28\xd8\x61\x27\x1d\x33\xd8\x9d\xa2\x43\x49\xb5\x4f\xbc\x39\x20\x82\x62\x80\x96\xaf\x6f\x93\x44\x56\xb5\x36\x0e\x7e\x91\x78\x7c\x87\x56\x97\x07\x34\x90\x1b\x5d\xc1\xcd\xfa\xb6\x71\xbc\xb3\xdb\xfe\xcb\x75\x9a\xa5\x37\x49\x72\x7b\x7b\x3b\x74\x25\x7a\x32\x78\x1a\xe8\xa2\xd5\x4c\x04\xec\x18\xec\xd1\x86\xc1\xdf\x1b\x69\xe6\x9c\x6c\xe8\x1a\x2c\xb9\x53\x1d\x7e\x45\xb0\x4e\x96\xa5\xa7\x10\xe9\x40\xd8\x01\x05\x41\x81\xa6\x43\x91\xe3\x6f\x0c\x30\x5d\x31\x8e\xf2\xa6\x64\x91\x61\x87\x50\xa1\x2b\x74\x16\x8e\xaa\x12\xea\x04\xb5\xd1\xbf\x21\x53\x15\x2d\xe3\x17\x23\x3e\x22\x4d\x79\x51\xad\x46\xcc\x63\x57\x2c\x32\xf0\x88\x07\xf4\xee\x44\x9b\xad\x50\x28\xdb\xee\x75\xcd\xd4\xe8\x41\xd1\x3d\xa5\xcf\xfc\xac\x3d\x73\xbf\xe7\x68\x14\x3b\x70\xfe\x8e\x48\xea\x66\xd7\x6a\x30\x22\xb7\x4f\x49\x02\x00\x40\x62\x88\xc7\xf1\xe0\x6d\xeb\xd7\xc5\x4a\x3a\x42\xcb\xb1\x40\x15\x30\xc6\x1a\x13\xee\x32\x23\x8e\xca\xa3\x40\x78\x37\x62\x41\xb4\x94\x17\xf2\x6b\x18\xb4\x10\x95\x6e\x94\xdb\xc0\xdf\xdf\xca\x8f\x7f\xfe\xd3\x8a\xe7\x6c\xe0\x75\x96\x19\xb4\xf6\xd5\x8a\x89\x6c\x03\xef\x9d\x91\x6a\xbf\x64\x21\x22\x4d\xd1\xda\x85\xc5\x32\x5f\xd2\x21\xb3\x22\x51\xde\x0f\x24\xfd\x71\x42\x37\xf0\x46\xeb\x12\x3e\xb1\x70\xfa\x21\x79\x53\x05\xfd\xdf\x28\x8b\x7e\x47\x39\xf4\x7b\xd9\xce\x36\xe8\x1a\xa3\xc0\x99\x06\xf9\xd9\xfd\x53\x6c\x98\x61\xad\xad\x74\x1e\xd6\xf3\x16\xfc\xde\x0f\x99\xec\xd5\xe9\x27\x98\x2f\x08\x9b\xb7\xde\x05\x89\xf3\xb6\x1b\xab\x16\x4d\x47\x82\x9c\xfe\x03\xcd\xe6\x8c\x50\x36\x47\x43\xde\xc0\xe0\x23\x46\x16\x69\x4a\xcb\xb3\x25\x95\x26\x4f\x1e\x59\xf2\x2e\xcc\x7a\x18\x36\x4f\x31\x6d\x94\x7e\x25\x32\x1f\x6b\xeb\x89\xf2\xb3\x38\x7d\x9a\xe1\x59\xe5\x0b\x18\xb5\xce\xe8\x13\x66\x23\x73\xbe\x69\x8c\x9a\x62\x68\x60\xac\xf3\xd6\xa2\xc9\x67\x50\x78\xd1\x16\x32\x0f\x1b\x87\x97\x2f\xe0\xf9\xfa\x79\xef\x55\x6b\xaa\x81\x62\x2d\x26\x67\x4c\x72\x7f\x8d\x71\x62\x3c\x8c\x0f\x06\x70\xed\xc2\x08\x43\x16\x29\x98\xa6\x21\x73\x08\x7c\xed\x29\x39\xd7\xa6\x25\x4c\x0a\xb6\x51\x48\xb0\x33\x83\x98\xf3\x88\xc8\xe2\x52\xed\x59\xdb\xf5\x64\xdd\x1f\x1d\xb4\x99\x6b\x58\x70\xb8\x96\x56\xb0\xdd\xc5\xf4\x8d\x02\xda\xaa\x9d\xdb\xcb\x96\x4a\x14\x94\x9d\xe8\x1a\x7d\x8a\x55\x6b\x6b\x65\x48\x50\x74\x0e\xa9\x41\xc1\x4a\x84\x24\xa5\x0e\x66\xb0\x9d\xea\xb4\x63\x4a\x7d\x39\x83\xa6\x33\x16\x46\x96\xa7\x90\x0a\x73\xc0\xd3\x47\x05\x41\x93\xe1\x3e\x08\x45\xd3\xc4\xb2\xcb\x3d\x42\x40\x8a\x4b\x45\xcb\x81\x6d\x76\xa1\x2e\x18\x1b\x4e\x1f\x15\x9a\x67\xb6\x47\xa1\x71\x32\xe5\xa0\xfe\x7c\x6d\xa4\xd8\x2e\x67\x32\x58\xe9\x03\xd3\xaf\xcf\x9d\x7a\x13\x07\x42\xee\x7a\x59\xe9\x33\x1b\x30\x0d\x25\x1e\xb0\x24\xa2\xaa\x9b\x5d\x29\xd3\x58\x1a\x48\xeb\x4b\x1e\x07\x82\xec\xb6\x2b\xb1\x1a\x08\x8b\xa7\xc0\xc9\x66\xab\x3c\x58\xa7\x0d\x1f\x3b\xeb\xd5\x1a\x27\xd8\x32\xd0\xdb\x40\x50\xca\x99\x8c\x74\x52\x94\xe5\x09\x52\x9f\x2d\xc8\x2e\x5b\xbd\xbc\x1f\xbf\x6a\x25\x4e\xb0\x37\x94\xaf\x30\x67\xc6\x75\xda\x3d\x52\x92\x18\xb1\x40\xdb\x91\x07\xe1\x70\xa4\x45\xdd\x66\xb6\xa1\x9e\xd3\x47\x0b\xb6\xc6\x54\xe6\x32\x0d\x72\x43\x1a\xac\x83\xdc\x81\x04\xc6\x5f\x3c\xfb\xae\xb6\x29\x8c\x6e\xf6\x05\xf4\x72\xf6\x6b\x37\xe4\xd3\x6f\xde\x15\x19\xe5\x81\x3d\xf1\xe1\x5d\xb3\x25\x92\x35\xda\xc7\x40\xf7\x81\x8c\xc7\xef\x83\xbc\x82\x08\xf2\x38\x9f\x34\x2d\x37\xf0\x97\xd7\xea\xf4\x2e\xc8\xfd\xc4\x50\xbe\x1f\x31\x20\x55\x5b\xa3\x47\x7e\x19\xd8\x1a\xb4\xa1\x1e\xcc\xc3\x16\x3c\xd2\x98\xfa\x0e\xa2\x6c\x70\x32\xcd\x4f\x59\xef\xd1\x85\x7a\x70\xb1\x84\x17\x2f\x02\xa9\x6e\x26\xc3\xe9\xe7\x26\x66\x54\xa2\x8c\x54\x5d\x35\xd6\x51\xed\x41\xcb\x59\x51\x21\xe5\xe0\xf4\x39\x50\x43\xac\xa1\xba\x84\x92\x77\x76\x33\x11\x3f\x48\x5a\xd7\xe7\xd3\xc1\x61\x68\xa4\xc0\xb3\x66\x68\xbc\x5a\x0b\x1f\x72\x63\x38\xe0\x57\x7b\x74\x77\xa7\x1a\x17\xcb\xb5\xcc\x88\x78\x73\x89\x66\x39\x58\xfb\x7e\x14\x31\x7a\xd1\x21\x96\xcd\x9f\x1f\x1d\x42\x2a\x38\x13\x1c\xa4\x0a\x47\x75\x45\x70\xf8\x15\x23\x25\x4b\x95\x96\x4d\x86\x20\xa0\xad\xbd\xbd\x1a\x69\x81\xe9\x87\xe1\x01\x04\x42\x6a\xa5\x1c\xb1\xad\x60\xa8\x86\xbd\xa6\x84\xf5\x66\xf0\x95\x49\x02\x3d\x7e\xca\x74\x1c\x34\x5f\xaf\xae\xa0\x94\x1f\x10\x6c\x5d\x4a\x2e\x69\x2a\x68\x6a\xe2\xec\x56\x88\x45\x95\xf9\x17\x54\xfe\xca\x9c\x5d\xc8\x41\x5d\xfa\x6a\x1b\x1e\x0e\x2b\xf1\x90\xc6\x61\x25\x98\x1c\x9c\xf8\x80\x5d\x6c\xa0\x78\x11\xde\x58\x0a\x94\xf3\xe6\x1f\x74\x60\x2e\x7a\x73\x90\xb5\xf0\x68\x9c\xf1\xe0\xe5\x50\xab\x3d\xba\xf7\x4d\x4d\xb5\x36\x66\x3c\x80\xd0\x49\x81\x9a\x8e\x90\x89\xbe\x8b\x66\xa5\xb4\x8e\xdc\xe7\xe0\x3b\x18\x3c\x30\xd4\x86\x5c\x31\x86\x7d\x13\x55\xd5\xce\x4e\x54\x9b\x5f\x6a\xb1\xdc\xc0\xa7\x3b\x76\x10\xca\xbe\xc6\x0c\x73\x7b\x0b\x6f\xb0\xd4\x47\x0f\x24\x8a\x74\xfd\x9e\x42\x04\x86\x6d\x4c\x80\xbd\x69\xd4\x37\x4e\x56\xa1\x57\xc5\xfd\xbc\xb1\x3c\x0e\x84\x7b\x74\x61\x67\x6d\x12\x4a\xd4\x2a\xf8\xb4\x5b\x73\x87\x86\x45\x80\xd1\xb0\x1f\xb9\xf6\x35\xef\x1a\x06\xf2\x65\x3e\xf1\x73\xfb\xbe\xd9\x91\x36\x0b\x9d\x6f\x80\x1e\x7e\x3b\x38\x96\x19\xa1\xf7\x2f\x17\xcb\xe5\x0c\xaf\x06\xf6\xfc\x34\x5c\x61\xc3\x99\xe4\xfd\x90\x44\x00\x4b\x8b\xf3\xd4\xfc\xce\x4b\x11\x94\x1b\xd7\xee\x04\x99\xe4\xf0\x2d\xcc\x29\x52\x65\x86\x39\x1f\x31\xd3\x34\xf3\x45\x6b\x91\x63\xa1\x21\xd3\xea\x99\x9b\x93\xdc\xb5\x4a\x66\x4d\xb5\x02\xdb\xa4\x05\x2d\x32\x7c\xfd\xfe\x28\x5d\x5a\xec\xb4\x30\xd9\x76\x05\x5b\x7e\xf6\x56\x9b\xa3\x30\x19\x9a\x2d\xa0\x4b\xd7\x67\x4d\x71\x7f\x96\x3b\x07\x30\x7f\x17\x40\x7c\x2c\x90\xf3\x03\x6d\x98\xb6\x68\xb3\xc4\x39\xca\xc3\x45\xda\x00\x5e\xdf\xae\xa2\xb7\x03\xca\x8d\xd2\x5e\x47\x17\x60\x86\x13\x2a\xcc\x02\xa1\x4e\x5e\x90\x2d\xb8\x91\xfc\x1b\x85\xa2\x5e\xb6\x4f\x42\x83\x6d\x27\xde\x41\x30\x19\x3b\xc7\xc2\x07\x0e\xfa\x38\x2d\x4e\x7a\x56\xc8\x45\x69\x71\x3e\x6c\x9c\x21\xa9\x58\xe0\x69\xd3\x93\x18\xda\x64\x8c\x06\x3e\x75\x01\x99\x34\x98\xba\xb6\x04\x06\xa9\xac\x43\x91\x11\x0b\x14\xe2\xc0\x91\x81\xbb\x84\xa2\xa5\x37\x22\xb4\x63\x1b\x94\x2f\x72\x95\x3b\x57\x22\x47\x2a\xd9\xc0\x77\x6d\x6a\xf4\xed\xff\x8d\x3c\x25\x9e\xcc\xfd\xcb\xb1\xab\xd4\x66\x0e\xf9\x51\xe8\x9a\x99\x84\xdc\xe6\xe6\x3b\x3e\x25\x02\xc2\x4e\x1b\xa3\x8f\x30\x6d\xd8\xc2\x4f\x6f\xef\xda\xa9\x37\xd7\x06\xea\x90\xbf\xcc\xc4\x69\x69\x7b\xa7\xc0\x79\x3b\xad\xba\x47\x85\x46\x94\x50\x37\xa6\xd6\x16\xa1\x42\x27\x32\xe1\x44\x6f\xec\x38\x6a\xc6\x4c\x72\x24\x0e\x31\xf3\xbc\x48\x04\x17\xc5\xf8\x52\x41\x64\x99\x4f\x41\x8f\x85\x2e\x91\xef\x2c\xba\x7e\x5d\x14\x4b\xc7\x8e\x07\x24\x2e\xe8\x3a\x1c\x4d\xbd\x37\x22\x63\x93\x50\xf9\x61\xf4\x4e\xec\xa8\x98\xd0\x1a\x2a\xf2\x68\x9d\x83\x80\x9d\x41\xf1\x81\x6b\xb8\x42\xa8\x3d\x5e\x42\x5f\x30\x0f\x7c\x82\xdb\xdb\xcd\xa0\xc7\xbb\x6e\x9b\xbd\xa3\xe8\xf9\x37\xee\x84\xc6\x8d\xf5\xd2\x89\x49\x5e\x1e\xd3\x8c\x94\x0f\x77\x87\x8c\x4d\x23\xa9\xee\xe2\xf6\xfa\x6a\x30\xc3\xea\xd0\x86\xf5\xd7\x46\xf1\x66\x25\x24\x4c\x4c\x92\x1f\xeb\x52\xa6\xd2\xf9\xd9\x73\x51\xad\xcd\x56\x23\x82\x93\x27\xc6\xbe\x27\x92\xc2\xd0\x52\x83\x96\xb9\x37\x9b\xbd\xe8\x86\x7b\x74\x34\x87\xb5\xf9\x07\x89\xfd\xe7\x64\x88\xf1\xf2\x68\xd8\xe2\x5f\x70\x90\x78\x6c\x15\x78\xad\x4e\xef\x9d\x69\x52\xf7\x6a\xec\x04\x5d\x71\x3c\x68\x28\x64\x48\x69\xc5\x2a\x54\xae\x2d\x26\xfc\xd5\x1b\x97\x52\xdd\xbd\x5b\x4b\xbf\xab\x88\x99\x55\x8f\xba\x56\x6d\x09\xef\xaf\x91\xe2\xae\xbb\x06\x44\xd3\x75\xf7\xc8\xcb\x6d\x34\x26\x9c\xd0\x5d\x93\xcb\xf9\x1c\xcd\xc3\xf4\x6a\x55\xae\xc2\xf3\x5f\x87\x28\x8e\x55\xc9\x61\x36\x36\x5c\xc6\xd8\x7f\x65\x1a\x37\x75\x81\xa7\x60\x39\x86\x6d\xae\xe5\x9c\x36\x62\x4f\x39\x9a\x2b\x28\x8e\x1b\xec\x2c\x16\x03\xae\x3b\xd5\x32\xe5\xed\xee\xfc\x04\x9c\x75\xd8\xef\x7d\x0c\x7e\xef\x25\xfe\x2c\x5c\x41\xea\xf7\xbe\xbe\x9a\x8f\xb3\x4a\x96\x0f\x25\x18\x9c\x45\x7a\x62\x1e\x28\x2a\xed\x50\x53\xbe\xab\x69\x39\xbc\xeb\x00\x5c\x50\xf7\x67\x1e\x1b\xb5\xed\xbe\x3d\x4e\xd9\x2f\xee\xf5\x0f\xf5\xce\xb6\x3e\xba\x6f\xbb\xee\x19\x1f\xff\x33\x3b\xcb\xe0\xc3\xfe\x19\xc5\xa8\x51\x0f\x2d\x0a\xa6\x14\x6d\x3a\xff\xcb\x76\x37\x66\xf3\x88\x98\x7c\x77\x3d\x8a\x97\x0f\xf4\x28\x5e\xfb\xc6\x44\xd7\x71\x88\x2d\x8a\xd2\xb7\x74\x84\xa2\x7c\x14\x7f\x6f\x44\xe9\xbf\xcd\x10\xc3\x4c\x93\xe2\xfe\xca\x56\x4c\xb8\x6a\xf4\x2d\x32\x51\xb6\xfd\x3a\xd8\xee\x30\xd7\x06\xb7\xfd\xa8\xea\x53\xfe\xb0\x68\xd7\xd8\x1d\xc6\xbe\x9e\xf0\x70\x33\xb8\xc3\xbd\x54\x8a\xa2\xff\xe8\x52\xbd\xbb\x6e\x9f\x99\x7d\x85\x6d\x5f\xbc\x00\xaf\xe5\x62\xf2\x6e\x09\xdf\x5c\xb6\xfb\x4f\x2d\x7a\xa2\x31\xfb\xbd\xa1\x58\xdc\x77\x36\xae\x0d\x1e\xf8\xae\x3b\x0e\x17\xbe\x17\x30\xee\x15\xc5\xf7\xe7\xd3\xc1\x2b\x0b\x7f\x91\x65\x54\xf4\x77\x0b\x86\x9c\x73\x70\xf6\x72\xa6\xcd\xfc\x98\xb2\x7f\xae\xbe\x1c\x67\xcc\x54\xd3\x58\x8b\xc6\x75\x77\xbd\xa9\x56\xa9\x41\x17\x0a\xe9\x60\xa1\xee\x06\xd1\x93\x99\xb4\x6d\x9b\x6d\x2c\x2f\x94\x92\xbd\x42\xa9\xad\xae\x62\xdb\x39\x48\xbb\xc2\xe7\x68\x5b\x6b\x69\x7f\x54\xd6\xf1\xd9\x0f\x0b\xe0\xe5\x06\xe6\x01\xf0\x9d\x50\x14\xf6\xbb\xd2\x04\xa4\x4a\x75\x55\x0b\xd7\xfb\xef\x16\xda\xdf\x35\xdd\xbf\xd9\xdb\x4c\x56\xac\x0f\x4a\x7f\x2d\x76\xa1\x0b\x18\x67\x5c\xdd\x05\x84\xf3\xce\xfd\x48\x77\xf9\xff\xf8\x6e\xa2\xf5\xf2\x49\x1e\x64\x9b\xea\x41\xd7\xe9\x10\x73\x91\xc1\x46\x2e\xf3\x3f\x51\x85\x7e\x91\x33\x7b\x34\xc5\xb5\x51\xd6\xa2\xca\xd0\xfc\xa1\x94\x07\xb3\x8e\x32\x7f\x37\x7d\x4d\x9b\x5c\x6f\xba\x2a\xdd\x57\xe4\x8b\xe5\xab\x2f\xd7\x4d\x1f\x40\x8c\xaf\x64\xf0\x87\xaa\x76\xa7\x40\xc8\xe1\xd6\x45\x9d\xc2\x7f\x74\xe9\x30\x66\x90\x87\x30\x93\x15\x82\x78\xfc\xdf\x68\xf4\x55\x39\xc8\x78\xa9\xc5\xe7\xdc\xad\x9c\xb9\x24\x79\xbe\x7e\xbe\x81\x1b\xaa\x7f\x15\x1e\xcb\x70\xe3\x14\xbd\xce\x83\x80\x53\xce\xbe\xd2\x57\x38\x63\xb8\x8e\x5f\x5c\xd7\x62\x99\x62\x61\x7a\xf3\x3e\xc1\xf8\x67\x5f\x8f\xdc\xff\x27\x00\x00\xff\xff\x76\xbf\xbc\xdc\x54\x2a\x00\x00" +var _fungibletokenV2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x5a\x5f\x8f\x1b\xb7\x11\x7f\xdf\x4f\x31\xb8\x00\xb5\x94\x2a\x3a\x3f\x14\x7d\x10\x62\xbb\x76\x12\x17\x79\x68\x10\xd8\xd7\xf8\xa1\x28\x2a\x6a\x77\x56\xcb\x78\x97\xdc\x90\x5c\xc9\xea\xe1\xbe\x7b\x31\x43\x72\xff\x69\xf5\xe7\x2e\x76\x51\xd4\x0f\x67\x69\x97\x1c\x0e\x87\x33\xbf\xf9\xcd\x50\xb7\x5f\x7f\x9d\x24\x5f\xc1\x5d\x81\xf0\xb6\xd4\x7b\x78\xdb\xa8\xad\xdc\x94\x08\x77\xfa\x23\x2a\xb0\x4e\xa8\x4c\x98\x2c\x49\xbe\xfa\x0a\xd6\xf1\x25\xbf\x5b\x43\xaa\x95\x33\x22\x75\x49\xc2\xd3\xa7\x67\x82\xb4\xa0\x34\x94\x5a\x6d\xd1\x80\x50\x20\x95\x43\x93\x8b\x14\x13\x57\x08\x07\xa2\x2c\x21\x8f\x53\x1d\x4f\x8d\x72\x2d\xec\x75\x53\x66\x50\x88\x1d\xbd\xa2\xe7\xb9\x36\x15\x38\xbd\x4c\x92\x1f\x73\x10\xd0\x58\x34\x16\xf6\x42\x39\x4b\x03\x32\xac\x4b\x7d\x00\x01\x0a\xf7\x23\x59\x0b\x70\x05\x4a\xd3\xe9\x9c\x69\x24\xc5\x1c\x28\xc4\x8c\x26\xcb\xaa\x2e\xb1\x42\xe5\x68\x24\x0c\xb6\xda\xe9\xbc\x80\x4d\xe3\x82\x28\x5e\xc0\x26\x99\x3e\x21\xa2\x9d\x64\x21\xc3\x5c\x2a\xcc\x40\x2a\x70\x85\xb4\xad\x16\x4b\x6f\xd7\x5f\x44\x53\xba\x35\x18\xb4\xba\x31\x69\x6f\x66\x92\xfc\x20\xd2\x62\x6c\x9f\x76\x9c\x3b\xd4\xc8\x8b\xdb\xe3\xd5\x4f\x0b\x0d\x8b\xfe\x6c\xf4\x4e\x66\x68\xd6\x0b\x58\xbf\xc3\x14\xe5\x8e\x3f\x0b\x95\xc1\xfa\x8d\x28\x85\x4a\x71\x6a\xb6\xe5\xd3\xb6\xa3\xed\xa5\xa5\x30\x08\xb5\xc1\x6f\x52\xad\x32\xe9\xa4\x56\x96\x45\xd5\xda\xba\xfe\x33\x3e\x73\x83\xd6\x19\x99\xba\x84\x14\xc5\x4f\x98\x36\xf4\x12\x74\xce\x9a\xe7\x8d\x4a\xfd\x60\x36\x17\x02\xef\x64\xc9\xeb\x1e\x80\xd6\xb1\x58\x0b\x23\x1c\xc2\x06\x53\xd1\x90\x2e\x0e\xb6\x72\x87\x96\x87\x93\x53\xf0\x07\xb1\x91\xa5\x74\x07\xb2\x8d\x2d\x84\xc1\x44\x80\xc1\x1c\x0d\xaa\x94\xfd\xc9\x1f\x23\x4b\xf7\x7a\x69\x55\x1e\x00\x3f\xd5\xda\x06\x51\xb9\xc4\x32\xb3\x9d\x46\x89\x54\xa0\x15\x82\x36\x50\x69\x83\x51\xe3\xce\x14\xe4\x98\xe4\xd3\x56\x07\x85\xbc\x87\x8e\xb4\xa9\xc4\x47\x84\xb4\xb1\x4e\x57\xad\x85\x83\x69\xda\x43\x24\xdb\x0c\xad\x4c\x0e\xae\x61\x27\x8c\xd4\x0d\x8d\x96\x6a\x6b\x61\x2f\x5d\xc1\xe2\xbd\x37\x2e\x93\xb7\xda\x00\x7e\x12\x24\x66\x01\x02\x72\xd1\xa4\xe8\x20\x15\x0a\x36\xd8\x49\xc7\x0c\x36\x87\x18\x50\x52\x6d\x13\x6f\x0e\x88\x4e\x31\xf0\x96\xaf\x6f\x93\x44\x56\xb5\x36\x0e\x7e\x91\xb8\x7f\x87\x56\x97\x3b\x34\x90\x1b\x5d\xc1\x4d\xff\xd1\x4d\x92\xdc\xde\xde\x0e\x83\x87\x9e\x0c\x9e\x06\x80\x68\x75\x11\xc1\x5b\x0c\xf6\x80\xc2\xe0\x6f\x8d\x34\x53\x61\x35\x0c\x06\x96\xdc\x29\x0b\x1f\x10\xac\x93\x65\xe9\x41\x43\x3a\x10\x76\x00\x3a\x50\xa0\xe9\xfc\xc6\xf1\x37\x76\x29\x5d\xb1\xe7\xe4\x4d\xc9\x22\x1b\xe7\x4f\xab\x42\x57\xe8\x2c\x1c\x4e\x25\xd4\x01\x6a\xa3\x7f\x45\x06\x27\x5a\xc6\x2f\x46\x08\x44\x9a\xf2\xa2\x5a\x8d\xb0\xc6\x2e\x58\x64\x40\x0e\xef\xc2\x9b\x03\x6d\xb6\x42\xa1\x6c\xbb\xd7\x25\x83\xa1\x77\x83\xee\x29\x7d\xe6\x67\xed\x29\xfb\x3d\x47\xa3\xd8\x41\xb8\x77\xd0\x21\xd2\x14\xad\x9d\x89\xb2\x9c\xb7\x9a\x8c\x60\xed\x3e\x49\x00\x00\x6e\x6f\xe1\xb5\x02\x54\x4e\xba\x60\xe7\x5c\x1b\xd2\x45\xef\xa5\xda\xb2\x78\x72\xb3\xcc\x88\xbd\x28\xd9\xe7\xd9\xd7\xfc\xf9\x0b\x1f\x40\x2c\xa8\xbf\x64\x5f\xdc\x87\x38\x7b\x53\x62\x5c\xf2\x96\x73\x0e\xee\xfc\xb1\xfa\x2d\x63\x25\x1d\xb9\xe6\xbe\x40\x15\x17\x21\x63\xc5\xd5\xd5\x85\x25\x77\xfd\xc5\x66\xa2\xd2\x8d\x72\x2b\xf8\xfb\x5b\xf9\xe9\xcf\x7f\x5a\xf0\xdc\x15\xbc\xce\x32\x83\xd6\xbe\x5a\x30\x7a\xae\xe0\xbd\x33\x52\x6d\xe7\x7d\x61\x16\xcb\x7c\x4e\x7e\xc6\x0a\x45\x79\x3f\x90\xf4\xc7\x09\x5d\xc1\x1b\xad\x4b\xb8\x67\xe1\xf4\x8f\xe4\x1d\x2b\xe8\xff\x8f\xb2\xe8\x6f\x94\x43\x7f\xe7\xed\x6c\x83\xae\x31\x0a\x9c\x69\x90\x9f\x3d\x3c\xc5\x96\x19\xd6\xda\x4a\xe7\x23\xeb\xbc\x25\xbf\xf7\x43\x8f\xf6\xec\xf4\x13\xcc\x18\x84\x4d\x5b\xf1\x8c\xc4\x69\x1b\x8e\x55\x8b\x26\x24\x41\x4e\x7f\x41\xf3\x39\x23\x94\xcd\xd1\x50\x60\xb2\x33\x52\x3a\x10\x69\x4a\xcb\xb3\x45\x95\x26\x50\x39\x61\xd1\xbb\x30\xfb\xb2\x1b\x3d\xc5\xc4\x51\xfa\x95\x9e\xfa\x58\x9b\x1f\x29\x3f\xe9\xb7\x4f\x3b\x00\x56\xf9\x8c\xcf\x5a\x67\xf4\x01\xb3\x13\x66\x7d\xd3\x18\x75\xec\x53\x03\xa3\x9d\xb6\x1a\x4d\x3e\xe1\x95\x67\x6d\x22\xf3\x60\x00\x78\xf9\x02\x9e\x2f\x9f\xf7\x5e\xb5\x26\x1b\x28\xd6\xfa\xe8\x84\x69\x1e\xae\x31\x52\x4c\xce\xf1\xc1\xc0\x7d\xbb\x0c\xc7\x2e\x8c\x94\xd9\xd3\x40\x63\x42\x2a\xf1\xd9\x82\xb0\x3d\x02\x2a\x65\xfe\x28\xa4\x0f\xea\x4c\x6a\x62\x82\xe1\x1c\x70\xa8\x71\x79\xb4\xee\x8f\x0e\x5a\x1a\x1d\x16\x1c\xae\xa5\x15\xac\x37\x91\x4b\x52\xae\x5d\xb4\x73\x7b\xd4\xad\x44\x41\x54\x49\xd7\xe8\xf9\x5e\xad\xad\x95\x81\x2d\xe9\x1c\x52\x83\x82\x95\x08\x8c\xa9\x0e\x66\xb0\x9d\xea\xb4\x63\xe2\xe1\x4c\xe7\xe9\x8c\x85\x91\xe5\x21\xf0\x72\xce\xc5\x7a\xaf\x20\x68\x32\xdc\x47\xdf\x9b\x8e\xd9\x6e\x47\x88\x42\xae\x8c\x4b\x46\x0b\x82\x6d\x36\xa1\x58\x19\x1b\x50\xef\x15\x9a\x67\xb6\x07\xb1\x71\x32\x11\x63\x7f\xce\x36\x42\x70\x47\xe4\x0c\x56\x7a\xc7\xf0\xec\x09\x5d\x6f\xe2\x40\xc8\x5d\x8f\x2a\x3f\xb3\x61\x1f\x50\xe2\x0e\x4b\x02\xb0\xba\xd9\x94\x32\x8d\xf5\x8a\xb4\xbe\x0e\x73\x20\xc8\x7e\x9b\x12\xab\x81\xb0\x78\x1a\xcc\x80\x5b\xe5\xc1\x3a\x6d\x22\x05\xe8\x19\x27\xd8\x34\xc0\xde\x40\x50\xca\x64\x4b\x3a\x29\xca\xf2\x00\xa9\x27\x34\xb2\xa3\xd0\xe7\xf7\xe3\x57\xad\xc4\x01\xb6\x86\x28\x15\x63\x69\x5c\xa7\xdd\x23\x31\xd7\xe8\x13\xb4\x1d\xb9\x13\x0e\x47\x5a\xd4\x2d\xdd\x0e\x45\xa6\xde\x5b\xb0\x35\xa6\x32\x97\x69\x90\x1b\xb8\xb9\x0e\x72\x07\x12\xd8\x0f\xe3\xd9\x77\x05\x57\x61\x74\xb3\x2d\xa0\x57\x48\x5c\xbb\x21\x5f\x13\xf0\xae\xc8\x28\x17\xf6\xc4\x87\x77\xcd\x96\x48\xd6\x68\x1f\x03\xdd\x07\x32\x1e\xbf\x8f\x10\x1d\x7d\x02\xe7\x91\x73\x3f\xcd\xb2\xe6\x2b\xf8\xcb\x6b\x75\x78\x17\x16\xba\x67\xdf\x7e\x18\x41\x23\xd5\x84\xa3\x47\x7e\x5d\x58\x1b\xb4\xa1\x6a\xcd\xc3\x9e\xbc\xeb\x31\x26\xee\x44\xd9\xe0\xd1\x34\x3f\x65\xb9\x45\x17\xaa\xd6\xd9\x1c\x5e\xbc\x08\x68\xbb\x3a\x1a\x4e\xff\x6e\x3e\x74\x74\x36\x60\x78\xd5\x58\x47\x15\x12\x2d\x67\x45\x85\x54\x37\xd0\xe7\x80\x19\xb1\xd2\xeb\x98\x28\xef\xec\xe6\x48\xfc\x80\x60\x2f\x4f\xf3\xc7\x61\xee\xa4\x8c\xb4\x64\x5f\x79\xb5\x14\x3e\x27\xc7\x3c\xc1\xaf\xb6\xe8\xee\x0e\x35\xce\xe6\x4b\x99\x11\x22\xe7\x12\xcd\x7c\xb0\xf6\xc3\x28\x95\xf4\xd2\x46\x2c\xee\x7f\x7f\xda\x08\xdc\x71\x22\x6b\x48\x15\x8e\xea\x8a\xac\xf1\x01\x23\x56\x4b\x95\x96\x4d\x86\x20\xa0\xed\x10\x78\x35\xd2\x02\xd3\x8f\xc3\x03\x08\x08\xd5\x4a\xd9\x63\x5b\x75\x51\xa5\x7d\x4d\xa1\xed\xcd\xe0\xab\xa9\x04\x7a\x80\x95\xe9\x38\x68\xba\xaa\x5e\x40\x29\x3f\x22\xd8\xba\x94\x5c\x86\x55\xd0\xd4\x04\xe2\xad\x10\x8b\x2a\xf3\x2f\xa8\x48\x97\x39\xc7\x94\x83\xba\xf4\x3d\x01\xb8\x3e\xdf\xc4\xc3\x1a\xe7\x9b\x60\x7a\x70\xe2\x23\x76\x49\x83\x12\x49\x78\x63\x29\x93\x4e\x1f\xc3\xa0\x5f\x74\x2e\xcc\x59\x29\x8a\xee\x20\x73\xe6\xbd\x73\x22\xa2\xe7\x43\xed\xb6\xe8\xde\x37\x75\xad\x8d\xc3\x8c\x07\x90\xb7\x52\x46\xa7\x23\xe5\x4c\xd0\xa5\xbb\x52\x5a\x47\xe1\xb4\xf3\x7d\x17\x1e\x18\xea\x5b\xae\x7a\xc3\xfe\x49\xa5\xda\xd9\x49\x15\x77\x12\xf7\xac\xe7\xf4\xba\xb3\xf9\x0a\xee\xef\x38\x7a\x88\xb3\x8d\xe1\xe7\xf6\x16\xde\x60\xa9\xf7\xde\xcb\x28\x2f\xf6\xdb\x22\xd1\x6b\x6c\x63\x42\x4c\x98\x46\x7d\xe3\x64\x15\xda\x6d\xdc\x92\x1c\xcb\xe3\xb4\xb9\x45\x17\xb6\xd9\x52\x58\x02\x62\xc1\xae\xd0\x9e\x41\xe8\xb9\x04\x1f\x1b\xb6\x54\x97\xbe\x88\x5f\xc2\x40\xbe\xcc\x8f\x40\xc0\xbe\x6f\x36\xa4\xcd\x4c\xe7\x2b\xa0\x87\xdf\x0e\xce\x68\x42\xe8\xc3\xcb\xd9\x7c\x3e\x01\xba\x01\x5a\xef\x87\x2b\xac\x98\x7f\x3e\x0c\x11\x06\xb0\xb4\x38\x8d\xdb\xef\xbc\x14\x41\x8c\xba\x76\x07\xc8\x24\x27\x7b\x61\x0e\x11\x47\x33\xcc\xf9\xbc\x19\xc3\x19\x4c\x5a\x8b\xec\x0b\x0d\x99\x56\xcf\xdc\x94\xe4\xae\xf7\x33\x69\xaa\x05\xd8\x26\x2d\x68\x91\xe1\xeb\xf7\x7b\xe9\xd2\x62\xa3\x85\xc9\xd6\x0b\x58\xf3\xb3\xb7\xda\xec\x85\xc9\xd0\xac\x01\x5d\xba\x3c\x69\x8a\x87\x93\xc0\x3a\xf0\xf9\x77\xc1\xa3\xf7\x05\x32\x9b\xd0\x86\x31\x8d\x36\x4b\x80\xa4\xbc\xbb\x48\x1b\x3c\xd9\x77\xdc\xe8\xed\x00\x8f\xa3\xb4\xd7\x31\x1e\x18\xfe\x84\x0a\xb3\x40\xa8\x83\x17\x64\x0b\xee\x85\xff\x4a\x79\xaa\x57\x23\x90\xd0\x60\xdb\xf3\xa1\x42\x3e\x33\x8e\x94\x99\x4f\x31\xf4\xf1\xb8\xbe\xe9\x99\x24\x17\xa5\xc5\xe9\x04\x73\x01\xce\x62\xcd\xa8\x4d\x4f\x72\x68\x06\xb2\x8b\xf8\x56\x13\x64\xd2\x60\xea\xda\xea\x1a\xa4\xb2\x0e\x45\x46\x38\x51\x88\x1d\xe7\x12\xee\x7e\x8a\x16\x08\x09\xfa\xba\xae\xd4\x55\xa8\xe6\x4e\x55\xdf\x11\x74\x56\xf0\x5d\xcb\xb2\xbe\xfd\xc3\x28\x8c\xe2\xb1\x3d\xbc\x1c\xc7\x51\x6d\xa6\xc2\x22\x0a\x5d\x32\xcc\x50\x4c\xdd\x7c\xc7\x47\x48\x5e\xb2\xd1\xc6\xe8\x3d\x1c\x37\xa4\xe1\xa7\xb7\x77\xed\xd4\x9b\x6b\x53\x7c\x60\x3e\x13\x19\x5e\xda\xde\x69\x70\x09\x40\xab\x6e\x51\xa1\x11\x25\xd4\x8d\xa9\xb5\x45\xa8\xd0\x89\x4c\x38\xd1\x1b\x3b\xce\xb7\x91\x94\x8e\xc4\x21\x66\x1e\x34\x09\xfd\xa2\x18\x5f\x75\x88\x2c\xf3\x6c\x76\x5f\xe8\x12\xf9\x4e\xa6\xeb\x4e\x46\xb1\x74\xfc\xb8\x43\x02\x8a\xae\x89\xd2\xd4\x5b\x23\x32\x36\x09\x55\x32\x46\x6f\xc4\x86\xea\x12\xad\xa1\xa2\x70\xd7\x39\x08\xd8\x18\x14\x1f\xb9\x2c\x2c\x84\xda\xe2\x35\xde\x18\xcc\x04\xf7\x70\x7b\xbb\x1a\xf4\xb2\x97\x6d\x53\x7b\x94\x77\xff\xc6\xfd\xdf\xb8\xc1\x1e\x21\x39\xa2\xfa\x91\xa8\xa4\x7c\xc8\x1b\x64\x5f\x35\x92\x4a\x39\xbe\x46\x58\x0c\x66\x58\x1d\x9a\xcf\xfe\x7a\x2c\xde\x20\x05\xca\xc5\x48\xfa\xa9\x2e\x65\x2a\x9d\x9f\x7d\x31\x0f\xb6\xe4\x37\xba\x75\xf2\x39\x52\xe7\xe7\xc0\x94\xa1\x41\x07\x37\x08\xde\xba\xf6\x62\xf4\xf6\xb5\x26\x01\xac\xe7\x3f\x68\x8d\x7f\x9e\x1f\x6f\xfc\x4a\x34\x67\xf6\x2f\x7e\xdc\xaa\xf6\x5a\x1d\xde\x3b\xd3\xa4\xee\xd5\x38\x9a\xba\x82\x7d\xd0\xec\xc8\x90\x98\xcc\x22\x54\xd3\xad\x53\xf9\x3b\x4a\x2e\xef\xba\x0b\xca\x16\xe4\x17\xd1\xe9\x16\x3d\x2c\x5c\xb4\x6d\x05\x7f\xdf\x16\xed\xd1\x35\x47\x9a\xae\x13\x49\x70\x61\xa3\x99\xe1\x80\xee\x31\x74\x92\xb7\xb2\xba\x5e\x9b\xab\x62\xe2\xaf\xc3\x48\x88\xb5\xd1\xee\x72\x12\x3a\xef\xa7\xff\xfb\x4c\xf2\x42\x4c\x3d\x25\x1e\x22\x8d\xe0\xc2\xd3\x69\x23\xb6\xc4\x19\x5d\x41\xbc\xc2\x60\x67\xd8\x48\x00\xdc\xa1\x96\x29\x1b\x62\xe3\x27\xe0\x65\x6c\xf8\xde\x13\x84\xf7\x5e\xfc\xcf\xc2\x15\xb4\xb1\xde\xd7\x57\xd3\x79\x5f\xc9\xf2\x12\xfb\x61\x8a\xeb\x13\xc3\x40\x6b\x69\x87\x6a\xf3\xcd\x58\x9b\x43\xba\x66\xc6\xb5\xba\xff\xcc\x13\xa3\xea\xdd\xb7\xc7\x69\xfe\x5f\xc4\x94\x4b\xdd\xc2\xb5\x27\x21\xeb\xae\x5f\xc8\x2e\xf3\xcc\x4e\x26\x98\x61\xc7\x90\x52\xe9\xa8\x6b\x18\x05\x13\xcd\x3c\x9e\xff\x85\xfb\x39\x93\xfc\x27\x56\x14\x5d\x57\xe6\xe5\x85\xae\xcc\x6b\xdf\x8a\xe9\x7a\x2c\xb1\x29\x53\xfa\xae\x96\x50\x44\xb2\xf1\xb7\x46\x94\xfe\xdb\x04\x08\x4d\xb4\x65\x1e\xae\x6c\x3e\x85\x0b\x61\xdf\x25\x14\x65\xdb\xb2\x84\xf5\x06\x73\x6d\x70\xdd\x67\x01\xbe\x8e\x09\x8b\x76\x3d\xee\x61\xae\xee\x09\x0f\xf7\xb7\x1b\xdc\x4a\xa5\x88\xb5\x8c\x7e\xec\xd0\xfd\x0c\x62\x62\xf6\x15\xb6\x7d\xf1\x02\xbc\x96\xb3\xa3\x77\x73\xf8\xe6\xbc\xdd\x7f\x6a\xdd\x29\x1a\xb3\xdf\x0d\x8b\xed\x8c\xce\xc6\xb5\xc1\x1d\xff\x06\x21\x0e\x17\xbe\xfb\x31\xee\x8e\xc5\xf7\xa7\x69\xec\x95\x2d\x0e\x91\x65\x16\xa4\xeb\x16\x0c\x5c\x79\x70\xf6\x72\xa2\xd3\xfe\x94\x06\xc7\x54\xf1\x3c\x66\xfc\x54\xb0\x59\x8b\xc6\x75\x37\xf3\xa9\x56\xa9\x41\x17\xba\x04\xc1\x52\xdd\x65\xab\x07\x43\x69\xdb\x06\xe3\x58\x5e\xa8\x93\x7b\x55\x60\x5b\x3a\xc6\x0e\x7c\x90\x76\x45\xec\xd1\xb6\x96\xd2\xfe\xa8\xac\x63\x1f\x18\x56\xf7\xf3\x15\x4c\x3b\xc2\x77\x42\x11\xdb\xe8\x4a\x2c\x90\x2a\xd5\x55\x2d\x5c\xef\xd7\x47\xb4\xbf\x6b\xfa\x9e\x93\x17\xbe\xac\x58\xdf\x39\xfd\x8d\xe1\x99\xfe\x67\x9c\x71\x75\xff\x13\x4e\x07\xf9\x23\xc3\xe6\x8f\xf1\xdd\x91\xd6\xf3\x27\x45\x92\x6d\xaa\x8b\x21\xd4\x79\xcc\x59\x24\x1b\x85\xce\xff\x55\x35\xfd\x59\xce\xee\xd1\x90\xd7\xa6\x61\x8b\x2a\x43\xf3\x45\x21\x10\x26\x03\x66\xfa\xfa\xfe\x9a\x8b\x02\xbd\xea\xba\x0d\xbe\xb3\x30\x9b\xbf\xfa\x7c\xf7\x09\x03\x57\xe3\x5b\x2a\xfc\xa1\xaa\xdd\x21\x00\x74\xb8\x88\x52\x87\xf0\xcb\x3b\x1d\xc6\x0c\x88\x0a\x23\x5a\x21\x08\xd7\xff\x8d\x46\x5f\x43\x52\x5a\x4f\x1b\x2f\x39\xfb\x3d\xb7\x4c\x27\xae\x8b\x9e\x2f\x9f\xaf\xe0\x86\xea\x78\x85\xfb\x32\x5c\xc6\xc5\x28\xf4\xce\xc0\x14\xb6\xaf\xfc\x15\xc1\x19\x7e\xb9\x30\xbb\xae\x65\x74\xec\x13\xc7\x3f\x4e\x38\xf2\xf5\xdf\x7d\x51\xf4\xf0\x9f\x00\x00\x00\xff\xff\x39\xd9\x0a\x8b\x04\x2c\x00\x00" func fungibletokenV2CdcBytes() ([]byte, error) { return bindataRead( @@ -137,11 +137,11 @@ func fungibletokenV2Cdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleToken-v2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x54, 0xca, 0x34, 0xcb, 0x48, 0x59, 0x4a, 0x1b, 0x6b, 0x38, 0xd8, 0x72, 0x26, 0xac, 0xe8, 0x6c, 0x8, 0xe4, 0xcc, 0x5c, 0x4a, 0x5d, 0x17, 0xa6, 0xcc, 0x2f, 0x3e, 0xbf, 0xfd, 0xe2, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa0, 0x41, 0xc8, 0x28, 0x21, 0x90, 0x1a, 0x45, 0x10, 0xfd, 0xee, 0x9c, 0xca, 0xb1, 0x9f, 0xd, 0x50, 0x5, 0x26, 0xdc, 0x8a, 0xe2, 0x6e, 0x6a, 0x93, 0x4c, 0xe0, 0x22, 0x5e, 0xe4, 0x83, 0x77}} return a, nil } -var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x5a\x4b\x8f\x1b\xc7\xf1\xbf\xcf\xa7\x28\x48\x07\x2d\xfd\xe7\x92\x82\xff\x81\x81\x2c\x62\x5b\x2b\xc7\x0b\x08\x48\x02\xc3\xda\xd8\x07\xc3\x08\x9b\x33\x35\x64\x43\x3d\xdd\xe3\xee\x1e\x52\xb4\xa0\xef\x1e\x54\xf5\x63\x1e\x1c\xee\xae\xe4\x1c\x02\x44\x17\x91\xc3\xe9\x7a\xd7\xaf\x1e\xbd\xeb\x2f\xbe\x28\x8a\xe7\x70\xbf\x47\xb8\x53\xe6\x08\x77\x9d\xde\xc9\xad\x42\xb8\x37\xef\x50\x83\xf3\x42\x57\xc2\x56\x45\xf1\xfc\x39\x6c\xd2\x8f\xfc\xdb\x06\x4a\xa3\xbd\x15\xa5\x07\xa9\x3d\xda\x5a\x94\x58\x14\x44\x28\x7f\x05\xbf\x17\x1e\x84\x52\x53\xb2\xe9\xa4\x83\xa3\xe9\x54\x05\x7b\x71\x40\xf0\x86\x9e\xd7\xc6\x36\xe0\xcd\xaa\x78\x53\x83\x80\xce\xa1\x75\x70\x14\xda\x3b\xfa\xbd\xc2\x56\x99\x13\x08\xd0\x78\x04\x3f\x22\xb5\x04\xbf\x47\x69\xf3\xf7\x22\x50\xd6\x88\x15\x9d\x94\x4d\xab\xb0\x41\xed\xe9\x35\x18\x29\xd2\xcb\xbb\x62\xf9\x07\x44\x26\xe2\xd5\x46\x91\x8d\x48\x21\xa2\x62\x3b\x85\x0e\x84\xae\x40\x8b\x46\xea\x5d\xc1\xea\xfa\x91\x05\x5c\x8b\xa5\xac\x25\xba\x55\x30\xe1\x4f\xa2\x53\x7e\x03\x16\x9d\xe9\x2c\x19\xec\x7b\x51\xee\x41\x94\xa5\xe9\x58\x36\xe1\xc1\x1c\xb5\x0b\xca\x25\xf3\x24\x25\x58\x0e\x41\x02\x93\x5f\x4a\x2c\x4c\xcd\xec\x98\x68\xa6\x09\xce\x1b\x8b\x15\x48\x1d\x4d\x92\xa8\xd3\x73\xb1\x8b\x5a\x4e\x0f\xed\x85\x83\x06\xfd\xde\x54\x0e\xb2\x1e\xe6\xa8\xd1\xb2\x86\xc6\xef\xd1\x46\x77\x94\x42\x43\x29\x94\x8a\x2a\xfd\x60\xcd\x41\x56\x68\x37\x4b\xd8\xfc\x88\x25\xca\x03\x7f\xa6\x53\x9b\xd7\x42\x91\xa0\xbd\xc2\xbd\x69\x1c\x8b\xe1\x86\x4f\xa0\xc2\x52\x09\x8b\xd0\x5a\xbc\x2e\x8d\xae\xa4\x97\x46\x07\x13\xb7\xc6\xf9\xe1\x33\x96\xd1\xa2\xf3\x56\x96\xbe\x20\x61\xf1\x3d\x96\x1d\xfd\x08\xd1\x2c\x75\xa7\xcb\xf0\x72\x30\x45\x50\x39\xa8\x7f\x02\xe2\xe3\xb0\x15\x56\x78\x84\x2d\x96\xa2\x23\x59\x3c\xec\xe4\x01\x1d\xbf\x4e\xda\xf2\x07\xb1\x95\x4a\xfa\x13\xb9\xc0\xed\x85\xc5\x42\x80\xc5\x1a\x2d\xea\x92\xe3\x22\x98\x39\x18\x34\xb8\x50\xab\x13\xe0\xfb\xd6\xb8\x48\xaa\x96\xa8\x2a\xd7\x4b\x54\x48\x0d\x46\x23\x18\x0b\x8d\xb1\x98\x24\xee\x4d\xb1\x2a\x8a\x37\x94\x3a\xce\x44\x81\x82\xe9\x27\xd2\x34\xe2\x1d\x42\xd9\x39\x6f\x9a\x6c\xe1\x68\x9a\x1c\xf0\x64\x9b\xb1\x95\x29\x91\x0c\x1c\x84\x95\xa6\xa3\xb7\xa5\xde\x39\x38\x4a\xbf\x67\xf2\x21\xf2\x56\xc5\x9d\xb1\x80\xef\x05\x91\x59\x82\x80\x5a\x74\x25\x7a\xf6\xfd\x16\x7b\xea\x58\xc1\xf6\x94\xf2\x96\x73\x80\xcd\x01\x29\x28\x46\xc9\xf5\xfa\x04\x9d\x93\x7a\x37\x90\x95\x5c\xdb\x8b\xb6\x8c\x6a\x9a\xfa\x22\x62\x14\x24\x81\x43\x5d\xf1\x51\x1b\xe2\x2d\xa5\x4b\x8b\x68\xaf\xbd\xb9\xa6\xff\x97\xac\x92\xe9\x3c\xa5\x0d\x31\x25\x14\x20\x4e\x0c\x0e\xa4\xad\x80\x12\x89\xaa\x02\x85\xd5\x0e\x2d\xb8\x46\x58\x9f\x59\xad\xe0\xde\x04\x4e\x91\xba\x37\x20\x74\x9f\x08\xcb\x22\xe0\x53\x4c\x52\x47\x36\x39\x31\xd3\xca\x8a\xe3\xc0\x96\x50\x5b\xd3\x0c\x83\x84\xb1\x2a\xe4\x10\x47\x6e\x85\xad\x71\xd2\xe7\xf0\x00\xa3\x47\x9c\x5e\xb8\x14\x5c\x04\x91\x64\x7a\x8f\x81\xbe\x15\xda\xd5\x68\x57\x45\xf1\xc5\xba\x28\xd6\xeb\x35\xcc\x00\xf0\x45\xf0\xcd\x5e\x5c\xd1\xd1\x42\x94\x25\x3a\x77\x25\x94\x5a\xcc\x60\xfb\x04\x34\x3f\x14\x05\x00\xc0\x7a\x0d\xb7\x1a\x50\x7b\xe9\x23\xbe\xd6\xc6\x12\x42\x9a\x23\xdb\x7c\x8f\xd9\x22\x42\x71\x98\x0f\x4c\x22\x82\x5a\x4c\x68\xc8\x7c\x48\xee\xe7\x74\x7a\xab\x30\xb1\x0c\x5a\x7a\xe3\x85\x02\xdd\x35\x5b\xb4\x03\xca\x52\x03\xbe\x97\xce\x53\x72\xae\xf2\x81\x37\x1e\xa4\x83\xae\x8d\xe9\x3a\x08\x60\x4b\x8f\x50\xbb\xce\x62\x0f\x7c\x81\xb6\xeb\xda\x56\x9d\x32\x0d\xe7\xc5\xc9\x91\xa0\x1d\x63\x06\xc5\x5f\x20\x58\x09\x8f\x67\x4a\x1c\x84\x0d\x64\xde\x32\x95\x1b\xf8\xe7\x9d\x7c\xff\xd5\x9f\xc6\x3a\xe0\x01\x13\xec\x4b\x07\xd8\x48\x4f\x19\x75\xa4\xe8\x20\x31\x7a\x2f\x38\x28\x2d\x0a\x8f\xd5\xb9\xb1\x98\x04\x3b\xc5\xbd\xd1\xd2\x4b\xa1\xe4\xef\x58\x5d\xc9\xf0\x79\xcc\x7d\xf1\x74\xf6\xc1\x9a\x84\x92\xc9\x81\xfa\x11\xaf\x0d\x04\x49\x5e\xd3\x57\xa2\xa1\xda\x93\xf8\x2f\x99\xc4\x0d\xdc\x56\x95\x45\xe7\xbe\xfd\x2c\x79\x62\xba\x70\x89\xa3\x9c\x7c\x82\x3c\x7f\x4d\x47\xce\xe4\xf1\xe6\xa2\x34\x93\x34\x42\xc2\xb8\x32\x02\xba\xc5\xdf\x3a\x69\x39\x82\x1c\x87\x7c\x32\x12\x61\x60\x22\x32\x49\xff\x3e\xe8\x38\x35\x4e\x6d\x1f\x9f\xc3\x38\xad\x0c\x3a\xd0\x26\x33\x1c\xf3\x32\x1a\x36\xdb\x54\x55\xf7\x68\x71\x99\xcf\x0e\x8a\x98\x42\x41\x45\xc3\xb4\x31\x90\x5a\xe3\x9c\x8c\x75\xc3\xd4\x21\x96\x48\x88\x58\x3b\xda\x88\xd6\xae\x17\x9d\x34\xae\x0c\xcb\xa1\x91\x8c\x2a\xac\x54\xa7\xd8\x8a\x30\x94\x99\xa3\x86\x28\xc9\x58\x8f\xa1\x13\xce\xeb\x7e\x5f\x1a\x22\x84\x24\x96\x6f\xbb\x6d\xc4\xa5\xa9\xdd\xb8\x0d\x49\x20\x38\x3a\x13\x6a\x80\xef\x2c\x85\x46\x04\xc9\x5c\xc9\x2c\x36\xe6\x80\x55\xae\x68\x83\x83\x23\x22\xf7\x83\x5e\xe1\x85\x8b\xe2\x83\xc2\x03\x2a\x0a\xc3\xb6\xdb\x2a\x59\x2e\x61\xdb\x51\x68\x4a\x47\xcf\xc8\x2c\x82\xcc\xb6\x55\xd8\x8c\x88\x25\x27\x70\x0b\xd0\xf7\x50\xd4\x7b\x25\x40\x1c\xd8\x64\xdc\xa1\x8d\x08\x95\xdc\xe8\x71\x0e\xab\x13\xd7\x8a\xc0\x3d\x49\xfa\xb0\x3e\x81\x6b\x23\x4e\xb0\xb3\x42\xfb\xd8\xbf\x45\x3e\x59\x47\x2a\xdd\x29\x14\x48\x1d\x79\x48\x48\xd6\x4b\xd1\xe6\x7e\x23\x36\xf3\xe6\xe8\x52\x5b\x5b\x8e\xfa\x42\xca\x45\xa6\x3b\xa2\xc0\xe1\x97\x5c\x9e\x55\xf7\x7b\x6b\xba\x1d\xd5\xe0\xdc\x49\x3d\x55\xa1\xd0\x14\xb1\x56\x64\x94\x47\x74\x62\xe7\x3d\x45\x25\xa2\x35\xd1\x63\x24\xfb\x88\xc6\xe7\xe9\xf1\x8a\xba\xcd\x06\x12\x04\x91\x5a\xe1\xf3\xa0\x7c\x79\x43\xfd\xd5\x04\x72\x49\x8e\xc3\x59\xf0\xbf\x0a\x91\x0f\x33\xdd\x3c\x15\x0e\x21\xf5\xb4\x04\x6b\x8a\x9e\x6a\xec\x9f\xfc\x25\xa6\xed\xb0\xe0\x2e\xe8\xfd\x7c\x7a\x82\x9d\x8b\x1b\x78\x15\xd8\x7e\xc8\x34\xe8\x1f\x75\xea\x93\x47\x81\x17\x6c\x2c\xba\x38\xfe\xd4\xd1\xd0\x21\x1f\x58\x8d\x83\x50\x1d\x9e\x1d\x0b\x47\x56\x11\x68\xe0\xeb\xaf\x93\xf9\xce\xde\xa4\x7f\xcf\x7e\xee\x9b\x8d\x68\xda\xa6\x73\x9e\x4c\x4a\x9c\x9c\x68\x10\x44\xf0\x6b\xa2\x18\x5b\xef\xde\x44\xac\xd3\xb3\x11\xf9\x8f\xc5\xf8\xd3\xc7\x3f\x50\x28\x62\xf5\x9a\xa9\x13\x5c\xcd\x9e\x58\x27\x7e\xc6\x84\xce\x52\x97\xaa\xab\x90\xba\xd9\x34\x1d\x05\x31\xca\x3d\x96\xef\xc6\xba\x46\x70\xca\x54\x8e\xc8\xb3\x35\x39\x82\xa6\x8c\xa7\x0c\x19\x61\xbe\x0b\x43\x46\x01\x03\xac\xaa\x4c\x7a\x69\x7e\xa2\x58\x82\x92\xef\x68\x20\x56\x92\x7b\xac\x86\x9a\x27\xa1\xab\xbe\xbd\xe2\x56\x9b\x7e\xa0\x96\x4a\xd6\x9c\x4e\x1e\x5a\x15\xe6\x21\x78\x7a\x85\x49\x53\xe8\xb4\xc2\xdc\x8b\x77\xd8\xd7\x09\xaa\x1d\xd1\x19\x8e\x6a\xe6\xbc\xf9\xfb\x4c\x3f\xb5\xf8\x58\x66\x87\xe6\xe6\xf1\x7c\xe4\x2c\x0c\x5e\x3a\x4a\xa5\x28\x3c\x73\x53\x33\xcb\x63\xa8\x30\xa5\x64\x7c\xfb\x2a\x30\x0c\x69\xb8\x18\x2b\xfb\x1a\x95\x39\x52\xad\xca\xc0\x54\xf5\x60\x72\xf7\xb7\x37\x3f\xc0\xf3\xaf\xfe\x0c\x7b\xef\x5b\x77\xb3\x5e\xef\xa4\xdf\x77\xdb\x55\x69\x9a\xb5\xd1\xb5\x32\xc7\x75\xad\x64\xeb\xd6\x5b\x65\xb6\xeb\x46\x48\x1d\xbf\x7f\xf9\xf2\xcb\xff\x7f\xf9\xe5\xcb\xaf\xae\xeb\x38\x0d\x5c\xb3\x77\xaf\x19\x9d\xae\xc9\x46\xd7\x95\x74\xa5\x39\xa0\x3d\xad\x9a\x6a\x1e\x69\xe8\xcb\x8f\xb1\x6a\xf3\xfc\x23\xb9\xa2\x09\xcb\xcd\x49\x1c\x75\x4e\x2d\x0e\x36\x11\x21\x95\xa2\x5b\xa5\x03\x42\xa7\x04\xd4\x2d\xf9\x0e\xc8\x8b\x9b\x68\x97\x4d\x5c\x65\x4c\x0a\x91\x74\x61\xf0\x92\x69\xb1\x13\x91\x67\xf3\xe1\xfe\xd4\xe2\x5f\x5e\xdd\x29\x73\xe4\x7e\x71\xc5\x32\x7c\x73\xb5\xb8\x01\x6f\x3b\xfc\xb8\x09\x73\x6a\x0d\x42\x9f\xa6\xa9\x30\xe2\xd1\xa5\x81\xbf\xc2\x9a\xd5\xc8\xb1\x24\x62\x62\xce\xb0\xc7\xa6\xf5\xa7\xa1\x11\x84\x63\x6d\x5a\x41\x09\x30\x5f\x77\xa8\x49\xd4\x2f\x7c\xde\x98\xe5\x64\x1b\x2f\xe9\x56\x93\x7d\xd3\xe5\xda\xf4\xdd\x58\xab\x89\xe0\xa1\xf1\xc6\xf7\x2d\x96\x3e\xec\xa2\xba\x76\x67\x45\x85\x93\xad\x5b\x28\x9e\x55\xc5\x5b\xaa\x11\x85\x89\x2b\x84\xe7\xe9\xca\x58\xef\x82\x63\x82\xc3\x86\x3d\xac\x74\x40\x51\xc4\x75\x81\xdd\x4d\xe8\x99\xb6\x16\xa2\x6d\x95\x2c\xa3\x6c\x71\x35\xf6\x40\xe1\x8d\x96\x1e\x07\x5a\x14\x00\x33\x0c\x84\x1a\x1b\x43\x6f\x7b\xba\x0c\x06\xab\x07\x2b\x68\xce\xd2\x1d\xfa\xb7\x89\x07\x3b\x82\xc2\xcc\x51\x54\x71\xc0\xdd\xc0\x6b\x63\xd4\xc7\x49\xad\xcc\xa9\xcb\xf8\x4d\x56\x18\x2e\x5b\x12\x1e\xf7\xe3\xaa\xed\xf4\xb5\x97\x4d\x00\xa8\x10\x58\x53\x7a\xdc\x8b\xee\xd0\xc7\x80\x1b\x4e\x98\x21\xc6\x46\x40\x45\xf1\x14\xd1\x7b\x36\x98\x56\x30\xa2\x2f\x6b\x70\xa8\xea\xd5\x0e\x59\xbd\xab\xc5\x4a\x3a\x6a\xe5\xe9\xb3\xa9\x6f\x20\xa6\xd6\x39\xa1\x6f\xae\x16\x8b\x99\x3e\x21\xba\xea\xc3\x98\x68\x4c\xc4\x71\x55\x06\x54\x0e\xe7\x5b\x8d\x00\x2f\x14\x86\x73\xd9\x35\xcc\x50\x6e\x3b\x38\xb6\xb2\x11\x8e\x7b\x03\x95\xd1\x2f\xfc\x1c\xe5\x7e\x93\x3c\x6b\x9d\x25\xb8\xae\xdc\x13\x93\xf1\xcf\x6f\x8f\xd2\x97\xfb\xad\x11\xb6\xda\x2c\x61\xc3\xcf\xee\x8c\x3d\x0a\x5b\xa1\xdd\x00\xfa\x72\x75\xd1\x14\x1f\xff\x40\x33\x12\x2b\x4f\xd0\xb9\x9f\x1c\x79\x21\x09\xc3\xfd\x71\x26\x42\x50\x37\x68\x61\xa8\x46\x51\xb4\x68\x3c\x86\x17\x03\x16\xc4\x75\xc4\x72\xd8\x5f\x64\x12\x14\xb4\xfd\x2a\x02\x4a\x63\x2d\x96\x5e\x9d\x3e\xa9\x8a\xc7\xdd\xf1\x59\x11\xcf\xeb\x99\x41\x07\x27\xce\xdb\xe3\xd9\xac\x3c\x08\x9b\x8e\x8d\x17\x32\x1c\xc9\x5a\xfa\xab\xc9\xaf\xd3\x08\xbd\xd0\xdc\x72\xb0\x0e\x7a\xd4\x44\x65\xbe\x49\x4d\x9a\xa5\xd6\x74\x68\xab\xd4\x83\x84\x47\x89\xd0\xe5\x76\x74\x64\x9b\xbb\xb4\x40\x8c\xdb\xf1\x38\x18\xc7\xfb\x8a\xbf\xa3\x17\x95\xf0\x02\x7e\x92\x78\x74\xd3\x1d\xae\x98\xec\x09\x1f\x05\xd3\x5b\x0d\xc2\x5a\xc1\x50\xca\xc0\x46\x29\xd5\xf7\x38\x43\xf2\x07\x62\xb8\x82\x7b\x02\xfa\x90\x6f\xa9\xed\xe9\x1c\x73\x1f\x31\x48\xff\x2a\x9a\xc0\x4d\x1b\x27\x85\x77\xda\x1c\xe1\xb8\x97\xe5\x1e\xb8\xd9\xc2\xb8\xba\x6b\x85\x1b\x4c\x12\xce\xa8\x03\x92\x7e\x57\x8b\x58\x52\xe6\xab\xc2\x0c\x54\xb3\x55\x08\x69\x7e\x21\x6d\x7e\x9d\x78\x39\x2a\xfd\xcb\xaf\x4f\xb5\x3d\x4b\x42\xdd\x66\x93\xcc\x4e\x56\x60\xa0\x49\x73\x7c\xb0\x76\xb8\xc7\xa2\x72\x93\x3b\xfd\x59\xb3\x87\x16\x93\x88\x84\x16\x93\xa4\x4c\x19\x5c\xa1\x93\x36\x1a\x7a\x35\xef\x2d\x70\xde\x76\xa5\xa7\xba\x61\xb1\xb5\xe8\xd2\x7c\x11\x87\x14\x74\x7e\x8e\xc0\x45\x8b\x0d\x6d\xfd\xaf\x24\xd6\xa9\xc5\xc5\x0d\xdc\xea\xd3\x5b\x66\xf6\xed\xbc\x11\xb5\x54\x0f\x63\xd8\x60\xbc\x9e\x42\x58\x7f\xa9\xe3\xcd\xa5\x7b\x80\xd5\x88\x58\xb8\x54\x12\xe9\x66\x88\xe7\xa4\xd2\xf2\x0a\x9d\x2c\x28\x75\x78\x34\x5d\x77\x37\x28\xf4\x64\xcc\x41\xee\x47\x2e\xac\xd3\x27\xd7\x2e\xee\xa1\x8b\xc6\x4c\x91\x11\x80\xd3\x06\x87\x82\x4d\xaf\x09\xb3\x1d\x42\x6d\x8e\xd1\x7e\xe1\xe6\x6d\x04\xe4\xfd\x0d\xdc\xf0\x96\x25\x8c\x3e\x7c\xd7\xe6\x62\x07\x17\xe7\xd4\x2a\x5d\x55\xd1\x2b\xfd\x75\x15\x3c\x06\xdb\x2c\xf0\x4d\xde\xed\x2d\xf3\x0c\xb6\xfc\x24\x1c\x3f\x5f\x74\x3c\x19\xbd\x23\xc9\xfe\x2a\x2a\xb8\x37\x5a\x38\xdc\x2b\xf6\x2b\x35\xf9\xfb\xa8\x73\x1f\x6d\x82\xc2\xc6\x27\xe3\xd8\x18\x89\xcf\x6b\x66\xa0\xf0\x70\x15\xb9\xb4\xe9\xdc\x84\x25\xc5\xa6\x9f\xcc\x98\xee\x0b\x37\x2a\xa9\x30\xbb\xed\xcc\x05\xb9\x6f\xfe\x5d\x24\x4c\x98\x7a\x7e\xfe\xbf\x7e\x17\xf5\x9f\x5f\x45\xd9\xb9\xf6\x70\x54\xac\xbf\x79\x64\xa1\x74\x1b\x8c\xd2\x4b\x9d\x8a\xb6\x0a\x0b\x42\xa1\xc1\x58\xc0\xdf\x3a\xa1\xc2\xb7\x99\xdd\xd2\x83\x1b\x25\x78\x70\x65\x46\xb3\x10\x7b\xb6\xc5\x92\xa2\x30\x5f\x11\x6e\xb6\x58\x1b\x8b\x1b\xde\xdd\xa0\x8f\x6e\xa1\xd2\x1a\x99\x4e\x7a\xbd\x39\xe2\x71\xb6\xde\xe2\x4e\x6a\xf6\xcf\xe4\xe2\xbc\xbf\x52\x9f\x39\xfd\x78\x0f\xc4\x02\x5e\x0d\x1f\x2f\xe0\xfa\x61\x6b\xff\x23\xc7\xf4\x76\xd2\x23\x85\x3d\x41\x9d\x6e\xdd\xa3\xa4\xad\xc5\x03\xcf\x83\xe9\x75\x11\x76\x48\x4f\x5f\xe7\xfd\x2f\x2d\x88\xce\x27\xcd\x5b\xe7\xd0\xfa\x7e\xcd\x32\x2e\x8d\xb9\xb9\x48\xf7\x6d\x61\x3e\x0e\x6b\x14\x5e\xa6\x4e\xe9\xc5\xd9\xea\xd0\xff\x29\x84\x74\x71\x47\x93\x54\x8b\xd4\x9e\x90\xa7\x24\xfb\x4a\xba\x37\xf1\xaf\x5d\xae\xc6\x13\xe1\xe2\x06\xe6\x63\xe8\x3b\xa1\xb5\xf1\x79\xa6\x67\xcc\x2f\x4d\xd3\x0a\x3f\x68\xb7\x48\xbf\xcf\xc8\xc8\x27\xc5\xf8\xff\xa5\xc7\xac\x40\x7a\xfc\x59\x11\xef\xba\xe6\xd1\x50\xef\xdd\xf3\x69\x9b\xeb\xdb\x78\xef\xa1\x4f\xf1\x2f\x5d\x4c\x1c\xea\x46\xb5\x85\x9d\xb8\x17\x94\x15\xbf\xa3\x35\xd3\x51\x2f\x53\x1b\x16\x80\xfe\x74\xfe\x3b\x27\xb8\xd0\x40\x50\xac\x06\xae\xdf\xd3\x9c\xce\xa7\xae\xe6\xe0\x7c\xc6\x21\xe7\x57\x03\x2f\x57\x2f\x6f\xe0\x59\x14\x41\x9d\xd2\x90\x1a\x85\x61\xc3\xf2\xdf\x50\x0d\x35\x79\x76\x66\xa1\x8f\xc5\xbf\x03\x00\x00\xff\xff\x4f\x44\x1a\x86\x16\x27\x00\x00" +var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x5a\x5b\x8f\xdb\xc6\xf5\x7f\xe7\xa7\x38\xb0\x1f\xbc\xca\x5f\x2b\x19\xf9\x17\x01\xba\x68\x12\xaf\xd3\x2c\x60\xa0\x2d\x82\x78\x9b\x3c\x04\x41\x35\x22\x0f\xa5\x81\x87\x33\xcc\xcc\x50\x34\x63\xf8\xbb\x17\xe7\xcc\x0c\x6f\xa2\x76\xd7\x4e\x1f\x0a\xd4\x2f\x96\x28\xce\xb9\x9f\xdf\xb9\xcc\x6e\xbf\xf8\x22\xcb\x9e\xc3\xfd\x11\xe1\x4e\x99\x16\xee\x1a\x7d\x90\x7b\x85\x70\x6f\xde\xa1\x06\xe7\x85\x2e\x84\x2d\xb2\xec\xf9\x73\xd8\xa5\x1f\xf9\xb7\x1d\xe4\x46\x7b\x2b\x72\x0f\x52\x7b\xb4\xa5\xc8\x31\xcb\x88\x50\xff\x15\xfc\x51\x78\x10\x4a\xcd\xc9\xa6\x93\x0e\x5a\xd3\xa8\x02\x8e\xe2\x84\xe0\x0d\x3d\x2f\x8d\xad\xc0\x9b\x4d\xf6\xa6\x04\x01\x8d\x43\xeb\xa0\x15\xda\x3b\xfa\xbd\xc0\x5a\x99\x0e\x04\x68\x6c\xc1\x4f\x48\xad\xc1\x1f\x51\xda\xfe\x7b\x16\x28\x6b\xc4\x82\x4e\xca\xaa\x56\x58\xa1\xf6\xf4\x1a\x4c\x14\x19\xe4\xdd\xb0\xfc\x23\x22\x33\xf1\x4a\xa3\xc8\x46\xa4\x10\x51\xb1\x8d\x42\x07\x42\x17\xa0\x45\x25\xf5\x21\x63\x75\xfd\xc4\x02\xae\xc6\x5c\x96\x12\xdd\x26\x98\xf0\x27\xd1\x28\xbf\x03\x8b\xce\x34\x96\x0c\xf6\xbd\xc8\x8f\x20\xf2\xdc\x34\x2c\x9b\xf0\x60\x5a\xed\x82\x72\xc9\x3c\x49\x09\x96\x43\x90\xc0\xe4\x97\x1c\x33\x53\x32\x3b\x26\xda\xd3\x04\xe7\x8d\xc5\x02\xa4\x8e\x26\x49\xd4\xe9\xb9\x38\x44\x2d\xe7\x87\x8e\xc2\x41\x85\xfe\x68\x0a\x07\xbd\x1e\xa6\xd5\x68\x59\x43\xe3\x8f\x68\xa3\x3b\x72\xa1\x21\x17\x4a\x45\x95\x7e\xb0\xe6\x24\x0b\xb4\xbb\x35\xec\x7e\xc4\x1c\xe5\x89\x3f\xd3\xa9\xdd\x6b\xa1\x48\xd0\x41\xe1\xc1\x34\x8e\xc5\x70\xe3\x27\x50\x60\xae\x84\x45\xa8\x2d\x5e\xe7\x46\x17\xd2\x4b\xa3\x83\x89\x6b\xe3\xfc\xf8\x19\xcb\x68\xd1\x79\x2b\x73\x9f\x91\xb0\xf8\x1e\xf3\x86\x7e\x84\x68\x96\xb2\xd1\x79\x78\x39\x98\x22\xa8\x1c\xd4\xef\x80\xf8\x38\xac\x85\x15\x1e\x61\x8f\xb9\x68\x48\x16\x0f\x07\x79\x42\xc7\xaf\x93\xb6\xfc\x41\xec\xa5\x92\xbe\x23\x17\xb8\xa3\xb0\x98\x09\xb0\x58\xa2\x45\x9d\x73\x5c\x04\x33\x07\x83\x06\x17\x6a\xd5\x01\xbe\xaf\x8d\x8b\xa4\x4a\x89\xaa\x70\x83\x44\x99\xd4\x60\x34\x82\xb1\x50\x19\x8b\x49\xe2\xc1\x14\x9b\x2c\x7b\x43\xa9\xe3\x4c\x14\x28\x98\x7e\x26\x4d\x25\xde\x21\xe4\x8d\xf3\xa6\xea\x2d\x1c\x4d\xd3\x07\x3c\xd9\x66\x6a\x65\x4a\x24\x03\x27\x61\xa5\x69\xe8\x6d\xa9\x0f\x0e\x5a\xe9\x8f\x4c\x3e\x44\xde\x26\xbb\x33\x16\xf0\xbd\x20\x32\x6b\x10\x50\x8a\x26\x47\xcf\xbe\xdf\xe3\x40\x1d\x0b\xd8\x77\x29\x6f\x39\x07\xd8\x1c\x90\x82\x62\x92\x5c\xaf\x3b\x68\x9c\xd4\x87\x91\xac\xe4\xda\x41\xb4\x75\x54\xd3\x94\x17\x11\x23\x23\x09\x1c\xea\x82\x8f\xda\x10\x6f\x29\x5d\x6a\x44\x7b\xed\xcd\x35\xfd\xbf\x66\x95\x4c\xe3\x29\x6d\x88\x29\xa1\x00\x71\x62\x70\x20\x6d\x05\xe4\x48\x54\x15\x28\x2c\x0e\x68\xc1\x55\xc2\xfa\x9e\xd5\x06\xee\x4d\xe0\x14\xa9\x7b\x03\x42\x0f\x89\xb0\xce\x02\x3e\xc5\x24\x75\x64\x93\x8e\x99\x16\x56\xb4\x23\x5b\x42\x69\x4d\x35\x0e\x12\xc6\xaa\x90\x43\x1c\xb9\x05\xd6\xc6\x49\xdf\x87\x07\x18\x3d\xe1\xf4\xc2\xa5\xe0\x22\x88\x24\xd3\x7b\x0c\xf4\xad\xd0\xae\x44\xbb\xc9\xb2\x2f\xb6\x59\xb6\xdd\x6e\x61\x01\x80\x2f\x82\x6f\xef\xc5\x0d\x1d\xcd\x44\x9e\xa3\x73\x57\x42\xa9\xd5\x02\xb6\xcf\x40\xf3\x43\x96\x01\x00\x6c\xb7\x70\xab\x01\xb5\x97\x3e\xe2\x6b\x69\x2c\x21\xa4\x69\xd9\xe6\x47\xec\x2d\x22\x14\x87\xf9\xc8\x24\x22\xa8\xc5\x84\xc6\xcc\xc7\xe4\x7e\x4e\xa7\xf7\x0a\x13\xcb\xa0\xa5\x37\x5e\x28\xd0\x4d\xb5\x47\x3b\xa2\x2c\x35\xe0\x7b\xe9\x3c\x25\xe7\xa6\x3f\xf0\xc6\x83\x74\xd0\xd4\x31\x5d\x47\x01\x6c\xe9\x11\x6a\xd7\x58\x1c\x80\x2f\xd0\x76\x4d\x5d\xab\xae\xa7\xe1\xbc\xe8\x1c\x09\xda\x30\x66\x50\xfc\x05\x82\x85\xf0\x78\xa6\xc4\x49\xd8\x40\xe6\x2d\x53\xb9\x81\x7f\xde\xc9\xf7\x5f\xfd\x69\xaa\x03\x9e\x30\xc1\xbe\x74\x80\x95\xf4\x94\x51\x2d\x45\x07\x89\x31\x78\xc1\x41\x6e\x51\x78\x2c\xce\x8d\xc5\x24\xd8\x29\xee\x8d\x96\x5e\x0a\x25\x7f\xc7\xe2\x4a\x86\xcf\x53\xee\xab\xa7\xb3\x0f\xd6\x24\x94\x4c\x0e\xd4\x8f\x78\x6d\x24\x48\xf2\x9a\xbe\x12\x15\xd5\x9e\xc4\x7f\xcd\x24\x6e\xe0\xb6\x28\x2c\x3a\xf7\xed\x67\xc9\x13\xd3\x85\x4b\x1c\xe5\xe4\x13\xe4\xf9\x6b\x3a\x72\x26\x8f\x37\x17\xa5\x99\xa5\x11\x12\xc6\xe5\x11\xd0\x2d\xfe\xd6\x48\xcb\x11\xe4\x38\xe4\x93\x91\x08\x03\x13\x91\x59\xfa\x0f\x41\xc7\xa9\xd1\xd5\x43\x7c\x8e\xe3\xb4\x30\xe8\x40\x9b\x9e\xe1\x94\x97\xd1\xb0\xdb\xa7\xaa\x7a\x44\x8b\xeb\xfe\xec\xa8\x88\x29\x14\x54\x34\x4c\x1d\x03\xa9\x36\xce\xc9\x58\x37\x4c\x19\x62\x89\x84\x88\xb5\xa3\x8e\x68\xed\x06\xd1\x49\xe3\xc2\xb0\x1c\x1a\xc9\xa8\xc2\x4a\xd5\xc5\x56\x84\xa1\xcc\xb4\x1a\xa2\x24\x53\x3d\xc6\x4e\x38\xaf\xfb\x43\x69\x88\x10\x92\x58\xbe\x6d\xf6\x11\x97\xe6\x76\xe3\x36\x24\x81\xe0\xe4\x4c\xa8\x01\xbe\xb1\x14\x1a\x11\x24\xfb\x4a\x66\xb1\x32\x27\x2c\xfa\x8a\x36\x3a\x38\x21\x72\x3f\xea\x15\x5e\xb8\x28\x3e\x28\x3c\xa1\xa2\x30\xac\x9b\xbd\x92\xf9\x1a\xf6\x0d\x85\xa6\x74\xf4\x8c\xcc\x22\xc8\x6c\x7b\x85\xd5\x84\x58\x72\x02\xb7\x00\x43\x0f\x45\xbd\x57\x02\xc4\x91\x4d\xa6\x1d\xda\x84\x50\xce\x8d\x1e\xe7\xb0\xea\xb8\x56\x04\xee\x49\xd2\x87\xf5\x09\x5c\x2b\xd1\xc1\xc1\x0a\xed\x63\xff\x16\xf9\xf4\x3a\x52\xe9\x4e\xa1\x40\xea\xc8\x53\x42\xb2\x41\x8a\xba\xef\x37\x62\x33\x6f\x5a\x97\xda\xda\x7c\xd2\x17\x52\x2e\x32\xdd\x09\x05\x0e\xbf\xe4\xf2\x5e\x75\x7f\xb4\xa6\x39\x50\x0d\xee\x3b\xa9\xa7\x2a\x14\x9a\x22\xd6\x8a\x8c\xf2\x88\x4e\xec\xbc\xa7\xa8\x44\xb4\x66\x7a\x4c\x64\x9f\xd0\xf8\x3c\x3d\x5e\x51\xb7\x59\x41\x82\x20\x52\x2b\x7c\x1e\x95\x2f\x6f\xa8\xbf\x9a\x41\x2e\xc9\x71\x3a\x0b\xfe\x57\x21\xf2\x61\xa1\x9b\xa7\xc2\x21\xa4\x9e\x97\x60\x4d\xd1\x53\x4c\xfd\xd3\x7f\x89\x69\x3b\x2e\xb8\x2b\x7a\xbf\x3f\x3d\xc3\xce\xd5\x0d\xbc\x0a\x6c\x3f\xf4\x34\xe8\x1f\x75\xea\xb3\x47\x81\x17\xec\x2c\xba\x38\xfe\x94\xd1\xd0\x21\x1f\x58\x8d\x93\x50\x0d\x9e\x1d\x0b\x47\x36\x11\x68\xe0\xeb\xaf\x93\xf9\xce\xde\xa4\x7f\xcf\x7e\x1e\x9a\x8d\x68\xda\xaa\x71\x9e\x4c\x4a\x9c\x9c\xa8\x10\x44\xf0\x6b\xa2\x18\x5b\xef\xc1\x44\xac\xd3\xb3\x09\xf9\x8f\xd9\xf4\xd3\xc7\x3f\x50\x28\x62\xf5\x5a\xa8\x13\x5c\xcd\x9e\x58\x27\x7e\xc6\x84\xce\x52\xe7\xaa\x29\x90\xba\xd9\x34\x1d\x05\x31\xf2\x23\xe6\xef\xa6\xba\x46\x70\xea\xa9\xb4\xc8\xb3\x35\x39\x82\xa6\x8c\xa7\x0c\x19\x61\xbe\x0b\x43\x46\x06\x23\xac\x2a\x4c\x7a\x69\x79\xa2\x58\x83\x92\xef\x68\x20\x56\x92\x7b\xac\x8a\x9a\x27\xa1\x8b\xa1\xbd\xe2\x56\x9b\x7e\xa0\x96\x4a\x96\x9c\x4e\x1e\x6a\x15\xe6\x21\x78\x7a\x85\x49\x53\xe8\xbc\xc2\xdc\x8b\x77\x38\xd4\x09\xaa\x1d\xd1\x19\x8e\x6a\xe6\xb2\xf9\x87\x4c\xef\x6a\x7c\x2c\xb3\x43\x73\xf3\x78\x3e\x72\x16\x06\x2f\xb5\x52\x29\x0a\xcf\xbe\xa9\x59\xe4\x31\x56\x98\x52\x32\xbe\x7d\x15\x18\x86\x34\x5c\x4d\x95\x7d\x8d\xca\xb4\x54\xab\x7a\x60\x2a\x06\x30\xb9\xfb\xdb\x9b\x1f\xe0\xf9\x57\x7f\x86\xa3\xf7\xb5\xbb\xd9\x6e\x0f\xd2\x1f\x9b\xfd\x26\x37\xd5\xd6\xe8\x52\x99\x76\x5b\x2a\x59\xbb\xed\x5e\x99\xfd\xb6\x12\x52\xc7\xef\x5f\xbe\xfc\xf2\xff\x5f\x7e\xf9\xf2\xab\xeb\x32\x4e\x03\xd7\xec\xdd\x6b\x46\xa7\x6b\xb2\xd1\x75\x21\x5d\x6e\x4e\x68\xbb\x4d\x55\x2c\x23\x0d\x7d\xf9\x31\x56\x6d\x9e\x7f\x24\x57\x34\x61\xb9\x39\x89\xa3\x4e\x57\xe3\x68\x13\x11\x52\x29\xba\x55\x3a\x20\x74\x4a\x40\x5d\x93\xef\x80\xbc\xb8\x8b\x76\xd9\xc5\x55\xc6\xac\x10\x49\x17\x06\x2f\x99\x16\x3b\x11\x79\x76\x1f\xee\xbb\x1a\xff\xf2\xea\x4e\x99\x96\xfb\xc5\x0d\xcb\xf0\xcd\xd5\xea\x06\xbc\x6d\xf0\xe3\x2e\xcc\xa9\x25\x08\xdd\xcd\x53\x61\xc2\xa3\x49\x03\x7f\x81\x25\xab\xd1\xc7\x92\x88\x89\xb9\xc0\x1e\xab\xda\x77\x63\x23\x08\xc7\xda\xd4\x82\x12\x60\xb9\xee\x50\x93\xa8\x5f\xf8\x7e\x63\xd6\x27\xdb\x74\x49\xb7\x99\xed\x9b\x2e\xd7\xa6\xef\xa6\x5a\xcd\x04\x0f\x8d\x37\xbe\xaf\x31\xf7\x61\x17\xd5\xd4\x07\x2b\x0a\x9c\x6d\xdd\x42\xf1\x2c\x0a\xde\x52\x4d\x28\xcc\x5c\x21\x3c\x4f\x57\xc6\x7a\x17\x1c\x13\x1c\x36\xee\x61\xa5\x03\x8a\x22\xae\x0b\xec\x6e\x42\xcf\xb4\xb5\x10\x75\xad\x64\x1e\x65\x8b\xab\xb1\x07\x0a\x6f\xb4\xf4\x34\xd0\xa2\x00\xd8\xc3\x40\xa8\xb1\x31\xf4\xf6\xdd\x65\x30\xd8\x3c\x58\x41\xc3\xf8\x27\xb1\xe5\x54\x3d\xa0\x7f\x9b\x18\xb1\x37\x28\xd6\x1c\x85\x16\x47\xdd\x0d\xbc\x36\x46\x7d\x9c\x15\xcc\x3e\x7f\x19\xc4\xc9\x14\xe3\x8d\x4b\x02\xe5\x61\x66\xb5\x8d\xbe\xf6\xb2\x0a\x28\x15\xa2\x6b\x4e\x8f\x1b\xd2\x03\xfa\x18\x75\xe3\x31\x33\x04\xda\x04\xad\x28\xa8\x22\x84\x2f\x46\xd4\x06\x26\xf4\x65\x09\x0e\x55\xb9\x39\x20\xab\x77\xb5\xda\x48\x47\xfd\x3c\x7d\x36\xe5\x0d\xc4\xfc\x3a\x27\xf4\xcd\xd5\x6a\xb5\xd0\x2c\x44\x7f\x7d\x98\x12\x8d\xd9\x38\x2d\xcd\x80\xca\xe1\x72\xbf\x11\x30\x86\x62\x71\x29\xc5\xc6\x69\xca\xbd\x07\x07\x58\x6f\x84\xf6\x68\xa0\x30\xfa\x85\x5f\xa2\x3c\xac\x93\x17\xad\xb3\x06\xd7\xe4\x47\x62\x32\xfd\xf9\x6d\x2b\x7d\x7e\xdc\x1b\x61\x8b\xdd\x1a\x76\xfc\xec\xce\xd8\x56\xd8\x02\xed\x0e\xd0\xe7\x9b\x8b\xa6\xf8\xf8\x07\x3a\x92\x58\x7e\x82\xce\xc3\xf8\xc8\x5b\x49\x18\x2f\x91\x7b\x22\x84\x77\xa3\x3e\x86\x0a\x15\x45\x8b\xc6\x36\xbc\x18\x00\x21\xee\x24\xd6\xe3\x26\xa3\x27\x41\x41\x3b\xec\x23\x20\x37\xd6\x62\xee\x55\xf7\x49\xa5\x3c\x2e\x90\xcf\x2a\x79\xbf\xa3\x19\xb5\x71\xe2\xbc\x47\x5e\x4e\x4d\x61\xd3\xb1\xe9\x56\x86\x23\x59\x4b\x7f\x35\xfb\x75\x1e\xa1\x17\x3a\x5c\x0e\xd6\x51\xa3\x9a\xa8\x2c\x77\xaa\x49\xb3\xd4\x9f\x8e\x6d\x95\x1a\x91\xf0\x28\x11\xba\xdc\x93\x4e\x6c\x73\x97\xb6\x88\x71\x45\x1e\xa7\xe3\x78\x69\xf1\x77\xf4\xa2\x10\x5e\xc0\x4f\x12\x5b\x37\x5f\xe4\x8a\xd9\xb2\xf0\x51\x44\xbd\xd5\x20\xac\x15\x8c\xa7\x0c\x6c\x94\x52\x43\xa3\x33\x26\x4f\x88\xe8\x36\x70\x4f\x68\x1f\xf2\x2d\xf5\x3e\x8d\x63\xee\x13\x06\xe9\x5f\x41\x63\xb8\xa9\xe3\xb8\xf0\x4e\x9b\x16\xda\xa3\xcc\x8f\xc0\x1d\x17\xc6\xfd\x5d\x2d\xdc\x68\x9c\x70\x46\x9d\x90\xf4\xbb\x5a\xc5\xba\xb2\x5c\x1a\x2e\xe1\x35\x9b\x86\xe0\xe6\x17\x52\xe9\xd7\x99\xab\xa3\xe6\xbf\xfc\xfa\x54\x07\xb0\x38\xd4\x77\x56\xc9\xf6\x81\x99\xb1\xfd\x44\x1f\x4c\x1e\x6e\xb4\xa8\xf0\xf4\x3d\xff\xa2\xed\x43\xb3\x49\x44\x42\xb3\x49\x52\xa6\x34\x2e\xd0\x49\x1b\xad\xbd\x59\x76\x19\x38\x6f\x9b\xdc\x53\xf1\xb0\x58\x5b\x74\x69\xd2\x88\xe3\x0a\x3a\xbf\x44\xe0\x61\xb3\x8d\xad\xfe\xaf\x24\x5b\x57\xe3\xea\x06\x6e\x75\xf7\x96\x39\x7e\xbb\x6c\x49\x2d\xd5\xc3\x68\x36\x9a\xb6\xe7\x60\x36\xdc\xf1\x78\x73\xe9\x5a\x60\x33\x21\x16\xee\x98\x44\xba\x28\xe2\xb1\x29\xb7\xbc\x51\x27\x33\x4a\x1d\x1e\xcd\xb7\xdf\x15\x0a\x3d\x9b\x7a\x90\xdb\x93\x0b\xdb\xf5\xd9\x2d\x8c\x7b\xe8\xde\xb1\xa7\xc8\x58\xc0\x09\x84\x63\xc1\xe6\xb7\x86\xbd\x1d\x42\x95\x8e\x71\x7f\xe1\x22\x6e\x02\xe9\xc3\x85\xdc\xf8\xd2\x25\x4c\x42\x7c\xf5\xe6\x62\x43\x17\xc7\xd6\x22\xdd\x5c\xd1\x2b\xc3\xed\x15\x3c\x06\xe0\x2c\xf0\x4d\xbf\xea\x5b\xf7\x23\xd9\xfa\x93\x10\xfd\x7c\xef\xf1\x64\x1c\x8f\x24\x87\x9b\xa9\xe0\xde\x68\xe1\x70\xcd\x38\x6c\xd8\xe4\xef\x93\x46\x7e\xb2\x18\x0a\x0b\xa0\x1e\xd1\xa6\x98\x7c\x5e\x3d\x03\x85\x87\xeb\xc9\xa5\xc5\xe7\x2e\xec\x2c\x76\xc3\xa0\xc6\x74\x5f\xb8\x49\x71\x85\xc5\xe5\x67\x5f\x9a\x87\x59\xc0\x45\xc2\x84\xae\xe7\xe7\xff\xeb\x57\x53\xff\xf9\xcd\x94\x5d\x6a\x14\x27\x65\xfb\x9b\x47\xf6\x4b\xb7\xc1\x28\x83\xd4\xa9\x7c\xab\xb0\x2f\x14\x1a\x8c\x05\xfc\xad\x11\x2a\x7c\x5b\x58\x35\x3d\xb8\x60\x82\x07\x37\x68\x34\x1a\xb1\x67\x6b\xcc\x29\x0a\xfb\x1b\xc3\xdd\x1e\x4b\x63\x71\xc7\xab\x1c\xf4\xd1\x2d\x54\x64\x23\xd3\x59\xd7\xb7\x44\x3c\x8e\xda\x7b\x3c\x48\xcd\xfe\x99\xdd\xa3\x0f\x37\xec\x0b\xa7\x1f\xef\x86\x58\xc0\xab\xf1\xe3\x15\x5c\x3f\x6c\xed\x7f\xf4\x31\xbd\x9f\x75\x4b\x61\x6d\x50\xa6\x4b\xf8\x28\x69\x6d\xf1\xc4\xe3\x61\x7a\x5d\x84\x95\xd2\xd3\xb7\x7b\xff\x4b\xfb\xa2\xf3\x99\xf3\xd6\x39\xb4\x7e\xd8\xba\x4c\x4b\x63\xdf\x61\xa4\xeb\xb7\x30\x2e\x87\xad\x0a\xef\x56\xe7\xf4\xe2\x94\x75\x1a\xfe\x32\x42\xba\xb8\xb2\x49\xaa\x45\x6a\x4f\xc8\x53\x92\x7d\x23\xdd\x9b\xf8\xc7\x2f\x57\xd3\xd9\x70\x75\x03\xcb\x31\xf4\x9d\xd0\xda\xf8\x7e\xc4\x67\xcc\xcf\x4d\x55\x0b\x3f\xea\xb9\x48\xbf\xcf\xc8\xc8\x27\xc5\xf8\xff\xa5\xc7\xac\x40\x7a\xfc\x59\x11\xef\x9a\xea\xd1\x50\x1f\xdc\xf3\x69\x8b\xec\xdb\x78\x0d\xa2\xbb\xf8\x87\x2f\x26\x8e\x77\x93\xda\xc2\x4e\x3c\x0a\xca\x8a\xdf\xd1\x9a\xf9\xd0\xd7\x53\x1b\x17\x80\xe1\x74\xff\x67\x4f\x70\xa1\x81\xa0\x58\x0d\x5c\xbf\xa7\x89\x9d\x4f\x5d\x2d\xc1\xf9\x82\x43\xce\x6f\x0a\x5e\x6e\x5e\xde\xc0\xb3\x28\x82\xea\xd2\xb8\x1a\x85\x61\xc3\xf2\x9f\x54\x8d\x35\x79\x76\x66\xa1\x8f\xd9\xbf\x03\x00\x00\xff\xff\x95\x15\x85\x70\x25\x27\x00\x00" func fungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -157,11 +157,11 @@ func fungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdd, 0xcb, 0x8c, 0x1c, 0x42, 0xd2, 0xa9, 0x6b, 0x82, 0x37, 0xef, 0xe, 0x66, 0x29, 0xb0, 0x52, 0xa3, 0x42, 0xb7, 0xde, 0x6, 0x86, 0x37, 0x47, 0xce, 0xee, 0x99, 0xd5, 0x6a, 0x40, 0x6, 0x28}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xe6, 0xe4, 0x70, 0xd8, 0x4d, 0x30, 0xf1, 0x63, 0xa2, 0xf2, 0x95, 0x6f, 0x6b, 0xde, 0xde, 0x8b, 0xa8, 0x83, 0x58, 0x86, 0xb7, 0x7b, 0x31, 0x99, 0xe0, 0xe9, 0x65, 0xa2, 0x7d, 0xbe, 0x72}} return a, nil } -var _fungibletokenmetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x58\x5f\x6f\xe3\xb8\x11\x7f\xf7\xa7\x98\xfa\xe1\x2e\x01\xb2\xf6\xee\xa2\x68\x0f\xc6\xb9\x7b\x7b\xb8\x04\x2d\x90\xc5\x06\xd9\xec\xf5\xb1\xa1\xa5\x91\x4d\x84\x22\x55\x92\xb2\xd7\x08\xf2\xdd\x8b\xe1\x1f\x89\xb4\x64\x27\xb9\xeb\x01\xe7\x87\x44\xa2\x86\x33\xbf\xf9\xcb\x19\xf2\xba\x51\xda\xc2\x55\x2b\xd7\x7c\x25\xf0\x4e\x3d\xa0\x84\x4a\xab\x1a\xa6\xd9\xda\x74\x12\x28\x3f\xa1\x65\x25\xb3\xec\x57\x8e\x3b\x13\x28\xb3\xb5\x8e\x92\xde\x6e\xd1\x28\xb1\x45\x1d\x08\xd3\xa5\xe9\x64\x32\x9f\xcf\xe1\x6e\xc3\x0d\x14\x4a\x5a\xcd\x0a\x0b\xbc\x6e\x04\xd6\x28\xad\x01\xbb\x41\xa8\x03\x63\x30\x96\xc9\x92\xe9\x12\x1a\xad\x1a\x65\xb0\x74\x7b\xb9\x84\xab\xeb\x7f\xdd\xbc\x79\xf7\xf6\x87\xbf\xcf\xdc\x8a\xfb\x73\x8b\xd5\x02\x36\xd6\x36\x66\x31\x9f\xaf\xb9\xdd\xb4\xab\x59\xa1\xea\xb9\x92\x95\x50\xbb\x79\x25\x78\x63\xe6\x2b\xa1\x56\xf3\x9a\x71\x39\x67\x4d\x23\x78\xc1\x2c\x57\x72\xfe\xfe\xed\xfb\xf7\x6f\x7f\x78\xf7\xee\x4d\x15\x94\x7f\x63\x49\x7b\xf3\x26\x22\x99\xd5\x65\x2f\xe8\x8b\xd5\x6d\x61\x0d\x30\x59\x82\x46\xa3\x5a\x5d\xa0\x81\x82\xc9\x5e\x0f\x50\x12\x41\x69\xa8\x95\x46\xb7\xa7\x53\xc9\xee\x1b\x34\x17\x50\x30\x21\xb0\x84\x2d\x99\x6e\x06\x97\xac\xd8\xb8\x67\xf7\x19\x34\x36\x1a\x0d\x99\xc3\xed\x65\x50\xf2\xaa\x42\x4d\x7c\x1f\xb8\x2c\x41\x55\x1d\x3f\xa7\xff\xa4\x69\x57\xbd\x31\x33\x07\xe6\x7e\x7b\x9c\x4c\x00\x00\x88\xe9\xd5\x1d\x2d\xc1\x4e\xb3\xc6\xc0\xd5\xdd\x2f\xdc\x34\x82\xed\x9d\x4e\x57\x77\xbf\xb2\x56\xd8\x5f\x98\x65\x17\x6e\x81\x1b\x68\x0d\x96\x60\x15\xac\xf9\x16\x81\x41\xa1\x48\x53\x8b\xd0\xf1\x6b\x78\x61\x5b\x8d\x84\x8d\x75\x10\xc0\x61\x98\xc1\x27\x65\xec\xc1\x62\x87\xd7\x80\xd9\xa8\x56\x94\x3d\xab\xde\x8a\x96\xa2\x84\xec\x32\x8b\x1f\xdd\x7f\x52\xd7\x38\x27\x44\x35\x1e\xdd\x7a\xfc\x26\xd0\x42\x65\x83\x4a\x8b\x5e\xbb\x0f\x8e\x62\x84\xb4\xd3\x77\x91\x2a\xff\xa1\xa3\xe4\x92\xdb\xb3\xee\x8d\x7e\xa3\xec\x2f\x0e\x48\x9e\x63\x7b\x9e\xe0\xa6\x9f\x41\x51\xcd\x3a\xce\xb0\xec\xa5\x8c\x91\x75\x0c\x1d\x61\xf7\xd6\x91\x3e\x4d\xfc\xdf\xce\xae\xff\x44\xd1\xa0\x76\x5e\x44\x4b\x5e\xba\x1b\xb1\x2d\x11\xfe\xd4\x30\xcd\x6a\xf7\x31\xa6\xed\x02\x3e\x82\x46\x17\x84\x05\x12\x0b\xca\x53\x1d\xd3\x3c\x66\x41\xcf\x41\xa3\x6d\xb5\x84\x8f\xd1\x41\xde\x5d\x03\x2f\x56\xad\x24\x30\x9e\xe8\x2c\x17\xf8\xdd\x63\x5a\x37\x66\xf1\xe1\xe9\x7c\x31\xf4\x3a\xb9\xb1\x66\xfb\x15\x86\x2f\xcb\x0c\xfc\x2c\x00\x75\x42\xee\xf6\x0d\xfe\xe8\xc9\xfe\x71\x76\x7e\xde\xfb\xb8\x8a\xc1\xe0\x19\xa4\xec\x72\x37\x05\xdd\x02\x25\x33\x7f\x09\x78\x0e\x2c\x9f\x90\x06\xfd\x8e\x45\x90\x73\xa8\x33\x43\x58\xca\x2c\x71\x7e\x22\xac\xfa\x9d\xdd\x62\xbe\xb7\x8f\xb5\xc3\x68\x70\xe0\xad\x02\xfc\x46\x95\xd5\xf9\x93\xcb\x4a\xe9\xda\x95\x44\x90\x88\xa5\x4f\x79\xb3\x51\xbb\x82\x39\x12\x4e\xa5\x62\xd6\x67\xaa\xaf\xe2\x4c\xc2\x0a\x7d\x85\x58\xed\x21\xa9\xab\xa6\xaf\x18\x12\xd4\x16\xb5\x2b\x71\x54\x51\x3a\x0e\x6b\xcd\x9a\x0d\x2f\x0c\xd5\x0d\x82\x70\x75\x77\x22\xd5\x63\x62\xf4\xee\xf0\x20\x10\xca\xf0\x45\xb2\x1a\xa1\x52\xda\x63\x75\x45\x7c\x96\x12\x67\x1b\x2f\xbf\x31\xaa\x34\x0b\x98\x5e\x09\xb5\x9b\x8e\xd2\xc5\x1a\x41\x8c\x17\x54\xf9\xb9\x5c\x4f\x06\xe2\xd9\x6a\xa5\x71\xcb\x99\xc5\x12\xcc\xbe\x5e\x29\xf1\x5b\x40\x5c\x7f\xfe\xf7\x74\x20\xd8\xb3\x1b\x17\xfd\x11\x4a\x34\x85\xe6\x8d\xf3\x18\x99\xaf\xd1\x6a\xcb\x4b\x34\x99\xc1\x9d\x69\x5f\x83\x84\x54\x22\x34\x7e\x07\x95\x7f\xe2\x2d\x99\x25\x57\x16\xad\xa6\x22\xb0\xef\x3c\x26\xd4\x0e\x24\xda\x9d\xd2\x0f\xb3\x21\xfe\x04\xe1\xb8\x12\x97\xdf\x2c\x6a\xc9\x04\x08\x2e\x1f\x28\x60\x18\x7c\xbd\xbd\xa6\x07\x07\x9e\x4e\xd0\x2c\x30\xd9\x4a\xb5\xd6\x49\x8e\x87\xf5\xa1\x62\x51\x34\x06\xce\x5f\x6f\xaf\x17\x79\x03\x33\xbb\xec\x3f\xe5\x68\x3e\xf7\xe7\x36\x6c\x51\x1b\x17\xc5\x41\xd3\x5c\x1e\x08\xb5\x56\x43\xa1\xb4\x6a\x0e\xc5\x7d\xc2\x92\x33\x93\x4b\xfa\xa2\x0a\x1e\xb4\x76\x79\xa2\x91\x9a\x80\xa1\x9c\xef\x0d\x18\x4f\xba\x51\x35\x36\x6c\x8d\x26\xf3\x21\xdc\x28\x63\x1c\xf9\x03\xee\x0d\x95\x2d\xca\xc6\x29\x97\xc6\xb2\xb5\x66\xf5\xf4\x02\xa6\x76\xc7\xad\x45\x4d\x8f\x25\x37\x85\xd2\xe5\xf4\x02\xd0\x16\x43\xf8\x5e\x94\x59\xc0\xa3\xf7\xd5\x09\xc3\x3d\x4d\x4e\x9c\x8f\x69\xbe\xe4\xf5\x2b\x0f\xe8\xfc\xdb\x48\xb0\xe4\x04\x2f\x73\x69\xbe\xe7\x84\x47\x0e\x90\xbd\x46\xf7\xb8\x69\xf4\x0c\x77\x65\x68\xe9\x8c\x30\xfc\x18\x0a\xc4\x32\x58\x62\x48\x90\x26\xf5\x32\xb5\xc9\x90\x34\xb1\x07\x2c\x53\xeb\x0c\x49\x9d\x19\x60\xe9\xcd\x31\x82\xca\x2b\x4f\xb0\xfc\xd3\x4b\xfb\x88\xbe\x2c\x73\x09\x0c\x76\x6c\x0f\x76\xc3\x2c\xec\xb8\x10\xf1\xfc\xf3\x6d\x6f\x09\xca\xa9\xc1\x44\x57\xe3\xe1\x8f\xe8\x39\x64\x27\x27\x01\xf7\x5c\x03\x12\x4f\xde\xff\xc0\x2b\xba\x90\xae\xaf\x7c\x3c\x6c\x23\x5c\xf7\x10\x3e\xbf\xb0\x23\x09\xd4\xd4\x94\x1c\xc4\x54\xe0\x59\x66\xec\x06\x12\x98\xf9\x30\x7a\x46\xc6\x5f\x30\x4f\xc2\x25\x23\x79\x3a\xde\xbe\x48\x2e\x7e\x5b\xf7\x60\x2c\xd5\x51\x37\x42\x48\x8b\x6e\x3a\xd9\x71\xbb\x09\xbd\x27\x75\x2c\xb3\x57\xf5\x12\x06\x6d\xdb\x24\xbb\x3d\x37\x1a\x0e\x51\xf7\xa1\x44\x52\xd9\xda\xcb\x6d\xda\x95\xe0\x05\x14\xac\x61\x2b\x2e\xb8\xe5\xb1\x7a\x8e\xcf\x12\x5d\x4b\x9d\xb7\x18\x37\xcc\x6e\x28\xbc\x23\xe7\xdd\x06\x75\xd7\x0f\x05\x28\xdc\x80\xc6\x42\xd5\x35\xca\xd0\x38\xad\xd0\x1b\xa0\x1c\x29\xb3\x9e\x11\xf1\xa5\x42\xd7\xbd\xe4\x47\xc4\x8d\x07\xdf\x90\xf4\xdd\x86\x17\x1b\xa8\x5b\x63\x89\x2f\x9d\x1a\x5e\x48\xe2\x80\xa0\xab\xc6\x02\x39\x65\x48\xa7\xf4\x7e\x08\x20\x12\x79\x04\x5e\xd0\xef\x06\xb0\x62\x82\x51\xaa\xc6\xc1\xd8\xe5\xe9\x51\x0f\xa4\x70\xe2\x38\xfb\x0c\x1c\xcd\xb7\xcc\x62\x8a\x27\xcc\x8e\x47\x4d\xe2\xfb\xa1\xd4\x16\x44\x41\x61\x53\x6a\xb6\xa3\xf4\x2f\x0d\x64\x42\xdc\x95\x05\xed\x4d\xe2\x33\x85\x1a\x59\x06\xa8\x1e\xd2\x10\x2b\x25\xb5\x2f\x84\x03\x88\xcc\xb7\x2f\xf7\xa9\x0f\xee\x67\x3e\x01\xb8\x01\x46\xb6\xb3\x9a\x17\xd4\x4d\x86\xfb\x80\xff\xb6\x9c\x4e\xa4\x1c\xa9\x63\x92\x4d\xfb\xb3\xdb\xc0\xf2\xde\x27\x5c\xc5\x0a\x3c\xee\xfb\x6b\x07\x87\x80\x2e\x1c\xdc\x3f\x83\x02\x3f\xfb\x10\xba\x77\x31\x74\x3f\x5a\x7a\x13\xdd\x4e\x44\xd2\xef\x55\x8e\x55\x4a\xbb\x4b\x08\xae\x24\x96\xd0\x24\xa1\x17\x34\xcd\x18\x72\x03\x92\xaa\x9f\x10\xfb\x11\xfd\x7d\xd1\xa3\x99\xbb\xe6\x92\xd7\x6d\x3d\xa6\xfa\x4d\x08\xac\x93\xbe\x8b\xd1\x77\x5a\xbd\xab\x56\x16\x61\x26\x20\xa9\x42\xa8\x9d\x81\x42\xa3\x2f\xce\xaa\xa2\xf1\x00\xeb\xc6\xee\xfb\xf2\xe5\x28\xc9\x7f\xd2\xba\x02\x96\x3b\x4a\x85\x52\x1e\xda\xd3\x72\xc4\xf0\x8e\x3d\x5e\x12\x57\x57\x46\x17\x70\x76\x76\xbe\x80\x9f\x1e\x73\x2d\xdd\xb7\xa7\xf3\x53\xbd\xe3\xb1\xe2\x78\x71\x30\x85\x8f\x57\xb0\x9c\xea\x58\x61\xc9\xa9\x8e\xe6\xf4\xb8\xc8\x43\xe3\x8f\x8b\x3c\x4d\x75\xcc\x91\x39\xd5\xa1\x51\xa3\x63\x9f\x31\x6e\xdc\x7e\xd8\x48\x34\x1a\x47\x1b\x83\x43\xb5\x66\xdc\x7c\x69\x57\x14\xba\x67\xaa\xf2\xb8\x7e\xfc\xee\x71\xbc\xd4\x3c\x51\xc3\xb2\x80\x69\x7c\x8f\x05\xdf\x05\xbe\x3b\x2e\xb8\x2c\x44\x5b\x22\x8c\xef\x4f\x66\xc6\xe3\x16\x7c\x09\xa0\x50\x3a\x2e\x60\xbc\x61\x0b\x30\x63\x4b\xff\x52\x98\x3f\x27\x67\xda\x28\xe3\xb4\x1a\x0d\x55\x19\xba\xf9\x25\xaa\xc4\x52\x10\x41\xc7\xf7\x67\xd1\x76\x84\x7d\x09\x99\x1e\xe9\xf2\xa0\xeb\xfc\xfb\x0c\xa3\xee\x3f\x69\x46\x06\xa4\x69\xce\xc1\x32\x4b\xc1\x21\x71\x9a\x7a\xd4\xaf\x26\xaf\x43\xe2\x34\x03\x61\x99\x25\xe4\x71\x18\xbd\x51\x13\x30\xfd\xe2\x71\x48\xd9\xc6\xe1\xe2\x71\x78\xd9\xc6\xe1\xe2\x70\xe3\x61\x02\xc3\xf2\x68\x4e\xbf\x7c\xe0\xea\xdb\xd4\xe7\x47\xae\xcf\x87\x23\xd7\x1f\x72\xcb\x9b\x0c\x5c\x3d\xb8\x67\xef\x7c\xbb\x2b\xcb\x57\x0d\x5d\xfd\x45\xfa\x70\xec\xda\xbe\xf0\xf2\x37\xb2\x38\x3e\x6c\x6d\x03\x9b\x30\x56\x8d\x4d\x06\xf1\x17\xac\xb0\xfd\xff\x8e\x53\x56\x59\x26\xc0\xb4\x4d\x23\xba\xbb\x36\x87\xe2\xfb\x70\x93\xe7\x36\xb3\xa2\x40\x63\xce\x98\x10\xe7\x71\x8c\xb9\xa3\x8d\x5f\xfc\xbe\x1e\x6c\x4a\xe8\x26\x10\x47\xb0\x80\xaf\x57\xfc\xdb\xdf\xfe\x7a\x70\x1c\xdb\x9e\x45\xa4\x18\xbd\xe7\x08\xe8\x96\x90\x6c\x18\x84\xf1\xd3\x04\xfe\x17\x00\x00\xff\xff\xb7\x17\x3c\x1d\x6f\x1c\x00\x00" +var _fungibletokenmetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x59\x5f\x6f\x1b\xb9\x11\x7f\xd7\xa7\x98\xea\xe1\xce\x06\x1c\x29\x09\x8a\xf6\x20\x9c\x9a\xcb\xe1\x6c\xb4\x80\x83\x18\x8e\x73\x7d\xac\xa9\xdd\x59\x8b\x30\x97\xdc\x92\x5c\x29\x82\xe1\xef\x5e\x0c\xc9\xdd\x25\xf7\x8f\x2c\xdf\xf5\x80\xd3\x83\x23\x91\xc3\x99\xdf\xfc\xe5\x0c\xc3\xcb\x4a\x69\x0b\x57\xb5\x7c\xe0\x1b\x81\x77\xea\x11\x25\x14\x5a\x95\x30\x4f\xd6\xe6\xb3\x40\xf9\x09\x2d\xcb\x99\x65\xbf\x72\xdc\x9b\x40\x99\xac\xb5\x94\xf4\xeb\x16\x8d\x12\x3b\xd4\x81\x30\x5e\x9a\xcf\x66\xcb\xe5\x12\xee\xb6\xdc\x40\xa6\xa4\xd5\x2c\xb3\xc0\xcb\x4a\x60\x89\xd2\x1a\xb0\x5b\x84\x32\x30\x06\x63\x99\xcc\x99\xce\xa1\xd2\xaa\x52\x06\x73\x77\x96\x4b\xb8\xba\xfe\xd7\xcd\x9b\x77\x6f\x7f\xf8\xfb\xc2\xad\xb8\x3f\xb7\x58\xac\x60\x6b\x6d\x65\x56\xcb\xe5\x03\xb7\xdb\x7a\xb3\xc8\x54\xb9\x54\xb2\x10\x6a\xbf\x2c\x04\xaf\xcc\x72\x23\xd4\x66\x59\x32\x2e\x97\xac\xaa\x04\xcf\x98\xe5\x4a\x2e\xdf\xbf\x7d\xff\xfe\xed\x0f\xef\xde\xbd\x29\x82\xf2\x6f\x2c\x69\x6f\xde\x34\x48\x16\x65\xde\x09\xfa\x62\x75\x9d\x59\x03\x4c\xe6\xa0\xd1\xa8\x5a\x67\x68\x20\x63\xb2\xd3\x03\x94\x44\x50\x1a\x4a\xa5\xd1\x9d\x69\x55\xb2\x87\x0a\xcd\x05\x64\x4c\x08\xcc\x61\x47\xa6\x5b\xc0\x25\xcb\xb6\xee\xbb\xdb\x06\x8d\x95\x46\x43\xe6\x70\x67\x19\xe4\xbc\x28\x50\x13\xdf\x47\x2e\x73\x50\x45\xcb\xcf\xe9\x3f\x63\x59\x86\xc6\x9c\x31\x21\xce\x3b\xa3\x26\x8e\x4c\xfd\xf7\x34\x9b\x01\x00\x10\xf3\xab\x3b\x5a\x82\xbd\x66\x95\x81\xab\xbb\x5f\xb8\xa9\x04\x3b\x38\xdd\xae\xee\x7e\x65\xb5\xb0\xbf\x30\xcb\x2e\xdc\x02\x37\x50\x1b\xcc\xc1\x2a\x78\xe0\x3b\x04\x06\x99\x22\x8d\x2d\x42\xcb\xaf\xe2\x99\xad\x35\x12\x46\xd6\x42\x00\x87\x61\x01\x9f\x94\xb1\xbd\xc5\x16\xaf\x01\xb3\x55\xb5\xc8\x3b\x56\x9d\x35\x2d\x45\x0b\xd9\x67\xd1\x6c\xba\x7f\x63\xb5\x8d\x73\x4a\xa3\xce\x93\xdb\xef\xd3\x08\xb4\x50\xd8\xa0\xe2\xaa\xd3\xf6\x83\xa3\x3c\x72\xa4\xb5\xc3\x2a\x36\xca\x87\xf6\x04\x97\xdc\x9e\xb5\xbf\xe8\x33\x2a\xe6\xa2\x47\xf2\x12\xdb\xf3\x48\x0f\xfa\x18\x14\xc5\xa2\xe5\x0c\xeb\x4e\xca\x18\x59\xcb\xd0\x11\xb6\xbf\x5a\xd2\xe7\x99\xff\xdb\xda\xfb\x9f\x28\x2a\xd4\xce\xbb\x68\xc9\x7b\x77\x23\x36\x27\xc2\x9f\x2a\xa6\x59\xe9\x36\x9b\xb4\x5e\xc1\x47\xd0\xe8\x82\x34\x43\x62\x41\x79\xac\x9b\x32\xd0\x64\x49\xc7\x41\xa3\xad\xb5\x84\x8f\x8d\xc3\xbc\xfb\x26\xbd\xeb\x72\xa3\xa8\x25\x21\xf3\x27\xce\x52\xe9\xdf\x3d\xc5\x45\x66\xd1\x7c\x79\x3e\x5f\x0d\x43\x82\x7c\x5a\xb2\xc3\x06\xc3\xce\x3a\xd1\x64\x11\x50\x3b\x21\x77\x87\x0a\x7f\xf4\x64\xff\x38\x3b\x3f\xef\x1c\x5e\x34\x91\xe1\x19\xc4\xec\x52\x9f\x05\x45\x03\x25\x33\x7f\x09\x78\x7a\x6e\x88\x48\x83\x7e\x53\xe1\xe4\xbc\xeb\xcc\x10\x96\x12\x4b\x9c\x1f\x89\xb1\xee\x64\xbb\x98\x9e\xed\x02\xaf\x1f\x1a\x0e\xbc\x55\x80\xdf\xa8\x0c\x3b\xe7\x72\x59\x28\x5d\xba\xfa\x09\x12\x31\xf7\x75\xc1\x6c\xd5\x3e\x63\x8e\x84\x53\x3d\x59\x74\xe9\xec\x4b\x3e\x93\xb0\x41\x5f\x46\x36\x07\x88\x8a\xb0\xe9\xca\x8a\x04\xb5\x43\xed\x7c\x4e\x65\xa7\xe5\xf0\xa0\x59\xb5\xe5\x99\xa1\xe2\x42\x10\xae\xee\x4e\xa8\x07\x4d\xb6\x74\x6e\xf1\x60\x10\xf2\xb0\x23\x59\x89\x50\x28\xed\x31\xbb\xca\xbf\x88\x89\x93\x83\x97\xdf\x18\x95\xa5\x15\xcc\xaf\x84\xda\xcf\x47\xe9\xfa\x05\x84\x04\xac\xe8\xda\xe0\xf2\x61\x36\x80\xc1\x36\x1b\x8d\x3b\xce\x2c\xe6\x60\x0e\xe5\x46\x89\xdf\x02\xe6\xfa\xf3\xbf\xe7\x93\x00\x3c\xdb\x71\x08\x1f\x21\x47\x93\x69\x5e\x39\x4f\x92\x59\x2b\xad\x76\x3c\x47\x93\x38\xc2\x99\xfc\x35\x88\x48\x35\x42\xe5\x4f\xd0\xdd\x41\xbc\x25\xb3\xe4\xe2\xac\xd6\x54\x29\x0e\xad\x27\x85\xda\x83\x44\xbb\x57\xfa\x71\x31\xad\x47\x84\x74\x5c\x99\xcb\x6f\x16\xb5\x64\x02\x04\x97\x8f\x14\x50\x0c\xbe\xde\x5e\xd3\x17\xa7\x04\x5d\xc7\x49\xe0\xb2\x8d\xaa\xad\x43\xd0\xdc\xfc\x7d\x05\xfb\x10\x30\x48\xf8\x7a\x7b\xbd\x4a\xbb\xa2\xc5\x65\xb7\x95\xa2\xfa\xdc\x35\x03\xb0\x43\x6d\x5c\xb4\x07\xcd\x53\xb9\x20\xd4\x83\x9a\x16\x4e\xbb\xa6\x2f\xf6\x13\xe6\x9c\x99\x54\xe2\x17\x95\xf1\x60\x05\x97\x57\x1a\xa9\xc3\x18\xca\xfb\xde\x80\xf1\xa4\x5b\x55\x62\xc5\x1e\xd0\x24\xbe\x85\x1b\x65\x8c\x23\x7f\xc4\x83\xa1\x32\x47\xd9\x3b\xe7\xd2\x58\xf6\xa0\x59\x39\xbf\x80\xb9\xdd\x73\x6b\x51\xd3\xd7\x9c\x9b\x4c\xe9\x7c\x7e\x01\x68\xb3\x69\x35\xbc\x48\xb3\x82\x27\xef\xc3\x23\x86\x7c\x9e\x1d\xb9\x64\xe3\xbc\x4a\xeb\x5e\x1a\xf0\xe9\xde\x48\x10\xa5\x04\xa7\xb9\x38\x3d\x73\xc4\x33\x3d\x64\xaf\xd1\xbd\x39\x34\xda\x08\xb8\xb2\xb5\x76\x46\x18\x6e\x86\x42\xb2\x0e\x96\x18\x12\xc4\x49\xbf\x8e\x6d\x32\x24\x8d\xec\x01\xeb\xd8\x3a\x43\x52\x67\x06\x58\x7b\x73\x8c\xa0\xf2\xca\x13\x2c\xff\xed\xd4\x66\xa4\x2b\xe3\x5c\x02\x83\x3d\x3b\x80\xdd\x32\x0b\x7b\x2e\x44\x73\x6f\xfa\xde\x3a\x07\xe5\xd4\x60\xa2\xbd\x1b\xe0\x8f\x68\x5c\x64\x2b\x27\x02\xf7\xaa\x2e\xa6\xb9\xbe\xff\x03\xaf\x68\x65\xda\x8e\xf5\xa9\xdf\x8b\xb8\x16\x24\x6c\x9f\xd8\xd6\x04\x6a\xea\x6c\x7a\x01\x16\x78\xe6\x09\xbb\x81\x04\x66\x3e\x8c\x5e\xb0\xcd\x27\xd8\x2a\xe2\x92\x90\x3c\x4f\xf7\x40\x92\x8b\xdf\xd6\x82\x18\x4b\x45\xd6\x0d\x2b\xd2\xa2\x9b\x83\xf6\xdc\x6e\x43\x37\x4b\x6d\xcf\xe2\x55\x0d\x89\x41\x5b\x57\xd1\x69\xcf\x8d\xc6\x51\xd4\x5d\x5c\x91\x54\xf6\xe0\xe5\x56\xf5\x46\xf0\x0c\x32\x56\xb1\x0d\x17\xdc\xf2\xa6\xa4\x1e\x9f\x5a\xda\x66\x3d\xed\x53\x6e\x98\xdd\x52\xcc\x37\x12\xf6\x5b\xd4\x6d\x73\x15\x20\x71\x03\x1a\x33\x55\x96\x28\x43\x17\xb6\x41\x6f\x88\xfc\x48\x0d\xf6\x0c\x89\x3f\x55\xc1\xf6\x47\x7a\x8f\xdc\x78\x65\x2a\x42\xb1\xdf\xf2\x6c\x0b\x65\x6d\x2c\xf1\xa7\xab\xc5\x0b\x8b\x1c\x12\x74\xd7\x98\x21\xa7\xf4\x69\x8d\x70\x98\x06\xd2\x10\x7b\x24\x5e\xe0\xef\x06\xb2\x61\x82\x51\x3e\x37\x23\xba\x4b\xe6\x49\xcf\x8c\xc1\x6a\x06\xec\x17\x60\x69\xbe\x63\x16\x63\x5c\x61\x8a\x9d\x34\x91\x6f\xae\x62\xdb\x10\x05\x85\x55\xae\x99\x2b\x0f\xb9\x81\x44\x88\x7b\x44\xa1\xb3\x51\xfc\x8e\x41\x6e\x58\x07\xc8\x1e\xda\x10\x33\x25\xbf\xaf\x9e\x03\xa8\xcc\xf7\x42\xf7\xb1\x4f\xee\x17\x3e\x51\xb8\x01\x46\xb6\xb4\x9a\x67\xd4\xaa\x86\x97\x8a\xff\xd6\x9c\xae\xb1\x14\xb1\x63\x92\xbc\x3f\x2c\x6e\x03\xcb\x7b\x9f\x98\x05\xcb\xf0\xe5\x98\xb8\x76\xb0\x08\xf0\xca\xc1\xfe\x33\x28\xf2\xb3\x0f\xad\x7b\x17\x5b\xf7\xa3\xa5\x3a\xd2\xf1\x84\x08\xfb\xbd\x4a\xb2\x42\x69\xf7\x4c\xc2\x95\xc4\x1c\xaa\x28\x24\x83\xc6\x09\x43\x6e\x40\x52\xd5\x14\xe2\x30\x62\x07\x5f\x2c\x69\xfa\x2f\xb9\xe4\x65\x5d\x8e\x99\xe0\x26\x04\xda\x49\xbe\x6c\xa2\xf2\xb8\x9a\x57\xb5\xcc\xc2\x00\x42\xd2\x85\x50\x7b\x03\x99\x46\x5f\xdc\x55\x41\xb3\x08\x96\x95\x3d\x74\x65\xcf\x51\x92\x3f\xa5\x75\x85\x2f\x75\x9c\x0a\x57\x41\xe8\x79\xf3\x23\x8e\x70\x62\xf0\x92\xb8\xbb\x32\xbc\xa2\x03\x67\xe7\x2b\xf8\xe9\x29\xd5\xdb\xed\x1e\xed\x48\xa7\xaa\xea\x45\xef\x4d\x60\xbc\xe4\xa5\x54\x53\x15\x28\xa5\x9a\x4c\xfa\x71\x91\x7d\x2f\x8c\x8b\x3c\x4e\x35\xe5\xd1\x94\xaa\x6f\xd5\xc6\xc3\x2f\x59\xb7\x39\xdf\x6f\x49\x2a\x8d\xa3\x2d\x46\x5f\xaf\x05\x37\x5f\xea\x0d\x05\xf3\x99\x2a\x3c\xb0\x1f\xbf\x7b\x1a\x2f\x46\xcf\xd4\xfa\xac\x60\xde\xfc\x6e\xae\x08\x97\x0a\xee\x82\xe1\x32\x13\x75\x8e\x30\x7e\x3e\x1a\x55\xa7\x4d\x78\x0a\xa0\x50\x54\x2e\x60\xbc\xf5\x0b\x30\x9b\x49\xe1\x54\x98\x3f\x47\xb7\xe0\x28\xe3\xb8\x4e\x0d\x55\x19\xfa\xf9\x14\x55\x9a\xe2\xd0\x80\x6e\x7e\xbf\x88\xb6\x25\xec\x8a\xca\x7c\xa2\x5f\x84\x76\xa0\xe8\x52\x8c\x86\x8a\xa8\x8d\x19\x90\xc6\x49\x07\xeb\x24\x07\x87\xc4\x71\xee\x51\xe7\x1b\xfd\x1c\x12\xc7\x29\x08\xeb\x24\x23\xa7\x61\x74\x46\x8d\xc0\x74\x8b\xd3\x90\x92\x83\xc3\xc5\x69\x78\xc9\xc1\xe1\xe2\xf0\x60\x3f\x83\x61\x3d\x99\xd4\xa7\xcf\x71\x5d\xa3\xfb\xf2\x24\xf7\xb9\x3f\xc9\xfd\x21\x2f\xd0\xd1\x1c\xd7\x81\x7b\xdd\x7b\x74\xfb\x9c\xfa\xaa\x59\xae\x7b\xf1\x1f\x4e\x73\xbb\x13\x1f\xa6\x1b\x16\xd3\x33\xdc\x2e\xb0\x09\xd3\xda\xd8\xa0\xd1\x7c\x82\x49\x76\xff\xdf\x29\xcd\x2a\xcb\x04\x98\xba\xaa\x44\xfb\xde\xe7\x50\x7c\x1f\x5e\x13\xa7\xa6\xa2\x3b\x3a\xf8\xc5\x9f\x9b\xfe\x0f\x1d\xcf\x78\x05\x5f\xaf\xf8\xb7\xbf\xfd\xb5\x77\x39\xdb\x8e\x45\x43\x31\xfa\x96\x12\xd0\xad\x21\x3a\x30\x88\xe9\xe7\x19\xfc\x2f\x00\x00\xff\xff\x84\x62\xaf\xd0\x38\x1d\x00\x00" func fungibletokenmetadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -177,11 +177,11 @@ func fungibletokenmetadataviewsCdc() (*asset, error) { } info := bindataFileInfo{name: "FungibleTokenMetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa2, 0x3c, 0x15, 0x34, 0x62, 0x5a, 0xd5, 0x9b, 0xcd, 0x22, 0xbd, 0xb5, 0x2c, 0x8c, 0x94, 0x16, 0x98, 0xce, 0x27, 0xa0, 0x45, 0xc6, 0x3c, 0xfb, 0xab, 0x30, 0x43, 0x87, 0x5b, 0xb4, 0x0, 0x3}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd9, 0xda, 0x6e, 0x92, 0xb0, 0x36, 0x93, 0x34, 0xe, 0xe9, 0x75, 0x26, 0xab, 0x11, 0x7a, 0xb6, 0x55, 0x19, 0x43, 0xb, 0xbb, 0xe5, 0x5e, 0xdb, 0x47, 0x69, 0xd7, 0xff, 0x19, 0x6f, 0xe7, 0x2c}} return a, nil } -var _fungibletokenswitchboardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x4d\x8f\xe3\x36\xd2\xbe\xf7\xaf\xa8\xf4\xe1\x1d\x37\xe0\xd8\x39\xbc\xd8\x43\x23\x9d\xf9\xdc\x09\x72\xc9\x06\x49\x67\xe7\x30\x18\xa0\x69\xa9\xd4\x22\x5a\x26\x05\x92\xb2\xc7\x19\xf4\x7f\x5f\x14\x49\x49\xa4\x44\xd9\xf2\x4c\x6f\x3e\x16\xd1\x61\xa6\x2d\x8b\xc5\xaa\x62\x55\x3d\x55\x2c\xca\x7c\x5b\x4b\x65\xe0\x6d\x23\xee\xf9\xa6\xc2\x5b\xf9\x80\x02\x0a\x25\xb7\x70\x19\xdd\xbb\xbc\xb8\x58\xaf\xd7\x70\x5b\x22\x64\x52\x18\xc5\x32\x03\xa6\x64\x06\x58\x55\xc9\xbd\x06\x26\x80\x65\x99\x6c\x84\x01\x23\x41\x61\x86\x7c\x87\x50\xb3\xc3\x16\x85\xd1\xc0\x05\x6c\x9b\xca\xf0\xba\x42\x28\x3c\x5d\x4b\xd0\x10\x71\x0d\x8d\xe6\xe2\x1e\x18\xd0\x7f\x15\xc2\xdd\xa7\x68\xf2\xd5\xcf\x8e\x9e\x7a\xbc\x83\x8c\xd5\x6c\xc3\x2b\x6e\x0e\x2b\xcf\x11\xd7\xc1\x4d\xd0\xa5\x6c\xaa\x1c\x78\x8e\xac\xaa\x0e\xb0\x41\xd0\x46\x2a\xcc\x81\x11\xc3\x08\x76\xd0\x5d\x44\xfe\x97\x3d\x37\x59\xb9\x91\x4c\xe5\xdd\x4c\x3f\x35\x9b\x8a\x67\x3f\x31\x53\xc2\x0d\xac\x6b\xfb\x69\xfd\x3d\x0a\x54\x3c\x7b\x7b\xdb\x3e\x75\x67\xa9\x6d\x1a\x03\xdc\x40\xc6\x44\x38\x9d\x38\xec\x4b\x54\xe8\xb8\xbc\xa8\x9b\x4d\xaf\xb8\xa9\xd9\xe1\xd3\x05\xc0\x05\x00\xc0\x7a\x0d\xbf\x18\xa9\xd8\x3d\x02\x13\x39\x38\x6e\x80\xd8\xd1\xf6\x7b\x22\x57\xa1\x69\x1f\xa2\x2f\xae\xc3\x0f\xd1\x43\xbd\x2c\xd7\xc1\xdf\xd1\x23\x63\xb1\xa3\x47\x3d\x4f\x6e\xfd\x71\x87\xc2\x2f\x3e\xd7\x80\x5b\x6e\x0c\xe6\xb0\x2f\x51\x00\x03\x81\x7b\xd8\xb1\xa6\x32\xe1\x9a\x70\x0d\x2c\xcf\x31\x27\xd3\x60\x1d\x2d\x1d\x08\xae\x50\xcb\x46\x65\xb8\xea\xbe\xed\xd8\x73\xd3\xfd\x9b\x68\xbe\xee\x48\xbe\x24\x72\x0b\x73\xa8\xf1\x1a\x6e\x0f\x35\x2e\x43\x6a\xff\xda\x0b\x54\xd7\xf0\x32\xcf\x15\x6a\xfd\x7c\xe9\x68\x9d\xba\x7a\x7e\x07\xe3\xaf\xce\x10\x3f\x25\xba\xc2\xad\xdc\x61\xee\xbc\x8a\xc1\x93\xc8\xff\xb3\xa3\x19\x69\xe0\xcb\x55\xf0\x64\x6a\xc8\xb1\x96\xda\xbb\x84\x90\x86\xdc\x22\x93\xdb\xba\x42\x83\xf9\xa4\x88\x3f\x4a\xf3\xba\x7d\xe8\x8d\x23\x10\xc9\xc7\xb6\x14\x5e\xae\xe1\xd7\xb7\xfc\xe3\x3f\xfe\x7f\xa6\x48\xd3\x3a\x19\xc8\xc3\x85\x41\x55\xb0\x0c\x9d\x4c\x28\x0a\xa9\x32\xd4\x36\x66\x6c\xd1\x94\xd2\x59\x2f\x45\x3b\xf2\x6d\x29\x90\x3e\x67\x25\x66\x0f\x20\x05\x3d\xd6\x91\x63\x3b\xc6\x2b\xb6\xa9\xb0\x57\x26\x47\x0d\xb2\xa0\x00\x97\x58\x74\xeb\xe2\xac\xd2\x12\xf0\x63\x2d\xb5\x9f\xb4\x23\xd7\x2a\xd3\x71\xa1\x69\xda\xf6\x56\xd1\x88\x5c\xd3\xf4\xdc\x24\xd4\xda\xd1\xef\x65\x0b\x82\x8d\x8f\x29\x9f\x3a\x35\xd2\x90\xa2\x11\x70\x8f\xc6\x5a\x1b\x69\x5d\x2f\xae\xae\xe1\x3d\xfd\xf5\xe1\xf8\x73\xef\xb8\x29\xbd\x66\x69\xc8\xa7\x5b\xbb\x70\xfe\xce\x63\x6a\xec\x2f\x4d\x4d\xd0\x83\x79\x3c\x99\x1f\xf9\x4a\xca\x6a\x3c\xcc\xcb\xbd\x20\x57\xba\x86\x17\x31\x48\x58\x3a\x57\xa3\x31\x9a\x15\xf8\xe6\xf4\xb8\xf4\xed\xe7\x23\x72\x76\xc5\xdb\x70\xf9\xea\x40\xdc\x06\x56\x7a\xe5\x38\x4f\x32\xf1\x4a\x2a\x25\xf7\xa9\x21\xff\x37\x05\x77\x6e\xfa\xc7\xd8\x52\xbb\x65\xb5\x86\x6a\xe1\xc6\x9b\xe9\x10\x61\x1d\xba\xb6\x68\xac\x7a\x93\x0a\xed\x72\xe9\x8c\x9a\xf0\x97\x88\x48\xf2\x12\x6b\xea\x79\x6e\x0d\xd3\x85\x2f\xfa\x6e\xeb\x0c\xb5\x33\xfe\x91\x85\x32\x71\x18\xce\xcd\xb6\xd2\x13\xee\xbd\x82\x64\xd7\xc7\xec\x35\xb0\xd2\x6b\x48\xab\x66\x79\xcc\x94\x3b\xf5\x13\xf9\x37\x3c\x33\x5c\x0a\xa6\x0e\x50\xca\x2a\x6f\xe5\x9c\xd2\x51\xac\x9a\x88\x12\x17\x39\x7e\xc4\x1c\x36\x87\x14\x05\x17\xfa\x49\xb6\x55\x34\xaa\xfb\xc0\xb2\x8c\xbc\xa3\xcd\x02\xae\x60\xc7\x54\x37\xef\xeb\x60\xda\xce\x09\xfa\x78\xff\xed\xa4\x89\x7c\xe7\xad\xa3\x9d\xee\x65\x9e\x6b\x8f\xc3\x27\x45\x3c\xd0\x2a\x92\x28\x61\x54\x8a\xa8\xc5\xb8\x34\x12\x89\x3e\xbc\xa8\x99\x62\xdb\x80\xe8\xb5\xcb\x12\xa3\x49\x5c\x60\x03\x06\x19\x2a\xc3\xb8\xe8\x93\xc0\x90\x54\xa8\xc8\x20\xc4\xd9\xf5\x03\x53\x2a\xd9\xdc\x97\xc7\x72\x43\x72\x88\x88\xe0\x9e\x57\x15\x81\x4f\x97\x7d\x0c\x84\x9d\x10\xab\xf5\x5a\x96\xe7\x3f\xe2\xde\x06\x82\x45\x28\xdf\xac\x75\xb9\x0a\x42\xab\x9b\x01\x5c\x04\x00\x06\x0a\x0b\x54\x28\x32\x6c\x79\x72\x32\xd7\x92\x22\xb5\x65\xd4\xdb\x58\xa0\xc5\x3d\xc2\x90\xde\x9e\xb9\x74\xdb\xc6\x00\xe0\x42\xf3\x1c\x87\x22\x46\x63\x28\xd5\xb3\x53\xfd\x8c\x05\xdc\x84\xb9\xf4\xc6\xb2\xb6\xb8\x9a\x46\xd5\xe7\xcf\xa1\x66\x82\x67\xb0\xb8\x7c\xcd\x84\x45\x75\x27\x4e\x24\x8c\x13\xc4\xa6\x3a\x3d\xf5\xcb\xab\x21\xe7\xaf\x2d\x6e\xf2\x82\xb8\x25\xd6\xc9\x64\x6b\x85\x3b\x2e\x9b\x28\x9b\x2f\xa4\x02\x43\x19\xbe\x35\x8d\x25\x8d\x10\xd2\x44\xd4\x78\x01\x0b\x8d\x55\xb1\x4a\xb9\xd2\xfb\x56\xda\xd5\x3d\x5a\x8c\x59\x5c\x7d\x80\x9b\x1b\x10\xbc\x1a\xae\x8f\xe7\xac\xd1\x18\xac\x48\x20\xdb\xa1\x46\x60\x1a\x1e\xd0\x71\x45\x3a\x6f\x63\x49\x8a\x4e\x20\x04\x45\x4d\x53\xa2\x18\x3d\x76\x26\xdb\x01\xcd\xd4\x8c\x94\x83\x59\x76\xc2\xd4\x4c\xe4\x3c\x63\xc6\x02\x04\x15\x6b\x36\x2e\x04\xac\x95\x4c\xc3\x06\x51\x24\x45\xb0\x5e\x33\xfa\xc2\x4e\x73\x24\x1d\x1f\xb3\xbe\x9c\x9d\x7c\xb6\x7a\x19\x25\x6d\x56\x53\x16\x9a\x9e\xaf\x98\x4b\x2a\xce\xc8\x69\xbb\x6b\x94\xdc\x06\x1e\xe0\xc9\xc6\xa6\xfa\x08\x58\x69\x4c\x5b\xca\x0f\xad\xf5\xee\x99\x06\x56\x29\x64\xf9\x81\x22\xdc\xd0\x7a\xa9\xf0\x74\xd6\x6b\xfd\x67\x44\xca\xde\x5d\x5c\xde\x76\x9e\xd0\x91\x72\x36\xc8\x6d\x76\x19\xe2\xdd\xc0\x2d\x06\xee\xd5\xa7\x4d\x13\xd0\xd0\x6c\x37\xa8\x28\x1d\x9d\x05\x12\x94\xba\x6e\x0e\xae\x42\x8f\xa3\x75\x49\x05\xbe\x29\x35\xd8\x42\x97\x3e\x1f\x80\xa9\xb6\x02\x8e\x63\x6b\xe2\x4a\xa1\x88\xa5\xe7\x00\x64\x40\x1a\x5c\x0d\x1e\xf3\x35\x35\x9b\xa7\xe6\x97\xd4\xd1\xf3\x1f\x48\xee\x3e\xcf\xf1\x1f\x42\xa2\xf3\x31\x41\xbf\x3a\x50\x75\xbc\xf0\x4c\xbf\xef\x0b\xe6\x0f\xcb\x7e\x6e\x9f\x03\x27\xe0\xe0\x7b\x74\xfe\xda\x6e\x9c\xcc\x95\x75\x14\xd2\x9d\x2c\x37\x94\x55\xbf\x74\xb4\x16\x49\x6b\x5e\xaf\xe1\xad\x54\x80\x2c\x2b\xad\x7a\x97\x34\xc2\x01\x06\xa3\x0a\x75\x10\xb3\x3c\xac\x98\x11\xee\x70\x31\x86\xd2\x67\x7a\xc2\x76\xf2\x2e\xff\x8a\xc8\x90\x09\x13\x0f\x64\xde\x6e\xa9\xc7\x4e\x46\xb2\x05\x3c\xdd\x38\x41\x29\xb0\xcc\x42\x60\xbb\x30\x57\x29\xd7\xfd\x22\x20\x4e\xc6\xca\x3d\x9e\x8f\xc6\x10\xc6\x11\x3f\x33\xc5\x12\x87\xab\x98\x83\x6e\x6c\xca\x58\x34\x55\x75\x58\xad\x56\xa3\xc1\xbc\x98\x83\xe8\x63\xbd\xfa\x89\x57\xab\x15\x2d\x73\x88\xc2\x42\x26\x61\xd8\xe5\x4f\x5d\x38\x9b\x22\x68\x43\x48\xf2\xcb\x79\x20\xfd\xd5\x3c\x94\x0e\x66\xfc\xf5\x29\xd0\x3a\xa0\x77\x04\x61\xdb\xeb\x5c\x31\xe6\xd0\x24\xb0\x15\xf9\x7c\x04\x4f\xd8\x60\x52\x88\x1e\xdf\xd3\x58\xde\x5e\x9f\x81\xe9\xc7\xd1\xf7\x29\x10\x7c\x04\xd6\xc9\x98\xd6\x5e\x8f\xa3\xbb\x8f\xe7\xa1\xe2\xd3\x16\x4c\xa0\x6b\xcc\x78\x71\x20\xa3\xdb\x97\x3c\x2b\xe1\x8e\x14\x77\x47\x88\x73\x97\xda\x69\xb8\x6b\xf7\x8f\x23\x72\xbe\x0a\x72\xa1\x88\x9b\x95\x35\x78\x6e\xc3\x0c\x17\x59\xd5\xe4\x14\x68\xe0\x20\x1b\x15\xb1\x74\xb9\x57\xac\xae\x51\x5d\x0e\x78\x73\xf2\x68\x0a\x2c\x25\xb9\x07\x83\xbb\x17\x96\x87\xb7\x52\xed\x99\xa2\xe2\x78\xe5\xff\x44\x75\xb7\x82\x1f\xdc\x16\x9e\xdd\x9b\xda\xc4\xb5\x5a\xa3\x1d\x53\x72\x87\x6a\xaf\xb8\x71\x7e\xe8\xfc\xce\x18\x96\x95\x7e\xbb\xb7\xab\xf8\xc2\x52\x86\x9b\x52\x36\x26\x16\xb5\x64\x3b\xeb\xa1\xb2\xdf\x71\x60\x51\xf8\x2f\xb8\xd2\x26\x42\xe7\xff\xcd\x3a\x34\x25\x95\xdf\x2e\x6a\x35\x2c\x8b\xa1\xad\x7a\x65\x59\x0b\x8a\x8c\x66\xc4\x4b\xaf\x90\x25\x28\x46\x91\x9f\x9e\x71\x39\xa6\xb7\x51\x5b\xbe\x19\xbb\xd5\xd4\x06\xd4\x0e\x93\xe8\xbb\x88\x9e\x66\x3c\x4f\xc5\xb8\x53\xd9\xd3\x3b\x67\xa2\xe7\x17\xd6\x9f\x93\xf8\x4f\x5c\xc1\x2e\xdc\x38\x3d\x0b\x6b\xd4\xc1\x96\xfe\x5e\xaa\x87\x30\x1d\xa6\x8b\x69\x8d\x2a\xdc\x27\x58\xd9\xad\x42\x0a\x95\x5b\xd4\x9a\xdd\xe3\x35\x5c\xba\xc4\x56\xeb\x38\xd9\xb2\xc0\x4b\x38\x5e\xf1\x7c\x5c\x2b\xb7\x18\x67\x57\xde\x9a\x03\x1a\x54\x21\xba\xc5\x0c\x46\xe3\xa7\xd1\x8a\xc8\x1d\x81\xa7\x27\x2d\x28\x93\xc5\xe4\x29\xd0\xa1\x7f\xff\xa2\xa5\x63\x0a\x62\x7e\x43\x25\x41\x2a\xd8\x52\x76\x38\xbb\xf2\xf2\xb1\x22\x0e\x95\xc9\x26\xc2\x04\xe0\xe8\x69\xc4\xd1\x03\xb2\xa9\xf0\xf1\x17\xc1\x1c\x1d\x81\xce\x08\x72\x48\x93\x73\x41\x87\xf0\x21\x1a\x38\xc6\x9d\x94\x7d\xfc\xf7\xab\x59\x2b\x67\x0f\x02\x5d\x25\x3b\x44\x02\x19\x2f\xa2\x14\x7d\xc1\xf7\x47\x54\xc9\x3e\xce\x1f\x2d\x96\xbd\x68\xae\xd1\xf4\x24\xf1\xfd\xef\xf2\xfb\x74\xf9\xcd\x97\xe7\x57\xe0\xa7\x97\xe6\xef\x1a\x3d\xba\xc6\x35\xfa\x17\x5b\xf7\x59\x45\xfe\x93\x55\xc8\xa7\xab\xe3\xe3\xb9\x86\x7e\xcf\x3f\xcc\x28\x87\x9f\xa8\x14\x3e\xbb\x0c\x9e\x93\x8d\x90\x08\x47\xa2\xd3\x97\xe6\x1e\xe7\x15\xbc\x9f\x5b\xef\xba\xa3\x23\x84\xc3\x33\xca\xdd\xae\x12\x48\xf9\xc7\x53\x36\x08\x47\xdc\xf8\x76\xea\x28\x07\x88\x4e\xd3\x9c\xd7\xce\x73\x43\xff\xfc\xed\x3c\x9f\x8a\x1c\xd5\x3d\xcc\xea\xe6\xfd\x3e\xcd\xbc\xc9\x10\x23\xa1\xe0\xae\xf7\x35\x58\x6d\x27\xe1\xbc\x42\x65\xe5\x1e\x5e\x3c\xe0\x21\xb5\x11\x35\xe2\xe6\x9f\x4f\x59\xb5\x78\x6b\x3b\x59\xb7\xc4\xe7\xb1\xfe\xea\x2d\x30\xff\x68\x10\x41\x60\x78\xcb\x1e\x46\x61\x0f\xa9\x38\xe2\xcc\xc0\x1e\x1d\x91\x0d\xe9\xdc\xd5\x0e\x36\xb1\x52\xb2\x46\xd5\x0f\x48\xec\xba\x24\xa3\x90\x54\x6d\x42\x4b\x10\xc5\xcd\xe9\x68\xe3\x4e\xfa\x50\x9c\xe9\x33\xe1\x24\x9f\x27\x02\xd8\x19\x27\x8f\xa6\x33\xcc\x54\x40\x95\x02\xf5\xe0\x68\xea\x31\x3f\xef\xa4\x18\x18\xde\x39\x16\x70\x73\x04\xa1\x89\xaf\x70\xdb\x7a\x44\x36\x88\x18\xb1\x56\x7d\x93\xd2\x6d\x61\xf4\x87\x7c\xec\x4e\x19\xd7\xa1\x50\xe3\xc8\xe1\x23\x68\xbc\xd5\xe4\x6d\x25\x47\xcd\x55\x4b\xff\x58\xdc\xfb\xac\x7c\x6a\x4a\x9f\x33\x0e\x42\x0c\xd5\xf1\xba\x3d\xe4\x38\x09\x07\x5d\x70\x1c\x68\xa0\x8b\x13\xb1\x75\x7d\xfb\x35\xfd\x3f\xb9\x9b\x70\xd2\xed\x8c\xf2\x3b\x07\xd6\xff\x46\xee\x17\x11\x9b\x93\x03\xc4\xde\xe7\x4b\xce\x7c\x78\x3a\x8a\xed\x24\xb7\xa7\xab\xac\x5e\x1e\xac\xa3\x86\x59\xf3\xd0\x42\xa6\x2b\xea\x94\x3f\xef\xda\x43\x82\xf1\x2e\xa8\x65\xc6\xb4\xc9\x02\xc5\x76\x02\x51\xed\x8b\xe0\xf4\x56\xfa\xb1\xe0\xa1\xd0\x34\x4a\x9c\x13\x37\x96\xdd\xc6\x42\x7b\x04\x34\x50\x6d\xae\x5b\x1d\xb4\xdb\xc8\x54\x3b\xf4\x25\xc3\x12\x6c\xe6\xcd\xab\xca\x1e\x0e\x67\x5c\x44\x1a\x8e\xc8\x79\x42\x23\xe3\x12\x88\x79\xe7\x86\x44\x9e\xb4\x5c\xc8\x46\x9c\x4a\x87\xbe\xec\x60\xe4\x38\xda\xdd\x2a\x8b\xed\x6d\x4d\xeb\x63\xfd\xe8\x44\xf4\xc9\xb4\xa6\x2f\xb7\xa2\x10\x40\x06\x54\x2b\xd4\x04\xea\xee\xc0\x6d\x94\xfa\x0d\x4a\x2f\x5f\x76\x4d\xb9\xf9\xec\x98\x71\x4e\xcc\x4c\x9e\x12\x79\x87\x60\x9c\x62\xa6\xe3\x43\x90\x67\x1d\xd9\xca\xed\x75\xb3\x47\xb7\x57\x77\x9c\xe0\xbc\x6a\xf4\x73\xc2\xe7\xe9\xe0\x39\x59\x8e\xbe\xeb\x5d\xa1\x33\x73\x5a\x4e\xdb\x45\x18\x87\xfa\xf6\x3a\x1a\x29\x57\xe4\x81\xb9\x62\xfb\x45\x7b\x44\xdc\xde\xdd\xb0\x8a\x89\x0c\xaf\xc6\x59\xf0\x54\xa5\xe4\x79\xe4\x45\xdf\xf5\x61\xbc\xf2\x9d\x6f\x2d\xb7\xe4\x7d\x4c\x4b\x31\xb4\xb4\x70\x3a\xf8\x0e\xbe\x59\x7d\x93\x50\x80\x4d\x1b\xa7\xcf\xb8\xc7\xc6\xd4\x9f\x76\x0f\x69\x9f\x9f\xef\xcd\x4a\x23\xaf\xe2\x31\xa3\x39\x7c\x50\x74\xca\x3e\xa2\xba\x1c\xb5\x51\xd2\x7b\xf8\x45\x82\x82\xe0\xd5\x14\xa8\xd9\x66\x8b\x4f\xcf\x87\xf5\x02\x6f\x5b\x89\x36\xea\x73\xed\x1a\x25\xa7\x5a\x66\x73\x10\x63\x1f\xef\xf6\x1e\x6c\x30\x6d\xd1\xc3\xb6\x6f\xf0\xc8\x3c\x5e\x2a\x06\x1b\x29\x2b\x64\x02\xb6\xcc\xb6\x85\x46\x39\x9f\x54\x2d\xf3\xcc\x33\x4f\x71\x3f\x3c\xc8\x78\xd6\xe9\xf2\x81\x71\xf1\xe2\x74\x97\xc7\x9e\xa5\x48\x18\xa5\x17\xa1\x60\x95\xc6\xc1\xca\xa6\x16\xf0\xc4\x3c\x5f\xb5\x2d\xaf\xa9\x55\xfe\x1e\x8d\xf6\x28\xe6\xf3\x0c\xa6\x35\xbf\x17\xed\x02\xd7\x4a\xee\x78\x8f\x66\xe3\xc3\xd4\xf6\x6d\x2f\xca\x24\x90\x10\x94\xa9\x03\x6c\x30\x63\x8d\xc6\x0e\x85\xb9\x59\x52\xc6\xe3\xb3\x8d\x5a\x6a\xed\xa1\x1b\x2a\x29\x1f\xa0\x11\x39\xba\x86\x59\x29\xa5\x3b\xe0\xae\x11\x49\x87\x6c\xaa\x89\xc9\xdd\xab\x1b\x02\xf0\x63\x8d\x99\x2d\xe8\xad\x2d\xd9\x15\x5c\x39\x96\x4a\xac\x6a\x0d\xf7\x0d\x53\x39\xb0\x7b\xc6\x85\xa6\xa2\xb3\xe0\x82\x1b\xac\x0e\x90\x95\x8c\x93\x90\x83\xbe\x07\xd1\x90\xb6\x03\xcb\x85\x33\x8b\x68\xe2\x2d\xab\x78\x66\x8f\xe2\x3c\x70\x1b\x26\x0b\x68\xea\xbc\x2f\x63\x33\xfb\xa6\x5b\xad\x5c\xa1\x5b\x71\x4d\xf9\x99\x76\xee\xb7\x41\xa2\xbf\x65\xb9\xef\xa3\x33\x85\xad\xe5\x09\x57\x76\x14\x4a\x0a\xa3\x4f\x76\x9e\x7f\x3f\x37\x12\x20\x6b\xbb\x55\x5d\x4d\xa6\xa1\x99\x14\xba\xd9\xa2\xea\xfa\x13\x61\x03\xaa\x7d\x1d\x67\x6d\xe5\x64\xc6\xd7\x20\xc8\x15\xc8\xbd\x48\xa6\x3f\x9f\xf3\x4a\xc6\xd8\xfb\xbe\xb2\x6e\x31\xed\xba\x26\xd1\x5f\x86\x74\x54\xfc\x02\xd7\x1b\xed\xf9\x0c\x9b\x90\x94\x99\x19\x57\x7d\xfb\x93\x0c\x12\x1e\x84\xdc\xfb\x76\xa1\x7f\x13\xb3\x3f\x1a\x71\xfa\x8c\x8b\xcb\xc8\x6a\xa6\x9c\xff\x7a\xee\x8e\x98\x54\x90\x5e\x3f\xe0\x41\xf7\x29\x4f\xdf\xa5\xa0\x95\xf5\x65\x71\x34\x76\xce\x2b\xa1\xbc\xf3\x0c\xd7\xc9\xc4\xa2\xc0\xcc\xf0\x1d\xb9\x60\x44\xac\xdd\xbd\x4f\xb3\x7a\xe2\x45\xa8\xc1\x4a\x52\x3e\xd5\x4d\x74\x1b\x36\xb2\xe0\x06\xde\x7f\x18\x75\x5d\x3a\x87\x02\x7e\x64\x55\x57\x56\x3f\x63\x9b\x39\x1a\xec\x3b\xd2\x7d\x24\x9e\xc8\xc4\x62\x86\x57\xac\xae\x51\xe4\x8b\x6e\xfc\x79\x29\x93\x5f\xd5\x98\xe6\x1f\x6e\x86\xc0\x2a\x29\xee\x2d\x2e\xb8\x36\x9f\xef\x6c\xda\x36\x5f\xbc\xf1\x64\xc3\x97\x9f\xb8\x3d\xaa\x93\x2e\x17\x93\xe6\xfc\x32\x34\xdf\x2d\xab\xeb\x36\x07\x38\x62\xb3\x31\x03\x64\x0d\x3e\x75\xef\x42\x9f\xcd\xd1\x9e\xe9\x8e\xef\xf9\xa6\x7a\xfc\x5d\xbc\x93\xe6\x1b\x0c\x1f\x0f\xbe\x81\x4f\xa3\x7c\xb9\x3b\x28\x63\x3b\x9b\xf1\xb9\x96\x8a\x0f\xf6\x79\xff\x34\x2e\xe0\x1b\x4d\xee\xdc\x40\xb0\x49\x32\xd0\xfb\x0c\xf7\x09\x14\x16\xcc\x7f\xce\xce\xd4\x3c\x79\xa6\x38\x3a\xdb\x37\x03\x86\xcf\x70\x53\x0a\xac\x8e\x9c\xcb\xe1\xfc\x71\x03\x7b\x14\x41\xb7\x2f\x73\xba\x4e\x87\x7d\xeb\xd9\xef\x8f\x44\x64\x9d\x8f\x8f\x0e\x9a\xb8\xd7\xff\x89\xe8\x33\x7f\xf3\x59\x37\xf1\x69\xff\x7b\x13\x81\xc7\xdb\x5b\xcf\x53\xf2\x48\xdc\x2a\xe5\x3a\x33\x5e\x45\x85\x4f\x30\x72\x1b\x1d\x0d\xd3\x83\x01\x23\x4f\xe9\x0a\x6f\x3b\x41\xbb\xb3\x30\x00\x99\x09\x5f\x21\x47\x09\xc6\x8e\x2d\x7a\xc0\xcb\x8a\x0b\x7b\x1a\xad\x6f\x9a\xdc\x2e\xc1\xa8\x06\xa7\x5e\x15\x09\x6c\x65\x40\x2a\x65\x21\x94\xd7\x8e\x1c\x6b\xbd\x86\x1f\x04\x37\x9c\x55\xfc\x37\x1c\x1d\x18\x99\x3a\x88\x30\x69\xfa\xb1\x02\xfd\xe4\xc1\xab\xb0\x6f\x23\xc3\xf4\x3f\x43\x41\x39\xa0\x42\xca\xfd\x5c\x8f\x67\x53\x31\xf1\x10\xed\x13\xc1\x4b\x68\x34\x2a\xd8\x36\x9a\xac\xa3\xaa\x3a\x82\xd6\x6c\x3b\x73\xef\x4f\x60\xb8\xa8\x4c\xaa\xc1\x3c\x7c\xa7\xda\xe7\x96\xda\xfd\xea\x42\xf7\x3e\xeb\x45\x68\x5c\x8e\x99\xe0\xd5\x1d\xb2\xab\x17\xc3\x9f\x7c\x88\xd4\xff\xed\xd7\x5e\x82\x68\x54\x28\xfd\x48\xfb\x56\x87\xc1\xaf\x3f\xc0\x0d\xac\x3d\x5b\xeb\x62\xe2\xb7\x26\xe2\xc1\xc9\x9f\xbb\x98\x1a\xea\x1e\x8e\x09\x9c\xf7\xbb\x19\xad\x34\x8f\x17\xff\x09\x00\x00\xff\xff\x0b\xe3\x25\x86\x80\x44\x00\x00" +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" 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{0x3, 0x82, 0x5f, 0x8b, 0xf8, 0x65, 0x9c, 0xcf, 0x94, 0x17, 0x96, 0x18, 0x59, 0xab, 0xcb, 0x2a, 0x7b, 0x4a, 0x76, 0xb9, 0x69, 0x19, 0xab, 0x8e, 0x80, 0x45, 0x8e, 0xe2, 0xaf, 0xf8, 0x6c, 0xdf}} + 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}} return a, nil } -var _multiplevaultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xbb\x8e\xdb\x3a\x10\x86\x7b\x3d\xc5\x0f\x57\x76\x71\xe4\xc5\x41\x90\x42\xc0\x06\xb9\x20\xee\xb6\x49\x9c\x34\x41\x0a\x9a\x1a\x59\x44\xa8\x21\x41\x0e\xed\x28\x86\xdf\x3d\x20\x25\x7b\x57\x49\x13\x15\x84\x38\x18\xfd\x97\x0f\xaa\x2a\x33\x78\x17\x04\xbb\xc4\x47\x73\xb0\xb4\x77\x3f\x88\xd1\x05\x37\x60\x55\x6f\x17\xd3\xff\x4e\xff\xd7\xba\xd5\xab\xaa\xf2\xe9\x00\xed\x58\x82\xd2\x02\xc3\x42\xa1\x53\x9a\xf0\x94\xac\x18\x6f\xe9\xab\x4a\x56\x22\x2e\x55\x05\x00\xdb\xed\x16\x1f\x1c\x8b\x32\x1c\x21\x3d\x41\x9c\x28\x8b\x98\xbc\xb7\x23\x5c\x57\x66\xdd\x6c\x04\xc9\x4e\x11\x2d\x75\x86\xa9\x85\x61\x48\x6f\xe2\xdd\xad\x28\x2a\xad\x29\xc6\xf5\x6d\xb6\xc1\x49\x85\x49\xf5\x73\x11\x6d\x70\xd9\x8f\x9e\x1a\x7c\xd9\x99\x9f\xaf\x5f\x5d\x9f\x73\xec\x12\x6b\x31\x8e\x21\x0e\x81\x24\x05\x9e\x12\x8d\x9e\x72\x36\x25\xe5\xfa\x5c\x6d\xf0\x96\x06\x62\x89\x45\x21\xd7\xee\x12\xe3\x48\x52\x2a\x66\x93\xb8\xde\x34\xf8\x96\xdf\xbe\xe3\x52\xb6\xca\xa6\x8b\xf2\xe2\x9a\x9f\x40\x31\x59\xa9\x2d\xf1\x51\x7a\xbc\xc1\x43\x83\xd5\x53\x8a\x99\x5f\x6b\xb4\x12\xc2\x39\xfb\x2f\x41\xdc\x93\xbd\x40\x30\xb3\x89\xab\xbb\xfc\xb5\x9a\xce\x7b\x4d\x1d\x48\x09\x7d\x1c\xbc\x8c\x25\x28\x94\xb5\xee\x1c\xa1\x78\x44\x8a\x94\x61\xcd\x3b\x50\x60\x3a\x63\xda\x2a\x00\x7a\x15\xa1\xf0\x8b\x82\xc3\x41\x59\xc5\x9a\x6e\xb2\x0b\x06\x7f\x5a\xac\x4f\x37\x22\x0d\xf2\xb9\x69\xf0\xf6\x1d\x8f\x9f\x28\xba\x14\x34\x5d\x16\x7f\x52\x5d\x3e\xb9\xfe\x13\xb0\x23\xc9\xfb\x29\xc7\x7a\x83\xc7\x47\x3c\xd4\x99\xdc\xbe\xa7\x1c\xdc\x8e\x73\x90\x76\xae\x30\x64\xa2\xbd\x3a\xd1\xa2\xc1\xdf\xa8\xf2\x59\x5d\x7f\x07\x00\x00\xff\xff\xb5\xca\x01\x68\xfe\x02\x00\x00" +var _multiplevaultsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\x3d\xaf\xd3\x30\x14\x86\xf7\xfc\x8a\x57\x9d\x9a\x81\xf6\x0a\x21\x86\x48\x17\xf1\x21\xba\xdd\x05\x0a\x0b\x62\x38\xd7\x3d\x69\x2c\x1c\xdb\xb2\x8f\x53\x42\xd5\xff\x8e\xec\xa4\xbd\x2d\x5d\xf0\x60\xc5\x47\xf6\xfb\xf1\x28\x55\xa5\x7b\xef\x82\x60\x93\xec\x5e\x3f\x1b\xde\xba\x5f\x6c\xd1\x06\xd7\x63\x71\x33\x7b\x35\xbc\x5e\x54\x15\x29\xc5\x31\x2e\xc9\x98\x1a\xca\x59\x09\xa4\x04\xda\x0a\x87\x96\x14\xe3\x29\x19\xd1\xde\xf0\x77\x4a\x46\x22\x8e\x55\x05\x00\xeb\xf5\x1a\x9f\x9c\x15\xd2\x36\x42\x3a\x86\x38\x21\x83\x98\xbc\x37\x23\x5c\x5b\x66\xed\x6c\x06\xc9\x6e\x11\x3b\x6e\xb5\xe5\x1d\xb4\x85\x74\x3a\x5e\xdc\x8a\xe2\x1c\xe3\x3c\xab\x31\x50\x98\x54\xbf\x16\xd1\x06\xc7\xed\xe8\xb9\xc1\xb7\x8d\xfe\xfd\xf6\xcd\xe9\x25\xc7\x26\x59\x25\xda\x59\x88\x43\x60\x49\xc1\x4e\x89\x46\xcf\x39\x1b\x49\x39\xbe\x54\xeb\xbd\xe1\x9e\xad\xc4\x6b\xdf\x52\x7f\xd0\x7c\xc8\xa9\xb1\x67\x29\x7d\xb3\x63\x5c\xd6\x0d\x7e\xe4\xaf\x9f\x38\x96\x27\x79\x79\x17\xe5\xea\x98\x57\xe0\x98\x8c\xac\x0c\xdb\xbd\x74\x78\x87\x87\x06\x8b\xa7\x14\x33\xcc\x9d\x56\x24\x8c\x43\x0e\x73\x4b\xe5\x12\xf3\x8a\xc7\x0c\x2a\x2e\x2e\xf2\xa7\x6a\xda\x2f\x9d\x55\x60\x12\xfe\xdc\x7b\x19\x4b\x50\x90\x31\xee\x10\x41\x76\x44\x8a\x9c\xc9\xcd\x77\x40\xb0\x7c\xc0\x74\xab\xd0\xe8\x28\x82\xf0\x87\x83\xc3\x33\x19\xb2\x8a\xcf\xb2\x77\x40\x32\x8b\x7f\xad\x96\xc3\x99\x4c\x83\xbc\xd7\x0d\xde\x7f\xb0\xe3\x17\x8e\x2e\x05\xc5\xc7\x9b\x5f\x6c\x55\x9e\x9c\xfe\x0b\xdc\x9e\xe5\xe3\x94\x67\x59\xe3\xf1\x11\x0f\xab\x4c\x70\xdb\x71\x2e\x60\xc6\x39\xc8\x6e\xae\xd2\x67\xb2\x1d\x0d\x7c\xd3\xe4\x1e\x59\xde\xab\xd3\xdf\x00\x00\x00\xff\xff\x04\xad\xff\x8d\x15\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{0x23, 0xc0, 0x81, 0x48, 0x34, 0xe3, 0xb2, 0xca, 0x36, 0xf8, 0x9f, 0xb5, 0xd0, 0xcf, 0xca, 0x13, 0x42, 0x44, 0x15, 0x96, 0x23, 0xf3, 0x19, 0xf6, 0xa8, 0xcb, 0xfd, 0x44, 0xc4, 0xc8, 0xc5, 0x42}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0xb8, 0xb4, 0x8, 0xf9, 0x9b, 0x7, 0x1f, 0xfa, 0xda, 0xf2, 0x90, 0xe1, 0xa9, 0xa7, 0x6c, 0x4e, 0x82, 0x35, 0xce, 0x8b, 0xad, 0x4f, 0x9e, 0xce, 0x3b, 0xa4, 0xef, 0xce, 0xa8, 0xdd, 0xd2}} return a, nil } diff --git a/lib/go/test/go.mod b/lib/go/test/go.mod index 6671c9f..b9e290b 100644 --- a/lib/go/test/go.mod +++ b/lib/go/test/go.mod @@ -4,8 +4,8 @@ go 1.18 require ( github.com/onflow/cadence v0.39.13-stable-cadence - github.com/onflow/flow-emulator v0.46.0 - github.com/onflow/flow-ft/lib/go/contracts v0.5.0 + github.com/onflow/flow-emulator v0.38.1 + github.com/onflow/flow-ft/lib/go/contracts v0.7.0 github.com/onflow/flow-ft/lib/go/templates v0.0.0-00010101000000-000000000000 github.com/onflow/flow-go-sdk v0.41.7-stable-cadence github.com/onflow/flow-nft/lib/go/contracts v1.1.0 @@ -99,9 +99,9 @@ require ( github.com/multiformats/go-multistream v0.4.1 // indirect github.com/multiformats/go-varint v0.0.7 // indirect github.com/onflow/atree v0.6.0 // indirect - github.com/onflow/flow-core-contracts/lib/go/contracts v0.12.1 // indirect + github.com/onflow/flow-core-contracts/lib/go/contracts v1.2.3 // indirect github.com/onflow/flow-core-contracts/lib/go/templates v1.2.3 // indirect - github.com/onflow/flow-go v0.30.4 // indirect + github.com/onflow/flow-go v0.31.1-0.20230712191318-82d6e5f45ca1 // indirect github.com/onflow/flow-go/crypto v0.24.7 // indirect github.com/onflow/flow/protobuf/go/flow v0.3.2-0.20230602212908-08fc6536d391 // indirect github.com/onflow/fusd/lib/go/contracts v0.0.0-20211021081023-ae9de8fb2c7e // indirect