diff --git a/.gitignore b/.gitignore index c98e302..eb3e8e3 100644 --- a/.gitignore +++ b/.gitignore @@ -3,3 +3,4 @@ node_modules/* .env coverage.lcov coverage.json +*.pkey \ No newline at end of file diff --git a/contracts/FungibleToken.cdc b/contracts/FungibleToken.cdc index eae6f21..4b7b1f3 100644 --- a/contracts/FungibleToken.cdc +++ b/contracts/FungibleToken.cdc @@ -117,7 +117,10 @@ access(all) contract interface FungibleToken: ViewResolver { post { // `result` refers to the return value result.balance == amount: - "Withdrawal amount must be the same as the balance of the withdrawn Vault" + "FungibleToken.Provider.withdraw: Cannot withdraw tokens!" + .concat("The balance of the withdrawn tokens (").concat(result.balance.toString()) + .concat(") is not equal to the amount requested to be withdrawn (") + .concat(amount.toString()).concat(")") } } } @@ -178,7 +181,9 @@ access(all) contract interface FungibleToken: ViewResolver { emit Burned(type: self.getType().identifier, amount: self.balance, fromUUID: self.uuid) } post { - self.balance == 0.0: "The balance must be set to zero during the burnCallback method so that it cannot be spammed" + self.balance == 0.0: + "FungibleToken.Vault.burnCallback: Cannot burn this Vault with Burner.burn()." + .concat("The balance must be set to zero during the burnCallback method so that it cannot be spammed") } self.balance = 0.0 } @@ -211,15 +216,29 @@ access(all) contract interface FungibleToken: ViewResolver { access(Withdraw) fun withdraw(amount: UFix64): @{Vault} { pre { self.balance >= amount: - "Amount withdrawn must be less than or equal than the balance of the Vault" + "FungibleToken.Vault.withdraw: Cannot withdraw tokens! " + .concat("The amount requested to be withdrawn (").concat(amount.toString()) + .concat(") is greater than the balance of the Vault (") + .concat(self.balance.toString()).concat(").") } post { - result.getType() == self.getType(): "Must return the same vault type as self" + result.getType() == self.getType(): + "FungibleToken.Vault.withdraw: Cannot withdraw tokens!" + .concat("The withdraw method tried to return an incompatible Vault type <") + .concat(result.getType().identifier).concat(">. ") + .concat("It must return a Vault with the same type as self (") + .concat(self.getType().identifier).concat(">.") + // use the special function `before` to get the value of the `balance` field // at the beginning of the function execution // self.balance == before(self.balance) - amount: - "New Vault balance must be the difference of the previous balance and the withdrawn Vault balance" + "FungibleToken.Vault.withdraw: Cannot withdraw tokens!" + .concat("The sender's balance after the withdrawal (") + .concat(self.balance.toString()) + .concat(") must be the difference of the previous balance (").concat(before(self.balance.toString())) + .concat(") and the amount withdrawn (").concat(amount.toString()) + emit Withdrawn( type: result.getType().identifier, amount: amount, @@ -238,7 +257,13 @@ access(all) contract interface FungibleToken: ViewResolver { // as the vault that is accepting the deposit pre { from.isInstance(self.getType()): - "Cannot deposit an incompatible token type" + "FungibleToken.Vault.deposit: Cannot deposit tokens!" + .concat("The type of the deposited tokens <") + .concat(from.getType().identifier) + .concat("> has to be the same type as the Vault being deposited into <") + .concat(self.getType().identifier) + .concat(">. Check that you are withdrawing and depositing to the correct paths in the sender and receiver accounts") + .concat("and that those paths hold the same Vault types.") } post { emit Deposited( @@ -250,7 +275,11 @@ access(all) contract interface FungibleToken: ViewResolver { balanceAfter: self.balance ) self.balance == before(self.balance) + before(from.balance): - "New Vault balance must be the sum of the previous balance and the deposited Vault" + "FungibleToken.Vault.deposit: Cannot deposit tokens!" + .concat("The receiver's balance after the deposit (") + .concat(self.balance.toString()) + .concat(") must be the sum of the previous balance (").concat(before(self.balance.toString())) + .concat(") and the amount deposited (").concat(before(from.balance).toString()) } } @@ -259,8 +288,18 @@ access(all) contract interface FungibleToken: ViewResolver { /// @return A Vault of the same type that has a balance of zero access(all) fun createEmptyVault(): @{Vault} { post { - result.balance == 0.0: "The newly created Vault must have zero balance" - result.getType() == self.getType(): "The newly created Vault must have the same type as the creating vault" + result.balance == 0.0: + "FungibleToken.Vault.createEmptyVault: Empty Vault creation failed!" + .concat("The newly created Vault must have zero balance but it has a balance of ") + .concat(result.balance.toString()) + + result.getType() == self.getType(): + "FungibleToken.Vault.createEmptyVault: Empty Vault creation failed!" + .concat("The type of the new Vault <") + .concat(result.getType().identifier) + .concat("> has to be the same type as the Vault that created it <") + .concat(self.getType().identifier) + .concat(">.") } } } @@ -270,8 +309,18 @@ access(all) contract interface FungibleToken: ViewResolver { /// @return A Vault of the requested type that has a balance of zero access(all) fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { post { - result.getType() == vaultType: "The returned vault does not match the desired type" - result.balance == 0.0: "The newly created Vault must have zero balance" + result.balance == 0.0: + "FungibleToken.createEmptyVault: Empty Vault creation failed!" + .concat("The newly created Vault must have zero balance but it has a balance of ") + .concat(result.balance.toString()) + + result.getType() == vaultType: + "FungibleToken.Vault.createEmptyVault: Empty Vault creation failed!" + .concat("The type of the new Vault <") + .concat(result.getType().identifier) + .concat("> has to be the same as the type that was requested <") + .concat(vaultType.identifier) + .concat(">.") } } } \ No newline at end of file diff --git a/contracts/FungibleTokenMetadataViews.cdc b/contracts/FungibleTokenMetadataViews.cdc index c0cdd51..c6dc5c2 100644 --- a/contracts/FungibleTokenMetadataViews.cdc +++ b/contracts/FungibleTokenMetadataViews.cdc @@ -142,8 +142,14 @@ access(all) contract FungibleTokenMetadataViews { createEmptyVaultFunction: fun(): @{FungibleToken.Vault} ) { pre { - receiverLinkedType.isSubtype(of: Type<&{FungibleToken.Receiver}>()): "Receiver public type must include FungibleToken.Receiver." - metadataLinkedType.isSubtype(of: Type<&{FungibleToken.Vault}>()): "Metadata linked type must be a fungible token vault" + receiverLinkedType.isSubtype(of: Type<&{FungibleToken.Receiver}>()): + "Receiver public type <".concat(receiverLinkedType.identifier) + .concat("> must be a subtype of <").concat(Type<&{FungibleToken.Receiver}>().identifier) + .concat(">.") + metadataLinkedType.isSubtype(of: Type<&{FungibleToken.Vault}>()): + "Metadata linked type <".concat(metadataLinkedType.identifier) + .concat("> must be a subtype of <").concat(Type<&{FungibleToken.Vault}>().identifier) + .concat(">.") } self.storagePath = storagePath self.receiverPath = receiverPath diff --git a/contracts/FungibleTokenSwitchboard.cdc b/contracts/FungibleTokenSwitchboard.cdc index 158e733..3742e98 100644 --- a/contracts/FungibleTokenSwitchboard.cdc +++ b/contracts/FungibleTokenSwitchboard.cdc @@ -67,7 +67,9 @@ access(all) contract FungibleTokenSwitchboard { // Borrow a reference to the vault pointed to by the capability we // want to store inside the switchboard let vaultRef = capability.borrow() - ?? panic ("Cannot borrow reference to vault from capability") + ?? panic("FungibleTokenSwitchboard.Switchboard.addNewVault: Cannot borrow reference to vault from capability" + .concat("Make sure that the capability path points to a Vault that has been properly initialized")) + // Check if there is a previous capability for this token, if not if (self.receiverCapabilities[vaultRef.getType()] == nil) { // use the vault reference type as key for storing the @@ -78,9 +80,6 @@ access(all) contract FungibleTokenSwitchboard { emit VaultCapabilityAdded(type: vaultRef.getType(), switchboardOwner: self.owner?.address, capabilityOwner: capability.address) - } else { - // If there was already a capability for that token, panic - panic("There is already a vault in the Switchboard for this token") } } @@ -135,7 +134,12 @@ access(all) contract FungibleTokenSwitchboard { access(Owner) fun addNewVaultWrapper(capability: Capability<&{FungibleToken.Receiver}>, type: Type) { // Check if the capability is working - assert(capability.check(), message: "The passed capability is not valid") + assert ( + capability.check(), + message: + "FungibleTokenSwitchboard.Switchboard.addNewVaultWrapper: Cannot borrow reference to a vault from the provided capability" + .concat("Make sure that the capability path points to a Vault that has been properly initialized") + ) // Use the type parameter as key for the capability self.receiverCapabilities[type] = capability // emit the event that indicates that a new capability has been @@ -192,7 +196,9 @@ access(all) contract FungibleTokenSwitchboard { // Borrow a reference to the vault pointed to by the capability we // want to remove from the switchboard let vaultRef = capability.borrow() - ?? panic ("Cannot borrow reference to vault from capability") + ?? panic ("FungibleTokenSwitchboard.Switchboard.addNewVaultWrapper: Cannot borrow reference to a vault from the provided capability" + .concat("Make sure that the capability path points to a Vault that has been properly initialized")) + // Use the vault reference to find the capability to remove self.receiverCapabilities.remove(key: vaultRef.getType()) // Emit the event that indicates that a new capability has been @@ -212,11 +218,16 @@ access(all) contract FungibleTokenSwitchboard { access(all) fun deposit(from: @{FungibleToken.Vault}) { // Get the capability from the ones stored at the switchboard let depositedVaultCapability = self.receiverCapabilities[from.getType()] - ?? panic ("The deposited vault is not available on this switchboard") + ?? panic ("FungibleTokenSwitchboard.Switchboard.deposit: Cannot deposit Vault! " + .concat("The deposited vault of type <").concat(from.getType().identifier) + .concat("> is not available on this Fungible Token switchboard. ") + .concat("The recipient needs to initialize their account and switchboard to hold and receive the deposited vault type.")) // Borrow the reference to the desired vault let vaultRef = depositedVaultCapability.borrow() - ?? panic ("Can not borrow a reference to the the vault") + ?? panic ("FungibleTokenSwitchboard.Switchboard.deposit: Cannot borrow reference to a vault" + .concat("from the type of the deposited Vault <").concat(from.getType().identifier) + .concat(">. Make sure that the capability path points to a Vault that has been properly initialized")) vaultRef.deposit(from: <-from) } diff --git a/contracts/utility/MetadataViews.cdc b/contracts/utility/MetadataViews.cdc deleted file mode 100644 index f47932e..0000000 --- a/contracts/utility/MetadataViews.cdc +++ /dev/null @@ -1,706 +0,0 @@ -import "FungibleToken" -import "NonFungibleToken" -import "ViewResolver" - -/// This contract implements the metadata standard proposed -/// in FLIP-0636. -/// -/// Ref: https://github.com/onflow/flips/blob/main/application/20210916-nft-metadata.md -/// -/// Structs and resources can implement one or more -/// metadata types, called views. Each view type represents -/// a different kind of metadata, such as a creator biography -/// or a JPEG image file. -/// -access(all) contract MetadataViews { - - /// Display is a basic view that includes the name, description and - /// thumbnail for an object. Most objects should implement this view. - /// - access(all) struct Display { - - /// The name of the object. - /// - /// This field will be displayed in lists and therefore should - /// be short an concise. - /// - access(all) let name: String - - /// A written description of the object. - /// - /// This field will be displayed in a detailed view of the object, - /// so can be more verbose (e.g. a paragraph instead of a single line). - /// - access(all) let description: String - - /// A small thumbnail representation of the object. - /// - /// This field should be a web-friendly file (i.e JPEG, PNG) - /// that can be displayed in lists, link previews, etc. - /// - access(all) let thumbnail: {File} - - view init( - name: String, - description: String, - thumbnail: {File} - ) { - self.name = name - self.description = description - self.thumbnail = thumbnail - } - } - - /// Helper to get Display in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return An optional Display struct - /// - access(all) fun getDisplay(_ viewResolver: &{ViewResolver.Resolver}) : Display? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Display { - return v - } - } - return nil - } - - /// Generic interface that represents a file stored on or off chain. Files - /// can be used to references images, videos and other media. - /// - access(all) struct interface File { - access(all) view fun uri(): String - } - - /// View to expose a file that is accessible at an HTTP (or HTTPS) URL. - /// - access(all) struct HTTPFile: File { - access(all) let url: String - - view init(url: String) { - self.url = url - } - - access(all) view fun uri(): String { - return self.url - } - } - - /// View to expose a file stored on IPFS. - /// IPFS images are referenced by their content identifier (CID) - /// rather than a direct URI. A client application can use this CID - /// to find and load the image via an IPFS gateway. - /// - access(all) struct IPFSFile: File { - - /// CID is the content identifier for this IPFS file. - /// - /// Ref: https://docs.ipfs.io/concepts/content-addressing/ - /// - access(all) let cid: String - - /// Path is an optional path to the file resource in an IPFS directory. - /// - /// This field is only needed if the file is inside a directory. - /// - /// Ref: https://docs.ipfs.io/concepts/file-systems/ - /// - access(all) let path: String? - - view init(cid: String, path: String?) { - self.cid = cid - self.path = path - } - - /// This function returns the IPFS native URL for this file. - /// Ref: https://docs.ipfs.io/how-to/address-ipfs-on-web/#native-urls - /// - /// @return The string containing the file uri - /// - access(all) view fun uri(): String { - if let path = self.path { - return "ipfs://".concat(self.cid).concat("/").concat(path) - } - - return "ipfs://".concat(self.cid) - } - } - - /// View to represent a file with an correspoiding mediaType. - /// - access(all) struct Media { - - /// File for the media - /// - access(all) let file: {File} - - /// media-type comes on the form of type/subtype as described here - /// https://developer.mozilla.org/en-US/docs/Web/HTTP/Basics_of_HTTP/MIME_types - /// - access(all) let mediaType: String - - view init(file: {File}, mediaType: String) { - self.file=file - self.mediaType=mediaType - } - } - - /// Wrapper view for multiple media views - /// - access(all) struct Medias { - - /// An arbitrary-sized list for any number of Media items - access(all) let items: [Media] - - view init(_ items: [Media]) { - self.items = items - } - } - - /// Helper to get Medias in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional Medias struct - /// - access(all) fun getMedias(_ viewResolver: &{ViewResolver.Resolver}) : Medias? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Medias { - return v - } - } - return nil - } - - /// View to represent a license according to https://spdx.org/licenses/ - /// This view can be used if the content of an NFT is licensed. - /// - access(all) struct License { - access(all) let spdxIdentifier: String - - view init(_ identifier: String) { - self.spdxIdentifier = identifier - } - } - - /// Helper to get License in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional License struct - /// - access(all) fun getLicense(_ viewResolver: &{ViewResolver.Resolver}) : License? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? License { - return v - } - } - return nil - } - - /// View to expose a URL to this item on an external site. - /// This can be used by applications like .find and Blocto to direct users - /// to the original link for an NFT or a project page that describes the NFT collection. - /// eg https://www.my-nft-project.com/overview-of-nft-collection - /// - access(all) struct ExternalURL { - access(all) let url: String - - view init(_ url: String) { - self.url=url - } - } - - /// Helper to get ExternalURL in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional ExternalURL struct - /// - access(all) fun getExternalURL(_ viewResolver: &{ViewResolver.Resolver}) : ExternalURL? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? ExternalURL { - return v - } - } - return nil - } - - /// View that defines the composable royalty standard that gives marketplaces a - /// unified interface to support NFT royalties. - /// - access(all) struct Royalty { - - /// Generic FungibleToken Receiver for the beneficiary of the royalty - /// Can get the concrete type of the receiver with receiver.getType() - /// Recommendation - Users should create a new link for a FlowToken - /// receiver for this using `getRoyaltyReceiverPublicPath()`, and not - /// use the default FlowToken receiver. This will allow users to update - /// the capability in the future to use a more generic capability - access(all) let receiver: Capability<&{FungibleToken.Receiver}> - - /// Multiplier used to calculate the amount of sale value transferred to - /// royalty receiver. Note - It should be between 0.0 and 1.0 - /// Ex - If the sale value is x and multiplier is 0.56 then the royalty - /// value would be 0.56 * x. - /// Generally percentage get represented in terms of basis points - /// in solidity based smart contracts while cadence offers `UFix64` - /// that already supports the basis points use case because its - /// operations are entirely deterministic integer operations and support - /// up to 8 points of precision. - access(all) let cut: UFix64 - - /// Optional description: This can be the cause of paying the royalty, - /// the relationship between the `wallet` and the NFT, or anything else - /// that the owner might want to specify. - access(all) let description: String - - view init(receiver: Capability<&{FungibleToken.Receiver}>, cut: UFix64, description: String) { - pre { - cut >= 0.0 && cut <= 1.0 : "Cut value should be in valid range i.e [0,1]" - } - self.receiver = receiver - self.cut = cut - self.description = description - } - } - - /// Wrapper view for multiple Royalty views. - /// Marketplaces can query this `Royalties` struct from NFTs - /// and are expected to pay royalties based on these specifications. - /// - access(all) struct Royalties { - - /// Array that tracks the individual royalties - access(self) let cutInfos: [Royalty] - - access(all) view init(_ cutInfos: [Royalty]) { - // Validate that sum of all cut multipliers should not be greater than 1.0 - var totalCut = 0.0 - for royalty in cutInfos { - totalCut = totalCut + royalty.cut - } - assert(totalCut <= 1.0, message: "Sum of cutInfos multipliers should not be greater than 1.0") - // Assign the cutInfos - self.cutInfos = cutInfos - } - - /// Return the cutInfos list - /// - /// @return An array containing all the royalties structs - /// - access(all) view fun getRoyalties(): [Royalty] { - return self.cutInfos - } - } - - /// Helper to get Royalties in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional Royalties struct - /// - access(all) fun getRoyalties(_ viewResolver: &{ViewResolver.Resolver}) : Royalties? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Royalties { - return v - } - } - return nil - } - - /// Get the path that should be used for receiving royalties - /// This is a path that will eventually be used for a generic switchboard receiver, - /// hence the name but will only be used for royalties for now. - /// - /// @return The PublicPath for the generic FT receiver - /// - access(all) view fun getRoyaltyReceiverPublicPath(): PublicPath { - return /public/GenericFTReceiver - } - - /// View to represent a single field of metadata on an NFT. - /// This is used to get traits of individual key/value pairs along with some - /// contextualized data about the trait - /// - access(all) struct Trait { - // The name of the trait. Like Background, Eyes, Hair, etc. - access(all) let name: String - - // The underlying value of the trait, the rest of the fields of a trait provide context to the value. - access(all) let value: AnyStruct - - // displayType is used to show some context about what this name and value represent - // for instance, you could set value to a unix timestamp, and specify displayType as "Date" to tell - // platforms to consume this trait as a date and not a number - access(all) let displayType: String? - - // Rarity can also be used directly on an attribute. - // - // This is optional because not all attributes need to contribute to the NFT's rarity. - access(all) let rarity: Rarity? - - view init(name: String, value: AnyStruct, displayType: String?, rarity: Rarity?) { - self.name = name - self.value = value - self.displayType = displayType - self.rarity = rarity - } - } - - /// Wrapper view to return all the traits on an NFT. - /// This is used to return traits as individual key/value pairs along with - /// some contextualized data about each trait. - access(all) struct Traits { - access(all) let traits: [Trait] - - view init(_ traits: [Trait]) { - self.traits = traits - } - - /// Adds a single Trait to the Traits view - /// - /// @param Trait: The trait struct to be added - /// - access(all) fun addTrait(_ t: Trait) { - self.traits.append(t) - } - } - - /// Helper to get Traits view in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional Traits struct - /// - access(all) fun getTraits(_ viewResolver: &{ViewResolver.Resolver}) : Traits? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Traits { - return v - } - } - return nil - } - - /// Helper function to easily convert a dictionary to traits. For NFT - /// collections that do not need either of the optional values of a Trait, - /// this method should suffice to give them an array of valid traits. - /// - /// @param dict: The dictionary to be converted to Traits - /// @param excludedNames: An optional String array specifying the `dict` - /// keys that are not wanted to become `Traits` - /// @return The generated Traits view - /// - access(all) fun dictToTraits(dict: {String: AnyStruct}, excludedNames: [String]?): Traits { - // Collection owners might not want all the fields in their metadata included. - // They might want to handle some specially, or they might just not want them included at all. - if excludedNames != nil { - for k in excludedNames! { - dict.remove(key: k) - } - } - - let traits: [Trait] = [] - for k in dict.keys { - let trait = Trait(name: k, value: dict[k]!, displayType: nil, rarity: nil) - traits.append(trait) - } - - return Traits(traits) - } - - /// Optional view for collections that issue multiple objects - /// with the same or similar metadata, for example an X of 100 set. This - /// information is useful for wallets and marketplaces. - /// An NFT might be part of multiple editions, which is why the edition - /// information is returned as an arbitrary sized array - /// - access(all) struct Edition { - - /// The name of the edition - /// For example, this could be Set, Play, Series, - /// or any other way a project could classify its editions - access(all) let name: String? - - /// The edition number of the object. - /// For an "24 of 100 (#24/100)" item, the number is 24. - access(all) let number: UInt64 - - /// The max edition number of this type of objects. - /// This field should only be provided for limited-editioned objects. - /// For an "24 of 100 (#24/100)" item, max is 100. - /// For an item with unlimited edition, max should be set to nil. - /// - access(all) let max: UInt64? - - view init(name: String?, number: UInt64, max: UInt64?) { - if max != nil { - assert(number <= max!, message: "The number cannot be greater than the max number!") - } - self.name = name - self.number = number - self.max = max - } - } - - /// Wrapper view for multiple Edition views - /// - access(all) struct Editions { - - /// An arbitrary-sized list for any number of editions - /// that the NFT might be a part of - access(all) let infoList: [Edition] - - view init(_ infoList: [Edition]) { - self.infoList = infoList - } - } - - /// Helper to get Editions in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return An optional Editions struct - /// - access(all) fun getEditions(_ viewResolver: &{ViewResolver.Resolver}) : Editions? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Editions { - return v - } - } - return nil - } - - /// View representing a project-defined serial number for a specific NFT - /// Projects have different definitions for what a serial number should be - /// Some may use the NFTs regular ID and some may use a different - /// classification system. The serial number is expected to be unique among - /// other NFTs within that project - /// - access(all) struct Serial { - access(all) let number: UInt64 - - view init(_ number: UInt64) { - self.number = number - } - } - - /// Helper to get Serial in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return An optional Serial struct - /// - access(all) fun getSerial(_ viewResolver: &{ViewResolver.Resolver}) : Serial? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Serial { - return v - } - } - return nil - } - - /// View to expose rarity information for a single rarity - /// Note that a rarity needs to have either score or description but it can - /// have both - /// - access(all) struct Rarity { - /// The score of the rarity as a number - access(all) let score: UFix64? - - /// The maximum value of score - access(all) let max: UFix64? - - /// The description of the rarity as a string. - /// - /// This could be Legendary, Epic, Rare, Uncommon, Common or any other string value - access(all) let description: String? - - view init(score: UFix64?, max: UFix64?, description: String?) { - if score == nil && description == nil { - panic("A Rarity needs to set score, description or both") - } - - self.score = score - self.max = max - self.description = description - } - } - - /// Helper to get Rarity view in a typesafe way - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional Rarity struct - /// - access(all) fun getRarity(_ viewResolver: &{ViewResolver.Resolver}) : Rarity? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? Rarity { - return v - } - } - return nil - } - - /// NFTView wraps all Core views along `id` and `uuid` fields, and is used - /// to give a complete picture of an NFT. Most NFTs should implement this - /// view. - /// - access(all) struct NFTView { - access(all) let id: UInt64 - access(all) let uuid: UInt64 - access(all) let display: MetadataViews.Display? - access(all) let externalURL: MetadataViews.ExternalURL? - access(all) let collectionData: NFTCollectionData? - access(all) let collectionDisplay: NFTCollectionDisplay? - access(all) let royalties: Royalties? - access(all) let traits: Traits? - - view init( - id : UInt64, - uuid : UInt64, - display : MetadataViews.Display?, - externalURL : MetadataViews.ExternalURL?, - collectionData : NFTCollectionData?, - collectionDisplay : NFTCollectionDisplay?, - royalties : Royalties?, - traits: Traits? - ) { - self.id = id - self.uuid = uuid - self.display = display - self.externalURL = externalURL - self.collectionData = collectionData - self.collectionDisplay = collectionDisplay - self.royalties = royalties - self.traits = traits - } - } - - /// Helper to get an NFT view - /// - /// @param id: The NFT id - /// @param viewResolver: A reference to the resolver resource - /// @return A NFTView struct - /// - access(all) fun getNFTView(id: UInt64, viewResolver: &{ViewResolver.Resolver}) : NFTView { - let nftView = viewResolver.resolveView(Type()) - if nftView != nil { - return nftView! as! NFTView - } - - return NFTView( - id : id, - uuid: viewResolver.uuid, - display: MetadataViews.getDisplay(viewResolver), - externalURL : MetadataViews.getExternalURL(viewResolver), - collectionData : self.getNFTCollectionData(viewResolver), - collectionDisplay : self.getNFTCollectionDisplay(viewResolver), - royalties : self.getRoyalties(viewResolver), - traits : self.getTraits(viewResolver) - ) - } - - /// View to expose the information needed store and retrieve an NFT. - /// This can be used by applications to setup a NFT collection with proper - /// storage and public capabilities. - /// - access(all) struct NFTCollectionData { - /// Path in storage where this NFT is recommended to be stored. - access(all) let storagePath: StoragePath - - /// Public path which must be linked to expose public capabilities of this NFT - /// including standard NFT interfaces and metadataviews interfaces - access(all) let publicPath: PublicPath - - /// The concrete type of the collection that is exposed to the public - /// now that entitlements exist, it no longer needs to be restricted to a specific interface - access(all) let publicCollection: Type - - /// Type that should be linked at the aforementioned public path - access(all) let publicLinkedType: Type - - /// Function that allows creation of an empty NFT collection that is intended to store - /// this NFT. - access(all) let createEmptyCollection: fun(): @{NonFungibleToken.Collection} - - view init( - storagePath: StoragePath, - publicPath: PublicPath, - publicCollection: Type, - publicLinkedType: Type, - createEmptyCollectionFunction: fun(): @{NonFungibleToken.Collection} - ) { - pre { - publicLinkedType.isSubtype(of: Type<&{NonFungibleToken.Collection}>()): "Public type must be a subtype of NonFungibleToken.Collection interface." - } - self.storagePath=storagePath - self.publicPath=publicPath - self.publicCollection=publicCollection - self.publicLinkedType=publicLinkedType - self.createEmptyCollection=createEmptyCollectionFunction - } - } - - /// Helper to get NFTCollectionData in a way that will return an typed Optional - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional NFTCollectionData struct - /// - access(all) fun getNFTCollectionData(_ viewResolver: &{ViewResolver.Resolver}) : NFTCollectionData? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? NFTCollectionData { - return v - } - } - return nil - } - - /// View to expose the information needed to showcase this NFT's - /// collection. This can be used by applications to give an overview and - /// graphics of the NFT collection this NFT belongs to. - /// - access(all) struct NFTCollectionDisplay { - // Name that should be used when displaying this NFT collection. - access(all) let name: String - - // Description that should be used to give an overview of this collection. - access(all) let description: String - - // External link to a URL to view more information about this collection. - access(all) let externalURL: MetadataViews.ExternalURL - - // Square-sized image to represent this collection. - access(all) let squareImage: MetadataViews.Media - - // Banner-sized image for this collection, recommended to have a size near 1200x630. - access(all) let bannerImage: MetadataViews.Media - - // Social links to reach this collection's social homepages. - // Possible keys may be "instagram", "twitter", "discord", etc. - access(all) let socials: {String: MetadataViews.ExternalURL} - - view init( - name: String, - description: String, - externalURL: MetadataViews.ExternalURL, - squareImage: MetadataViews.Media, - bannerImage: MetadataViews.Media, - socials: {String: MetadataViews.ExternalURL} - ) { - self.name = name - self.description = description - self.externalURL = externalURL - self.squareImage = squareImage - self.bannerImage = bannerImage - self.socials = socials - } - } - - /// Helper to get NFTCollectionDisplay in a way that will return a typed - /// Optional - /// - /// @param viewResolver: A reference to the resolver resource - /// @return A optional NFTCollection struct - /// - access(all) fun getNFTCollectionDisplay(_ viewResolver: &{ViewResolver.Resolver}) : NFTCollectionDisplay? { - if let view = viewResolver.resolveView(Type()) { - if let v = view as? NFTCollectionDisplay { - return v - } - } - return nil - } -} diff --git a/contracts/utility/NonFungibleToken.cdc b/contracts/utility/NonFungibleToken.cdc deleted file mode 100644 index 4f79d2c..0000000 --- a/contracts/utility/NonFungibleToken.cdc +++ /dev/null @@ -1,234 +0,0 @@ -/** - -## The Flow Non-Fungible Token standard - -## `NonFungibleToken` contract - -The interface that all Non-Fungible Token contracts should conform to. -If a user wants to deploy a new NFT contract, their contract should implement -The types defined here - -## `NFT` resource interface - -The core resource type that represents an NFT in the smart contract. - -## `Collection` Resource interface - -The resource that stores a user's NFT collection. -It includes a few functions to allow the owner to easily -move tokens in and out of the collection. - -## `Provider` and `Receiver` resource interfaces - -These interfaces declare functions with some pre and post conditions -that require the Collection to follow certain naming and behavior standards. - -They are separate because it gives developers the ability to define functions -that can use any type that implements these interfaces - -By using resources and interfaces, users of NFT smart contracts can send -and receive tokens peer-to-peer, without having to interact with a central ledger -smart contract. - -To send an NFT to another user, a user would simply withdraw the NFT -from their Collection, then call the deposit function on another user's -Collection to complete the transfer. - -*/ - -import "ViewResolver" - -/// The main NFT contract. Other NFT contracts will -/// import and implement the interfaces defined in this contract -/// -access(all) contract interface NonFungibleToken: ViewResolver { - - /// An entitlement for allowing the withdrawal of tokens from a Vault - access(all) entitlement Withdraw - - /// An entitlement for allowing updates and update events for an NFT - access(all) entitlement Update - - /// entitlement for owner that grants Withdraw and Update - access(all) entitlement Owner - - /// Event that contracts should emit when the metadata of an NFT is updated - /// It can only be emitted by calling the `emitNFTUpdated` function - /// with an `Updatable` entitled reference to the NFT that was updated - /// The entitlement prevents spammers from calling this from other users' collections - /// because only code within a collection or that has special entitled access - /// to the collections methods will be able to get the entitled reference - /// - /// The event makes it so that third-party indexers can monitor the events - /// and query the updated metadata from the owners' collections. - /// - access(all) event Updated(type: String, id: UInt64, uuid: UInt64, owner: Address?) - access(contract) view fun emitNFTUpdated(_ nftRef: auth(Update | Owner) &{NonFungibleToken.NFT}) - { - emit Updated(type: nftRef.getType().identifier, id: nftRef.id, uuid: nftRef.uuid, owner: nftRef.owner?.address) - } - - - /// Event that is emitted when a token is withdrawn, - /// indicating the type, id, uuid, the owner of the collection that it was withdrawn from, - /// and the UUID of the resource it was withdrawn from, usually a collection. - /// - /// If the collection is not in an account's storage, `from` will be `nil`. - /// - access(all) event Withdrawn(type: String, id: UInt64, uuid: UInt64, from: Address?, providerUUID: UInt64) - - /// Event that emitted when a token is deposited to a collection. - /// Indicates the type, id, uuid, the owner of the collection that it was deposited to, - /// and the UUID of the collection it was deposited to - /// - /// If the collection is not in an account's storage, `from`, will be `nil`. - /// - access(all) event Deposited(type: String, id: UInt64, uuid: UInt64, to: Address?, collectionUUID: UInt64) - - /// Included for backwards-compatibility - access(all) resource interface INFT: NFT {} - - /// Interface that the NFTs must conform to - /// - access(all) resource interface NFT: ViewResolver.Resolver { - - /// unique ID for the NFT - access(all) let id: UInt64 - - /// Event that is emitted automatically every time a resource is destroyed - /// The type information is included in the metadata event so it is not needed as an argument - access(all) event ResourceDestroyed(id: UInt64 = self.id, uuid: UInt64 = self.uuid) - - /// createEmptyCollection creates an empty Collection that is able to store the NFT - /// and returns it to the caller so that they can own NFTs - /// @return A an empty collection that can store this NFT - access(all) fun createEmptyCollection(): @{Collection} { - post { - result.getLength() == 0: "The created collection must be empty!" - } - } - - /// Gets all the NFTs that this NFT directly owns - /// @return A dictionary of all subNFTS keyed by type - access(all) view fun getAvailableSubNFTS(): {Type: UInt64} { - return {} - } - - /// Get a reference to an NFT that this NFT owns - /// Both arguments are optional to allow the NFT to choose - /// how it returns sub NFTs depending on what arguments are provided - /// For example, if `type` has a value, but `id` doesn't, the NFT - /// can choose which NFT of that type to return if there is a "default" - /// If both are `nil`, then NFTs that only store a single NFT can just return - /// that. This helps callers who aren't sure what they are looking for - /// - /// @param type: The Type of the desired NFT - /// @param id: The id of the NFT to borrow - /// - /// @return A structure representing the requested view. - access(all) fun getSubNFT(type: Type, id: UInt64) : &{NonFungibleToken.NFT}? { - return nil - } - } - - /// Interface to mediate withdrawals from a resource, usually a Collection - /// - access(all) resource interface Provider { - - // We emit withdraw events from the provider interface because conficting withdraw - // events aren't as confusing to event listeners as conflicting deposit events - - /// withdraw removes an NFT from the collection and moves it to the caller - /// It does not specify whether the ID is UUID or not - /// @param withdrawID: The id of the NFT to withdraw from the collection - access(Withdraw | Owner) fun withdraw(withdrawID: UInt64): @{NFT} { - post { - result.id == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" - emit Withdrawn(type: result.getType().identifier, id: result.id, uuid: result.uuid, from: self.owner?.address, providerUUID: self.uuid) - } - } - } - - /// Interface to mediate deposits to the Collection - /// - access(all) resource interface Receiver { - - /// deposit takes an NFT as an argument and adds it to the Collection - /// @param token: The NFT to deposit - access(all) fun deposit(token: @{NFT}) - - /// getSupportedNFTTypes returns a list of NFT types that this receiver accepts - /// @return A dictionary of types mapped to booleans indicating if this - /// reciever supports it - access(all) view fun getSupportedNFTTypes(): {Type: Bool} - - /// Returns whether or not the given type is accepted by the collection - /// A collection that can accept any type should just return true by default - /// @param type: An NFT type - /// @return A boolean indicating if this receiver can recieve the desired NFT type - access(all) view fun isSupportedNFTType(type: Type): Bool - } - - /// Kept for backwards-compatibility reasons - access(all) resource interface CollectionPublic { - access(all) fun deposit(token: @{NFT}) - access(all) view fun getLength(): Int - access(all) view fun getIDs(): [UInt64] - access(all) view fun borrowNFT(_ id: UInt64): &{NFT}? - } - - /// Requirement for the concrete resource type - /// to be declared in the implementing contract - /// - access(all) resource interface Collection: Provider, Receiver, CollectionPublic, ViewResolver.ResolverCollection { - - /// deposit takes a NFT as an argument and stores it in the collection - /// @param token: The NFT to deposit into the collection - access(all) fun deposit(token: @{NonFungibleToken.NFT}) { - pre { - // We emit the deposit event in the `Collection` interface - // because the `Collection` interface is almost always the final destination - // of tokens and deposit emissions from custom receivers could be confusing - // and hard to reconcile to event listeners - emit Deposited(type: token.getType().identifier, id: token.id, uuid: token.uuid, to: self.owner?.address, collectionUUID: self.uuid) - } - } - - /// Gets the amount of NFTs stored in the collection - /// @return An integer indicating the size of the collection - access(all) view fun getLength(): Int - - /// Borrows a reference to an NFT stored in the collection - /// If the NFT with the specified ID is not in the collection, - /// the function should return `nil` and not panic. - /// - /// @param id: The desired nft id in the collection to return a referece for. - /// @return An optional reference to the NFT - access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { - post { - (result == nil) || (result?.id == id): - "Cannot borrow NFT reference: The ID of the returned reference does not match the ID that was specified" - } - } - - /// createEmptyCollection creates an empty Collection of the same type - /// and returns it to the caller - /// @return A an empty collection of the same type - access(all) fun createEmptyCollection(): @{Collection} { - post { - result.getType() == self.getType(): "The created collection does not have the same type as this collection" - result.getLength() == 0: "The created collection must be empty!" - } - } - } - - /// createEmptyCollection creates an empty Collection for the specified NFT type - /// and returns it to the caller so that they can own NFTs - /// @param nftType: The desired nft type to return a collection for. - /// @return An array of NFT Types that the implementing contract defines. - access(all) fun createEmptyCollection(nftType: Type): @{NonFungibleToken.Collection} { - post { - result.getIDs().length == 0: "The created collection must be empty!" - } - } -} diff --git a/contracts/utility/PrivateReceiverForwarder.cdc b/contracts/utility/PrivateReceiverForwarder.cdc index 0bdf60c..3636fab 100644 --- a/contracts/utility/PrivateReceiverForwarder.cdc +++ b/contracts/utility/PrivateReceiverForwarder.cdc @@ -45,7 +45,9 @@ access(all) contract PrivateReceiverForwarder { init(recipient: Capability<&{FungibleToken.Receiver}>) { pre { - recipient.borrow() != nil: "Could not borrow Receiver reference from the Capability" + recipient.borrow() != nil: + "PrivateReceiverForwarder.Forwarder.init: Could not borrow a Receiver reference from the recipient Capability." + .concat("The recipient needs to have the correct Fungible Token Vault initialized in their account with a public Receiver Capability") } self.recipient = recipient } @@ -65,7 +67,10 @@ access(all) contract PrivateReceiverForwarder { let privateReceiver = account.capabilities.borrow<&PrivateReceiverForwarder.Forwarder>( PrivateReceiverForwarder.PrivateReceiverPublicPath - ) ?? panic("Could not borrow reference to private forwarder") + ) ?? panic("PrivateReceiverForwarder.Sender.sendPrivateTokens: Could not borrow a reference to the private forwarder in the account " + .concat(address.toString()) + .concat(". Make sure this account has a Forwarder initialized in its storage with a public capability at ") + .concat(PrivateReceiverForwarder.PrivateReceiverPublicPath.toString())) privateReceiver.deposit(from: <-tokens) diff --git a/contracts/utility/TokenForwarding.cdc b/contracts/utility/TokenForwarding.cdc index 01ea1b3..b99d97d 100644 --- a/contracts/utility/TokenForwarding.cdc +++ b/contracts/utility/TokenForwarding.cdc @@ -85,7 +85,12 @@ access(all) contract TokenForwarding { // access(Owner) fun changeRecipient(_ newRecipient: Capability) { pre { - newRecipient.borrow<&{FungibleToken.Receiver}>() != nil: "Could not borrow Receiver reference from the Capability" + newRecipient.borrow<&{FungibleToken.Receiver}>() != nil: + "TokenForwarding.Forwarder.changeRecipient: Could not borrow a Receiver reference from the new Capability. " + .concat("This is likely because the recipient account ") + .concat(newRecipient.address.toString()) + .concat(" has not set up the FungibleToken Vault or public capability correctly.") + .concat("Verify that the address is correct and the account has the correct Vault and capability") } let newRef = newRecipient.borrow<&{FungibleToken.Receiver}>()! let oldRef = self.recipient.borrow<&{FungibleToken.Receiver}>()! @@ -118,7 +123,12 @@ access(all) contract TokenForwarding { init(recipient: Capability) { pre { - recipient.borrow<&{FungibleToken.Receiver}>() != nil: "Could not borrow Receiver reference from the Capability" + recipient.borrow<&{FungibleToken.Receiver}>() != nil: + "TokenForwarding.Forwarder.changeRecipient: Could not borrow a Receiver reference from the Capability. " + .concat("This is likely because the recipient account ") + .concat(recipient.address.toString()) + .concat(" has not set up the FungibleToken Vault or public capability correctly.") + .concat("Verify that the address is correct and the account has the correct Vault and capability") } self.recipient = recipient } diff --git a/contracts/utility/ViewResolver.cdc b/contracts/utility/ViewResolver.cdc deleted file mode 100644 index 862a4e8..0000000 --- a/contracts/utility/ViewResolver.cdc +++ /dev/null @@ -1,59 +0,0 @@ -// Taken from the NFT Metadata standard, this contract exposes an interface to let -// anyone borrow a contract and resolve views on it. -// -// This will allow you to obtain information about a contract without necessarily knowing anything about it. -// All you need is its address and name and you're good to go! -access(all) contract interface ViewResolver { - - /// Function that returns all the Metadata Views implemented by the resolving contract. - /// Some contracts may have multiple resource types that support metadata views - /// so there there is an optional parameter for specify which resource type the caller - /// is looking for views for. - /// Some contract-level views may be type-agnostic. In that case, the contract - /// should return the same views regardless of what type is passed in. - /// - /// @param resourceType: An optional resource type to return views for - /// @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) view fun getContractViews(resourceType: Type?): [Type] - - /// Function that resolves a metadata view for this token. - /// Some contracts may have multiple resource types that support metadata views - /// so there there is an optional parameter for specify which resource type the caller - /// is looking for views for. - /// Some contract-level views may be type-agnostic. In that case, the contract - /// should return the same views regardless of what type is passed in. - /// - /// @param resourceType: An optional resource type to return views for - /// @param view: The Type of the desired view. - /// @return A structure representing the requested view. - /// - access(all) fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? - - /// Provides access to a set of metadata views. A struct or - /// resource (e.g. an NFT) can implement this interface to provide access to - /// the views that it supports. - /// - access(all) resource interface Resolver { - - /// Same as getViews above, but on a specific NFT instead of a contract - access(all) view fun getViews(): [Type] - - /// Same as resolveView above, but on a specific NFT instead of a contract - access(all) fun resolveView(_ view: Type): AnyStruct? - } - - /// A group of view resolvers indexed by ID. - /// - access(all) resource interface ResolverCollection { - access(all) view fun borrowViewResolver(id: UInt64): &{Resolver}? { - return nil - } - - access(all) view fun getIDs(): [UInt64] { - return [] - } - } -} - \ No newline at end of file diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index b2d2ce9..90e132d 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,16 +1,13 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/ExampleToken.cdc (9.851kB) -// ../../../contracts/FungibleToken.cdc (11.796kB) -// ../../../contracts/FungibleTokenMetadataViews.cdc (6.596kB) -// ../../../contracts/FungibleTokenSwitchboard.cdc (17.944kB) +// ../../../contracts/FungibleToken.cdc (14.821kB) +// ../../../contracts/FungibleTokenMetadataViews.cdc (6.931kB) +// ../../../contracts/FungibleTokenSwitchboard.cdc (19.021kB) // ../../../contracts/test/MaliciousToken.cdc (9.055kB) // ../../../contracts/utility/Burner.cdc (1.997kB) -// ../../../contracts/utility/MetadataViews.cdc (25.493kB) -// ../../../contracts/utility/NonFungibleToken.cdc (10.577kB) -// ../../../contracts/utility/PrivateReceiverForwarder.cdc (2.845kB) -// ../../../contracts/utility/TokenForwarding.cdc (6.146kB) -// ../../../contracts/utility/ViewResolver.cdc (2.718kB) +// ../../../contracts/utility/PrivateReceiverForwarder.cdc (3.439kB) +// ../../../contracts/utility/TokenForwarding.cdc (7.001kB) package assets @@ -100,7 +97,7 @@ func exampletokenCdc() (*asset, error) { return a, nil } -var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x5a\xdb\x8e\x1b\xc7\xd1\xbe\xe7\x53\xd4\x2f\x5f\x68\xe9\x9f\xe2\x1a\x48\x90\x00\x8b\xd8\xd2\xca\x96\x12\xc5\x70\x10\x68\x57\xd6\x45\x10\x98\xcd\x99\x1a\x4e\x6b\x9b\xdd\xe3\xee\x1e\x52\xb4\xb0\x6f\x96\xbb\xbc\x58\x50\xd5\x87\x39\x70\xb8\x07\x5b\xd6\x85\xbd\x4b\x76\x55\xd7\xb9\xbe\xaa\xde\xf3\x2f\xbf\x9c\xcd\xbe\x80\xeb\x1a\xe1\xb5\x32\x7b\x78\xdd\xea\x8d\x5c\x2b\x84\x6b\x73\x83\x1a\x9c\x17\xba\x14\xb6\x9c\xcd\xbe\xf8\x02\x56\xe9\x4b\xfe\x6e\x05\x85\xd1\xde\x8a\xc2\xcf\x66\x6f\x2a\x10\xd0\x3a\xb4\x0e\xf6\x42\x7b\x07\xde\x40\x89\x8d\x32\x07\x10\xa0\x71\x0f\x9e\xb9\x25\x82\x05\xf8\x1a\xa5\xed\x18\x68\xc4\x92\x89\xe4\xb6\x51\xb8\x45\xed\xe9\x04\x0c\xee\x03\xa9\x3d\xda\x4a\x14\x08\x42\x97\x91\x03\xf3\x75\x4c\x7f\x4c\x9e\x09\x1c\x94\x58\x49\x8d\x25\x48\x0d\xbe\x96\x2e\xdf\xbc\x9c\xcd\xce\xcf\xcf\xe1\x5b\xfa\x55\xae\x5b\x6f\xac\x83\xb3\x46\xa1\x70\x08\xa2\x64\x9e\x7c\x5e\x49\xe7\x41\x56\x70\x30\x6d\xa0\xa5\xc3\xf8\x7f\xf3\x0b\x26\x7f\x06\x7f\x37\xae\x6e\x05\xfc\x4d\x68\x2d\x34\x3c\x83\xda\xfb\xc6\x5d\x9c\x9f\x6f\xa4\xaf\xdb\xf5\xb2\x30\xdb\xf3\x0f\x7c\xa4\xe6\x13\x91\xea\xa5\x70\x5e\x0a\x0d\x3f\xfc\xf7\x3f\x4a\xa1\xed\xd1\xf9\xbd\xf4\x1e\x2d\x13\xfa\xd6\xae\x8d\x42\xed\x23\xd5\x77\xe8\x11\xae\x6a\x69\x15\x1e\x4e\x90\x94\xe8\xf1\xcf\x7f\x48\xb7\x7c\x10\xd6\x23\x7c\x2f\xac\x72\xa8\x4f\x50\x7c\xf5\x31\x1c\xbb\x89\x44\x97\xad\xf3\x52\xc3\xf7\x4a\x6a\x3c\x41\x22\xf8\xc8\x4f\x95\x32\x7b\x7f\x88\x64\x7f\x95\x66\x27\xb4\x96\x70\x25\x74\x51\xe3\x2f\x27\x48\x37\xd2\xfc\x24\x75\x61\x36\x5a\x7a\x93\xd5\xd2\xf2\x17\x78\x55\x4a\x5d\xc8\x9b\x13\x74\x6b\xd5\xa2\x93\x1b\x9d\xad\xae\xf5\x61\xda\xda\xa5\x3d\xd8\x56\xa3\xa5\x93\x7c\xfa\x2d\x36\x06\x2c\x56\x68\x51\x17\x78\x31\x45\x63\x34\xe9\x72\x4e\xff\x79\x56\xf9\x10\xf2\x3f\x8a\x56\xf9\x15\x58\x74\xa6\xb5\x45\x2f\xa6\x66\xb3\x57\xa2\xa8\xa1\x4a\xf9\x12\x22\x3c\x9f\xf3\x87\x06\xe1\x44\x58\x9f\x66\xba\x0c\x97\xfe\xd3\x9a\x9d\x2c\xd1\xae\x16\xb0\x7a\x8b\x05\xca\x1d\xff\x4c\x61\xbf\x7a\x29\x94\xd0\x05\x4e\x51\xbb\xd9\xec\xba\x46\x37\x0a\xfc\x42\x09\x8b\xd0\x58\x7c\x56\x18\x5d\x4a\x2f\x8d\x76\xcc\xaa\x31\xce\xf7\x3f\xf3\xb5\xf0\xc4\xd5\x5b\x59\xf8\x19\x09\x8a\x1f\xb1\x68\xe9\x4b\x30\x15\x4b\x5e\xb5\xba\x08\x87\x39\x91\x10\x58\x93\xe5\x6c\xf6\xc6\xc3\x46\xee\xd0\xc5\x22\x40\x5f\x89\xb5\x54\xd2\x1f\x48\xfd\xad\xb8\x41\x28\x5a\xe7\xcd\x36\x8b\x1d\xef\xcb\x96\xa1\x0b\x87\xa2\x53\x0d\x31\xb0\x13\x56\x9a\x96\x4e\x4b\xbd\x71\xb0\x97\xbe\x66\xf6\x21\xf3\x97\xb3\xd7\xc6\x02\x7e\x14\xc4\x66\x01\x02\x2a\xd1\x16\xe8\xa1\x10\x1a\xd6\xd8\x71\xc7\x12\xd6\x07\xca\xdc\xca\xd8\xad\xd4\x9b\x19\x27\x36\x42\xb2\xf4\xc0\x05\x5f\x9e\xcf\x66\x72\xdb\x18\xeb\xe1\xc9\x8f\x12\xf7\x6f\xd1\x19\xb5\x43\xfb\x24\x7f\xfa\xb2\xb5\x9a\x7e\xe7\xc8\x1a\x54\xa9\x1c\x6f\xa3\x42\x9a\x25\x11\xc1\x7e\xae\x36\xad\x2a\x47\x81\x31\x0c\x26\x66\xd3\x93\x4b\x14\x05\x3a\x77\x26\x94\x9a\xe7\xfa\xd5\x2b\x8a\x03\x31\x2e\xa0\x2f\x38\x7c\x9a\xcd\x00\x00\xce\xcf\xe1\x52\x03\x6a\x2f\x7d\xbc\xb5\x32\x16\x84\x52\x66\x2f\xf5\x86\x45\x20\xfb\x96\x56\xec\x85\x62\x9f\xb3\x91\xa1\xb2\x66\x0b\x22\x38\x9b\x19\xf5\x45\xe9\xb3\x7b\x1f\xa9\xd3\x75\xe7\xdc\x58\x70\x17\x14\x24\x77\x3b\xc0\x2d\xe5\x73\x09\xfb\x1a\x75\xba\x80\x22\x34\xdd\xac\x33\x6d\xb8\x56\x1f\xc2\xc5\xa3\x78\x71\x83\x54\xea\xd2\xf2\x48\xbc\x5d\x5f\x30\x7d\x46\x89\x79\x01\x57\xde\x4a\xbd\x59\xf0\xe9\xbb\xfe\x89\xad\x69\xb5\xbf\x80\x77\xaf\xe5\xc7\x3f\xfd\xf1\xfe\xf3\x24\xf2\x05\x5c\x96\xa5\x45\xe7\x9e\x3f\xec\xfc\xbb\x77\x6f\xbe\xbb\x80\x77\x6f\xb4\x7f\xc8\x0d\xd9\x4c\x8f\x23\x5b\x87\xb2\x71\x59\x79\xb4\x49\x9d\xf9\xaf\x71\x53\x89\x8d\x71\xd2\x73\xbf\xcd\xe4\x9f\xc7\x49\xdf\x25\xd6\xbf\xb3\x93\xbc\x79\x8c\x8b\xbc\x79\x9c\xa5\xb3\x81\x3e\xab\x83\x5e\xdd\xe1\x9c\x1a\x61\xa3\xcc\x5a\x28\x58\x85\xc2\xb4\x5c\xb7\x56\x9f\xcd\x57\xb0\x45\x5f\x9b\x32\x33\x21\xe0\x23\x94\x22\x42\x2a\xa3\x02\xb4\xd1\xcf\x7e\x41\x6b\xd2\xed\x27\x1c\xc3\x5c\x47\x5e\x19\x5b\xfd\x28\x94\x7b\xc2\xbf\xec\x71\xa7\xfa\x08\xbd\xa8\xeb\x0a\x18\x2b\xd7\x84\x82\xec\x40\x64\xec\x09\x95\x44\xd5\x29\x41\x25\xcb\x62\x63\xd1\x51\xe5\xd1\x9b\x81\xec\x89\x7b\x5f\x87\xe3\x46\x99\x04\x82\x4f\xd9\x2d\x7d\x82\x9d\xb0\x89\x69\x52\x8f\xcf\xdd\x76\x1a\xa5\xbe\xf1\x10\x95\x90\x9a\x4e\x68\x78\x08\x16\x7f\x6e\xa5\x8d\xc9\x41\xaa\xa4\x7c\xa6\xa6\x94\x98\xf4\xcb\x2e\x03\xd9\x94\x4f\x5c\xa5\x0f\x0d\x2e\x8f\xee\x7d\xe3\xa1\x34\xe8\x40\x9b\x7c\xe1\xf0\x2e\xa3\x61\xb5\x4e\xd8\xa1\x46\x8b\x8b\x4c\xbb\xc6\x42\xb4\xd4\x7b\x3d\x28\x14\xd4\xc5\x4d\x13\xe3\xaa\x31\xce\xc9\xd8\xc8\x4d\x05\x85\x45\xc1\x42\xc4\x66\x1e\xbd\x65\x5d\x27\x3a\x69\x5c\x1a\x96\x43\x23\xd9\x54\x58\xa9\x0e\x10\x10\x3a\x63\x76\xb3\xd7\xc9\xbc\xcb\xc7\x38\x2d\xf7\xea\xd8\xcd\xd2\x95\xaf\x23\x28\x21\xc0\x20\xdc\x0d\x88\x2c\x16\x21\x76\x01\xae\xc1\x42\x56\xb2\x88\x11\xdb\xf5\xb5\x01\x17\xe9\x40\xec\x84\x54\x22\xf4\x5f\x42\x0f\xc3\x8e\xd4\x79\x98\xe7\x07\xea\xde\x6b\x24\xbc\x53\xb5\x8a\xaf\xde\x19\x59\x42\x23\xb4\x2c\xc8\x42\x9c\x9a\x94\x6d\xfc\x4b\xea\x8b\x7d\x46\x39\x79\xa3\x31\x48\x84\x56\xdf\x68\x33\xba\xf0\xb2\x0c\x08\x4d\x28\x75\x58\x90\x4a\xec\x98\xac\xa2\x83\xa6\x0d\xb7\x70\xbc\x6c\x5b\xe5\x65\xa3\x10\x76\x54\x74\x47\x3a\x7a\x30\x3a\x3a\x83\xf1\x55\x51\x63\x71\x03\xce\x6c\x31\x21\xbc\x40\x05\xad\xf6\x52\xf1\x07\x25\x3a\x69\xb1\x8c\xc6\x1b\x9b\xcc\xa2\x28\x6a\x2c\x17\xd0\x18\x4f\xf1\x49\x32\x42\x8d\xaa\x49\x5a\x43\x83\x96\x30\x57\xe7\xed\xbe\xc7\x13\xa7\x17\x8d\xb0\x62\x9b\x1c\xc4\xe8\x71\xe4\x2b\x0e\x66\x74\xa1\xef\x0c\x6e\x9b\xb4\xed\x0b\x8b\xbe\xb5\x1a\x5e\x1a\xa3\xe0\x7d\x8d\xbe\x46\x0b\xc6\x72\x58\xf2\x40\x17\xf9\x8f\xbd\x3e\xc9\x6c\xba\x48\x48\xdc\x13\x60\x03\xe9\x2e\x13\x87\x6b\x93\x70\xc6\xd9\xb0\x3a\xce\x2f\x58\x92\x61\xdc\xa6\xbb\xc0\xb5\x6b\x06\x73\xee\xee\xc4\x4f\x29\x31\x60\x42\x40\x3e\xe8\xea\x12\x42\xeb\x30\xb2\xc5\xad\xd9\xb1\xc5\x02\x56\x3e\x65\xfe\xeb\x1e\xb4\x7f\xea\xa2\x9a\xa0\x70\x87\x8a\x2c\xb4\x8a\x7a\x27\xe5\xe6\xab\x01\xf5\x95\xa1\x69\xc0\x58\x8a\x46\xca\x83\x40\x2d\xfd\x02\x8c\x46\xd8\x73\xa6\xa0\x64\x0f\xa4\x2a\x00\x66\xfd\x01\x09\xbd\x7a\x87\xaa\x1a\x70\x23\x40\x9a\x31\x6a\xd9\x4d\x6c\x41\xab\x55\x92\x61\xf5\x9b\x82\xa9\xe7\xe9\xce\xd8\x93\xf6\x4d\x81\x74\x9d\x86\x9d\xce\xba\xb9\x3c\x4c\x94\x93\x71\xc8\x64\xd3\x71\xc8\xec\x4f\x46\xc9\x8b\x4f\x7c\xc9\x6d\xaf\x33\xd1\x3f\x1a\xd5\x46\x1f\x85\x8b\x60\x65\xd1\xc5\x61\xb2\xe2\xc9\xcb\x44\x5d\x58\xea\x9d\x50\x2d\x1e\x91\x05\x92\x65\x2a\x3b\x5f\x7f\x9d\x7a\xf9\x24\x48\x79\xf2\xbe\x1b\x09\xa2\x21\xb7\xad\xf3\x54\xfc\xe8\x26\x27\xb6\x08\xc2\x0d\x0a\x59\xac\x25\x9d\x81\x58\xa9\x27\x03\xf6\xb7\xb3\xe1\x4f\xbd\xe6\x9a\x46\xde\xdf\xde\x5c\x23\x16\x9b\xe8\xad\x52\x47\x4b\x3d\xa0\xb7\xbe\xc7\xd4\xd1\xa4\x2e\x54\x5b\x22\x08\xc8\x73\x73\x10\x83\x0b\xe9\xd0\x08\xb1\xab\x66\x2e\x7b\xe4\xdd\x18\x79\x88\x46\xe5\x87\x4c\xca\xc1\x0c\x61\x52\xce\x7c\x68\xb4\x2d\x4d\x3a\x34\x3d\x16\x2f\x40\xc9\x1b\x04\xd7\x28\xc9\x19\xb0\x85\xb6\xa1\x52\x91\x99\x38\x0c\x2b\xb4\x2d\x4f\xd9\xb2\xe2\x24\xf3\xd0\x28\x9a\xbc\x1f\xd5\x95\x93\xb3\xc6\x5d\x39\x9a\x1e\xbc\xb8\xc1\xae\x34\x51\xb9\x8a\xdf\x50\x89\x38\xe1\x86\xc1\x16\xe5\xbe\x3c\xcf\xf9\xdb\x1b\x40\x68\x3c\x16\x52\xbb\x9e\x49\xe2\x4a\x92\x6e\xbe\x2b\x51\x59\x4d\xca\xd1\x78\xf6\x2c\x4c\x74\x29\x2f\xe7\x43\x25\x37\xe8\xaf\xda\xa6\x31\xd6\x63\xc9\x07\xae\x0f\x0d\xba\x5e\x41\x2e\x25\x17\x55\x61\x19\x3e\x45\x09\xe9\xcc\x51\x11\xdf\xc7\x26\xc5\x12\x1f\x1a\x46\x03\x45\x6b\xc9\x2d\xea\x00\x2e\xdd\x02\xeb\x43\x68\x60\x83\x24\x99\x34\x4f\xac\x01\x9f\xae\x19\xb6\x53\xff\xb9\x85\xcb\xbe\x44\x61\x9a\xd0\xa5\x2c\x84\x8f\x19\xd4\xdd\x73\x2c\xe5\xe4\x3f\xde\xfc\x26\x79\x29\x45\x32\x87\x05\xf9\x37\xae\x39\xd6\x08\x2b\x2d\xd5\x6a\xc1\x47\x2a\xa1\xdc\xb4\x5b\x27\x1b\xec\xb4\x91\xcf\xe6\x17\x03\xd5\x86\x8e\x79\x1b\x3d\xb0\x1f\xb7\x7e\xe4\xe4\xd3\x59\x64\xba\xb1\xc9\x76\xc5\x49\xb3\xc2\x65\x80\x45\x31\xb6\x84\x8e\x54\x3c\xf6\x32\xa3\xa8\xe6\x07\xaa\x8b\xd1\xec\xde\xb6\x48\x4c\x4b\xac\xf2\xda\xe4\x8e\x28\x66\x36\xd7\xc9\xf7\xde\xc0\xcf\x2d\xda\x03\x88\xb5\x69\xfd\x23\x90\x0d\x26\x49\xa3\x7a\xd9\x1b\x0f\x37\xb7\x74\xc7\xd6\x8e\xa3\x1f\xfd\x98\xa0\xcc\xa8\x66\x77\xbb\xa1\xb8\x4f\x27\xd0\xc7\x49\x27\x94\x02\xc3\x52\xf6\x76\x7b\xce\x8c\x36\x05\x61\x2d\x96\x19\x30\x4c\xad\xc5\x8e\x4d\x11\xd7\x76\xf4\x63\x5c\x25\x3c\xa6\x40\x31\xc5\x45\x76\xec\x22\xcf\x11\x8b\x34\x06\x2e\x06\xcb\xb2\x65\xfa\x61\x01\x71\x9a\xa6\xff\x31\x40\x1c\x0f\x1e\x34\x97\x06\x3d\x08\xbf\xdd\x1c\x35\x41\x11\xbc\xf1\xe0\x21\x73\xc0\xfd\xdb\x38\xa9\xd3\x94\x20\xc6\x7b\x66\xe9\x60\xcd\x43\x39\xec\xa4\x08\x4b\x96\xd3\xa3\x7f\xe2\xf8\x66\xb4\x83\x8c\x9d\x84\xa2\x78\x6d\xcc\xcd\x0d\x22\xc3\x76\x63\x79\xbf\xc0\x9f\xf3\xfc\x3f\x2c\x03\xac\x6f\x97\xd7\x83\x55\x44\x54\x98\xc4\x2b\xd1\x79\x6b\x0e\x58\x0e\x80\x1a\xfc\x40\x5c\xc7\xcb\xd0\xbd\x54\x2a\x37\xc7\xb6\x29\x85\xc7\xae\x72\x3f\xa5\x28\xf2\x42\x71\x2c\xab\xc3\x50\x16\x5e\xe9\x2b\x82\x92\xc1\x0d\x5d\xb9\xe7\xe0\x59\x23\xea\x64\xa8\x80\x94\x03\x20\xce\x3d\x23\xf0\x5c\xde\x69\x26\xa1\x9c\x81\xf4\xc2\xe4\xd0\x0f\xbc\xec\x0d\x84\x05\x0a\x56\xc6\x06\xa9\xa9\xb5\x8e\xf6\xe5\xc7\x03\xa4\xe4\xdc\x68\x6c\x58\xb0\x04\xab\x99\xbd\xa6\x6e\xcf\xc2\xb9\x46\x6c\xb7\x3c\xd4\x11\x22\x08\x0b\x98\xe8\x8d\xe5\x38\x9e\xd2\x32\x38\x34\x2e\x52\x97\x62\x67\x2d\x8a\x9b\xb3\xf9\x18\x48\x5a\x9c\xc0\x91\xec\xee\xc1\x92\x87\x60\xf9\x72\x83\x21\xf9\xe7\x4b\x59\x52\x67\xae\x24\x25\x45\xc2\xac\x7c\x64\x9d\x32\xa8\xdb\xfe\xf0\xe7\x6d\x2b\xcb\xf9\x09\xbc\x07\xa7\x01\x6d\x9f\x27\xe1\xd2\xaf\x96\x5f\x5d\xc0\x93\xeb\x9e\xbd\x13\xf4\x64\x3f\x44\xdb\x97\xad\x4d\xeb\xeb\xbe\xf2\x31\x05\xba\x5a\xc3\xb5\x9b\xea\x24\xd1\x93\x7d\xb1\x3c\x85\x49\x8f\x85\x21\x59\x7a\x90\xf5\x01\x30\xe0\x68\xc4\x8a\xad\x60\x14\xfe\x14\x0a\x11\x57\x96\xbc\x98\xc9\xfb\x98\x38\x8b\x0b\x8b\x80\x1f\x1b\x2c\x46\x65\x9c\xf4\xe7\x3a\x99\x7b\x58\xb7\x5f\x21\x2f\x2e\x82\xe6\x18\x0b\xa9\xee\x82\x38\x2e\x0f\x68\xd0\x1a\xca\x32\x60\x4f\x00\x9a\xa1\xc6\x54\x14\x7f\x8e\x96\x3d\x0a\x80\xf3\x73\x78\x89\xca\xec\xe3\x56\x82\xcc\xd2\x7b\xbe\x49\xe0\xd8\xb5\x36\x42\x7f\xdb\xea\x67\x5e\x6e\x63\xcb\xe4\x39\x73\xcc\x8f\xcd\xb3\xc1\xd4\x94\xfb\x1b\xd3\x46\x30\xe2\xcd\x0d\xa3\x48\x2d\x2b\xcc\x99\x83\xd7\x94\x65\xe8\x3a\x4b\x18\xf0\x97\xd5\x51\x9a\xb8\xab\x76\x4d\xd2\x9c\x99\x2a\x74\xcb\xbf\xbc\xf8\x34\xc1\xe9\xf6\x9b\xb3\xf9\x38\x33\x81\x07\xb3\x80\xd8\x86\x6c\x2f\x18\x4b\x0c\x63\xf3\x16\x50\xb9\xa9\x54\xce\xd8\x87\xa7\xe8\x6d\xe3\x0f\x7d\xc4\x17\xe7\xb4\x14\x88\x3c\x1e\xc6\x85\x6a\x34\xc3\xbe\x36\x50\x1a\xfd\xd4\x4f\x71\xee\x5e\xab\x26\xed\xb3\x00\xd7\x16\x35\x5d\x32\xfc\xfa\x6a\x2f\x7d\x51\xaf\x8d\xb0\xe5\x6a\x01\x2b\xfe\xec\xb5\xb1\x7b\x61\x4b\xb4\x2b\x40\x5f\x2c\x4f\x9a\xe2\xf6\xe4\xd0\x38\x6c\x96\x61\xfe\x8a\xcb\xb1\x21\xc4\x3b\xc6\xce\x3f\x9e\xee\xca\x8f\x43\x41\x23\x07\x44\xa1\x93\xfb\x26\x53\xe0\x5f\xc4\xe4\xdf\xf0\xfc\xf9\x08\x06\xdf\xde\xbb\x1c\x5a\x85\xca\xbb\x1a\x4d\x3c\x4f\xdd\x60\x03\x0e\x93\x8b\x21\x8d\xfb\xf1\xfa\x22\x31\x26\xbb\x1c\xd3\x7f\xee\x05\xc6\x64\xdf\x19\x54\xd8\x6f\xee\x59\x43\x5c\x86\xdd\x43\xb7\x54\x48\xad\x40\xa1\xe3\x11\x59\x33\x72\xf9\xb9\x15\x2a\xfc\x36\xb1\x91\xb8\x73\x0f\x01\xa7\xfb\x52\xdc\x98\xe4\x94\xa4\xde\x34\x4e\xd2\x27\x3f\xf4\xd1\x7f\xda\x8c\xf4\xe0\xb8\x70\x4c\xf3\x64\x2a\xb3\xa8\xdc\x33\x4d\x83\x85\x14\x2a\x97\x5c\x58\x05\x60\xb1\xe2\xb5\x01\x26\x88\x4f\x69\x1b\x55\xea\x96\xfa\xdd\x33\xc9\x88\x79\x04\x46\x6b\xdc\x48\xad\x19\xe1\x0d\xd1\x49\xf7\xce\x3f\x41\x7d\x6f\x8f\x0e\x02\x9e\xf5\x3f\x9e\xc3\xb3\xbb\x7d\xf9\x8f\x1c\x8e\xe3\xbe\xce\xe5\x29\xee\x23\x3a\xbf\x11\x4e\xe2\xbf\x02\x48\xc7\xe3\x5f\x00\x8d\x57\x4c\xe9\xfb\x63\x1b\x33\xc4\xe9\x5e\x81\x27\xc5\xa2\x7f\x21\xc5\xc7\xfe\xee\x03\xa0\x93\xa4\x29\x17\xc2\xff\x4f\x9f\x0b\x1b\x05\xb6\x17\x23\xbe\xe7\x4b\x11\x1e\x23\xef\x26\x19\xa1\xab\xd3\x87\x47\x2f\xc4\x51\x97\xbb\x69\x86\xaf\x8f\x7d\x5f\x1e\x91\x9c\x82\x75\xb7\x0f\xdd\xff\x88\xb2\x74\x20\xbd\xeb\x63\xe8\xa3\x5c\x3d\xaa\xd2\x8f\xd9\xd5\x4c\xb5\xdc\x71\xbf\xa5\xb1\xde\x39\xb4\xbd\xc9\xa1\x30\xba\xb0\xe8\x23\xa0\x88\xa1\xd7\xbd\x77\xe7\xd1\x26\x25\xf7\x98\x5f\xec\xae\xbd\x5d\x41\x5e\x30\x24\x7c\x3a\xde\x40\xc1\xc9\xda\x48\xba\x2c\xa5\x7b\xa3\x9d\x27\xab\x9c\x0d\xcb\xcd\xfc\x02\xa6\x33\xeb\xdb\x80\x70\x93\xf5\x09\xe1\xe9\xc2\x6c\x1b\xe1\x7b\xd3\x23\xe9\xf7\x2b\xaa\x20\xe7\x50\xf7\x48\x7f\x4f\x0e\xc5\xba\xc0\x7a\x4c\x25\xd2\xfc\xfe\x4c\xea\xb3\x48\xa5\xe5\x34\x95\x37\x8f\xcc\xaa\xf4\xb2\xff\x80\x9c\x1a\x3d\xea\xf7\x05\xe3\x51\xe7\x77\xc8\x2c\x78\x68\xad\xfd\xff\x49\x3b\xfd\xaa\xca\xeb\xda\xed\xbd\x25\xb7\x4b\x88\x7b\xb6\xfa\x83\x72\xc0\x2f\xc7\xf8\x8a\x00\x69\xac\x04\x4a\x99\xbd\xe3\x25\x43\xeb\xc2\xcb\x51\x38\x33\x40\x2b\x9c\x45\xb5\xa0\x02\x72\xf4\x77\x0a\x70\xc7\xd2\xf3\x32\xd2\x47\x65\xb8\x15\x87\xcd\x5a\xc7\xb0\x57\x6f\x88\xf7\xc9\xea\x32\x16\xfd\xec\xd1\xef\x34\xc7\x0f\x2e\xdd\x60\xab\x71\xaf\x0e\xf1\x8e\x68\xd2\xe0\x12\x1e\xda\xfa\x4a\x1f\x37\xb5\x07\xc1\x92\xfb\x2f\x19\x5a\x28\x56\xb1\xfc\xd4\xbf\x7b\xd4\xdb\xcd\xef\xe0\xe7\xfe\x53\xcc\x09\xff\xf6\x1e\x87\x1f\xe0\xe4\x7b\x1d\xbc\x4b\x78\x3d\x83\xfd\xe9\x9e\xd2\x73\xf5\x84\xe7\xa7\xbc\xd3\xe3\xcc\x8e\xc9\x73\x69\x68\x1a\xf9\x4f\x38\xb6\xc2\x17\xf5\xe0\xfd\xfd\xb8\x66\x7f\xee\xa8\x4a\xbe\xbc\xfd\x5f\x00\x00\x00\xff\xff\xc3\xc3\x69\x0d\x14\x2e\x00\x00" +var _fungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x4b\x8f\x1b\xc7\x73\xbf\xf3\x53\xd4\x7f\x7d\xd0\xd2\xa1\x48\x03\x09\x12\x60\x61\x4b\x5a\xd9\x52\xb2\x31\x0c\x04\xd2\xca\x3e\x04\x81\xd9\x9c\x29\x92\xad\x6d\x76\x8f\xbb\x7b\x48\xd1\xc2\x7e\xb3\xdc\xf2\xc5\x82\xaa\xee\x9e\x17\x67\xf8\xd0\xc3\xde\x83\x4d\x91\x5d\xd5\xf5\xae\x5f\xd5\xcc\xec\xdb\x6f\x47\xa3\x6f\xe0\x7e\x8d\xf0\x5a\x99\x1d\xbc\x2e\xf5\x4a\x2e\x14\xc2\xbd\x79\x40\x0d\xce\x0b\x9d\x0b\x9b\x8f\x46\xdf\x7c\x03\xf3\xf4\x23\xff\x36\x87\xcc\x68\x6f\x45\xe6\x47\xa3\xbb\x25\x08\x28\x1d\x5a\x07\x3b\xa1\xbd\x03\x6f\x20\xc7\x42\x99\x3d\x08\xd0\xb8\x03\xcf\xdc\x12\xc1\x04\xfc\x1a\xa5\xad\x19\x68\xc4\x9c\x89\xe4\xa6\x50\xb8\x41\xed\xe9\x04\xb4\xee\x03\xa9\x3d\xda\xa5\xc8\x10\x84\xce\x23\x07\xe6\xeb\x98\xfe\x90\xbc\x22\x70\x90\xe3\x52\x6a\xcc\x41\x6a\xf0\x6b\xe9\xaa\x9b\xa7\xa3\xd1\x6c\x36\x83\x1f\xe9\x9f\x72\x51\x7a\x63\x1d\x5c\x17\x0a\x85\x43\x10\x39\xf3\xe4\xf3\x4a\x3a\x0f\x72\x09\x7b\x53\x06\x5a\x3a\x8c\xff\x18\xdf\x30\xf9\x53\xf8\x4f\xe3\xd6\xa5\x80\xff\x10\x5a\x0b\x0d\x4f\x61\xed\x7d\xe1\x6e\x66\xb3\x95\xf4\xeb\x72\x31\xcd\xcc\x66\xf6\x9e\x8f\xac\xf9\x44\xa4\x7a\x29\x9c\x97\x42\xc3\x2f\xff\xf7\xbf\x4a\xa1\x6d\xd0\xf9\x9d\xf4\x1e\x2d\x13\xfa\xd2\x2e\x8c\x42\xed\x23\xd5\x4f\xe8\x11\xde\xae\xa5\x55\xb8\x1f\x20\xc9\xd1\xe3\xbf\xfd\x73\xba\xe5\xbd\xb0\x1e\xe1\x67\x61\x95\x43\x3d\x40\xf1\xdd\x87\x70\xec\x21\x12\xdd\x96\xce\x4b\x0d\x3f\x2b\xa9\x71\x80\x44\xf0\x91\xdf\x97\xca\xec\xfc\x3e\x92\xfd\xbb\x34\x5b\xa1\xb5\x84\xb7\x42\x67\x6b\xfc\x73\x80\x74\x25\xcd\xef\x52\x67\x66\xa5\xa5\x37\x95\x5a\x5a\xfe\x09\xaf\x72\xa9\x33\xf9\x30\x40\xb7\x50\x25\x3a\xb9\xd2\x95\xd5\xb5\xde\xf7\x5b\x3b\xb7\x7b\x5b\x6a\xb4\x74\x92\x4f\xbf\xc1\xc2\x80\xc5\x25\x5a\xd4\x19\xde\xf4\xd1\x18\x4d\xba\xcc\xe8\x3f\x4f\x97\x3e\x84\xfc\xaf\xa2\x54\x7e\x0e\x16\x9d\x29\x6d\xd6\x88\xa9\xd1\xe8\x95\xc8\xd6\xb0\x4c\xf9\x12\x22\xbc\x3a\xe7\xf7\x05\xc2\x40\x58\x0f\x33\x9d\x86\x4b\xff\xcb\x9a\xad\xcc\xd1\xce\x27\x30\x7f\x83\x19\xca\x2d\x7f\xa6\xb0\x9f\xbf\x14\x4a\xe8\x0c\xfb\xa8\xdd\x68\x74\xbf\x46\xd7\x09\xfc\x4c\x09\x8b\x50\x58\x7c\x9a\x19\x9d\x4b\x2f\x8d\x76\xcc\xaa\x30\xce\x37\xbf\xf3\x6b\xe1\x89\xab\xb7\x32\xf3\x23\x12\x14\x3f\x60\x56\xd2\x8f\x60\x96\x2c\xf9\xb2\xd4\x59\x38\xcc\x89\x84\xc0\x9a\x4c\x47\xa3\x3b\x0f\x2b\xb9\x45\x17\x8b\x00\xfd\x24\x16\x52\x49\xbf\x27\xf5\x37\xe2\x01\x21\x2b\x9d\x37\x9b\x4a\xec\x78\x5f\x65\x19\xba\xb0\x2d\x3a\xd5\x10\x03\x5b\x61\xa5\x29\xe9\xb4\xd4\x2b\x07\x3b\xe9\xd7\xcc\x3e\x64\xfe\x74\xf4\xda\x58\xc0\x0f\x82\xd8\x4c\x40\xc0\x52\x94\x19\x7a\xc8\x84\x86\x05\xd6\xdc\x31\x87\xc5\x9e\x32\x77\x69\xec\x46\xea\xd5\x88\x13\x1b\x21\x59\xba\xe5\x82\x6f\x67\xa3\x91\xdc\x14\xc6\x7a\xb8\xfa\x55\xe2\xee\x0d\x3a\xa3\xb6\x68\xaf\xaa\x6f\x5f\x96\x56\xd3\xbf\x39\xb2\x5a\x55\xaa\x8a\xb7\x4e\x21\xad\x24\x11\xc1\x7e\x6e\x6d\x4a\x95\x77\x02\xa3\x1d\x4c\xcc\xa6\x21\x97\xc8\x32\x74\xee\x5a\x28\x35\xae\xea\x57\xa3\x28\xb6\xc4\xb8\x81\xa6\xe0\xf0\x71\x34\x02\x00\x98\xcd\xe0\x56\x03\x6a\x2f\x7d\xbc\x75\x69\x2c\x08\xa5\xcc\x4e\xea\x15\x8b\x40\xf6\xcd\xad\xd8\x09\xc5\x3e\x67\x23\xc3\xd2\x9a\x0d\x88\xe0\x6c\x66\xd4\x14\xa5\xc9\xee\xb7\x48\x9d\xae\x9b\x71\x63\xc1\x6d\x50\x90\xdc\xed\x00\x37\x94\xcf\x39\xec\xd6\xa8\xd3\x05\x14\xa1\xe9\x66\x5d\xd1\x86\x6b\xf5\x3e\x5c\xdc\x89\x17\xd7\x4a\xa5\x3a\x2d\x0f\xc4\xdb\x36\x05\xd3\xd7\x94\x98\x37\xf0\xd6\x5b\xa9\x57\x13\x3e\x7d\xec\x4f\x6c\x4c\xa9\xfd\x0d\xbc\x7b\x2d\x3f\xfc\xeb\xbf\x9c\x3e\x4f\x22\xdf\xc0\x6d\x9e\x5b\x74\xee\xf9\x79\xe7\xdf\xbd\xbb\xfb\xe9\x06\xde\xdd\x69\x7f\xce\x0d\x95\x99\x2e\x23\x5b\x84\xb2\x71\xbb\xf4\x68\x93\x3a\xe3\x4f\x71\x53\x8e\x85\x71\xd2\x73\xbf\xad\xc8\xbf\x8c\x93\x7e\x4a\xac\xbf\xb2\x93\xbc\xb9\xc4\x45\xde\x5c\x66\xe9\xca\x40\x5f\xd4\x41\xaf\x8e\x38\x67\x8d\xb0\x52\x66\x21\x14\xcc\x43\x61\x9a\x2e\x4a\xab\xaf\xc7\x73\xd8\xa0\x5f\x9b\xbc\x62\x42\xc0\x47\x28\x45\x84\x54\x46\x05\x68\xa3\x9f\xfe\x89\xd6\xa4\xdb\x07\x1c\xc3\x5c\x3b\x5e\xe9\x5a\xfd\x20\x94\x1b\xc2\xbf\x6c\x70\xa7\xfa\x08\x8d\xa8\xab\x0b\x18\x2b\x57\x84\x82\xec\x40\x54\xd8\x13\x96\x12\x55\xad\x04\x95\x2c\x8b\x85\x45\x47\x95\x47\xaf\x5a\xb2\x27\xee\x4d\x1d\x0e\x1b\x65\x12\x08\x3e\x56\x6e\x69\x12\x6c\x85\x4d\x4c\x93\x7a\x7c\xee\xb1\xd6\x28\xf5\x8d\x73\x54\x42\x6a\x3a\xa1\xe1\x21\x58\xfc\xa3\x94\x36\x26\x07\xa9\x92\xf2\x99\x9a\x52\x62\xd2\x2c\xbb\x0c\x64\x53\x3e\x71\x95\xde\x17\x38\x3d\xb8\xf7\xce\x43\x6e\xd0\x81\x36\xd5\x85\xed\xbb\x8c\x86\xf9\x22\x61\x87\x35\x5a\x9c\x54\xb4\x0b\xcc\x44\x49\xbd\xd7\x83\x42\x41\x5d\xdc\x14\x31\xae\x0a\xe3\x9c\x8c\x8d\xdc\x2c\x21\xb3\x28\x58\x88\xd8\xcc\xa3\xb7\xac\xab\x45\x27\x8d\x73\xc3\x72\x68\x24\x9b\x0a\x2b\xd5\x1e\x02\x42\x67\xcc\x6e\x76\x3a\x99\x77\x7a\x89\xd3\xaa\x5e\x1d\xbb\x59\xba\xf2\x75\x04\x25\x04\x18\x84\x7b\x00\x51\x89\x45\x88\x5d\x80\x2b\x30\x93\x4b\x99\xc5\x88\xad\xfb\x5a\x8b\x8b\x74\x20\xb6\x42\x2a\x11\xfa\x2f\xa1\x87\x76\x47\xaa\x3d\xcc\xf3\x03\x75\xef\x05\x12\xde\x59\x96\x8a\xaf\xde\x1a\x99\x43\x21\xb4\xcc\xc8\x42\x9c\x9a\x94\x6d\xfc\x8f\xd4\x17\x9b\x8c\xaa\xe4\x8d\xc6\x20\x11\x4a\xfd\xa0\x4d\xe7\xc2\xdb\x3c\x20\x34\xa1\xd4\x7e\x42\x2a\xb1\x63\x2a\x15\x1d\x14\x65\xb8\x85\xe3\x65\x53\x2a\x2f\x0b\x85\xb0\xa5\xa2\xdb\xd1\xd1\x83\xd1\xd1\x19\x8c\xaf\xb2\x35\x66\x0f\xe0\xcc\x06\x13\xc2\x0b\x54\x50\x6a\x2f\x15\x7f\x91\xa3\x93\x16\xf3\x68\xbc\xae\xc9\x2c\x8a\x6c\x8d\xf9\x04\x0a\xe3\x29\x3e\x49\x46\x58\xa3\x2a\x92\xd6\x50\xa0\x25\xcc\x55\x7b\xbb\xe9\xf1\xc4\xe9\x45\x21\xac\xd8\x24\x07\x31\x7a\xec\xf8\x8a\x83\x19\x5d\xe8\x3b\xad\xdb\x7a\x6d\xfb\xc2\xa2\x2f\xad\x86\x97\xc6\x28\xf8\x6d\x8d\x7e\x8d\x16\x8c\xe5\xb0\xe4\x81\x2e\xf2\xef\x7a\xbd\x97\x59\x7f\x91\x90\xb8\x23\xc0\x06\xd2\xdd\x26\x0e\xf7\x26\xe1\x8c\xeb\x76\x75\x1c\xdf\xb0\x24\xed\xb8\x4d\x77\x81\x2b\x17\x0c\xe6\xdc\xf1\xc4\x4f\x29\xd1\x62\x42\x40\x3e\xe8\xea\x12\x42\xab\x31\xb2\xc5\x8d\xd9\xb2\xc5\x02\x56\x1e\x32\xff\x7d\x03\xda\x3f\x71\x51\x4d\x50\xb8\x45\x45\x16\x9a\x47\xbd\x93\x72\xe3\x79\x8b\xfa\xad\xa1\x69\xc0\x58\x8a\x46\xca\x83\x40\x2d\xfd\x04\x8c\x46\xd8\x71\xa6\xa0\x64\x0f\xa4\x2a\x00\x66\xf1\x1e\x09\xbd\x7a\x87\x6a\xd9\xe2\x46\x80\xb4\xc2\xa8\x79\x3d\xb1\x05\xad\xe6\x49\x86\xf9\x67\x05\x53\xc3\xd3\xb5\xb1\x7b\xed\x9b\x02\xe9\x3e\x0d\x3b\xb5\x75\xab\xf2\xd0\x53\x4e\xba\x21\x53\x99\x8e\x43\x66\x37\x18\x25\x2f\x3e\xf2\x25\x8f\x8d\xce\x44\x7f\x34\xaa\x75\xbe\x0a\x17\xc1\xdc\xa2\x8b\xc3\xe4\x92\x27\x2f\x13\x75\x61\xa9\xb7\x42\x95\x78\x40\x16\x48\xa6\xa9\xec\xfc\xf0\x43\xea\xe5\xbd\x20\xe5\xaa\x35\x58\x4c\x53\x15\x9e\x26\x25\x6e\xe0\x47\xa1\x29\xaf\x2a\x8b\x06\x73\xfc\xe3\xaa\x97\xdd\x34\x33\x3a\x13\xfe\xfa\xea\xbe\x51\xf9\x62\xf1\xe9\x5a\x14\xae\xaf\xc6\xe9\x7c\x5b\xe8\xa9\x37\x01\x87\x5c\x8f\xc7\xc7\xaf\x19\x53\x04\x73\x57\xfc\xa3\x14\x2a\xd9\x27\x46\x44\xab\xa8\x34\x2b\x3e\xdd\x7c\x94\x6f\x60\xd0\x14\xa3\xbe\xb1\x43\xfa\x38\x6a\x7f\x6a\xc0\x88\x34\xdc\x7f\x3e\x8c\x88\xa8\xb3\x07\x45\x48\x1d\x75\x3e\x03\x45\xfc\x86\xa9\x77\x4b\x9d\xa9\x32\x47\x10\x50\x6d\x08\x82\x18\xdc\x32\x5c\xab\x6f\x45\xfc\x50\x71\xd9\x21\x6f\x01\xc9\xa6\x2b\xb9\xc5\x73\x76\x02\xc1\x0c\x61\x27\x50\xf1\xa1\x21\x3e\x37\xe9\x50\xff\x02\x60\x02\x4a\x3e\x20\xb8\x42\x49\xce\xf5\x0d\x94\x05\x15\xc5\x8a\x89\xc3\xb0\x2c\xdc\xf0\x3e\x41\x2e\xb9\x9c\x78\x28\x94\xc8\xd0\x5d\x84\x3f\x92\xb3\xba\xf8\x23\x9a\x1e\xbc\x78\xc0\xba\x08\x53\x61\x8e\xbf\x50\x31\x1c\x70\x43\x6b\x5f\x74\xaa\xa2\x55\x95\xaa\x31\x6a\x65\x46\x7b\x21\xb5\x6b\x98\x24\x2e\x5f\xe9\xe6\x63\x25\x89\xd5\xa4\x6a\x14\xcf\x5e\x87\xd9\x35\x55\xa0\x71\x5b\xc9\x15\xfa\xb7\x65\x51\x18\xeb\x31\xe7\x03\xf7\xfb\x02\x5d\xa3\xf5\xe4\x92\xdb\x87\xb0\x0c\x14\xa3\x84\x74\xe6\xa0\x5d\xed\x62\x3b\x66\x89\xf7\x05\xe3\x9e\xac\xb4\xe4\x16\xb5\x07\x97\x6e\x81\xc5\x3e\xb4\xea\x56\x92\xf4\x9a\x27\x56\xbb\x8f\xf7\x3c\xa0\x50\xa7\x7d\x84\xdb\xa6\x44\x61\x6e\xd2\xb9\xcc\x84\x8f\x19\x54\xdf\x73\x28\x65\xef\x1f\xef\xb8\x93\xbc\x94\x22\x15\x87\x09\xf9\x37\x2e\x74\x16\x08\x73\x2d\xd5\x7c\xc2\x47\x96\x42\xb9\x7e\xb7\xf6\x42\x89\x7e\x23\x5f\x8f\x6f\x5a\xaa\xb5\x1d\xf3\x26\x7a\x60\xd7\x05\x39\xc8\xc9\xa7\x2b\x91\xe9\xc6\xa2\xb2\x2b\xf6\x9a\x15\x6e\x03\x00\x8c\xb1\x25\x74\xa4\xe2\x01\x9f\x19\x45\x35\xdf\x97\xce\xa7\x26\xe3\x6d\x89\xc4\x34\xc7\x65\xb5\x20\x3a\x12\xc5\xcc\xe6\x3e\xf9\xde\x1b\xf8\xa3\x44\xbb\x07\xb1\x30\xa5\xbf\x00\xc3\x61\x92\x34\xaa\x57\x79\xe3\x7c\x73\x4b\x77\x68\xed\x38\xe4\xd2\xc7\x04\xda\x3a\x35\xbb\xde\x82\xc5\x27\x07\x04\x6f\x39\xe9\x84\x52\x60\x58\xca\xc6\x16\xd3\x99\xce\x4e\x24\x2c\x00\x2b\x06\x0c\xc8\xd7\x62\xcb\xa6\x88\x0b\x4a\xfa\x18\x97\x26\x97\x14\x28\xa6\xb8\xa9\x1c\x3b\xa9\x26\xa6\x49\x1a\x78\x27\xad\xb5\xe0\x34\x7d\x98\x40\xdc\x1b\xd0\xff\x18\x0a\x77\x47\x2c\x9a\xc0\x83\x1e\x84\x54\x3b\xf5\xdf\x50\x66\x6c\x5b\xbe\x3f\x35\x4e\xb7\xb8\xff\x18\x77\x12\x34\x0f\x89\xee\x46\x5d\x3a\x58\xf0\xfa\x01\xb6\x52\x84\x75\xd2\xf0\x92\x23\x71\xbc\xeb\x6c\x5b\x63\x27\xa1\x28\x5e\x18\xf3\xf0\x80\xc8\x03\x8a\xb1\xbc\x49\xe1\xef\x79\xd3\xd1\x2e\x03\xac\x6f\x9d\xd7\xad\xa5\x4b\x54\x98\xc4\xcb\xd1\x79\x6b\xf6\x98\xb7\x20\x29\xfc\x42\x5c\xbb\x6b\xdf\x9d\x54\xaa\x6a\x8e\x65\x91\x0b\x8f\x75\xe5\x7e\x42\x51\xe4\x85\xe2\x58\x56\xfb\xb6\x2c\xfc\xf0\x42\x11\x68\x0e\x6e\xa8\xcb\x3d\x07\xcf\x02\x51\x27\x43\x85\x99\x20\x40\xff\xaa\x67\x04\x9e\xd3\xa3\x66\x12\xca\x19\x48\xcf\xd2\x1c\xfa\x96\x97\xbd\x81\xb0\x2a\xc2\xa5\xb1\x41\x6a\x6a\xad\x9d\x27\x03\x87\xa3\xb2\xe4\xdc\x28\x6c\x58\x25\x05\xab\x99\x9d\xa6\x6e\xcf\xc2\xb9\x42\x6c\x36\x3c\xbe\x12\x22\x08\xab\xa6\xe8\x8d\x69\x37\x9e\xd2\xda\x3b\x34\x2e\x52\x97\x62\x67\x21\xb2\x87\xeb\x71\x17\x32\x5b\xec\x41\xcc\xec\xee\xd6\x3a\x8b\x06\x90\xe9\x0a\x43\xf2\x8f\xa7\x32\xa7\xce\xbc\x94\x94\x14\x09\x9d\xf3\x91\x45\xca\xa0\x7a\xcf\xc5\xdf\x97\xa5\xcc\x87\xf0\x1e\x0c\x43\xf7\x26\x4f\x42\xe0\xdf\x4d\xbf\x3b\x0b\x7e\x87\x07\x2e\x4d\xcd\x2b\xfc\xbd\xe0\x62\x4c\x26\x6f\x0c\x2a\xad\x5c\x99\x5e\x00\xc9\x37\x54\xe1\x17\x18\xc2\x20\xba\x3e\x2f\x6d\x7a\x4e\xd0\x94\x20\x66\x60\x5d\xea\xb8\x75\xb0\x48\x18\xdc\x8b\xf9\x20\x26\x3e\x34\x06\xd9\xa2\x01\x99\xcf\x80\x21\x07\xc3\x6c\x6c\x45\x9d\xf4\xa3\x50\x8c\xb8\x36\xe7\x15\x58\xb5\xf9\x8a\x5b\x0f\x61\x11\xf0\x43\x81\x59\xa7\x8d\x90\x01\xb8\x4e\x57\x3d\xb4\xde\x64\x51\x14\x4d\x82\xea\x18\x0b\xb9\xae\x93\x28\xae\x69\x68\xa4\x6d\xcb\xd2\x62\x4f\x00\x9e\x1d\xd7\x97\x45\x5f\x02\x32\x74\x02\x70\x36\x83\x97\xa8\xcc\x2e\xee\x7f\xc8\x2c\x8d\x07\x65\x09\x9c\xbb\xd2\xc6\xd1\xc3\x96\xfa\xa9\x97\x9b\xd8\xb2\x79\xa2\xef\xf2\x63\xf3\xac\x30\x81\x82\xe6\x6e\xba\x10\x8c\xb8\xab\x86\x95\xa5\x96\x19\x26\xfa\x9e\xf8\x9e\x4f\xa1\xc5\x5f\x2e\x0f\xd2\xd4\xbd\x2d\x17\x24\xcd\xb5\x59\x86\x6e\xfd\xfd\x8b\x8f\x3d\x9c\x1e\x9f\x5d\x8f\xbb\x95\x01\x78\x04\x0e\x88\xb1\xcd\xf6\x86\xb1\x4c\x3b\x36\x1f\x01\x95\xeb\x2b\x25\x15\xf6\xe2\x7d\xc5\xa6\xf0\xfb\x26\xe2\x14\x2e\x6e\xcf\x42\x20\xf2\x20\x1e\x57\xd7\xd1\x0c\xbb\xb5\x81\xdc\xe8\x27\xbe\x8f\x73\xfd\x5c\xb0\xd7\x3e\x13\x70\x65\xb6\xa6\x4b\xda\x3f\xbf\xdd\x49\x9f\xad\x17\x46\xd8\x7c\x3e\x81\x39\x7f\xf7\xda\xd8\x9d\xb0\x39\xda\x39\xa0\xcf\xa6\x83\xa6\x78\x1c\x1c\x5a\xdb\xcd\x3a\xcc\x7f\x71\x0d\xd9\x86\x98\x87\xd8\xfd\xd7\x61\x54\x70\x19\x0a\xeb\x38\x20\x0a\x9d\xdc\xd7\x9b\x02\xff\x4d\x4c\xfe\x07\x9e\x3f\xef\xc0\xf0\xc7\x93\x6b\xb8\x79\xa8\xfc\xf3\xce\xc4\xf5\xc4\xb5\x9e\x35\x40\xef\x0a\x4e\xe3\xae\xbb\x28\x4a\x8c\xc9\x2e\x87\xf4\x5f\x7a\x55\xd4\xdb\xf7\x5a\x15\xf6\xd9\x45\x0b\x9f\xd0\x71\x4e\x6e\x7b\xe0\x8c\xde\x72\xce\xd6\x65\x78\xc1\x72\xc6\x9e\x67\x65\x51\x78\x1e\x2d\x85\xee\x42\xd4\x7a\x70\x3e\xb5\xdb\x69\x1a\xab\x7f\xc3\x33\x3d\xda\xce\x06\x5a\x7e\xdc\x60\x55\xd5\x86\xda\x7e\xb7\xfe\x7c\x41\x87\x9c\xe1\x8f\x8a\x24\x36\x70\x6f\x65\x70\x8a\xad\x0a\x9b\xd4\x99\xd9\x14\xc2\x33\x22\xaf\xa7\x7a\xf8\xfe\x84\x0d\xbb\xca\x36\x80\x55\x6d\xc7\x67\x53\x38\xc1\xe6\xea\xce\x07\x24\x92\x24\x3a\xc8\x2d\x91\xda\x92\x70\x6c\xcd\xf3\xbc\x7b\x4a\xae\xab\xc6\xfa\x23\xfd\xcd\x66\x40\x58\x81\x6f\x2d\x30\x93\x42\x55\xfd\x1a\xe6\x01\x15\xcf\x79\xe7\x85\x69\x3e\xa5\x9a\x1f\x23\xaf\x7e\xf6\x56\x3f\xcd\xec\x30\x8f\xa8\x7e\x81\x2b\xa9\x35\x8f\x27\x6d\x68\x5d\xbf\x8e\xd3\x43\x7d\x12\x60\x06\x01\x5b\xb1\x3d\x86\xa7\x5f\xa1\x10\x5c\xf5\x07\x71\x2b\xf0\x1c\xea\x1c\x6d\x5d\x4f\x41\x2c\x7d\xdc\x08\x35\x5e\x40\xf9\xd4\x3c\x3d\x55\x28\x12\xb4\xe5\x06\x1d\x37\x82\x75\x8d\xa0\x49\x85\xdf\x38\x4a\xb2\x35\x8a\x52\x8f\x11\x9b\x17\x9f\xbc\x39\xbe\xb8\x98\x0a\xe1\xb9\x85\xaf\x7f\x8c\xa9\xdf\x69\xe9\xbd\x96\xfe\x42\x1b\x3d\x92\x8b\xc3\xef\x25\xa4\x7e\x13\xfe\x3f\x7c\x2e\x6c\x0d\xd9\x22\x3c\xd5\x3d\x9f\x8a\xf0\x6a\xc5\x71\x92\xce\x04\x35\x7c\xb8\xf3\xbe\x4b\xd4\xe5\x38\x4d\xfb\x5d\x8a\xa6\xb7\x0e\x48\x86\x57\xf5\x67\xee\x78\x45\x9e\x3b\x90\xde\x35\xe7\xe4\x83\xce\x73\x80\x84\x2e\xd9\xc7\xf6\xc1\xda\x2e\xa6\x9d\xcd\xe0\xd6\x39\xb4\x8d\xed\x00\x85\x93\x45\x1f\xab\x63\x0c\xee\xfa\xed\x9d\x6a\x7d\x91\xaa\x68\x97\x5f\x44\xb0\x8d\x7d\x60\xb5\x44\x4c\x43\x60\x77\xcb\x0c\x83\xf8\x83\x74\x99\x4a\x77\xa7\x9d\x27\xab\x74\x8a\xf0\x45\x8d\x2f\x5e\x5a\xd5\x9f\xca\x35\x67\xb7\xbd\x7e\x83\xc4\x6d\xca\xa9\xc6\xc6\x9a\xf4\xb6\x8f\xe3\x17\x3f\x83\xb5\x70\x11\xf0\x1c\x34\xae\x1a\x9b\x2c\x90\x8c\x5b\x4b\xc5\x8f\x0d\x4e\xc9\x34\xdc\xd2\x4e\xc8\x34\x0d\x70\x3e\xb8\x77\x6f\xca\xd6\x8b\x78\x24\x48\xe3\x29\x06\x3b\xdd\xc4\xd0\xb2\x16\x33\x0f\x85\xf0\xeb\xea\x55\xd0\x50\xd3\x23\x1a\x8e\x4f\x4a\x44\x96\x51\xf5\x70\xa7\xba\x7c\xa8\x8b\x1c\xb8\xc6\x61\xe4\xbb\x36\x2a\xaf\x4d\xd5\x78\xa2\xf0\x49\xe8\x8b\x4b\x66\xfd\x86\xd9\x89\x92\x19\x0b\xfd\xb0\xb3\x4f\x17\xce\x26\x8b\xd4\x70\x87\xa9\xbc\xb9\xb0\x88\xa6\xd7\xd2\xce\x28\xa1\x9d\x37\xd2\x9a\x82\xf1\xf6\xea\x2b\x14\x52\x38\x17\x81\xfc\x53\xaf\x9d\x2e\xc0\x23\xa7\xca\xc1\x19\x68\x24\x85\x6b\x2f\x1e\x49\xfc\xfe\x0a\x30\xe2\xca\xcd\xdf\x80\x42\xea\x62\x73\x78\x47\xcb\x2b\x83\x6a\x0d\xb6\x4d\x7e\x5f\x0c\x5f\x6d\x0a\xbf\x8f\x1d\x53\x29\xb3\x73\xbc\x70\x2f\x5d\x78\x5f\x24\x9c\x69\x4d\xce\x5c\x0a\xa8\x5c\x0a\x38\x78\x3b\x11\x8e\x3c\x00\xbc\x8d\xf4\xd1\x86\x75\x89\x6d\x30\x6c\xf4\x65\xe2\x3d\xd8\x85\xbb\xa2\x5f\x5f\xfc\x76\xc6\xe1\x6b\x16\x97\x2d\x79\xbb\x12\xdc\x00\x7f\x8e\x3a\x86\x57\xf1\x8c\x86\xa5\x90\x0a\xf3\x73\xfa\x9e\xc6\x9d\xda\x47\xc5\xf2\xc8\x86\xc3\x8f\xb7\x96\x4d\x4b\xc3\xa2\xe4\x35\xee\x81\xc9\xce\x9b\xfa\xfa\xd2\xe0\x53\xc6\xe1\xbf\xd1\x56\x4d\x8c\x50\x07\xe6\xe7\x4c\xbd\x5f\x04\x1e\x84\xe7\xb2\xd1\x83\xf2\xb4\x40\x9f\x8e\x0c\xce\x7f\x89\xe5\x2b\x24\x79\xf3\x9d\x94\x81\xe4\x6e\x2c\x91\xce\xc8\xf0\x93\xd9\xbd\x4d\x8b\xc3\x6a\xeb\xd8\x0f\xbc\x1b\x79\xde\x93\xf6\x67\xa6\x7c\x27\x84\x3f\x37\x78\xff\x82\x24\xbf\x34\xc1\xfb\x92\xbb\x36\xf1\x29\x83\x7c\x99\x9c\xfe\xc4\x7c\xfe\xa4\x5c\x3e\x9e\xc7\x31\x85\xeb\x40\xdd\x89\xe6\x0b\xad\xc7\xa4\xa8\x8c\x76\xe6\xf5\xcd\xbc\x4d\x99\xfa\xf8\xff\x01\x00\x00\xff\xff\x12\xf6\x32\xd9\xe5\x39\x00\x00" func fungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -116,11 +113,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{0xd7, 0xcc, 0xfa, 0x73, 0x93, 0xb5, 0xb2, 0x13, 0x49, 0x0, 0x55, 0x8, 0xf1, 0x2b, 0xad, 0x48, 0x81, 0x77, 0x27, 0x75, 0xef, 0x5b, 0x84, 0x8, 0x87, 0xd0, 0x96, 0xb3, 0x2e, 0x9f, 0xa, 0x16}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x29, 0x4d, 0xee, 0x2f, 0xf1, 0xe4, 0x88, 0xf6, 0x28, 0x1, 0x3f, 0xcc, 0x64, 0xdc, 0xce, 0x1f, 0xa1, 0xd5, 0x77, 0x5e, 0x3b, 0x25, 0x46, 0x60, 0xed, 0x46, 0x8e, 0x52, 0xb5, 0x6e, 0x6d, 0xfe}} return a, nil } -var _fungibletokenmetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\xdf\x6f\xdb\xbe\x11\x7f\xf7\x5f\x71\xf3\x43\x9b\x00\x89\xdc\x16\xc3\x56\x18\xf5\xda\x02\x8d\xb1\x01\x29\x1a\x24\x6e\xf7\xb8\x52\xd2\xc9\x26\x42\x91\x1a\x49\xd9\x31\x82\xfc\xef\xc3\x91\xd4\x4f\x4b\x8e\xd3\x7d\x8b\xaf\x1f\x12\x89\x3c\xde\x7d\xee\x07\x8f\x1f\x8a\xe7\x85\xd2\x16\xa6\xcb\x52\xae\x79\x2c\x70\xa5\xee\x51\x4e\x27\xd5\xf0\x57\xb4\x2c\x65\x96\xfd\xe0\xb8\x33\xcd\x30\xbd\xde\xa2\x51\x62\x8b\x7a\x3a\x99\xcc\x66\x33\x58\x6d\xb8\x81\x44\x49\xab\x59\x62\x81\xe7\x85\xc0\x1c\xa5\x35\x60\x37\x08\x79\x50\x03\xc6\x32\x99\x32\x9d\x42\xa1\x55\xa1\x0c\xa6\x6e\x2d\x97\xb0\xbc\xfe\xd7\xcd\xe5\xdb\x37\xef\xff\x1e\xb9\x11\xf7\xe7\x16\xb3\x39\x6c\xac\x2d\xcc\x7c\x36\x5b\x73\xbb\x29\xe3\x28\x51\xf9\x4c\xc9\x4c\xa8\xdd\x2c\x13\xbc\x30\xb3\x58\xa8\x78\x96\x33\x2e\x67\xac\x28\x04\x4f\x98\xe5\x4a\xce\xde\xbd\x79\xf7\xee\xcd\xfb\xb7\x6f\x2f\xb3\xe0\xd7\xa5\x25\xc7\xcc\x65\x85\x24\xca\xd3\xc6\xd0\x9d\xd5\x65\x62\x0d\x30\x99\x82\x46\xa3\x4a\x9d\xa0\x81\x84\xc9\xc6\x0f\x50\x12\x41\x69\xc8\x95\x46\xb7\xa6\x76\xc9\xee\x0b\x34\x17\x90\x30\x21\x30\x85\x2d\x05\x2a\x82\x2b\x96\x6c\xdc\xb3\x9b\x06\x8d\x85\x46\x43\xe1\x70\x6b\x19\xa4\x3c\xcb\x50\x93\xde\x7b\x2e\x53\x50\x59\xad\xcf\xf9\x3f\x61\x49\x82\xc6\x9c\x31\x21\xce\x9b\xa0\x76\x72\xd4\xc9\x0c\x3c\x4e\x26\x00\x00\xa4\x7c\xb9\xa2\x21\xd8\x69\x56\x18\x58\xae\xbe\x70\x53\x08\xb6\x77\xbe\x2d\x57\x3f\x58\x29\xec\x17\x66\xd9\x85\x1b\xe0\x06\x4a\x83\x29\x58\x05\x6b\xbe\x45\x60\x90\x28\xf2\xd8\x22\xd4\xfa\x0a\x9e\xd8\x52\x23\x61\x64\x35\x04\x70\x18\x22\xf8\xaa\x8c\xed\x0d\xd6\x78\x0d\x98\x8d\x2a\x45\xda\xa8\x6a\xa2\x69\xa9\x5a\x28\x3e\x51\x35\xe9\xfe\xb7\xdd\x36\x2e\x29\x95\x3b\x8f\x6e\xbe\x2f\x23\xd0\x42\x66\x83\x8b\xf3\xc6\xdb\x8f\x4e\xf2\xc8\x92\x3a\x0e\xf3\x76\x50\x3e\xd6\x2b\x5c\xea\xb8\xe4\xf6\xac\x1e\xa2\xdf\xa0\xad\x8b\x9e\xc8\x73\xba\xcf\x5b\xce\xd0\xcf\xa0\xc8\xa2\x5a\x33\x2c\x1a\x2b\x43\x62\xb5\x42\x27\x58\xbf\xd5\xa2\x4f\x13\xff\xb7\x0e\xfa\x3f\x51\x14\xa8\x5d\x8a\xd1\x52\x0a\x57\x03\x81\x27\xc1\x4f\x05\xd3\x2c\x77\x93\xd5\xde\x9e\xc3\x67\xd0\xe8\x2a\x35\x41\x52\x41\x9b\x59\x87\xc9\x7a\xab\x34\x1a\x34\xda\x52\x4b\xf8\x5c\x65\xcd\xe7\x70\x34\xc5\x59\x29\x09\x94\x17\x3e\xeb\x1a\x7e\xf5\xd8\x6e\x32\x51\xf5\xf0\x74\x3e\x3f\x2c\x09\xca\x69\xce\xf6\x31\x86\x99\x45\xc7\x89\x28\x00\x76\x46\x56\xfb\x02\x3f\x78\xb1\x7f\x9c\x9d\x9f\xd7\x2a\x78\x56\x55\x86\x57\xd0\x56\xd7\x4d\x57\xf0\x31\x48\x32\xf3\x97\x80\xa7\x97\x81\x96\x68\xf0\x6f\xac\x92\x5c\x62\x5d\x18\xc2\x50\x27\x12\xe7\x47\xca\xab\x59\x59\x0f\x76\xd7\x36\x35\xd7\xaf\x0a\x07\xde\x2a\xc0\x07\x6a\xc3\x2e\xaf\x5c\x66\x4a\xe7\xae\x7f\x82\x44\x4c\x7d\x5f\x30\x1b\xb5\x4b\x98\x13\xe1\xd4\x4f\xa2\x66\x3b\xfb\x96\xcf\x24\xc4\xe8\xdb\x48\xbc\x87\x56\x13\x36\x4d\x5b\x91\xa0\xb6\xa8\xdd\xa6\xa2\xb6\x53\x6b\x58\x6b\x56\x6c\x78\x62\xa8\xb9\x10\x84\xe5\xea\x84\x7e\x50\x6d\x94\x26\x2d\x1e\x0c\x42\x1a\x66\x24\xcb\x11\x32\xa5\x3d\x66\xd7\xf9\xa3\xb6\x70\x67\xe1\xd5\x03\xa3\xb6\x34\x87\xe9\x52\xa8\xdd\x74\x50\xae\xdf\x40\xc8\xc0\x9c\x8e\x0d\x2e\xd7\x93\x03\x18\x2c\x8e\x35\x6e\x39\xb3\x98\x82\xd9\xe7\xb1\x12\xbf\x02\xe6\xfa\xdb\xbf\xa7\xa3\x00\xbc\xda\x61\x08\x9f\x21\x45\x93\x68\x5e\xb8\x4c\x52\x58\x0b\xad\xb6\x3c\x45\xd3\x49\x84\x0b\xf9\x4b\x10\x91\x6b\x84\xca\xaf\xa0\xb3\x83\x74\x4b\x66\x29\xc5\x49\xa9\xa9\x49\xec\xeb\x4c\x0a\xb5\x03\x89\x76\xa7\xf4\x7d\x34\xee\x47\x0b\xe9\xb0\x33\x57\x0f\x16\xb5\x64\x02\x04\x97\xf7\x54\x50\x0c\xbe\xdf\x5e\xd3\x83\x73\x82\x8e\xe3\x4e\xe1\xb2\x58\x95\xd6\x21\xa8\x4e\xfe\xbe\x83\x7d\x08\x18\x2c\x7c\xbf\xbd\x9e\x43\xe7\x54\x8d\xae\x9a\xa9\x2e\xaa\x6f\x0d\x19\x80\x2d\x6a\xe3\xaa\x3d\x78\xde\xb5\x0b\x42\xad\xd5\xb8\x71\x9a\x35\x7d\xb3\x5f\x31\xe5\xcc\x74\x2d\xde\xa9\x84\x87\x28\xb8\x7d\xa5\x91\x18\xc6\xa1\xbd\xd7\x06\x8c\x17\xdd\xa8\x1c\x0b\xb6\x46\xd3\xc9\x2d\xdc\x28\x63\x9c\xf8\x3d\xee\x0d\xb5\x39\xda\xbd\x53\x2e\x8d\x65\x6b\xcd\xf2\xe9\x05\x4c\xed\x8e\x5b\x8b\x9a\x1e\x53\x6e\x12\xa5\xd3\xe9\x05\xa0\x4d\xc6\xdd\xf0\x26\xcd\x1c\x1e\x7d\x0e\x8f\x04\xf2\x69\xf2\xdc\x21\xdb\xde\x5c\xdd\xe6\xd7\xad\xfa\xee\xdc\x40\x25\x75\x05\x4e\xcb\x73\x77\xcd\x91\xf4\xf4\x90\xbd\x24\x00\xd5\xa2\x41\x22\xe0\x7a\xd7\xc2\x05\xe1\x70\x32\x74\x93\x45\x88\xc4\xa1\x40\x7b\xe7\x2f\xda\x31\x39\x14\x6d\xc5\x03\x16\xed\xe8\x1c\x8a\xba\x30\xc0\xc2\x87\x63\x00\x95\x77\x9e\x60\xf9\xa7\x53\xc9\x48\xd3\xcb\xb9\x04\x06\x3b\xb6\x07\xbb\x61\x16\x76\x5c\x88\xea\xf0\xf4\x04\x3b\x05\xe5\xdc\x60\xa2\x3e\x20\xe0\x77\x10\x17\x59\xdb\x69\x81\x3b\x95\xc5\x54\xc7\xf7\x7f\xe0\x05\x54\xa6\x66\xac\x8f\x7d\x2e\xe2\x28\x48\x98\x3e\x91\xd6\x04\x69\x62\x36\xbd\xda\x0a\x3a\xd3\x8e\xba\x03\x0b\xcc\x7c\x1c\x3c\x60\xab\x5f\x08\x53\x4b\x4b\x47\xe4\x69\x9c\x03\x49\x2e\x7e\x8d\x82\x18\x4b\x4d\xd6\x5d\x56\xa4\x45\x77\x0f\xda\x71\xbb\x09\x44\x96\x68\x4f\xf4\x22\x42\x62\xd0\x96\x45\x6b\xb5\xd7\x46\xd7\x51\xd4\x4d\x49\x91\x55\xb6\xf6\x76\x8b\x32\x16\x3c\x81\x84\x15\x2c\xe6\x82\x5b\x5e\xb5\xd4\xe3\xb7\x96\x9a\xa7\x77\x79\xca\x0d\xb3\x1b\x2a\xf7\xca\xc2\x6e\x83\xba\x26\x57\x01\x12\x37\xa0\x31\x51\x79\x8e\x32\xb0\xb0\x18\x7d\x20\xd2\x23\x3d\xd8\x2b\x24\xfd\xd4\x00\xeb\x97\xee\x39\x72\xe3\x9d\x29\x08\xc5\x6e\xc3\x93\x0d\xe4\xa5\xb1\xa4\x9f\x8e\x16\x6f\xac\x95\x90\xe0\xbb\xc6\x04\x39\xed\x9c\x3a\x08\xfb\x71\x20\x95\xb0\x47\xe2\x0d\xfe\xdf\x40\x62\x26\x18\x6d\xe5\xea\x8a\xee\xf6\xf1\x68\x66\x86\x60\x55\x17\xec\xe3\xb0\x68\x23\xf9\x26\x14\x2e\xaf\x0d\x20\xe6\x79\xc5\xcf\xb6\x7f\x3f\x23\x5f\x74\xdc\x00\x23\x5c\x56\xf3\x84\x68\x5f\xb8\xf5\xff\xb7\xe4\x74\x1a\x40\xc7\x84\x53\xd2\xb9\xcb\x47\xb7\x41\xe5\x4f\x5f\xe4\x19\x4b\xf0\xf9\xf8\x5e\x3b\x58\x04\x78\xee\x60\xff\x39\x8e\x0c\xb6\xb6\x96\x1f\x27\x64\xe4\xb8\x23\xcb\x52\x26\x81\xc9\x32\x0b\x4c\x08\xb5\x33\x90\x68\xf4\x5d\x42\x65\x44\x6a\x31\x2f\xec\xbe\xd9\x3f\x4e\x92\x9c\x91\xd6\xed\xa0\x2e\x6a\x15\x7a\x4a\x20\x4f\xe9\x11\x84\xce\x0c\x5e\x91\x76\xb7\x9f\xe7\xb4\xe0\xec\x7c\x0e\x9f\x1e\xbb\x09\x74\xb3\xcf\x53\x9b\xb1\x3d\x7a\xd1\xbb\x61\x0e\x6f\xa0\xae\xd4\x58\x3d\x0f\xeb\xea\xc7\x78\x58\xd7\x71\xa9\x7e\x34\xaa\xcc\x3c\x17\x95\x6a\x7d\xff\x4c\x2a\x34\x0e\x9e\x31\x7d\xc4\x11\x37\x77\x65\x4c\x95\x78\xa6\x32\x0f\xec\xc3\xab\xc7\xe1\x1d\xf4\x44\x67\xdf\x1c\xa6\xd5\x7b\xd5\x23\x5c\x1d\xbb\x0e\xc3\x65\x22\xca\x14\x61\x78\x7d\xeb\xae\x32\x1e\x9c\x53\x00\x79\xdf\x03\x9a\x8a\x0c\xd6\xbd\xad\x46\x13\x23\xb0\xfe\x95\xc1\x15\xf1\x74\xe4\x64\x85\x9a\x75\x35\xe5\x43\xcc\xab\xd5\xf0\x0f\x44\xdb\x05\x05\x8b\x4e\x7d\x1d\x0a\xb7\xeb\x8a\x38\x42\xeb\x75\x5c\x73\x13\x9b\x96\xfe\x66\x70\xdc\x4a\x67\xe1\xe1\xe0\xe1\xc2\x7e\x11\xc2\x62\xb4\x2e\x4f\xa7\xa1\xcd\x61\xfd\x3c\x11\xfd\xd6\x27\xa2\xbf\xe5\x03\x5a\x8b\x86\x36\xe0\x4e\xfe\x9c\x56\x7f\x0d\x7a\x11\x15\x6d\xbe\x55\x1e\x92\xd1\xed\x89\xdf\xd5\x2a\x15\xe3\x14\x74\x1b\xd4\x04\xb2\x39\xc4\x93\x9a\x56\xe0\xa2\xb1\xfd\x63\x49\xa6\x55\x96\x09\x30\x65\x51\x88\xfa\x73\x85\x43\xf1\x3a\x7c\x0c\x19\x23\x75\x2b\x5a\x78\xe7\xd7\x8d\x7f\x8f\xf6\x8a\xe7\xf0\x7d\xc9\x1f\xfe\xf6\xd7\xa1\x23\xc1\x36\x7a\x2a\xb1\xc1\xab\x60\x80\xb8\x80\xd6\x82\x83\x9a\x7e\x9a\xc0\xff\x02\x00\x00\xff\xff\xea\x75\x9d\x1b\xc4\x19\x00\x00" +var _fungibletokenmetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x58\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xf3\xc3\x6e\x0c\xa4\x72\x5b\x1c\xee\x16\x46\xbd\xdd\x02\x1b\xe3\x0e\x48\xd1\x22\x75\xf7\x1e\xaf\x94\x34\xb2\x89\x50\xa4\x8e\xa4\xec\x18\x41\xbe\xfb\x61\x48\xea\xbf\xe4\x38\xdb\x2b\xce\x0f\x89\x2d\x0e\x67\x7e\xf3\x97\x3f\x8a\xe7\x85\xd2\x16\xe6\x9b\x52\xee\x78\x2c\x70\xab\xee\x51\xce\x67\xd5\xe3\x8f\x68\x59\xca\x2c\xfb\x83\xe3\xd1\x34\x8f\xe9\xe7\x1d\x1a\x25\x0e\xa8\xe7\xb3\xd9\x72\xb9\x84\xed\x9e\x1b\x48\x94\xb4\x9a\x25\x16\x78\x5e\x08\xcc\x51\x5a\x03\x76\x8f\x90\x07\x35\x60\x2c\x93\x29\xd3\x29\x14\x5a\x15\xca\x60\xea\xf6\x72\x09\x9b\xdb\x7f\x7e\x7e\xf5\xe6\xf5\x2f\x7f\x8f\xdc\x13\xf7\xe7\x0e\xb3\x15\xec\xad\x2d\xcc\x6a\xb9\xdc\x71\xbb\x2f\xe3\x28\x51\xf9\x52\xc9\x4c\xa8\xe3\x32\x13\xbc\x30\xcb\x58\xa8\x78\x99\x33\x2e\x97\xac\x28\x04\x4f\x98\xe5\x4a\x2e\xdf\xbe\x7e\xfb\xf6\xf5\x2f\x6f\xde\xbc\xca\x82\x5f\xaf\x2c\x39\x66\x5e\x55\x48\xa2\x3c\x6d\x0c\x7d\xb1\xba\x4c\xac\x01\x26\x53\xd0\x68\x54\xa9\x13\x34\x90\x30\xd9\xf8\x01\x4a\x22\x28\x0d\xb9\xd2\xe8\xf6\xd4\x2e\xd9\x53\x81\xe6\x1a\x12\x26\x04\xa6\x70\xa0\x40\x45\x70\xc3\x92\xbd\xfb\xee\x96\x41\x63\xa1\xd1\x50\x38\xdc\x5e\x06\x29\xcf\x32\xd4\xa4\xf7\x9e\xcb\x14\x54\x56\xeb\x73\xfe\xcf\x58\x92\xa0\x31\x57\x4c\x88\x45\x13\xd4\x4e\x8e\x3a\x99\x81\xc7\xd9\x0c\x00\x80\x94\x6f\xb6\xf4\x08\x8e\x9a\x15\x06\x36\xdb\xdf\xb9\x29\x04\x3b\x39\xdf\x36\xdb\x3f\x58\x29\xec\xef\xcc\xb2\x6b\xf7\x80\x1b\x28\x0d\xa6\x60\x15\xec\xf8\x01\x81\x41\xa2\xc8\x63\x8b\x50\xeb\x2b\x78\x62\x4b\x8d\x84\x91\xd5\x10\xc0\x61\x88\xe0\xa3\x32\xb6\xf7\xb0\xc6\x6b\xc0\xec\x55\x29\xd2\x46\x55\x13\x4d\x4b\xd5\x42\xf1\x89\xaa\x45\xf7\xbf\xed\xb6\x71\x49\xa9\xdc\x79\x74\xeb\x7d\x19\x81\x16\x32\x1b\x5c\x5c\x35\xde\xbe\x77\x92\x67\xb6\xd4\x71\x58\xb5\x83\xf2\xbe\xde\xe1\x52\xc7\x25\xb7\x57\xf5\x23\xfa\x8c\xda\xba\xee\x89\x3c\xa7\x7b\xd1\x72\x86\x3e\x06\x45\x16\xd5\x9a\x61\xdd\x58\x19\x13\xab\x15\x3a\xc1\xfa\x57\x2d\xfa\x34\xf3\x7f\xeb\xa0\xff\x03\x45\x81\xda\xa5\x18\x2d\xa5\x70\x3b\x12\x78\x12\xfc\xad\x60\x9a\xe5\x6e\xb1\xea\xed\x15\x7c\x00\x8d\xae\x52\x13\x24\x15\xd4\xcc\x3a\x2c\xd6\xad\xd2\x68\xd0\x68\x4b\x2d\xe1\x43\x95\x35\x9f\xc3\xc9\x14\x67\xa5\x24\x50\x5e\xf8\xaa\x6b\xf8\xa7\xc7\xf6\x90\x89\xaa\x2f\x4f\x8b\xd5\xb0\x24\x28\xa7\x39\x3b\xc5\x18\x56\xd6\x1d\x27\xa2\x00\xd8\x19\xd9\x9e\x0a\x7c\xe7\xc5\x7e\xbd\x5a\x2c\x6a\x15\x3c\xab\x2a\xc3\x2b\x68\xab\xeb\xa6\x2b\xf8\x18\x24\x99\xf9\x4b\xc0\xd3\xcb\x40\x4b\x34\xf8\x37\x55\x49\x2e\xb1\x2e\x0c\xe1\x51\x27\x12\x8b\x33\xe5\xd5\xec\xac\x1f\x76\xf7\x36\x35\xd7\xaf\x0a\x07\xde\x2a\xc0\x07\x1a\xc3\x2e\xaf\x5c\x66\x4a\xe7\x6e\x7e\x82\x44\x4c\xfd\x5c\x30\x7b\x75\x4c\x98\x13\xe1\x34\x4f\xa2\xa6\x9d\xfd\xc8\x67\x12\x62\xf4\x63\x24\x3e\x41\x6b\x08\x9b\x66\xac\x48\x50\x07\xd4\xae\xa9\x68\xec\xd4\x1a\x76\x9a\x15\x7b\x9e\x18\x1a\x2e\x04\x61\xb3\xbd\x60\x1e\x54\x8d\xd2\xa4\xc5\x83\x41\x48\xc3\x8a\x64\x39\x42\xa6\xb4\xc7\xec\x26\x7f\xd4\x16\xee\x6c\xbc\x79\x60\x34\x96\x56\x30\xdf\x08\x75\x9c\x8f\xca\xf5\x07\x08\x19\x58\xd1\xb1\xc1\xe5\x6e\x36\x80\xc1\xe2\x58\xe3\x81\x33\x8b\x29\x98\x53\x1e\x2b\xf1\x67\xc0\xdc\x7e\xfa\xd7\x7c\x12\x80\x57\x3b\x0e\xe1\x03\xa4\x68\x12\xcd\x0b\x97\x49\x0a\x6b\xa1\xd5\x81\xa7\x68\x3a\x89\x70\x21\x7f\x09\x22\x72\x8d\x50\xf9\x1d\x74\x76\x90\x6e\xc9\x2c\xa5\x38\x29\x35\x0d\x89\x53\x9d\x49\xa1\x8e\x20\xd1\x1e\x95\xbe\x8f\xa6\xfd\x68\x21\x1d\x77\xe6\xe6\xc1\xa2\x96\x4c\x80\xe0\xf2\x9e\x0a\x8a\xc1\xd7\xbb\x5b\xfa\xe2\x9c\xa0\xe3\xb8\x53\xb8\x2c\x56\xa5\x75\x08\xaa\x93\xbf\xef\x60\x1f\x02\x06\x0b\x5f\xef\x6e\x57\xd0\x39\x55\xa3\x9b\x66\xa9\x8b\xea\x53\x43\x06\xe0\x80\xda\xb8\x6a\x0f\x9e\x77\xed\x82\x50\x3b\x35\x6d\x9c\x56\x4d\xdf\xec\x47\x4c\x39\x33\x5d\x8b\x5f\x54\xc2\x43\x14\x5c\x5f\x69\x24\x86\x31\xb4\xf7\xb3\x01\xe3\x45\xf7\x2a\xc7\x82\xed\xd0\x74\x72\x0b\x9f\x95\x31\x4e\xfc\x1e\x4f\x86\xc6\x1c\x75\xef\x9c\x4b\x63\xd9\x4e\xb3\x7c\x7e\x0d\x73\x7b\xe4\xd6\xa2\xa6\xaf\x29\x37\x89\xd2\xe9\xfc\x1a\xd0\x26\xd3\x6e\x78\x93\x66\x05\x8f\x3e\x87\x67\x02\xf9\x34\x7b\xee\x90\x6d\x37\x57\x77\xf8\x75\xab\xbe\xbb\x36\x52\x49\x5d\x81\xcb\xf2\xdc\xdd\x73\x26\x3d\x3d\x64\x2f\x09\x40\xb5\x69\x94\x08\xb8\xd9\xb5\x76\x41\x18\x2e\x86\x69\xb2\x0e\x91\x18\x0a\xb4\x3b\x7f\xdd\x8e\xc9\x50\xb4\x15\x0f\x58\xb7\xa3\x33\x14\x75\x61\x80\xb5\x0f\xc7\x08\x2a\xef\x3c\xc1\xf2\xdf\x2e\x25\x23\xcd\x2c\xe7\x12\x18\x1c\xd9\x09\xec\x9e\x59\x38\x72\x21\xaa\xc3\xd3\x13\xec\x14\x94\x73\x83\x89\xfa\x80\x80\x1f\x41\x5c\x64\x6d\xa7\x05\xee\x52\x16\x53\x1d\xdf\xff\x86\x17\x50\x99\x9a\xb1\x3e\xf6\xb9\x88\xa3\x20\x61\xf9\x42\x5a\x13\xa4\x89\xd9\xf4\x6a\x2b\xe8\x4c\x3b\xea\x06\x16\x98\x79\x3f\x7a\xc0\x56\x9f\x10\xa6\x96\x96\x8e\xc8\xd3\x34\x07\x92\x5c\xfc\x39\x0a\x62\x2c\x0d\x59\x77\x59\x91\x16\xdd\x3d\xe8\xc8\xed\x3e\x10\x59\xa2\x3d\xd1\x8b\x08\x89\x41\x5b\x16\xad\xdd\x5e\x1b\x5d\x47\x51\x37\x25\x45\x56\xd9\xce\xdb\x2d\xca\x58\xf0\x04\x12\x56\xb0\x98\x0b\x6e\x79\x35\x52\xcf\xdf\x5a\x6a\x9e\xde\xe5\x29\x9f\x99\xdd\x53\xb9\x57\x16\x8e\x7b\xd4\x35\xb9\x0a\x90\xb8\x01\x8d\x89\xca\x73\x94\x81\x85\xc5\xe8\x03\x91\x9e\x99\xc1\x5e\x21\xe9\xa7\x01\x58\xff\xe8\x9e\x23\x9f\xbd\x33\x05\xa1\x38\xee\x79\xb2\x87\xbc\x34\x96\xf4\xd3\xd1\xe2\x8d\xb5\x12\x12\x7c\xd7\x98\x20\xa7\xce\xa9\x83\x70\x9a\x06\x52\x09\x7b\x24\xde\xe0\x77\x03\x89\x99\x60\xd4\xca\xd5\x15\xdd\xf5\xf1\x64\x66\xc6\x60\x55\x17\xec\xf3\xb0\xa8\x91\xfc\x10\x0a\x97\xd7\x06\x10\xf3\xbc\xe2\x5b\xdb\xbf\x6f\x91\x2f\x3a\x6e\x80\x11\x2e\xab\x79\x42\xb4\x2f\xdc\xfa\xff\x53\x72\x3a\x0d\xa0\x63\xc2\x29\xe9\xdc\xe5\xa3\xbb\xa0\xf2\x9b\x2f\xf2\x8c\x25\xf8\x7c\x7c\x6f\x1d\x2c\x02\xbc\x72\xb0\xff\x3f\x8e\x8c\x8e\xb6\x96\x1f\x17\x64\xe4\xbc\x23\x9b\x52\x26\x81\xc9\x32\x0b\x4c\x08\x75\x34\x90\x68\xf4\x53\x42\x65\x44\x6a\x31\x2f\xec\xa9\xe9\x1f\x27\x49\xce\x48\xeb\x3a\xa8\x8b\x5a\x85\x99\x12\xc8\x53\x7a\x06\xa1\x33\x83\x37\xa4\xdd\xf5\xf3\x8a\x36\x5c\x2d\x56\xf0\xdb\x63\x37\x81\x6e\xf5\x79\x6a\x33\xd5\xa3\xd7\xbd\x1b\xe6\x78\x03\x75\xa5\xa6\xea\x79\x5c\x57\x3f\xc6\xe3\xba\xce\x4b\xf5\xa3\x51\x65\xe6\xb9\xa8\x54\xfb\xfb\x67\x52\xa1\x71\xf4\x8c\xe9\x23\x8e\xb8\xf9\x52\xc6\x54\x89\x57\x2a\xf3\xc0\xde\xfd\xf4\x38\xde\x41\x4f\x74\xf6\xad\x06\x4a\xe9\x33\xaf\x64\xaa\xb9\xe1\x6a\xfb\xdd\x3c\x4a\x94\x4c\x98\xbd\x1a\x33\x9c\xa2\xb4\x3c\xe3\xed\xab\x74\xfb\x53\x6d\x9d\xff\x5a\x4f\x2f\x06\xc6\x63\xa5\xd2\x7c\x37\x5f\x54\x22\xcf\xa2\x7e\x81\xb1\x68\x3e\x94\x18\xa6\xf0\x92\xb0\xf9\x0c\x9d\x89\x59\x45\x63\xeb\xa9\xdc\x8d\xd9\x98\xd5\x1f\x1c\xb3\x1a\xf2\x77\x04\xec\x69\x84\xc4\x36\xdd\x48\x44\xb6\x75\x7e\x0e\x44\xdb\xfd\x09\xeb\x4e\xbb\x0e\x85\xdb\x6d\x4a\x94\xab\xf5\x73\x5a\x73\x13\xce\x96\xfe\xe6\xe1\xb4\x95\xce\xc6\xe1\xc3\xe1\xc6\x7e\x4f\xc3\x7a\xb2\xcd\x2f\x67\xf5\x0d\xf7\x79\x9e\xd7\x7f\xea\xf3\xfa\x1f\xf2\x3e\xb2\xc5\xea\x1b\x70\x17\xbf\x9d\xac\x5f\xae\xbd\x88\xd9\x37\xaf\x7e\x87\xdc\xfe\x70\xe1\x6b\xca\x4a\xc5\x34\xa3\x3f\x04\x35\x81\xbb\x8f\xd1\xce\xea\x13\xa2\x71\xf8\xdf\x72\x76\xab\x2c\x13\x60\xca\xa2\x10\xf5\xdb\x1f\x87\xe2\xe7\xf0\x6e\x69\x8a\x23\x6f\x69\xe3\x17\xbf\x6f\xfa\xf5\xbe\x57\xbc\x82\xaf\x1b\xfe\xf0\xb7\xbf\x8e\x9d\xb0\xb6\xd1\x53\x89\x8d\xde\xac\x03\xc4\x35\xb4\x36\x0c\x6a\xfa\x69\x06\xff\x0d\x00\x00\xff\xff\xb4\xce\x97\xeb\x13\x1b\x00\x00" func fungibletokenmetadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -136,11 +133,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{0x53, 0xfc, 0xad, 0xee, 0xc4, 0x9b, 0x6f, 0x62, 0xa8, 0xb3, 0x38, 0xb7, 0x4d, 0x4f, 0xa5, 0xe3, 0x6f, 0x64, 0x1, 0x31, 0x9e, 0x70, 0x6c, 0xd2, 0x98, 0x59, 0x34, 0xc2, 0x84, 0x56, 0xd0, 0xbc}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x70, 0x47, 0x7f, 0x80, 0xfd, 0x76, 0x78, 0x46, 0x6c, 0x22, 0x45, 0x7, 0xe9, 0x68, 0x9f, 0x68, 0xf7, 0x2a, 0x9e, 0x69, 0x71, 0x28, 0xd5, 0xea, 0x54, 0xd1, 0x99, 0x61, 0xec, 0x85, 0x6b, 0x3c}} return a, nil } -var _fungibletokenswitchboardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5f\x73\xdb\x38\x0e\x7f\xcf\xa7\x40\xf3\x70\xb5\x67\xb2\xce\x3e\xdc\xdc\x43\xa6\xd9\xfe\xdb\xeb\x4e\x5f\xf6\x76\xda\xec\xf5\xa1\xd3\x99\xd0\x12\x14\xf3\x22\x93\x1a\x92\xb2\xeb\xed\xf4\xbb\xdf\x80\xa4\x24\x52\xa2\x64\x39\xcd\xed\xde\xdd\xac\x1f\xda\xd8\x16\x41\x00\x04\xf0\x03\x08\xd2\x7c\x5b\x49\x65\xe0\xfc\x4d\x2d\xee\xf8\xba\xc4\x1b\x79\x8f\xe2\xfc\xec\xec\xf2\xf2\x12\x6e\x36\x08\x99\x14\x46\xb1\xcc\x80\xd9\x30\x03\xac\x2c\xe5\x5e\x03\x13\xc0\xb2\x4c\xd6\xc2\x80\x91\xa0\x30\x43\xbe\x43\xa8\xd8\x61\x8b\xc2\x68\xe0\x02\xb6\x75\x69\x78\x55\x22\x14\x9e\xae\x25\x68\x88\xb8\x86\x5a\x73\x71\x07\x0c\xe8\xbf\x12\xe1\xf6\x4b\x34\xf9\xea\x9d\xa3\xa7\xbe\xde\x42\xc6\x2a\xb6\xe6\x25\x37\x87\x95\xe7\x88\xeb\xe0\x43\xd0\x1b\x59\x97\x39\xf0\x1c\x59\x59\x1e\x60\x8d\xa0\x8d\x54\x98\x03\x23\x86\x11\xec\xa0\xdb\x88\xfc\xfb\x3d\x37\xd9\x66\x2d\x99\xca\xdb\x99\x7e\xa9\xd7\x25\xcf\x7e\x61\x66\x03\xd7\x70\x59\xd9\x77\x97\x3f\xa1\x40\xc5\xb3\x37\x37\xcd\x53\xb7\x96\xda\xba\x36\xc0\x0d\x64\x4c\x84\xd3\x89\xc3\x7e\x83\x0a\x1d\x97\x67\x2c\xcb\x50\xeb\x05\x2b\xcb\x65\xa7\xc0\x31\x2e\xe0\xcb\x19\xc0\x19\x00\xc0\xe5\x25\xbc\x37\x52\xb1\x3b\x04\x26\x72\x70\x5c\x01\xb1\xa5\xed\xf7\x21\xd9\x12\x4d\xf3\x30\x3d\x70\x15\xbe\x49\x3e\xdc\xc9\x78\x15\xfc\x9d\x7c\x74\xa8\x96\x68\xc8\x60\x0c\x0a\xc3\x4d\x89\xb4\xf8\xf0\x8f\xbd\x40\x75\xe6\xc5\x71\x26\x84\x3b\xfa\xc2\xda\x0f\xd7\x80\x5b\x6e\x0c\xe6\xb0\xdf\xa0\x00\x06\x02\xf7\xb0\x63\x75\x69\xc2\x65\xe5\x1a\x58\x9e\x63\x4e\xd6\xc5\x5a\x5a\x3a\xd0\x99\x42\x2d\x6b\x95\xe1\xaa\xfd\x76\xc8\x95\x9d\xf6\x9f\x44\xfb\x75\x4b\xfa\x25\x91\x5d\x98\x43\x85\x57\x70\x73\xa8\xf0\x22\xa4\x6a\x79\xbf\x82\x97\x79\xae\x50\xeb\xe7\x17\x8e\xe6\xb1\x57\xc7\x77\x6f\xfc\xf2\x04\x35\xa4\x54\xa0\x70\x2b\x77\x98\x43\xa1\xe4\x16\x18\x3c\xaa\x1e\xde\x39\xda\x91\x26\xbe\x5d\x15\x8f\xa6\x8e\x1c\x2b\xa9\xbd\x97\x09\x69\xc8\xd3\x32\xb9\xad\x4a\x34\x98\x1f\x15\xf5\x67\x69\x5e\x37\x0f\xff\xe8\x08\x45\x72\xb2\x2d\x45\xae\x2b\xf8\xf5\x0d\xff\xfc\xb7\xbf\xce\x14\x6d\x5c\x37\x3d\xb9\xb8\x30\xa8\x0a\x96\xa1\x93\x0d\x45\x21\x55\x86\xda\x86\xa3\x2d\x9a\x8d\x74\x56\x4d\x81\x94\xc2\x86\x14\x48\xef\xb3\x0d\x66\xf7\x20\x05\x3d\xd6\x92\x63\x3b\xc6\x4b\xb6\x2e\xb1\x53\x2a\x47\x0d\xb2\xa0\xd8\x99\x30\x02\x1b\x35\x58\xa9\x25\xe0\xe7\x4a\x6a\x3f\x69\x4b\xae\x51\xaa\xe3\x42\xd3\xb4\xcd\x47\x45\x2d\x72\x4d\xd3\x73\x33\xa1\xde\x76\x9e\x4e\xc6\x20\x8e\xf9\x70\xf5\xa5\x55\x67\x38\x74\xc7\x71\x4f\xb3\xc0\x1d\x1a\x6b\x8a\xb4\x14\xfa\x03\x37\x1b\xaf\xc6\xc5\xf2\x0a\xbe\xdc\xd8\x55\xf2\x9f\x7c\x3d\x4a\xe8\x7d\x5d\x11\x78\x61\xde\x51\x0c\xc8\xbc\x92\xb2\x3c\x42\x83\xeb\x21\x89\xc0\x54\x96\x8e\x48\x92\x06\x0d\xf7\xda\x5b\x90\x83\x5e\xc1\x8b\x1e\x8c\x59\x8a\x5f\x97\xa3\xa3\x35\x2b\xf0\xc7\x39\x14\xc6\xbe\x78\x3e\x2d\x1c\xd1\x7f\x25\x95\x92\xfb\x57\x87\xa1\x60\x7f\x19\x03\x5d\x47\xf5\x6b\x6c\xd4\xed\xca\x5b\x9b\xb6\xa0\xe7\x2d\xba\x8f\xf3\x0e\xe3\x9b\x9c\x40\x75\xd6\x17\x9a\xf0\x85\xb3\x7f\xca\x02\x88\x88\x24\x87\xb2\x5e\x91\xe7\xd6\x86\x5d\xe4\xa3\xef\xb6\xce\xa6\x5b\x3f\x19\x18\x33\x13\x87\xfe\xdc\x6c\x2b\x3d\xe1\xce\x81\x48\x76\x3d\xc7\xb4\x03\x83\xbe\x82\xb4\x8a\x2e\xa6\xac\xbe\x5d\x13\x9a\xe6\x47\x9e\x19\x2e\x05\x53\x07\xd8\xc8\x32\x6f\xe4\x1d\xd3\x55\xac\xa2\x88\x12\x17\x39\x7e\xc6\x1c\xd6\x87\x14\x05\x87\x1e\x24\xe3\x2a\x1a\xd5\x37\x90\x26\x17\x59\xc2\x8e\xa9\x76\xde\xd7\xc1\xb4\xad\xf7\x74\x50\xf1\x6c\xd4\x54\x7e\xf0\x56\xd2\x4c\xf7\x32\xcf\xb5\x87\xf4\xa3\x22\x1e\x68\x35\x49\x94\x30\x90\x45\xd4\x62\x68\x1b\x88\x44\x6f\x5e\x54\x4c\xb1\x6d\x40\xf4\xca\xe5\xac\xd1\x24\x2e\x16\x02\x83\x0c\x95\x61\x5c\x74\x29\x69\x48\x2a\x54\x64\x10\x15\xed\xfa\x81\xd9\x28\x59\xdf\x6d\xa6\x32\x55\x72\x8c\x88\xe0\x9e\x97\x25\xe1\x56\x9b\xc8\xf4\x84\x9d\x5e\x29\x8b\x31\x2e\x4e\xb0\x3c\xff\x19\xf7\xd6\xe5\x17\xa1\xa4\xb3\x56\x68\x19\xc4\x63\x37\x17\xb8\x98\x00\x0c\x14\x16\xa8\x50\x64\xd8\x70\xe7\xa4\xaf\x24\x85\x77\xcb\xb2\xb7\xb6\x40\x9f\x7b\x84\x3e\xbd\x3d\x73\x65\x80\x8d\x0a\xc0\x85\xe6\x39\xf6\x85\x8d\xc6\x50\x8a\x69\xa7\x7a\x87\x05\x5c\x87\x39\xfe\xda\xb2\xb6\x58\x8e\x43\xf2\xf3\xe7\x50\x31\xc1\x33\x58\x9c\xbf\x66\xc2\xa6\x06\x4e\x9c\x48\x18\x27\x88\xcd\x9b\x3a\xea\xe7\xcb\x3e\xe7\xaf\x2d\xe8\xf2\x82\xb8\x25\xd6\xc9\x78\x2b\x85\x3b\x2e\xeb\xa8\xca\x28\xa4\x02\x43\x95\x87\x35\x92\x0b\x1a\x21\xa4\x89\xa8\xf1\x02\x16\x1a\xcb\x62\x95\x72\xaa\x8f\x8d\xb4\xab\x3b\x74\x18\xb3\xfc\x04\xd7\xd7\x20\x78\xd9\x5f\x1f\xcf\x59\xad\x31\x58\x91\x40\xb6\x43\x85\xc0\x34\xdc\xa3\xe3\x8a\x74\xde\x44\x95\x14\x9d\x40\x08\x8a\xa3\x66\x83\x62\xf0\xd8\x89\x6c\x07\x34\x53\x33\x52\x22\x67\xd9\x09\xf3\x3b\x91\xf3\x8c\x19\x0b\x19\x54\x44\xda\x08\x11\xb0\xb6\x61\x1a\xd6\x88\x22\x29\x82\xf5\x9f\xc1\x17\x76\x9a\x89\xdc\x7e\xc8\xfa\xc5\xec\x0c\xb6\xd1\xcb\x20\xe3\xb3\x9a\xb2\x60\xf5\x7c\xc5\x5c\x92\x72\x42\x62\xdc\xbe\x06\x19\x72\xe0\x01\x9e\x6c\x6c\xaa\x5f\x01\x4b\x8d\x69\x4b\x79\xdb\x58\xef\x9e\x69\x60\xa5\x42\x96\x1f\x28\xd6\xf5\xad\x97\x0a\x62\x67\xbd\xd6\x7f\x06\xa4\xec\xa7\x8b\xf3\x9b\xd6\x13\x5a\x52\xce\x06\xb9\x4d\x4d\x43\xe4\xeb\xb9\x45\xcf\xbd\xba\xcc\x6b\x04\x24\xea\xed\x1a\x15\xe5\xb2\xb3\xe0\x82\xf2\xde\xf5\xc1\xed\x1c\xc4\x71\x7b\x83\x50\x51\x85\x0c\xb6\x00\xa7\xf7\x07\x60\xaa\xa9\xcc\xe3\x28\x9b\x78\xa5\xf0\xc4\xd2\x73\x50\xd2\x23\x0d\x6e\x6f\x20\xe6\x6b\x6c\x36\x4f\xcd\x2f\xa9\xa3\xe7\xdf\x90\xdc\x5d\xe6\xe3\xdf\x84\x44\x1f\x82\x0e\xfa\xd5\x81\xea\xf3\x85\x67\xff\x63\x57\xb2\x7f\xba\xe8\xb8\xf0\xd9\x75\x02\x18\x7e\x42\xe7\xb9\xcd\xd6\xce\x5c\xa9\x07\xc1\xdd\x49\x75\x4d\x29\xfa\x4b\x47\x6b\x91\xb4\xeb\xcb\x4b\x78\x23\x15\x20\xcb\x36\x56\xd1\x17\x34\xc2\x41\x07\xa3\xc2\xb7\x17\xbd\x3c\xc0\x98\x01\x02\x71\x31\x84\xd7\xa7\x7a\xc4\x8a\xf2\x36\x27\x8b\xc8\x90\x31\x13\x0f\x64\xe8\x6e\xd1\x87\xee\x46\xb2\x05\x3c\x5d\x3b\x41\x57\xd1\xba\xdd\xa1\x99\x80\x63\xbb\x36\xcb\x94\x1f\x7f\x0b\x2a\xa7\xe8\xed\xf1\x74\x60\x86\x30\xa4\xf8\x79\x29\xac\x38\x88\xc5\x1c\x74\x6d\xed\xaf\xa8\xcb\xf2\xb0\x5a\xad\x06\x83\x79\x31\x07\xdc\x87\x8a\xf5\x13\xaf\x56\x2b\x5a\xe7\x10\x90\x85\x4c\x22\xb2\x4b\xaa\xe2\xc8\x96\xa4\x3a\x0f\x97\x9f\xcc\x03\xe6\x80\xd5\x5f\x4f\x07\xe8\x29\x72\x13\x6b\xd9\xbc\x4e\x95\x62\x0e\x4d\x82\x57\x91\xcf\xc6\xec\x79\x12\x74\x70\x9e\x86\xee\xe6\xf5\xd8\x10\x3e\x0f\xaf\x27\x49\x0c\x90\xf9\xe8\xa8\xa1\x2f\x43\x04\x7e\xe9\x4f\x8e\x82\xe3\xe3\x56\x50\xa0\x2b\xcc\x78\x71\x20\x43\xdc\x6f\x78\xb6\x81\x5b\x52\xe8\x2d\x01\xcf\x6d\x7a\x6f\xe1\xb6\xd9\xe0\x8e\x08\xfa\xc2\xc8\x85\x21\x6e\x56\xd6\x0d\xb8\x0d\x32\x5c\x64\x65\x9d\x53\x98\x81\x83\xac\x55\xc4\xd4\xf9\x5e\xb1\xaa\x42\x75\xde\xe3\xce\x49\xa4\x29\xac\x6c\xc8\x69\x18\xdc\xbe\xb0\x4c\xbc\x91\x6a\xcf\x14\xd5\xcb\x2b\xff\x27\xaa\xdb\x15\xbc\x75\x1b\x82\x76\x87\x6b\x1d\x97\x6f\xb5\x76\x4c\xc9\x1d\xaa\xbd\xe2\xc6\x79\xa7\xf3\x46\x63\x58\xb6\xf1\x9b\xc9\x6d\x11\x18\xd6\x34\xdc\x6c\x64\x6d\x62\x51\x37\x6c\x67\xfd\x56\x76\x9b\x11\x2c\x8a\xfe\x05\x57\xda\x44\x30\xfd\xff\x59\x9a\xa6\xa4\xf2\x3b\x49\x8d\x86\x65\xd1\xb7\x56\xaf\x2c\x6b\x41\x91\xd1\x0c\x78\xe9\x14\x72\x01\x8a\x51\xdc\xa7\x67\x5c\xb2\xe9\xad\xd4\xd6\x71\xc6\xee\x42\x35\x61\xb6\x45\x24\xfa\x2e\xa2\xa7\x19\xcf\x53\xa1\x6f\x7e\x1a\xf5\xc1\x19\xeb\xe9\xb5\xf6\x43\x6a\x81\x91\x57\xb0\x55\x37\xcc\xd3\xc2\xb2\xb5\xd7\x32\xd8\x4b\x75\x1f\x66\xc8\x56\x58\xad\x51\x85\x5b\x07\x2b\xbb\xd9\xbc\x58\x5e\xc0\x16\xb5\x66\x77\x78\x05\xe7\x2e\xd7\xd5\x3a\xce\xba\x2c\x00\x13\x9e\x97\x3c\x1f\x96\xcf\x0d\x06\x5a\x1b\xb0\x86\x81\x06\x55\x88\x7e\x13\x69\xca\x38\x9c\x11\xb9\x09\xfc\x7a\xd4\x1a\x33\x59\x5f\x8e\x03\xd3\x60\x7d\xdd\x3a\xd1\xbf\x43\x88\x78\x20\x1e\xcd\xa8\x0e\xe3\x41\xcb\x49\x30\xf9\x0d\x95\x04\xa9\x60\x4b\x39\xe0\xec\x52\xcb\xc7\x84\x38\x24\x26\x5b\x0e\x23\xd0\xa2\xa7\xb0\x45\xf7\x08\xa7\x02\xc5\xff\x08\xba\xe8\x08\x5e\x06\xe0\x42\xba\x9c\x0b\x2f\x84\x04\xd1\xc0\x21\xc2\xf4\x6d\x05\x7e\x97\x02\xd6\xca\xd9\x85\xfb\xb6\x78\xed\xc7\x7c\x19\x2f\xa2\x14\x5d\x65\xf7\xc7\x16\xc6\x3e\xa2\x4f\xd6\xc7\x5e\xc8\x8f\x64\xbd\x9f\x1e\x25\x92\xff\x59\x71\x1f\xaf\xb8\xf9\xc5\x9f\x45\xf7\x1f\x5c\x74\x3f\xa0\x92\x3d\x56\x5a\x4e\x63\xbb\xfe\xc8\x3f\xcd\xa8\x4f\x4f\xac\x4d\x4f\x2c\x40\x4f\xc0\xf8\xe6\xd5\x61\x3d\x49\x30\x5e\x12\x7e\x63\x1d\x7a\x5a\x0d\x3a\x34\xeb\x99\x95\xa6\x3b\x00\x42\xa8\x38\xa3\xd0\x6c\x33\xf0\x94\x11\x3f\x66\xaf\x6e\xc0\x8d\xef\x6c\x0e\x10\x39\x3a\x1b\xf3\xd0\xce\x9a\x23\xf2\xdf\xdf\x59\xf3\x29\xc2\xe4\x2a\xc0\xac\xc6\xda\xef\xd3\x57\x1b\x0d\x29\x12\x0a\xee\xda\x50\xbd\x75\x77\x12\xce\x2b\x10\x56\xee\xe1\xc5\x3d\x1e\x52\x9b\x44\x03\x6e\xfe\xfe\x98\xd5\x82\xb7\xbb\xa3\xf5\x42\x73\xbe\x6a\xa4\x62\x98\xb3\xb7\xf5\x47\xd4\x0f\xcd\x5f\x91\x07\xdd\xb0\xfb\x54\xa0\x70\xab\x6b\x8f\x6b\xc8\x9a\x54\xe9\x52\x75\x9b\xbd\x28\x59\xa1\xea\x06\x24\xb6\x33\x92\x61\x46\xaa\x26\x7f\x24\xa4\xe1\xe6\x78\x38\x71\x07\x67\x28\x90\x74\x89\x67\x92\xcf\x23\x11\xea\x41\x47\x7b\xc6\x13\xba\x54\xec\x94\x02\x75\xef\x78\xea\x94\x23\xb7\xf2\xf4\x2c\x0b\xae\x27\xf0\x95\x26\x0b\x76\x81\x07\xc6\x11\xb8\x79\xac\x33\xdf\xe4\x73\xf5\x7e\x77\x6c\xc6\x6e\x30\x71\x1d\x32\x7a\xbe\x3c\x1b\x89\x7b\xf1\x16\x8d\x37\x85\x1c\x35\x57\xcd\x04\x53\xd1\x6a\x4c\xde\xf1\xd8\x15\xc7\x2c\x08\x82\x56\x22\x02\xb7\xf1\xa8\xcf\x7f\xeb\x8a\xf1\x92\x3f\xfb\x8e\xfe\x1f\xad\xad\x8f\xfa\x84\x51\xbe\x8e\xb6\xce\x31\xf0\x8d\x88\xd8\x1c\x04\x8e\x5d\xc3\x97\x5f\x79\xff\x98\x10\xdb\x49\x6e\x8f\x19\x59\xc5\xdc\x5b\x2f\x0a\x13\xcb\xfe\x02\x8f\x57\x97\x29\x67\xdb\x35\x67\xe4\xe2\xbd\x3f\xcb\x8c\x69\xa0\x9a\xe2\x29\x01\x97\xf6\x05\x61\x7a\x03\x79\xca\xb3\x15\x9a\x5a\x89\x53\x9c\xfa\xa2\x2d\xb2\xc3\x3e\x8b\x57\x6d\xae\x1b\x1d\x34\x9b\xa7\x94\x5e\x77\x59\xf5\x05\xd8\xec\x96\x97\xa5\x3d\xab\xcd\xb8\x88\x34\x1c\x91\xf3\x84\x06\xd6\x25\x10\xf3\xd6\x8b\x88\x3c\x69\xb9\x90\xb5\x38\x92\x8c\x3c\xe2\x61\xc0\x61\x30\xba\x51\x16\x5b\x9b\x0a\xcf\x07\xe5\xc1\x49\xe3\xa3\x69\x45\x57\x9d\x44\xce\x4c\xc6\x54\x29\xd4\x04\xaa\xee\xe0\x6a\x94\x84\xf5\x2a\x15\x5f\xa5\x3c\x46\x54\x4b\x1f\x84\xf8\x80\x60\x9c\xc0\xe3\x41\x20\xc8\x5f\x8e\x17\x73\x6f\x0b\xca\xc9\xec\xde\xd4\x34\xc1\x79\x45\xd9\xd1\xf8\x36\x5e\xa2\x7d\xe8\x4c\xb7\x35\x4b\x52\xb9\xdd\xeb\x1e\x06\xd6\xe6\x35\x19\xd9\x56\xe4\x31\xb9\x62\xfb\x45\x73\x1c\xda\x7e\xba\x66\x25\x13\x19\x2e\xe7\xd7\x15\x9e\x47\x5e\x74\xbd\x09\xc6\x4b\xdf\x9d\xd5\x72\x4b\xde\xc2\xb4\x14\x7d\x6b\x08\xa7\x83\x1f\xe0\xfb\xd5\xf7\x09\x05\xd8\xd4\x2a\x75\x9e\x3b\x29\xb0\xcb\xad\x62\x6b\x49\x97\x4d\x29\x99\xd3\x4f\x3e\x30\x0b\x1b\xea\xcf\x47\x35\xa7\xfd\x09\x5d\xe6\xa8\x8d\x92\xde\x2d\xcf\x12\x14\x04\x2f\xc7\x50\xc9\x76\x06\x7c\x4e\xdb\x4f\xb2\x79\xd3\x01\xb3\x61\x9b\x6b\xb7\xab\x7f\xac\xd3\x33\x27\xe4\xef\xe3\xad\xcb\x83\x8d\x86\x4d\xf8\xb7\xbd\x06\x9c\x98\xc7\x4b\xc5\x60\x2d\x65\x89\x4c\xc0\x96\xd9\x1e\xc6\x20\x8f\x92\xaa\x61\x9e\x79\xe6\x29\x70\x87\x07\xf1\x92\xc7\xa0\x2d\x03\x4d\xd9\x96\x3a\x09\xfd\x4a\xca\xb2\x67\x7a\xbc\x38\xde\x9f\xb0\xa7\x04\x12\x26\xeb\xe5\x29\x58\xa9\xb1\xb7\xcc\xa9\xd5\x3c\x32\xcf\x93\xa6\x59\x33\xb6\xe4\x3f\xa1\xd1\x1e\x93\x7c\xd6\xc0\xb4\xe6\x77\xa2\x59\xed\x4a\xc9\x1d\xef\xb0\x69\x78\x46\xd8\x5e\xa9\xa2\xbc\x00\x49\x79\x4c\x1d\x60\x8d\x19\xab\x35\xb6\x98\xca\xcd\x05\xe5\x2f\x3e\x77\xa8\xa4\xd6\x1e\x88\xa1\x94\xf2\x1e\x6a\x91\xa3\x6b\xf5\x6c\xa4\x74\xe7\xb7\x35\x22\xe9\x90\x8d\x35\xe2\xb8\xbb\xc4\x20\x00\x3f\x57\x98\xd9\x92\xd8\x1a\x96\x5d\xce\x95\x63\x69\x83\x65\xa5\xe1\xae\x66\x2a\x07\x76\xc7\xb8\xd0\x54\xb6\x15\x5c\x70\x83\xe5\x01\xb2\x0d\xe3\x24\x64\x6f\x47\x9f\x68\x48\xdb\x45\xe4\xc2\xd9\x48\x34\xf1\x96\x95\x3c\xb3\x87\x49\xee\xb9\x0d\xa2\x05\xd4\x55\xde\x15\x82\x99\xbd\x4e\x56\x29\x57\x2a\x96\x5c\x53\xb6\xa5\x9d\x2f\xae\x91\xe8\x6f\x59\xee\x7b\xc1\x4c\x61\x63\x86\xc2\xe5\xf5\x85\x92\xc2\xe8\xa3\xdd\xd3\xdf\xcf\xa7\x04\xc8\xca\x6e\xbd\x96\xa3\x49\x65\x26\x85\xae\xb7\xa8\xda\x9d\xf7\xb0\xb5\xd2\x5c\x4c\xb9\xb4\x72\x32\xe3\x0b\x02\xe4\x0a\xe4\x5e\x4c\xfb\xdd\x43\xaf\x1f\x0c\x5d\xf1\x89\xf5\x91\x71\x3f\x36\x89\x36\x29\xa4\xe3\xe5\x37\xf8\xe1\xa0\x0c\xe9\x77\xdb\x28\xd1\x32\xae\xea\xf5\xad\x79\x09\xf7\x42\xee\x7d\x5f\xcc\xdf\x7d\xec\x7a\xfd\xc7\x8f\x6d\xb8\x04\xab\x62\xca\x39\x73\x73\xcf\x92\x95\x52\xdc\x59\xef\x74\xcd\x03\xdf\x39\xb1\xcd\x83\xb8\xd2\xb6\x46\xe4\x27\x6e\x9a\xfe\xe9\x14\x3c\x69\x3f\x2f\x83\xad\x7b\xd8\xb2\xaa\x6a\xc2\xf2\xc4\x61\x83\x98\x01\x32\x6d\x9f\x2a\xb5\x06\x68\xa1\xf3\xa9\x6e\xf9\x4e\xb2\xf1\xad\x77\x87\x7a\xe6\x40\xb9\x18\x16\x05\x66\x86\xef\xb0\x3f\x7c\x38\xf8\x1a\xbe\x0c\x12\x9c\xb6\xeb\x6e\x9b\x27\x71\x93\xbc\xe4\xbd\xcd\x2b\xf2\xac\xd6\xcd\x81\x4f\x98\xd7\xea\x1e\x0f\xa9\xb6\xc7\x24\x04\xb5\xa4\x3b\x7c\x18\xcf\x1e\xed\x05\x1a\xdb\xa4\x0c\xaa\xd0\xde\x22\xa4\xf7\xc8\xc7\x14\x16\xcc\x3f\x99\xb7\x87\x6c\x8e\x4d\x34\x95\x56\x7a\x33\x1c\xe5\xe3\x04\x57\xa4\x80\xed\xc8\x39\xb4\xf4\x2d\x4b\xdb\xce\xd4\xcd\x1d\x30\xb7\x2b\x6b\x6f\x5e\xfa\xba\x32\x22\xeb\xfc\x78\xd0\xac\x76\xb7\x99\x89\xe8\x53\xff\xe1\xd3\x76\xe2\xe3\x3e\x16\x5c\x11\x92\x05\xbc\xb9\xf1\x3c\x25\x0f\xd0\xac\x8e\xba\xc7\x8c\x1b\x71\xf0\x05\x06\xae\xa1\xa3\x61\xba\x37\x60\xe0\x0d\x64\xdd\xcd\x82\xff\x67\x0c\x3c\xa4\x7e\xd4\xc6\x79\x11\x71\xb3\xe2\xfa\x7d\xbd\x26\x35\x2e\x64\xe1\x00\xe7\x59\xba\x66\xfe\x61\xb1\x9c\x3a\xe6\xd9\xd3\x4a\xcc\x14\x5c\x83\x51\x75\xfa\x50\xe7\xf0\xf8\xdf\x03\xd9\x0c\x7a\x98\x93\x9c\xd2\x1a\x36\xb4\x5d\xb5\x39\x5b\xb5\x0d\xac\x3d\x99\x24\xae\xeb\x75\xc3\x4b\x6b\x62\xd6\xba\xe0\x3a\x9c\x78\x35\x66\x82\xa3\xc4\x6d\x91\xd8\x11\x6f\xad\x69\x6c\x3e\x6f\x4d\x63\xe4\x60\xba\x71\x4f\x36\x17\x4f\xf6\x68\xc6\xd2\xbc\xfa\x46\xd3\x9b\x6f\xd2\x6e\x9a\x57\xda\x7e\xc6\xbf\x99\x7f\xdc\x14\x82\x84\x27\x66\x74\x2c\x96\xbe\xf3\x41\x73\xbf\x41\x9b\x56\xbb\x1c\xdd\x86\xbb\x3b\xbe\xf3\x31\xd4\x5e\x18\xc9\x32\xac\x4c\x77\x45\xb1\x91\xba\x17\x99\x83\x5d\xc2\xcc\xfd\x8c\x04\x56\xee\x16\xa7\x25\xe4\x7f\xd0\xe1\x5f\xb5\x6e\xe2\xb5\x55\x17\x11\xcd\xb1\x88\xb6\x3a\xbe\xe1\x46\x6f\x22\x3b\xe8\xa9\xa3\x71\xa1\x59\x06\xed\x37\x7b\x3a\x1c\xb9\x1e\x98\x81\x2b\x1a\x47\x73\xd4\xf6\xf1\x78\xdd\xfc\xbd\x9f\xa8\xa6\x4c\xb7\x74\xa9\x2c\x1a\x04\xc8\xcb\x4b\x78\x2b\xb8\xe1\xac\xe4\xbf\xe1\xe0\x24\xcd\xd8\xb9\x8c\xd1\xd0\x11\x03\x81\x9f\x3c\xb8\x28\xfc\x26\x42\x5b\xff\x53\x21\x54\x42\x28\xa4\xd2\xc1\x35\xd9\xd6\x25\x13\xf7\xd1\x46\x21\xbc\x84\x5a\xa3\x82\x2d\xad\x79\xc6\xca\xb2\x25\x68\xb1\xb8\xc5\xf0\xee\x40\x8a\x4b\x27\x49\x25\x98\x87\x97\xd2\x7d\x69\xa2\xdd\x2f\x61\xb4\xb7\x7d\xcf\xfa\xd6\x62\xb7\x05\x2c\x53\xc1\x75\x26\xc2\xc9\x17\xfd\x9f\xe5\x88\x16\xe9\xd9\x77\x5e\x92\x68\x54\xa8\x85\xc1\x2a\x58\x5d\x06\xbf\xcc\x01\xd7\x70\xe9\xd9\xbb\x2c\x46\x7e\x0f\x24\x1e\x9c\xfc\x69\x92\xb1\xa1\xee\xe1\x98\xc0\x69\xbf\x71\xe2\xa5\xf9\x7a\xf6\xef\x00\x00\x00\xff\xff\x0b\x41\x31\xcf\x18\x46\x00\x00" +var _fungibletokenswitchboardCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5c\x5f\x73\xdb\x38\x8c\x7f\xcf\xa7\x40\xf3\x70\xb5\x67\xb2\xce\x3e\xdc\xdc\x43\xa6\xe9\xdf\xbd\xee\xf4\xe1\xf6\x76\xda\xec\xf5\xa1\xd3\x99\xd0\x12\x14\xf3\x22\x93\x1a\x92\xb2\xeb\xed\xf4\xbb\xdf\x80\xa4\x24\x52\xa2\x64\x39\xcd\x6e\xef\x6e\x56\x0f\x6d\x6c\x8b\x20\x00\x02\xf8\x01\x20\x25\xbe\xad\xa4\x32\x70\xfe\xb6\x16\x77\x7c\x5d\xe2\x8d\xbc\x47\x71\x7e\x76\x76\x79\x79\x09\x37\x1b\x84\x4c\x0a\xa3\x58\x66\xc0\x6c\x98\x01\x56\x96\x72\xaf\x81\x09\x60\x59\x26\x6b\x61\xc0\x48\x50\x98\x21\xdf\x21\x54\xec\xb0\x45\x61\x34\x70\x01\xdb\xba\x34\xbc\x2a\x11\x0a\x4f\xd7\x12\x34\x44\x5c\x43\xad\xb9\xb8\x03\x06\xf4\x5f\x89\x70\xfb\x35\x9a\x7c\xf5\xde\xd1\x53\xdf\x6e\x21\x63\x15\x5b\xf3\x92\x9b\xc3\xca\x73\xc4\x75\xf0\x25\xe8\x8d\xac\xcb\x1c\x78\x8e\xac\x2c\x0f\xb0\x46\xd0\x46\x2a\xcc\x81\x11\xc3\x08\x76\xd0\x6d\x44\xfe\xc3\x9e\x9b\x6c\xb3\x96\x4c\xe5\xed\x4c\xbf\xd7\xeb\x92\x67\xbf\x33\xb3\x81\x6b\xb8\xac\xec\xa7\xcb\x5f\x51\xa0\xe2\xd9\xdb\x9b\xe6\xae\x5b\x4b\x6d\x5d\x1b\xe0\x06\x32\x26\xc2\xe9\xc4\x61\xbf\x41\x85\x8e\xcb\x33\x96\x65\xa8\xf5\x82\x95\xe5\xb2\x53\xe0\x18\x17\xf0\xf5\x0c\xe0\x0c\x00\xe0\xf2\x12\x3e\x18\xa9\xd8\x1d\x02\x13\x39\x38\xae\x80\xd8\xd2\xf6\xf7\x90\x6c\x89\xa6\xb9\x99\x6e\xb8\x0a\x3f\x24\x6f\xee\x64\xbc\x0a\xfe\x4e\xde\x3a\x54\x4b\x34\x64\x30\x06\x85\xe1\xa6\x44\x5a\x7c\xf8\xcf\xbd\x40\x75\xe6\xc5\x71\x26\x84\x3b\xfa\xc1\xda\x0f\xd7\x80\x5b\x6e\x0c\xe6\xb0\xdf\xa0\x00\x06\x02\xf7\xb0\x63\x75\x69\xc2\x65\xe5\x1a\x58\x9e\x63\x4e\xd6\xc5\x5a\x5a\x3a\xd0\x99\x42\x2d\x6b\x95\xe1\xaa\xfd\x75\xc8\x95\x9d\xf6\xbf\x88\xf6\x9b\x96\xf4\x2b\x22\xbb\x30\x87\x0a\xaf\xe0\xe6\x50\xe1\x45\x48\xd5\xf2\x7e\x05\xaf\xf2\x5c\xa1\xd6\x2f\x2e\x1c\xcd\x63\x57\xc7\x77\x6f\xfc\xf2\x04\x35\xa4\x54\xa0\x70\x2b\x77\x98\x43\xa1\xe4\x16\x18\x3c\xaa\x1e\xde\x3b\xda\x91\x26\xbe\x5f\x15\x8f\xa6\x8e\x1c\x2b\xa9\xbd\x97\x09\x69\xc8\xd3\x32\xb9\xad\x4a\x34\x98\x1f\x15\xf5\x37\x69\xde\x34\x37\xff\xe2\x08\x45\x72\xb2\x2d\x45\xae\x2b\xf8\xe3\x2d\xff\xf2\x6f\xff\x3a\x53\xb4\x71\xdd\xf4\xe4\xe2\xc2\xa0\x2a\x58\x86\x4e\x36\x14\x85\x54\x19\x6a\x1b\x8e\xb6\x68\x36\xd2\x59\x35\x05\x52\x0a\x1b\x52\x20\x7d\xce\x36\x98\xdd\x83\x14\x74\x5b\x4b\x8e\xed\x18\x2f\xd9\xba\xc4\x4e\xa9\x1c\x35\xc8\x82\x62\x67\xc2\x08\x6c\xd4\x60\xa5\x96\x80\x5f\x2a\xa9\xfd\xa4\x2d\xb9\x46\xa9\x8e\x0b\x4d\xd3\x36\x5f\x15\xb5\xc8\x35\x4d\xcf\xcd\x84\x7a\xdb\x79\x3a\x19\x83\x38\xe6\xc3\xd5\xd7\x56\x9d\xe1\xd0\x1d\xc7\x3d\xcd\x02\x77\x68\xac\x29\xd2\x52\xe8\x8f\xdc\x6c\xbc\x1a\x17\xcb\x2b\xf8\x7a\x63\x57\xc9\x7f\xf3\xed\x28\xa1\x0f\x75\x45\xe0\x85\x79\x47\x31\x20\xf3\x5a\xca\xf2\x08\x0d\xae\x87\x24\x02\x53\x59\x3a\x22\x49\x1a\x34\xdc\x6b\x6f\x41\x0e\x7a\x05\x2f\x7b\x30\x66\x29\x7e\x5b\x8e\x8e\xd6\xac\xc0\x5f\xe6\x50\x18\xfb\xe1\xc5\xb4\x70\x44\xff\xb5\x54\x4a\xee\x5f\x1f\x86\x82\xfd\xcb\x18\xe8\x3a\xaa\xdf\x62\xa3\x6e\x57\xde\xda\xb4\x05\x3d\x6f\xd1\x7d\x9c\x77\x18\xdf\xe4\x04\xaa\xb3\xbe\xd0\x84\x2f\x9c\xfd\x53\x16\x40\x44\x24\x39\x94\xf5\x8a\x3c\xb7\x36\xec\x22\x1f\xfd\xb6\x75\x36\xdd\xfa\xc9\xc0\x98\x99\x38\xf4\xe7\x66\x5b\xe9\x09\x77\x0e\x44\xb2\xeb\x39\xa6\x1d\x18\xf4\x15\xa4\x55\x74\x31\x65\xf5\xed\x9a\xd0\x34\xbf\xf0\xcc\x70\x29\x98\x3a\xc0\x46\x96\x79\x23\xef\x98\xae\x62\x15\x45\x94\xb8\xc8\xf1\x0b\xe6\xb0\x3e\xa4\x28\x38\xf4\x20\x19\x57\xd1\xa8\xbe\x81\x34\xb9\xc8\x12\x76\x4c\xb5\xf3\xbe\x09\xa6\x6d\xbd\xa7\x83\x8a\x67\xa3\xa6\xf2\xdc\x5b\x49\x33\xdd\xab\x3c\xd7\x1e\xd2\x8f\x8a\x78\xa0\xd5\x24\x51\xc2\x40\x16\x51\x8b\xa1\x6d\x20\x12\x7d\x78\x59\x31\xc5\xb6\x01\xd1\x2b\x97\xb3\x46\x93\xb8\x58\x08\x0c\x32\x54\x86\x71\xd1\xa5\xa4\x21\xa9\x50\x91\x41\x54\xb4\xeb\x07\x66\xa3\x64\x7d\xb7\x99\xca\x54\xc9\x31\x22\x82\x7b\x5e\x96\x84\x5b\x6d\x22\xd3\x13\x76\x7a\xa5\x2c\xc6\xb8\x38\xc1\xf2\xfc\x37\xdc\x5b\x97\x5f\x84\x92\xce\x5a\xa1\x65\x10\x8f\xdd\x5c\xe0\x62\x02\x30\x50\x58\xa0\x42\x91\x61\xc3\x9d\x93\xbe\x92\x14\xde\x2d\xcb\xde\xda\x02\x7d\xee\x11\xfa\xf4\xf6\xcc\x95\x01\x36\x2a\x00\x17\x9a\xe7\xd8\x17\x36\x1a\x43\x29\xa6\x9d\xea\x3d\x16\x70\x1d\xe6\xf8\x6b\xcb\xda\x62\x39\x84\xe4\x17\x2f\xa0\x62\x82\x67\x8b\xf3\xd1\x64\x3e\xfc\x3b\xd0\x19\x29\x4a\xd8\x1c\xc2\xc9\x1d\x49\xed\x24\xb6\x09\x56\xc7\xc6\xf9\x44\x42\xb0\xca\xa4\xc8\x98\x59\x9c\xff\x07\xbb\x47\xd0\xb5\xf2\x21\xb1\xa7\xa6\x8a\x4a\x09\xab\x48\x0b\xb3\xcc\xa5\x5f\xee\xd6\x0d\xd3\xb0\x46\x14\x50\x29\x59\xa1\x2a\x0f\xc0\x05\x37\x9c\x95\xfc\x4f\xcc\xcf\x97\xcb\xb3\xbe\x82\xdf\xd8\xdc\x80\x17\x34\x09\x69\x98\x7c\xac\x52\xb8\xe3\xb2\x8e\x8a\xa1\x42\x2a\x30\x54\x20\x59\x5b\xbe\xa0\x11\x42\x9a\x88\x1a\x2f\x60\xa1\xb1\x2c\x56\x29\xdf\xff\xd4\x2c\xca\xea\x0e\x1d\x14\x2e\x3f\xc3\xf5\x35\x08\x5e\xf6\xcd\xc8\x73\x56\x6b\x0c\x0c\x27\xd0\xec\xa1\x42\x60\x1a\xee\xd1\x71\x45\xa6\xd1\x04\xbf\x14\x9d\x40\x08\x0a\xf7\x66\x83\x62\x70\xdb\x89\x6c\x07\x34\x53\x33\x52\xbe\x69\xd9\x09\xd3\x50\x91\xf3\x8c\x19\x8b\x6c\x54\xeb\xda\x40\x16\xb0\xd6\x2e\x5c\x8a\xa0\x75\xf3\xc1\x0f\x76\x9a\x89\x12\x64\xc8\xfa\xc5\xec\x44\xbb\xd1\xcb\x20\x31\xb5\x9a\xb2\x98\xfa\x82\x1c\x81\x72\xa9\x13\xf2\xf7\xf6\x1a\x24\xf2\x81\xa3\x7a\xb2\xcb\x88\x6a\x97\x6c\x8d\xe0\x42\xbd\x5d\xa3\xa2\xf4\x75\x16\x42\x50\xaa\xbb\x3e\xb8\x66\x41\x1c\xaa\x37\x68\x1d\x4c\x83\xad\xb9\xe9\xf3\x01\x98\x6a\x8a\xf1\x38\xb0\x26\xae\x14\x84\x58\x7a\x0e\x3d\x7a\xa4\xc1\xb5\x03\x62\xbe\xc6\x66\xf3\xd4\xbc\x7a\x1c\x3d\xff\x81\xe4\xee\x92\x1d\xff\x21\x24\xfa\x10\x40\xd0\xaf\x0f\x54\x92\x2f\x3c\xfb\x9f\xba\x2a\xfd\xf3\x45\xc7\x85\x4f\xa8\x13\x58\xf0\x2b\x3a\x2f\x68\xba\x39\x73\xa5\x1e\xc4\x73\x27\xd5\x35\x65\xe5\xaf\x1c\xad\x45\xd2\x46\x2e\x2f\xe1\xad\x54\x80\x2c\xdb\x58\x45\x5f\xd0\x08\x87\x16\x8c\x6a\xdd\x5e\x24\xf0\x98\x62\x06\xa0\xc3\xc5\x10\x51\x9f\xea\x11\x2b\xca\xdb\x34\x2c\x22\x43\x91\xc9\x06\x6a\x2e\xfc\xa2\x0f\x83\x1c\xc9\x16\xf0\x74\xed\x04\x5d\x45\xeb\x76\x87\x66\x02\x81\xed\xda\x2c\x53\x21\xe3\x7b\x80\x38\x45\x6f\x8f\xa7\x63\xb1\x1f\xfa\xae\x08\xe6\xdd\x53\x9c\xb3\xbc\x61\x0e\xba\xb6\xf6\x57\xd4\x65\x79\x58\xad\x56\x83\xc1\xbc\x98\x83\xe7\x43\xc5\xfa\x89\x57\xab\x15\xad\x73\x08\x6e\x42\x26\xd1\xcd\xe5\x51\x0e\xe3\x08\x70\x49\xcd\x49\xaa\xf3\x30\xee\xc9\x3c\x90\x0b\x58\xfd\xe3\x74\xb0\x9b\x22\x37\xb1\x96\xcd\x75\xaa\x14\x73\x68\x12\x54\x89\x7c\x36\xfe\xcd\x93\xa0\x83\xc6\x34\x0c\x36\xd7\x63\xc3\xe1\x3c\xec\x9b\x24\x31\x40\xb9\xa3\xa3\x86\xbe\x0c\x11\xf8\xa5\xbf\x39\x0a\x8e\x8f\x5b\x34\x81\xae\x30\xe3\xc5\x81\x0c\x71\xbf\xe1\xd9\x06\x6e\x49\xa1\xb7\x04\x3c\xb7\xe9\x76\xc2\x6d\xd3\xd3\x8e\x08\xfa\x5a\xc8\x85\x21\x6e\x56\xd6\x0d\xb8\x0d\x32\x5c\x64\x65\x9d\x53\x98\x81\x83\xac\x55\xc4\xd4\xf9\x5e\xb1\xaa\x42\x75\xde\xe3\xce\x49\xa4\x29\xac\x6c\xc8\x69\x18\xdc\xbe\xb4\x4c\xbc\x95\x6a\xcf\x14\x95\xc8\x2b\xff\x27\xaa\xdb\x15\xbc\x73\x3d\x40\xdb\xd4\x5a\xc7\x15\x5b\xad\x1d\x53\x72\x87\x6a\xaf\xb8\x71\xde\xe9\xbc\xd1\x18\x96\x6d\x7c\xff\xb8\xad\xfb\xc2\x32\x86\x9b\x8d\xac\x4d\x2c\xea\x86\xed\xac\xdf\xca\xae\xff\xc0\xa2\xe8\x5f\x70\xa5\x4d\x04\xd3\xff\x3f\xab\xd1\x94\x54\xbe\x79\xd4\x68\x58\x16\x7d\x6b\xf5\xca\xb2\x16\x14\x19\xcd\x80\x97\x4e\x21\x17\xa0\x18\xc5\x7d\xba\xc7\xb6\x3e\x1b\x2b\xb5\x15\x99\xb1\x8d\xa7\x26\xcc\xb6\x88\x44\xbf\x45\xf4\x34\xe3\x79\x2a\xf4\xcd\x4f\xa3\x3e\x3a\x63\x3d\xbd\xbc\x7e\x48\x5e\x3d\x72\x05\xdd\xb9\x61\x9e\x16\x96\x80\xbd\x5d\x82\xbd\x54\xf7\x61\x86\x6c\x85\xd5\x1a\x95\x81\xc5\x80\xb9\x00\x9b\x6d\xc7\x39\x15\x60\xb7\xa8\x35\xbb\xc3\xab\xa4\x64\x27\x97\xdf\x5e\xb5\x93\x55\x38\x0b\xeb\x70\x9b\x7c\x2a\xb9\xe3\x79\x94\x0e\xa6\x8b\xf2\xbf\xbe\x1c\x8f\xa6\x1d\xe4\xb2\x4d\x4e\x60\x7d\xc2\x3a\x0a\x1a\x54\x61\x36\x30\x91\xb6\x8d\xc3\x3b\x91\x9b\xc0\xf3\x47\xad\x5f\x93\xb5\xeb\x38\x50\x0f\x96\xc1\xd9\x2d\xfd\x3b\x34\xa5\x07\xe2\xf3\x8c\xca\xf3\x62\x64\x5d\x52\xe0\xfa\x27\x2a\x09\x52\xc1\x96\x72\xe2\xd9\xa5\xa7\x8f\x91\x31\x44\x24\x77\x5d\x46\xa0\x56\x4f\x61\xad\xee\x11\x4e\x05\xce\xff\x23\x68\xab\x23\xb8\x1d\x80\x2d\xe9\x72\x2e\xdc\x12\x32\x46\x03\x87\x88\xdb\xb7\x15\xf8\x5b\x0a\x7a\x2b\x67\x07\x7f\x6d\x31\xdf\xc7\x40\x19\x2f\xa2\x14\x5d\xa5\xfb\x63\x1b\x05\x3e\x0c\x4f\xf6\x0b\xbc\x90\x9f\xc8\x7a\x3f\x3f\x0a\xb2\xfd\xd3\x81\x38\xde\x81\xe0\x17\xff\x34\x21\x7e\x70\x13\xe2\x01\x95\xfd\xb1\x52\x7b\x1a\xdb\xf5\x27\xfe\x79\x46\xbd\x7e\x62\xad\x7e\x62\x41\x7e\x02\xc6\x37\x57\x87\xf5\x24\xc1\x78\x89\xfc\x9d\x75\xf9\x69\x35\xf9\xd0\xac\x67\x56\xde\xee\x0c\x0c\xa1\xe2\x8c\xc2\xbb\xcd\x4d\x53\x46\xfc\x98\xdb\x95\x03\x6e\xfc\xe6\xee\x00\x91\xa3\xe3\x41\x0f\xdd\x5c\x74\x44\xfe\xf7\x6f\x2e\xfa\x14\x61\x72\x15\x60\xd6\xde\xe2\xe8\xd6\x22\x9c\xbe\xb7\xf8\xd7\x16\x37\xee\xfa\x11\x3b\x8e\xa3\x01\x51\x42\xc1\xdd\x06\x5d\xcf\x6a\xdd\xfa\xcc\x2b\x6f\x56\xee\xe6\xc5\x3d\x1e\x52\x2d\xbf\x01\x5c\xff\xfb\x63\xd6\x3a\xde\x6b\x8e\x56\x3b\xcd\x01\xb9\x91\x7a\x67\x4e\xa7\xf2\x47\x54\x3f\xcd\x5f\x91\xff\xdf\xb0\xfb\x54\x98\x73\xab\x6b\xcf\xdb\xc8\x9a\x54\xe9\x0a\x0d\x6f\xa3\x15\xaa\x6e\x40\xa2\x39\x95\x0c\x92\x52\x35\xd9\x2f\xe1\x24\x37\xc7\x83\xa1\x3b\xf9\x44\x61\xb0\x4b\x9b\x93\x7c\x1e\x89\xaf\x0f\x3a\x9b\x35\x9e\x8e\xa6\x22\xbf\x14\xa8\x7b\xe7\x8b\xa7\xc2\x50\x2b\x4f\xcf\xb2\xe0\x7a\x22\x3b\xa0\xc9\x82\x9e\xfe\x77\x07\x2b\xcf\x44\x1b\xa1\x9a\x66\xa2\xe5\xe9\x09\xcc\x0a\x3c\xf1\xe2\xb8\xd5\xa0\xb2\x84\xb2\xa3\x67\xe7\xcb\xe6\xbe\x98\xf5\x15\xcf\x51\x18\x5e\x70\x54\xe9\x86\x79\x6f\x92\xe7\x6e\xeb\xc7\x04\x67\xb6\x6c\xab\x93\xeb\xf6\x14\x16\x58\x49\x23\x98\x83\xf3\x59\xc4\xdd\x11\xb6\x8c\x57\x9c\x02\x88\x40\x74\xa7\x1f\xbb\x28\x48\x8b\xc9\x55\x5b\x84\xd8\xc4\x3f\xa8\xaf\x8d\xb4\xe7\xb7\xfc\xd9\x34\x77\xda\xdd\x24\xb4\x62\x4f\x60\xa5\x02\xaa\x87\xc5\xb8\xa3\xe9\x7d\x2d\x47\xcd\x55\x43\x62\x0a\xcc\xc6\x0c\xea\xf1\xa0\xad\x6f\x2d\x13\x78\x36\xcb\x72\x5a\xd7\x69\x7a\xc6\xb1\xd2\x1c\x44\x3d\x9e\x09\xad\xe0\xef\xc2\xc8\x36\xfc\xc7\x61\xe6\xd9\x4f\xf4\xff\x68\x37\xea\x68\x1c\x36\xca\x77\x9e\x6c\x40\x1e\xc4\xe3\x88\xd8\x9c\x9c\x35\x0e\xc7\xbe\x61\x91\xf7\xcf\x16\xb2\x9d\xe4\xf6\x6c\xa2\xb5\x95\x7b\x1b\xb9\xc3\x52\xac\xef\x98\xe3\xfd\x98\x54\x80\xdf\x35\x07\x6b\xe3\xdd\x03\xcb\x8c\x69\xfc\x86\x56\x80\x52\x3d\xed\x5b\x28\xe9\x2d\xa8\x29\x34\x51\x68\x6a\x25\x4e\x01\x92\x8b\xb6\x2d\x15\xee\xd4\x7a\xd5\xe6\xba\xd1\x41\x13\x31\xa9\x20\xed\xea\xd0\x0b\xb0\xf5\x20\x2f\x4b\xfb\x80\x07\xe3\x22\xd2\x70\x44\xce\x13\x1a\x38\x3e\xc5\xa1\x36\x74\x10\x79\xd2\x72\x21\x6b\x71\x24\x7d\x7f\xc4\x13\xc4\x43\x00\xbc\x51\x36\x9f\x6b\x7a\x22\x3e\x11\x18\x3c\x9e\x70\x34\x11\xef\xea\xf9\x28\xbe\x91\x31\x55\x0a\x35\xc5\x61\x77\xda\x3d\x8a\xe7\xbd\xda\xde\xd7\xf5\x8f\x81\xa4\xe9\x03\x6c\x1f\x11\x8c\x13\x78\x7d\xa4\x70\x69\x05\x9e\x6e\x7f\xbc\x2b\xa8\x8a\xb1\xdd\xdc\x69\x82\xf3\xda\x18\x47\x43\xfe\x78\x53\xe3\x63\x67\xba\xad\x59\x92\xca\xed\x6e\xd9\x10\x6b\x9a\x6b\x32\xb2\xad\xc8\x63\x72\xc5\xf6\x8b\xe6\x19\x0a\xfb\xed\x9a\x95\x4c\x64\xb8\x9c\x5f\x89\x7b\x1e\x79\xd1\xed\x6e\x32\x5e\xfa\xf3\x1d\x5a\x6e\xc9\x5b\x98\x96\xa2\x6f\x0d\xe1\x74\xf0\x1c\x7e\x5e\xfd\x9c\x50\x80\x4d\xe7\x53\x0f\x81\x24\x05\x76\xf9\x7c\x6c\x2d\xe9\x46\x43\x4a\xe6\xf4\x9d\x0f\xcc\xfc\x87\xfa\xf3\x51\xcd\x69\x7f\x42\x97\x39\x6a\xa3\xa4\x77\xcb\xb3\x04\x05\xc1\xcb\x31\x54\xb2\x7b\x8b\x3a\x09\x98\x86\x37\x7b\xe8\x36\x6c\x73\x0d\x3b\x56\xf2\xa8\xef\xf1\xd0\x90\xbf\x8f\x9b\xfd\x87\x2e\x2b\x5b\xa3\x7b\x1a\x06\x27\xe6\xf1\x52\x31\x58\x4b\x59\x22\x13\xb0\x65\x76\x17\x74\x90\xbb\x4b\xd5\x30\xcf\x3c\xf3\x14\xb8\xc3\x63\xb1\xc9\x67\x27\x2c\x03\x4d\xa3\x23\xf5\xf8\xc4\x6b\x29\xcb\x9e\xe9\xf1\xe2\xf8\x8e\x9e\x3d\x67\x94\x30\x59\x2f\x4f\xc1\x4a\x8d\xbd\x65\x4e\xad\xe6\x91\x79\x9e\x34\x9b\xbb\x63\x4b\xfe\x2b\x1a\xed\x31\xc9\x67\x0d\x4c\x6b\x7e\x27\x9a\xd5\x6e\x5b\x14\x63\x0f\x16\xd8\xe7\x30\x29\x2f\x40\x52\x1e\x53\x07\x58\x63\xc6\x6a\x8d\x2d\xa6\x72\x73\x41\xf9\x8b\xcf\x1d\x2a\xa9\xb5\x07\x62\x28\xa5\xbc\x87\x5a\xe4\xe8\x36\x47\x37\x52\xba\xc4\x5a\x23\x92\x0e\xd9\xd8\x56\x3e\x77\x4f\x3e\x09\xc0\x2f\x15\x66\xb6\x89\x64\x0d\xcb\x2e\xe7\xca\xb1\xb4\xc1\xb2\xd2\x70\x57\x53\xd2\xce\xee\x18\x17\xda\x00\x17\x05\xa5\x72\x58\x1e\x20\xdb\x30\x4e\x42\xf6\xf6\xc0\x88\x86\xb4\xe7\x10\xb8\x70\x36\x12\x4d\xbc\x65\x25\xcf\xec\x71\xb4\x7b\x6e\x83\x68\x01\x75\x95\x77\xcd\x87\xcc\x3e\x83\x5a\x29\xd7\x9e\x28\xb9\xa6\x6c\x4b\x3b\x5f\x5c\x23\xd1\xdf\xb2\xdc\x67\xa4\x4c\x61\x63\x86\xc2\xd5\x92\x85\x92\xc2\xe8\xa3\xe7\x2f\xfe\x3e\x9f\x12\x20\x2b\xbb\x59\x51\x8e\x26\x95\x99\x14\xba\xde\xa2\x6a\xf7\xaa\x7a\xc5\x92\x9d\xeb\xd2\xca\xc9\x8c\x2f\xe4\xa8\xbe\x92\x7b\x31\xed\x77\x0f\x7d\x66\x69\xe8\x8a\x4f\xac\x8f\x8c\xfb\xb1\x49\x1c\xb4\x80\x74\xbc\xfc\x0e\x3f\x1c\x54\x66\xfd\xfd\x69\x4a\xb4\x8c\xeb\xb4\xf8\xc3\x3d\x12\xee\x85\xdc\xfb\x9d\x64\xff\xc0\x74\x77\x5a\xe8\xf8\xc1\x2f\x97\x60\x55\x4c\x39\x67\x6e\xca\x55\x56\x4a\x71\x67\xbd\xd3\x6d\xb7\xf9\xbd\x46\xbb\xdd\x16\x77\x77\xac\x11\xf9\x89\x9b\x63\x43\xe9\x14\x3c\x69\x3f\xaf\x82\xcd\x2e\xd8\xb2\xaa\x6a\xc2\xf2\xc4\x71\xa5\x98\x01\x32\x6d\x9f\x2a\xb5\x06\x68\xa1\xf3\xa9\x6e\xf9\x4e\xb2\xf1\xbd\x0f\x1c\xf6\xcc\x81\x72\x31\x2c\x0a\xcc\x0c\xdf\x61\x7f\xf8\x70\xf0\x35\x7c\x1d\x24\x38\xed\xb9\x1d\xbb\xdd\x18\x1f\xdc\x29\x79\xaf\x61\x4a\x9e\xd5\xba\x39\xf0\x09\xf3\x5a\xdd\xe3\x21\xb5\x51\x38\x09\x41\x2d\xe9\x0e\x1f\xc6\xb3\x47\xfb\xd4\x9d\xdd\xd6\x0f\xaa\xd0\xde\x22\xa4\x77\x95\xc6\x14\x16\xcc\x3f\x99\xb7\x87\x6c\x8e\x4d\x34\x95\x56\x7a\x33\x1c\xe5\xe3\x04\x57\xa4\x80\xed\xc8\x39\xb4\xf4\x9b\xfc\xf6\x00\x80\x6e\x1e\x1c\x75\xfb\x18\xf6\x71\x6d\x5f\x57\x46\x64\x9d\x1f\x0f\x8e\x77\xb8\x57\x20\x10\xd1\xa7\xfe\xcb\xa7\xed\xc4\xc7\x7d\x2c\x78\xae\x50\x16\xf0\xf6\xc6\xf3\x94\x3c\x82\xb7\x3a\xea\x1e\x33\x1e\xa3\x85\xaf\x30\x70\x0d\x1d\x0d\xd3\xbd\x01\x03\x6f\x20\xeb\x6e\x16\xfc\xaf\x31\xf0\x90\xfa\x51\x1b\xe7\x45\xc4\xcd\x8a\xeb\x0f\xf5\x9a\xd4\xb8\x90\x85\x03\x9c\x67\xe9\x9a\xf9\xf9\x62\x39\x75\x50\xbc\xa7\x95\x98\x29\xb8\x06\xa3\xea\xf4\xb1\xf0\xe1\x01\xe2\x07\xb2\x19\xec\xfa\x4f\x72\x4a\x6b\xd8\xd0\x76\xd5\xe6\x6c\xd5\x36\xb0\xf6\x64\x92\xb8\xae\xd7\x0d\x2f\xad\x89\x59\xeb\x82\xeb\x70\xe2\xd5\x98\x09\x8e\x12\xb7\x45\x62\x47\xbc\xb5\xa6\xb1\xf9\xbc\x35\x8d\x91\x83\xe9\xa3\x2e\x64\x73\xf1\x64\x8f\x66\x2c\xcd\xd5\x37\x9a\xde\x7c\x93\x76\xd3\x5c\x69\xfb\x19\xff\x65\xfe\x81\x75\x08\x12\x9e\x98\xd1\xb1\x58\xfa\xde\x07\xcd\xfd\x06\x6d\x5a\xed\x72\x74\x1b\xee\xee\xf8\xce\xc7\x50\xfb\x20\x63\x96\x61\x65\xba\xe7\x9a\x1b\xa9\x7b\x91\x39\xe8\x12\x66\xee\xdd\x33\x58\xb9\x47\xbf\x2d\x21\xff\x16\x98\xff\xae\x75\x13\xaf\xad\xba\x88\x68\x8e\x45\xd4\xea\xf8\x8e\xd7\x00\x24\xb2\x83\x9e\x3a\x1a\x17\x9a\x65\xd0\xbe\xd9\xd3\xe1\xc8\xf5\xc0\x0c\x5c\xd1\x38\x9a\xa3\xb6\xb7\xc7\xeb\x06\x58\x6a\x84\xaf\x51\x4d\x99\x3e\x04\x41\x65\xd1\x20\x40\x5e\x5e\xc2\xbb\x68\x5f\x64\xd6\x49\xa6\xd1\xd0\x11\x03\x81\x9f\x3c\x78\xbb\xc0\xdb\x08\x6d\xfd\xfb\x85\xa8\x84\x50\x48\xa5\x83\xdb\xd8\x5d\x97\x4c\xdc\xc7\x1b\x3f\xaf\xa0\xd6\xa8\x60\x4b\x6b\x9e\xb1\xb2\x6c\x09\x5a\x2c\x6e\x31\xbc\x3b\xc2\xe5\xd2\x49\x52\x09\xe6\xe1\x9b\x2c\x7c\x69\xa2\xdd\xeb\x73\xda\x57\x04\x9c\xf5\xad\xc5\xb6\x05\x2c\x53\xc1\x8e\x09\xe1\xe4\xcb\xfe\xbb\x7c\xa2\x45\x7a\xf6\x93\x97\x24\x1a\x15\x6a\x61\xb0\x0a\x56\x97\xc1\xeb\x7c\xe0\x1a\x2e\x3d\x7b\x97\xc5\xc8\x36\x4e\x3c\x38\xf9\x3e\xa3\xb1\xa1\xee\xe6\x98\xc0\x69\x2f\x46\xf2\xd2\x7c\x3b\xfb\x9f\x00\x00\x00\xff\xff\x2a\x27\x86\xa3\x4d\x4a\x00\x00" func fungibletokenswitchboardCdcBytes() ([]byte, error) { return bindataRead( @@ -156,7 +153,7 @@ 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{0x41, 0x6e, 0xba, 0xd8, 0xc5, 0xc5, 0xea, 0x2b, 0x18, 0xd1, 0x2b, 0x1b, 0x4c, 0x66, 0x2a, 0x3e, 0x9a, 0x98, 0x8a, 0x38, 0xe1, 0x41, 0xd7, 0xdf, 0x8c, 0x6, 0x85, 0xf, 0xe3, 0x84, 0xfa, 0x10}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0x93, 0xf7, 0xf2, 0xe4, 0x50, 0xe3, 0xc5, 0xb8, 0xa3, 0xfa, 0xe9, 0xd0, 0x7, 0xa6, 0x12, 0x30, 0x3f, 0x59, 0x6d, 0xcb, 0xaa, 0x14, 0x59, 0xdc, 0x2, 0x88, 0x51, 0xcf, 0x9a, 0xe9, 0xa3}} return a, nil } @@ -200,47 +197,7 @@ func utilityBurnerCdc() (*asset, error) { return a, nil } -var _utilityMetadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7c\x6d\x73\xdb\x38\x92\xf0\xf7\xfc\x8a\x1e\x6f\xd5\xac\xfd\x3c\xb2\xe4\xcc\xce\x4d\xdd\xa9\x46\x3b\x9b\x49\xe2\xdd\x5c\xcd\xe4\x52\x89\x67\xf7\xaa\x52\x53\x31\x44\xb6\x24\xac\x49\x82\x0b\x80\x96\xb5\xa9\xfc\xf7\xab\x6e\xbc\x10\xa4\x28\x8b\xf6\x66\x36\xfe\x90\x50\x24\xd0\x68\x34\xfa\x1d\x0d\xc8\xb2\x56\xda\xc2\xc9\x65\x53\xad\xe5\xb2\xc0\x2b\x75\x83\xd5\xc9\x93\xf0\xfa\xb5\xaa\x0e\x7c\xf9\xab\xc4\xed\x5b\x34\xaa\xb8\x45\x7d\xf2\xe4\xc9\x6c\x36\x83\xab\x8d\x34\x90\xa9\xca\x6a\x91\x59\x90\x65\x5d\x60\x89\x95\x35\x60\x37\x08\x25\x5a\x91\x0b\x2b\xc0\x58\x51\xe5\x42\xe7\x50\x6b\x55\x2b\x83\x39\xf7\x95\x15\x5c\xfe\xf4\xea\xcd\xf9\xc5\x77\x7f\xf8\x6e\x4a\x6f\xf8\xed\x5b\x5c\xcd\x61\x63\x6d\x6d\xe6\xb3\xd9\x5a\xda\x4d\xb3\x9c\x66\xaa\x9c\xa9\x6a\x55\xa8\xed\x6c\x55\xc8\xda\xcc\x96\x85\x5a\xce\x4a\x21\xab\x99\xa8\xeb\x42\x66\xc2\x4a\x55\xcd\xbe\xb9\xf8\xe6\xe9\xc5\x7f\x3d\xfd\xee\xbc\x5a\xd9\xf3\x30\xf8\xb4\xcc\x23\xec\x77\x56\x37\x99\x35\x20\xaa\x1c\x34\x1a\xd5\xe8\x0c\x0d\x64\xa2\x6a\x31\x07\x55\x21\x28\x0d\xa5\xd2\xc8\x7d\xe2\x24\xec\xae\x46\x33\x81\x4c\x14\x05\xe6\x70\x2b\x71\x6b\xa6\xf0\x52\x64\x1b\x7e\xe6\xcf\xa0\xb1\xd6\x68\x88\x00\xdc\x57\x40\x2e\x57\x2b\xd4\x04\xf7\x46\x56\x39\xa8\x55\x84\x37\x01\xd3\x64\x1b\x10\x06\x04\x64\x1a\x85\x55\x1a\x96\x52\xad\xb5\xa8\x37\x3b\xee\xad\x34\x08\xf8\xef\x37\x2f\xff\x0c\xb2\x14\x6b\x84\x95\x2c\xd0\xd1\x49\x64\x19\x1a\x73\x2a\x8a\xe2\xac\x25\xfe\xcf\x1e\x30\xad\x92\x81\x8f\x4f\x9e\x00\x00\x10\x9c\x17\xd2\xd4\x85\xd8\x81\xa4\xa1\x96\xc2\xc8\xcc\x63\xbc\x11\x16\x64\x95\x15\x4d\x8e\x6e\xc1\x2a\x51\xe2\x04\x72\x34\x99\x96\x35\x91\x94\x28\x15\xe1\xd8\x4d\x53\x2e\x2b\x21\x0b\x58\x11\x6a\x15\xa8\xe5\xdf\x31\xb3\x53\xf8\x59\x19\xeb\x7f\x18\x30\x1b\xd5\x14\x79\x42\x50\x4b\x2c\x42\x03\x4e\x03\x24\xfe\x3f\x9d\x83\xe1\x75\x89\x88\x7a\xdc\xc3\xb8\x57\x1e\x33\xa2\x1e\x61\xe9\x87\x4d\xdb\xf4\xda\x4b\x03\x2b\x89\x45\x0e\x5b\x59\x14\xb0\x44\xc8\x1d\x64\xcc\x89\xe9\x0a\x69\x3c\x0f\xd8\x0d\x6a\x5c\x29\x8d\x1e\xeb\x0e\x98\x25\xbf\xd5\x96\x66\x9a\xa9\x2a\x93\x06\x87\xc7\x4c\x67\x52\xa0\x65\x5c\xe7\xc4\x6b\xb2\x5a\x77\x67\xf2\x0c\xb6\x5a\x5a\x8b\x55\x87\xc6\x9f\x69\x5a\x02\x72\xb4\x42\x06\xe6\xec\x82\x9d\x74\x40\x19\xc5\x4c\xbf\x44\x66\x73\xb8\x45\xbd\x54\x06\xe1\x14\xa7\xeb\x29\x08\xa8\x85\x16\xcc\x87\x20\x2b\x63\x51\x30\xdf\x0a\x30\xb2\x5a\x17\x08\x85\xac\xf0\x6c\x1c\x25\x92\x59\x1e\x22\x88\x29\x45\x51\x24\xac\x15\x25\x48\x3c\x92\x36\x9e\xff\x96\x08\x02\xb6\xb8\x3c\x5f\x69\x89\x55\x5e\xec\x58\x7c\xe0\x54\x4e\x91\x65\x6a\x02\x6f\x5e\xff\xf9\xac\x03\x84\xe5\xc1\xd3\x65\x9f\x61\x26\x34\xf1\x1b\xa8\x35\xb2\xe8\x4f\x00\x6d\x36\x8e\x0a\x71\x72\x73\xf8\x78\x29\x0b\xfc\xd4\xd2\x80\x17\x4a\x56\xd2\x9e\xc6\x57\xf4\x97\x72\xd0\xa4\xf3\x65\x80\xa2\xdd\x06\xfb\x83\x85\x2f\x67\xf0\xb1\xd3\xd2\x60\xb1\x9a\xb2\x5c\x2d\x78\xc0\xfd\x8f\x29\x93\x2e\xd2\xa1\xf7\x9b\xb6\x0b\xb8\x68\x51\x88\xcd\x1c\x12\x9f\x5a\x95\xf4\x17\x2c\x6a\xd4\x60\x15\xac\xb1\x95\x7b\x66\x62\x56\xb3\x62\x85\xb0\x15\xbb\x8e\xc2\xa0\x7e\x7f\x22\xd6\x2c\x99\x6c\xc1\x10\xcd\xe1\x19\x68\x64\x25\x9b\x21\x41\x24\x7e\xd1\xfe\x63\xd4\xf2\x2d\x04\x8d\xb6\xd1\x15\x3c\xab\x40\xf1\x5c\x44\x11\xc7\x77\x6a\xe8\xa0\x96\x5a\x35\x15\xa1\xeb\x5b\x9f\x7e\xe8\xa1\xf1\xf5\xc7\xd4\x3e\x4e\xc3\xc3\xa7\x33\x98\x87\x11\x7e\x48\x96\x40\xae\x98\x39\x98\x03\x16\x1d\x50\x53\x8f\x3d\x81\x3b\xbd\xda\xd5\xf8\xbd\xef\xfe\xc7\xd3\xb3\xfe\x22\x06\x28\x1e\x04\x08\xf3\x43\xa2\x46\xa1\xf7\xe7\xe7\x7e\xdb\xf9\xf0\xe9\xc9\xfe\x93\x6f\x58\xf9\x35\x4c\x56\xee\xcf\x58\xa1\x96\x19\xc8\xca\xa2\x5e\x09\x22\x39\x89\x4d\x6b\xf8\x40\x38\x49\x33\x56\x69\xcc\x81\x64\x58\x83\x5a\xad\x20\xdb\x08\x59\x4d\x81\x98\xd2\x44\x70\x5e\xdc\x1a\x83\x39\xad\x5d\x5c\x48\xe3\x6c\x9e\x99\xc0\xad\xcc\x51\x39\x75\xad\x48\x5f\x43\x89\xb9\x14\x47\x6d\x49\x8b\x1f\x0d\x98\xd0\x22\x6d\xcb\x24\xa3\x65\x6d\xb4\x3c\x3d\x8b\x2a\xaa\x37\xe5\xbf\xb2\xb1\x54\x80\x77\xe4\xbb\x84\xf9\x39\xeb\x69\x3c\x3c\xf2\x96\x40\xb0\xad\xf8\xcb\xd5\xd5\x1b\x38\x55\x9a\x1f\xde\x9d\xc1\x2f\x6f\x7f\x3a\x8a\x2d\x35\x25\x3c\xe7\xf7\x61\x4b\x0b\xdd\xe8\x62\x5f\x93\xb6\x5a\x24\xf9\x3c\x28\xee\x8d\x26\x01\x6d\x74\x2a\x9a\x0f\xa0\x4c\x0f\xa4\xe7\x92\x00\xf9\xb0\xb8\x0f\x53\xb0\xe5\x90\x57\x6f\x2e\xdf\x45\x1a\xf1\x2f\xbf\xfc\x20\x34\xb6\x4c\x91\xc3\x72\x47\xe2\x2d\x35\x7b\x3d\xe4\x5c\xc8\x1c\x2b\x2b\x57\x12\x35\x9c\x3e\x7f\xf5\xe2\x2c\x02\xd1\x82\x99\xc5\x6e\x04\x5b\x46\xa9\x31\xb3\xf0\xcb\xdb\x57\x53\x78\x06\x59\x21\xa9\x6f\xe2\x3a\x32\x1f\x36\x06\x9d\xb3\xf2\xfc\xd5\x8b\xd6\xe9\x51\xb0\x22\xcf\x8d\xf8\xaf\x50\x82\x7d\x06\xef\x8f\xdd\x4a\x41\xeb\xcd\xe8\xae\x85\xc5\xad\xd8\x1d\x5d\x68\x6a\xdc\x59\xe8\x8e\x05\x7a\xfe\xea\x05\xb1\x14\x0d\x31\x30\x41\xf2\xba\x18\x3f\x1e\xd1\x79\x83\x49\xef\x0e\xa4\x8e\x17\x9d\xab\xcc\x4c\x65\xbd\x32\x53\xa9\x66\xe4\xca\x60\x6d\xcd\xcc\x8f\x70\x2e\xf2\x5c\x13\x07\x57\xeb\xd9\x28\x73\x96\xc9\x7c\xd8\x98\xbf\x11\x76\xc3\x12\x91\xa8\xd6\x9a\xde\x79\xa5\xcc\x8b\x1e\x14\x32\x2b\x7b\x4f\x3c\xb7\x3a\x4a\xef\x46\x19\x78\x69\x40\x55\xc5\x0e\x2a\xc4\x9c\xec\xf3\xaa\x05\x2e\x0d\x79\x2c\x32\xc7\xb8\xe4\xf7\x02\x1d\x41\x24\x02\x7b\x6e\x76\xc6\x62\x69\xc6\x91\x87\x66\x1c\xe8\xf3\xc3\x90\x8c\x26\xf4\x9b\x74\x5b\x0f\x8a\x6c\x26\x73\x58\x10\xd1\xf7\x3f\x31\x71\x17\x0c\x63\x48\x9e\x5b\xba\x35\x55\xc6\x5c\xee\x04\xd6\x31\x18\x53\xbe\x12\x56\xde\x22\xa9\xa8\x96\xbb\xf6\x18\xeb\x1e\x3a\x6d\xd4\xf6\xdc\xaa\x99\x67\xa1\x73\x7a\x7d\xae\xaa\xf3\x2d\x2e\x67\xbf\x73\xb0\xcf\x1b\x5d\x98\x83\x2b\x10\xac\x31\xb9\xf8\xc6\xa9\x18\x62\x4b\x21\x2b\x7a\x8c\xeb\xda\x68\x79\x94\xf6\xa3\x34\x96\x37\x97\x9e\x70\x2d\x11\x0f\x9a\xca\x13\x9a\xd2\x7c\x36\x3b\x99\x12\x4b\x08\x7b\x1a\xd6\xe4\x2c\xbc\x38\x99\x9d\xc4\x67\x82\x75\xd6\x33\xae\x43\x1a\xf3\x30\xd4\xe3\x3a\x34\x5a\xda\xa0\x46\xb7\xd2\x6e\x5c\x8c\xa2\x35\x9a\x5a\xc9\x9c\xe6\xcd\x56\x92\x9c\x87\xa3\x2a\xe9\x67\x6a\xd9\xd7\x44\xac\x9d\x1c\x4b\xa0\x83\x35\x8a\xf9\x57\xac\xda\xfa\x5e\xae\x0b\xa3\x73\x29\xce\x39\x48\xce\x54\x89\x24\xc3\x6e\x7d\x95\x2e\xd9\xcb\xdf\xd5\x38\x33\xcd\x92\x5b\x08\xe3\xbd\xcd\x25\xe6\x40\x31\x1a\x74\x60\x45\x56\xc4\x5b\x2c\x54\x8d\x7a\x5a\xaa\x7f\xca\xa2\x10\x53\xa5\xd7\x33\xac\xce\x7f\x79\xc7\x6c\x3a\xfb\x1b\x2e\x67\x64\x5a\x67\x3f\x52\xd4\x6b\x3e\xa8\xd5\x07\xfe\xf9\xf3\xab\x9f\x5f\x7e\x60\x47\x73\xd4\xac\x22\x2d\xef\x33\xbd\xe9\xd4\x27\xfb\x5d\xba\xb2\xcd\xeb\x4d\x3d\x16\xf4\x4f\xff\x43\xec\xbc\x88\x4f\x87\xf9\xe2\x6f\x5a\xd4\xe4\x4b\x3b\xfe\x57\x1a\xca\xa6\xb0\xb2\x2e\xfc\xb2\xb9\x44\xc5\x28\x1e\x30\x7d\x26\x78\x56\x81\xd0\x4b\x69\xb5\xd0\xbb\x73\x23\xff\x89\x39\x87\x42\x3e\xfc\xdf\x41\xd5\x94\x4b\x24\xe7\xce\xf3\x90\x24\x2d\x79\x90\x8a\xfc\x75\x0e\xef\xb9\xed\xaf\x43\x24\xfc\xd0\x6b\x33\xa8\x0f\xb9\x09\x2c\x7a\x83\x1d\x89\x30\xfc\xfc\xfe\xad\x01\x46\x6b\x04\xfd\xe8\xe3\xc2\x0b\xd7\xf8\x41\xd1\x85\xeb\xf2\xd8\xe0\xc2\xf5\x1e\x19\x5b\x44\x46\x81\xde\xdf\x67\x08\x2d\x86\x34\x5c\x21\x33\xac\xc8\x65\xcc\x32\xa5\x59\xb1\x59\x15\xe5\xdf\xd4\xf9\x1d\x8b\xbc\x6f\x65\xda\x75\xbc\x0a\x49\xa7\x4e\x84\xe1\x7d\x85\xe0\x5b\xa9\x15\xe9\xcd\xd7\x97\x57\xe4\x38\x78\x18\xf9\x51\x7d\xf9\x93\x47\xe9\xb0\x93\x4e\x78\xbd\x8a\x7e\xdb\x7d\x4a\xe3\x43\xe2\xdf\xdd\xeb\xb8\x77\x41\x12\xfb\xc7\x1f\x63\x65\x20\xe0\xfd\x85\x84\x20\x0c\x3f\x4e\x0a\x7c\xeb\x07\x89\x81\xef\xf3\x58\x39\xf0\xdd\x47\x0a\xc2\x3e\x17\xfc\x06\x92\x10\xe3\x25\x72\xd0\x98\xe8\xe4\xe1\x5a\x2c\x81\x53\xb3\x80\x77\x16\x35\x11\xd7\x48\xdb\x1a\x7a\x9f\x94\x4f\xf8\x7e\xb9\x4b\x83\x1d\xe2\xf5\x1b\x84\x69\x8c\x6b\x7e\x2c\x54\x46\xd0\x55\x88\x93\x1a\x83\xda\x40\x1a\x03\x71\x12\x4e\xcb\xb5\xa4\xd1\x38\x11\xe6\x73\xc0\x24\x3d\x9c\xa8\xae\xb5\xfa\x3b\xf5\xad\x29\x34\xe2\xe0\x38\x98\x70\xe7\x6f\x52\xc3\x4c\x15\x05\xb2\x2b\xda\x22\x8b\xeb\x28\xcf\xdb\xed\x76\x5a\xee\x38\x7b\xef\xa1\xb9\xcc\xff\x2d\x6a\xa2\xfb\xb9\x5a\xf1\xb7\x16\xca\x31\x51\x7d\xe9\xe9\x43\xe4\x7b\x74\x4c\xfd\x01\x46\x44\xd5\x8b\x7b\xe3\xdf\xae\x20\xa6\x58\x7d\x21\x61\x4c\x51\x18\x27\x90\x49\x8f\x07\x09\x65\xd2\xef\xb1\x82\x99\x80\x18\x29\x9c\xc3\xeb\xfe\xd9\x05\xd4\x31\xf9\x4a\x56\x18\x62\xf6\xb2\x56\x46\x2c\x29\xcc\x55\x3b\x51\xd8\x5d\xbb\xf3\xc5\x8d\xd7\xf2\x16\x0d\x94\x42\xdf\xa0\xad\x0b\x91\xa1\x01\xd1\x8a\x59\x53\x91\x3e\xcf\xd3\xd4\x9a\x02\xd3\xd4\xbc\xf9\x46\xe2\xe3\x80\x4a\x34\x47\x6d\xd4\x5b\x3f\x7c\xcf\xa1\x0b\xc9\xbb\xce\xfe\x1e\xbc\xc5\x0c\xe5\x6d\x4c\x30\x20\x2c\xb1\xc2\x95\xcc\xa4\xd0\xbb\x90\x80\xf7\xf3\xe9\x66\x2b\x04\x73\x46\x30\xa9\x99\x46\x8b\x6e\x1b\x2c\x74\x0a\x80\x39\x44\x09\xbf\xa6\x6b\xb4\xb4\xae\xa7\x67\xbd\x20\x33\x53\x65\x89\x55\xee\x12\x32\xe7\xf0\x0b\x2b\x21\x9f\xce\xe7\x1d\x32\xd2\x84\x15\x6e\x13\xfd\x03\x97\x85\xda\xba\x59\x74\x80\xe9\xee\x94\xa4\x81\xc6\x90\xf3\x70\xbd\x46\xeb\x69\x13\x66\xfd\xa6\x59\x16\x32\x7b\x23\xec\xe6\xf4\xec\x7a\xc2\xfa\xb0\x52\xb6\x0b\xce\x65\x86\x90\x16\x5b\x34\x85\x4d\x46\x8d\x93\x72\x4a\x97\x37\x66\x44\x51\xa8\xad\xd7\xa1\x56\x41\x53\xe7\x84\x7a\x07\x20\x93\x4c\xd4\x62\x29\x0b\x69\x39\xf1\xcd\xb1\x50\x63\x1b\xcd\xab\xde\xb0\xd6\xe7\xcd\x99\xb5\x5f\xb3\xb6\xf9\x41\x45\x16\x90\x99\xc3\xf3\xd8\xf8\xfb\xaf\x3f\x76\x56\x7b\x1a\xe6\xfd\xe9\x8f\x5d\xde\xf8\xd9\x85\x0d\xe4\x5d\x84\x6c\x6c\x26\x8a\xac\x29\x08\x79\xc2\x4e\x94\xaa\x71\x4e\x93\x11\x05\xc2\xad\x28\x1a\x04\xab\x45\x65\x56\xa8\xb5\xeb\xd1\x5d\x04\xcf\x84\x2d\x8d\x5e\x2b\x8b\x70\x0e\xaf\x6c\xb2\x4b\xb3\x44\xbb\x45\xac\xe0\x62\x7a\xc1\xc4\x7f\x3a\xbd\xe8\x82\x79\x79\x47\x5d\x1c\x47\x25\x23\x4b\x03\x77\xdc\xa1\x6c\x11\x97\x06\x2e\xa6\xff\xf1\x1d\x35\xad\x52\xb6\xed\x02\x74\xfd\xb7\x01\x01\xee\xf1\xff\xe0\x6e\xba\x2f\x2a\xa2\x28\x76\x50\xa3\xce\xb0\xb2\x64\xd6\xd6\x98\x64\xba\xdd\xde\x90\x45\x5d\x1a\x22\xca\x52\x18\x69\xa0\x56\xb2\xb2\x9d\xa8\x92\x1a\x19\x55\xc8\x9c\x16\x7a\x29\x88\xb4\xa6\x14\xda\xc6\x8d\x5b\x03\xdb\x0d\x45\xdb\x99\xc8\x59\x9f\xab\xd5\x8a\x38\xe7\xfa\x97\x4b\x79\xf7\xdd\xb7\xd7\x7d\xc6\x11\x16\x44\xa1\x51\xe4\xbb\xa0\x1b\x9c\xf2\x49\xc7\x67\xfe\xc9\x84\x21\xea\x66\x82\x7e\x48\x6b\xba\x80\x28\x6c\xf6\xde\x80\xd0\x08\xe4\x4c\x6a\x2c\x76\x90\x23\xcd\x48\x56\xd2\x58\x9f\xe5\x5f\x53\x88\x97\xb4\xae\xf2\xa8\x94\xba\x42\x52\x13\x07\xfc\x67\x40\x41\xad\xa0\xd6\x98\x49\x13\xad\xfd\x10\xcb\x66\x8d\x9d\x83\x9b\x69\x97\x1d\xff\x27\x98\xaa\xce\x8e\x57\xea\xd9\x38\x19\xa2\xc9\xd1\x50\x62\x17\x32\x46\x7e\xcd\x27\x7b\x02\xa7\xb1\x70\x73\xd8\xc8\x3a\xb2\x1d\x7d\xb8\xde\x8a\xa2\x40\x7b\x1d\xf6\x84\x49\xd9\x4e\xc0\x05\xb9\x76\x43\x70\xb1\x30\xb8\xbf\x0e\xec\x14\x6d\x2b\xd4\x50\xca\xf5\xc6\xc2\x56\x54\x96\x75\x76\x8d\x99\x5c\xed\x0e\xcf\xfa\xde\x7d\xd1\xd6\xf3\x78\xa0\x3c\x4f\x52\x6a\x4e\x86\x06\xe9\xdb\xce\x5a\x0f\x39\xb0\x59\x63\xe1\x8f\x0b\x16\xc8\xaf\xbf\xe6\x5f\xdf\x2f\x58\x2c\xe7\x70\xf2\xbc\xb1\x5e\x7e\x5a\x09\x96\x15\xbd\x92\x39\x68\x51\xad\x11\xe4\x14\xe1\xfd\xc5\xe4\xe9\xaf\x27\x07\x0c\x2c\x04\xbf\x29\x6a\xe9\x45\xd4\x11\x03\xf9\xcf\xc6\xc2\x82\xb0\xd8\xff\x74\x7c\x7f\xf2\x01\xd9\x92\x60\x32\x5d\x61\x47\xec\xf0\x73\x6a\xac\x89\xf3\xfe\xd1\xa0\xde\x39\x9b\x72\xfd\x36\x18\xe4\xeb\x60\x78\x57\x5a\x95\xc4\x3e\x89\xf7\x4c\x4c\xc5\x22\x76\x57\x63\x66\x9d\x9e\xac\xc5\xae\xb5\xe6\x5e\x2b\xb8\x84\x18\x45\x48\xcc\x3e\xc1\x59\x1f\x69\xeb\x09\x4e\x3f\x7d\xa3\xb5\xd8\x79\x4e\xd5\x22\xbb\x71\x7a\x42\x56\xb9\xbc\x95\x79\x23\x8a\x16\x83\x3e\xa3\x12\x75\xa3\x7c\xbe\xaa\x56\xca\xcc\xe1\xbd\x27\xd0\xaf\xf7\x6c\x18\x79\x7f\x79\xa0\x53\x9f\xf3\xc8\x87\x22\x9e\x71\xc6\x45\x58\x30\x0d\xa7\x01\x45\x51\x30\xc7\xb5\x4a\x3d\xba\x00\x64\x95\x97\x08\x6b\xf6\x04\xfc\xce\xce\xd3\xe9\x45\x07\xec\xad\x20\x2f\xdb\x8a\xe2\x39\x73\xcd\x45\xef\x33\x2d\x78\x30\x09\xb2\x8a\x78\x0e\xc8\x40\x02\x24\x3e\xfe\xff\xd0\x77\xda\xe7\xc6\x2e\x6f\x0b\x63\x50\xdb\xd3\xd8\xcf\x49\xcf\x04\x4a\x34\x46\xac\x71\x0e\x27\xef\xdc\x64\xe3\xf8\xe3\x67\x7b\x72\xd6\x27\xe3\x33\x63\xe4\xda\xe9\xb1\x00\x6f\x50\x88\xdc\x48\x8b\xfd\x46\xbd\x44\xed\x5b\xe7\xf4\xa6\xf0\x38\xeb\x37\x98\x29\xed\xed\xa8\x0b\xe6\xb8\x24\x83\xef\x6a\x3b\x30\xe1\x75\xc7\xb4\xc7\xf3\xae\x31\x9d\x1f\x3d\x36\x89\xe6\xf4\x2c\x61\xa9\x7b\x36\x23\x07\xe6\x08\xf7\x45\x64\xad\x08\x7d\xa1\x78\xec\x6d\x8f\x3e\xc7\xa2\xb1\x96\x22\x0f\x89\xc5\x62\xaf\xc7\x46\x62\x11\xc0\xc8\x38\x2c\x55\x4d\x7d\x09\xfb\x2c\xb5\x08\xce\x06\xbb\x4d\x46\xd6\x22\xd1\x28\xb1\x0f\xcb\xf2\xce\x96\x85\x98\xb1\xab\xee\x62\xa2\x84\xcb\xe2\x5a\x10\xec\xc2\xe3\x2d\x56\xb6\x61\xf7\x2f\x85\x25\xa2\x37\x6e\xb6\xd2\x66\x9b\xa5\xa2\xd0\x2e\xd8\xae\x49\x84\xbb\x71\x8c\x10\xea\xd6\x96\x8d\x07\xcb\xfb\x96\x1d\xe4\x22\x81\xe8\x57\xa5\x7a\x35\x72\xfd\x2d\xb2\x36\x56\x89\xb1\x5a\x40\x88\xc2\xc3\xd4\x86\x0e\x31\xcf\xbe\x4c\x0d\x46\x41\xf3\x74\x9c\x8f\xfd\x75\x98\xd5\xfc\x71\xe6\x63\xc9\xcb\xab\xb7\xe9\xb0\x47\xd2\xb9\xbe\x84\xcc\x6d\xe4\x26\xc5\x90\x3e\x9f\xf5\xfa\xf2\x6a\xba\xb7\x38\x21\x1a\xe1\x50\x53\x0b\xe9\x7c\xcb\xc4\x8c\xdd\xe0\x6e\xe6\x7c\x92\x5a\x48\x6d\x40\x14\xaa\x5a\xbb\x98\xd3\xa8\xb2\x95\x3b\x4e\xfb\xde\xd1\xb2\xf2\x56\x06\x8f\x2b\x96\xaa\x71\x4c\xc4\xa0\x8f\xd9\xda\x2b\x6a\x94\xd0\x64\xa0\x3a\x91\xe1\x4c\xe1\x27\x79\x83\xf0\xa3\xc8\x6e\xd6\x5a\x35\x55\x3e\x81\x97\x3b\x34\x13\xf8\x8b\x90\xba\x57\x3a\x36\xb6\x7c\x90\x47\x6a\xaa\x1c\x75\xc1\xbe\xae\x9b\x72\x3a\xea\x24\x28\x1e\x1b\x5e\x33\xa1\x8d\x2b\xdf\xe3\x26\x50\x6b\x75\x2b\x73\x0c\xc4\x08\xda\x8a\x81\x1d\xc6\x89\x3f\xcf\xe1\x59\xb5\x73\x25\xb4\x1d\xbc\x7c\xad\x1c\x69\x88\x74\xbd\xcc\x46\x6d\x79\x01\xe2\x58\x8e\xd8\x5b\xe7\x3a\x4b\xe3\xc8\x46\xee\x91\x9b\x4a\x64\x94\x14\x38\xf1\xb9\xac\x8c\x15\x55\x86\x13\xd8\xa9\x06\x32\x16\x71\x13\xb0\xa2\xa1\x04\x34\x95\xbc\x03\x2b\x4b\x34\x56\x94\xb5\x0b\xe3\xbd\x1b\xde\xc1\x4f\x18\x38\x79\x21\x2c\x9e\xf0\xc4\xb1\x28\xd2\xb1\xea\x42\xd8\x95\xa2\x78\x8e\x82\x5f\x55\x99\xa6\xf4\x15\x21\x8e\x76\x5c\xab\xcb\x2e\x4b\xc8\x12\x08\xbf\x07\x76\xd8\xd3\x6f\xc7\x1e\x28\x0a\x20\x73\x2b\x34\x05\x86\xe4\x59\x8a\xc2\xa8\xa8\x1d\x5c\x26\xb6\xd8\x79\xc9\x10\xd6\x6a\xb9\x6c\x6c\x67\x67\xbe\xcb\x1c\x4e\x5a\xa2\x49\x09\x91\x1f\xa3\x59\x14\x2d\x04\xc3\x95\x13\x7e\x8a\xfe\x5d\x60\x83\xd7\x97\x57\xbf\x37\xa0\x19\xa7\xc3\xdc\xe0\xbe\xcf\x3d\xee\x83\x45\x0e\x9d\x0a\xc6\x3d\xf6\x99\x0c\xd2\x65\xd2\x07\xfc\xf0\x8a\x45\xc7\x11\x0b\x37\xe0\x40\xc0\x90\x70\xc2\x22\xc5\x61\x20\x36\x71\xeb\xb2\xf0\x38\x8d\x8c\x28\x58\xdd\xb1\x9a\x0c\x9e\x4f\xd0\x58\xc7\xf5\x9b\xef\xe8\x3b\xf0\x6e\xe5\x08\x15\x17\xc1\xa5\x92\x36\xa0\xe2\x50\x64\x1b\xaf\x9b\xee\x55\x6e\xe6\x9e\x44\xb9\x43\x6d\x0e\xef\xb9\xe5\x81\x2d\xdc\x5e\xa3\xc1\x35\xf4\x73\x5c\xf8\xc6\x03\x46\x9f\xfe\xba\xc1\x4c\x9e\x9b\xd6\x80\x38\x3d\xec\x99\xd6\xe3\x4d\x48\x74\xba\x74\xbd\x54\xe7\xb6\x71\xdb\x39\xab\x52\x27\xd3\x7e\xee\x96\x25\x4f\xe4\x39\xe6\x47\x5d\x53\xb2\xa0\x22\xcf\x19\x14\x4d\x78\xee\xa0\xde\x33\xd3\x29\xb1\x48\x95\x9f\xda\x7b\xea\x3b\xba\x1e\x69\x32\xa7\x2f\xe5\x93\x7a\x14\xc6\x39\xa4\xae\xf1\x83\xbc\x51\xd7\xe5\xb1\xae\xa8\xeb\x3d\xd2\x0f\xdd\xe3\xec\xf0\xf7\x19\x9c\x50\xbf\x6e\xb1\xc6\xca\x2a\x40\x61\x64\xc1\x71\xd0\x2d\x6a\xcb\xb5\x68\xfc\x4d\xe8\x1d\xaf\x84\xe3\x09\xb8\x54\x9a\xd3\xfa\x89\x83\x12\x36\xb6\x8c\xdf\x5c\x50\xac\xbe\x59\x5f\xa3\xe4\x82\xc6\x50\x10\x1f\x56\x89\xb5\x82\xb7\xf0\x57\xce\x09\x88\xf0\xd8\x74\x95\x68\x37\x2a\x96\xc5\x9b\x66\xb5\x92\x8e\x21\xd6\xf2\x96\x7d\xd4\x92\xed\x0b\x47\x6e\x6a\xe5\x33\x39\x1e\xc5\x43\x8c\x46\xf3\x71\x42\xd4\x9d\xd9\x12\xc3\xa4\x9d\x4a\xbb\x6a\xc5\x3b\xe9\x8d\x77\x7c\xe4\x24\x7f\x2d\x4a\x34\xf3\x4e\x25\xb6\x2f\xda\x72\xd8\x78\xfb\x1d\xf2\x7a\xd7\x34\xd6\x75\x04\x16\xfe\x6e\x70\xe7\xa9\x25\xb4\xb3\x76\x5b\x51\xf9\xf1\x97\x98\x91\x56\xbc\x76\x78\x5c\x0f\xfa\xd4\xec\x40\x0b\xea\xd0\xd7\x23\x87\xd8\x9d\xf0\xb8\x52\x9e\xe3\x1d\x29\x3e\x3a\xc4\x13\x13\xf7\x69\xd2\x9f\xe7\x7b\xd7\xe6\xd7\x1f\xce\xe6\xfb\x0c\x39\x9b\xc1\xf3\xb8\xfa\x2e\xa9\x68\x7c\x56\x31\x4c\x29\x9a\x14\xef\xd4\xb9\x4d\x03\xa9\x5b\x27\xda\x9f\xe5\xc9\xa7\x3d\xaf\x71\xd7\xcb\x4f\x6e\x44\x95\x17\xe8\x2c\x06\x13\x99\x02\x1d\x4e\x78\xda\xb6\xf1\xdf\x1b\x93\x8c\xcd\x7c\x12\xe0\x73\xa1\x73\x51\x4c\x53\xc1\xed\x4c\x16\xbe\x5a\x90\xa8\xf4\x04\x8e\x5c\xb9\x1b\x42\xbb\xd3\xf6\xab\x01\xb1\x24\xa2\x4e\x35\x96\xea\x16\x4f\x6f\x70\x37\x87\x9b\x7e\x55\x5d\xfb\x14\x1f\x07\x2c\x14\x2c\xe0\xfd\xaf\x4f\xf6\xc6\x67\xf0\xcc\x37\xdd\xa1\x23\x04\x58\xb8\x15\xf2\x6e\xcc\x4d\xf4\x60\xa8\xe7\xfb\x9b\x5f\xbf\xea\x39\x30\x95\x2c\x5a\xe7\xa5\x92\x45\x17\xdb\x9e\x0d\x60\x5b\x31\x34\x81\xc0\x94\x8e\xb1\x5c\xaf\xb3\xbe\xba\x89\x79\xf1\x98\xc1\xdc\xd3\x1a\xd2\x98\x06\xdb\xc4\xa6\x3f\x98\x15\x21\x70\x60\xe4\x36\x53\x4a\x3e\xea\x66\x64\x29\x0b\xa1\x93\x93\x69\x04\x16\xef\x44\x49\xdd\x45\x05\xff\x4b\x8a\xe1\xe9\xc5\x05\x39\xdd\x6e\xa3\x2b\x02\x93\x15\x39\xcc\x6e\xcb\xce\xf9\x32\xab\xc6\x9d\x0f\x73\x39\x75\xb7\x5f\x90\xee\x78\xb6\x0e\xd0\x33\x57\x3d\xe0\xd8\x6d\x49\xae\x8d\xe6\xc0\x25\x62\x8e\xb9\xe4\x69\x4d\x60\xbb\x91\x19\xd7\x16\x6f\x37\x5c\x01\x1e\x3e\x1d\xc2\xc3\x91\x92\x38\xd5\x38\xed\xe6\xab\xd8\xc0\x55\xb1\xb1\x7e\x39\x16\xeb\xbd\x74\x43\x1c\x3b\x8d\x96\x62\x12\xda\x5c\xb6\xf4\x9b\x38\x2d\x9c\x85\xbc\xc4\x3b\xb4\x13\x78\x53\x88\xdd\x04\xde\xa1\x96\x68\xba\xfb\x14\xbe\xb2\xce\x9d\x74\xd8\x8a\x5d\x52\x58\xe1\x40\x64\x85\x30\x86\xa2\x1a\xd2\x1f\x81\x40\xa3\x62\xc9\x1f\xf6\xe7\xe1\xfb\x27\x85\x7c\x07\x0e\x5b\xf1\x8c\x44\x05\x27\xdf\x7c\x1b\x78\xe1\xf4\x77\xdf\x7c\x3b\x7b\x7a\x71\x71\x76\xc2\x15\x29\x2e\xf6\xf4\x80\xa4\x81\x6f\xbe\xbd\x27\xc2\xe5\x56\x73\xf8\xe5\x55\x65\xfb\xfb\x3e\x84\x56\x29\xee\x06\x51\xa3\x40\xcc\x6f\x2f\x7b\xa6\x9e\xf6\xfa\xf6\x4f\x81\x85\x84\x8b\x8f\x7a\x5d\xd2\xa5\x90\xa5\xb4\x98\x9f\xfb\x21\x30\x1f\x86\x36\x62\xca\x84\xa8\x34\xf4\x6d\xb0\x2b\x57\xea\xb0\xb8\x35\x95\x1f\x34\xcc\xcb\xf5\x6d\xd3\x55\x14\xce\x5a\x45\xba\x63\xdc\x99\xb2\x52\xdc\x05\xfa\x1d\x8d\xbf\x7e\x98\xf4\x28\x3e\xe9\x74\x1f\x70\xa0\x08\xb7\x41\x15\x0e\x6d\x7a\xdb\x2f\xcc\xf7\x0b\x6a\xfd\x55\x9a\xdd\xbe\x6a\x19\x21\x13\xd5\x50\x22\xdb\xfa\x45\x76\xad\xbe\x3a\x39\xa4\xdd\x61\x54\xd0\xe7\xc7\x5a\xf4\x63\xf1\xd8\x80\x86\x62\x34\x47\x46\x71\x9d\x7d\xa1\xa0\x06\x46\xd5\xd1\xfa\xc6\xff\x42\x25\xed\x9e\x48\x77\x76\x1b\x3b\xfa\x52\x04\x8d\x79\x90\x4b\x48\x2b\xfe\x24\x8d\x9d\xc3\x7b\x8f\xd9\xa1\xba\xdb\xfd\x86\xc3\xc5\xb7\xbe\x1d\x2c\x62\x97\xb1\x11\x4d\x24\xcd\x97\x3a\xe5\x17\x11\x18\x59\xf0\xe4\x9b\x3f\xac\xda\xc9\x77\x7a\x74\xa9\x93\xef\x3f\xb6\xce\xa9\x65\xb7\xbe\x94\x7e\xae\x22\xa7\x98\x94\x63\xbf\x3c\x18\xa3\x73\x57\xf6\x94\x83\x41\x2d\x45\x11\xf8\xd7\xe5\xc8\xc3\xfe\x25\x71\x6b\x04\xf6\xc6\x75\x34\xb0\x11\xb7\x98\x1c\x8b\x67\x40\x7e\x16\xec\x36\xb0\x27\xdf\x83\x1b\xf5\x64\x04\xf7\x8e\x7c\xd7\x52\xec\x62\x69\x0e\xef\xb9\x6a\x5c\x37\xe4\xc9\xbc\x7a\xe1\x12\x80\x69\xa3\xe4\x2c\x7e\x1b\x70\x39\x63\x1a\x0e\x81\xb9\x73\x3e\x53\x77\x1a\xa5\x83\x80\x34\x9d\xed\xdb\x25\x42\x53\xc9\x7f\x34\x5c\x14\xe3\x0f\x0c\xb2\xf5\x66\xb3\xcd\xa8\x90\xda\x67\x0f\x5d\xd8\x40\xb4\x63\xca\xe3\x9d\x1b\xf2\x70\xfe\xe5\x90\xdd\x4c\x25\xb9\xdb\x66\x38\x83\x76\x40\x5f\x1e\x11\x60\x8f\xde\x97\x12\x5f\x3f\xfc\x38\xe1\x75\x8d\x1f\x24\xba\xae\xcb\x63\x05\xd7\xf5\x1e\x29\xb6\x7b\x0b\xfd\xb9\x85\xb6\x2d\x1d\xf6\x69\xcc\xd4\x3d\xf6\x42\xea\x12\x69\x49\x76\x93\x7a\x73\x81\x96\x0b\xa6\x43\xd7\x0a\x31\x37\x2e\x6a\xbc\xc5\x90\x85\x30\x99\xd2\x1c\x3b\xa4\x25\x18\xcb\xc6\x82\x74\x27\xe8\x23\x40\xee\xb4\x54\x6d\x9e\xf2\x10\xf3\xfb\x3c\xf8\xc7\x3d\x67\xd0\x0f\xe5\x2b\x0a\x5d\x2b\x4e\xc4\x1f\xc9\xbc\x73\xbf\x50\x0d\x33\xe0\xfb\x96\xe2\x4e\x96\x4d\xd9\x6e\xa3\x70\x87\x23\x0e\xd7\x21\x60\x03\xd7\x39\xa4\xa8\xba\xa3\x6d\x47\x4e\x37\xc6\x10\xe1\x27\x5c\x63\x95\x0b\xbd\x9b\xc0\xcb\x5a\x66\x13\xa2\x0d\x4e\xe0\x97\x2a\x53\x65\x49\xae\xe3\x73\xfe\xbf\x1b\x2b\xf8\xd3\x73\xdd\xc4\xf7\x88\xba\xa3\x41\xef\xb1\x4b\xbb\x49\x67\xf2\x83\x85\x45\x43\x4e\xa4\x5b\xb8\x85\x73\x23\xbf\xfe\xba\x43\xa3\xc5\x21\xe7\xb2\x16\x95\xcc\x4e\x4f\x9e\x05\x7e\x88\xdc\x67\xc2\x92\x76\xef\x27\x51\x9a\xb9\x6b\xcf\x83\xdc\xd7\x7a\x1e\x9d\xde\x32\xc3\x61\x1f\x11\xfe\x85\x32\xa3\x5e\x79\x81\x9b\xcb\x97\x4c\xe6\x7a\x14\x46\x56\x17\x70\xe3\x87\x95\x16\xb8\x1d\x9b\xc7\xd6\x15\x70\xef\xb1\x45\x05\x7d\x4d\x11\xfe\x3e\x83\xf6\x7c\x7d\x79\xc5\x0a\x74\xab\x45\x6d\x38\xe1\xf6\x9c\x2f\x48\xe1\x2b\x75\xdc\xa6\xcb\xb5\xcc\x5d\xa1\xe0\x75\xd3\xd0\xa3\xcb\xc6\xb9\x1d\xc7\xb0\x9b\x13\xe1\x85\x34\xab\xe0\xda\xf0\x02\x2d\x42\x2d\x33\xae\xf2\x8d\x87\x8f\xfc\xfd\x39\xec\x35\x0c\x5f\x9e\x13\xc1\x8d\xba\x45\x27\xcc\xe1\xb0\x1f\x21\xf3\xe8\x43\x1c\x6a\x42\x73\x3b\xda\xc8\xe7\xc0\xe6\xdd\xab\x87\xa6\xe1\xb2\x8b\x83\xfd\xb0\x2d\xcf\xef\xf7\x4d\x8f\x0b\x1c\xec\xdf\x66\xbc\x5e\x08\x2b\xe6\x34\xe3\xe7\x9d\x57\xa3\xba\x06\xe4\xbb\xbd\x8f\xe1\x1e\x2b\x36\xd2\x72\x9a\x83\xad\x43\x3e\xd2\xef\x75\x1c\xbd\xf8\x45\xe6\x10\x83\xf4\xce\x07\x5a\x8f\x03\x9f\xfc\x2a\xc0\xa1\x65\xe8\xb6\x4e\x68\xbf\xd7\x23\x25\x7e\xb7\x57\x97\xe2\x30\x44\xf2\x83\x1d\x22\x7a\x83\x84\xee\x76\x6b\xeb\x61\x52\xf2\xf6\x6e\xb8\xe9\xd1\x34\xbc\x1f\x0e\x58\x73\x3e\x2b\xb7\xff\x81\x09\xba\x60\xba\x0e\x68\x7c\x8f\x73\xdc\x23\xde\x6f\x92\xd2\x71\x91\x52\x75\xbf\x69\x8f\x78\x8b\x1e\x35\xef\xed\x10\x11\xd9\x7b\xb7\xdf\xad\x25\xde\x62\xa0\xb4\x13\xc6\x6d\xbe\x1e\x34\x62\xfe\xac\x17\x33\xee\x21\x9b\x45\x3a\xe3\xca\xa7\x29\x64\xfe\x9b\x58\xb4\xa0\xdd\xc6\x59\x32\xdf\xfa\xb4\x55\x66\x93\x07\x18\xb5\x7d\x4d\xca\x51\xd8\xca\xfe\x75\x8c\x51\xf3\xbd\xc9\xaa\xa5\x46\x31\x74\x1f\xcc\xaf\x05\xcb\xe4\xda\x7c\x05\xc2\x7c\x15\xb0\x48\xd6\xa9\x6f\xc8\xc2\x2c\xf7\x55\x89\xcc\xf7\xd5\xc8\xbc\x8b\x37\xbd\x1a\x54\x28\x7d\xed\x90\x5c\x7d\x94\x02\x38\x1b\xaf\x5f\x7a\xc7\xc8\xee\x81\xb2\xa7\x6f\x98\x73\xdd\x82\x76\xf5\xce\x48\x28\x51\x09\x0d\x03\x3a\x3e\xaf\x54\x33\x05\x18\x6d\x15\xe6\x3d\x1d\xbd\xb8\xb5\xbd\xfc\xfe\x4e\xa7\x4b\xab\xc4\x8e\xc4\x73\xae\x82\xbb\x0d\xe6\xfc\x25\x28\x7c\x95\x8e\xbf\xd6\xd0\x6a\x89\xb7\x38\x5c\x6e\x72\xdf\xa1\x50\xe7\x64\x37\x35\x88\xde\x59\x4d\x97\xc2\xae\xb5\x22\x6d\x10\xe1\xd1\x90\x62\xed\x06\x75\x25\x81\xed\x11\xa5\x31\x47\xd4\xf6\x56\xb2\x17\xfb\xb9\xdb\x64\xaa\x38\xce\x96\xef\x81\x60\x7f\xc8\x9f\xd8\xd6\xe1\xc4\x58\x4c\xca\xb8\x1b\x85\x0e\x6f\x3c\x78\x58\x6f\xfc\xa5\x2b\xf1\x47\xef\x1e\x1b\x37\x1b\x2e\x09\x75\x1b\x4f\x65\x63\x38\xe3\x5a\xc8\xea\xc6\x0d\xe6\x97\x63\x60\xe2\x71\xab\x22\x64\xbf\x20\x6e\x51\x65\x45\xc3\x47\xd8\xe3\xa1\x40\x9e\x48\x38\xed\xe7\xb7\xca\xbc\xc4\x38\x97\xb3\xfd\x78\x70\x4e\x75\xac\xd5\x4c\xeb\x36\xf7\x43\xd4\xc1\x13\x7a\xc9\x22\x87\xfb\xac\xdc\xcc\xf2\xa0\x93\x1d\xf8\x0e\xb4\x4a\xf9\xb3\x8f\x58\x59\x69\xc3\x85\x9f\x78\x27\x8d\x9d\x80\xb4\x50\x29\x20\x4f\x19\x75\x1b\xbd\x2d\x5d\x59\xa2\x96\x21\x83\x96\x64\x09\xe3\x1c\x8f\x4c\xb1\xe5\x96\x39\x70\xcd\x56\x77\x8a\x34\xab\x5e\x0d\xb0\x5f\x2e\x9f\x3b\x17\x2b\xa5\x19\x57\xb7\xe7\x53\xb7\xab\x7c\x64\xe0\x9f\x18\x8c\xdb\xe9\xdd\x1f\xf8\x32\x16\x7e\xb8\xa3\x59\x85\xda\x1a\x77\x5c\xd1\x27\x03\x44\x05\x58\xd6\x76\xd7\x97\xaa\x40\x70\x9a\x7f\xe0\x61\x66\xe0\x0e\xf8\xc0\x4a\xf7\x1c\xa1\xe2\x9d\x95\x97\x34\x44\x4a\xa2\x55\x53\x9d\x9e\xcd\xe1\x4f\x1f\xfb\xf7\xb9\x4e\xdb\x56\xc7\x6f\x22\x3c\x24\x31\x5d\x1d\x37\xcc\x83\x43\x6d\xfa\x8b\x38\xd4\xa6\x4f\xef\x9e\x52\x1f\x9a\x6e\x58\x84\xb1\xd3\x8e\xea\x76\xd4\x81\xa8\x3e\x5a\x53\x69\xde\xb9\x9b\x6a\x4e\xd5\xca\xe1\xf8\xfd\xd7\xf7\x0e\x48\x4e\xc0\x1c\x4e\xbc\x66\x61\x09\x0c\x3a\x45\x40\xb8\xf5\x46\xad\xe0\x1e\x18\xad\x9c\x4c\x8f\x1e\xac\x4a\x56\x6d\x91\x3c\xef\x37\x6c\x17\x6e\xd1\x3e\x1e\x6a\xd6\xe2\xb2\xe8\xbf\x38\xd4\xa5\xa5\xd9\xa2\xff\x62\xc0\xed\x1d\x5a\xd9\xc5\xbd\xeb\x3d\xd6\x79\xdd\x37\x36\x9c\x87\xd9\x86\xf3\x51\x5c\x9d\x1f\x2a\x37\x2b\x5e\xa0\x3c\x96\x5a\xfc\x7b\x32\x34\xfb\x28\x8e\x76\x71\x7b\x1e\xd1\x43\xf2\x36\xfb\x71\xdc\x23\x53\x38\x7b\x80\x46\x66\x73\xee\x73\x03\xc2\xdf\xe7\x4f\x8b\x1f\x70\xa3\x7c\xd5\x3a\x9f\x9c\x0d\x8a\xf7\xf7\xc9\x65\x95\xed\xf5\x15\xa3\xdc\x29\x97\xfa\xa9\x20\x5c\x60\xc1\x06\x3e\x42\xe3\x1b\x76\x65\x66\x82\x2d\xde\x33\x0f\xde\xd3\x59\x22\x59\x53\x02\xf8\x40\x9f\x6a\xef\x1a\xd0\xd9\x0c\x5e\x8b\x72\xcf\x4c\x32\xfa\xdb\x0d\x56\xc1\xf3\x77\x15\x77\x7e\xf8\xfe\x9d\x1d\xfd\xa1\xef\x3d\xb2\xf0\x22\x49\x9d\x0e\x8d\x3a\x44\xa4\xe0\x3f\x8d\x19\xf8\xc8\x05\xc3\xf1\x22\x08\x77\x65\x00\xfb\x1d\xfe\x2a\x15\x1e\x8a\x0f\xd8\xa7\x7c\x10\x8e\x83\x8c\x1c\x7e\x5c\x22\xab\x83\xd1\xbb\x7f\x34\x42\xa3\xaf\x01\x70\xf7\x48\x76\xce\xc8\x8c\x1e\xdb\x30\xa0\x57\x25\xd7\x5c\x74\xc7\xe6\x4b\x9a\x3a\xa3\xfe\x28\xaa\x0a\x75\x67\xd4\x78\x33\x42\x3b\xd8\xa4\xef\x52\xf3\xee\x8d\xe0\xa2\x29\xa8\x50\x68\x78\xfa\xcd\xc5\xc5\xdd\x77\x7f\xb8\x38\x8c\xd6\x92\x47\x1a\x89\xd6\x3b\x95\x49\xbf\x38\xc6\x91\x81\xab\xd4\xbb\x58\xfd\xde\x80\x71\xed\x36\xaa\xc4\x5a\xac\xb1\x53\xa8\x03\x6f\x94\xbf\x7e\x95\x2b\xfa\x4a\xc1\x05\x3f\x27\x7c\x66\x64\xad\x45\x79\x32\x81\x13\xbb\x95\xd6\xa2\xa6\xc7\x5c\x9a\x4c\xe9\xfc\xe4\xc8\x21\x1c\x37\xa2\x49\x2a\x3b\x0f\x2e\xef\x6f\x7a\x9d\xf3\x38\x0e\xeb\xf6\x39\xc6\x19\xdd\xd6\xc7\x16\xac\x07\xfb\x21\x74\x09\x9d\x7e\xd3\x9b\xa7\x1f\x90\x88\x4b\x08\x03\x8b\x94\x4c\xfb\x4d\x13\xaa\xc0\x22\xa5\xd1\x00\x54\x47\x12\x82\xe8\x9e\x1e\xe7\x94\xa4\x77\x60\x0f\xfb\x25\xde\x2d\x89\xd0\xbe\xa0\x7f\xf2\x28\xdf\xe4\x11\xf7\x66\x0f\xa6\x8c\x3f\x8b\x87\xf2\xa0\x1b\xb5\x8f\xd8\xd5\xf0\xf7\x78\x3f\xe5\xd3\x93\xff\x0b\x00\x00\xff\xff\xab\xc6\xb5\xf8\x95\x63\x00\x00" - -func utilityMetadataviewsCdcBytes() ([]byte, error) { - return bindataRead( - _utilityMetadataviewsCdc, - "utility/MetadataViews.cdc", - ) -} - -func utilityMetadataviewsCdc() (*asset, error) { - bytes, err := utilityMetadataviewsCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "utility/MetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x6d, 0x67, 0x22, 0x2e, 0x22, 0x41, 0x93, 0x6b, 0xed, 0xd6, 0x12, 0x5d, 0x31, 0x50, 0x78, 0x22, 0xd3, 0x14, 0x70, 0x8a, 0x22, 0x4a, 0xfd, 0x1c, 0x65, 0x29, 0xc4, 0xe1, 0x33, 0x18, 0xf6}} - return a, nil -} - -var _utilityNonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x4f\x8f\xe3\x36\xb2\xbf\xeb\x53\xd4\xeb\x00\x6f\xba\x03\x8f\xfb\x1d\x1e\xf6\xd0\x40\x30\x99\xa4\xd3\x0b\x63\x17\x9d\x60\xe2\x49\x0e\x8b\x45\x4c\x4b\x65\x9b\x3b\x14\xa9\x21\x29\x3b\xde\x4e\x7f\xf7\x45\x15\x49\x89\x92\xe5\xfe\x93\xec\xae\x0f\xc9\x58\x16\x8b\xc5\xaa\x5f\x55\xfd\xaa\xd8\xd7\x5f\x7e\x59\x14\x5f\x7c\x01\xcb\x1d\xc2\x9d\x32\x07\xb8\x37\xfa\xed\x5d\xab\xb7\x72\xad\x10\x96\xe6\x13\x6a\x70\x5e\xe8\x4a\xd8\x8a\x5f\x5c\xdd\x1b\x9d\x7e\xe7\x9f\x57\x50\x1a\xed\xad\x28\x7d\x51\x90\x14\xa9\x3d\xda\x8d\x28\x11\xfc\x4e\x78\x10\x4a\x4d\xc9\x4c\x6b\x1c\xb8\x9d\x69\x55\x45\x0f\x36\xc6\xd6\xe0\xcd\xbc\x58\x6c\x40\x40\xeb\xd0\xc2\x41\x68\xef\xc0\x1b\xa8\xb0\x51\xe6\x08\x02\x34\x1e\xe0\xfe\x6e\xd9\x09\x98\x81\xdf\xa1\xb4\xdd\xf7\x24\x4f\xd6\x8d\xc2\x1a\xb5\x67\xa5\xfc\xb1\x41\x07\x15\x6e\xa4\xc6\x0a\x76\x68\x31\x1e\xe6\x6e\xb9\x02\x8b\xce\xb4\xb6\xcc\x54\x0f\x27\x29\x8d\xc5\xfe\x47\x12\x11\x8e\x64\xb1\xb1\xe8\x90\x34\x13\x9a\x95\x91\x9a\xb4\x00\x57\x0b\xeb\x3b\x4d\xe6\x61\x8b\x6f\x8d\x52\x58\x7a\x69\xf4\x0a\x3e\x9c\xd9\xa9\xdf\x84\xe4\x3b\x6f\x2c\xba\x68\x82\x37\x2e\x1e\x37\x49\x99\x17\x0b\x0f\x52\x97\xaa\xad\xf8\xa5\x0d\x1e\x60\xd3\x6a\xfe\x8d\x4d\x25\x14\xf9\x91\xf4\x31\x07\x8d\x96\x1e\xa1\x70\x52\x1d\x8b\xda\xec\x11\x3c\xd9\xdf\x91\xca\x42\x57\x60\x5a\x0f\x66\xc3\x6f\xe7\x5b\xb0\xe6\x3f\x58\xb3\x97\x15\xda\x15\xbf\xb9\xfa\x80\x25\xca\x3d\x7d\x3d\x35\x98\xe3\x73\xb8\xfc\x09\x54\x58\x2a\x61\x31\x53\xee\x20\xfd\x0e\x9c\xa9\x11\x1a\x8b\x2c\xb4\x31\x8e\x0d\x56\x49\x7e\xa3\x88\xf6\xfd\xdc\x4a\x8b\xac\x54\x6f\x3d\x3a\xc7\xc6\xf0\xd9\x4a\xb4\x5e\x48\x0d\x5a\xd4\x52\x6f\x59\xd0\x1a\x77\x62\x2f\x8d\xed\xc0\xea\xe6\xac\xd2\x11\x48\x05\x87\x8d\xb0\xc2\x23\xac\xb1\x14\x2d\xa9\xe9\x61\x2b\xf7\xac\xe4\x1e\x95\x69\xd0\x3a\xde\x4e\xac\xa5\x92\xfe\x18\x10\x47\x60\xe9\xb5\x0f\xba\x95\x42\x93\x5b\x40\xe8\x63\x86\x88\x0e\x6c\x2c\xc5\x0d\x0d\xf3\xcd\x11\x5a\x47\x7a\x26\xb3\x39\xd6\xb8\x7f\x65\xc6\x8e\x76\xe4\x07\x72\xf5\x10\x45\x8e\xb7\x74\xa8\xab\x82\x56\xd9\xe0\x84\xe4\xc5\x06\xd1\xbe\xf5\xe6\x2d\xfd\x7f\xc6\xf6\x25\x87\x92\x29\xf4\x96\x0e\xc1\x9b\x50\x54\xb0\xe9\x05\x94\x48\x52\x15\x28\xac\xb6\x68\x8b\x13\xc0\x2e\x0d\x6f\x95\x70\x4d\x68\xd2\xc6\xef\xd0\xb2\x8a\xb3\x2e\x2c\x39\xc4\x1c\x1d\xfb\xc8\xa2\x2b\x2b\x02\xe4\xee\xef\x96\xc5\xc6\x9a\x3a\x46\x65\xef\x3e\x8e\x53\x0d\x25\xe5\x03\x7a\xb1\xc2\xc6\x38\xe9\x3b\xfb\x82\xd1\x83\xbd\xde\xb8\x62\xe8\xfb\xd2\x90\x91\x7d\x80\x85\xb7\x42\xbb\x0d\xda\x79\x51\x7c\x79\x5d\x14\xb2\x6e\x8c\xf5\x70\xf1\x93\xc4\x03\xc5\x98\xda\xa3\xbd\x28\x8a\xeb\xeb\x6b\x4e\x6c\x35\x81\x25\x4f\x1a\x73\xf8\x9e\x37\xca\x9f\x11\x3c\x95\xe2\x35\x51\x1c\x7b\x29\x79\x96\xb7\x1d\xa0\x3b\xe4\x12\x0e\x7d\xe9\xfa\x24\x78\x7d\x7d\x5d\x88\xb2\x44\xe7\x2e\x85\x52\x57\x7d\x62\xea\x13\xe3\x38\x85\xde\x40\xae\x38\x3c\x14\x05\x00\x00\x69\xf2\x5e\x03\x6a\x2f\x7d\xd4\x61\x63\x6c\x08\x6f\x76\xef\x0e\x3b\xdb\x0b\xc5\x51\x1c\x40\xc1\xf6\x17\xf0\x93\x68\x95\x67\x49\xb9\x3a\xb9\xb8\x9f\xe3\xea\x97\xed\xd7\x36\x95\xf0\x11\xbc\xe1\xdf\x80\x7b\xc6\x3c\xbf\xc6\x16\x7e\x72\xbb\x8f\xbc\xa8\xdf\x6c\xbc\x53\x4c\x57\x14\x50\x5b\xcb\x89\x3f\x29\xc8\x7b\xc6\xe5\x4f\xed\xf0\x3d\x49\xe8\x37\xf8\x6e\x1f\x1c\x27\xfc\x69\xbd\xc1\x5a\x7a\x38\x10\x24\xc9\x8e\x35\x7a\x51\x09\x2f\xc8\x8a\x29\xa7\xbb\x78\xca\xaa\x93\xb7\x08\xf1\x6f\xb4\x3a\xc2\x1a\x59\x84\xc7\x0a\xd6\x47\x86\x75\xf2\xc9\x8a\x9e\xdf\xdf\x2d\x83\xbe\xd5\xaa\x83\x78\x27\x27\x04\xa3\x86\x15\xbf\x22\xd6\x0a\x57\xe9\x18\x14\xe1\x1b\xb4\xa8\xa9\x18\x98\x14\x52\xe1\x0c\x07\x71\xaa\x12\xc1\x3b\xb7\x40\x63\xa3\x4f\x5c\x23\xea\x9a\xb2\x0a\xa3\xa1\xd7\x4f\xc6\x27\x7d\xa4\xb9\x37\x59\xea\x77\x9d\xe4\x94\x2a\xf9\xb4\xa5\xa9\x02\xd8\xa8\x6c\x64\xaf\x83\x89\x0e\xdb\x09\xda\x12\x4b\x29\x54\x7f\x94\xe0\xa6\x4e\x62\x3c\x4f\xb6\x19\xd9\x7d\x67\xaa\x10\x7a\x64\x52\xb2\x05\xbd\xb7\xc5\x10\x70\xa7\x56\xe9\xa4\x0d\x4d\xc0\x9e\xae\xc5\x27\x74\x94\xdb\x9d\x09\x5a\xf9\x9d\xb4\xd5\xdb\x46\x58\x7f\x04\xa9\x2b\xfc\x95\x0c\x42\x2e\xac\x8d\x96\x9e\x75\x4f\x20\xee\xc4\x11\xd4\x3e\xb7\x68\x8f\xfc\x63\xb4\x77\x0f\x90\x94\xdc\x02\x5a\x87\xb6\x9b\x27\x21\xa7\x20\xdd\xf7\x01\x50\x5d\x52\xe1\xb8\x81\x1f\xbd\x95\x7a\x3b\x03\x59\xdd\xc0\xc7\x85\xf6\x7f\xfa\xff\x19\xb4\x6d\xfe\x8d\xb7\xb8\x81\xf7\x55\x65\xd1\xb9\x77\x57\xb9\xd8\x04\xe8\x2b\xd8\xcb\xc0\x00\x60\x88\xbb\xcb\x5f\x40\x6f\xfc\x07\xdc\xdc\x80\x68\xfd\xee\x32\x3c\x86\xdf\x42\x90\x5c\xc1\xff\x3e\x8c\xd3\xd0\xfc\xfe\x6e\xf9\x18\x36\x79\xe0\xff\xd2\x87\xe3\x64\xa8\x78\x10\x3b\xdf\xa2\x5f\x1e\x1b\xbc\xbc\x9a\xcb\x8a\xfc\xb4\x91\x54\x21\x48\xff\xf8\x82\xac\xd2\x81\xe2\x03\xfa\xd2\x9d\x2a\x3e\xe3\x6f\xef\xe6\x22\x9c\x31\xec\xfe\x58\x4c\xc6\xb0\x74\x5d\xc8\x71\xe0\x8a\x90\xf0\xe8\x79\xca\x83\x7a\xd6\x2d\x94\xba\x92\xa5\xf0\x29\x2a\x49\x75\xd2\x2e\xa8\x34\xcb\xf8\xd1\x09\xfd\x89\xbb\x85\x80\xeb\x24\xb3\xe7\x67\x03\x98\xd0\xb2\x8f\x1f\x17\xb7\x49\x44\xcf\x8b\x26\xd7\x42\xeb\x5a\xa1\xd4\x71\x10\x41\x43\xcc\x70\x96\x39\xd1\x47\x3a\xd0\xc6\x07\xca\x46\xfe\x37\xad\xf6\x6f\x1c\xf3\x44\xb1\xc5\x19\xac\x48\xfc\xaa\x0b\xa2\x95\x96\x6a\xf5\x1c\x16\x53\x6a\xd5\x2f\x46\x23\x6d\xd2\x83\x71\x06\x4d\xa4\x87\x64\x81\xf4\xd6\xd5\xa4\xe3\xce\x79\x2d\x72\x00\xac\x98\x68\x4c\x19\x05\x16\xc1\x8b\xe8\xfe\x90\x13\xf3\x8d\x9e\x76\x61\x6e\xf5\xd3\xb5\xff\x36\x5f\xcd\x5e\xe7\xac\xdb\xa4\xc3\x8b\x9d\xe5\x4d\xee\xaa\x5e\xbf\x33\xce\x5a\x84\x7e\xa2\xe2\x3a\xbc\x16\xe5\xa7\x03\x51\xe8\xb7\xc4\xb9\x84\x97\x81\x14\x9f\xe8\x76\xda\x06\xc0\xe2\xfe\x6e\x79\xc3\x15\xeb\xe1\x31\x97\x3e\x68\x09\x63\x51\x73\x50\xb7\x81\xfd\xc7\xc6\xef\xac\x11\x26\x36\xe2\x7d\x72\xd6\x34\x1f\xd3\xa7\xb4\x79\xab\xe5\xe7\x16\x61\x71\xcb\x67\x4b\x1c\x35\xbd\x91\x6f\xa3\xd0\x67\x16\x1d\x4a\x99\x4e\x43\xa2\xf5\xa6\x16\x5e\x96\x1c\xd6\xb8\xe7\xaa\x21\x6b\x04\x91\xe9\x4c\x10\x72\xde\x9a\x63\x2c\xdb\x79\xdd\xe2\x16\x42\xb2\x01\x44\x82\x8f\x4c\xbe\x90\x23\x6e\x12\xb0\xe0\x0c\x21\x33\xc2\x4c\x23\xd2\x9b\x82\x3b\x51\x61\xb7\x2d\x77\xbc\x53\x87\x0b\x8b\x53\x03\x7a\x9b\x34\xba\xec\x0f\x0c\x5f\x81\x43\x95\xa7\xed\xe1\x73\x7a\x76\x35\xb4\x4a\x69\x51\x78\xfc\xae\x6e\xfc\x31\x23\xeb\xe1\x29\xab\x84\xf4\xd3\xa0\x89\x8b\x16\x4c\x85\x9e\x7b\xdd\x13\xaf\xa4\xe8\xb4\xe8\x5b\xab\xb9\xa4\x27\xf2\x20\x94\x42\x9b\x15\x78\x3c\x06\x4e\x76\x60\xd6\xe6\x06\x22\xbe\x0e\xeb\xe1\x7d\xaf\xca\x38\x41\x70\x73\x15\x75\x90\xee\x2c\x34\xa8\xbc\x4e\x1e\xf6\xf2\xea\x06\xbe\x7e\xe8\xbf\x3f\x66\xa5\x93\x3e\xdc\xe0\x0e\x1f\xd1\xc7\xa2\x6b\x95\xa7\x12\xfa\x57\xd4\x5b\xbf\xbb\xbc\x82\xaf\xbe\x82\xff\xbb\x81\x0b\x1e\x3c\xf0\x4e\x55\xae\x2c\x87\x0a\x73\xce\xc6\x1f\xff\xe7\x62\x20\xf0\xb1\xe8\xff\x35\x38\xff\x9f\xd1\x3b\x48\x0d\x17\x47\x5c\x62\x45\x61\xa8\x50\x49\x8b\xa5\x57\x47\xb2\xde\x39\xcb\x55\x92\x15\x10\xf6\xc8\xdc\x58\x29\x70\xed\xfa\xfe\x6e\xf9\x23\x7c\xc2\x63\x20\xbf\x04\xe2\x49\xab\x75\xcc\x64\x8b\xfe\xfd\x5e\x48\x45\x5e\xff\x31\x2c\x27\xc3\x3d\x2c\x39\x9b\x05\x98\x8d\x2d\x17\x35\x78\x78\xea\x74\x1c\x67\x19\x5d\x4e\x6d\xeb\xe0\x94\x27\x87\xfb\xc6\x10\xfd\x8e\xc1\xe2\x78\x40\x60\x1a\x3e\xa4\x1a\xce\x4f\x62\x0b\x5c\xee\x8c\x71\x38\x10\xb1\x33\x07\x02\x65\xc2\xa7\x6b\xd7\xc1\xbe\x15\x36\xa8\x2b\xe2\x1c\x46\xc3\x81\xe7\x5f\x83\x7d\x62\xcd\x1c\x26\x82\x3b\x63\x01\x7f\x15\xd4\x69\xce\x40\x6e\x60\x45\x06\x5d\x31\xa5\x16\xb0\x17\xaa\xc5\x19\xac\x5b\x0f\x2b\x59\xad\xa0\x32\xe8\xf4\x9b\x30\xf6\x62\x05\x87\x01\x29\x74\x54\x17\x0e\x3b\x59\xee\x82\x01\x36\xd1\x22\x3c\xaf\x30\xc9\xb2\x92\x6b\x97\xe5\x0c\x25\xe0\xa2\xc2\x0d\x35\x8c\x17\x03\x79\x8b\x0d\xac\x83\xb5\x62\xa5\x8a\x6d\x7c\x0f\x26\x6e\x0f\x42\x04\x09\x70\x52\x6f\x55\x50\x8b\x34\xf9\x07\x81\x36\xec\x36\x90\x4a\x0b\xe7\xb0\x24\x07\xed\x50\x35\x2e\x46\xb5\x83\xc3\xce\xd0\x56\xfa\x8d\x07\xd7\x5a\x0c\x16\xf4\x69\x8a\xa3\x8c\xf9\x44\xa6\xa5\x3c\x9e\xcb\x1b\x22\xb7\x11\x56\xd4\x10\xea\x24\x05\x13\x61\x2c\x55\xf7\x0a\x9d\xb4\x58\x9d\xe4\x9a\xb8\x88\x72\x1e\x8f\x30\xab\xb4\x20\x22\x60\x6d\xac\x35\x87\xf3\x7b\x76\xd1\xe2\xbc\x6d\x4b\xdf\xf2\xdc\x30\x0e\x09\x13\x01\xb5\xf8\xb9\x45\x47\x61\x4d\x61\x31\x3f\x9b\x66\xb6\xe8\x43\x88\xc4\x5a\xbf\x8c\x9c\xa7\xab\xda\x70\x73\x8e\xbb\xbf\x9b\x0e\x21\x2d\x55\x31\xcc\x15\xd3\xb5\xd9\x40\x8d\x95\xa4\x26\xa1\x1f\x2b\x74\xd3\x84\x54\xcf\x72\x16\xdb\xa7\xbd\xd7\x94\xee\x34\x56\x1c\x16\x6a\xf8\x19\x63\x4f\x9e\x7a\xfe\x34\x5c\x48\x0d\x57\xe2\x9b\x99\xa8\xd4\xa3\x12\x87\xa0\x3c\xa5\xb7\xdd\xf2\x5c\x74\x94\x14\x91\x25\x78\x58\xb3\x09\x33\x39\x6f\x62\x65\x54\xd2\x79\xa4\x8e\x2e\xfd\xae\xa2\xc0\x34\xa8\x8a\x6d\xe2\xc0\xf1\x9d\xae\x16\x6b\xb3\xc7\x6e\x1e\xdc\xe9\x9c\x65\x70\xaa\x67\xe1\xa5\x71\x35\x1b\x46\x9c\xe7\x10\xe7\xea\xce\x0d\xf5\xe6\x48\xbc\x99\xbb\x75\x5a\xb2\xb8\xa5\x78\x0d\x94\xd5\xd2\x5b\x53\x40\x4e\x7a\x11\xd7\x9b\x04\x74\xa7\xf8\x84\xa6\x63\x64\x76\x43\x98\xae\x75\x24\x98\x26\x09\x97\xf9\x5e\x11\xa1\x54\x12\x09\x8f\xaf\xaa\x85\xb2\xa2\x12\x98\x4b\xe3\x5a\xd8\x53\xf3\xbe\x9b\x0a\x0d\x44\x2a\x89\x3c\x79\x17\x44\xba\xdc\x28\xd0\x16\xb7\x17\x27\xbb\x31\xc6\xc6\xcd\x4f\x5f\x8e\xcf\x74\xb4\x9d\x8e\x89\x1a\xc5\x07\xa1\x0d\x09\x9d\x11\x93\xa4\x61\x3b\x3b\x6e\x92\x32\x1e\x95\xeb\xf4\xf8\xca\xf0\x8c\x90\x74\x09\x46\xbf\x2f\x0e\xd3\x3c\x7f\x4c\x98\x13\xe0\x3d\x4f\x53\x22\xa2\x87\x0c\x93\xc1\x2c\xaa\x2a\xc7\xf2\xb7\xa7\x00\xca\xf3\x71\x98\x73\x2e\x7b\x08\xc6\x6d\xce\xe6\xc1\xf8\xfb\x65\x5c\x19\x10\x35\xe2\x9f\x9c\x2b\x9b\xc6\x58\x8f\xd5\xfd\xdd\x72\xc9\xb7\x3c\xa9\x28\x0b\x8e\xe9\x34\x55\x0f\x37\x40\x3d\x33\xb0\xe9\xf4\xb4\x6f\xe3\x5f\x46\x7f\x82\x90\x5a\x34\x4d\xe8\x59\xd7\xc6\x28\x14\x7c\x9b\xd2\x0d\x1b\xb8\xac\xca\xa1\xbc\x1e\xea\xa5\xa4\x2e\x01\x5c\xd0\x9a\xec\xf7\x2c\x73\x3a\x39\x61\x46\x9d\xbe\x31\x46\x8d\x68\xd1\x87\x78\xfc\x94\x34\x42\x96\x60\x17\x6d\xe5\x1e\x75\xec\x39\x5c\x3c\x78\xa4\x70\xd3\x19\x80\x47\xc2\x93\x9c\x39\x2c\xee\xaf\x41\xe2\x54\x35\xab\xf8\xe0\x6d\x8b\x24\x3b\x12\x8b\xf3\x55\xfa\xbd\xee\x3c\x74\xc6\x0b\xd1\xce\x13\x66\xee\xfd\x48\x5a\x45\xfb\x8e\x6b\xfd\x0b\x18\xaa\x74\x63\x33\x67\xe5\xf7\x2a\x18\x7a\x1c\x9b\x7f\x21\x0b\x3c\xd1\x30\x83\x45\xe1\xd2\x48\xf5\x99\x60\xec\xa3\xe7\x87\x76\xad\x64\x99\xe5\xc9\x17\x06\xc6\x73\x30\x4a\x8d\xc6\x0d\xe5\x94\x67\xdf\x5e\xdc\x32\xcc\xfe\x16\x32\xfa\xdf\x9f\x7e\x3f\xd0\x23\xa2\x2c\xbf\xe4\x44\x85\x79\x0a\xd1\x92\xb1\xe1\x3e\x84\x0b\xbe\x6e\xf0\x1f\xd0\xa7\x4b\x8b\x7e\x74\xe1\x9a\xcf\x8e\xd7\x98\xae\x14\xbb\xd6\xb8\xbb\x9d\x21\x44\x74\x37\x30\xaf\xc8\x81\xbd\xd9\x6f\x3a\x5e\x32\xeb\x32\xe3\xec\xc4\x2d\xb3\xe9\x99\x43\xd6\xe0\x3e\x9d\x4c\xcf\xe5\xd2\x78\xe5\x2b\x7d\x3a\xd9\x99\x60\x7c\x2e\x9b\xd2\xd1\xc6\x53\xf6\x57\x00\x69\x72\x20\x3c\xae\xe2\x16\x27\x8a\x78\x46\xe0\xf2\xdb\xbd\xc0\xad\xe2\x99\x06\x57\xe1\xfd\x0d\xf8\x84\xa8\xc4\xeb\xce\xaf\xe2\x04\xa6\x6a\x62\x14\x42\x1d\xc4\x31\x94\xfe\x8d\xa4\x1e\xae\x42\xe7\xa5\x16\x83\xb3\x67\xc2\xfb\x8b\x32\xb2\x7c\xa7\x69\x2d\x9d\xe3\x3b\x89\x70\x61\xd2\x3a\x6f\xea\x2e\xbb\x10\x25\xa4\xfc\xb6\xc6\x9e\x3b\x4e\xc9\x26\x89\x3b\x61\xab\xd0\x66\x11\xa6\x65\x98\x73\x8c\x48\xe6\x34\x2d\x19\x8f\xf9\x58\xcd\x27\x58\x49\xf8\xbd\x27\x25\xe1\x7b\x1c\x8d\x9a\x33\x8c\x64\x3c\x0b\x7c\x01\x27\x39\x1d\x2a\xf0\x5d\x79\x6d\x5a\x9d\xea\x6b\x98\x70\xf6\x91\x79\x0e\xbf\x29\xa5\x6b\x76\xe5\x96\xd9\xfc\x60\x4e\xef\xe4\x3f\xf1\x74\x18\xfb\xca\xec\x36\x6a\xf7\x29\x3b\xb9\x33\xb3\x82\x17\xa9\xbd\xe8\xc9\x33\xdf\xdd\xb1\xa2\x4c\xce\x25\xd3\xcc\x6c\xea\x3b\x94\x32\x1b\xf5\xbd\xfd\xdf\x13\xa4\x8a\x19\x0d\xc2\xcd\x35\xc3\x87\xe4\x34\x42\xcb\x72\xfe\x5c\x8f\x9b\xda\xd5\x54\xe9\xf4\xc6\x13\xd3\x3f\x51\x22\xeb\xf9\x93\x0d\x4a\xa4\xc4\x3b\x3f\xe7\x9b\x6e\x1c\x32\x75\x19\xf9\xfb\x6b\xc1\x4b\x7a\xd6\x33\x4d\xc2\x65\x20\xdc\xd4\x22\x68\xa9\xae\xe0\xb7\xdf\xd2\xa3\x77\xb1\x73\x90\xd5\xd5\x0d\x9c\xac\xa3\xcf\xc5\xb7\x42\x93\x55\x83\x6a\xec\xc5\xee\x5c\xc1\x82\xf9\x15\x0e\xd9\x60\x70\x0d\xdb\xb5\x63\xb5\xf0\xe5\x2e\x35\x61\xdd\x8d\x6c\x87\x83\x17\x0e\xe5\x5e\x3f\x33\x8d\xaa\x71\x8f\x73\x42\x92\x9e\x1a\x93\xbe\x62\x18\x7a\x76\x8f\xff\xce\x14\x34\x24\x38\x72\x23\xa7\xa3\xee\xc9\xf9\x81\x68\xe7\x95\x9d\xd8\xe3\x50\xf7\xd0\x08\xf2\xdf\x64\xa4\xd7\x4f\xfb\xc0\xff\xd8\x04\x16\x86\x5c\xe7\xf5\xee\x4e\x8c\xa8\x4f\x30\x03\x0a\xfb\x07\x67\xe3\x59\xfe\xd0\x1b\xbf\xec\xc6\x64\x79\x12\x19\x0d\x0a\x07\x17\xfe\x5d\xda\x18\xa5\x0c\x61\xad\x38\xa6\x66\x6b\x99\x37\x5b\x67\x68\x5a\xfc\x0b\x9a\x78\x69\xfe\x32\x98\xf5\x1a\x07\x56\x3e\x41\x59\xa6\x41\x38\x01\xc0\x1e\x00\xcc\x75\xe7\x8a\x61\xf0\x3b\x41\x90\xdc\xfe\x58\xfc\x2b\x00\x00\xff\xff\xee\x5d\xf5\x18\x51\x29\x00\x00" - -func utilityNonfungibletokenCdcBytes() ([]byte, error) { - return bindataRead( - _utilityNonfungibletokenCdc, - "utility/NonFungibleToken.cdc", - ) -} - -func utilityNonfungibletokenCdc() (*asset, error) { - bytes, err := utilityNonfungibletokenCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "utility/NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xde, 0x45, 0x41, 0xe6, 0x8c, 0xc7, 0xc4, 0xf2, 0x8, 0x8f, 0x10, 0x73, 0xca, 0xee, 0x3, 0x22, 0x4b, 0xca, 0x4e, 0x9e, 0x38, 0xda, 0xd, 0x25, 0x77, 0xa5, 0xb8, 0x53, 0x62, 0x6a, 0x17, 0xf}} - return a, nil -} - -var _utilityPrivatereceiverforwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x8f\xdb\x36\x10\xbe\xeb\x57\x4c\x5c\x20\x95\x02\x47\xbe\x14\x3d\x18\xeb\x6c\x82\xa4\x0b\xe4\x52\x2c\x92\x6c\xaf\xc5\x98\x1a\x5b\x6c\x68\x52\x20\x47\x56\x17\x0b\xff\xf7\x82\x14\xf5\xb6\x83\xc6\x17\x93\xd2\x3c\xbe\x79\x7c\x33\xda\xbc\x49\x92\x5f\xe0\xa1\xd6\x47\xb9\x57\x04\xdf\xcc\x77\xd2\xf0\x68\xe5\x19\x99\xe0\x0b\x09\x92\x67\xb2\xf0\xd1\x68\xb6\x28\x38\x49\xbe\x95\xd2\x81\x88\x57\x90\xa7\x4a\xd1\x89\x34\x3b\x40\x70\x15\x09\x89\x0a\x2c\x39\x53\x5b\x41\x80\xba\x00\xdb\x99\x90\x9a\xc9\x1e\x50\x10\x24\x4d\x69\x1c\x41\x41\x95\x71\x92\xe1\x50\x6b\xc1\xd2\x68\x90\x0e\x8c\x56\xcf\x20\x50\x29\xf4\x60\xf6\xcf\x80\x1a\xb0\x38\x49\x0d\x5c\x5a\x53\x1f\x4b\x40\xa8\xea\xbd\x92\x02\x04\x56\xb8\x97\x4a\xf2\x73\x9e\x24\x6f\x36\x49\x22\x4f\x95\xb1\x0c\xab\x2e\x96\x10\xca\x2a\x49\x50\x08\x72\x2e\x45\xa5\xb2\x01\x78\x8c\xb0\x0b\xf0\xc1\xd8\x06\x6d\x41\x16\x5e\x92\x04\x00\x60\xb3\x81\x3f\xce\xa4\x19\xb8\x44\xf6\xc8\xe8\x24\x99\xa9\x80\xa6\x24\x0d\xec\x4d\x3b\x40\xdb\x47\x41\x05\xb0\x01\x2e\x09\x18\xed\x91\xb8\x8f\x3b\x58\x1b\x43\xa0\x60\x36\xfa\xff\xd4\x6a\xa7\x78\x32\xb5\xe6\x2d\x3c\x3d\xc8\x7f\x7f\xff\x6d\x3d\x58\x7d\x7a\xfa\xfc\x69\x0b\x4f\x9f\x35\xfb\xc7\x07\x6b\x4e\x5b\xf8\x50\x14\x96\x9c\xbb\x5f\x03\x9b\xe9\x6d\x2c\x9d\x25\x0b\xd7\x8a\x18\xbe\x92\x2e\xc8\x7e\x65\x63\xf1\x48\x8f\xc8\xe5\x16\x46\x97\xeb\x3a\xb3\x64\xdd\x54\xfe\x1f\xba\x8f\xa1\x78\xad\xea\x70\x5e\xba\xed\x7b\x68\x51\x99\x58\x9d\xd0\x87\xd2\xf9\x7a\x58\x0a\x89\x1f\x57\x22\x94\xa7\x91\x4a\xc1\x9e\xc0\x91\xe6\x7c\xaa\x4b\xc0\xcf\x15\x81\xd4\x85\x14\xc8\xe4\x62\x99\x43\xa5\x11\x2c\x1d\xc8\x92\x16\xe4\x6b\x8a\xd3\x52\xb6\x26\xfa\x63\xc4\xec\x48\x1d\x32\x38\xa3\xf5\xc2\xb2\x92\xe4\x8b\xf9\xb1\xef\xd0\xbb\xd7\x2f\x93\xae\xcc\xbb\x74\x5c\xde\x4d\x82\x8a\x21\x5c\x73\xb4\xd9\x78\x92\xb6\x44\x09\x60\x19\xbf\x93\x07\xfb\x17\xd6\x8a\xc1\xec\xff\x21\xc1\x80\x2e\x30\xc6\x1e\x6b\x4f\xca\x40\xc0\x43\x9b\x40\x37\xb6\x24\xb9\xeb\xd6\x1e\xee\xaf\x2e\x5a\xaa\x9d\xd4\xc7\xf0\xce\xb1\xb1\x54\x0c\xd9\xf8\x41\xfc\x1d\xaf\x32\xcf\xe6\x2e\x8c\xb4\x6d\xd7\xf7\xb3\xd8\x83\x9b\x4b\x06\x2f\xbd\x11\xff\x53\x23\xce\x7c\xa1\x03\xec\xc0\xe7\x34\xef\xf1\xe5\x7b\x63\xad\x69\xd2\xec\x55\xb2\xd0\xdb\xa3\x42\x5f\xad\x5d\x20\x48\x1e\xaf\x4b\xb9\xba\x96\x45\x27\xe4\xcf\x53\x89\x91\xf7\x7c\x1a\xc1\xdd\x5b\xff\x9f\x4d\xc5\xfd\x40\xb8\x45\xe3\x88\x60\xc1\x63\xef\xb4\x63\x71\x08\xcf\x34\x9a\xec\x7d\x8e\x2d\x87\x5b\x42\x8f\x71\x2c\xdf\xb7\x86\xc6\x32\xde\x68\xd6\x43\xbb\x0c\x28\xa5\x96\x9c\xfe\x6c\x3f\xce\xeb\x52\x59\x9a\x3d\x89\xb9\x9a\x95\x05\x5e\xed\x40\x4b\xb5\x85\xd5\x47\x53\xab\x02\xb4\x61\x68\xdf\x0d\x5b\x64\xe0\x95\x4f\x41\xe8\xb1\x01\xd3\x6a\xe2\xe4\x32\xb9\x4d\x5b\x01\x76\x83\xff\x64\xaa\x70\xe9\xa7\xb7\xb0\x84\x4c\x7f\x52\x33\x0c\x90\xf6\x91\xe7\x8c\xa6\x66\x34\x58\x06\x58\x8d\xe4\x32\xc0\xaa\xac\x39\xcb\x22\x34\xff\xd8\x51\x6c\xfc\xf1\xa0\xf2\xfd\xbe\xf4\xf5\xf3\x69\xdf\xc2\xfb\xf1\xa8\x1b\x12\xcd\xb5\xd5\x70\xf7\xb6\xf5\x01\x57\x3d\xf4\xc7\xac\x4b\xc2\xed\x79\xda\xce\xff\x91\x87\x79\x30\x8e\x74\x11\xdb\x3a\x80\x74\xe9\xdf\x10\xfb\xaf\x5f\x36\xeb\x38\x62\x7f\x44\xee\x05\xfb\x50\x08\xcf\x0e\xd8\xc1\x91\xf8\x43\x7b\x49\xa3\xe5\x6c\x29\x5e\x4d\x17\x07\xec\x3a\x03\x79\xbf\xf9\x25\xb9\xd8\x7f\x77\xaf\x6f\x2d\xf4\xbc\x3f\xbd\x4b\x17\x6d\xec\x7f\x37\x15\x6f\x6e\xae\x85\x99\x0c\xee\xef\xa1\x42\x2d\x45\xba\xec\xfe\xc9\x32\x89\x41\x75\x43\x99\xec\x6a\x16\xf9\x2c\xea\xc5\x20\x6a\xf3\x9e\x4d\x74\xae\x73\x20\xb0\xdf\x85\x6a\x2f\x36\xf5\x3a\xcc\xf6\x6b\x3b\x7c\x1d\x3f\xaf\xe6\x1b\x7a\x52\xd1\x40\xc7\xc5\x87\x44\x18\xd9\x9d\xbb\x99\xf0\xed\x2f\x08\xaf\x35\xfb\x84\xb8\xa5\x35\xa0\x81\xdd\x08\xe6\xcc\x55\xd7\x25\xd1\x6a\xee\xf0\x4c\x69\xcf\x9f\x16\x75\x9a\xb5\xa3\xf6\x7a\x20\xb1\x24\x97\xe4\xf2\x5f\x00\x00\x00\xff\xff\x07\xfa\xd7\x82\x1d\x0b\x00\x00" +var _utilityPrivatereceiverforwarderCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\x4b\x6f\xdb\x46\x10\xbe\xf3\x57\x4c\x54\x20\x25\x03\x87\xba\x14\x3d\x08\x56\x9c\x20\x69\x80\x1c\x5a\x18\xb1\xdd\x6b\x31\x22\x47\xd2\xd6\xab\x5d\x62\x77\x28\xd5\x35\xf4\xdf\x8b\x7d\xf0\x4d\xa5\xb6\x2e\xe2\x92\x3b\x33\xdf\x3c\xbe\x99\x59\xbe\x4b\x92\x9f\xe0\x6b\xad\x76\x62\x23\x09\xee\xf5\x23\x29\xb8\x35\xe2\x88\x4c\xf0\x9d\x0a\x12\x47\x32\xf0\x59\x2b\x36\x58\x70\x92\xdc\xef\x85\x85\x22\x1e\x41\x1c\x2a\x49\x07\x52\x6c\x01\xc1\x56\x54\x08\x94\x60\xc8\xea\xda\x14\x04\xa8\x4a\x30\x8d\x0a\xa1\x98\xcc\x16\x0b\x82\xe4\xb4\xd7\x96\xa0\xa4\x4a\x5b\xc1\xb0\xad\x55\xc1\x42\x2b\x10\x16\xb4\x92\x4f\x50\xa0\x94\xe8\xc0\x6c\x9e\x00\x15\x60\x79\x10\x0a\x78\x6f\x74\xbd\xdb\x03\x42\x55\x6f\xa4\x28\xa0\xc0\x0a\x37\x42\x0a\x7e\xca\x93\xe4\xdd\x32\x49\xc4\xa1\xd2\x86\x61\xd1\xf8\xe2\x5d\x59\x24\x09\x16\x05\x59\x9b\xa2\x94\x59\x07\x3c\x7a\xd8\x38\xf8\x55\x9b\x13\x9a\x92\x0c\x3c\x27\x09\x00\xc0\x72\x09\xbf\x1d\x49\x31\xf0\x1e\xd9\x21\xa3\x83\x60\xa6\x12\x4e\x7b\x52\xc0\x4e\xb5\x05\x34\xad\x17\x54\x02\x6b\xe0\x3d\x01\xa3\xd9\x11\xb7\x7e\x7b\x6d\x7d\x08\xe4\xd5\x46\xfb\x5f\x82\x74\x8a\x07\x5d\x2b\x5e\xc1\xc3\x57\xf1\xcf\xaf\xbf\x5c\x75\x5a\x1f\x1e\xbe\x7d\x59\xc1\xc3\x37\xc5\xee\xf5\xd6\xe8\xc3\x0a\x3e\x95\xa5\x21\x6b\x6f\xae\x80\xf5\xf0\xd4\xbf\x9d\x25\x13\xd3\x92\x18\xee\x48\x95\x64\xee\x58\x1b\xdc\xd1\x2d\xf2\x7e\x05\xbd\xc3\xbc\xcc\x28\x58\x17\x85\x5f\x20\x7b\xeb\x93\x17\x44\xbb\xe7\xa9\xd9\xb6\x86\x26\x99\x89\xd9\xf1\x75\x28\xac\xcb\x87\x21\x1f\xf8\x7e\x26\x7c\x7a\x4e\x42\x4a\xd8\x10\x58\x52\x9c\x0f\x65\x09\xf8\xa9\x22\x10\xaa\x14\x05\x32\xd9\x98\x66\x9f\x69\x04\x43\x5b\x32\xa4\x0a\x72\x39\xc5\x61\x2a\x83\x8a\xf6\x31\x62\xb6\x24\xb7\x19\x1c\xd1\xb8\xcb\xa2\x12\xe4\x92\xf9\xb9\xad\xd0\xeb\xb7\xcf\x83\xaa\xcc\x9b\x70\x9c\x3f\x0c\x9c\x8a\x2e\xcc\x19\x5a\x2e\x1d\x49\x03\x51\x3c\x58\xc6\x47\x72\x60\xff\xc4\x5a\x32\xe8\xcd\xdf\x54\x30\xa0\xf5\x8c\x31\xbb\xda\x91\xd2\x13\x70\x1b\x02\x68\xfb\x9a\x04\x37\xd5\xda\xc2\xfd\xd9\x46\x4d\xb5\x15\x6a\xe7\xbf\x59\xd6\x86\xca\x2e\x1a\x3f\xf0\xbf\xe1\x55\xe6\xd8\xdc\xb8\x91\x86\x72\xfd\x38\xf2\xdd\x9b\x39\x67\xf0\xdc\x2a\x71\x3f\xd9\xe3\xcc\x77\xda\xc2\x1a\x5c\x4c\xf3\x16\x5f\xbe\xd1\xc6\xe8\x53\x9a\xbd\x49\x26\x72\x1b\x94\xe8\xb2\xb5\xf6\x04\xc9\xe3\x71\x7a\xaf\xae\x45\xd9\x5c\x72\xcf\xc3\x1b\x3d\xeb\xf9\xd0\x83\xeb\xf7\xee\x3f\x1b\x5e\x77\x0d\xe1\x12\x8d\x23\x82\x09\x8f\x9d\xd1\x86\xc5\xde\x3d\x7d\x52\x64\x6e\x72\x0c\x1c\x0e\x84\xee\xe3\x98\x7e\x0f\x8a\xfa\x77\x9c\xd2\xac\x85\x76\xee\x50\x0a\x25\x38\x7d\x6d\x3d\x8e\xf3\x52\x19\x1a\xbd\x89\xb1\x1a\xa5\x05\xde\xac\x41\x09\xb9\x82\xc9\x5d\xf7\x5b\x5c\xea\xb7\x79\xf7\xe4\xe0\xae\xe0\xb3\xae\x65\x09\x4a\x33\x04\xcd\x80\xdd\x14\xea\x78\xe9\x42\x38\xac\xdf\x9e\x77\xf9\x62\x16\x43\x5e\x68\x55\x20\xa7\x8b\xfb\x81\x9c\x22\x2a\xad\xa3\xc3\x1e\x8f\xa1\x91\x14\xda\x18\x47\xa6\xd1\x50\x0c\xf4\x70\x28\x05\x4a\xf1\x2f\x95\xe0\xc7\x12\x09\xe3\x58\xe0\x12\x0f\x27\xc1\xbd\x09\xd5\x4d\xcf\x16\xda\x22\x1b\x40\x3b\x0f\x4e\xc3\x82\x87\x75\x07\x32\x19\x0a\x9c\xdb\x19\x55\x18\x42\xa6\x3f\xe8\xd4\xb5\xc9\xf0\xca\x75\x06\x45\xa7\x5e\xfb\xec\x82\xe7\x51\x3a\x47\x2b\xa3\x8f\xa2\xf4\x14\xef\x1b\x8a\xf4\xee\xb7\x63\xc7\xea\xa9\xad\xd7\x17\xd7\x0a\x3e\xf6\x1b\x7a\x57\x4e\x5c\x1b\x05\xd7\xef\x83\x0d\x98\xb5\xd0\x3e\x66\x4d\x10\x2e\x4f\x8d\x30\xe5\x7a\x16\xc6\xce\x58\x52\x65\xac\x49\x0f\xd2\xa6\x7f\x41\x64\x59\x3b\x52\xaf\xe2\x20\xf9\x51\x0b\x9b\xf4\x98\xa6\x14\xd6\xb0\x23\xfe\x14\x0e\x69\xd4\x9c\x4d\xaf\x57\x43\x5e\xc0\xba\x51\x90\xb7\xfb\x8d\x20\x1b\x59\x76\xfd\xf6\xff\x69\xf4\x21\x9d\x2d\xfe\x8b\x82\x17\xe7\xf3\x44\x4d\x06\x37\x37\x50\xa1\x12\x45\x7a\x99\xce\x21\xf0\xf9\x24\xbc\xb3\xc4\x1e\xcc\xd9\x50\x90\x61\xef\xdc\xb6\x35\x12\x28\xd6\x46\x75\x9e\xd9\x63\x86\xc7\x70\xe7\xac\xef\xd8\x08\xb5\x4b\xb3\xec\x45\x72\x8b\x1c\x7e\xc7\x47\x02\x5b\xfb\x95\xc2\xed\x02\xd1\xee\xde\x0d\xd6\x1e\x99\x46\x5d\x40\xb0\xf5\xd3\x12\x77\x34\xea\x01\xdd\x96\x0a\xc8\xb0\x78\x19\x8e\xd7\x27\xab\xef\xea\xa8\xca\x46\x15\x36\x19\x6d\xa1\xc6\x87\xc0\xe6\xfb\x8d\x9f\x27\xd6\x27\x78\xb2\xfb\x5d\x35\xfe\xcf\x7c\xa9\x66\x77\xbe\x01\x7b\x7c\xeb\x9b\xac\xa6\x7e\x09\x68\xcc\x8d\x2e\x5f\xde\x49\x9d\xd4\x68\x29\xbd\x24\xd5\xa1\x81\x75\x0f\xe6\xc8\x54\xc3\xc8\xa8\x35\xb7\x78\xa4\xb4\xed\x55\x01\x75\x9a\x85\xe1\x3d\xef\x48\x4c\xc9\x39\x39\xff\x17\x00\x00\xff\xff\x0f\x07\xc3\x44\x6f\x0d\x00\x00" func utilityPrivatereceiverforwarderCdcBytes() ([]byte, error) { return bindataRead( @@ -256,11 +213,11 @@ func utilityPrivatereceiverforwarderCdc() (*asset, error) { } info := bindataFileInfo{name: "utility/PrivateReceiverForwarder.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x23, 0x2f, 0x24, 0x60, 0x5f, 0xf6, 0x4d, 0xaa, 0xa8, 0x62, 0x34, 0x83, 0x34, 0x3f, 0x32, 0xf5, 0x6d, 0x4a, 0x70, 0x8, 0x1, 0xf, 0x11, 0x51, 0x7e, 0x34, 0xeb, 0xab, 0xff, 0x6e, 0x9, 0xf}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x56, 0xf8, 0x5b, 0xeb, 0x7b, 0xee, 0xec, 0x2a, 0x5f, 0x30, 0xb8, 0xbd, 0x46, 0xe7, 0x96, 0xec, 0x14, 0x1b, 0x47, 0x7a, 0xc1, 0x99, 0x27, 0x18, 0x40, 0x90, 0xff, 0x6c, 0xbb, 0xca, 0x25, 0x1f}} return a, nil } -var _utilityTokenforwardingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x58\x4b\x6f\x1b\x39\x12\xbe\xf7\xaf\x28\x7b\x81\xb5\x14\x38\xd2\x65\xb1\x07\x21\xde\x3c\xd7\xbb\xb9\xec\x0e\x1c\x7b\xe6\x30\x08\x26\x54\x77\xb5\x9a\x31\x45\x36\xc8\x6a\x75\x04\x43\xff\x7d\x50\x24\xfb\xa9\x96\xe3\x0c\x26\x87\x01\xe2\x8b\xd5\xec\x62\x3d\xbf\xaa\x8f\xec\xe5\xb3\x67\x49\xf2\x37\xb8\xae\xf4\x46\xae\x15\xc2\xad\xb9\x47\x0d\xd7\xc6\xd6\xc2\x66\x52\x6f\xe0\xad\xd1\x64\x45\x4a\x49\x72\x5b\x48\x07\x69\x7c\x04\x57\x98\xda\x41\x61\x6a\x10\x1a\x44\x9a\x9a\x4a\x13\xa4\xa6\x52\x19\x38\x24\xa8\x4a\x10\x90\x56\x8e\xcc\xb6\x55\x1e\x74\xdf\x60\x8a\x72\x87\x36\x21\x03\x42\x29\x53\x03\x15\xb8\x05\x32\x90\x07\xab\x40\x2c\xe7\x78\x45\x40\x26\xf3\x1c\x2d\x6a\x6a\x6d\xd4\x05\x6a\xdc\xa1\xe5\x6d\x7b\xb0\x41\x5b\xdc\xb3\x60\x2f\x71\x0f\xa9\xd0\x50\x56\x6b\x25\x5d\x01\xc4\x6e\xc7\x80\xd0\x82\x45\x67\x2a\x9b\x22\x08\x07\xa2\x75\x06\x52\x51\x8a\xb5\x54\x92\xf6\xf0\xb9\x72\x04\x4a\xde\x23\x08\xf8\x59\x54\x8a\x2e\x13\xa1\x33\x36\x07\x0e\x35\xeb\xc8\x0c\x3a\x7d\x41\x80\x3b\xd4\xa0\x11\xd9\x65\xb8\xd7\xa6\x06\x49\x20\x5d\xe7\xf4\x22\x49\x7e\x29\x50\xf7\x53\x54\x0b\x4d\x3e\xb6\xd4\xa2\x20\xb6\xd1\xfa\x76\x19\x42\x4a\x85\x52\xde\x5a\x90\xf8\x1f\xd6\xad\x44\x92\x57\x3a\x25\x69\x58\x63\x06\xa5\x35\x3b\x99\x21\x1b\xad\x25\x15\x7e\x4f\x1b\x90\x45\xef\x42\x8a\x40\x85\xa0\xa0\x99\x6d\xf7\x12\x9d\x50\x81\xd2\x76\xe9\x5e\x24\xc9\xb3\x65\x92\xc8\x6d\x69\x2c\xc1\xf9\xa0\x6c\xe7\x49\x22\xd2\x14\x9d\x9b\x09\xa5\xe6\x1d\x0c\xfc\xcb\x1e\x5c\x1e\x92\x04\x00\xa0\x2f\x8b\x9a\x24\x29\xdc\x72\x11\xff\x5f\x6b\xb4\x41\x64\xb9\x84\x7f\xef\x78\xcd\xfb\x27\x1d\xe0\x56\x12\x61\xe6\x0b\xdc\x38\x25\x2c\x42\x86\xa5\x71\x92\x42\x96\x39\x46\x12\x76\x83\xd4\x94\xde\x1e\x1b\xf4\x6a\x9b\xa4\x65\xef\xc2\xfe\x99\xd8\x72\x01\x56\x70\x77\x2d\xbf\xfc\xf3\x1f\x97\x9d\xde\xbb\xbb\xf7\xef\x56\x70\xf7\x5e\x13\x2f\xe7\xd6\x6c\x57\xf0\x3a\xcb\x2c\x3a\xf7\xf2\x12\xc8\x0c\x9f\x86\xd2\xad\x92\xdb\x7d\x89\x2b\xf8\x40\x56\xea\xcd\xfc\x49\x11\x16\xc8\x21\xc8\x52\xb2\x88\xc9\x41\x34\x75\x41\x0b\x85\x70\x90\x16\x42\x6f\x30\xfb\x4a\x78\xf6\xa6\xd1\x71\x57\x66\x82\x30\x9b\x19\xce\x71\xdf\x67\xa3\xb2\x56\xa8\xbf\xae\xb1\x7e\x64\xdd\xe7\xb6\x1f\xd5\xe0\x45\x3f\x0b\xf3\xe3\x9a\xb7\x5d\x26\x35\xa1\xcd\x45\x8a\x9d\xc3\x3f\x71\x63\xa6\x0d\x52\x42\xa2\x96\xf0\x5f\x54\x25\x5a\x68\x01\xce\x1d\x52\x60\x7a\xcf\xc9\xa2\x02\xad\x9f\x2a\x9f\xda\x84\x7d\xea\x75\xec\x40\x8f\x74\xa0\x0d\x81\x12\xe4\xd3\x6a\x43\x27\x75\xdd\x4d\x32\x00\x49\x00\xed\x4b\x64\xf1\x9d\x50\x32\x5b\xb4\x4a\xfa\x61\xe4\x95\x0e\x5e\xcc\xe6\x2b\x78\x63\x8c\x1a\xfa\xfc\x1f\xe4\x56\x0e\x75\x0c\x5d\x27\x9c\x93\x1b\xdd\x58\xe8\xca\xdb\x39\xb0\x18\x68\xf0\x33\x95\x5d\x46\x36\x2a\xec\x1e\xd6\x98\x8a\xca\xa1\xef\x68\x53\x11\x48\xba\x8c\x53\x85\xc3\x2a\x8d\x73\x7e\x4e\x93\x01\x65\xcc\x3d\x54\x7e\x20\xb1\x0f\x85\x31\x99\x1f\x0b\x0e\x11\x24\xc3\xe9\x74\x86\x18\x6d\x1a\xf0\x4b\x89\xa9\xef\x2b\xce\x84\xb1\x6c\x61\x11\x5c\x2a\x50\x95\x0e\x36\x15\x8f\x63\xb1\x11\x52\x3b\x02\xa9\x73\xa9\x25\xa1\xda\x33\x34\x25\x47\x39\xee\x7e\x63\xc1\xf8\x62\x49\xed\xb3\x0a\x03\xc3\x5b\xa1\x64\x2a\x4d\xe5\xe0\x5e\xea\xcc\x7b\x51\x79\xcc\xba\xd0\x21\x81\x3d\x4a\x1b\x00\xae\xa4\x23\xa9\x37\xce\x37\x24\xac\x91\xf5\x6f\x45\x16\xe7\x19\x0f\x86\x60\xc2\x68\x70\x64\x2c\xe6\xd6\x68\x72\x83\xf4\x0e\xac\xbf\xb2\x48\x95\xf5\xb3\xd8\x94\x0c\x31\xa1\xba\xba\xf5\x00\x92\x1b\xcb\xe3\xcd\x55\x5b\xb4\xde\x47\x4e\xee\x38\xd0\x06\x9d\x4b\xef\x03\xcf\x71\xe3\x3b\x5a\x5a\x30\xb5\x3e\x89\x25\x27\x72\x7c\x63\xac\x35\x35\x03\xea\xef\x0f\x83\x11\xbb\x68\x7a\xeb\xf0\xd2\x2b\x38\x3c\xd2\x56\x6d\x33\xad\x60\x5a\xc7\xe5\xe3\xfd\xd6\x02\xaf\x2e\xd0\xa2\x0f\xb1\x3f\x66\xfd\xec\xad\xa5\x52\xb0\xf6\xa4\x47\x8b\xe1\x5e\x8c\xcd\xa3\x33\x99\x76\xf5\x0b\x30\x15\x7d\xea\x89\x5d\xd0\xcd\xe9\xa0\x62\x9c\x20\x87\x2a\x9f\xc3\x4e\xd8\xae\x65\x56\xf0\xb6\x83\x6f\xdf\x7a\xf4\x73\x4a\xdb\x72\xc9\xd9\x88\xf3\xc3\xb3\x9e\xb8\x47\xd7\xd0\x38\x98\xf5\x67\x4c\xc9\x13\xbf\x06\x61\x37\x95\xa7\x24\x6e\x99\x38\x78\x5d\x5f\x93\xa4\x86\x6f\x5a\x9f\x2e\x5c\xd4\x54\x39\x0f\x02\x3e\x11\x30\xf4\xb2\x2e\xe4\x47\x82\x6c\x51\x10\x23\x98\x05\xa6\x79\x35\x42\x81\xb7\x70\x98\xc3\x43\xbb\x9f\xff\x54\x8f\xf0\x6e\x30\x87\x2b\xe0\x9c\x2d\x5a\xd7\x16\x6b\x0f\xab\x17\x27\x31\xf5\xaf\xd9\xfc\x2c\x39\x52\xb9\x16\x4a\x70\xa1\xae\x7c\x97\x2d\xe2\xe3\xb1\x5c\x55\xc9\xac\x11\xe2\xdf\x43\x09\xe6\xb5\xd3\x7c\x1b\x95\x1e\x11\x2e\xeb\x69\xe8\xd6\x07\xe3\x89\xeb\xe5\x42\x04\x22\x0a\xcc\xdb\x8b\x79\xe2\x7d\x50\xd4\x97\x09\x4a\x47\xac\xec\xdd\xde\x20\xf1\xd3\x6c\xbe\x90\x19\x1f\x49\x72\x89\x76\x3e\x8c\xa3\xaf\x68\x58\xa4\x17\xcf\xf9\xff\xbc\x95\x3e\xfc\x15\xc9\x6b\x04\xa9\x38\x0f\x47\x38\xf2\x3b\x1e\x85\xd1\xa9\x24\xfc\x60\xc3\x1f\x6c\xf8\x5d\xd8\xf0\x49\xb8\x7d\xc2\xfc\x9b\x06\x6e\x3c\x67\xdf\x74\xe8\xf4\xcf\xee\xf8\x80\xce\x0b\xdd\x11\x3d\x92\x43\xbc\x84\x65\x9d\xe8\x23\x14\xe0\xaf\x3f\x4d\x67\x0e\xac\xce\x7e\x1b\x1d\xc7\x3b\xf6\x1b\x53\x41\x69\x71\xb4\xc2\x7f\xfd\xdd\x4f\x49\x06\x9c\x5d\x81\x96\x6a\x05\xe7\x6f\x3d\xd0\xb8\x9f\xc2\xb6\xa9\x3b\xa4\x47\x1d\x87\xdb\xb9\x75\x3e\x70\xe1\x70\x44\x19\xde\x21\x26\xaa\x6f\xf5\xec\xec\x48\x95\xbf\xc0\xfc\x51\xce\xeb\x2b\x1b\x10\xd5\xc9\x9b\xd3\x24\x19\x0d\x2f\x51\xc1\xa3\x23\xa1\x61\x09\x43\x06\x4e\x08\xf5\xae\x57\x51\x6e\x8a\xa0\x26\xee\x5c\x51\x9a\x89\x6e\x3e\x08\x6e\x98\x9c\x51\xe2\x4f\x0d\xed\xd7\xb0\x41\xa2\x01\x77\xf1\x40\x09\x3d\x16\x7a\xc0\x1f\x07\xfd\x54\x74\xe0\xaa\xb2\x34\x96\xa7\xe4\x7a\x1f\xbe\xac\x34\x47\xd2\xcb\x81\xda\xba\x90\x69\xe1\x3f\xc3\xac\xfb\x27\xcb\xee\xdc\x74\x11\x17\x2f\x5a\xc3\x5f\x9f\x55\xaf\xad\x15\x7b\x6e\xc4\xeb\xdb\xe8\x4e\x18\x94\x23\x2b\xd3\x6c\xb8\x93\x58\xfb\xc6\xdb\x20\x7d\x68\xa2\xf0\x67\x2d\x4e\xba\xe3\x09\xf4\x10\xca\xc1\x54\x79\x18\x75\x98\xcc\xe1\xec\x9b\x89\x72\xa2\x4b\x63\x24\x0f\x87\xaf\x34\xcf\x8e\x1d\xfb\x73\x30\xcf\xea\xdc\x20\x60\x37\x0a\xf5\x6a\xec\xcf\x48\xfc\xd7\xc6\x9b\x0e\xa2\x1f\xe1\x0a\xc8\x56\x38\x39\x98\x87\xbb\x4f\x21\xef\x26\x42\xac\x39\x22\x05\xc6\xf5\xe0\xd8\xc8\x5d\x44\x9c\xbf\x50\xa4\x29\x96\x2d\xe4\xba\x4f\x5c\x23\x1c\x7b\x27\x3b\x44\x84\x5d\x20\xf4\x3e\x28\x72\x85\x1f\x73\xfe\xe3\x5e\x74\x94\x03\x60\xa5\x19\xe6\xbc\xf7\x71\xd8\x48\x77\x8c\x9a\x19\xf9\x2c\xf2\xcf\xe9\x23\xd6\x44\xee\x9b\x8a\x9e\x82\xe1\x18\x76\x03\x15\xbc\x79\x54\x1b\x76\xe1\xe3\x69\xa4\xb5\xe2\x43\xc0\x01\x2a\x87\xf0\xd0\x48\xe5\x82\x1f\x0f\x53\xa5\xe2\x43\xce\x6c\xf2\x56\xf6\x34\x5e\xfa\x26\xe4\x7e\x57\x52\x3a\x9a\x8f\xc7\x8c\x7d\xe8\x5f\xbc\xf9\x68\x70\xf4\x05\x36\x2e\xf1\xa5\x52\x63\x3d\xf8\xae\xdc\xb8\xd5\x7e\x8b\x3d\x71\x34\x88\xd3\xed\xe8\xa8\x7e\x64\xeb\x44\xda\x57\xf0\xaa\x33\xdb\x25\x3c\x96\xf2\xc5\xf3\xf8\x61\x79\x52\x4d\xfb\x73\x1e\x23\x3d\x24\xbf\x07\x00\x00\xff\xff\xd2\xb3\xcf\x39\x02\x18\x00\x00" +var _utilityTokenforwardingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x59\x5f\x6f\xe3\xb8\x11\x7f\xd7\xa7\x98\xb8\x40\x63\x2f\x72\xf2\x4b\xd1\x07\x63\xd3\xdd\xbd\xbd\xa6\xbd\x97\xb6\xc8\x25\xd7\x87\xe2\xd0\xa3\xa9\x91\xc5\x0d\x4d\x0a\x24\x65\xad\x11\xf8\xbb\x17\x43\x52\xff\x65\x27\x5b\xb4\x58\x1c\xb0\x79\x89\x25\x0f\x67\x7e\x33\xfc\xcd\x1f\xd2\xeb\x37\x6f\x92\xe4\x77\x70\x57\xa9\x9d\xd8\x4a\x84\x07\xfd\x84\x0a\xee\xb4\xa9\x99\xc9\x84\xda\xc1\x47\xad\x9c\x61\xdc\x25\xc9\x43\x21\x2c\xf0\xf8\x08\xb6\xd0\xb5\x85\x42\xd7\xc0\x14\x30\xce\x75\xa5\x1c\x70\x5d\xc9\x0c\x2c\x3a\xa8\x4a\x60\xc0\x2b\xeb\xf4\xbe\x55\x1e\x74\xdf\x23\x47\x71\x40\x93\x38\x0d\x4c\x4a\x5d\x83\x2b\x70\x0f\x4e\x43\x1e\xac\x82\x23\x39\x4b\x6f\x18\x64\x22\xcf\xd1\xa0\x72\xad\x8d\xba\x40\x85\x07\x34\xb4\xec\x08\x26\x68\x8b\x6b\x52\x42\x89\x47\xe0\x4c\x41\x59\x6d\xa5\xb0\x05\x38\x82\x1d\x1d\x42\x03\x06\xad\xae\x0c\x47\x60\x16\x58\x0b\x06\x38\x2b\xd9\x56\x48\xe1\x8e\xf0\xa9\xb2\x0e\xa4\x78\x42\x60\xf0\x33\xab\xa4\xbb\x49\x98\xca\xc8\x1c\x58\x54\xa4\x23\xd3\x68\xd5\xb5\x03\x3c\xa0\x02\x85\x48\x90\xe1\x49\xe9\x1a\x84\x03\x61\x3b\xd0\x69\x92\xfc\xb3\x40\xd5\x0f\x51\xcd\x94\xf3\xbe\x71\x83\xcc\x91\x8d\x16\xdb\x4d\x70\x89\x33\x29\xbd\xb5\x20\xf1\x37\xac\x5b\x89\x24\xaf\x14\x77\x42\x93\xc6\x0c\x4a\xa3\x0f\x22\x43\x32\x5a\x0b\x57\xf8\x35\xad\x43\x06\x3d\x04\x8e\xe0\x0a\xe6\x82\x66\xb2\xdd\x0b\x74\xe2\x0a\x14\xa6\x0b\x77\x9a\x24\x6f\xd6\x49\x22\xf6\xa5\x36\x0e\x16\x83\x6d\x5b\x24\x09\xe3\x1c\xad\x5d\x32\x29\x57\x1d\x0d\xfc\x97\x3d\xba\x3c\x27\x09\x00\x40\x5f\x16\x95\x13\x4e\xe2\x9e\x36\xf1\xef\xb5\x42\x13\x44\xd6\x6b\xf8\xf3\x81\xde\x79\x7c\xc2\x02\xee\x85\x73\x98\xf9\x0d\x6e\x40\x31\x83\x90\x61\xa9\xad\x70\x21\xca\xe4\xa3\x63\x66\x87\xae\xd9\x7a\x33\x35\xe8\xd5\x36\x41\xcb\x7e\x08\xeb\x97\x6c\x4f\x1b\xb0\x81\xc7\x3b\xf1\xf9\x8f\x7f\xb8\xe9\xf4\x3e\x3e\xfe\xf8\xc3\x06\x1e\x7f\x54\x8e\x5e\xe7\x46\xef\x37\xf0\x21\xcb\x0c\x5a\xfb\xee\x06\x9c\x1e\x3e\x0d\xa5\x5b\x25\x0f\xc7\x12\x37\xf0\x93\x33\x42\xed\x56\xaf\xf2\xb0\x40\x72\x41\x94\x82\x44\x74\x0e\xac\xd9\x17\x34\x50\x30\x0b\xbc\x60\x6a\x87\xd9\x0b\xee\x99\xfb\x46\xc7\x63\x99\x31\x87\xd9\x52\x53\x8c\xfb\x98\xb5\xcc\x5a\xa1\xfe\x7b\x85\xf5\x85\xf7\x3e\xb6\x7d\xaf\x06\x5f\xf4\xa3\xb0\x9a\xee\x79\x9b\x65\x42\x39\x34\x39\xe3\xd8\x01\xfe\x07\x25\x26\x6f\x98\x12\x02\xb5\x86\xbf\xa2\x2c\xd1\x40\x4b\x70\xca\x90\x02\xf9\x13\x05\xcb\x15\x68\x7c\x55\xf9\xb5\x0d\xd8\xaf\xbd\x8c\x1d\xe8\x11\x16\x94\x76\x20\x99\xf3\x61\x35\x21\x93\xba\xec\x76\x22\x10\x89\x81\x3b\x96\x48\xe2\x07\x26\x45\x96\xb6\x4a\xfa\x6e\xe4\x95\x0a\x28\x96\xab\x0d\x7c\xaf\xb5\x1c\x62\xfe\x0b\x52\x2a\x87\x7d\x0c\x59\xc7\xac\x15\x3b\xd5\x58\xe8\xb6\xb7\x03\x90\x0e\x34\xf8\x9a\x4a\x90\x91\x8c\x32\x73\x84\x2d\x72\x56\x59\xf4\x19\xad\x2b\x07\xc2\xdd\xc4\xaa\x42\x6e\x95\xda\x5a\x5f\xa7\x9d\x06\xa9\xf5\x13\x54\xbe\x20\x11\x86\x42\xeb\xcc\x97\x05\x8b\x08\x82\xe8\x74\x3e\x42\xc4\x36\x05\xf8\xb9\x44\xee\xf3\x8a\x22\xa1\x0d\x59\x48\x03\xa4\x02\x65\x69\x61\x57\x51\x39\x66\x3b\x26\x94\x75\x20\x54\x2e\x94\x70\x28\x8f\x44\x4d\x41\x5e\x8e\xb3\x5f\x1b\xd0\x7e\xb3\x84\xf2\x51\x85\x81\xe1\x3d\x93\x82\x0b\x5d\x59\x78\x12\x2a\xf3\x28\x2a\xcf\x59\x1b\x32\x24\x74\x8f\xd2\x04\x82\x4b\x61\x9d\x50\x3b\xeb\x13\x12\xb6\x48\xfa\xf7\x2c\x8b\xf5\x8c\x0a\x43\x30\xa1\x15\x58\xa7\x0d\xe6\x46\x2b\x67\x07\xe1\x1d\x58\x7f\x6f\xd0\x55\xc6\xd7\x62\x5d\x12\xc5\x98\xec\xf6\xad\x47\x90\x5c\x1b\x2a\x6f\xb6\xda\xa3\xf1\x18\x29\xb8\x63\x47\x1b\x76\xae\x3d\x06\xaa\xe3\xda\x67\xb4\x30\xa0\x6b\x75\x96\x4b\x96\xe5\xf8\xbd\x36\x46\xd7\x44\xa8\xdf\x3f\x0f\x4a\x6c\xda\xe4\xd6\xe9\x9d\x57\x70\xba\x90\x56\x6d\x32\x6d\x60\x5e\xc7\xcd\xe5\x7c\x6b\x89\x57\x17\x68\xd0\xbb\xd8\x2f\xb3\xbe\xf6\xd6\x42\x4a\xd8\xfa\xa6\xe7\xd2\xe1\x5a\x8c\xc9\xa3\x32\xc1\xbb\xfd\x0b\x34\x65\xfd\xd6\x13\xb3\xa0\xab\xd3\x41\xc5\x38\x40\x16\x65\xbe\x82\x03\x33\x5d\xca\x6c\xe0\x63\x47\xdf\xbe\xf5\x88\x73\x4e\xdb\x7a\x4d\xd1\x88\xf5\xc3\x77\x3d\xf6\x84\xb6\x69\xe3\xa0\xb7\x9f\x90\x3b\xdf\xf8\x15\x30\xb3\xab\x7c\x4b\xa2\x94\x89\x85\xd7\xf6\x35\x09\xd7\xf4\x9b\x16\xd3\xb5\x8d\x9a\x2a\xeb\x49\x40\x13\x01\x51\x2f\xeb\x5c\xbe\xe0\x64\xcb\x82\xe8\xc1\x32\x74\x9a\xf7\x23\x16\x78\x0b\xa7\x15\x3c\xb7\xeb\xe9\x4f\xf6\x1a\xde\x3d\xe6\x70\x0b\x14\xb3\xb4\x85\x96\x6e\x3d\xad\xde\x9e\xe5\xd4\x9f\x96\xab\xab\x64\xa2\x72\xcb\x24\xa3\x8d\xba\xf5\x59\x96\xc6\xc7\xa9\x5c\x55\x89\xac\x11\xa2\xcf\x43\x09\xea\x6b\xe7\xfb\x6d\x54\x3a\x69\xb8\xa4\xa7\x69\xb7\xde\x19\xdf\xb8\xde\xa5\x2c\x34\xa2\xd0\x79\x7b\x3e\xcf\x7c\x1f\x14\xf5\x65\x82\xd2\x51\x57\xf6\xb0\x77\xe8\xe8\x69\xb9\x4a\x45\x46\x23\x49\x2e\xd0\xac\x86\x7e\xf4\x15\x0d\x37\xe9\xed\x77\xf4\x7f\xd5\x4a\x9f\x7e\x8b\xcd\x6b\x44\xa9\x58\x0f\x47\x3c\xf2\x2b\x2e\xd2\xe8\x5c\x10\xbe\x75\xc3\x6f\xdd\xf0\xff\xd2\x0d\x5f\xc5\xdb\x57\xd4\xbf\x79\xe2\xc6\x39\xfb\xbe\x63\xa7\x7f\xb6\xd3\x01\x9d\x5e\x74\x23\x7a\x6c\x0e\xf1\x10\x96\x75\xa2\x17\x5a\x80\x3f\xfe\x34\x99\x39\xb0\xba\xfc\xf7\x68\x1c\xef\xba\xdf\xb8\x15\x94\x06\x47\x6f\xe8\xaf\xbf\xfa\x35\xc1\x80\xab\x5b\x50\x42\x6e\x26\x8a\xe8\x6f\x31\xda\xe1\xb4\x1d\x26\xd2\x11\xee\x0d\x7c\xf4\x3c\xa5\x74\x0c\x56\xfb\xa7\xea\x6e\x12\xf0\xb4\xa5\x78\x29\xac\x7b\xbe\xa5\xb0\x98\x05\x90\x72\xad\x38\x73\xcb\x45\x53\x12\xe8\x3c\x2e\xbb\x7a\x30\xdc\x9b\xe6\x6c\xbd\x58\x5d\x54\x36\x08\x51\xec\x22\xa9\xd3\xe1\x74\xb3\x5c\x5d\x5e\xbc\xf0\x67\x32\x72\x33\x5e\x6f\x10\x84\xe1\xcd\x46\x9c\x32\x4c\xb8\x7a\xe0\xfd\x34\xe2\xda\x18\xe4\x4e\x1e\xd3\x17\x30\x2e\x7e\x46\x23\xf2\x63\x7b\x68\x87\x88\x13\xfc\xdd\x8b\x57\x02\xcd\x6d\x44\xe3\x36\x01\xf3\x8d\x22\x7e\x1f\x70\x90\x54\x87\x60\x64\xf6\x34\xe9\xf0\x3e\x38\x34\x57\x7c\x29\x91\xae\x26\xaa\xfc\x79\xf3\xbf\x1d\x51\xfa\xca\x06\x73\xc5\xd9\x83\xee\xec\xec\x30\x3c\xf3\x06\x44\x13\xa1\x61\xc6\x85\x08\x9c\x11\xea\x9d\x86\xa3\xdc\xdc\x3c\x31\x73\x44\x8e\xd2\x34\x97\x0c\xb7\x60\x18\x9c\x51\xe0\xcf\xf5\xd8\x0f\xb0\x43\xe7\x06\xa3\x06\x11\x25\x94\xc4\xc0\x02\x3f\xbd\xfb\x26\x66\xc1\x56\x65\xa9\x0d\x35\xb5\xed\x31\x5c\x84\x35\x27\x88\x9b\x81\xda\xba\x10\xbc\xf0\xb7\x66\xdb\xfe\x41\xa0\x1b\x73\xaf\xe3\xcb\xeb\xd6\xf0\xcb\xad\xe5\x83\x31\xec\x48\x75\xf3\xee\x21\xc2\x09\x7d\x6d\x64\x65\x7e\x78\x39\x08\xac\x7d\x9d\xdc\xa1\xfb\xa9\xf1\xc2\x13\x9b\x82\x6e\xa9\x61\x3c\x87\xed\xa0\xc9\xe6\x34\x2a\x88\x22\x87\xab\x2f\x9e\x6b\x66\x8a\x6a\xf4\xe4\xf9\xf4\x42\xf2\x1c\x08\xd8\xff\x86\xf3\xa4\xce\x0e\x1c\xb6\x23\x57\x6f\xc7\x78\x46\xe2\xff\x6a\xd0\x74\x14\xfd\x05\x6e\xc1\x99\x0a\x67\xfb\xe8\x70\xf5\x39\xe6\xdd\x47\x8a\x35\x13\x6d\x18\x90\x3c\x39\x76\xe2\x10\x19\xe7\xcf\x7f\x9c\x63\xd9\x52\xae\xbb\x91\x1c\xf1\xd8\x83\xec\x18\x11\x56\x01\x53\xc7\xa0\xc8\x16\xbe\xad\xf8\xbb\xd8\x08\x94\x1c\x20\xa5\x19\xe6\xb4\xf6\x32\x6d\x84\x9d\xb2\x66\xe9\x7c\x14\xe9\xe3\xfc\x44\x3c\x13\xfb\x66\x47\xcf\xd1\x70\x4c\xbb\x81\x0a\x5a\x3c\xda\x1b\x82\xf0\xcb\x79\xa6\xb5\xe2\x43\xc2\x01\x4a\x8b\xf0\xdc\x48\xe5\x8c\x1e\x4f\x73\x5b\x45\x33\xe9\x72\xf6\x10\xfd\xba\x31\xe2\x8b\x98\xfb\xb5\x66\x88\xaf\x34\x3f\x98\x6f\xc3\x43\xa4\x5b\xff\x69\xd2\xc7\xa6\x83\xf0\xa9\x7f\x9f\x45\x13\xf7\xe4\x87\x8d\xf8\xca\x02\xf3\x03\x62\xff\xe7\x9a\x66\xf7\xdb\x9f\x38\xce\x4c\xdc\xb1\x0b\x4d\x4e\xc0\x13\x5b\x67\xd2\x63\x03\xef\x3b\xb3\x5d\x62\xc4\x94\x7b\xfb\x5d\xfc\xbd\x66\x56\x4d\xfb\x71\x15\x3d\x3d\x25\xff\x09\x00\x00\xff\xff\xe3\x16\x83\x6f\x59\x1b\x00\x00" func utilityTokenforwardingCdcBytes() ([]byte, error) { return bindataRead( @@ -276,27 +233,7 @@ func utilityTokenforwardingCdc() (*asset, error) { } info := bindataFileInfo{name: "utility/TokenForwarding.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x53, 0x12, 0xf9, 0xb8, 0xa, 0xaa, 0xf7, 0xad, 0x56, 0xe9, 0xa0, 0xed, 0x41, 0x76, 0x14, 0xb9, 0x61, 0x2, 0xf5, 0xff, 0x62, 0x97, 0xbc, 0x4c, 0xa8, 0xc4, 0x9c, 0xe1, 0x58, 0x7d, 0xcf, 0xae}} - return a, nil -} - -var _utilityViewresolverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x56\xc1\x6e\xe3\x36\x10\xbd\xfb\x2b\xa6\x97\xd6\x06\xb2\xf6\xa5\xe8\xc1\x97\x6d\xb0\x8b\x00\x39\x74\x51\x74\xdd\xbd\x2c\x82\x62\x2c\x8e\x2d\x22\x14\x47\x25\x47\xd6\x0a\x41\xfe\xbd\x18\x52\xa6\x64\x67\xb3\x05\x8a\x9e\x8a\xe6\xa0\x08\xb2\xf8\xde\x9b\x37\x6f\x48\x6d\x36\xb0\xc3\x47\xf2\x70\x08\xdc\x80\xd4\x04\x1f\xee\x76\xf0\x0b\x09\x1a\x14\x84\x28\xe8\x0d\x06\x73\x03\x52\xdb\x08\x15\x7b\x09\x58\x09\xd0\x97\x96\x23\x45\x40\x0f\xd6\x0b\x85\x03\x56\x04\xc2\xe0\x48\x60\xb1\xd9\x00\xfa\x81\x3d\xc1\x9e\x43\xe0\x1e\x70\x5a\x88\xde\x40\xa0\xc8\xee\x44\x70\xb2\xd4\x47\x60\x0f\x56\xd6\x8b\xcd\x46\xd7\xed\x94\xa5\xb7\xce\x01\x3a\xc7\x3d\x0c\xdc\x29\x2c\xef\x05\xad\x52\x1d\x38\x34\x28\x96\x3d\xe0\x9e\x3b\x99\x23\xf7\x56\x6a\x7d\xe4\xa9\xa2\x18\x31\x58\x37\xc0\xa3\xe7\xde\xfa\xa3\xca\x91\x3a\xdd\xa4\x55\x99\x0f\x6e\x9d\x4b\x04\x9e\xc8\x80\x8d\x60\x25\x02\x1a\x13\x28\xc6\xa4\xd3\x63\x43\xe9\x66\xe0\xee\x87\x40\x70\x64\x36\xaa\xe6\xc8\xdf\x2d\xb0\x52\x96\x25\x3a\xb7\x9a\x24\x4c\x56\x7c\xb2\xd4\xff\x96\xcb\x0c\xf0\xb4\x58\x00\x00\x6c\x36\x1b\xb8\xeb\x7c\x95\xe4\x4b\x8d\x02\x81\xa4\x0b\x3e\x6a\xad\xc9\xfa\x62\xfb\xa7\xe4\x8c\x6d\x5a\x47\x0d\x79\x21\x03\xfb\x21\xbd\x91\xad\xd3\x4a\xce\xa4\xeb\x82\xfd\x91\x1b\x2a\x8f\x23\x34\x38\x40\x8d\x27\x82\xa6\x73\x62\x5b\x97\x17\x77\x41\x1b\x35\xb4\x14\xb3\x84\xd8\xb5\x2d\x07\x81\xe6\x4c\x9d\x9a\x52\x30\x23\x2b\x6d\xa0\xf1\x6a\x53\xc7\xb9\xd5\x12\xd0\x41\x8b\x01\x1b\x12\x0a\x70\xe0\x00\xb1\xa5\xca\x1e\x06\xe8\x6b\x5b\xd5\x97\x64\x49\x7b\x85\xce\x51\x28\xd0\x36\x82\x63\x7e\xd4\x5a\x74\x75\x0e\xc3\x81\xc3\x2b\x05\xbd\x71\x74\x22\x37\xbe\xa6\xb5\xed\x33\xf4\x1b\x3c\x7a\x8e\x62\xab\x35\xdc\x8f\xb6\x56\x18\xe9\x26\x53\x8e\x8b\xa7\x7a\x6a\xee\x9c\x19\x8d\x4f\xaf\x44\x6d\x72\x46\x0d\x74\xc4\x60\x9c\xb6\x9f\x0f\xd0\x2b\x54\x12\x6f\x23\xb4\x18\xa3\x86\xc4\x17\x75\x05\xf2\xe7\xe4\x42\xa9\x77\x37\xb4\xb4\x85\xdb\x99\x4b\x57\x4e\xf0\x99\xbd\x54\x3c\x41\x8d\xbf\xdc\x7a\xc0\x10\x70\x50\x19\xbb\xd4\x2b\x43\x07\xeb\xd5\x2a\x95\x3c\xcf\x45\x02\x59\xe7\xb9\x39\xa1\xeb\x28\x4f\xcf\x9e\xa0\x8b\x29\x36\x05\xfc\xfc\x67\xd4\x47\x6e\x29\x44\xd5\xa2\x13\x32\x76\x6c\xea\xa6\x70\x2a\x58\xff\x4f\xa1\x23\x0d\xe5\x72\xa5\x49\xa9\xd9\x5c\xfa\x30\x9f\x06\x55\x04\x87\xce\xc3\x91\xe4\xdd\xe8\x7f\xca\xf3\xf2\xd2\x22\xbd\xbe\x5d\x6d\xe1\xb3\xde\x3c\xbc\x3e\x22\x89\x3b\x02\x5e\x46\x34\x65\x26\xed\x49\xc2\x8f\xe4\xff\x9f\x82\xff\xd0\x14\x64\x28\xfd\x61\x0b\xbb\x9a\x52\x52\x54\x8b\x0a\x35\x14\x6d\x18\x73\xbf\x7e\x39\x38\x10\x25\x74\x95\x74\x41\xfb\xdc\x06\x8a\xe4\xe5\x3c\x36\x81\xfe\xec\x28\xca\xf5\xe2\x17\x01\xd6\xec\x8e\xb1\x9b\xe7\xf7\x6b\xf1\xbd\x49\x50\xd3\x83\x95\xd6\x3c\x7c\x4c\x1a\xde\x4e\x91\xfe\x35\xf0\xc9\x1a\x0d\x71\xa2\xd1\xea\x11\x22\x89\x16\x75\x19\xb9\x75\x29\x01\x38\x40\x01\x28\xe6\x2d\x69\x7d\x5c\x6b\xfa\x3e\xdc\xed\x56\x50\xe9\xf1\x7b\xde\x0c\xf2\x34\x5c\x9c\xc6\x6d\xe6\x9d\xd1\x16\x44\x35\x24\x5b\x9f\xc2\x62\xcb\x0c\xc4\xd7\x8d\x29\x2a\x26\x92\xeb\x33\xae\x84\x36\x1d\x9d\x51\xf7\x80\x7c\x96\xe1\x9e\x4f\x74\x03\xfb\x4e\xf4\xc0\xc7\x71\x4c\x6c\x95\x3e\x37\xac\x8f\x42\x68\xd4\x0e\xbc\x4c\xeb\xb7\x36\x97\xbc\xa9\x5c\xed\x20\xd7\x02\x66\x7b\xd7\xbf\xa5\x61\x96\x8f\x94\x8b\x3f\xce\x51\x7d\x11\x00\x5d\xf9\x3c\xc5\xe0\x16\x8e\x81\xbb\x56\x29\x52\x1d\x23\x48\xd0\xae\x19\xfa\x92\x4f\xf9\xfb\xf7\xff\xa8\x01\xef\xd8\x39\xca\xfb\xe6\xd3\xb7\x9d\xcb\xdf\x64\xf3\x0f\x94\xa5\x35\x5b\xf8\xfd\xde\xcb\x4f\x3f\xae\xb6\xf0\xfd\xd3\xf9\xf9\xf3\xdb\x19\x96\xfe\x8d\x53\xe6\xad\x2b\x8f\x9f\x17\x7f\xdb\xa7\xfb\xf7\xb9\x4b\x99\xe1\xe1\xeb\x98\x9f\x1f\x66\x90\xf9\xfa\xbc\x80\xbf\x02\x00\x00\xff\xff\x28\x02\x38\xc2\x9e\x0a\x00\x00" - -func utilityViewresolverCdcBytes() ([]byte, error) { - return bindataRead( - _utilityViewresolverCdc, - "utility/ViewResolver.cdc", - ) -} - -func utilityViewresolverCdc() (*asset, error) { - bytes, err := utilityViewresolverCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "utility/ViewResolver.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xea, 0xa3, 0x21, 0x4b, 0xe, 0x17, 0x8c, 0x56, 0x92, 0xcf, 0xc2, 0x43, 0xa1, 0x4c, 0x73, 0x91, 0x50, 0xd5, 0xd5, 0x7e, 0xf3, 0xf9, 0x20, 0x4a, 0x25, 0x2d, 0x70, 0x66, 0x7a, 0x67, 0xdb, 0x76}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x72, 0x7, 0x90, 0x82, 0xe4, 0xf7, 0xa4, 0x49, 0xe2, 0xe0, 0x9e, 0xd9, 0xd3, 0x24, 0x21, 0x55, 0x21, 0x9f, 0x7a, 0x8, 0x20, 0xd9, 0x29, 0x6b, 0xfb, 0x83, 0x2, 0x58, 0x55, 0xc2, 0x9f, 0x26}} return a, nil } @@ -397,11 +334,8 @@ var _bindata = map[string]func() (*asset, error){ "FungibleTokenSwitchboard.cdc": fungibletokenswitchboardCdc, "test/MaliciousToken.cdc": testMalicioustokenCdc, "utility/Burner.cdc": utilityBurnerCdc, - "utility/MetadataViews.cdc": utilityMetadataviewsCdc, - "utility/NonFungibleToken.cdc": utilityNonfungibletokenCdc, "utility/PrivateReceiverForwarder.cdc": utilityPrivatereceiverforwarderCdc, "utility/TokenForwarding.cdc": utilityTokenforwardingCdc, - "utility/ViewResolver.cdc": utilityViewresolverCdc, } // AssetDebug is true if the assets were built with the debug flag enabled. @@ -457,11 +391,8 @@ var _bintree = &bintree{nil, map[string]*bintree{ }}, "utility": {nil, map[string]*bintree{ "Burner.cdc": {utilityBurnerCdc, map[string]*bintree{}}, - "MetadataViews.cdc": {utilityMetadataviewsCdc, map[string]*bintree{}}, - "NonFungibleToken.cdc": {utilityNonfungibletokenCdc, map[string]*bintree{}}, "PrivateReceiverForwarder.cdc": {utilityPrivatereceiverforwarderCdc, map[string]*bintree{}}, "TokenForwarding.cdc": {utilityTokenforwardingCdc, map[string]*bintree{}}, - "ViewResolver.cdc": {utilityViewresolverCdc, map[string]*bintree{}}, }}, }} diff --git a/tests/example_token_test.cdc b/tests/example_token_test.cdc index 7c26840..47f9d30 100644 --- a/tests/example_token_test.cdc +++ b/tests/example_token_test.cdc @@ -152,7 +152,7 @@ fun testTransferTokenAmountGreaterThanBalance() { Test.expect(txResult, Test.beFailed()) Test.assertError( txResult, - errorMessage: "Amount withdrawn must be less than or equal than the balance of the Vault" + errorMessage: "FungibleToken.Vault.withdraw: Cannot withdraw tokens! The amount requested to be withdrawn (1550.00000000) is greater than the balance of the Vault (200.00000000)." ) }