diff --git a/contracts/NonFungibleToken.cdc b/contracts/NonFungibleToken.cdc index 8f5b0dc..91b4e1b 100644 --- a/contracts/NonFungibleToken.cdc +++ b/contracts/NonFungibleToken.cdc @@ -76,12 +76,12 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// If the collection is not in an account's storage, `from` will be `nil`. /// access(all) event Withdrawn(type: String, id: UInt64, uuid: UInt64, from: Address?, providerUUID: UInt64) - access(self) view fun emitWithdrawnEvent(type: String, id: UInt64, uuid: UInt64, from: Address?, providerUUID: UInt64): Bool { - if from != nil { - emit Withdrawn(type: type, id: id, uuid: uuid, from: from, providerUUID: providerUUID) - } - return true - } + // access(contract) view fun emitWithdrawnEvent(type: String, id: UInt64, uuid: UInt64, from: Address?, providerUUID: UInt64): Bool { + // if from != nil { + // emit Withdrawn(type: type, id: id, uuid: uuid, from: from, providerUUID: providerUUID) + // } + // return true + // } /// Event that emitted when a token is deposited to a collection. /// Indicates the type, id, uuid, the owner of the collection that it was deposited to, @@ -90,12 +90,12 @@ access(all) contract interface NonFungibleToken: ViewResolver { /// If the collection is not in an account's storage, `from`, will be `nil`. /// access(all) event Deposited(type: String, id: UInt64, uuid: UInt64, to: Address?, collectionUUID: UInt64) - access(self) view fun emitDepositedEvent(type: String, id: UInt64, uuid: UInt64, to: Address?, collectionUUID: UInt64): Bool { - if to != nil { - emit Deposited(type: type, id: id, uuid: uuid, to: to, collectionUUID: collectionUUID) - } - return true - } + // access(contract) view fun emitDepositedEvent(type: String, id: UInt64, uuid: UInt64, to: Address?, collectionUUID: UInt64): Bool { + // if to != nil { + // emit Deposited(type: type, id: id, uuid: uuid, to: to, collectionUUID: collectionUUID) + // } + // return true + // } /// Included for backwards-compatibility access(all) resource interface INFT: NFT {} @@ -156,7 +156,8 @@ access(all) contract interface NonFungibleToken: ViewResolver { access(Withdraw | Owner) fun withdraw(withdrawID: UInt64): @{NFT} { post { result.id == withdrawID: "The ID of the withdrawn token must be the same as the requested ID" - emitWithdrawnEvent(type: result.getType().identifier, id: result.id, uuid: result.uuid, from: self.owner?.address, providerUUID: self.uuid) + //emitWithdrawnEvent(type: result.getType().identifier, id: result.id, uuid: result.uuid, from: self.owner?.address, providerUUID: self.uuid) + emit Withdrawn(type: result.getType().identifier, id: result.id, uuid: result.uuid, from: self.owner?.address, providerUUID: self.uuid) } } } @@ -194,7 +195,8 @@ access(all) contract interface NonFungibleToken: ViewResolver { // because the `Collection` interface is almost always the final destination // of tokens and deposit emissions from custom receivers could be confusing // and hard to reconcile to event listeners - emitDepositedEvent(type: token.getType().identifier, id: token.id, uuid: token.uuid, to: self.owner?.address, collectionUUID: self.uuid) + //emitDepositedEvent(type: token.getType().identifier, id: token.id, uuid: token.uuid, to: self.owner?.address, collectionUUID: self.uuid) + emit Deposited(type: token.getType().identifier, id: token.id, uuid: token.uuid, to: self.owner?.address, collectionUUID: self.uuid) } } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 7ad65e5..4e2aa4e 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -3,7 +3,7 @@ // ../../../contracts/BasicNFT.cdc (5.438kB) // ../../../contracts/ExampleNFT.cdc (13.849kB) // ../../../contracts/MetadataViews.cdc (25.61kB) -// ../../../contracts/NonFungibleToken.cdc (10.979kB) +// ../../../contracts/NonFungibleToken.cdc (11.328kB) // ../../../contracts/UniversalCollection.cdc (4.91kB) // ../../../contracts/ViewResolver.cdc (2.718kB) @@ -135,7 +135,7 @@ func metadataviewsCdc() (*asset, error) { return a, nil } -var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x5a\x5f\x8f\xe3\xb6\x11\x7f\xf7\xa7\x98\x6c\x80\xde\x6e\xe0\xf3\xf6\xa1\xe8\x83\x81\xc3\xe5\x92\xcd\x16\x06\x8a\x4d\x71\xf1\x25\x0f\x45\x11\xd3\xd2\xd8\x66\x4f\x22\x75\x24\x65\xc7\xdd\xec\x77\x2f\x66\xf8\x47\x94\x2c\xef\x79\x93\xb4\xf7\x90\xac\x24\x72\x66\x38\xf3\x9b\xbf\xf4\xed\x57\x5f\x4d\x26\x5f\x7e\x09\xcb\x1d\xc2\x7d\xa5\x0f\xf0\xa0\xd5\xeb\xfb\x56\x6d\xe5\xba\x42\x58\xea\x8f\xa8\xc0\x3a\xa1\x4a\x61\x4a\x5e\xb8\x7a\xd0\x2a\x7e\xe7\xcf\x2b\x28\xb4\x72\x46\x14\x6e\x32\x21\x2a\x52\x39\x34\x1b\x51\x20\xb8\x9d\x70\x20\xaa\x6a\x8c\x66\xdc\x63\xc1\xee\x74\x5b\x95\xf4\x62\xa3\x4d\x0d\x4e\xcf\x26\x8b\x0d\x08\x68\x2d\x1a\x38\x08\xe5\x2c\x38\x0d\x25\x36\x95\x3e\x82\x00\x85\x07\x78\xb8\x5f\x26\x02\x53\x70\x3b\x94\x26\x3d\x47\x7a\xb2\x6e\x2a\xac\x51\x39\x16\xca\x1d\x1b\xb4\x50\xe2\x46\x2a\x2c\x61\x87\x06\xc3\x61\xee\x97\x2b\x30\x68\x75\x6b\x8a\x4c\x74\x7f\x92\x42\x1b\xec\x3e\x12\x09\x7f\x24\x83\x8d\x41\x8b\x24\x99\x50\x2c\x8c\x54\x24\x05\xd8\x5a\x18\x97\x24\x99\x79\x16\xdf\xea\xaa\xc2\xc2\x49\xad\x56\xf0\xfe\x0c\xa7\x8e\x09\xd1\xb7\x4e\x1b\xb4\x41\x05\xaf\x6c\x38\x6e\xa4\x32\x9b\x2c\x1c\x48\x55\x54\x6d\xc9\x8b\x36\x78\x80\x4d\xab\xf8\x1b\xab\x4a\x54\x64\x47\x92\x47\x1f\x14\x1a\x7a\x85\xc2\xca\xea\x38\xa9\xf5\x1e\xc1\x91\xfe\x2d\x89\x2c\x54\x09\xba\x75\xa0\x37\xbc\x3a\x67\xc1\x92\xff\xc3\xe8\xbd\x2c\xd1\xac\x78\xe5\xea\x3d\x16\x28\xf7\xf4\x78\xaa\x30\xcb\xe7\xb0\xf9\x1b\x28\xb1\xa8\x84\xc1\x4c\xb8\x83\x74\x3b\xb0\xba\x46\x68\x0c\x32\xd1\x46\x5b\x56\x58\x29\x79\xc5\x24\xe8\xf7\x53\x2b\x0d\xb2\x50\x9d\xf6\xe8\x1c\x1b\xcd\x67\x2b\xd0\x38\x21\x15\x28\x51\x4b\xb5\x65\x42\x6b\xdc\x89\xbd\xd4\x26\x81\xd5\xce\x58\xa4\x23\x90\x08\x16\x1b\x61\x84\x43\x58\x63\x21\x5a\x12\xd3\xc1\x56\xee\x59\xc8\x3d\x56\xba\x41\x63\x99\x9d\x58\xcb\x4a\xba\xa3\x47\x1c\x81\xa5\x93\xde\xcb\x56\x08\x45\x66\x01\xa1\x8e\x19\x22\x12\xd8\x98\x8a\xed\x2b\xe6\x9b\x23\xb4\x96\xe4\x8c\x6a\xb3\x2c\x71\xb7\x64\xca\x86\xb6\x64\x07\x32\x75\x1f\x45\x96\x59\x5a\x54\xe5\x84\x76\x19\x6f\x84\x68\xc5\x06\xd1\xbc\x76\xfa\x35\xfd\x7f\xca\xfa\x25\x83\x92\x2a\xd4\x96\x0e\xc1\x4c\xc8\x2b\x58\xf5\x02\x0a\x24\xaa\x15\x54\x58\x6e\xd1\x4c\x4e\x00\xbb\xd4\xcc\x2a\xe2\x9a\xd0\xa4\xb4\xdb\xa1\x61\x11\xa7\xc9\x2d\xd9\xc5\x2c\x1d\xfb\xc8\xa4\x4b\x23\x3c\xe4\x1e\xee\x97\x93\x8d\xd1\x75\xf0\xca\xce\x7c\xec\xa7\x0a\x0a\x8a\x07\xb4\xb0\xc4\x46\x5b\xe9\x92\x7e\x41\xab\x1e\xaf\x57\x76\xd2\xb7\x7d\xa1\x49\xc9\xce\xc3\xc2\x19\xa1\xec\x06\xcd\x6c\x32\xf9\xea\x76\x32\x91\x75\xa3\x8d\x83\x1f\x25\x1e\xc8\xc5\xaa\x3d\x1a\x60\x29\xae\xf2\x57\x57\x93\xc9\xed\xed\x2d\x87\xba\x9a\xe0\x93\x87\x91\x19\x7c\xcf\xac\xf3\x77\x04\xd8\xaa\xe2\x3d\x81\x01\xdb\x2d\xda\x9a\x05\xe9\xe1\xdd\x47\x17\x0e\x06\xd2\x76\x61\xf1\xf6\xf6\x76\x22\x8a\x02\xad\xbd\x16\x55\x75\xd3\x85\xaa\x2e\x54\x0e\x83\xea\xbc\x7f\x96\xc7\xc9\x04\x00\x80\x24\x79\xa7\x00\x95\x93\x2e\xc8\xb0\xd1\xc6\x3b\x3c\x1b\x7c\x87\xc9\x1a\xa2\x62\xbf\xf6\x30\x61\x5d\x08\xf8\x51\xb4\x95\x63\x4a\xb9\x38\x39\xb9\x9f\xc2\xee\xcb\xf8\xb5\x4d\x29\x5c\x80\xb3\xff\x1b\x70\xcf\x5e\xc0\xcb\x58\xc3\xcf\xb2\xfb\xc0\x9b\x3a\x66\x43\x4e\x21\x80\x91\x8b\x6d\x0d\xa7\x82\x28\x20\xf3\x0c\xdb\x9f\xe3\xf0\x3d\x51\xe8\x18\x7c\xb7\xf7\x86\x13\xee\x34\x03\x61\x2d\x1d\x1c\x08\xa4\xa4\xc7\x1a\x9d\x28\x85\x13\xa4\xc5\x18\xe5\x6d\x38\x65\x99\xe8\x2d\x7c\x44\xd0\xaa\x3a\xc2\x1a\x99\x84\xc3\x12\xd6\x47\x06\x7a\xb4\xc9\x8a\xde\x3f\xdc\x2f\xbd\xbc\xe5\x2a\x81\x3e\xd1\xf1\xee\xa9\x60\xc5\x4b\xc4\xba\xc2\x55\x3c\x06\xf9\xfc\x06\x0d\x2a\x4a\x0f\x3a\x3a\x99\x3f\xc3\x41\x9c\x8a\x44\xf0\xce\x35\xd0\x98\x60\x13\xdb\x88\xba\xa6\x38\xc3\x68\xe8\xe4\x93\xe1\x4d\xe7\x7b\xf6\x55\x96\x0c\x6c\xa2\x1c\x83\x27\x9f\xb6\xd0\xa5\x07\x1b\x25\x92\x6c\x39\xe8\x60\xb0\x9d\x20\x96\x58\x48\x51\x75\x47\xf1\x66\x4a\x14\xc3\x79\x32\x66\xa4\xf7\x9d\x2e\xbd\xeb\x91\x4a\x49\x17\xb4\x6e\x8b\xde\xe1\x4e\xb5\x92\xa8\xf5\x55\xc0\x96\xae\xc5\x47\xb4\x14\xed\xad\xf6\x52\xb9\x9d\x34\xe5\xeb\x46\x18\x77\x04\xa9\x4a\xfc\x85\x14\x42\x26\xac\xb5\x92\x8e\x65\x8f\x20\x4e\xe4\x08\x6a\x9f\x5a\x34\x47\xfe\x18\xf4\xdd\x01\x24\x86\x3b\x8f\xd6\xbe\xee\x66\x91\xc8\x29\x48\xf7\x9d\x03\x94\xd7\x94\x4a\xe6\xf0\x83\x33\x52\x6d\xa7\x20\xcb\x39\x7c\x58\x28\xf7\xd7\xbf\x4c\xa1\x6d\xf3\x27\x66\x31\x87\x77\x65\x69\xd0\xda\xb7\x37\x27\x64\xf7\xd2\x97\x03\xd0\x87\xdc\xf5\xcf\xa0\x36\xee\x3d\x6e\xe6\x20\x5a\xb7\xbb\xf6\xaf\xe1\x57\xef\x1f\x37\xf0\xa7\xc7\x61\x04\x9a\x3d\xdc\x2f\x9f\x3c\xfd\x47\xfe\x2f\xfd\x63\x17\xe9\xcb\xec\xc9\xce\xb6\xe8\x96\xc7\x06\xaf\x6f\x66\xb2\x24\x13\x6d\x24\xa5\x0b\x12\x3d\x2c\x90\x65\x3c\x4b\x78\x41\x0f\xe9\x40\xe1\x1d\x3f\xbd\x9d\x09\x7f\x3c\xcf\xfd\x69\x32\xea\xbe\xd2\x26\x6f\x63\x9f\x15\x3e\xd6\xd1\xfb\x18\x02\xd5\x34\x6d\x94\xaa\x94\x85\x70\xd1\x21\x49\x74\x92\xce\x8b\x34\xcd\x8a\xa5\x93\x5a\x28\x70\xf3\xbe\x96\x28\xb3\xd1\xa7\x3d\x84\xd0\xb6\x0f\x1f\x16\x77\x91\x44\x57\x24\x8d\xee\x85\xd6\xb6\xa2\xaa\x8e\x3d\xe7\xe9\xc3\x85\x03\xcc\x89\x3c\xd2\x82\xd2\xce\xd7\x6f\x64\x7a\xdd\x2a\xf7\xca\x72\xd1\x28\xb6\x38\x85\x15\x91\x5f\x25\xff\x59\x29\x59\xad\x3e\x07\xc3\x18\x55\xd5\xc5\x40\x24\x26\x1d\x0e\xa7\xd0\x84\x5a\x91\x34\x10\x57\xf5\xd0\x69\xb1\xda\x0c\xe0\x99\xb8\xb2\x59\xff\x58\xd6\x73\xf8\x46\xeb\x2a\x83\xae\xdc\x78\x47\xfd\xe2\x0d\x28\x99\x7f\x48\xb8\x1e\x2a\x21\x82\x64\x0e\x1d\x76\x3d\x5c\xbc\x04\xde\x8c\x7d\xee\xf9\xd3\x4d\x62\xf1\x94\xfe\x32\xe8\x5a\xa3\xc0\x99\x16\x23\xb8\x47\xb0\x7d\x0e\xd8\xa1\x66\xc2\x92\x0b\xb3\x31\xdc\xc0\xc2\x03\x1d\xed\xef\xc2\x79\xce\xe8\x79\x94\xe7\xc0\x3c\xdd\xfb\x87\xc1\x79\xfa\x32\x3c\xdf\x45\x19\x2e\x06\x95\xd3\x39\xa4\x3a\xf9\x5e\x82\xe7\xc4\xf5\x65\x78\xbe\x88\xf5\x18\x9e\x9d\x7e\x06\xcd\x43\x15\x9c\x47\x33\xf1\x77\xfa\x94\x73\xff\xf9\x85\x68\x5e\xf8\x06\xb5\xe4\x32\x6e\x2d\x8a\x8f\x07\xea\xc9\x5e\x53\x11\x2f\x9c\xf4\x5d\xd6\x89\xf1\x4e\xfb\x4a\x58\x3c\xdc\x2f\xe7\x5c\xf0\x3c\xf6\xa8\xf7\x66\x0c\xa1\x26\xb2\x50\xb7\xbe\x9d\x0c\x93\x84\xb3\x28\x19\x61\xc4\x7c\xf2\xa2\x7b\x36\xac\xbe\x23\xf3\x56\xc9\x4f\x2d\xc2\xe2\x8e\xcf\x16\x9b\x9e\xb8\x22\x67\x53\xa1\xcb\xec\xde\xa7\x32\x9e\xca\x44\xeb\x74\x2d\x9c\x2c\x38\x35\xe0\x9e\x8b\x0e\x59\x23\x88\x4c\x66\xf2\x31\xeb\x8c\x3e\x86\xaa\x2f\x2f\x7b\xb8\x27\x95\xac\x00\x11\xfd\x4b\x46\x5b\xc8\x41\x69\xeb\x9d\xc5\x6a\x72\xdd\xe0\x87\x0a\x91\x56\x0a\x1e\x6d\x08\xb3\x6d\x79\x84\x32\x76\x38\xbf\x39\x4e\x34\xee\xa2\x44\xd7\xdd\x81\xe1\x0d\x90\x97\x64\xa9\xbf\xff\x9e\xde\xdd\xf4\xb5\x52\x18\x14\x0e\xbf\xab\x1b\x77\xcc\xba\x3f\xff\x96\x45\x42\xfa\xd4\x9b\x0a\x04\x0d\xc6\x3a\x91\x87\x27\x27\x56\x89\xe1\xcb\x23\x96\x2b\xc2\x58\x7b\x8a\xaa\x42\x93\xd5\x87\x78\xf4\x25\xfd\x81\x8b\x7e\xdb\x23\xf1\x75\x40\xfc\xbb\x4e\x94\x61\x04\xe5\x6e\x3d\xc8\x20\xed\x59\x68\x50\xcc\x18\x3d\xec\xf5\xcd\x1c\xbe\x7e\xec\x9e\x9f\x06\xce\xcd\x13\x93\xfe\x2b\xef\x8a\xb6\xad\x1c\x95\x61\x7f\x47\xb5\x75\xbb\xeb\x1b\x78\xf3\x06\xfe\x3c\x87\x2b\x9e\x64\x31\xa7\x32\x17\x96\x5d\x85\x5b\x96\xc6\x1d\xbf\xb8\xea\x11\x7c\xca\x7c\xbd\x77\xfe\xbf\xa1\xb3\x10\x3b\x78\xf6\xb8\x58\x54\xfb\x29\x55\x29\x0d\x16\xae\x3a\x92\xf6\xce\x69\xae\x94\x2c\x80\x30\x47\x6e\xad\xaa\x0a\x6c\xbb\x7e\xb8\x5f\xfe\x00\x1f\xf1\xe8\x7b\x27\x02\xf1\xa8\xd6\x52\xb8\xdd\xa2\x7b\xb7\x17\xb2\x22\xab\xff\xe0\xb7\x93\xe2\x1e\x97\x1c\xeb\x3c\xcc\x86\x9a\x0b\x12\x3c\x3e\x77\x3a\xf6\xb3\xac\xdb\x8a\x73\x90\xde\x29\x4f\x0e\xf7\x8d\xa6\xee\x2d\x38\x8b\xe5\x89\x93\x6e\xf8\x90\x55\x7f\x20\x17\x66\x2a\xc5\x4e\x6b\x8b\x3d\x12\x3b\x7d\x20\x50\x46\x7c\xda\x76\xed\xf5\x5b\x62\x83\xaa\xa4\xba\x55\x2b\x38\xf0\x40\xb5\xc7\x27\x14\x1c\xfd\x40\x70\xaf\x0d\xe0\x2f\xa2\x6e\x2a\x0a\xf9\x1b\x58\x91\x42\x57\xdc\x91\x09\xd8\x8b\xaa\xc5\x29\xac\x5b\x07\x2b\x59\xae\xa0\xd4\x68\xd5\x2b\x3f\x47\x65\x01\xfb\x0e\x29\x54\x10\x17\x0e\x3b\x59\xec\xbc\x02\x36\x41\x23\x3c\x00\xd3\x51\xb3\x92\x93\xbb\xe1\x08\x25\xe0\xaa\xc4\x8d\x68\x2b\x77\xd5\xa3\xb7\xd8\xc0\xda\x6b\x2b\xa4\xf2\x30\x17\xea\xc0\xc4\xdd\xa5\xf7\x20\x01\x56\xaa\x6d\xe5\xc5\x22\x49\xfe\x4d\xa0\xf5\xdc\x7a\x54\x69\xe3\x0c\x96\x64\xa0\x1d\x56\x8d\x0d\x5e\x6d\xe1\xb0\xd3\xc4\x4a\xbd\x72\x60\x5b\x83\x5e\x83\x2e\x8e\x05\x2b\xad\x3f\x92\x6a\x29\x8e\xe7\xf4\xfa\xc8\x6d\x84\x11\x35\xf8\x2c\x4a\xce\x44\x18\x8b\xe5\x4f\x89\x56\x1a\x2c\x4f\x62\x4d\xd8\x44\x31\x8f\x67\xe2\x65\xdc\x10\x10\xb0\xd6\xc6\xe8\xc3\x79\x9e\xc9\x5b\xac\x33\x6d\xe1\x5a\x1e\x44\x87\xa9\x73\x6c\x62\x0c\x7e\x6a\xd1\x92\x5b\x93\x5b\xcc\xce\x86\x99\x2d\x3a\xef\x22\xa1\x12\x58\xa6\x4a\x20\xd4\x16\x30\x3f\xd7\xff\xbd\x1d\x77\x21\x25\xab\x41\x35\x30\x9e\x9b\x35\xd4\x58\x4a\x6a\x34\xbb\xa9\x54\x1a\x46\xc5\x7c\x96\x77\x42\x5d\xd8\x7b\x49\xea\x8e\x73\xea\x7e\xa2\x86\x9f\x30\x8c\x74\xe2\xc8\x28\xce\xa6\x62\xbf\x1e\x8b\xf5\x8c\x54\x1c\x71\x50\x0d\x41\x71\x4a\x6d\xd3\xf6\x9c\x74\xa0\x14\x90\x25\x78\xd6\xb7\xf1\x43\x5e\xa7\x43\x66\xac\xa4\x75\xa8\x08\x84\xe1\x7b\x15\x08\xc6\xc9\x67\x98\x32\xf4\x0c\x9f\x64\x35\x58\xeb\x3d\xa6\x0b\x86\x24\x73\x16\xc1\x29\x9f\xf9\x45\xc3\x6c\xd6\xf7\x38\xc7\x2e\xce\xd9\x9d\xe7\x31\x9b\x23\x35\x16\x3c\xec\xa1\x2d\x8b\x3b\xf2\x57\x5f\xd3\x1b\x5a\x35\x06\xe4\x28\x17\xd5\x85\xa3\x80\x4e\x82\x8f\x48\x3a\x44\x66\x9a\xe1\xa5\xf1\x03\xc1\x34\x52\xb8\xce\x79\xa5\xea\xf7\xeb\x47\xc2\xe3\x8b\x72\xa1\x2c\x29\x05\xe6\xd4\x38\x17\x76\xbd\x4b\xd7\x91\xfb\x0e\x2b\xa6\x44\xbe\xca\x11\x54\x74\xd9\x81\xa3\x2d\xee\xae\x4e\xb8\x9d\xed\x64\xbb\x94\x7c\x66\x32\x92\xe4\x8c\xe5\x51\x78\x91\x37\x99\x5c\x28\xf5\xc7\x22\xc3\x9e\x33\xab\xa5\x72\xb9\x9e\x5e\xe8\xa2\x01\x96\x36\x42\xe9\xb7\xf9\x62\xbc\x24\x1a\x16\xcd\x11\xf4\x8e\x07\x72\x01\xd5\xfd\x2a\x93\x01\x2d\xca\x32\xc7\xf3\xb7\xa7\x20\xca\x63\xb2\x1f\x95\x2f\x3b\x18\x06\x36\x67\x63\x61\xf8\x7e\x1d\x76\x7a\x54\x0d\x6a\x50\x8e\x97\x4d\xa3\x8d\xc3\xf2\xe1\x7e\xb9\xe4\xab\xc3\x98\x98\x05\xfb\x75\xbc\xaa\xf1\xd7\x8a\x5d\x75\x60\xe2\xe9\x89\x6f\xe3\x2e\x2b\x81\x3c\x91\x5a\x34\x8d\x6f\xec\xd7\x5a\x57\x28\xf8\x8a\x2e\x0d\xad\x38\xb5\xca\x3e\xbd\x0e\xee\x85\xa4\x4e\x01\xac\x97\x9a\xf4\xf7\xd9\xea\xe9\xe4\x84\x59\xf9\x44\x9d\xe6\xa0\x34\x7a\x1f\x8e\x1f\x03\x87\x8f\x14\x6c\xa2\xad\xdc\xa3\x0a\x7d\x87\x0d\x07\x0f\x65\xdc\x78\x14\xe0\x5b\x85\xd1\xba\xd9\x6f\xee\xee\xd6\xc2\x60\x3e\xcb\xfa\xdc\x6b\x12\xed\x50\x5c\x9c\xcf\xd4\xef\x54\xb2\xd0\x19\x2b\x04\x3d\x8f\xa8\xb9\xb3\x23\x49\x15\xf4\x3b\xcc\xf7\x17\x54\xa9\xd2\x0e\xd5\x9c\xa5\xe0\xd0\xd2\x0f\x7d\xf3\xbd\xbf\xfc\x4c\x57\x20\x5e\x89\xaa\x30\xe8\x06\x97\xd1\xf9\x14\x7d\x8d\xf1\xba\x35\x75\x79\xe9\x9e\x8a\x0e\x96\xee\xa2\x5e\xe0\xca\x9d\xef\xcd\x53\x8a\x9d\x5e\xea\xe0\xe7\xfc\x3b\xdc\x6d\x4b\x17\xc5\x3c\x03\x90\xcf\x79\x38\xc9\x39\xbc\x3c\x78\x81\xd7\x8f\x0e\xbb\x87\xd9\xc5\xe0\x48\x72\xc9\x0a\x8b\xfc\x1a\xd3\xe7\xfc\x70\xa6\xde\x9d\x7f\x77\xd5\x3f\x42\x2a\xd6\x1b\xe7\x77\xb1\x53\x55\x35\x65\x3a\x51\x1d\xc4\xd1\xa7\xa4\x8d\xa4\xde\xa2\x44\xeb\xa4\x12\xbd\xb3\x67\xc4\xbb\xfb\x3f\xd2\x7c\x92\xb4\x96\xd6\xf2\x55\x8b\xbf\x07\x6a\xad\xd3\x75\x42\x3c\x95\x2a\xe4\x73\x6b\xec\x6a\x9a\x31\xda\x44\x71\x27\x4c\xe9\xcb\x7f\x02\xa8\xf4\xfd\xf7\xa0\xf8\x19\x4d\x97\xa3\x83\x32\x16\xf5\x99\x6c\xe9\xbf\x77\xc9\xd2\x3f\x77\x23\xac\xd1\x4c\x39\x9c\x69\x5d\x90\x2b\x4f\x1b\x5e\xfe\x61\x40\xad\x5b\x15\xe3\xbe\x1f\x4f\x76\xae\x76\x0e\xc3\x31\xd4\x28\x36\xe7\x96\x2b\xcd\xde\x3d\x84\x95\xff\xc1\xd3\x49\xea\x67\x83\x77\x6c\xf1\xe7\x94\xc9\xc7\x3a\xf4\x94\xa4\x62\xaf\xbe\xb8\xb3\x97\x0b\x2b\x8c\x11\xc7\x98\xe2\x9e\xdf\x79\x4e\xc2\xc5\x1d\x27\x94\x7f\xfa\xfa\xed\x5f\x30\x19\xf4\xcb\xd4\xfd\xd8\x33\xcd\xf6\x45\xba\x5d\x74\xd5\x27\xdf\x9d\xb2\x36\xb9\xba\x95\x5c\xa7\x65\x73\xe5\x3e\x95\xe9\xa0\x71\xec\x7e\xe1\x11\xd3\x4d\x50\x04\x77\xa7\x8c\x73\xa2\xd3\x08\x25\x8b\xd9\xe7\x9a\xc4\xd8\xef\xc5\x34\xa1\x36\x8e\x4a\xe5\x13\x21\xb2\xa6\x39\xea\xa0\x40\x0a\xf7\xb3\x73\x36\x49\xf3\x84\xb1\xcb\xe0\xe7\xcd\xe1\x7b\x4d\xea\xff\x7e\xce\xbb\xbe\x8b\x9b\xbe\x33\x55\xf6\xb5\xaf\x56\xa9\xc6\x56\xb2\xba\x81\x5f\x7f\x8d\xaf\xde\x86\xd2\x5b\x96\x37\x73\x38\xd9\x47\xff\xae\xbe\x15\x8a\xb4\xea\x45\x63\x2b\xa6\x73\x79\x0d\xe6\xf7\x68\xa4\x83\xde\x35\x78\xea\x67\x6a\xe1\x8a\x5d\xec\x62\xd2\x8d\x78\xc2\xc1\x85\x53\xad\x97\x0f\x1d\x83\x68\xdc\x24\x9c\x54\x18\xcf\xcd\x19\x5f\x30\x4d\x3c\xcb\xe3\xff\x33\x46\xf4\x51\x98\xcc\xc8\x31\x33\xbd\x39\x3f\x51\x4c\x56\xd9\x89\x3d\xf6\x65\xf7\x9d\x14\xff\x26\x26\x2e\x3f\x6d\xa4\xfe\x67\x23\x4c\xe8\x57\x58\x2f\x37\x77\xac\xc3\xba\x00\xd3\xab\xff\x7e\xe7\x70\x39\x8b\x1f\x6a\xe3\x96\x69\xce\x94\x07\x91\xc1\xa4\xad\xf7\x83\x8b\x14\x36\x9e\x0b\xe3\xcb\xbc\x53\x39\x53\x1c\x86\x5f\x30\x85\x1f\x2d\x5c\x06\xb3\x4e\x62\x5f\xd2\x8e\xd4\x56\xe3\x20\x1c\x01\x60\x07\x00\x4e\x1f\xb3\x8a\x61\xf0\x1b\x41\x10\xcd\xfe\x34\xf9\x6f\x00\x00\x00\xff\xff\xd5\xfb\x79\xb3\xe3\x2a\x00\x00" +var _nonfungibletokenCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x5a\x5f\x8f\xdb\xc6\x11\x7f\xd7\xa7\x98\x5c\x80\xfa\x2e\x90\x75\x7d\x28\xfa\x70\x80\xe1\x38\xb9\x5c\x21\xa0\xb8\x14\x8e\x9c\x3c\x14\x45\xb4\x22\x47\xd2\xd6\xe4\x2e\xbd\xbb\x94\xa2\x5e\xfc\xdd\x8b\x99\xfd\xc3\x25\x45\x9e\xef\x9c\xb4\xb9\x87\xc4\x22\x77\x67\x66\x67\x7e\xf3\x77\x79\xfd\xd5\x57\xb3\xd9\x97\x5f\xc2\x6a\x8f\x70\x57\xe9\x23\xdc\x6b\xf5\xf2\xae\x55\x3b\xb9\xa9\x10\x56\xfa\x3d\x2a\xb0\x4e\xa8\x52\x98\x92\x17\xae\xef\xb5\x8a\xef\xf9\xf5\x1a\x0a\xad\x9c\x11\x85\x9b\xcd\x88\x8a\x54\x0e\xcd\x56\x14\x08\x6e\x2f\x1c\x88\xaa\x1a\xa3\x19\xf7\x58\xb0\x7b\xdd\x56\x25\x3d\xd8\x6a\x53\x83\xd3\x8b\xd9\x72\x0b\x02\x5a\x8b\x06\x8e\x42\x39\x0b\x4e\x43\x89\x4d\xa5\x4f\x20\x40\xe1\x11\xee\xef\x56\x89\xc0\x1c\xdc\x1e\xa5\x49\xbf\x23\x3d\x59\x37\x15\xd6\xa8\x1c\x0b\xe5\x4e\x0d\x5a\x28\x71\x2b\x15\x96\xb0\x47\x83\xe1\x30\x77\xab\x35\x18\xb4\xba\x35\x45\x26\xba\x3f\x49\xa1\x0d\x76\x2f\x89\x84\x3f\x92\xc1\xc6\xa0\x45\x92\x4c\x28\x16\x46\x2a\x92\x02\x6c\x2d\x8c\x4b\x92\x2c\x3c\x8b\x6f\x75\x55\x61\xe1\xa4\x56\x6b\x78\x3b\xc1\xa9\x63\x42\xf4\xad\xd3\x06\x6d\x50\xc1\x0b\x1b\x8e\x1b\xa9\x2c\x66\x4b\x07\x52\x15\x55\x5b\xf2\xa2\x2d\x1e\x61\xdb\x2a\x7e\xc7\xaa\x12\x15\xd9\x91\xe4\xd1\x47\x85\x86\x1e\xa1\xb0\xb2\x3a\xcd\x6a\x7d\x40\x70\xa4\x7f\x4b\x22\x0b\x55\x82\x6e\x1d\xe8\x2d\xaf\xce\x59\xb0\xe4\xff\x30\xfa\x20\x4b\x34\x6b\x5e\xb9\x7e\x8b\x05\xca\x03\xfd\x3c\x57\x98\xe5\x73\xd8\xfc\x09\x94\x58\x54\xc2\x60\x26\xdc\x51\xba\x3d\x58\x5d\x23\x34\x06\x99\x68\xa3\x2d\x2b\xac\x94\xbc\x62\x16\xf4\xfb\xa1\x95\x06\x59\xa8\x4e\x7b\x74\x8e\xad\xe6\xb3\x15\x68\x9c\x90\x0a\x94\xa8\xa5\xda\x31\xa1\x0d\xee\xc5\x41\x6a\x93\xc0\x6a\x17\x2c\xd2\x09\x48\x04\x8b\x8d\x30\xc2\x21\x6c\xb0\x10\x2d\x89\xe9\x60\x27\x0f\x2c\xe4\x01\x2b\xdd\xa0\xb1\xcc\x4e\x6c\x64\x25\xdd\xc9\x23\x8e\xc0\xd2\x49\xef\x65\x2b\x84\x22\xb3\x80\x50\xa7\x0c\x11\x09\x6c\x4c\xc5\xf6\x15\xf3\xcd\x09\x5a\x4b\x72\x46\xb5\x59\x96\xb8\x5b\x32\x67\x43\x5b\xb2\x03\x99\xba\x8f\x22\xcb\x2c\x2d\xaa\x72\x46\xbb\x8c\x37\x42\xb4\x62\x83\x68\x5e\x3a\xfd\x92\xfe\x3f\x67\xfd\x92\x41\x49\x15\x6a\x47\x87\x60\x26\xe4\x15\xac\x7a\x01\x05\x12\xd5\x0a\x2a\x2c\x77\x68\x66\x67\x80\x5d\x69\x66\x15\x71\x4d\x68\x52\xda\xed\xd1\xb0\x88\xf3\xe4\x96\xec\x62\x96\x8e\x7d\x62\xd2\xa5\x11\x1e\x72\xf7\x77\xab\xd9\xd6\xe8\x3a\x78\x65\x67\x3e\xf6\x53\x05\x05\xc5\x03\x5a\x58\x62\xa3\xad\x74\x49\xbf\xa0\x55\x8f\xd7\x0b\x3b\xeb\xdb\xbe\xd0\xa4\x64\xe7\x61\xe1\x8c\x50\x76\x8b\x66\x31\x9b\x7d\x75\x3d\x9b\xc9\xba\xd1\xc6\xc1\x8f\x12\x8f\xe4\x62\xd5\x01\x0d\xb0\x14\x17\xf9\xa3\x8b\xd9\xec\xfa\xfa\x9a\x43\x5d\x4d\xf0\xc9\xc3\xc8\x02\xbe\x67\xd6\xf9\x33\x02\x6c\x55\xf1\x9e\xc0\x80\xed\x16\x6d\xcd\x82\xf4\xf0\xee\xa3\x0b\x07\x03\x69\xbb\xb0\x78\x7d\x7d\x3d\x13\x45\x81\xd6\x5e\x8a\xaa\xba\xea\x42\x55\x17\x2a\x87\x41\xf5\xa6\x7f\x96\x87\xd9\x0c\x00\x80\x24\x79\xa3\x00\x95\x93\x2e\xc8\xb0\xd5\xc6\x3b\x3c\x1b\x7c\x8f\xc9\x1a\xa2\x62\xbf\xf6\x30\x61\x5d\x08\xf8\x51\xb4\x95\x63\x4a\xb9\x38\x39\xb9\x9f\xc2\xee\xa7\xf1\x6b\x9b\x52\xb8\x00\x67\xff\x6f\xc0\x03\x7b\x01\x2f\x63\x0d\x3f\xca\xee\x1d\x6f\xea\x98\x0d\x39\x85\x00\x46\x2e\xb6\x33\x9c\x0a\xa2\x80\xcc\x33\x6c\x7f\x8c\xc3\xf7\x44\xa1\x63\xf0\xdd\xc1\x1b\x4e\xb8\xf3\x0c\x84\xb5\x74\x70\x24\x90\x92\x1e\x6b\x74\xa2\x14\x4e\x90\x16\x63\x94\xb7\xe1\x94\x65\xa2\xb7\xf4\x11\x41\xab\xea\x04\x1b\x64\x12\x0e\x4b\xd8\x9c\x18\xe8\xd1\x26\x6b\x7a\x7e\x7f\xb7\xf2\xf2\x96\xeb\x04\xfa\x44\xc7\xbb\xa7\x82\x35\x2f\x11\x9b\x0a\xd7\xf1\x18\xe4\xf3\x5b\x34\xa8\x28\x3d\xe8\xe8\x64\xfe\x0c\x47\x71\x2e\x12\xc1\x3b\xd7\x40\x63\x82\x4d\x6c\x23\xea\x9a\xe2\x0c\xa3\xa1\x93\x4f\x86\x27\x9d\xef\xd9\x17\x59\x32\xb0\x89\x72\x0c\x9e\x7c\xda\x42\x97\x1e\x6c\x94\x48\xb2\xe5\xa0\x83\xc1\xf6\x82\x58\x62\x21\x45\xd5\x1d\xc5\x9b\x29\x51\x0c\xe7\xc9\x98\x91\xde\xf7\xba\xf4\xae\x47\x2a\x25\x5d\xd0\xba\x1d\x7a\x87\x3b\xd7\x4a\xa2\xd6\x57\x01\x5b\xba\x16\xef\xd1\x52\xb4\xb7\xda\x4b\xe5\xf6\xd2\x94\x2f\x1b\x61\xdc\x09\xa4\x2a\xf1\x17\x52\x08\x99\xb0\xd6\x4a\x3a\x96\x3d\x82\x38\x91\x23\xa8\x7d\x68\xd1\x9c\xf8\x65\xd0\x77\x07\x90\x18\xee\x3c\x5a\xfb\xba\x5b\x44\x22\xe7\x20\x3d\x74\x0e\x50\x5e\x52\x2a\xb9\x81\x1f\x9c\x91\x6a\x37\x07\x59\xde\xc0\xbb\xa5\x72\x7f\xfd\xcb\x1c\xda\x36\xff\xc5\x2c\x6e\xe0\x4d\x59\x1a\xb4\xf6\xf5\xd5\x19\xd9\x83\xf4\xe5\x00\xf4\x21\x77\xf9\x33\xa8\xad\x7b\x8b\xdb\x1b\x10\xad\xdb\x5f\xfa\xc7\xf0\xab\xf7\x8f\x2b\xf8\xd3\xc3\x30\x02\x2d\xee\xef\x56\x1f\x3d\xfd\x07\xfe\x2f\xfd\xb1\x8b\xf4\x65\xf6\x64\x17\x3b\x74\xab\x53\x83\x97\x57\x0b\x59\x92\x89\xb6\x92\xd2\x05\x89\x1e\x16\xc8\x32\x9e\x25\x3c\xa0\x1f\xe9\x40\xe1\x19\xff\x7a\xbd\x10\xfe\x78\x9e\xfb\xc7\xd9\xa8\xfb\x4a\x9b\xbc\x8d\x7d\x56\xf8\x58\x47\xcf\x63\x08\x54\xf3\xb4\x51\xaa\x52\x16\xc2\x45\x87\x24\xd1\x49\x3a\x2f\xd2\x3c\x2b\x96\xce\x6a\xa1\xc0\xcd\xfb\x5a\xa2\xcc\x46\x9f\xf7\x10\x42\xdb\xde\xbd\x5b\xde\x46\x12\x5d\x91\x34\xba\x17\x5a\xdb\x8a\xaa\x3a\xf5\x9c\xa7\x0f\x17\x0e\x30\x67\xf2\x48\x0b\x4a\x3b\x5f\xbf\x91\xe9\x75\xab\xdc\x0b\xcb\x45\xa3\xd8\xe1\x1c\xd6\x44\x7e\x9d\xfc\x67\xad\x64\xb5\xfe\x14\x0c\x63\x54\x55\x4f\x06\x22\x31\xe9\x70\x38\x87\x26\xd4\x8a\xa4\x81\xb8\xea\x2a\x70\x8d\x0c\x63\xc4\x1d\xa0\x34\x31\x67\xeb\xfe\xbe\x12\xdc\xc0\x37\x5a\x57\x01\xc1\xd7\xd7\x0c\x62\xb9\xf5\x2e\xfb\xc5\x2b\x50\x72\xf0\x2e\x81\x7c\xa8\x91\x88\x98\x1b\xe8\x80\xec\xb1\xe3\xe5\xf0\x36\xed\xcb\x90\xff\xba\xca\xb9\x7c\xcc\x7f\x18\x74\xad\x51\xe0\x4c\x1b\x23\x19\x41\x7e\x04\xf1\x53\x70\x0f\x95\x14\x96\x5c\xae\x8d\xa1\x09\x96\x1e\xfe\x68\x7f\x13\xfa\x73\x46\x8f\x63\x3f\x87\xeb\xf9\xde\xdf\x0d\xe4\xf3\xe7\xa1\xfc\x36\xca\xf0\x64\x8c\x39\x9d\x23\xac\x93\xef\x33\x50\x9e\x98\x3f\x0f\xe5\x4f\x92\x60\x02\xe5\x4e\x3f\x8e\xf1\xa1\x3e\xa6\x31\x4e\x52\x38\x7d\xce\xbf\xff\xfb\x73\x31\xbe\xf4\xcd\x6c\xc9\x25\xdf\x46\x14\xef\x8f\xd4\xbf\xbd\xa4\x82\x5f\x38\xe9\x3b\xb2\x33\x93\x9e\xf7\xa0\xb0\xbc\xbf\x5b\xdd\x70\x71\xf4\xd0\xa3\xde\x9b\x47\x84\xfa\xc9\x42\xdd\xfa\xd6\x33\x4c\x1d\x26\xb1\x33\xc2\x88\xf9\xe4\x05\xfa\x62\x58\xa9\x47\xe6\xad\x92\x1f\x5a\x84\xe5\x2d\x9f\x2d\x36\x48\x71\x45\xce\xa6\x42\x97\xc1\xa0\x4f\x65\x3c\xed\x89\xd6\xe9\x5a\x38\x59\x70\x1a\xc1\x03\x17\x28\xb2\x46\x10\x99\xcc\xe4\x79\xd6\x19\x7d\x0a\x15\x62\x5e\x22\x71\xff\x2a\x59\x01\x22\x7a\x9d\x8c\xb6\x90\x83\x32\xd8\xbb\x90\xd5\xe4\xd0\xc1\x3b\x15\x22\xad\x14\x3c\x06\x11\x66\xd7\xf2\xb8\x65\xec\x70\x7e\x73\x9c\x7e\xdc\x46\x89\x2e\xbb\x03\xc3\x2b\xb0\x58\xe5\x65\x42\xff\x39\x3d\xbb\xea\x6b\xa5\x30\x28\x1c\x7e\x57\x37\xee\x94\x75\x8a\xfe\x29\x8b\x84\xf4\xaa\x37\x41\x08\x1a\x8c\x35\x25\x0f\x5a\xce\xac\x12\x83\x9a\x07\x2d\x57\x8f\xb1\x4e\x15\x55\x85\x26\xab\x25\xf1\xe4\xcb\xff\x23\x37\x08\xb6\x47\xe2\xeb\x00\xfa\x37\x9d\x28\xc3\xb8\xca\x9d\x7d\x90\x41\xda\x49\x68\x50\x08\x19\x3d\xec\xe5\xd5\x0d\x7c\xfd\xd0\xfd\xfe\x98\x95\x6a\xf4\xc7\xd3\x95\xfe\x23\xef\x8d\xb6\xad\x1c\x95\x6c\x7f\x47\xb5\x73\xfb\xcb\x2b\x78\xf5\x0a\xfe\x7c\x03\x17\x3c\xf5\x62\x4e\x65\x2e\x2c\xbb\x0a\xb7\x37\x8d\x3b\x7d\x71\xd1\x23\xf8\x71\xd6\xfd\xab\x77\xfe\xbf\xa1\xb3\x10\xbb\x7d\xf6\xb8\x58\x80\xfb\x89\x56\x29\x0d\x16\xae\x3a\x91\xf6\xa6\x34\x57\x4a\x16\x40\x98\x13\xb7\x61\x55\x05\xb6\xdd\xdc\xdf\xad\x7e\x80\xf7\x78\xf2\x7d\x16\x81\x78\x54\x6b\x29\xfa\xee\xd0\xbd\x39\x08\x59\x91\xd5\x7f\xf0\xdb\x49\x71\x0f\x2b\x0e\x7a\x1e\x66\x43\xcd\x05\x09\x1e\x1e\x3b\x1d\xfb\x59\xd6\x99\xc5\x99\x49\xef\x94\x67\x87\xfb\x46\x53\xa7\x17\x9c\xc5\xf2\x74\x4a\x37\x7c\xc8\xaa\x3f\xbc\x0b\xf3\x97\x62\xaf\xb5\xc5\x1e\x89\xbd\x3e\x12\x28\x23\x3e\x6d\xbb\xf1\xfa\x2d\xb1\x41\x55\x52\x8d\xab\x15\x1c\x79\xf8\xda\xe3\x13\xea\x91\x7e\x20\xb8\xd3\x06\xf0\x17\x51\x37\x15\xc5\xfe\x2d\xac\x49\xa1\x6b\xee\xde\x04\x1c\x44\xd5\xe2\x1c\x36\xad\x83\xb5\x2c\xd7\x50\x6a\xb4\xea\x85\x9f\xb9\xb2\x80\x7d\x87\x14\x2a\x88\x0b\xc7\xbd\x2c\xf6\x5e\x01\xdb\xa0\x11\x1e\x96\xe9\xa8\x59\xc9\x29\xdf\x70\x84\x12\x70\x51\xe2\x56\xb4\x95\xbb\xe8\xd1\x5b\x6e\x61\xe3\xb5\x15\x12\x7c\x98\x21\x75\x60\xe2\x4e\xd4\x7b\x90\x00\x2b\xd5\xae\xf2\x62\x91\x24\xff\x26\xd0\x7a\x6e\x3d\xaa\xb4\x71\x01\x2b\x32\xd0\x1e\xab\xc6\x06\xaf\xb6\x70\xdc\x6b\x62\xa5\x5e\x38\xb0\xad\x41\xaf\x41\x17\x47\x88\x95\xd6\xef\x49\xb5\x14\xc7\x73\x7a\x7d\xe4\x36\xc2\x88\x1a\x7c\x3a\x25\x67\x22\x8c\xc5\xa2\xa8\x44\x2b\x0d\x96\x67\xb1\x26\x6c\xa2\x98\xc7\xf3\xf3\x32\x6e\x08\x08\xd8\x68\x63\xf4\x71\x9a\x67\xf2\x16\xeb\x4c\x5b\xb8\x96\x87\xd6\x61\x42\x1d\x1b\x1e\x83\x1f\x5a\xb4\xe4\xd6\xe4\x16\x8b\xc9\x30\xb3\x43\xe7\x5d\x24\x94\x04\xab\x54\x12\x84\x52\x03\x6e\xa6\x7a\xc5\xd7\xe3\x2e\xa4\x64\x35\xeb\xc7\x8a\xf1\xdc\xac\xa1\xc6\x52\x52\x53\xda\x4d\xb0\xd2\xe0\x2a\xe6\xb3\xbc\x6b\xea\xc2\xde\x73\x52\x77\x9c\x69\xf7\x13\x35\xfc\x84\x61\xfc\x13\xc7\x4b\x71\x8e\x15\x7b\xfb\x58\xcb\x67\xa4\xe2\x38\x84\x6a\x08\x8a\x53\x6a\x97\xb6\xe7\xa4\x03\xa5\x80\x2c\xc1\x73\xc1\xad\x1f\x08\x3b\x1d\x32\x63\x25\xad\x43\x45\x20\x0c\xef\xab\x40\x30\x4e\x49\xc3\x44\xa2\x67\xf8\x24\xab\xc1\x5a\x1f\x30\x5d\x46\x24\x99\xb3\x08\x4e\xf9\xcc\x2f\x1a\x66\xb3\xbe\xc7\x39\x76\x71\xce\xee\x3c\xbb\xd9\x9e\xa8\xdd\xe0\xc1\x10\x6d\x59\xde\x92\xbf\xfa\x4a\xdf\xd0\xaa\x31\x20\x47\xb9\xa8\x40\x1c\x05\x74\x12\x7c\x44\xd2\x21\x32\xd3\xbc\x2f\x8d\x2a\x08\xa6\x91\xc2\x65\xce\x2b\x15\xc3\x5f\x3f\x10\x1e\x9f\x95\x0b\x65\x49\x29\x30\xa7\xc6\xb9\xb0\xeb\x68\xba\xee\xdd\xf7\x5d\x31\x25\xf2\xb5\x8f\xa0\xa2\xcb\x0e\x1c\x6d\x79\x7b\x71\xc6\xed\xfa\x7a\xb2\xe1\xed\x92\xf2\xc4\x1c\x25\x49\x1a\x0b\xa4\xf0\x20\xef\x42\xb9\x54\xea\x0f\x51\x86\x4d\x69\x56\x4d\x0d\xa5\x1b\x6d\x7c\xff\x60\xb9\x3e\x3e\x33\x78\x04\x87\xb1\x11\xe4\x9f\x17\x25\xe2\x55\xd7\xb0\x9c\x8f\xee\xe8\x78\xac\x18\xfc\xad\x5f\xff\xb2\xab\x89\xb2\xcc\x3d\xed\xdb\x73\x78\xe7\xd9\xc2\x0f\xfc\x57\x9d\x83\x04\x36\x93\x51\x3a\xbc\xbf\x0c\x3b\x3d\xde\x07\xd5\x31\x47\xf2\xa6\xd1\xc6\x61\x79\x7f\xb7\x5a\xf1\x05\x68\x2c\x19\x04\x47\x9c\x78\xe1\xe4\x2f\x47\xbb\xba\xc5\xc4\xd3\x13\xdf\xc6\x3d\xad\x38\xf3\x44\x6a\xd1\x34\x7e\x10\xb1\xd1\xba\x42\xc1\x17\x8d\x69\xf4\xc6\x49\x5f\xf6\xe9\x75\x8e\x58\x48\xea\x61\xc0\x7a\xa9\x49\x7f\x9f\xac\xeb\xce\x4e\x98\x15\x76\xd4\x12\x0f\x8a\xb6\xb7\xe1\xf8\x31\xa4\xf9\x18\xc6\x26\xda\xc9\x03\xaa\xd0\x11\xd9\x70\xf0\x50\x60\x8e\xc7\x27\xbe\x1b\x19\xad\xe8\xfd\xe6\xee\x86\x30\x5c\x2f\x64\xf5\x08\x37\xc2\x44\x3b\x94\x3d\xd3\x35\xc4\x1b\x95\x2c\x34\x61\x85\xa0\xe7\x11\x35\x77\x76\x24\xa9\x82\x7e\x87\x95\xc8\x13\xea\x67\x69\x87\x6a\xce\x8a\x83\x30\x7b\x18\xfa\xe6\x5b\x7f\x85\x9b\x2e\x72\xbc\x12\x55\x61\xd0\x0d\xae\xd4\xf3\xbb\x80\x0d\xc6\x4b\xe3\xd4\x7f\xa6\xdb\x36\x3a\x58\xba\x51\x7b\x86\x2b\x77\xbe\x77\x93\x92\xff\xfc\xa9\x0e\x3e\xe5\xdf\xe1\x86\x5e\xba\x28\xe6\x04\x40\x3e\xe5\xe1\x24\xe7\xf0\x0a\xe4\x19\x5e\x3f\x3a\xb2\x1f\xe6\x3d\x83\x23\x69\x2f\x2b\x79\xf2\xcb\x58\x5f\x8d\x84\x33\xf5\xbe\x5c\xe8\x3e\x58\x18\x21\x15\x2b\xa1\xe9\x5d\xec\x54\x55\x4d\x39\x58\x54\x47\x71\xf2\xc9\x72\x2b\xa9\xeb\x29\xd1\x3a\xa9\x44\xef\xec\x19\xf1\xee\x16\x93\x34\x9f\x24\xad\xa5\xb5\x7c\x61\xe4\x6f\xb3\x5a\xeb\x74\x9d\x10\x4f\x45\x14\xf9\xdc\x06\xbb\x6a\x6b\x8c\x36\x51\xdc\x0b\x53\xfa\xc6\x84\x00\x2a\xfd\x64\x60\x50\x96\x4d\x24\xf2\xd1\x99\x1e\x0b\xfb\x48\xbe\xf4\xef\xbb\x74\xe9\x7f\x77\x73\xb6\xd1\x5c\x39\x1c\xbc\x7d\x2a\x8b\x9f\x8d\xf6\xfe\x40\xa1\x1e\x9f\x10\xf0\x57\x17\xb5\x6e\x55\x4c\x47\x7e\xca\xdb\x45\x80\x29\xd7\x8a\x11\x50\x31\xca\x76\x5c\x9a\xf7\x2e\x79\xac\xfc\x0f\x9e\x0f\xa4\x3f\x99\x53\xe2\x4c\xe4\x86\x0a\x8c\xb1\x91\x46\xca\x9d\x71\xb8\xb1\xbc\xb5\x4f\x17\x56\x18\x23\x4e\x31\xf3\x3e\xbe\x73\x4a\xc2\xe5\x2d\xe7\xb9\x7f\xfa\x82\xf7\x5f\x30\x1b\x0c\x18\xa8\x5d\xb4\x13\xd3\x89\x27\xe9\x76\xd9\x95\xeb\x7c\x31\xcd\xda\xe4\x76\x40\x72\x61\x9b\x8d\xe7\xfb\x54\xe6\x83\x4e\xbb\xfb\x7c\x26\x66\xc1\xa0\x08\x6e\xe7\xd9\xfd\x88\x4e\x23\x94\x2c\x16\x9f\xea\xaa\x63\x83\x1c\xb3\x97\xda\x3a\xea\x2d\xce\x84\xc8\xa6\x0c\x51\x07\x05\x52\x16\x5a\x4c\xd9\x24\x0d\x60\xc6\x6e\xda\x1f\x37\x87\x6f\xce\xa9\x61\xfe\x39\x6f\x93\x9f\xdc\x25\x4f\xb4\x25\x97\xbe\x88\xa6\xa6\x44\xc9\xea\x0a\x7e\xfd\x35\x3e\x7a\x1d\x7a\x15\x59\x5e\xdd\xc0\xd9\x3e\xfa\xbb\xf8\x56\x28\xd2\xaa\x17\x8d\xad\x98\xce\xe5\x35\x98\x5f\x52\x92\x0e\x7a\xdf\x18\xa4\x06\xb0\x16\xae\xd8\xc7\xb6\x2f\x7d\x6e\x90\x70\xf0\xc4\x31\xe0\xf3\xa7\xb4\x41\x34\xee\xaa\xce\x0a\x9f\xc7\x06\xb3\xcf\x18\xbf\x4e\xf2\xf8\xff\xcc\x5d\x7d\x14\x26\x33\x72\xcc\x4c\x4f\xa6\x47\xb0\xc9\x2a\x7b\x71\xc0\xbe\xec\xbe\xf5\xe4\x0f\x8e\xe2\xf2\xf3\xce\xf3\x7f\x36\xf3\x85\x7e\xe1\xf7\x7c\x73\xc7\xf2\xb0\x0b\x30\xbd\xb2\xf4\x37\x4e\xe3\xb3\xf8\xa1\xb6\x6e\x95\x06\x73\x79\x10\x19\x8c\x26\x7b\x5f\xb3\xa4\xb0\xf1\x58\x18\x5f\xe5\x0d\xd4\x44\xcd\x1a\x3e\x0f\x0b\x5f\x84\x3c\x0d\x66\x9d\xc4\xbe\xd2\x1e\x29\xf9\xc6\x41\x38\x02\xc0\x0e\x00\x9c\x3e\x16\x15\xc3\xe0\x33\x41\x10\xcd\xfe\x71\xf6\xdf\x00\x00\x00\xff\xff\x4a\x66\xe7\xaa\x40\x2c\x00\x00" func nonfungibletokenCdcBytes() ([]byte, error) { return bindataRead( @@ -151,7 +151,7 @@ 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{0xcb, 0xf6, 0x6b, 0x9, 0xd1, 0x44, 0x96, 0x95, 0xd3, 0x49, 0x7a, 0x1, 0x3, 0x3f, 0xb2, 0xed, 0x2f, 0xd3, 0xcc, 0x19, 0x4, 0x65, 0xbf, 0xd6, 0x41, 0x3a, 0xf5, 0x27, 0x44, 0x24, 0x5, 0x99}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x5a, 0xe6, 0xcb, 0x7b, 0x9a, 0x38, 0x85, 0xb0, 0xc2, 0x5, 0x4e, 0xf6, 0x75, 0xf2, 0x8f, 0x49, 0xe, 0x80, 0x43, 0x3d, 0x8c, 0x3b, 0xe9, 0xcd, 0xe7, 0x64, 0x9a, 0xc4, 0x29, 0xcd, 0x8d, 0x98}} return a, nil }