diff --git a/contracts/NFTStorefrontV2.cdc b/contracts/NFTStorefrontV2.cdc index 7d80238..e37ae9c 100644 --- a/contracts/NFTStorefrontV2.cdc +++ b/contracts/NFTStorefrontV2.cdc @@ -252,8 +252,22 @@ access(all) contract NFTStorefrontV2 { /// hasListingBecomeGhosted /// Tells whether listed NFT is present in provided capability. /// If it returns `false` then it means listing becomes ghost or sold out. + /// + /// DEPRECATED: The return value of this function is semantically inverted — it returns `true` + /// when the NFT is still present (i.e. NOT ghosted) and `false` when the NFT is absent + /// (i.e. IS ghosted). This is the opposite of what the function name implies. The function + /// is kept as-is to avoid breaking existing integrations that already compensate for the + /// inversion. Use `isGhostListing()` instead, which returns `true` when the listing is + /// ghosted and `false` when it is still valid. access(all) view fun hasListingBecomeGhosted(): Bool + /// isGhostListing + /// Returns `true` if the listed NFT is no longer present in the seller's collection + /// (i.e. the listing is ghosted and cannot be purchased), and `false` if the NFT is + /// still available. This is the correctly-named replacement for `hasListingBecomeGhosted()`, + /// which has inverted return semantics. + access(all) view fun isGhostListing(): Bool + } @@ -345,6 +359,10 @@ access(all) contract NFTStorefrontV2 { /// hasListingBecomeGhosted /// Tells whether listed NFT is present in provided capability. /// If it returns `false` then it means listing becomes ghost or sold out. + /// + /// DEPRECATED: The return value is semantically inverted relative to the function name. + /// This function returns `true` when the NFT is still present (not ghosted) and `false` + /// when the NFT is absent (ghosted). Use `isGhostListing()` instead. access(all) view fun hasListingBecomeGhosted(): Bool { if let providerRef = self.nftProviderCapability.borrow() { return providerRef.borrowNFT(self.details.nftID) != nil @@ -352,6 +370,17 @@ access(all) contract NFTStorefrontV2 { return false } + /// isGhostListing + /// Returns `true` if the listed NFT is no longer present in the seller's collection + /// (i.e. the listing is ghosted and cannot be purchased), and `false` if the NFT is + /// still available. This is the correctly-named replacement for `hasListingBecomeGhosted()`. + access(all) view fun isGhostListing(): Bool { + if let providerRef = self.nftProviderCapability.borrow() { + return providerRef.borrowNFT(self.details.nftID) == nil + } + return true + } + /// purchase /// Purchase the listing, buying the token. /// This pays the beneficiaries and commission to the facilitator and returns extra token to the buyer. @@ -863,13 +892,24 @@ access(all) contract NFTStorefrontV2 { message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is already purchased!" ) assert( - !listingRef.hasListingBecomeGhosted(), + listingRef.isGhostListing(), message: "NFTStorefrontV2.Storefront.cleanupGhostListings: Cannot cleanup listing with id \(listingResourceID) because it is not a ghost listing!" ) let listing <- self.listings.remove(key: listingResourceID)! + // Fetch duplicates before removing the primary from listedNFTs. + // getDuplicateListingIDs uses `contains(listingResourceID)` as a guard — if the primary + // is already absent from listedNFTs it returns [] and duplicates are never cleaned up. let duplicateListings = self.getDuplicateListingIDs(nftType: details.nftType, nftID: details.nftID, listingID: listingResourceID) - - // Let's force removal of the listing in this storefront for the NFT that is being ghosted. + // Now remove the ghost listing's own entry from listedNFTs. + // Every other removal path (removeListing, cleanupPurchasedListings, cleanup) does this + // for the primary listing; cleanupGhostListings was the only path that omitted it, + // leaving a dangling listedNFTs entry after the duplicate-cleanup loop. + self.removeDuplicateListing( + nftIdentifier: details.nftType.identifier, + nftID: details.nftID, + listingResourceID: listingResourceID + ) + // Let's force removal of the listing in this storefront for the NFT that is being ghosted. for listingID in duplicateListings { self.cleanup(listingResourceID: listingID) } diff --git a/contracts/utility/test/MaliciousStorefrontV2.cdc b/contracts/utility/test/MaliciousStorefrontV2.cdc index 719762f..14dec50 100644 --- a/contracts/utility/test/MaliciousStorefrontV2.cdc +++ b/contracts/utility/test/MaliciousStorefrontV2.cdc @@ -123,6 +123,10 @@ access(all) contract MaliciousStorefrontV2 { return self.storefrontCap.borrow()!.borrowListing(listingResourceID: self.listingResourceID)!.hasListingBecomeGhosted() } + access(all) view fun isGhostListing(): Bool { + return self.storefrontCap.borrow()!.borrowListing(listingResourceID: self.listingResourceID)!.isGhostListing() + } + // purchase will return the "wrong" nft access(all) fun purchase( payment: @{FungibleToken.Vault}, diff --git a/docs/documentation.md b/docs/documentation.md index 599cbdf..fa66eda 100644 --- a/docs/documentation.md +++ b/docs/documentation.md @@ -140,7 +140,8 @@ resource interface ListingPublic { ): @{NonFungibleToken.NFT} access(all) view fun getDetails(): ListingDetails access(all) fun getAllowedCommissionReceivers(): [Capability<&{FungibleToken.Receiver}>]? - access(all) fun hasListingBecomeGhosted(): Bool + access(all) fun hasListingBecomeGhosted(): Bool // DEPRECATED — see below + access(all) view fun isGhostListing(): Bool } ``` An interface providing a useful public interface to a Listing. @@ -187,13 +188,30 @@ If it returns `nil` then commission paid to the receiver by default. --- -**fun `hasListingBecomeGhosted()`** +**fun `isGhostListing()`** + +```cadence +fun isGhostListing(): Bool +``` +Returns `true` if the listing is ghosted — i.e. the underlying NFT is no longer present in the +seller's collection and the listing cannot be purchased. Returns `false` if the NFT is still +available. Use this function to check ghost state. + +--- + +**fun `hasListingBecomeGhosted()` _(deprecated)_** ```cadence fun hasListingBecomeGhosted(): Bool ``` -Tells whether a listed NFT that was put up for sale is still available in the provided listing. -If it returns `true` then it means the listing is "ghosted" because there is no available nft to fulfill the listing. +**Deprecated.** The return value of this function is semantically inverted relative to its name: +it returns `true` when the NFT **is still present** (the listing is _not_ ghosted) and `false` +when the NFT **is absent** (the listing _is_ ghosted). This is the opposite of what the function +name implies. + +The function is preserved to avoid breaking existing integrations that already compensate for +the inversion (e.g. by calling `!hasListingBecomeGhosted()`). New code should use +`isGhostListing()` instead. --- diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 8143cda..2a5ef80 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,13 +1,13 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // ../../../contracts/NFTStorefront.cdc (23.729kB) -// ../../../contracts/NFTStorefrontV2.cdc (43.078kB) +// ../../../contracts/NFTStorefrontV2.cdc (45.731kB) // ../../../contracts/utility/ExampleNFT.cdc (16.682kB) // ../../../contracts/utility/ExampleToken.cdc (9.619kB) // ../../../contracts/utility/NFTCatalog.cdc (16.383kB) // ../../../contracts/utility/NFTCatalogAdmin.cdc (7.969kB) // ../../../contracts/utility/test/MaliciousStorefrontV1.cdc (6.24kB) -// ../../../contracts/utility/test/MaliciousStorefrontV2.cdc (8.055kB) +// ../../../contracts/utility/test/MaliciousStorefrontV2.cdc (8.243kB) package assets @@ -97,7 +97,7 @@ func nftstorefrontCdc() (*asset, error) { return a, nil } -var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x5b\x93\x1b\xb7\xd1\xe8\xbb\x7e\x05\x56\x0f\x32\xe9\x8f\xa2\xfc\xa5\x4e\x9d\x87\x8d\x56\xf6\x7a\x25\x25\x5b\x89\x1d\x95\x2d\xdb\x0f\xb2\xaa\x16\x9c\xc1\x90\xa8\x1d\x0e\xc6\x00\x66\x29\x46\xd9\xff\x7e\x0a\x8d\xfb\x65\x86\xa4\x24\xc7\x76\x4e\xf8\x60\xaf\x48\x5c\x1b\x7d\xef\x46\x83\x6e\x7b\xc6\x25\x7a\xf8\x72\xe8\xd6\x74\xd5\x92\xd7\xec\x96\x74\x0f\x1f\xd8\xaf\xbf\x65\xdd\xc8\x2f\x5f\x0f\xbc\x23\xfc\xe1\x83\x07\x4f\x9e\x3c\x41\xdf\xbe\x7c\xfd\xbd\x64\x9c\x34\x9c\x75\xf2\xc7\x3f\xa9\xef\xe0\xfb\x4b\xb4\x26\x1d\xe1\xb8\x45\xfd\xc0\x7b\x26\x08\x12\xb8\x25\x48\x0c\x3d\x0c\x52\xb1\x4e\x72\x5c\x49\xd4\x30\xae\xc6\x10\x48\x6e\xb0\x44\x74\xdb\xb7\x64\x4b\x3a\x89\xe4\x86\xa0\x97\x2d\xdb\xa1\x74\x1d\x48\x48\xdc\xd5\x98\xd7\x4b\x98\x07\xfe\xf3\x02\x57\x1b\x84\xab\x8a\x0d\xd0\x13\x4b\xb4\xc3\x9d\x14\x48\x32\xd4\x52\x21\xf5\x04\x6a\x26\x58\x03\xed\x84\xc4\x6d\x2b\x10\x46\x7e\xe9\x0b\x18\x08\x77\x35\xf4\x10\x88\x76\x35\xbd\xa3\xf5\x80\x5b\xe8\x24\xd0\x8e\xca\x0d\xed\xf4\xe8\xbe\x1b\xc2\x02\xfd\x9d\x0a\x49\xbb\xb5\xd0\x0b\x7a\xbd\x21\x9c\x20\x2a\x10\xeb\x48\xd8\xb0\x27\xdc\x2e\x71\x81\xa8\x44\x1b\xdc\xd5\x6a\x5c\x3d\x3a\x6b\x10\x6e\x5b\xb5\x50\x24\xf7\x3d\x11\x30\x94\x5a\x31\xcc\x67\xfa\x2d\x1d\x74\x61\xc3\x66\x5e\x54\xe1\x0e\x6d\xf0\x1d\x81\x19\x19\x47\x5b\xc6\x09\x7a\x58\x0d\x52\x3c\x54\xe3\x2a\x48\xc2\xbe\x7b\x4e\x2b\x02\x03\xc2\x18\x6b\x46\x00\x42\x61\x2f\x5c\xd7\x9c\x08\x41\xc4\x12\x5d\x0d\x52\xc0\xd0\x2b\x82\x06\x41\x6a\xd5\xb4\xc7\x7b\x00\x8f\x9a\xb5\x21\x66\x95\x8c\x23\x26\x37\x84\xab\x33\x15\xb4\x26\x1c\x4b\xca\x3a\xb1\x44\xe5\x95\xd2\xae\x6a\x87\x9a\x20\x8c\x2a\xb6\xdd\x52\x21\x28\xeb\x10\xde\xfa\xa3\xa3\x02\xf5\x98\xc2\x7c\xbb\x0d\x23\x77\x84\xa3\x06\x57\xb4\xa5\x12\x4b\x33\xa5\xda\x52\x3f\xf0\x6a\x83\x05\x59\x2a\x88\x23\x41\xda\x56\x2d\x01\x77\x08\xb7\x82\xa1\x6a\xc3\x14\xce\xa9\x35\x73\x76\x47\xd5\x7c\x1d\x62\xbd\x5a\x19\x6e\x35\x52\xb0\x06\x6d\x31\xbf\x25\xb2\x6f\x71\x45\xf4\x6a\x39\xa9\x08\xbd\x83\x81\x7a\xbc\x52\x73\x52\x05\x8b\x6b\x75\xee\x54\x81\x43\x90\x05\xcc\x9e\xaf\x7d\x3b\x08\xa9\x60\x25\x39\xee\x44\x43\x38\x07\x90\x69\x08\x29\x08\xeb\x83\x08\xc7\x45\x80\x4e\x04\x56\x93\x1c\xad\xc2\x83\x2d\xde\xab\xf1\xd4\xaf\xa4\x56\x6d\xc3\x83\xb2\x38\xa7\x57\x73\x87\x5b\x5a\x53\xb9\x57\xb3\x10\x5c\x6d\x60\xa0\x10\xe8\x04\x0b\xda\xc2\x70\xd5\x86\x54\xb7\x24\x24\x9e\x57\x06\x90\x5c\x1f\xf7\x0e\xcb\x6a\x03\xa8\x67\x07\x20\x77\x44\x11\x93\xa2\x0d\xe8\x0d\x53\x5a\x4c\x55\x5f\xc3\x30\xd7\xcf\x15\xb4\x05\x21\x88\xc2\x56\xf7\x68\x47\xc5\x46\x7d\xb7\x1a\xf6\x6e\x9f\x6a\x27\x92\x6c\xf5\xf4\xdf\x78\xf0\xeb\xe1\x35\x1e\xe1\xf5\x9a\x93\x35\x96\xec\xc0\x8a\x22\x8a\x85\x61\x81\x8e\x68\x27\x09\x27\x16\xa4\xb8\xaa\x88\x10\x33\xdc\xb6\x73\xcf\x74\x12\xa6\x85\xde\x3f\x78\x80\x10\x42\x61\x5b\xd2\x49\x2a\x0d\x2f\xba\xe2\x04\x4b\x62\x26\x9f\x6c\xf9\x1d\xd9\xb2\x3b\xd7\x12\x9a\xaa\x45\xfa\xc9\xae\x3b\x2a\x29\x6e\xe9\x3f\x49\xed\x7e\xbd\x0c\xd9\x04\x27\x82\x0d\xbc\x22\x68\x83\x05\x5a\x11\xd2\xa1\x0a\x66\xaf\x97\xae\xfd\x0b\xb5\x7b\xa0\xb6\x61\x6b\x4f\xad\x63\x3b\x44\xde\xf5\xa4\x92\xf6\xb8\x1a\xce\xb6\x1a\x6b\xfd\xe8\x7e\x8c\x6f\x99\x24\x86\x53\x12\x54\x33\xd4\x31\x89\x44\x4f\x2a\xda\xec\x15\xa5\x18\x3e\x70\xae\x7e\xad\x70\xa7\x7e\x55\x80\x16\x1b\x36\xb4\xb5\x6a\xec\x47\xd2\xc0\xa9\xdd\xc2\x85\x1d\x0e\x58\x92\xa2\xba\x5d\xa7\x0e\x55\x8f\xb8\x80\x71\x0c\x6a\x2b\x58\x79\x30\xe0\x46\x2a\xc2\x53\xc3\x29\xb2\xa2\xea\xe0\xf7\x22\x58\x01\x20\x9f\x9f\xd8\x40\xf9\xf2\x0e\xd3\x16\xaf\x5a\x62\x37\x9e\xf0\xac\x9a\x48\xc2\xb7\xb4\x23\x80\x83\x66\x19\x6e\x10\x43\x96\x7a\x8d\xe6\x1f\xc1\x69\xcc\x96\xcb\x25\x95\x02\xb5\xac\x82\x55\xcd\x11\xd6\xa2\x49\xd2\xad\xa2\x69\x37\x8e\xc5\x6f\x85\x9d\xab\x41\x22\xd6\xb5\x7b\xdd\x16\x4b\xd4\x73\x52\x51\xa1\xf6\x0b\x48\x62\xa5\x88\xfd\x1a\x38\x06\xae\xd4\xf8\x7e\x77\xd7\x86\x71\x6b\xbe\xa6\x20\x25\xd2\xc5\xed\x36\xb4\x25\xd1\xcc\x54\x68\x56\xb0\x40\xc1\xc2\x34\x4b\x65\xc0\x6b\xb6\x6e\x82\x1c\x8d\x01\xab\x8a\x98\x3a\x13\xee\xdb\xef\xcc\x29\x5f\x3f\x3f\x47\x3f\x5c\x77\xf2\xff\xfe\x9f\xf9\x83\xd1\x13\x09\x30\xdc\xae\x30\xc5\x6a\x40\x07\x5c\xd7\xfa\xac\x70\x89\x12\x3c\x4c\x14\xa3\xbf\xd4\x07\xa8\xf6\x39\x10\x81\x40\xd8\x62\x6e\x58\x20\xda\x6d\x88\xe6\xa9\x7a\x37\x54\x20\xb2\xa5\x52\x92\x7a\xa1\x4e\x25\x3a\x2d\xa1\xc4\x89\x3d\x72\x23\x60\x85\x66\x5c\x9c\x34\x84\xab\xf5\x28\x3c\xad\x36\xb8\x5b\x13\xc4\x06\xa9\x84\x9b\xe9\xe0\xe9\x28\xe1\x24\x3b\xc6\x6f\x9b\x96\xed\x16\x48\x30\x60\xb7\x98\x93\x66\x68\xd5\x60\x9a\x77\xc2\x0a\x07\xa1\x60\x71\xcc\x79\xa4\x20\x9d\x41\x3b\xf5\xf1\x67\x72\x69\x89\xd5\xfc\xb1\x70\x6d\x0c\xd4\xf3\x43\xf3\x4d\xba\x46\xbe\xde\xf7\xe4\x1c\xa9\xff\x46\x5f\xff\xf0\x43\xd0\x1e\x85\xbf\x94\xc6\x51\x1a\xc6\x2b\xbc\x57\x08\xfe\x23\x1e\xda\xe2\xa0\xd0\x46\x29\x21\xe7\xe8\x87\x97\xf4\x5d\xd8\xbd\x1a\x84\x64\x5b\x35\xf0\xf7\x92\xd3\x6e\xfd\x65\xf0\x93\x13\xb5\x97\x20\x69\x0b\x9d\x5d\x8b\xef\x8c\xfc\x16\xe7\xe8\x8d\x81\xc6\xdb\x60\x28\xf2\xae\xa7\x7c\x6f\x17\x0f\x5f\xe7\xe8\x7b\xc5\x94\x12\x2a\x03\xce\xf4\x3a\x20\x31\x87\xc0\x0a\x3d\xdb\x3b\x52\x2f\xd1\xb5\x84\x6f\x09\x05\xe9\x05\x3f\x5a\xe5\xa4\x5e\x20\x0e\x22\xa1\x56\x92\xbb\x26\x42\x72\xb6\x0f\x78\xf9\xf4\xa9\xbb\x95\xcc\x8e\x38\x51\x54\xc0\x8c\xc9\x66\x6e\x8d\xe7\xe8\x6b\xc6\xda\x93\x51\xe2\x8f\x85\x11\x8e\x3a\x8e\x46\x87\x1f\x3a\xa5\x86\xda\xfe\x01\x2f\x33\x02\xbf\xf6\xda\xa2\x3a\x7e\x25\xa1\xf4\xd9\x2b\xe5\xb5\x1e\xb8\x21\x71\xad\x7b\x1b\x3e\xf3\xed\xcb\xd7\x87\xce\x3e\x9e\x76\xc6\xd3\xf5\x2f\xdc\xfc\xdf\xe3\x96\x5c\x0d\x6e\xf7\xf3\x92\xbe\xa1\xfe\xc2\x6b\xf2\x0a\xcb\x4d\x8c\xce\x46\xa0\x29\x61\x24\x74\x1b\x63\x6a\x14\x95\x11\x23\xf8\x57\xa6\xa3\xc5\xe0\x70\xf5\x2d\x91\xe5\x79\xcf\x51\xb8\x88\xc2\x1a\x5f\x0d\xab\x96\x56\xd9\x12\x7b\xf8\xda\xaf\x54\x29\x80\xd1\xea\x5a\xda\xdd\x1e\x5a\x87\x1f\xfb\x1c\x05\xf3\x04\xcb\xd0\x40\x0c\x8e\x57\x48\x3e\x54\x6a\xef\x3d\x27\x42\xc1\xba\x5b\x23\xac\xce\x9a\xf6\x94\x58\x23\xc5\x6a\xfb\xaa\x81\x32\x65\x08\x97\x98\x5a\x5b\x20\xd5\x2e\x7a\x4d\x05\x9a\xf7\x63\x24\xc1\x8c\xa5\x02\x09\xd6\x4e\xb0\x02\xb3\x0e\xb3\x40\xf4\xde\xa1\xad\x05\x90\x43\x3f\x6d\x27\xba\x79\x96\x51\xcb\xa2\xa6\x27\xc1\xd8\x73\x7a\x9e\x12\x4f\x0d\xed\x6a\x18\x05\x88\x55\xf7\x00\xf5\xd1\x01\x22\x10\x2c\xa0\xaf\x09\xa3\x7b\x74\xb7\x8a\xb9\x39\x5c\xb1\x73\x35\x44\xa9\xed\xd4\x98\x4e\x3b\xbc\x77\x6a\x1f\xee\x68\x3f\xb4\x0a\x8d\xe2\x11\x05\x8b\x16\xe2\x16\xa7\xf1\xb2\x1a\xa4\xb3\x59\xf7\x6c\xd0\x47\xb0\x26\x66\x95\x06\x5a\x58\xf7\xed\xa2\x71\x2b\x65\x5a\x5b\x68\x2d\x57\x8c\x73\xb6\x9b\xcd\xcf\x96\xa0\xf5\x2d\xed\x34\x8a\x18\x12\xd8\xbd\xd6\x46\x1f\xe8\x93\xb5\x32\xbf\x48\xd3\xd0\x4a\x61\x41\xbb\x57\x3b\xc3\x48\x54\x9c\xf6\x41\xaf\x14\x13\x3d\xf9\x5e\x59\xcb\x6f\xff\xf4\xd1\xfb\xc8\xa3\xb1\xb4\xc4\x7e\xff\xec\x41\x76\xc8\xc6\xba\x4c\x30\x29\xf6\x88\x68\x88\xd3\xb6\x55\xeb\xb4\xb6\xb3\x0c\x30\x64\x7c\x7d\x38\x62\xa0\xf1\xf4\xd4\x69\x80\x3c\xfc\xde\xfd\xad\x7e\x9f\x9d\xb8\xc1\x45\x32\xe3\x3c\xc0\x6b\x10\x08\xa4\x6d\x96\x0e\xb1\x2f\xdc\x0e\xf2\x46\x06\x30\x17\x21\xcd\xa9\xcf\xfd\x03\xfd\xdf\x4c\xae\x3f\x27\x12\xd3\x56\xe4\x94\xae\xcc\x42\x4c\x3b\x4d\xe7\xa6\xf1\x67\x02\xd5\x58\xe2\x83\xd4\x19\x8f\x5d\x20\xd2\x80\x5f\x19\x92\x72\xc6\x3b\xb0\x00\xf5\xb3\xb2\xee\xc7\x88\xd6\x90\xa0\xa1\x2d\x63\x09\x59\xdb\x49\xeb\xcc\x35\x6d\x1a\xc2\x63\xed\x3d\x27\x2c\x35\x0e\x15\xe8\x1f\x7f\x5b\x2a\xdb\x62\x07\x2a\x32\x47\x5b\x7c\x4b\x10\x95\xba\x85\xb2\x14\x24\xfa\xbc\xc2\xdd\xe7\x6e\x8a\x78\x20\x4d\x6a\x4e\x18\x70\x72\x47\x05\x75\xe2\x20\x85\xd1\x1d\xe6\x81\x32\xe2\x75\x84\x68\xc8\x9f\x36\x04\xf4\x26\x18\x3a\xd3\xb2\x9c\x92\xa2\x58\x8c\xb3\x3b\x4b\x13\x25\xea\x4c\x76\x10\x4a\xf1\x70\x62\x38\xf1\x29\x2e\xc1\x9b\x61\x2c\xa5\x15\x51\x2b\xd0\xce\x8a\x71\xc2\x89\x94\xa4\x6c\x32\xab\x78\xa1\xeb\xe7\x81\xe8\x57\x16\x5b\xb5\x01\x86\x02\xf6\x21\xc8\x0f\x69\xdd\x40\xd6\x3b\x31\x35\x65\xa8\x80\x65\x93\x0e\x1d\xfd\x65\x20\x88\xd6\x4a\x68\x35\xd4\x1b\xb4\x6e\x77\xc0\x23\x14\xcb\x54\x66\xe5\xe4\xde\x26\xa6\x09\x01\x59\xe0\x43\x86\x45\x09\x27\x22\xb7\xb8\x26\x11\x82\xa7\xd3\x8d\x2b\x8a\x63\xdc\x30\x12\xc1\xc0\xf0\x0c\x0c\xb5\x0b\x83\x92\x3a\x5e\xd9\x81\xb9\x43\x05\x34\xe7\xff\x76\x4c\x2d\xee\x6a\xaa\x50\x9e\x75\x0a\x02\x96\x1b\xaf\x88\xdc\x69\x93\xc0\xe8\x08\x62\x7a\xc2\xab\x41\x2a\x03\xc5\x48\xf6\xb7\xd1\x94\x97\x6d\xcb\x76\x01\x49\xd7\xb8\xef\x91\x24\x78\x2b\x42\x67\xa6\x56\x8e\x15\x13\xa2\xdd\x5a\x58\x51\x5c\x6b\xea\x19\xa8\xd8\x90\xda\xfc\x98\x90\xaf\x42\x02\xa0\xde\x0d\x69\x7b\xb0\x40\xb5\xc8\x6d\x25\xe1\xd6\x81\xc2\x09\xc8\x66\x23\x44\x28\x77\xaa\xf8\x38\xf1\x65\xca\x7a\x34\xed\x55\xe0\x2c\x75\xde\x1a\xa9\xed\xe3\x16\xd3\x2d\xa9\xd1\x6a\x5f\x72\xf6\x3a\xfd\x79\x1c\x9e\x63\xb6\x40\xb4\x80\x17\xa0\xe8\xab\x23\x6b\x03\x27\x5e\x69\xb8\xc4\x24\x88\x46\xb9\xe6\x5c\x2d\x50\xd0\x55\xbb\x07\xc2\x8d\x58\x16\x16\x9e\x05\x2d\x8b\xf2\xd2\xcc\x65\xe9\x7c\x8e\x9a\xa1\x53\xe3\xbc\x66\xd6\x05\x5b\xcf\x8a\xf2\xd0\x33\xc1\x0b\x24\xf9\x40\x02\x59\x17\x2d\xf0\x87\xbe\x76\x50\x33\x18\x12\x30\x03\x8d\x0f\xde\x2f\xe6\x91\x25\x72\x19\x06\xa8\x77\xd9\xf7\x22\x96\x4b\xdf\x60\xc7\xb5\x24\x43\x1d\xd5\x8e\x8d\x96\x60\x1e\xe9\x4e\x63\x3b\xbd\x32\x68\x32\xcb\xf0\x65\x5e\xd8\xb6\x6d\x84\x2e\x1c\x7e\x8d\xed\xfc\xfa\x08\x55\x05\xcd\xa2\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x1d\x69\xf1\xda\x76\x09\x0f\x48\x1a\x14\x84\x66\xdc\x62\xc2\x3a\x46\x47\x59\xc8\xa8\x6c\xff\xaa\xcf\xdc\xfa\xc3\xed\xa7\xe7\x24\x41\x4b\x0d\x5f\xf4\x23\x6e\xa9\x42\x39\xed\x72\x83\xd1\xb2\x66\xfa\x6b\xf4\xcc\xcc\x32\x5b\x2b\x34\xe0\x0a\xc1\xbe\x6e\x59\x75\x3b\x9b\x2f\x25\xdd\x12\x21\xf1\xb6\x9f\x9f\x67\xbd\xd5\xe7\x61\xe2\x64\x5b\xc6\x4a\xd7\x52\x1d\xee\x39\x88\x87\x35\xbd\x23\x9d\x9d\xd1\x0d\x8b\x7e\x9e\xe9\xaf\xe6\x4e\x66\x18\x71\xd1\x0c\x72\xe0\xe4\xec\xe1\xc1\xbd\xb5\xa4\x5b\xcb\x4d\x14\x4d\xab\x06\x99\x75\xb3\x07\xbb\x34\xed\x9f\xa1\x2f\xce\x8f\x5c\xbe\xd5\x09\x61\x85\xda\x75\x2e\x51\x4b\xb0\x90\x10\xf7\xb1\xa2\x46\x19\x41\x4e\xcc\xc4\xeb\xbe\x7f\x90\x93\x50\x88\x48\xe8\x22\xc2\xab\x69\x36\xd3\xe0\x56\x90\xbc\x89\x21\x1a\x74\x61\xc9\xa7\xd8\x44\x11\x8f\x6e\xa2\xfe\x2a\x36\xb1\x0d\x4a\x3f\x97\xc8\x48\x2d\xbe\xf0\xf5\x69\x4c\xc3\x37\x4a\xc8\x43\x35\x4e\xbe\xca\x3b\x19\xb4\xba\x28\x21\xba\x5b\x37\x44\x4d\x2f\x1c\x22\xc4\x47\xa2\x44\x21\x6e\x2b\x30\x7d\x75\x14\x81\x49\xdc\x9a\xb8\xac\x89\xd7\x00\x62\x89\xa8\x1b\xa8\xd1\x56\x4f\x39\xb4\xd4\x27\x4f\xd0\x2b\xc2\x1b\xc6\xb7\xd6\x7e\x33\x8e\x67\xd6\x45\xc1\x47\x1d\x88\xa9\xdc\x72\x82\x08\x31\xac\x44\x21\x9a\xd6\xb6\x02\x11\xa0\x3e\x0d\xe3\xf0\x23\xed\x92\x5d\x17\x39\xc4\x37\xca\xbe\x10\x03\x27\x26\x8e\x83\xb4\xf5\x3d\x62\x9d\x06\x1d\x7f\x22\x5a\x5b\xb5\x11\x47\x2a\x10\x5e\x63\xda\x79\x17\x7f\xc1\x8d\x12\x7e\xaa\x41\x2e\x33\x9b\xbf\xc8\x5f\xbe\xfc\x12\xf5\xb8\xa3\xd5\xec\x38\x4a\xbd\x32\x36\x98\xde\x88\x9d\xe2\x61\x3e\xb6\xd2\xe6\xea\xda\x9e\xa9\xd3\x5d\x59\x7a\xf4\x45\x36\x62\x0f\xdb\xff\xfd\x3f\xb0\x25\x9c\x1f\xf9\x7d\xf4\x2f\x2c\x04\xe1\x72\x36\x31\xe8\x33\xf4\xc5\xf2\x8b\x45\xd6\x60\x4b\x84\xc0\x6b\x72\x2c\xc3\x7a\x1d\x18\xb2\x9e\x69\x75\xac\x7b\xfc\x4f\xc2\x99\xde\x59\xc2\x59\xe7\x19\x39\xc0\x34\x26\x30\x6e\x30\xb1\x0e\x50\x71\x84\x37\xa4\xa0\x39\x6c\xfb\x6b\xd7\x9f\x37\xfd\x3b\x1d\x25\x6e\x70\x45\x8c\x4e\xad\xad\xff\x41\x40\xb4\xc6\xb8\x1e\x7d\x1b\xb0\xb3\xcd\x58\xe3\x3e\x01\x67\xa6\xfb\x8e\xd1\xfc\x89\x7b\x40\x63\xd0\xb7\x2f\x5f\xe7\x36\x07\xa0\xbe\x3e\x49\x67\xda\xe0\x2d\x01\x2f\x9a\x51\xf6\x95\x51\x67\x53\x61\xfc\x50\x01\x8a\x83\x0b\xc7\x1b\x80\x8a\x80\x56\x82\x74\x72\x01\x24\x4c\xde\xe1\x6d\xdf\x42\xb0\x9e\x4a\x6f\x6f\x2b\x5a\x42\x77\x14\x23\xdc\xe9\x60\x7c\x1b\x6e\x1a\x95\x35\x5a\xd8\xbc\x52\xf1\x82\x65\x9c\xa3\x47\xef\x4b\x66\xf6\xfd\x97\xb1\xe6\x66\x85\x4e\xf4\xa5\xd5\x87\xc3\xe0\xe6\x02\xad\x86\xbd\xf5\xa9\xcb\xd8\xaa\x73\x70\xeb\xf1\x5e\x43\x67\x45\x3a\xd2\xd0\x8a\x62\x4e\x4d\x6e\x01\x27\x72\xe0\x9d\x08\x58\x87\xa1\xc4\xd5\xb0\x0f\x79\xd0\xd4\xfe\xec\x62\x63\xea\x32\xb2\xf9\x1c\x7d\x95\xb8\xbd\x40\x4c\xdd\x07\x21\x17\x94\x86\x26\xb4\x1c\x3f\xd2\x77\x16\xe8\x78\x73\x35\x59\x11\xbc\x31\x74\xd7\x44\x86\x6e\x2f\xfb\xf5\x4b\x22\xab\x8d\x35\x68\x8d\xeb\xca\xe8\x36\xd9\x79\x47\xa6\x1e\x25\x3b\x00\x84\x1f\x57\x9d\x74\xe2\x60\x4b\x57\x00\x26\x2d\xa9\xaf\xf2\x28\xdd\xe8\xa2\xb0\xee\x12\x26\xe8\x88\x38\x77\x46\x49\x21\x6f\x56\x5a\x2e\x9c\x98\x2b\xd7\x80\xdc\xf6\xe4\x6f\x3a\xda\xde\x80\x77\x38\xec\x4a\x05\x1a\x7a\x85\x0b\x6b\x8e\x57\xca\x0e\xc5\xdd\x9e\x75\x23\x16\x67\x08\x80\xf1\x6d\x29\x98\xbc\x39\xea\x48\xdf\x26\xd4\xb0\xc1\xc2\x00\xf3\x6b\x52\xb1\x2d\xf9\xcb\x86\x09\x1b\x89\x74\x88\x4e\xda\x56\x28\x31\xe8\xe8\x93\xd4\x96\xc2\x8d\xa7\x5e\xf1\x0c\xe3\x2a\xa8\x3d\xd8\xf6\x93\xc0\x01\x8d\xcf\x80\x87\x4a\xb4\x25\xb8\xf3\xc6\xed\x0a\x56\x23\xd0\x5a\xad\x47\xc1\x1e\xf8\x04\x1b\xc6\xfc\x71\x16\x4c\x23\xfb\x51\x00\x02\x27\xdd\x18\xbf\x0e\x9c\xb4\x71\x5c\x01\x10\x43\x11\xb4\x76\x6a\x81\x0f\x01\xd6\x02\xd1\xa1\x2e\x70\x97\x63\x63\x0d\x44\xa0\x5f\xb8\x81\x15\x4b\x70\x71\x13\xce\x2a\x42\x6a\x43\x03\x58\x3b\x69\xec\xe0\x7d\x4b\xbd\x87\x47\x90\x3b\xc8\x69\x4c\x3d\x3d\x90\x4c\x95\x42\xc1\xad\xdc\x6c\xea\x3c\x96\x06\x0b\xa4\x13\x29\x97\xea\x7f\xe0\x12\xc9\xbd\xc7\x02\x12\x22\xd1\x4c\x89\x55\x8f\x50\x0b\x10\xb3\x15\x44\x87\xdf\xcd\x53\x0a\x56\x8b\x4f\x4f\x45\xc9\x4e\xed\xe0\x30\x8d\xa7\x89\xf6\x32\x40\x1a\x0d\x72\xcd\x78\x43\x57\xb4\x64\x90\x12\x59\x73\xbc\xf3\xfe\x4d\x2a\x37\xf0\x0f\x0d\xfa\xeb\xe7\x5a\x97\xa4\x52\xa0\x8a\xb5\x2d\x09\x72\x5c\x50\x1c\x62\x89\x67\x13\x46\x3f\x2c\x4c\xf5\x39\xee\xf6\x9f\xab\xc9\x20\xc3\x62\xcf\x86\xc0\x1d\x6d\x93\x2d\x40\x45\x5c\xd3\xbb\xd4\xfd\x25\x86\x6a\x83\x70\x38\x1b\xc8\x75\x37\x0f\xe4\xa2\xb4\x90\x75\xa4\xd5\x4e\xbd\xf0\x9a\xe8\x5c\x10\xab\xc9\x52\xe3\x48\x1d\x04\xfc\xad\xe5\x73\x34\x91\x12\xd3\xd6\x9d\x0e\x1e\x2e\x51\x96\x2f\xf6\x98\x1b\x4a\xda\x5a\xa7\xd3\x0d\x82\x08\x74\x53\x90\x9d\xaf\x34\x3d\xf3\x45\xee\xbd\xbe\x72\xb0\xd5\x98\x75\x7f\xe3\x73\x83\xa2\xb9\x6e\x94\xea\x76\x83\x7a\xcc\xf1\x96\x48\x9d\x90\x4a\x7a\x59\x9e\xd0\x8f\x7a\x7f\x03\x49\x96\x82\x18\xe7\x10\xe8\x37\x9d\xce\xa5\x6c\xf7\xe7\x10\x5f\x4b\xb9\x79\x8f\x85\x3e\xc5\x0e\x2b\x9d\x80\x70\x74\xe3\x07\xbc\xd1\x7b\x9d\x69\x7f\x38\x15\x36\x21\x47\x2b\x33\xe1\xf9\xa8\x66\x54\x88\x41\xfb\xac\x74\x36\x94\x98\x27\x81\x48\x1b\x2f\x14\x82\xae\xbb\xad\x49\xfc\xd1\x09\x41\x2b\x52\x61\x75\x4e\x37\x13\xdb\xbb\x41\x15\xeb\x94\xc5\x04\x2e\xd6\x15\x93\x1b\x74\x63\xa1\x7d\x93\xcd\x74\x93\x42\xfb\x66\x89\x2e\x5b\xba\xee\x9c\x6e\xb2\x63\x56\xb5\x00\x9d\x0d\xf6\xb0\xb3\x38\x8a\xd1\x8a\x13\x7c\x0b\x89\x99\x3a\xb3\x48\x6b\x63\x89\x5f\x52\xc7\xdf\x24\x59\x9b\x6c\x5a\xcb\xfd\x38\xc1\xf5\x1e\x6d\x14\xc7\x3b\x74\x66\x71\x0e\xeb\xb8\x6f\xce\x78\xfc\xed\x8e\x3d\x9b\x89\xd4\x12\x3c\xc8\xcd\x2c\x9b\xef\x27\x43\x96\xf3\x92\xb6\x77\x0a\xc6\x26\x91\xcf\xcb\xe9\x64\xdd\x44\x17\xd0\xb0\xe1\x04\xe1\x5e\x49\x3d\x52\xa3\xd8\xeb\xcd\xac\x7e\x00\x87\x12\x26\xfd\x7a\x3d\xe0\x00\x80\xc2\xc9\x43\x08\x7d\x98\x98\xbf\x52\x04\x03\x4e\x6f\x23\x02\x56\x03\x77\x96\x2d\x15\x61\x80\x30\xc9\x19\xb2\x23\xbc\xd8\x2a\xde\x94\xe6\x09\xe9\xb0\x12\x8d\x34\x39\xb4\x33\xc9\x29\x16\x79\x60\x2b\x75\xe4\xaf\x4e\xa2\x85\xb4\xab\x7c\x7e\xf5\x6c\x0e\x39\x74\x22\x48\xab\x73\x72\xd3\x39\x8c\x2a\x2c\x48\xa6\x5d\x68\xf7\x38\x5b\xd3\xca\xa0\xba\x58\xd8\x88\x61\x98\x93\xca\xc3\x9c\xd9\xd9\x1c\x88\x2c\xf8\xb9\x6a\x09\xee\x86\x7e\x36\x3f\xe0\x5e\x56\x20\x54\x70\x5d\xe1\xea\x36\x73\xa3\xfb\x84\xca\x30\xc2\xe8\x53\x76\x7c\xba\xd6\x4e\xc9\x9d\xb5\x62\x43\x14\x92\xfb\x2b\x07\xdb\x0d\xe1\x64\x99\x8e\xfa\x0f\xa5\x84\xed\xa8\x20\x13\x1d\x69\x60\x38\xcc\xb3\x11\x5e\x9b\xc0\xac\xe5\x54\x3b\x62\xcf\x3c\x4e\xed\xec\x26\x60\x96\x8e\xc9\x78\x11\x82\x28\x9b\x5c\x47\x82\x0d\x23\x82\xf3\x82\xb9\x87\x4a\x32\xee\x0f\x4b\x6e\x98\x20\x0a\xc8\x95\xce\xec\x8f\x46\xa1\x0d\x3a\x03\xd3\xdc\x68\x16\x81\x1b\x31\xf7\x08\x29\x4c\x9a\xc8\x6e\x0b\x3f\x85\x4c\x37\x98\x66\x18\x68\x9d\x3b\x2f\xd0\x68\xde\x5b\xb4\xb6\xd0\x01\x5a\x1e\x24\x08\x23\x97\x77\x55\xee\xe6\xa2\x09\x51\x27\xf3\xed\x68\x17\x1d\x65\x48\xbb\xa8\x6f\x47\xbb\x94\x3a\x8c\x35\x2f\xc7\x23\x62\x80\x14\x9a\x4c\x0c\xa6\x23\xa5\xf9\x08\xea\xfb\x72\x37\x1f\xa8\x88\x7a\xd9\xaf\x47\x3a\x65\xe1\x8b\xb8\x73\xf2\xf3\xa1\x41\x7c\x0e\x60\x47\xdb\x72\x63\x1b\x0a\x89\xe6\x19\x89\x68\xcc\x47\xbc\x6f\x89\xed\x5d\x76\xef\x7c\x07\xf6\x96\xd1\x6f\x21\xd0\x56\x91\x2c\x4e\x6f\xc2\x8a\xa4\x76\x97\x96\x96\xff\x06\xb7\x8e\x53\x6c\xb5\x4d\xa8\x80\xf5\x09\xdd\x3e\xa3\x1c\xd9\x18\xaa\x3c\xd4\xfb\x82\x2c\xdb\x3b\x76\xab\xd3\x68\xed\x9a\x10\xc7\x26\x61\x04\x77\xda\x71\xab\xb4\xa9\x45\x3a\xba\x8d\x89\xb3\xca\xdf\xfb\xe8\x39\xdb\x52\xa5\x60\xab\x61\xb4\xc5\xb8\x37\xe0\x7b\x32\x74\x3e\x36\xed\xd2\x34\xed\x87\x36\xa0\x05\xd8\xa5\x7e\x47\x1a\x74\xe1\x62\x19\xb9\xe6\xe4\xfc\xcd\x05\x16\x68\x86\xe2\x30\x44\x30\xe0\xd2\x43\x31\xa7\xef\xd2\x40\x66\x30\x4e\x9a\x25\x15\xd7\x9d\x52\x9f\x2b\x92\xf5\x55\x04\x3d\x47\x8f\x1e\xe9\x76\x35\xba\xb8\x28\xb0\x8f\x91\xd1\xd5\xc7\xc0\x9d\x93\xa6\xd8\xe4\x3e\xfb\xf6\x7e\xc2\x37\xed\x0f\x71\x8c\x68\x46\x1c\x56\x7f\x21\x32\x75\x56\x1d\xed\x98\x3c\xca\x69\x95\x40\xc0\x2c\x34\x84\xd4\xc4\x8a\xff\xeb\xe0\x9a\xd0\x7c\x27\x20\x5b\x56\xaa\xc7\x00\xfd\xff\x99\x6f\x2c\x81\xdb\x27\xe4\x40\xe6\x08\x8e\xe7\x3d\x67\x17\x11\xc9\xa2\x31\xba\x8e\x83\xc6\xf7\xbf\x91\xa3\x3f\x40\x7d\x63\x86\xbb\x8c\x22\xe0\xf8\x3e\x14\x40\xde\x49\x8e\x0f\x05\x03\xf4\x7c\xfa\x52\x69\x0b\x07\x3f\xf4\xa8\x1e\xfa\x96\x56\x58\xba\x45\x0b\x67\x14\x51\x49\xb6\x26\x87\xb0\x90\x0f\xf4\x07\x8c\x28\x1c\x97\x0d\x32\x62\x02\x5c\x98\x54\x82\xd3\x32\x3b\xdc\x00\x71\x98\x51\x69\x05\xd6\x8a\x8d\xed\xb6\x3c\x83\xc3\xe6\xc2\x8f\x89\xc6\x92\xe2\x7b\x62\xfe\x49\xb0\x4a\x13\x13\xee\x0b\xe8\xac\x9d\xa2\xd7\xcf\xd1\xcf\x7a\x01\xa1\x14\x32\x04\xa6\xaf\x30\x37\x06\xf2\x06\x21\x21\x4f\x0b\x0b\x97\xf9\xf1\xf4\xe7\x99\xdd\xd3\x9a\xc0\x72\x67\xf3\xa5\x4f\xef\x9a\x2b\x16\xa7\xd6\xa0\x35\xcb\x5f\x06\x02\xbc\x0f\x9c\x4f\x4f\x7f\x3e\xbc\xf7\x70\xa8\xe5\x38\x38\x57\xb8\x55\xb0\xcc\xd4\x08\x6f\x1d\xfc\x96\x20\xb4\xb0\xba\x83\x2b\x0c\x35\x23\x1a\x24\x26\xc1\x3b\x01\x8d\x4e\x76\x60\x0d\x2a\x41\x47\xfd\x56\x82\x43\xc1\x3e\xf8\x35\x52\x9b\x8e\x83\xcb\x59\x44\x1d\x54\x68\x2b\xa6\x44\x0d\xb0\x6c\x7d\xc9\x55\x33\x73\xf4\xc1\xeb\x71\xa9\xcd\x0a\xbc\xdd\x67\x26\xee\xef\xfd\xaf\xa4\xd6\xb7\x69\xd3\xe4\xa4\xf0\x5f\xa9\xae\xee\xb3\x44\xc2\x53\xf7\xc9\xee\x9e\x9f\x40\x0e\x48\xac\x9b\xc7\x87\x97\xa6\x53\x8e\xcf\x4b\x9b\x69\xab\x52\xe7\x49\x94\xd3\x5a\xae\x9b\x44\x39\x33\x77\x83\x28\x98\x16\x0b\xf4\x7a\xc3\xd9\x4e\x1b\x27\x79\x66\x4a\x9c\xb6\xfa\x9d\xbf\xec\x50\x60\xe4\xc5\x53\x3a\x98\xb0\x12\xa2\x4f\x69\x99\x15\x56\x07\xb7\x22\x6a\xb1\xe5\xc4\x95\x1f\x09\xa7\xcd\x3e\x2e\x59\xb0\x0f\xdd\xea\x0d\xe3\x04\xf5\x3a\xd3\xc8\x0a\x6b\x50\x6a\xc1\x5d\x0b\xe1\x93\xdc\xd2\xd6\x57\x11\xb0\xb5\xea\xc2\xa1\x7b\xce\xea\x01\xea\x00\x98\x7c\x52\xc2\x39\xe3\x91\xad\x87\xc1\x4f\xaf\xef\xce\x9a\xec\x9b\x06\xd3\x76\x48\xdd\x72\x68\x22\x0b\x06\x15\x1d\x03\x4b\x58\xef\x6c\x5e\xf6\x0d\x1c\x4c\x8c\x49\xc4\x95\xd7\x2e\xcb\xb0\x0f\xc1\x49\x3b\x00\x68\x4e\xb1\xf9\xa9\x58\x7c\x2d\x6b\xcd\x96\xae\xcb\x96\xdc\x1d\xe6\x88\x8a\xab\x1c\xbf\xfe\x8a\x05\x24\x3a\x9a\x1c\xbb\x3c\xed\xef\xe0\x08\x97\x83\xdc\x30\x4e\xc7\xd2\x06\xed\x07\xd2\xc6\x70\xef\xd2\xc6\xca\xbb\x38\x9b\xb0\x44\x9f\x3c\x41\x57\x10\x95\xfb\xdf\x73\xf4\xbd\x8e\xf9\x39\xd6\xe3\x02\x2d\xa3\xbd\x69\xa3\xa6\xf7\xa2\x53\x49\xb0\x02\x22\xf8\xdf\xc7\x17\x02\xc3\x1d\x01\xcc\x28\x55\x7b\x72\x47\x7f\xca\x77\xa4\xe9\x4c\x43\x29\xbe\x09\xb7\x61\x6d\x2d\x7c\xa8\xa3\x64\xc2\x4c\x00\xc0\x0e\x55\xde\xbe\xfd\xf5\xd1\x23\x68\x6c\xc8\xe2\x00\x2c\x46\xe1\x11\xa1\xc6\x41\x68\xa8\x0f\xc4\xc6\x26\x5b\xe5\x0e\x87\xe9\x5f\xca\xdf\x4e\xb1\x07\x74\xcc\xf1\x96\x39\x05\x3a\x91\x5b\x24\xb2\xfd\x0c\x5d\x9a\xc8\x79\x91\x73\x80\x2e\xe7\x94\x1a\x9d\x23\x6c\xf0\x44\xfd\x54\x48\x63\x46\x45\x46\xf2\xc1\x00\xf0\xe7\xf9\x2b\x6f\x3f\x16\xa8\x4c\x22\xec\x31\x29\x89\xe6\x79\x48\x1d\xbd\xff\x1c\x25\x62\x89\xfc\xca\x6a\xdc\x8f\x9d\xda\x6b\xd3\x0f\x66\xf8\x18\x7f\x74\x3e\xa5\xb9\x0a\x6a\x36\x55\x24\xbd\x8f\x4b\x51\x0d\xa0\xfa\x43\xe7\xee\xd7\xf8\x5c\xdb\x82\x2b\xa9\x28\x93\x0a\xda\x80\x6b\xb6\xac\x49\xcf\x04\x95\xb3\x86\xb3\xed\xb9\x02\x4f\x06\xb3\x31\xd7\x38\xd2\xdc\x0e\x3c\x60\x71\x06\x9e\x71\x1d\x18\xf3\xdb\xee\x22\xc9\x09\x36\x21\x6a\xf4\xf4\xf1\x11\x1e\x8f\x33\x7f\x5a\xf6\x8f\x72\xd0\x24\x0b\x9b\x7d\x6b\x4a\x38\x38\x67\x1b\xea\x18\x77\x7e\x12\x01\x21\x66\xc9\x07\x21\x77\x8c\xcb\xcd\x7e\xa1\xab\x85\x40\xf2\x6b\x5c\xb8\xac\x62\x9c\x93\x2a\x4b\xcc\xf6\x69\xa1\xab\x41\xa9\x5f\x7b\xa6\xdd\x15\x7d\xbb\x77\x56\x0e\x95\xe0\xa9\x7a\xd2\x33\x01\x86\x4b\x4d\x6d\xfc\x9f\xec\x61\x01\x8a\x1c\xd6\x03\xe6\xb8\x93\x24\xf0\x7e\x99\x29\x24\x4b\x96\x62\xa3\x76\x18\x94\x84\x15\xd9\xd8\xdb\xd5\x7e\x31\xb4\x03\x3f\xb8\x26\xbd\x1d\xde\x17\x42\x94\x84\x6b\x85\xcf\x17\xe3\x01\x38\xc0\x40\x3e\x96\xef\x33\x69\x4a\xf3\xe4\x1e\xfa\xae\x56\x03\x02\xfc\xe2\xc2\x52\x3e\x91\x56\xc2\xb2\x04\x1a\x44\x9c\x83\x63\xb3\x6b\x4c\xee\x88\x01\x38\x8a\xfc\x9a\x68\x82\xcf\x75\x8d\x8c\x75\x81\xe3\xe2\x76\xa7\xaa\x82\x32\xbc\x74\xfa\xf2\xb5\x57\x0d\x57\xfb\xb0\xbc\xcf\xd3\x9f\x67\xd1\x82\x42\x63\xfc\x99\x67\xf9\x5b\xec\xc8\x07\xf2\x62\xba\xc8\x5c\xb2\xbe\xf1\xd4\xda\x37\x9b\x89\xc6\xcc\x12\xb3\x8f\x85\xd9\x58\x04\xe1\xe3\x41\x05\xe6\xbd\x9e\x62\x7e\x04\xc8\x0a\x40\xf1\x0e\x82\xc4\x7f\x59\x06\xd4\xc1\xe4\x74\xcf\xad\x32\x77\x9f\xf3\xf6\x69\xa2\x09\x83\x7c\xa6\xf3\x25\x38\xfa\x7c\xc9\xa6\x97\x6a\xf3\xdf\xe0\x0e\xaf\x49\x50\x2b\xc1\x87\x00\x81\x15\x6e\x99\x91\x6a\x05\xff\x22\x6d\xbc\x0f\xc0\x5c\xe1\xc4\x7d\x4f\x3a\x24\x06\x98\xaa\x19\xda\x76\x9f\xb3\x4d\xe1\x26\xd7\x99\x36\xda\x71\xbc\x26\xf2\x52\x97\x3c\x9a\x79\xd7\xc0\x99\x55\xff\xe6\xcb\x28\x75\x48\x33\xd6\xa7\x8f\xde\xa7\x07\x99\x96\xd9\xb8\x7f\x56\x56\x28\x0e\xf5\x73\xa5\x3f\xa2\xf3\xf8\x78\xa1\x27\x46\x01\x9f\x88\x39\x48\x8c\xb4\x20\xb7\xa5\xf5\xec\x7d\xa9\x18\x78\xe0\x7c\x4a\x9a\x5e\x3f\x17\xe5\x8d\x7f\x58\x56\xc0\x29\x21\xfe\xd6\xae\x20\xc8\x8e\x28\xd8\x92\x29\x76\xfe\x9d\xc8\xcf\xc0\x65\x0d\x38\xb8\x65\x77\xb8\x4d\x12\xc0\x5d\xe1\x0e\x9f\x32\xe1\x90\x3e\xbf\x2d\xef\x3d\xdd\xb1\x8f\x45\xf5\x70\x4b\x54\x43\xe6\x50\x2e\xb8\x92\x0b\x50\xb7\x39\x2c\x85\xac\x10\x37\x7e\xaa\x7c\xa4\x9b\xfe\x2e\xf4\x25\xac\x18\x97\x2e\xc8\xe0\x0b\xb0\x29\x32\x53\xc2\xd0\x29\x49\x2e\xbe\xae\xd3\xb3\x76\xaa\xf5\xde\xd6\xc2\xa4\x32\x13\x6a\x3b\xa8\x09\xe3\x6f\xfd\xd8\x10\x04\xe5\x42\x1a\x65\xbd\x7c\xef\xc9\xa5\x82\xaa\x86\x6e\x7a\x93\xdc\x2a\x9d\x04\x76\x55\xa6\x02\x66\xb8\x40\x26\xf9\x79\xcd\x89\x2e\x4b\x64\xf4\xba\x86\xf1\x5c\xe8\xee\xd1\x00\x25\x86\xe0\xa2\x59\xbc\x06\x65\xe4\x73\x22\xa0\xec\xa9\x4f\x9a\x18\x8d\x1f\x7c\x89\xf2\xc0\xd0\x93\x27\xe8\x15\xde\xa7\x3a\x67\xa9\x09\xc1\xd5\x26\x08\xdf\xec\xcd\x65\xf3\x62\xc1\x93\xe5\x83\x0c\xad\xc2\x3b\x68\xa1\xeb\x76\xe4\x2e\x9a\x0b\xbb\x7b\x6f\x5b\xe9\x82\x58\xd9\xd4\x85\xc8\x9b\x5e\xc9\xd5\x30\x6d\x18\xf8\x3b\x5a\x65\x4d\xde\xcd\x98\x2a\xd3\x7e\xfc\x72\x47\xda\xa0\x59\x7a\x36\x4a\x16\x77\xb4\x9d\x32\xd0\xf3\x2e\xe5\x9a\x2a\xf6\x53\x08\xe8\x23\xd2\x8a\x52\xc8\x07\xd9\x84\xae\xd1\x92\x55\x11\x88\xf1\x68\xfd\xaa\x29\x98\xa5\xe9\x04\x47\x69\x2a\xd9\xa6\xb5\x73\xec\xe3\x94\x94\x6f\x99\xa1\x5f\x1b\x65\x70\x66\xc2\x21\x45\xe2\xd2\x94\x0a\xe8\x19\x85\xe2\xbf\xba\xd6\xaf\xb7\x32\x76\x50\xc4\xb0\x92\xf4\xce\xe4\xa0\xdb\x44\x94\x85\x0e\x39\x87\x95\x7f\x74\x75\x26\x48\xd3\xd9\xe0\x3b\x92\x4e\x05\x77\xef\xc0\xb8\x12\xa8\x25\x8d\x5c\x98\xec\x68\x7b\xa7\xcc\x9b\x03\xba\xfe\x08\x46\x1d\x7b\xcc\x7a\xcd\xce\x4d\x49\x51\x93\xea\xb9\xed\xe5\x5e\x47\x52\x1e\x4c\xc1\xf6\x6c\x0c\x93\x73\x38\x24\x29\x98\x54\xfc\xfa\x89\x97\x3a\x69\xc4\xa6\x34\x26\x6c\x04\x2a\x57\x4c\x54\x8a\x43\x05\xfe\xa6\xc8\x70\x3a\x6c\x70\x76\x81\xbe\x58\x7e\x51\xa2\xc9\x63\x9d\xfe\x4e\x11\x9b\xc2\xfd\x23\x53\x29\x4f\x4b\xa3\xfc\xe8\x14\xca\x0f\x48\x9f\x3c\x51\x49\x3a\x31\x6d\xf2\x04\x7d\xea\x93\xa5\x4b\x7e\x40\xaa\xe4\xc9\x69\x92\x1f\x9d\x22\x59\x42\xfc\xfc\xbb\xbc\xdf\xb1\x99\x92\x09\xf9\x1b\x3f\xcf\xd3\xc7\x5d\x13\xd6\xea\x72\x7f\xda\xa4\x76\xa8\x09\x3b\x48\xb6\xc5\x92\x56\x9a\x4b\x69\x6d\xe2\x0a\xd7\x60\x28\xf1\xa1\x83\xe2\xbb\x79\xb6\xbc\xf7\x1a\x8c\xa6\xcd\x5f\xe1\x5e\x0e\x1c\xa2\x4c\xa2\xc3\xbd\xd8\x30\xd0\x34\x6e\x49\x50\xd7\x9c\x12\xf0\xaf\x4b\xc7\x37\x20\x93\x84\x6e\x47\x32\xa6\x74\x4a\xbc\x25\x97\xe7\x76\xde\x98\x12\x47\xcb\x76\xda\x24\x9e\x9c\x1c\xa7\xaa\x78\xa2\x34\xfa\x3e\x4a\x93\x49\x55\xac\xb4\xe3\x08\x59\x3a\x92\xd4\xc5\x45\xd2\x5e\xb9\x47\x61\xb2\x7e\x4a\xa1\x7b\x4e\xab\x51\x59\x95\x42\x8f\xb4\x7d\x99\x58\xcb\xeb\x3d\x90\xef\x50\x18\x38\xac\x08\x55\x1c\x2d\xa7\xe2\xac\x22\x4b\xda\xaf\x4c\xcb\x63\x95\x5a\xb2\xde\x93\x04\x3d\x29\xc5\x0a\xba\x4f\x5c\xf9\x25\x9d\x2b\xa1\xe6\xf9\xe9\x65\x01\xf3\x5a\x3b\x9f\xfe\x7a\x51\x70\xd7\xe9\xd9\x08\xfa\xfe\x0e\x4b\xfb\x7c\xec\x45\xa2\xdf\x5b\xa1\xa0\xb0\x59\x54\xd0\xc1\x3c\xb5\xd1\x30\xbe\x85\x2b\x6c\xf1\xba\x03\x74\x43\x17\x49\x2e\x6e\xd1\xf3\xa8\x01\x7e\x58\x2b\x38\xa4\x08\x9c\x26\xfb\x8f\x16\xf7\xfa\xcc\xed\x5f\x53\x8a\x15\xc8\xf8\x49\x1d\xca\x1f\xd9\x29\xe2\xff\xb0\xc4\xb7\xa7\x78\x58\x58\x47\x07\x19\x38\x61\x0b\x65\x38\x8b\xa4\xad\x6b\xfb\xe4\xdf\xe7\xdd\x47\x92\x19\x2e\x46\xe8\x24\xaf\xa7\x63\xe2\x06\xa6\xb2\xa6\xbf\x4b\xa0\x53\xbe\x5c\xa9\x8c\xcc\x7e\x88\xeb\xcb\x28\xcb\xe1\xe8\xea\x32\xba\xb7\x89\x83\x18\x97\x2d\xa4\x72\xc0\x6d\x62\x6b\x61\xb9\x0b\x5d\x01\xbf\x14\xee\x29\x03\x65\x00\x6e\xc9\x76\x45\xf8\xd8\xbd\xaa\x30\xdb\xf7\xb8\x54\xdf\xa3\x4c\x63\x37\xe4\x87\x9b\xc4\x51\x19\x1c\xbf\x3b\x4b\xc5\x0b\x87\x35\x76\xad\x01\xa3\x0f\x72\x5e\xce\x1e\xe6\x58\x17\xa4\x1d\xa9\x01\xe0\x5a\xac\xf0\x05\x32\x5d\xa0\x49\x3f\x22\x11\x16\xb1\xa8\x5a\xcc\x4d\xbe\xe3\x81\xb3\xd6\x07\x8d\xc3\x94\x3a\xba\x25\x7f\x76\x15\x52\xe1\xb9\x14\xde\xee\x1f\x37\x98\xb6\x10\x6a\xab\xa1\x16\x97\xcd\x4a\x33\x0f\x54\x94\x23\x94\xfe\x4a\xc7\xd9\x74\x52\x75\x06\xf7\xc3\xde\x6e\x0d\x77\x77\xcf\x7e\x34\xdc\xe1\x42\x23\x00\x3e\x0b\xbd\x20\x2b\xc9\x82\xf1\xe1\xf1\x71\x9f\x5f\x25\x56\x76\x00\x91\xce\xb2\x10\x9a\x26\x4a\xf7\x90\xd3\x74\xd8\xcc\xa4\x0e\xb0\x26\xa8\x0a\x5a\x8a\x9b\x1d\x13\x2f\x1b\x0b\x97\xb9\x82\x43\xc8\x28\x47\x7e\x9f\x26\xe4\xe0\x7e\x89\x6a\x0e\xc1\xdd\xa3\x5a\x17\x1d\x82\x84\xf4\x2d\xbb\x53\xff\x70\x5e\x71\xf3\xda\x14\xce\x4a\xfa\xda\x8b\xe1\x5d\x6d\x6e\x87\x29\x16\x63\x4c\x24\xdf\xf6\x33\xa1\x93\x30\x6d\x17\xf8\xff\x81\x52\x45\xd9\xd2\x93\x7a\x14\x55\xf6\x0a\x0e\x0a\x6b\x96\x66\xcf\x93\xe8\x74\x53\xc9\x4c\x47\xd8\x28\xed\xa0\xa4\x91\x7f\x31\x2b\x18\x26\xb5\xae\xa2\x57\x77\x74\xb6\x7c\xb4\x84\xdf\xb1\x8a\xf9\x07\xd3\x22\x7f\x55\x1d\xb1\x5c\x4b\x35\xba\xc0\x7c\x0a\x32\x99\x20\x29\xee\xf6\x9a\x07\xb8\x4b\x23\xba\x94\x45\xa1\x50\x74\x01\xb5\xa2\x67\x9a\x34\x6a\xc5\x37\xaa\x47\xed\xf5\xf9\x38\xc1\x4f\xd5\x18\x53\x9a\x01\x14\xf6\x75\xd5\x62\x3b\x5b\xb4\x2b\x24\x7b\xed\xad\x35\x72\x09\x5c\xa4\xf0\xa8\xd5\x1d\x75\xc5\xc7\x44\xc0\x04\x22\xee\x70\x52\x55\xb2\x74\xd1\x01\xa5\x8f\x5d\x06\x0b\x42\x9d\xf3\x73\xf4\x46\x43\xe3\x6d\xb1\x9b\xbd\x6b\x57\x88\x92\xc6\x64\x93\x90\x4a\x18\xcc\x34\xd0\x3e\x30\x93\x5b\xa0\x06\xe5\xe1\xd3\x3b\x47\x8f\xde\x47\x45\x78\xb2\x7b\xa9\x90\x77\x53\xba\x33\x25\x86\x56\x9a\x78\x0b\xfa\xd7\xbf\xcc\x17\x67\xb1\x60\x54\x7f\x3d\xfd\xca\x4c\xf0\x6c\x36\x96\xf4\x1f\x57\x10\xc4\x50\xcd\x67\x44\x46\x9e\x8d\xa5\xd1\xdf\x8f\x82\xde\x84\x4a\x5f\xe8\xbb\x00\x16\x6f\xc0\x3b\x7f\xdd\xd5\xe4\x9d\x87\xb7\x64\xd1\x17\xf3\x74\xc8\xb8\xc0\xc2\x44\x08\x76\xa4\x7f\x86\x44\x2f\x4c\x99\x93\x23\x31\xe2\x18\x44\x33\xab\x72\x29\xff\x6e\xbf\x27\x2e\x33\x18\x0b\x2e\xe2\x1d\x39\x4e\x91\x13\x78\x1e\x50\xae\x5e\x45\xa5\xf0\x0c\x6d\x0b\xc2\x16\x61\x57\xe7\x24\x66\x06\xfa\xb2\x26\xe4\x75\x29\xf2\xc5\x95\x74\x55\x96\xb6\x21\x2f\x60\xbc\xd6\xe3\xfd\x32\x10\x17\x4b\xb5\x16\x76\xc0\x55\x9c\x4d\x27\x9c\xd5\xb4\xf7\x4f\x7c\x1c\xc1\x45\x02\xa6\x7c\x9e\xeb\x0c\x8b\x29\xde\x02\xd7\xdf\xed\xed\x11\xeb\x28\xd5\x0e\xd4\x0f\x77\xad\x1e\xe3\x27\x8d\xb2\x22\xe6\xf9\x23\x1b\x35\xd5\x41\x31\x5d\x23\xdc\xfa\x93\x55\x2f\x48\x3b\x4b\x1d\xcc\x53\xd5\x74\xee\xb0\xcb\x78\x10\xe7\xe8\xab\xf7\x7a\x21\xee\xba\xf1\x7d\x34\xf7\x73\x3f\xaf\x64\xe8\x96\x90\x1e\xa9\x61\x6e\x83\xfb\xcd\x48\xad\x41\x6b\xbc\x5b\x73\x6e\xc5\xbb\xfb\xb9\xd6\x8a\x1e\x3f\xd3\xe4\xa4\xfe\x78\xd3\xa6\x4e\xf2\xeb\xe7\x19\x51\xe5\xbb\x20\xb5\x9a\xf1\x1c\xbd\xd7\x8a\xc1\x39\x32\xfb\x41\x9e\x32\xef\xef\x53\xf7\xa0\x52\xf1\x62\xaf\xbb\x57\x00\xa1\xb2\xa6\xd8\xf8\x6a\x9a\xb6\x70\x5b\x64\xa3\x87\x22\xfb\xbf\xea\xe0\x7f\x92\x3a\xe8\xf5\xc1\x44\xc8\xa6\x36\x7b\x0b\x19\x4a\xa4\xf3\xd9\x9e\x69\xf2\x1f\xed\x6a\x42\x6a\x5d\x0b\xcb\x3a\x0c\xc2\xb7\x3b\x32\xfb\xdc\x1b\xbe\x3a\x09\xee\x04\x6f\x0a\x9a\x34\xd0\xc3\x5a\x3b\x21\x4a\x9e\xa3\x2b\xfb\x5e\xa6\x17\xf6\xce\x29\x12\xe5\xfe\x25\xfe\x0d\x5d\x85\x50\x0d\xeb\x8b\xbd\x5a\xb3\xb7\x90\xbb\xd6\x35\x52\x6f\x29\xda\x62\xe0\x80\x38\xd9\xe7\x70\xd2\x96\xb2\x9d\xd4\x44\x28\xdd\x23\xf1\x55\xe8\x45\x14\xbc\x3e\xd7\x9d\x90\x04\xd7\xc0\xf5\x88\x34\xfa\x31\xc2\x7c\x45\x25\x57\xbc\x11\xde\x7a\xb4\xef\x0e\xd8\x24\x34\x28\x32\x1e\xd4\x79\x84\x92\x80\xb2\xf4\x8e\x8a\x99\xc5\xa4\x52\x99\x67\xa9\xa4\x92\xc2\xa4\x6d\x72\xe4\x53\x00\x55\xac\x5f\x63\x88\x82\x63\x96\x54\xa7\x9a\x38\xf7\xc1\x63\x6b\xe0\x16\x19\x11\x1a\x67\x46\xc5\xaf\x27\xe2\xe3\x87\x9d\xdf\xe5\xa0\xfe\x6f\xeb\xf9\x1e\xe3\x4d\xe5\xef\x0f\x7a\xce\xc7\x73\x17\x7e\x13\xb7\xb9\xfd\x6b\x0c\x3d\xbc\x4e\x82\x2e\x9c\xe0\x9e\xc2\x27\x5b\xdc\xda\xb6\x8d\xee\x3a\xe7\x15\xaf\x91\xc9\x30\x32\x75\xc6\x3b\xe2\x4d\x4c\x4b\x8b\x4e\xc7\xc8\x3d\x96\xac\xb5\xfa\xb2\x42\x63\x80\xad\xd5\x5d\xde\x64\x1b\x78\xab\xda\xa4\xef\xa7\x98\xf9\xfd\x7b\x55\xc1\x90\xba\x88\xb5\xae\xa7\xa9\xef\x9a\xc2\x2b\xac\x68\x47\xcc\x35\x37\x66\x1e\x41\x87\xb7\x43\xa2\x21\x83\xb2\x78\xb3\xa7\x8f\xfd\x98\x85\xdc\x2a\xb3\xf3\x9b\x6c\xbd\x37\xd6\xd1\x07\x2a\x15\xa9\x9d\x5a\x56\xb8\x3e\x8c\xeb\x3a\x35\x57\x81\x5d\x39\x65\xea\xbc\xa0\x60\x2d\x62\xca\x2a\x05\xf9\xb3\xaf\xf2\x0d\xbc\x78\xa7\x6b\x13\xc9\xe0\xc5\x3b\xa8\x9a\x0a\xf9\x91\x51\xb1\x42\xef\x45\x57\x4c\x10\x1e\x52\x17\xe6\x0d\x47\x57\x9c\x2f\x73\x7e\x2b\x7b\x75\x24\xca\xa2\xeb\x98\xb0\x3e\xbe\x70\x36\x33\xf9\xaf\x26\x87\xd4\x54\xaa\x99\xe7\x99\xa2\x78\xb4\x3e\x4c\xf8\xfa\x6a\x39\x87\x0a\xde\x9e\xd3\xfd\x5d\xaf\xd1\xa8\x4f\xc1\x1e\x87\xf9\xed\x63\xf5\xc1\x74\xe8\x02\xbd\x79\x9b\xb5\x0e\x2e\x9f\x66\x93\x96\xf3\x1a\xfd\x43\xf8\x90\x64\x5f\xcf\x82\xbb\x93\xc7\xdc\x28\x1b\x87\x0d\xba\xf0\x83\x27\xb6\x7d\xac\x40\x05\xf9\x5d\x85\xe7\x7f\xed\xa7\xf0\x0c\x70\x21\xa3\x3f\xe7\x6a\xc7\x20\xeb\x1f\x4e\x16\x99\xbc\x8d\x90\x95\xfe\xfb\xe4\x44\xf1\x15\xe2\x71\x3c\xf8\x98\xf8\xac\x49\xa6\xca\x0e\x2c\xf0\x0e\x45\x06\x58\x81\xbd\x45\xbf\xff\x95\xb4\x7d\x10\x89\x8c\x9c\x15\x92\xa9\xee\x85\x2b\x30\xac\x31\x9a\x57\xd7\x48\xed\x8d\xdc\xe2\x3e\x36\x4a\xa7\x1d\x4a\x47\x30\x5d\x6d\x80\x8c\x39\x0a\x0b\x3e\x99\x94\x9c\x5d\x75\x4a\x6f\xcd\x2e\x6d\x6c\xf8\x6f\x64\x1f\xcf\x57\xca\xd9\x4c\x3b\x6b\xf3\x76\x76\x4b\xb4\x02\x77\x1d\x48\x83\xf7\x66\x95\x05\xd1\x79\x9f\xdc\x4d\x18\x4b\xa9\x2e\x2c\xf7\x4d\x34\xcb\xdb\xb3\x6c\xf9\xa3\xc5\xe1\x0e\x0d\x94\x6e\xe5\xf9\xa2\xb4\xf4\x02\xb7\x9b\x4a\x08\x3f\x30\x29\xfc\xfb\xf9\xdb\x33\xcb\x56\x0b\x02\x32\x9f\x6e\xd4\x05\x5a\x08\x29\x7c\x0c\x9e\x9b\xd8\xc2\x01\x54\x07\xe1\x7c\x32\xb2\x97\x57\xf7\xa9\xf1\x1d\x3c\x6c\xee\x16\x99\x4b\x69\xb4\x4f\x0b\xf9\x73\x99\x54\x0b\xad\x1f\xbe\xab\xc9\x3b\xeb\x42\x3b\xe2\x48\xe1\xea\x0a\x74\x9a\xb1\xa6\xa4\xfb\x04\xf6\xa6\x29\x77\x10\x56\xe6\x51\xf6\xfc\xbb\xc4\xb8\x3d\x76\x6a\x0d\xdd\x19\x96\xe7\xd1\xe2\xd3\x40\x2d\x0a\x35\xf5\xe9\x30\x94\x01\xa3\xf7\x53\xe9\xda\x0b\xa6\x6a\xf0\x9e\xa4\x95\x83\x83\xf7\x9b\xe2\x34\x05\x5b\xcc\x37\x7d\x5b\xf8\x5a\x46\x0f\x81\x92\x77\xa4\x1a\xa4\xbf\xe6\x98\x47\x63\x9d\xe7\x4e\x3f\x5b\x5c\x74\x96\x7d\x7c\x7c\x2b\x41\xa8\xc4\xd2\x8d\x4c\x04\x0b\x75\x60\x20\x47\x10\xf2\x51\xde\x86\x68\x9d\x2e\x39\xc0\x50\x66\x5e\x0f\xaa\x80\x64\x2e\xef\x46\xba\x12\x45\x51\x22\x84\xd7\x98\xce\x0a\xae\x94\x36\x4a\x45\x1b\x31\xc4\x72\x1c\x3d\x8e\xbc\xe3\xc1\x4b\x79\xb4\x96\xf2\xf3\x96\xc7\x5b\x18\x09\x43\xf0\x0f\x0a\x81\x4a\x89\xf3\xaa\xe1\x05\xc3\x21\x36\xc0\x5a\x6b\x7d\x79\x72\x8a\x70\x39\x8a\x0f\x26\x64\xa4\x4b\xed\x81\x3f\x87\xe3\xbd\xcd\xe4\xc8\x72\xb6\xaf\x9f\x07\x75\xdc\xb3\x84\x9f\x29\x64\x3f\x32\x54\x39\x51\x87\xd2\x21\xf4\x2d\xd9\x4f\xd5\xf9\xcc\xc3\x57\x07\xf7\x6a\x31\x56\x6d\xcf\x6c\x5d\x4b\x92\x1b\x73\xf8\x37\xfa\x51\x01\x38\xe0\x9b\xd3\x8a\x99\x7e\x78\x34\x2d\xaf\x2d\x59\x60\xb4\x09\x6a\xbe\x0d\x82\x9f\x47\xb4\xb6\xbc\xd9\xf6\x1a\x2d\x43\x99\x98\x6b\xf7\xa3\xd2\xe8\xb9\x28\xcb\xa2\xb1\x99\xcf\x26\x54\xe6\xf0\xe8\x92\x73\x1e\x0b\x28\x46\x8d\x2e\xed\x33\x34\x36\x38\x67\xd3\x12\x4c\x75\x42\x2f\x16\x72\xa7\xc3\x54\x25\xe5\x0f\x88\x66\xa6\xf1\xeb\xf1\xea\x8c\x53\xae\x1d\x9d\x0d\x78\x64\x51\xb8\xbc\xb6\x7c\xb6\x60\xc7\xb9\x4d\x03\x88\x71\x03\x1b\x26\x9d\x3c\x8a\x8f\x17\xca\xb9\xc0\x2e\x0e\x86\xfa\x0b\x43\xc5\x5e\xb4\xa8\x3a\xa5\xe4\xc3\xb1\x35\x0b\x3f\x64\xdb\xa7\x4a\xac\xf2\xb3\x04\x4a\xdf\x18\xcd\x04\x40\x1f\x27\xa6\xcf\xfe\x13\x45\xe0\xc7\xc9\xb2\x42\xe6\xca\x49\x8c\xde\xc9\x31\x67\x49\x7c\x1a\xe6\xff\xab\x24\xd6\x24\xdc\x22\x88\x5f\x07\x1c\xf7\x80\xb4\xb1\xde\xa0\xc8\xbd\x93\xbb\x3a\xff\xa1\x74\x5d\xc3\x88\x03\xd0\xd0\x10\x34\x41\xb5\x00\x81\x70\x25\x07\xb8\x03\x66\x5c\xb8\x7f\x46\xcc\x5e\xfb\x4c\xc7\x86\x1b\xf2\x26\xe7\x73\x63\xdc\xdf\x35\xf1\xa6\x1c\x64\xfd\x0a\x99\x97\x75\x77\xdb\x71\x86\xf5\xcc\x57\x14\x28\xb0\xd2\x16\x5e\xec\xd7\x96\x51\xd0\xb9\x6c\xfc\x64\xf4\x85\xc2\x9a\x0d\x22\xb4\x5b\x68\x6c\xb0\xd8\xcf\xb8\xdc\x42\x63\x65\x98\x03\x89\x5a\x96\x6d\x49\x6a\x50\xd4\xe4\xca\x30\x2e\x69\x5f\x74\xf6\x32\x4c\x99\x26\x54\x12\x8e\xb5\x4d\x7c\x47\x78\x9c\x58\xcc\xe1\x15\x11\xd6\xe8\xad\x90\xd3\x44\xde\x07\xa4\x2b\x1d\x25\xf9\xdc\x38\xe8\xe9\x85\x1d\xe1\xd8\xe2\xa7\x39\xc3\x4f\x56\x79\x8e\x5e\xc2\xfb\x66\x30\xa8\x7d\x5b\xba\x35\x95\xfa\x3a\xc4\x38\x22\xbf\x0c\xb8\xf5\x6f\xbe\x22\x98\xbf\x20\xda\xae\x3b\x39\xb3\xab\x7b\xec\x17\x3d\x47\x4f\x1d\x01\x86\x6a\xad\x7d\x60\xfa\xd3\x6d\xe4\x95\x3d\x45\x97\x28\x02\xa7\x49\x05\x62\x03\xa4\x25\xad\xd8\xd0\xd5\x69\xd1\x9c\xfb\x8c\x77\x58\xd2\x70\x5b\x18\x13\x2f\x22\x66\x2f\xe1\xee\xa2\x2e\xfa\x25\x33\x9a\x1e\x61\xb1\x2c\xeb\x6b\xcb\x04\x30\xea\x99\x10\xd4\xbe\x22\x06\xd1\x74\xb6\xb5\xc3\x6c\xf1\xde\x97\xd0\x2b\x3e\x7a\x19\x8c\x69\x85\xb3\x7d\x1b\x90\xfa\x60\x75\x83\x69\x5b\xa8\x21\xb2\x40\x2f\xc0\x98\xa7\xac\x83\xeb\x21\x50\xb3\xae\x23\xef\x2c\xdf\x60\x85\xe7\x37\xec\xa7\xe4\x11\x0c\x85\xfb\xc5\x69\x4a\x90\x02\xf2\x1b\x98\xf5\xed\xc4\x13\x12\xc5\x58\xa3\x29\x6e\xfc\xf4\xe2\x98\xea\xc6\x13\x05\x28\xf4\x83\xdb\x07\xcb\xb7\x84\x2b\x2d\x8e\x75\xe8\xa5\x09\xd8\x8b\x41\x3e\xfd\xff\xff\x41\xff\x3b\xe6\x39\x44\xa5\xa7\x5a\xbe\xc7\x2d\xb9\x96\x26\xad\x0e\xa5\xb2\x1e\x29\xcd\xfe\x31\xb8\x6b\xc0\x08\x33\x02\xdd\x76\x4a\x2a\x42\x05\x62\xac\x31\x75\xca\x8c\x78\xb1\x2e\x1e\x3a\xfa\x26\xe2\xb4\xe1\xf7\xe9\x52\x5d\x8d\xb8\x78\x74\xc8\x38\x38\x20\x4d\x8a\x6e\xb3\xce\x27\x66\xff\x64\x5e\x63\xf4\x50\x81\x0b\xda\x4e\x32\xc3\xab\x35\xc0\x8d\xa2\x91\x40\x59\x70\x2f\xb7\x40\x09\x7e\xfd\x64\x86\x64\xd6\x59\x96\xfa\xd4\xa6\x3d\xb0\x87\xf3\x57\x7f\x17\xa6\x54\x98\x61\xd3\xd0\xae\x8e\x4d\x08\x5a\x17\x4d\x88\xff\xda\x06\xff\x16\xdb\xa0\x94\x20\x9c\xfb\x05\x02\xb7\x80\x35\x03\xf5\xdb\x20\x6d\xa9\x4b\x70\xe5\xa7\x6d\xcd\x63\x22\x49\x7b\x70\xd0\x28\x44\xa9\x8b\x8f\x25\xb9\x42\xec\xac\x8d\x49\xc8\x66\x8e\xe1\x6e\xbf\x65\x9c\x8c\xbf\x41\xfa\x15\xbc\x08\x5a\xc8\x59\xd1\x29\x56\x61\x2c\xc1\x39\xec\xf4\xdb\x9d\xba\x12\xdd\x9a\x58\x17\x6d\x6d\xf8\x5d\x69\x1f\xe3\xaf\x60\x9c\x98\x78\xfd\xbb\xa0\xd3\x68\xb1\xbf\x26\xd1\x06\x4f\xbd\x7c\x88\xef\x23\x1b\xb6\x4e\x69\xd7\x56\xb5\x2b\x92\xef\xd8\xa5\xc0\xb3\x23\x2a\xbb\x8c\xdf\x00\x3c\x0c\xce\x09\x37\xca\x08\x38\x43\x37\x0a\x15\xb9\x2b\xee\x83\x6a\x5e\x9e\x05\x30\x1a\x7d\xb0\xe7\x77\xb6\x73\x28\x98\x1c\x93\xde\xe4\xde\x3f\xa9\x80\x28\x96\x51\xb4\x8f\x76\x4c\x39\x2e\xd2\xfb\xa4\x96\xd5\xd7\x45\x1e\x7f\x64\x72\xd5\xa7\xae\x73\xb8\xd6\x47\xfe\x49\xaa\x1c\x1e\xa7\x17\xe7\x65\x0d\xc3\x7f\x9d\x28\xbe\x58\x67\x2b\x61\x15\x45\x81\xae\xdc\x91\xb2\xd7\x08\x1f\x14\x82\xbc\xbf\x2f\xff\x6e\x22\xcb\x17\xaa\x41\xe1\x20\xcc\x75\x0e\x53\x64\x8c\x0b\x74\xdb\x41\x9d\x4e\x2c\xb3\x03\xd0\xf7\xbe\xa3\x31\x20\x76\xe5\x89\xe7\xda\xdd\x16\xae\x67\x13\x45\xab\x86\x81\xd6\x13\xb7\x75\x75\xe2\x6e\xe1\xe2\x0e\x3c\x48\xa2\x6f\x7a\x77\xeb\xe8\x9e\x9d\xbe\xc1\x50\xb5\x7b\x23\xc4\xe8\xca\x3e\xce\x58\xba\x35\xe3\x6f\x29\xf8\x11\x66\xf3\x73\xf4\x55\x30\xa0\x87\xb6\xab\x91\x64\x12\x8a\xc3\x3e\xe1\xd2\xf3\x73\x82\xcd\xfa\xe6\xea\x2f\xbc\x26\xaf\xb0\xdc\xa0\x0b\xf4\x44\xe8\x7f\x3e\x49\x78\xd1\x58\x6f\x5f\x94\x55\x75\xd6\xfb\x2d\xf6\xbd\x7f\x70\xff\xe0\xff\x05\x00\x00\xff\xff\xb2\xaf\x6e\xc0\x46\xa8\x00\x00" +var _nftstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x92\x1b\xb9\x91\xe8\xbb\xbe\x02\xad\x07\x0d\xe9\xa5\xa8\xd9\x8d\x13\xe7\xa1\xad\xd6\x4c\xbb\x25\xed\x76\xec\x5a\x56\xcc\x68\xec\x07\x59\x11\x0d\x56\x81\x24\xa2\x8b\x40\x19\x40\x35\xc5\xd5\x76\xc4\x7e\xc4\x7e\xe1\x7e\xc9\x09\x24\xee\x97\x2a\xb2\x25\x8d\x3d\xf6\x19\x3e\xcc\xb4\x48\x5c\x13\x79\xcf\x44\x82\xee\x7a\x2e\x14\x7a\xfc\x7a\x60\x1b\xba\xea\xc8\x3b\x7e\x4b\xd8\xe3\x47\xee\xeb\x37\x9c\x8d\xfc\xf2\xbb\x41\x30\x22\x1e\x3f\x7a\xf4\xec\xd9\x33\xf4\xe6\xf5\xbb\x1f\x15\x17\x64\x2d\x38\x53\x7f\xfc\x17\xfd\x1d\x7c\x7f\x89\x36\x84\x11\x81\x3b\xd4\x0f\xa2\xe7\x92\x20\x89\x3b\x82\xe4\xd0\xc3\x20\x0d\x67\x4a\xe0\x46\xa1\x35\x17\x7a\x0c\x89\xd4\x16\x2b\x44\x77\x7d\x47\x76\x84\x29\xa4\xb6\x04\xbd\xee\xf8\x1e\xe5\xeb\x40\x52\x61\xd6\x62\xd1\x2e\x61\x1e\xf8\xcf\x2b\xdc\x6c\x11\x6e\x1a\x3e\x40\x4f\xac\xd0\x1e\x33\x25\x91\xe2\xa8\xa3\x52\x99\x09\xf4\x4c\xb0\x06\xca\xa4\xc2\x5d\x27\x11\x46\x61\xe9\x0b\x18\x08\xb3\x16\x7a\x48\x44\x59\x4b\xef\x68\x3b\xe0\x0e\x3a\x49\xb4\xa7\x6a\x4b\x99\x19\x3d\x74\x43\x58\xa2\xff\xa0\x52\x51\xb6\x91\x66\x41\xef\xb6\x44\x10\x44\x25\xe2\x8c\xc4\x0d\x7b\x22\xdc\x12\x17\x88\x2a\xb4\xc5\xac\xd5\xe3\x9a\xd1\xf9\x1a\xe1\xae\xd3\x0b\x45\xea\xd0\x13\x09\x43\xe9\x15\xc3\x7c\xb6\xdf\xd2\x43\x17\x36\x6c\xe7\x45\x0d\x66\x68\x8b\xef\x08\xcc\xc8\x05\xda\x71\x41\xd0\xe3\x66\x50\xf2\xb1\x1e\x57\x43\x12\xf6\xdd\x0b\xda\x10\x18\x10\xc6\xd8\x70\x02\x10\x8a\x7b\xe1\xb6\x15\x44\x4a\x22\x97\xe8\x6a\x50\x12\x86\x5e\x11\x34\x48\xd2\xea\xa6\x3d\x3e\x00\x78\xf4\xac\x6b\x62\x57\xc9\x05\xe2\x6a\x4b\x84\x3e\x53\x49\x5b\x22\xb0\xa2\x9c\xc9\x25\xaa\xaf\x94\xb2\xa6\x1b\x5a\x82\x30\x6a\xf8\x6e\x47\xa5\xa4\x9c\x21\xbc\x0b\x47\x47\x25\xea\x31\x85\xf9\xf6\x5b\x4e\xee\x88\x40\x6b\xdc\xd0\x8e\x2a\xac\xec\x94\x7a\x4b\xfd\x20\x9a\x2d\x96\x64\xa9\x21\x8e\x24\xe9\x3a\xbd\x04\xcc\x10\xee\x24\x47\xcd\x96\x6b\x9c\xd3\x6b\x16\xfc\x8e\xea\xf9\x18\xe2\xbd\x5e\x19\xee\x0c\x52\xf0\x35\xda\x61\x71\x4b\x54\xdf\xe1\x86\x98\xd5\x0a\xd2\x10\x7a\x07\x03\xf5\x78\xa5\xe7\xa4\x1a\x16\xd7\xfa\xdc\xa9\x06\x87\x24\x0b\x98\xbd\x5c\xfb\x6e\x90\x4a\xc3\x4a\x09\xcc\xe4\x9a\x08\x01\x20\x33\x10\xd2\x10\x36\x07\x11\x8f\x8b\x00\x9d\x08\xac\x26\x3b\x5a\x8d\x07\x3b\x7c\xd0\xe3\xe9\x5f\x49\xab\xdb\xc6\x07\xe5\x70\xce\xac\xe6\x0e\x77\xb4\xa5\xea\xa0\x67\x21\xb8\xd9\xc2\x40\x31\xd0\x09\x96\xb4\x83\xe1\x9a\x2d\x69\x6e\x49\x4c\x3c\x6f\x2d\x20\x85\x39\xee\x3d\x56\xcd\x16\x50\xcf\x0d\x40\xee\x88\x26\x26\x4d\x1b\xd0\x1b\xa6\x74\x98\xaa\xbf\x86\x61\xae\x5f\x6a\x68\x4b\x42\x10\x85\xad\x1e\xd0\x9e\xca\xad\xfe\x6e\x35\x1c\xfc\x3e\xf5\x4e\x14\xd9\x99\xe9\x7f\x1f\xc0\x6f\x86\x37\x78\x84\x37\x1b\x41\x36\x58\xf1\x23\x2b\x4a\x28\x16\x86\x05\x3a\xa2\x4c\x11\x41\x1c\x48\x71\xd3\x10\x29\x67\xb8\xeb\xe6\x81\xe9\x64\x4c\x0b\x7d\x7a\xf4\x08\x21\x84\xe2\xb6\x84\x29\xaa\x2c\x2f\xba\x12\x04\x2b\x62\x27\x9f\x6c\xf9\x03\xd9\xf1\x3b\xdf\x12\x9a\xea\x45\x86\xc9\xae\x19\x55\x14\x77\xf4\x3f\x49\xeb\x7f\xbd\x8c\xd9\x84\x20\x92\x0f\xa2\x21\x68\x8b\x25\x5a\x11\xc2\x50\x03\xb3\xb7\x4b\xdf\xfe\x95\xde\x3d\x50\xdb\xb0\x73\xa7\xc6\xf8\x1e\x91\x8f\x3d\x69\x94\x3b\xae\xb5\xe0\x3b\x83\xb5\x61\xf4\x30\xc6\x1b\xae\x88\xe5\x94\x04\xb5\x1c\x31\xae\x90\xec\x49\x43\xd7\x07\x4d\x29\x96\x0f\x9c\xeb\x5f\x1b\xcc\xf4\xaf\x1a\xd0\x72\xcb\x87\xae\xd5\x8d\xc3\x48\x06\x38\xad\x5f\xb8\x74\xc3\x01\x4b\xd2\x54\xb7\x67\xfa\x50\xcd\x88\x0b\x18\xc7\xa2\xb6\x86\x55\x00\x03\x5e\x2b\x4d\x78\x7a\x38\x4d\x56\x54\x1f\xfc\x41\x46\x2b\x00\xe4\x0b\x13\x5b\x28\x5f\xde\x61\xda\xe1\x55\x47\xdc\xc6\x33\x9e\xd5\x12\x45\xc4\x8e\x32\x02\x38\x68\x97\xe1\x07\xb1\x64\x69\xd6\x68\xff\x11\x9d\xc6\x6c\xb9\x5c\x52\x25\x51\xc7\x1b\x58\xd5\x1c\x61\x23\x9a\x14\xdd\x69\x9a\xf6\xe3\x38\xfc\xd6\xd8\xb9\x1a\x14\xe2\xac\x3b\x98\xb6\x58\xa1\x5e\x90\x86\x4a\xbd\x5f\x40\x12\x27\x45\xdc\xd7\xc0\x31\x70\xa3\xc7\x0f\xbb\xbb\xb6\x8c\xdb\xf0\x35\x0d\x29\x99\x2f\x6e\xbf\xa5\x1d\x49\x66\xa6\xd2\xb0\x82\x05\x8a\x16\x66\x58\x2a\x07\x5e\xb3\xf3\x13\x94\x68\x0c\x58\x55\xc5\xd4\x99\xf4\xdf\xfe\x60\x4f\xf9\xfa\xe5\x39\xfa\xe9\x9a\xa9\xff\xfb\x7f\xe6\x8f\x46\x4f\x24\xc2\x70\xb7\xc2\x1c\xab\x01\x1d\x70\xdb\x9a\xb3\xc2\x35\x4a\x08\x30\xd1\x8c\xfe\xd2\x1c\xa0\xde\xe7\x40\x24\x02\x61\x8b\x85\x65\x81\x68\xbf\x25\x86\xa7\x9a\xdd\x50\x89\xc8\x8e\x2a\x45\xda\x85\x3e\x95\xe4\xb4\xa4\x16\x27\xee\xc8\xad\x80\x95\x86\x71\x09\xb2\x26\x42\xaf\x47\xe3\x69\xb3\xc5\x6c\x43\x10\x1f\x94\x16\x6e\xb6\x43\xa0\xa3\x8c\x93\xec\xb9\xb8\x5d\x77\x7c\xbf\x40\x92\x03\xbb\xc5\x82\xac\x87\x4e\x0f\x66\x78\x27\xac\x70\x90\x1a\x16\xa7\x9c\x47\x0e\xd2\x19\xb4\xd3\x9f\x70\x26\x97\x8e\x58\xed\x1f\x0b\xdf\xc6\x42\xbd\x3c\xb4\xd0\x84\xad\xd5\xbb\x43\x4f\xce\x91\xfe\x6f\xf2\xf5\x4f\x3f\x45\xed\x51\xfc\x4b\x6d\x1c\xad\x61\xbc\xc5\x07\x8d\xe0\x7f\xc4\x43\x57\x1d\x14\xda\x68\x25\xe4\x1c\xfd\xf4\x9a\x7e\x8c\xbb\x37\x83\x54\x7c\xa7\x07\xfe\x51\x09\xca\x36\xdf\x45\x3f\x79\x51\x7b\x09\x92\xb6\xd2\xd9\xb7\xf8\xc1\xca\x6f\x79\x8e\xde\x5b\x68\x7c\x88\x86\x22\x1f\x7b\x2a\x0e\x6e\xf1\xf0\x75\x89\xbe\x57\x5c\x2b\xa1\x2a\xe2\x4c\xef\x22\x12\xf3\x08\xac\xd1\xb3\xbb\x23\xed\x12\x5d\x2b\xf8\x96\x50\x90\x5e\xf0\xa3\x53\x4e\xda\x05\x12\x20\x12\x5a\x2d\xb9\x5b\x22\x95\xe0\x87\x88\x97\x4f\x9f\xba\x5f\xc9\xec\x84\x13\x45\x15\xcc\x98\x6c\xe6\xd7\x78\x8e\x7e\xc7\x79\xf7\x60\x94\xf8\xfb\xc2\x08\x4f\x1d\x27\xa3\xc3\x4f\x4c\xab\xa1\xae\x7f\xc4\xcb\xac\xc0\x6f\x83\xb6\xa8\x8f\x5f\x4b\x28\x73\xf6\x5a\x79\x6d\x07\x61\x49\xdc\xe8\xde\x96\xcf\xbc\x79\xfd\xee\xd8\xd9\xa7\xd3\xce\x44\xbe\xfe\x85\x9f\xff\x47\xdc\x91\xab\xc1\xef\x7e\x5e\xd3\x37\xf4\x5f\x78\x43\xde\x62\xb5\x4d\xd1\xd9\x0a\x34\x2d\x8c\xa4\x69\x63\x4d\x8d\xaa\x32\x62\x05\xff\xca\x76\x74\x18\x1c\xaf\xbe\x23\xaa\x3e\xef\x39\x8a\x17\x51\x59\xe3\xdb\x61\xd5\xd1\xa6\x58\x62\x0f\x5f\x87\x95\x6a\x05\x30\x59\x5d\x47\xd9\xed\xb1\x75\x84\xb1\xcf\x51\x34\x4f\xb4\x0c\x03\xc4\xe8\x78\xa5\x12\x43\xa3\xf7\xde\x0b\x22\x35\xac\xd9\x06\x61\x7d\xd6\xb4\xa7\xc4\x19\x29\x4e\xdb\xd7\x0d\xb4\x29\x43\x84\xc2\xd4\xd9\x02\xb9\x76\xd1\x1b\x2a\x30\xbc\x1f\x23\x05\x66\x2c\x95\x48\xf2\x6e\x82\x15\xd8\x75\xd8\x05\xa2\x4f\x1e\x6d\x1d\x80\x3c\xfa\x19\x3b\xd1\xcf\xb3\x4c\x5a\x56\x35\x3d\x05\xc6\x9e\xd7\xf3\xb4\x78\x5a\x53\xd6\xc2\x28\x40\xac\xa6\x07\xa8\x8f\x1e\x10\x91\x60\x01\x7d\x4d\x5a\xdd\x83\xdd\x6a\xe6\xe6\x71\xc5\xcd\xb5\x26\x5a\x6d\xa7\xd6\x74\xda\xe3\x83\x57\xfb\x30\xa3\xfd\xd0\x69\x34\x4a\x47\x94\x3c\x59\x88\x5f\x9c\xc1\xcb\x66\x50\xde\x66\x3d\xf0\xc1\x1c\xc1\x86\xd8\x55\x5a\x68\x61\xd3\x97\x25\xe3\x36\xda\xb4\x76\xd0\x5a\xae\xb8\x10\x7c\x3f\x9b\x9f\x2d\x41\xeb\x5b\xba\x69\x34\x31\x64\xb0\x7b\x67\x8c\x3e\xd0\x27\x5b\x6d\x7e\x91\xf5\x9a\x36\x1a\x0b\xba\x83\xde\x19\x46\xb2\x11\xb4\x8f\x7a\xe5\x98\x18\xc8\xf7\xca\x59\x7e\x87\xe7\x4f\x3e\x25\x1e\x8d\xa5\x23\xf6\xfb\x17\x8f\x8a\x43\xb6\xd6\x65\x86\x49\xa9\x47\xc4\x40\x9c\x76\x9d\x5e\xa7\xb3\x9d\x55\x84\x21\xe3\xeb\xc3\x09\x03\x4d\xa7\xa7\x5e\x03\x14\xf1\xf7\xfe\x6f\xfd\xfb\xec\x81\x1b\x5c\x64\x33\xce\x23\xbc\x06\x81\x40\xba\xf5\xd2\x23\xf6\x85\xdf\x41\xd9\xc8\x02\xe6\x22\xa6\x39\xfd\xb9\x7f\x64\xfe\x5b\xc8\xf5\x97\x44\x61\xda\xc9\x92\xd2\xb5\x59\x88\x29\x33\x74\x6e\x1b\x7f\x23\x51\x8b\x15\x3e\x4a\x9d\xe9\xd8\x15\x22\x8d\xf8\x95\x25\x29\x6f\xbc\x03\x0b\xd0\x3f\x6b\xeb\x7e\x8c\x68\x2d\x09\x5a\xda\xb2\x96\x90\xb3\x9d\x8c\xce\xdc\xd2\xf5\x9a\x88\x54\x7b\x2f\x09\x4b\x8f\x43\x25\xfa\xc3\xbf\x2f\xb5\x6d\xb1\x07\x15\x59\xa0\x1d\xbe\x25\x88\x2a\xd3\x42\x5b\x0a\x0a\xfd\xa6\xc1\xec\x37\x7e\x8a\x74\x20\x43\x6a\x5e\x18\x08\x72\x47\x25\xf5\xe2\x20\x87\xd1\x1d\x16\x91\x32\x12\x74\x84\x64\xc8\x3f\x6d\x09\xe8\x4d\x30\x74\xa1\x65\x79\x25\x45\xb3\x18\x6f\x77\xd6\x26\xca\xd4\x99\xe2\x20\xb4\xe2\xe1\xc5\x70\xe6\x53\x5c\x82\x37\xc3\x5a\x4a\x2b\xa2\x57\x60\x9c\x15\xe3\x84\x93\x28\x49\xc5\x64\x4e\xf1\x42\xd7\x2f\x23\xd1\xaf\x2d\xb6\x66\x0b\x0c\x05\xec\x43\x90\x1f\xca\xb9\x81\x9c\x77\x62\x6a\xca\x58\x01\x2b\x26\x1d\x18\xfd\xcb\x40\x10\x6d\xb5\xd0\x5a\xd3\x60\xd0\xfa\xdd\x01\x8f\xd0\x2c\x53\x9b\x95\x93\x7b\x9b\x98\x26\x06\x64\x85\x0f\x59\x16\x25\xbd\x88\xdc\xe1\x96\x24\x08\x9e\x4f\x37\xae\x28\x8e\x71\xc3\x44\x04\x03\xc3\xb3\x30\x34\x2e\x0c\x4a\xda\x74\x65\x47\xe6\x8e\x15\xd0\x92\xff\xbb\x31\x8d\xb8\x6b\xa9\x46\x79\xce\x34\x04\x1c\x37\x5e\x11\xb5\x37\x26\x81\xd5\x11\xe4\xf4\x84\x57\x83\xd2\x06\x8a\x95\xec\x1f\x92\x29\x2f\xbb\x8e\xef\x23\x92\x6e\x71\xdf\x23\x45\xf0\x4e\xc6\xce\x4c\xa3\x1c\x6b\x26\x44\xd9\x46\x3a\x51\xdc\x1a\xea\x19\xa8\xdc\x92\xd6\xfe\x98\x91\xaf\x46\x02\xa0\xde\x2d\xe9\x7a\xb0\x40\x8d\xc8\xed\x14\x11\xce\x81\x22\x08\xc8\x66\x2b\x44\xa8\xf0\xaa\xf8\x38\xf1\x15\xca\x7a\x32\xed\x55\xe4\x2c\xf5\xde\x1a\x65\xec\xe3\x0e\xd3\x1d\x69\xd1\xea\x50\x73\xf6\x7a\xfd\x79\x1c\x9e\x63\xb6\x40\xb2\x80\x57\xa0\xe8\xeb\x23\xeb\x22\x27\x5e\x6d\xb8\xcc\x24\x48\x46\xb9\x16\x42\x2f\x50\xd2\x55\x77\x00\xc2\x4d\x58\x16\x96\x81\x05\x2d\xab\xf2\xd2\xce\xe5\xe8\x7c\x8e\xd6\x03\xd3\xe3\xbc\xe3\xce\x05\xdb\xce\xaa\xf2\x30\x30\xc1\x0b\xa4\xc4\x40\x22\x59\x97\x2c\xf0\xa7\xbe\xf5\x50\xb3\x18\x12\x31\x03\x83\x0f\xc1\x2f\x16\x90\x25\x71\x19\x46\xa8\x77\xd9\xf7\x32\x95\x4b\xbf\xc7\x9e\x6b\x29\x8e\x18\x35\x8e\x8d\x8e\x60\x91\xe8\x4e\x63\x3b\xbd\xb2\x68\x32\x2b\xf0\x65\x5e\xd9\xb6\x6b\x84\x2e\x3c\x7e\x8d\xed\xfc\xfa\x04\x55\x05\xcd\x92\x29\x46\xac\x5c\x34\x65\xe9\xa2\x71\x6b\x17\x9d\x68\xf1\xba\x76\x19\x0f\xc8\x1a\x54\x84\x66\xda\x62\xc2\x3a\x46\x27\x59\xc8\xa8\x6e\xff\xea\xcf\xdc\xf9\xc3\xdd\xa7\x17\x24\x43\x4b\x03\x5f\xf4\x47\xdc\x51\x8d\x72\xc6\xe5\x06\xa3\x15\xcd\xcc\xd7\xe8\x85\x9d\x65\xb6\xd1\x68\x20\x34\x82\xfd\xae\xe3\xcd\xed\x6c\xbe\x54\x74\x47\xa4\xc2\xbb\x7e\x7e\x5e\xf4\xd6\x9f\xc7\x99\x93\x6d\x99\x2a\x5d\x4b\x7d\xb8\xe7\x20\x1e\x36\xf4\x8e\x30\x37\xa3\x1f\x16\xfd\x79\x66\xbe\x9a\x7b\x99\x61\xc5\xc5\x7a\x50\x83\x20\x67\x8f\x8f\xee\xad\x23\x6c\xa3\xb6\x49\x34\xad\x19\x54\xd1\xcd\x1d\xec\xd2\xb6\x7f\x81\xbe\x3d\x3f\x71\xf9\x4e\x27\x84\x15\x1a\xd7\xb9\x42\x1d\xc1\x52\x41\xdc\xc7\x89\x1a\x6d\x04\x79\x31\x93\xae\xfb\xfe\x51\x49\x42\x31\x22\xa1\x8b\x04\xaf\xa6\xd9\xcc\x1a\x77\x92\x94\x4d\x2c\xd1\xa0\x0b\x47\x3e\xd5\x26\x9a\x78\x4c\x13\xfd\x57\xb5\x89\x6b\x50\xfb\xb9\x46\x46\x7a\xf1\x95\xaf\x1f\xc6\x34\x42\xa3\x8c\x3c\x74\xe3\xec\xab\xb2\x93\x45\xab\x8b\x1a\xa2\xfb\x75\x43\xd4\xf4\xc2\x23\x42\x7a\x24\x5a\x14\xe2\xae\x01\xd3\xd7\x44\x11\xb8\xc2\x9d\x8d\xcb\xda\x78\x0d\x20\x96\x4c\xba\x81\x1a\xed\xf4\x94\x63\x4b\x7d\xf6\x0c\xbd\x25\x62\xcd\xc5\xce\xd9\x6f\xd6\xf1\xcc\x59\x12\x7c\x34\x81\x98\xc6\x2f\x27\x8a\x10\xc3\x4a\x34\xa2\x19\x6d\x2b\x12\x01\xfa\xb3\xe6\x02\x7e\xa4\x2c\xdb\x75\x95\x43\xfc\x5e\xdb\x17\x72\x10\xc4\xc6\x71\x90\xb1\xbe\x47\xac\xd3\xa8\xe3\x9f\x88\xd1\x56\x5d\xc4\x91\x4a\x84\x37\x98\xb2\xe0\xe2\xaf\xb8\x51\xe2\x4f\x33\xa8\x65\x61\xf3\x57\xf9\xcb\x77\xdf\xa1\x1e\x33\xda\xcc\x4e\xa3\xd4\x2b\x6b\x83\x99\x8d\xb8\x29\x1e\x97\x63\x6b\x6d\xae\x6d\xdd\x99\x7a\xdd\x95\xe7\x47\x5f\x65\x23\xee\xb0\xc3\xdf\xff\x04\x5b\xc2\xe5\x91\xdf\x27\xff\xc2\x52\x12\xa1\x66\x13\x83\xbe\x40\xdf\x2e\xbf\x5d\x14\x0d\x76\x44\x4a\xbc\x21\xa7\x32\xac\x77\x91\x21\x1b\x98\x16\xe3\xec\xe9\x7f\x12\xc1\xcd\xce\x32\xce\x3a\x2f\xc8\x01\xa6\xb1\x81\x71\x8b\x89\x6d\x84\x8a\x23\xbc\x21\x07\xcd\x71\xdb\xdf\xb8\xfe\x82\xe9\xcf\x4c\x94\x78\x8d\x1b\x62\x75\x6a\x63\xfd\x0f\x12\xa2\x35\xd6\xf5\x18\xda\x80\x9d\x6d\xc7\x1a\xf7\x09\x78\x33\x3d\x74\x4c\xe6\xcf\xdc\x03\x06\x83\xde\xbc\x7e\x57\xda\x1c\x80\xfa\xe6\x24\xbd\x69\x83\x77\x04\xbc\x68\x56\xd9\xd7\x46\x9d\x4b\x85\x09\x43\x45\x28\x0e\x2e\x9c\x60\x00\x6a\x02\x5a\x49\xc2\xd4\x02\x48\x98\x7c\xc4\xbb\xbe\x83\x60\x3d\x55\xc1\xde\xd6\xb4\x84\xee\x28\x46\x98\x99\x60\x7c\x17\x6f\x1a\xd5\x35\x5a\xd8\xbc\x56\xf1\xa2\x65\x9c\xa3\x27\x9f\x6a\x66\xf6\xfd\x77\xa9\xe6\xe6\x84\x4e\xf2\xa5\xd3\x87\xe3\xe0\xe6\x02\xad\x86\x83\xf3\xa9\xab\xd4\xaa\xf3\x70\xeb\xf1\xc1\x40\x67\x45\x18\x59\xd3\x86\x62\x41\x6d\x6e\x81\x20\x6a\x10\x4c\x46\xac\xc3\x52\xe2\x6a\x38\xc4\x3c\x68\x6a\x7f\x6e\xb1\x29\x75\x59\xd9\x7c\x8e\xbe\xcf\xdc\x5e\x20\xa6\xee\xa3\x90\x0b\xca\x43\x13\x46\x8e\x9f\xe8\x3b\x8b\x74\xbc\xb9\x9e\xac\x0a\xde\x14\xba\x1b\xa2\x62\xb7\x97\xfb\xfa\x35\x51\xcd\xd6\x19\xb4\xd6\x75\x65\x75\x9b\xe2\xbc\x13\x53\x8f\x92\x3d\x00\x22\x8c\xab\x4f\x3a\x73\xb0\xe5\x2b\x00\x93\x96\xb4\x57\x65\x94\x6e\x74\x51\xd8\x74\x89\x13\x74\x64\x9a\x3b\xa3\xa5\x50\x30\x2b\x1d\x17\xce\xcc\x95\x6b\x40\x6e\x77\xf2\x37\x8c\x76\x37\xe0\x1d\x8e\xbb\x52\x89\x86\x5e\xe3\xc2\x46\xe0\x95\xb6\x43\x31\x3b\x70\x36\x62\x71\xc6\x00\x18\xdf\x96\x86\xc9\xfb\x93\x8e\xf4\x43\x46\x0d\x5b\x2c\x2d\x30\x7f\x47\x1a\xbe\x23\xff\xba\xe5\xd2\x45\x22\x3d\xa2\x93\xae\x93\x5a\x0c\x7a\xfa\x24\xad\xa3\x70\xeb\xa9\xd7\x3c\xc3\xba\x0a\xda\x00\xb6\xc3\x24\x70\x40\xe3\xb3\xe0\xa1\x0a\xed\x08\x66\xc1\xb8\x5d\xc1\x6a\x24\xda\xe8\xf5\x68\xd8\x03\x9f\xe0\x83\xaa\xd3\x8d\x1e\xfe\xe5\xab\xb7\x3f\xbc\xba\xba\x7c\xf7\xea\xe5\xb9\x8d\x56\xe8\x89\x4c\xdc\xde\x20\x1b\x95\x1a\x94\x8d\xb2\xa7\x20\xc9\x0e\x33\x45\x1b\xdc\x81\x73\xfd\x8e\x08\xbd\xb1\xff\xfd\xef\xff\x49\x96\xa9\xed\xdf\x9b\x64\x22\xaf\x10\x58\x18\x48\xa5\x99\xa7\x83\xc4\x8c\x2e\xc9\x12\xbd\xf9\xc3\x3b\xb3\x76\xd2\xce\x81\x1b\xb8\xed\xe6\x9d\x0d\x8b\x4c\xc6\x37\x23\x5c\xff\xe8\x07\x58\x1a\x5e\x43\x0d\xaa\xf2\xbe\xe7\x92\x9a\x54\x82\xbd\xf3\xf0\xfa\x7d\x31\xcd\xb5\xe9\xae\xef\x20\x8f\xec\x5d\xf4\x53\xca\xa7\x25\xba\x25\xbd\x42\x58\x3e\xa5\xe0\xe8\xc1\x77\x9c\xb6\x68\x25\x08\xbe\x85\x84\xa7\x8f\xce\x65\xcc\x14\xd9\xd8\x0c\x3b\x1b\x18\xe9\x04\xc1\xed\x41\xa3\x74\x4f\x98\xd4\xba\x9c\x8d\x07\x65\xce\x7c\x70\x5d\x70\xb6\x44\x3f\x49\x82\x6e\xa8\x04\xdc\xb2\xd8\x36\x9b\xdf\x40\x5a\x24\xc1\xed\xc2\x7a\x29\x53\x88\x07\x40\x85\x5c\x93\x94\xce\x0d\x70\x4a\xe0\x52\x15\x0e\x05\x92\x34\x8e\x50\xd6\x08\x09\x68\x9a\x02\xbf\x6e\x06\xb7\x78\x17\xc9\x4f\x3f\xa4\xeb\xa7\xeb\x38\x07\xcd\x9e\x36\xe3\xa8\xe3\x6c\x43\x44\x4c\x38\x21\xed\xe6\x1b\x89\x1a\xde\x75\xa4\x3c\x2f\x83\x13\x59\xea\x4d\x0c\x82\xe0\xa8\xf7\x56\xd5\x7c\x91\x00\x27\x11\xcd\xa9\xb7\x1e\x60\xe5\x3d\x65\x29\xba\x35\x5c\x08\xd2\xa8\xee\xf0\x54\xa3\x96\x16\x6b\xc0\x1d\xc1\x38\xd4\xe7\x7e\x33\x0a\xbf\x9b\x45\x46\x36\xfa\x94\xb5\xe0\xf7\xb4\x66\x49\xd4\x11\xe2\x88\x17\xd3\x9f\x54\x8e\x42\xf1\x01\x55\x74\xb0\xa0\x7d\x65\xb1\x42\x60\xf6\x5a\x48\x1b\x47\x35\xf8\x05\x81\xbf\x40\xc4\x97\x45\x21\x30\x6c\x2d\xfc\x84\x9d\x2e\xfc\xc0\x1a\xbc\x3e\x16\x2a\x78\x43\x48\x6b\xe5\x1a\x36\x8e\x57\x37\x78\xdf\xd1\xe0\xb5\x95\xe4\x0e\xf2\x94\x73\xef\x2d\x24\x48\xe6\x9b\xf7\x2b\xb7\x9b\x3a\x4f\x35\xbc\x05\x32\xc9\xd1\x4b\xfd\x3f\x70\x73\x96\x11\x21\x09\x49\xce\x68\xa6\x55\xe5\x20\x24\x16\xa0\x3a\x37\x90\xf1\xf1\x71\x9e\x4b\x65\xbd\xf8\xfc\x30\xb4\x3e\x6c\x9c\x96\xb6\xf1\xb4\x20\xbe\x8c\x04\x81\x01\xb9\x51\xa6\xe2\xf0\x92\xe2\x90\xe6\xdc\x0a\xbc\x0f\x31\x0b\xaa\xb6\xf0\x0f\x03\xfa\xeb\x97\xc6\x3e\xa4\x2a\x26\x8e\x6a\xd8\x34\x9d\x4d\x5a\x9b\xaf\x32\xd5\x6f\x30\x3b\xfc\x46\x4f\x06\x59\x53\x07\x3e\x44\x21\x26\x97\x40\x05\xbc\x64\x43\xef\x72\x32\x97\x43\xb3\x45\x38\x9e\x0d\x74\x75\x3f\x0f\xe4\x97\x75\x90\x49\x68\x4c\x49\xb3\xf0\x96\x98\xfc\x2e\x67\x9d\x52\x1b\x1c\x19\x24\xfc\x6d\xd8\x40\x4a\x2f\xf8\xe0\x43\x64\xe0\xb5\x96\xe3\xb2\x0f\xf8\x3c\x25\x5d\x6b\x52\x64\x07\x49\x24\xba\xa9\xe8\xc3\x6f\x8d\x8c\x16\x8b\x32\x22\x75\xe5\x61\x6b\x30\xeb\xfe\x26\xe4\xfb\x25\x73\xdd\x68\x73\xec\x06\xf5\x58\xe0\x1d\x51\x26\xc9\x9c\xf4\xaa\x3e\x61\x18\xf5\xfe\x06\xc4\x91\x24\xd6\xe1\x0b\x92\x85\x99\xfc\xe8\xee\x70\x0e\x31\xf3\x5c\x43\xeb\xb1\x34\xa7\xc8\xb0\xd6\xf3\x89\x40\x37\x61\xc0\x1b\xb3\xd7\x99\xe1\x2b\x96\x5b\x79\x03\x25\x3e\x1f\xdd\x8c\x4a\x39\x18\x3f\xb4\x61\xb5\x72\x9e\x25\x17\xb8\x1c\x00\x29\xe9\x86\xed\x6c\x32\x9f\x49\xf2\x5b\x91\x06\xeb\x73\xba\x99\xd8\xde\x0d\x6a\x38\x5b\x73\x61\xc2\x26\x2b\xae\xb6\xe8\xc6\x41\xfb\xa6\x98\xe9\x26\x87\xf6\xcd\x12\x5d\x76\x74\xc3\xbc\xbd\xb1\xe7\xce\x5c\x00\x3b\x0c\xf6\xb0\x77\x38\x8a\x83\xa0\xb6\xd9\x82\xc6\xc2\xaa\x48\xa5\x71\xf9\xbd\xd5\x1c\xef\xd8\x99\xa5\x79\xe9\xe3\xfe\x76\x1b\xc5\x73\x3b\x0e\x6c\x26\x31\x35\xf0\xa0\xb6\xb3\x62\xbe\x3f\x59\xb2\x9c\xd7\x2c\xb8\x87\x60\x6c\x96\xcd\x70\x39\x9d\x80\x9f\xe9\xf7\x06\x36\x82\x20\xdc\x6b\x4d\x96\xb4\x28\x8d\x64\x71\xa7\xf3\xc3\xa1\xc4\x89\xfc\x41\xb7\x3f\x02\xa0\x78\xf2\x18\x42\x9f\xa7\xba\x5f\x69\x82\x81\x40\x96\x15\x01\x2b\x2d\x4b\xad\xda\x44\x65\x1c\xf4\xcf\xf2\x00\xdd\x08\xaf\x76\x9a\x37\xe5\xb9\x7f\x26\x54\x4c\x13\xeb\x0c\xed\x6d\xc2\x99\x43\x1e\xd8\x4a\x9b\xc4\xa0\xb2\x0c\x00\xca\x9a\xa0\x8b\xcc\xe6\x90\x17\x2b\xa3\x54\x59\x2f\x37\xbd\x13\xb8\xc1\x92\x14\x16\x83\x09\x79\xf1\x0d\x6d\x2c\xaa\xcb\x85\xcb\x02\x88\xf3\xcc\x45\x9c\x07\x3f\x33\x2a\x77\xf4\x73\xd3\x11\xcc\x86\x7e\x36\x3f\x12\x32\xd2\x20\xd4\x70\x5d\xe1\xe6\xb6\x08\x8d\x85\x24\xe9\x38\x6b\x20\xa4\xe1\x85\x14\xcc\xbd\x96\x3b\x1b\xcd\x86\x28\x5c\xd8\x69\x3c\x6c\xb7\x44\x90\x65\x3e\xea\x1f\xb4\x61\xb5\xa7\x92\x4c\x74\xa4\x91\x33\x60\x5e\x8c\xe0\x14\x36\xc7\xa9\xf6\xc4\x9d\x79\xaa\x33\xb2\x09\x98\xe5\x63\x72\x51\x85\x20\x2a\x26\x37\xd9\x1d\x96\x11\xc1\x79\xc1\xdc\x43\xa3\xb8\x08\x87\xa5\xb6\x5c\x06\x63\x24\xf3\xf1\xd2\x35\x3a\x03\x77\x9b\xd5\x2c\xa2\xd0\x40\xe9\xe5\xd5\x98\x34\x91\xb1\x1a\x7f\x2a\xd9\xab\x30\xcd\x30\xd0\xb6\x74\x48\xa2\xd1\x5c\xd6\x64\x6d\x71\x50\xa3\x3e\x48\x94\x1a\x52\xdf\x55\xbd\x9b\x8f\x10\x26\x9d\xec\xb7\xa3\x5d\x4c\xe4\x30\xef\xa2\xbf\x1d\xed\x52\xeb\x30\xd6\xbc\x1e\x63\x4c\x01\x52\x69\x32\x31\x98\xc9\x7e\x28\x47\xd0\xdf\xd7\xbb\x85\xe0\x63\xd2\xcb\x7d\x3d\xd2\xa9\x08\x49\xa6\x9d\xb3\x9f\x8f\x0d\x12\xf2\x7a\x19\xed\xea\x8d\x5d\x78\x33\x99\x67\x24\x4a\x39\x1f\xf1\xa8\x67\xfe\xb4\xba\xcb\xd6\x98\x9a\x56\xbf\x85\xe0\x79\x43\x8a\xdc\x1b\x9b\x2a\x40\x5a\x7f\x11\x71\xf9\x57\x70\xd5\x7a\xc5\xd6\xda\x76\x8c\x76\x5f\xd1\x95\x3b\xca\x91\xad\xf3\x49\xc4\x7a\x5f\x94\x39\x7f\xc7\x6f\x4d\x6a\xbc\x5b\x13\x12\xd8\x26\x81\x61\x66\x82\x31\x5a\x9b\x5a\xe4\xa3\xbb\x3c\x17\xde\x84\xbb\x5c\xbd\xe0\x3b\xaa\x15\x6c\x3d\x8c\xb1\x18\x0f\x16\x7c\xcf\x06\x16\xf2\x4d\x7c\xea\xb5\xfb\xd0\x35\x68\x01\x6e\xa9\x3f\x90\x35\xba\xf0\xf1\xc9\x52\x73\xf2\x31\xa4\x0a\x0b\xb4\x43\x09\x18\x22\x1a\x70\x19\xa0\x58\xd2\x77\x6d\x20\x3b\x98\x20\xeb\x25\x95\xd7\x4c\xab\xcf\x0d\x29\xfa\x6a\x82\x9e\xa3\x27\x4f\x4c\xbb\x16\x5d\x5c\x54\xd8\xc7\xc8\xe8\xfa\x63\xe1\x2e\xc8\xba\xda\xe4\xbe\xf8\xf6\x7e\x22\xde\x14\x0e\x71\x8c\x68\x46\x9c\xd0\xff\x4a\x54\xee\x80\x3e\x39\xd8\x70\x92\x23\x3a\x83\x80\xf7\x6e\x04\x48\x4d\xac\xf8\x57\xa7\xf5\x84\xe6\x3b\x01\xd9\xba\x52\x3d\x06\xe8\xff\x5f\xfc\xdd\xa3\xee\x6d\xc8\xb5\x03\x2b\x86\x97\x8e\xe3\x8a\x57\xc5\xff\x3e\xe6\x9e\xad\x3b\xc1\xb5\x56\x5c\xf3\x7f\x4f\x3a\xd2\x0d\x13\x45\xb3\xe0\xf7\x9e\xf6\x1c\x7f\x99\x63\x37\xc3\xa9\xaf\xc8\x9d\xed\x49\x9c\xce\x97\xcf\x2e\x12\x76\x86\xc6\x78\x5e\x9a\x24\x73\xff\xab\x6b\xfa\xb3\x5d\xd3\x9f\xe5\x69\xfe\x05\x61\xcc\xc5\x89\x18\x33\x95\xbd\xf9\x57\x8b\x84\x47\x72\xc4\x71\x1d\x97\x72\x0b\xea\x53\x88\x95\x93\x8f\x4a\xe0\x63\xd1\x72\x33\x9f\xa9\xba\xd0\x01\x17\x1d\x7a\xd4\x0e\x7d\x47\x1b\xac\xfc\xa2\xa5\xf7\x30\x50\x45\x76\x36\xc9\xbe\x92\x30\xfb\x77\x18\x72\x3f\x2d\x5d\x72\xc4\x9e\xbe\xb0\xb9\x76\x0f\x4b\x7d\xf4\x03\xa4\x79\x38\x5a\xc5\x76\x2e\xa1\xd4\x09\x52\xa6\x38\xba\xcb\x62\x63\x7a\x66\xcd\x8a\x7c\x60\x82\x66\xb4\x4a\x9b\x34\xd5\x57\xd0\xd9\x44\x18\xae\x5f\xa2\x3f\x9b\x05\xc4\x2a\x9d\xa5\x2f\x1f\x39\x05\xc8\x5b\x84\x84\x44\x66\x2c\x7d\x6a\xe4\xf3\x3f\xcf\xdc\x9e\x36\x04\x96\x3b\x9b\x2f\x43\xfe\xf3\xdc\x70\x55\x65\xcd\xb4\xbf\x0c\x04\x38\x22\x78\x72\x9f\xff\xf9\xf8\xde\xe3\xa1\x96\xe3\xe0\x5c\xe1\x4e\xc3\xb2\xd0\xc9\x83\xa9\xfd\xb7\x04\xa1\x83\xd5\x1d\xdc\xf1\x6b\x39\x31\x20\xb1\x37\xa0\x32\xd0\x98\x6c\x40\xbe\x46\x35\xe8\xe8\xdf\x6a\x70\xa8\x18\xdb\x3f\x47\xee\xef\x69\x70\x39\x4b\xa8\x83\x4a\xe3\x12\xa8\x51\x03\x2c\xdb\x54\x81\x30\xd2\x1f\x7d\xf6\x7a\xfc\xdd\x1f\x0d\x5e\xf6\x8d\x4d\x8c\x0b\xc1\x0c\xd2\x9a\x72\x13\x79\xf6\x6e\xfc\xaf\xdc\xf0\x0d\x69\x94\xf1\xa9\x57\x24\xb9\x49\x92\x4c\x0d\xdd\xf4\xf0\xf2\xfb\x06\xe3\xf3\xd2\xf5\xb4\x8b\xc6\x24\x12\xd6\xf3\x3e\xaf\xd7\x99\xa5\x63\x2f\xcf\x52\xb0\xd3\x17\xe8\xdd\x56\xf0\xbd\xb1\xf4\xcb\xd4\xcd\xf4\x5e\xc7\x0f\xe1\x36\x60\x85\x91\x57\x4f\xe9\x68\x46\x67\x8c\x3e\xb5\x65\x36\x58\x1f\xdc\x8a\xe8\xc5\xd6\x33\x3b\xff\x48\x04\x5d\x1f\xd2\x9a\x3e\x87\x38\x46\xb5\xe6\x82\xa0\xde\xa4\xe2\x3a\x61\x0d\x16\x22\xc4\x3e\x20\x16\x59\xba\xad\xcc\x5d\x3d\xec\x5c\x24\xf1\xd0\xbd\xe0\xed\x00\x85\x72\xec\x85\x0b\x22\x04\x17\x89\xe3\x04\x43\xd0\xcb\x14\x97\xb0\xe9\xa9\x6b\x4c\xbb\x21\xf7\x71\xa3\x89\x34\x51\x54\xf5\xb2\x2d\x61\xbd\xb3\x79\xdd\xd1\x76\x34\x73\x34\x13\x57\xc1\x54\xab\xc3\x3e\x06\x27\x65\x00\xd0\x92\x62\xcb\x53\x71\xf8\x5a\x37\x41\x1d\x5d\xd7\xdd\x22\x77\x58\x20\x2a\xaf\x4a\xfc\xfa\x37\x2c\xe1\x26\x80\x4d\x42\x2f\xf3\xe2\x8f\x8e\x70\x39\xa8\x2d\x17\x74\x2c\xaf\xde\x7d\x20\xaf\x1a\xf7\x3e\xaf\xba\xbe\x8b\xb3\x09\xb7\xce\xb3\x67\xe8\x0a\x42\xdc\xff\x7c\x8e\x7e\x34\x01\x74\xcf\x7a\x7c\xd4\x72\xb4\x37\x5d\xeb\xe9\x83\xe8\xd4\x12\xac\x82\x08\xe1\xf7\xf1\x85\xc0\x70\x27\x00\x33\xd1\x86\x27\x77\xf4\x2f\xe5\x8e\x0c\x9d\x19\x28\xa5\x57\xc5\xb7\xbc\x6b\x65\x88\x1b\xd6\xfc\x01\x13\x00\x70\x43\xd5\xb7\xef\x7e\x7d\xf2\x04\x1a\x5b\xb2\x38\x02\x8b\x51\x78\x24\xa8\x71\x14\x1a\xfa\x03\x81\xe6\xc9\x56\xa5\xf7\x6e\xfa\x97\xfa\xb7\x53\xec\x01\x9d\x72\xbc\x75\x4e\x81\x1e\xc8\x2d\x32\xd9\x7e\x86\x2e\x6d\x1a\x4a\x95\x73\x80\x2e\xe7\x95\x1a\x73\x89\xc6\xe2\x89\xfe\xa9\x72\xcf\x07\x55\x19\xc9\x67\x03\x20\x9c\xe7\xcf\xbc\xfd\x54\xa0\x72\x85\x70\xc0\xa4\x2c\x34\x1e\x20\x75\xf2\xfe\x4b\x94\x48\x25\xf2\x5b\xa7\x71\x3f\xf5\x6a\xaf\xcb\xe5\x99\xe1\x53\x82\x3b\xe5\x94\xb6\x56\x82\xdd\x54\x95\xf4\xbe\xec\x0e\x47\x04\xd5\x9f\x98\xbf\x80\x1a\x2e\xa3\x54\xfc\xb2\x55\x99\x54\xd1\x06\x7c\xb3\x65\x4b\x20\x17\x74\xb6\x16\x7c\x77\xae\xc1\x53\xc0\x6c\x2c\xce\x84\x0c\xb7\x03\x77\x72\x9a\xa2\xee\x3c\x07\x3c\x09\xcf\x67\x97\x66\x6c\xbe\x07\x7a\xfe\xf4\x04\x87\xc7\x59\x38\x2d\xf7\x47\x3d\x02\x59\xc4\xa0\xdf\xd8\x1a\x47\xde\x73\x8d\x18\x17\xde\x4d\x22\x21\x5f\x43\x89\x41\xaa\x3d\x17\x6a\x7b\x58\x98\x72\x5a\x70\x3b\x24\xad\xec\x69\x5d\x45\xf9\xf8\xe1\xde\xc4\x6a\xd0\xea\xd7\x81\x1b\x77\x45\xdf\x1d\xbc\x95\x43\x15\xb8\x7d\x9f\xf5\x5c\x82\xe1\xd2\x52\x97\x4c\x43\x0e\xb0\x00\xf0\x75\x0e\x58\x60\xa6\x48\xe4\x4a\xb6\x53\x28\x9e\x2d\xc5\x79\x54\x31\x28\x09\x2b\xb2\x75\xe5\x47\xc2\x62\x28\x83\xa0\x92\x21\xbd\x3d\x3e\x54\xe2\xfd\x44\x18\x85\x2f\x54\xab\x03\x38\xc0\x40\x21\x31\x26\xa4\xa5\xd5\xe6\x29\xc3\x5d\xac\xd5\x03\x02\xfc\xd2\xca\x8b\xe1\xa6\x89\x82\x65\x49\x34\xc8\x34\xa1\xcd\xa5\xaa\xa5\xbe\x39\x94\x04\x09\xd0\x04\x9f\x63\x6b\x95\xea\x02\xa7\x05\xc1\x1f\xaa\x0a\xaa\xb8\x2a\xc3\xeb\x77\x41\x35\x5c\x1d\x22\x6f\xa7\x36\xd0\x93\x05\xc5\xc6\xf8\x8b\xc0\xf2\x77\xd8\x93\x0f\x24\x99\xa5\x19\xcb\x2e\xd0\x94\x5b\xfb\x76\x33\xc9\x98\xc5\xcd\xa5\x53\x61\x36\x16\x8e\xfb\x72\x50\x81\x79\x6f\xa6\x98\x9f\x00\xb2\x0a\x50\x82\x83\x20\x73\x5f\xd6\x01\x75\xf4\xf6\x56\xe0\x56\x85\xbb\xcf\x7b\xfb\x0c\xd1\xc4\x11\x73\xdb\xf9\x12\x1c\x7d\xc8\xd7\x34\x7c\xad\x37\xff\x7b\xcc\xf0\x86\x44\xc5\x84\x42\x3c\x1d\x58\xe1\x8e\x5b\xa9\x56\xf1\x2f\xd2\x75\xf0\x01\xd8\x1a\x07\xb8\xef\x09\x43\x72\x80\xa9\xd6\x43\xd7\x1d\x4a\xb6\x29\xfd\xe4\x26\x6d\xcd\xf8\x8d\x37\x44\x5d\x9a\x9a\x80\xb3\xe0\x1a\x38\x73\xea\xdf\x7c\x99\xe4\xe1\x19\xc6\xfa\xfc\xc9\xa7\xfc\x20\xf3\x3a\x54\xf7\x2f\xea\x0a\xc5\xb1\x7e\xbe\x36\x56\x72\x1e\x5f\x2e\xf4\xe4\x28\xe0\x33\x31\x07\x59\xc6\x0e\xe4\xae\xf6\xac\xbb\x50\x9c\x02\x0f\x9c\x4f\x59\xd3\xeb\x97\xb2\xbe\xf1\xcf\x4b\xb1\x79\x48\xbe\x4c\xe7\x56\x10\xa5\x1a\x55\x6c\xc9\x1c\x3b\xff\x83\xa8\x6f\xc0\x65\x0d\x38\xb8\xe3\x77\xb8\xcb\x6e\x48\xf9\xca\x56\x21\xff\xc8\x23\x7d\x59\x4e\x26\x78\xba\x53\x1f\x8b\xee\xe1\x97\xa8\x87\x2c\xa1\x5c\x71\x25\x57\xa0\xee\x12\xc2\x2a\x29\x56\x7e\xfc\x5c\xf9\xc8\x37\xfd\x43\xec\x4b\x58\x71\xa1\x7c\x90\x21\x54\x28\xd5\x64\xa6\x85\xa1\x57\x92\x42\xa0\x10\xe2\x87\x7b\xdd\xfa\xe0\x8a\x45\x53\x55\x08\xb5\x3d\x14\x4d\x0b\xd7\x62\x5d\x08\x82\x0a\xa9\xac\xb2\x5e\xbf\x18\xec\xf3\xaa\x75\x43\x3f\xbd\xcd\x14\x57\x5e\x02\xfb\x32\x8c\x11\x33\x5c\x20\x7b\x93\x60\x23\x88\xa9\xdb\x67\xf5\xba\x35\x17\xa5\xd0\x3d\xa0\x01\x6a\xf0\xc1\x4d\xec\x74\x0d\xda\xc8\x17\x44\x42\x5d\xf0\x90\x81\x34\x1a\x3f\xf8\x0e\x95\x71\xa1\x67\xcf\xd0\x5b\x7c\xc8\x75\xce\x5a\x13\x82\x9b\x6d\x14\xbe\x39\xd8\x6a\x2c\xd5\x8a\x60\xcb\x47\x05\x5a\xc5\x97\xb4\x63\xd7\xed\xc8\x65\x6d\x9f\xc3\x12\xbc\x6d\xb5\x1b\xd4\x75\x53\x17\x02\x6f\x66\x25\x57\xc3\xb4\x61\x10\x2e\x31\xd7\x35\x79\x3f\x63\xae\x4c\x87\xf1\xeb\x1d\xe9\x1a\xcd\xf2\xb3\xb1\x81\xb9\x29\x03\xbd\xec\x52\x2f\x3a\xe6\x3e\x95\xec\x18\x44\x3a\x59\x0b\xf9\x20\x97\x1d\x39\x5a\xd3\x31\x01\x31\x1e\x2d\xf0\x38\x05\xb3\x3c\x37\xe7\x24\x4d\xa5\xd8\xb4\x71\x8e\x7d\x99\x92\xf2\x86\x5b\xfa\x75\x51\x06\x6f\x26\x1c\x53\x24\x2e\x6d\x2d\x9d\x9e\x53\xa8\x8e\x6f\x8a\xe1\x07\x2b\x63\x0f\x55\x7e\x1b\x48\x94\x80\x0b\x1d\x2e\x00\xbd\x30\xf9\x1b\x71\x69\x3c\x53\xbe\x10\x72\xde\xb6\xf8\x8e\xe4\x53\xc1\xe5\x74\x30\xae\x24\xea\xc8\x5a\x2d\xec\x55\x03\x77\xe9\x3a\x98\x03\xa6\x40\x17\x46\x8c\x3f\xe5\xbd\x61\xe7\xb6\xe6\xb6\xcd\x9b\xde\xf5\xea\x60\x22\x29\x8f\xa6\x60\x7b\x36\x86\xc9\x25\x1c\xb2\x7c\x66\x2a\x7f\xfe\x2c\x66\x93\x81\xe5\xf2\x83\x33\x36\x02\xa5\x9d\x26\x4a\xa9\xa2\x0a\x7f\xd3\x64\x38\x1d\x36\x38\xbb\x40\xdf\x2e\xbf\xad\xd1\xe4\xa9\x4e\x7f\xaf\x88\x4d\xe1\xfe\x89\x79\xc9\x0f\xcb\x49\xfe\xe2\x7c\xe4\xcf\xc8\x45\x7e\xa0\x92\xf4\xc0\x1c\xe4\x07\xe8\x53\x5f\x2d\xf7\xf8\x33\xf2\x8e\x1f\x9c\x73\xfc\xc5\xf9\xc6\x35\xc4\x2f\xbf\x2b\xfb\x9d\x9a\x76\x9c\x91\xbf\xf5\xf3\x3c\x7f\xca\xd6\x71\x31\x4b\xff\xa7\xbb\x21\x02\x69\x3c\x83\xe2\x3b\xec\x92\xc9\xac\xdd\x77\x85\x5b\x30\x94\xc4\xc0\xa0\x3a\x7d\x79\xf5\x24\x78\x0d\x46\xef\xa0\x5c\xe1\x5e\x0d\x02\xa2\x4c\x92\xe1\x5e\x6e\x39\x68\x1a\xb7\x24\x7a\xf8\x83\x12\xf0\xaf\x2b\xcf\x37\x20\x93\x84\xee\x46\xd2\x0f\xcd\xfd\x12\x47\x2e\x2f\xdd\xbc\x29\x25\x8e\xd6\xb5\x76\x39\x3c\x25\x39\x4e\x95\xb9\x46\x79\xf4\x7d\x94\x26\xb3\xb2\x91\x79\xc7\x11\xb2\xf4\x24\x69\xaa\x6f\xe5\xbd\x4a\x8f\xc2\x64\x81\xb1\x4a\xf7\x92\x56\x93\xba\x63\x95\x1e\x79\xfb\x3a\xb1\xd6\xd7\x7b\x24\xdf\xa1\x32\x70\x5c\x32\xb1\x3a\x5a\x49\xc5\x45\xc9\xb2\xbc\x5f\x9d\x96\xc7\x4a\x99\x15\xbd\x27\x09\x7a\x52\x8a\x55\x74\x9f\xb4\x34\x5a\x3e\x57\x46\xcd\xf3\x87\xd7\xcd\x2d\x8b\xd1\x7d\xfd\xbb\x7a\xd1\xc5\xc1\x17\x23\xe8\xfb\x0b\xac\x7d\xf7\xa5\xb7\xf2\x7e\x69\x95\xf4\xe2\x66\x49\xc5\x23\xfb\x16\xd5\x9a\x8b\x1d\x4e\xb2\x38\x51\x96\xb3\x81\x2e\xb2\xc4\xf6\xaa\xe7\xd1\x00\xfc\xb8\x56\x70\x4c\x11\x78\x98\xec\x3f\x59\xdc\x9b\x33\x77\x7f\x4d\x29\x56\x20\xe3\x27\x75\xa8\x70\x64\x0f\x11\xff\xc7\x25\xbe\x3b\xc5\xe3\xc2\x3a\x39\xc8\xc8\x09\x5b\xa9\x53\x5d\x25\x6d\x53\xfc\xae\xfc\xbe\xec\x3e\x92\xcc\x70\x31\x42\x27\x65\xc1\x39\x1b\x37\xb0\x85\x49\xc2\xc5\x1c\x93\xf2\xe5\x6b\x49\x15\xf6\x43\x5a\x80\x4d\x5b\x0e\x27\x97\x5f\x33\xbd\x6d\x1c\xc4\xba\x6c\x21\x95\x03\xae\xe6\xfb\x14\x76\x77\x3b\x32\xe2\x97\xd2\xbf\xf5\xa3\x0d\xc0\x1d\xd9\xad\x88\x18\xbb\xa4\x18\x27\xfb\x9e\x96\xe9\x7b\x92\x69\xec\x87\xfc\x7c\x93\x38\xa9\x13\x17\x76\xe7\xa8\x78\xe1\xb1\xc6\xad\x35\x62\xf4\x51\xce\xcb\xd9\xe3\x12\xeb\xa2\xb4\x23\x3d\x00\xdc\x31\x97\xa1\x82\xb4\x0f\x34\x99\x57\x96\xe2\x2a\x4f\x4d\x87\x85\xcd\x77\x3c\x72\xd6\xe6\xa0\x71\x9c\x52\x47\x77\xe4\xb7\xbe\x84\x38\xbc\x27\x26\xba\xc3\xd3\x35\xa6\x1d\x84\xda\x5a\x28\x56\xe9\xb2\xd2\xec\x0b\x4e\xf5\x08\x65\xb8\x1f\x75\x36\x9d\x53\x5d\xc0\xfd\xb8\xb7\xdb\xc0\xdd\x17\xad\x18\x0d\x77\xf8\xd0\x08\x80\xcf\x41\x2f\xca\x4a\x72\x60\x7c\x7c\x7a\xdc\xe7\x67\x89\x95\x1d\x41\xa4\xb3\x22\x84\x66\x88\xd2\xbf\x74\x38\x1d\x36\xb3\xa9\x03\x7c\x1d\x95\xcd\xae\xc5\xcd\x4e\x89\x97\x8d\x85\xcb\x7c\x45\x3e\x64\x95\xa3\xb0\x4f\x1b\x72\xf0\xbf\x24\x45\xf9\xe0\x22\x5f\x6b\xaa\xf2\x41\x42\xfa\x8e\xdf\xe9\x7f\x78\xaf\xb8\x7d\x8e\x11\x17\x35\xef\x5d\x95\x05\xd6\xda\xab\x96\x9a\xc5\x58\x13\x29\xb4\xfd\x46\x9a\x24\x4c\xd7\x05\xfe\x7f\xa4\x96\x5f\xb1\xf4\xac\xb8\x4b\x53\x3c\x13\xe7\xb7\x16\x0a\xa0\x44\xef\x01\x98\x74\x53\xc5\x6d\x47\xd8\x28\x65\x50\xf3\x2f\x3c\x29\x19\x0d\x93\x5b\x57\xc9\xb3\x74\x26\x5b\x3e\x59\xc2\x2f\x58\xc5\xfc\x3b\xd3\x22\x7f\x56\x1d\xb1\x5e\x6c\x3c\xa9\x06\xf0\x10\x64\xb2\x41\x52\xcc\x0e\x86\x07\xf8\x4b\x23\xa6\x2e\x4c\xe5\x25\x85\x0a\x6a\x25\xef\x18\x1a\xd4\x4a\xcb\x13\x8c\xda\xeb\xf3\x71\x82\x9f\x2a\xc2\xa9\x35\x03\xa8\x7c\xef\xcb\xa9\x33\x57\xd5\x32\x26\x7b\xe3\xad\xb5\x72\x09\x5c\xa4\xf0\xea\xe3\x1d\xf5\xd5\x39\x65\xc4\x04\x12\xee\xf0\xa0\xb2\x9d\xf9\xa2\x23\x4a\x1f\xbb\x59\x19\x85\x3a\xe7\xe7\xe8\xbd\x81\xc6\x87\x6a\x37\x77\x71\xb5\x12\x25\x4d\xc9\x26\x23\x95\x38\x98\x69\xa1\x7d\x64\x26\xbf\x40\x03\xca\xe3\xa7\x77\x8e\x9e\x7c\x4a\x2a\x5a\x15\x97\xbc\x21\xef\xa6\x76\x65\x4a\x0e\x9d\xb2\xf1\x16\xf4\x5f\xff\x65\xbf\x38\x4b\x05\xa3\xfe\xeb\xf9\xf7\x76\x82\x17\xb3\xb1\xa4\xff\xb4\xc4\x2e\x86\xd2\x58\x23\x32\xf2\x6c\x2c\x8d\xfe\x7e\x14\xf4\x36\x54\xfa\xca\xdc\x05\x70\x78\x03\xde\xf9\x6b\xd6\x92\x8f\x01\xde\x8a\x27\x5f\xcc\xf3\x21\xd3\x6a\x25\x13\x21\xd8\x91\xfe\x05\x12\xbd\xb2\x35\x83\x4e\xc4\x88\x53\x10\xcd\xae\xca\xa7\xfc\xfb\xfd\x3e\x70\x99\xd1\x58\xf1\x65\xbc\x63\xe3\x54\x39\x41\xe0\x01\xf5\x52\x70\x54\xc9\xc0\xd0\x76\x20\x6c\x11\xf6\x45\x83\x52\x66\x60\x6e\x3e\x43\x5e\x97\x26\x5f\xdc\x28\x5f\xb2\x6c\x17\xf3\x02\x2e\x5a\x33\xde\x5f\x06\xe2\x63\xa9\xce\xc2\x8e\xb8\x8a\xb7\xe9\xa4\xb7\x9a\x0e\xe1\x0d\xac\x13\xb8\x48\xc4\x94\xcf\x4b\x9d\x61\x31\xc5\x5b\xe0\x6e\xa8\xbb\x3d\xe2\x1c\xa5\xc6\x81\xfa\xf9\xae\xd5\x53\xfc\xa4\x49\x56\xc4\xbc\x7c\x85\xaa\xa5\x26\x28\x66\x1e\xd1\x70\xfe\x64\xdd\x0b\xd2\xce\x72\x07\xf3\x54\x69\xaa\x3b\xec\x33\x1e\xe4\x39\xfa\xfe\x93\x59\x88\xbf\xbb\x7f\x9f\xcc\xfd\x32\xcc\xab\x38\xba\x25\xa4\x47\x7a\x98\xdb\xa8\x58\x00\xd2\x6b\x30\x1a\xef\xce\x9e\x5b\xb5\x10\x46\xa9\xb5\xa2\xa7\x2f\x0c\x39\xe9\x3f\xde\x77\xb9\x93\xfc\xfa\x65\x41\x54\xe5\x2e\x48\xab\x67\x3c\x47\x9f\x8c\x62\x70\x8e\xec\x7e\x50\xa0\xcc\xfb\xfc\x62\x30\xa8\x78\xa9\xd7\x3d\x28\x80\x50\x7a\x5a\x6e\x43\xb9\x69\x57\x05\x31\xb1\xd1\x63\x91\xfd\xab\x3a\xf8\x8f\xa4\x0e\x06\x7d\x30\x13\xb2\xb9\xcd\xde\x41\x86\x12\x61\x21\xdb\x33\x4f\xfe\xa3\xac\x25\xa4\x35\x85\xe5\x9c\xc3\x20\x7e\xdc\xaa\xb0\xcf\x83\xe1\x6b\x92\xe0\x1e\xe0\x4d\x41\x93\x06\x7a\x5c\xb8\x2a\x46\xc9\x73\x74\xe5\x1e\x94\x0e\xc2\xde\x3b\x45\x92\xdc\xbf\xcc\xbf\x61\x4a\x7a\xea\x61\x43\x35\x74\x67\xf6\x56\x72\xd7\xd8\x5a\x99\x2d\x25\x5b\x8c\x1c\x10\x0f\xf6\x39\x3c\x68\x4b\xc5\x4e\x5a\x22\xb5\xee\x91\xf9\x2a\xcc\x22\x2a\x5e\x9f\x6b\x53\x60\x01\xb8\x1e\x51\x56\x3f\x46\x58\xac\xa8\x12\x9a\x37\x9a\x22\x13\xf6\x61\x1e\x97\x84\x06\xaf\x70\x44\x45\x53\xa1\xbe\xa6\xaa\x3d\x34\x66\x67\xb1\xa9\x54\xf6\xdd\x46\xa5\xa5\x30\xe9\xd6\x25\xf2\x69\x80\x6a\xd6\x6f\x30\x44\xc3\xb1\x48\xaa\xd3\x4d\xbc\xfb\xe0\xa9\x33\x70\xab\x8c\x08\x8d\x33\xa3\xea\xd7\x13\xf1\xf1\xe3\xce\xef\x7a\x50\xff\x6f\xeb\xf9\x1e\xe3\x4d\xf5\xef\x8f\x7a\xce\xc7\x73\x17\xfe\x26\x6e\x73\xf7\xd7\x18\x7a\x04\x9d\x04\x5d\x78\xc1\x3d\x85\x4f\xee\xf5\x07\xd7\x36\xb9\xeb\x5c\x3e\x09\x81\x6c\x86\x91\x7d\x88\x83\x91\x60\x62\x3a\x5a\xf4\x3a\x46\xe9\xb1\xe4\x9d\xd3\x97\x35\x1a\x03\x6c\x9d\xee\xf2\xbe\xd8\xc0\x07\xdd\x26\x7f\x60\xcc\xce\x1f\x1e\x74\x8c\x86\x34\xaf\x3c\x98\xe2\xb4\xe6\xae\x29\x3c\x53\x8e\xf6\xc4\x5e\x73\xe3\x68\x8b\x59\xdb\x11\x78\x5c\x2b\x19\x32\xaa\x31\x39\x7b\xfe\x34\x8c\x59\xc9\xad\xb2\x3b\xbf\x29\xd6\x7b\xe3\x1c\x7d\xa0\x52\x91\xd6\xab\x65\x95\xeb\xc3\xb8\x6d\x73\x73\x15\xd8\x95\x57\xa6\xce\x2b\x0a\xd6\x22\xa5\xac\x5a\x90\xbf\xf8\xaa\xdc\xc0\xab\x8f\xa6\xd0\x97\x8a\x9e\x84\x85\x12\xc4\x90\x1f\x99\x54\xfe\x0c\x5e\x74\xcd\x04\x29\x6b\xba\x41\xda\x47\x8e\x7d\xa5\xcb\xc2\xf9\xad\xed\xd5\x91\x28\x8b\x29\x0a\xc4\xfb\xf4\xc2\xd9\xcc\xe6\xbf\xda\x1c\x52\x5b\xf6\x69\x5e\x66\x8a\xe2\xd1\x62\x4b\xf1\xf3\xe4\xf5\x1c\x2a\x78\x9c\xd5\xf4\xf7\xbd\x46\xa3\x3e\x15\x7b\x1c\xe6\x37\x53\x90\x78\x3a\x74\x81\xde\x7f\x28\x5a\x47\x97\x4f\x8b\x49\xeb\x79\x8d\x7e\xec\x25\x24\xd9\xb7\xb3\xe8\xee\xe4\x29\x37\xca\xc6\x61\x83\x2e\xc2\xe0\x99\x6d\x9f\x2a\x50\x51\x7e\x57\xe5\x7d\x7c\xf7\xa9\xbc\x93\x5f\xc9\xe8\x2f\xb9\xda\x29\xc8\xfa\x77\x27\x8b\x6c\xde\x46\xcc\x4a\xff\x7a\x72\xa2\xfa\x4c\xff\x38\x1e\x7c\x49\x7c\xd6\x26\x53\x15\x07\x16\x79\x87\x12\x03\xac\xc2\xde\x92\xdf\xff\x8d\x74\x7d\x14\x89\x4c\x9c\x15\x8a\xeb\xee\x95\x2b\x30\x7c\x6d\x35\x2f\xb6\x56\xc6\x1b\xb9\xc3\x7d\x6a\x94\x4e\x3b\x94\x4e\x60\xba\xc6\x00\x19\x73\x14\x56\x7c\x32\x39\x39\xfb\x52\xaf\xc1\x9a\x5d\xba\xd8\xf0\xbf\x93\x43\x3a\x5f\x2d\x67\x33\xef\x6c\xcc\xdb\xd9\x2d\x31\x0a\xdc\x75\x24\x0d\x3e\xd9\x55\x56\x44\xe7\x7d\x76\x37\x61\x2c\xa5\xba\xb2\xdc\xf7\xc9\x2c\x1f\xce\x8a\xe5\x8f\x56\x5a\x3c\x36\x50\xbe\x95\x97\x8b\xda\xd2\x2b\xdc\x6e\x2a\x21\xfc\xc8\xa4\xf0\xef\x97\x1f\xce\x1c\x5b\xad\x08\xc8\x72\xba\x51\x17\x68\x25\xa4\xf0\x25\x78\x6e\x63\x0b\x47\x50\x1d\x84\xf3\x83\x91\xbd\xbe\xba\xaf\x8d\xef\xe0\x61\xf3\xb7\xc8\x7c\x4a\xa3\x7b\x7b\x2f\x9c\xcb\xa4\x5a\xe8\xfc\xf0\xac\x25\x1f\x9d\x0b\xed\x84\x23\x85\xab\x2b\xd0\x69\xc6\xd7\x35\xdd\x27\xb2\x37\x6d\xb9\x83\xb8\x32\x8f\xb6\xe7\x3f\x66\xc6\xed\xa9\x53\x1b\xe8\xce\xb0\x3a\x4f\x16\x9f\x07\x6a\x51\xac\xa9\x4f\x87\xa1\x2c\x18\x83\x9f\xca\xd4\x5e\xb0\x25\xb8\x0f\x24\x2f\xc3\x1d\x3d\x70\x98\xa6\x29\xb8\xca\xd8\xf9\xe3\xfb\xd7\x2a\x79\x29\x9b\x7c\x24\xcd\xa0\xc2\x35\xc7\x32\x1a\xeb\x3d\x77\xe6\x5d\xff\xaa\xb3\xec\xcb\xe3\x5b\x19\x42\x65\x96\x6e\x62\x22\x38\xa8\x03\x03\x39\x81\x90\x4f\xf2\x36\x24\xeb\xf4\xc9\x01\x96\x32\xcb\x7a\x50\x15\x24\xf3\x79\x37\xca\x97\x28\x4a\x12\x21\x82\xc6\x74\x56\x71\xa5\x74\x49\x2a\xda\x88\x21\x56\xe2\xe8\x69\xe4\x9d\x0e\x5e\xcb\xa3\x75\x94\x5f\xb6\x3c\xdd\xc2\xc8\x18\x42\x78\x71\x0f\x54\x4a\x5c\x96\xe0\xaf\x18\x0e\xa9\x01\xd6\x39\xeb\x2b\x90\x53\x82\xcb\x49\x7c\x30\x23\x23\x53\x6a\x0f\xfc\x39\x02\x1f\x5c\x26\x47\x91\xb3\x7d\xfd\x32\x7a\x14\xa1\x48\xf8\x99\x42\xf6\x13\x43\x95\x13\x45\x5d\x3d\x42\xdf\x92\xc3\x54\xd1\xdc\x32\x7c\x75\x74\xaf\x0e\x63\xf5\xf6\xec\xd6\x8d\x24\xb9\xb1\x87\x7f\x63\x4a\x53\xc2\x01\xdf\x3c\xac\x32\xf0\xe7\x47\xd3\xca\xd2\x92\x15\x46\x9b\xa1\xe6\x87\x28\xf8\x79\x42\x6b\xc7\x9b\x5d\xaf\xd1\x2a\x94\x99\xb9\x76\x3f\x2a\x8d\x5e\xca\xba\x2c\x1a\x9b\xf9\x6c\x42\x65\x8e\x8f\x2e\x3b\xe7\xb1\x80\x62\xd2\xe8\xd2\xbd\xe9\xe4\x82\x73\x2e\x2d\xc1\x56\x27\x0c\x62\xa1\x74\x3a\x4c\x95\x25\xff\x8c\x68\x66\x1e\xbf\x1e\xaf\xce\x38\xe5\xda\x31\xd9\x80\x27\x16\x85\x2b\x1f\x6a\x28\x16\xec\x39\xb7\x6d\x00\x31\x6e\x60\xc3\x84\xa9\x93\xf8\x78\xa5\x9c\x0b\xec\xe2\x68\xa8\xbf\x32\x54\xea\x45\x4b\xaa\x53\x2a\x31\x9c\x5a\xb3\xf0\x73\xb6\xfd\x50\x89\x55\x7f\xe3\x43\xeb\x1b\xa3\x99\x00\xe8\xcb\xc4\xf4\xd9\x3f\xa2\x08\xfc\x32\x59\x56\xc9\x5c\x79\x10\xa3\xf7\x72\xcc\x5b\x12\x5f\x87\xf9\xff\x2c\x89\x35\x19\xb7\x88\xe2\xd7\x11\xc7\x3d\x22\x6d\x9c\x37\x28\x71\xef\x94\xae\xce\x3f\x68\x5d\xd7\x32\xe2\x08\x34\x34\x06\x4d\x54\x2d\x40\x22\xdc\xa8\x01\xee\x80\x59\x17\xee\x6f\x11\x77\xd7\x3e\xf3\xb1\xe1\x86\xbc\xcd\xf9\xdc\x5a\xf7\x77\x4b\x82\x29\x07\x59\xbf\x52\x95\x6f\x24\xf8\xed\x78\xc3\x7a\x16\x2a\x0a\x54\x58\xa9\xa6\x10\x6a\x2d\xa3\xa8\x73\xdd\xf8\x29\xe8\x0b\xc5\x35\x1b\x64\x6c\xb7\xd0\xd4\x60\x71\x9f\x71\xb9\x85\xc6\xaa\x30\x47\x12\xb5\x2e\xdb\xb2\xd4\xa0\xa4\xc9\x95\x65\x5c\xe0\x50\x36\xed\x42\xd9\x78\x6d\xc5\x10\x81\x8d\x4d\x7c\x47\x44\x9a\x58\x2c\xe0\x49\x1e\xbe\x36\x5b\x21\x0f\x13\x79\x9f\x91\xae\x74\x92\xe4\xf3\xe3\xa0\xe7\x17\x6e\x84\x53\x8b\x9f\x96\x0c\x3f\x5b\xe5\x39\x7a\x0d\x8f\x05\xc2\xa0\x50\xc7\x68\x45\x50\x67\x2b\xf5\x31\xc4\x05\x22\x7f\x19\x70\x17\x1e\x45\x47\x30\x7f\x45\xb4\x5d\x33\x35\x73\xab\x7b\x1a\x16\x3d\x47\xcf\x3d\x01\xc6\x6a\xed\xb2\x23\x6c\xa3\xb6\x5f\x71\x23\x6f\xdd\x29\xfa\x44\x11\x38\x4d\x2a\x11\x1f\x20\x2d\x69\xc5\x07\xd6\xe6\x45\x73\xee\x0b\xde\xe1\x48\xc3\x6f\x61\x4c\xbc\xc8\x94\xbd\xc4\xbb\x4b\xba\x98\x67\x01\x69\x7e\x84\xd5\xb2\xac\xef\x1c\x13\xc0\xa8\xe7\x52\x52\xf7\x24\x1f\x44\xd3\xf9\xce\x0d\xb3\xc3\x87\x50\x42\x4f\xd5\x5e\x85\x8e\xc6\x74\xc2\xd9\x3d\xb4\x49\x43\xb0\x7a\x8d\x69\x57\xa9\x21\xb2\x40\xaf\xc0\x98\xa7\x9c\xc1\xf5\x10\xa8\x59\xc7\xc8\x47\xc7\x37\x78\xe5\x2d\x1b\xf7\xa9\x79\x04\x63\xe1\x7e\xf1\x30\x25\x48\x03\xf9\x3d\xcc\xfa\x61\xe2\x3d\x96\x6a\xac\xd1\x16\x37\x7e\x7e\x71\x4a\x75\xe3\x89\x02\x14\xb0\xde\xe3\xe5\x5b\xe2\x95\x56\xc7\x3a\xf6\x6c\x0b\xec\xc5\x22\x9f\xf9\xff\x3f\xa1\x7f\x1e\xf3\x1c\xa2\xda\xbb\x47\x3f\xe2\x8e\x5c\x2b\x9b\x56\x87\x72\x59\x8f\xb4\x66\xff\x14\xdc\x35\x60\x84\x59\x81\xee\x3a\x65\x15\xa1\x22\x31\xb6\xb6\x75\xca\xac\x78\x71\x2e\x1e\x3a\xfa\xc0\xe8\xb4\xe1\xf7\xf5\x52\x5d\xad\xb8\x78\x72\xcc\x38\x38\x22\x4d\xaa\x6e\x33\x16\x12\xb3\xff\x64\x9f\x36\x0d\x50\x81\x0b\xda\x5e\x32\xc3\x13\x50\xc0\x8d\x92\x91\x40\x59\xf0\xcf\x20\x41\x09\x7e\xf3\xfe\x8c\xe2\xce\x59\x96\xfb\xd4\xa6\x3d\xb0\xc7\xf3\x57\x7f\x11\xa6\x54\x9c\x61\xb3\xa6\xac\x4d\x4d\x08\xda\x56\x4d\x88\x5f\x6d\x83\xbf\x8a\x6d\x50\x4b\x10\x2e\xfd\x02\x91\x5b\xc0\x99\x81\xe6\xa1\x9d\xae\xd6\x25\xba\xf2\xd3\x75\xf6\x65\x9e\xac\x3d\x38\x68\x34\xa2\xb4\xd5\x97\xc7\x7c\x21\x76\xde\xa5\x24\xe4\x32\xc7\x30\x3b\xec\xb8\x20\xe3\x8f\xfb\x7c\x0f\xcf\xeb\x56\x72\x56\x4c\x8a\x55\x1c\x4b\xf0\x0e\x3b\xf3\x10\xae\xa9\x44\xb7\x21\xce\x45\xdb\x5a\x7e\x57\xdb\xc7\xf8\x2b\x18\x0f\x4c\xbc\xfe\x45\xd0\x69\xb2\xd8\x9f\x93\x68\xa3\x97\x5e\x3e\xc7\xf7\x51\x0c\xdb\xe6\xb4\xeb\xaa\xda\x55\xc9\x77\xec\x52\xe0\xd9\x09\x95\x5d\xc6\x6f\x00\x1e\x07\xe7\x84\x1b\x65\x04\x9c\xb1\x1b\x85\xca\xd2\x15\xf7\x59\x35\x2f\x23\x10\xe5\xaf\xf4\xfc\xc2\xf6\x0b\x65\x92\x53\x82\x9b\xdc\xf1\x57\x13\x0b\xbe\x52\x66\x64\xd2\xdb\xf7\x01\xfc\xbd\x46\x63\x27\xd2\x1d\x16\x07\x13\x28\x8b\x22\xea\xf9\x60\x75\x0f\x87\x7d\x65\x3c\xb7\xd1\xa3\x55\xdd\x20\xac\xd5\x34\x73\x61\xf7\x7f\xff\xfb\x7f\x9c\x5f\xc1\xce\x9b\x4f\x13\xa1\x88\x2d\xf0\x97\x2d\x2c\x7e\x4e\xed\xfd\x07\x13\xcb\x0b\x3b\x84\x52\xbc\x44\xdb\xc0\x70\x66\xa4\x45\x43\x5f\x46\x52\xab\x45\x25\xdd\x13\x26\x53\x6e\x9c\xfc\x76\xad\x13\x7c\x6d\x55\xe2\x9d\x16\x08\x7a\xc3\xf7\x71\x8d\xd1\x04\x55\xcc\x85\x51\x44\x98\x3a\xe1\x84\x5e\xdd\x11\x71\x30\xae\x18\x5f\x3d\xb2\xc7\x6a\x8b\x66\x49\xf4\x6e\x31\xea\xce\xf6\xbf\xd8\xcb\xca\x5a\x1b\xce\x27\xf1\x2f\x36\x5b\xb4\xb1\x0b\xfd\x6d\x55\x58\xc0\x8b\xd1\xba\x35\xe8\xe7\xb0\x16\x93\x8d\x68\x2b\x0a\x55\x0a\x35\x76\x04\x03\x6a\x62\xd4\x62\xb6\xe9\x42\xde\x38\x9c\xbd\x01\x04\x5e\x2b\xeb\xe4\xf0\x07\xf9\xd4\x93\x28\xe7\x7d\x25\x93\x70\x44\xd3\x29\x78\x45\xa6\xfa\x9c\x5a\x5a\x07\x85\x1c\xaa\x23\xd5\xac\x4e\x91\x0e\x13\xec\xe1\x67\x28\x12\x6a\x5f\x69\x4b\x81\xf6\x79\x15\x42\x4f\xb3\x29\xcb\x92\xa0\xf1\xbf\x1e\xa8\xfa\x71\xe6\xaa\xc8\x55\xd5\x28\x53\xf5\x26\x57\x4d\x12\xae\xaa\xd9\xec\xa7\xfb\xfa\xef\x16\xed\x2e\x74\x83\xca\x39\xd8\xab\x50\xb6\x40\x9f\x90\xe8\x96\x41\x8d\x5b\xac\x0a\xf8\x9b\x9a\x09\xc9\x18\x10\xf7\x0d\x22\xe8\xda\xdf\xb4\x6f\x67\x13\x05\xdf\x86\x81\xb6\x13\x37\xdd\x4d\xd2\x7b\xe5\xd2\x1b\x3c\xe6\x63\xaa\x24\x00\x79\x45\x17\xc6\xe0\xf6\x4f\xd3\x1d\xac\x02\x48\x57\xee\x95\xe0\xda\x8d\xb3\x70\xc3\x27\x8c\x30\x9b\x9f\xa3\xef\xa3\x01\x03\xb4\x7d\x7d\x31\x9b\x8c\x1f\xf7\x89\x97\x5e\x9e\x13\x6c\x36\x34\xd7\x7f\xe1\x0d\x79\xab\x79\xc8\x05\x7a\x26\xcd\x3f\x9f\x65\x12\x7d\xac\x77\x28\x68\xac\x3b\x9b\xfd\x56\xfb\xde\x3f\xba\x7f\xf4\xff\x02\x00\x00\xff\xff\xac\x4d\xe9\x20\xa3\xb2\x00\x00" func nftstorefrontv2CdcBytes() ([]byte, error) { return bindataRead( @@ -113,7 +113,7 @@ func nftstorefrontv2Cdc() (*asset, error) { } info := bindataFileInfo{name: "NFTStorefrontV2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x19, 0x82, 0xa6, 0x74, 0x9c, 0xb3, 0x9b, 0x9f, 0xd5, 0xd3, 0xd1, 0x33, 0x70, 0x13, 0xb0, 0xdc, 0x71, 0x50, 0xab, 0xd3, 0x93, 0x41, 0x69, 0xb5, 0x5d, 0xc3, 0xe6, 0x1a, 0x64, 0x17, 0x69, 0xb2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x71, 0xce, 0x6f, 0xc2, 0xfe, 0x17, 0xd2, 0x81, 0xce, 0xbd, 0x62, 0x9d, 0x96, 0x14, 0x91, 0x38, 0xab, 0xf2, 0x71, 0xa9, 0x10, 0xc8, 0x72, 0xb, 0xd, 0x10, 0x64, 0x52, 0x6f, 0xc0, 0x56, 0x51}} return a, nil } @@ -217,7 +217,7 @@ func utilityTestMaliciousstorefrontv1Cdc() (*asset, error) { return a, nil } -var _utilityTestMaliciousstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xfa\xa1\xb0\x01\xc7\x06\x0e\x87\x7b\x30\xe2\xb4\xdd\x64\x73\x08\xee\x36\x08\xba\xde\xde\x43\x51\x2c\x18\x6a\x64\x11\xa1\x48\x81\xa4\xec\x1a\x81\xbf\xfb\x81\x14\x25\x51\x7f\xe3\x6c\xef\x9a\x3c\x24\x12\xc9\xf9\x3f\x9c\xf9\x8d\xc2\xd2\x4c\x2a\x03\xd3\xfb\xdb\xed\xef\x46\x2a\x8c\x95\x14\xe6\xcb\xdf\xa6\x93\x6a\x43\x8a\xdb\x5c\xec\xd8\x23\xc7\xad\x7c\x42\x51\xef\x9c\xb3\xfc\x1b\x1a\x12\x11\x43\xbe\x30\x3c\xe8\xe9\x64\xb2\x5a\xad\x60\x9b\x10\xf1\xa4\xc1\x48\xf8\x94\x6b\xc3\x04\xfc\x8b\x33\x81\x70\x01\x89\x31\x99\x5e\xaf\x56\xe6\xc0\x8c\x41\xb5\xa4\x32\x5d\x11\x77\xe4\xcf\x98\xcb\x83\x39\x3a\xf2\x58\x2a\x88\x98\xa6\x72\x8f\x8a\x89\x1d\x10\x11\x81\x42\x2b\xdb\xbe\x99\x04\x61\x9f\x73\x81\x8a\x3c\x32\xce\xcc\x11\x4c\x42\x0c\x98\x84\x69\xa0\x52\x18\x45\xa8\x01\x83\xda\x68\xcb\xcc\xeb\xc3\x34\x30\x0d\xc4\xad\x07\xa7\x2c\x21\x4b\x33\x8e\x29\x0a\x63\xf7\x53\xc2\x19\x65\x32\xd7\xa0\x2b\x5f\x39\x16\x46\x82\x51\x47\x20\x02\x34\x72\x6e\xff\xde\xdf\x6e\xe1\xc0\x4c\x02\x04\x22\x16\xc7\xa8\x50\x18\xb8\xbb\x01\x26\x9c\x8a\x19\x27\x14\x1d\xa9\x8c\x1b\x47\x38\xb3\xf6\xee\x02\xe5\x50\x61\xa0\x1d\x73\xac\xc3\x50\xfd\x69\xd7\x97\x34\xa2\xde\x52\x6b\x9b\xb7\x97\x68\x9c\x4c\x08\xa5\xa8\xf5\x8c\x70\x3e\xaf\x6d\xfb\xad\xb4\x24\xe4\x04\xcf\x13\x00\x80\x90\x80\xa3\x81\xfa\x88\x7d\x22\x3b\x7c\x20\x26\x59\x43\xf0\xf2\x02\xd9\x43\xfe\xc8\x19\x2d\xa8\xea\xe7\x49\x87\x4a\xa1\x96\xb9\xa2\x18\x90\xae\xdb\xd6\x2e\xdb\x6c\xbd\xd2\x01\x2f\x8d\x3c\x2e\x54\xa8\xa3\x74\x4d\xb2\x35\x5c\x93\xcc\x27\xc5\x25\xc9\x4d\x32\x6b\xb3\xbe\x56\x48\x0c\xfe\xbb\x88\xc0\xa2\x23\xf9\x33\xa6\x72\x5f\x6e\xcf\xe1\xfd\xb0\x66\x57\xc3\x2a\xf9\xf8\xea\x35\x7c\x7c\xfe\xe3\x4e\x98\x7f\xfc\x7d\x0d\x9e\xe5\x69\x32\x69\xd3\x39\xb7\xec\x19\x1e\x20\xce\x05\xec\xd0\xf8\xa3\x77\x37\x7a\x36\x5f\xc3\xd7\x82\xc3\xb7\xc0\x07\xf6\x47\xa1\xc9\x95\x4b\xc5\x78\xd9\x70\xc1\xf2\x51\x2a\x25\x0f\xb3\xf9\xbb\x65\x8b\x57\x45\x7f\xea\xd7\xc1\x8b\xbf\xc9\x33\xce\x68\xed\x24\x4b\x2b\x62\xb3\x3d\x66\xb8\x06\xfb\x7b\x01\x22\x36\x77\x37\x6b\x28\x34\x5b\x94\xf6\xd6\x4b\x3f\xac\xf6\xa8\x0e\xfe\xa1\x52\xc3\xfd\x69\x68\x51\x3d\xbe\x68\x73\xe5\xf7\x42\xbc\x17\x37\xf3\x0c\x3e\xfb\x64\x6d\x58\xf6\xfe\xb9\x9d\x14\x9e\xaa\xc8\xd5\xd3\x87\x7e\x93\xdf\x3b\x9b\xcb\xd4\xf8\xda\x91\xf0\xed\x9c\xf0\x50\x8e\x44\xe4\xd9\xaf\xdf\x33\xa6\x30\xf2\x72\xf5\x2c\x56\x32\xbd\x13\x11\x7e\xaf\x63\x62\x64\x63\x61\xfe\x17\xe2\xf0\xb2\xb0\xea\x31\x90\xe7\x1f\xc6\x3c\x5f\x56\xa8\x86\x4d\x23\x3e\xef\xd5\xfd\xec\xc8\xee\xd0\xfc\xfa\xbd\xe0\x7d\x66\x46\xff\x70\xfa\x8e\xc9\xeb\xcd\xde\xb3\xee\xa6\x77\xd4\x43\xae\x68\x42\x74\x10\x91\x57\x7a\xee\xac\xa8\x9f\x25\xa5\xb3\xf4\x1a\x3b\xfe\x99\x48\x6d\xfe\xaf\x36\xbc\x28\xe1\x55\xfa\x8f\x76\x12\x6f\x59\xb8\x34\x6b\xa8\x2d\x62\xf3\xa0\xe4\x9e\x45\xa8\xea\x16\xd5\xd3\xae\x5a\x48\x6c\xf9\x1f\x66\x92\x48\x91\xc3\xdc\xd6\x9d\xf6\xe6\xb5\xe4\x1c\xa9\x61\x52\x9c\xae\x16\x6d\x71\x41\x7a\xb7\xb7\x82\xe2\xdd\xd8\xaa\xb0\xcf\x7d\x6c\xee\xa2\xfe\x33\x9a\x70\x7c\x20\x47\x0b\x97\xbe\x90\x9c\x0f\x8a\xb1\xe7\xae\x73\xa3\xd7\xf0\xb5\xd3\x44\x8b\xad\x6f\x6d\xe1\xea\x09\x8d\x03\x4d\x3a\x74\xd1\xd7\xc0\x47\xef\x9f\x9b\x0e\xf8\x8c\x14\xd9\x1e\xd5\xe9\xea\xdb\x87\x26\x37\x9a\x6b\x23\x53\x6b\xe8\xef\xc6\x42\xc8\xf6\xb6\x4c\x53\xa6\x35\x93\xe2\x53\x2a\x73\x8b\x41\xfe\xb8\x65\xdf\xdb\xb6\xa2\x2d\x7d\xc7\xd2\x0f\xd5\xd6\xbc\x5c\x69\xa5\x66\x13\x8e\xc0\x66\x34\x49\x3b\x94\x65\xd3\x8a\x2c\x61\x45\xb3\x1c\xc9\xa9\x91\xbc\xea\x5d\x5e\xf4\x51\x37\xab\x52\xdf\x89\xba\xc7\x76\x76\xfb\x93\xa1\x6f\xb5\x9f\xb6\x48\x90\xf2\xa9\x7b\x66\x28\x27\xfa\xd7\xbb\xf4\x75\x16\x94\x4f\x3d\x67\x3a\xa9\xd0\x5e\xe9\xd2\x94\x89\x51\xfc\x6d\x6c\xcf\x27\x9d\xc8\x56\xd7\xca\x87\x18\x2e\x2f\x7c\xa9\x80\xc1\xb8\xb6\x60\x6d\x37\x93\xba\x4a\x0d\x17\xb8\xbb\xa8\x3f\xb0\xd1\xba\x75\xe5\xbb\xc7\x32\x9f\x45\x03\x29\x35\x66\x7a\x84\xda\x28\x79\x84\x06\xf0\x59\x32\xa1\x51\x99\xd9\x13\x1e\x43\xf5\xe0\xf2\xa2\xed\xa5\x16\x37\x5f\xf7\x2b\x92\xbe\x4a\xcd\x04\x33\xb3\x37\x1b\x08\xda\x9d\xaa\x1b\xb3\xc6\xcd\xbe\x26\x59\xf7\x78\xe9\x26\x9b\x22\xcf\xa7\xc0\xc6\xc0\xd2\xde\x71\xca\x6b\xd8\x9d\xa5\x1a\xe0\xf4\xaf\x0d\x52\xa3\x53\x50\xc5\xd0\x8e\xc8\x6e\xca\x8e\x20\xcd\x69\x02\x29\x31\x34\x71\x83\x30\x8b\xec\x04\x6c\x9f\xca\x0b\xf0\x88\xf6\x37\x4b\x33\x54\x5a\x0a\x62\x30\x7a\x71\x9a\xea\x22\x83\x1e\xd1\xba\x25\x4f\xc4\x06\x0e\x08\x44\xa1\xcf\x1f\x27\x56\x68\x83\xa4\x3a\x23\x05\x16\x53\x35\x81\x5c\xa3\xb2\x9c\xc4\x93\xe3\x55\x68\x99\x95\x48\x68\x39\xac\xa3\x08\xfb\xe5\x08\xde\xb5\x67\xeb\x1b\xf5\x63\xcd\xbf\xbc\x8c\x0b\x18\xc1\x05\x7e\x26\xb9\x1a\x46\x63\x45\x43\xba\xbf\xdd\xce\x8a\xd9\xa6\xcd\xeb\xfe\x76\x3b\x34\xd2\x8c\x62\xb0\x17\x07\xaa\x30\xdf\x03\x04\x56\x52\x3a\x8d\x5e\x03\xf2\x6f\xd0\x10\xc6\xdd\xcc\x3c\x70\x07\xfc\x89\x9f\x6a\x4c\xa8\xd8\x6b\xac\xf9\xc4\xb9\x3c\x60\x74\x5d\xb5\xa2\x12\xea\x14\x1f\x05\xce\xc4\x44\x3f\xdb\xd4\x31\xad\xcf\xb6\x3e\x21\xda\x8b\xff\x05\xa9\x4c\xd1\xc1\x78\x8c\xac\xdd\xbf\x48\xc9\x7f\xaa\x4d\x83\xba\xf4\x59\xb3\x5a\x55\xc5\x02\x0e\x8c\xf3\x52\x37\x5b\x65\xa6\x07\x25\xc5\x6e\x6a\x2b\xc5\xe0\x55\x2c\x89\x9b\x68\x20\x2b\x90\xd4\x1a\x3e\xb6\x02\xed\xb0\xd5\x69\x01\x03\xc0\xf6\x33\x52\x96\x31\x47\x79\x56\xb6\x04\x08\x79\x6e\x85\xf5\x56\x82\x1e\xc4\x1b\xf9\x5b\xe5\xe1\x6e\x6f\xc2\x3b\x6b\xb5\x6b\xfc\xde\x9c\xe5\x23\xe1\x44\x50\x84\xcd\xa6\xe4\xb0\x74\xb8\x51\x31\x8a\x0b\x48\x51\x6b\xb2\xc3\x35\x4c\x99\xa0\x52\x29\xa4\xa6\x74\x04\x10\x07\xca\xa6\xa3\xdc\x77\xe8\x50\xe7\x6c\xde\xe1\xdf\xc6\xa5\xa3\xa2\x8c\x35\x1c\xcc\x31\xc3\x69\x0f\xae\x8b\x0b\x36\x37\xc4\x10\xd8\x94\x34\x4b\xdb\x92\xf9\x1e\xbf\x30\x3c\xcc\xac\x84\xcb\xe1\x8f\xe5\xcb\xdb\x6d\xc5\xe1\x6a\x36\x9f\xbf\x03\xa2\xdf\xc1\x79\xe7\x1b\xda\xb0\xd8\x29\xb4\xb7\x9b\xb0\xe9\xff\xf2\xbb\x24\x94\x5a\xc7\xb9\x5b\x42\x76\xe8\x6f\x45\x27\x23\x8a\xb4\xba\x72\xdf\x79\xd6\xa1\x8d\x25\xe1\x03\x31\x49\x1b\xeb\xd8\x1f\x27\x7d\x19\x61\x26\x35\x33\x9e\xfc\xf2\xa2\xf4\x4b\x33\x5c\x27\x40\xae\xb1\x87\xc9\x79\xaa\x6b\xb2\xc7\xd9\xe5\x85\x67\xbd\x00\x23\x87\x35\x6d\xca\xed\x46\xd1\x62\x84\xcb\x8b\x22\x79\xcb\xde\x1c\xd4\x8e\x83\xef\xc1\xb3\xf2\xa1\xaa\x17\xae\xe9\xcf\xfb\x8a\xd1\xe5\x45\xe3\x9e\xb7\x11\x6a\x13\xf6\xbd\x15\x5c\x6d\x62\xfd\x41\x94\xd5\xfd\x78\x30\xf0\x61\xe0\x6d\x70\x4d\x29\xbd\x9d\x90\x99\xea\xcb\xae\x2a\xbe\x34\x41\xfa\x64\x3b\xca\x94\x89\x3d\xe1\x2c\xaa\xb6\x80\x56\xda\x4f\xc7\xa7\xb2\x1e\x26\xc1\xf4\x4f\x49\x36\x7d\x29\xf5\x4a\x38\xdc\x1a\x0b\x5e\xd3\xb9\xba\x4d\x0b\x3e\x7c\x80\x8c\x08\x46\x67\xd3\x98\x30\x8e\x11\x18\xe9\x51\x9e\x05\x16\x0d\xd4\x5d\x92\xb7\x8a\x69\xb3\xac\xfb\x33\xcd\xca\xfe\xbf\x9a\x74\x6a\xc5\x6b\x49\xf5\x5a\x97\xcc\x25\x20\x6c\x8a\x44\xec\x6e\x57\x51\xdc\x54\x01\x9d\xf4\xf6\x89\xee\x45\xaf\x61\x67\x70\xbb\xe1\xdd\x06\x04\xe3\x61\x97\xa0\x32\xe7\x11\x08\x69\x4a\xa7\xba\x6f\x23\xfd\xed\xa8\xec\x3c\xee\x88\xe5\x55\xb3\x0e\x59\xa6\xb9\x36\x8e\x63\x00\x18\x34\x49\xdd\x24\x43\x8a\x99\x46\x2a\xb6\x63\x82\xf0\x9e\x88\x0d\x0e\x87\xf5\x27\xc9\xfa\xda\xbf\xe1\x78\xbc\x86\x8f\xf5\x6b\x70\x39\xeb\xa2\xe9\x3f\x8a\x0c\x6b\xdb\x78\x9d\x87\x76\xbb\xc2\x1a\x16\x01\xe7\xe9\xde\x7f\x6b\xc2\x06\x56\xbe\x41\xac\x5a\xfa\x56\xdd\x67\x88\x4d\xfd\xaf\x4d\xcb\x25\x73\x6f\x6d\x26\x5e\xad\xd3\x7f\x03\x00\x00\xff\xff\x85\xa3\x86\x87\x77\x1f\x00\x00" +var _utilityTestMaliciousstorefrontv2Cdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x59\x5f\x6f\xdb\x38\x12\x7f\xf7\xa7\x98\xfa\xa1\xb0\x01\xc7\x06\x0e\x87\x7b\x30\xe2\xb4\xdd\x64\x73\x08\xee\x36\x08\xba\xde\xde\x43\x51\x2c\x18\x6a\x64\x11\xa1\x48\x81\xa4\xec\x1a\x81\xbf\xfb\x81\x14\x25\x51\x7f\xe3\x6c\xef\x9a\x3c\x24\x12\xc9\xf9\x3f\x9c\xf9\x8d\xc2\xd2\x4c\x2a\x03\xd3\xfb\xdb\xed\xef\x46\x2a\x8c\x95\x14\xe6\xcb\xdf\xa6\x93\x6a\x43\x8a\xdb\x5c\xec\xd8\x23\xc7\xad\x7c\x42\x51\xef\x9c\xb3\xfc\x1b\x1a\x12\x11\x43\xbe\x30\x3c\xe8\xe9\x64\xb2\x5a\xad\x60\x9b\x10\xf1\xa4\xc1\x48\xf8\x94\x6b\xc3\x04\xfc\x8b\x33\x81\x70\x01\x89\x31\x99\x5e\xaf\x56\xe6\xc0\x8c\x41\xb5\xa4\x32\x5d\x11\x77\xe4\xcf\x98\xcb\x83\x39\x3a\xf2\x58\x2a\x88\x98\xa6\x72\x8f\x8a\x89\x1d\x10\x11\x81\x42\x2b\xdb\xbe\x99\x04\x61\x9f\x73\x81\x8a\x3c\x32\xce\xcc\x11\x4c\x42\x0c\x98\x84\x69\xa0\x52\x18\x45\xa8\x01\x83\xda\x68\xcb\xcc\xeb\xc3\x34\x30\x0d\xc4\xad\x07\xa7\x2c\x21\x4b\x33\x8e\x29\x0a\x63\xf7\x53\xc2\x19\x65\x32\xd7\xa0\x2b\x5f\x39\x16\x46\x82\x51\x47\x20\x02\x34\x72\x6e\xff\xde\xdf\x6e\xe1\xc0\x4c\x02\x04\x22\x16\xc7\xa8\x50\x18\xb8\xbb\x01\x26\x9c\x8a\x19\x27\x14\x1d\xa9\x8c\x1b\x47\x38\xb3\xf6\xee\x02\xe5\x50\x61\xa0\x1d\x73\xac\xc3\x50\xfd\x69\xd7\x97\x34\xa2\xde\x52\x6b\x9b\xb7\x97\x68\x9c\x4c\x08\xa5\xa8\xf5\x8c\x70\x3e\xaf\x6d\xfb\xad\xb4\x24\xe4\x04\xcf\x13\x00\x80\x90\x80\xa3\x81\xfa\x88\x7d\x22\x3b\x7c\x20\x26\x59\x43\xf0\xf2\x02\xd9\x43\xfe\xc8\x19\x2d\xa8\xea\xe7\x49\x87\x4a\xa1\x96\xb9\xa2\x18\x90\xae\xdb\xd6\x2e\xdb\x6c\xbd\xd2\x01\x2f\x8d\x3c\x2e\x54\xa8\xa3\x74\x4d\xb2\x35\x5c\x93\xcc\x27\xc5\x25\xc9\x4d\x32\x6b\xb3\xbe\x56\x48\x0c\xfe\xbb\x88\xc0\xa2\x23\xf9\x33\xa6\x72\x5f\x6e\xcf\xe1\xfd\xb0\x66\x57\xc3\x2a\xf9\xf8\xea\x35\x7c\x7c\xfe\xe3\x4e\x98\x7f\xfc\x7d\x0d\x9e\xe5\x69\x32\x69\xd3\x39\xb7\xec\x19\x1e\x20\xce\x05\xec\xd0\xf8\xa3\x77\x37\x7a\x36\x5f\xc3\xd7\x82\xc3\xb7\xc0\x07\xf6\x47\xa1\xc9\x95\x4b\xc5\x78\xd9\x70\xc1\xf2\x51\x2a\x25\x0f\xb3\xf9\xbb\x65\x8b\x57\x45\x7f\xea\xd7\xc1\x8b\xbf\xc9\x33\xce\x68\xed\x24\x4b\x2b\x62\xb3\x3d\x66\xb8\x06\xfb\x7b\x01\x22\x36\x77\x37\x6b\x28\x34\x5b\x94\xf6\xd6\x4b\x3f\xac\xf6\xa8\x0e\xfe\xa1\x52\xc3\xfd\x69\x68\x51\x3d\xbe\x68\x73\xe5\xf7\x42\xbc\x17\x37\xf3\x0c\x3e\xfb\x64\x6d\x58\xf6\xfe\xb9\x9d\x14\x9e\xaa\xc8\xd5\xd3\x87\x7e\x93\xdf\x3b\x9b\xcb\xd4\xf8\xda\x91\xf0\xed\x9c\xf0\x50\x8e\x44\xe4\xd9\xaf\xdf\x33\xa6\x30\xf2\x72\xf5\x2c\x56\x32\xbd\x13\x11\x7e\xaf\x63\x62\x64\x63\x61\xfe\x17\xe2\xf0\xb2\xb0\xea\x31\x90\xe7\x1f\xc6\x3c\x5f\x56\xa8\x86\x4d\x23\x3e\xef\xd5\xfd\xec\xc8\xee\xd0\xfc\xfa\xbd\xe0\x7d\x66\x46\xff\x70\xfa\x8e\xc9\xeb\xcd\xde\xb3\xee\xa6\x77\xd4\x43\xae\x68\x42\x74\x10\x91\x57\x7a\xee\xac\xa8\x9f\x25\xa5\xb3\xf4\x1a\x3b\xfe\x99\x48\x6d\xfe\xaf\x36\xbc\x28\xe1\x55\xfa\x8f\x76\x12\x6f\x59\xb8\x34\x6b\xa8\x2d\x62\xf3\xa0\xe4\x9e\x45\xa8\xea\x16\xd5\xd3\xae\x5a\x48\x6c\xf9\x1f\x66\x92\x48\x91\xc3\xdc\xd6\x9d\xf6\xe6\xb5\xe4\x1c\xa9\x61\x52\x9c\xae\x16\x6d\x71\x41\x7a\xb7\xb7\x82\xe2\xdd\xd8\xaa\xb0\xcf\x7d\x6c\xee\xa2\xfe\x33\x9a\x70\x7c\x20\x47\x0b\x97\xbe\x90\x9c\x0f\x8a\xb1\xe7\xae\x73\xa3\xd7\xf0\xb5\xd3\x44\x8b\xad\x6f\x6d\xe1\xea\x09\x8d\x03\x4d\x3a\x74\xd1\xd7\xc0\x47\xef\x9f\x9b\x0e\xf8\x8c\x14\xd9\x1e\xd5\xe9\xea\xdb\x87\x26\x37\x9a\x6b\x23\x53\x6b\xe8\xef\xc6\x42\xc8\xf6\xb6\x4c\x53\xa6\x35\x93\xe2\x53\x2a\x73\x8b\x41\xfe\xb8\x65\xdf\xdb\xb6\xa2\x2d\x7d\xc7\xd2\x0f\xd5\xd6\xbc\x5c\x69\xa5\x66\x13\x8e\xc0\x66\x34\x49\x3b\x94\x65\xd3\x8a\x2c\x61\x45\xb3\x1c\xc9\xa9\x91\xbc\xea\x5d\x5e\xf4\x51\x37\xab\x52\xdf\x89\xba\xc7\x76\x76\xfb\x93\xa1\x6f\xb5\x9f\xb6\x48\x90\xf2\xa9\x7b\x66\x28\x27\xfa\xd7\xbb\xf4\x75\x16\x94\x4f\x3d\x67\x3a\xa9\xd0\x5e\xe9\xd2\x94\x89\x51\xfc\x6d\x6c\xcf\x27\x9d\xc8\x56\xd7\xca\x87\x18\x2e\x2f\x7c\xa9\x80\xc1\xb8\xb6\x60\x6d\x37\x93\xba\x4a\x0d\x17\xb8\xbb\xa8\x3f\xb0\xd1\xba\x75\xe5\xbb\xc7\x32\x9f\x45\x03\x29\x35\x66\x7a\x84\xda\x28\x79\x84\x06\xf0\x59\x32\xa1\x51\x99\xd9\x13\x1e\x43\xf5\xe0\xf2\xa2\xed\xa5\x16\x37\x5f\xf7\x2b\x92\xbe\x4a\xcd\x04\x33\xb3\x37\x1b\x08\xda\x9d\xaa\x1b\xb3\xc6\xcd\xbe\x26\x59\xf7\x78\xe9\x26\x9b\x22\xcf\xa7\xc0\xc6\xc0\xd2\xde\x71\xca\x6b\xd8\x9d\xa5\x1a\xe0\xf4\xaf\x0d\x52\xa3\x53\x50\xc5\xd0\x8e\xc8\x6e\xca\x8e\x20\xcd\x69\x02\x29\x31\x34\x71\x83\x30\x8b\xec\x04\x6c\x9f\xca\x0b\xf0\x88\xf6\x37\x4b\x33\x54\x5a\x0a\x62\x30\x7a\x71\x9a\xea\x22\x83\x1e\xd1\xba\x25\x4f\xc4\x06\x0e\x08\x44\xa1\xcf\x1f\x27\x56\x68\x83\xa4\x3a\x23\x05\x16\x53\x35\x81\x5c\xa3\xb2\x9c\xc4\x93\xe3\x55\x68\x99\x95\x48\x68\x39\xac\xa3\x08\xfb\xe5\x08\xde\xb5\x67\xeb\x1b\xf5\x63\xcd\xbf\xbc\x8c\x0b\x18\xc1\x05\x7e\x26\xb9\x1a\x46\x63\x45\x43\xba\xbf\xdd\xce\x8a\xd9\xa6\xcd\xeb\xfe\x76\x3b\x34\xd2\x8c\x62\xb0\x17\x07\xaa\x30\xdf\x03\x04\x56\x52\x3a\x8d\x5e\x03\xf2\x6f\xd0\x10\xc6\xdd\xcc\x3c\x70\x07\xfc\x89\x9f\x6a\x4c\xa8\xd8\x6b\xac\xf9\xc4\xb9\x3c\x60\x74\x5d\xb5\xa2\x12\xea\x14\x1f\x05\xce\xc4\x44\x3f\xdb\xd4\x31\xad\xcf\xb6\x3e\x21\xda\x8b\xff\x05\xa9\x4c\xd1\xc1\x78\x8c\xac\xdd\xbf\x48\xc9\x7f\xaa\x4d\x83\xba\x9c\x6d\x0d\xd3\xe1\x18\xf2\x26\x46\xb4\x55\xe8\xd3\x7d\xb5\xaa\x0a\x1d\x1c\x18\xe7\xa5\x4a\xb6\x42\x4e\x0f\x4a\x8a\xdd\xd4\x56\xb9\xc1\x32\x52\x12\x37\x91\x4c\x56\xa0\xc0\x35\x7c\x6c\x25\xa9\xc3\x85\xa7\x05\x0c\x80\xf2\xcf\x48\x59\xc6\x1c\xe5\x59\x99\x1e\xa0\xfb\xb9\x15\xd6\x5b\xc5\x7a\xd0\x7a\xe4\x2b\x82\x87\xea\xbd\x97\xd5\x59\xab\x1d\x68\xf1\xe6\x2c\x1f\x09\x27\x82\x22\x6c\x36\x25\x87\xa5\xc3\xbc\x8a\x51\x5c\x40\x8a\x5a\x93\x1d\xae\x61\xca\x04\x95\x4a\x21\x35\xa5\x23\x80\x38\x40\x39\x1d\xe5\xbe\x43\x87\x98\x67\xf3\x0e\xff\x36\xa6\x1e\x15\x65\xac\xe1\x60\x8e\x19\x4e\x7b\x30\x69\x5c\xb0\xb9\x21\x86\xc0\xa6\xa4\x59\x5a\x38\xc1\xf7\xf8\x85\xe1\x61\x66\x25\x5c\x0e\x7f\xe8\x5f\xde\x6e\x2b\x0e\x57\xb3\xf9\xfc\x1d\x10\xfd\x0e\xce\x3b\xdf\xd0\x86\xc5\x4e\xa1\xbd\xdd\x84\x4d\xff\x57\xeb\x25\xa1\xd4\x3a\xce\x5d\x0e\xb2\x43\x7f\x19\x3a\x19\x51\xa4\xd5\x95\xfb\x46\xb5\x0e\x6d\x2c\x09\x1f\x88\x49\xda\x38\xcd\xfe\x38\xe9\xcb\x08\x33\xa9\x99\xf1\xe4\x97\x17\xa5\x5f\x9a\xe1\x3a\x01\x72\x8d\x3d\x4c\xce\x53\x5d\x93\x3d\xce\x2e\x2f\x3c\xeb\x05\x18\x39\xac\x69\x53\x6e\x37\x8a\x16\xdf\x5c\x5e\x14\xc9\x5b\xe2\x8a\xa0\x64\x1c\x3c\x7e\x98\x95\x0f\x55\x99\x70\x80\x65\xde\x57\x83\x2e\x2f\x1a\xf7\xbc\x8d\xae\x9b\x90\xf5\xad\xa0\x76\x73\x4e\x19\x44\x88\xdd\x0f\x1f\x03\x1f\x35\xde\x06\x93\x95\xd2\xdb\x09\x99\xa9\xbe\xec\xaa\xe2\x4b\x13\xa4\x4f\xb6\x91\x4c\x99\xd8\x13\xce\xa2\x6a\x0b\x68\xa5\xfd\x74\x7c\xa2\xec\x61\x12\x7c\xb9\xa0\x24\x9b\xbe\x94\x7a\x25\x94\x6f\x8d\x34\xaf\x69\x58\xdd\x5e\x05\x1f\x3e\x40\x46\x04\xa3\xb3\x69\x4c\x18\xc7\x08\x8c\xf4\x08\xd5\x82\xa2\xc6\xc4\x50\x92\xb7\x8a\x69\xb3\xac\xfb\x33\xcd\xca\xfe\xbf\x9a\xd2\x6a\xc5\x6b\x49\xf5\x5a\x97\xcc\x25\x20\x6c\x8a\x44\xec\x6e\x57\x51\xdc\x54\x01\x9d\xf4\xf6\x89\xee\x45\xaf\x21\x73\x70\xbb\xe1\xdd\x06\x04\xe3\x61\x97\xa0\x32\xe7\x11\x08\x69\x4a\xa7\xba\xef\x3a\xfd\xed\xa8\xec\x3c\xee\x88\xe5\x55\xb3\x0e\x59\xa6\xb9\x36\x8e\x63\x00\x18\x34\x49\xdd\x14\x46\x8a\x79\x4c\x2a\xb6\x63\x82\xf0\x9e\x88\x0d\x0e\xb6\xf5\xe7\xd4\xfa\xda\xbf\xe1\x68\xbf\x86\x8f\xf5\x6b\x70\x39\xeb\xa2\xe9\x3f\xe8\x0c\x6b\xdb\x78\x9d\x87\x76\xbb\xc2\x1a\x16\x01\xe7\xe9\xde\x7f\xc9\xc2\x06\x56\xbe\x41\xac\x5a\xfa\x56\xdd\x67\x88\x4d\xfd\x6f\x59\xcb\x25\x73\x6f\x6d\x26\x5e\xad\xd3\x7f\x03\x00\x00\xff\xff\x5c\x3e\x0f\x91\x33\x20\x00\x00" func utilityTestMaliciousstorefrontv2CdcBytes() ([]byte, error) { return bindataRead( @@ -233,7 +233,7 @@ func utilityTestMaliciousstorefrontv2Cdc() (*asset, error) { } info := bindataFileInfo{name: "utility/test/MaliciousStorefrontV2.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7d, 0x79, 0x6, 0x14, 0x59, 0x50, 0x54, 0xd4, 0x82, 0x3d, 0xec, 0x26, 0x62, 0xf3, 0x19, 0xeb, 0x56, 0xbb, 0xc3, 0x35, 0xda, 0xd2, 0x4d, 0xb9, 0xde, 0xb7, 0x14, 0xb0, 0xea, 0xec, 0x7a, 0xee}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x10, 0x31, 0xeb, 0x52, 0xbe, 0x0, 0xba, 0xd3, 0xfd, 0x61, 0x83, 0xb5, 0x65, 0x93, 0xe2, 0x7b, 0x4b, 0xf6, 0xc8, 0xd2, 0xe3, 0x51, 0x35, 0x50, 0xe5, 0x9c, 0x81, 0xe1, 0x34, 0x55, 0xcd, 0x8}} return a, nil } diff --git a/scripts/get_existing_listing_ids.cdc b/scripts/get_existing_listing_ids.cdc new file mode 100644 index 0000000..657d603 --- /dev/null +++ b/scripts/get_existing_listing_ids.cdc @@ -0,0 +1,19 @@ +import "NFTStorefrontV2" + +/// Returns all listing resource IDs tracked in `listedNFTs` for the given NFT type and ID. +/// This reads directly from the `listedNFTs` index (via `getExistingListingIDs`), which is +/// distinct from `getListingIDs()` — a ghost entry left behind by the Bug 1 fix would show +/// up here even after the listing has been removed from `self.listings`. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +/// @param nftTypeIdentifier Fully-qualified type identifier of the NFT (e.g. "A.00…ExampleNFT.NFT"). +/// @param nftID Resource ID of the NFT. +access(all) fun main(storefrontAddress: Address, nftTypeIdentifier: String, nftID: UInt64): [UInt64] { + let nftType = CompositeType(nftTypeIdentifier) + ?? panic("Could not construct type from identifier: ".concat(nftTypeIdentifier)) + + return getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + )?.getExistingListingIDs(nftType: nftType, nftID: nftID) + ?? panic("Could not borrow public storefront from address") +} diff --git a/scripts/has_listing_become_ghosted.cdc b/scripts/has_listing_become_ghosted.cdc index a7bc829..8ce5477 100644 --- a/scripts/has_listing_become_ghosted.cdc +++ b/scripts/has_listing_become_ghosted.cdc @@ -1,5 +1,10 @@ import "NFTStorefrontV2" +/// DEPRECATED: This script calls `hasListingBecomeGhosted()`, whose return value is semantically +/// inverted — it returns `true` when the NFT is still present (NOT a ghost listing) and `false` +/// when the NFT is absent (IS a ghost listing). Use `is_ghost_listing.cdc` instead, which +/// calls `isGhostListing()` and returns `true` when the listing is ghosted. +/// /// This script tells whether the provided `listingID` under the provided `storefront` address /// has a ghost listing. access(all) fun main(storefrontAddress: Address, listingID: UInt64): Bool { diff --git a/scripts/is_ghost_listing.cdc b/scripts/is_ghost_listing.cdc new file mode 100644 index 0000000..adac361 --- /dev/null +++ b/scripts/is_ghost_listing.cdc @@ -0,0 +1,21 @@ +import "NFTStorefrontV2" + +/// Returns `true` if the listing with the given `listingID` under the given `storefrontAddress` +/// is a ghost listing — i.e. the underlying NFT is no longer present in the seller's collection +/// and the listing cannot be purchased. Returns `false` if the NFT is still available. +/// +/// This script uses `isGhostListing()`, which has correct semantics. Prefer this over the +/// deprecated `has_listing_become_ghosted.cdc`, whose underlying function returns an inverted value. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +/// @param listingID Resource ID of the listing to check. +access(all) fun main(storefrontAddress: Address, listingID: UInt64): Bool { + let storefrontPublicRef = getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + ) ?? panic("Given account does not have a storefront resource") + + let listingRef = storefrontPublicRef.borrowListing(listingResourceID: listingID) + ?? panic("Provided listingID doesn't exist under the given storefront address") + + return listingRef.isGhostListing() +} diff --git a/scripts/read_all_unique_ghost_listings.cdc b/scripts/read_all_unique_ghost_listings.cdc index bf1b5ce..b522608 100644 --- a/scripts/read_all_unique_ghost_listings.cdc +++ b/scripts/read_all_unique_ghost_listings.cdc @@ -1,5 +1,10 @@ import "NFTStorefrontV2" +/// DEPRECATED: This script works correctly but relies on `hasListingBecomeGhosted()`, which has +/// inverted return semantics (returns `true` when NOT ghosted, `false` when ghosted). The script +/// compensates internally with `!`, but callers should migrate to `read_all_unique_ghost_listings_v2.cdc`, +/// which uses `isGhostListing()` and has clearer semantics. +/// /// This script provides the array of listing resource Id which got ghosted It automatically skips the duplicate listing /// as duplicate listings would get automatically delete once the primary one. /// diff --git a/scripts/read_all_unique_ghost_listings_v2.cdc b/scripts/read_all_unique_ghost_listings_v2.cdc new file mode 100644 index 0000000..ecebeb9 --- /dev/null +++ b/scripts/read_all_unique_ghost_listings_v2.cdc @@ -0,0 +1,42 @@ +import "NFTStorefrontV2" + +/// Returns the listing resource IDs of all unique ghost listings under the given storefront. +/// A ghost listing is one where the underlying NFT is no longer present in the seller's collection. +/// Duplicate listings (those sharing the same NFT type and ID as another listing) are excluded, +/// since they are cleaned up automatically when the primary listing is removed. +/// +/// This script uses `isGhostListing()`, which has correct semantics. Prefer this over the +/// deprecated `read_all_unique_ghost_listings.cdc`. +/// +/// @param storefrontAddress Address of the account holding the storefront resource. +access(all) fun main(storefrontAddress: Address): [UInt64] { + + var duplicateListings: [UInt64] = [] + var ghostListings: [UInt64] = [] + + let storefrontPublicRef = getAccount(storefrontAddress).capabilities.borrow<&{NFTStorefrontV2.StorefrontPublic}>( + NFTStorefrontV2.StorefrontPublicPath + ) ?? panic("Given account does not have a storefront resource") + + let availableListingIds = storefrontPublicRef.getListingIDs() + + for id in availableListingIds { + if !duplicateListings.contains(id) { + let listingRef = storefrontPublicRef.borrowListing(listingResourceID: id)! + if listingRef.isGhostListing() { + ghostListings.append(id) + let listingDetails = listingRef.getDetails() + let dupListings = storefrontPublicRef.getDuplicateListingIDs( + nftType: listingDetails.nftType, + nftID: listingDetails.nftID, + listingID: id + ) + if dupListings.length > 0 { + duplicateListings.appendAll(dupListings) + } + } + } + } + + return ghostListings +} diff --git a/tests/NFTStorefrontV2_test.cdc b/tests/NFTStorefrontV2_test.cdc index f4544ad..896d1c3 100644 --- a/tests/NFTStorefrontV2_test.cdc +++ b/tests/NFTStorefrontV2_test.cdc @@ -259,6 +259,85 @@ fun testCleanupPurchasedListings() { Test.assertEqual((result.returnValue! as! [UInt64]).length, 0) } +access(all) +fun testCleanupGhostListingsRemovesListedNFTsEntry() { + // Regression test for Bug 1: cleanupGhostListings must remove the primary ghost + // listing's entry from listedNFTs, not just from self.listings. Without the fix, + // a dangling entry remains in listedNFTs after cleanup, which getExistingListingIDs + // would continue to return even though the listing no longer exists. + + mintNFTToSeller() + + var code = loadCode("get_ids.cdc", "scripts/example-nft") + var result = Test.executeScript(code, [seller.address, /public/exampleNFTCollection]) + Test.expect(result, Test.beSucceeded()) + let nftID = (result.returnValue! as! [UInt64])[0] + + // Create two listings for the same NFT (duplicate listings) + let sellCode = loadCode("sell_item.cdc", "transactions") + for _ in [1, 2] { + let tx = Test.Transaction( + code: sellCode, + authorizers: [seller.address], + signers: [seller], + arguments: [ + nftID, + 10.0, + "Custom", + 0.1, + UInt64(2025908543), + [], + nftTypeIdentifier, + ftTypeIdentifier + ], + ) + let txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + } + + let getListingIDCode = loadCode("read_storefront_ids.cdc", "scripts") + result = Test.executeScript(getListingIDCode, [seller.address]) + Test.expect(result, Test.beSucceeded()) + Test.assertEqual(2, (result.returnValue! as! [UInt64]).length) + let primaryListingID = (result.returnValue! as! [UInt64])[0] + + // Both listings should appear in listedNFTs + var existingIDs = scriptExecutor("get_existing_listing_ids.cdc", [seller.address, nftTypeIdentifier, nftID]) + Test.assertEqual(2, (existingIDs as! [UInt64]?)!.length) + + // Burn the NFT — both listings become ghost listings + let burnNFTCode = loadCode("burn_nft.cdc", "transactions/example-nft") + let burnTx = Test.Transaction( + code: burnNFTCode, + authorizers: [seller.address], + signers: [seller], + arguments: [nftID] + ) + let burnResult = Test.executeTransaction(burnTx) + Test.expect(burnResult, Test.beSucceeded()) + + // Clean up the primary ghost listing (the duplicate is cleaned up automatically) + let cleanupCode = loadCode("cleanup_ghost_listing.cdc", "transactions") + let cleanupTx = Test.Transaction( + code: cleanupCode, + authorizers: [buyer.address], + signers: [buyer], + arguments: [primaryListingID, seller.address] + ) + let cleanupResult = Test.executeTransaction(cleanupTx) + Test.expect(cleanupResult, Test.beSucceeded()) + + // Both listings must be gone from self.listings + result = Test.executeScript(getListingIDCode, [seller.address]) + Test.expect(result, Test.beSucceeded()) + Test.assertEqual(0, (result.returnValue! as! [UInt64]).length) + + // The listedNFTs entry must also be fully cleared — this is the bug under test. + // Before the fix, getExistingListingIDs would still return [primaryListingID] here. + existingIDs = scriptExecutor("get_existing_listing_ids.cdc", [seller.address, nftTypeIdentifier, nftID]) + Test.assertEqual(0, (existingIDs as! [UInt64]?)!.length) +} + access(all) fun testCleanupGhostListings() { // Mint a new NFT @@ -338,6 +417,82 @@ fun testCleanupGhostListings() { Test.assertEqual((result.returnValue! as! [UInt64]).length, 0) } +access(all) +fun testIsGhostListing() { + // Mint a new NFT + mintNFTToSeller() + + // Get the newly minted NFT's ID + var code = loadCode("get_ids.cdc", "scripts/example-nft") + var result = Test.executeScript(code, [seller.address, /public/exampleNFTCollection]) + Test.expect(result, Test.beSucceeded()) + let nftID = (result.returnValue! as! [UInt64])[0] + + // Create a listing for the NFT + code = loadCode("sell_item.cdc", "transactions") + var tx = Test.Transaction( + code: code, + authorizers: [seller.address], + signers: [seller], + arguments: [ + nftID, + 10.0, + "Custom", + 0.1, + UInt64(2025908543), + [], + nftTypeIdentifier, + ftTypeIdentifier + ], + ) + var txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + + let getListingIDCode = loadCode("read_storefront_ids.cdc", "scripts") + result = Test.executeScript(getListingIDCode, [seller.address]) + Test.expect(result, Test.beSucceeded()) + let listingID = (result.returnValue! as! [UInt64])[0] + + // Before burning: isGhostListing() should return false (NFT is still present) + var isGhost = scriptExecutor("is_ghost_listing.cdc", [seller.address, listingID]) + Test.assertEqual(isGhost!, false) + + // read_all_unique_ghost_listings_v2 should return an empty array + var allGhostListingIDs = scriptExecutor("read_all_unique_ghost_listings_v2.cdc", [seller.address]) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)!.length, 0) + + // Burn the NFT to ghost the listing + let burnNFTCode = loadCode("burn_nft.cdc", "transactions/example-nft") + tx = Test.Transaction( + code: burnNFTCode, + authorizers: [seller.address], + signers: [seller], + arguments: [nftID] + ) + txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) + + // After burning: isGhostListing() should return true + isGhost = scriptExecutor("is_ghost_listing.cdc", [seller.address, listingID]) + Test.assertEqual(isGhost!, true) + + // read_all_unique_ghost_listings_v2 should now return the ghosted listing ID + allGhostListingIDs = scriptExecutor("read_all_unique_ghost_listings_v2.cdc", [seller.address]) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)!.length, 1) + Test.assertEqual((allGhostListingIDs as! [UInt64]?)![0], listingID) + + // Clean up + let cleanupCode = loadCode("cleanup_ghost_listing.cdc", "transactions") + tx = Test.Transaction( + code: cleanupCode, + authorizers: [buyer.address], + signers: [buyer], + arguments: [listingID, seller.address] + ) + txResult = Test.executeTransaction(tx) + Test.expect(txResult, Test.beSucceeded()) +} + access(all) fun testSellItemWithMarketplaceCut() { @@ -512,9 +667,9 @@ fun testRemoveItem() { // Test that the proper events were emitted var typ = Type() var events = Test.eventsOfType(typ) - Test.assertEqual(5, events.length) + Test.assertEqual(8, events.length) - let completedEvent = events[4] as! NFTStorefrontV2.ListingCompleted + let completedEvent = events[7] as! NFTStorefrontV2.ListingCompleted Test.assertEqual(listingID, completedEvent.listingResourceID) Test.assertEqual(false, completedEvent.purchased) Test.assertEqual(Type<@ExampleNFT.NFT>(), completedEvent.nftType)