From 3c2b2d2c2e47783f76bf14c3bf00390b84d3cd12 Mon Sep 17 00:00:00 2001 From: Josh Hannan Date: Mon, 22 Jan 2024 15:57:14 -0600 Subject: [PATCH] remove get NFT types, update basic NFT and UniversalCollection, and update transactions --- contracts/BasicNFT.cdc | 56 +++++++++++++++++-- contracts/ExampleNFT.cdc | 4 +- contracts/MultipleNFT.cdc | 35 ------------ contracts/NonFungibleToken.cdc | 8 --- contracts/UniversalCollection.cdc | 3 +- contracts/utility/FungibleToken.cdc | 7 --- contracts/utility/NFTForwarding.cdc | 2 +- lib/go/contracts/contracts.go | 22 ++------ lib/go/contracts/internal/assets/assets.go | 47 ++++------------ lib/go/templates/internal/assets/assets.go | 24 ++++---- tests/example_nft_tests.cdc | 5 +- tests/nft_forwarding_tests.cdc | 5 +- tests/scripts/get_example_nft_views.cdc | 2 +- transactions/destroy_nft.cdc | 4 +- .../transfer_nft_to_receiver.cdc | 4 +- transactions/setup_account.cdc | 2 +- transactions/transfer_nft.cdc | 4 +- 17 files changed, 95 insertions(+), 139 deletions(-) delete mode 100644 contracts/MultipleNFT.cdc diff --git a/contracts/BasicNFT.cdc b/contracts/BasicNFT.cdc index f5347183..889b9a49 100644 --- a/contracts/BasicNFT.cdc +++ b/contracts/BasicNFT.cdc @@ -16,10 +16,10 @@ import MetadataViews from "MetadataViews" import ViewResolver from "ViewResolver" import UniversalCollection from "UniversalCollection" -access(all) contract BasicNFT { +access(all) contract BasicNFT: NonFungibleToken { /// The only thing that an NFT really needs to have is this resource definition - access(all) resource NFT: NonFungibleToken.NFT, ViewResolver.Resolver { + access(all) resource NFT: NonFungibleToken.NFT { /// Arbitrary trait mapping metadata access(self) let metadata: {String: AnyStruct} @@ -33,7 +33,7 @@ access(all) contract BasicNFT { } access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <- BasicNFT.createEmptyCollection() + return <- BasicNFT.createEmptyCollection(nftType: self.getType()) } /// Uses the basic NFT views @@ -41,7 +41,9 @@ access(all) contract BasicNFT { return [ Type(), Type(), - Type() + Type(), + Type(), + Type() ] } @@ -61,24 +63,68 @@ access(all) contract BasicNFT { ) case Type(): return MetadataViews.dictToTraits(dict: self.metadata, excludedNames: nil) + case Type(): + return BasicNFT.resolveContractView(resourceType: nil, viewType: Type()) + case Type(): + return BasicNFT.resolveContractView(resourceType: nil, viewType: Type()) } return nil } } + access(all) view fun getContractViews(resourceType: Type?): [Type] { + return [ + Type(), + Type() + ] + } + + access(all) fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? { + switch viewType { + case Type(): + let collectionRef = self.account.storage.borrow<&ExampleNFT.Collection>( + from: /storage/cadenceExampleNFTCollection + ) ?? panic("Could not borrow a reference to the stored collection") + + return collectionRef.getNFTCollectionDataView() + case Type(): + let media = MetadataViews.Media( + file: MetadataViews.HTTPFile( + url: "https://assets.website-files.com/5f6294c0c7a8cdd643b1c820/5f6294c0c7a8cda55cb1c936_Flow_Wordmark.svg" + ), + mediaType: "image/svg+xml" + ) + return MetadataViews.NFTCollectionDisplay( + name: "The Example Collection", + description: "This collection is used as an example to help you develop your next Flow NFT.", + externalURL: MetadataViews.ExternalURL("https://example-nft.onflow.org"), + squareImage: media, + bannerImage: media, + socials: { + "twitter": MetadataViews.ExternalURL("https://twitter.com/flow_blockchain") + } + ) + } + return nil + } + access(all) resource NFTMinter { access(all) fun mintNFT(metadata: {String: AnyStruct}): @BasicNFT.NFT { return <- create NFT(metadata: metadata) } } - access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { + access(all) fun createEmptyCollection(nftType: Type): @{NonFungibleToken.Collection} { return <- UniversalCollection.createEmptyCollection(identifier: "flowBasicNFTCollection", type: Type<@BasicNFT.NFT>()) } init() { let minter <- create NFTMinter() self.account.storage.save(<-minter, to: /storage/flowBasicNFTMinterPath) + + let collection <- self.createEmptyCollection(nftType: Type<@BasicNFT.NFT>()>) + let dataView = collection.getNFTCollectionDataView() + self.account.storage.save(collection, to: dataView.storagePath) } } \ No newline at end of file diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index 44a38a2c..0e87d66e 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -14,7 +14,7 @@ import NonFungibleToken from "NonFungibleToken" import ViewResolver from "ViewResolver" import MetadataViews from "MetadataViews" -access(all) contract ExampleNFT: ViewResolver { +access(all) contract ExampleNFT: NonFungibleToken { /// Path where the minter should be stored /// The standard paths for the collection are stored in the collection resource type @@ -229,7 +229,7 @@ access(all) contract ExampleNFT: ViewResolver { /// @return A structure representing the requested view. /// access(all) fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? { - switch view { + switch viewType { case Type(): let collectionRef = self.account.storage.borrow<&ExampleNFT.Collection>( from: /storage/cadenceExampleNFTCollection diff --git a/contracts/MultipleNFT.cdc b/contracts/MultipleNFT.cdc deleted file mode 100644 index befe2ab2..00000000 --- a/contracts/MultipleNFT.cdc +++ /dev/null @@ -1,35 +0,0 @@ -import NonFungibleToken from "NonFungibleToken" - -/// This interface specifies functions that a contract might want to implement -/// if it defines multiple NFT types and/or multiple collection types - -access(all) contract interface MultipleNFT { - - /// Return the types that the contract defines - access(all) view fun getNFTTypes(): [Type] { - post { - result.length > 0: "Must indicate what non-fungible token types this contract defines" - } - } - - /// get a list of all the NFT collection types that the contract defines - /// could include a post-condition that verifies that each Type is an NFT collection type - access(all) view fun getCollectionTypes(): [Type] { - return [] - } - - /// tells what collection type should be used for the specified NFT type - /// return `nil` if no collection type exists for the specified NFT type - access(all) view fun getCollectionTypeForNftType(nftType: Type): Type? { - return nil - } - - /// createEmptyCollection creates an empty Collection - /// and returns it to the caller so that they can own NFTs - access(all) fun createEmptyCollection(collectionType: Type): @{NonFungibleToken.Collection} { - post { - result.getIDs().length == 0: "The created collection must be empty!" - result.getType() == collectionType: "The created collection is of the wrong type" - } - } -} \ No newline at end of file diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index d7e15d74..c0b5a14f 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -218,14 +218,6 @@ access(all) contract interface NonFungibleToken: ViewResolver { } } - /// Function to return the types that the contract implements - /// @return An array of NFT Types that the implementing contract defines. - access(all) view fun getVaultTypes(): [Type] { - post { - result.length > 0: "Must indicate what non-fungible token types this contract defines" - } - } - /// 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. diff --git a/contracts/UniversalCollection.cdc b/contracts/UniversalCollection.cdc index e4f66b9e..245dc80b 100644 --- a/contracts/UniversalCollection.cdc +++ b/contracts/UniversalCollection.cdc @@ -72,7 +72,7 @@ access(all) contract UniversalCollection { } /// withdraw removes an NFT from the collection and moves it to the caller - access(NonFungibleToken.Withdrawable) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { + access(NonFungibleToken.Withdraw | NonFungibleToken.Owner) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { let token <- self.ownedNFTs.remove(key: withdrawID) ?? panic("Could not withdraw an NFT with the ID: ".concat(withdrawID.toString()).concat(" from the collection")) @@ -120,5 +120,4 @@ access(all) contract UniversalCollection { access(all) fun createEmptyCollection(identifier: String, type: Type): @{NonFungibleToken.Collection} { return <- create Collection(identifier: identifier, type:type) } - } diff --git a/contracts/utility/FungibleToken.cdc b/contracts/utility/FungibleToken.cdc index e57d791a..dae972fb 100644 --- a/contracts/utility/FungibleToken.cdc +++ b/contracts/utility/FungibleToken.cdc @@ -192,13 +192,6 @@ access(all) contract interface FungibleToken: ViewResolver { } } - /// Function to return the types that the contract implements - access(all) view fun getVaultTypes(): [Type] { - post { - result.length > 0: "Must indicate what fungible token types this contract defines" - } - } - /// createEmptyVault allows any user to create a new Vault that has a zero balance /// access(all) fun createEmptyVault(vaultType: Type): @{FungibleToken.Vault} { diff --git a/contracts/utility/NFTForwarding.cdc b/contracts/utility/NFTForwarding.cdc index f44351cf..8d22c091 100644 --- a/contracts/utility/NFTForwarding.cdc +++ b/contracts/utility/NFTForwarding.cdc @@ -26,7 +26,7 @@ access(all) contract NFTForwarding { /// Resource that forwards deposited NFTs to a designated recipient's Collection /// - access(all) resource NFTForwarder : NonFungibleToken.Receiver { + access(all) resource NFTForwarder: NonFungibleToken.Receiver { /// Recipient to which NFTs will be forwarded /// diff --git a/lib/go/contracts/contracts.go b/lib/go/contracts/contracts.go index 0e127a75..91c0247a 100644 --- a/lib/go/contracts/contracts.go +++ b/lib/go/contracts/contracts.go @@ -22,23 +22,16 @@ var ( ) const ( - filenameMultipleNFT = "MultipleNFT.cdc" filenameNonFungibleToken = "NonFungibleToken.cdc" filenameExampleNFT = "ExampleNFT.cdc" filenameMetadataViews = "MetadataViews.cdc" filenameNFTMetadataViews = "NFTMetadataViews.cdc" - filenameResolver = "ViewResolver.cdc" + filenameViewResolver = "ViewResolver.cdc" filenameUniversalCollection = "UniversalCollection.cdc" filenameBasicNFT = "BasicNFT.cdc" filenameFungibleToken = "utility/FungibleToken.cdc" ) -func MultipleNFT(nftAddress flow.Address) []byte { - code := assets.MustAssetString(filenameMultipleNFT) - code = placeholderNonFungibleToken.ReplaceAllString(code, "0x"+nftAddress.String()) - return []byte(code) -} - // NonFungibleToken returns the NonFungibleToken contract interface. func NonFungibleToken(resolverAddress flow.Address) []byte { code := assets.MustAssetString(filenameNonFungibleToken) @@ -46,17 +39,10 @@ func NonFungibleToken(resolverAddress flow.Address) []byte { return []byte(code) } -// NonFungibleToken returns the NonFungibleToken contract interface. -func NonFungibleTokenV2(resolverAddress flow.Address) []byte { - code := assets.MustAssetString(filenameNonFungibleToken) - code = placeholderResolver.ReplaceAllString(code, "0x"+resolverAddress.String()) - return []byte(code) -} - // ExampleNFT returns the ExampleNFT contract. // // The returned contract will import the NonFungibleToken contract from the specified address. -func ExampleNFT(nftAddress, metadataAddress, resolverAddress, multipleNFTAddress flow.Address) []byte { +func ExampleNFT(nftAddress, metadataAddress, resolverAddress flow.Address) []byte { code := assets.MustAssetString(filenameExampleNFT) code = placeholderNonFungibleToken.ReplaceAllString(code, "0x"+nftAddress.String()) @@ -76,8 +62,8 @@ func MetadataViews(ftAddress, nftAddress, resolverAddress flow.Address) []byte { return []byte(code) } -func Resolver() []byte { - code := assets.MustAssetString(filenameResolver) +func ViewResolver() []byte { + code := assets.MustAssetString(filenameViewResolver) return []byte(code) } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index c207ac36..2cb73af4 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,11 +1,10 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ../../../contracts/BasicNFT.cdc (2.987kB) -// ../../../contracts/ExampleNFT.cdc (13.841kB) +// ../../../contracts/BasicNFT.cdc (5.438kB) +// ../../../contracts/ExampleNFT.cdc (13.849kB) // ../../../contracts/MetadataViews.cdc (25.61kB) -// ../../../contracts/MultipleNFT.cdc (1.411kB) -// ../../../contracts/NonFungibleToken.cdc (10.717kB) -// ../../../contracts/UniversalCollection.cdc (4.89kB) +// ../../../contracts/NonFungibleToken.cdc (10.391kB) +// ../../../contracts/UniversalCollection.cdc (4.91kB) // ../../../contracts/ViewResolver.cdc (2.718kB) package assets @@ -76,7 +75,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _basicnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x56\xdf\x6f\xdb\x36\x10\x7e\xd7\x5f\x71\xf3\x93\x1c\x38\x76\x57\x0c\x7b\x10\xd2\x6c\xdd\x16\x63\x7d\xa8\x51\x2c\x4a\x5f\x82\x60\x65\xa4\x73\x74\x28\x45\x7a\xe4\xc9\xae\x10\xe4\x7f\x1f\x8e\x92\x15\xc9\xb2\x83\x14\x1b\x9f\x2c\xf2\x7e\x7c\xf7\xdd\xc7\xa3\x17\x67\x10\x9d\x45\x67\x00\x69\x41\x1e\xc8\x83\x32\x70\xaf\x3c\x65\x40\xe5\x46\x63\x89\x86\x15\x93\x35\x60\xd7\xa0\x60\xa9\xed\x0e\x56\xd6\x9c\x2f\x2b\xf3\x40\xf7\x1a\x21\xb5\x5f\xd1\x40\xe5\xc9\x3c\x00\x17\x08\x9f\xdf\x82\x67\x65\x72\xe5\xf2\xb9\x84\xfd\xc0\xe0\x0b\xbb\xf3\xc0\x85\x62\x50\x6d\xec\xd5\x32\x85\x4c\x32\x21\xe4\xb8\x26\x83\x39\x90\x81\x2d\xba\x1a\xd6\xb8\x03\x4d\x06\xbd\x64\xcc\x6c\x8e\x10\x6b\xf4\xc1\xdf\xc0\x8f\x6f\xde\x40\x81\x0e\xa7\x0d\xe6\x1b\xa3\xe9\x2b\x86\xbc\x5f\xae\xbe\x29\x01\xbc\x5a\xa6\xe7\xdb\xb7\x5f\x20\xb3\x86\x9d\xca\x78\x06\x2c\x85\x49\x42\xd2\xba\xf2\xec\x14\xa3\x07\x05\x25\x19\x2a\x95\x3e\x28\x53\xa2\x4a\xa5\x26\x78\x04\xcc\xe4\xc1\xd8\x1d\x6c\xac\xf7\xa1\xe2\x1d\x71\x11\x52\x8a\xc5\xbe\x56\xf0\x64\x32\x84\xab\x2d\x1a\xf6\x33\xc8\xac\xd6\x98\x49\x40\x3f\x93\x90\xca\xe4\x60\xb9\x40\x07\x56\xe7\xe0\xf0\x9f\x8a\x5c\x48\xea\x41\x39\x04\x63\x79\xbf\x99\x83\x32\x35\x94\xd6\xa1\xd0\xd7\x32\xa8\xb4\xb7\x40\x26\xd3\x55\x8e\xbe\x43\x5e\x22\xab\x5c\xb1\x02\xb6\x81\xe3\x4c\xf9\x86\x0b\x2f\x35\x51\x46\x5c\x8b\x3f\x44\x67\x8b\x28\xa2\x72\x63\x1d\x4b\xef\xf6\xad\x6b\x3a\xb7\x76\xb6\x84\xc9\xe1\xf6\x64\x6f\xff\xb1\xcd\xf1\x99\x70\xe7\x5b\xe3\xc1\x5e\x67\x29\x5f\x7f\xa1\xb7\x7a\x8b\xae\x35\xec\x6f\x75\x76\x37\x86\xb6\xe8\xbc\xd2\xbf\x77\x1c\xb5\xe6\x47\x4e\x26\x51\xa4\xb2\x0c\xbd\x8f\x95\xd6\xd3\xae\xa9\xf0\x9b\xa8\x48\xf8\x7f\x8c\x22\x00\x80\xc5\x62\x01\x69\x81\x60\x8d\xae\xa5\xe1\x41\x8c\xa2\xb7\xa6\x8f\x0e\x95\xd6\x35\x18\xc4\xdc\x0b\x5b\x85\xda\xa2\xf4\x35\x48\xc3\xa1\xb7\x95\xcb\x5a\x25\x52\x50\x81\xc4\xec\x27\xee\x6c\x56\xcb\x34\x19\x91\x38\x5f\x2d\xd3\xd9\x80\x80\x79\xc7\xc4\x63\x88\xb5\xc7\xf8\xde\xdd\x13\x3b\xe5\x6a\x60\xa7\x88\xa1\x54\x9b\x8d\x80\xdd\xb7\xb2\x33\x6e\x93\x7b\xd4\xeb\x29\x68\xe4\xce\x22\x81\xc7\x6b\x76\x64\x1e\x12\x78\x6f\xea\x6b\x76\x55\xc6\x4f\xd1\xa1\x5f\x00\x2d\x6e\x94\x27\x70\xf3\xc1\xf0\xcf\x3f\x05\x93\xce\x4e\x0a\x8d\xbb\x2f\x59\x2f\x26\x98\x75\xa6\xd3\x5e\x45\xb2\x04\xe1\x9c\x72\x78\xd7\xfc\xaa\x2a\xca\xc7\xe7\x9d\x52\xdf\x8d\x2b\x3d\x01\x7e\x5d\x19\xc8\x1c\x2a\xc6\xab\x72\xc3\xf5\xb3\x24\xe2\x69\x02\xbf\x3e\x8e\x5a\xf0\x6c\xf0\x74\x80\xd0\x21\x57\xce\xc0\xc5\x79\xa7\x9a\xf9\x89\xc0\x3d\x4c\x03\xb2\xa4\x73\x37\x1e\x7d\xb8\x5c\xcf\x03\x6c\x2b\xfa\x3f\x0a\x5e\x4e\x42\x05\x0f\xc8\xe1\x96\x08\xe8\xdb\xb4\xde\xe0\xdd\x71\x70\xb7\x83\x4d\x59\x62\x7c\x31\xb8\x69\xf3\x3f\xc8\x6f\xb4\xaa\x2f\xe3\xe9\xec\x35\xe6\xd7\xe8\x48\xe9\xd7\x5a\xa7\xa2\x47\x7f\xd9\x23\x41\xd6\xdd\x6b\xda\xe4\x1a\xad\x4b\x9c\xf8\xef\x50\x7b\x12\x32\x4c\x7b\x0a\xfa\xe5\x50\x36\x3b\xe2\xac\x68\x88\x7a\x1c\xe1\x0b\x93\xec\x45\x06\x92\x91\x4f\x8f\xcd\xa3\x4e\xf1\x51\x0f\x59\x46\x95\x98\x0c\x85\x7a\x3b\x91\xcd\xc9\x1d\x28\xff\x03\x34\xd7\x61\xcc\xe2\x7e\xe5\xe8\x33\x47\x1b\xd1\xd0\x28\x4c\xef\xec\x95\xd1\xb8\xa8\xca\x7b\xa3\x48\x27\x07\x75\xfc\x99\xa6\x9f\x96\xa4\xf1\x74\x21\xb2\x2a\xa7\x47\x20\xba\x90\x03\x08\x27\xc3\x4c\x8f\x9e\x8c\x77\x4f\x75\xa9\x13\xde\x77\x34\xa9\xf1\x39\x5d\x5a\x3b\x66\xfe\x23\xb2\x4e\xe4\xdf\x81\x2c\xa7\x8c\x53\xdb\x78\xc6\xf2\x71\x40\xef\x0c\xf0\x5b\x78\x98\xf3\x95\x2a\xd1\x27\x60\x48\x0f\x11\x3d\x1d\xbb\xf1\x86\xf4\xc1\xb8\x69\x6f\xd8\xa9\x67\xe7\x23\x19\x1e\xbc\x27\x87\xd7\xb0\x24\xc3\xab\x65\x1a\xbf\x38\xc8\x65\x78\x76\x63\xb0\x79\x40\xc7\xd8\x2e\xce\xdb\xd1\x0b\xc3\x78\xfb\x5f\x87\x83\xf2\x08\xf2\xff\x67\x7c\x3f\xe3\x39\xf2\xdf\xe0\xc4\x14\xa7\x1c\x0d\xd3\x9a\xd0\x25\x30\x59\x6b\xbb\xdb\x97\xdb\xfb\x57\x31\x03\xae\x37\xd8\x4c\xa9\x8b\x01\x1f\x97\xf1\x74\xda\xaf\x29\xbc\x93\xfd\x37\x2f\xbc\xc5\x4d\x2b\x06\x34\x35\xed\xe9\x8d\xcf\x20\x12\x95\x65\xb6\x32\x3c\xf7\x6c\x9d\x7a\xc0\xb9\x57\x5b\x8c\x2f\xce\x9b\x00\x33\x60\x9b\xc0\xa2\x3d\x5b\xf4\xb1\x36\xd1\x3e\x29\x2e\xf6\x68\x9e\x22\xf8\x37\x00\x00\xff\xff\x8d\x57\xd2\xb4\xab\x0b\x00\x00" +var _basicnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x58\x6d\x6f\x13\xb9\x13\x7f\x9f\x4f\x31\xff\x7d\xf1\x57\xd2\x4b\x93\x52\xa0\x07\xab\x42\x8f\x83\x46\x87\x74\x54\x08\x52\xee\x05\xaa\x8a\xe3\x9d\x24\x56\xbd\x76\xb0\xbd\x49\xa3\xaa\xdf\xfd\x34\xde\x87\xec\x63\x09\x45\xb7\x2f\xaa\xae\x77\x3c\x33\xbf\x79\x9e\x8c\x0f\xa0\x77\xd0\x3b\x00\x98\x2e\x85\x05\x61\x81\x29\x98\x31\x2b\x38\x88\x78\x25\x31\x46\xe5\x98\x13\x5a\x81\x9e\x03\x83\x89\xd4\x1b\xb8\xd0\xea\x70\x92\xa8\x85\x98\x49\x84\xa9\xbe\x41\x05\x89\x15\x6a\x01\x6e\x89\xf0\xe5\x18\xac\x63\x2a\x62\x26\x1a\x11\xdb\xf7\x0e\xec\x52\x6f\x2c\xb8\x25\x73\xc0\x32\xde\x17\x93\x29\x70\x92\x84\x10\xe1\x5c\x28\x8c\x40\x28\x58\xa3\xd9\xc2\x1c\x37\x20\x85\x42\x4b\x12\xb9\x8e\x10\xfa\x12\xad\xbf\xaf\xe0\xc9\xd1\x11\x2c\xd1\xe0\x20\xd5\xf9\x52\x49\x71\x83\x5e\xee\xb7\xf3\x5b\x46\x0a\x5f\x4c\xa6\x87\xeb\xe3\x6f\xc0\xb5\x72\x86\x71\x37\x04\x47\xc0\x48\xa0\x90\x32\xb1\xce\x30\x87\x16\x18\xc4\x42\x89\x98\xc9\x1a\x4c\xe2\x4a\x48\x95\xbf\xe1\x75\x16\x16\x94\xde\xc0\x4a\x5b\xeb\x11\x6f\x84\x5b\x7a\x91\x44\x91\x63\x05\x2b\x14\x47\x38\x5f\xa3\x72\x76\x08\x5c\x4b\x89\x9c\x18\xda\x21\xb1\x64\x2a\x02\xed\x96\x68\x40\xcb\x08\x0c\x7e\x4f\x84\xf1\x42\x2d\x30\x83\xa0\xb4\xcb\x0f\x23\x60\x6a\x0b\xb1\x36\x48\xe6\xcb\x2c\xc8\xa4\xd5\x20\x14\x97\x49\x84\xb6\xd0\x3c\x46\xc7\x22\xe6\x18\x38\xed\x6d\xcc\x99\x4d\x6d\x61\x09\x93\xe0\xc2\x6d\xe9\x3e\xf4\x0e\xc6\xbd\x9e\x88\x57\xda\x38\xf2\x5d\xee\xba\xd4\x73\x73\xa3\x63\x08\xea\xc7\x41\x4e\xff\x21\x93\xf1\x45\xe0\xc6\x66\xc4\x95\xb3\x82\x92\xde\x3e\xa1\xd5\x72\x8d\x26\x23\x2c\x1f\x15\x74\x97\x4a\xac\xd1\x58\x26\xdf\x16\x36\xca\xc8\x5b\xbe\x04\xbd\x1e\xe3\x1c\xad\xed\x33\x29\x07\x85\x53\xe1\x4f\x8a\xa2\x8b\xc9\x34\x6c\x02\xba\xeb\xf5\x00\x00\xc6\xe3\x31\x4c\x97\x08\x5a\xc9\x2d\x85\x80\x0f\x4f\x8a\xc0\xd4\xb3\x06\x99\x94\x5b\x50\x88\x91\x25\xfb\x2d\xd9\x1a\xc9\xd3\x3e\x58\x0c\x5a\x9d\x18\x9e\xc5\xa6\xf0\x71\x41\x3c\xcb\xaa\x14\x34\xad\x5a\x8c\x48\xc6\x9d\xbf\x94\x2b\xf3\xc6\xcc\x84\x33\xcc\x6c\xc1\x19\x26\x1c\xc4\x6c\xb5\x22\xad\x72\x2f\x16\xc4\x99\x14\x8b\x72\x3e\x00\x89\xae\xa0\x08\xe1\xee\xb3\x33\x42\x2d\x42\x78\xa3\xb6\x9f\x9d\x49\xb8\xbb\xef\xd5\xef\x79\xed\xe8\x9a\x88\x42\xb8\x7c\xaf\xdc\xc9\x33\x4f\x52\xd0\x11\xa2\x7e\xf1\x46\xcf\x83\x02\x86\x05\xe9\xa0\x84\x88\x1e\xd2\x70\x24\x22\x78\x95\xfe\x97\x24\x22\x6a\x7e\x2f\x82\xf4\x55\x13\x69\x87\xf2\xf3\x44\x01\x37\xc8\x1c\x9e\xc7\x2b\xb7\xdd\x45\x43\x7f\x10\xc2\x1f\x77\x0d\x5b\xef\x08\xee\x6b\x1a\x1a\x74\x89\x51\x70\x7a\x58\x04\xcc\xa8\x9d\xb1\x9a\xbb\xe9\x76\x85\x61\xaa\xf3\x02\xfd\x5b\x7f\x30\x28\xa9\x5a\xb1\x21\x39\xf4\xd2\xa2\xf5\xe9\xb6\x2b\x69\x6b\xca\x88\x56\x4c\xf4\xc5\x03\x5b\xa0\xf3\x79\x43\x58\xbe\x92\x94\xab\x76\x9d\xbf\x56\x0e\xe9\x21\xe2\xd3\x4a\xee\x8d\xde\x09\xbb\x92\x6c\xfb\xba\x3f\x18\xee\x43\xfe\x19\x8d\x60\x72\x5f\xea\x29\x85\xa9\xdd\x97\xfa\x62\x32\xdd\xd9\xf3\x1d\x73\xec\x71\x17\x0b\x40\x95\xab\x57\xfb\x84\x8c\x49\x2b\x0d\x71\xed\x5f\x7b\x83\x87\x5e\xde\xa0\x14\xcd\x67\xf5\x10\xde\x08\xc7\x97\xa9\x77\xee\x1a\xda\xfa\x82\xfa\xa0\xd9\xc3\xc6\x9d\x92\x0b\x5b\x2f\xf5\x5b\x6f\xd0\xa3\x58\x9c\x07\x60\x9e\x29\x5f\x03\x3a\x0c\xae\x80\xd9\xff\x41\x9a\x9a\x4d\x9b\xe6\x4f\x84\x96\x1b\xb1\x22\x33\x36\xd8\x94\xbe\xed\xc9\xcd\x2d\x93\x78\xa6\x98\x90\x61\x0d\xc7\x5f\xd3\xe9\xc7\x89\x90\xd8\x0d\x84\x9e\xc4\xc8\x86\x12\x05\xcb\x8a\x0a\x9d\x6c\x06\xad\x5f\x9a\xa7\x5d\x5e\x2a\xa2\xfd\x27\x9c\x94\xde\xe9\x86\x96\x95\xbc\x5f\xd4\xac\xc8\xac\x9f\xd0\x2c\x12\xdc\x4d\x75\x7a\xb3\x4f\x2f\x35\xf3\x0e\x01\x6f\xfd\x7c\x10\x5d\xb0\x18\x6d\x08\x4a\xc8\xfd\x35\x6a\xcb\xde\x07\x95\x2b\xea\x69\x96\x75\x6f\xb3\xce\xec\xb3\x2f\xef\x8d\x69\x49\x55\x42\x0e\x7d\x86\xa5\xaf\x7b\x4a\x7f\xac\xee\xfb\xa5\xe6\x7f\xa8\x7e\xa1\x40\x15\xc1\x7d\x5b\x91\x57\x42\xd6\x3a\x4c\x56\xdf\xba\x5a\x47\x59\x4f\x5b\x53\x94\xfe\x9e\xb5\x75\x95\xd6\x8e\xf2\xa8\x12\xfe\x88\xf2\x7d\xd5\x05\xab\x54\xb2\x1f\xb0\xbe\x07\x55\xb7\x7f\x57\x45\x2f\x55\x73\x22\xab\x55\xf4\x5f\x8b\x7d\x9a\xa8\x76\x53\xfd\x27\x9c\xe7\x63\x0f\xe3\x5c\x27\xca\x8d\xac\xd3\x86\x2d\x70\x34\xd3\xc6\xe8\xcd\xe9\xff\x77\xfb\x48\x69\x40\x79\xdd\x5d\x5a\x68\x06\x0e\x61\x9c\xb1\x19\x73\x16\xa1\xe2\xb8\xe3\xb2\x63\xd2\x5e\x7d\xe0\xec\x0c\x56\x4c\x09\xde\x0f\xde\xea\x44\x46\x7e\xa9\x48\x95\x01\x06\x06\xe7\x68\x88\x21\x0d\xbb\x7e\x47\x70\x9a\x96\x8d\x1d\xa4\xa0\x99\x71\x8d\x83\x2c\x92\x2a\x76\xa0\x69\xa9\x61\x42\xef\xc9\xc1\x23\xcc\xff\x40\xfa\xa6\xa3\x70\x24\x68\x94\xac\xb2\xf8\x40\xa7\xed\x96\x9d\x0b\x89\x3f\xdf\xc1\x7c\xf7\x0a\x96\xce\xad\x6c\x38\x1e\x33\x6b\xd1\xd9\xd1\x06\x67\x56\x38\x3c\x24\x96\x76\xc4\x75\x3c\x7e\x3e\x3f\x39\x7e\xf9\x8c\x1f\xf1\xdf\xd9\x0b\x1e\x45\x27\xcf\x9e\xce\x9e\xf0\x17\xc7\x47\xb5\x0f\xec\xf9\x73\x3e\x7b\xc2\x5f\x3e\x3d\xb9\xa6\xfd\xf9\xfa\x1f\x6d\xa2\x98\x99\x9b\x91\x5d\x2f\x82\x76\x67\xb6\xf7\x65\x8f\x3e\x4d\x83\x40\xc4\x14\x25\x76\xbd\xf8\xed\x36\x96\x4d\x2e\x4d\x67\xb6\x76\x95\x36\xe3\xb7\x9b\x25\x9d\x4e\x02\x5a\xa9\xb2\x98\x84\xd2\x9a\xd6\xae\x6f\x65\x22\x09\xfc\x0f\x0c\xbb\xd0\xa1\x6d\x2b\xb1\xb4\xef\xfa\xdf\x1c\x30\x63\x4a\xbb\x18\xca\x15\x6c\x75\x02\x11\xae\x51\x6a\xff\xbf\x01\x85\xb7\x2e\xfb\xfd\x61\x32\x1d\x75\x48\xc4\x5b\x87\x46\x31\x79\xf9\xe9\xef\xba\xd7\xcf\x77\x9f\xfa\x85\x6b\x33\xa9\x87\x6a\xee\x46\x5a\xcd\xa5\xde\x8c\xb4\x59\x04\x1d\xf6\xb7\xdf\x13\x66\xf0\x3d\x59\x3e\x4c\x9d\xd1\x4e\x37\x63\x4a\xa1\xf9\x31\x9d\xd5\x5c\x30\x69\xc3\x96\xd1\x33\x7f\x02\xb7\x11\xce\xa1\x09\xf6\x82\x93\x11\xfb\xe0\x24\x30\xd7\x33\xa9\xf9\x0d\x5f\x32\xd1\x96\xde\xd0\x68\x4b\x50\x89\x9c\xfb\x7a\x07\xc9\xdb\x55\x4b\x35\x2f\xaf\xc3\x1f\x84\x72\x68\x4a\xa0\xea\x65\x3f\x16\x8a\x4a\x46\xff\xc1\xbd\x93\x76\xbd\xa2\x4d\x57\xd7\xe9\xca\x66\x97\x2e\x74\x50\xe5\x97\xff\x57\x07\xd3\xd1\x87\x7e\xb0\x14\x66\x3d\x67\xef\xd5\x73\xa7\x5c\xcb\x4f\x1a\x1d\x1b\xa8\x88\x50\x39\x31\x17\x68\x42\x08\xc8\x77\x39\xf6\x72\x96\x81\xdb\xcd\x20\x15\xe3\x14\xe3\x46\x06\xd0\xef\xf8\xe5\x7d\xdd\x17\xcf\xd4\x2f\x15\x9b\xa5\xbe\x2a\x95\xea\xd6\x9e\x66\xd9\x1a\xfb\xa7\x87\x29\x83\x21\x38\x5d\x6a\x54\x65\x5d\x53\x6e\x1f\x99\x5b\x0e\x7a\x15\xd1\xa5\xb4\x3f\x3d\x4c\x65\xec\x61\xf3\x06\xc6\xd7\x83\x0a\xd7\x3c\x1b\xe0\x55\x49\xc0\x3e\xfd\xa8\x1b\xe4\x8e\x4f\x0a\x33\x17\x91\x53\xa5\xd8\x52\x4b\xdf\xf7\xe0\xdf\x00\x00\x00\xff\xff\x91\x89\x64\x8f\x3e\x15\x00\x00" func basicnftCdcBytes() ([]byte, error) { return bindataRead( @@ -92,11 +91,11 @@ func basicnftCdc() (*asset, error) { } info := bindataFileInfo{name: "BasicNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2e, 0xe5, 0xfc, 0x10, 0x61, 0x7e, 0x24, 0x26, 0xaf, 0x35, 0x29, 0xb2, 0xcc, 0x4a, 0xdd, 0x5, 0x34, 0xb1, 0xa9, 0xd4, 0xd4, 0x6, 0xc5, 0x22, 0x28, 0xbf, 0xf5, 0xe6, 0x8b, 0xa6, 0xf, 0x2f}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe3, 0xa3, 0xe3, 0xb0, 0x1d, 0xcd, 0x19, 0x21, 0x8b, 0xe8, 0xe9, 0x3f, 0xeb, 0x74, 0x25, 0x31, 0x6, 0x22, 0x3c, 0x78, 0x1e, 0x75, 0xe8, 0x2f, 0x1c, 0x56, 0xeb, 0xa8, 0xf2, 0xe3, 0xa7, 0x39}} return a, nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x5f\x73\x1b\xb7\xae\x7f\xd7\xa7\x40\xf4\xd0\x91\x72\x1d\x39\xe9\x9f\xdc\x56\x13\x35\x6d\xe3\xba\xd7\x33\xa9\x6f\x26\x51\xdb\x87\x8c\x27\xa5\x76\xb1\x16\xaf\x77\x49\x95\xe4\x4a\xd6\xf8\xfa\xbb\x9f\x01\xb9\xcb\x25\xf7\x8f\x2c\x27\x33\x67\x8e\x1e\x12\x69\x17\x04\x81\x1f\x40\x10\x04\xe8\xd3\xa7\x30\x7a\x3a\x7a\x0a\xb0\x5c\x73\x0d\x5c\x03\x13\x80\xb7\xac\xd8\xe4\x08\x9c\xfe\x2d\x50\x18\x66\xb8\x14\x20\x33\x60\x70\x9e\xcb\x1d\x5c\x4a\xf1\xec\xbc\x14\xd7\x7c\x95\x23\x2c\xe5\x0d\x0a\xe2\x50\x6a\x2e\xae\xc1\xac\x11\xfe\xfc\x1a\xb4\x61\x22\x65\x2a\x9d\xd1\x9b\x0b\x43\x9c\x85\x34\xb0\x61\xca\x10\x23\xa2\x92\x59\xc6\x13\xce\x72\x4f\x0b\xab\xd2\x00\x37\xc0\xb4\x2e\x0b\x4c\xc1\x48\x58\x21\x8d\xd7\xbc\xe0\x39\x53\xf4\x60\x2d\x77\x50\x30\xb1\x87\xcb\xf3\xa5\x86\x9d\x2c\xf3\xb4\x91\xd3\xb2\x4d\xa4\x42\xc8\x4a\x91\x90\xd0\x2c\xe7\x66\x3f\x0b\x34\x4c\xa4\x30\x8a\x25\x06\x52\x89\x4e\xa4\x66\x34\xb1\xd5\x72\xb3\xe6\xda\xf0\x84\x19\x4c\x21\xc9\x99\xd6\x3c\xa3\x5f\x5c\x5a\x25\xf5\x5e\x1b\x2c\x20\x93\x0a\xb8\xd1\x56\x8a\x19\xe9\x97\x62\xc6\x05\x6a\x60\x24\x2c\x81\x77\x79\xbe\x84\x1d\x37\x6b\x28\xb8\xe0\x05\xcb\xa1\x40\xc3\x52\x66\x98\x45\x04\x46\x4f\x4f\x47\x23\x5e\x6c\xa4\x32\x04\x67\x8d\xa6\x05\x13\x32\x25\x0b\x18\xb7\x1f\x8f\x6b\xfa\x3f\x39\xee\xde\xa3\x96\xf9\x16\x55\x45\x1b\x3e\xf2\x74\xbf\x57\x33\xd2\x4b\x5d\x11\x46\xcf\xc6\xa3\x11\x4b\x12\xd4\x7a\xc2\xf2\x7c\xda\x60\xf3\xab\x73\x80\xcb\xf3\xe5\x3c\x9e\xec\x6e\x34\x02\x00\x38\x3d\x3d\x85\x77\xcc\xac\x61\xb7\x46\x85\x16\xf5\x82\x0b\x83\x0a\xf4\xda\x5a\x64\x85\xa0\x8d\x54\x98\x7a\xf2\xe5\x1a\x1b\x3b\x6f\x98\x59\x6b\x8b\xa1\x33\x58\x9e\xa3\xb5\x16\x30\x55\x0f\x04\x2e\xda\x2f\x15\x6a\x59\xaa\x04\xc1\xec\x37\x68\x19\x87\xc2\xe7\x68\xe0\x77\x2b\xc4\x07\x23\x15\xbb\x46\x12\x70\x0e\xc1\x8f\x46\xf6\xbf\x10\x92\xb5\x94\xda\x89\x2e\x58\xe1\xcc\x45\xca\x9c\x58\x27\x34\xe4\x2a\x34\x0d\x24\x4c\xc0\x9a\x6d\xd1\x3a\x87\xa5\x14\x72\xe7\x19\xad\x30\x61\x65\xc5\xc6\xce\x9d\xb1\x04\x1b\xd7\x52\xf8\x4f\xc9\x15\x92\x4f\x93\xeb\x5a\x36\xa0\x37\x98\x90\x4b\x39\x6e\xc4\xb6\x90\xaa\xab\x8f\xd7\xd6\x5a\xa1\xed\x0b\xb3\xcb\xf3\xe5\x49\x64\x9b\x59\xdb\x48\x7d\x00\xf1\x74\x0e\x7f\x5c\x08\xf3\xf2\xdb\x86\x86\xf4\x38\x27\xdf\x20\x25\xce\xb8\xde\xe4\x6c\xef\x9d\x15\xb6\x1c\x77\x83\xec\x48\x03\x82\x58\x71\x71\x3d\x48\x94\xa2\x4e\x14\xdf\x90\x09\x1f\xa4\x35\xeb\xb2\x58\x09\xc6\x73\x4f\x19\x8b\x59\x79\xcc\x7b\xb9\x67\xb9\xe1\xa8\x0f\xcb\xa9\x31\xcf\x1c\x5f\x55\x0f\x98\xc3\xc7\x68\x05\xcc\x1c\xab\xfd\x55\x3c\xd1\x6f\x28\x50\xf1\x04\x52\xee\xa2\x88\xda\xdb\xa0\xa5\x18\xad\x79\x92\xc0\xba\x0b\xd3\xc3\x33\xd6\x82\xcd\xe1\xce\x69\x32\x87\x9f\xc5\xfe\x83\x51\x65\x62\xee\xed\x30\x3f\x96\x0b\x6e\x26\xfe\x17\x7d\x42\x5c\x4f\xa2\x37\x3d\x60\xc6\x04\x1d\x04\xe3\xd7\x0f\x03\x11\xd3\x1f\x54\xa3\x21\x9d\xc2\x5d\x34\x8c\x70\x98\xf1\x14\x16\xee\x5b\x59\xf2\xb4\xfb\xde\xfa\xff\xc2\x2a\xdb\x7d\x19\x28\x0a\x8b\x50\xed\x2e\xa9\x57\x19\x16\x8d\xfa\x5d\x32\xaf\x3a\x2c\x1a\x18\xba\x64\xde\xa3\x16\x5e\x79\x4f\x74\x1f\x7b\x49\xa2\x90\x19\xfc\xb5\xd8\x98\xfd\x9b\x26\x4c\xb9\xa7\x6e\x23\xa5\x57\xd0\xbc\x8b\x46\x33\x91\x82\x42\x53\x2a\xa1\xab\x00\x61\xe3\x1d\xcb\x73\x8a\xa3\xf4\x8b\xd9\x0d\x6d\x6f\x63\x90\xdc\x09\xbb\xd9\x44\x2c\x7e\xba\xeb\xc4\x85\x66\xb2\xfb\xde\x55\x96\x95\xa2\x5f\xee\xc9\x74\x0e\x3f\x35\x81\x3f\x60\xd4\xb2\xad\x93\x19\x5e\x3d\x0b\x88\x07\x38\x06\xc0\x41\xe8\xf1\xa1\x40\xb4\x70\xad\x54\xd7\x68\xac\x27\x92\x20\x1f\x97\xfb\x0d\x5e\xf5\x4f\xfc\x31\x7a\x48\x1f\x22\x7e\x15\x7b\x73\x15\xc7\x7e\x9c\x4c\x4f\x8e\x21\xf7\x01\xe5\xd8\x01\xbf\xa6\x9c\x54\x3c\x9e\xfe\xd6\xa0\x12\x2c\xff\xe3\xfd\xdb\x63\x87\x5c\x9e\x2f\x1b\x2c\xcf\x98\x61\x9f\x37\xf0\x71\x40\x7c\x40\xc5\x59\x7e\x2c\xf5\xd2\x06\xc4\x1f\x03\x43\xd3\xe7\xaa\x6f\xbd\xb4\x7d\x50\xb9\xdd\x8a\xf8\x4c\x3e\x59\x27\x98\xdb\x19\xa6\x41\x80\x79\xdd\x8e\x2a\x3b\x6e\x92\xb5\xf3\x98\xbb\x8e\x7c\x09\xd3\x78\xd8\x15\xe6\x9d\x31\xd0\xb8\x55\xef\xa0\x49\xef\x08\xf0\x21\xda\xc7\xb1\x2e\x5c\xf5\x27\x8a\xd8\xed\xd0\x36\x3c\x2c\x88\xe3\xb1\x64\xff\xb3\x5c\xbe\x3b\xe7\x39\x0e\x8b\x46\x9f\x52\xe5\xf3\x56\x74\x1c\xa4\x9f\xf6\xbe\xe9\x3e\x1d\x02\x38\x58\x0b\xfd\x08\xbb\xf4\x8f\xf2\x20\x4a\x8b\xa0\x60\xb7\x20\xca\x62\x85\x8a\x36\x55\x9b\xc7\xdb\x58\x47\x61\x6e\x55\x65\x92\xa9\x4b\x57\x4d\x98\xb2\x0f\xf1\xd6\x2e\x72\x12\x5b\x74\xa2\x40\xc6\x31\x4f\x61\xcb\xf2\xd2\x4e\xaa\xd1\xc6\x57\x31\x00\x02\xed\xd7\xd5\xc8\x0b\x91\x49\x58\x40\xaf\x82\x13\x67\xf3\x71\x15\xf7\x6c\x0e\x50\xbd\x1a\x9f\x54\x1a\xcd\xeb\xad\xef\x84\xe4\x99\xd3\x94\xfd\xf0\x06\x73\xbe\xe5\xda\x74\xb6\xe3\x8a\xf1\x15\x2c\xe0\x63\x20\xdb\xd5\xf1\x2e\x5c\x9b\x65\xd8\x51\x82\xf9\xbf\xd0\x05\x7c\xd8\x78\xc4\x12\x73\x63\x86\xa5\xab\x80\xfc\x42\xc9\xc2\xc8\xfe\x08\xe1\xfc\xb0\x07\xe4\xeb\x4f\x24\x1e\x2f\x66\xbc\x3f\x3c\x42\xd0\x60\xe0\x64\xbc\x36\x66\xa3\xe7\xa7\xa7\xd5\x01\xfe\x99\xc8\xcc\x4c\x8a\x2c\x97\xbb\x99\x54\xd7\xa7\xe3\x59\x22\x45\xc2\xcc\xa4\x82\x76\x66\xa4\x4b\xea\x26\xd3\xe9\xf1\xa2\xf6\xed\x4b\x07\x05\x0e\xf2\x84\x2a\xea\xbf\xa9\x56\xb4\x8d\xfe\xf5\x41\x87\xa6\x72\x7b\xc0\xab\x30\x0f\xb9\x3c\x5f\xd2\x76\x64\xa3\x7e\x40\xf2\xb0\x4c\x9f\xab\xd1\x71\xdb\xc5\xbf\x5d\x29\x2f\xd6\xf1\x7a\xf9\xed\x79\x30\x2c\xe3\x6d\x92\x97\x69\x1d\x73\x97\xdc\x1e\x48\x53\xc8\xa4\xa4\x78\xa9\xd7\x72\x07\xd2\xac\x51\x41\xa9\x51\x53\xb4\x76\x2c\x87\x23\x9a\xe3\x97\x3a\x32\x8a\x5d\xe3\x86\xf5\xf8\x04\xc6\x99\x94\xe3\xfe\x18\x66\x8f\x7f\x76\x18\x09\xdf\x89\xc1\x74\x12\x5b\x4a\xc7\x77\x42\x3f\xe6\x71\xba\x7e\xe2\xe7\xbe\x64\x05\x1d\x6f\x62\x51\xa6\xa3\x21\x08\x02\xd5\xb9\x06\x06\xa5\xe0\xb7\x60\x78\x81\xda\xb0\x62\x73\x02\x3b\xac\x8b\x1a\x05\x53\x37\x94\xa9\xdb\xaa\x0e\x83\xd4\x59\x84\x70\xa7\x2d\x68\x93\x33\x93\x49\x55\x68\xb8\x11\x72\x67\xeb\x54\x35\x84\xdc\xcc\x06\x55\x6e\xa6\xb7\x82\x76\xf4\xb6\x4f\xeb\x9d\x27\xc2\xd2\xee\x6e\x2d\x14\x22\xb8\xaf\x9e\x9c\x84\x42\xce\x61\x7c\xc6\x0c\x8d\x54\x4c\x71\xb3\x3f\xb0\x39\x35\x76\x98\xb1\xd4\x21\x38\x69\x09\x3a\x0c\x28\x39\x8f\x45\xd2\x72\x71\x68\x91\x33\xd0\x09\xc6\xcd\x3c\x08\x46\x26\x9d\x85\xdf\x5b\xb2\x0e\x16\xee\xf1\x44\x27\x52\xe1\x1c\x5e\x3c\x9f\x3d\xaf\x76\xd9\x17\xcf\xed\xf7\x28\xd5\x1a\xbf\x91\x45\x21\xc5\x78\x78\xfb\xad\x67\x3b\x8c\x39\x79\xec\x10\xd8\xd6\x9b\x5b\x20\x0b\x9e\x37\x08\xc7\x0a\x1d\x0f\x76\x3d\xae\x7f\xc4\xa1\xb8\xd4\x70\x8b\xa8\xee\xfb\x4e\x52\x61\x3e\xe4\x08\xaa\x84\xbd\xb7\x0e\xd5\xc4\xa2\x9e\x72\x54\xef\x69\x91\x8e\xa8\x71\x05\x85\x52\xa6\x44\x0a\x5a\x27\xb6\x56\x4c\x63\xe3\x23\x2d\x51\x58\xef\x89\xaa\x7d\xd5\x9a\x13\xf0\xb7\xab\x5e\xfd\x0d\x17\x67\x2e\xc9\x6b\x1f\x30\xea\x64\x71\x0a\x5b\xa6\xc8\xe7\x30\xa5\x0c\x73\x0e\x3f\xdd\xb9\xa1\x73\x88\xe3\x70\xf7\x8c\xe2\x8a\x38\x34\x5c\x0f\x55\x12\x07\x47\x6c\xca\x55\xce\x13\x37\xe0\x9d\xff\x3e\x8a\x6a\x3d\x30\xe9\x2d\x97\x78\x59\xe1\xd5\x33\xb8\x8b\x0d\xe6\x6a\x77\x28\x0c\xcf\x38\x2a\x58\xc0\x38\x61\x29\x8a\x04\x1b\x5d\x1a\x0b\x8c\xbb\xbc\x03\x45\x60\x11\x6a\x32\x69\xb8\xce\x83\x19\xa6\x4f\xba\x3c\x1a\xd5\x60\x11\xe8\xf6\x30\x87\x56\xd5\xe4\x1a\xcd\x87\x72\xb3\x91\xca\x58\x75\x69\xd5\x68\x5f\x08\x61\x90\x73\x6d\x6a\x57\x31\xf6\x5d\x55\x08\xe1\x44\x95\x20\xdf\xa2\xb2\xb8\x6f\x4c\xa7\xfc\xd6\x29\x28\x74\x26\x9a\x4c\xe7\x70\xe7\x16\xea\x2f\x52\xe6\xf7\x2d\x43\x10\xce\xba\x1e\x63\x07\xb4\xc8\x17\x6d\xcb\xc4\xd4\x1f\x07\x76\x7a\x4a\xe3\x8d\x2a\xb1\x6f\x15\xc6\x1c\x86\x50\x7b\x5f\x01\xb4\x5b\xa3\xdd\x90\xa5\xb2\x15\x66\x3a\xf8\x5c\xf3\x2d\x0a\xb7\x4c\x68\xe5\x58\x68\x30\x85\xd5\xbe\x55\x40\x8f\xf8\xfd\x1c\x56\xd6\xfd\xf1\xcb\x0d\xb6\x45\x69\xcb\xaf\xda\xf9\xfe\xaf\xd4\xa6\x09\x30\x25\x12\xef\x14\x33\x56\xe6\xe6\xb0\x09\xb8\x6e\x5b\x60\x62\x7c\xba\x33\x75\xa0\xc6\x26\xe0\x99\x9b\x79\xb1\x18\xca\x9a\xfa\xab\x42\x6d\x74\xef\x01\x73\x8d\xfd\xb4\x19\xcb\x75\x4c\x3c\x84\x3a\x85\x9d\x54\xb1\x1d\x28\x2c\xe4\xd6\x15\xf5\xc8\x31\xb3\xba\x5e\x1e\xf6\x2e\x44\x0a\x8e\xa8\x5d\xcd\x6b\x63\xd4\x89\x9e\x7f\xd5\xd3\xfc\x7f\x37\xb2\xfe\xef\x4e\xa0\x72\x35\x93\x5a\x9a\x49\xfd\xe5\xe2\xac\x2e\xe7\x4f\xe7\x7d\xc5\x40\x0a\x6f\x3d\x1e\x6e\xc3\x2e\x45\x99\x38\xee\xcc\x9c\x92\x93\x1b\xdc\xcf\xa1\x99\xa2\xbb\x07\xbd\x7e\x0d\x1b\x26\x78\x32\x19\xbf\xb1\xee\x41\x8e\xe8\x91\xaa\x10\xb2\x01\x9b\x20\xd8\x28\xb9\xe5\x29\xa6\x36\x62\x77\x61\x1b\xb7\x12\x09\x5f\x5d\xb4\x42\x0e\xd9\x25\xc5\x8d\xd4\x04\x33\xbb\xb1\x3d\x37\x9a\x91\xf0\x67\x69\x1a\xc1\xef\xa7\xd1\xc1\x46\xd4\xa9\xc2\xda\x51\x44\x7f\x71\x56\x8f\xe4\x29\x30\xa5\xd8\x7e\xb0\x7e\x55\x49\x30\xb1\x62\x0e\x82\xdf\x76\xd6\x08\x7d\xf7\x85\xe9\x27\xd0\x72\xf2\x18\x11\x12\x32\x4d\x5d\xa7\x0a\x77\xd5\xa8\x4a\xcc\x60\x77\xdd\xad\x79\xb2\xf6\x7e\x6a\xfb\xab\x79\x0a\x52\x60\x47\x00\x99\xa7\xcb\x7e\x0f\xf8\x68\x99\xcf\x78\x7a\xe5\xe5\x1b\xb5\xdb\x0f\x46\xc9\xbd\x67\x71\x20\xc6\x5f\x9c\x05\x51\x5d\x38\x34\xeb\xce\x2f\xbd\xb3\x31\x87\x29\xec\x36\xfa\x1e\x8c\xea\x17\x67\xae\x48\xec\x5c\x7f\xa0\x4c\xdc\xf2\xed\x1b\xdc\x0f\xc6\xd6\xdf\xb0\xea\xea\xb0\x42\x96\xc2\xf8\xaa\xd4\x50\x27\xf2\x41\x01\xdf\xa2\xb8\x36\x6b\x92\xf1\x42\x98\xa3\xc5\x9b\xe5\x76\xd8\x43\xd5\x53\x3f\xd1\x4a\x2a\x25\x77\x97\xe7\xcb\xc9\xa7\xa0\xb1\x37\x9d\xc3\x57\xfd\xce\xd8\x2e\xa7\x56\x92\x4c\xbe\x6a\x39\x01\x99\x9f\xe9\x41\x2e\xd3\x21\x18\x7f\xb1\xf2\x58\xac\xac\x8c\xca\xb7\xa8\xab\xb6\x5d\xd5\xf9\xc4\xd4\xae\xd7\x8b\xb3\x63\xd4\x0b\x5b\x9c\x93\x96\x96\xbd\xed\xcf\x8e\x9a\x3c\x73\xbd\xca\x8c\x12\xfd\x21\x5d\xe3\x05\xd8\x66\x11\xa0\x45\x6c\x2c\x38\xfd\x93\x3f\x36\xe9\xfe\xb2\x7e\x52\xbd\x9e\x34\x2b\x82\xae\x38\x1c\xd1\x60\x8a\xdb\x48\x95\x68\x3f\x37\x73\x24\x47\xcc\x71\x7c\x5b\xe9\x2e\xe8\x4a\x7d\x76\x37\x49\x64\xc6\x65\x62\xed\xb6\xd2\x7d\xd3\xd8\x7f\x3c\x82\xfd\xbe\xe9\xf5\xfc\xc2\x46\xdd\x71\x10\x79\xcd\xaa\xac\xe8\x70\x5b\x2f\x00\xd0\x83\x57\x31\x86\x4e\xf3\x2d\xc0\xe6\xbc\xba\x12\xe3\xe4\xf5\xa1\x39\xcf\xad\x3a\xf5\x09\x18\xdc\x65\x11\x7f\x29\xc6\x25\x92\x8c\xf2\x12\x68\x5d\xf9\xa9\x18\x8f\x3a\x6e\x14\x44\x7b\x97\xdd\xdb\xcb\x31\xf5\xe5\xa0\x90\xf5\xd6\x9e\xb7\xdd\xcd\x1c\x57\xad\xdf\xf1\x3c\x87\x15\x42\xa9\xed\xcc\x9e\x79\xfd\x49\x71\x8b\xb9\xdc\xa0\xd2\x64\x08\x5b\x6a\x71\x3b\xdf\x86\x29\x56\xa0\x41\x7b\x4b\x68\xc3\xb4\xae\x0d\x15\x76\x9a\xa6\x50\xa0\x59\xcb\x74\x16\x09\x3f\x14\xc6\xc3\x8a\x9e\xee\x29\xe9\xbd\xee\xeb\x54\xf6\x76\x29\x3f\xab\xbd\x77\x7c\x49\xd0\x0f\xbb\x7a\xc8\xe8\x16\x0a\xca\x98\xa2\x8b\x13\xd5\x2a\x08\x7a\x2d\xb3\xae\x75\x2d\xc0\x75\xa7\x6e\xed\x0a\x8e\x75\x70\x48\x51\x73\x55\xd9\x73\xd6\x75\x08\xd0\xb6\x9f\x57\x2a\xb2\xc6\x46\xa1\xa6\x53\x62\xe5\x0e\x0a\xff\x29\x51\x9b\xf6\xe0\xde\xe5\x73\x5c\xa5\xf5\x75\xbb\xae\x3a\xd4\x53\x1c\xee\x27\x7e\x59\xed\x9b\xb6\x9b\x26\x80\xbe\xc7\xac\xbe\x07\xc1\x92\x84\x12\x8c\xfa\x38\x3e\x73\x5b\xdc\xab\xaf\x7a\xdb\xee\x3f\x0e\xb7\x1e\x28\x8f\x9e\xc3\x69\xc5\xe6\xf4\x40\x2d\xa0\xbf\x2d\xd1\x9b\xc1\x3b\x61\x6c\xe5\x25\x43\x45\x0c\xeb\x15\x54\xe5\x41\x51\xd2\x7e\x58\xe7\x33\x77\x81\xe2\x01\xf0\xfa\x15\x8c\x8a\x2e\x11\x8c\xb3\x6b\x34\x67\xee\xd8\x19\x96\x30\xa6\x4f\xfa\xdb\xa8\x61\x2d\x66\x88\x4f\x50\xc7\x38\xcc\x26\xac\x7e\x59\xc7\x18\x32\x5a\x4f\xe7\xbc\xe1\xf2\x96\x8b\x1b\x77\xd0\xff\x3c\x2e\xbd\xfb\x47\xbd\xc6\xe7\x30\xc9\xca\x6a\xc3\x3d\x72\x03\x69\x7f\xfc\x86\x12\xe3\xf5\xd0\xf5\x8e\xf0\x73\xdf\x7d\xdc\x7d\x52\xcd\x13\x3b\xcc\x67\xac\xc0\x03\xbd\x1a\x77\x09\x2b\xe5\x5d\x3f\xfc\x9d\x9e\xf6\xfb\x5e\xc6\x73\x7c\x7c\xc3\xdd\x36\xdb\x7d\xf3\x8d\x69\x8d\x46\xcf\x76\xb8\xd2\xdc\xe0\x33\x62\xa9\x67\x89\x2c\x4e\xbf\xcb\x5e\x7e\xfd\xc3\xb7\xc9\xf3\xe4\xbf\xd9\xf7\x49\x9a\xbe\xfc\xf6\x9b\xd5\x8b\xe4\xfb\xaf\x9f\xb7\x5e\xb0\xef\xbe\x4b\x56\x2f\x92\x1f\xbe\x79\xf9\xe9\x3c\x97\xbb\x4f\x7f\x49\x95\x16\x4c\xdd\xcc\xf4\xf6\x7a\xdc\xbf\x9e\xfb\x9d\xc5\x6a\x5f\x55\xfe\x79\x41\x81\x42\x6f\xaf\xff\xeb\xb6\xc8\xbb\x5c\x06\x2d\xf4\x30\xf8\xfd\xb0\x54\xc5\x73\xda\x27\xea\x76\x79\x50\xa0\xec\x97\x37\x2e\xdf\x57\xb7\x75\x7d\xa2\xc6\xb5\xcb\x09\x58\x74\x45\xd9\x48\x58\x63\xbe\x81\xbd\x2c\xeb\xd4\x80\xbe\x2b\x10\x78\x6b\xaa\xcb\xca\xe7\xcb\xd9\xc0\x8c\xd8\x34\x4f\xdb\x56\x7f\x44\x5f\x75\x3c\x80\xbf\xfe\xa7\x64\x0a\x2f\x08\xf9\xb9\x33\x46\x3f\xdd\x8a\x09\x81\xea\x61\x3a\x2d\x13\xce\x72\x3d\x3f\xb0\x7e\xc7\x66\xc7\x8d\x41\x35\x3e\x4a\x9d\x8a\xd8\x3a\x27\x29\xf3\x69\x95\xcb\xe4\x26\x59\x33\x3e\xd4\x36\xb9\x3f\xe0\x39\xf7\xed\x14\xa8\x3e\xe9\x04\xe9\xc8\x7b\x5f\xd4\xb7\xa7\x7f\x01\x2c\x2d\xb8\x00\x49\x79\x34\x65\x66\x94\x14\xd4\x97\xbd\xdd\xdd\x6e\x4a\xa7\xdd\x3d\xf0\x9a\x07\x5b\x39\xbb\x17\x5c\x18\x5b\x11\xf1\xd9\x76\x5f\xda\x10\x5e\xa3\x75\xd7\x83\xc3\xfb\xb1\xa7\x55\x03\x90\x72\x7e\xfa\x9f\x32\xa3\x8a\x65\xdd\xe6\xa3\x9f\xc1\x51\xf5\xf0\x81\x80\xe4\xa7\x14\x0a\x6f\xfb\x0b\xa3\x94\xc4\x54\xf3\xfd\xe7\xdc\xf8\xf4\xe4\xad\x1b\x80\x04\xc2\xdd\xa8\x53\x3e\x3a\x78\x25\xb4\x5b\x20\xb7\x89\x41\xa9\x14\x0a\xf3\x0b\xb9\x17\x2c\x6c\x6a\x1d\x3c\x69\x6d\x24\xed\x5e\xa6\xa5\x19\x5f\xc1\x22\x62\x33\x5b\x23\xbf\x5e\x9b\x83\x23\x5d\x17\xb4\x3d\xd0\xf7\x76\x3b\x65\x36\x9b\x01\x6f\x38\x26\x36\xaf\xf5\x19\x72\x74\x24\xa9\x7b\xba\x58\xac\x30\x4d\xc9\xde\xae\xd7\x07\x5c\x18\x59\x37\x3d\x07\xa4\xb2\xed\x42\x58\xc0\x78\xc5\xd4\xb8\x33\x7b\x75\x84\xf3\x0e\x18\xbd\xdf\x32\x0a\x69\x3b\x32\x49\x73\xda\xeb\x78\x51\xe3\x49\xfd\x77\xd2\x22\x5f\x3a\x78\x0d\x2d\x70\x2a\xff\xb5\x4b\x15\xf8\x96\xff\xda\xa5\x6a\x1c\xc6\x37\xeb\x23\x9a\xa1\x0a\xb0\xd3\xb7\xff\xb0\x6f\xef\x4c\x4f\xe3\xa5\x0c\x1f\xd0\xf8\x0b\xfd\xd5\x1f\x19\x34\xb9\x3e\xe5\xdf\x9d\xbf\x0f\x80\xc5\x81\x2c\xda\x51\x47\x33\xbc\xa9\x6d\xf4\xa6\xe7\xcf\x12\x28\x2c\x68\xb6\xad\xaf\xfb\x57\x7c\xfd\xf0\x38\x43\x3e\x74\x68\xaf\xa9\xd3\x4e\xae\x4b\xbe\xec\xa9\x07\xd3\xe1\x3e\x26\xef\xc2\xee\x5d\x2f\x8f\x28\x15\x8e\x71\x6b\x9f\x5b\x48\xcb\x49\x98\x24\x9e\x80\x91\xf3\x1e\x79\xa7\x11\x7a\xde\xc3\x5d\x32\x0c\x09\xdb\xb0\x15\xcf\x69\xf5\x74\xff\x16\x64\x00\xb7\x37\x6c\xd3\x3e\x4d\x79\x36\x1c\xb5\x17\x91\x6b\x5d\x0e\xa7\xd7\x7d\x92\xf6\x6a\x1c\xf1\xb6\x62\xeb\xf5\x24\x92\xe6\x04\x98\x99\x77\x51\x9e\xf6\xfb\x4d\xb5\x05\x3d\xc6\x67\xaa\xbf\xac\x89\x96\xbd\x63\x33\x19\x10\xba\x65\x26\xc7\xc0\x99\xa8\x7f\x19\xd4\xb5\xa2\xfb\x11\x8c\xfe\x15\x00\x00\xff\xff\x96\xa1\x9c\x8b\x11\x36\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xcc\x5b\x5f\x73\x1b\xb7\xae\x7f\xd7\xa7\x40\xf4\xd0\x91\x72\x1d\x39\xe9\x9f\xdc\x56\x13\x35\x6d\xe3\xba\xd7\x33\xa9\x6f\x26\x51\xdb\x87\x8c\x27\xa5\x76\xb1\x16\xaf\x77\x49\x95\xe4\x4a\xd6\xf8\xfa\xbb\x9f\x01\xb9\xcb\x25\xf7\x8f\x2c\x27\x33\x67\x8e\x1e\x12\x69\x17\x04\x81\x1f\x40\x10\x04\xe8\xd3\xa7\x30\x7a\x3a\x7a\x0a\xb0\x5c\x73\x0d\x5c\x03\x13\x80\xb7\xac\xd8\xe4\x08\x9c\xfe\x2d\x50\x18\x66\xb8\x14\x20\x33\x60\x70\x9e\xcb\x1d\x5c\x4a\xf1\xec\xbc\x14\xd7\x7c\x95\x23\x2c\xe5\x0d\x0a\xe2\x50\x6a\x2e\xae\xc1\xac\x11\xfe\xfc\x1a\xb4\x61\x22\x65\x2a\x9d\xd1\x9b\x0b\x43\x9c\x85\x34\xb0\x61\xca\x10\x23\xa2\x92\x59\xc6\x13\xce\x72\x4f\x0b\xab\xd2\x00\x37\xc0\xb4\x2e\x0b\x4c\xc1\x48\x58\x21\x8d\xd7\xbc\xe0\x39\x53\xf4\x60\x2d\x77\x50\x30\xb1\x87\xcb\xf3\xa5\x86\x9d\x2c\xf3\xb4\x91\xd3\xb2\x4d\xa4\x42\xc8\x4a\x91\x90\xd0\x2c\xe7\x66\x3f\x0b\x34\x4c\xa4\x30\x8a\x25\x06\x52\x89\x4e\xa4\x66\x34\xb1\xd5\x72\xb3\xe6\xda\xf0\x84\x19\x4c\x21\xc9\x99\xd6\x3c\xa3\x5f\x5c\x5a\x25\xf5\x5e\x1b\x2c\x20\x93\x0a\xb8\xd1\x56\x8a\x19\xe9\x97\x62\xc6\x05\x6a\x60\x24\x2c\x81\x77\x79\xbe\x84\x1d\x37\x6b\x28\xb8\xe0\x05\xcb\xa1\x40\xc3\x52\x66\x98\x45\x04\x46\x4f\x4f\x47\x23\x5e\x6c\xa4\x32\x04\x67\x8d\xa6\x05\x13\x32\x25\x0b\x18\xb7\x1f\x8f\x6b\xfa\x3f\x39\xee\xde\xa3\x96\xf9\x16\x55\x45\x1b\x3e\xf2\x74\xbf\x57\x33\xd2\x4b\x5d\x11\x46\xcf\xc6\xa3\x11\x4b\x12\xd4\x7a\xc2\xf2\x7c\xda\x60\xf3\xab\x73\x80\xcb\xf3\xe5\xbc\x2b\xdc\xdd\x68\x04\x00\x70\x7a\x7a\x0a\xef\x98\x59\xc3\x6e\x8d\x0a\x2d\xf2\x05\x17\x06\x15\xe8\xb5\xb5\xca\x0a\x41\x1b\xa9\x30\xf5\xe4\xcb\x35\x36\xb6\xde\x30\xb3\xd6\x16\x47\x67\xb4\x3c\x47\x6b\x31\x60\xaa\x1e\x08\x5c\xb4\x5f\x2a\xd4\xb2\x54\x09\x82\xd9\x6f\xd0\x32\x0e\x15\xc8\xd1\xc0\xef\x56\x88\x0f\x46\x2a\x76\x8d\x24\xe0\x1c\x82\x1f\x8d\xec\x7f\x21\x24\x6b\x29\xb5\x13\x5d\xb0\xc2\x99\x8c\x94\x39\xb1\x8e\x68\xc8\x5d\x68\x1a\x48\x98\x80\x35\xdb\xa2\x75\x10\x4b\x29\xe4\xce\x33\x5a\x61\xc2\xca\x8a\x8d\x9d\x3b\x63\x09\x36\xee\xa5\xf0\x9f\x92\x2b\x24\xbf\x26\xf7\xb5\x6c\x40\x6f\x30\x21\xb7\x72\xdc\x88\x6d\x21\x55\x57\x1f\xaf\x6d\xaf\x25\x66\x97\xe7\xcb\x93\xc8\x19\x66\xde\x2b\x2a\x23\xf5\x01\xc4\xd3\x39\xfc\x71\x21\xcc\xcb\x6f\x1b\x1a\xd2\xe3\x9c\xfc\x83\x94\x38\xe3\x7a\x93\xb3\xbd\x77\x58\xd8\x72\xdc\x0d\xb2\x23\x0d\x08\x62\xc5\xc5\xf5\x20\x51\x8a\x3a\x51\x7c\x43\x26\x7c\x90\xd6\xac\xcb\x62\x25\x18\xcf\x3d\x65\x2c\x66\xe5\x31\xef\xe5\x9e\xe5\x86\xa3\x3e\x2c\xa7\xc6\x3c\x73\x7c\x55\x3d\x60\x0e\x1f\xa3\x55\x30\x73\xac\xf6\x57\xf1\x44\xbf\xa1\x40\xc5\x13\x48\xb9\x8b\x24\x6a\x6f\x03\x97\x62\xb4\xee\x49\x02\xeb\x2e\x4c\x0f\xcf\x58\x0b\x36\x87\x3b\xa7\xc9\x1c\x7e\x16\xfb\x0f\x46\x95\x89\xb9\xb7\xc3\xfc\x58\x2e\xb8\x99\xf8\x5f\xf4\x09\x71\x3d\x89\xde\xf4\x80\x19\x13\x74\x10\x8c\x5f\x3f\x0c\x44\x4c\x7f\x50\x8d\x86\x74\x0a\x77\xd1\x30\xc2\x61\xc6\x53\x58\xb8\x6f\x65\xc9\xd3\xee\x7b\xeb\xff\x0b\xab\x6c\xf7\x65\xa0\x28\x2c\x42\xb5\xbb\xa4\x5e\x65\x58\x34\xea\x77\xc9\xbc\xea\xb0\x68\x60\xe8\x92\x79\x8f\x5a\x78\xe5\x3d\xd1\x7d\xec\x25\x89\x42\x66\xf0\xd7\x62\x63\xf6\x6f\x9a\x30\xe5\x9e\xba\xcd\x94\x5e\x41\xf3\x2e\x1a\xcd\x44\x0a\x0a\x4d\xa9\x84\xae\x02\x84\x8d\x77\x2c\xcf\x29\x8e\xd2\x2f\x66\x37\xb5\xbd\x8d\x41\x72\x27\xec\x86\x13\xb1\xf8\xe9\xae\x13\x17\x9a\xc9\xee\x7b\x57\x59\x56\x8a\x7e\xb9\x27\xd3\x39\xfc\xd4\x04\xff\x80\x51\xcb\xb6\x4e\x66\x78\xf5\x2c\x20\x1e\xe0\x18\x00\x07\xa1\xc7\x87\x02\xd1\xc2\xb5\x52\x5d\xa3\xb1\x9e\x48\x82\x7c\x5c\xee\x37\x78\xd5\x3f\xf1\xc7\xe8\x21\x7d\x88\xf8\x55\xec\xcd\x55\x1c\xfb\x71\x32\x3d\x39\x86\xdc\x07\x94\x63\x07\xfc\x9a\x72\x52\xf1\x78\xfa\x5b\x83\x4a\xb0\xfc\x8f\xf7\x6f\x8f\x1d\x72\x79\xbe\x6c\xb0\x3c\x63\x86\x7d\xde\xc0\xc7\x01\xf1\x01\x15\x67\xf9\xb1\xd4\x4b\x1b\x10\x7f\x0c\x0c\x4d\x9f\xab\xbe\xf5\xd2\xf6\x41\xe5\x76\x2b\xe2\x33\xf9\x64\x9d\x60\x6e\x67\x98\x06\x01\xe6\x75\x3b\xaa\xec\xb8\x49\xd6\xce\x63\xee\x3a\xf2\x25\x4c\xe3\x61\x57\x98\x77\xc6\x40\xe3\x56\xbd\x83\x26\xbd\x23\xc0\x87\x68\x1f\xc7\xba\x70\xd5\x9f\x28\x62\xb7\x43\xdb\xf0\xb0\x20\x8e\xc7\x92\xfd\xcf\x72\xf9\xee\x9c\xe7\x38\x2c\x1a\x7d\x4a\x95\xcf\x5b\xd1\x71\x90\x7e\xda\xfb\xa6\xfb\x74\x08\xe0\x60\x2d\xf4\x23\xec\xd2\x3f\xca\x83\x28\x2d\x82\x82\xdd\x82\x28\x8b\x15\x2a\xda\x54\x6d\x2e\x6f\x63\x1d\x85\xb9\x55\x95\x49\xa6\x2e\x65\x35\x61\xda\x3e\xc4\x5b\xbb\xc8\x49\x6c\xd1\x89\x02\x19\xc7\x3c\x85\x2d\xcb\x4b\x3b\xa9\x46\x1b\x5f\xc5\x00\x08\xb4\x5f\x57\x23\x2f\x44\x26\x61\x01\xbd\x0a\x4e\x9c\xcd\xc7\x55\xdc\xb3\x39\x40\xf5\x6a\x7c\x52\x69\x34\xaf\xb7\xbe\x13\x92\x67\x4e\x53\xf6\xc3\x1b\xcc\xf9\x96\x6b\xd3\xd9\x8e\x2b\xc6\x57\xb0\x80\x8f\x81\x6c\x57\xc7\xbb\x70\x6d\x96\x61\x47\x09\xe6\xff\x42\x17\xf0\x61\xe3\x11\x4b\xcc\x8d\x19\x96\xae\x02\xf2\x0b\x25\x0b\x23\xfb\x23\x84\xf3\xc3\x1e\x90\xaf\x3f\x91\x78\xbc\x98\xf1\xfe\xf0\x08\x41\x83\x81\x93\xf1\xda\x98\x8d\x9e\x9f\x9e\x56\x87\xf8\x67\x22\x33\x33\x29\xb2\x5c\xee\x66\x52\x5d\x9f\x8e\x67\x89\x14\x09\x33\x93\x0a\xda\x99\x91\x2e\xa9\x9b\x4c\xa7\xc7\x8b\xda\xb7\x2f\x1d\x14\x38\xc8\x13\xaa\xa8\xff\xa6\x5a\xd1\x36\xfa\xd7\x07\x1d\x9a\xca\xed\x01\xaf\xc2\x3c\xe4\xf2\x7c\x49\xdb\x91\x8d\xfa\x01\xc9\xc3\x32\x7d\xae\x46\xc7\x6d\x17\xff\x76\xa5\xbc\x58\xc7\xeb\xe5\xb7\xe7\xc1\xb0\x8c\xb7\x49\x5e\xa6\x75\xcc\x5d\x72\x7b\x20\x4d\x21\x93\x92\xe2\xa5\x5e\xcb\x1d\x48\xb3\x46\x05\xa5\x46\x4d\xd1\xda\xb1\x1c\x8e\x68\x8e\x5f\xea\xc8\x28\x76\x8d\x1b\xd6\xe3\x13\x18\x67\x52\x8e\xfb\x63\x98\x3d\xfe\xd9\x61\x24\x7c\x27\x06\xd3\x49\x6c\x29\x1d\xdf\x09\xfd\x98\xc7\xe9\xfa\x89\x9f\xfb\x92\x15\x74\xbc\x89\x45\x99\x8e\x86\x20\x08\x54\xe7\x1a\x18\x94\x82\xdf\x82\xe1\x05\x6a\xc3\x8a\xcd\x09\xec\xb0\x2e\x6a\x14\x4c\xdd\x50\xa6\x6e\x2b\x3b\x0c\x52\x67\x11\xc2\x9d\xb6\xa0\x4d\xce\x4c\x26\x55\xa1\xe1\x46\xc8\x9d\xad\x55\xd5\x10\x72\x33\x1b\x54\xb9\x99\xde\x0a\xda\xd1\xdb\x3e\xad\x77\x9e\x08\x4b\xbb\xbb\xb5\x50\x88\xe0\xbe\x7a\x72\x12\x0a\x39\x87\xf1\x19\x33\x34\x52\x31\xc5\xcd\xfe\xc0\xe6\xd4\xd8\x61\xc6\x52\x87\xe0\xa4\x25\xe8\x30\xa0\xe4\x3c\x16\x49\xcb\xc5\xa1\x45\xce\x40\x27\x18\x37\xf3\x20\x18\x99\x74\x16\x7e\x6f\xc9\x3a\x58\xb8\xc7\x13\x9d\x48\x85\x73\x78\xf1\x7c\xf6\xbc\xda\x65\x5f\x3c\xb7\xdf\xa3\x54\x6b\xfc\x46\x16\x85\x14\xe3\xe1\xed\xb7\x9e\xed\x30\xe6\xe4\xb1\x43\x60\x5b\x6f\x6e\x81\x2c\x78\xde\x20\x1c\x2b\x74\x3c\xd8\xf5\xb8\xfe\x11\x87\xe2\x52\xc3\x2d\xa2\xba\xef\x3b\x49\x85\xf9\x90\x23\xa8\x12\xf6\xde\x3a\x54\x13\x8b\x7a\xca\x51\xbd\xa7\x45\x3a\xa2\xc6\x15\x14\x4a\x99\x12\x29\x68\x9d\xd8\x7a\x31\x8d\x8d\x8f\xb4\x44\x61\xbd\x27\xaa\xf6\x55\x6b\x4e\xc0\xdf\xae\x7a\xf5\x37\x5c\x9c\xb9\x24\xaf\x7d\xc0\xa8\x93\xc5\x29\x6c\x99\x22\x9f\xc3\x94\x32\xcc\x39\xfc\x74\xe7\x86\xce\x21\x8e\xc3\xdd\x33\x8a\x2b\xe2\xd0\x70\x3d\x54\x49\x1c\x1c\xb1\x29\x57\x39\x4f\xdc\x80\x77\xfe\xfb\x28\xaa\xf5\xc0\xa4\xb7\x5c\xe2\x65\x85\x57\xcf\xe0\x2e\x36\x98\xab\xdd\xa1\x30\x3c\xe3\xa8\x60\x01\xe3\x84\xa5\x28\x12\x6c\x74\x69\x2c\x30\xee\xf2\x0e\x14\x81\x45\xa8\xc9\xa4\xe1\x3a\x0f\x66\x98\x3e\xe9\xf2\x68\x54\x83\x45\xa0\xdb\xc3\x1c\x5a\x55\x93\x6b\x34\x1f\xca\xcd\x46\x2a\x63\xd5\xa5\x55\xa3\x7d\x21\x84\x41\xce\xb5\xa9\x5d\xc5\xd8\x77\x55\x21\x84\x13\x55\x82\x7c\x8b\xca\xe2\xbe\x31\x9d\xf2\x5b\xa7\xa0\xd0\x99\x68\x32\x9d\xc3\x9d\x5b\xa8\xbf\x48\x99\xdf\xb7\x0c\x41\x38\xeb\x7a\x8c\x1d\xd0\x22\x5f\xb4\x2d\x13\x53\x7f\x1c\xd8\xe9\x29\x8d\x37\xaa\xc4\xbe\x55\x18\x73\x18\x42\xed\x7d\x05\xd0\x6e\x8d\x76\x43\x96\xca\x56\x98\xe9\xe0\x73\xcd\xb7\x28\xdc\x32\xa1\x95\x63\xa1\xc1\x14\x56\xfb\x56\x01\x3d\xe2\xf7\x73\x58\x59\xf7\xc7\x2f\x37\xd8\x16\xa5\x2d\xbf\x6a\xe7\xfb\xbf\x52\x9b\x26\xc0\x94\x48\xbc\x53\xcc\x58\x99\x9b\xc3\x26\xe0\xba\x6d\x81\x89\xf1\xe9\xce\xd4\x81\x1a\x9b\x80\x67\x6e\xe6\xc5\x62\x28\x6b\xea\xaf\x0a\xb5\xd1\xbd\x07\xcc\x35\xf6\xd3\x66\x2c\xd7\x31\xf1\x10\xea\x14\x76\x52\xc5\x76\xa0\xb0\x90\x5b\x57\xd4\x23\xc7\xcc\xea\x7a\x79\xd8\xbb\x10\x29\x38\xa2\x76\x35\xaf\x8d\x51\x27\x7a\xfe\x55\x4f\xf3\xff\xdd\xc8\xfa\xbf\x3b\x81\xca\xd5\x4c\x6a\x69\x26\xf5\x97\x8b\xb3\xba\x9c\x3f\x9d\xf7\x15\x03\x29\xbc\xf5\x78\xb8\x0d\xbb\x14\x65\xe2\xb8\x33\x73\x4a\x4e\x6e\x70\x3f\x87\x66\x8a\xee\x1e\xf4\xfa\x35\x6c\x98\xe0\xc9\x64\xfc\xc6\xba\x07\x39\xa2\x47\xaa\x42\xc8\x06\x6c\x82\x60\xa3\xe4\x96\xa7\x98\xda\x88\xdd\x85\x6d\xdc\x4a\x24\x7c\x75\xd1\x0a\x39\x64\x97\x14\x37\x52\x13\xcc\xec\xc6\xf6\xdd\x68\x46\xc2\x9f\xa5\x69\x04\xbf\x9f\x46\x07\x1b\x51\xa7\x0a\x6b\x47\x11\xfd\xc5\x59\x3d\x92\xa7\xc0\x94\x62\xfb\xc1\xfa\x55\x25\xc1\xc4\x8a\x39\x08\x7e\xdb\x59\x23\xf4\xdd\x17\xa6\x9f\x40\xcb\xc9\x63\x44\x48\xc8\x34\x75\x9d\x2a\xdc\x55\xa3\x2a\x31\x83\xdd\x75\xb7\xe6\xc9\xda\xfb\xa9\xed\xb1\xe6\x29\x48\x81\x1d\x01\x64\x9e\x2e\xfb\x3d\xe0\xa3\x65\x3e\xe3\xe9\x95\x97\x6f\xd4\x6e\x3f\x18\x25\xf7\x9e\xc5\x81\x18\x7f\x71\x16\x44\x75\xe1\xd0\xac\xbb\xbf\xf4\xce\xc6\x1c\xa6\xb0\xdb\xe8\x7b\x30\xaa\x5f\x9c\xb9\x22\xb1\x73\xfd\x81\x32\x71\xcb\xb7\x6f\x70\x3f\x18\x5b\x7f\xc3\xaa\xab\xc3\x0a\x59\x0a\xe3\xab\x52\x43\x9d\xc8\x07\x05\x7c\x8b\xe2\xda\xac\x49\xc6\x0b\x61\x8e\x16\x6f\x96\xdb\x61\x0f\x55\x4f\xfd\x44\x2b\xa9\x94\xdc\x5d\x9e\x2f\x27\x9f\x82\xc6\xde\x74\x0e\x5f\xf5\x3b\x63\xbb\x9c\x5a\x49\x32\xf9\xaa\xe5\x04\x64\x7e\xa6\x07\xb9\x4c\x87\x60\xfc\xc5\xca\x63\xb1\xb2\x32\x2a\xdf\xa6\xae\xda\x76\x55\xe7\x13\x53\xbb\x5e\x2f\xce\x8e\x51\x2f\x6c\x71\x4e\x5a\x5a\xf6\xb6\x3f\x3b\x6a\xf2\xcc\xf5\x2a\x33\x4a\xf4\x87\x74\x8d\x17\x60\x9b\x45\x80\x16\xb1\xb1\xe0\xf4\x4f\xfe\xd8\xa4\xfb\xcb\xfa\x49\xf5\x7a\xd2\xac\x08\xba\xe2\x70\x44\x83\x29\x6e\x23\x55\xa2\xfd\xdc\xcc\x91\x1c\x31\xc7\xf1\x6d\xa5\xbb\xa0\x2b\xf5\xd9\xdd\x24\x91\x19\x97\x89\xb5\xdb\x4a\xf7\x4d\x63\xff\xf1\x08\xf6\xfb\xa6\xd7\xf3\x0b\x1b\x75\xc7\x41\xe4\x35\xab\xb2\xa2\xc3\x6d\xbd\x00\x40\x0f\x5e\xc5\x18\x3a\xcd\xb7\x00\x9b\xf3\xea\x5a\x8c\x93\xd7\x87\xe6\x3c\xb7\xea\xd4\x27\x60\x70\x17\x46\xfc\xc5\x18\x97\x48\x32\xca\x4b\xa0\x75\xed\xa7\x62\x3c\xea\xb8\x51\x10\xed\x5d\x76\x6f\x2f\xc8\xd4\x17\x84\x42\xd6\x5b\x7b\xde\x76\xb7\x73\x5c\xb5\x7e\xc7\xf3\x1c\x56\x08\xa5\xb6\x33\x7b\xe6\xf5\x27\xc5\x2d\xe6\x72\x83\x4a\x93\x21\x6c\xa9\xc5\xed\x7c\x1b\xa6\x58\x81\x06\xed\x4d\xa1\x0d\xd3\xba\x36\x54\xd8\x69\x9a\x42\x81\x66\x2d\xd3\x59\x24\xfc\x50\x18\x0f\x2b\x7a\xba\xa7\xa4\xf7\xba\xaf\x53\xd9\xdb\xa5\xfc\xac\xf6\xde\xf1\x25\x41\x3f\xec\xea\x21\xa3\x5b\x28\x28\x63\x8a\x2e\x4e\x54\xab\x20\xe8\xb5\xcc\xba\xd6\xb5\x00\xd7\x9d\xba\xb5\x2b\x38\xd6\xc1\x21\x45\xcd\x55\x65\xcf\x59\xd7\x21\x40\xdb\x7e\x5e\xa9\xc8\x1a\x1b\x85\x9a\x4e\x89\x95\x3b\x28\xfc\xa7\x44\x6d\xda\x83\x7b\x97\xcf\x71\x95\xd6\xd7\xed\xba\xea\x50\x4f\x31\xe8\x27\x5a\x65\xe2\xc8\xf4\x65\xf5\x6f\xda\x72\x9a\x20\xfa\x1e\xb3\xfa\x2e\x04\x4b\x12\x4a\x32\xea\x23\xf9\xcc\x6d\x73\xaf\xbe\xea\x6d\xbd\xff\x38\xdc\x7e\xa0\x5c\x7a\x0e\xa7\x15\x9b\xd3\x03\xf5\x80\xfe\xd6\x44\x6f\x16\xef\x84\xb1\xd5\x97\x0c\x15\x31\xac\x57\x51\x95\x0b\x45\x89\xfb\x61\x9d\xcf\xdc\x25\x8a\x07\xc0\xeb\x57\x30\x2a\xbc\x44\x30\xce\xae\xd1\x9c\xb9\xa3\x67\x58\xc6\x98\x3e\xe9\x6f\xa5\x86\xf5\x98\x21\x3e\x41\x2d\xe3\x30\x9b\xb0\x02\x66\x1d\x63\xc8\x68\x3d\xdd\xf3\x86\xcb\x5b\x2e\x6e\xdc\x61\xff\xf3\xb8\xf4\xee\x21\xf5\x3a\x9f\xc3\x24\x2b\xab\x4d\xf7\xc8\x4d\xa4\xfd\xf1\x9b\x4a\x8c\xd7\x43\x57\x3c\xc2\xcf\x7d\xf7\x71\xf7\x49\x35\x4f\xec\x30\x9f\xb1\x02\x0f\xf4\x6b\xdc\x45\xac\x94\x77\xfd\xf0\x77\x7a\xda\xef\x7b\x19\xcf\xf1\xf1\x4d\x77\xdb\x70\xf7\x0d\x38\xa6\x35\x1a\x3d\xdb\xe1\x4a\x73\x83\xcf\x88\xa5\x9e\x25\xb2\x38\xfd\x2e\x7b\xf9\xf5\x0f\xdf\x26\xcf\x93\xff\x66\xdf\x27\x69\xfa\xf2\xdb\x6f\x56\x2f\x92\xef\xbf\x7e\xde\x7a\xc1\xbe\xfb\x2e\x59\xbd\x48\x7e\xf8\xe6\xe5\xa7\xf3\x5c\xee\x3e\xfd\x25\x55\x5a\x30\x75\x33\xd3\xdb\xeb\x71\xff\x7a\xee\x77\x16\xab\x7d\x55\xfd\xe7\x05\x05\x0a\xbd\xbd\xfe\xaf\xdb\x22\xef\x72\x19\xb4\xd0\xc3\xe0\xf7\xc3\x52\x15\xd0\x69\xaf\xa8\x5b\xe6\x41\x91\xb2\x5f\xde\xb8\x84\x5f\xdd\xda\xf5\xc9\x1a\xd7\x2e\x2f\x60\xd1\x55\x65\x23\x61\x8d\xf9\x06\xf6\xb2\xac\xd3\x03\xfa\xae\x40\xe0\xad\xa9\x2e\x2d\x9f\x2f\x67\x03\x33\x62\xd3\x40\x6d\x5b\xfd\x11\xbd\xd5\xf1\x00\xfe\xfa\x9f\x92\x29\xbc\x20\xe4\xe7\xce\x18\xfd\x74\x2b\x26\x04\xaa\x87\xe9\xb4\x4c\x38\xcb\xf5\xfc\xc0\xfa\x1d\x9b\x1d\x37\x06\xd5\xf8\x28\x75\x2a\x62\xeb\x9c\xa4\xcc\xa7\x55\x2e\x93\x9b\x64\xcd\xf8\x50\xeb\xe4\xfe\x80\xe7\xdc\xb7\xd3\xa0\xfa\xb4\x13\xa4\x24\xef\x7d\x61\xdf\x56\x00\x04\xb0\xb4\xe0\x02\x24\xe5\xd2\x94\x9d\x51\x62\x50\x5f\xfa\x76\x77\xbc\x29\xa5\x76\xf7\xc1\x6b\x1e\x6c\xe5\xec\x5e\x70\x61\x6c\x55\xc4\x67\xdc\x7d\xa9\x43\x78\x95\xd6\x5d\x11\x0e\xef\xc8\x9e\x56\x4d\x40\xca\xfb\xe9\x7f\xca\x8e\x2a\x96\x75\xab\x8f\x7e\x06\xc7\xd5\xc3\x87\x02\x92\x9f\xd2\x28\xbc\xed\x2f\x8e\x52\x22\x53\xcd\xf7\x9f\x73\xeb\xd3\x93\xb7\x6e\x01\x12\x08\x77\xa3\x4e\x09\xe9\xe0\xb5\xd0\x6e\x91\xdc\x26\x06\xa5\x52\x28\xcc\x2f\xe4\x5e\xb0\xb0\xe9\x75\xf0\xa4\xb5\x91\xb4\xfb\x99\x96\x66\x7c\x05\x8b\x88\xcd\x6c\x8d\xfc\x7a\x6d\x0e\x8e\x74\x9d\xd0\xf6\x40\xdf\xdf\xed\x94\xda\x6c\x16\xbc\xe1\x98\xd8\xdc\xd6\x67\xc9\xd1\xb1\xa4\xee\xeb\x62\xb1\xc2\x34\x25\x7b\xbb\x7e\x1f\x70\x61\x64\xdd\xf8\x1c\x90\xca\xb6\x0c\x61\x01\xe3\x15\x53\xe3\xce\xec\xd5\x31\xce\x3b\x60\xf4\x7e\xcb\x28\xa4\xed\xc8\x24\xcd\x89\xaf\xe3\x45\x8d\x27\xf5\xdf\x4b\x8b\x7c\xe9\xe0\x55\xb4\xc0\xa9\xfc\xd7\x2e\x55\xe0\x5b\xfe\x6b\x97\xaa\x71\x18\xdf\xb0\x8f\x68\x86\xaa\xc0\x4e\xdf\xfe\x03\xbf\xbd\x37\x3d\x8d\x97\x32\x7c\x40\xe3\x2f\xf5\x57\x7f\x68\xd0\xe4\xfb\x94\x7f\x77\xfe\x46\x00\x16\x07\xb2\x68\x47\x1d\xcd\xf0\xa6\xb6\xd1\x9b\x9e\x3f\x4d\xa0\xb0\xa0\xd9\xb6\xbe\xf2\x5f\xf1\xf5\xc3\xe3\x0c\xf9\xd0\xc1\xbd\xa6\x4e\x3b\xb9\x2e\xf9\xb2\xa7\x1e\x4c\x87\xfb\x98\xbc\x0b\x3b\x78\xbd\x3c\xa2\x54\x38\xc6\xad\x7d\x6e\x21\x2d\x27\x61\x92\x78\x02\x46\xce\x7b\xe4\x9d\x46\xe8\x79\x0f\x77\xc9\x30\x24\x6c\xc3\x56\x3c\xa7\xd5\xd3\xfd\x7b\x90\x01\xdc\xde\xb0\x4d\xfb\x34\xe5\xd9\x70\xd4\x5e\x44\xae\x75\x39\x9c\x5e\xf7\x49\xda\xab\x71\xc4\xdb\x8a\xad\xd7\x93\x48\x9a\x13\x60\x66\xde\x45\x79\xda\xef\x37\xd5\x16\xf4\x18\x9f\xa9\xfe\xba\x26\x5a\xf6\x8e\xcd\x64\x40\xe8\x96\x99\x1c\x03\x67\xa2\xfe\x65\x50\xd7\x8b\xee\x47\x30\xfa\x57\x00\x00\x00\xff\xff\x48\xbb\x54\x54\x19\x36\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -112,7 +111,7 @@ func examplenftCdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xdc, 0x7c, 0x7b, 0x9b, 0x91, 0xb6, 0x4e, 0x6d, 0x2f, 0x4d, 0x75, 0xd6, 0xd3, 0x6e, 0xb0, 0x31, 0xfe, 0x83, 0x62, 0xee, 0x53, 0x42, 0xa4, 0x4b, 0x77, 0xe9, 0xb0, 0xc1, 0x5e, 0xd6, 0x6e, 0x3a}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa9, 0x39, 0xca, 0x3b, 0x33, 0xc3, 0x24, 0x37, 0x6, 0x65, 0x91, 0x42, 0x75, 0xcf, 0x61, 0xd3, 0x5c, 0xb3, 0x5c, 0x1a, 0xbb, 0x78, 0x40, 0xa9, 0x5e, 0x72, 0x74, 0x5d, 0x6b, 0x97, 0x32, 0x2c}} return a, nil } @@ -136,27 +135,7 @@ func metadataviewsCdc() (*asset, error) { return a, nil } -var _multiplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x54\xcd\x6e\xdb\x4c\x0c\xbc\xeb\x29\xf8\xf9\x64\x1f\x12\x7f\xe7\x00\x69\x0b\xb4\x35\xd0\x43\x7c\x28\x74\x0b\x02\x64\xb3\xa2\x24\xa2\x2b\xae\xb0\x4b\xc5\x35\x0c\xbf\x7b\xc1\x95\x2c\xb9\x72\xdc\x44\x07\x4b\xfb\xc3\xe1\xcc\x90\x34\x35\xad\x0f\x02\x5b\xcf\x9b\x8e\x2b\x7a\x71\x98\xfb\x5f\xc8\x50\x06\xdf\xc0\x62\xbe\xbd\xc8\xb2\xf5\x7a\x0d\x79\x4d\x11\x88\x05\x43\x69\x2c\x42\x6c\xd1\x52\x49\x18\xa1\xec\xd8\x0a\x79\x8e\x20\xb5\x11\x30\x60\x3d\x4b\x30\x56\xa0\xa1\xaa\x16\xd8\x19\x16\x10\x0f\xd4\xb4\x0e\x1b\x64\x49\x70\x54\x02\x09\x14\x58\x12\x63\x84\xa6\x73\x42\xad\x43\xd8\x6e\x72\x90\x7d\x8b\x11\x0c\x17\x6b\x1f\xa6\x13\xeb\x9d\xc3\x94\xa8\xbf\x90\x65\xc6\x5a\x8c\x71\x69\x9c\x5b\x4d\x39\x27\x86\x0f\x43\xa4\x42\x1e\xb2\x0c\x00\x40\x13\xff\x44\xe9\x02\x83\xd4\x38\x24\x4a\xac\x75\x39\x62\x0c\xac\x52\xc8\x79\x92\x57\xc2\x9d\xca\x85\x0a\x65\xbb\xc9\x73\x0d\x5f\xae\xee\xe0\x51\xbf\x9e\xe0\x90\x02\xf4\x69\x7d\x94\xb3\xa5\x3e\x01\x63\xe7\xe4\xd6\x21\x57\x52\xc3\x27\xf8\xff\x0e\x16\x0f\x5d\x54\xc2\x05\x59\x23\x08\x3b\xe5\xc1\x9e\x6f\xca\xc1\x7d\x90\x54\x95\x13\x4b\x8a\x17\x0c\x17\x63\x8a\x63\xd6\xff\x8e\x32\x2b\xd4\x52\x38\x8a\x02\xbe\x04\xe3\x5c\x92\xa8\x5e\xcc\x8d\x7c\xc7\x00\x05\xb3\xbe\x73\x05\x10\x5b\xd7\x15\x08\x26\xe9\xbb\xb1\x9e\x0b\xea\x61\x14\xe0\x15\x43\xdf\x0f\x69\x85\xc6\xd6\xa0\xb6\x00\x69\x29\xdf\x4a\xfc\x4f\x7b\xbf\x8e\x77\xaf\xbb\x1c\xfa\x4a\x3e\x3e\xcd\xb5\x0b\x3a\x17\x7b\x3f\x67\x39\x21\xd6\x49\xca\x0b\x42\x17\xb1\x80\xd2\x87\xa4\xfc\xd4\xcd\xc5\xd8\x80\x23\xd8\x90\xe5\x99\xc9\x3d\x6b\xd7\xb2\xbf\x00\xc5\xdf\x14\x25\xbe\x07\xf6\x31\xa9\x1b\x1f\xb6\xa5\xe8\xd7\x92\xfb\xf7\x5d\xf2\x71\xd5\xbf\x3e\x5f\xea\x67\x72\x73\x03\x6c\x40\x23\xf8\xbd\x69\x65\x3f\xa1\x0f\xbb\xa9\x1c\xa8\x47\x30\x9d\x8d\x91\x86\x8b\x01\x37\xea\x7c\x8a\xef\x1b\xc3\x38\x87\x01\xa2\x1f\x7b\x65\x0f\xd6\x30\xf8\x5d\xaa\xec\xe5\xa4\xa8\xb4\x37\x49\x2c\xed\x5f\x6a\x47\x6d\x5f\x0e\xf3\xbf\x9d\xdb\x29\xe8\xf8\xa1\xd1\xaa\x50\x7e\x7c\x8b\xcb\xd5\x69\xc6\xee\xef\xd3\x90\xe5\xca\x3f\x51\x29\xce\x0b\xd7\xe8\xec\xbd\x60\xef\xc4\x7f\x8b\x2b\x80\xa9\x0e\x2b\x85\x9a\xf3\xbe\x86\x4b\x51\xe7\x4d\x4d\xdb\x05\xcf\x55\x2a\xff\xe5\x98\x1e\xff\x04\x00\x00\xff\xff\x7b\x7f\xe6\x43\x83\x05\x00\x00" - -func multiplenftCdcBytes() ([]byte, error) { - return bindataRead( - _multiplenftCdc, - "MultipleNFT.cdc", - ) -} - -func multiplenftCdc() (*asset, error) { - bytes, err := multiplenftCdcBytes() - if err != nil { - return nil, err - } - - info := bindataFileInfo{name: "MultipleNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd2, 0x30, 0xe1, 0x88, 0xfe, 0xe2, 0x14, 0x5a, 0x94, 0xd, 0x7b, 0x42, 0xbd, 0xcc, 0xda, 0xdc, 0x16, 0xd5, 0xd8, 0xb9, 0x83, 0x17, 0x13, 0x65, 0x18, 0xda, 0x9d, 0xa3, 0xda, 0x2d, 0xce, 0x28}} - return a, nil -} - -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\xdf\x73\xe3\xb6\xf1\x7f\xd7\x5f\xb1\x5f\x67\xe6\x7b\x76\x46\x27\xf7\xa1\xd3\x07\xcf\xa4\x97\x4b\x1c\x77\x34\xd3\x3a\x9d\x8b\x2e\x79\xc8\x64\x22\x88\x5c\x49\xe8\x91\x00\x0f\x00\xa5\xa8\x8e\xff\xf7\xce\x2e\x7e\x10\xa4\x48\x9f\x9d\x34\xf5\x43\x72\x02\x89\xdd\xc5\xfe\xfc\xec\x82\xd7\x9f\x7f\x3e\x9b\x7d\xf6\x19\xac\xf6\x08\x77\x95\x3e\xc2\xbd\x56\xaf\xef\x5a\xb5\x93\x9b\x0a\x61\xa5\x3f\xa0\x02\xeb\x84\x2a\x85\x29\xf9\xc5\xf5\xbd\x56\xf1\x39\x3f\x5e\x43\xa1\x95\x33\xa2\x70\xb3\x19\x51\x91\xca\xa1\xd9\x8a\x02\xc1\xed\x85\x03\x51\x55\x63\x34\xe3\x1e\x0b\x76\xaf\xdb\xaa\xa4\x85\xad\x36\x35\x38\xbd\x98\x2d\xb7\x20\xa0\xb5\x68\xe0\x28\x94\xb3\xe0\x34\x94\xd8\x54\xfa\x04\x02\x14\x1e\xe1\xfe\x6e\x95\x08\xcc\xc1\xed\x51\x9a\xf4\x3b\xd2\x93\x75\x53\x61\x8d\xca\xb1\x50\xee\xd4\xa0\x85\x12\xb7\x52\x61\x09\x7b\x34\x18\x0e\x73\xb7\x5a\x83\x41\xab\x5b\x53\x64\xa2\xfb\x93\x14\xda\x60\xf7\x90\x48\xf8\x23\x19\x6c\x0c\x5a\x24\xc9\x84\x62\x61\xa4\x22\x29\xc0\xd6\xc2\xb8\x24\xc9\xc2\xb3\xf8\x5a\x57\x15\x16\x4e\x6a\xb5\x86\x77\x13\x9c\x3a\x26\x44\xdf\x3a\x6d\xd0\x06\x15\xbc\xb2\xe1\xb8\x91\xca\x62\xb6\x74\x20\x55\x51\xb5\x25\xbf\xb4\xc5\x23\x6c\x5b\xc5\xcf\x58\x55\xa2\x22\x3b\x92\x3c\xfa\xa8\xd0\xd0\x12\x0a\x2b\xab\xd3\xac\xd6\x07\x04\x47\xfa\xb7\x24\xb2\x50\x25\xe8\xd6\x81\xde\xf2\xdb\x39\x0b\x96\xfc\x9f\x46\x1f\x64\x89\x66\xcd\x6f\xae\xdf\x61\x81\xf2\x40\x3f\xcf\x15\x66\xf9\x1c\x36\x5f\x81\x12\x8b\x4a\x18\xcc\x84\x3b\x4a\xb7\x07\xab\x6b\x84\xc6\x20\x13\x6d\xb4\x65\x85\x95\x92\xdf\x98\x05\xfd\x7e\x6c\xa5\x41\x16\xaa\xd3\x1e\x9d\x63\xab\xf9\x6c\x05\x1a\x27\xa4\x02\x25\x6a\xa9\x76\x4c\x68\x83\x7b\x71\x90\xda\x24\x67\xb5\x0b\x16\xe9\x04\x24\x82\xc5\x46\x18\xe1\x10\x36\x58\x88\x96\xc4\x74\xb0\x93\x07\x16\xf2\x80\x95\x6e\xd0\x58\x66\x27\x36\xb2\x92\xee\xe4\x3d\x8e\x9c\xa5\x93\xde\xcb\x56\x08\x45\x66\x01\xa1\x4e\x99\x47\x24\x67\x63\x2a\xb6\xaf\x98\xaf\x4e\xd0\x5a\x92\x33\xaa\xcd\xb2\xc4\xdd\x2b\x73\x36\xb4\x25\x3b\x90\xa9\xfb\x5e\x64\x99\xa5\x45\x55\xce\x68\x97\xf1\x46\x88\x56\x6c\x10\xcd\x6b\xa7\x5f\xd3\xff\xe7\xac\x5f\x32\x28\xa9\x42\xed\xe8\x10\xcc\x84\xa2\x82\x55\x2f\xa0\x40\xa2\x5a\x41\x85\xe5\x0e\xcd\xec\xcc\x61\x57\x9a\x59\x45\xbf\x26\x6f\x52\xda\xed\xd1\xb0\x88\xf3\x14\x96\x1c\x62\x96\x8e\x7d\x62\xd2\xa5\x11\xde\xe5\xee\xef\x56\xb3\xad\xd1\x75\x88\xca\xce\x7c\x1c\xa7\x0a\x0a\xca\x07\xf4\x62\x89\x8d\xb6\xd2\x25\xfd\x82\x56\x3d\x5e\xaf\xec\xac\x6f\xfb\x42\x93\x92\x9d\x77\x0b\x67\x84\xb2\x5b\x34\x8b\xd9\xec\xf3\xeb\xd9\x4c\xd6\x8d\x36\x0e\xbe\x97\x78\xa4\x10\xab\x0e\x68\x80\xa5\xb8\xc8\x97\x2e\x66\xb3\xeb\xeb\x6b\x4e\x75\x35\xb9\x4f\x9e\x46\x16\xf0\x2d\xb3\xce\xd7\xc8\x61\xab\x8a\xf7\x04\x06\x6c\xb7\x68\x6b\x16\xa4\xe7\xef\x3e\xbb\x70\x32\x90\xb6\x4b\x8b\xd7\xd7\xd7\x33\x51\x14\x68\xed\xa5\xa8\xaa\xab\x2e\x55\x75\xa9\x72\x98\x54\x6f\xfa\x67\x79\x98\xcd\x00\x00\x48\x92\xb7\x0a\x50\x39\xe9\x82\x0c\x5b\x6d\x7c\xc0\xb3\xc1\xf7\x98\xac\x21\x2a\x8e\x6b\xef\x26\xac\x0b\x01\xdf\x8b\xb6\x72\x4c\x29\x17\x27\x27\xf7\x43\xd8\xfd\x3c\x7e\x6d\x53\x0a\x17\xdc\xd9\xff\x1b\xf0\xc0\x51\xc0\xaf\xb1\x86\x9f\x64\xf7\x9e\x37\x75\xcc\x86\x9c\x42\x02\xa3\x10\xdb\x19\x2e\x05\x51\x40\xe6\x19\xb6\x3f\xc5\xe1\x5b\xa2\xd0\x31\xf8\xe6\xe0\x0d\x27\xdc\x79\x05\xc2\x5a\x3a\x38\x92\x93\x92\x1e\x6b\x74\xa2\x14\x4e\x90\x16\x63\x96\xb7\xe1\x94\x65\xa2\xb7\xf4\x19\x41\xab\xea\x04\x1b\x64\x12\x0e\x4b\xd8\x9c\xd8\xd1\xa3\x4d\xd6\xb4\x7e\x7f\xb7\xf2\xf2\x96\xeb\xe4\xf4\x89\x8e\x0f\x4f\x05\x6b\x7e\x45\x6c\x2a\x5c\xc7\x63\x50\xcc\x6f\xd1\xa0\xa2\xf2\xa0\x63\x90\xf9\x33\x1c\xc5\xb9\x48\xe4\xde\xb9\x06\x1a\x13\x6c\x62\x1b\x51\xd7\x94\x67\xd8\x1b\x3a\xf9\x64\x58\xe9\x62\xcf\xbe\xca\x8a\x81\x4d\x94\x63\xf2\xe4\xd3\x16\xba\xf4\xce\x46\x85\x24\x7b\x1d\x74\x30\xd8\x5e\x10\x4b\x2c\xa4\xa8\xba\xa3\x78\x33\x25\x8a\xe1\x3c\x19\x33\xd2\xfb\x5e\x97\x3e\xf4\x48\xa5\xa4\x0b\x7a\x6f\x87\x3e\xe0\xce\xb5\x92\xa8\xf5\x55\xc0\x96\xae\xc5\x07\xb4\x94\xed\xad\xf6\x52\xb9\xbd\x34\xe5\xeb\x46\x18\x77\x02\xa9\x4a\xfc\x85\x14\x42\x26\xac\xb5\x92\x8e\x65\x8f\x4e\x9c\xc8\x91\xab\x7d\x6c\xd1\x9c\xf8\x61\xd0\x77\xe7\x20\x31\xdd\x79\x6f\xed\xeb\x6e\x11\x89\x9c\x3b\xe9\xa1\x0b\x80\xf2\x52\x96\x37\xf0\x7e\xa9\xdc\x5f\xfe\x3c\x87\xb6\xcd\x7f\x31\xd1\x1b\x78\x5b\x96\x06\xad\x7d\x33\xe7\xaa\x73\x03\xdf\x39\x23\xd5\xee\xea\x8c\xec\x41\x7a\x38\x00\x7d\x97\xbb\xfc\x19\xd4\xd6\xbd\xc3\xed\x0d\x88\xd6\xed\x2f\xfd\x32\xfc\xea\xe3\xe3\x0a\xfe\xff\x61\x98\x81\x16\xf7\x77\xab\x47\x4f\xff\x81\xff\x4b\x7f\x1c\x22\xb9\xcc\x9e\xe8\x42\x96\x51\xec\xb0\x40\x3f\x92\xec\x61\x8d\x7f\xbd\x59\x08\x7f\x92\x78\x90\xf0\x70\x87\x6e\x75\x6a\xf0\xf2\x6a\x21\x4b\x32\xf1\x56\xa2\xf1\xdc\x1f\x67\xa3\xe1\x2b\x6d\x8a\x36\x8e\x59\xe1\x73\x1d\xad\xc7\x14\xa8\xe6\x69\xa3\x54\xa5\x2c\x84\x8b\x01\x49\xac\xe7\x10\xa5\x9e\x67\x60\xe9\x0c\x0b\x05\x6e\x3e\xd6\x12\x65\x36\xfa\xbc\xe7\x21\xb4\xed\xfd\xfb\xe5\x6d\x24\xd1\x81\xa4\xd1\xbd\xd0\xda\x56\x54\xd5\xa9\x17\x3c\x7d\x77\xe1\x04\x73\x26\x8f\xb4\xa0\xb4\xf3\xf8\x8d\x4c\xaf\x5b\xe5\x5e\x59\x06\x8d\x62\x87\x73\x58\x13\xf9\x75\x8a\x9f\xb5\x92\xd5\xfa\x53\x6e\x18\xb3\xaa\xba\xcc\xbd\x8b\x34\x34\xe5\x96\xc4\x24\xf7\xca\x26\x60\x45\xd2\x40\x7c\xeb\x6a\xd4\x70\x53\x56\x0b\x80\x00\x4b\x46\x1d\x63\x4a\x81\xa5\xb7\x22\xda\xdf\x65\xc4\x9c\xd1\xd3\x26\xcc\xb5\x7e\xbe\xf7\xbf\x66\xab\xf9\xcb\x8c\x75\x1b\x65\x78\xb6\xb1\x9c\xce\x4d\xd5\xc9\x37\x61\xac\xa5\x6f\x2e\x4a\x2e\xc1\x1b\x51\x7c\x38\x12\x9e\x7e\x4d\x00\x4c\x38\xe9\x11\xf2\x99\x6c\xe7\x3d\x01\x2c\xef\xef\x56\x37\x5c\xac\x1e\x1e\x73\xea\xbd\xfe\x30\xd4\x33\x0b\x75\xeb\x5b\x81\xd0\x05\x4e\x2a\x61\x84\x11\xf3\xc9\x01\xd3\x62\x88\x9c\x22\xf3\x56\xc9\x8f\x2d\xc2\xf2\x96\xcf\x16\x01\x6b\x7c\x23\x67\x53\xa1\xcb\x34\xda\xa7\x32\x9e\x86\x44\xeb\x74\x2d\x9c\x2c\x38\xac\xf1\xc0\x05\x43\xd6\x08\x22\x93\x99\x5c\xc8\x3a\xa3\x4f\xa1\x62\xe7\x25\x8b\xfb\x09\xc9\x0a\x10\xd1\x7d\x64\xb4\x85\x1c\xc0\x12\xef\x0b\x56\x93\x67\x06\x37\x53\x88\xf4\xa6\xe0\xb6\x54\x98\x5d\xcb\xed\xef\xd8\xe1\xfc\xe6\xd8\x8d\xde\x46\x89\xb2\x32\x04\x5f\x80\xc5\x2a\xcf\xec\xfd\x75\x5a\xbb\xea\x6b\xa5\x30\x28\x1c\x7e\x53\x37\xee\x94\x21\x77\xbf\xca\x22\x21\x3d\xea\x75\x74\x41\x83\xb1\xc6\x73\xe3\x7b\x66\x95\x18\x9d\x06\x5d\x6b\x14\x57\xf3\x88\x1b\x44\x55\xa1\xc9\x6a\x3b\x9e\x3c\x1c\x3b\x32\x60\xb3\x3d\x12\x5f\xfa\xfd\xf0\xb6\x13\x65\x98\x20\xb8\xd3\x0a\x32\x48\x3b\xe9\x1a\x54\x5e\x47\x0f\x7b\x79\x75\x03\x5f\x3e\x74\xbf\x1f\xb3\xd2\x49\x7f\xdc\xed\xf6\x97\xe8\xcf\xa0\x6d\x2b\x47\x25\xf0\xef\xa8\x76\x6e\x7f\x79\x05\x5f\x7c\x01\x7f\xba\x81\x0b\x9e\x42\x30\xa7\x32\x17\x96\x43\x85\xe1\x66\xe3\x4e\xff\x77\xd1\x23\xf8\x38\xeb\xfe\xd5\x3b\xff\xdf\xd0\x59\x88\xdd\x17\x47\x5c\x04\x44\x7e\xc2\x50\x4a\x83\x85\xab\x4e\xa4\xbd\x29\xcd\x95\x92\x05\x10\xe6\xc4\xb0\xb8\xaa\xc0\xb6\x9b\xfb\xbb\xd5\x77\xf0\x01\x4f\x1e\xf7\x92\x13\x8f\x6a\x2d\x21\x93\x1d\xba\xb7\x07\x21\x2b\xb2\xfa\x77\x7e\x3b\x29\xee\x61\xc5\xd9\xcc\xbb\xd9\x50\x73\x41\x82\x87\xa7\x4e\xc7\x71\x96\x21\xe5\xd8\xc3\xf6\x4e\x79\x76\xb8\xaf\x34\x21\xef\x10\x2c\x96\xa7\x05\xba\xe1\x43\x56\xfd\x61\x4a\xe8\x87\x8b\xbd\xd6\x16\x7b\x24\xf6\xfa\x48\x4e\x19\xfd\xd3\xb6\x1b\xaf\xdf\x12\x1b\x54\x25\x61\x0e\xad\xe0\xc8\xc3\xb0\x1e\x9f\x50\x33\xfb\x89\xe0\x4e\x1b\xc0\x5f\x04\x35\x99\x73\x90\x5b\x58\x93\x42\xd7\x8c\xa6\x05\x1c\x44\xd5\xe2\x1c\x36\xad\x83\xb5\x2c\xd7\x50\x6a\xb4\xea\x95\x9f\x81\xb1\x80\xfd\x80\x14\x2a\x88\x0b\xc7\xbd\x2c\xf6\x5e\x01\xdb\xa0\x11\x1e\x5e\xe8\xa8\x59\xc9\xb5\xcb\x70\x86\x12\x70\x51\xe2\x96\x7a\xc5\x8b\x1e\xbd\xe5\x16\x36\x5e\x5b\xa1\x52\x85\x9e\xbe\x73\x26\xee\x0c\x7c\x04\x09\xb0\x52\xed\x2a\x2f\x16\x49\xf2\x2f\x72\x5a\xcf\xad\x47\x95\x36\x2e\x60\x45\x06\xda\x63\xd5\xd8\x10\xd5\x16\x8e\x7b\x4d\xac\xd4\x2b\x07\xb6\x35\xe8\x35\xe8\xe2\x48\xa7\xd2\xfa\x03\xa9\x96\xf2\x78\x4e\xaf\xef\xb9\x8d\x30\xa2\x0e\x48\x93\x82\x89\x7c\x2c\x56\xf7\x12\xad\x34\x58\x9e\xe5\x9a\xb0\x89\x72\x1e\xcf\x33\xcb\xb8\x21\x78\xc0\x46\x1b\xa3\x8f\xd3\x3c\x53\xb4\x58\x67\xda\xc2\xb5\x3c\x44\x0c\x13\xc3\x08\x40\x0d\x7e\x6c\xd1\x52\x58\x53\x58\x2c\x26\xd3\xcc\x0e\x9d\x0f\x91\x50\xeb\x57\x01\xf3\xa4\xaa\x0d\x37\x53\xd8\xfd\xcd\x78\x08\x29\x59\xcd\xfa\xb9\x62\xbc\x36\x6b\xa8\xb1\x94\xd4\x24\x74\x13\x85\x34\x48\x88\xf5\x2c\x47\xb1\x5d\xda\x7b\x49\xe9\x8e\x33\xc6\x7e\xa1\x86\x1f\x30\xb4\xe3\xb1\xdd\x8f\x73\x85\xd8\x6b\x45\xbc\x99\x91\x8a\xed\x29\x61\x08\xca\x53\x6a\x97\xb6\xe7\xa4\x03\xa5\xe0\x59\x82\xe7\x34\x5b\x3f\xa0\x73\x3a\x54\xc6\x4a\x5a\x87\xd4\xcc\xc5\xe7\x55\x20\x18\xa7\x56\xa1\x43\xec\x19\x3e\xc9\x6a\xb0\xd6\x07\x4c\xc3\xe1\x24\x73\x96\xc1\xa9\x9e\xf9\x97\x86\xd5\xac\x1f\x71\x8e\x43\x9c\xab\x3b\xf7\xd2\xdb\x13\xe1\x66\x6e\xd4\x69\xcb\xf2\x96\xe2\xd5\x43\x56\x43\x6f\x8d\x39\x72\x94\x8b\xb0\xde\xa8\x43\x27\xc1\x47\x24\x1d\x7a\x66\x9a\xbf\xa4\xd6\x91\xdc\x34\x52\xb8\xcc\x79\x05\x0f\xa5\x92\x48\xfe\xf8\xa2\x5a\x28\x4b\x2a\x81\x39\x35\xae\x85\x1d\x34\xef\xba\x29\xdf\x40\xc4\x92\xc8\x63\x78\x41\xa0\xcb\x0e\x02\x6d\x79\x7b\x71\xc6\x8d\x7d\x6c\xd8\xfc\x74\xe5\xf8\xac\x23\xf5\xa1\x97\x64\x8c\xd0\x28\x2c\xf8\x36\xc4\x77\x46\x0c\x92\x86\x1d\x6f\xbf\x49\xca\x70\x54\x2e\xd3\xe3\x0b\xc3\x33\xb8\xa4\x8d\x6e\xf4\xdb\xe2\x30\x0e\xf7\x87\x80\x39\x3a\xbc\xe3\x41\x4a\xf0\xe8\x3e\xc2\x64\x67\x16\x65\x99\xfb\xf2\xd7\xe7\x0e\x94\xe7\x63\x3f\xe2\x5c\x75\x2e\x18\xd8\x4c\xe6\xc1\xf0\xfc\x32\xec\xf4\x1e\x35\xc0\x9f\x9c\x2b\x9b\x46\x1b\x87\xe5\xfd\xdd\x6a\xc5\x57\x3e\xb1\x28\x0b\x8e\xe9\x38\x62\xf7\xd7\x41\x1d\x32\x30\xf1\xf4\xc4\xb7\x71\xcf\x83\x3f\x9e\x48\x2d\x9a\xc6\xf7\xac\x1b\xad\x2b\x14\x7c\xb5\x92\x86\x0d\x5c\x56\x65\x9f\x5e\xe7\xea\x85\xa4\x2e\x01\xac\x97\x9a\xf4\xf7\x49\xe4\x74\x76\xc2\x0c\x3a\x7d\xa5\x75\x35\x80\x45\xef\xc2\xf1\x63\xd2\xf0\x59\x82\x4d\xb4\x93\x07\x54\xa1\xe7\xb0\xe1\xe0\x01\xc2\x8d\x67\x00\x9e\x06\x8f\x62\x66\xbf\xb9\xbb\x13\x09\x03\xd5\xac\xe2\x83\x33\x2d\x12\xed\x00\x2c\xa6\xab\xf4\x5b\x95\x2c\x34\x61\x85\xa0\xe7\x11\x35\x77\x76\x24\xa9\x82\x7e\x87\xb5\xfe\x19\x08\x55\xda\xa1\x9a\xb3\xf2\x7b\xe5\x15\x3d\x8c\xcd\x77\xfe\xd2\x2a\x8d\xae\xbd\x12\x55\x61\xd0\x0d\x2e\x11\xf3\xe9\xe7\x06\xe3\x35\x59\xea\xf0\xd2\xfd\x02\x1d\x2c\xdd\x21\xbc\x20\x94\xbb\xd8\xbb\x49\xe5\x75\xfe\xdc\x00\x9f\x8a\xef\x70\x27\x29\x5d\x14\x73\xc2\x41\x3e\x15\xe1\x24\xe7\x70\xe8\xfb\x82\xa8\x1f\x1d\x52\x0e\x2b\x8b\xc1\x91\xc2\x92\x81\x8a\xfc\xfa\xc9\xd7\xfb\x70\xa6\xde\x5d\x6d\x77\x45\x3b\x42\x2a\x62\x8d\xe9\x5d\x1c\x54\x55\x4d\x55\x4e\x54\x47\x71\xf2\xe5\x68\x2b\xa9\xaf\x28\xd1\x3a\xa9\x44\xef\xec\x19\xf1\xee\xde\x86\x34\x9f\x24\xad\xa5\xb5\x3c\x22\xf7\xf3\xfb\xd6\x3a\x5d\x27\x8f\x27\x98\x42\x31\xb7\xc1\x0e\xcf\x8c\xd1\x26\x8a\x7b\x61\x4a\x0f\xfd\xc9\x41\xa5\xef\xbd\x07\xc0\x67\xbc\x54\x0e\x47\x4f\x2c\xe6\x13\x95\xd2\x3f\xef\x0a\xa5\xff\x1d\xc6\x75\x7a\xa2\x4a\x0e\xe7\x53\xcf\xa8\x93\xe7\x8d\x2e\x5f\xe6\xd6\xba\x55\x31\xe7\xfb\xa9\x5b\x17\x66\x53\xfe\x1b\xd3\x8c\x62\x53\xee\x18\x61\xf6\x66\xc7\x56\xfe\x1b\xcf\x07\x84\x9f\x4c\xdc\xb1\xb5\xbf\xa1\x2a\x3e\xd6\x99\xa7\x02\x15\x7b\xf4\xe5\xad\x7d\xbe\xb0\xc2\x18\x71\x8a\xe5\xed\xe9\x9d\x53\x12\x2e\x6f\xb9\x98\xfc\xe8\x71\xdb\x4f\x30\x1b\xf4\xc9\xd4\xf5\xd8\x89\x26\xfb\x59\xba\x5d\x76\xa8\x93\xef\xbb\x58\x9b\x8c\x6a\x25\xe3\xb3\x6c\x5c\xda\xa7\x32\x1f\x34\x8c\xdd\xad\x7c\x2c\x35\x41\x11\xdc\x95\xb2\x8f\x13\x9d\x46\x28\x59\x2c\x3e\xd5\x1c\xc6\x3e\x2f\x96\x08\xb5\x75\x04\x91\xcf\x84\xc8\x9a\xe5\xa8\x83\x02\x29\xd5\x2f\xa6\x6c\x92\xe6\x08\x63\x17\x78\x4f\x9b\xc3\xf7\x98\xd4\xf7\xfd\x9c\x77\x7b\xcf\x6e\xf6\x26\xd0\xf5\xa5\x47\xaa\x84\xad\x95\xac\xae\xe0\xd7\x5f\xe3\xd2\x9b\x00\xb9\x65\x79\x75\x03\x67\xfb\xe8\xef\xe2\x6b\xa1\x48\xab\x5e\x34\xb6\x62\x3a\x97\xd7\x60\x7e\xf7\x41\x3a\xe8\x5d\x5d\xa6\x3e\xa6\x16\xae\xd8\xc7\xee\x25\xdd\x62\x26\x3f\x78\xe6\x34\xeb\xe5\xc3\xc6\x20\x1a\x37\x07\x67\xe8\xe2\xa9\xf9\xe2\x0b\xa6\x88\x93\x3c\xfe\x37\xe3\x43\x9f\x85\xc9\x8c\x9c\x33\xd3\xca\xf4\x24\x31\x59\x65\x2f\x0e\xd8\x97\xdd\x77\x50\xfc\x1d\x43\x7c\xfd\xbc\x81\xfa\xc3\x46\x97\xd0\x47\x57\x77\x31\xde\xbb\x20\x74\xe9\xb3\xae\x74\x8f\xd0\x7d\x58\x91\xbe\xc7\x99\x9d\x19\x6e\x90\x2b\x57\x7d\x12\xa3\xe8\x2b\x7c\xda\x11\x6e\x73\xa7\xf2\x27\x7f\x5d\x91\x30\xf9\x8f\xf4\xaf\x9f\x32\x73\x8d\x58\x2f\x68\xaf\x62\xd5\xc1\x5f\x59\x6f\xff\x20\x05\x85\x92\x13\x66\x5e\x4a\xab\xd7\xdb\xf8\xf9\x9c\x6f\x77\xe3\xc1\xb3\xcf\x4c\xa2\x90\x17\xd3\x5a\x7c\x79\xd0\x44\x24\xdb\xa5\xe9\x1e\x82\xfe\x9d\xa3\xf9\x2c\x0b\xab\xad\x5b\xa5\x29\x5d\x9e\x8a\x07\x73\xca\xde\xa7\x06\x29\xf9\xfe\x71\x06\x9e\x0e\xd6\x4e\x62\xdf\x14\x8c\xa0\xd3\xf1\x50\x9e\x76\x84\x58\x84\xa3\x47\xfc\xb6\x50\x8a\x66\x7f\x9c\xfd\x27\x00\x00\xff\xff\xa3\x54\x4b\x49\xdd\x29\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x51\x6f\x23\xb7\x11\x7e\xdf\x5f\x31\x75\x80\xda\x0e\x74\x72\x1f\x8a\x3e\x18\x08\x2e\x97\x38\x2e\x04\x14\x4e\x71\xd1\x25\x0f\x45\x11\x51\xbb\x23\x89\x3d\x2e\xb9\x47\x72\xa5\xa8\x8e\xff\x7b\x31\x43\x72\x97\xbb\x5a\xf9\xec\xa4\xad\x1f\xda\x68\x77\x39\x1c\xce\x7c\x33\xf3\xcd\xf0\x6e\xbe\xfc\xb2\x28\xbe\xf8\x02\x96\x3b\x84\x7b\x65\x0e\xf0\x60\xf4\x9b\xfb\x56\x6f\xe5\x5a\x21\x2c\xcd\x47\xd4\xe0\xbc\xd0\x95\xb0\x15\x7f\xb8\x7a\x30\x3a\xbd\xe7\xd7\x2b\x28\x8d\xf6\x56\x94\xbe\x28\x48\x8a\xd4\x1e\xed\x46\x94\x08\x7e\x27\x3c\x08\xa5\xa6\x64\xa6\x35\x0e\xdc\xce\xb4\xaa\xa2\x07\x1b\x63\x6b\xf0\x66\x5e\x2c\x36\x20\xa0\x75\x68\xe1\x20\xb4\x77\xe0\x0d\x54\xd8\x28\x73\x04\x01\x1a\x0f\xf0\x70\xbf\xec\x04\xcc\xc0\xef\x50\xda\xee\x77\x92\x27\xeb\x46\x61\x8d\xda\xb3\x52\xfe\xd8\xa0\x83\x0a\x37\x52\x63\x05\x3b\xb4\x18\x0f\x73\xbf\x5c\x81\x45\x67\x5a\x5b\x66\xaa\x87\x93\x94\xc6\x62\xff\x92\x44\x84\x23\x59\x6c\x2c\x3a\x24\xcd\x84\x66\x65\xa4\x26\x2d\xc0\xd5\xc2\xfa\x4e\x93\x79\xd8\xe2\x5b\xa3\x14\x96\x5e\x1a\xbd\x82\xf7\x67\x76\xea\x37\x21\xf9\xce\x1b\x8b\x2e\x9a\xe0\xd2\xc5\xe3\x26\x29\xf3\x62\xe1\x41\xea\x52\xb5\x15\x7f\xb4\xc1\x03\x6c\x5a\xcd\xef\xd8\x54\x42\x91\x1f\x49\x1f\x73\xd0\x68\xe9\x11\x0a\x27\xd5\xb1\xa8\xcd\x1e\xc1\x93\xfd\x1d\xa9\x2c\x74\x05\xa6\xf5\x60\x36\xfc\x75\xbe\x05\x6b\xfe\x77\x6b\xf6\xb2\x42\xbb\xe2\x2f\x57\xef\xb1\x44\xb9\xa7\x9f\xa7\x06\x73\x7c\x0e\x97\x3f\x81\x0a\x4b\x25\x2c\x66\xca\x1d\xa4\xdf\x81\x33\x35\x42\x63\x91\x85\x36\xc6\xb1\xc1\x2a\xc9\x5f\x14\xd1\xbe\x9f\x5a\x69\x91\x95\xea\xad\x47\xe7\xd8\x18\x3e\x5b\x89\xd6\x0b\xa9\x41\x8b\x5a\xea\x2d\x0b\x5a\xe3\x4e\xec\xa5\xb1\x1d\x58\xdd\x9c\x55\x3a\x02\xa9\xe0\xb0\x11\x56\x78\x84\x35\x96\xa2\x25\x35\x3d\x6c\xe5\x9e\x95\xdc\xa3\x32\x0d\x5a\xc7\xdb\x89\xb5\x54\xd2\x1f\x03\xe2\x08\x2c\xbd\xf6\x41\xb7\x52\x68\x72\x0b\x08\x7d\xcc\x10\xd1\x81\x8d\xa5\xb8\xa1\x61\xbe\x39\x42\xeb\x48\xcf\x64\x36\xc7\x1a\xf7\x9f\xcc\xd8\xd1\x8e\xfc\x40\xae\x1e\xa2\xc8\xf1\x96\x0e\x75\x55\xd0\x2a\x1b\x9c\x90\xbc\xd8\x20\xda\x37\xde\xbc\xa1\xff\x9f\xb1\x7d\xc9\xa1\x64\x0a\xbd\xa5\x43\xf0\x26\x14\x15\x6c\x7a\x01\x25\x92\x54\x05\x0a\xab\x2d\xda\xe2\x04\xb0\x4b\xc3\x5b\x25\x5c\x13\x9a\xb4\xf1\x3b\xb4\xac\xe2\xac\x0b\x4b\x0e\x31\x47\xc7\x3e\xb2\xe8\xca\x8a\x00\xb9\x87\xfb\x65\xb1\xb1\xa6\x8e\x51\xd9\xbb\x8f\xe3\x54\x43\x49\xf9\x80\x3e\xac\xb0\x31\x4e\xfa\xce\xbe\x60\xf4\x60\xaf\x4b\x57\x0c\x7d\x5f\x1a\x32\xb2\x0f\xb0\xf0\x56\x68\xb7\x41\x3b\x2f\x8a\x2f\x6f\x8a\x42\xd6\x8d\xb1\x1e\x7e\x94\x78\xa0\x10\x53\x7b\xb4\xc0\x5a\x5c\xe4\x8f\x2e\x8a\xe2\xe6\xe6\x86\x53\x5d\x4d\xf0\xc9\xd3\xc8\x1c\xbe\xe7\xad\xf3\x67\x04\x58\xa5\x78\x4d\xdc\x80\xfd\x96\x7c\xcd\x8a\x0c\xf0\x1e\xb2\x0b\x27\x03\xe9\xfa\xb4\x78\x73\x73\x53\x88\xb2\x44\xe7\xae\x84\x52\xd7\x7d\xaa\xea\x53\xe5\x38\xa9\xde\x0e\xcf\xf2\x58\x14\x00\x00\xa4\xc9\x3b\x0d\xa8\xbd\xf4\x51\x87\x8d\xb1\x21\xe0\xd9\xe1\x3b\xec\xbc\x21\x14\xc7\x75\x80\x09\xdb\x42\xc0\x8f\xa2\x55\x9e\x25\xe5\xea\xe4\xe2\x7e\x8a\xab\x5f\xb6\x5f\xdb\x54\xc2\x47\x38\x87\xff\x06\xdc\x73\x14\xf0\x67\x6c\xe1\x67\xb7\xfb\xc0\x8b\xfa\xcd\xc6\x3b\xc5\x04\x46\x21\xb6\xb5\x5c\x0a\x92\x82\xbc\x67\x5c\xfe\xdc\x0e\xdf\x93\x84\x7e\x83\xef\xf6\xc1\x71\xc2\x9f\x56\x20\xac\xa5\x87\x03\x81\x94\xec\x58\xa3\x17\x95\xf0\x82\xac\x98\xb2\xbc\x8b\xa7\xac\x3a\x79\x8b\x90\x11\x8c\x56\x47\x58\x23\x8b\xf0\x58\xc1\xfa\xc8\x40\x4f\x3e\x59\xd1\xf3\x87\xfb\x65\xd0\xb7\x5a\x75\xa0\xef\xe4\x84\xf0\xd4\xb0\xe2\x4f\xc4\x5a\xe1\x2a\x1d\x83\x62\x7e\x83\x16\x35\x95\x07\x93\x82\x2c\x9c\xe1\x20\x4e\x55\x22\x78\xe7\x16\x68\x6c\xf4\x89\x6b\x44\x5d\x53\x9e\x61\x34\xf4\xfa\xc9\xf8\xa4\x8f\x3d\x77\x99\x15\x03\xd7\x49\x4e\xc9\x93\x4f\x5b\x9a\x2a\x80\x8d\x0a\x49\xf6\x39\x98\xe8\xb0\x9d\xa0\x2d\xb1\x94\x42\xf5\x47\x09\x6e\xea\x24\xc6\xf3\x64\x9b\x91\xdd\x77\xa6\x0a\xa1\x47\x26\x25\x5b\xd0\x77\x5b\x0c\x01\x77\x6a\x95\x4e\xda\xd0\x04\xec\xe9\x5a\x7c\x44\x47\xd9\xde\x99\xa0\x95\xdf\x49\x5b\xbd\x69\x84\xf5\x47\x90\xba\xc2\x5f\xc8\x20\xe4\xc2\xda\x68\xe9\x59\xf7\x04\xe2\x4e\x1c\x41\xed\x53\x8b\xf6\xc8\x2f\xa3\xbd\x7b\x80\xa4\x74\x17\xd0\x3a\xb4\xdd\x3c\x09\x39\x05\xe9\xbe\x0f\x80\xea\x4a\x56\xb7\xf0\x61\xa1\xfd\x5f\xfe\x3c\x83\xb6\xcd\x7f\xb1\xd0\x5b\x78\x57\x55\x16\x9d\x7b\x3b\xe3\xaa\x73\x0b\x3f\x78\x2b\xf5\xf6\xfa\x44\xec\x5e\x06\x3a\x00\x43\xc8\x5d\xfd\x0c\x7a\xe3\xdf\xe3\xe6\x16\x44\xeb\x77\x57\xe1\x31\xfc\x1a\xe2\xe3\x1a\xfe\xf8\x38\xce\x40\xf3\x87\xfb\xe5\x53\x90\xff\xc8\xff\x4b\x7f\x1c\x22\xb9\xce\x41\xe8\x5c\x56\x49\xed\xf8\x80\x7e\x74\xba\xc7\x67\xfc\xeb\xed\x5c\x84\x93\xa4\x83\xc4\x97\x5b\xf4\xcb\x63\x83\x57\xd7\x73\x59\x91\x8b\x37\x12\x6d\xd8\xfd\xa9\x98\x0c\x5f\xe9\xba\x68\xe3\x98\x15\x21\xd7\xd1\xf3\x94\x02\xf5\xac\x5b\x28\x75\x25\x4b\xe1\x53\x40\xd2\xd6\x33\x48\x5a\xcf\x32\xb2\x74\xc2\x85\xe2\x6e\x21\xd6\x3a\xc9\xec\xf4\xd9\x00\x21\xb4\xec\xc3\x87\xc5\x5d\x12\xd1\x93\xa4\xc9\xb5\xd0\xba\x56\x28\x75\x1c\x04\xcf\x10\x2e\x9c\x60\x4e\xf4\x91\x0e\xb4\xf1\x81\xbf\x91\xeb\x4d\xab\xfd\xa5\x63\xd2\x28\xb6\x38\x83\x15\x89\x5f\x75\xf1\xb3\xd2\x52\xad\x3e\x07\xc3\x94\x55\xf5\x55\x8e\x2e\xb2\xd0\x39\x58\xd2\x26\x39\x2a\x9b\xc8\x15\xc9\x02\xe9\xab\xeb\x49\xc7\x9d\xf3\x5a\x24\x04\x58\x31\xeb\x98\x32\x0a\x2c\x82\x17\xd1\xfd\x2e\x27\xe6\x1b\x3d\xef\xc2\xdc\xea\xa7\x6b\xff\x6b\xbe\x9a\xbd\xce\x59\x77\x49\x87\x17\x3b\xcb\x9b\xdc\x55\xbd\x7e\x67\x9c\xb5\x08\xcd\x45\xc5\x25\x78\x2d\xca\x8f\x07\xe2\xd3\x6f\x88\x80\x09\x2f\x03\x43\x3e\xd1\xed\xb4\x27\x80\xc5\xc3\xfd\xf2\x96\x8b\xd5\xe3\x53\x2e\x7d\xd0\x1f\xc6\x7a\xe6\xa0\x6e\x43\x2b\x10\xbb\xc0\xb3\x46\x98\xd8\x88\xf7\xc9\x09\xd3\x7c\xcc\x9c\xd2\xe6\xad\x96\x9f\x5a\x84\xc5\x1d\x9f\x2d\x11\xd6\xf4\x45\xbe\x8d\x42\x9f\x59\x74\x28\x65\x3a\x0d\x89\xd6\x9b\x5a\x78\x59\x72\x58\xe3\x9e\x0b\x86\xac\x11\x44\xa6\x33\x41\xc8\x79\x6b\x8e\xb1\x62\xe7\x25\x8b\xfb\x09\xc9\x06\x10\x09\x3e\x32\xf9\x42\x8e\x68\x49\xc0\x82\x33\x84\xcc\x08\x33\x8d\x48\x5f\x0a\x6e\x4b\x85\xdd\xb6\xdc\xfe\x4e\x1d\x2e\x2c\x4e\xdd\xe8\x5d\xd2\x28\x2b\x43\xf0\x15\x38\x54\x79\x66\x1f\x3e\xa7\x67\xd7\x43\xab\x94\x16\x85\xc7\xef\xea\xc6\x1f\x33\xe6\x1e\x9e\xb2\x4a\x48\xaf\x06\x1d\x5d\xb4\x60\xaa\xf1\xdc\xf8\x9e\x78\x25\x45\xa7\x45\xdf\x5a\xcd\xd5\x3c\xf1\x06\xa1\x14\xda\xac\xb6\xe3\x31\xd0\xb1\x03\x13\x36\x37\x10\xf1\x75\x58\x0f\xef\x7a\x55\xc6\x09\x82\x3b\xad\xa8\x83\x74\x67\xa1\x41\xe5\x75\xf2\xb0\x57\xd7\xb7\xf0\xf5\x63\xff\xfb\x29\x2b\x9d\xf4\xc7\xdd\xee\xf0\x11\xfd\x59\x74\xad\xf2\x54\x02\xff\x86\x7a\xeb\x77\x57\xd7\xf0\xd5\x57\xf0\xa7\x5b\xb8\xe0\x29\x04\xef\x54\xe5\xca\x72\xa8\x30\xdd\x6c\xfc\xf1\x0f\x17\x03\x81\x4f\x45\xff\x5f\x83\xf3\xff\x15\xbd\x83\xd4\x7d\x71\xc4\x25\x42\x14\x26\x0c\x95\xb4\x58\x7a\x75\x24\xeb\x9d\xb3\x5c\x25\x59\x01\x61\x8f\x4c\x8b\x95\x02\xd7\xae\x1f\xee\x97\x3f\xc0\x47\x3c\x06\xde\x4b\x20\x9e\xb4\x5a\xc7\x4c\xb6\xe8\xdf\xed\x85\x54\xe4\xf5\x1f\xc2\x72\x32\xdc\xe3\x92\xb3\x59\x80\xd9\xd8\x72\x51\x83\xc7\xe7\x4e\xc7\x71\x96\x31\xe5\xd4\xc3\x0e\x4e\x79\x72\xb8\x6f\x0c\x31\xef\x18\x2c\x8e\xa7\x05\xa6\xe1\x43\xaa\xe1\x30\x25\xf6\xc3\xe5\xce\x18\x87\x03\x11\x3b\x73\x20\x50\x26\x7c\xba\x76\x1d\xec\x5b\x61\x83\xba\x22\xce\x61\x34\x1c\x78\x18\x36\xd8\x27\xd6\xcc\x61\x22\xb8\x37\x16\xf0\x17\x41\x4d\xe6\x0c\xe4\x06\x56\x64\xd0\x15\xb3\x69\x01\x7b\xa1\x5a\x9c\xc1\xba\xf5\xb0\x92\xd5\x0a\x2a\x83\x4e\x5f\x86\x19\x18\x2b\x38\x0c\x48\xa1\xa3\xba\x70\xd8\xc9\x72\x17\x0c\xb0\x89\x16\xe1\xe1\x85\x49\x96\x95\x5c\xbb\x2c\x67\x28\x01\x17\x15\x6e\xa8\x57\xbc\x18\xc8\x5b\x6c\x60\x1d\xac\x15\x2b\x55\xec\xe9\x7b\x30\x71\x67\x10\x22\x48\x80\x93\x7a\xab\x82\x5a\xa4\xc9\xbf\x08\xb4\x61\xb7\x81\x54\x5a\x38\x87\x25\x39\x68\x87\xaa\x71\x31\xaa\x1d\x1c\x76\x86\xb6\xd2\x97\x1e\x5c\x6b\x31\x58\xd0\xa7\x91\x8e\x32\xe6\x23\x99\x96\xf2\x78\x2e\x6f\x88\xdc\x46\x58\x51\x47\xa6\x49\xc1\x44\x18\x4b\xd5\xbd\x42\x27\x2d\x56\x27\xb9\x26\x2e\xa2\x9c\xc7\xf3\xcc\x2a\x2d\x88\x08\x58\x1b\x6b\xcd\xe1\xfc\x9e\x5d\xb4\x38\x6f\xdb\xd2\xb7\x3c\x44\x8c\x13\xc3\x44\x40\x2d\x7e\x6a\xd1\x51\x58\x53\x58\xcc\xcf\xa6\x99\x2d\xfa\x10\x22\xb1\xd6\x2f\x23\xe7\xe9\xaa\x36\xdc\x9e\xe3\xee\x6f\xa7\x43\x48\x4b\x55\x0c\x73\xc5\x74\x6d\x36\x50\x63\x25\xa9\x49\xe8\x27\x0a\xdd\x20\x21\xd5\xb3\x9c\xc5\xf6\x69\xef\x35\xa5\x3b\xcd\x18\x87\x85\x1a\x7e\xc2\xd8\x8e\xa7\x76\x3f\xcd\x15\x52\xaf\x95\xf8\x66\x26\x2a\xb5\xa7\xc4\x21\x28\x4f\xe9\x6d\xb7\x3c\x17\x1d\x25\x45\x64\x09\x9e\xd3\x6c\xc2\x80\xce\x9b\x58\x19\x95\x74\x1e\xa9\x99\x4b\xef\x55\x14\x98\xa6\x56\xb1\x43\x1c\x38\xbe\xd3\xd5\x62\x6d\xf6\xd8\x0d\x87\x3b\x9d\xb3\x0c\x4e\xf5\x2c\x7c\x34\xae\x66\xc3\x88\xf3\x1c\xe2\x5c\xdd\xb9\x97\xde\x1c\x89\x37\x73\xa3\x4e\x4b\x16\x77\x14\xaf\x81\xb2\x5a\xfa\x6a\x0a\xc8\x49\x2f\xe2\x7a\x93\x80\xee\x14\x9f\xd0\x74\x8c\xcc\x6e\xfe\xd2\xb5\x8e\x04\xd3\x24\xe1\x2a\xdf\x2b\x22\x94\x4a\x22\xe1\xf1\x55\xb5\x50\x56\x54\x02\x73\x69\x5c\x0b\x7b\x6a\xde\x77\x53\xa1\x81\x48\x25\x91\xc7\xf0\x82\x48\x97\x1b\x05\xda\xe2\xee\xe2\x64\x37\xc6\xd8\xb8\xf9\xe9\xcb\xf1\x49\x47\x1a\x42\xaf\xd3\x31\x51\xa3\xf8\x20\xb4\x21\xa1\x33\x62\x92\x34\xee\x78\x87\x4d\x52\xc6\xa3\x72\x9d\x9e\x5e\x19\x9e\x11\x92\x2e\xc1\xe8\xb7\xc5\x61\x1a\xee\x8f\x09\x73\x02\xbc\xe7\x41\x4a\x44\xf4\x90\x61\x32\x98\x45\x55\xe5\x58\xfe\xf6\x14\x40\x79\x3e\x0e\x23\xce\x65\x0f\xc1\xb8\xcd\xd9\x3c\x18\xdf\x5f\xc5\x95\x01\x51\x23\xfe\xc9\xb9\xb2\x69\x8c\xf5\x58\x3d\xdc\x2f\x97\x7c\xe5\x93\x8a\xb2\xe0\x98\x4e\x23\xf6\x70\x1d\xd4\x33\x03\x9b\x4e\x4f\xfb\x36\xfe\x65\xf4\x27\x08\xa9\x45\xd3\x84\x9e\x75\x6d\x8c\x42\xc1\x57\x2b\xdd\xb0\x81\xcb\xaa\x1c\xca\xeb\xa1\x5e\x4a\xea\x12\xc0\x05\xad\xc9\x7e\x9f\x65\x4e\x27\x27\xcc\xa8\xd3\x37\xc6\xa8\x11\x2d\x7a\x1f\x8f\x9f\x92\x46\xc8\x12\xec\xa2\xad\xdc\xa3\x8e\x3d\x87\x8b\x07\x8f\x14\x6e\x3a\x03\xf0\x34\x78\x92\x33\x87\xc5\xfd\x9d\x48\x1c\xa8\x66\x15\x1f\xbc\x6d\x91\x64\x47\x62\x71\xbe\x4a\xbf\xd3\x9d\x87\xce\x78\x21\xda\x79\xc2\xcc\xbd\x1f\x49\xab\x68\xdf\x71\xad\x7f\x01\x43\x95\x6e\x6c\xe6\xac\xfc\x5e\x07\x43\x8f\x63\xf3\x7d\xb8\xb4\xea\x46\xd7\xc1\x88\xba\xb4\xe8\x47\x97\x88\xf9\xf4\x73\x8d\xe9\x9a\xac\xeb\xf0\xba\xfb\x05\x3a\x58\x77\x87\xf0\x8a\x50\xee\x63\xef\xb6\x2b\xaf\xb3\x97\x06\xf8\xb9\xf8\x8e\x77\x92\xd2\x27\x35\xcf\x00\xe4\x73\x11\x4e\x7a\x8e\x87\xbe\xaf\x88\xfa\xc9\x21\xe5\xb8\xb2\x58\x9c\x28\x2c\x19\xa9\xc8\xaf\x9f\x42\xbd\x8f\x67\x1a\xdc\xd5\xf6\x57\xb4\x13\xa2\x12\xd7\x38\xbf\x8a\x83\x4a\xd5\x54\xe5\x84\x3a\x88\x63\x28\x47\x1b\x49\x7d\x45\x85\xce\x4b\x2d\x06\x67\xcf\x84\xf7\xf7\x36\x64\xf9\x4e\xd3\x5a\x3a\xc7\x23\xf2\x30\xbf\x6f\x9d\x37\x75\x87\x78\xa2\x29\x14\x73\x6b\xec\xf9\xcc\x94\x6c\x92\xb8\x13\xb6\x0a\xd4\x9f\x00\x2a\x43\xef\x3d\x22\x3e\xd3\xa5\x72\x3c\x7a\x62\x35\x9f\xa9\x94\xe1\x7d\x5f\x28\xc3\xef\x38\xae\x33\x67\xaa\xe4\x78\x3e\xf5\x82\x3a\x79\xda\xe8\xf2\x65\x6e\x6d\x5a\x9d\x72\x7e\x98\xba\xf5\x61\x76\x0e\xbf\x29\xcd\x68\x76\xe5\x96\x19\xe6\x60\x76\xec\xe4\xbf\xf1\x74\x40\xf8\xd9\xc4\x9d\x5a\xfb\x5b\xaa\xe2\x53\x9d\x79\x57\xa0\x52\x8f\xbe\xb8\x73\x2f\x57\x56\x58\x2b\x8e\xa9\xbc\x3d\xbf\xf2\x9c\x86\x8b\x3b\x2e\x26\xff\x08\xbc\xed\x9f\x50\x8c\xfa\x64\xea\x7a\xdc\x99\x26\xfb\x45\xb6\x5d\xf4\xac\x93\xef\xbb\xd8\x9a\xcc\x6a\x25\xf3\xb3\x6c\x5c\x3a\x94\x32\x1b\x35\x8c\xfd\xad\x7c\x2a\x35\xd1\x10\xdc\x95\x32\xc6\x49\x4e\x23\xb4\x2c\xe7\x9f\x6b\x0e\x53\x9f\x97\x4a\x84\xde\x78\xa2\xc8\x27\x4a\x64\xcd\x72\xb2\x41\x89\x94\xea\xe7\xe7\x7c\xd2\xcd\x11\xa6\x2e\xf0\x9e\x77\x47\xe8\x31\xa9\xef\xfb\x39\xef\xf6\x5e\xdc\xec\x9d\x61\xd7\x57\x81\xa9\x12\xb7\xd6\x52\x5d\xc3\xaf\xbf\xa6\x47\x6f\x23\xe5\x96\xd5\xf5\x2d\x9c\xac\xa3\xbf\x8b\x6f\x85\x26\xab\x06\xd5\xd8\x8b\xdd\xb9\x82\x05\xf3\xbb\x0f\xb2\xc1\xe0\xea\xb2\xeb\x63\x6a\xe1\xcb\x5d\xea\x5e\xba\x5b\xcc\x0e\x07\x2f\x9c\x66\xbd\x7e\xd8\x18\x55\xe3\xe6\xe0\x84\x5d\x3c\x37\x5f\x7c\xc5\x14\xf1\xec\x1e\xff\x9f\xf1\x61\xc8\xc2\xe4\x46\xce\x99\xdd\x93\xf3\x93\xc4\xce\x2b\x3b\xb1\xc7\xa1\xee\xa1\x83\xe2\x7f\xc7\x90\x3e\x3f\x6d\xa0\xfe\x67\xa3\x4b\x18\xb2\xab\xd7\xbb\x3b\x71\xb0\x3e\xc1\x0c\xb8\xdf\xef\x1c\x2a\x67\xf9\x43\x6f\xfc\xb2\x9b\x2f\xe5\x49\x64\x34\x61\x1b\x5c\x92\x77\x69\xe3\xb9\x34\xbe\xcc\xbb\x94\x33\xc4\x30\xfe\xab\x93\x78\xd1\xfc\x32\x98\xf5\x1a\x07\x3a\x3b\xc1\xab\xa6\x41\x38\x01\xc0\x1e\x00\x5c\x3e\xe6\x8a\x61\xf0\x1b\x41\x90\xdc\xfe\x54\xfc\x27\x00\x00\xff\xff\xe0\x9a\x44\x9b\x97\x28\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -172,11 +151,11 @@ func nonfungibletokenCdc() (*asset, error) { } info := bindataFileInfo{name: "NonFungibleToken.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x67, 0x22, 0x30, 0x91, 0x33, 0xbf, 0xcf, 0x94, 0x6c, 0xf3, 0x6, 0x7c, 0x71, 0x28, 0x28, 0xe, 0x60, 0xf5, 0x5a, 0x80, 0x2f, 0x55, 0xf1, 0xab, 0xf4, 0xd5, 0xf3, 0xb3, 0xbb, 0xe0, 0xd8, 0x38}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0xc9, 0xf4, 0xa7, 0x4e, 0x92, 0x1c, 0x3c, 0xa2, 0x76, 0x60, 0x2f, 0xd9, 0x5c, 0x7f, 0x21, 0x9d, 0x7b, 0x55, 0x38, 0xf9, 0x8c, 0xe5, 0xcb, 0x83, 0x92, 0x65, 0x10, 0x38, 0x7d, 0x92, 0x2}} return a, nil } -var _universalcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x5b\x8f\x1a\xb9\x12\x7e\xef\x5f\x51\xe1\x21\x6a\x46\x73\x98\x97\xa3\xf3\x80\xc2\xc9\x6d\x16\x69\xa4\x2c\x8a\x12\xb2\xfb\x10\x45\x1b\xd3\x5d\x80\x35\xc6\x6e\xd9\xd5\xb0\xad\x11\xff\x7d\x55\x76\xdf\x2f\xa3\x24\xcb\x0b\x74\xdb\x55\xae\xcb\x57\x9f\xab\xb8\xbb\x81\xe8\x26\xba\x81\xed\x51\x3a\x90\x0e\x84\x06\xfc\x5b\x9c\x32\x85\x90\x18\xa5\x30\x21\x69\x34\xd0\x51\x10\x24\x42\x83\x23\x63\x11\x84\x2e\xc0\x68\x04\x2a\x32\x04\xb3\x87\xcd\x7a\xeb\x55\x20\xbc\x6f\x64\xa4\x03\x8b\x8e\xac\x4c\x08\x53\x20\xe3\x25\x36\xeb\xad\x97\x5a\x54\x47\x0a\xa5\xcc\xc5\x41\x8a\x67\x54\x26\x43\xeb\x78\xe7\xc5\x4a\x0a\x7b\x13\xa3\xc9\x8a\x84\x1c\x5c\x24\x1d\x4d\x4e\x70\x14\x67\xa9\x0f\xd1\x0d\xef\x13\xca\x55\x9b\x85\x52\x6c\x09\x75\x6d\xd8\x19\xa9\xd0\x66\x4a\x10\xbb\x93\xe2\x6d\x74\x03\xce\x2b\x80\x13\x3b\xa1\xa4\x46\xc7\x72\xbc\xb8\xe0\x40\xdc\x45\x91\x3c\x65\xc6\x12\xcc\x36\x46\xaf\x73\x7d\x90\x3b\x85\x5b\xf3\x88\x7a\x56\xaf\xfc\x8e\x24\x52\x41\xe2\x0f\x89\x17\xd7\xbc\xe6\xc7\x4f\xe8\x8c\x3a\xa3\x9d\x45\x91\x48\x12\x74\x2e\x16\x4a\xcd\x6b\x3f\xe0\x8b\x96\x67\xb4\x4e\xa8\x96\x95\x4f\x51\x04\x00\x70\x77\x77\xe7\x63\x48\x45\x26\x13\xa1\xda\x7e\x58\x74\x26\xb7\x09\xde\xc2\x2e\xa7\x10\x7a\xce\x88\xd0\x05\xff\xe6\xc4\xe4\x0e\x2b\x25\xfe\xbb\x7d\x78\x25\xdd\xd2\xb8\x84\xbe\x77\x8b\xa1\x41\x95\x51\x78\x46\x5b\x34\x96\xb7\x81\xe1\xf2\x8c\x7d\x77\x20\xc0\x49\x7d\x50\x01\x13\x1d\xe9\xb7\x4a\x41\x8a\x99\x71\x92\xb7\xe9\xd4\x67\x32\xb5\xe2\x22\x94\x83\x53\xee\x08\x76\x18\x52\x27\x5d\x57\xba\xed\x83\x42\xaa\x0e\xc3\x74\xcb\xb8\x5b\x02\x7f\x75\x2d\xe5\xf0\x65\x82\x8e\x20\x53\xd4\x24\xf7\x12\xed\xa4\xb6\x66\xcb\x12\x3e\x93\x65\x50\x75\x74\xdd\x4b\xef\xa2\xb0\x05\x9c\x44\x96\x31\x66\x18\x91\x0f\xf7\x1e\xa2\x0c\x34\x5f\x0c\x29\xbf\x75\xfd\x53\xaa\x7c\xcf\xe1\x2c\x2c\x98\x8b\xc6\x94\xb7\x2d\xe1\xcd\xd3\x97\x07\x4d\xff\xfb\xef\x12\x9e\x06\x19\xd8\xac\xb7\xd7\x6b\xd4\x57\xe5\x50\xed\x83\x1a\x3e\x4f\x1c\xf0\xa3\xa0\x23\x9b\x5c\x3f\x4c\x4b\x64\xf9\x4e\xc9\x24\x08\x7c\xac\x7f\x0f\x8e\xf0\x31\xd9\xe7\x1a\x0e\x48\x9b\xf5\xb6\x41\xc2\x7d\x09\xf2\x78\xbe\x84\xb7\xba\xf8\x4c\x36\x4f\x08\x9e\x6a\x79\xfe\x58\xa4\xdc\x6a\xe8\xd4\xc4\x62\xa0\x25\xee\xc8\xf0\x67\xca\x9b\xb8\x9d\x18\x76\x65\xd1\xbc\x98\xbf\xb8\x1d\xe8\x19\xf7\xf1\xd7\xb4\xb4\x0b\x84\xd1\xf5\xea\xe5\x48\xbd\xb6\x2a\xe5\xff\xf1\x7c\x4a\xd5\x07\xa9\x1f\x03\x52\xff\x85\xaa\xc4\xa2\x20\xfc\xed\x94\x51\xd1\xec\x5c\xe7\xba\x34\x31\xde\xe7\x9a\x53\xf3\x66\x88\xa5\x66\xfb\xb5\x97\xaf\x5e\xde\x5e\xfd\xc7\x47\x67\xf4\xa4\x78\x3e\x90\xbc\x76\x5f\x35\x4f\x43\xe0\xd6\xa8\x9a\xd0\xfd\x93\x76\xd7\xf6\x96\xfa\x5a\x6c\xf6\x5c\xb2\x6f\x3d\xa7\x94\xaf\x3b\x0c\x32\x6a\xbb\xd4\x92\x20\x1e\x72\x43\xa9\xc6\xcb\xf5\x0c\xf3\x9a\xeb\x12\x67\x03\x9f\xae\xc3\x0d\x8d\x4a\x58\x8d\xd1\x53\xbd\xb1\xcb\x72\xab\x2e\x25\x36\xbb\x9a\x82\x81\xd5\x64\xf9\xb4\x31\x3f\xd4\xd1\x54\x0e\xac\xa6\x4a\x67\x54\xc3\xb5\xcb\x94\x07\xa4\xcf\x95\xd1\x9b\xf5\x96\xed\x76\x65\xba\xf8\x62\x50\xd2\x51\xd9\x25\x78\x67\x5c\xb8\xbc\x3c\xdf\x5b\x4c\x90\xab\xc2\x63\x26\xa3\x01\x8f\x7a\x0c\x9d\x25\x5e\x2a\x7a\x1a\x1c\xc4\x38\x7a\x0a\x65\xf6\xce\x18\xd5\x47\xcd\xe0\xde\x70\xbd\xed\xab\x41\xb6\x3a\xbb\xbf\x0e\x73\xf2\x8d\x93\x62\x73\x1c\x43\x67\x57\x78\x2a\x60\x9f\xca\xd8\x5c\x8e\x48\x47\xb4\x60\x2c\x68\x43\xfe\x4e\x39\xc8\x33\xea\xd0\x58\x71\x77\xe4\xa3\x82\x29\xec\x0a\xbf\xda\xdc\xbc\xcf\x07\x4a\xba\x7e\x9c\x62\xaa\x99\x68\x1e\x5c\xef\x05\x4a\xee\xc3\xa9\xab\xd5\x18\x0c\x87\x14\x52\x3a\x3c\x08\xc4\x15\x50\xb9\x67\x04\xf6\x42\xb9\x9e\xc4\x54\x98\xaa\x46\x01\x2c\x9e\xcc\x19\x7d\x73\xca\x20\xda\x5b\x73\xea\x85\xc3\x37\x16\x61\x93\xa4\xea\x7e\x4e\x84\x52\xc3\x06\x60\x40\x39\x7f\x56\xfd\xc8\x4e\x61\x20\xac\xea\xe0\xb8\xfa\xf1\x70\xbf\x84\x70\x6f\x8f\xb3\x16\xdf\xdc\x23\xc0\x23\x5e\x64\x42\xe8\x52\xc4\x22\xf8\x13\x3f\x62\xb1\x84\xe6\x88\x2e\xb3\xbe\x7e\x0d\x99\xd0\x32\x89\x67\xef\x4d\xae\x52\x0f\x90\x3a\x20\x65\x20\xf8\xd9\x7b\xca\xf6\xcd\x16\x89\xd1\x89\xa0\x96\xd1\x0b\x32\x81\xbd\xe2\xf9\xbc\x5a\x9d\x8d\x85\x6f\x36\x9f\x47\xe3\x64\xeb\x5d\x98\x4a\x50\xd9\xd6\x01\x89\x47\xce\x8e\xb7\x89\x13\x21\xd2\xb4\x93\x87\xfa\x1c\x07\x69\xdd\x55\x75\x34\xd5\x52\xc1\x9b\x4a\x52\xa6\x20\xac\x15\xc5\xe4\xd5\x52\x5a\x10\x7b\x33\x27\x53\xd3\x67\x6c\xb9\x1f\xc3\xf8\x8b\x55\x48\xd8\xe2\x80\xe4\x4b\xa6\x2f\xc6\x9f\x2a\x27\x42\x73\x42\xaa\x00\x94\xf9\x28\x07\x90\xa6\x86\x67\xf3\x1e\xd2\x3b\x8f\xec\x77\x9a\x7a\x11\x8d\x97\x12\x2d\xa5\xe7\x4d\x9c\xe0\x72\x94\xc9\xb1\xae\x01\x5e\x34\x2a\xe5\x21\x60\x80\x37\xa3\xd2\xed\x38\xe4\xbe\x06\xcf\x64\xfa\x8d\xd7\xba\x49\xe5\x4f\xca\x93\x9a\x29\x6a\x0d\xcf\x50\x3d\x37\xc0\x35\xb9\xeb\x90\x9f\xca\x73\xdf\x1c\xfb\xc9\xc4\x22\x48\xfd\x53\x9c\x15\x54\x33\x9d\x7f\x0d\xa5\xf6\x6d\xbc\x01\xe8\xd5\xd2\x23\x16\x93\x3c\x7b\x40\xfa\x80\xfa\x40\x47\x2f\xeb\x74\xa0\x58\x9d\x9f\x76\x4c\xba\x7b\x90\x84\x27\xf7\x0b\x76\x06\xa5\x6c\xea\x83\x9e\x68\x87\x7b\x56\x2a\x2f\x31\x65\xe7\x3b\x63\x2d\x4f\xc1\x02\x2c\xee\xd1\xa2\x4e\xd0\x8f\xb7\x01\x55\x03\xfb\x18\xbf\x92\xf8\x7e\xe0\xdb\xa3\x3b\x6d\x19\x7e\x75\x91\x0e\x6f\xeb\x24\x7d\xd7\x52\x7d\x7f\xde\xa7\x9d\x37\x60\xb3\xde\xc6\x7f\x81\x4c\x5b\x5c\xf7\x72\xbc\xa0\x5e\x8f\x3b\x1d\xbf\xec\xa1\x8e\xf1\x26\xdc\xa4\x96\xd1\x0e\xac\x09\x88\x77\xdb\xdb\x68\xcb\xa9\x1a\xf6\xc6\x86\xd1\x2b\xc3\x84\xbb\x92\xb4\x9c\xc9\x7e\xc4\xbd\xf6\x78\x1e\xf7\xbc\x6c\xaf\x2d\xaa\x1f\x3f\xef\xe6\x84\x9a\x4e\xeb\xd4\x72\x97\x5d\x0d\x7d\x17\x9b\xd9\xfa\xab\xa5\x35\xd8\xf3\x25\xc6\x60\x08\x4d\x6f\x2d\x26\x3c\x65\x20\xf7\xd4\x6d\x64\xd4\x37\x42\x13\x20\x7f\xab\x57\xff\xc4\x54\xe8\x66\x15\xdd\xff\x57\xf8\x2c\xa9\x13\x95\xa7\x08\xa2\x3e\xd5\x37\x69\x27\xa4\xa3\x49\x19\x87\xb5\x2c\x1d\x51\xfa\xb9\x76\xbc\xb9\x2f\x45\x06\xff\x44\x4c\x4f\x03\x93\x1d\x77\xd5\xb2\xfc\xf0\xac\xf0\xa3\x73\xc2\x60\x44\xa0\x7a\x26\xb8\x46\xd1\x35\xfa\x27\x00\x00\xff\xff\x93\x07\x3d\xf0\x1a\x13\x00\x00" +var _universalcollectionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x58\x4b\x8f\x1b\x37\x0c\xbe\xfb\x57\x30\x3e\x04\xe3\xc5\xd6\x7b\x29\x7a\x30\xe2\xe6\xb5\x35\xb0\x40\xba\x0d\x12\xa7\x3d\x04\x41\x23\x8f\x68\x5b\x58\x59\x1a\x48\x1c\xbb\xc6\xd6\xff\xbd\xa0\x34\xef\xc7\x22\x49\x7d\xb1\x67\x24\x52\x7c\x7c\xfc\x44\xfa\xe6\x0a\x26\x57\x93\x2b\x58\xef\x95\x07\xe5\x41\x18\xc0\x7f\xc4\x21\xd3\x08\xa9\xd5\x1a\x53\x52\xd6\x00\xed\x05\x41\x2a\x0c\x78\xb2\x0e\x41\x98\x33\x58\x83\x40\xe7\x0c\xc1\x6e\xe1\x7e\xb5\x0e\x2a\x10\xde\xd6\x32\xca\x83\x43\x4f\x4e\xa5\x84\x12\xc8\x06\x89\xfb\xd5\x3a\x48\xcd\xcb\x23\x85\xd6\xf6\xe4\x41\xe2\x11\xb5\xcd\xd0\x79\xde\x79\x72\x8a\xe2\xde\xd4\x1a\x72\x22\x25\x0f\x27\x45\x7b\x9b\x13\xec\xc5\x51\x99\xdd\xe4\x8a\xf7\x09\xed\xcb\xcd\x42\x6b\xb6\x84\xda\x36\x6c\xac\xd2\xe8\x32\x2d\x88\xdd\x91\x78\x3d\xb9\x02\x1f\x14\xc0\x81\x9d\xd0\xca\xa0\x67\x39\x5e\x9c\x73\x20\x6e\x26\x13\x75\xc8\xac\x23\x98\xde\x5b\xb3\xca\xcd\x4e\x6d\x34\xae\xed\x03\x9a\x69\xb5\xf2\x3b\x92\x90\x82\xc4\x9f\x0a\x4f\xbe\x7e\xcd\x8f\x1f\xd0\x5b\x7d\x44\x37\x9d\x4c\x44\x9a\xa2\xf7\x89\xd0\x7a\x56\xf9\x01\x9f\x8c\x3a\xa2\xf3\x42\x37\xac\x7c\x9c\x4c\x00\x00\x6e\x6e\x6e\x42\x0c\xe9\x9c\xa9\x54\xe8\xa6\x1f\x0e\xbd\xcd\x5d\x8a\xd7\xb0\xc9\x29\x86\x9e\x33\x22\xcc\x99\x7f\x73\x62\x72\x8f\xa5\x92\xf0\xdd\x3c\xbc\x94\x6e\x68\x5c\x40\xd7\xbb\x79\xdf\xa0\xd2\x28\x3c\xa2\x3b\xd7\x96\x37\x81\xe1\xf3\x8c\x7d\xf7\x20\xc0\x2b\xb3\xd3\x11\x13\x2d\xe9\xd7\x5a\x83\xc4\xcc\x7a\xc5\xdb\x8c\x0c\x99\x94\x4e\x9c\x84\xf6\x70\xc8\x3d\xc1\x06\x63\xea\x94\x6f\x4b\x37\x7d\xd0\x48\xe5\x61\x28\xd7\x8c\xbb\x05\xf0\x57\xdb\x52\x0e\x5f\x26\x68\x0f\x4a\xa2\x21\xb5\x55\xe8\x46\xb5\xd5\x5b\x16\xf0\x91\x1c\x83\xaa\xa5\xeb\x56\x05\x17\x85\x3b\xc3\x41\x64\x19\x63\x86\x11\x79\x77\x1b\x20\xca\x40\x0b\xc5\x20\xf9\xad\xef\x9e\x52\xe6\x7b\x06\x47\xe1\xc0\x9e\x0c\x4a\xde\xb6\x80\x57\x8f\x9f\xee\x0c\xfd\xf2\xf3\x02\x1e\x7b\x19\xb8\x5f\xad\x2f\x97\x49\x57\x95\x47\xbd\x8d\x6a\xf8\x3c\xb1\xc3\xf7\x82\xf6\x6c\x72\xf5\x30\x2e\x91\xe5\x1b\xad\xd2\x28\xf0\xbe\xfa\xdd\x3b\x22\xc4\x64\x9b\x1b\xd8\x21\xdd\xaf\xd6\x35\x12\x6e\x0b\x90\x27\xb3\x05\xbc\x36\xe7\x8f\xe4\xf2\x94\xe0\xb1\x92\xe7\x8f\x43\xca\x9d\x81\x56\x4d\xcc\x7b\x5a\x92\x96\x0c\x7f\xc6\xbc\x49\x9a\x89\x61\x57\xe6\xf5\x8b\xd9\xb3\xeb\x9e\x9e\x61\x1f\x7f\x4c\x4b\xb3\x40\x18\x5d\x2f\x9e\x0f\xd4\x6b\xa3\x52\x7e\x4d\x66\x63\xaa\xde\x29\xf3\x10\x91\xfa\x3f\x54\xa5\x0e\x05\xe1\x6f\x87\x8c\xce\xf5\xce\x55\x6e\x0a\x13\x93\x6d\x6e\x38\x35\xaf\xfa\x58\xaa\xb7\x5f\x3a\xf9\xea\xe4\xed\xc5\x4f\x21\x3a\x83\x27\x25\xb3\x9e\xe4\xa5\xfd\xaa\x7e\xea\x03\xb7\x42\xd5\x88\xee\xef\xb4\xbb\xb2\xb7\xd0\xd7\x60\xb3\xa7\x92\x7d\x1d\x38\xa5\x78\xdd\x62\x90\x41\xdb\x95\x51\x04\x49\x9f\x1b\x0a\x35\x41\xae\x63\x58\xd0\x5c\x95\x38\x1b\xf8\x78\xe9\x6f\xa8\x55\xc2\x72\x88\x9e\xaa\x8d\x6d\x96\x5b\xb6\x29\xb1\xde\x55\x17\x0c\x2c\x47\xcb\xa7\x89\xf9\xbe\x8e\xba\x72\x60\x39\x56\x3a\x83\x1a\x2e\x6d\xa6\xdc\x21\x7d\x2c\x8d\xbe\x5f\xad\xd9\x6e\x5f\xa4\x8b\x2f\x06\xad\x3c\x15\x5d\x42\x70\xc6\xc7\xcb\x2b\xf0\xbd\xc3\x14\xb9\x2a\x02\x66\x32\xea\xf1\x68\xc0\xd0\x51\xe1\xa9\xa4\xa7\xde\x41\x8c\xa3\xc7\x58\x66\x6f\xac\xd5\x5d\xd4\xf4\xee\x0d\xdf\xd9\xbe\xec\x65\xab\xb5\xfb\x73\x3f\x27\x5f\x38\x29\x2e\xc7\x21\x74\xb6\x85\xc7\x02\xf6\xa1\x88\xcd\x69\x8f\xb4\x47\x07\xd6\x81\xb1\x14\xee\x94\x9d\x3a\xa2\x89\x8d\x15\x77\x47\x21\x2a\x28\x61\x73\x0e\xab\xf5\xcd\xfb\x74\xa0\x94\xef\xc6\x29\xa1\x8a\x89\x66\xd1\xf5\x4e\xa0\xd4\x36\x9e\xba\x5c\x0e\xc1\xb0\x4f\x21\x85\xc3\xbd\x40\x5c\x00\xb5\x7f\x42\x60\x2b\xb4\xef\x48\x8c\x85\xa9\x6c\x14\xc0\xe1\xc1\x1e\x31\x34\xa7\x0c\xa2\xad\xb3\x87\x4e\x38\x42\x63\x11\x37\x29\x2a\xef\xe7\x54\x68\xdd\x6f\x00\x7a\x94\xf3\x57\x79\xcc\xbf\xfd\xa6\xe8\x8f\x93\x41\x17\x59\xac\xb4\x26\x29\x7f\xdc\xdd\x2e\x20\x5e\xe6\xc3\x54\xc6\xd7\xf9\x00\x1a\x89\x17\x99\x25\xda\xbc\x31\x8f\x4e\x26\x0f\x78\x5e\x40\x7d\x44\x9b\x6e\x5f\xbe\x84\x4c\x18\x95\x26\xd3\xb7\x36\xd7\x32\xa0\xa6\x8a\x52\x11\x1d\x7e\x0e\xee\xb3\x7d\xd3\x79\x6a\x4d\x2a\xa8\x61\xf4\x9c\x6c\xa4\xb4\x64\x36\x2b\x57\xa7\x43\x31\x9d\xce\x66\x93\x61\x06\x0e\x2e\x8c\x65\xad\xe8\xf5\x80\xc4\x03\xa7\x2c\xd8\xc4\xd9\x11\x52\xb6\x92\x53\x9d\xe3\x41\x56\xad\x56\x4b\x53\x25\x15\xbd\x29\x25\x95\x04\xe1\x9c\x38\x8f\xde\x37\x85\x05\x49\x30\x73\x34\x35\x5d\x1a\x57\xdb\x21\xe0\x3f\x5b\xc6\x84\xcd\x77\x48\xa1\x8e\xba\x62\xfc\x29\x73\x22\x0c\x27\xa4\x0c\x40\x91\x8f\x62\x2a\xa9\x0b\x7b\x3a\xeb\xc0\xbf\xf5\xc8\x7e\x4b\x19\x44\x0c\x9e\x0a\xb4\x14\x9e\xd7\x71\x82\xd3\x5e\xa5\xfb\xaa\x30\x78\xd1\x6a\xc9\x93\x41\x0f\x6f\x56\xcb\xf5\x30\xe4\x3e\x47\xcf\x94\xfc\xc2\x6b\xed\xa4\xf2\x47\xf2\xf8\x66\xcf\x95\x86\x27\xf8\x9f\xbb\xe2\x8a\xf1\x4d\xcc\x4f\xe9\x79\xe8\x98\xc3\xb8\xe2\x10\x94\xf9\x2e\x22\x8b\xaa\x99\xe3\x3f\xc7\x52\xfb\x32\xdc\x15\x74\x6a\xe9\x01\xcf\xa3\xe4\xbb\x43\x7a\x87\x66\x47\xfb\x20\xeb\x4d\xe4\x5d\x93\x1f\x36\xcc\xc4\x5b\x50\x84\x07\xff\x03\x76\x46\xa5\x6c\xea\x9d\x19\xe9\x91\x3b\x56\xea\x20\x31\x66\xe7\x1b\xeb\x1c\x8f\xc6\x02\x1c\x6e\xd1\xa1\x49\x31\xcc\xbc\x11\x55\x3d\xfb\x18\xbf\x8a\xf8\xd2\xe0\x2b\xa5\x3d\x82\x59\x7e\x75\x52\x1e\xaf\xab\x24\x7d\x35\x4a\x7f\x7d\xda\xa7\x4d\x30\xe0\x7e\xb5\x4e\xfe\x06\x25\x1b\x5c\xf7\x7c\xb8\xa0\x5e\x0e\x3b\x9d\x3c\xef\xa0\x8e\xf1\x26\xfc\xa8\x96\xc1\xb6\xac\x0e\x48\x70\x3b\xd8\xe8\x8a\x51\x1b\xb6\xd6\xc5\x79\x2c\xc3\x94\x5b\x15\x59\x0c\x6a\xdf\xe2\x5e\x73\x66\x4f\x3a\x5e\x36\xd7\xe6\xe5\x8f\xef\x77\x73\x44\x4d\xab\x9f\x6a\xb8\xcb\xae\xc6\x66\x8c\xcd\x6c\xfc\xff\xd2\x98\xf6\xf9\x66\x63\x30\xc4\x4e\xb8\x12\x13\x81\x32\x90\x1b\xed\x26\x32\xaa\x1b\xa1\x0e\x50\xb8\xea\xcb\xbf\x67\x4a\x74\xb3\x8a\xf6\x9f\x2e\x7c\x96\x32\xa9\xce\x25\x82\xa8\x4e\x0d\x9d\xdb\x01\x69\x6f\x25\xe3\xb0\x92\xa5\x3d\xaa\x30\xec\x0e\x77\xfc\x85\x48\xef\xef\x89\xf1\x11\x61\xb4\x0d\x2f\xfb\x98\x6f\x1e\x20\xbe\x75\x78\xe8\xcd\x0d\x54\x0d\x0a\x97\xc9\x65\xf2\x5f\x00\x00\x00\xff\xff\xf9\xdf\x52\x51\x2e\x13\x00\x00" func universalcollectionCdcBytes() ([]byte, error) { return bindataRead( @@ -192,7 +171,7 @@ func universalcollectionCdc() (*asset, error) { } info := bindataFileInfo{name: "UniversalCollection.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x54, 0x9e, 0xd7, 0xc5, 0xe8, 0xf6, 0x17, 0xba, 0xb6, 0x7d, 0x30, 0xd8, 0x1d, 0x2f, 0xc9, 0x9, 0xdc, 0xcb, 0x66, 0x5, 0x32, 0xa2, 0xbb, 0x70, 0x5f, 0x2d, 0x82, 0x6a, 0x23, 0x56, 0x86, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x65, 0x83, 0x41, 0x49, 0x37, 0xcf, 0x2f, 0xad, 0x12, 0xcd, 0x3d, 0x53, 0x82, 0x30, 0x6f, 0x10, 0xd7, 0xfa, 0xfd, 0x63, 0x59, 0xf7, 0x87, 0x90, 0xf4, 0x97, 0x70, 0x21, 0x5e, 0x8c, 0x76}} return a, nil } @@ -310,7 +289,6 @@ var _bindata = map[string]func() (*asset, error){ "BasicNFT.cdc": basicnftCdc, "ExampleNFT.cdc": examplenftCdc, "MetadataViews.cdc": metadataviewsCdc, - "MultipleNFT.cdc": multiplenftCdc, "NonFungibleToken.cdc": nonfungibletokenCdc, "UniversalCollection.cdc": universalcollectionCdc, "ViewResolver.cdc": viewresolverCdc, @@ -363,7 +341,6 @@ var _bintree = &bintree{nil, map[string]*bintree{ "BasicNFT.cdc": {basicnftCdc, map[string]*bintree{}}, "ExampleNFT.cdc": {examplenftCdc, map[string]*bintree{}}, "MetadataViews.cdc": {metadataviewsCdc, map[string]*bintree{}}, - "MultipleNFT.cdc": {multiplenftCdc, map[string]*bintree{}}, "NonFungibleToken.cdc": {nonfungibletokenCdc, map[string]*bintree{}}, "UniversalCollection.cdc": {universalcollectionCdc, map[string]*bintree{}}, "ViewResolver.cdc": {viewresolverCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 24d906a5..d7580672 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -8,17 +8,17 @@ // ../../../scripts/get_contract_storage_path.cdc (481B) // ../../../scripts/get_nft_metadata.cdc (6.074kB) // ../../../scripts/get_nft_view.cdc (4.843kB) -// ../../../transactions/destroy_nft.cdc (1.227kB) +// ../../../transactions/destroy_nft.cdc (1.219kB) // ../../../transactions/mint_nft.cdc (2.792kB) // ../../../transactions/nft-forwarding/change_forwarder_recipient.cdc (1.298kB) // ../../../transactions/nft-forwarding/create_forwarder.cdc (1.594kB) -// ../../../transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.015kB) +// ../../../transactions/nft-forwarding/transfer_nft_to_receiver.cdc (2.041kB) // ../../../transactions/nft-forwarding/unlink_forwarder_link_collection.cdc (1.104kB) -// ../../../transactions/setup_account.cdc (1.239kB) +// ../../../transactions/setup_account.cdc (1.271kB) // ../../../transactions/setup_account_from_nft_reference.cdc (1.352kB) // ../../../transactions/setup_account_to_receive_royalty.cdc (1.471kB) // ../../../transactions/test/upgrade_nft_contract.cdc (172B) -// ../../../transactions/transfer_nft.cdc (2.16kB) +// ../../../transactions/transfer_nft.cdc (2.152kB) // ../../../transactions/unlink_collection.cdc (518B) package assets @@ -249,7 +249,7 @@ func scriptsGet_nft_viewCdc() (*asset, error) { return a, nil } -var _transactionsDestroy_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x53\x4d\x6f\x9c\x40\x0c\xbd\xf3\x2b\x5e\x39\xb4\x70\x28\x7b\xa9\x7a\x40\xf9\x68\x9b\xed\x4a\x7b\xe8\xaa\x8a\x68\x7a\x9e\x65\xcc\x32\xed\x64\x06\xcd\x98\x90\xa8\xca\x7f\xaf\x66\x81\x05\xb6\x51\x0e\xf5\x01\x90\xb1\x9f\xfd\x9e\xed\xd5\x6a\x85\xa2\x56\x1e\xec\x84\xf1\xa2\x64\x65\x0d\x3a\xc5\xb5\x74\xa2\xf3\x10\x06\xbb\x4d\x81\xca\xd9\x7b\x70\x4d\xf0\xea\x60\xc8\x79\x94\x56\x6b\xea\x83\x85\x91\x90\xe4\xd9\xd9\x27\x0f\xc5\x51\xa4\xee\x1b\xeb\x18\x3b\x6b\x36\xad\x39\xa8\xbd\xa6\xc2\xfe\x26\xd3\x83\xc4\xe7\xee\x78\x8c\xff\x46\x2c\xa4\x60\x71\xa7\xa8\xf3\x43\xf0\xc2\x77\x8a\xfc\xfa\x28\xee\x1b\x4d\xa7\xc6\xe2\xc9\x11\x47\xd1\x8c\x48\xa2\x64\x8e\x1f\x5b\xc3\x1f\x3f\xa4\xf8\x13\x45\x00\x10\x08\xdf\x52\x45\x8e\x4c\x49\xe0\x5a\x30\x3a\xa5\x35\xf6\x84\xd6\x93\x44\x65\xdd\x91\xa9\xed\x0c\xb9\x77\x73\xa6\xc7\x74\x4d\x3c\x73\xdd\x52\x95\x43\xb4\x5c\x27\xe7\xb4\xb2\x9f\x83\x86\x62\xaf\x29\xc5\xdb\xa9\xc5\xec\x66\x42\x3c\x42\x36\x8e\x1a\xe1\x28\xe9\xb5\x1d\xf0\xbe\x58\xe7\x6c\x77\x27\x74\x1b\xb2\x3f\x97\xa5\x6d\x0d\x07\x12\x18\x6c\xd9\xc8\x5a\xb0\xc8\x97\x12\x66\xbb\x4d\x71\xb3\x08\xc0\xe5\x4c\xba\xec\x40\xbc\xfc\x9d\x98\x8a\x8b\xa7\x86\x72\x84\xe7\xc5\xa7\x59\xec\x6e\x53\x5c\x25\x69\x7a\x2a\x1e\xec\xfa\x1a\x8d\x30\xaa\x4c\x66\xf2\x43\x2a\x09\x63\x19\x8e\xbc\xd5\x0f\x84\x7f\x7b\x78\x50\xd4\xc5\x13\xd2\x6a\x85\xfd\x91\x2a\x04\xdc\x34\x16\xfb\xda\x0c\x82\x79\xd2\x55\xb6\x18\x04\x2e\x87\xed\xcc\x3c\x5b\x27\x0e\x94\xf5\xc0\x17\xff\x3f\x9f\xab\x64\xc1\x38\x58\x58\xb8\xfc\x4c\xf8\xb1\xe0\x77\xc1\xf5\x22\x21\x9d\x89\x34\x8c\x10\xd2\x92\x3f\x4a\x14\x92\x28\x1c\x98\xdd\xff\xa2\x92\x21\xb8\xbf\xb0\x86\x4a\x55\x29\x92\x68\x04\xd7\x71\xda\xef\xc8\x73\xff\xa2\x47\x2a\x5b\xa6\x71\x97\x07\x01\xc7\x73\x3d\xe6\x2f\xce\xf5\x15\x01\xc3\xfe\x98\x8a\x71\xf1\xfe\x05\x2d\xb3\x11\x32\x19\x3f\xb6\xeb\x1c\x4a\xa6\x53\xdd\xe1\xe4\x03\xc6\xbc\xc3\xc6\x7a\x9e\x6d\xe9\x9b\x17\xb0\x0f\xc4\xdb\xb5\x4f\xd2\xac\xb4\x86\x85\x32\x3e\x51\x32\xcd\x11\x17\x43\xf7\xa1\xe4\x99\x14\xdb\x35\x7c\x6d\x5b\x2d\x51\x8b\x07\xc2\x9e\xc8\x40\x92\x26\x26\x19\x0f\xd5\x9f\xa3\xbf\x01\x00\x00\xff\xff\xe4\xba\x35\x8c\xcb\x04\x00\x00" +var _transactionsDestroy_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x53\x4f\x6f\x9c\x4e\x0c\xbd\xf3\x29\xde\x8f\x43\x7e\x70\x28\x7b\xa9\x7a\x40\xf9\xd3\x36\xdb\x95\xf6\xd0\x55\x15\xd1\xf4\x3c\xcb\x98\x65\xda\xc9\x0c\x9a\x31\x21\x51\x95\xef\x5e\xcd\x02\x0b\x6c\xa3\x1c\xea\x03\x20\x63\x3f\xfb\x3d\xdb\xab\xd5\x0a\x45\xad\x3c\xd8\x09\xe3\x45\xc9\xca\x1a\x74\x8a\x6b\xe9\x44\xe7\x21\x0c\x76\x9b\x02\x95\xb3\x0f\xe0\x9a\xe0\xd5\xc1\x90\xf3\x28\xad\xd6\xd4\x07\x0b\x23\x21\xc9\xb3\xb3\xcf\x1e\x8a\xa3\x48\x3d\x34\xd6\x31\x76\xd6\x6c\x5a\x73\x50\x7b\x4d\x85\xfd\x45\xa6\x07\x89\xcf\xdd\xf1\x18\xff\x95\x58\x48\xc1\xe2\x5e\x51\xe7\x87\xe0\x85\xef\x14\xf9\xe5\x49\x3c\x34\x9a\x4e\x8d\xc5\x93\x23\x8e\xa2\x19\x91\x44\xc9\x1c\xdf\xb7\x86\x3f\xbc\x4f\xf1\x3b\x8a\x00\x20\x10\xbe\xa3\x8a\x1c\x99\x92\xc0\xb5\x60\x74\x4a\x6b\xec\x09\xad\x27\x89\xca\xba\x23\x53\xdb\x19\x72\xff\xcf\x99\x1e\xd3\x35\xf1\xcc\x75\x47\x55\x0e\xd1\x72\x9d\x9c\xd3\xca\x7e\x0c\x1a\xa6\xb8\x98\xda\xcb\x6e\x27\xb4\x23\x5c\xe3\xa8\x11\x8e\x92\x5e\xd7\x01\xeb\xb3\x75\xce\x76\xf7\x42\xb7\x94\xe2\xe2\x53\x59\xda\xd6\x70\x20\x80\xc1\x96\x4d\xac\x05\x8b\x7c\x29\x5f\xb6\xdb\x14\xb7\x8b\x00\x5c\xcd\x64\xcb\x0e\xc4\xcb\xdf\x89\xa9\xb8\x78\x6e\x28\x47\x78\x5e\x7e\x9c\xc5\xee\x36\xc5\x75\x92\xa6\xa7\xe2\xc1\x6e\x6e\xd0\x08\xa3\xca\x64\x26\x3d\xa4\x92\x30\x96\xe1\xc8\x5b\xfd\x48\xf8\xbb\x87\x47\x45\x5d\x3c\x21\xad\x56\xd8\x1f\xa9\x42\xc0\x4d\x23\xb1\x6f\xe9\x1f\xcc\x93\xae\xb2\xc5\x10\x70\x35\x6c\x66\xe6\xd9\x3a\x71\xa0\xac\x07\xbe\xfc\xb7\xd9\x5c\x27\x0b\xb6\xc1\xc2\xa2\xe5\x67\xa2\x8f\xc5\xbe\x09\xae\x17\x09\xe9\x4c\xa0\x61\x7c\x90\x96\xfc\x51\x9e\x90\x44\xe1\xb0\xec\xfe\x27\x95\x0c\xc1\xfd\x65\x35\x54\xaa\x4a\x91\x44\x23\xb8\x8e\xd3\x7e\x3f\x5e\xfa\x17\x3d\x51\xd9\x32\x8d\x3b\x3c\x88\x37\x9e\xe9\x31\x7f\x71\xa6\x6f\x88\x17\x76\xc7\x54\x8c\xcb\x77\xaf\xe8\x98\x8d\x90\xc9\xf8\xb1\x5d\xe7\x50\x32\x9d\xea\x0e\xa7\x1e\x30\xe6\x1d\x36\xd6\xf3\x6c\x43\xff\x7b\x05\xfb\x40\xbc\x5d\xfb\x24\xcd\x4a\x6b\x58\x28\xe3\x13\x25\xd3\x1c\x71\x31\x74\x1f\x4a\x9e\x49\xb1\x5d\xc3\xd7\xb6\xd5\x12\xb5\x78\x24\xec\x89\x0c\x24\x69\x62\x92\xf1\x50\xfd\x25\xfa\x13\x00\x00\xff\xff\x00\x45\xac\xf8\xc3\x04\x00\x00" func transactionsDestroy_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -265,7 +265,7 @@ func transactionsDestroy_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/destroy_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x96, 0xc8, 0xed, 0x7e, 0x57, 0x59, 0xb4, 0xf6, 0xa0, 0x4, 0x9, 0x8e, 0xe2, 0xbe, 0x33, 0x72, 0xcb, 0x80, 0xf0, 0x20, 0x74, 0xf6, 0x7, 0xd3, 0x92, 0x16, 0x64, 0x6d, 0xa6, 0x92, 0x3e}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5e, 0x72, 0xba, 0xd2, 0x81, 0xc0, 0xb0, 0xab, 0xd8, 0x78, 0x63, 0x64, 0x5e, 0x6f, 0xc0, 0x9, 0x2, 0xc5, 0xcc, 0xb9, 0x65, 0xef, 0xb9, 0x93, 0x7c, 0xf8, 0xb4, 0x35, 0xc5, 0xf9, 0x8e, 0xa7}} return a, nil } @@ -329,7 +329,7 @@ func transactionsNftForwardingCreate_forwarderCdc() (*asset, error) { return a, nil } -var _transactionsNftForwardingTransfer_nft_to_receiverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x54\xc1\x6e\xdb\x38\x10\xbd\xeb\x2b\x66\x75\x48\x24\x60\x23\x5f\x16\x7b\x30\x9c\x04\xa9\x8d\x00\x39\xd4\x2d\x52\x37\x3d\xd3\xd4\xc8\x62\x2b\x93\x02\x39\xb2\x1b\x04\xf9\xf7\x82\x12\x45\x8b\x92\x93\xa0\x3a\x09\x43\xce\xcc\x9b\xf7\x1e\x47\xec\x6b\xa5\x09\xd6\x4a\xde\x37\x72\x27\xb6\x15\x6e\xd4\x2f\x94\x50\x68\xb5\x87\x78\x1c\x8e\x23\x77\xff\x49\xe0\xf1\x11\x8d\xaa\x0e\xa8\xdd\xdd\x61\xc8\xdf\xfb\x8c\xc4\x72\x46\xcc\x1e\x1a\x77\x31\x88\xc5\x51\x34\x9b\xcd\x60\x53\x0a\x03\xa4\x99\x34\x8c\x93\x50\x12\x84\x81\x42\xe9\x2e\x54\xa0\xd6\x42\xee\x80\x49\x58\xdf\x6f\xba\x2a\x4a\x22\x30\xce\x55\x23\x09\x48\x01\x95\x08\x1a\xb9\xa8\x05\x4a\xba\x34\xf0\x88\x1c\xc5\x01\xb5\x2d\x1e\x0d\xea\x26\x11\x00\x00\x57\x92\x34\xe3\x74\x97\xe7\x1a\x8d\x99\x83\xfb\xf9\x37\x38\x5d\xb3\x3d\xce\xe1\x1b\xd9\xde\xdd\x89\xef\x30\xca\x38\x0a\x2a\x73\xcd\x8e\x0f\xab\x39\x7c\x7f\x90\xf4\xff\x7f\x51\x0a\x2f\x51\x7b\x36\x9b\x81\xc6\x02\x35\x4a\x8e\x3d\xd2\xfe\x3e\xea\x4b\x03\x5c\x55\x15\xb6\xe0\xda\xfb\x15\x92\x3f\x7f\xc4\x62\x0e\xac\xa1\x32\xf9\xe1\x22\x6c\x5b\x61\x0a\x17\x2f\x63\x61\xb2\xa5\xaf\xf2\x3a\x6d\xab\x8a\xb6\x6d\x4f\x8a\x85\x91\x63\xad\x8c\xa0\x36\x6e\x49\x25\xe5\xbb\xbb\xa3\xb6\xf9\x99\x4e\x7d\x95\xd7\x6e\xbe\x5a\x63\xcd\x34\x26\x46\xec\x24\x6a\x07\xf7\x93\xd2\x5a\x1d\x9f\x58\xd5\x58\xb4\x77\x9d\x4e\x9e\x12\x87\x6f\x87\x5d\xfb\x13\x01\x60\x6d\xd1\xe9\xdb\xe3\xea\xc5\xf0\x89\x16\xa1\x2c\x68\xe9\xe2\x70\x6d\xeb\xb8\x0e\xc9\x48\xd8\x34\xeb\x03\x26\xdb\xb6\x90\x16\x17\x43\x9b\xde\x24\xb2\xd5\x78\xa8\x78\xea\x3b\xd9\xef\xf6\x16\x6a\x26\x05\x4f\xe2\xa5\x6a\xaa\x1c\xa4\x22\xe8\x2a\x85\x4f\x60\x22\x71\x5f\x32\x4e\x03\xe4\xa7\x59\x57\x76\xd4\xeb\xe1\x28\x99\xee\xaa\xd9\xc2\xc9\xe6\xb9\xc6\x45\xf0\x52\xb2\xf5\xfd\x66\x19\xa4\xdf\x24\x69\x0a\xcc\xc0\x07\xd7\x6e\x3f\x9c\xc8\x35\x86\x49\x2a\x1c\x04\x1e\xe3\x34\x90\xcd\x8d\xcf\xa6\x33\x77\x16\xb8\x34\x4e\xb8\xc0\xd6\xf6\x33\x58\x15\xd9\xc0\xdb\x70\xed\x52\x32\x43\x4a\xb3\x1d\xf6\x22\xfd\xb5\xe5\x6f\x92\x60\x46\xfb\x59\x17\xcd\x47\x7c\xf7\x7d\xbe\x32\x2a\x83\x84\x74\x40\x8b\xf3\x12\xe4\x0a\x4d\xcb\x8e\x4d\x42\xbb\x7c\xd4\xf6\x27\x72\x02\xd6\xd9\xd6\xd4\xc8\x45\x21\x30\x87\x9a\x51\xf9\x16\x49\x75\xb3\xad\x04\x9f\x72\x75\x76\x59\x05\x44\x9d\x9e\x61\xe8\x71\x9f\x99\x66\x9c\xd5\x6c\x2b\x2a\x41\x02\x4f\x06\x7f\xe7\xc5\x9e\xa1\x69\x44\x50\x07\xf7\x5d\x7e\x26\x0f\xe1\x8c\x13\xce\x4d\xe7\x5e\x82\x5b\x1b\xf8\x1b\x79\x43\x38\x5a\x09\xbd\x39\xfc\xf3\xf7\xbb\x40\x1d\xe5\xb9\x6d\x39\xd8\x08\xb0\xb8\x9a\x38\xcc\xff\x27\xc3\x15\x7d\xfa\x0f\x45\x5b\x8d\x76\xa2\x90\xe1\x30\x6f\xe9\xd3\xff\x26\x64\xe9\x9e\xc3\xe2\x4a\x16\x14\x4c\x5b\x2b\x43\xf0\xe2\xf3\xff\x99\xe0\xdc\x21\x3d\xac\x4c\xd2\x2d\x2c\x26\xa4\x19\x00\x4e\xe7\x10\x7f\xd1\x62\x27\x24\xab\x3a\x1e\xc0\x94\x5e\x84\x92\x1d\xd0\x23\x66\xf2\x79\xaf\x34\xc6\xae\xf7\x6b\xf4\x27\x00\x00\xff\xff\xf1\xef\xc9\x48\xdf\x07\x00\x00" +var _transactionsNftForwardingTransfer_nft_to_receiverCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x54\x4d\x6f\xdb\x38\x10\xbd\xeb\x57\xcc\xea\x90\x48\xc0\x46\xbe\x2c\xf6\x60\x38\x09\x52\x1b\x01\x72\xa8\x5b\xa4\x6e\x7a\xa6\xa9\x91\xc5\x56\x26\x05\x72\x64\x37\x08\xf2\xdf\x0b\x4a\x14\x2d\x4a\x4e\x72\xa8\x4e\x02\x39\x1f\x6f\xde\x7b\x1c\xb1\xaf\x95\x26\x58\x2b\x79\xdf\xc8\x9d\xd8\x56\xb8\x51\xbf\x50\x42\xa1\xd5\x1e\xe2\xf1\x71\x1c\xb9\xf8\x27\x81\xc7\x47\x34\xaa\x3a\xa0\x76\xb1\xc3\x23\x1f\xf7\x19\x89\xe5\x8c\x98\xbd\x34\x2e\x30\x38\x8b\xa3\x68\x36\x9b\xc1\xa6\x14\x06\x48\x33\x69\x18\x27\xa1\x24\x08\x03\x85\xd2\xdd\x51\x81\x5a\x0b\xb9\x03\x26\x61\x7d\xbf\xe9\xaa\x28\x89\xc0\x38\x57\x8d\x24\x20\x05\x54\x22\x68\xe4\xa2\x16\x28\xe9\xd2\xc0\x23\x72\x14\x07\xd4\xb6\x78\x34\xa8\x9b\x44\x00\x00\x5c\x49\xd2\x8c\xd3\x5d\x9e\x6b\x34\x66\x0e\xee\xe7\xdf\xe0\x76\xcd\xf6\x38\x87\x6f\x64\x7b\x77\x37\xbe\xc3\x28\xe3\x28\xa8\xcc\x35\x3b\x3e\xac\xe6\xf0\xfd\x41\xd2\xff\xff\x45\x29\xbc\x44\xed\xdd\x6c\x06\x1a\x0b\xd4\x28\x39\xf6\x48\xfb\x78\xd4\x97\x06\xb8\xaa\x2a\x6c\xc1\xb5\xf1\x15\x92\xbf\x7f\xc4\x62\x0e\xac\xa1\x32\x19\x0b\x91\xfd\x70\x21\x29\x5c\xbc\x4c\x2e\x97\xbe\xe4\xeb\x14\x83\x2a\x5a\x0c\x3d\x43\x16\x53\x8e\xb5\x32\x82\xda\x73\xcb\x30\x29\x0f\xc5\x5d\xb5\x48\xce\x74\xea\xab\xbc\x76\xc3\xd6\x1a\x6b\xa6\x31\x31\x62\x27\x51\x3b\xec\x9f\x94\xd6\xea\xf8\xc4\xaa\x06\x53\xb8\xb8\xeb\x44\xf3\xfc\x38\x7c\x3b\xec\xda\x9f\xd8\x00\xeb\x91\x4e\xec\x1e\x57\xaf\x8c\x4f\xb4\x08\x65\x41\x4b\x77\x0e\xd7\xb6\x8e\xeb\x90\x8c\x54\x4e\xb3\xfe\xc0\x64\xdb\x16\xd2\xe2\x62\xe8\xd9\x9b\x44\xb6\x82\x0f\xe5\x4f\x7d\x27\xfb\xdd\xde\x42\xcd\xa4\xe0\x49\xbc\x54\x4d\x95\x83\x54\x04\x5d\xa5\xf0\x3d\x4c\xf4\xee\x4b\xc6\x69\x80\xfc\x34\xeb\xca\x8e\x7a\x3d\x1c\x25\xd3\x5d\x35\x5b\x38\xd9\x3c\xd7\xb8\x08\x9e\x4d\xb6\xbe\xdf\x2c\x83\xf4\x9b\x24\x4d\x81\x19\xf8\x20\xec\xf6\xc3\x89\x5c\x63\x98\xa4\xc2\x41\xe0\x31\x4e\x03\xd9\xdc\xf8\x6c\x3a\x73\x67\x81\x4b\xe3\x84\x0b\x3c\x6e\x3f\x83\x55\x91\x0d\x8c\x0e\xd7\x2e\x25\x33\xa4\x34\xdb\x61\x2f\xd2\xdf\xf9\xff\x26\x09\x06\xb6\x9f\xb5\xd4\x7c\x44\x7e\xdf\xf4\x2b\xa3\x32\x48\x48\x07\x1c\x39\x63\x41\xae\xd0\xb4\x54\xd9\x24\xb4\x6b\x49\x6d\x7f\x22\x27\x60\x9d\x87\x4d\x8d\x5c\x14\x02\x73\xa8\x19\x95\x6f\x31\x56\x37\xdb\x4a\xf0\x29\x71\x67\xd7\x58\xc0\xda\xe9\x4d\x86\x86\xf7\x99\x69\xc6\x59\xcd\xb6\xa2\x12\x24\xf0\xe4\xf6\x77\x9e\xef\x19\x9a\x46\x04\x75\x70\xdf\xe5\x67\xf2\x2a\xce\xd8\xe2\xdc\x74\xee\x59\xb8\x1d\x82\xbf\x91\x37\x84\xa3\xfd\xd0\x3b\xc5\xef\x02\xbf\x18\xd4\x51\x9e\xdb\xa3\x83\xf5\x00\x8b\xab\x89\xdd\xfc\x7f\x32\x5c\xde\xa7\xff\x50\xb4\xd5\x68\x41\x0a\x19\x0e\xf3\x96\x3e\xfd\x6f\x42\x96\xee\x39\x2c\xae\x64\x41\xc1\xb4\xb5\x32\x04\x2f\x3e\xff\x9f\x09\xce\x1d\xd2\xc3\xca\x24\xdd\xf6\x62\x42\x9a\x01\xe0\x74\x0e\xf1\x17\x2d\x76\x42\xb2\xaa\xe3\x01\x4c\xe9\x45\x28\xd9\x01\x3d\x62\x26\x9f\xf7\x4a\x63\xec\x7a\xbf\x46\x7f\x02\x00\x00\xff\xff\xb8\x1e\x9a\x5c\xf9\x07\x00\x00" func transactionsNftForwardingTransfer_nft_to_receiverCdcBytes() ([]byte, error) { return bindataRead( @@ -345,7 +345,7 @@ func transactionsNftForwardingTransfer_nft_to_receiverCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/nft-forwarding/transfer_nft_to_receiver.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc1, 0xb4, 0x1c, 0xee, 0x7b, 0x2c, 0x0, 0xa7, 0xc9, 0x62, 0xfa, 0xf1, 0x33, 0x91, 0x20, 0xdf, 0xe4, 0x81, 0x5c, 0x97, 0x80, 0x5c, 0xdb, 0xc2, 0x86, 0x18, 0x77, 0xc3, 0x42, 0x8b, 0x11, 0x38}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xe1, 0x47, 0xea, 0x48, 0x15, 0xfc, 0x13, 0x2e, 0xe, 0xab, 0x4d, 0x46, 0x12, 0xfd, 0x1e, 0x6e, 0xab, 0xc1, 0xec, 0x2c, 0xa1, 0x1e, 0x40, 0x31, 0xc9, 0xd6, 0x8, 0x56, 0xf4, 0x59, 0x3c, 0x8a}} return a, nil } @@ -369,7 +369,7 @@ func transactionsNftForwardingUnlink_forwarder_link_collectionCdc() (*asset, err return a, nil } -var _transactionsSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x7c\x53\x4d\x6f\xda\x4c\x10\xbe\xfb\x57\x3c\x2f\x87\xc8\x48\x04\xee\x88\x24\x6f\x4b\x83\xd4\x43\x51\xd4\xb8\xb9\x0f\x66\x8c\x57\x5d\x76\x57\xbb\x63\x5c\x14\xe5\xbf\x57\xb6\x83\xbf\x42\xb3\x07\x1f\xe6\xf3\xf9\x18\x2f\x16\x0b\x24\xb9\x0a\x10\x4f\x26\x50\x2a\xca\x1a\xa8\x80\x32\x27\x01\x19\x50\x9a\xda\xc2\x08\x4a\x5b\xe8\x3d\x7c\x61\xa2\xaa\x43\x2c\x02\x0b\x94\x04\xd6\x19\x0a\x57\x05\x3c\xa7\xac\x4e\x8c\xed\x26\x09\x51\xa4\x8e\xce\x7a\xc1\x64\x6b\xcd\xa6\x30\x07\xb5\xd3\x9c\xd8\xdf\x6c\x26\x6d\xe6\xf1\x0f\x1d\x9d\xe6\xed\x26\xe9\x62\x3f\x58\x68\x4f\x42\x2f\x8a\xcb\x30\x89\xa2\x3e\xa8\xd7\x28\x02\x00\xe7\xd9\x91\xe7\x38\xa8\x83\x61\xbf\x04\x15\x92\xc7\x5f\xad\xf7\xb6\x7c\x21\x5d\xf0\x0c\xdf\x43\x28\xf8\x59\xac\xa7\x03\xaf\xc9\xd1\x4e\x69\x25\xe7\xb5\x35\xe2\xad\xd6\xec\x67\x78\x2a\x76\x5a\x85\xbc\x4b\xce\xf0\x4c\x27\x7e\xef\xff\x65\xdc\x38\x3f\xc5\xcd\x97\x46\x88\x29\x5e\x6b\x18\xd5\xd3\x2c\x48\xab\x91\x35\xc0\x6f\x24\xb4\xc4\x80\xc1\x7c\xbb\x49\xd6\x83\x02\xdc\xa1\xe3\x3d\x3f\xb0\x0c\xd3\xb1\xc9\x24\x39\x3b\x5e\xa2\xfa\xae\xfe\xef\xd5\x6e\x37\xc9\x7d\x3c\x9d\xb6\xcb\xab\xf7\xf0\x00\x47\x46\xa5\x71\x4f\x4c\xec\xd5\x1e\xc6\x0a\x3c\x07\xab\x1b\x3f\x46\x18\x4e\x8a\xcb\x49\x37\x69\xb1\xc0\x4f\x96\xc2\x1b\x30\x79\x7d\x86\xca\x20\x39\xb7\xce\x93\xf6\x4c\xfb\x33\x72\x0a\xa0\x1e\xdf\xb6\x5f\x65\x68\xcc\x98\x87\x46\xf4\xf9\xae\xb6\x63\x75\xd3\x83\xdf\x41\xb8\x8f\x33\x6f\x8f\xcb\x91\x72\x97\xde\x27\x92\x7c\x8a\xff\xee\x60\x94\xee\x49\x5d\x3d\x5f\x83\x6c\x43\x6f\x51\x9f\xc1\xda\x33\x09\x83\x60\xb8\x04\x1f\x9d\x9c\xaf\x41\x1d\x3a\x86\xd5\x6d\xdf\x8d\xb4\x1e\xf1\x58\xf5\x76\x68\xe3\xe9\x60\x4d\xa0\x13\x43\x49\x75\xef\x3d\x8d\xda\x8a\x91\x0e\x55\x75\xbc\xba\xed\x36\xce\x20\xf6\x53\xe6\x83\x65\xe9\x85\x53\x7d\x8f\x29\xd2\xf6\x1e\x91\x59\x5f\x03\xb8\xc2\xf1\x1d\x43\x5b\xac\x38\xcc\x8b\xcb\x49\xc7\xa3\xdd\xcd\xe4\x66\xf5\x75\x91\xd6\xe4\x70\x77\x75\xe8\x85\xa5\xaa\xfe\xb7\x7f\x9a\xfd\x19\xd9\xcf\x20\x7f\x04\xbc\x26\x37\x03\xc9\x07\xfd\xc6\x1c\xde\xa2\xb7\xe8\x6f\x00\x00\x00\xff\xff\x60\x98\x4c\xb9\xd7\x04\x00\x00" +var _transactionsSetup_accountCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x93\x4f\x6f\xda\x40\x10\xc5\xef\xfe\x14\xaf\x1c\x22\x23\x11\xb8\x23\x92\xb4\xa5\x41\xea\xa1\x28\x6a\xdc\xdc\x07\x33\xc6\xab\x2e\xbb\xab\xdd\x31\x2e\x8a\xf2\xdd\x2b\xdb\xc1\x36\x0e\x45\xdd\x83\x0f\xbb\xf3\xe7\xf7\xde\x8c\x67\xb3\x19\x92\x5c\x05\x88\x27\x13\x28\x15\x65\x0d\x54\x40\x99\x93\x80\x0c\x28\x4d\x6d\x61\x04\xa5\x2d\xf4\x16\xbe\x30\x51\x95\x21\x16\x81\x05\x4a\x02\xeb\x0c\x85\xab\x2e\x3c\xa7\xac\x0e\x8c\xf5\x2a\x09\x51\xa4\xf6\xce\x7a\xc1\x68\x6d\xcd\xaa\x30\x3b\xb5\xd1\x9c\xd8\xdf\x6c\x46\xed\xcb\xe3\x1f\xda\x3b\xcd\xeb\x55\xd2\xdd\xfd\x60\xa1\x2d\x09\xbd\x28\x2e\xc3\x28\x8a\xfa\x50\xaf\x51\x04\x00\xce\xb3\x23\xcf\x71\x50\x3b\xc3\x7e\x0e\x2a\x24\x8f\xbf\x5a\xef\x6d\xf9\x42\xba\xe0\x09\xbe\x87\x50\xf0\xb3\x58\x4f\x3b\x5e\x92\xa3\x8d\xd2\x4a\x8e\x4b\x6b\xc4\x5b\xad\xd9\x4f\xf0\x54\x6c\xb4\x0a\x79\xf7\x38\xc1\x33\x1d\xf8\x3d\xff\x97\x71\xc3\xf7\x31\x6e\xbe\x34\x46\x8c\xf1\x5a\x63\x54\x47\xb3\x20\xad\x4a\xd6\x80\xdf\x48\x68\x8e\x33\x05\xd3\xf5\x2a\x59\x9e\x05\xe0\x0e\x9d\xee\xe9\x8e\xe5\xfc\x39\x36\x99\x24\x47\xc7\x73\x54\xdf\xc5\xe7\x5e\xec\x7a\x95\xdc\xc7\xe3\x71\xdb\xbc\x3a\x0f\x0f\x70\x64\x54\x1a\xf7\xcc\xc4\x56\x6d\x61\xac\xc0\x73\xb0\xba\x99\xc7\x80\xe1\xa0\xb8\x1c\x75\x95\x66\x33\xfc\x64\x29\xbc\x01\x93\xd7\x47\xa8\x0c\x92\x73\x3b\x79\xd2\x9e\x69\x7b\x44\x4e\x01\xd4\xd3\xdb\xe6\xab\x0c\xcd\x30\xa6\xa1\x31\x7d\xba\xa9\xc7\xb1\xb8\xe9\xe1\x77\x08\xf7\x71\xe6\xed\x7e\x3e\x70\xee\x94\xfb\x44\x92\x8f\xf1\xe9\x0e\x46\xe9\x9e\xd5\xd5\xf1\x35\x64\x7b\xf5\x16\xf5\x15\x2c\x3d\x93\x30\x08\x86\x4b\xf0\xde\xc9\xf1\x12\xea\xf9\xc4\xb0\xb8\xed\x4f\x23\xad\x4b\x3c\x56\xb9\x1d\xed\x7f\x4c\xa4\x8f\x11\xe8\xc0\x50\x52\xfd\x0f\x3d\x0f\xdb\x88\x81\x4f\x55\x74\xbc\xb8\xed\x88\x26\x10\x7b\xd5\x99\xb3\x66\xe9\x49\x73\xbd\xaf\x29\xd2\x76\x5f\x91\x59\x5f\x03\x5c\xf0\xe0\x9d\xa1\x0d\x56\x1c\xa6\xc5\x69\xe5\xe3\x41\xef\xa6\x72\xd3\xfa\xb2\x89\x4b\x72\xb8\xbb\x58\xf4\xa4\x52\x55\xff\xe3\x3f\x97\xe1\x9a\xd8\x6b\xc8\x1f\x81\x97\xe4\x26\x20\xf9\xe0\xdf\x50\xc3\x5b\xf4\x16\xfd\x0d\x00\x00\xff\xff\x4b\x1f\xae\x7a\xf7\x04\x00\x00" func transactionsSetup_accountCdcBytes() ([]byte, error) { return bindataRead( @@ -385,7 +385,7 @@ func transactionsSetup_accountCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/setup_account.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0xbf, 0x7, 0xd, 0x14, 0x82, 0xb, 0x90, 0xa6, 0x68, 0xd2, 0x83, 0x4e, 0x31, 0xd0, 0x34, 0x62, 0x3c, 0x5c, 0x37, 0xc3, 0xb3, 0xf2, 0x9b, 0x38, 0xae, 0x17, 0x9f, 0xd9, 0xc0, 0x51, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3e, 0xe5, 0xa1, 0x7f, 0x9, 0x64, 0xfb, 0xd4, 0x8e, 0x6c, 0xf8, 0xc9, 0x3f, 0xa1, 0x78, 0xb0, 0x83, 0x79, 0x7e, 0xb6, 0xcb, 0x7c, 0x63, 0x59, 0xbd, 0xc9, 0xf0, 0x99, 0xbc, 0x40, 0x61, 0x61}} return a, nil } @@ -449,7 +449,7 @@ func transactionsTestUpgrade_nft_contractCdc() (*asset, error) { return a, nil } -var _transactionsTransfer_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x7c\x48\x24\x20\x51\x2e\x45\x0f\x86\xed\x20\x75\x1a\x20\x87\xba\x85\xeb\xa6\xe7\xb1\x34\x92\xd8\xca\xa4\x40\x8e\xed\x04\x41\xfe\xfb\x82\x92\x48\x51\x72\xb2\x59\x60\x75\x22\xc8\xf9\x78\xf3\x66\xe6\xe9\xf6\xf6\x16\xb6\xa5\x30\xc0\x1a\xa5\xc1\x94\x85\x92\x20\x0c\xe4\x4a\xb7\x57\x39\x69\x2d\x64\x01\x28\xe1\xf7\x17\xdc\xd7\x15\xad\x1f\xb7\x90\x6b\xb5\x07\x25\x09\x30\x4d\xd5\x41\x32\xb0\x02\x94\x8a\x4b\xd2\x93\x89\xd8\xd7\x4a\x33\x4c\x9f\x05\x9d\x36\x64\x54\x75\x24\x3d\xf5\xb7\x7f\x10\x63\x86\x8c\xf6\xd5\xf4\xd7\x6b\x25\x1f\x0f\xb2\x10\xbb\x8a\xb6\xea\x7f\x92\xfd\x4b\x9f\x76\x3a\x99\x04\x30\xa3\x54\x49\xd6\x98\xf2\x7d\x96\x69\x32\x66\x06\xdd\xe1\x1a\xdc\xcb\x1a\xf7\x34\x83\xbf\xd9\x56\x70\x0d\x9a\x52\x51\x0b\x92\x1c\x58\x9e\x04\x97\x99\xc6\xd3\xd3\xc3\x0c\xfe\x79\x92\xfc\xeb\x2f\x31\xbc\x4d\x26\x00\x00\x96\x9a\x0d\xe5\xa4\x49\xa6\x64\x0b\xe4\x92\xbc\x3d\xe9\x2b\x03\xa9\xaa\x2a\x6a\xb0\x34\x0e\x15\xb1\x7f\xdf\x50\x3e\x03\x3c\x70\x19\x8d\x0b\x4b\xfe\xed\x4c\x70\x57\x51\x0c\x97\x6f\x67\x06\x2b\x1f\xf6\xfd\x23\x24\x2a\x6f\x90\xf4\xc9\x2d\xb6\x8c\x6a\x65\x04\x37\x2f\xb6\x41\xac\x3c\x24\x4d\x29\x89\x23\xe9\x06\xd2\x07\xe9\x36\xdd\x7b\x97\xac\xd6\x54\xa3\xa6\xc8\x88\x42\x92\xee\x8a\xf8\x4d\x69\xad\x4e\xcf\x58\x1d\x2c\xe4\xfb\xb6\xe9\x9e\xa9\x16\x23\xec\x1a\x23\x0f\xc1\x35\x01\xd0\x40\x38\x0a\xa0\x5d\x29\xde\xd9\xc2\x3c\x86\x26\x0b\x28\x88\xbb\x34\xe3\x3e\xc7\x89\xbb\x30\x49\x9b\x72\x7e\x19\xc6\x5f\x46\xb2\x69\x7b\x38\x04\xb1\x4f\x65\xbf\xbb\x3b\xa8\x51\x8a\x34\x9a\xae\xd4\xa1\xca\x40\x2a\x76\xe0\x07\x40\x55\x0e\x85\x38\x92\x04\x1b\xb0\x9d\x79\x6c\x31\x4c\xe3\x41\xe5\xba\xf5\x08\x4a\xf7\xbd\xb1\xa3\xde\xba\x8e\x79\x19\x54\xdf\x7b\x3c\x58\x87\xc5\x80\x8e\xa4\x8b\x6f\xc1\x45\xdb\xd7\x9a\xe6\x83\x25\x4a\xd6\x8f\xdb\xd5\xc0\x7f\x19\xc5\x31\xa0\xb9\x80\x2f\xec\xee\x3e\xa1\x65\xc0\x42\xa6\xc8\x34\x14\xb9\x2a\xcf\xc2\x34\x60\x47\x94\x74\x7c\x62\xdf\x6d\xb7\x42\xed\x60\x5d\x99\x11\x53\xde\xd9\x50\x95\x27\xc1\x1e\xc1\xa2\x73\x49\x0c\x2b\x8d\x05\xb9\xae\xff\xfc\x7a\x2d\xa3\x01\x01\xf6\xb3\xad\x9a\x8d\xda\xe1\x12\xff\x85\x5c\x0e\x1c\xe2\x80\xb3\x6e\x5a\x7b\xba\xac\x13\x59\xdd\x54\xbb\xff\xc8\xae\x41\xbb\x9d\xa6\xa6\x54\xe4\x82\x32\xa8\x91\xcb\x11\x6b\x05\xb5\x46\x5e\xaa\x0c\xd4\x87\x5d\x25\x52\x2f\xb4\x6d\xb0\xc1\xec\x78\xe3\xe1\xda\xf8\xeb\x4f\x1a\xd3\x05\x3e\xeb\x8f\xd3\x8b\x33\x7d\x1b\x0b\xca\x0a\x6b\x58\xf4\xd9\x93\x14\x6b\xdc\x89\x4a\xb0\x20\x93\x14\xc4\xf3\xef\x89\xcd\x32\x1a\x71\xdc\xc2\xb1\x14\x7f\xbd\xac\x67\x34\x5d\x19\x70\x91\x61\xe5\x60\xbc\x86\xe4\x36\x53\x15\x48\x61\x8b\xdc\xd5\xd1\x8d\x54\xf4\xc3\x3a\xf1\x11\x6b\x1e\x8a\x0b\xec\xf2\x77\xca\x4a\x2f\x94\x1e\x98\x42\xd5\xb4\x74\xca\x9c\x61\x7e\x73\x36\xf6\xfe\x1c\x85\xff\xa8\xfe\x1c\x7f\x5a\x5a\xd2\xfd\x0c\x22\xb6\x94\xcf\x60\x7e\x23\x73\x1e\x42\xa9\x95\x61\x78\xf3\x11\x2e\xce\x92\x17\xc4\x4f\x0f\x26\x6a\xb5\x16\x85\x34\x01\x8a\x78\x06\xd3\x3f\xb5\x28\x84\xc4\x0a\xd4\x49\x92\x06\x53\x7a\x82\x4a\x0c\x84\x10\xe5\xeb\x5e\x69\x9a\x76\xb9\xdf\x27\xdf\x02\x00\x00\xff\xff\xf4\x9e\x65\xea\x70\x08\x00\x00" +var _transactionsTransfer_nftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xa4\x55\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x7c\x48\x24\x20\x51\x2e\x45\x0f\x86\xed\x20\x75\x1a\x20\x87\xba\x85\xeb\xa6\xe7\xb1\x34\x92\xd8\xca\xa4\x40\x8e\xed\x04\x41\xfe\xfb\x82\x92\x48\x51\x72\xb2\x59\x60\x7d\x12\x38\x5f\x6f\xde\xcc\x3c\xdf\xde\xde\xc2\xb6\x14\x06\x58\xa3\x34\x98\xb2\x50\x12\x84\x81\x5c\xe9\xf6\x29\x27\xad\x85\x2c\x00\x25\xfc\xfe\x82\xfb\xba\xa2\xf5\xe3\x16\x72\xad\xf6\xa0\x24\x01\xa6\xa9\x3a\x48\x06\x56\x80\x52\x71\x49\x7a\x32\x11\xfb\x5a\x69\x86\xe9\xb3\xa0\xd3\x86\x8c\xaa\x8e\xa4\xa7\xfe\xf5\x0f\x62\xcc\x90\xd1\x5a\x4d\xff\xbc\x56\xf2\xf1\x20\x0b\xb1\xab\x68\xab\xfe\x27\xd9\x5b\xfa\xb2\xd3\xc9\x24\x80\x19\xa5\x4a\xb2\xc6\x94\xef\xb3\x4c\x93\x31\x33\xe8\x3e\xae\xc1\x59\xd6\xb8\xa7\x19\xfc\xcd\xb6\x83\x6b\xd0\x94\x8a\x5a\x90\xe4\xc0\xf3\x24\xb8\xcc\x34\x9e\x9e\x1e\x66\xf0\xcf\x93\xe4\x5f\x7f\x89\xe1\x6d\x32\x01\x00\xb0\xd4\x6c\x28\x27\x4d\x32\x25\xdb\x20\x97\xe4\xfd\x49\x5f\x19\x48\x55\x55\x51\x83\xa5\x09\xa8\x88\xbd\x7d\x43\xf9\x0c\xf0\xc0\x65\x34\x6e\x2c\xf9\xb7\x73\x89\xe1\xf2\xed\xcc\xb8\xf2\x29\xdf\x3f\x42\xa1\xf2\x06\x45\x5f\xd8\xe2\xca\xa8\x56\x46\x70\x63\xb1\xc3\x61\xe5\xe1\x68\x4a\x49\x1c\x49\x37\x70\x3e\x28\xb7\xe9\xec\x5d\xb1\x5a\x53\x8d\x9a\x22\x23\x0a\x49\xba\x6b\xe0\x37\xa5\xb5\x3a\x3d\x63\x75\xa0\x18\x2e\xef\xdb\x81\x7b\x96\x5a\x8c\xb0\x6b\x9c\x3c\x04\x37\x00\x40\x03\xe1\x1a\x80\x76\xad\xf8\x60\x0b\xf3\x18\xba\x2c\xa0\x20\xee\xca\x8c\x67\x1c\x27\xee\xc1\x24\x6d\xc9\xf9\x65\x98\x7f\x19\xc9\x66\xe4\xe1\x02\xc4\xbe\x94\xfd\xdd\xdd\x41\x8d\x52\xa4\xd1\x74\xa5\x0e\x55\x06\x52\xb1\x03\x3f\x00\xaa\x72\x28\xc4\x91\x24\xd8\x84\xed\xbe\x63\x8b\x61\x1a\x0f\x3a\xd7\x6d\x44\xd0\xba\x9f\x8d\x5d\xf3\x36\x74\xcc\xcb\xa0\xfb\x3e\xe2\xc1\x06\x2c\x06\x74\x24\x5d\x7e\x0b\x2e\xda\xbe\xd6\x34\x1f\x1c\x50\xb2\x7e\xdc\xae\x06\xf1\xcb\x28\x8e\x01\xcd\x05\x7c\xe1\x77\xf7\x09\x2d\x03\x16\x32\x45\xa6\xa1\xc8\x75\x79\x96\xa6\x01\x3b\xa2\xa4\xe3\x13\xfb\x69\xbb\xf3\x69\x17\xeb\xca\x8c\x98\xf2\xc1\x86\xaa\x3c\x09\x6e\x08\x16\x5d\x48\x62\x58\x69\x2c\xc8\x4d\xfd\xe7\x4e\x6b\x19\x0d\x9a\xb7\x3f\x3b\xa6\xd9\x68\x14\xae\xe8\x5f\xc8\xe5\x20\x20\x0e\xf8\xea\x36\xb5\xa7\xca\x06\x91\xd5\x4b\xb5\xfb\x8f\xec\x09\xb4\x97\x69\x6a\x4a\x45\x2e\x28\x83\x1a\xb9\x1c\x31\x56\x50\xeb\xe4\x25\xca\x40\x7d\xd8\x55\x22\xf5\x02\xdb\x26\x1b\xec\x8d\x77\x1e\x9e\x8c\x7f\xfe\x64\x28\x5d\xe2\xb3\xd9\x38\xad\x38\xd3\xb5\xb1\x98\xac\xb0\x86\x45\x5f\x3d\x49\xb1\xc6\x9d\xa8\x04\x0b\x32\x49\x41\x3c\xff\x9e\xd0\x2c\xa3\x11\xc7\x2d\x1c\x4b\xf1\xd7\x87\x7a\x46\xd3\x95\x01\x97\x19\x56\x0e\xc6\x6b\x48\x6e\xb3\x51\x81\x0c\xb6\xc8\x5d\x1f\xdd\x3a\x45\x3f\xac\x11\x1f\xb1\xe6\xa1\xb8\xc4\xae\x7e\xa7\xaa\xf4\x42\xe9\x81\x29\x54\x4c\x4b\xa7\xcc\x19\xe6\x37\x67\x2b\xef\xbf\xa3\xf0\xbf\xa9\xff\x8e\x3f\x6d\x2d\xe9\xfe\x08\x22\xb6\x94\xcf\x60\x7e\x23\x73\x1e\x42\xa9\x95\x61\x78\xf3\x19\x2e\xce\x8a\x17\xc4\x4f\x0f\x26\x6a\x75\x16\x85\x34\x01\x8a\x78\x06\xd3\x3f\xb5\x28\x84\xc4\x0a\xd4\x49\x92\x06\x53\x7a\x82\x4a\x0c\x44\x10\xe5\xeb\x5e\x69\x9a\x76\xb5\xdf\x27\xdf\x02\x00\x00\xff\xff\x5a\x09\xf8\x19\x68\x08\x00\x00" func transactionsTransfer_nftCdcBytes() ([]byte, error) { return bindataRead( @@ -465,7 +465,7 @@ func transactionsTransfer_nftCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/transfer_nft.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4a, 0x15, 0x60, 0x65, 0x30, 0xe5, 0x57, 0x7c, 0xbf, 0xc6, 0xf2, 0x92, 0x5f, 0xc8, 0xe9, 0xb9, 0x3a, 0x47, 0x92, 0x51, 0x88, 0x23, 0x1d, 0xd9, 0xe8, 0x38, 0xae, 0xf4, 0x93, 0x6a, 0x6, 0x14}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x95, 0x3, 0xd3, 0xd3, 0xfe, 0x16, 0x76, 0x2a, 0x4e, 0x15, 0x62, 0x77, 0x5c, 0x87, 0xf3, 0xaa, 0x4c, 0x14, 0x80, 0xf9, 0xa3, 0x9b, 0x87, 0x46, 0xc4, 0xe9, 0xf1, 0x6f, 0xe2, 0xbc, 0xea, 0x21}} return a, nil } diff --git a/tests/example_nft_tests.cdc b/tests/example_nft_tests.cdc index 76cdb53e..11edcf5c 100644 --- a/tests/example_nft_tests.cdc +++ b/tests/example_nft_tests.cdc @@ -21,11 +21,10 @@ access(all) fun setup() { ) deploy("ViewResolver", admin, "../contracts/ViewResolver.cdc") - deploy("NonFungibleToken", admin, "../contracts/NonFungibleToken-v2.cdc") + deploy("NonFungibleToken", admin, "../contracts/NonFungibleToken.cdc") deploy("MetadataViews", admin, "../contracts/MetadataViews.cdc") - deploy("MultipleNFT", admin, "../contracts/MultipleNFT.cdc") deploy("UniversalCollection", admin, "../contracts/UniversalCollection.cdc") - deploy("ExampleNFT", admin, "../contracts/ExampleNFT-v2.cdc") + deploy("ExampleNFT", admin, "../contracts/ExampleNFT.cdc") } access(all) fun testContractInitializedEventEmitted() { diff --git a/tests/nft_forwarding_tests.cdc b/tests/nft_forwarding_tests.cdc index 2d89f147..c1db46b6 100644 --- a/tests/nft_forwarding_tests.cdc +++ b/tests/nft_forwarding_tests.cdc @@ -27,10 +27,9 @@ access(all) fun setup() { ) deploy("ViewResolver", admin, "../contracts/ViewResolver.cdc") - deploy("NonFungibleToken", admin, "../contracts/NonFungibleToken-v2.cdc") + deploy("NonFungibleToken", admin, "../contracts/NonFungibleToken.cdc") deploy("MetadataViews", admin, "../contracts/MetadataViews.cdc") - deploy("MultipleNFT", admin, "../contracts/MultipleNFT.cdc") - deploy("ExampleNFT", admin, "../contracts/ExampleNFT-v2.cdc") + deploy("ExampleNFT", admin, "../contracts/ExampleNFT.cdc") deploy("NFTForwarding", admin, "../contracts/utility/NFTForwarding.cdc") } diff --git a/tests/scripts/get_example_nft_views.cdc b/tests/scripts/get_example_nft_views.cdc index d6d750c9..aab85a71 100644 --- a/tests/scripts/get_example_nft_views.cdc +++ b/tests/scripts/get_example_nft_views.cdc @@ -5,5 +5,5 @@ import "ExampleNFT" import "MetadataViews" pub fun main(): [Type] { - return ExampleNFT.getViews() + return ExampleNFT.getContractViews(resourceType: nil) } diff --git a/transactions/destroy_nft.cdc b/transactions/destroy_nft.cdc index 02f5dd0e..d38a3be4 100644 --- a/transactions/destroy_nft.cdc +++ b/transactions/destroy_nft.cdc @@ -7,13 +7,13 @@ import ExampleNFT from "ExampleNFT" transaction(id: UInt64) { /// Reference that will be used for the owner's collection - let collectionRef: auth(NonFungibleToken.Withdrawable) &ExampleNFT.Collection + let collectionRef: auth(NonFungibleToken.Withdraw) &ExampleNFT.Collection prepare(signer: auth(BorrowValue) &Account) { let collectionData: MetadataViews.NFTCollectionData = ExampleNFT.getCollectionData(nftType: Type<@ExampleNFT.NFT>()) ?? panic("ExampleNFT did not resolve NFTCollectionData view") // borrow a reference to the owner's collection - self.collectionRef = signer.storage.borrow( + self.collectionRef = signer.storage.borrow( from: collectionData.storagePath ) ?? panic("Account does not store an object at the specified path") diff --git a/transactions/nft-forwarding/transfer_nft_to_receiver.cdc b/transactions/nft-forwarding/transfer_nft_to_receiver.cdc index ad9cec64..987f4fd8 100644 --- a/transactions/nft-forwarding/transfer_nft_to_receiver.cdc +++ b/transactions/nft-forwarding/transfer_nft_to_receiver.cdc @@ -12,7 +12,7 @@ transaction( ) { // reference to the withdrawer's collection - let withdrawRef: auth(Withdrawable) &{NonFungibleToken.Collection} + let withdrawRef: auth(NonFungibleToken.Withdraw) &{NonFungibleToken.Collection} // reference of the Receiver to deposit the NFT to let depositRef: &{NonFungibleToken.Receiver} @@ -25,7 +25,7 @@ transaction( ?? panic("Could not resolve NFTCollectionData view") // borrow a reference to the signer's NFT collection - self.withdrawRef = signer.storage.borrow( + self.withdrawRef = signer.storage.borrow( from: collectionData.storagePath ) ?? panic("Account does not store an object at the specified path") diff --git a/transactions/setup_account.cdc b/transactions/setup_account.cdc index 143b21bc..17519e1d 100644 --- a/transactions/setup_account.cdc +++ b/transactions/setup_account.cdc @@ -16,7 +16,7 @@ transaction { } // Create a new empty collection - let collection <- ExampleNFT.createEmptyCollection() + let collection <- ExampleNFT.createEmptyCollection(nftType: Type<@ExampleNFT.NFT>()) // save it to the account signer.storage.save(<-collection, to: collectionData.storagePath) diff --git a/transactions/transfer_nft.cdc b/transactions/transfer_nft.cdc index 1658e791..272afc09 100644 --- a/transactions/transfer_nft.cdc +++ b/transactions/transfer_nft.cdc @@ -8,7 +8,7 @@ import "ExampleNFT" transaction(contractAddress: Address, contractName: String, recipient: Address, withdrawID: UInt64) { /// Reference to the withdrawer's collection - let withdrawRef: auth(NonFungibleToken.Withdrawable) &{NonFungibleToken.Collection} + let withdrawRef: auth(NonFungibleToken.Withdraw) &{NonFungibleToken.Collection} /// Reference of the collection to deposit the NFT to let receiverRef: &{NonFungibleToken.Receiver} @@ -24,7 +24,7 @@ transaction(contractAddress: Address, contractName: String, recipient: Address, ?? panic("ViewResolver does not resolve NFTCollectionData view") // borrow a reference to the signer's NFT collection - self.withdrawRef = signer.storage.borrow( + self.withdrawRef = signer.storage.borrow( from: collectionData.storagePath ) ?? panic("Account does not store an object at the specified path")