From 4a62e701b2c02695c46b96c6b1dce16a61771f04 Mon Sep 17 00:00:00 2001 From: bilal Date: Fri, 8 Jul 2022 14:03:44 -0400 Subject: [PATCH] Add core nft view (#103) --- contracts/MetadataViews.cdc | 46 ++++++++ lib/go/contracts/internal/assets/assets.go | 6 +- lib/go/templates/internal/assets/assets.go | 23 ++++ lib/go/templates/script_templates.go | 7 ++ lib/go/test/metadata_test.go | 129 ++++++++++++++++++++- transactions/scripts/get_nft_view.cdc | 111 ++++++++++++++++++ 6 files changed, 318 insertions(+), 4 deletions(-) create mode 100644 transactions/scripts/get_nft_view.cdc diff --git a/contracts/MetadataViews.cdc b/contracts/MetadataViews.cdc index 83798436..7a4b92ee 100644 --- a/contracts/MetadataViews.cdc +++ b/contracts/MetadataViews.cdc @@ -33,6 +33,39 @@ pub contract MetadataViews { pub fun getIDs(): [UInt64] } + /// NFTView is a group of views used to give a complete picture of an NFT + /// + pub struct NFTView { + pub let id: UInt64 + pub let uuid: UInt64 + pub let display: Display? + pub let externalURL: ExternalURL? + pub let collectionData: NFTCollectionData? + pub let collectionDisplay: NFTCollectionDisplay? + pub let royalties: Royalties? + pub let traits: Traits? + + init( + id : UInt64, + uuid : UInt64, + display : Display?, + externalURL : ExternalURL?, + collectionData : NFTCollectionData?, + collectionDisplay : NFTCollectionDisplay?, + royalties : Royalties?, + traits: Traits? + ) { + self.id = id + self.uuid = uuid + self.display = display + self.externalURL = externalURL + self.collectionData = collectionData + self.collectionDisplay = collectionDisplay + self.royalties = royalties + self.traits = traits + } + } + /// Display is a basic view that includes the name, description and /// thumbnail for an object. Most objects should implement this view. /// @@ -619,4 +652,17 @@ pub contract MetadataViews { return nil } + pub fun getNFTView(id: UInt64, viewResolver: &{Resolver}) : NFTView { + return NFTView( + id : id, + uuid: viewResolver.uuid, + display: self.getDisplay(viewResolver), + externalURL : self.getExternalURL(viewResolver), + collectionData : self.getNFTCollectionData(viewResolver), + collectionDisplay : self.getNFTCollectionDisplay(viewResolver), + royalties : self.getRoyalties(viewResolver), + traits : self.getTraits(viewResolver) + ) + } + } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index de88c3f9..ee21ba66 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/ExampleNFT.cdc (12.249kB) -// ../../../contracts/MetadataViews.cdc (22.395kB) +// ../../../contracts/MetadataViews.cdc (23.999kB) // ../../../contracts/NonFungibleToken.cdc (4.832kB) package assets @@ -92,7 +92,7 @@ func examplenftCdc() (*asset, error) { return a, nil } -var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x7c\x6b\x6f\x1b\x39\xb2\xe8\x77\xff\x8a\x1a\x2f\x90\xb5\xb3\xb2\xe4\xcc\xce\x0d\xee\x15\x46\x3b\x37\x93\xc4\xb3\x3e\x48\x72\x8c\xd8\xd9\x73\x80\x20\x88\xa9\xee\x92\xc4\x75\x77\xb3\x87\x64\x5b\xd6\x06\xf9\xef\x07\x55\x7c\xf4\x53\x8f\x78\xb2\xc7\x1f\x12\xa9\x9b\x2c\x16\x8b\xf5\xae\xa2\x26\x4f\x9f\x1e\x1d\xdd\xac\xa4\x81\x44\x15\x56\x8b\xc4\x82\xcc\xcb\x0c\x73\x2c\xac\x01\xbb\x42\xc8\xd1\x8a\x54\x58\x01\xc6\x8a\x22\x15\x3a\x85\x52\xab\x52\x19\x4c\x8f\x64\x01\x17\x6f\x2e\xaf\xce\xce\x9f\xff\xf5\xf9\xf8\xe8\xe8\x3d\x2e\xa6\xb0\xb2\xb6\x34\xd3\xc9\x64\x29\xed\xaa\x9a\x8f\x13\x95\x4f\x54\xb1\xc8\xd4\x7a\xc2\xff\xcc\x33\x35\x9f\xe4\xc2\x58\xd4\x93\x45\x26\x4b\x33\xf9\xf1\xfc\xc7\x67\xe7\xff\xef\xd9\xf3\xb3\x62\x61\xcf\xc2\x62\xe3\x3c\x3d\x3a\xba\xb6\xba\x4a\xac\x01\x51\xa4\xa0\xd1\xa8\x4a\x27\x68\x20\x11\x45\x8d\x22\xa8\x02\x41\x69\xc8\x95\xc6\xa3\x88\xa9\xdd\x94\x68\x46\x90\x88\x2c\xc3\x14\xee\x25\xae\xcd\x18\x5e\x8b\x64\xc5\x9f\xf9\x35\x68\x2c\x35\x1a\xda\xe5\x91\x80\x54\x2e\x16\xa8\x09\xde\x9d\x2c\x52\x50\x8b\xb8\xeb\x11\x98\x2a\x59\x81\x30\x20\x20\xd1\x28\xac\xd2\x30\x97\x6a\xa9\x45\xb9\xda\x1c\x29\x0d\x02\xfe\xe3\xea\xf5\x6f\x20\x73\xb1\x44\x58\xc8\x0c\xc7\x47\x4f\x27\x47\x47\x32\x2f\x95\xb6\x70\x51\x15\x4b\x39\xcf\xf0\x46\xdd\x61\x01\x0b\xad\x72\x38\x1e\x4f\x2a\x2b\x33\x69\x37\x93\xd6\xdb\x71\x92\x26\xc7\x61\xde\x3b\x55\x0c\x4f\xed\xbe\x70\xb3\x8e\xca\x6a\x5e\x1f\xe0\x5b\x8f\xfb\x3f\x68\xe3\xf0\xe5\xe8\x08\x00\x60\x32\x99\xc0\x0b\x78\x8f\x46\x65\xf7\xa8\xe9\x0c\xef\x65\x8a\x06\x44\x92\xa0\x31\x60\x15\x08\x30\x68\x9b\x7b\xf7\x94\x0b\xd3\x1b\x60\x0c\x9f\x0c\x11\x3e\x9c\x0b\x9c\xe0\x78\x39\x06\x51\xc0\xbb\x8b\x9b\xd3\xce\x21\x59\xe2\x2f\x59\x58\xd4\x0b\x91\x60\x84\x63\x55\x40\xa3\x81\x05\xb1\x1c\xaf\x0b\x76\x25\x2c\x48\x0b\xa6\x2a\x89\x26\x1d\x44\x68\xc7\x71\xf1\x08\xbb\xde\xe0\x17\x1e\x15\x46\x2e\xaa\x02\x96\x68\x99\x22\x27\xa7\x53\xf8\x78\xb3\x29\xf1\x53\x6f\x88\x76\xb3\x69\xd8\xc9\x67\x46\x63\x0a\x34\xf2\x74\x0a\x2f\x8a\x8d\xe3\xc7\x5f\x78\xd6\xd7\x21\xaa\xbe\x54\x59\x86\x89\x95\xaa\x00\x49\x0c\xb3\xd4\xaa\x2a\x89\xa2\xcc\x76\x1e\xb8\x26\x52\xa4\xf8\x00\xf3\x0d\x5c\xbe\xfa\xa6\x4d\x35\xe0\xf7\xb7\x37\x57\x5a\xab\x35\xa1\x1e\x86\x9f\xc8\x74\x0a\x1f\x2e\x0b\xfb\xfc\xa7\xd3\x29\x3c\xf9\x12\x9e\x7f\x1d\x22\xcd\xe5\x2b\x47\x18\x37\xfe\x53\x77\x93\xaf\xa4\x29\x33\xb1\x71\xfb\x9a\x0b\x23\x13\x2f\x4b\x7c\x48\x45\x92\x55\xc4\x4c\x74\x78\x85\xc8\x71\x04\x29\x9a\x44\xcb\x92\x71\x15\x45\x5a\x9f\xf9\xaa\xca\xe7\x85\x90\x19\x2c\x48\x78\x0a\x50\xf3\x7f\x62\x62\xc7\xf0\x56\x19\xeb\xbf\x18\x30\x2b\x55\x65\x69\x97\x83\x68\xc1\x3e\xbd\x3c\x2f\x06\x04\x3d\xbb\x87\xf5\x6e\x3c\x46\x74\x0a\x84\x5d\x58\xae\x39\xa8\x33\x41\x1a\x58\x48\xcc\x52\x58\xcb\x2c\x83\x39\x42\xea\x40\x63\x0a\xb2\x80\x4c\x1a\xaf\x92\xec\x0a\x35\x2e\x94\x46\x8f\x6e\x0b\xcc\x9c\x9f\x6a\x4b\x5b\x4c\x54\x91\x48\x83\xe3\xc1\x35\x69\x0b\x19\x5a\x46\x72\x0a\xd7\x56\xcb\x62\xd9\xde\xc2\x0b\x58\x6b\x69\x2d\x16\x2d\xa2\x7e\xaf\xfd\x08\x48\xd1\x0a\x19\x14\x65\x1b\xee\xa8\x05\xca\x28\x96\xeb\x39\xb2\xba\x85\x7b\xd4\x73\x65\xa2\xe4\x43\x29\xb4\x60\xbd\x08\xb2\x30\x16\x05\xeb\x51\x01\x46\x16\xcb\x0c\x21\x93\x05\x9e\xee\x26\x41\x63\x7b\xdb\x28\x61\x72\x91\x65\x0d\x26\x8a\x5a\x5c\x0c\x10\xe5\x10\x9a\x78\x4e\x9b\x23\x08\x58\xe3\xfc\x6c\xa1\x25\x16\x69\xb6\x61\x55\x0e\x27\x72\x8c\xac\xdf\x47\x70\xf5\xee\xb7\xd3\x16\x10\xe6\x7c\x4f\x8f\x3e\x87\x8c\x68\xc3\x77\x50\x6a\x64\x65\x36\x02\xb4\xc9\xee\xdd\xc7\x4d\x35\x74\xcd\x97\x0b\x99\xe1\xd7\x9a\x08\xb2\x90\xf6\x24\x7e\xa3\xbf\x26\xdb\x8c\x5a\x6f\x06\xa8\xd9\x1e\xb0\x63\xc1\x30\xe4\xb4\xa1\x67\xe8\xcf\x60\xb6\x18\xb3\x38\xcd\x78\xe5\xfe\xcb\x26\x8b\xce\x9a\x38\xf4\x87\xd6\xa7\x38\xab\x71\x89\xc3\xbe\xf6\xd5\xec\x0a\xb3\x12\x35\x19\x89\x25\xd6\x02\xcf\x3c\xcc\x16\x5f\x2c\x10\xd6\x62\x13\x35\x83\xd7\x6c\x7e\xa0\x57\xe8\x41\x09\xb6\x14\xe2\x29\x4c\x03\xbc\x5f\x1a\x5b\x96\x0b\x3e\x19\x96\x8b\x59\x6b\xf6\xb8\x69\x29\xc8\x42\xfc\xec\xa7\xff\xed\xe4\xb4\x4b\xb4\x00\xc5\x83\x00\x61\x7e\x69\x68\x2b\xe8\xfc\x69\xb4\x95\x2e\xe0\xbe\xf5\xe2\xeb\x51\xff\x93\x1f\x58\x78\x9a\x35\x28\x45\x67\xe8\x0d\x10\x16\xa8\x65\xd2\x30\x25\xcc\xb5\xb5\xef\x03\xc2\x31\xba\xb1\x4a\x63\x0a\x24\x42\x1a\xd4\x62\x01\xc9\x4a\xc8\xa2\x6f\xfa\x09\xb4\x09\x5c\x5f\x19\x4c\xe9\x34\x34\xb2\xf3\x44\xce\x19\xbb\x41\x66\x04\x64\xd4\x95\x53\x93\x8a\xf4\x24\xe4\x98\x4a\xb1\x55\x79\xd7\xf8\x31\xee\x7d\xe3\x56\x69\x49\xd6\xc9\x2b\x85\xce\x7e\xff\x7e\x73\x73\x55\xef\x99\xf7\xe3\xcc\x52\xf0\x6e\xc8\x5b\x02\xc1\xba\x98\xc6\xc2\x89\xd2\xfc\xe1\xfa\x14\x3e\xbc\x7f\xe3\x95\xe7\x00\x5a\x01\xf0\x74\x08\x2d\x3a\xd3\x4a\x67\x7d\x4d\xc5\x42\xda\x78\x33\x28\x44\x95\x26\xb6\xaf\x74\x93\xe1\x77\xef\xba\x03\xc5\x1f\x7f\x00\xb6\x5d\x6e\x2e\xaf\x2e\xae\x19\x7d\x37\x83\x48\x54\x4b\x9e\x77\x5b\x9b\xa6\x38\x4e\xf4\x3c\x41\xae\x6f\xd1\xf0\x6f\x49\xe0\x08\x66\x9f\x39\xe8\xa9\xe7\x00\x10\x1a\x6b\xbe\x48\xc9\xd7\xb1\x2b\x94\x9a\x9d\x54\x32\xe8\x32\xc5\xc2\xca\x85\x44\x0d\x27\x2f\x2f\x5f\x9d\x46\x20\x5a\x30\xbf\xd8\x95\x60\xdb\x24\x35\x26\x16\x3e\xbc\xbf\x1c\xc3\x0b\x48\x32\x49\x73\x45\x59\x66\x32\x71\x1a\x9f\x58\xb1\x32\xe8\x1c\x84\x97\x97\xaf\x9a\xce\xe5\x82\x7c\x79\x62\xc1\x4c\x09\x36\xd7\x7e\x17\xf7\x52\xd0\x96\x18\xdd\xa5\xb0\xb8\x16\x9b\xad\x9c\x19\xa8\x17\x59\xa0\x65\x03\x5e\x5e\xbe\x22\x2e\x23\xd0\x03\x1b\x23\xb2\x32\x5e\xbc\x92\x8b\x0d\x1a\xb3\x5b\x90\x5a\xb1\x53\xaa\x12\x33\x96\xe5\xc2\x8c\xa5\x9a\x90\xf7\x80\xa5\x35\x13\xbf\xc2\x99\x48\x53\x4d\x4c\x5d\x2c\x27\x3b\x0d\x4a\x42\xee\xdf\x90\x19\xbd\x12\x76\xc5\xc2\x51\x80\x62\xdd\x2c\x32\x28\xe9\x99\x77\xbf\x17\x8e\x5b\xa2\x1b\x1a\x89\xe5\x4e\x43\xe9\xcd\x41\xa6\x55\x1a\x50\x45\xb6\x81\x02\x31\x25\xcb\xb8\xa8\x81\x73\x38\x60\xd8\xf1\x3f\x04\xe8\x01\xc4\x21\xb0\x67\x66\x63\x2c\xe6\x66\x37\x59\x68\xa7\x81\x2e\xbf\x74\xa4\xb6\x41\xb2\x51\x7b\xe0\xa0\x10\x27\x32\x85\x19\xd1\xb9\xff\x8a\xe9\x39\x63\x18\x43\x12\x5e\x93\xaa\x2a\x9c\x43\x1f\xa4\x93\x68\xc4\xc4\x2e\x84\x95\xf7\x48\x0a\xaa\x66\xa4\xc7\xf2\xd0\x4a\xad\xcf\xac\x9a\x78\xce\x39\xa3\xc7\x67\xaa\x38\x5b\xe3\x7c\xf2\x27\xb7\xce\x59\xa5\x33\xb3\x95\x6e\xfb\x94\x91\x37\x71\x7e\xd3\x35\x01\xb6\x9a\xb7\x63\x42\x61\x3a\x99\x1c\x8f\xe9\x04\x85\x3d\x09\xf4\x3c\x0d\x0f\x8e\x27\xc7\xf1\x33\xc1\x3a\xed\x18\xc4\x21\x65\xb8\x1d\xea\x76\xf5\xf8\x3a\x95\x44\x7f\xd3\x15\x08\x36\xd5\x44\xf8\x24\x06\x5d\x21\x24\x35\xa6\x42\x03\x79\x95\x59\x59\x66\xc1\xdb\x34\x11\xe2\x5a\x92\x28\xad\x10\x0c\xc7\x1d\x1a\x8c\xcc\x65\x26\x74\x23\xa7\x40\x70\xf1\x41\x50\x78\x43\x8b\xfe\x37\x39\xae\xcf\xce\xcf\x29\x00\x1f\x3b\xbe\x90\xc5\x42\xe9\x5c\x84\x58\x32\x02\xaf\x0c\x2e\x2a\x17\x3c\xad\x45\x96\xa1\x8f\x45\x72\xa1\xef\xd0\x96\x99\xc0\xa1\x78\x9d\x83\x72\xc8\xe5\x72\x65\xc9\x6e\x97\x42\xbb\x38\x3f\xec\x00\x3d\x0d\x46\xb0\x5e\xc9\x84\x75\xc3\x7a\xc5\x1a\x3b\xbc\x6a\xe2\x13\xe1\x4a\xe3\x09\x1f\xad\x84\xd0\x73\x69\xb5\xd0\x1b\x30\xf2\x5f\xf4\x54\x6b\xef\x8f\xd1\xf8\xae\x6e\x8d\xa4\xef\x68\xd5\x17\x0d\x40\x67\x0e\x10\xf9\xd4\xde\x4c\x6d\xa0\xa8\xf2\x39\x92\x9b\x12\x11\xef\x3b\xe6\x84\x7b\x6b\xd3\x22\x6c\xbb\xa7\x10\x68\x6b\x6f\xa4\xb1\x53\xf8\xe8\x31\xfa\xd4\x51\x0b\x9f\x87\xc6\x0c\x6a\x84\x30\x0e\x66\x71\xca\xe1\x1e\x6d\xcd\x8a\xfb\x5c\xda\x30\x72\x9f\x4f\x1b\xc6\x3d\xd6\xa9\x0d\xf3\x0f\xf4\x6a\x1b\x07\xba\x45\xee\xff\x88\x5b\xfb\xba\xcf\x8a\x8e\x25\x42\x88\xe9\xb9\x61\x0b\x9b\xed\xcb\x0c\x34\x67\x87\x31\x17\xb5\x9c\x8e\x9c\x06\x4e\x42\xb8\x78\x8d\x76\x04\x57\x99\xd8\x8c\xe0\x1a\xb5\x44\xd3\x8e\x95\x3d\xab\x3a\xe7\x77\x2d\x36\xc4\x7f\x5a\x91\xa2\xf0\x20\x92\x4c\x18\x23\x17\x1b\x90\xd6\xf4\xf9\x78\x28\x2b\xf0\x4b\x1f\xff\x20\x9d\xb5\x44\x1c\x12\xfe\x5e\x38\x77\xef\xf8\xc7\x9f\x82\xde\x39\xf9\xd3\x8f\x3f\x4d\x9e\x9d\x9f\x9f\x1e\x83\xb4\x98\x8f\x5c\x22\xc7\x01\x95\x06\x7e\xfc\x69\x4b\x82\x21\xa2\xc9\x43\x43\xb2\xa9\x8f\x67\x2e\x1e\x06\x71\x25\xdf\x69\x53\xf2\x11\x78\x2d\xda\xc2\x1a\xf6\x44\xed\xec\x5e\x90\x42\x73\x59\xc4\x94\xd9\x21\x93\xb9\xb4\x98\x9e\xf9\xf5\x28\xaa\x19\x02\x7d\x00\x11\x08\x6b\x69\xe8\xdd\xe0\x54\x1a\xe4\x94\x7d\x55\xf8\x45\xc3\x26\xdd\xdc\x3a\xb7\x60\x28\xbe\x57\xc4\xd4\x5b\xf6\x17\x08\x99\x8b\x87\x40\xc5\xae\x6f\xd2\x62\x85\x51\x87\xe4\xa3\xd6\xcc\x01\x59\x25\x7c\x7e\x98\x11\x06\x03\xc2\x29\x8c\x41\x6d\x4f\xfc\xc9\xfc\x3c\xa3\xd1\x3f\x8c\x20\x47\x63\xc4\x12\xa7\x70\x7c\x53\xb3\x43\x22\x8a\x42\xb1\x46\x5d\x6a\x14\x36\xb8\xea\xd6\x9f\xb2\x1b\xf5\xc3\x71\xd7\x5c\x37\xbf\xed\xcf\x22\xf8\xb5\x66\x1e\x5c\x7f\x00\x2d\xc5\x68\xf6\xb5\x6b\x43\xbd\xfa\xb4\xab\x0f\x76\xc9\x6d\x89\x52\x78\x96\xe2\x42\x12\x73\x18\xd4\x52\x64\x61\x77\x5e\x9f\x94\x98\xc8\x85\x4c\xc8\x82\x44\x70\x57\x6e\xa2\x81\x95\xb8\xc7\x46\xc5\x80\x01\x79\xbd\xc7\x66\x99\xcc\x8f\xe8\xc0\x8d\xac\x10\xc1\x5d\xab\x9c\x28\xb6\xf1\xd1\x0b\x5b\x2b\xb2\xa7\xcb\x8a\x5c\x85\xcb\x57\x6c\xd6\x4d\x73\x50\xb3\x4c\xe1\xb5\x47\x88\x82\x9c\xe3\x7b\xd4\x14\xb9\xf6\xfa\xd2\x00\x3e\x94\x98\x58\x17\xb1\x53\xf0\x5e\xc8\xdf\x2b\x04\x91\xab\x62\xe9\xd5\x14\x63\x40\x0c\x2d\x0b\x67\x44\x3d\xad\xb6\xc5\x46\xd7\x6e\x89\x7e\x58\xbc\x4d\x1d\x78\x63\xda\x7e\x3d\x9c\x63\xda\xc2\x00\x7b\x6d\xa8\xc7\x69\xaf\x05\x75\xe3\xf6\xd9\x4f\x37\xea\xb1\xd6\xd3\xcd\x3e\xd0\x76\xf6\x88\x19\xfe\xfe\xa8\xe5\x7c\xca\xff\x3d\x05\x78\xaf\x36\x22\xb3\x1b\xe0\x22\x48\x78\xf8\x8a\xc5\x20\x84\xb0\x79\xa9\x8c\x98\x53\xf4\xe7\xc7\xc6\x9a\x1f\xf3\xc3\x52\xde\x93\xe3\x1b\x7c\xcd\x84\xe2\x7c\x62\xa4\x85\xe4\xcc\x67\xb3\xbe\xf3\x14\xe8\x44\x7c\xe9\x86\x3d\x31\x07\x52\x06\x07\x35\xa2\xf5\xb6\x09\x8e\xc2\xf9\xdf\x2b\xd4\x1b\x67\x1c\x6e\xdf\x87\x49\xb7\x81\xe9\xb8\x10\xc6\x9c\x1a\x00\x90\xa0\x08\x8d\x2d\x06\x2f\xc5\xa6\x5e\x10\xe6\xc2\xb8\xe4\x96\x5d\xa1\xc1\x28\xde\x2c\x3b\x6d\x74\x7a\x3c\x1e\x11\xe8\x39\xa9\xe4\xda\x7a\x5f\x53\x8b\xe4\xce\x91\x50\x16\xa9\xbc\x97\x69\x25\xb2\x7a\xf9\x38\xcd\x25\xa3\x38\x28\x39\x75\x11\x7a\x65\x2f\x8b\x85\x32\x53\xf8\xe8\x0f\xe7\x53\x3b\x09\xe4\x05\x66\x60\x5c\x97\xa5\x26\x13\xf8\x87\xc8\x64\x2a\xac\x4f\x7e\x99\x2a\xe7\xfc\x7b\x96\xd1\xf4\xe0\xeb\x4b\xd4\xb1\xba\x32\xa4\xc6\x9f\x8d\xcf\x5b\x60\xef\x05\x49\x96\x15\xd9\xcb\x8a\x7c\xda\xf3\xce\x6b\xd2\x77\x81\x55\x64\x11\xf1\x1c\xe0\xe2\x06\x90\xf8\xf1\x2f\x61\xee\x38\xa9\xec\x0e\x7b\xe1\xcd\x53\x9c\xf7\xf3\x8c\xf0\x6c\xda\xa7\x6b\xb7\xd9\xb8\xfe\xe1\xbb\xed\x18\x2a\x3a\x58\x63\xe4\xd2\x19\xb4\x00\x6f\x20\xf2\x0f\x2b\xcd\xfa\x83\x3a\x61\xfe\x7b\x27\x96\x4d\x78\x1c\xce\xf4\x02\xec\x25\xda\xc8\x6d\x5c\x8a\x0b\x67\xbd\x23\xf3\x37\xb0\x38\xec\x56\x90\x35\x43\xef\xd5\x91\x35\x36\x7b\xd4\x64\x1c\xf8\x58\x4d\x19\x01\x1c\xa8\x2c\x9b\x52\xd9\xe5\xb4\xef\x10\x69\xb8\x5a\x08\x2b\x30\xab\x34\xfa\x0a\x99\x69\xd5\xb3\x02\xdb\x93\x70\x39\xaf\x81\xb4\x63\x11\x5d\x86\x9e\x0e\xe9\x95\x26\x7f\xf3\xc9\xf9\x76\xa1\xff\x3d\x26\x28\xef\x63\xf6\x10\x61\x8e\x05\x2e\x64\x22\x29\xaa\xf6\x0e\xbe\x5f\xbb\x05\xed\xa5\xe0\x33\x0b\xb9\xc8\x44\x23\x69\x02\xef\x5c\xf3\xa4\x00\x98\x5d\xd6\xf0\x6d\xbc\x44\x4b\x47\x70\x72\xda\x61\xda\x44\xe5\x39\x16\xa9\xf3\x2f\xce\xe0\x83\x69\xc8\x12\x37\x42\x90\x43\x52\xe0\xda\xd5\xb9\x1c\x05\x2e\x32\xb5\x76\xbb\xd0\xed\x5d\x48\x03\x15\xd1\x0d\x6e\x23\x5b\x6d\xc2\x46\xaf\xaa\x79\x26\x93\x2b\x61\x57\x27\xa7\xb7\xed\x20\x8a\x34\x3b\xc9\x6d\x70\x91\x52\x5c\x88\x2a\xb3\x03\xeb\x8c\xfb\x91\x02\x57\x3b\x45\x96\xa9\x35\xcd\xd7\xdc\x5c\x50\x95\x5e\x41\x22\x24\xa2\x14\x73\x6e\xc3\x00\xe9\xa4\x73\x51\xd9\x4a\x23\x0f\x63\x6f\x8b\x8b\x9c\xa1\x82\x52\x0f\xef\x79\x3b\x01\x87\x29\xbc\x8c\x83\x7e\x7e\xf2\xa2\xd8\xbc\xf7\x29\xd4\x2f\xed\x8e\x8d\xb0\xf1\xaf\x7f\x6b\xf3\xc3\xdb\xa8\xb4\x62\x65\x25\x11\x59\x52\x65\x01\x65\x91\xab\xaa\xe0\xcc\x8d\x11\x19\xc2\xbd\xc8\x2a\x24\xe3\x53\x98\x05\x6a\xed\x6b\x31\x9e\xd7\x86\x09\xf3\x4e\x59\x84\x33\xb8\xb4\x8d\xd8\x64\x8e\x76\x8d\x58\x90\x6e\x67\x82\x3f\x1b\x9f\xb7\xe3\xae\xd7\x0f\x34\x65\xe1\x53\x5a\x71\x61\x69\xe0\xc1\xe5\x9e\x6a\xbc\xa5\x81\xf3\xf1\xff\x79\x4e\x43\x8b\x26\xa7\xfa\x29\xeb\xb0\x26\x0f\x7a\x0a\x0f\xdb\x63\x54\x16\x0e\x91\x65\x1b\x28\x51\x27\x58\x58\xb1\x44\xe6\xef\xe8\xce\xbb\x62\xab\x45\x9d\xb3\x60\xce\x85\x91\x06\x4a\x25\x0b\xdb\x4e\x07\xc9\x02\x8c\xca\x64\x4a\x27\xed\x1c\x01\x93\x0b\x6d\x63\xbb\x8c\x81\xf5\x4a\x66\xc4\x10\x29\x16\x09\x89\xcb\x82\xb8\xe5\xf6\xc3\x85\x7c\x78\xfe\xd3\xad\xb3\xa6\x22\xd3\x28\xd2\x4d\xec\x45\xe9\x24\x9c\xb0\xb5\x3c\xf3\x4f\x22\x0c\xd1\x36\x11\xf4\x85\x62\x7c\x55\xa2\x16\xfd\x6c\x15\x7b\x2e\x85\x95\x1a\xb3\x0d\x29\x1a\xd4\xb9\x2c\xa4\xb1\xbe\x6a\xb7\xa4\x50\x39\xce\x74\x41\x81\x77\xaa\xaa\x92\x0e\xfc\xff\x86\x45\xd5\x02\x4a\x8d\x89\x34\x52\x15\xe3\x1e\x93\x26\x95\x9d\x82\xdb\x52\x9b\xeb\xfe\x33\x24\x3c\x5b\xf5\x62\xd7\x11\xe6\xca\x7c\x4e\x5a\x68\x1b\xb4\x84\xd8\x90\x1c\x37\xce\x76\xd4\xa3\x85\xc6\xcc\xa1\xbb\x92\x65\x64\x2f\x7a\x71\xeb\x52\x96\xb7\xa1\x7d\x82\x94\xe5\xc8\xa7\x4a\x28\xea\x58\x02\x66\x06\xeb\x04\x9e\x5a\x17\xa8\x7d\x0a\x6f\x2d\x0a\xa7\x91\xd9\x79\xeb\x4b\xe1\xce\xe6\x01\xf6\xa3\x48\x24\x4a\x89\x85\xfd\x76\x41\x1d\x35\xe9\x37\x1a\x5a\xab\x6b\xb5\x4a\x8d\x03\xb6\x89\x8c\xc5\xdf\xd8\x8d\x82\x27\x4f\xf8\x9b\xf3\x65\x60\x0a\xc7\xe4\xd9\x38\x31\xa9\x65\x53\x16\xf4\x48\xa6\xa0\x45\xb1\x44\x90\x63\x84\x8f\xe7\xa3\x67\x9f\x8e\xf7\x45\xd7\x51\xff\xce\x20\x6e\x7b\xd0\x8b\x71\x0e\x4c\xff\xd5\xfe\x3a\x7e\xcf\xd3\xf8\xcd\x5b\x1f\x57\x4a\x62\x1f\x34\x6e\x84\x15\x1a\x7b\x8b\x8c\x18\x1d\x75\xdb\x3f\x8e\x6a\x9b\x6b\xb8\x35\x08\xd6\xe2\x78\x8f\x85\xad\x58\x1b\x34\x61\xd5\xf5\x6d\xb3\x96\x36\x59\xcd\x15\x45\x2a\x61\xeb\xa3\x08\x77\xc5\x72\x1d\x7a\x93\x60\x5e\x79\xb0\x21\x7d\x54\x23\x17\xdd\x0a\xfa\x56\x28\xdf\x6d\xd4\x73\x89\x06\x6d\xd7\x14\xea\x6f\x8d\xa3\xf7\x5e\xc6\xa4\xe4\x97\x13\x6f\xf4\x2f\x6e\x02\x88\x2e\x15\xdf\x62\x2a\xc5\xb7\x56\x23\x62\xe3\x14\xdb\xf6\x98\xd7\x67\x58\x10\x1a\x27\x65\x01\x72\x6b\x2c\xef\x97\x7d\x74\x26\xde\x2d\x25\x2d\xe6\xfd\x24\x26\x3f\x9d\xc2\x47\x1e\x33\x90\x5b\x6f\xbd\x1e\x4e\xab\xd3\x10\x98\x75\xe0\xef\xf5\x75\x03\x2d\xf7\x39\xba\x6e\xdc\x3e\x2f\xd7\x8d\x7a\xac\x8b\xeb\x66\x1f\xe8\xdf\xc6\xd3\xe8\x2a\x90\xef\xe0\xdc\xfa\xb4\x18\xf7\x6d\x78\x53\xea\xd6\x1b\x85\xe6\x09\x66\x22\xee\x5b\xd3\x1a\x4d\xa9\x64\x4a\xf2\xca\x1d\x1c\xb4\x95\xf1\x20\xef\x74\x59\x87\xcb\xe5\xc1\x87\xe5\xb9\x3d\xbe\x58\x70\x5d\x7d\x6b\xb3\x13\x41\xe1\x89\x67\xec\xc6\x26\x2a\x47\xe3\x83\x78\x02\xcc\x11\x1f\xbd\x99\x98\x6a\xce\x23\x84\xf1\x8a\x6a\x8e\x29\xac\x50\x63\x5d\x0c\xc5\x7b\xcc\xc8\x8c\x8e\x73\xf5\x2f\x99\x65\x62\xac\xf4\x72\x82\xc5\xd9\x87\x6b\x2e\x94\x4e\xfe\x0b\xe7\x93\xbf\xdf\xdc\x5c\x4d\x7e\x15\x46\x26\xe6\xb3\x5a\x7c\xe6\xaf\x6f\x2f\xdf\xbe\xfe\xcc\xac\xd3\x4f\xd5\x06\x7a\x6c\x31\x37\x83\xbb\x1b\xf5\xa7\xb5\xf9\x81\xd9\x9d\xa6\xce\xe8\x9f\xee\x8b\x38\x79\x16\x3f\xed\x92\x86\x4c\x26\x58\x18\xee\xae\x55\x9a\x0f\xd1\xaa\x48\x13\x53\xa6\x0f\x4c\x06\x3f\xca\x4c\x5a\xba\x21\x2a\x64\xe6\x96\x66\xc7\x8f\x2f\xe4\x87\x86\x07\x0a\x8a\x5c\x81\x51\x9a\xb0\x62\x3a\xee\x15\xfb\xde\x78\x5c\xfa\xd9\x42\x42\xe4\x32\x76\x4d\x6c\xa1\xe6\xe7\x46\x63\xc5\xce\xc6\x9a\x36\x34\xd2\x19\xf1\xcb\xe1\x8a\x23\x20\xbb\x57\x73\xf8\x81\xfb\x54\x87\x1f\xf6\x58\xdd\xe1\xa7\x1f\xa8\x3c\xfa\x94\xfe\x0e\xda\x63\x40\x7d\xe0\x43\xa9\x38\x50\xfa\xf0\xfe\x8d\x6b\x1d\x21\xf3\x6d\x31\x07\xee\xf9\x05\x7c\xb0\xa8\xc9\x78\x19\x69\xb1\x5f\x95\x6e\xba\x98\xcc\x57\xf3\x4d\xb3\xb3\x87\x78\xe9\x0e\x61\x1c\x9b\x78\x7e\xcd\x54\x42\xab\xa8\xd0\x14\x14\xa3\x3a\x76\x15\xb5\x5c\x4a\x5a\xac\x0e\x47\x99\x29\x7b\xca\xea\xb5\xc7\x8a\x90\xfe\x96\x86\xae\xcf\x70\x40\x4b\xd7\x6c\x67\x27\x56\xaf\xde\xdb\x40\x65\x7f\xc9\xb7\x1e\xbc\xb7\xea\x5b\x0f\x7d\x74\xe1\xb7\x06\x71\x68\xed\x77\x90\xae\xdf\x81\xf3\xc0\xa7\xe5\xba\x7c\xe7\xd2\xad\x75\x29\xd8\xb7\x19\xb9\x8c\x8d\xbb\x32\x62\xb5\xc4\x7b\xf4\x9c\xe0\x01\x05\x78\x7b\xd9\x8f\x62\x0d\xb4\x55\x09\x82\x95\x5b\xed\x78\x39\xfb\x58\x6a\xb2\x27\xbc\x1c\x85\xa6\xb4\xa0\x73\xf1\xea\x54\x41\xcc\x75\x37\xd8\xef\xdd\xc5\x4d\xdd\xc5\xff\x4a\x58\xd1\x20\x56\xdd\x9b\x55\x44\xb8\x6b\xb6\x63\x2c\x5a\x5e\xc5\xea\x90\x9a\x89\xa5\x1c\xd7\xa8\xd7\x8f\xf9\x3c\x8c\x2b\xdf\xc7\x14\xbf\x74\xba\xc1\x1c\xd6\xec\x72\xbb\xf6\x8f\xbc\x32\x9c\x2b\x25\x51\x72\x8b\x78\x92\x0f\x6c\x30\xd6\x71\x03\x85\x21\x86\xdd\x49\x56\xb1\xcd\x89\x35\x04\xde\x40\xa8\x12\xf8\xbe\x15\xdf\x12\xe3\x6e\x7c\xd4\x2f\x7b\x7b\x29\xa3\x6f\xdd\xf4\xb3\x3b\x3b\xd1\xf2\x5e\x58\x6c\x6e\xa5\x8e\x40\x7a\x9b\xe1\x50\xc5\x15\x8e\x75\x0b\x4c\x23\x33\x64\x15\x1f\x76\xaa\xc5\xda\xd5\x1c\xb8\xfa\xe0\xac\x5f\x64\x87\x95\xca\x78\x9f\x34\xa0\x8f\xb7\x5f\xc1\x63\xee\x30\xdc\x7a\x08\x0d\xa8\xec\xd1\x84\x36\xd6\x56\x69\xc3\x5f\x99\x31\xd5\x62\x21\x13\x6e\x88\xd4\x28\xd2\x33\x8e\x66\xea\x7b\x34\x81\xea\xad\x65\x42\xb7\x99\x81\x93\x14\x4b\x65\xa4\x85\xbf\xf8\xcb\x1f\xf0\x17\x7f\x83\xe4\xdd\xc5\xcd\x69\x3f\x9b\x16\x5b\xfa\x48\xb5\xce\x45\x72\xb7\x16\x3a\x35\x5c\x32\x12\x56\x7a\x72\xb1\x60\xf4\x22\x14\xae\x97\xfa\x34\x9e\x0b\xfb\x07\x71\xeb\xdd\x6c\xaa\xe5\xc4\x53\xa7\xee\x12\x5e\xaf\xb0\x20\xe9\xe4\x9a\x6e\x55\x36\xd7\x1c\x73\x79\xbe\xc0\x75\xfb\x4c\xeb\x01\xbe\x91\x23\x17\x9b\x46\x65\x7e\x8e\x80\xbf\x57\x22\x0b\xe6\x84\xa9\xef\xeb\x44\x2e\xd1\x74\xeb\x38\xf0\x0d\xb3\x11\xe9\xc8\xdb\xbe\xc0\xb9\x21\x35\xde\xee\xf2\x50\xa7\x1d\x22\x9e\x6b\x8f\x37\x7d\xd6\x43\x2c\x94\xe6\x5b\x2f\xae\x7b\xa1\xac\xe5\x73\x1c\x43\xe4\x82\xd4\x1e\xc5\xc3\xa2\x05\x5c\xa3\xb1\x5a\x3a\x4e\xa1\x75\x5c\x38\x48\x91\x5a\x2d\x5a\x63\x78\xa7\xac\x98\x67\xae\xbf\xeb\x96\x6c\x64\x97\xd2\x9d\x34\x2c\x8f\x09\xf1\xea\xed\x88\x05\xf7\xb6\x75\xc9\x6c\xdc\xbf\xa1\x74\xdb\x12\x75\xee\x06\xfe\xbd\x92\x83\x7a\xaa\x4b\xd9\xef\x43\xb6\x86\x32\xe8\xd3\xad\x9d\x82\x1b\xa6\x1b\x97\xf1\x73\x59\xc8\xbc\xca\x6b\x5a\x5d\x79\x81\xbe\xed\x14\x3c\x87\x84\x7e\xf7\x96\x2e\x42\xeb\xa7\xcf\x30\x66\x6a\x6d\x5c\x6a\xdd\x5f\x65\x21\x1f\x2a\x2f\xed\xa6\x6b\x7f\x82\x56\x20\x04\x82\x19\x60\x1b\xd0\xc9\xc4\x39\xad\x3c\x90\x0b\xe4\xf4\xfd\x6b\x02\xdd\xe4\xd5\x93\x93\xd3\x29\xfc\xff\x1d\x62\x78\xba\xeb\x22\xca\x36\x63\xd3\xbe\x73\x32\xac\xc6\x3b\x63\xb6\xa9\xcc\x21\x50\x5d\x61\x1b\x1a\xd3\x3d\x86\xe1\xe5\x76\x8f\x1a\xa4\x59\x38\xc1\x83\x68\x17\x20\x1d\x96\x29\xec\x62\x3e\x96\xe6\xda\x85\xb9\x27\x6a\xe1\x10\xfc\xf9\xc9\x97\xbd\x3a\x73\xd4\x57\xab\x41\x90\x47\xb0\x4f\x84\xbf\x92\xeb\x37\x85\x63\xaf\x7e\x59\x32\xd8\x37\xf0\xf7\xfd\xf6\xab\xec\x9d\xcb\x93\x1a\xd9\x87\x42\x53\x6f\x1d\xf7\x89\xd4\x3b\xba\x03\xc9\x14\x84\x78\x00\xbf\xfe\x16\x0e\x26\x93\x07\x7a\x08\xa1\xbe\x09\x81\x6f\x23\xd4\x78\x6f\x72\xb8\x21\xaa\xb3\xc6\xe7\xfe\xc0\x5a\x5a\x67\xf5\xc7\x81\x61\x0d\x81\x85\x59\x4b\x7e\xb7\xc1\xac\x11\x9f\x75\x1f\x6c\x9b\x52\x1f\xf2\xac\xfb\x60\x3b\x4a\xf5\x98\x06\x62\xbb\x26\x0e\xca\xf9\x6c\xa7\xf4\x1f\x1e\xf0\xf5\x9d\x7f\x0e\xfb\xd6\xa1\x91\x84\xb3\xd2\x3e\x02\x12\xce\x05\x4c\x63\x81\xa6\x1b\x10\xf6\x80\xed\x0b\x0b\x7b\x13\x1e\x1b\x1c\xf6\x00\x1d\x18\x22\xee\x8a\x7d\xc2\xdf\xff\x5e\xa0\x48\x46\x73\xa5\xd6\x5c\xa7\x0b\xb6\xf2\xcf\xa6\x61\x67\x1f\x11\x30\x2e\xa5\x0b\x37\xd5\x3d\x6a\xb7\xed\x22\x05\xbe\x13\x2b\x13\x13\x0a\xf1\x6d\x6b\x1e\xc0\xc7\x10\x6f\x8e\x99\x2a\x96\x04\x6e\x4f\xf0\xd8\xbb\x42\x48\x4e\xb4\xc8\x7b\x6e\x12\x23\xcb\x1e\xb3\xbf\xa6\xea\x0a\x78\x7e\xb9\x1a\x93\xbe\xa3\xb0\xed\x4e\x32\xbc\x6a\x54\x87\x86\x56\x1b\x22\x45\x08\x14\x77\x2d\xb8\xe7\x06\x70\x4c\x32\xb8\x2c\x0f\xff\x66\x81\x4f\x3e\xf1\x12\x5c\xb1\x6f\x1e\xb5\x98\xab\xca\xee\x5f\x16\xeb\xdc\x45\x2b\x7b\xd2\x5a\xfb\xfa\xf7\x4a\x68\xf4\x55\x10\x77\x91\xac\x95\x43\xdf\xbb\x8a\x61\x00\x97\x39\xb7\x2c\x71\xce\xbc\x05\xff\x57\x51\x14\xa8\x5b\xf0\x63\xf3\x44\x0d\x76\xd4\x8d\xff\x39\xba\x12\x7c\xdf\x02\x0a\x14\x1a\x9e\xfd\x78\x7e\xfe\xf0\xfc\xaf\xe7\x7d\x04\xe6\xbc\xc2\x56\x04\xae\x55\x22\x3d\x69\x8d\xdb\x9a\x48\x56\xdd\xf5\xff\x6c\xc0\xb8\x71\x2b\x95\x63\x29\x96\xd8\xea\xab\x86\x2b\xe5\xaf\x5b\xde\xe1\x26\x06\x59\xc7\xb2\x30\x56\x2c\xb5\xc8\x8f\x47\x70\x6c\xd7\xd2\x5a\xd4\xf4\x31\x95\x26\x51\x3a\x3d\xee\x5c\x8f\x8e\x14\xe3\x95\xcc\x14\xbe\x38\x5e\x68\x1d\xce\xbf\xeb\x5a\xf4\x36\x66\x68\x8f\xea\x1f\x66\xfb\x7d\x9f\xd6\x9d\xf9\xbb\xb7\x16\x86\xfd\x5b\x2f\x60\x37\x76\x0a\xb3\xe6\xbe\x07\x5c\x86\x7a\xbb\x30\x6b\x6e\xbe\x3f\xb4\xb1\x73\x98\x35\xe9\x30\x00\xd5\x11\x81\x20\xba\x4f\x8f\x35\xa5\xcd\xab\xe0\xdf\xc3\x9a\x1e\x76\x63\x7c\x68\xce\xf7\xb1\xa9\xdf\x74\x97\x7c\x8f\x55\x08\x7f\xdf\xd3\xb2\xd6\x5a\x2f\xf6\xc3\xb9\x04\x51\xf3\xd7\x63\x5c\x15\x20\x46\xa0\x1d\x4b\xca\x2d\x61\xde\x54\x20\xf7\xd0\x4a\xd7\xc4\xd2\x68\xa1\xbd\xc3\xcd\xc4\xb5\x44\x94\x42\x6a\x03\x82\x2c\xa3\x0b\xce\xb9\x33\x9e\x4b\x50\x0f\xb6\x12\x19\x2b\x4d\x5e\x35\xa8\x7c\x74\x20\xbb\x26\xf4\x86\x1e\xb6\x6d\x66\xf7\x22\x10\xcf\x1b\xc3\x1b\x79\x87\xf0\xab\x48\xee\x96\x5a\x55\x45\x3a\x82\xd7\x1b\x34\x23\xf8\xbb\x90\x7a\x8b\xba\xda\x6a\x2e\x69\x85\xaa\x48\x51\x67\x6c\x7b\xdd\x96\x9a\xab\x8d\x7c\xdf\x8c\xb1\xe1\x31\x93\xd3\x77\x1c\xf2\x90\x98\xf7\xf3\x9b\x8e\xbf\x95\x43\xc0\xfa\xb8\xf0\xe3\x46\xf9\xb1\x85\x8f\xf7\x03\xd8\x2d\x6e\x9c\x03\xb9\x43\x2d\xc2\x7a\x62\xae\x5d\x3f\x8e\x34\x8e\x4c\xe4\xd3\xb8\x2d\x44\x36\x68\x02\x27\xa3\xc5\xfa\xbe\x48\x70\x04\x1b\x55\xf9\x0b\x4f\x26\x60\xe5\xec\x76\x55\xc8\x07\xb0\x32\x47\x63\x45\x5e\xba\x20\xc7\xf7\xf6\xb4\xf0\x13\x06\x8e\x5f\x09\x8b\xc7\xbc\x61\xcc\xb2\xe6\x5a\x65\x26\x2c\x59\x7b\xb6\x57\x89\x2a\x4c\x95\x7b\x67\xce\xd1\x8c\x7f\xb6\x89\x5b\xfe\x42\x2b\xa1\xe8\xde\x28\x88\xae\x47\xbd\xe6\xe0\x85\x2b\x78\x2f\xb4\xb4\x1b\xf6\x00\x45\x66\x54\xf4\x75\x5c\x35\x2a\xdb\x78\x7e\x17\xd6\x6a\x39\xaf\x6c\xeb\x9e\x6e\x9b\x19\x1c\xf7\xc7\xde\x8e\xd0\x24\xc6\xe8\x65\x59\x0d\xc1\xb0\xab\xea\xb7\xe6\x9f\x85\x63\x77\xce\xaa\x66\x9c\xfa\xa7\xef\x9e\x4f\x3d\xce\xbb\x6e\x12\x8d\x7a\x9c\x32\x1a\x24\xc5\xa8\x0b\xf3\xdb\x2d\x93\x3b\xfc\x99\x5b\x70\xc0\x70\x35\x0e\x7d\xd6\xc4\xa1\x3f\xd4\xa1\x02\x33\x8f\xd3\x36\xab\xd1\x52\x58\xce\x0c\xf0\x8f\xc7\x60\xd4\x36\x87\x6a\x28\x3f\xdd\x4f\xe3\x96\x92\xef\xa0\xa4\x9c\x7f\xc5\xda\x66\x50\x4d\x99\x81\x02\xa5\x43\x61\x0a\x1f\x79\x44\xbf\x99\xa6\xf3\x7e\xf0\x94\xfc\x36\x66\x7e\x70\x83\x7c\xad\xe5\xc8\x32\x8a\x34\x65\x40\x04\x79\xea\xb0\xda\x01\x72\x2c\xca\x12\x8b\xf4\xc4\xee\xb8\x6f\xdd\x35\xe4\x7e\xa7\x7c\x50\x7b\x8b\xa0\x6e\xf0\x3e\xbb\xec\x46\x3d\xd6\x12\xbb\xd9\x07\xda\xde\xde\x39\x85\xbf\xef\x61\x6d\x3d\xa1\xe2\x4f\x04\x50\x48\x2b\x8c\xcc\x36\xc4\x53\xf7\xa8\x2d\x5f\x09\xe3\x77\x42\x73\xb1\xca\x1f\x03\x97\x40\xda\xc1\x9d\xaf\xc5\xa4\x8a\xd5\x0c\xeb\x15\x94\x7c\xeb\xcb\x19\x9c\xb0\x6a\xdd\x71\x46\x2c\xed\x0d\xd0\x4d\xb0\x51\xd2\x90\x79\x5f\xa9\x78\x03\xd3\x15\xa1\x30\x06\x7c\x76\x85\xb9\xbb\x08\xae\x05\xb7\xab\xbb\xf6\x45\x8f\x57\xeb\x38\x09\xf3\x1b\xe5\x4f\x94\xbe\x34\x7c\xe1\xa8\x8c\xbe\x8e\x00\x1f\x38\x87\x96\x52\x68\x4b\x8c\xed\xc6\x7c\xfa\xe5\x74\xda\xa7\xfe\x64\x02\x8d\x94\x18\xb7\x8f\x1a\xdf\x3f\x4a\xdb\xe6\x1e\xd2\xa0\x03\xbc\x85\x75\xcd\xdf\xb2\xbe\x9d\x1f\x92\x76\xe9\xb8\x63\xc2\x37\x9d\x4e\xd4\x95\x28\xd2\x0c\x9d\x90\xb3\xe5\x12\x59\xb6\xe1\x76\x56\x5b\x0f\xfe\x67\x65\x1a\x6b\x33\x79\x02\x7c\x70\x59\xff\x71\x93\x4b\x5b\x9b\x1d\xbe\xb0\x49\xf6\xf5\x8e\xd0\x6e\x8d\xfd\x61\x80\x07\x89\xa8\x63\x8d\xb9\xba\xc7\x93\x3b\xdc\x4c\xe1\x6e\xdb\xad\xcc\x86\xe4\x0f\x28\x19\x98\xc1\xc7\xfa\xb7\xf2\xe2\xfa\x0c\x9e\xc3\xbc\xf6\xd2\x11\x02\xcc\xdc\x09\x79\x83\x73\x17\x6d\x0d\xcd\xfc\x78\xf7\xe9\x87\x8e\xa9\x29\x64\x56\x9b\x99\x42\x66\x6d\x6c\x3b\x2a\x86\x55\xd1\xd0\x06\xbc\x40\x79\xc6\x72\xb3\x4e\xbb\x5a\xc8\x1b\xf3\xad\x57\xc9\x1b\x86\xa5\xd1\xb2\xc2\xed\xf3\xae\x5a\xe3\x47\xb0\x24\x99\x18\x87\x7b\x91\xa2\xa0\x96\x7f\xf9\xa1\x19\x8c\xcd\x2b\xfe\x35\x43\xf2\x1f\x78\xec\x5c\xf9\xf4\x68\xf3\xa6\x88\x03\xda\x6e\x09\xe0\xdb\x9c\x0e\xa2\xbf\xc9\xe1\x46\xb1\x73\xd3\xf1\x66\x86\x2e\x67\xf3\xdc\xd0\xbc\x3c\x70\x89\x3c\x17\x0f\x5c\xe2\x8a\x6e\x29\x4f\xd8\x09\xd2\x5d\x36\xde\x06\x70\xe0\x67\xea\x9a\x28\x1b\x16\xe0\x3d\x3f\x21\x13\xef\xd9\xbf\xc1\x25\x16\xa9\xd0\x9b\x11\xbc\x2e\x65\x32\x22\x1a\xe1\x08\x3e\x14\x89\xca\x73\x55\x8c\xe0\x25\xff\xdf\xbe\x70\xef\x96\xe8\x78\x1a\x3b\x92\x4c\x5d\x0f\xa9\x4d\xb2\x51\x6b\xbf\x83\xed\xdf\x43\x57\xae\xdd\x99\xcd\x9c\x0c\x3f\x79\xd2\x22\xcb\x6c\xdb\x55\xec\x52\x14\x32\x39\x39\x7e\x11\x58\x21\xf2\x97\x09\x27\xd9\xfe\x6d\x45\xa5\x99\x91\x7a\xf7\xad\x07\x82\x6d\x87\x4e\xe7\x74\x61\xfb\x8d\x6a\xf8\x03\xbd\xe0\xbd\x5b\x67\x6e\x37\x87\x59\x79\x37\x78\xef\xa5\x33\xe7\x87\x3e\xf6\xc6\x19\xcf\x3e\xf4\xba\x59\x57\x2c\xc3\xdf\x1f\xb0\xf2\x5f\x8f\xfe\x27\x00\x00\xff\xff\x91\xf7\x9b\x5e\x7b\x57\x00\x00" +var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xbc\x7c\x6b\x6f\x1b\x39\xb2\xe8\x77\xff\x8a\x1a\x2f\x90\xb5\xb3\xb2\xe4\xcc\xce\x0d\xee\x15\x46\x3b\x37\x93\xc4\xb3\x3e\x48\x72\x8c\xd8\xd9\x73\x80\x20\x88\xa9\xee\x92\xc4\x75\xbf\x86\x64\x5b\xd6\x06\xf9\xef\x07\x55\x7c\x34\xfb\xa1\x47\x3c\xd9\xe3\x0f\x89\xa4\x26\x8b\xc5\x62\xbd\xab\xd8\x93\xa7\x4f\x8f\x8e\x6e\x56\x52\x43\x52\x16\x46\x89\xc4\x80\xcc\xab\x0c\x73\x2c\x8c\x06\xb3\x42\xc8\xd1\x88\x54\x18\x01\xda\x88\x22\x15\x2a\x85\x4a\x95\x55\xa9\x31\x3d\x92\x05\x5c\xbc\xb9\xbc\x3a\x3b\x7f\xfe\xd7\xe7\xe3\xa3\xa3\xf7\xb8\x98\xc2\xca\x98\x4a\x4f\x27\x93\xa5\x34\xab\x7a\x3e\x4e\xca\x7c\x52\x16\x8b\xac\x5c\x4f\xf8\x9f\x79\x56\xce\x27\xb9\xd0\x06\xd5\x64\x91\xc9\x4a\x4f\x7e\x3c\xff\xf1\xd9\xf9\xff\x7b\xf6\xfc\xac\x58\x98\x33\xbf\xd8\x38\x4f\x8f\x8e\xae\x8d\xaa\x13\xa3\x41\x14\x29\x28\xd4\x65\xad\x12\xd4\x90\x88\xa2\x41\x11\xca\x02\xa1\x54\x90\x97\x0a\x8f\x02\xa6\x66\x53\xa1\x1e\x41\x22\xb2\x0c\x53\xb8\x97\xb8\xd6\x63\x78\x2d\x92\x15\x7f\xe6\xc7\xa0\xb0\x52\xa8\x69\x97\x47\x02\x52\xb9\x58\xa0\x22\x78\x77\xb2\x48\xa1\x5c\x84\x5d\x8f\x40\xd7\xc9\x0a\x84\x06\x01\x89\x42\x61\x4a\x05\x73\x59\x2e\x95\xa8\x56\x9b\xa3\x52\x81\x80\xff\xb8\x7a\xfd\x1b\xc8\x5c\x2c\x11\x16\x32\xc3\xf1\xd1\xd3\xc9\xd1\x91\xcc\xab\x52\x19\xb8\xa8\x8b\xa5\x9c\x67\x78\x53\xde\x61\x01\x0b\x55\xe6\x70\x3c\x9e\xd4\x46\x66\xd2\x6c\x26\xad\xa7\xe3\x24\x4d\x8e\xfd\xbc\x77\x65\x31\x3c\xb5\xfb\xc0\xce\x3a\xaa\xea\x79\x73\x80\x6f\x1d\xee\xff\xa0\x8d\xc3\x97\xa3\x23\x00\x80\xc9\x64\x02\x2f\xe0\x3d\xea\x32\xbb\x47\x45\x67\x78\x2f\x53\xd4\x20\x92\x04\xb5\x06\x53\x82\x00\x8d\x26\xde\xbb\xa3\x9c\x9f\x1e\x81\xd1\x7c\x32\x44\x78\x7f\x2e\x70\x82\xe3\xe5\x18\x44\x01\xef\x2e\x6e\x4e\x3b\x87\x64\x88\xbf\x64\x61\x50\x2d\x44\x82\x01\x8e\x29\x3d\x1a\x11\x16\xc4\x72\xbc\x2e\x98\x95\x30\x20\x0d\xe8\xba\x22\x9a\x74\x10\xa1\x1d\x87\xc5\x03\xec\x66\x83\x5f\x78\x94\x1f\xb9\xa8\x0b\x58\xa2\x61\x8a\x9c\x9c\x4e\xe1\xe3\xcd\xa6\xc2\x4f\xbd\x21\xca\xce\xa6\x61\x27\x9f\x19\x8d\x29\xd0\xc8\xd3\x29\xbc\x28\x36\x96\x1f\x7f\xe1\x59\x5f\x87\xa8\xfa\xb2\xcc\x32\x4c\x8c\x2c\x0b\x90\xc4\x30\x4b\x55\xd6\x15\x51\x94\xd9\xce\x01\x57\x44\x8a\x14\x1f\x60\xbe\x81\xcb\x57\xdf\xb4\xa9\x08\x7e\x7f\x7b\xf3\x52\xa9\x72\x4d\xa8\xfb\xe1\x27\x32\x9d\xc2\x87\xcb\xc2\x3c\xff\xe9\x74\x0a\x4f\xbe\xf8\xdf\xbf\x0e\x91\xe6\xf2\x95\x25\x8c\x1d\xff\xa9\xbb\xc9\x77\x17\x37\x04\x7a\x60\x5f\x1a\x6a\x8d\x29\x1d\xdd\x52\xde\x23\x89\x49\x49\x07\x6f\x10\x2a\x99\x98\x5a\x21\x0d\xb4\x7c\xd1\xdb\xab\xe3\x23\x0f\xbc\xbd\xa9\x0c\x0d\x34\x3b\xe8\x3d\xaa\xeb\x1d\x0f\x53\xa9\xab\x4c\x6c\xa6\xf0\xca\x7e\xf8\xa5\x37\x02\x1f\x0c\xaa\x42\x64\x1f\xde\xbf\x99\xc2\xeb\xe6\x4b\x7f\x64\x12\xa8\xfe\x4a\x18\x31\x25\x6c\x5f\xb6\x7e\xda\x39\xc5\x23\xd2\x9e\xb5\x0d\x2b\x55\x6e\x44\x66\x24\xea\x29\xbc\xf7\x1f\xfb\xa3\x8c\x12\xd2\xe8\x29\xdc\xf0\xff\xbf\x1c\x85\x01\xb2\x90\xe6\x24\x7c\xe3\x5f\x52\xf0\x44\x1a\xb5\x1e\x10\xf9\xb6\x3c\x72\xc4\x83\x86\x7a\xed\xe7\x11\xe9\xa0\x4d\xbb\xf6\xb8\x36\xe1\x60\x88\x72\x5b\x27\x04\x14\x06\xe9\xd6\x9e\x16\x88\x06\x31\xd5\xda\x63\xba\x24\xf3\xbf\x9f\x46\x4c\x47\x7f\x1a\xb3\xc5\x58\xa6\x30\x03\x99\xf6\x1f\x30\xd1\x66\x4c\xbb\xfe\x43\x4f\xb6\x99\x27\x60\x7f\x48\x4c\xb9\x59\x4c\xc7\xfe\xd0\x0e\xf1\x66\x1d\x6a\xee\x9c\x10\x10\xe9\xfd\xd6\x9f\xd6\x10\x6f\xd6\x10\xb2\x3f\xcc\xd2\x0f\x66\x8e\x90\x61\xc0\xd7\xae\xa2\xf0\x8b\xb3\xa2\x98\x0b\x2d\x13\x67\x74\x59\x9b\x17\x49\x56\x93\xd5\x21\x2d\x5f\x88\x1c\x47\x90\xa2\x4e\x94\xac\x58\xa9\x89\x22\x6d\x8c\xc3\xaa\xce\xe7\x85\x90\x19\x2c\xc8\xca\x16\x50\xce\xff\x89\x89\x19\xc3\xdb\x52\x1b\xf7\x45\x83\x5e\x95\x75\x96\x76\x4d\x0d\x2d\xd8\x57\xac\x4e\xd9\x78\x04\xbf\x34\x62\x43\xeb\xdd\x38\x8c\x48\x5b\x11\x76\x7e\xb9\x78\x50\x67\x82\xd4\xb0\x90\x98\xa5\xb0\x96\x59\x06\x73\xf4\xe7\x8e\x29\xc8\x02\x32\xa9\x9d\xef\x62\x56\xa8\x70\x51\x2a\x74\xe8\xb6\xc0\xcc\xf9\x57\x65\x68\x8b\x49\x59\x24\x52\xe3\x78\x70\x4d\x2f\xfc\x84\xe4\x14\xae\x8d\x92\xc5\xb2\xbd\x85\x17\xb0\x56\xd2\x18\x2c\x5a\x44\xfd\x5e\xfb\x11\x90\xa2\x11\xd2\x7b\x54\x6d\xb8\xa3\x16\x28\x5d\xb2\x03\x30\x47\xf6\xcb\xe0\x1e\xd5\xbc\xd4\xc1\x45\x80\x4a\x28\xc1\x0e\x14\xc8\x42\x1b\x14\xec\x70\x09\xd0\xb2\x58\x66\x08\x99\x2c\xf0\x74\x37\x09\xa2\xed\x6d\xa3\x84\xce\x45\x96\x45\x4c\x14\xdc\x3d\x31\x40\x94\x43\x68\xe2\x38\x6d\x4e\x16\x6e\x8d\xf3\xb3\x85\x92\x58\xa4\xd9\x86\x7d\x3e\x38\x91\x63\x64\x47\x70\x04\x57\xef\x7e\x3b\x6d\x01\x61\xce\x77\xf4\xe8\x73\xc8\x88\x36\x7c\x07\x95\x42\x36\xa6\x23\x40\x93\xec\xde\x7d\xd8\x54\xe4\x94\x7c\xb9\x90\x19\x7e\xdd\x65\x08\x62\xb6\xe9\xa8\xfb\x3e\x35\x3b\xba\x73\xfb\x82\x7e\xc8\xa0\x1a\x65\x71\x9a\xf1\xca\x03\xda\x32\x62\xd1\x59\x8c\xc3\x80\xee\x09\xa7\x38\x6b\x70\xd9\xae\x81\x5e\xc0\x0a\xb3\x0a\x15\xbb\x24\xd8\x08\x3c\xf3\x30\x87\x06\x62\x81\xb0\x76\xca\x30\x72\x81\xdc\x40\xe7\xf9\x79\x6f\xa9\xe5\x39\x9d\x46\x46\x31\xda\xb2\x5c\xf0\xc9\xb0\x5c\xcc\x5a\xb3\xc7\xb1\x4b\x49\xae\xe4\xcf\x6e\xfa\xdf\x4e\x4e\xbb\x44\xf3\x50\x1c\x08\x10\xfa\x97\x48\x5b\x41\xe7\x4f\xa1\xa9\x55\x01\xf7\xad\x07\x5f\x8f\xfa\x9f\xdc\xc0\xc2\xd1\x2c\xa2\x14\x9d\xa1\xf3\xe8\xb0\x40\x25\x93\xc8\xe7\x64\xae\x6d\x82\x24\x10\x96\xd1\xb5\x29\x15\xa6\x40\x22\xa4\xa0\x5c\x2c\x20\x59\x09\x59\xf4\x63\x04\x02\xad\x3d\xd7\x7b\x07\x51\x21\x47\x59\x14\xc5\x71\xbc\xa4\x47\x40\xde\x7f\x69\xd5\x64\x49\x7a\x12\x72\x4c\xa5\xd8\xaa\xbc\x1b\xfc\x18\xf7\xbe\x17\x5c\x2b\x49\x6e\xac\x53\x0a\x9d\xfd\xfe\xfd\xe6\xe6\xaa\xd9\x33\xef\xc7\x9a\x25\x1f\x06\x51\x58\x05\x82\x75\x31\x8d\x85\x93\x52\xf1\x87\xeb\x53\xf8\xf0\xfe\x8d\x53\x9e\x03\x68\x79\xc0\xd3\x21\xb4\xd8\x59\x55\x59\x5f\x53\xb1\x90\x46\x4f\x06\x85\xa8\x56\xc4\xf6\xb5\x8a\x19\x7e\xf7\xae\x3b\x50\xdc\xf1\x7b\x60\xdb\xe5\xe6\xf2\xea\xe2\x9a\xd1\xb7\x33\x88\x44\x8d\xe4\xb9\xf8\x36\x36\xc5\x61\xa2\xe3\x09\x8a\x91\x8b\x28\x10\x26\x81\x23\x98\x7d\xe6\xa0\x5f\x1d\x07\x80\x50\xd8\xf0\x45\x4a\x41\x91\x59\xa1\x54\x1c\xcd\x92\x41\x97\x29\x16\x46\x2e\x24\x2a\x38\x79\x79\xf9\xea\x34\x00\x51\x82\xf9\xc5\xac\x04\xdb\x26\xa9\x30\x31\xf0\xe1\xfd\xe5\x18\x5e\x40\x92\x49\x9a\x2b\xaa\x2a\x93\x89\xd5\xf8\xc4\x8a\xb5\x46\xeb\x20\xbc\xbc\x7c\x15\x47\xa1\x0b\x0a\xfa\x89\x05\xb3\x52\xb0\xb9\x76\xbb\xb8\x97\x82\xb6\xc4\xe8\x2e\x85\xc1\xb5\xd8\x6c\xe5\x4c\x4f\xbd\xc0\x02\x2d\x1b\xf0\xf2\xf2\x15\x71\x19\x81\x1e\xd8\x18\x91\x95\xf1\xe2\x95\x6c\x12\x21\x9a\xdd\x82\xd4\x4a\xb2\xa4\x65\xa2\xc7\xb2\x5a\xe8\xb1\x2c\x27\xe4\x3d\x60\x65\xf4\xc4\xad\x70\x26\xd2\x54\x11\x53\x17\xcb\xc9\x4e\x83\x92\x50\x20\x35\x64\x46\xaf\x84\x59\xb1\x70\x14\x50\xb2\x6e\x16\x19\x54\xf4\x9b\x8b\xd3\x17\x96\x5b\x42\xbc\x1a\x88\x65\x4f\xa3\x54\x9b\x83\x4c\xab\xd4\x50\x16\xd9\x06\x0a\xc4\x94\x2c\xe3\xa2\x01\xce\x79\x03\xcd\x19\x82\x43\x80\x1e\x40\x1c\x02\x7b\xa6\x37\xda\x60\xae\x77\x93\x85\x76\xea\xe9\xd2\x8d\xb1\x22\x92\x8d\xda\x03\x07\x85\x38\xe1\xb0\x21\x19\x8a\x1a\x98\x9e\x33\x86\x31\x24\xe1\x0d\xa9\xea\xc2\x46\xfe\x5e\x3a\x89\x46\x4c\xec\x42\x18\x0a\xbc\x29\xa6\x08\x8c\xf4\x58\x1e\x5a\x95\xeb\x33\x53\x4e\x1c\xe7\x9c\xd1\xcf\x67\x65\x71\xb6\xc6\xf9\xe4\x4f\x76\x9d\xb3\x5a\x65\x7a\x2b\xdd\xf6\x29\x23\x67\xe2\xdc\xa6\x1b\x02\x6c\x35\x6f\xc7\x84\xc2\x74\x32\x39\x1e\xd3\x09\x0a\x73\xe2\xe9\x79\xea\x7f\x38\x9e\x1c\x87\xcf\x04\xeb\xb4\x63\x10\x87\x94\xe1\x76\xa8\xdb\xd5\xe3\xeb\x54\x12\xfd\x75\x57\x20\xd8\x54\x13\xe1\x9b\x60\xcb\xe7\xae\xb4\xae\x51\x43\x5e\x67\x46\x56\x99\xf7\x36\x75\x80\xb8\x96\x24\x4a\x2b\x04\xcd\x71\x87\x02\x2d\x73\x99\x09\x15\x25\x1f\x09\x2e\x3e\x08\x0a\x6f\x68\xd1\xff\x26\xc7\xf5\xd9\xf9\x39\x68\x34\x63\xcb\x17\xb2\x58\x94\x2a\x17\x3e\xe9\x14\x80\xd7\x1a\x17\xb5\x0d\x9e\xd6\x22\xcb\xd0\xc5\x22\xb9\x50\x77\x68\xaa\x4c\xe0\x50\x62\x8f\xb3\x34\x90\xcb\xe5\xca\x90\xdd\xae\x84\xb2\x09\x41\xbf\x03\x74\x34\x18\xc1\x7a\x25\x13\xd6\x0d\xeb\x15\x6b\x6c\xff\x28\xc6\x27\xc0\x95\xda\x11\x3e\x58\x09\xa1\xe6\xd2\x28\xa1\x36\xa0\xe5\xbf\xe8\x57\xa5\x9c\x3f\x46\xe3\xbb\xba\x35\x90\xbe\xa3\x55\x5f\x44\x80\xce\x2c\x20\xf2\xa9\x9d\x99\xda\x40\x51\xe7\x73\x24\x37\x25\x20\xde\x77\xcc\x09\xf7\xd6\xa6\x85\xdf\x76\x4f\x21\xd0\xd6\xde\x48\x6d\xa6\xf0\xd1\x61\xf4\xa9\xa3\x16\x3e\x0f\x8d\x19\x4e\x31\xb8\x71\x30\x0b\x53\x0e\xf7\x68\x1b\x56\xdc\xe7\xd2\xfa\x91\xfb\x7c\x5a\x3f\xee\xb1\x4e\xad\x9f\x7f\xa0\x57\x1b\x1d\xe8\x16\xb9\xff\x23\x6e\xed\xeb\x3e\x2b\x5a\x96\xf0\x21\xa6\xe3\x86\x2d\x6c\xb6\x2f\x33\x10\xcf\xf6\x63\x2e\x1a\x39\x1d\x59\x0d\x9c\xf8\x70\xf1\x1a\xcd\x08\xae\x32\xb1\x19\xc1\x35\x2a\x89\xba\x1d\x2b\x3b\x56\xb5\xce\xef\x5a\x6c\x88\xff\x54\x49\x8a\xc2\x81\x48\x32\xa1\xb5\x5c\x6c\x40\x1a\xdd\xe7\xe3\xa1\xac\xc0\x2f\x7d\xfc\xbd\x74\x36\x12\x71\x48\xf8\x7b\x61\xdd\xbd\xe3\x1f\x7f\xf2\x7a\xe7\xe4\x4f\x3f\xfe\x34\x79\x76\x7e\x7e\x7a\x0c\xd2\x60\x3e\xb2\x89\x1c\x0b\x54\x6a\xf8\xf1\xa7\x2d\x09\x86\x80\x26\x0f\x0d\x69\xdb\x1e\x9e\xb9\x78\x18\xc4\x95\x7c\xa7\x4d\xc5\x47\xe0\xb4\x68\x0b\x6b\xd8\x13\xb5\xb3\x7b\x41\x0a\xcd\x96\x1b\x52\x66\x87\x4c\xe6\xd2\x60\x7a\xe6\xd6\xa3\xa8\x66\x08\xf4\x01\x44\x20\xac\xa5\xa6\x67\x83\x53\x69\x90\x55\xf6\x75\xe1\x16\xf5\x9b\xb4\x73\x9b\xdc\x82\xa6\xf8\xbe\x24\xa6\xde\xb2\x3f\x4f\xc8\x5c\x3c\x78\x2a\x76\x7d\x93\x16\x2b\x8c\x3a\x24\x1f\xb5\x66\x0e\xc8\x2a\xe1\xf3\xc3\x8c\x30\x18\x10\x4e\xa1\x35\x2a\x73\xe2\x4e\xe6\xe7\x19\x8d\xfe\x61\x04\x39\x6a\x2d\x96\x38\x85\xe3\x9b\x86\x1d\x12\x51\x14\x25\x6b\xd4\xa5\x42\x61\xbc\xab\x6e\xdc\x29\xdb\x51\x3f\x1c\x77\xcd\x75\xfc\x6d\x7f\x16\xc1\xad\x35\x73\xe0\xfa\x03\x68\x29\x46\xb3\xaf\x5d\x23\xf5\xea\xea\x33\x2e\xd8\x25\xb7\x25\x48\xe1\x59\x8a\x0b\x49\xcc\xa1\x51\x49\x91\xf9\xdd\x39\x7d\x52\x61\x22\x17\x32\x89\x8b\x1b\x70\x65\x27\x6a\x58\x89\x7b\x8c\x4a\x8b\x0c\xc8\xe9\x3d\x36\xcb\x64\x7e\x44\x07\x6e\x60\x85\x00\xee\xba\xcc\x89\x62\x1b\x17\xbd\xb0\xb5\x22\x7b\xba\xac\xc9\x55\xb8\x7c\xc5\x66\x5d\xc7\x83\xe2\x7a\xa6\xd3\x1e\x3e\x0a\xb2\x8e\xef\x51\x2c\x72\xed\xf5\xa5\x06\x7c\xa8\x30\x31\x36\x62\xa7\xe0\xbd\x90\xbf\xd7\x08\x22\x2f\x8b\xa5\x53\x53\x8c\x01\x31\xb4\x2c\xac\x11\x75\xb4\xda\x16\x1b\x5d\xdb\x25\xfa\x61\xf1\x36\x75\xe0\x8c\x69\xfb\xf1\x70\x8e\x69\x0b\x03\xec\xb5\xa1\x0e\xa7\xbd\x16\xd4\x8e\xdb\x67\x3f\xed\xa8\xc7\x5a\x4f\x3b\xfb\x40\xdb\xd9\x23\xa6\xff\xfb\xa3\x96\xf3\x29\xff\xf7\x14\x5c\x0d\x65\x03\x5c\x2d\xf5\x3f\xbe\x62\x31\xf0\x21\x6c\x5e\x95\x5a\xcc\x29\xfa\x73\x63\x43\x73\x00\xf3\xc3\x52\xde\x93\xe3\xeb\x7d\xcd\x84\xe2\x7c\x62\xa4\x85\xe4\xcc\x67\x5c\x08\x7e\x0a\x74\x22\xae\xc6\xcb\x9e\x58\xa8\x42\x58\x15\x18\xd0\x7a\x1b\x83\xa3\x70\xfe\xf7\x1a\xd5\xc6\x1a\x87\xdb\x50\xf7\xb9\xf5\x4c\xc7\x15\x73\xe6\x54\x0f\x80\x04\x45\x28\x6c\x31\x78\x25\x36\x51\xfd\x68\x2e\xb4\x4d\x6e\x99\x15\x6a\x0c\xe2\xcd\xb2\xd3\x46\xa7\xc7\xe3\x01\x81\x9e\x93\x4a\xae\xad\xf3\x35\x95\x48\xee\x2c\x09\x65\x91\xca\x7b\x99\xd6\x22\x1b\xa8\xba\xd8\x64\x14\x07\x25\xa7\x36\x42\xaf\xcd\x65\xb1\x28\xf5\x14\x3e\xba\xc3\xf9\xd4\x4e\x02\x39\x81\x19\x18\xd7\x65\xa9\xc9\x04\xfe\x21\x32\x99\x0a\xe3\x92\x5f\xba\xce\x39\xff\x9e\x65\x34\xdd\xfb\xfa\x12\x55\xa8\xae\x0c\xa9\xf1\x67\xe3\xf3\x16\xd8\x7b\x41\x92\x65\x44\xf6\xb2\x26\x9f\xf6\xbc\xf3\x98\xf4\x9d\x67\x15\x59\x04\x3c\x07\xb8\x38\x02\x12\x3e\xfe\xc5\xcf\x1d\x27\xb5\xd9\x61\x2f\x9c\x79\x0a\xf3\x7e\x9e\x11\x9e\xb1\x7d\xba\xb6\x9b\x0d\xeb\x1f\xbe\xdb\x8e\xa1\xa2\x83\xd5\x5a\x2e\xad\x41\xf3\xf0\x06\x22\x7f\xbf\xd2\xac\x3f\xa8\x13\xe6\xbf\xb7\x62\x19\xc3\xe3\x70\xa6\x17\x60\x2f\xd1\x04\x6e\xe3\x9a\xbd\x3f\xeb\x1d\x99\xbf\x81\xc5\x61\xb7\x82\x6c\x18\x7a\xaf\x8e\x6c\xb0\xd9\xa3\x26\x9b\xea\xec\x23\x35\x65\x00\x70\xa0\xb2\x8c\xa5\xb2\xcb\x69\xdf\x21\xd2\xb0\xb5\x10\x56\x60\xa6\x54\xe8\x2a\x64\xba\x55\xcf\xf2\x6c\x4f\xc2\x65\xbd\x06\xd2\x8e\x4d\x3f\x44\x4f\x87\xf4\x4a\x93\xbf\xb9\xe4\x7c\xbb\x23\xe8\x3d\x26\x28\xef\x43\xf6\x10\x61\x8e\x05\x2e\x64\x22\x29\xaa\x76\x0e\xbe\x5b\xbb\x05\xed\xa5\xe0\x33\xf3\xb9\xc8\x44\x21\x69\x02\xe7\x5c\xf3\x24\x0f\x98\x5d\x56\xff\x6d\xbc\x44\x43\x47\x70\x72\xda\x61\xda\xa4\xcc\x73\x2c\x52\xeb\x5f\x9c\xc1\x07\x1d\xc9\x12\x77\x4c\x91\x43\x52\xe0\xda\xd6\xb9\x2c\x05\x2e\xb2\x72\x6d\x77\xa1\xda\xbb\x90\x1a\x6a\xa2\x1b\xdc\x06\xb6\xda\xf8\x8d\x5e\xd5\xf3\x4c\x26\x57\xc2\xac\x4e\x4e\x6f\xdb\x41\x14\x69\x76\x92\x5b\xef\x22\xa5\xb8\x10\x75\x66\x06\xd6\x19\xf7\x23\x05\xae\x76\x8a\x2c\x2b\xd7\x34\x5f\x71\x17\x52\x5d\x39\x05\x89\x90\x88\x4a\xcc\xb9\x5f\x0b\xa4\x95\xce\x45\xcd\x6d\x2d\x34\x8c\xbd\x2d\x2e\x72\xfa\x0a\x4a\x33\xbc\xe7\xed\x78\x1c\xa6\xf0\x32\x0c\xfa\xf9\xc9\x8b\x62\xf3\xde\xa5\x50\xbf\xb4\x5b\xbb\xfc\xc6\xbf\xfe\xad\xcd\x0f\x6f\x83\xd2\x0a\x95\x95\x44\x64\x49\x9d\x79\x94\x45\x5e\xd6\x05\x67\x6e\xb4\xc8\x10\xee\x45\x56\x23\x19\x9f\x42\x2f\x50\x29\x57\x8b\x71\xbc\x36\x4c\x98\x77\xa5\x41\x38\x83\x4b\x13\xc5\x26\x73\x34\x6b\xc4\x82\x74\x3b\x13\xfc\xd9\xf8\xbc\x1d\x77\xbd\x7e\xa0\x29\x0b\x97\xd2\x0a\x0b\x4b\x0d\x0f\x36\xf7\xd4\xe0\x2d\x35\x9c\x8f\xff\xcf\x73\x1a\x5a\xc4\x9c\xea\xa6\xac\xfd\x9a\x3c\xe8\x29\x3c\x6c\x8f\x51\x59\x38\x44\x96\x6d\xa0\x42\x95\x60\x61\xc4\x12\x99\xbf\x83\x3b\x6f\x8b\xad\x06\x55\xce\x82\x39\x17\x5a\x6a\xa8\x4a\x59\x98\x76\x3a\x48\x16\xa0\xcb\x4c\xa6\x74\xd2\xd6\x11\xd0\xb9\x50\x26\xf4\xd5\x69\x58\xaf\x64\x46\x0c\x91\x62\x91\x90\xb8\x2c\x88\x5b\x6e\x3f\x5c\xc8\x87\xe7\x3f\xdd\x5a\x6b\x2a\x32\x85\x22\xdd\x84\xa6\xb5\x4e\xc2\x09\x5b\xcb\x33\xff\x24\x42\x13\x6d\x13\x41\x5f\x28\xc6\x2f\x2b\x54\xa2\x9f\xad\x62\xcf\xa5\x30\x52\x61\xb6\x21\x45\x83\x2a\x97\x85\xd4\xc6\x55\xed\x96\x14\x2a\x87\x99\x36\x28\x70\x4e\x55\x5d\xd1\x81\xff\x5f\xbf\x68\xb9\x80\x4a\x61\x22\xb5\x2c\x8b\x71\x8f\x49\x93\xda\x4c\xc1\x6e\xa9\xcd\x75\xff\xe9\x13\x9e\xad\x7a\xb1\x6d\x1d\xb5\x65\x3e\x2b\x2d\xb4\x0d\x5a\x42\x6c\x48\x8e\xa3\xb3\x1d\xf5\x68\xa1\x30\xb3\xe8\xae\x64\x15\xd8\x8b\x1e\xdc\xda\x94\xe5\xad\x6f\x9f\x20\x65\x39\x72\xa9\x12\x8a\x3a\x96\x80\x99\xc6\x26\x81\x57\xae\x0b\x54\x2e\x85\xb7\x16\x85\xd5\xc8\xec\xbc\xf5\xa5\x70\x67\xf3\x00\xfb\x51\x24\x12\x95\xc4\xc2\x7c\xbb\xa0\x8e\x62\xfa\x8d\x86\xd6\xea\x5a\xad\x4a\xe1\x80\x6d\x22\x63\xf1\x37\x76\xa3\xe0\xc9\x13\xfe\x66\x7d\x19\x98\xc2\x31\x79\x36\x56\x4c\x1a\xd9\x94\x05\xfd\x24\x53\x50\xa2\x58\x22\xc8\x31\xc2\xc7\xf3\xd1\xb3\x4f\xc7\xfb\xa2\xeb\xa0\x7f\x67\x10\xb6\x3d\xe8\xc5\x58\x07\xa6\xff\x68\x7f\x1d\xbf\xe7\x69\xfc\xe6\xac\x8f\x2d\x25\xb1\x0f\x1a\x36\xc2\x0a\x8d\xbd\x45\x46\x8c\x8e\xba\xed\x1f\x07\xb5\xcd\x35\xdc\x06\x04\x6b\x71\xbc\xc7\xc2\xd4\xac\x0d\x62\x58\x4d\x7d\x5b\xaf\xa5\x49\x56\xf3\x92\x22\x15\xbf\xf5\x51\x80\xbb\x62\xb9\xf6\xbd\x49\x30\xaf\x1d\x58\x9f\x3e\x6a\x90\x0b\x6e\x05\x7d\x2b\x4a\xd7\x6d\xd4\x73\x89\x06\x6d\xd7\x14\x9a\x6f\xd1\xd1\x3b\x2f\x63\x52\xf1\xc3\x89\x33\xfa\x17\x37\x1e\x44\x97\x8a\x6f\x31\x95\xe2\x5b\xab\x11\xa1\x71\x8a\x6d\x7b\xc8\xeb\x33\x2c\xf0\x1d\xd6\xb2\x00\xb9\x35\x96\x77\xcb\x3e\x3a\x13\x6f\x97\x92\x06\xf3\x7e\x12\x93\x7f\x9d\xc2\x47\x1e\x33\x90\x5b\x6f\x3d\x1e\x4e\xab\xd3\x10\x98\x75\xe0\xef\xf5\x75\x3d\x2d\xf7\x39\xba\x76\xdc\x3e\x2f\xd7\x8e\x7a\xac\x8b\x6b\x67\x1f\xe8\xdf\x86\xd3\xe8\x2a\x90\xef\xe0\xdc\xba\xb4\x18\xf7\x6d\x38\x53\x6a\xd7\x1b\xf9\xe6\x09\x66\x22\xee\x5b\x53\x0a\x75\x55\xca\x94\xe4\x95\x3b\x38\x68\x2b\xe3\x41\xde\xe9\xb2\x0e\x97\xcb\xbd\x0f\xcb\x73\x7b\x7c\xb1\xe0\xba\xfa\xd6\x66\x27\x82\xc2\x13\xcf\xd8\x8d\x4d\xca\x1c\xb5\x0b\xe2\x09\x30\x47\x7c\xf4\x64\xa2\xeb\x39\x8f\x10\xda\x29\xaa\x39\xa6\xb0\x42\x85\x4d\x31\x14\xef\x31\x23\x33\x3a\xce\xcb\x7f\xc9\x2c\x13\xe3\x52\x2d\x27\x58\x9c\x7d\xb8\xe6\x42\xe9\xe4\xbf\x70\x3e\xf9\xfb\xcd\xcd\xd5\xe4\x57\xa1\x65\xa2\x3f\x97\x8b\xcf\xfc\xf5\xed\xe5\xdb\xd7\x9f\x99\x75\xfa\xa9\x5a\x4f\x8f\x2d\xe6\x66\x70\x77\xa3\xfe\xb4\x36\x3f\x30\xbb\xd3\xd4\x19\xfd\xd3\x7d\x10\x26\xcf\xc2\xa7\x5d\xd2\x90\xc9\x04\x0b\xcd\x6d\xf8\xa5\xe2\x43\x34\x65\xa0\x89\xae\xd2\x07\x26\x83\x1b\xa5\x27\x2d\xdd\x10\x14\x32\x73\x4b\xdc\xf1\xe3\x0a\xf9\xbe\xe1\x21\xb4\x81\x93\xce\x72\xb0\xd2\x71\xaf\xd8\xf7\xc6\xe1\xd2\xcf\x16\x12\x22\x97\xa1\x6b\x62\x0b\x35\x3f\x47\x8d\x15\x3b\x1b\x6b\xda\xd0\xb8\xe1\xd7\x7f\x39\x5c\x71\x78\x64\xf7\x6a\x0e\x37\x70\x9f\xea\x70\xc3\x1e\xab\x3b\xdc\xf4\x03\x95\x47\x9f\xd2\xdf\x41\x7b\x0c\xa8\x0f\x7c\xa8\x4a\x0e\x94\x3e\xbc\x7f\x63\x5b\x47\xc8\x7c\x1b\xcc\x81\x7b\x7e\x43\x1f\x34\x68\x69\xb0\x5f\x95\x8e\x5d\x4c\xe6\xab\xf9\x26\xee\xec\x21\x5e\xba\x43\x18\x87\x26\x9e\x5f\xb3\x32\xa1\x55\x4a\xdf\x14\x14\xa2\x3a\x76\x15\x95\x5c\x4a\x5a\xac\x09\x47\x99\x29\x7b\xca\x2a\xea\x6b\xff\xa6\x86\xae\xcf\x70\x40\x4b\xd7\x6c\x67\x27\x56\xaf\xde\x1b\xa1\xb2\xbf\xe4\xdb\x0c\xde\x5b\xf5\x8d\x5a\xf7\x1f\x5b\xf8\x6d\x40\x1c\x5a\xfb\x1d\xa4\xeb\x77\xe0\x3c\x70\x69\xb9\x2e\xdf\xd9\x74\x6b\x53\x0a\x76\x6d\x46\x36\x63\x63\xef\x96\x19\x25\xf1\x1e\xdb\xb7\x54\x3c\xbc\xbd\xec\x47\xb1\x06\x9a\xba\x02\xc1\xca\xad\x71\xbc\xac\x7d\xac\x14\xd9\x13\x5e\x8e\x42\x53\x5a\xd0\xba\x78\x4d\xaa\x20\xe4\xba\xdb\x77\x62\xda\x77\x25\x22\x62\x35\xbd\x59\x45\x80\xbb\x66\x3b\xc6\xa2\xe5\x54\xac\xf2\xa9\x99\x50\xca\xb1\x8d\x7a\xfd\x98\xcf\xc1\xb8\x72\x7d\x4c\xe1\x4b\xa7\x1b\xcc\x62\xcd\x2e\xb7\x6d\xff\xc8\x6b\xcd\xb9\x52\x12\x25\xbb\x88\x23\xf9\xc0\x06\x43\x1d\xd7\x53\x18\x42\xd8\x9d\x64\x35\xdb\x9c\x50\x43\xe0\x0d\xf8\x2a\x81\xeb\x5b\x71\x2d\x31\xf6\xc6\x51\xf3\xb0\xb7\x97\x2a\xf8\xd6\xb1\x9f\xdd\xd9\x89\x92\xf7\xc2\x60\xbc\x95\x26\x02\xe9\x6d\x86\x43\x15\x5b\x38\x56\x2d\x30\x51\x66\xc8\x94\x7c\xd8\xa9\x12\x6b\x5b\x73\xe0\xea\x83\xb5\x7e\x81\x1d\x56\x65\xc6\xfb\xa4\x01\x7d\xbc\xdd\x0a\x0e\x73\x8b\xe1\xd6\x43\x88\xa0\xb2\x47\xe3\xdb\x58\x5b\xa5\x0d\x77\xb7\x4e\xd7\x8b\x85\x4c\xb8\x21\x52\xa1\x48\xcf\x38\x9a\x69\x2e\xdc\x79\xaa\xb7\x96\xf1\xdd\x66\x1a\x4e\x52\xac\x4a\x2d\x0d\xfc\xc5\xdd\x12\x83\xbf\xb8\xab\x66\xef\x2e\x6e\x4e\xfb\xd9\xb4\xd0\xd2\x47\xaa\x75\x2e\x92\xbb\xb5\x50\xa9\xe6\x92\x91\x30\xd2\x91\x8b\x05\xa3\x17\xa1\x70\xbd\xd4\xa5\xf1\x6c\xd8\x3f\x88\x5b\xef\x0a\x64\x23\x27\x8e\x3a\x4d\x97\xf0\x7a\x85\x05\x49\x27\xd7\x74\xeb\x2a\x5e\x73\xcc\xe5\xf9\x02\xd7\xed\x33\x6d\x06\xb8\x46\x8e\x5c\x6c\xa2\xca\xfc\x1c\x01\x7f\xaf\x45\xe6\xcd\x09\x53\xdf\xd5\x89\x6c\xa2\xe9\xd6\x72\xe0\x1b\x66\x23\xd2\x91\xb7\x7d\x81\xb3\x43\x1a\xbc\xed\x2d\xc3\x4e\x3b\x44\x38\xd7\x1e\x6f\xba\xac\x87\x58\x94\x8a\x6f\xbd\xd8\xee\x85\xaa\x91\xcf\x71\x08\x91\x0b\x52\x7b\x14\x0f\x8b\x16\x70\x85\xda\x28\x69\x39\x85\xd6\xb1\xe1\x20\x45\x6a\x8d\x68\x8d\xe1\x5d\x69\xc4\x3c\xb3\xfd\x5d\xb7\x64\x23\xbb\x94\xee\xa4\x61\x79\x8c\x8f\x57\x6f\x47\x2c\xb8\xb7\xad\xdb\xa8\xe3\xfe\x55\xc6\xdb\x96\xa8\x73\x37\xf0\xef\xb5\x1c\xd4\x53\x5d\xca\x7e\x1f\xb2\x45\xca\xa0\x4f\xb7\x76\x0a\x6e\x98\x6e\x5c\xc6\xcf\x65\x21\xf3\x3a\x6f\x68\x75\xe5\x04\xfa\xb6\x53\xf0\x1c\x12\xfa\xdd\x5b\xba\xf0\xad\x9f\x2e\xc3\x98\x95\x6b\x6d\x53\xeb\xee\x2a\x0b\xf9\x50\x79\x65\x36\x5d\xfb\xe3\xb5\x02\x21\xe0\xcd\x00\xdb\x80\x4e\x26\xce\x6a\xe5\x81\x5c\x20\xa7\xef\x5f\x13\xe8\x98\x57\x4f\x4e\x4e\xa7\xf0\xff\x77\x88\xe1\xe9\xae\x8b\x28\xdb\x8c\x4d\xfb\xce\xc9\xb0\x1a\xef\x8c\xd9\xa6\x32\x87\x40\x75\x85\x6d\x68\x4c\xf7\x18\x86\x97\xdb\x3d\x6a\x90\x66\xfe\x04\x0f\xa2\x9d\x87\x74\x58\xa6\xb0\x8b\xf9\x58\xea\x6b\x1b\xe6\x9e\x94\x0b\x8b\xe0\xcf\x4f\xbe\xec\xd5\x99\xa3\xbe\x5a\xf5\x82\x3c\x82\x7d\x22\xfc\x95\x5c\xbf\x29\x1c\x3b\xf5\xcb\x92\xc1\xbe\x81\xbb\xef\xb7\x5f\x65\xef\x5c\x9e\xd4\xc8\x3e\x14\x62\xbd\x75\xdc\x27\x52\xef\xe8\x0e\x24\x93\x17\xe2\x01\xfc\xfa\x5b\x38\x98\x4c\x0e\xe8\x21\x84\xfa\x26\x04\xbe\x8d\x50\xe3\xbd\xc9\xe1\x48\x54\x67\xd1\xe7\xfe\xc0\x46\x5a\x67\xcd\xc7\x81\x61\x91\xc0\xc2\xac\x25\xbf\xdb\x60\x36\x88\xcf\xba\x3f\x6c\x9b\xd2\x1c\xf2\xac\xfb\xc3\x76\x94\x9a\x31\x11\x62\xbb\x26\x0e\xca\xf9\x6c\xa7\xf4\x1f\x1e\xf0\xf5\x9d\x7f\x0e\xfb\xd6\xbe\x91\x84\xb3\xd2\x2e\x02\x12\xd6\x05\x4c\x43\x81\xa6\x1b\x10\xf6\x80\xed\x0b\x0b\xfb\xd7\xb4\x1f\x19\x1c\xf6\x00\x1d\x18\x22\xee\x8a\x7d\xfc\xdf\xff\x5e\xa0\x48\x46\x73\x55\xae\xb9\x4e\xe7\x6d\xe5\x9f\x75\x64\x67\x1f\x11\x30\xda\x57\x25\x14\x50\xde\xa3\xb2\xdb\x2e\x52\xe0\x3b\xb1\x32\xd1\xbe\x10\xdf\xb6\xe6\x1e\x7c\x08\xf1\xe6\x98\x95\xc5\x92\xc0\xed\x09\x1e\x7b\x57\x08\xc9\x89\x16\x79\xcf\x4d\x62\x64\xd9\x63\x76\xd7\x54\x6d\x01\xcf\x2d\xd7\x60\xd2\x77\x14\xb6\xdd\x49\x86\x57\x51\x75\x68\x68\xb5\x21\x52\xf8\x40\x71\xd7\x82\x7b\x6e\x00\x87\x24\x83\xcd\xf2\xf0\xcb\x4d\x5c\xf2\x89\x97\xe0\x8a\x7d\x7c\xd4\x62\x5e\xd6\x66\xff\xb2\xdb\x5e\x1a\xd1\x5a\xfb\xfa\xf7\x5a\x28\x74\x55\x10\x7b\x91\xac\x95\x43\xdf\xbb\x8a\x66\x00\x97\x39\xb7\x2c\x71\xce\xbc\x05\xff\x57\x51\x14\xa8\x5a\xf0\x43\xf3\x44\x03\x76\xd4\x8d\xff\x39\xba\x12\x7c\xdf\x02\x0a\x14\x0a\x9e\xfd\x78\x7e\xfe\xf0\xfc\xaf\xe7\x7d\x04\xe6\xbc\xc2\x56\x04\xae\xcb\x44\x3a\xd2\x6a\xbb\x35\x91\xac\xba\xeb\xff\x59\x83\xb6\xe3\x56\x65\x8e\x95\x58\x62\xab\xaf\x1a\xae\x4a\x77\xdd\xf2\x0e\x37\x21\xc8\x3a\x96\x85\x36\x62\xa9\x44\x7e\x3c\x82\x63\xb3\x96\xc6\xa0\xa2\x8f\xa9\xd4\x49\xa9\xd2\xe3\xce\xf5\xe8\x40\x31\x5e\x49\x4f\xe1\x8b\xe5\x85\xd6\xe1\xfc\xbb\xae\x45\x6f\x63\x86\xf6\xa8\xfe\x61\xb6\x9f\xf7\x69\xdd\x99\xbf\x7b\x6b\x7e\xd8\xbf\xf5\x02\xf6\x37\xbc\xb6\x22\xda\x2e\xcc\xe2\xcd\xf7\x87\x46\x3b\x87\x59\x4c\x87\x01\xa8\x96\x08\x04\xd1\x7e\x7a\xac\x29\x8d\xaf\x82\x7f\x0f\x6b\x7a\xd8\x8d\xf1\xc1\x77\x98\x7c\x17\x9b\xfa\x4d\x77\xc9\xf7\x58\x05\xff\xf7\x3d\x2d\x6b\xa3\xf5\x42\x3f\x9c\x4d\x10\xc5\xaf\x99\xb2\x55\x80\x10\x81\x76\x2c\xa9\x8c\x5e\x30\x14\xde\x7d\x43\xf3\xa3\x16\xda\x3b\xdc\x4c\x6c\x4b\x44\x25\xa4\xd2\x20\xc8\x32\xda\xe0\x9c\x3b\xe3\xb9\x04\xf5\x60\x6a\x91\xb1\xd2\xe4\x55\xbd\xca\x47\x0b\xb2\x6b\x42\xf9\x45\x31\x6d\x9b\xd9\xbd\x08\xc4\xf3\xc6\xf0\x46\xde\x21\xfc\x2a\x92\xbb\xa5\x2a\xeb\x22\x1d\xc1\xeb\x0d\xea\x11\xfc\x5d\x48\xb5\x45\x5d\x6d\x35\x97\xb4\x42\x5d\xa4\xa8\x32\xb6\xbd\x76\x4b\xf1\x6a\x23\xd7\x37\xa3\x8d\xff\x99\xc9\xe9\x3a\x0e\x79\x48\xc8\xfb\xb9\x4d\x87\x97\x6a\x11\xb0\x3e\x2e\xfc\x73\x54\x7e\x6c\xe1\xe3\xfc\x00\x76\x8b\xa3\x73\x20\x77\xa8\x45\x58\x47\xcc\xb5\xed\xc7\x91\xda\x92\x89\x7c\x1a\xbb\x85\xc0\x06\x31\x70\x32\x5a\xac\xef\x8b\x04\x47\xb0\x29\x6b\x77\xe1\x49\x7b\xac\xac\xdd\xae\x0b\xf9\x00\x46\xe6\xa8\x8d\xc8\x2b\x1b\xe4\xb8\xde\x9e\x16\x7e\x42\xc3\xf1\x2b\x61\xf0\x98\x37\x8c\x59\x16\xaf\x55\x65\xc2\x90\xb5\x67\x7b\x95\x94\x85\xae\x73\xe7\xcc\x59\x9a\xf1\xfb\xdd\xb8\xe5\xcf\xb7\x12\x8a\xee\x8d\x82\xce\xab\xa5\xe2\xca\x6c\xeb\xc2\x15\xbc\x17\x4a\x9a\x0d\x7b\x80\x22\xd3\x65\xf0\x75\x6c\x35\x2a\xdb\x38\x7e\x17\xc6\x28\x39\xaf\x4d\xeb\x9e\x6e\x9b\x19\x2c\xf7\x87\xde\x0e\xdf\x24\xc6\xe8\x65\x59\x03\x41\xb3\xab\xea\xb6\xe6\x7e\xf3\xc7\x6e\x9d\x55\xc5\x38\xf5\x4f\xdf\xfe\x3e\x75\x38\xef\xba\x49\x34\xea\x71\xca\x68\x90\x14\xa3\x2e\xcc\x6f\xb7\x4c\xf6\xf0\x67\x76\xc1\x01\xc3\x15\x1d\xfa\x2c\xc6\xa1\x3f\xd4\xa2\x02\x33\x87\xd3\x36\xab\xd1\x52\x58\xd6\x0c\xf0\xcb\x63\x30\x68\x9b\x43\x35\x94\x9b\xee\xa6\x71\x4b\xc9\x77\x50\x52\xd6\xbf\x62\x6d\x33\xa8\xa6\xf4\x40\x81\xd2\xbf\xf0\xea\x23\x8f\xe8\x37\xd3\x74\x9e\x0f\x9e\xd2\xf6\x97\x3e\xb5\x96\x23\xcb\x28\xd2\x94\x01\x11\x64\xf7\x96\xad\x1d\x20\xc7\xa2\xaa\xb0\x48\x4f\xcc\x8e\xfb\xd6\x5d\x43\xee\x76\xca\x07\xb5\xb7\x08\x6a\x07\xef\xb3\xcb\xee\x65\x60\x8f\xb4\xc4\x76\xf6\x81\xb6\xb7\x77\x4e\xfe\xef\x7b\x58\x5b\x47\xa8\xf0\x8a\x00\x0a\x69\x85\x96\xd9\x86\x78\xea\x1e\x95\xe1\x2b\x61\xfc\x4c\x28\x2e\x56\xb9\x63\xe0\x12\x48\x3b\xb8\x73\xb5\x98\xb4\x64\x35\xc3\x7a\x05\x25\xdf\xfa\xb2\x06\xc7\xaf\xda\x74\x9c\x11\x4b\x3b\x03\x74\xe3\x6d\x94\xd4\x64\xde\x57\x65\xb8\x81\x69\x8b\x50\x18\x02\x3e\xb3\xc2\xdc\x5e\x04\x57\x82\xdb\xd5\x6d\xfb\xa2\xc3\xab\x75\x9c\x84\xf9\x4d\xe9\x4e\x94\xbe\x44\xbe\x70\x50\x46\x5f\x47\x80\x0f\x9c\x43\x4b\x29\xb4\x25\xc6\xb6\x63\x3e\xfd\x72\x3a\xed\x53\x7f\x32\x81\x28\x25\xc6\xed\xa3\xda\xf5\x8f\xd2\xb6\xb9\x87\xd4\xeb\x00\x67\x61\x6d\xf3\xb7\x6c\x6e\xe7\xfb\xa4\x5d\x3a\xee\x98\xf0\x4d\xa7\x13\x75\x25\x8a\x34\x43\x2b\xe4\x6c\xb9\x44\x96\x6d\xb8\x9d\xd5\x34\x83\xff\x59\xeb\x68\x6d\x26\x8f\x87\x0f\x36\xeb\x3f\x8e\xb9\xb4\xb5\xd9\xe1\x0b\x9b\x64\x5f\xef\x08\xed\xd6\xd8\x1f\x06\x78\x90\x88\x3a\x56\x98\x97\xf7\x78\x72\x87\x9b\x29\xdc\x6d\xbb\x95\x19\x49\xfe\x80\x92\x81\x19\x7c\x6c\x5e\xaa\x19\xd6\x67\xf0\x1c\xe6\xb5\x97\x0e\x10\x60\x66\x4f\xc8\x19\x9c\xbb\x60\x6b\x68\xe6\xc7\xbb\x4f\x3f\x74\x4c\x4d\x21\xb3\xc6\xcc\x14\x32\x6b\x63\xdb\x51\x31\xac\x8a\x86\x36\xe0\x04\xca\x31\x96\x9d\x75\xda\xd5\x42\xce\x98\x6f\xbd\x4a\x1e\x19\x96\xa8\x65\x85\xdb\xe7\x6d\xb5\xc6\x8d\x60\x49\xd2\x21\x0e\x77\x22\x45\x41\x2d\xbf\xf9\x21\x0e\xc6\xe6\x35\xbf\xf6\x94\xfc\x07\x1e\x3b\x2f\x5d\x7a\x34\xbe\x29\x62\x81\xb6\x5b\x02\xf8\x36\xa7\x85\xe8\x6e\x72\xd8\x51\xec\xdc\x74\xbc\x99\xa1\xcb\xd9\x3c\xd7\x37\x2f\x0f\x5c\x22\xcf\xc5\x03\x97\xb8\x82\x5b\xca\x13\x76\x82\xb4\x97\x8d\xb7\x01\x1c\x78\x4d\x5d\x8c\xb2\x66\x01\xde\xf3\x0a\x99\x70\xcf\xfe\x0d\x2e\xb1\x48\x85\xda\x8c\xe0\x75\x25\x93\x11\xd1\x08\x47\xf0\xa1\x48\xca\x3c\x2f\x8b\x11\xbc\xe4\xff\xdb\x17\xee\xed\x12\x1d\x4f\x63\x47\x92\xa9\xeb\x21\xb5\x49\x36\x6a\xed\x77\xb0\xfd\x7b\xe8\xca\xb5\x3d\xb3\x99\x95\xe1\x27\x4f\x5a\x64\x99\x6d\xbb\x8a\x5d\x89\x42\x26\x27\xc7\x2f\x3c\x2b\x04\xfe\xd2\xfe\x24\xdb\xef\x56\x2c\x15\x33\x52\xef\xbe\xf5\x40\xb0\x6d\xd1\xe9\x9c\x2e\x6c\xbf\x51\x0d\x7f\xa0\x17\xbc\x77\xeb\xcc\xee\xe6\x30\x2b\x6f\x07\xef\xbd\x74\x66\xfd\xd0\xc7\xde\x38\xe3\xd9\x87\x5e\x37\xeb\x8a\xa5\xff\xfb\x83\x56\xbe\x9d\x7f\x60\xe4\x9a\x97\xdf\x8e\xf6\x26\x1f\x3a\x2f\xd7\x75\x6b\x78\x48\xed\x5d\xa5\x30\x05\x99\xf6\xdf\x15\x3b\x6d\xd3\x89\x7e\x1a\x7c\x6b\xec\xd4\xb2\x42\xf4\x3a\xbd\x78\xde\xe9\xae\x37\xc9\xfa\x89\x71\x07\xdb\x8e\xc9\xbd\xd7\xcb\xfa\xf9\xfd\x82\xc7\x61\x50\xc2\x3b\x67\x87\x01\xed\xdf\x4e\xfc\x22\x5a\x0f\xa3\xb9\x1b\xb9\x63\xa2\x73\xb4\x9b\x59\xce\x28\xb5\xa6\x34\xb9\x3e\xcf\x1a\x5f\x8f\xfe\x27\x00\x00\xff\xff\x2f\x2f\xf6\x9d\xbf\x5d\x00\x00" func metadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -108,7 +108,7 @@ func metadataviewsCdc() (*asset, error) { } info := bindataFileInfo{name: "MetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf1, 0x78, 0xbe, 0xe, 0xd3, 0xef, 0xae, 0x60, 0x72, 0x79, 0xf0, 0x6a, 0xd6, 0xe4, 0x43, 0x3c, 0x87, 0xff, 0xa0, 0xe3, 0xa1, 0xa2, 0x1f, 0x0, 0x19, 0xee, 0xcb, 0x5, 0x7, 0x9b, 0x71, 0x15}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd6, 0x58, 0x5e, 0xa8, 0x9e, 0x80, 0xcb, 0xa3, 0x47, 0x6e, 0x28, 0xb7, 0xc, 0x9b, 0xf5, 0x6e, 0x3b, 0xb4, 0xec, 0x47, 0xab, 0x10, 0xde, 0x85, 0x27, 0xc2, 0x2, 0x5d, 0x5c, 0x8c, 0x6b, 0x72}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index a985b47a..90a086ce 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -5,6 +5,7 @@ // ../../../transactions/scripts/borrow_nft.cdc (581B) // ../../../transactions/scripts/get_collection_length.cdc (465B) // ../../../transactions/scripts/get_nft_metadata.cdc (5.673kB) +// ../../../transactions/scripts/get_nft_view.cdc (4.482kB) // ../../../transactions/scripts/get_total_supply.cdc (118B) // ../../../transactions/setup_account.cdc (1.023kB) // ../../../transactions/setup_account_from_nft_reference.cdc (1.458kB) @@ -179,6 +180,26 @@ func scriptsGet_nft_metadataCdc() (*asset, error) { return a, nil } +var _scriptsGet_nft_viewCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x56\xc1\x6e\xdb\x38\x10\xbd\xfb\x2b\xc6\x39\x2c\x6c\x20\x50\x2e\x8b\x3d\x08\xab\x2d\xba\x69\x0a\x14\xe8\x1a\x45\x92\xf6\x52\xf4\x40\x4b\x63\x67\x10\x9a\xd4\x52\x54\x12\x21\xf0\xbf\x2f\x24\x59\x22\x29\x91\x92\xd6\x27\x6b\xe6\xbd\xe1\x88\x7c\x43\x3d\x3a\xe5\x52\x69\xb8\x7b\x63\xa7\x9c\xe3\xee\xf3\x23\x1c\x94\x3c\xc1\x55\x14\xdd\x44\xd1\x4d\x2a\x85\x56\x2c\xd5\xc5\x8d\x01\x44\x69\x96\x5e\xad\x2e\xbc\x7f\x50\xb3\x8c\x69\xf6\x83\xf0\xb5\x08\x50\x1d\x4c\xcb\x5e\xe5\xe5\x1e\x0a\xad\xca\x54\xc3\xee\xf3\x63\x9d\x81\xf7\x15\x00\x40\x9d\xe0\xa8\x81\xb2\x18\xbe\x7f\x11\xfa\x8f\xdf\x9d\x70\x59\x06\x12\x82\x9d\x30\x86\x07\xad\x48\x1c\x9d\x44\x86\x45\xaa\x28\xd7\x24\x85\x37\xaf\x9f\xca\xd3\x5e\x30\xe2\xde\xac\x92\x15\xe3\x9a\xb0\x88\xe1\xa7\xfb\x1e\xf7\x4d\xa6\xfa\xe5\xc0\xf1\x4d\xa3\x12\x8c\x7f\xbf\xff\xea\x2d\x97\x4a\xce\x31\xad\x7b\xf9\x56\xee\x39\xa5\xdf\x98\x7e\x8a\xc1\xfc\x0f\x80\x1f\xb4\x54\xec\x88\x2d\xda\x7a\x08\xd5\x56\xf2\x85\x32\x54\x97\xea\x8a\x5e\x98\x9e\xc4\x37\xeb\x2f\x6a\xf8\x2b\x89\x67\xcc\x1e\xab\xdc\xbf\xd9\xe3\x1e\x16\x13\x76\xa1\x03\x34\x90\x4f\x33\x47\x69\x90\x77\x8b\xcf\xe1\xe1\xdf\x92\x29\xfc\x72\x62\xc7\xb9\xd5\xff\x66\x42\xa0\x5a\x82\x7c\x90\x29\x31\x5e\xc4\xf0\xde\xc2\x3a\xf8\xd9\x15\x9e\x62\xa4\x8b\xd8\x1d\xa1\xe8\xb1\x89\xae\x1a\x24\x09\xd2\x9b\xe6\x5f\xf3\xd4\x0b\xff\xba\x8f\xd9\xe3\x60\xa2\xf6\x2c\x98\xa8\x67\x10\x4c\x72\x34\x05\x26\x35\x3f\x02\x06\xeb\xd1\xbf\x49\xce\x89\xdf\x87\x0c\x29\xdf\x5b\x35\x24\xfb\x70\x0b\xf3\x4d\x8e\xf5\x3b\xb5\xf4\x32\xf4\xce\x7b\x3e\x93\x3a\xf7\xc1\x3c\x22\xf7\x6e\xe1\x58\xe1\x3e\x98\x47\xde\xde\x6a\x21\x6d\x5b\x5a\x9a\x12\x76\x0d\xd8\x5e\xee\xfa\xfa\x57\x20\x3f\x44\x94\x41\x02\x94\xb9\xc1\x5a\xdb\x90\x34\x12\x77\x13\xb5\xbc\x21\x69\x54\xee\x26\x2c\x85\x43\x62\xeb\xdd\x85\xf5\x5a\x87\xc4\xe8\xde\x85\xf4\x9a\x87\xc4\xe8\xdf\x85\x58\x52\x87\xc4\x16\xbe\x0b\xf3\x89\x1e\x12\xef\x2c\x84\x88\x96\xec\x1d\xe6\xf0\x43\xe0\x5b\xd3\x1a\x09\x77\x55\x2b\x31\xdd\xb0\xa7\xd9\x69\x82\x99\x01\x0f\xd5\x24\xe7\x5a\x0e\x95\x19\xa5\x43\x85\x76\xad\x4c\xdc\x40\x08\xfc\xc9\x91\x8e\x37\x1e\xa2\xde\x39\x42\xf0\xc6\x83\x27\x6b\x46\xd3\x3d\x59\x13\x0f\x51\xad\x71\x75\xa8\x56\x3c\xb8\x6a\x3b\xc2\xee\x8a\x6d\x6c\x30\x28\xcd\xc8\xd6\x53\x62\x66\xf7\xbc\x3a\xb7\xee\xed\x50\x0a\x38\x31\x12\x1b\x96\x65\x0a\x8b\x22\x86\x8f\xed\x9f\x6b\xeb\x4b\xb5\x8d\x07\xf6\xae\xfe\xf0\xb1\x34\x95\xa5\xd0\x90\xc0\x11\xf5\xc7\xf6\xa1\xab\xb2\x5d\xf5\x30\xd3\x1c\x24\x1d\xa7\xef\x2f\x3a\xa2\xbe\x65\x39\xdb\x13\x27\x5d\x6d\x2c\x77\x7a\xeb\x99\xac\xad\xe1\xed\xa5\x52\xf2\xf5\xcf\xdf\xde\x07\x9f\x32\x2c\x24\x7f\x41\x65\xd8\xe7\xbf\x36\x86\xf6\xe1\x03\xe4\x4c\x50\xba\xb9\xba\x95\x25\xcf\x40\x48\x0d\x6d\x25\x60\xa0\xf0\x80\x0a\x45\x8a\xa0\x25\xe8\x27\xb4\x3a\xbf\xb2\xde\xe7\x85\xf0\xb5\x5b\xc6\xd9\xfb\x4b\x4f\x3f\xac\xfc\xa6\xde\x42\xca\xb6\x6b\x43\x17\x07\xdd\xec\x63\x32\xb8\x57\x8f\xa8\x2f\x5b\x7c\x21\x5d\xbb\x2b\xc5\xce\xa3\x77\x7f\x83\x77\x3a\x24\xf0\xde\x9a\x96\x83\x54\xf0\x8c\x15\x90\xe8\x1a\xb1\x87\x87\x8a\x9c\xb3\x6a\x1d\x15\x6d\xa1\xe8\x19\xab\xc2\xba\xe3\x47\x2b\xfd\x7c\xc6\xea\x57\x7d\x85\xcf\x96\x6a\x90\xeb\xa8\x54\xfc\xa2\xbe\xb6\x7f\x85\xba\x54\xa2\xd3\x96\xeb\x91\xba\xa2\x94\x0d\x7d\x52\x97\xa9\x9f\x86\x6e\xa9\xcb\x65\x5d\x03\x75\x38\x60\x9e\x46\x58\x2b\xeb\xb5\x54\x23\x42\x9f\x8b\x4a\x45\x9b\xad\xd7\x6c\x75\xa4\x3e\xb4\xae\xcf\xfa\xbe\x7b\xb2\x59\x8e\xed\xea\x78\x56\xb0\xd9\xc0\x39\x23\xe6\x39\x0c\xa6\xd9\x3a\xca\x97\x1b\xb4\x50\x89\xe2\xff\x18\xb7\x60\x1f\x16\x6a\xca\xd1\x4d\xbf\x87\x19\xf0\x88\x32\x14\x9a\x0e\x84\x6a\x99\xfd\x9b\x2e\x6c\x90\x73\x85\x3d\x5e\x71\xee\x9d\x17\x17\xdf\x39\x62\xf6\xcc\x95\x2b\xeb\x80\xe7\x9c\xe0\x7b\xa5\x1e\xf0\xa4\x13\x65\x2c\x71\x86\xb4\xe9\xf8\xd6\xa9\x9b\xc2\xe0\xa2\x03\x71\x1c\x8e\x54\xc0\xe2\x4e\x54\xdc\x1b\xdc\x4c\xc5\xfe\xe6\x1c\x85\xc6\x76\xb8\x5b\xb0\x7d\x5e\xb7\x80\xed\xea\xfc\x5f\x00\x00\x00\xff\xff\x0f\x9c\x02\xeb\x82\x11\x00\x00" + +func scriptsGet_nft_viewCdcBytes() ([]byte, error) { + return bindataRead( + _scriptsGet_nft_viewCdc, + "scripts/get_nft_view.cdc", + ) +} + +func scriptsGet_nft_viewCdc() (*asset, error) { + bytes, err := scriptsGet_nft_viewCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "scripts/get_nft_view.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xd3, 0x3a, 0x5e, 0xb0, 0xbf, 0xf3, 0xf9, 0xc6, 0xd6, 0x66, 0xe4, 0x28, 0x70, 0xbc, 0xad, 0xaf, 0x4c, 0xdd, 0x65, 0x54, 0x2e, 0x8f, 0xd8, 0x14, 0x16, 0x10, 0xa4, 0xd5, 0x28, 0xe6, 0xe9, 0x11}} + return a, nil +} + var _scriptsGet_total_supplyCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x4c\xcc\x31\x0a\x42\x31\x0c\x06\xe0\x3d\xa7\xf8\x79\x93\x2e\xe9\x22\x0e\xee\x0a\x2e\x2e\xea\x01\x6a\x7d\x0f\x0a\x6d\x1a\x62\x02\x8a\x78\x77\x47\xdd\x3f\xbe\xda\x75\x98\x63\xff\xcc\x5d\xdb\x7c\x3a\x5c\xb0\xd8\xe8\x98\x98\x13\x73\x2a\x43\xdc\x72\xf1\x47\xfa\x01\x2e\xf7\x32\x11\x69\xdc\xb0\x84\xa0\xe7\x2a\xab\xf5\x0e\xd7\xa3\xf8\x76\x83\x37\x01\x80\xcd\x1e\x26\x7f\x2b\xfb\xf0\xdc\xce\xa1\xda\x5e\xf4\xa1\x6f\x00\x00\x00\xff\xff\xab\xdd\xb2\x0f\x76\x00\x00\x00" func scriptsGet_total_supplyCdcBytes() ([]byte, error) { @@ -375,6 +396,7 @@ var _bindata = map[string]func() (*asset, error){ "scripts/borrow_nft.cdc": scriptsBorrow_nftCdc, "scripts/get_collection_length.cdc": scriptsGet_collection_lengthCdc, "scripts/get_nft_metadata.cdc": scriptsGet_nft_metadataCdc, + "scripts/get_nft_view.cdc": scriptsGet_nft_viewCdc, "scripts/get_total_supply.cdc": scriptsGet_total_supplyCdc, "setup_account.cdc": setup_accountCdc, "setup_account_from_nft_reference.cdc": setup_account_from_nft_referenceCdc, @@ -432,6 +454,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "borrow_nft.cdc": {scriptsBorrow_nftCdc, map[string]*bintree{}}, "get_collection_length.cdc": {scriptsGet_collection_lengthCdc, map[string]*bintree{}}, "get_nft_metadata.cdc": {scriptsGet_nft_metadataCdc, map[string]*bintree{}}, + "get_nft_view.cdc": {scriptsGet_nft_viewCdc, map[string]*bintree{}}, "get_total_supply.cdc": {scriptsGet_total_supplyCdc, map[string]*bintree{}}, }}, "setup_account.cdc": {setup_accountCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/script_templates.go b/lib/go/templates/script_templates.go index 11ebf617..f618f7f6 100644 --- a/lib/go/templates/script_templates.go +++ b/lib/go/templates/script_templates.go @@ -11,6 +11,7 @@ const ( filenameGetCollectionLength = "scripts/get_collection_length.cdc" filenameGetTotalSupply = "scripts/get_total_supply.cdc" filenameGetNFTMetadata = "scripts/get_nft_metadata.cdc" + filenameGetNFTView = "scripts/get_nft_view.cdc" ) // GenerateBorrowNFTScript creates a script that retrieves an NFT collection @@ -27,6 +28,12 @@ func GenerateGetNFTMetadataScript(nftAddress, exampleNFTAddress, metadataAddress return replaceAddresses(code, nftAddress, exampleNFTAddress, metadataAddress, flow.EmptyAddress) } +// GenerateGetNFTViewScript creates a script that returns the rollup NFT View for an NFT. +func GenerateGetNFTViewScript(nftAddress, exampleNFTAddress, metadataAddress flow.Address) []byte { + code := assets.MustAssetString(filenameGetNFTView) + return replaceAddresses(code, nftAddress, exampleNFTAddress, metadataAddress, flow.EmptyAddress) +} + // GenerateGetCollectionLengthScript creates a script that retrieves an NFT collection // from storage and tries to borrow a reference for an NFT that it owns. // If it owns it, it will not fail. diff --git a/lib/go/test/metadata_test.go b/lib/go/test/metadata_test.go index 5e0dd795..abcdae70 100644 --- a/lib/go/test/metadata_test.go +++ b/lib/go/test/metadata_test.go @@ -63,7 +63,7 @@ func TestGetNFTMetadata(t *testing.T) { exampleNFTAccountKey, exampleNFTSigner) - t.Run("Should be able to verify the metadata of the minted NFT through the Display View", func(t *testing.T) { + t.Run("Should be able to verify the metadata of the minted NFT", func(t *testing.T) { // Run a script to get the Display view for the specified NFT ID script := templates.GenerateGetNFTMetadataScript(nftAddress, exampleNFTAddress, metadataAddress) @@ -193,6 +193,133 @@ func TestGetNFTMetadata(t *testing.T) { }) } +func TestGetNFTView(t *testing.T) { + b, accountKeys := newTestSetup(t) + + // Create new keys for the NFT contract account + // and deploy all the NFT contracts + exampleNFTAccountKey, exampleNFTSigner := accountKeys.NewWithSigner() + nftAddress, metadataAddress, exampleNFTAddress := deployNFTContracts(t, b, exampleNFTAccountKey) + + // Mint a single NFT with standard royalty cuts and metadata + mintExampleNFT(t, b, + accountKeys, + nftAddress, metadataAddress, exampleNFTAddress, + exampleNFTAccountKey, + exampleNFTSigner) + + t.Run("Should be able to verify the nft metadata view of the minted NFT", func(t *testing.T) { + + // Run a script to get the Display view for the specified NFT ID + script := templates.GenerateGetNFTViewScript(nftAddress, exampleNFTAddress, metadataAddress) + result := executeScriptAndCheck( + t, b, + script, + [][]byte{ + jsoncdc.MustEncode(cadence.NewAddress(exampleNFTAddress)), + jsoncdc.MustEncode(cadence.NewUInt64(0)), + }, + ) + + // Expected metadata + const ( + name = "Example NFT 0" + description = "This is an example NFT" + thumbnail = "example.jpeg" + externalURL = "https://example-nft.onflow.org/0" + ) + + nftResult := result.(cadence.Struct) + + assert.Equal(t, cadence.NewUInt64(0), nftResult.Fields[0]) + assert.Equal(t, cadence.String(name), nftResult.Fields[2]) + assert.Equal(t, cadence.String(name), nftResult.Fields[2]) + assert.Equal(t, cadence.String(description), nftResult.Fields[3]) + assert.Equal(t, cadence.String(thumbnail), nftResult.Fields[4]) + + royalties := toJson(t, nftResult.Fields[5]) + // Declared an empty interface of type Array + var results map[string]interface{} + + // Unmarshal or Decode the JSON to the interface. + json.Unmarshal([]byte(royalties), &results) + + // Verify external URL view result is as expected + assert.Equal(t, cadence.String(externalURL), nftResult.Fields[6]) + + // Verify NFTCollectionData results are as expected + const ( + pathName = "exampleNFTCollection" + collectionType = "A.f3fcd2c1a78f5eee.ExampleNFT.Collection" + collectionPublicType = "A.f3fcd2c1a78f5eee.ExampleNFT.ExampleNFTCollectionPublic" + nftCollectionPublicType = "A.01cf0e2f2f715450.NonFungibleToken.CollectionPublic" + nftReceiverType = "A.01cf0e2f2f715450.NonFungibleToken.Receiver" + resolverCollectionType = "A.179b6b1cb6755e31.MetadataViews.ResolverCollection" + providerType = "A.01cf0e2f2f715450.NonFungibleToken.Provider" + ) + assert.Equal(t, cadence.Path{Domain: "public", Identifier: pathName}, nftResult.Fields[7]) + assert.Equal(t, cadence.Path{Domain: "storage", Identifier: pathName}, nftResult.Fields[8]) + assert.Equal(t, cadence.Path{Domain: "private", Identifier: pathName}, nftResult.Fields[9]) + assert.Equal(t, cadence.String(fmt.Sprintf("&%s{%s}", collectionType, collectionPublicType)), nftResult.Fields[10]) + assert.Equal(t, cadence.String(fmt.Sprintf("&%s{%s,%s,%s,%s}", collectionType, collectionPublicType, nftCollectionPublicType, nftReceiverType, resolverCollectionType)), nftResult.Fields[11]) + assert.Equal(t, cadence.String(fmt.Sprintf("&%s{%s,%s,%s,%s}", collectionType, collectionPublicType, nftCollectionPublicType, providerType, resolverCollectionType)), nftResult.Fields[12]) + + // Verify NFTCollectionDisplay results are as expected + const ( + collectionName = "The Example Collection" + collectionDescription = "This collection is used as an example to help you develop your next Flow NFT." + collectionImage = "https://assets.website-files.com/5f6294c0c7a8cdd643b1c820/5f6294c0c7a8cda55cb1c936_Flow_Wordmark.svg" + collectionExternalURL = "https://example-nft.onflow.org" + ) + assert.Equal(t, cadence.String(collectionName), nftResult.Fields[13]) + assert.Equal(t, cadence.String(collectionDescription), nftResult.Fields[14]) + assert.Equal(t, cadence.String(collectionExternalURL), nftResult.Fields[15]) + assert.Equal(t, cadence.String(collectionImage), nftResult.Fields[16]) + assert.Equal(t, cadence.String(collectionImage), nftResult.Fields[17]) + + minterName, _ := cadence.NewString("minter") + + traitsView := nftResult.Fields[19].(cadence.Struct) + traits := traitsView.Fields[0].(cadence.Array) + + mintTrait := traits.Values[0].(cadence.Struct) + assert.Equal(t, minterName, mintTrait.Fields[0]) + assert.Equal(t, fmt.Sprintf("0x%s", exampleNFTAddress.String()), mintTrait.Fields[1].String()) + assert.Equal(t, cadence.NewOptional(nil), mintTrait.Fields[2]) + assert.Equal(t, cadence.NewOptional(nil), mintTrait.Fields[3]) + + blockNumberName, _ := cadence.NewString("mintedBlock") + blockNumberTrait := traits.Values[1].(cadence.Struct) + assert.Equal(t, blockNumberName, blockNumberTrait.Fields[0]) + assert.Equal(t, cadence.NewUInt64(13), blockNumberTrait.Fields[1]) + assert.Equal(t, cadence.NewOptional(nil), blockNumberTrait.Fields[2]) + assert.Equal(t, cadence.NewOptional(nil), blockNumberTrait.Fields[3]) + + mintedTimeName, _ := cadence.NewString("mintedTime") + mintedTimeDisplayType, _ := cadence.NewString("Date") + mintedTimeTrait := traits.Values[2].(cadence.Struct) + assert.Equal(t, mintedTimeName, mintedTimeTrait.Fields[0]) + assert.Equal(t, cadence.NewOptional(mintedTimeDisplayType), mintedTimeTrait.Fields[2]) + + fooName, _ := cadence.NewString("foo") + fooValue, _ := cadence.NewString("bar") + fooTrait := traits.Values[3].(cadence.Struct) + fooRarityOptional := fooTrait.Fields[3].(cadence.Optional) + fooRarity := fooRarityOptional.Value.(cadence.Struct) + rarityDescription, _ := cadence.NewString("Common") + assert.Equal(t, fooName, fooTrait.Fields[0]) + assert.Equal(t, cadence.NewOptional(fooValue), fooTrait.Fields[1]) + fooRarityScore := fooRarity.Fields[0].(cadence.Optional).Value + score, _ := cadence.NewUFix64("10.0") + assert.Equal(t, fooRarityScore, score) + fooRarityMax := fooRarity.Fields[1].(cadence.Optional).Value + max, _ := cadence.NewUFix64("100.0") + assert.Equal(t, max, fooRarityMax) + assert.Equal(t, fooRarity.Fields[2], cadence.NewOptional(rarityDescription)) + + }) +} + func TestSetupCollectionFromNFTReference(t *testing.T) { b, accountKeys := newTestSetup(t) diff --git a/transactions/scripts/get_nft_view.cdc b/transactions/scripts/get_nft_view.cdc new file mode 100644 index 00000000..63c8960a --- /dev/null +++ b/transactions/scripts/get_nft_view.cdc @@ -0,0 +1,111 @@ +import ExampleNFT from "../../contracts/ExampleNFT.cdc" +import MetadataViews from "../../contracts/MetadataViews.cdc" + +pub struct NFTView { + pub let id: UInt64 + pub let uuid: UInt64 + pub let name: String + pub let description: String + pub let thumbnail: String + pub let royalties: [MetadataViews.Royalty] + pub let externalURL: String + pub let collectionPublicPath: PublicPath + pub let collectionStoragePath: StoragePath + pub let collectionProviderPath: PrivatePath + pub let collectionPublic: String + pub let collectionPublicLinkedType: String + pub let collectionProviderLinkedType: String + pub let collectionName: String + pub let collectionDescription: String + pub let collectionExternalURL: String + pub let collectionSquareImage: String + pub let collectionBannerImage: String + pub let collectionSocials: {String: String} + pub let traits: MetadataViews.Traits + + init( + id: UInt64, + uuid: UInt64, + name: String, + description: String, + thumbnail: String, + royalties: [MetadataViews.Royalty], + externalURL: String, + collectionPublicPath: PublicPath, + collectionStoragePath: StoragePath, + collectionProviderPath: PrivatePath, + collectionPublic: String, + collectionPublicLinkedType: String, + collectionProviderLinkedType: String, + collectionName: String, + collectionDescription: String, + collectionExternalURL: String, + collectionSquareImage: String, + collectionBannerImage: String, + collectionSocials: {String: String}, + traits: MetadataViews.Traits + ) { + self.id = id + self.uuid = uuid + self.name = name + self.description = description + self.thumbnail = thumbnail + self.royalties = royalties + self.externalURL = externalURL + self.collectionPublicPath = collectionPublicPath + self.collectionStoragePath = collectionStoragePath + self.collectionProviderPath = collectionProviderPath + self.collectionPublic = collectionPublic + self.collectionPublicLinkedType = collectionPublicLinkedType + self.collectionProviderLinkedType = collectionProviderLinkedType + self.collectionName = collectionName + self.collectionDescription = collectionDescription + self.collectionExternalURL = collectionExternalURL + self.collectionSquareImage = collectionSquareImage + self.collectionBannerImage = collectionBannerImage + self.collectionSocials = collectionSocials + self.traits = traits + } +} + +pub fun main(address: Address, id: UInt64): NFTView { + let account = getAccount(address) + + let collection = account + .getCapability(ExampleNFT.CollectionPublicPath) + .borrow<&{MetadataViews.ResolverCollection}>() + ?? panic("Could not borrow a reference to the collection") + + let viewResolver = collection.borrowViewResolver(id: id)! + + let nftView = MetadataViews.getNFTView(id: id, viewResolver : viewResolver) + + let collectionSocials: {String: String} = {} + for key in nftView.collectionDisplay!.socials.keys { + collectionSocials[key] = nftView.collectionDisplay!.socials[key]!.url + } + + + return NFTView( + id: nftView.id, + uuid: nftView.uuid, + name: nftView.display!.name, + description: nftView.display!.description, + thumbnail: nftView.display!.thumbnail.uri(), + royalties: nftView.royalties!.getRoyalties(), + externalURL: nftView.externalURL!.url, + collectionPublicPath: nftView.collectionData!.publicPath, + collectionStoragePath: nftView.collectionData!.storagePath, + collectionProviderPath: nftView.collectionData!.providerPath, + collectionPublic: nftView.collectionData!.publicCollection.identifier, + collectionPublicLinkedType: nftView.collectionData!.publicLinkedType.identifier, + collectionProviderLinkedType: nftView.collectionData!.providerLinkedType.identifier, + collectionName: nftView.collectionDisplay!.name, + collectionDescription: nftView.collectionDisplay!.description, + collectionExternalURL: nftView.collectionDisplay!.externalURL.url, + collectionSquareImage: nftView.collectionDisplay!.squareImage.file.uri(), + collectionBannerImage: nftView.collectionDisplay!.bannerImage.file.uri(), + collectionSocials: collectionSocials, + traits: nftView.traits!, + ) +} \ No newline at end of file