diff --git a/contracts/ExampleNFT.cdc b/contracts/ExampleNFT.cdc index 5f2b9b3..def5010 100644 --- a/contracts/ExampleNFT.cdc +++ b/contracts/ExampleNFT.cdc @@ -72,7 +72,8 @@ access(all) contract ExampleNFT: NonFungibleToken { Type(), Type(), Type(), - Type() + Type(), + Type() ] } @@ -123,6 +124,30 @@ access(all) contract ExampleNFT: NonFungibleToken { traitsView.addTrait(fooTrait) return traitsView + case Type(): + // Implementing this view gives the project control over how the bridged NFT is represented as an + // ERC721 when bridged to EVM on Flow via the public infrastructure bridge. + + // Get the contract-level name and symbol values + let contractLevel = ExampleNFT.resolveContractView( + resourceType: nil, + viewType: Type() + ) as! MetadataViews.EVMBridgedMetadata? + ?? panic("Could not resolve contract-level EVMBridgedMetadata") + // Compose the token-level URI based on a base URI and the token ID, pointing to a JSON file. This + // would be a file you've uploaded and are hosting somewhere - in this case HTTP, but this could be + // IPFS, S3, a data URL containing the JSON directly, etc. + let baseURI = "https://example-nft.onflow.org/token-metadata/" + let uriValue = self.id.toString().concat(".json") + + return MetadataViews.EVMBridgedMetadata( + name: contractLevel.name, + symbol: contractLevel.symbol, + uri: MetadataViews.URI( + baseURI: baseURI, // defining baseURI results in a concatenation of baseURI and value + value: self.id.toString().concat(".json") + ) + ) } return nil } @@ -225,7 +250,8 @@ access(all) contract ExampleNFT: NonFungibleToken { access(all) view fun getContractViews(resourceType: Type?): [Type] { return [ Type(), - Type() + Type(), + Type() ] } @@ -264,6 +290,20 @@ access(all) contract ExampleNFT: NonFungibleToken { "twitter": MetadataViews.ExternalURL("https://twitter.com/flow_blockchain") } ) + case Type(): + // Implementing this view gives the project control over how the bridged NFT is represented as an ERC721 + // when bridged to EVM on Flow via the public infrastructure bridge. + + // Compose the contract-level URI. In this case, the contract metadata is located on some HTTP host, + // but it could be IPFS, S3, a data URL containing the JSON directly, etc. + return MetadataViews.EVMBridgedMetadata( + name: "ExampleNFT", + symbol: "XMPL", + uri: MetadataViews.URI( + baseURI: nil, // setting baseURI as nil sets the given value as the uri field value + value: "https://example-nft.onflow.org/contract-metadata.json" + ) + ) } return nil } @@ -303,6 +343,17 @@ access(all) contract ExampleNFT: NonFungibleToken { } } + /// @return An array of Types defining the implemented views. This value will be used by + /// developers to know which parameter to pass to the resolveView() method. + /// + access(all) view fun getViews(): [Type] { + return [ + Type(), + Type(), + Type() + ] + } + init() { // Set the named paths diff --git a/contracts/MetadataViews.cdc b/contracts/MetadataViews.cdc index c492ec2..29ce6db 100644 --- a/contracts/MetadataViews.cdc +++ b/contracts/MetadataViews.cdc @@ -767,4 +767,13 @@ access(all) contract MetadataViews { } } + access(all) fun getEVMBridgedMetadata(_ viewResolver: &{ViewResolver.Resolver}) : EVMBridgedMetadata? { + if let view = viewResolver.resolveView(Type()) { + if let v = view as? EVMBridgedMetadata { + return v + } + } + return nil + } + } diff --git a/docs/MetdataViews/MetadataViews.md b/docs/MetdataViews/MetadataViews.md new file mode 100644 index 0000000..0fd7629 --- /dev/null +++ b/docs/MetdataViews/MetadataViews.md @@ -0,0 +1,646 @@ +# Contract `MetadataViews` + +```cadence +pub contract MetadataViews { +} +``` + +This contract implements the metadata standard proposed +in FLIP-0636. + +Ref: https://github.com/onflow/flips/blob/main/application/20210916-nft-metadata.md + +Structs and resources can implement one or more +metadata types, called views. Each view type represents +a different kind of metadata, such as a creator biography +or a JPEG image file. +## Interfaces + +### `Resolver` + +```cadence +pub resource interface Resolver { +} +``` +Provides access to a set of metadata views. A struct or +resource (e.g. an NFT) can implement this interface to provide access to +the views that it supports. + +[More...](MetadataViews_Resolver.md) + +--- + +### `ResolverCollection` + +```cadence +pub resource interface ResolverCollection { +} +``` +A group of view resolvers indexed by ID. + +[More...](MetadataViews_ResolverCollection.md) + +--- + +### `File` + +```cadence +pub struct interface File { +} +``` +Generic interface that represents a file stored on or off chain. Files +can be used to references images, videos and other media. + +[More...](MetadataViews_File.md) + +--- +## Structs & Resources + +### `NFTView` + +```cadence +pub struct NFTView { + + pub let id: UInt64 + + pub let uuid: UInt64 + + pub let display: Display? + + pub let externalURL: ExternalURL? + + pub let collectionData: NFTCollectionData? + + pub let collectionDisplay: NFTCollectionDisplay? + + pub let royalties: Royalties? + + pub let traits: Traits? +} +``` +NFTView wraps all Core views along `id` and `uuid` fields, and is used +to give a complete picture of an NFT. Most NFTs should implement this +view. + +[More...](MetadataViews_NFTView.md) + +--- + +### `Display` + +```cadence +pub struct Display { + + pub let name: String + + pub let description: String + + pub let thumbnail: AnyStruct{File} +} +``` +Display is a basic view that includes the name, description and +thumbnail for an object. Most objects should implement this view. + +[More...](MetadataViews_Display.md) + +--- + +### `HTTPFile` + +```cadence +pub struct HTTPFile { + + pub let url: String +} +``` +View to expose a file that is accessible at an HTTP (or HTTPS) URL. + +[More...](MetadataViews_HTTPFile.md) + +--- + +### `IPFSFile` + +```cadence +pub struct IPFSFile { + + pub let cid: String + + pub let path: String? +} +``` +View to expose a file stored on IPFS. +IPFS images are referenced by their content identifier (CID) +rather than a direct URI. A client application can use this CID +to find and load the image via an IPFS gateway. + +[More...](MetadataViews_IPFSFile.md) + +--- + +### `URI` + +```cadence +pub struct URI { + + pub let baseURI: String? + + access(self) let value: String +} +``` +View to represent a generic URI. May be used to represent the URI of +the NFT where the type of URI is not able to be determined (i.e. HTTP, +IPFS, etc.). + +[More...](MetadataViews_URI.md) + +--- + +### `Edition` + +```cadence +pub struct Edition { + + pub let name: String? + + pub let number: UInt64 + + pub let max: UInt64? +} +``` +Optional view for collections that issue multiple objects +with the same or similar metadata, for example an X of 100 set. This +information is useful for wallets and marketplaces. +An NFT might be part of multiple editions, which is why the edition +information is returned as an arbitrary sized array + +[More...](MetadataViews_Edition.md) + +--- + +### `Editions` + +```cadence +pub struct Editions { + + pub let infoList: [Edition] +} +``` +Wrapper view for multiple Edition views + +[More...](MetadataViews_Editions.md) + +--- + +### `Serial` + +```cadence +pub struct Serial { + + pub let number: UInt64 +} +``` +View representing a project-defined serial number for a specific NFT +Projects have different definitions for what a serial number should be +Some may use the NFTs regular ID and some may use a different +classification system. The serial number is expected to be unique among +other NFTs within that project + +[More...](MetadataViews_Serial.md) + +--- + +### `Royalty` + +```cadence +pub struct Royalty { + + pub let receiver: Capability<&AnyResource{FungibleToken.Receiver}> + + pub let cut: UFix64 + + pub let description: String +} +``` +View that defines the composable royalty standard that gives marketplaces a +unified interface to support NFT royalties. + +[More...](MetadataViews_Royalty.md) + +--- + +### `Royalties` + +```cadence +pub struct Royalties { + + priv let cutInfos: [Royalty] +} +``` +Wrapper view for multiple Royalty views. +Marketplaces can query this `Royalties` struct from NFTs +and are expected to pay royalties based on these specifications. + +[More...](MetadataViews_Royalties.md) + +--- + +### `Media` + +```cadence +pub struct Media { + + pub let file: AnyStruct{File} + + pub let mediaType: String +} +``` +View to represent, a file with an correspoiding mediaType. + +[More...](MetadataViews_Media.md) + +--- + +### `Medias` + +```cadence +pub struct Medias { + + pub let items: [Media] +} +``` +Wrapper view for multiple media views + +[More...](MetadataViews_Medias.md) + +--- + +### `License` + +```cadence +pub struct License { + + pub let spdxIdentifier: String +} +``` +View to represent a license according to https://spdx.org/licenses/ +This view can be used if the content of an NFT is licensed. + +[More...](MetadataViews_License.md) + +--- + +### `ExternalURL` + +```cadence +pub struct ExternalURL { + + pub let url: String +} +``` +View to expose a URL to this item on an external site. +This can be used by applications like .find and Blocto to direct users +to the original link for an NFT. + +[More...](MetadataViews_ExternalURL.md) + +--- + +### `NFTCollectionData` + +```cadence +pub struct NFTCollectionData { + + pub let storagePath: StoragePath + + pub let publicPath: PublicPath + + pub let providerPath: PrivatePath + + pub let publicCollection: Type + + pub let publicLinkedType: Type + + pub let providerLinkedType: Type + + pub let createEmptyCollection: ((): @NonFungibleToken.Collection) +} +``` +View to expose the information needed store and retrieve an NFT. +This can be used by applications to setup a NFT collection with proper +storage and public capabilities. + +[More...](MetadataViews_NFTCollectionData.md) + +--- + +### `NFTCollectionDisplay` + +```cadence +pub struct NFTCollectionDisplay { + + pub let name: String + + pub let description: String + + pub let externalURL: ExternalURL + + pub let squareImage: Media + + pub let bannerImage: Media + + pub let socials: {String: ExternalURL} +} +``` +View to expose the information needed to showcase this NFT's +collection. This can be used by applications to give an overview and +graphics of the NFT collection this NFT belongs to. + +[More...](MetadataViews_NFTCollectionDisplay.md) + +--- + +### `Rarity` + +```cadence +pub struct Rarity { + + pub let score: UFix64? + + pub let max: UFix64? + + pub let description: String? +} +``` +View to expose rarity information for a single rarity +Note that a rarity needs to have either score or description but it can +have both + +[More...](MetadataViews_Rarity.md) + +--- + +### `Trait` + +```cadence +pub struct Trait { + + pub let name: String + + pub let value: AnyStruct + + pub let displayType: String? + + pub let rarity: Rarity? +} +``` +View to represent a single field of metadata on an NFT. +This is used to get traits of individual key/value pairs along with some +contextualized data about the trait + +[More...](MetadataViews_Trait.md) + +--- + +### `Traits` + +```cadence +pub struct Traits { + + pub let traits: [Trait] +} +``` +Wrapper view to return all the traits on an NFT. +This is used to return traits as individual key/value pairs along with +some contextualized data about each trait. + +[More...](MetadataViews_Traits.md) + +--- + +### `EVMBridgedMetadata` + +```cadence +pub struct EVMBridgedMetadata { + + pub let name: String + + pub let symbol: String + + pub let uri: {File} +} +``` +This view may be used by Cadence-native projects to define their +contract- and token-level metadata according to EVM-compatible +formats. Several ERC standards (e.g. ERC20, ERC721, etc.) expose name +and symbol values to define assets as well as contract- & token-level +metadata view `tokenURI(uint256)` and `contractURI()` methods. This +view enables Cadence projects to define in their own contracts how +they would like their metadata to be defined when bridged to EVM. + +[More...](MetadataViews_EVMBridgedMetadata.md) + +--- +## Functions + +### `getNFTView()` + +```cadence +fun getNFTView(id: UInt64, viewResolver: &{Resolver}): NFTView +``` +Helper to get an NFT view + +Parameters: + - id : _The NFT id_ + - viewResolver : _A reference to the resolver resource_ + +Returns: A NFTView struct + +--- + +### `getDisplay()` + +```cadence +fun getDisplay(_: &{Resolver}): Display? +``` +Helper to get Display in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: An optional Display struct + +--- + +### `getEditions()` + +```cadence +fun getEditions(_: &{Resolver}): Editions? +``` +Helper to get Editions in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: An optional Editions struct + +--- + +### `getSerial()` + +```cadence +fun getSerial(_: &{Resolver}): Serial? +``` +Helper to get Serial in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: An optional Serial struct + +--- + +### `getRoyalties()` + +```cadence +fun getRoyalties(_: &{Resolver}): Royalties? +``` +Helper to get Royalties in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional Royalties struct + +--- + +### `getRoyaltyReceiverPublicPath()` + +```cadence +fun getRoyaltyReceiverPublicPath(): PublicPath +``` +Get the path that should be used for receiving royalties +This is a path that will eventually be used for a generic switchboard receiver, +hence the name but will only be used for royalties for now. + +Returns: The PublicPath for the generic FT receiver + +--- + +### `getMedias()` + +```cadence +fun getMedias(_: &{Resolver}): Medias? +``` +Helper to get Medias in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional Medias struct + +--- + +### `getLicense()` + +```cadence +fun getLicense(_: &{Resolver}): License? +``` +Helper to get License in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional License struct + +--- + +### `getExternalURL()` + +```cadence +fun getExternalURL(_: &{Resolver}): ExternalURL? +``` +Helper to get ExternalURL in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional ExternalURL struct + +--- + +### `getNFTCollectionData()` + +```cadence +fun getNFTCollectionData(_: &{Resolver}): NFTCollectionData? +``` +Helper to get NFTCollectionData in a way that will return an typed Optional + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional NFTCollectionData struct + +--- + +### `getNFTCollectionDisplay()` + +```cadence +fun getNFTCollectionDisplay(_: &{Resolver}): NFTCollectionDisplay? +``` +Helper to get NFTCollectionDisplay in a way that will return a typed +Optional + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional NFTCollection struct + +--- + +### `getRarity()` + +```cadence +fun getRarity(_: &{Resolver}): Rarity? +``` +Helper to get Rarity view in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional Rarity struct + +--- + +### `getTraits()` + +```cadence +fun getTraits(_: &{Resolver}): Traits? +``` +Helper to get Traits view in a typesafe way + +Parameters: + - viewResolver : _A reference to the resolver resource_ + +Returns: A optional Traits struct + +--- + +### `dictToTraits()` + +```cadence +fun dictToTraits(dict: {String: AnyStruct}, excludedNames: [String]?): Traits +``` +Helper function to easily convert a dictionary to traits. For NFT +collections that do not need either of the optional values of a Trait, +this method should suffice to give them an array of valid traits. + +keys that are not wanted to become `Traits` + +Parameters: + - dict : _The dictionary to be converted to Traits_ + - excludedNames : _An optional String array specifying the `dict`_ + +Returns: The generated Traits view + +--- diff --git a/docs/MetdataViews/MetadataViews_EVMBridgedMetadata.md b/docs/MetdataViews/MetadataViews_EVMBridgedMetadata.md new file mode 100644 index 0000000..693c116 --- /dev/null +++ b/docs/MetdataViews/MetadataViews_EVMBridgedMetadata.md @@ -0,0 +1,28 @@ +# Struct `EVMBridgedMetadata` + +```cadence +pub struct EVMBridgedMetadata { + + pub let name: String + + pub let symbol: String + + pub let uri: {File} +} +``` + +This view may be used by Cadence-native projects to define contract- +and token-level metadata according to EVM-compatible formats. Several +ERC standards (e.g. ERC20, ERC721, etc.) expose name and symbol values +to define assets as well as contract- & token-level metadata view +`tokenURI(uint256)` and `contractURI()` methods. This view enables +Cadence projects to define in their own contracts how they would like +their metadata to be defined when bridged to EVM. + +### Initializer + +```cadence +init(name: String, symbol: String, uri: {File}) +``` + +--- diff --git a/docs/MetdataViews/MetadataViews_URI.md b/docs/MetdataViews/MetadataViews_URI.md new file mode 100644 index 0000000..d4a4476 --- /dev/null +++ b/docs/MetdataViews/MetadataViews_URI.md @@ -0,0 +1,40 @@ +# Struct `URI` + +```cadence +pub struct URI { + + pub let baseURI: String? + + access(self) let value: String +} +``` + +View to represent a generic URI. May be used to represent the URI of +the NFT where the type of URI is not able to be determined (i.e. HTTP, +IPFS, etc.) + +Implemented Interfaces: + - `File` + + +### Initializer + +```cadence +init(baseURI: String?, value: String?) +``` + + +## Functions + +### `uri()` + +```cadence +view fun uri(): String +``` +This function returns the uri for this file. If the `baseURI` is set, +this will be a concatenation of the `baseURI` and the `value`. If the +`baseURI` is not set, this will return the `value`. + +Returns: The string containing the file uri + +--- diff --git a/flow.json b/flow.json index 3e5f78f..136458b 100644 --- a/flow.json +++ b/flow.json @@ -18,6 +18,7 @@ "MetadataViews": { "source": "./contracts/MetadataViews.cdc", "aliases": { + "emulator": "0xf8d6e0586b0a20c7", "testing": "0x0000000000000007" } }, diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 06b3339..1493cdd 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,7 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: -// ExampleNFT.cdc (13.981kB) -// MetadataViews.cdc (28.094kB) +// ExampleNFT.cdc (17.024kB) +// MetadataViews.cdc (28.407kB) // NonFungibleToken.cdc (10.967kB) // ViewResolver.cdc (2.71kB) @@ -73,7 +73,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xd4\x5b\xdf\x73\x1b\xb7\x8f\x7f\xf7\x5f\x81\xea\xa1\x23\xf5\x1c\x39\xe9\xb7\xcd\xb5\x9a\xa8\x69\x6b\xd7\x3d\xcf\xa4\xbe\x4e\xa2\xb6\x0f\x19\x4f\x4a\xed\x62\x2d\x9e\x77\xc9\x2d\xc9\x95\xac\xc9\xf8\x7f\xbf\x01\xb8\xbf\xb8\x3f\x64\x39\x99\xbb\xb9\xf3\x43\x22\xed\x02\x20\xf0\x21\x08\x82\x00\x75\xf6\xd5\xc9\x57\x27\x5f\x01\xac\x36\xd2\x82\xb4\x20\x14\xe0\xbd\xc8\xf2\x14\x41\xd2\xbf\x19\x2a\x27\x9c\xd4\x0a\x74\x02\x02\x2e\x53\xbd\x83\x6b\xad\x9e\x5d\x16\xea\x56\xae\x53\x84\x95\xbe\x43\x45\x12\x0a\x2b\xd5\x2d\xb8\x0d\xc2\x9f\x5f\x83\x75\x42\xc5\xc2\xc4\x73\x7a\x73\xe5\x48\xb2\xd2\x0e\x72\x61\x1c\x09\x22\x2a\x9d\x24\x32\x92\x22\xad\x69\x61\x5d\x38\x90\x0e\x84\xb5\x45\x86\x31\x38\x0d\x6b\x24\x7e\x2b\x33\x99\x0a\x43\x0f\x36\x7a\x07\x99\x50\x7b\xb8\xbe\x5c\x59\xd8\xe9\x22\x8d\x1b\x3d\x59\x6c\xa4\x0d\x42\x52\xa8\x88\x94\x16\xa9\x74\xfb\x79\xcb\xc2\x48\x2b\x67\x44\xe4\x20\xd6\xe8\x55\x6a\xb8\x49\xac\xd5\xf9\x46\x5a\x27\x23\xe1\x30\x86\x28\x15\xd6\xca\x84\xbe\x49\xcd\x46\xda\xbd\x75\x98\x41\xa2\x0d\x48\x67\x59\x8b\x39\xd9\x17\x63\x22\x15\x5a\x10\xa4\x2c\x81\x77\x7d\xb9\x82\x9d\x74\x1b\xc8\xa4\x92\x99\x48\x21\x43\x27\x62\xe1\x04\x6b\x73\x76\x72\x22\xb3\x5c\x1b\x07\x93\x6b\xad\x2a\x2c\x19\xca\x49\xfd\xe6\x4f\x89\xbb\xb7\x68\x75\xba\x45\xd3\x3c\xfd\xad\x94\x43\x6f\xed\xe4\xe4\x44\x44\x11\x5a\x3b\x15\x69\x3a\x6b\xac\xfb\xc5\x4f\xe1\xf5\xe5\x6a\x01\xdd\x01\xe0\xe3\xc9\x09\x00\xc0\xd9\xd9\x19\xbc\xab\xa0\xff\x5d\xb8\x8d\xe5\xc7\x6d\x79\x29\x3a\x38\xd7\x69\x8a\x0c\xe6\x3b\xa7\x8d\xb8\x45\x22\x5d\x40\xeb\xcb\x23\x6c\xbf\x17\xeb\x54\x46\x9e\xab\xf9\xdc\xe8\x40\xdf\x60\xb7\x41\x83\x3c\x7f\x99\x54\x0e\x0d\xd8\x0d\xcf\xed\x1a\xc1\x3a\x6d\x30\xae\xc9\x57\x1b\x6c\x3c\x26\x27\xb5\x79\x36\xfc\xd4\x57\x63\x82\x30\x15\x23\x48\xd5\x7d\x69\xd0\xea\xc2\x44\x08\x6e\x9f\xe3\xa0\xf6\xbf\xb1\x12\xa3\x06\xd7\xca\xfc\x85\x10\x6d\xb4\xb6\x5e\x75\x25\x32\x3f\xf1\x64\xcc\x29\xbb\xb3\x23\xa7\xa3\x61\x20\x12\x0a\x36\x62\x8b\xec\x66\x4c\xa9\xf4\xae\x16\xb4\xc6\x48\x14\xa5\x18\x1e\x3b\x11\x11\x36\x4e\x6a\xf0\x9f\x42\x1a\xa4\xd5\x41\x8b\x80\xc5\x80\xcd\x31\x22\xe7\xf4\xd2\x48\x6c\xa6\x4d\xdf\x9e\xda\xda\x41\x6f\x98\x93\xbe\xa5\x47\x0c\x21\x21\xe3\x05\xfc\x71\xa5\xdc\xcb\x6f\x1a\x1a\x52\xf8\xd2\xe8\x8c\xb5\xbd\x90\x36\x4f\xc5\xbe\xf6\x6f\xd8\x4a\xdc\x8d\x8a\x23\x55\x09\x4b\x23\xd5\xed\x28\x51\x8c\x36\x32\x32\xa7\xb9\x7a\x94\xd6\x6d\x8a\x6c\xad\x84\x4c\x6b\xca\x50\xcd\xd2\x35\xde\xea\xbd\x48\x9d\x44\x7b\x58\x4f\x8b\x69\xe2\xe5\x9a\x8a\x61\x01\xef\x83\x25\x37\xf7\xa2\xf6\x37\xe1\x40\xbf\xa2\x42\x23\x23\x88\xa5\x0f\x3c\x66\xcf\x71\xce\x08\x0a\x13\xa4\x01\xfb\x85\xb0\xe3\x23\x56\x8a\x2d\xe0\xa3\xb7\x64\x01\x3f\xa9\xfd\x3b\x67\x8a\xc8\x3d\x34\x83\x49\x25\xdd\xb4\xfe\x46\x7f\x6d\x4c\x4f\x83\x37\x03\x40\x86\x04\x3d\xf4\xc2\xd7\x8f\x83\x10\xd2\x1f\x34\xa1\x21\x9d\xc1\xc7\x80\x8d\x30\x98\xcb\x18\x96\xfe\x53\x51\xc8\xb8\xff\x9e\x9d\x7c\xc9\xc6\xf6\x5f\xb6\x0c\x85\x65\xdb\xec\x3e\x69\x6d\x32\x2c\x1b\xf3\xfb\x64\xb5\xe9\xb0\x6c\x60\xe8\x93\xd5\xde\xb4\xac\x8d\xaf\x89\x1e\x42\x0f\x89\x0c\x0a\x87\xbf\x64\xb9\xdb\x37\xc1\xb1\x7c\xea\xf7\x5d\x7a\xd5\x0a\x9c\x01\xb7\x50\x31\x18\x74\x85\x51\xb6\x8c\x02\x1c\xd4\x44\x9a\x52\xb0\xa4\x6f\x82\xf7\xbf\x3d\x07\x1a\xbd\x53\xbc\x37\x05\x22\x7e\xfc\xd8\x5b\xfc\xcd\x60\x0f\x83\x2b\x2c\x29\xd4\xb0\xde\xd3\xd9\xe2\x11\x79\x9d\x39\xf6\xba\xc3\xab\x67\xcd\xd6\x34\x1f\x96\xac\x12\xb7\xda\xe7\xb8\x00\xfa\xf7\xd5\x8f\x2d\xfa\xeb\xcb\xd5\x0f\xd3\xd9\x6c\x08\xe0\xb6\xd2\xb4\xb0\x59\xf3\x5b\x74\xec\xad\xa4\xec\x7b\x92\x76\x33\xac\xd4\xfb\xe0\x21\xfd\xf1\xd0\xa1\xc7\x97\x71\xee\x87\xe9\xec\xf4\x18\xf2\x3a\xe0\x1c\xcb\xf0\x4b\x2c\xc9\xfc\xe3\xe9\xef\x1d\x1a\x25\xd2\x3f\xde\xbe\x39\x96\xe5\xfa\x72\xd5\xe0\x7c\x21\x9c\xf8\x34\xc6\xa7\x01\xf1\x0e\x8d\x14\xe9\xb1\xd4\x2b\x0e\x98\x3f\x4c\x67\x01\xf1\xcd\x63\x53\x4e\xb3\x6d\x7c\xaa\x44\x72\xa6\x1f\xd8\x09\xbc\x0b\xcd\x5a\x41\xe8\x75\x37\xf2\xec\xa4\x8b\x36\xde\x63\x3e\xf6\xf4\x8b\x84\xc5\xc3\xae\xb0\xe8\xf1\x40\xe3\x56\x83\x4c\xd3\x41\x0e\xa8\xc3\x78\x1d\xeb\xfa\x70\x55\x7f\x41\x54\xef\x86\xbf\x71\xb6\x56\xac\x0f\x35\xfb\x8f\xd5\xea\xf7\x4b\x99\xe2\xb8\x6a\xf4\x57\x98\x74\xd1\x89\xa0\xa3\xf4\xb3\xc1\x37\xfd\xa7\x63\x00\xb7\xd6\xc2\x30\xc2\x3e\x0f\xa4\x84\x88\xf2\x23\xc8\xc4\x3d\xa8\x22\x5b\xa3\xa1\x4d\x97\x8f\x06\x1c\x0f\x29\x14\xae\xcb\x94\x32\x86\xc4\xa7\x2c\xad\x53\xc0\x98\x6c\xeb\xa3\x2b\x89\x45\xaf\x0a\x24\x12\xd3\x18\xb6\x22\x2d\x78\x50\x8b\x1c\x83\xd5\x08\x08\xb4\x9f\x97\x9c\x57\x2a\xd1\xb0\x84\x41\x03\xa7\x7e\xce\x27\x65\x8c\xe3\x1c\xa1\x7c\x35\x39\x2d\x2d\x5a\x54\xdb\xe3\x29\xe9\xb3\xa0\x21\x87\xe1\x6d\x8d\xf9\x46\x5a\xd7\xdb\xb2\x4b\xc1\x37\xb0\x84\xf7\x2d\xdd\x6e\x8e\x77\xe1\x6a\x5a\xc6\x1d\xa5\x35\xfe\x67\xba\x40\x1d\x36\x9e\xb0\xc4\x3c\xcf\xb8\x76\x25\x90\x9f\xa9\x59\x3b\xb2\x3f\x41\xb9\x9a\xed\x11\xfd\x86\x93\x8d\xa7\xab\x19\xee\x0f\x4f\x50\xb4\xc5\x38\x9d\x6c\x9c\xcb\xed\xe2\xec\xac\xac\x09\x3c\x53\x89\x9b\x6b\x95\xa4\x7a\x37\xd7\xe6\xf6\x6c\x32\x8f\xb4\x8a\x84\x9b\x96\xd0\xce\x9d\xf6\x89\xdf\x74\x36\x3b\x5e\xd5\xa1\x7d\xe9\xa0\xc2\xad\x9c\xa0\x8c\xfa\xe7\xe5\x8a\xe6\xe8\x5f\x9d\x78\x0e\xa6\x11\xa7\x1c\xf5\x5b\x24\x8f\xeb\xf4\xa9\x16\x1d\xb7\x5d\xfc\xaf\x1b\x55\xab\x75\xbc\x5d\xf5\xf6\x3c\x1a\x96\xf1\x3e\x4a\x8b\xb8\x8a\xb9\x2b\xc9\x27\xd3\x18\x12\xad\x29\x5e\xda\x8d\xde\x81\x76\x1b\x34\x50\x58\xb4\x14\xad\xbd\xc8\xf1\x88\xe6\xe5\xc5\x9e\x8c\x62\xd7\xa4\x11\x3d\x39\x85\x49\xa2\xf5\x64\x38\x86\xf1\xf1\x90\xd9\x48\xf9\x5e\x0c\xa6\x93\xda\x4a\x7b\xb9\x53\xfa\xb2\x08\x53\xfa\xd3\x7a\xec\x6b\x91\xd1\x11\x28\x54\x65\x76\x32\x06\x41\xcb\x74\x69\x41\x40\xa1\xe4\x3d\x38\x99\xa1\x75\x22\xcb\x4f\x61\x87\x55\x75\x23\x13\xe6\x8e\xb2\x79\x2e\x14\x09\x88\xfd\x8c\x10\xee\xb4\x05\xe5\xa9\x70\x89\x36\x99\x85\x3b\xa5\x77\x5c\xfa\xaa\x20\x94\x6e\x3e\x6a\x72\x33\x3c\x2b\xda\xb3\x9b\x9f\x56\x3b\x4f\x80\x25\xef\x6e\x1d\x14\x02\xb8\x6f\xbe\x38\x6d\x2b\xb9\x80\xc9\x85\x70\xc4\x69\x84\x91\x6e\x7f\x60\x73\x6a\xe6\x61\x2e\x62\x8f\xe0\xb4\xa3\xe8\x38\xa0\xe4\x3c\x8c\x24\x4b\xf1\x68\x91\x33\xd0\x29\xc7\x8f\x3c\x0a\x46\xa2\xfd\x0c\xbf\x65\xb2\x1e\x16\xfe\xf1\xd4\x46\xda\xe0\x02\x5e\x3c\x9f\x3f\x2f\x77\xd9\x17\xcf\xf9\x73\x90\x6a\x4d\xce\x75\x96\x69\x35\x19\xdf\x7e\xab\xd1\x0e\x63\x4e\x1e\x3b\x06\x36\x7b\x73\x07\x64\x25\xd3\x06\xe1\xd0\xa0\xe3\xc1\xae\xf8\x46\x50\x2e\x63\x50\xc3\x19\x50\x3d\x0c\x9d\x9a\xda\xb9\x8f\x27\x78\xa8\x0a\x63\x70\x81\xb9\x41\xae\xa1\x2e\xe0\x3f\x55\xba\xe7\x8a\x18\xd7\xe9\xd6\x22\xba\xdb\x09\x13\x43\xa4\xb3\x5c\x38\xb9\x96\xbe\x44\x0b\x63\x55\xab\xa6\x1a\xd6\x44\xbb\x6e\x71\x11\x3e\x96\x43\x0f\x4a\x68\xa8\x07\xca\x5f\xcd\xcb\xd3\x83\x03\x04\x27\xe9\xb0\xc8\x43\x59\x5b\xa4\x15\x2d\x55\xae\x80\x93\xdc\xf0\xe4\x4d\x14\xec\xc0\x41\xe5\xb1\x5c\xf6\x0a\xfe\xf6\x05\xb6\xbf\xe1\xea\xc2\xe7\x99\xc3\xc7\x5a\x61\xc8\xe3\x31\xa6\xfc\x96\x4e\xdf\x9e\x6b\x01\xfd\x63\xf8\xf5\xe5\xea\xa1\x53\x32\x82\xe9\x60\xd5\xa5\x16\x08\xaf\x9e\x11\x8a\xcd\x84\x06\x06\xdc\xa2\x7b\x57\xe4\xb9\x36\x8e\xa9\xc9\x2f\x6d\x5d\x8e\x10\x90\x4a\xeb\x2a\x24\x1c\xbf\x2b\xcb\x11\x92\xa8\x22\x94\x5b\x34\x6c\x4b\xee\x7a\x05\xb0\xde\x91\xbd\x37\x10\x1d\xdf\x3f\xfa\xa5\xf0\xb3\xd6\x69\xb7\xb2\x40\x0b\xcf\x56\x3c\xcc\xd0\x21\x5f\xb6\x0d\x63\xcb\x03\xea\xf7\x23\x7b\x29\x25\xca\xce\x14\x38\xe4\xfb\xa1\x84\x31\xd4\xde\x96\x00\xed\x36\xc8\x5b\x9e\x36\x5c\xcc\xa5\xa3\xc5\xad\xdc\xa2\xf2\x5e\x40\x8e\xc1\xd0\x60\x0c\xeb\x7d\xa7\x56\x1d\xc8\xfb\xa9\x5d\xc4\xae\x0f\x38\x9e\x99\xeb\xbf\x2c\xaf\xdc\x5b\xfe\xab\xb0\xae\x59\xd6\x05\x92\xec\x18\x13\x51\xa4\xee\xf0\x14\x48\xdb\x9d\x81\xa9\xab\x13\x8a\x99\x07\x75\xb8\x8e\xc2\xc3\x2f\x97\x63\xc9\xc9\x18\x4c\xb4\x0c\x62\x23\x76\x60\x30\xd3\x5b\x5f\x0b\x23\x4f\x4a\xaa\x12\x73\xbb\xae\xaf\x62\xf0\x44\xdd\x22\x58\xd7\xa8\xde\xa2\xf8\xab\x1c\xc6\x57\x0b\xaa\x41\xa7\xd5\x87\xab\x8b\xaa\xd0\x3d\x5c\xda\xa2\x35\x35\xe0\x79\xbc\xda\x69\xf1\x84\xcb\x69\xee\x6d\x99\xde\xe1\x7e\x01\xcd\x10\xfd\x78\xfd\xfa\x35\xe4\x42\xc9\x68\x3a\x39\xe7\x69\x23\x07\xa9\x01\x29\x81\xe0\x38\x41\x96\xe6\x46\x6f\x65\x8c\x31\x07\x8a\x3e\x3a\x93\x4e\x70\xaf\x6b\x6e\xac\xe4\x18\xfc\x31\xe6\xda\x12\x9a\xe2\x8e\x1b\x58\x34\x22\xc1\x2c\xe2\x38\x40\xb9\x1e\xc6\xb6\xe2\x5f\xaf\x46\xc9\x5c\x44\x7f\x75\x51\x71\xca\x18\x84\x31\x62\x3f\x5a\xb9\x29\x35\x98\xb2\x9a\xa3\xe0\x77\xe3\x57\x80\xbe\xff\x20\xec\x17\xd0\xf1\xbb\x1e\x0b\xd7\x99\x99\x9c\x8e\x82\xc1\x6b\x32\x21\x8e\x7d\x2b\x07\x77\xa5\xcc\xd2\x88\x56\xc8\xdf\x6d\x64\xb4\xa9\x9d\x95\x5b\x99\x69\x0c\x5a\x61\x6f\x2c\x9d\xc6\xab\x61\xff\x78\x5f\x69\x70\x53\x6b\x7f\xd2\x2d\xdd\x3b\xa3\xf7\xb5\x88\x9e\xa6\x65\x3b\x33\xe6\x00\xc2\x1d\x30\xb4\x8e\xf6\x9f\xbc\x30\xb9\xe6\xe4\x5a\xa5\xfb\x2e\xd7\x85\x66\x0f\x63\x33\x35\xec\x75\x61\x9a\xa6\x61\xa1\x52\xb4\x96\x1e\x76\x3b\x4c\x5d\x29\x06\x85\xd5\x0c\xcd\x4e\x28\xf6\x10\xcc\xa4\xab\xda\x1c\x7f\xe4\x31\x77\x4f\x71\x8b\xca\x81\xd5\x19\x72\x77\xaf\x2b\x44\xaa\x70\xfc\x1e\x7a\xa2\x70\x1b\xb6\xfd\x2d\x26\xb0\x84\xe9\x97\x1d\x08\x09\x3c\x61\x99\xac\xbf\xda\xbd\x12\x33\xf8\x72\xd8\x99\x5e\xcf\xbe\xe8\xe8\xd3\x1e\x6d\x5e\x30\xf7\xca\x08\x65\x13\x34\x94\xe4\x4e\xe9\xc1\x82\xf6\xa7\xf3\xc2\x18\x54\xee\xe7\x54\x47\x77\xd3\xd9\xbc\x4e\xec\xc3\xb5\xdd\xf2\x42\xc2\xa6\x81\x65\xda\x1e\x68\x34\x26\xde\xa2\xbb\xba\x68\x6d\xb1\xca\x2f\xa1\xaa\x77\x4e\xef\x78\x03\x10\x06\xfb\x0d\xce\x47\xb7\xd8\xab\x0b\x5f\x13\xf7\xf1\x6e\xa4\x2a\xde\x09\x68\x77\xb8\x1f\xdd\xe8\x7e\xc5\xb2\xc9\x25\x32\x5d\x28\x57\x17\xe1\xc6\x3a\xb0\x8f\x2a\xf8\x06\xd5\xad\xdb\x90\x8e\x57\xca\x1d\xa5\x5e\xca\x1c\x47\xb7\x06\xd6\xda\x18\xbd\xbb\xbe\x5c\x4d\x3f\xb4\x5a\x9c\xb3\xc5\xa8\xbf\x0c\x2b\x31\xe6\x93\xa3\x5e\x37\x86\xe0\xcf\xac\x0f\xc3\xc4\x3a\x96\x15\x00\x53\xf7\xb6\xcb\xa5\x88\x31\xc7\xe7\xab\x8b\x63\xcc\x6b\x5f\x20\x98\x76\xac\x6c\xbf\x9b\x57\x1f\x7a\x66\xca\xc4\x77\x6d\x13\x3a\xd2\x3c\xd1\xd6\x81\x82\x7a\x75\x72\x48\x9c\x67\x1c\x56\xe2\xa9\x47\x8f\xcf\xeb\xb2\x55\x4b\xca\x8a\xac\x75\x21\x00\x8e\x68\xbb\x85\xcd\xb5\x52\xb5\x9f\x9a\x31\xa2\x23\xc6\xf8\xff\xd4\x6c\x83\xf6\x11\xef\x53\x90\x1e\xf6\xe5\x1a\x8f\xcf\x6c\x73\x1e\x07\x65\x60\xf0\x53\x70\xad\x31\x2d\x05\x43\x7b\x7e\xba\xd8\x5c\x96\xf7\x8f\xbc\xbe\x75\x14\x4f\x53\x36\xa7\xaa\x0d\x00\x17\x07\x9a\x1b\x48\xfe\x00\x20\xe8\x90\x0a\x9d\xfb\x55\xa5\xe0\x93\x9e\xbb\xb5\x36\x06\x7f\x2a\xe3\x9b\x48\xd5\x4d\xac\xb6\xe8\x2d\x57\x22\x7c\xde\xe0\xfb\x18\x3b\x99\xa6\xb0\x46\x28\x2c\x8f\x5c\x0b\xaf\xfe\x62\xdc\x62\xaa\x73\x34\x96\x26\x82\x8b\x50\x3e\xf7\xc9\x85\x11\x19\x3a\xe4\x2b\x59\xb9\xb0\xb6\x9a\xa8\x76\x0f\x6e\x06\x19\xba\x8d\x8e\xe7\x81\xf2\x63\x11\xbf\x5d\xeb\xb4\x03\xc5\xce\xd7\x43\x3d\xdc\xc1\xfe\xed\x27\x35\x3e\x8f\x2f\x96\xd6\x6c\x37\x8f\x4d\x3a\x43\x41\x19\x75\x70\xe5\xa4\x5c\x05\xad\x2e\xd4\xbc\x3f\xbb\x0c\x70\xd5\xc3\xdc\xf8\x52\x6c\x15\x44\x62\xb4\xd2\x94\xf3\x39\xef\x3b\x04\x58\xee\x74\x16\x86\x66\x23\x37\x68\x51\xb9\xca\x1d\x0c\xfe\x53\xa0\x75\x5d\xe6\xc1\xe5\x73\x5c\x0d\xfa\x75\xb7\xe2\x3c\xd6\x6d\x6d\x75\x5a\xd9\x98\x30\x60\x7d\x5e\x67\x80\xb6\xa8\x28\x20\xeb\x15\xe0\x7a\x82\x86\xbb\x30\xb6\x7d\xe3\x8b\xb7\xbb\xc1\xeb\x6f\xc3\x4d\xd6\xbc\x75\xd1\xad\xc3\xdb\xdc\x7b\x3b\xc4\xda\x2e\x54\x31\x18\x5f\xb6\xe2\x71\xf3\x72\xb0\x97\xde\x48\x79\x23\xd5\x9d\x2f\x4c\x7c\x9a\x94\xc1\xb8\x59\xf9\xf6\x02\xa6\x49\xf1\xf4\x0d\xa9\xfd\xf7\x3f\xb1\x39\xb5\xff\x1e\xfa\x8f\xfb\x4f\x4a\x25\x42\xaf\xf9\x04\x97\x3c\xd0\xda\xf1\x77\xba\x62\xd9\x77\xc6\xdf\xe8\xe9\xb0\x03\x26\x32\xc5\xa7\xf7\xe7\xb9\x37\x5f\xf7\xea\x84\xb5\xe8\xec\x7c\x87\x6b\x2b\x1d\x3e\x23\x91\x76\x1e\xe9\xec\xec\xdb\xe4\xe5\xd7\xdf\x7f\x13\x3d\x8f\xfe\x5d\x7c\x17\xc5\xf1\xcb\x6f\xfe\xb5\x7e\x11\x7d\xf7\xf5\xf3\xce\x0b\xf1\xed\xb7\xd1\xfa\x45\xf4\xfd\xbf\x5e\x7e\xb8\x4c\xf5\xee\xc3\x5f\xda\xc4\x99\x30\x77\x73\xbb\xbd\x9d\x0c\x77\x25\x87\x3d\x89\xad\x2f\x1b\x05\x32\x13\xb7\x78\x66\xb7\xb7\xff\x76\x9f\xa5\x7d\x29\xa3\x33\xf4\x38\xf8\xc3\xb0\x94\xb5\x76\x0a\x9e\x55\x77\xbd\xe1\x9c\x0c\xeb\x1b\x56\xfb\xcb\x03\x76\x9d\xbd\x48\xeb\x37\x4a\x11\x5c\x92\x76\x1a\x36\x98\xe6\x7c\x6a\x2e\xf7\x4b\x7f\xac\x55\x78\xef\xca\xeb\xd2\x97\xab\xf9\xc8\x88\xd8\xf4\x5a\xbb\xb3\xfe\x84\x36\xec\x64\x04\x7f\xfb\x4f\x21\x0c\x5e\x11\xf2\x0b\x3f\x19\xc3\x74\x6b\xa1\x14\x9a\xc7\xe9\xac\x8e\xa4\x48\xed\xe2\xc0\xe2\x9e\xb8\x9d\x74\x0e\xcd\xe4\x28\x73\x4a\x62\x76\x4e\x32\xe6\xc3\x9a\x0e\xd5\xd1\x46\xc8\xb1\x2e\xcb\xc3\x01\xcf\x79\xe8\xe6\x05\xd5\x31\xa1\xb5\x47\xbf\xad\x0b\xf0\x7c\x7a\x56\x20\xe2\x4c\x2a\xd0\x86\xeb\x14\x6e\x43\x3b\x65\x75\xdd\xdc\xdf\x2e\xa7\x1c\xd3\xdf\x44\xaf\x64\x88\xb5\x9f\xf7\x4c\x2a\xc7\x85\xa2\x3a\x05\x1d\xda\x4b\xdb\xd7\x6f\xfd\xb5\xe2\xf6\x75\xdb\xb3\xb2\x5f\x48\x89\x30\xfd\x4f\xe9\x42\x29\xb2\xea\x0a\xd2\xd7\xd6\x79\xef\x70\x96\x4c\xfa\x53\x5e\x81\xf7\xc3\x55\x5e\xda\xd9\xcb\xf1\xfe\xef\x5c\x22\xad\xc9\x69\x5b\x09\xa3\x7c\x1b\x2b\xa8\x83\xea\x81\x5b\xa6\xfd\x6a\x3f\x67\x07\xad\x9a\x0d\x2c\xfb\x55\x9c\x80\xa1\xdb\xfa\x64\x9a\xc9\x0d\x2c\x03\x31\xf3\x0d\xca\xdb\x8d\x3b\xc8\xe9\x9b\xa6\x5d\xc6\xba\x62\xd4\xab\xe9\x71\x5a\x98\x4b\x8c\x38\xd9\xab\xd3\xc6\x20\x4f\xaf\x5a\xc0\x98\xad\x31\x8e\x69\xbe\x7d\x6b\x10\xa4\x72\xba\xea\x91\x8e\x68\xc5\xdd\x45\x58\xc2\x64\x2d\xcc\xa4\x37\x7a\x79\xae\xa9\x1d\x30\x78\xbf\x15\x14\xd2\x76\x34\x25\xcd\x11\xa8\xe7\x45\x8d\x27\x0d\x5f\x61\x0b\x7c\xe9\xe0\xad\xb5\x96\x53\xd5\x1f\xfb\x54\x2d\xdf\xaa\x3f\xf6\xa9\x1a\x87\xa9\x7b\xfb\x01\xcd\x58\xd9\xdc\xdb\x3b\x7c\x02\xe6\x6b\xd8\xb3\x70\x29\xc3\x3b\x74\xf5\x0f\x01\xca\x1f\x27\x34\x09\xf0\x68\x36\x09\x4b\x38\x2b\x13\xcf\x2a\xc0\x07\xfb\xdc\x98\x88\x26\xa9\x24\x09\x3e\xf9\x3b\x42\x40\xef\xb7\x0d\xc3\xe3\x7b\xb2\xc0\xbc\xf3\xca\x41\xce\x07\x7e\x4b\x41\x31\xc9\x8a\x6d\xf5\x1b\x85\x52\x60\xcd\x1e\xe6\xe8\x87\x8e\xd1\xb5\xa2\x22\x8a\x74\xa1\xdc\xbc\x14\x35\x27\xe9\xd3\x57\xcf\xa2\x56\xc7\xd6\xe9\x43\x69\xfa\x2c\xd0\xbe\x76\x6f\x8f\x14\x44\x22\x17\xbe\xfb\x3c\xf0\x03\x92\x11\xbd\xcf\x45\x5e\xdd\x52\xaf\xb4\xab\xc5\x48\xb4\xb5\xaa\xd2\xda\x62\x3c\xf1\x3e\xa4\xf1\x20\x02\xc1\x18\xac\xbe\xdd\x4c\x03\xad\x4e\x41\xb8\x03\xa7\x8e\xd9\xf0\x3c\x96\xfb\xd1\x53\xe6\xb0\xfc\x79\x4e\x10\x03\xbc\x98\x23\xa7\xcf\x0b\x68\x4d\x5d\xcf\x1f\xab\x6a\xca\xc3\xc9\x7f\x07\x00\x00\xff\xff\xeb\x59\xf4\x7a\x9d\x36\x00\x00" +var _examplenftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x3b\xef\x73\x1b\xb7\x8e\xdf\xfd\x57\xa0\xfa\xd0\x93\x7a\xb2\x94\xf4\xd7\x7b\x4f\x13\x35\x6d\xec\xb8\xe7\x9b\xc4\x2f\x63\x2b\xe9\xcd\x64\x3c\x79\xd4\x2e\x64\xb1\xde\x25\xb7\x24\x57\x8a\x26\xe3\xff\xfd\x06\xe0\xfe\xfe\x21\xc9\xc9\xf5\xe6\x7a\xfa\x90\xac\x77\x01\x10\x00\x41\x10\x04\xc0\xe9\x37\x27\xdf\x9c\x7c\x03\xb0\x58\x4b\x0b\xd2\x82\x50\x80\x1f\x45\x9c\x44\x08\x92\xfe\x8d\x51\x39\xe1\xa4\x56\xa0\x57\x20\xe0\x22\xd2\x5b\xb8\xd2\xea\xf4\x22\x55\x77\x72\x19\x21\x2c\xf4\x3d\x2a\xa2\x90\x5a\xa9\xee\xc0\xad\x11\xde\x7d\x0b\xd6\x09\x15\x0a\x13\x4e\xe8\xcb\xa5\x23\xca\x4a\x3b\x48\x84\x71\x44\x88\xa0\xf4\x6a\x25\x03\x29\xa2\x02\x16\x96\xa9\x03\xe9\x40\x58\x9b\xc6\x18\x82\xd3\xb0\x44\xc2\xb7\x32\x96\x91\x30\xf4\x62\xad\xb7\x10\x0b\xb5\x83\xab\x8b\x85\x85\xad\x4e\xa3\xb0\xe4\x93\xc9\x06\xda\x20\xac\x52\x15\x10\xd3\x22\x92\x6e\x37\xa9\x48\x18\x68\xe5\x8c\x08\x1c\x84\x1a\x3d\x4b\x25\x36\x91\xb5\x3a\x59\x4b\xeb\x64\x20\x1c\x86\x10\x44\xc2\x5a\xb9\xa2\xbf\xa4\x66\x21\xed\xce\x3a\x8c\x61\xa5\x0d\x48\x67\x99\x8b\x09\xc9\x17\xe2\x4a\x2a\xb4\x20\x88\x59\x52\xde\xd5\xc5\x02\xb6\xd2\xad\x21\x96\x4a\xc6\x22\x82\x18\x9d\x08\x85\x13\xcc\xcd\xf4\xe4\x44\xc6\x89\x36\x0e\x06\x57\x5a\xe5\xba\x64\x55\x0e\x8a\x2f\xef\x24\x6e\xaf\xd1\xea\x68\x83\xa6\x7c\xfb\x3a\xa3\x43\x5f\xed\xe0\xe4\x44\x04\x01\x5a\x3b\x14\x51\x34\x2a\xa5\x7b\xe9\xa7\xf0\xea\x62\x31\x83\xe6\x00\xf0\xe9\xe4\x04\x00\x60\x3a\x9d\xc2\x4d\xae\xfa\x37\xc2\xad\x2d\xbf\xae\xd2\x8b\xd0\xc1\x99\x8e\x22\x64\x65\xde\x38\x6d\xc4\x1d\x12\xe8\x0c\x2a\x7f\x1c\x40\x7b\x93\x2e\x23\x19\x78\xac\xf2\xb9\xe4\x81\xfe\x82\xed\x1a\x0d\xf2\xfc\xc5\x52\x39\x34\x60\xd7\x3c\xb7\x4b\x04\xeb\xb4\xc1\xb0\x00\x5f\xac\xb1\xb4\x98\x84\xd8\xe6\xd9\xf0\x53\x9f\x8f\x09\xc2\xe4\x88\x20\x55\xf3\xa3\x41\xab\x53\x13\x20\xb8\x5d\x82\x9d\xdc\xbf\x66\x26\x7a\x05\x2e\x98\xf9\x0d\x21\x58\x6b\x6d\x3d\xeb\x4a\xc4\x7e\xe2\x49\x98\x31\x9b\xb3\x23\xa3\xa3\x61\x20\x10\x0a\xd6\x62\x83\x6c\x66\x0c\xa9\xf4\xb6\x20\xb4\xc4\x40\xa4\x19\x19\x1e\x7b\x25\x02\x2c\x8d\xd4\xe0\x1f\xa9\x34\x48\xab\x83\x16\x01\x93\x01\x9b\x60\x40\xc6\xe9\xa9\x11\xd9\x58\x9b\xb6\x3c\x85\xb4\x9d\xd6\x30\x21\x7e\x33\x8b\xe8\xd2\x84\x0c\x67\xf0\xf6\x52\xb9\x1f\xbf\x2f\x61\x88\xe1\x0b\xa3\x63\xe6\xf6\x5c\xda\x24\x12\xbb\xc2\xbe\x61\x23\x71\xdb\x4b\x8e\x58\x25\x5d\x1a\xa9\xee\x7a\x81\x42\xb4\x81\x91\x09\xcd\xd5\x41\x58\xb7\x4e\xe3\xa5\x12\x32\x2a\x20\xeb\x6c\x66\xa6\x71\xad\x77\x22\x72\x12\xed\x7e\x3e\x2d\x46\x2b\x4f\xd7\xe4\x08\x33\x78\x5f\x5b\x72\x13\x4f\x6a\x77\x5b\x1f\xe8\x57\x54\x68\x64\x00\xa1\xf4\x8e\xc7\xec\xd8\xcf\x19\x41\x6e\x82\x38\x60\xbb\x10\xb6\x7f\xc4\x9c\xb1\x19\x7c\xf2\x92\xcc\xe0\x17\xb5\xbb\x71\x26\x0d\xdc\x43\x39\x98\x54\xd2\x0d\x8b\xbf\xe8\x57\xd5\xe9\xb8\xf6\xa5\x43\x91\x75\x80\x96\xf6\xea\x9f\x0f\x2b\xa1\x0e\xbf\x57\x84\x12\x74\x04\x9f\x6a\x68\xa4\x83\x89\x0c\x61\xee\x9f\xd2\x54\x86\xed\xef\x6c\xe4\x73\x16\xb6\xfd\xb1\x22\x28\xcc\xab\x62\xb7\x41\x0b\x91\x61\x5e\x8a\xdf\x06\x2b\x44\x87\x79\xa9\x86\x36\x58\x61\x4d\xf3\x42\xf8\x02\xe8\xa1\x6e\x21\x81\x41\xe1\xf0\x65\x9c\xb8\x5d\xe9\x1c\xb3\xb7\x7e\xdf\xa5\x4f\x15\xc7\x59\xc3\x16\x2a\x04\x83\x2e\x35\xca\x66\x5e\x80\x9d\x9a\x88\x22\x72\x96\xf4\x97\xe0\xfd\x6f\xc7\x8e\x46\x6f\x15\xef\x4d\x35\x12\x3f\x7f\x6a\x2d\xfe\x72\xb0\x87\xce\x15\xb6\x4a\x55\x37\xdf\xc3\xd1\xec\x00\xbd\xc6\x1c\x7b\xde\xe1\xd9\x69\xb9\x35\x4d\xba\x29\xab\x95\x5b\xec\x12\x9c\x01\xfd\xfb\xec\xe7\x0a\xfc\xd5\xc5\xe2\xa7\xe1\x68\xd4\xa5\xe0\x2a\xd3\xb4\xb0\x99\xf3\x3b\x74\x6c\xad\xc4\xec\x7b\xa2\x76\xdb\xcd\xd4\xfb\xda\x4b\xfa\xf1\xd0\x75\x8b\xcf\xfc\xdc\x4f\xc3\xd1\xf8\x18\xf0\xc2\xe1\x1c\x8b\xf0\x32\x94\x24\xfe\xf1\xf0\x1f\x1d\x1a\x25\xa2\xb7\xd7\xaf\x8e\x45\xb9\xba\x58\x94\x7a\x3e\x17\x4e\x7c\x1e\xe2\xe3\x14\x71\x83\x46\x8a\xe8\x58\xe8\x05\x3b\xcc\xa3\x75\xf0\xee\xf5\x0b\x23\xc3\x3b\x0c\xf3\xf7\x3f\x0d\x47\x35\xc4\xdb\x43\xc6\x42\x76\x62\x7c\x90\x45\x34\x87\x1f\xd8\x7c\xbc\xf1\x8d\x2a\xee\xeb\x79\xd3\x67\x6d\xa5\x0b\xd6\xde\xd6\x3e\xb5\x78\x0d\x84\xc5\xfd\x46\x34\x6b\xe1\x40\x69\x90\x9d\x48\xc3\x4e\x0c\x28\x36\x80\xc2\x4b\xb6\x55\x97\xff\x6a\xfb\x41\xd3\x71\xf6\xa3\x55\x76\x89\x3a\x67\xff\xb1\x58\xbc\xb9\x90\x11\xf6\xb3\x46\xbf\xd4\x44\xb3\x86\xef\xed\x85\x1f\x75\x7e\x69\xbf\xed\x53\x70\x65\x15\x75\x6b\xd8\x47\x90\x14\x4a\x51\x64\x05\xb1\xf8\x08\x2a\x8d\x97\x68\x68\xbb\xe6\x43\x05\x7b\x52\x72\xa2\xcb\x2c\x18\x0d\x61\xe5\x83\x9d\xca\xf9\xa1\x8f\xb6\xf5\x7e\x99\xc8\xa2\x67\x05\x56\x12\xa3\x10\x36\x22\x4a\x79\x50\x8b\xec\xbd\x55\x8f\x12\x28\x12\xc8\x30\x2f\xd5\x4a\xc3\x1c\x3a\x05\x1c\xfa\x39\x1f\x64\xde\x91\xa3\x8b\xec\xd3\x60\x9c\x49\x34\xcb\x37\xd6\x31\xf1\x33\xa3\x21\xbb\xd5\x5b\x19\xf3\x95\xb4\xae\xb5\xd9\x67\x84\x6f\x61\x0e\xef\x2b\xbc\xdd\x1e\x6f\xc2\xf9\xb4\xf4\x1b\x4a\x65\xfc\x2f\x34\x81\xc2\xe1\x3c\x62\x89\x79\x9c\x7e\xee\x32\x45\x7e\x21\x67\xd5\x3d\xe1\x11\xcc\x15\x68\x07\xf8\xeb\x0e\x53\x1e\xcf\x66\x7d\x67\x79\x04\xa3\x15\xc4\xe1\x60\xed\x5c\x62\x67\xd3\x69\x96\x4d\x38\x55\x2b\x37\xd1\x6a\x15\xe9\xed\x44\x9b\xbb\xe9\x60\x12\x68\x15\x08\x37\xcc\x54\x3b\x71\xda\x87\x8c\xc3\xd1\xe8\x78\x56\xbb\x76\xb4\xbd\x0c\x57\xa2\x89\xcc\xeb\x9f\x65\x2b\x9a\xbd\x7f\x7e\x56\xda\x1b\x80\x8c\xd9\xeb\x57\x40\x0e\xf3\xf4\xb9\x12\x1d\xb7\x5d\xfc\xaf\x0b\x55\xb0\x75\xbc\x5c\xc5\xc6\xde\xeb\x96\xf1\x63\x10\xa5\x61\xee\x73\x17\x92\xcf\xb4\x21\xac\xb4\x26\x7f\x69\xd7\x7a\x0b\xda\xad\xd1\x40\x6a\xd1\x92\xb7\xf6\x24\xfb\x3d\x9a\xa7\x17\x7a\x30\xf2\x5d\x83\x92\xf4\x60\x0c\x83\x95\xd6\x83\x6e\x1f\xc6\x07\x4b\x46\x23\xe6\x5b\x3e\x98\xce\x78\x0b\xed\xe9\x0e\xe9\x8f\x59\xfd\x30\x30\x2e\xc6\xbe\x12\x31\x1d\x9e\xea\xac\x8c\x4e\xfa\x54\x50\x11\x5d\x5a\x10\x90\x2a\xf9\x11\x9c\x8c\xd1\x3a\x11\x27\x63\xd8\x62\x9e\x17\x89\x85\xb9\xa7\x73\x00\xa7\x98\x04\x84\x7e\x46\x48\xef\xb4\x05\x25\x91\x70\x2b\x6d\x62\x0b\xf7\x4a\x6f\x39\x69\x96\xab\x50\xba\x49\xaf\xc8\xe5\xf0\xcc\x68\x4b\x6e\x7e\x9b\xef\x3c\x35\x5d\xf2\xee\xd6\xd0\x42\x4d\xdd\xb7\x5f\x8d\xab\x4c\xce\x60\x70\x2e\x1c\x61\x1a\x61\xa4\xdb\xed\xd9\x9c\xca\x79\x98\x88\xd0\x6b\x70\xd8\x60\xb4\x5f\xa1\x64\x3c\xac\x49\xa6\xe2\xb5\x45\xc6\x40\xe7\x23\x3f\x72\xaf\x32\x56\xda\xcf\xf0\x35\x83\xb5\x74\xe1\x5f\x0f\x6d\xa0\x0d\xce\xe0\xe9\x93\xc9\x93\x6c\x97\x7d\xfa\x84\x9f\x6b\xa1\xd6\xe0\x4c\xc7\xb1\x56\x83\xfe\xed\x37\x1f\x6d\xbf\xce\xc9\x62\xfb\x94\xcd\xd6\xdc\x50\xb2\x92\x51\xa9\xe1\xba\x40\xc7\x2b\x3b\xc7\xeb\xd1\x72\xe6\x83\x4a\xcc\xe3\xf7\x99\xae\xe8\xbd\xd7\x3d\x5c\xe6\x79\x5a\x9f\x65\x96\xd6\xc7\xde\x77\x72\x83\x3e\xc1\x92\x18\xfd\x3b\x06\xce\x87\x68\x3a\x02\xbd\x41\xe3\x4d\x7f\x8d\xb0\xf4\x03\x71\x9c\x24\x2d\x18\x4c\x0c\x5a\xe4\xe0\x4e\xd0\xe1\xbb\x6f\xd4\x97\xd7\x67\x7f\xfb\xf6\x29\x6c\xd7\xa8\x0a\x1a\x4e\xc3\xcb\x77\xaf\x41\x2b\x9f\x0d\xdf\x48\xe1\xc7\xe7\xdc\x26\x48\xb5\x32\xc2\xf2\x99\x21\x35\xf9\xc0\x93\x5e\x0b\xfd\x15\xf3\xb4\xb5\xf7\xd8\xa7\x11\x6e\x30\xca\x53\x7a\x21\xd8\x5d\xbc\xd4\x91\x9f\xf3\x7e\x5f\x97\x63\xbf\x62\xe4\xf9\xa1\x1d\x61\x6f\xb8\x5e\xdf\x2e\xc8\x84\xf6\x82\xef\xdd\x36\x0e\x1f\xd0\xaa\xbf\x11\x08\xfb\x55\x33\xa6\x68\x51\x78\xde\x8b\xff\xfc\x39\x24\x42\xc9\x60\x38\x38\x63\x27\xe9\x33\xa7\x2c\x7e\x53\xbf\x6d\xb2\x3d\x8b\x73\x3a\x85\x33\x1d\x27\x79\x8a\xd7\xe9\x7b\x54\x19\x8d\xb7\xd7\x97\xb0\x14\x16\x43\x32\x05\xc1\x8f\xfc\x8e\xa6\xad\x80\x85\xcb\xf3\x31\x24\x5a\x66\x76\xab\x41\xc0\x7f\xde\xfc\xf3\x0a\x56\x32\xc2\x09\xd7\x24\xfa\x86\xdd\xe6\x09\x70\xc1\xc0\xb0\xd3\xe9\xbf\x6d\x10\xd2\x24\xd2\x22\x24\xbb\x55\x21\xa7\xb9\xd7\xda\x32\x6d\xab\x63\xf4\x69\xf4\x53\x9f\xf3\xa6\xe3\x0a\xf1\x44\xa7\xb4\x4a\x36\x3a\xc8\xe8\xf6\x2e\xb4\x37\x17\x37\x63\xb8\xf9\x6e\x4c\xfb\x8a\x70\x02\xde\x5e\xbf\x62\xf5\x09\xa9\xf2\x0a\x0f\x8b\x10\x4a\x83\x81\x8b\x76\x63\x40\x17\xf4\xef\x2a\xa4\x17\x52\xcb\x1c\x0e\xc5\x84\x5e\xb9\xb9\x4b\x9b\x0e\x7a\x49\xa6\x46\xbe\xe3\xf3\xd4\x1c\xda\xe1\x63\x1e\x58\x0e\x26\xbf\x5b\xf6\xb9\x8f\x08\x60\x5b\x56\x71\xe8\xd0\x5d\x5b\x78\x07\x4e\xdf\x7e\x29\x37\x71\xfc\xdb\x7e\xac\xd4\xc8\xe6\xb1\xfb\xed\xf5\xe5\xfe\x25\x9c\xa9\x7c\x96\x3f\x8c\x69\x5e\xb9\x44\x45\x13\x98\x4f\x88\x41\x9b\x46\xce\x92\xb1\x08\xf0\x4a\x43\x55\xd4\xfa\x72\x28\x32\x33\xf6\x3e\xfb\xbd\x40\x65\x4f\xda\x3f\x1b\x7d\x14\x8e\x39\xf9\x3f\x74\x65\xef\xaa\x27\x69\x0f\xf0\x90\x17\x68\xe0\x9c\xfc\x3c\xd7\xf2\x66\xf0\x4f\x15\xed\xb8\x32\xc3\xf5\xa2\xa5\x08\xee\xb7\xc2\x84\x10\xe8\x38\x11\x4e\x2e\xa5\x2f\x15\x42\x5f\xf5\xa4\xac\xca\x94\xce\xb5\x59\xe4\x82\x4f\xd9\xd0\x9d\x14\x4a\xe8\x8e\x32\x4c\xf9\x71\xbc\x77\x80\x5a\x46\xb7\x5e\x6c\xa0\xbd\x2d\xd0\x8a\x02\x3f\xef\x6b\xee\x51\xd5\x33\xc0\xd9\xee\x27\xea\x15\xb0\x2c\x88\x54\xf0\x2f\x5f\xe8\xf9\x17\x5c\x9e\xfb\xac\x45\x77\x7a\x55\x18\x8a\x9f\x30\xbc\xba\x58\xd8\x19\xfc\xfc\xc9\x63\xcd\xa0\x9d\x0e\xbe\xba\x58\x3c\x34\x4a\x17\x30\xec\xcc\xfe\x17\x04\xe1\xd9\x29\x69\xb1\x9c\xd0\x9a\x00\x77\xe8\x6e\xd2\x24\xd1\xc6\x31\x34\xed\x38\xb6\x48\x8b\x0b\x88\xa4\x75\xb9\x26\x1c\x7f\xcb\xd2\xe2\xbc\xe5\x07\x28\x29\x24\x20\x59\x12\xd7\x2a\xc4\xb4\x52\xc7\xad\x81\x86\xa3\x19\x7c\xf2\x5b\xdd\x0b\xad\xa3\x66\x86\x9b\x1c\x93\xcd\x71\x18\xa1\x01\x3e\xaf\x0a\xc6\x92\xd7\xa0\xdf\xf7\x9c\xcc\x6e\x61\x0e\xce\x34\xd6\x5f\x66\xfb\x75\x0a\x7d\x5a\xbb\xce\x14\xb4\x5d\x23\x1f\xa0\xb4\xe1\xad\x91\x1c\x39\x85\x4f\xca\x5b\x01\x19\x06\xab\x06\x43\x58\xee\x1a\x35\xd3\x1a\xbd\x5f\xaa\xc5\xd4\x22\x5d\xe6\x91\xb9\x0e\xc9\xf4\xb2\x93\xca\xef\xa9\x75\x65\x90\x98\x22\xd1\x0e\x71\x25\xd2\xc8\xed\x9f\x02\x69\x9b\x33\x30\x74\x45\x9c\x31\xf2\x4a\xed\xce\xe7\xf3\xf0\xf3\x79\xdf\x51\xb7\x4f\x4d\xb4\x0c\x42\x23\xb6\x60\x30\xd6\x1b\x5f\x93\x21\x4b\x5a\xe5\xa5\xce\x6a\x7d\x59\x85\xe0\x81\x9a\xc5\x98\xa6\x50\xad\x45\xf1\x5b\x36\x8c\xcf\x3d\xe7\x83\x0e\xf3\x87\xcb\xf3\xbc\xe0\xda\x5d\x62\xa1\x35\xd5\x61\x79\x3e\xd8\x78\x76\xda\x58\x4e\x13\x2f\xcb\xf0\x1e\x77\x33\x28\x87\x68\x3b\xdb\xae\xd8\xa9\x50\x48\xa6\x08\xf6\x13\x59\xa8\xbd\x91\x14\x83\x90\xa3\x68\x6b\xa7\xb9\xe7\x16\xb5\x1f\x66\xb2\x4f\xfd\x21\x26\xda\x92\x36\xc5\x3d\x37\x52\xd0\x88\x1c\xe3\x84\x61\x4d\xcb\xc5\x30\xb6\xe2\xff\x5a\xb5\x32\xc6\x22\xf8\xcb\xf3\x1c\x53\x52\xbc\x64\xc4\xae\xb7\x0e\x90\x71\x30\x64\x36\x7b\x95\xdf\xf4\x5f\x35\xed\xfb\x07\x0a\x63\x1b\x76\xd7\x42\xe1\x7a\x27\x83\x4f\x64\x58\xd7\x17\x89\x10\xfa\x18\x52\xe1\x36\xa3\x99\x09\x51\x71\xf9\xdb\xb5\x0c\xd6\x85\xb1\x72\x4b\x4d\x44\xb1\x28\xb6\xc6\xd2\x51\xb8\xe8\xb6\x8f\xf7\x39\x07\xb7\x05\xf7\x75\x5e\x42\xb4\xce\xe8\x5d\x41\xa2\xc5\x69\xd6\x56\x13\xb2\x03\xe1\x4e\x0c\xf4\xf1\x68\x92\x1a\x0a\x9b\x2d\x68\x15\xed\x9a\x58\xe7\x9a\x2d\x8c\xc5\xd4\x14\xda\x9a\xb2\x79\x25\x55\x11\x5a\x4b\x2f\x9b\x9d\x0e\x4d\x2a\x06\x85\xd5\xac\x9a\xad\x50\x6c\x21\x18\x4b\x97\x97\xdb\xdf\x26\x21\x77\xf1\xe0\x06\x95\x2b\xc3\xe3\x26\x11\xa9\xea\xe3\xb7\xb4\x27\x52\xb7\x66\xd9\xaf\x71\x05\x73\x18\x7e\xdd\x50\x21\x29\x8f\x0e\x91\xa9\x5b\xb7\x57\xbb\x67\x62\x04\x5f\x77\x1b\xd3\xf3\xd1\x57\x0d\x7e\xaa\xa3\x4d\x52\xc6\x5e\x18\xa1\xec\x0a\xcd\xb9\x70\x38\xa4\x17\x33\xda\x9f\xce\x52\x63\x50\xb9\x17\x91\x0e\xee\x87\xa3\x49\x91\x26\xaa\xaf\xed\x8a\x15\x92\x6e\x4a\xb5\x0c\xab\x03\xf5\xfa\xc4\x3b\x74\x97\xe7\x95\x2d\x56\xf9\x25\x94\xf7\x70\xd1\x37\xde\x00\xe8\x20\xd2\x6a\xb4\x39\xb8\xc5\x5e\x9e\xfb\xda\xac\xf7\x77\x3d\xd5\xd9\x86\x43\xbb\xc7\x5d\xef\x46\xf7\x2b\x66\xcd\x16\x22\xd6\xa9\x72\x45\x49\xa7\xaf\x13\xe8\x20\x83\xaf\x50\xdd\xb9\x35\xf1\x78\xa9\xdc\x51\xec\x45\x8c\x71\xa8\xea\x58\x8c\xb1\xd4\xc6\xe8\xed\xd5\xc5\x62\xf8\xa1\xd2\x6a\x33\x9a\xf5\xda\x4b\x37\x13\x7d\x36\xd9\x6b\x75\x7d\x1a\x7c\xc1\xfc\xb0\x9a\x98\xc7\xec\xf8\x6c\x8a\x1e\xab\x6c\x29\x66\xa9\x94\xcb\xf3\x63\xc4\xab\x36\xb2\x0d\x1b\x52\x56\xbf\x4d\xf2\x87\x96\x98\x72\xe5\xbb\x87\x56\x0e\xe6\xf0\x48\x59\x3b\xca\xb3\xf9\xc9\x61\xe5\x3c\x62\x37\x13\x8f\x3d\x7a\xd4\x14\xf9\xe8\x6e\x8f\x7c\x49\x59\x11\x57\x1a\xd3\xe0\x88\xf6\x8f\x1a\xe0\xcf\x19\x6b\xbf\x94\x63\x04\x47\x8c\xf1\x57\x6a\xfa\x80\xea\x11\xef\x73\x34\xdd\x6d\xcb\x85\x3e\xbe\xb0\xdd\xe6\x38\x55\xd6\x04\x7e\x8c\x5e\x0b\x9d\x66\x84\xa1\x3a\x3f\x4d\xdd\x5c\x64\x7d\xb0\x9e\xdf\xc2\x8b\x47\x11\x8b\x93\x67\x15\x80\xd3\x0a\x65\x27\xac\x3f\x00\x08\x3a\xa4\x42\xa3\xcf\x37\x23\x7c\xd2\x32\xb7\xca\xc6\xe0\x4f\x65\x45\xba\x81\x43\xaf\x0a\xe9\x0d\xe7\x30\x7c\xdc\xe0\xab\xe2\x5b\x19\x45\xb0\x44\x48\x2d\x8f\x5c\x10\xcf\x7f\x21\x6e\x30\xd2\x09\x1a\x4b\x13\xc1\x25\x0d\x1f\xfb\x24\xc2\x88\x18\x1d\x72\x6b\x70\x22\xac\xcd\x27\xaa\xda\xd1\x31\x82\x18\xdd\x5a\x87\x93\x1a\xf3\x7d\x1e\xbf\x9a\x27\xb5\x1d\xa5\xb3\xe7\x5d\xbd\x44\x9d\x7d\x44\x9f\xd5\x80\xf3\xb9\xcd\x37\x8f\xce\xbd\xde\x1e\x32\x15\x56\x20\xc5\xe1\xb5\x86\xc9\x6c\xed\x54\x3a\x21\x26\x6d\x9b\xe0\x69\xc9\xfb\x68\xd6\x3e\xf7\x9f\xbb\x9e\x10\xad\x34\x99\x15\x4c\xda\x66\x04\x65\xe6\xbc\xc8\xd1\xe7\x46\x64\xf0\x8f\x14\xad\x6b\x22\x77\x2e\xba\xe3\xea\xa0\xcf\x9b\x55\xcf\xbe\x8e\x9f\x4a\xb7\x0f\x0b\x53\x77\x73\x5f\x56\x9d\xf6\xf9\xfb\x2a\x58\xab\x08\xd4\x22\xd4\x9d\xfe\xb3\xd5\x7e\x65\xde\x24\x3b\x9b\xb7\xbb\x73\x8d\x49\xa5\x4d\xbb\x81\x5b\x76\x6d\xef\x43\xad\xa6\xb7\x58\x19\x5f\x57\xbc\x78\xf9\xb1\xb3\xb7\xab\xa4\xf2\x4a\xaa\x7b\x9f\xce\xf8\x3c\x2a\x9d\xde\x36\xb7\xed\x19\x0c\x57\xe9\xe3\xb7\xb1\xea\xef\xcf\xd8\xd2\xaa\xbf\x87\xf6\xeb\xf6\x9b\x8c\x89\xba\xd5\x7c\x86\x49\xee\x69\x2f\xf0\x1d\xc9\xa1\x6c\x1b\xe3\x6b\x7a\xdb\x6d\x80\x2b\x19\xe1\xe3\x7b\xc4\xb8\x3f\xac\xa8\x0d\x08\x6b\xd1\xd9\xc9\x16\x97\x56\x3a\x3c\x25\x92\x76\x12\xe8\x78\xfa\xc3\xea\xc7\x6f\xff\xf1\x7d\xf0\x24\xf8\x9b\xf8\x7b\x10\x86\x3f\x7e\xff\xdd\xf2\x69\xf0\xf7\x6f\x9f\x34\x3e\x88\x1f\x7e\x08\x96\x4f\x83\x7f\x7c\xf7\xe3\x87\x8b\x48\x6f\x3f\xfc\xa6\x4d\x18\x0b\x73\x3f\xb1\x9b\xbb\xee\x8a\x42\x8f\x25\xb1\xf4\x59\xb1\x5a\xc6\xe2\x0e\xa7\x76\x73\xf7\xef\x1f\xe3\xa8\x4d\xa5\x77\x86\x0e\x2b\xbf\x5b\x2d\x59\xbd\x97\x9c\x67\xde\xe1\x55\x62\x0e\xba\xf9\xad\x57\x9c\xb3\x63\x79\x11\xf3\x48\xeb\xb7\x57\x51\xbb\xe2\xe3\x34\xac\x31\x4a\xf8\xac\x9d\xed\xb2\xfe\x30\xac\xf0\xa3\xcb\x2e\xfb\x5c\x2c\x26\x3d\x23\x62\xd9\xef\xd3\x9c\xf5\x47\xb4\x02\x0d\x7a\xf4\x6f\xff\x48\x85\xc1\x4b\xd2\xfc\xcc\x4f\x46\x37\xdc\x52\x28\x85\xe6\x30\x9c\xd5\x81\x14\x91\x9d\xed\x59\xdc\x03\xb7\x95\xce\xa1\x19\x1c\x25\x4e\x06\xcc\xc6\x49\xc2\x7c\x58\xd2\x51\x3c\x58\x0b\xd9\x57\xe7\x78\x38\x60\x39\x5f\x58\x29\xff\xd3\xab\xe4\x59\x39\xbc\x6b\xe0\x3f\xa1\x42\xde\x28\xbd\x36\x2a\xb8\x6f\xaf\x2f\x27\x70\x59\xa9\x73\x8e\x6b\x50\x65\xd8\x22\x2d\x44\xda\xdf\xe7\xd2\x8a\xd3\x40\x5c\x11\xe5\xba\x69\xdb\x52\xa6\xd3\xfc\x1a\x5a\x5e\x27\xfd\x1f\x2b\x88\x7e\x51\xc9\xb1\xde\xef\x79\x75\xb1\xe8\x59\x93\x79\x91\x71\xf0\x5f\xaf\xdf\xbc\xea\x81\x79\x6c\x49\xb1\x28\x27\x72\x3f\xc9\x74\x0a\x16\x9d\xab\x56\x12\x85\xa5\x4f\xf4\xda\x56\xaa\x0a\x3e\xb8\x17\xfe\x55\x6a\x64\xb5\x13\xb6\x77\xac\xac\x90\x78\xa8\x54\x5c\x18\x43\x71\xad\x8e\xcb\x8b\xdd\xfe\x7d\xcf\xaa\x7b\x68\xc6\xf0\xf9\x91\xbe\x12\x19\x5f\x17\xc5\x32\xce\x74\x29\x10\x61\x2c\x15\x68\xc3\xc6\xe4\xd6\x5c\x7c\xcf\xae\x28\xfa\xa2\x3d\x9d\x07\xfd\xed\xc5\x9c\x86\x58\x7a\x6f\x1b\x4b\xe5\x38\xa9\x5b\x1c\x17\xbb\x22\xd8\xea\x95\x2d\x7f\x15\xad\x7a\x45\x6b\x9a\x75\x8a\xd1\x2a\xa5\xff\x29\x48\xcf\x48\xe6\xfd\x60\xf4\x67\x25\x37\xb3\xff\x44\x4b\xfc\x93\x3e\xf1\x63\x77\x45\x86\xe2\xe9\x6c\xbc\xff\x3b\x17\x8f\x0a\x70\x0a\xe6\xea\xb1\x55\x55\x57\x50\x84\x32\x7b\x6e\x26\xb5\x2b\x73\x1c\x93\x57\xf2\xab\x30\x6f\x67\x5c\x6b\x08\xcd\xa6\x37\x86\x19\xdc\xc2\xbc\x46\x66\xb2\x46\x79\xb7\x76\x7b\x31\x7d\xbb\x5c\x13\xb1\xc8\xee\xb6\xf2\xef\xec\xff\x12\x89\x01\x1f\xb1\x0a\xaf\x57\x3b\x53\xe7\xcd\x7f\x18\x2f\x31\x0c\x69\xbe\x7d\x53\x18\x48\xc5\x1d\x29\xdc\xbc\xd5\xc3\x15\xf7\x95\xc1\x1c\x06\x4b\x61\x06\xad\xd1\xb3\x1c\x44\x61\x80\xb5\xef\x1b\x41\x81\xc4\x96\xa6\xa4\x4c\x57\xb4\xac\xa8\xb4\xa4\xee\xf6\x89\x9a\x2d\xed\xbd\xaf\x50\x31\xaa\xe2\xb1\x0d\x55\xb1\xad\xe2\xb1\x0d\x55\x1a\x4c\xd1\xd5\x59\x83\xe9\x2b\x71\x79\x79\xfb\xb3\x55\xff\xef\x12\x26\xfd\x37\xac\xfe\xea\x59\x11\xbe\x69\x39\xaa\x7b\x5e\xb8\xc9\xfa\xf5\xc8\x56\xb3\xfb\xc7\x65\x96\xa0\xf7\xc8\x0d\x73\x98\x66\xa7\xf3\x7c\x47\xab\x09\xd0\x47\xa2\x3c\x79\x13\x05\x1f\x3f\x1d\x41\xa0\x75\x7d\xb9\x7b\x7c\x0f\x56\x13\xef\x2c\x5f\xcf\x67\x1d\xd7\xa5\xb9\x1f\x51\x6c\xf2\x6b\xc8\x19\xc1\x02\xbd\x9e\xc8\xd8\x97\xa1\x2c\x18\x15\x41\xa0\x53\xe5\x26\x19\xa9\x09\x51\x1f\x3e\x3b\x0d\x2a\xcd\x30\x4e\xef\xcb\x65\x8c\x6a\xdc\x17\xde\x28\x8b\x34\x03\x91\x08\xdf\xd8\xd3\x71\x47\xbc\x87\xef\x33\x91\xe4\x6d\x65\x39\x77\x05\x19\x89\xb6\x60\x55\x5a\x9b\xf6\x67\x27\xf6\x71\xdc\xa9\x81\xda\x18\xcc\xbe\x5d\x0f\x6b\x5c\x8d\x41\xb8\x3d\xa9\x99\x51\xf7\x3c\x66\xe1\xc3\x63\xe6\x30\xbb\x81\x5f\x73\xd9\x9e\xcc\x91\xd3\xe7\x09\x54\xa6\xae\x65\x8f\x79\xa2\xfa\xe1\xe4\xbf\x03\x00\x00\xff\xff\x83\x12\x55\x4a\x80\x42\x00\x00" func examplenftCdcBytes() ([]byte, error) { return bindataRead( @@ -89,11 +89,11 @@ func examplenftCdc() (*asset, error) { } info := bindataFileInfo{name: "ExampleNFT.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xc0, 0x90, 0x40, 0xac, 0xa1, 0x58, 0x7d, 0xc0, 0x35, 0x98, 0x1e, 0xeb, 0x6d, 0x7d, 0x28, 0x11, 0x47, 0xa5, 0xb5, 0xe4, 0x29, 0x36, 0x65, 0x5c, 0x67, 0xf, 0xdf, 0xe3, 0x17, 0x84, 0x6c, 0x98}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x1a, 0x90, 0x64, 0xfc, 0x86, 0xdc, 0xe, 0x5a, 0x43, 0x58, 0xe3, 0x31, 0xf0, 0xc1, 0x31, 0xcc, 0xa8, 0x6a, 0x41, 0x52, 0xaf, 0x6c, 0x7a, 0x8f, 0xb1, 0xcb, 0x99, 0xc3, 0xdf, 0x29, 0x6d, 0xd4}} return a, nil } -var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x6d\x73\xdb\x38\xd2\xe0\xf7\xfc\x8a\x8e\x9f\xaa\x8c\x7d\x27\x4b\x4e\x9e\xd9\xb9\x3b\xd5\x68\x67\x33\x89\xbd\xeb\xad\x49\x36\x95\x38\xb3\x57\x95\x9a\x1a\x43\x64\x4b\xc2\x9a\x24\xb8\x00\x68\x59\x9b\x9a\xff\xfe\x14\x1a\x2f\x04\x48\xca\xa2\xbd\x99\x8d\x3e\x24\x12\x09\x34\x1a\x8d\x7e\x47\x03\xe6\x65\x2d\xa4\x86\xa3\x8b\xa6\x5a\xf3\x65\x81\x57\xe2\x06\xab\xa3\x27\xfe\xf1\x5b\x51\xed\x79\xf3\x33\xc7\xed\x7b\x54\xa2\xb8\x45\x79\xf4\xe4\xc9\x6c\x36\x83\xab\x0d\x57\x90\x89\x4a\x4b\x96\x69\xe0\x65\x5d\x60\x89\x95\x56\xa0\x37\x08\x25\x6a\x96\x33\xcd\x40\x69\x56\xe5\x4c\xe6\x50\x4b\x51\x0b\x85\x39\xf5\xe5\x15\x5c\xfc\x74\xf9\xee\xf4\xec\xbb\xff\xfe\x6e\x6a\x9e\xd0\xd3\xf7\xb8\x9a\xc3\x46\xeb\x5a\xcd\x67\xb3\x35\xd7\x9b\x66\x39\xcd\x44\x39\x13\xd5\xaa\x10\xdb\xd9\xaa\xe0\xb5\x9a\x2d\x0b\xb1\x9c\x95\x8c\x57\x33\x56\xd7\x05\xcf\x98\xe6\xa2\x9a\xbd\x38\x7b\xf1\xfc\xec\xff\x3d\xff\xee\xb4\x5a\xe9\x53\x3f\xf8\xb4\xcc\x03\xec\x0f\x5a\x36\x99\x56\xc0\xaa\x1c\x24\x2a\xd1\xc8\x0c\x15\x64\xac\x6a\x31\x07\x51\x21\x08\x09\xa5\x90\x48\x7d\xc2\x24\xf4\xae\x46\x35\x81\x8c\x15\x05\xe6\x70\xcb\x71\xab\xa6\x70\xce\xb2\x0d\x7d\xa7\xd7\x20\xb1\x96\xa8\x0c\x01\xa8\x2f\x83\x9c\xaf\x56\x28\x0d\xdc\x1b\x5e\xe5\x20\x56\x01\xde\x04\x54\x93\x6d\x80\x29\x60\x90\x49\x64\x5a\x48\x58\x72\xb1\x96\xac\xde\xec\xa8\xb7\x90\xc0\xe0\xaf\xef\xce\xff\x0c\xbc\x64\x6b\x84\x15\x2f\xd0\xd2\x89\x65\x19\x2a\x75\xcc\x8a\xe2\xa4\x25\xfe\x1b\x07\xd8\xac\x92\x82\xcf\x4f\x9e\x00\x00\x18\x38\xaf\xb9\xaa\x0b\xb6\x03\x6e\x86\x5a\x32\xc5\x33\x87\xf1\x86\x69\xe0\x55\x56\x34\x39\xda\x05\xab\x58\x89\x13\xc8\x51\x65\x92\xd7\x86\xa4\x86\x52\x01\x8e\xde\x34\xe5\xb2\x62\xbc\x80\x95\x41\xad\x02\xb1\xfc\x07\x66\x7a\x0a\x6f\x84\xd2\xee\x87\x02\xb5\x11\x4d\x91\x47\x04\xd5\x86\x45\xcc\x80\x53\x0f\x89\xfe\x8f\xe7\xa0\x68\x5d\x02\xa2\x0e\x77\x3f\xee\x95\xc3\xcc\x50\xcf\x60\xe9\x86\x8d\xdb\x74\xda\x73\x05\x2b\x8e\x45\x0e\x5b\x5e\x14\xb0\x44\xc8\x2d\x64\xcc\x0d\xd3\x15\x5c\x39\x1e\xd0\x1b\x94\xb8\x12\x12\x1d\xd6\x09\x98\x25\x3d\x95\xda\xcc\x34\x13\x55\xc6\x15\x0e\x8f\x19\xcf\xa4\x40\x4d\xb8\xce\x0d\xaf\xf1\x6a\x9d\xce\xe4\x25\x6c\x25\xd7\x1a\xab\x84\xc6\x5f\x68\x5a\x0c\x72\xd4\x8c\x7b\xe6\x4c\xc1\x4e\x12\x50\x4a\x10\xd3\x2f\x91\xd8\x1c\x6e\x51\x2e\x85\x42\x38\xc6\xe9\x7a\x0a\x0c\x6a\x26\x19\xf1\x21\xf0\x4a\x69\x64\xc4\xb7\x0c\x14\xaf\xd6\x05\x42\xc1\x2b\x3c\x19\x47\x89\x68\x96\xfb\x08\xa2\x4a\x56\x14\x11\x6b\x05\x09\x62\x8f\xa4\x8d\xe3\xbf\x25\x02\x83\x2d\x2e\x4f\x57\x92\x63\x95\x17\x3b\x12\x1f\x38\xe6\x53\x24\x99\x9a\xc0\xbb\xb7\x7f\x3e\x49\x80\x90\x3c\x38\xba\xf4\x19\x66\x62\x26\x7e\x03\xb5\x44\x12\xfd\x09\xa0\xce\xc6\x51\x21\x4c\x6e\x0e\x9f\x2f\x78\x81\xbf\xb5\x34\xa0\x85\xe2\x15\xd7\xc7\xe1\x91\xf9\xc4\x1c\x34\x49\xde\x0c\x50\x34\x6d\xd0\x1f\xcc\xbf\x39\x81\xcf\x49\x4b\x85\xc5\x6a\x4a\x72\xb5\xa0\x01\xfb\x2f\x63\x26\x5d\xc4\x43\xf7\x9b\xb6\x0b\xb8\x68\x51\x08\xcd\x2c\x12\xbf\xb5\x2a\xe9\x2f\x58\xd4\x28\x41\x0b\x58\x63\x2b\xf7\xc4\xc4\xa4\x66\xd9\x0a\x61\xcb\x76\x89\xc2\x30\xfd\xfe\x64\x58\xb3\x24\xb2\x79\x43\x34\x87\x97\x20\x91\x94\x6c\x86\x06\xa2\xe1\x17\xe9\x5e\x06\x2d\xdf\x42\x90\xa8\x1b\x59\xc1\xcb\x0a\x04\xcd\x85\x15\x61\x7c\xab\x86\xf6\x6a\xa9\x55\x53\x19\x74\x5d\xeb\xe3\x5f\x3b\x68\x3c\xfb\x1c\xdb\xc7\xa9\xff\xf2\xdb\x09\xcc\xfd\x08\x3f\x44\x4b\xc0\x57\xc4\x1c\xc4\x01\x8b\x04\xd4\xd4\x61\x6f\xc0\x1d\x5f\xed\x6a\xfc\xde\x75\xff\xe3\xf1\x49\x77\x11\x3d\x14\x07\x02\x98\xfa\x21\x52\xa3\xd0\xf9\xb8\xb9\xdf\x26\x2f\x7e\x7b\xd2\xff\xe6\x1a\x56\x6e\x0d\xa3\x95\xfb\x33\x56\x28\x79\x06\xbc\xd2\x28\x57\xcc\x90\xdc\x88\x4d\x6b\xf8\x80\x59\x49\x53\x5a\x48\xcc\xc1\xc8\xb0\x04\xb1\x5a\x41\xb6\x61\xbc\x9a\x82\x61\x4a\x15\xc0\x39\x71\x6b\x14\xe6\x66\xed\xc2\x42\x2a\x6b\xf3\xd4\x04\x6e\x79\x8e\xc2\xaa\x6b\x61\xf4\x35\x94\x98\x73\x76\xd0\x96\xb4\xf8\x99\x01\x23\x5a\xc4\x6d\x89\x64\x66\x59\x1b\xc9\x8f\x4f\x82\x8a\xea\x4c\xf9\x67\x32\x96\x02\xf0\xce\xf8\x2e\x7e\x7e\xd6\x7a\x2a\x07\xcf\x78\x4b\xc0\xc8\x56\xfc\xe5\xea\xea\x1d\x1c\x0b\x49\x5f\x3e\x9c\xc0\xc7\xf7\x3f\x1d\xc4\xd6\x34\x35\x78\xce\xef\xc3\xd6\x2c\x74\x23\x8b\xbe\x26\x6d\xb5\x48\xf4\x7a\x50\xdc\x1b\x69\x04\xb4\x91\xb1\x68\x3e\x80\x32\x1d\x90\x8e\x4b\x3c\xe4\xfd\xe2\x3e\x4c\xc1\x96\x43\x2e\xdf\x5d\x7c\x08\x34\xa2\x5f\x6e\xf9\x81\x49\x6c\x99\x22\x87\xe5\xce\x88\x37\x97\xe4\xf5\x18\xe7\x82\xe7\x58\x69\xbe\xe2\x28\xe1\xf8\xd5\xe5\xeb\x93\x00\x44\x32\x62\x16\xbd\x61\x64\x19\xb9\xc4\x4c\xc3\xc7\xf7\x97\x53\x78\x09\x59\xc1\x4d\xdf\xc8\x75\x24\x3e\x6c\x14\x5a\x67\xe5\xd5\xe5\xeb\xd6\xe9\x11\xb0\x32\x9e\x9b\xe1\xbf\x42\x30\xf2\x19\x9c\x3f\x76\xcb\x99\x59\x6f\x42\x77\xcd\x34\x6e\xd9\xee\xe0\x42\x9b\xc6\xc9\x42\x27\x16\xe8\xd5\xe5\x6b\xc3\x52\x66\x88\x81\x09\x1a\xaf\x8b\xf0\xa3\x11\xad\x37\x18\xf5\x4e\x20\x25\x5e\x74\x2e\x32\x35\xe5\xf5\x4a\x4d\xb9\x98\x19\x57\x06\x6b\xad\x66\x6e\x84\x53\x96\xe7\xd2\x70\x70\xb5\x9e\x8d\x32\x67\x19\xcf\x87\x8d\xf9\x3b\xa6\x37\x24\x11\x91\x6a\xad\xcd\x33\xa7\x94\x69\xd1\xbd\x42\x26\x65\xef\x88\x67\x57\x47\xc8\xdd\x28\x03\xcf\x15\x88\xaa\xd8\x41\x85\x98\x1b\xfb\xbc\x6a\x81\x73\x65\x3c\x16\x9e\x63\x58\xf2\x7b\x81\x8e\x20\x92\x01\x7b\xaa\x76\x4a\x63\xa9\xc6\x91\xc7\xcc\xd8\xd3\xe7\x87\x21\x19\x8d\xe8\x37\x49\x5b\x0f\x8a\x6c\xc6\x73\x58\x18\xa2\xf7\x5f\x11\x71\x17\x04\x63\x48\x9e\x5b\xba\x35\x55\x46\x5c\x6e\x05\xd6\x32\x18\x51\xbe\x62\x9a\xdf\xa2\x51\x51\x2d\x77\xf5\x18\xeb\x1e\x3a\x6d\xc4\xf6\x54\x8b\x99\x63\xa1\x53\xf3\xf8\x54\x54\xa7\x5b\x5c\xce\xfe\xcb\xc2\x3e\x6d\x64\xa1\xf6\xae\x80\xb7\xc6\xc6\xc5\x57\x56\xc5\x18\xb6\x64\xbc\x32\x5f\xc3\xba\x36\x92\x1f\xa4\xfd\x28\x8d\xe5\xcc\xa5\x23\x5c\x4b\xc4\xbd\xa6\xf2\xc8\x4c\x69\x3e\x9b\x1d\x4d\x0d\x4b\x30\x7d\xec\xd7\xe4\xc4\x3f\x38\x9a\x1d\x85\xef\x06\xd6\x49\xc7\xb8\x0e\x69\xcc\xfd\x50\xf7\xeb\xd0\x97\x5e\x85\x90\x99\x74\xd6\x16\x18\xac\x9d\x41\x26\xdd\xf6\x86\xed\x52\x73\xea\xdb\x19\x52\x7e\x7c\x7f\x09\x62\x15\x85\x73\x08\x6f\x2f\xae\x60\x6b\x82\x20\xfa\x45\x21\xac\x58\x51\x43\xae\xa0\x12\x1a\x98\xb1\x6b\x5a\x90\x4b\x8c\x1a\x65\xc9\x2b\xcc\xc9\x8b\x9e\x92\xd1\x9a\x24\x5a\xdb\x3a\xc5\x27\x87\x94\xe0\xc7\xf7\x97\x3d\x43\xe7\x03\xbd\x25\x53\x16\xd3\x5a\xe2\x8a\xdf\x4d\xcc\x92\xb1\x6a\x37\x85\xb7\x42\x7b\x91\xa7\xf0\xb3\x28\x4c\x33\x35\x81\x65\xa3\x61\x83\x45\xbd\x6a\x8a\x04\x9a\x69\xa5\x44\x49\xd4\x80\x8c\x29\x54\x70\x21\x24\xe0\x1d\x33\xa1\xe9\x04\x9a\x3a\x67\xda\xb0\x08\x83\xed\x46\x14\x96\x18\x99\x28\x0a\x24\x61\xf9\x26\xe1\x5a\xa7\xf2\x37\x26\xd2\x45\xa6\x78\xb1\x1b\xa5\x0c\xcc\x6c\x68\xb6\x5e\x1f\x74\xa7\x6b\x66\xea\x18\xff\x96\x15\x0d\x26\x0d\xde\xfe\xed\xea\x7c\x6e\x85\x92\x2b\x50\xa8\x8d\xad\x34\x3a\xc4\x65\x0d\x88\x77\xb0\x4a\x22\x25\x37\xa2\x0f\x6f\x13\x78\x34\x82\x21\xa8\x6f\xf4\x74\x11\x5c\xbc\x3d\x33\x31\x8c\x69\xa7\x42\x9d\xfb\x8a\xff\xdf\x72\x1a\xd2\x29\x47\xb2\x42\x8a\xb2\x4b\xbc\x49\x8a\xc3\xa0\xb6\xf4\x33\x5b\xf8\x39\xf6\x9b\x58\x2a\x2c\x3a\x44\x80\x1f\xfc\x83\xa7\x5e\x28\xa9\xa1\xf1\xde\xbb\x68\x46\xc8\x0e\x70\xf7\x1b\xe3\x9f\x76\x2d\x3b\x71\xbb\x55\xb1\x68\x3d\xd8\x51\xfc\xb3\x22\x57\xa1\x1b\x35\xda\xb4\x54\xce\xd9\x29\x49\x6c\x26\x4a\x34\x36\xd1\xea\x4b\x21\x4b\xe2\x85\x5d\x8d\x33\xd5\x2c\xa9\x05\x53\x2e\x7a\x5b\x62\x0e\x24\xee\x09\xac\xa0\xda\xf1\x16\x0b\x51\xa3\x9c\x96\xe2\x5f\xbc\x28\xd8\x54\xc8\xf5\x0c\xab\xd3\x8f\x1f\x48\xed\xcf\xfe\x8e\xcb\x99\x91\xfa\xd9\x8f\x4c\xf1\x4c\xfd\x2a\x56\xbf\xd2\xcf\x37\x97\x6f\xce\x7f\xa5\xc0\x6d\xd4\xac\x08\x77\x13\xd8\xdc\xe7\xca\xc6\x53\x9f\xf4\xbb\xa4\xab\x4f\x0b\x6b\x7a\x2c\xcc\x3f\xdd\x17\xa1\xf3\x22\x7c\xdb\xaf\x67\xff\x2e\x59\x6d\x62\x53\xcb\xcc\x42\x42\xd9\x14\x9a\xd7\x85\x5b\x36\x9b\xf8\x3b\xa4\xe1\x88\x07\x54\x97\x09\x5e\x56\xc0\xe4\x92\x6b\xc9\xe4\xee\x54\xf1\x7f\x61\x4e\xa9\x05\x97\x4e\xdb\x41\xd5\x94\x4b\x34\xc1\x92\xe3\x21\x6e\xbc\x8e\xbd\x54\xa4\xb7\x73\xf8\x44\x6d\x7f\x19\x22\xe1\xaf\x9d\x36\x83\x12\x43\x4d\x60\xd1\x19\xec\x40\xc4\xee\xe6\xf7\x1f\x0d\xd8\x5b\xa7\xd2\x8d\x3e\x2e\x5c\xb7\x8d\x1f\x14\xad\xdb\x2e\x8f\x0d\xd6\x6d\xef\x91\xb1\x7a\x60\x14\xe8\x7c\xbe\x40\xa8\xee\xa3\xae\xd8\x5b\x28\x78\x86\x95\x09\xc1\xb2\x4c\xc8\x9c\x9c\x2c\x11\xe4\x5f\xd5\xf9\x1d\x89\xbc\x6b\xa5\xda\x75\xbc\xf2\x49\xdc\x24\x62\x77\xbe\xb7\x8f\x55\x84\x31\xd5\x64\x46\xb9\xf2\x23\xe5\x07\x43\xa2\x9f\x1c\x4a\xfb\x83\x5e\x83\xd7\x65\x88\x83\xee\x53\x1a\xbf\x46\xf1\xd2\xbd\x76\x22\x05\x69\xd8\x3f\xfc\x18\x2b\x03\x1e\xef\xaf\x95\xb5\xf2\xe3\x8f\x13\x03\xd7\xfa\x41\x72\xe0\xfa\x3c\x56\x10\x5c\xf7\x91\x92\xd0\x67\x83\xdf\x41\x14\x42\x02\xc2\x44\x3c\x44\x75\xe3\x5b\x69\x2c\x81\xf6\x3a\x00\xef\x34\x4a\x43\x5c\xc5\x35\x4e\x53\xee\x8f\x19\x7f\xb9\x8b\xb3\x07\x86\xd9\x6f\x10\xa6\x21\x51\xf0\x63\x21\x32\x03\x5d\xf8\xc4\x43\xa3\x50\x2a\x88\x93\x0a\x94\xd5\x96\x7c\xcd\xcd\x68\x94\x59\x76\x9b\x2a\x46\x7c\x68\xe7\xa7\x96\xe2\x1f\xa6\x6f\x6d\x1c\x4f\xca\x36\x79\x1b\xae\x82\xef\xde\xba\xab\x2d\xb2\xb8\x0e\x02\xbd\xdd\x6e\xa7\xe5\x8e\xb6\xc3\x1c\x34\xbb\x95\x76\x8b\xd2\xd0\xfd\x54\xac\xe8\x5d\x0b\xe5\x90\xac\x9e\x3b\xfa\x18\xf2\x3d\x3a\x49\xf5\x2b\x8c\x48\x53\x2d\xee\x4d\x28\xa5\x92\x18\x63\xf5\xb5\xa4\x31\xc6\x61\x9c\x44\x46\x3d\x1e\x24\x95\x51\xbf\xc7\x4a\x66\x04\x62\xa4\x74\x0e\x2f\xfc\x17\x97\x50\xcb\xe5\x2b\x5e\xa1\xcf\x82\x95\xb5\x50\x14\x84\x4a\xb1\x63\x85\xde\xb5\x7b\xc9\xd4\x78\xcd\x6f\x51\x41\xc9\xe4\x0d\xea\xba\x60\x19\x9a\xc0\x28\x00\x6d\x2a\xa3\xd1\xf3\x38\x59\x2d\x40\x35\x35\x6d\x67\x1b\xf9\xb1\x40\x39\xaa\x83\x56\xea\xbd\x1b\xbe\xe3\xd2\xf9\x74\x78\xb2\x63\x0e\xef\x31\x43\x7e\x1b\x52\x76\x08\x4b\xac\x70\xc5\x33\xce\xe4\xce\x07\x6a\x6e\x3e\x09\xb4\x57\x8c\x38\xc3\x1b\xd5\x4c\xa2\x6e\xa3\x72\xcb\x93\x0e\xf0\x96\xeb\x4d\xf8\x35\x5d\xa3\x36\xeb\x7a\x7c\xd2\x49\xdb\x64\xa2\x2c\xb1\xca\x6d\x80\x78\x0a\x1f\x49\x0b\xb9\x0d\x32\xda\x73\x36\xaa\xb0\xc2\x6d\xa4\x80\xe0\xa2\x10\x5b\x3b\x8b\x04\x98\x4c\xa7\xc4\x15\x34\xca\xb8\x0f\xd7\x6b\xd4\x8e\x36\x7e\xd6\xef\x9a\x65\xc1\xb3\x77\x4c\x6f\x8e\x4f\xae\x27\xa4\x10\x2b\xa1\x53\x70\x36\xd7\x8a\x66\xb1\x59\x53\xe8\x68\xd4\x30\x29\xab\x75\x69\xab\x93\x15\x85\xd8\x3a\x25\xaa\x85\x8d\xdc\x3b\x31\x0c\x91\x8c\xd5\x6c\xc9\x0b\xae\x69\x2b\x89\xa2\xa1\x46\x37\x92\x56\xbd\x21\xb5\x4f\xdb\x9d\x3e\x63\xd2\x36\xdf\xab\xc9\x3c\x32\x73\x78\x15\x1a\x7f\xff\xec\x73\xb2\xda\x53\x3f\xef\xdf\xfe\x98\xf2\xc6\x1b\x1b\x38\x18\xff\xc2\x27\x64\x32\x56\x64\x4d\x61\x90\x37\xd8\xb1\x52\x34\xd6\x6d\x52\xac\x40\x17\x9e\x6b\xc9\x2a\xb5\x42\x29\x6d\x8f\x74\x11\x1c\x13\xb6\x34\x7a\x2b\x34\xc2\x29\x5c\xea\x68\xdf\x73\x89\x7a\x8b\x58\xc1\xd9\xf4\x8c\x88\xff\x7c\x7a\x96\x82\x39\xbf\x33\x5d\x2c\x47\x45\x23\x73\x05\x77\xd4\xa1\x6c\x11\xe7\x0a\xce\xa6\x7f\xf8\xce\x34\xad\x62\xb6\x85\x81\xc4\xc2\xd6\x23\x40\x3d\xfe\x17\xdc\x4d\xfb\xa2\xc2\x8a\x62\x07\x35\xca\x0c\x2b\x6d\xec\xda\x1a\xa3\xbd\x23\xbb\xdb\xaa\x51\x96\xca\x10\x65\xc9\x14\x57\x50\x0b\x5e\xe9\x4e\x2e\xa6\x02\x25\x0a\x9e\x9b\x85\x36\x41\x7b\x0e\xaa\x64\x52\x87\x52\x08\x05\xdb\x8d\x89\xb7\x33\x96\x93\x42\x17\xab\x95\xe1\x9c\xeb\x8f\x17\xfc\xee\xbb\x6f\xaf\xbb\x8c\xc3\x34\xb0\x42\x22\xcb\x77\x5e\x37\x28\x9f\x4a\x09\xe3\x87\x24\x12\x2c\x31\x63\xe6\x07\xd7\x2a\x05\x64\x02\x67\xe7\x0e\x30\x89\x60\xdc\x49\x89\xc5\x2e\xe4\xcd\xb8\xd2\x6e\xdf\x6c\x6d\x82\xbc\xa8\x75\x95\x07\xa5\x94\x0a\x49\x6d\x38\xe0\xff\x7a\x14\xc4\x0a\x6a\x89\x19\x57\xc1\xdc\x0f\xb1\x6c\xd6\xe8\x39\xd8\x99\xa6\xec\xf8\x37\x6f\xaa\x92\x3d\xe4\xd8\xb5\xb1\x32\x64\x26\x67\x86\x62\x3b\x9f\x83\x75\x6b\x3e\xe9\x09\x9c\xc4\xc2\xce\x61\xc3\xeb\xc0\x76\xe6\xc5\xf5\x96\x15\x05\xea\x6b\x9f\x86\x32\xca\x76\x02\x36\xcc\xd5\x1b\x03\x17\x0b\x85\xfd\x75\x20\xaf\x68\x5b\xa1\x84\x92\xaf\x37\x1a\xb6\xac\xa2\x84\xa7\xaa\x31\xe3\xab\xdd\xfe\x59\xdf\x5b\x69\xd0\xba\x1e\x0f\x94\xe7\x49\x4c\xcd\xc9\xd0\x20\x5d\xdb\x59\xcb\x21\x0f\x36\x6b\x34\xfc\x71\x41\x02\xf9\xec\x19\xfd\xfa\x7e\x41\x62\x39\x87\xa3\x57\x8d\xcb\xad\x45\x12\xcc\x2b\xf3\x88\xe7\x20\x59\xb5\x46\xe0\x53\x84\x4f\x67\x93\xe7\xbf\x1c\xed\x31\xb0\xe0\x1d\xa7\xa0\xa5\x17\x41\x47\xf4\x1b\x99\xf1\x17\x06\x8b\xfe\xab\xc3\x3b\xfe\x0f\xc8\x97\x78\x93\x69\x4b\xa5\x42\x87\x37\xb1\xb1\x36\x9c\xf7\xcf\x06\xe5\xce\xda\x94\xeb\xf7\xde\x20\x5f\x7b\xc3\xbb\x92\xa2\x34\xec\x13\xb9\xcf\x86\xa9\x48\xc4\xee\x6a\xcc\xb4\xd5\x93\x35\xdb\xb5\xd6\xdc\x69\x05\x9b\x12\x33\x21\x12\xb1\x8f\xf7\xd6\x47\xda\x7a\x03\xa7\x9b\xc0\x91\x92\xed\x1c\xa7\x4a\x96\xdd\x58\x3d\xc1\xab\x9c\xdf\xf2\xbc\x61\x45\x8b\x41\x97\x51\xdb\x3c\x6a\xd6\xe8\xcb\x6a\x25\xd4\x1c\x3e\x39\x02\xfd\x72\x4f\x36\xd5\x39\xcc\x03\x9d\xba\x9c\x67\x7c\x28\xc3\x33\xd6\xb8\x30\x0d\xaa\xa1\x44\x20\x2b\x0a\xe2\xb8\x56\xa9\x07\x17\xc0\x58\xe5\x25\xc2\x9a\x3c\x01\xb7\x57\xfa\x7c\x7a\x96\x80\xbd\x65\xc6\xcd\xd6\xac\x78\x45\x5c\x73\xd6\x79\x6d\x16\xdc\x9b\x04\x5e\x05\x3c\x07\x64\x20\x02\x12\xbe\xfe\x6f\xdf\x77\xda\xe5\xc6\x94\xb7\x99\x52\x28\xf5\x71\xe8\x67\xa5\x67\x02\x25\x2a\xc5\xd6\x38\x87\xa3\x0f\x76\xb2\x61\xfc\xf1\xb3\x3d\x3a\xe9\x92\xf1\xa5\x52\x7c\x6d\xf5\x98\x87\x37\x28\x44\x76\xa4\x45\xbf\x51\x27\x55\xfb\xde\x3a\xbd\x31\x3c\xca\xfb\x0d\xe6\x4a\x3b\xf1\x05\x23\x8e\x8b\xf6\xc4\x6c\xb5\x14\x46\xbc\x6e\x99\xf6\x70\xe6\x35\x64\xe7\x83\xc7\xc6\x51\x1d\x9f\x44\x2c\x75\x4f\xa6\x7e\x60\x8e\x70\x5f\x48\xd6\x8a\xd0\x57\xca\x11\xbe\xef\xd0\xe7\x50\x34\xd6\x52\xe4\x21\xb1\x58\xe8\xf5\xd8\x48\x2c\x00\x18\x19\x87\xc5\xaa\xa9\x2b\x61\x5f\xa4\xba\xc7\xda\x60\xbb\x6d\x4f\x5a\x24\x18\x25\xf2\x61\x49\xde\xc9\xb2\x18\x66\x4c\xd5\x5d\xc8\x94\x50\xa1\x69\x0b\x82\x5c\x78\xbc\xc5\x4a\x37\xe4\xfe\xc5\xb0\xda\xfd\x4b\xb5\xe5\x3a\xdb\x2c\x85\x09\xed\xbc\xed\x6a\x77\x17\x37\x96\x11\x7c\x25\xe8\xb2\x71\x60\xa9\x12\x20\x41\x2e\x10\xc8\xfc\xaa\x44\xa7\xea\xb4\xbb\xe9\xdc\xc6\x2a\x21\x56\xf3\x08\x99\xf0\x30\xb6\xa1\x43\xcc\xd3\x97\xa9\xc1\x28\x68\x1e\x8f\xf3\xb9\xbb\x0e\xb3\x9a\x5e\xce\x5c\x2c\x79\x71\xf5\x3e\x1e\xf6\x40\x42\xd7\x15\x65\xda\xd2\x88\xa8\xbc\xd8\x25\xb4\xde\x5e\x5c\x4d\x7b\x8b\xe3\xa3\x11\x0a\x35\x25\xe3\xd6\xb7\x8c\xcc\xd8\x0d\xee\x66\xd6\x27\xa9\x19\x97\x0a\x58\x21\xaa\xb5\x8d\x39\x95\x28\x5b\xb9\xa3\xc4\xef\x9d\x59\x56\xda\xcc\xa0\x71\xd9\x52\x34\x96\x89\x08\xf4\x21\x5b\x7b\x65\x1a\x25\xfb\xc0\xbd\x7a\x5f\x82\x33\x85\x9f\xf8\x0d\xc2\x8f\x2c\xbb\x59\x4b\xd1\x54\xf9\x04\xce\x77\xa8\x26\xf0\x17\xc6\x65\xa7\x18\x73\x6c\x41\x2e\x8d\xd4\x54\x39\xca\x62\x17\x76\x60\x93\x51\x27\x5e\xf1\x68\xff\x98\x08\xad\x6c\x41\x2c\x35\x81\x5a\x8a\x5b\x9e\xa3\x27\x86\xd7\x56\x04\x6c\x3f\x4e\x6e\x2b\xf3\x65\xb5\xb3\x45\xe9\x09\x5e\xae\xfa\xd4\x68\x88\x78\xbd\xd4\x46\x6c\xed\x96\xb6\x1f\xcb\x12\x7b\x6b\x5d\x67\xae\x2c\xd9\x8c\x7b\x64\xa7\x12\x18\x25\x06\x6e\xf8\x9c\x57\x4a\xb3\x2a\xc3\x09\xec\x44\x03\x19\x89\xb8\xf2\x58\x99\xa1\x18\x34\x15\xbf\x03\xcd\x4b\x54\x9a\x95\xb5\x0d\xe3\x9d\x1b\x9e\xe0\xc7\x14\x1c\xbd\x66\x1a\x8f\x68\xe2\x58\xc4\xdb\xc9\x50\x17\x4c\xaf\x84\x89\xe7\x4c\xf0\x2b\x2a\xd5\x94\xae\xc6\xca\xd2\x8e\xf6\xb1\xc9\x65\xf1\x59\x02\xe6\x76\xc1\xf6\x7b\xfa\xed\xd8\x03\x65\x36\xc6\xdc\x32\x69\x02\x43\xe3\x59\xb2\x42\x89\xa0\x1d\x6c\x2a\xb6\xd8\x39\xc9\x60\x5a\x4b\xbe\x6c\x74\x52\xeb\x92\x32\x87\x95\x96\x60\x52\x7c\xe4\x47\x68\x16\x45\x0b\x41\x51\x61\x82\x9b\xa2\x7b\xe6\xd9\xe0\xed\xc5\xd5\x37\x0a\x24\xe1\xb4\x9f\x1b\xec\xfb\xb9\xc3\x7d\xb0\x6c\x28\xa9\x09\xee\xb1\xcf\x64\x90\x2e\x93\x2e\xe0\x87\xd7\x00\xfb\xdd\xf2\x74\x0f\x3c\xbc\x8e\x39\x61\x11\xe3\x30\x10\x9b\xd8\x75\x59\x38\x9c\x46\x46\x14\xa4\xee\x48\x4d\x7a\xcf\xc7\x6b\xac\xc3\xfa\xcd\x75\x74\x1d\x68\xbf\x72\x84\x8a\x0b\xe0\x62\x49\x1b\x50\x71\xc8\xb2\x8d\xd3\x4d\xf7\x2a\x37\x75\x4f\xa6\xdc\xa2\x36\x87\x4f\xd4\x72\xcf\x26\x6e\xa7\xd1\xe0\x1a\xba\x39\x2e\x5c\xe3\x01\xa3\x6f\x3e\x69\x30\x93\xe7\xaa\x35\x20\x56\x0f\x3b\xa6\x75\x78\x1b\x24\x92\x2e\xa9\x97\x6a\xdd\x36\x6a\x3b\x27\x55\x6a\x65\xba\x2d\x53\x5a\x22\xb0\x3c\xc7\xfc\xa0\x6b\x6a\x2c\x28\xcb\x73\x02\x65\x26\x3c\xb7\x50\xef\x99\xe9\xd4\xb0\x48\x95\x1f\xeb\x7b\x2a\xa6\x52\x8f\x34\x9a\xd3\xd7\xf2\x49\x1d\x0a\xe3\x1c\x52\xdb\xf8\x41\xde\xa8\xed\xf2\x58\x57\xd4\xf6\x1e\xe9\x87\xf6\x38\xdb\x7f\xbe\x80\x13\xea\xd6\x2d\x54\x2d\x6a\xe1\x4a\xae\x8c\x30\xde\xa2\xd4\x54\xdd\x49\xef\x98\xdc\xd1\x4a\x58\x9e\xa0\xfa\xae\xb7\x17\x57\x10\x39\x28\x7e\x67\x4b\xb9\xcd\x05\x41\xea\x9b\xf4\x35\x72\x2a\x11\xf6\x47\x4c\xfc\x2a\x91\x56\x70\x16\xfe\xca\x3a\x01\x01\x1e\x99\xae\x12\xf5\x46\x84\x83\x26\xaa\x59\xad\xb8\x65\x88\x35\xbf\x25\x1f\xb5\x24\xfb\x42\x91\x9b\x58\xb9\x4c\x8e\x43\x71\x1f\xa3\x99\xf9\x58\x21\x4a\x67\xb6\x44\x3f\x69\xab\xd2\xae\x5a\xf1\x8e\x7a\xe3\x1d\x1d\xe2\xca\xdf\xb2\x12\xd5\x3c\xd9\x97\x72\x35\x58\x16\x1b\x67\xbf\x7d\x5e\xef\xda\x8c\x75\x1d\x80\xf9\xcf\x0d\xee\x1c\xb5\x98\xb4\xd6\x6e\xcb\x2a\x37\xfe\x12\x33\xa3\x15\xaf\x2d\x1e\xd7\x83\x3e\x35\x39\xd0\xcc\x74\xe8\xea\x91\x7d\xec\x6e\xf0\xb8\x12\x8e\xe3\x2d\x29\x3e\x5b\xc4\x23\x13\xf7\xdb\xa4\x3b\xcf\x4f\xb6\xcd\x2f\x3f\x9c\xcc\xfb\x0c\x39\x9b\xc1\xab\xb0\xfa\x36\xa9\xa8\x5c\x56\xd1\x4f\x29\x98\x14\xe7\xd4\xd9\x4d\x03\x2e\x5b\x27\xda\x9d\x8e\xcb\xa7\x1d\xaf\x71\xd7\xc9\x4f\x6e\x58\x95\x17\x68\x2d\x06\x11\xd9\x04\x3a\x94\xf0\xd4\x6d\xe3\x7f\x34\x2a\x1a\x9b\xf8\xc4\xc3\xa7\xa3\x03\x45\x31\x8d\x05\x37\x99\xac\xaf\x52\xfb\xdc\xcb\xbe\xdc\x18\xb4\x93\xb6\x4f\x07\xc4\xd2\x10\x75\x2a\xb1\x14\xb7\x78\x7c\x83\xbb\x39\xdc\x74\xeb\x54\xdb\x6f\xe1\xeb\x80\x85\x82\x05\x7c\xfa\xe5\x49\x6f\x7c\x02\x4f\x7c\x93\x0e\x1d\x20\xc0\xc2\xae\x90\x73\x63\x6e\x82\x07\x63\x7a\x7e\xba\xf9\xe5\x69\xc7\x81\xa9\x78\xd1\x3a\x2f\x15\x2f\x52\x6c\x3b\x36\x80\x6c\xc5\xd0\x04\x3c\x53\x5a\xc6\xb2\xbd\x4e\xba\xea\x26\xe4\xc5\x43\x06\xb3\xa7\x35\xb8\x52\x0d\xb6\x89\x4d\x77\xd4\x31\x40\xa0\xc0\xc8\x6e\xa6\x94\x74\x78\x54\xf1\x92\x17\x4c\x46\x67\x3d\x57\x6d\xe5\xa9\x51\x0e\xff\xdf\x28\x86\xe7\x67\x67\xc6\xe9\xb6\x1b\x5d\x01\x18\xaf\x8c\xc3\x6c\xb7\xec\xac\x2f\xb3\x6a\xec\x89\x4b\x9b\x53\xb7\xfb\x05\xf1\x8e\x67\xeb\x00\xbd\xb4\xe5\x03\x96\xdd\x96\xc6\xb5\x91\x14\xb8\x04\xcc\x31\xe7\x34\xad\x09\x6c\x37\x3c\xa3\x6a\xfd\xed\x86\xce\x54\xf8\x57\xfb\xf0\xb0\xa4\x34\x9c\xaa\xac\x76\x73\x75\x6c\x60\xeb\xd8\x48\xbf\x1c\x8a\xf5\xce\xed\x10\x87\xce\x77\xc6\x98\xf8\x36\x49\xe5\xae\xb6\x87\x8e\x5d\x5e\xe2\x03\xea\x09\xbc\x2b\xd8\x6e\x02\x1f\x50\x72\x54\xe9\x3e\x85\xab\xad\xb3\x67\x87\xb6\x6c\x17\x55\x56\x58\x10\x59\xc1\x94\x32\x51\x8d\xd1\x1f\x9e\x40\xa3\x62\xc9\x1f\xfa\xf3\x70\xfd\xa3\x52\xbe\x3d\xc7\x17\x69\x46\xac\x82\xa3\x17\xdf\x7a\x5e\x38\xfe\xaf\x17\xdf\xce\x9e\x9f\x9d\x9d\x1c\x51\x49\x8a\x8d\x3d\x1d\x20\xae\xe0\xc5\xb7\xf7\x44\xb8\xd4\x6a\x0e\x1f\x2f\x2b\xdd\xdd\xf7\x31\x68\x95\xec\x6e\x10\x35\x13\x88\xb9\xed\x65\xc7\xd4\xd3\x4e\xdf\xee\xb9\x4a\x9f\x70\x71\x51\xaf\x4d\xba\x14\xbc\xe4\x1a\xf3\x53\x37\x04\xe6\xc3\xd0\x46\x4c\xd9\x20\xca\x95\x79\x37\xd8\x95\x4a\x75\x48\xdc\x9a\xca\x0d\xea\xe7\x65\xfb\xb6\xe9\x2a\x13\xce\x6a\x61\x74\xc7\xb8\x53\x9a\x25\xbb\xf3\xf4\x3b\x18\x7f\xfd\x30\xe9\x50\x7c\x92\x74\x1f\x70\xa0\x0c\x6e\x83\x2a\x1c\xda\xf4\xb6\x5b\x98\xef\x17\xa6\xf5\xd3\x38\xbb\x7d\xd5\x32\x42\xc6\xaa\xa1\x44\xb6\x76\x8b\x6c\x5b\x3d\x3d\xda\xa7\xdd\x61\x54\xd0\xe7\xc6\x5a\x74\x63\xf1\xd0\xc0\x0c\x45\x68\x8e\x8c\xe2\x92\x7d\x21\xaf\x06\x46\x55\xd2\xba\xc6\xff\x46\x2d\x6d\x4f\xa4\x93\xdd\xc6\x44\x5f\x32\xaf\x31\xf7\x72\x89\xd1\x8a\x3f\x71\xa5\xe7\xf0\xc9\x61\xb6\xaf\xf2\xb6\xdf\x70\xb8\xfc\xd6\xb5\x83\x45\xe8\x32\x36\xa2\x09\xa4\xf9\x6a\x35\x4f\x1e\x81\x91\x05\x4f\xae\xf9\xc3\xaa\x9d\x5c\xa7\x47\x97\x3a\xb9\xfe\x63\xeb\x9c\x5a\x76\xeb\x4a\xe9\x97\x2a\x72\x0a\x49\x39\x7b\xf6\xc4\x19\xa3\x53\x5b\xf6\x94\x83\x42\xc9\x59\xe1\xf9\xd7\xe6\xc8\xfd\xfe\xa5\xe1\xd6\x00\xec\x9d\xed\xa8\x60\xc3\x6e\x31\xba\x68\x82\x00\xb9\x59\x90\xdb\x40\x9e\x7c\x07\x6e\xd0\x93\x01\xdc\x07\xe3\xbb\x96\x6c\x17\x4a\x73\x68\xcf\x55\xe2\xba\x31\x9e\xcc\xe5\x6b\x9b\x00\x8c\x1b\x45\xb7\x5b\xb4\x01\x97\x35\xa6\xfe\x58\xa5\x3d\x39\x37\xb5\xe7\xbb\x12\x04\xb8\x4a\xb6\x6f\x97\x08\x4d\xc5\xff\xd9\x50\x51\x8c\x3b\x82\x4b\xd6\x9b\xcc\x36\xa1\x62\xd4\x3e\x79\xe8\x4c\x7b\xa2\x1d\x52\x1e\x1f\xec\x90\xfb\xf3\x2f\xfb\xec\x66\x2c\xc9\x69\x9b\xe1\x0c\xda\x1e\x7d\x79\x40\x80\x1d\x7a\x5f\x4b\x7c\xdd\xf0\xe3\x84\xd7\x36\x7e\x90\xe8\xda\x2e\x8f\x15\x5c\xdb\x7b\xa4\xd8\xf6\x16\xfa\x4b\x0b\x6d\x5b\x3b\xec\xd2\x98\xb1\x7b\xec\x84\xd4\x26\xd2\xa2\xec\x26\x9d\xe1\x12\x7e\x3f\x9e\xf9\xae\x15\x62\xae\x6c\xd4\x78\x8b\x3e\x0b\xa1\x32\x21\x29\x76\x88\x4b\x30\x96\x8d\x06\x6e\xef\xa4\x08\x00\xa9\xd3\x52\xb4\x79\xca\x7d\xcc\xef\xf2\xe0\xfd\x23\x76\x6e\x28\x57\x51\x68\x5b\x51\x22\xfe\x40\xe6\x9d\xfa\xf9\x6a\x98\x01\xdf\xb7\x64\x77\xbc\x6c\xca\x76\x1b\x85\x3a\x1c\x70\xb8\xf6\x01\x1b\xb8\x20\x25\x46\xd5\x9e\x99\x3b\x70\x5e\x38\x84\x08\x3f\xe1\x1a\xab\x9c\xc9\xdd\x04\xce\x6b\x9e\x4d\x0c\x6d\x70\x02\x1f\xab\x4c\x94\xa5\x71\x1d\x5f\xd1\xff\x69\xac\x30\x78\x2c\x6f\x44\xdd\xd1\xa0\xf7\x98\xd2\x6e\x92\x4c\x7e\xb0\xb0\x68\xc8\x89\xb4\x0b\xb7\xb0\x6e\xe4\xb3\x67\x09\x8d\x16\xfb\x9c\xcb\x9a\x55\x3c\x3b\x3e\x7a\xe9\xf9\x21\x70\x9f\xf2\x4b\x9a\xde\xf8\x23\x24\x71\x57\xcf\x83\xec\x6b\x3d\x87\x4e\x67\x99\x61\xbf\x8f\x08\xff\x46\x99\x51\xa7\xbc\xc0\xce\xe5\x6b\x26\x73\x1d\x0a\x23\xab\x0b\xa8\xf1\xc3\x4a\x0b\xec\x8e\xcd\x63\xeb\x0a\xa8\xf7\xd8\xa2\x82\xae\xa6\xf0\x9f\x2f\xa0\x3d\xdf\x5e\x5c\x91\x02\xdd\x4a\x56\x2b\x4a\xb8\xbd\xa2\x2b\x87\xe8\x92\x2a\xbb\xe9\x72\xcd\x73\x5b\x28\x78\xdd\x34\xe6\xab\xcd\xc6\xd9\x1d\x47\xbf\x9b\x13\xe0\xf9\x34\x2b\xa3\xda\xf0\x02\x35\x42\xcd\x33\xaa\xf2\x0d\xc7\x8f\xdc\x8d\x54\xe4\x35\x0c\x5f\x47\x15\xc0\x8d\xba\x97\xca\xcf\x61\xbf\x1f\xc1\xf3\xe0\x43\xec\x6b\x62\xe6\x76\xb0\x91\xcb\x81\xcd\xd3\xcb\xbc\xa6\xfe\xfa\x98\xbd\xfd\xb0\x2d\xcf\xef\xf6\x8d\x8f\x0b\xec\xed\xdf\x66\xbc\x5e\x33\xcd\xe6\x66\xc6\xaf\x92\x47\xa3\xba\x7a\xe4\xd3\xde\x87\x70\x0f\x15\x1b\x71\x39\xcd\xde\xd6\x3e\x1f\xe9\xf6\x3a\x0e\x5e\xa5\xc4\x73\x08\x41\x7a\xf2\xc2\xac\xc7\x9e\x57\x6e\x15\x60\xdf\x32\xa4\xad\x23\xda\xf7\x7a\xc4\xc4\x4f\x7b\xa5\x14\x87\x21\x92\xef\xed\x10\xd0\x1b\x24\x74\xda\xad\xad\x87\x89\xc9\xdb\xb9\x33\xaa\x43\x53\xff\x7c\x38\x60\xcd\xe9\xb4\x5c\xff\x05\x11\x74\x41\x74\x1d\xd0\xf8\x0e\xe7\xb0\x47\xdc\x6f\x12\xd3\x71\x11\x53\xb5\xdf\xb4\x43\xbc\x45\x87\x9a\xf7\x76\x08\x88\xf4\x9e\xf5\xbb\xb5\xc4\x5b\x0c\x94\x76\xc2\xb8\xcd\xd7\xbd\x46\xcc\x1d\xf6\x22\xc6\xdd\x67\xb3\x8c\xce\xb8\x72\x69\x0a\x9e\xff\x2e\x16\xcd\x6b\xb7\x71\x96\xcc\xb5\x3e\x6e\x95\xd9\xe4\x01\x46\xad\xaf\x49\x29\x0a\x5b\xe9\x9f\xc7\x18\x35\xd7\xdb\x58\xb5\xd8\x28\xfa\xee\x83\xf9\x35\x6f\x99\x6c\x9b\xa7\xc0\xd4\x53\x8f\x45\xb4\x4e\x5d\x43\xe6\x67\xd9\x57\x25\x3c\xef\xab\x91\x79\x8a\xb7\x79\x34\xa8\x50\xba\xda\x21\xba\x4c\x2c\x06\x70\x32\x5e\xbf\x74\x8e\x91\xdd\x03\xa5\xa7\x6f\x88\x73\xed\x82\xa6\x7a\x67\x24\x94\xa0\x84\x86\x01\x1d\x9e\x57\xac\x99\x3c\x8c\xb6\x0a\xf3\x9e\x8e\x4e\xdc\xda\x5e\x6e\x7f\x27\xe9\xd2\x2a\xb1\x03\xf1\x9c\xad\xe0\x6e\x83\x39\x77\xc7\x08\x5d\x4e\xe5\x2e\x0a\xd5\x92\xe3\x2d\x0e\x97\x9b\xdc\x77\x2a\xd4\x3a\xd9\x4d\x0d\xac\x73\x58\xd3\xa6\xb0\x6b\x29\x8c\x36\x08\xf0\xcc\x90\x6c\x6d\x07\xb5\x25\x81\xed\x11\xa5\x31\x47\xd4\x7a\x2b\xd9\x89\xfd\xec\xfd\x4c\x55\x18\xc7\x5f\xfc\xc2\x95\x3f\xb3\x2d\xfd\x89\xb1\x90\x94\xb1\x77\x74\xed\xdf\x78\x70\xb0\xde\xb9\x6b\x8c\xc2\x8f\xce\xcd\x50\x76\x36\x54\x12\x6a\x37\x9e\xca\x46\x51\xc6\xb5\xe0\xd5\x8d\x1d\xcc\x2d\xc7\xc0\xc4\xc3\x56\x85\xcf\x7e\x41\xd8\xa2\xca\x8a\x86\x0e\xb1\x87\x43\x81\x34\x11\x7f\xda\xcf\x6d\x95\x39\x89\xb1\x2e\x67\xfb\x72\xef\x9c\xea\x50\xab\x19\xd7\x6d\xf6\x43\xd4\xc1\x13\x7a\xd1\x22\xfb\x1b\xe2\xec\xcc\x72\xaf\x93\x2d\xf8\x04\x5a\x25\xdc\xd9\x47\xac\x34\xd7\xfe\x0a\x5d\xbc\xe3\x4a\x4f\x80\x6b\xa8\x04\x18\x4f\x19\x65\x1b\xbd\x2d\x6d\x59\xa2\xe4\x3e\x83\x16\x65\x09\xc3\x1c\x0f\x4c\xb1\xe5\x96\x39\x50\xcd\x56\x3a\x45\x33\xab\x4e\x0d\xb0\x5b\x2e\x97\x3b\x67\x2b\x21\x09\x57\xbb\xe7\x53\xb7\xab\x7c\x60\xe0\x9f\x08\x8c\xdd\xe9\xed\x0f\x7c\x11\x0a\x3f\xec\xd1\xac\x42\x6c\x95\x3d\xae\xe8\x92\x01\xac\x02\x2c\x6b\xbd\xeb\x4a\x95\x27\xb8\x99\xbf\xe7\x61\x62\xe0\x04\xbc\x67\xa5\x7b\x8e\x50\xd1\xce\xca\xb9\x19\x22\x26\xd1\xaa\xa9\x8e\x4f\xe6\xf0\xa7\xcf\xdd\x1b\x92\xa7\x6d\xab\xc3\x77\x7b\xee\x93\x98\x54\xc7\x0d\xf3\xe0\x50\x9b\xee\x22\x0e\xb5\xe9\xd2\xbb\xa3\xd4\x87\xa6\xeb\x17\x61\xec\xb4\x83\xba\x1d\x75\x20\xaa\x8b\xd6\x94\xab\x0f\xf6\xae\x9a\x63\xb1\xb2\x38\x7e\xff\xec\xde\x01\x8d\x13\x30\x87\x23\xa7\x59\x48\x02\xbd\x4e\x61\xe0\xef\xbd\x11\x2b\xb8\x07\x46\x2b\x27\xd3\x83\x07\xab\xa2\x55\x5b\x44\xdf\xfb\x0d\xdb\x85\x5b\xb4\x5f\xf7\x35\x6b\x71\x59\x74\x1f\xec\xeb\xd2\xd2\x6c\xd1\x7d\x30\xe0\xf6\x0e\xad\xec\xe2\xde\xf5\x1e\xeb\xbc\xf6\x8d\x0d\xe5\x61\xb6\xfe\x7c\x14\x55\xe7\xfb\xca\xcd\x8a\x16\x28\x0f\xa5\x16\xff\x99\x0c\x4d\x1f\xc5\xd1\x2e\x6e\xc7\x23\x7a\x48\xde\xa6\x1f\xc7\x3d\x32\x85\xd3\x03\x34\x32\x9b\x73\x9f\x1b\xe0\x3f\x5f\x3e\x2d\xbe\xc7\x8d\x72\x55\xeb\x74\x72\xd6\x2b\xde\x6f\xa2\xeb\x5f\xdb\xfb\x2b\x46\xb9\x53\x36\xf5\x53\x81\xbf\xc1\x82\x0c\x7c\x80\x46\x77\x56\xf3\x4c\x79\x5b\xdc\x33\x0f\xce\xd3\x59\xa2\xb1\xa6\x06\xe0\x03\x7d\xaa\xde\xc5\xba\xb3\x19\xbc\x65\x65\xcf\x4c\x12\xfa\xdb\x0d\x56\xde\xf3\xb7\x15\x77\x6e\xf8\xee\xa5\x1d\xdd\xa1\xef\x3d\xb2\xf0\x3a\x4a\x9d\x0e\x8d\x3a\x44\x24\xef\x3f\x8d\x19\xf8\xc0\x95\xdd\xe1\x22\x08\x7b\x65\x00\xf9\x1d\xee\x2e\x15\x1a\x8a\x0e\xd8\xc7\x7c\xe0\x8f\x83\x8c\x1c\x7e\x5c\x22\x2b\xc1\xe8\xc3\x3f\x1b\x26\xd1\xd5\x00\xd8\x6b\xfa\x3a\x57\x1f\x8e\x1c\x5b\x11\xa0\xcb\x92\x6a\x2e\xd2\xb1\xe9\x9a\xa6\x64\xd4\x1f\x59\x55\xa1\x4c\x46\x0d\x37\x23\xb4\x83\x4d\xba\x2e\x35\xed\xde\x30\x2a\x9a\x82\x0a\x99\x84\xe7\xdf\x9e\x9d\xdd\xfd\xf7\x1f\xce\xf6\xa3\xb5\xa4\x91\x46\xa2\xf5\x41\x64\xdc\x2d\x8e\xb2\x64\xa0\x2a\xf5\x14\xab\x6f\x14\x28\xdb\x6e\x23\x4a\xac\xd9\x1a\x93\x42\x1d\x78\x27\xdc\x85\xc6\x54\xd1\x57\xda\x3b\x25\x8f\xe8\xcc\xc8\x5a\xb2\xf2\x68\x02\x47\x7a\xcb\xb5\x46\x69\xbe\xe6\x5c\x65\x42\xe6\x47\x07\x0e\xe1\xd8\x11\x55\x54\xd9\xb9\x77\x79\x7f\xd7\x0b\xd2\xc7\x71\x58\xda\xe7\x10\x67\xa4\xad\x0f\x2d\x58\x07\xf6\x43\xe8\xe2\x3b\xfd\xae\x77\xb9\x3f\x20\x11\x17\x11\x06\x16\x31\x99\xfa\x4d\x23\xaa\xd0\xe5\x8b\xe1\xd7\x00\x54\x4b\x12\x03\xd1\x7e\x7b\x9c\x53\x12\xdf\x2a\x3f\xec\x97\x38\xb7\x24\x40\xfb\x8a\xfe\xc9\xa3\x7c\x93\x47\xdc\x44\x3f\x98\x32\xfe\x22\x1e\xca\x83\xee\xa8\x3f\x60\x57\xfd\xe7\xf1\x7e\x0a\xc4\x49\x1a\x6b\x9a\xa2\xbb\x71\x97\x3b\x78\x65\x2f\x07\x39\x75\x57\x20\xd7\xbe\x9a\x46\x0b\x77\x03\x91\xad\x05\x8f\x5c\x15\x7b\xb9\xc8\xa9\xbd\xd3\xc2\xc4\x12\xa7\x05\xde\x62\xd1\x56\x8b\x27\x97\xea\x9d\xff\xfc\xe6\x34\x13\x65\xcd\x34\xa9\x52\x6b\x11\xa3\x5a\xdd\x0f\x78\x8b\x92\x15\x70\xfe\xfe\x55\x48\x5f\x28\xf7\x27\x38\xce\xdf\xbf\x7a\x71\x36\x31\xff\xfd\x9f\x17\xcf\xdd\xa5\xba\xde\xd1\x0a\x47\xfc\xd4\xae\x5c\x8a\xc0\xaa\xfe\xd8\x42\x8b\x3e\x53\x0a\xed\xb1\xa7\x2d\x16\x85\xf9\xbf\x9d\xc2\xb3\xe1\x09\xc4\x85\xfa\x70\x4d\x4d\x3e\xbe\xbf\x3c\x6e\x78\xa5\x5f\xfc\xe1\xbb\x13\xb7\x4b\xe7\xc1\x98\x57\x27\xd7\xee\x38\x84\x9a\x46\xa4\xc6\x8a\x2d\xe3\x5b\xfe\x1d\xad\x87\x88\x1c\x6a\xee\xc5\xb6\x8a\x2e\x70\xd9\x50\x46\x04\x77\xee\x52\x99\x82\xdf\xb4\xa2\xd4\xa9\xd1\xf7\xb7\x13\xdb\xf2\x29\xf2\xba\x96\x92\xe7\x6b\x6b\x70\xcf\x7f\x7e\x73\xd0\xc9\x3b\xff\xf9\xcd\x8f\xb6\x87\x57\xbd\x87\x4a\x94\x89\xb6\x71\x8b\x07\x3b\x72\xae\x14\x83\xd6\xf0\xe1\x50\x6d\xbf\xfd\x70\xed\x55\xcf\x2d\x50\x38\x75\x3e\x00\xab\x7c\xc1\x89\x3d\x59\x62\xf9\xc1\xb2\x81\x90\x69\x9e\x24\xe2\x10\x03\x2f\xc7\x1a\x2b\xe2\x6e\x51\x45\x97\x46\xb7\x67\x25\x94\x57\x7f\xf9\x14\x2e\x75\x9a\xa9\xeb\xe5\x16\x5b\xd5\x79\xfe\xf3\x9b\xfe\x5f\x8a\xb2\xa5\x6b\xc4\x05\x66\x79\xd3\xcb\x12\xa0\x96\x58\x33\x89\xb0\x13\x8d\x2d\x30\xfd\x46\x39\x01\xd3\x98\x77\x4f\xde\x76\x4b\x43\x92\x52\x72\x7b\x51\xd0\x4e\x34\xa4\x1e\xb2\x8d\xa0\x58\x46\x80\x66\x37\x08\x2c\xbf\x65\xf6\x9a\x22\xb1\x02\x51\xd1\x1f\xb0\x48\x40\xb5\xf5\xfd\x4c\x85\x8b\xfb\x4d\xa8\x43\xf5\xae\x42\xe9\xc0\xf9\x6f\x2f\xae\xd4\x24\x8c\x43\xe7\x52\xed\x60\x1d\x92\x47\x7e\x2b\x4d\x8e\x56\xef\x1b\x15\x9f\x48\xb1\x37\xb7\xd3\x1d\x28\xfe\xa2\x0a\x23\x77\x54\x74\xc3\xd2\x2a\x57\x77\xc1\xfe\x85\xfd\x6b\x0b\xc4\xeb\x74\x97\x90\x53\x51\x64\x10\xdb\x3f\x26\x00\x2f\x0b\x32\xf5\x46\x1f\x16\x3b\xc2\x36\x9d\x2d\xdb\xb9\x22\x3e\xe3\xbd\x12\x7a\xf6\x74\x6b\xab\x00\x5b\xa4\xfc\xe1\xde\xbf\x7e\xf8\xdb\x5b\x57\x4a\x93\x00\xa3\xf6\xc6\xc3\x88\xff\xe0\x8f\x3b\x97\x64\xa1\x3a\x82\x47\xd0\xdd\xb1\x72\xee\xce\x10\x27\xf0\xac\xa3\x18\xb1\xe0\x28\x39\x6a\x24\xef\x5f\xaf\x3c\x70\xdc\x36\x95\xb7\x49\xdc\xef\xe1\xae\x98\x13\xfa\x45\xac\xc1\x93\x06\x8d\xe4\xf4\x57\x3a\x78\xdf\xef\xf9\xed\xc9\xff\x04\x00\x00\xff\xff\x12\xa7\x70\x7e\xbe\x6d\x00\x00" +var _metadataviewsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xc4\x7d\x7f\x73\xdb\x38\xb2\xe0\xff\xf9\x14\x1d\xbf\xaa\x8c\x7d\x27\x4b\x4e\xde\xec\xdc\x9d\x6a\xb4\xf3\x32\x89\xbd\xeb\x57\x93\x6c\x2a\x71\x66\xaf\x2a\x35\x35\x86\xc8\x96\x84\x35\x49\x70\x01\xd0\xb2\x36\x35\xdf\xfd\x15\x1a\x3f\x08\x90\x94\x45\x7b\x32\x1b\xfd\x91\x48\x24\xd0\x68\x34\xfa\x37\x1a\x30\x2f\x6b\x21\x35\x1c\x5d\x34\xd5\x9a\x2f\x0b\xbc\x12\x37\x58\x1d\x3d\xf1\x8f\xdf\x8a\x6a\xcf\x9b\x9f\x39\x6e\xdf\xa3\x12\xc5\x2d\xca\xa3\x27\x4f\x66\xb3\x19\x5c\x6d\xb8\x82\x4c\x54\x5a\xb2\x4c\x03\x2f\xeb\x02\x4b\xac\xb4\x02\xbd\x41\x28\x51\xb3\x9c\x69\x06\x4a\xb3\x2a\x67\x32\x87\x5a\x8a\x5a\x28\xcc\xa9\x2f\xaf\xe0\xe2\xa7\xcb\x77\xa7\x67\xdf\xfd\xe7\x77\x53\xf3\x84\x9e\xbe\xc7\xd5\x1c\x36\x5a\xd7\x6a\x3e\x9b\xad\xb9\xde\x34\xcb\x69\x26\xca\x99\xa8\x56\x85\xd8\xce\x56\x05\xaf\xd5\x6c\x59\x88\xe5\xac\x64\xbc\x9a\xb1\xba\x2e\x78\xc6\x34\x17\xd5\xec\xc5\xd9\x8b\xe7\x67\xff\xef\xf9\x77\xa7\xd5\x4a\x9f\xfa\xc1\xa7\x65\x1e\x60\x7f\xd0\xb2\xc9\xb4\x02\x56\xe5\x20\x51\x89\x46\x66\xa8\x20\x63\x55\x8b\x39\x88\x0a\x41\x48\x28\x85\x44\xea\x13\x26\xa1\x77\x35\xaa\x09\x64\xac\x28\x30\x87\x5b\x8e\x5b\x35\x85\x73\x96\x6d\xe8\x3b\xbd\x06\x89\xb5\x44\x65\x08\x40\x7d\x19\xe4\x7c\xb5\x42\x69\xe0\xde\xf0\x2a\x07\xb1\x0a\xf0\x26\xa0\x9a\x6c\x03\x4c\x01\x83\x4c\x22\xd3\x42\xc2\x92\x8b\xb5\x64\xf5\x66\x47\xbd\x85\x04\x06\xff\xfd\xee\xfc\x2f\xc0\x4b\xb6\x46\x58\xf1\x02\x2d\x9d\x58\x96\xa1\x52\xc7\xac\x28\x4e\x5a\xe2\xbf\x71\x80\xcd\x2a\x29\xf8\xfc\xe4\x09\x00\x80\x81\xf3\x9a\xab\xba\x60\x3b\xe0\x66\xa8\x25\x53\x3c\x73\x18\x6f\x98\x06\x5e\x65\x45\x93\xa3\x5d\xb0\x8a\x95\x38\x81\x1c\x55\x26\x79\x6d\x48\x6a\x28\x15\xe0\xe8\x4d\x53\x2e\x2b\xc6\x0b\x58\x19\xd4\x2a\x10\xcb\x7f\x60\xa6\xa7\xf0\x46\x28\xed\x7e\x28\x50\x1b\xd1\x14\x79\x44\x50\x6d\x58\xc4\x0c\x38\xf5\x90\xe8\xff\x78\x0e\x8a\xd6\x25\x20\xea\x70\xf7\xe3\x5e\x39\xcc\x0c\xf5\x0c\x96\x6e\xd8\xb8\x4d\xa7\x3d\x57\xb0\xe2\x58\xe4\xb0\xe5\x45\x01\x4b\x84\xdc\x42\xc6\xdc\x30\x5d\xc1\x95\xe3\x01\xbd\x41\x89\x2b\x21\xd1\x61\x9d\x80\x59\xd2\x53\xa9\xcd\x4c\x33\x51\x65\x5c\xe1\xf0\x98\xf1\x4c\x0a\xd4\x84\xeb\xdc\xf0\x1a\xaf\xd6\xe9\x4c\x5e\xc2\x56\x72\xad\xb1\x4a\x68\xfc\x85\xa6\xc5\x20\x47\xcd\xb8\x67\xce\x14\xec\x24\x01\xa5\x04\x31\xfd\x12\x89\xcd\xe1\x16\xe5\x52\x28\x84\x63\x9c\xae\xa7\xc0\xa0\x66\x92\x11\x1f\x02\xaf\x94\x46\x46\x7c\xcb\x40\xf1\x6a\x5d\x20\x14\xbc\xc2\x93\x71\x94\x88\x66\xb9\x8f\x20\xaa\x64\x45\x11\xb1\x56\x90\x20\xf6\x48\xda\x38\xfe\x5b\x22\x30\xd8\xe2\xf2\x74\x25\x39\x56\x79\xb1\x23\xf1\x81\x63\x3e\x45\x92\xa9\x09\xbc\x7b\xfb\x97\x93\x04\x08\xc9\x83\xa3\x4b\x9f\x61\x26\x66\xe2\x37\x50\x4b\x24\xd1\x9f\x00\xea\x6c\x1c\x15\xc2\xe4\xe6\xf0\xf9\x82\x17\xf8\x5b\x4b\x03\x5a\x28\x5e\x71\x7d\x1c\x1e\x99\x4f\xcc\x41\x93\xe4\xcd\x00\x45\xd3\x06\xfd\xc1\xfc\x9b\x13\xf8\x9c\xb4\x54\x58\xac\xa6\x24\x57\x0b\x1a\xb0\xff\x32\x66\xd2\x45\x3c\x74\xbf\x69\xbb\x80\x8b\x16\x85\xd0\xcc\x22\xf1\x5b\xab\x92\xfe\x8a\x45\x8d\x12\xb4\x80\x35\xb6\x72\x4f\x4c\x4c\x6a\x96\xad\x10\xb6\x6c\x97\x28\x0c\xd3\xef\xbf\x0c\x6b\x96\x44\x36\x6f\x88\xe6\xf0\x12\x24\x92\x92\xcd\xd0\x40\x34\xfc\x22\xdd\xcb\xa0\xe5\x5b\x08\x12\x75\x23\x2b\x78\x59\x81\xa0\xb9\xb0\x22\x8c\x6f\xd5\xd0\x5e\x2d\xb5\x6a\x2a\x83\xae\x6b\x7d\xfc\x6b\x07\x8d\x67\x9f\x63\xfb\x38\xf5\x5f\x7e\x3b\x81\xb9\x1f\xe1\x87\x68\x09\xf8\x8a\x98\x83\x38\x60\x91\x80\x9a\x3a\xec\x0d\xb8\xe3\xab\x5d\x8d\xdf\xbb\xee\x7f\x3e\x3e\xe9\x2e\xa2\x87\xe2\x40\x00\x53\x3f\x44\x6a\x14\x3a\x1f\x37\xf7\xdb\xe4\xc5\x6f\x4f\xfa\xdf\x5c\xc3\xca\xad\x61\xb4\x72\x7f\xc1\x0a\x25\xcf\x80\x57\x1a\xe5\x8a\x19\x92\x1b\xb1\x69\x0d\x1f\x30\x2b\x69\x4a\x0b\x89\x39\x18\x19\x96\x20\x56\x2b\xc8\x36\x8c\x57\x53\x30\x4c\xa9\x02\x38\x27\x6e\x8d\xc2\xdc\xac\x5d\x58\x48\x65\x6d\x9e\x9a\xc0\x2d\xcf\x51\x58\x75\x2d\x8c\xbe\x86\x12\x73\xce\x0e\xda\x92\x16\x3f\x33\x60\x44\x8b\xb8\x2d\x91\xcc\x2c\x6b\x23\xf9\xf1\x49\x50\x51\x9d\x29\xff\x4c\xc6\x52\x00\xde\x19\xdf\xc5\xcf\xcf\x5a\x4f\xe5\xe0\x19\x6f\x09\x18\xd9\x8a\xbf\x5e\x5d\xbd\x83\x63\x21\xe9\xcb\x87\x13\xf8\xf8\xfe\xa7\x83\xd8\x9a\xa6\x06\xcf\xf9\x7d\xd8\x9a\x85\x6e\x64\xd1\xd7\xa4\xad\x16\x89\x5e\x0f\x8a\x7b\x23\x8d\x80\x36\x32\x16\xcd\x07\x50\xa6\x03\xd2\x71\x89\x87\xbc\x5f\xdc\x87\x29\xd8\x72\xc8\xe5\xbb\x8b\x0f\x81\x46\xf4\xcb\x2d\x3f\x30\x89\x2d\x53\xe4\xb0\xdc\x19\xf1\xe6\x92\xbc\x1e\xe3\x5c\xf0\x1c\x2b\xcd\x57\x1c\x25\x1c\xbf\xba\x7c\x7d\x12\x80\x48\x46\xcc\xa2\x37\x8c\x2c\x23\x97\x98\x69\xf8\xf8\xfe\x72\x0a\x2f\x21\x2b\xb8\xe9\x1b\xb9\x8e\xc4\x87\x8d\x42\xeb\xac\xbc\xba\x7c\xdd\x3a\x3d\x02\x56\xc6\x73\x33\xfc\x57\x08\x46\x3e\x83\xf3\xc7\x6e\x39\x33\xeb\x4d\xe8\xae\x99\xc6\x2d\xdb\x1d\x5c\x68\xd3\x38\x59\xe8\xc4\x02\xbd\xba\x7c\x6d\x58\xca\x0c\x31\x30\x41\xe3\x75\x11\x7e\x34\xa2\xf5\x06\xa3\xde\x09\xa4\xc4\x8b\xce\x45\xa6\xa6\xbc\x5e\xa9\x29\x17\x33\xe3\xca\x60\xad\xd5\xcc\x8d\x70\xca\xf2\x5c\x1a\x0e\xae\xd6\xb3\x51\xe6\x2c\xe3\xf9\xb0\x31\x7f\xc7\xf4\x86\x24\x22\x52\xad\xb5\x79\xe6\x94\x32\x2d\xba\x57\xc8\xa4\xec\x1d\xf1\xec\xea\x08\xb9\x1b\x65\xe0\xb9\x02\x51\x15\x3b\xa8\x10\x73\x63\x9f\x57\x2d\x70\xae\x8c\xc7\xc2\x73\x0c\x4b\x7e\x2f\xd0\x11\x44\x32\x60\x4f\xd5\x4e\x69\x2c\xd5\x38\xf2\x98\x19\x7b\xfa\xfc\x30\x24\xa3\x11\xfd\x26\x69\xeb\x41\x91\xcd\x78\x0e\x0b\x43\xf4\xfe\x2b\x22\xee\x82\x60\x0c\xc9\x73\x4b\xb7\xa6\xca\x88\xcb\xad\xc0\x5a\x06\x23\xca\x57\x4c\xf3\x5b\x34\x2a\xaa\xe5\xae\x1e\x63\xdd\x43\xa7\x8d\xd8\x9e\x6a\x31\x73\x2c\x74\x6a\x1e\x9f\x8a\xea\x74\x8b\xcb\xd9\x7f\x58\xd8\xa7\x8d\x2c\xd4\xde\x15\xf0\xd6\xd8\xb8\xf8\xca\xaa\x18\xc3\x96\x8c\x57\xe6\x6b\x58\xd7\x46\xf2\x83\xb4\x1f\xa5\xb1\x9c\xb9\x74\x84\x6b\x89\xb8\xd7\x54\x1e\x99\x29\xcd\x67\xb3\xa3\xa9\x61\x09\xa6\x8f\xfd\x9a\x9c\xf8\x07\x47\xb3\xa3\xf0\xdd\xc0\x3a\xe9\x18\xd7\x21\x8d\xb9\x1f\xea\x7e\x1d\xfa\xd2\xab\x10\x32\x93\xce\xda\x02\x83\xb5\x33\xc8\xa4\xdb\xde\xb0\x5d\x6a\x4e\x7d\x3b\x43\xca\x8f\xef\x2f\x41\xac\xa2\x70\x0e\xe1\xed\xc5\x15\x6c\x4d\x10\x44\xbf\x28\x84\x15\x2b\x6a\xc8\x15\x54\x42\x03\x33\x76\x4d\x0b\x72\x89\x51\xa3\x2c\x79\x85\x39\x79\xd1\x53\x32\x5a\x93\x44\x6b\x5b\xa7\xf8\xe4\x90\x12\xfc\xf8\xfe\xb2\x67\xe8\x7c\xa0\xb7\x64\xca\x62\x5a\x4b\x5c\xf1\xbb\x89\x59\x32\x56\xed\xa6\xf0\x56\x68\x2f\xf2\x14\x7e\x16\x85\x69\xa6\x26\xb0\x6c\x34\x6c\xb0\xa8\x57\x4d\x91\x40\x33\xad\x94\x28\x89\x1a\x90\x31\x85\x0a\x2e\x84\x04\xbc\x63\x26\x34\x9d\x40\x53\xe7\x4c\x1b\x16\x61\xb0\xdd\x88\xc2\x12\x23\x13\x45\x81\x24\x2c\xdf\x24\x5c\xeb\x54\xfe\xc6\x44\xba\xc8\x14\x2f\x76\xa3\x94\x81\x99\x0d\xcd\xd6\xeb\x83\xee\x74\xcd\x4c\x1d\xe3\xdf\xb2\xa2\xc1\xa4\xc1\xdb\xbf\x5d\x9d\xcf\xad\x50\x72\x05\x0a\xb5\xb1\x95\x46\x87\xb8\xac\x01\xf1\x0e\x56\x49\xa4\xe4\x46\xf4\xe1\x6d\x02\x8f\x46\x30\x04\xf5\x8d\x9e\x2e\x82\x8b\xb7\x67\x26\x86\x31\xed\x54\xa8\x73\x5f\xf1\xff\x2e\xa7\x21\x9d\x72\x24\x2b\xa4\x28\xbb\xc4\x9b\xa4\x38\x0c\x6a\x4b\x3f\xb3\x85\x9f\x63\xbf\x89\xa5\xc2\xa2\x43\x04\xf8\xc1\x3f\x78\xea\x85\x92\x1a\x1a\xef\xbd\x8b\x66\x84\xec\x00\x77\xbf\x31\xfe\x69\xd7\xb2\x13\xb7\x5b\x15\x8b\xd6\x83\x1d\xc5\x3f\x2b\x72\x15\xba\x51\xa3\x4d\x4b\xe5\x9c\x9d\x92\xc4\x66\xa2\x44\x63\x13\xad\xbe\x14\xb2\x24\x5e\xd8\xd5\x38\x53\xcd\x92\x5a\x30\xe5\xa2\xb7\x25\xe6\x40\xe2\x9e\xc0\x0a\xaa\x1d\x6f\xb1\x10\x35\xca\x69\x29\xfe\xc5\x8b\x82\x4d\x85\x5c\xcf\xb0\x3a\xfd\xf8\x81\xd4\xfe\xec\xef\xb8\x9c\x19\xa9\x9f\xfd\xc8\x14\xcf\xd4\xaf\x62\xf5\x2b\xfd\x7c\x73\xf9\xe6\xfc\x57\x0a\xdc\x46\xcd\x8a\x70\x37\x81\xcd\x7d\xae\x6c\x3c\xf5\x49\xbf\x4b\xba\xfa\xb4\xb0\xa6\xc7\xc2\xfc\xd3\x7d\x11\x3a\x2f\xc2\xb7\xfd\x7a\xf6\xef\x92\xd5\x26\x36\xb5\xcc\x2c\x24\x94\x4d\xa1\x79\x5d\xb8\x65\xb3\x89\xbf\x43\x1a\x8e\x78\x40\x75\x99\xe0\x65\x05\x4c\x2e\xb9\x96\x4c\xee\x4e\x15\xff\x17\xe6\x94\x5a\x70\xe9\xb4\x1d\x54\x4d\xb9\x44\x13\x2c\x39\x1e\xe2\xc6\xeb\xd8\x4b\x45\x7a\x3b\x87\x4f\xd4\xf6\x97\x21\x12\xfe\xda\x69\x33\x28\x31\xd4\x04\x16\x9d\xc1\x0e\x44\xec\x6e\x7e\xff\xd6\x80\xbd\x75\x2a\xdd\xe8\xe3\xc2\x75\xdb\xf8\x41\xd1\xba\xed\xf2\xd8\x60\xdd\xf6\x1e\x19\xab\x07\x46\x81\xce\xe7\x0b\x84\xea\x3e\xea\x8a\xbd\x85\x82\x67\x58\x99\x10\x2c\xcb\x84\xcc\xc9\xc9\x12\x41\xfe\x55\x9d\xdf\x91\xc8\xbb\x56\xaa\x5d\xc7\x2b\x9f\xc4\x4d\x22\x76\xe7\x7b\xfb\x58\x45\x18\x53\x4d\x66\x94\x2b\x3f\x52\x7e\x30\x24\xfa\xc9\xa1\xb4\x3f\xe8\x35\x78\x5d\x86\x38\xe8\x3e\xa5\xf1\x6b\x14\x2f\xdd\x6b\x27\x52\x90\x86\xfd\xc3\x8f\xb1\x32\xe0\xf1\xfe\x5a\x59\x2b\x3f\xfe\x38\x31\x70\xad\x1f\x24\x07\xae\xcf\x63\x05\xc1\x75\x1f\x29\x09\x7d\x36\xf8\x03\x44\x21\x24\x20\x4c\xc4\x43\x54\x37\xbe\x95\xc6\x12\x68\xaf\x03\xf0\x4e\xa3\x34\xc4\x55\x5c\xe3\x34\xe5\xfe\x98\xf1\x97\xbb\x38\x7b\x60\x98\xfd\x06\x61\x1a\x12\x05\x3f\x16\x22\x33\xd0\x85\x4f\x3c\x34\x0a\xa5\x82\x38\xa9\x40\x59\x6d\xc9\xd7\xdc\x8c\x46\x99\x65\xb7\xa9\x62\xc4\x87\x76\x7e\x6a\x29\xfe\x61\xfa\xd6\xc6\xf1\xa4\x6c\x93\xb7\xe1\x2a\xf8\xee\xad\xbb\xda\x22\x8b\xeb\x20\xd0\xdb\xed\x76\x5a\xee\x68\x3b\xcc\x41\xb3\x5b\x69\xb7\x28\x0d\xdd\x4f\xc5\x8a\xde\xb5\x50\x0e\xc9\xea\xb9\xa3\x8f\x21\xdf\xa3\x93\x54\xbf\xc2\x88\x34\xd5\xe2\xde\x84\x52\x2a\x89\x31\x56\x5f\x4b\x1a\x63\x1c\xc6\x49\x64\xd4\xe3\x41\x52\x19\xf5\x7b\xac\x64\x46\x20\x46\x4a\xe7\xf0\xc2\x7f\x71\x09\xb5\x5c\xbe\xe2\x15\xfa\x2c\x58\x59\x0b\x45\x41\xa8\x14\x3b\x56\xe8\x5d\xbb\x97\x4c\x8d\xd7\xfc\x16\x15\x94\x4c\xde\xa0\xae\x0b\x96\xa1\x09\x8c\x02\xd0\xa6\x32\x1a\x3d\x8f\x93\xd5\x02\x54\x53\xd3\x76\xb6\x91\x1f\x0b\x94\xa3\x3a\x68\xa5\xde\xbb\xe1\x3b\x2e\x9d\x4f\x87\x27\x3b\xe6\xf0\x1e\x33\xe4\xb7\x21\x65\x87\xb0\xc4\x0a\x57\x3c\xe3\x4c\xee\x7c\xa0\xe6\xe6\x93\x40\x7b\xc5\x88\x33\xbc\x51\xcd\x24\xea\x36\x2a\xb7\x3c\xe9\x00\x6f\xb9\xde\x84\x5f\xd3\x35\x6a\xb3\xae\xc7\x27\x9d\xb4\x4d\x26\xca\x12\xab\xdc\x06\x88\xa7\xf0\x91\xb4\x90\xdb\x20\xa3\x3d\x67\xa3\x0a\x2b\xdc\x46\x0a\x08\x2e\x0a\xb1\xb5\xb3\x48\x80\xc9\x74\x4a\x5c\x41\xa3\x8c\xfb\x70\xbd\x46\xed\x68\xe3\x67\xfd\xae\x59\x16\x3c\x7b\xc7\xf4\xe6\xf8\xe4\x7a\x42\x0a\xb1\x12\x3a\x05\x67\x73\xad\x68\x16\x9b\x35\x85\x8e\x46\x0d\x93\xb2\x5a\x97\xb6\x3a\x59\x51\x88\xad\x53\xa2\x5a\xd8\xc8\xbd\x13\xc3\x10\xc9\x58\xcd\x96\xbc\xe0\x9a\xb6\x92\x28\x1a\x6a\x74\x23\x69\xd5\x1b\x52\xfb\xb4\xdd\xe9\x33\x26\x6d\xf3\xbd\x9a\xcc\x23\x33\x87\x57\xa1\xf1\xf7\xcf\x3e\x27\xab\x3d\xf5\xf3\xfe\xed\xcf\x29\x6f\xbc\xb1\x81\x83\xf1\x2f\x7c\x42\x26\x63\x45\xd6\x14\x06\x79\x83\x1d\x2b\x45\x63\xdd\x26\xc5\x0a\x74\xe1\xb9\x96\xac\x52\x2b\x94\xd2\xf6\x48\x17\xc1\x31\x61\x4b\xa3\xb7\x42\x23\x9c\xc2\xa5\x8e\xf6\x3d\x97\xa8\xb7\x88\x15\x9c\x4d\xcf\x88\xf8\xcf\xa7\x67\x29\x98\xf3\x3b\xd3\xc5\x72\x54\x34\x32\x57\x70\x47\x1d\xca\x16\x71\xae\xe0\x6c\xfa\xa7\xef\x4c\xd3\x2a\x66\x5b\x18\x48\x2c\x6c\x3d\x02\xd4\xe3\x7f\xc1\xdd\xb4\x2f\x2a\xac\x28\x76\x50\xa3\xcc\xb0\xd2\xc6\xae\xad\x31\xda\x3b\xb2\xbb\xad\x1a\x65\xa9\x0c\x51\x96\x4c\x71\x05\xb5\xe0\x95\xee\xe4\x62\x2a\x50\xa2\xe0\xb9\x59\x68\x13\xb4\xe7\xa0\x4a\x26\x75\x28\x85\x50\xb0\xdd\x98\x78\x3b\x63\x39\x29\x74\xb1\x5a\x19\xce\xb9\xfe\x78\xc1\xef\xbe\xfb\xf6\xba\xcb\x38\x4c\x03\x2b\x24\xb2\x7c\xe7\x75\x83\xf2\xa9\x94\x30\x7e\x48\x22\xc1\x12\x33\x66\x7e\x70\xad\x52\x40\x26\x70\x76\xee\x00\x93\x08\xc6\x9d\x94\x58\xec\x42\xde\x8c\x2b\xed\xf6\xcd\xd6\x26\xc8\x8b\x5a\x57\x79\x50\x4a\xa9\x90\xd4\x86\x03\xfe\xaf\x47\x41\xac\xa0\x96\x98\x71\x15\xcc\xfd\x10\xcb\x66\x8d\x9e\x83\x9d\x69\xca\x8e\x7f\xf3\xa6\x2a\xd9\x43\x8e\x5d\x1b\x2b\x43\x66\x72\x66\x28\xb6\xf3\x39\x58\xb7\xe6\x93\x9e\xc0\x49\x2c\xec\x1c\x36\xbc\x0e\x6c\x67\x5e\x5c\x6f\x59\x51\xa0\xbe\xf6\x69\x28\xa3\x6c\x27\x60\xc3\x5c\xbd\x31\x70\xb1\x50\xd8\x5f\x07\xf2\x8a\xb6\x15\x4a\x28\xf9\x7a\xa3\x61\xcb\x2a\x4a\x78\xaa\x1a\x33\xbe\xda\xed\x9f\xf5\xbd\x95\x06\xad\xeb\xf1\x40\x79\x9e\xc4\xd4\x9c\x0c\x0d\xd2\xb5\x9d\xb5\x1c\xf2\x60\xb3\x46\xc3\x9f\x17\x24\x90\xcf\x9e\xd1\xaf\xef\x17\x24\x96\x73\x38\x7a\xd5\xb8\xdc\x5a\x24\xc1\xbc\x32\x8f\x78\x0e\x92\x55\x6b\x04\x3e\x45\xf8\x74\x36\x79\xfe\xcb\xd1\x1e\x03\x0b\xde\x71\x0a\x5a\x7a\x11\x74\x44\xbf\x91\x19\x7f\x61\xb0\xe8\xbf\x3a\xbc\xe3\xff\x80\x7c\x89\x37\x99\xb6\x54\x2a\x74\x78\x13\x1b\x6b\xc3\x79\xff\x6c\x50\xee\xac\x4d\xb9\x7e\xef\x0d\xf2\xb5\x37\xbc\x2b\x29\x4a\xc3\x3e\x91\xfb\x6c\x98\x8a\x44\xec\xae\xc6\x4c\x5b\x3d\x59\xb3\x5d\x6b\xcd\x9d\x56\xb0\x29\x31\x13\x22\x11\xfb\x78\x6f\x7d\xa4\xad\x37\x70\xba\x09\x1c\x29\xd9\xce\x71\xaa\x64\xd9\x8d\xd5\x13\xbc\xca\xf9\x2d\xcf\x1b\x56\xb4\x18\x74\x19\xb5\xcd\xa3\x66\x8d\xbe\xac\x56\x42\xcd\xe1\x93\x23\xd0\x2f\xf7\x64\x53\x9d\xc3\x3c\xd0\xa9\xcb\x79\xc6\x87\x32\x3c\x63\x8d\x0b\xd3\xa0\x1a\x4a\x04\xb2\xa2\x20\x8e\x6b\x95\x7a\x70\x01\x8c\x55\x5e\x22\xac\xc9\x13\x70\x7b\xa5\xcf\xa7\x67\x09\xd8\x5b\x66\xdc\x6c\xcd\x8a\x57\xc4\x35\x67\x9d\xd7\x66\xc1\xbd\x49\xe0\x55\xc0\x73\x40\x06\x22\x20\xe1\xeb\xff\xf6\x7d\xa7\x5d\x6e\x4c\x79\x9b\x29\x85\x52\x1f\x87\x7e\x56\x7a\x26\x50\xa2\x52\x6c\x8d\x73\x38\xfa\x60\x27\x1b\xc6\x1f\x3f\xdb\xa3\x93\x2e\x19\x5f\x2a\xc5\xd7\x56\x8f\x79\x78\x83\x42\x64\x47\x5a\xf4\x1b\x75\x52\xb5\xef\xad\xd3\x1b\xc3\xa3\xbc\xdf\x60\xae\xb4\x13\x5f\x30\xe2\xb8\x68\x4f\xcc\x56\x4b\x61\xc4\xeb\x96\x69\x0f\x67\x5e\x43\x76\x3e\x78\x6c\x1c\xd5\xf1\x49\xc4\x52\xf7\x64\xea\x07\xe6\x08\xf7\x85\x64\xad\x08\x7d\xa5\x1c\xe1\xfb\x0e\x7d\x0e\x45\x63\x2d\x45\x1e\x12\x8b\x85\x5e\x8f\x8d\xc4\x02\x80\x91\x71\x58\xac\x9a\xba\x12\xf6\x45\xaa\x7b\xac\x0d\xb6\xdb\xf6\xa4\x45\x82\x51\x22\x1f\x96\xe4\x9d\x2c\x8b\x61\xc6\x54\xdd\x85\x4c\x09\x15\x9a\xb6\x20\xc8\x85\xc7\x5b\xac\x74\x43\xee\x5f\x0c\xab\xdd\xbf\x54\x5b\xae\xb3\xcd\x52\x98\xd0\xce\xdb\xae\x76\x77\x71\x63\x19\xc1\x57\x82\x2e\x1b\x07\x96\x2a\x01\x12\xe4\x02\x81\xcc\xaf\x4a\x74\xaa\x4e\xbb\x9b\xce\x6d\xac\x12\x62\x35\x8f\x90\x09\x0f\x63\x1b\x3a\xc4\x3c\x7d\x99\x1a\x8c\x82\xe6\xf1\x38\x9f\xbb\xeb\x30\xab\xe9\xe5\xcc\xc5\x92\x17\x57\xef\xe3\x61\x0f\x24\x74\x5d\x51\xa6\x2d\x8d\x88\xca\x8b\x5d\x42\xeb\xed\xc5\xd5\xb4\xb7\x38\x3e\x1a\xa1\x50\x53\x32\x6e\x7d\xcb\xc8\x8c\xdd\xe0\x6e\x66\x7d\x92\x9a\x71\xa9\x80\x15\xa2\x5a\xdb\x98\x53\x89\xb2\x95\x3b\x4a\xfc\xde\x99\x65\xa5\xcd\x0c\x1a\x97\x2d\x45\x63\x99\x88\x40\x1f\xb2\xb5\x57\xa6\x51\xb2\x0f\xdc\xab\xf7\x25\x38\x53\xf8\x89\xdf\x20\xfc\xc8\xb2\x9b\xb5\x14\x4d\x95\x4f\xe0\x7c\x87\x6a\x02\x7f\x65\x5c\x76\x8a\x31\xc7\x16\xe4\xd2\x48\x4d\x95\xa3\x2c\x76\x61\x07\x36\x19\x75\xe2\x15\x8f\xf6\x8f\x89\xd0\xca\x16\xc4\x52\x13\xa8\xa5\xb8\xe5\x39\x7a\x62\x78\x6d\x45\xc0\xf6\xe3\xe4\xb6\x32\x5f\x56\x3b\x5b\x94\x9e\xe0\xe5\xaa\x4f\x8d\x86\x88\xd7\x4b\x6d\xc4\xd6\x6e\x69\xfb\xb1\x2c\xb1\xb7\xd6\x75\xe6\xca\x92\xcd\xb8\x47\x76\x2a\x81\x51\x62\xe0\x86\xcf\x79\xa5\x34\xab\x32\x9c\xc0\x4e\x34\x90\x91\x88\x2b\x8f\x95\x19\x8a\x41\x53\xf1\x3b\xd0\xbc\x44\xa5\x59\x59\xdb\x30\xde\xb9\xe1\x09\x7e\x4c\xc1\xd1\x6b\xa6\xf1\x88\x26\x8e\x45\xbc\x9d\x0c\x75\xc1\xf4\x4a\x98\x78\xce\x04\xbf\xa2\x52\x4d\xe9\x6a\xac\x2c\xed\x68\x1f\x9b\x5c\x16\x9f\x25\x60\x6e\x17\x6c\xbf\xa7\xdf\x8e\x3d\x50\x66\x63\xcc\x2d\x93\x26\x30\x34\x9e\x25\x2b\x94\x08\xda\xc1\xa6\x62\x8b\x9d\x93\x0c\xa6\xb5\xe4\xcb\x46\x27\xb5\x2e\x29\x73\x58\x69\x09\x26\xc5\x47\x7e\x84\x66\x51\xb4\x10\x14\x15\x26\xb8\x29\xba\x67\x9e\x0d\xde\x5e\x5c\x7d\xa3\x40\x12\x4e\xfb\xb9\xc1\xbe\x9f\x3b\xdc\x07\xcb\x86\x92\x9a\xe0\x1e\xfb\x4c\x06\xe9\x32\xe9\x02\x7e\x78\x0d\xb0\xdf\x2d\x4f\xf7\xc0\xc3\xeb\x98\x13\x16\x31\x0e\x03\xb1\x89\x5d\x97\x85\xc3\x69\x64\x44\x41\xea\x8e\xd4\xa4\xf7\x7c\xbc\xc6\x3a\xac\xdf\x5c\x47\xd7\x81\xf6\x2b\x47\xa8\xb8\x00\x2e\x96\xb4\x01\x15\x87\x2c\xdb\x38\xdd\x74\xaf\x72\x53\xf7\x64\xca\x2d\x6a\x73\xf8\x44\x2d\xf7\x6c\xe2\x76\x1a\x0d\xae\xa1\x9b\xe3\xc2\x35\x1e\x30\xfa\xe6\x93\x06\x33\x79\xae\x5a\x03\x62\xf5\xb0\x63\x5a\x87\xb7\x41\x22\xe9\x92\x7a\xa9\xd6\x6d\xa3\xb6\x73\x52\xa5\x56\xa6\xdb\x32\xa5\x25\x02\xcb\x73\xcc\x0f\xba\xa6\xc6\x82\xb2\x3c\x27\x50\x66\xc2\x73\x0b\xf5\x9e\x99\x4e\x0d\x8b\x54\xf9\xb1\xbe\xa7\x62\x2a\xf5\x48\xa3\x39\x7d\x2d\x9f\xd4\xa1\x30\xce\x21\xb5\x8d\x1f\xe4\x8d\xda\x2e\x8f\x75\x45\x6d\xef\x91\x7e\x68\x8f\xb3\xfd\xe7\x0b\x38\xa1\x6e\xdd\x42\xd5\xa2\x16\xae\xe4\xca\x08\xe3\x2d\x4a\x4d\xd5\x9d\xf4\x8e\xc9\x1d\xad\x84\xe5\x09\xaa\xef\x7a\x7b\x71\x05\x91\x83\xe2\x77\xb6\x94\xdb\x5c\x10\xa4\xbe\x49\x5f\x23\xa7\x12\x61\x7f\xc4\xc4\xaf\x12\x69\x05\x67\xe1\xaf\xac\x13\x10\xe0\x91\xe9\x2a\x51\x6f\x44\x38\x68\xa2\x9a\xd5\x8a\x5b\x86\x58\xf3\x5b\xf2\x51\x4b\xb2\x2f\x14\xb9\x89\x95\xcb\xe4\x38\x14\xf7\x31\x9a\x99\x8f\x15\xa2\x74\x66\x4b\xf4\x93\xb6\x2a\xed\xaa\x15\xef\xa8\x37\xde\xd1\x21\xae\xfc\x2d\x2b\x51\xcd\x93\x7d\x29\x57\x83\x65\xb1\x71\xf6\xdb\xe7\xf5\xae\xcd\x58\xd7\x01\x98\xff\xdc\xe0\xce\x51\x8b\x49\x6b\xed\xb6\xac\x72\xe3\x2f\x31\x33\x5a\xf1\xda\xe2\x71\x3d\xe8\x53\x93\x03\xcd\x4c\x87\xae\x1e\xd9\xc7\xee\x06\x8f\x2b\xe1\x38\xde\x92\xe2\xb3\x45\x3c\x32\x71\xbf\x4d\xba\xf3\xfc\x64\xdb\xfc\xf2\xc3\xc9\xbc\xcf\x90\xb3\x19\xbc\x0a\xab\x6f\x93\x8a\xca\x65\x15\xfd\x94\x82\x49\x71\x4e\x9d\xdd\x34\xe0\xb2\x75\xa2\xdd\xe9\xb8\x7c\xda\xf1\x1a\x77\x9d\xfc\xe4\x86\x55\x79\x81\xd6\x62\x10\x91\x4d\xa0\x43\x09\x4f\xdd\x36\xfe\x47\xa3\xa2\xb1\x89\x4f\x3c\x7c\x3a\x3a\x50\x14\xd3\x58\x70\x93\xc9\xfa\x2a\xb5\xcf\xbd\xec\xcb\x8d\x41\x3b\x69\xfb\x74\x40\x2c\x0d\x51\xa7\x12\x4b\x71\x8b\xc7\x37\xb8\x9b\xc3\x4d\xb7\x4e\xb5\xfd\x16\xbe\x0e\x58\x28\x58\xc0\xa7\x5f\x9e\xf4\xc6\x27\xf0\xc4\x37\xe9\xd0\x01\x02\x2c\xec\x0a\x39\x37\xe6\x26\x78\x30\xa6\xe7\xa7\x9b\x5f\x9e\x76\x1c\x98\x8a\x17\xad\xf3\x52\xf1\x22\xc5\xb6\x63\x03\xc8\x56\x0c\x4d\xc0\x33\xa5\x65\x2c\xdb\xeb\xa4\xab\x6e\x42\x5e\x3c\x64\x30\x7b\x5a\x83\x2b\xd5\x60\x9b\xd8\x74\x47\x1d\x03\x04\x0a\x8c\xec\x66\x4a\x49\x87\x47\x15\x2f\x79\xc1\x64\x74\xd6\x73\xd5\x56\x9e\x1a\xe5\xf0\xff\x8d\x62\x78\x7e\x76\x66\x9c\x6e\xbb\xd1\x15\x80\xf1\xca\x38\xcc\x76\xcb\xce\xfa\x32\xab\xc6\x9e\xb8\xb4\x39\x75\xbb\x5f\x10\xef\x78\xb6\x0e\xd0\x4b\x5b\x3e\x60\xd9\x6d\x69\x5c\x1b\x49\x81\x4b\xc0\x1c\x73\x4e\xd3\x9a\xc0\x76\xc3\x33\xaa\xd6\xdf\x6e\xe8\x4c\x85\x7f\xb5\x0f\x0f\x4b\x4a\xc3\xa9\xca\x6a\x37\x57\xc7\x06\xb6\x8e\x8d\xf4\xcb\xa1\x58\xef\xdc\x0e\x71\xe8\x7c\x67\x8c\x89\x6f\x93\x54\xee\x6a\x7b\xe8\xd8\xe5\x25\x3e\xa0\x9e\xc0\xbb\x82\xed\x26\xf0\x01\x25\x47\x95\xee\x53\xb8\xda\x3a\x7b\x76\x68\xcb\x76\x51\x65\x85\x05\x91\x15\x4c\x29\x13\xd5\x18\xfd\xe1\x09\x34\x2a\x96\xfc\xa1\x3f\x0f\xd7\x3f\x2a\xe5\xdb\x73\x7c\x91\x66\xc4\x2a\x38\x7a\xf1\xad\xe7\x85\xe3\xff\x78\xf1\xed\xec\xf9\xd9\xd9\xc9\x11\x95\xa4\xd8\xd8\xd3\x01\xe2\x0a\x5e\x7c\x7b\x4f\x84\x4b\xad\xe6\xf0\xf1\xb2\xd2\xdd\x7d\x1f\x83\x56\xc9\xee\x06\x51\x33\x81\x98\xdb\x5e\x76\x4c\x3d\xed\xf4\xed\x9e\xab\xf4\x09\x17\x17\xf5\xda\xa4\x4b\xc1\x4b\xae\x31\x3f\x75\x43\x60\x3e\x0c\x6d\xc4\x94\x0d\xa2\x5c\x99\x77\x83\x5d\xa9\x54\x87\xc4\xad\xa9\xdc\xa0\x7e\x5e\xb6\x6f\x9b\xae\x32\xe1\xac\x16\x46\x77\x8c\x3b\xa5\x59\xb2\x3b\x4f\xbf\x83\xf1\xd7\x0f\x93\x0e\xc5\x27\x49\xf7\x01\x07\xca\xe0\x36\xa8\xc2\xa1\x4d\x6f\xbb\x85\xf9\x7e\x61\x5a\x3f\x8d\xb3\xdb\x57\x2d\x23\x64\xac\x1a\x4a\x64\x6b\xb7\xc8\xb6\xd5\xd3\xa3\x7d\xda\x1d\x46\x05\x7d\x6e\xac\x45\x37\x16\x0f\x0d\xcc\x50\x84\xe6\xc8\x28\x2e\xd9\x17\xf2\x6a\x60\x54\x25\xad\x6b\xfc\x3b\x6a\x69\x7b\x22\x9d\xec\x36\x26\xfa\x92\x79\x8d\xb9\x97\x4b\x8c\x56\xfc\x89\x2b\x3d\x87\x4f\x0e\xb3\x7d\x95\xb7\xfd\x86\xc3\xe5\xb7\xae\x1d\x2c\x42\x97\xb1\x11\x4d\x20\xcd\x57\xab\x79\xf2\x08\x8c\x2c\x78\x72\xcd\x1f\x56\xed\xe4\x3a\x3d\xba\xd4\xc9\xf5\x1f\x5b\xe7\xd4\xb2\x5b\x57\x4a\xbf\x54\x91\x53\x48\xca\xd9\xb3\x27\xce\x18\x9d\xda\xb2\xa7\x1c\x14\x4a\xce\x0a\xcf\xbf\x36\x47\xee\xf7\x2f\x0d\xb7\x06\x60\xef\x6c\x47\x05\x1b\x76\x8b\xd1\x45\x13\x04\xc8\xcd\x82\xdc\x06\xf2\xe4\x3b\x70\x83\x9e\x0c\xe0\x3e\x18\xdf\xb5\x64\xbb\x50\x9a\x43\x7b\xae\x12\xd7\x8d\xf1\x64\x2e\x5f\xdb\x04\x60\xdc\x28\xba\xdd\xa2\x0d\xb8\xac\x31\xf5\xc7\x2a\xed\xc9\xb9\xa9\x3d\xdf\x95\x20\xc0\x55\xb2\x7d\xbb\x44\x68\x2a\xfe\xcf\x86\x8a\x62\xdc\x11\x5c\xb2\xde\x64\xb6\x09\x15\xa3\xf6\xc9\x43\x67\xda\x13\xed\x90\xf2\xf8\x60\x87\xdc\x9f\x7f\xd9\x67\x37\x63\x49\x4e\xdb\x0c\x67\xd0\xf6\xe8\xcb\x03\x02\xec\xd0\xfb\x5a\xe2\xeb\x86\x1f\x27\xbc\xb6\xf1\x83\x44\xd7\x76\x79\xac\xe0\xda\xde\x23\xc5\xb6\xb7\xd0\x5f\x5a\x68\xdb\xda\x61\x97\xc6\x8c\xdd\x63\x27\xa4\x36\x91\x16\x65\x37\xe9\x0c\x97\xf0\xfb\xf1\xcc\x77\xad\x10\x73\x65\xa3\xc6\x5b\xf4\x59\x08\x95\x09\x49\xb1\x43\x5c\x82\xb1\x6c\x34\x70\x7b\x27\x45\x00\x48\x9d\x96\xa2\xcd\x53\xee\x63\x7e\x97\x07\xef\x1f\xb1\x73\x43\xb9\x8a\x42\xdb\x8a\x12\xf1\x07\x32\xef\xd4\xcf\x57\xc3\x0c\xf8\xbe\x25\xbb\xe3\x65\x53\xb6\xdb\x28\xd4\xe1\x80\xc3\xb5\x0f\xd8\xc0\x05\x29\x31\xaa\xf6\xcc\xdc\x81\xf3\xc2\x21\x44\xf8\x09\xd7\x58\xe5\x4c\xee\x26\x70\x5e\xf3\x6c\x62\x68\x83\x13\xf8\x58\x65\xa2\x2c\x8d\xeb\xf8\x8a\xfe\x4f\x63\x85\xc1\x63\x79\x23\xea\x8e\x06\xbd\xc7\x94\x76\x93\x64\xf2\x83\x85\x45\x43\x4e\xa4\x5d\xb8\x85\x75\x23\x9f\x3d\x4b\x68\xb4\xd8\xe7\x5c\xd6\xac\xe2\xd9\xf1\xd1\x4b\xcf\x0f\x81\xfb\x94\x5f\xd2\xf4\xc6\x1f\x21\x89\xbb\x7a\x1e\x64\x5f\xeb\x39\x74\x3a\xcb\x0c\xfb\x7d\x44\xf8\x1d\x65\x46\x9d\xf2\x02\x3b\x97\xaf\x99\xcc\x75\x28\x8c\xac\x2e\xa0\xc6\x0f\x2b\x2d\xb0\x3b\x36\x8f\xad\x2b\xa0\xde\x63\x8b\x0a\xba\x9a\xc2\x7f\xbe\x80\xf6\x7c\x7b\x71\x45\x0a\x74\x2b\x59\xad\x28\xe1\xf6\x8a\xae\x1c\xa2\x4b\xaa\xec\xa6\xcb\x35\xcf\x6d\xa1\xe0\x75\xd3\x98\xaf\x36\x1b\x67\x77\x1c\xfd\x6e\x4e\x80\xe7\xd3\xac\x8c\x6a\xc3\x0b\xd4\x08\x35\xcf\xa8\xca\x37\x1c\x3f\x72\x37\x52\x91\xd7\x30\x7c\x1d\x55\x00\x37\xea\x5e\x2a\x3f\x87\xfd\x7e\x04\xcf\x83\x0f\xb1\xaf\x89\x99\xdb\xc1\x46\x2e\x07\x36\x4f\x2f\xf3\x9a\xfa\xeb\x63\xf6\xf6\xc3\xb6\x3c\xbf\xdb\x37\x3e\x2e\xb0\xb7\x7f\x9b\xf1\x7a\xcd\x34\x9b\x9b\x19\xbf\x4a\x1e\x8d\xea\xea\x91\x4f\x7b\x1f\xc2\x3d\x54\x6c\xc4\xe5\x34\x7b\x5b\xfb\x7c\xa4\xdb\xeb\x38\x78\x95\x12\xcf\x21\x04\xe9\xc9\x0b\xb3\x1e\x7b\x5e\xb9\x55\x80\x7d\xcb\x90\xb6\x8e\x68\xdf\xeb\x11\x13\x3f\xed\x95\x52\x1c\x86\x48\xbe\xb7\x43\x40\x6f\x90\xd0\x69\xb7\xb6\x1e\x26\x26\x6f\xe7\xce\xa8\x0e\x4d\xfd\xf3\xe1\x80\x35\xa7\xd3\x72\xfd\x17\x44\xd0\x05\xd1\x75\x40\xe3\x3b\x9c\xc3\x1e\x71\xbf\x49\x4c\xc7\x45\x4c\xd5\x7e\xd3\x0e\xf1\x16\x1d\x6a\xde\xdb\x21\x20\xd2\x7b\xd6\xef\xd6\x12\x6f\x31\x50\xda\x09\xe3\x36\x5f\xf7\x1a\x31\x77\xd8\x8b\x18\x77\x9f\xcd\x32\x3a\xe3\xca\xa5\x29\x78\xfe\x87\x58\x34\xaf\xdd\xc6\x59\x32\xd7\xfa\xb8\x55\x66\x93\x07\x18\xb5\xbe\x26\xa5\x28\x6c\xa5\x7f\x1e\x63\xd4\x5c\x6f\x63\xd5\x62\xa3\xe8\xbb\x0f\xe6\xd7\xbc\x65\xb2\x6d\x9e\x02\x53\x4f\x3d\x16\xd1\x3a\x75\x0d\x99\x9f\x65\x5f\x95\xf0\xbc\xaf\x46\xe6\x29\xde\xe6\xd1\xa0\x42\xe9\x6a\x87\xe8\x32\xb1\x18\xc0\xc9\x78\xfd\xd2\x39\x46\x76\x0f\x94\x9e\xbe\x21\xce\xb5\x0b\x9a\xea\x9d\x91\x50\x82\x12\x1a\x06\x74\x78\x5e\xb1\x66\xf2\x30\xda\x2a\xcc\x7b\x3a\x3a\x71\x6b\x7b\xb9\xfd\x9d\xa4\x4b\xab\xc4\x0e\xc4\x73\xb6\x82\xbb\x0d\xe6\xdc\x1d\x23\x74\x39\x95\xbb\x28\x54\x4b\x8e\xb7\x38\x5c\x6e\x72\xdf\xa9\x50\xeb\x64\x37\x35\xb0\xce\x61\x4d\x9b\xc2\xae\xa5\x30\xda\x20\xc0\x33\x43\xb2\xb5\x1d\xd4\x96\x04\xb6\x47\x94\xc6\x1c\x51\xeb\xad\x64\x27\xf6\xb3\xf7\x33\x55\x61\x1c\x7f\xf1\x0b\x57\xfe\xcc\xb6\xf4\x27\xc6\x42\x52\xc6\xde\xd1\xb5\x7f\xe3\xc1\xc1\x7a\xe7\xae\x31\x0a\x3f\x3a\x37\x43\xd9\xd9\x50\x49\xa8\xdd\x78\x2a\x1b\x45\x19\xd7\x82\x57\x37\x76\x30\xb7\x1c\x03\x13\x0f\x5b\x15\x3e\xfb\x05\x61\x8b\x2a\x2b\x1a\x3a\xc4\x1e\x0e\x05\xd2\x44\xfc\x69\x3f\xb7\x55\xe6\x24\xc6\xba\x9c\xed\xcb\xbd\x73\xaa\x43\xad\x66\x5c\xb7\xd9\x0f\x51\x07\x4f\xe8\x45\x8b\xec\x6f\x88\xb3\x33\xcb\xbd\x4e\xb6\xe0\x13\x68\x95\x70\x67\x1f\xb1\xd2\x5c\xfb\x2b\x74\xf1\x8e\x2b\x3d\x01\xae\xa1\x12\x60\x3c\x65\x94\x6d\xf4\xb6\xb4\x65\x89\x92\xfb\x0c\x5a\x94\x25\x0c\x73\x3c\x30\xc5\x96\x5b\xe6\x40\x35\x5b\xe9\x14\xcd\xac\x3a\x35\xc0\x6e\xb9\x5c\xee\x9c\xad\x84\x24\x5c\xed\x9e\x4f\xdd\xae\xf2\x81\x81\x7f\x22\x30\x76\xa7\xb7\x3f\xf0\x45\x28\xfc\xb0\x47\xb3\x0a\xb1\x55\xf6\xb8\xa2\x4b\x06\xb0\x0a\xb0\xac\xf5\xae\x2b\x55\x9e\xe0\x66\xfe\x9e\x87\x89\x81\x13\xf0\x9e\x95\xee\x39\x42\x45\x3b\x2b\xe7\x66\x88\x98\x44\xab\xa6\x3a\x3e\x99\xc3\x7f\x7d\xee\xde\x90\x3c\x6d\x5b\x1d\xbe\xdb\x73\x9f\xc4\xa4\x3a\x6e\x98\x07\x87\xda\x74\x17\x71\xa8\x4d\x97\xde\x1d\xa5\x3e\x34\x5d\xbf\x08\x63\xa7\x1d\xd4\xed\xa8\x03\x51\x5d\xb4\xa6\x5c\x7d\xb0\x77\xd5\x1c\x8b\x95\xc5\xf1\xfb\x67\xf7\x0e\x68\x9c\x80\x39\x1c\x39\xcd\x42\x12\xe8\x75\x0a\x03\x7f\xef\x8d\x58\xc1\x3d\x30\x5a\x39\x99\x1e\x3c\x58\x15\xad\xda\x22\xfa\xde\x6f\xd8\x2e\xdc\xa2\xfd\xba\xaf\x59\x8b\xcb\xa2\xfb\x60\x5f\x97\x96\x66\x8b\xee\x83\x01\xb7\x77\x68\x65\x17\xf7\xae\xf7\x58\xe7\xb5\x6f\x6c\x28\x0f\xb3\xf5\xe7\xa3\xa8\x3a\xdf\x57\x6e\x56\xb4\x40\x79\x28\xb5\xf8\xf7\x64\x68\xfa\x28\x8e\x76\x71\x3b\x1e\xd1\x43\xf2\x36\xfd\x38\xee\x91\x29\x9c\x1e\xa0\x91\xd9\x9c\xfb\xdc\x00\xff\xf9\xf2\x69\xf1\x3d\x6e\x94\xab\x5a\xa7\x93\xb3\x5e\xf1\x7e\x13\x5d\xff\xda\xde\x5f\x31\xca\x9d\xb2\xa9\x9f\x0a\xfc\x0d\x16\x64\xe0\x03\x34\xba\xb3\x9a\x67\xca\xdb\xe2\x9e\x79\x70\x9e\xce\x12\x8d\x35\x35\x00\x1f\xe8\x53\xf5\x2e\xd6\x9d\xcd\xe0\x2d\x2b\x7b\x66\x92\xd0\xdf\x6e\xb0\xf2\x9e\xbf\xad\xb8\x73\xc3\x77\x2f\xed\xe8\x0e\x7d\xef\x91\x85\xd7\x51\xea\x74\x68\xd4\x21\x22\x79\xff\x69\xcc\xc0\x07\xae\xec\x0e\x17\x41\xd8\x2b\x03\xc8\xef\x70\x77\xa9\xd0\x50\x74\xc0\x3e\xe6\x03\x7f\x1c\x64\xe4\xf0\xe3\x12\x59\x09\x46\x1f\xfe\xd9\x30\x89\xae\x06\xc0\x5e\xd3\xd7\xb9\xfa\x70\xe4\xd8\x8a\x00\x5d\x96\x54\x73\x91\x8e\x4d\xd7\x34\x25\xa3\xfe\xc8\xaa\x0a\x65\x32\x6a\xb8\x19\xa1\x1d\x6c\xd2\x75\xa9\x69\xf7\x86\x51\xd1\x14\x54\xc8\x24\x3c\xff\xf6\xec\xec\xee\x3f\xff\x74\xb6\x1f\xad\x25\x8d\x34\x12\xad\x0f\x22\xe3\x6e\x71\x94\x25\x03\x55\xa9\xa7\x58\x7d\xa3\x40\xd9\x76\x1b\x51\x62\xcd\xd6\x98\x14\xea\xc0\x3b\xe1\x2e\x34\xa6\x8a\xbe\xd2\xde\x29\x79\x44\x67\x46\xd6\x92\x95\x47\x13\x38\xd2\x5b\xae\x35\x4a\xf3\x35\xe7\x2a\x13\x32\x3f\x3a\x70\x08\xc7\x8e\xa8\xa2\xca\xce\xbd\xcb\xfb\x87\x5e\x90\x3e\x8e\xc3\xd2\x3e\x87\x38\x23\x6d\x7d\x68\xc1\x3a\xb0\x1f\x42\x17\xdf\xe9\x0f\xbd\xcb\xfd\x01\x89\xb8\x88\x30\xb0\x88\xc9\xd4\x6f\x1a\x51\x85\x2e\x5f\x0c\xbf\x06\xa0\x5a\x92\x18\x88\xf6\xdb\xe3\x9c\x92\xf8\x56\xf9\x61\xbf\xc4\xb9\x25\x01\xda\x57\xf4\x4f\x1e\xe5\x9b\x3c\xe2\x26\xfa\xc1\x94\xf1\x17\xf1\x50\x1e\x74\x47\xfd\x01\xbb\xea\x3f\x8f\xf7\x53\x20\x4e\xd2\x58\xd3\x14\xdd\x8d\xbb\xdc\xc1\x2b\x7b\x39\xc8\xa9\xbb\x02\xb9\xf6\xd5\x34\x5a\xb8\x1b\x88\x6c\x2d\x78\xe4\xaa\xd8\xcb\x45\x4e\xed\x9d\x16\x26\x96\x38\x2d\xf0\x16\x8b\xb6\x5a\x3c\xb9\x54\xef\xfc\xe7\x37\xa7\x99\x28\x6b\xa6\x49\x95\x5a\x8b\x18\xd5\xea\x7e\xc0\x5b\x94\xac\x80\xf3\xf7\xaf\x42\xfa\x42\xb9\x3f\xc1\x71\xfe\xfe\xd5\x8b\xb3\x89\xf9\xef\xff\xbc\x78\xee\x2e\xd5\xf5\x8e\x56\x38\xe2\xa7\x76\xe5\x52\x04\x56\xf5\xc7\x16\x5a\xf4\x99\x52\x68\x8f\x3d\x6d\xb1\x28\xcc\xff\xed\x14\x9e\x0d\x4f\x20\x2e\xd4\x87\x6b\x6a\xf2\xf1\xfd\xe5\x71\xc3\x2b\xfd\xe2\x4f\xdf\x9d\xb8\x5d\x3a\x0f\xc6\xbc\x3a\xb9\x76\xc7\x21\xd4\x34\x22\x35\x56\x6c\x19\xdf\xf2\xef\x68\x3d\x44\xe4\x50\x73\x2f\xb6\x55\x74\x81\xcb\x86\x32\x22\xb8\x73\x97\xca\x14\xfc\xa6\x15\xa5\x4e\x8d\xbe\xbf\x9d\xd8\x96\x4f\x91\xd7\xb5\x94\x3c\x5f\x5b\x83\x7b\xfe\xf3\x9b\x83\x4e\xde\xf9\xcf\x6f\x7e\xb4\x3d\xbc\xea\x3d\x54\xa2\x4c\xb4\x8d\x5b\x3c\xd8\x91\x73\xa5\x18\xb4\x86\x0f\x87\x6a\xfb\xed\x87\x6b\xaf\x7a\x6e\x81\xc2\xa9\xf3\x01\x58\xe5\x0b\x4e\xec\xc9\x12\xcb\x0f\x96\x0d\x84\x4c\xf3\x24\x11\x87\x18\x78\x39\xd6\x58\x11\x77\x8b\x2a\xba\x34\xba\x3d\x2b\xa1\xbc\xfa\xcb\xa7\x70\xa9\xd3\x4c\x5d\x2f\xb7\xd8\xaa\xce\xf3\x9f\xdf\xf4\xff\x52\x94\x2d\x5d\x23\x2e\x30\xcb\x9b\x5e\x96\x00\xb5\xc4\x9a\x49\x84\x9d\x68\x6c\x81\xe9\x37\xca\x09\x98\xc6\xbc\x7b\xf2\xb6\x5b\x1a\x92\x94\x92\xdb\x8b\x82\x76\xa2\x21\xf5\x90\x6d\x04\xc5\x32\x02\x34\xbb\x41\x60\xf9\x2d\xb3\xd7\x14\x89\x15\x88\x8a\xfe\x80\x45\x02\xaa\xad\xef\x67\x2a\x5c\xdc\x6f\x42\x1d\xaa\x77\x15\x4a\x07\xce\x7f\x7b\x71\xa5\x26\x61\x1c\x3a\x97\x6a\x07\xeb\x90\x3c\xf2\x5b\x69\x72\xb4\x7a\xdf\xa8\xf8\x44\x8a\xbd\xb9\x9d\xee\x40\xf1\x17\x55\x18\xb9\xa3\xa2\x1b\x96\x56\xb9\xba\x0b\xf6\x2f\xec\x5f\x5b\x20\x5e\xa7\xbb\x84\x9c\x8a\x22\x83\xd8\xfe\x31\x01\x78\x59\x90\xa9\x37\xfa\xb0\xd8\x11\xb6\xe9\x6c\xd9\xce\x15\xf1\x19\xef\x95\xd0\xb3\xa7\x5b\x5b\x05\xd8\x22\xe5\x0f\xf7\xfe\xf7\x87\xbf\xbd\x75\xa5\x34\x09\x30\x6a\x6f\x3c\x8c\xf8\x0f\xfe\xb8\x73\x49\x16\xaa\x23\x78\x04\xdd\x1d\x2b\xe7\xee\x0c\x71\x02\xcf\x3a\x8a\x11\x0b\x8e\x92\xa3\x46\xf2\xfe\xf5\xca\x03\xc7\x6d\x53\x79\x9b\xc4\xfd\x1e\xee\x8a\x39\xa1\x5f\xc4\x1a\x3c\x69\xd0\x48\x4e\x7f\xa5\x83\x0f\xfb\x3d\x43\xa5\xb5\x3d\x0d\xf6\xb0\x22\xdb\x5e\xf7\x47\x97\xdb\xf6\x20\x8d\x2d\xbc\x1d\xd2\xc1\xd0\xf9\xfc\x8e\xb4\xc5\x6f\x4f\xfe\x27\x00\x00\xff\xff\x20\x87\xce\xf0\xf7\x6e\x00\x00" func metadataviewsCdcBytes() ([]byte, error) { return bindataRead( @@ -109,7 +109,7 @@ func metadataviewsCdc() (*asset, error) { } info := bindataFileInfo{name: "MetadataViews.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xb5, 0x89, 0x41, 0x59, 0xc5, 0x67, 0x24, 0xdc, 0x8b, 0xbb, 0x9c, 0x5f, 0x90, 0xa9, 0xd6, 0xad, 0x3d, 0xec, 0xbc, 0xb2, 0xe2, 0xa7, 0x30, 0xa, 0x1, 0x3e, 0x9b, 0x24, 0x53, 0xc1, 0xc7, 0x64}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x59, 0x74, 0x87, 0xe8, 0xe9, 0xcc, 0xf, 0xcb, 0xf6, 0x64, 0xe6, 0xb8, 0x10, 0x93, 0xb3, 0x2a, 0x81, 0x37, 0x47, 0xc3, 0xec, 0xa2, 0x6, 0xa9, 0x1a, 0xf4, 0x3b, 0x4e, 0x77, 0x17, 0x4a, 0xa4}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index b26e707..516d555 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -15,7 +15,7 @@ // transactions/scripts/get_collection_length_from_storage.cdc (722B) // transactions/scripts/get_contract_storage_path.cdc (520B) // transactions/scripts/get_contract_views.cdc (242B) -// transactions/scripts/get_nft_metadata.cdc (5.632kB) +// transactions/scripts/get_nft_metadata.cdc (6.34kB) // transactions/scripts/get_nft_view.cdc (4.367kB) // transactions/scripts/get_views.cdc (890B) // transactions/scripts/iterate_ids.cdc (794B) @@ -394,7 +394,7 @@ func transactionsScriptsGet_contract_viewsCdc() (*asset, error) { return a, nil } -var _transactionsScriptsGet_nft_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x58\x4d\x6f\xdb\x38\x13\xbe\xfb\x57\x4c\x7c\x78\x61\x01\x7d\x95\x3d\x2c\xf6\x60\x54\x0d\xba\x4d\xb2\x28\x90\x1a\x45\xe2\xee\xa5\xe8\x81\x96\x46\x0e\x11\x9a\xf2\x92\x54\x53\x23\xc8\x7f\x5f\x90\x94\x44\x52\x22\xad\xec\x1e\x36\xd6\xcc\x33\x33\xfc\x98\x87\x33\xd3\xcb\xcb\x4b\xd8\x3e\x52\x09\xb2\x14\xf4\xa8\x60\x8f\x4a\x02\x61\x0c\xd4\x23\xc2\x4f\x8a\xcf\xff\xdf\x11\x89\x15\x1c\x50\x91\x8a\x28\x02\x44\xca\xa6\xa4\x44\x61\x05\xcf\x54\x3d\x1a\x9c\x3c\x62\x49\x6b\x8a\x15\x6c\x6e\xb7\x0b\xed\x92\xf0\x0a\x04\xaa\x56\x70\x09\x54\x01\x91\x40\x40\x52\xbe\x67\x08\x52\x89\xb6\x54\x8b\x05\x3d\x1c\x1b\xa1\x60\x79\xf3\x8b\x1c\x8e\x0c\x37\xb7\xdb\xe5\x20\xfb\xd2\x45\xfb\x9b\xe2\xb3\x5c\x2e\x16\xa4\x2c\x51\xca\x15\x61\x2c\xeb\xec\x75\x24\x78\x59\x00\x00\xf8\x4a\x86\x0a\x38\x39\xe0\x1a\x1e\x94\xa0\x7c\x1f\x05\x54\x68\x37\x4b\x1b\x7e\x16\xa7\x1e\xdb\xc3\x8e\x13\xca\xce\xa2\x9a\x67\x8e\x62\x0d\x1f\xab\x4a\xa0\x94\x71\x47\xa7\xe3\xf9\x15\x89\xe6\x44\x98\xa2\x28\xd7\xf0\x3d\xd8\x7b\x7e\x6f\x34\xa7\x1f\x51\x33\xfc\xa5\x50\x70\xc2\xbe\xdd\xdf\x9d\x75\x2f\x51\x50\xc2\x36\xed\x61\xa7\x57\xfa\xed\x33\x57\x7f\xfc\x1e\x05\x96\x0d\x63\x58\xea\x83\xf9\xda\xee\x18\x2d\xbf\x12\xf5\xb8\x06\xf7\x7b\xc6\xe8\x41\x35\x82\xec\xd1\x5a\x79\x1f\x6f\x8a\x75\x76\x07\x63\xf0\x1d\xe5\x4f\x58\x6d\xe7\xce\xd5\x99\x6d\xe6\x92\xc2\x41\xaf\xdf\x98\x1e\xce\xe2\xe6\x8d\xf7\xe0\x9d\xd4\x3f\x2d\x11\xf8\xf9\x40\xf6\x6f\x5d\xd5\x9f\x84\x73\x14\xff\xc5\xe2\x41\xf3\x94\xc9\x35\xbc\x58\x78\x6f\xf6\x1a\xcf\xa5\x8a\xda\x1d\x87\xf9\x77\x63\xc5\xf1\xb4\x16\x84\x2a\x39\xb6\xd8\x1a\x69\xd4\xe0\x80\x15\x25\x13\x83\x2f\x46\x7a\x15\xb5\x60\xb4\x44\x2e\x71\x6c\x72\x67\xc5\x57\x0b\x63\x44\x39\x55\x2b\xf3\x4b\xff\xe7\xd3\xff\xdd\x20\x8d\x70\xde\x29\x27\x44\x77\xaa\x90\xdd\x4e\xce\x6b\xe5\x67\x9f\x53\xcc\x53\xd9\x61\x23\xfc\x75\xca\x18\x69\x9d\x76\x8e\xa9\x31\x64\x8a\x9e\x69\xaf\xd3\x55\xcd\x13\x31\x86\xdd\x44\xef\xe4\x2c\xe5\x62\xb0\x08\xcf\xa2\xfb\x9c\x92\x2b\x06\x8b\x30\x2a\xea\x2d\x45\x23\xef\x1e\xcf\x72\xc7\xcb\xb3\x33\x84\x71\xa8\xb3\x2c\x71\xb0\x39\x6a\x68\x4c\xd6\x95\x48\x9b\x4f\xac\xce\x35\x39\xa0\x30\x1c\x09\x15\x1e\x3f\xa0\xf0\xd9\x12\xc2\x06\xa6\x40\xe1\x58\x13\x42\x0c\x63\xa0\xb0\xcc\x19\x59\x9f\x8e\x26\xba\xe5\x4e\xa8\x1b\x78\x03\x85\xe3\x50\x08\xf1\xe8\x02\x85\x4f\x9e\x10\xe6\x13\x07\x8a\x80\x47\x21\x30\xc6\x21\x28\xa2\xd4\x4a\x19\x7a\x2c\x0a\x2c\xc7\xc5\x2f\x19\x33\x12\xef\xbc\x81\x23\x5c\xc4\xd4\x29\x53\x4e\x36\x36\x01\x42\x41\x0a\x7c\x1d\x24\x45\x54\x9e\x32\xbd\x09\xee\x2a\x2a\x4f\x9e\xa9\xa3\x6f\x78\xa6\x4e\x9e\x32\xf5\x28\x1d\x98\x7a\xf2\x64\x54\x4b\xf3\x30\xa2\x95\x8d\xb2\xd0\xb2\x5a\x67\xa0\x57\x1b\x5d\x8e\x1b\x36\x6b\x7a\xb8\x3a\x38\x28\x2d\xb5\xa1\xe8\x38\x1e\x2a\x3b\x42\x43\xd1\x53\xdb\xa8\x5f\x17\xaf\x61\xff\x5b\xb7\x1c\x0e\x84\xf2\x15\xb1\x35\xc9\x15\x27\xa0\x55\x5f\x28\xb2\xb5\xd7\x20\xeb\x42\x4a\xca\xb2\x69\xb9\x82\x42\x77\xf8\x1f\xed\x47\xef\x21\x5b\x0c\x30\xef\x8e\x75\xb3\x5f\x80\xeb\xce\x73\x81\xb2\x61\x3f\xf1\x53\xc3\x95\x20\xa5\xd2\xcf\xcd\x4a\xcb\x5a\x51\xa2\x2d\x00\x9c\xb2\x77\x66\x68\xb0\x9f\xfa\xff\xef\xc3\xd7\x69\x73\xbb\xfd\x14\x84\xf8\xb0\xca\x32\x20\xf2\x02\x66\x70\x57\xc3\x59\x5d\x5d\xc1\x91\x70\x5a\xae\x96\x1a\x7a\x6f\x17\x25\xa0\x6a\x50\x02\x6f\x14\x74\xcb\x84\x89\x0b\xb3\xb2\x65\x66\x1c\x45\x36\x0c\x45\x7f\x48\x79\x49\x8e\x64\x47\x19\xd5\x4f\x50\xbe\x6b\x84\x68\x9e\xdf\xff\xcf\x3b\x09\xe7\xf7\x83\xeb\x3b\x20\xac\x68\x44\x91\xfc\x38\x7d\x3f\x32\x6f\xfd\x9f\x9a\x96\x55\x66\xcd\x36\x06\x10\x10\x58\xa3\x40\x5e\x22\xa8\xc6\x8c\x56\xce\xe3\xd2\xbb\x26\x5e\xab\x20\x51\xbb\x45\x6e\x6e\xb7\x2b\x5a\x65\x91\xa3\x9a\x0b\x45\xb8\xc9\x97\x61\xa2\xdb\xd3\x9f\xc8\xe1\xf3\x75\x1f\xf4\xf2\x12\xfe\x32\x13\x11\xc2\x8e\x48\x5a\x42\x45\xe5\x91\x91\x13\x50\x5e\x37\xe2\x40\xcc\x01\xd6\x8d\x00\xa5\x67\x49\x3d\x05\xf6\x4b\xed\x81\xc5\xe8\x86\xf7\xa8\xae\xad\x6a\xc5\x6b\x95\x5d\x4c\xe2\xd8\x22\x10\x8b\xd0\x2f\xcf\x0f\xd3\xa1\xb5\xef\x58\xa8\xfb\xbe\xa2\xf8\xc1\x46\x23\x54\xcc\xce\x7b\xae\xc6\x96\xde\x5d\xa7\xb7\x18\x26\x61\xb0\x5f\xef\x2e\x1d\x24\xb5\xfe\x49\x32\x8f\x57\xc3\x6b\xd5\xb5\x1b\x29\x17\x9d\x5a\x8e\xc2\xfb\xe5\x31\x65\xfa\x60\x30\xe3\x90\x61\x6b\x6c\xeb\xba\xad\xfe\x17\x79\xf7\xb2\x04\xbb\xdc\x0e\xd5\x5f\xfb\xd4\x5f\xab\xe8\xcb\x93\x6c\xb8\xa0\x80\x17\x3b\xbc\xe8\x3c\x78\x42\x9d\x1b\xd3\x6b\xc8\xa5\xb5\xcf\x9f\xf0\x24\xbd\xfe\x67\x12\xe0\xfb\x13\x9e\x7e\x84\x75\x2d\xf4\x60\x00\x17\x79\x2b\x58\xf7\x12\x0f\x8b\x1d\x1e\xf9\xc9\x51\xd9\x66\x6e\x7c\x54\xc3\xbb\x3f\xc1\xdb\xb6\xce\xe0\x07\xb4\x2b\x04\x13\x78\xd7\xdd\x59\xbc\x31\xb0\xff\xca\xa2\xb9\x30\x1e\x81\x3a\xe6\x99\x9e\x2f\x31\x08\xf5\x10\x4f\x18\x9d\x8a\x7a\xdc\x20\xca\x5b\x41\x57\xd9\x64\x4c\x32\x7f\x22\x43\x52\xf7\x23\xa7\x15\x72\x45\x6b\xea\x83\xbc\x81\xc9\x23\x71\x48\xda\x2c\x31\x33\x79\x1f\xfa\x9a\x52\xc3\xd3\x38\xc7\x73\x6e\x7e\xce\x4d\x53\x13\x66\x7a\x0f\xfa\xec\x7c\x35\x35\x96\x6f\x9b\xb8\x52\x51\x9d\x30\x7a\x8c\xe7\x06\xb3\x94\x4b\x87\x99\x71\x69\xe7\xb7\x29\x51\xc2\xd4\x4a\xcc\x73\x53\xb3\x68\xba\x25\xc6\xbc\xa9\x75\xf2\xd2\x13\x13\x60\x84\xdf\x4e\x9d\xd7\x94\xe1\x38\x9b\x13\x33\xe2\xd4\xd1\xce\xa9\x67\x1c\x0d\x8f\xda\x44\x14\x19\x23\xc3\xc7\x3c\xd7\x15\xf0\x8e\x4a\xf5\xfd\xb7\x1f\xd3\x59\x52\xc5\xa7\x47\xfb\x67\x3a\x2d\xfa\xad\x65\xb6\x78\x5d\xfc\x1b\x00\x00\xff\xff\xbc\xc6\x0b\x5e\x00\x16\x00\x00" +var _transactionsScriptsGet_nft_metadataCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xac\x58\x4d\x6f\xdb\x38\x10\xbd\xfb\x57\x4c\x72\x58\xd8\x40\x57\xd9\xc3\x62\x0f\x46\xd5\xa0\x6d\x92\x45\x80\xd4\x28\x12\xb7\x97\xa2\x07\x5a\x1a\x3b\x44\x64\xca\x4b\x52\x4d\x8d\x22\xff\x7d\x41\x52\x12\x49\x69\x68\x65\x81\xed\xa1\x96\xc8\x37\x1f\x22\xe7\x0d\xf9\x72\x71\x71\x01\xeb\x47\xae\x40\x15\x92\x1f\x34\xec\x50\x2b\x60\x55\x05\xfa\x11\xe1\x07\xc7\xe7\xdf\x37\x4c\x61\x09\x7b\xd4\xac\x64\x9a\x01\x53\xaa\x2e\x38\xd3\x58\xc2\x33\xd7\x8f\x16\xa7\x0e\x58\xf0\x2d\xc7\x12\x56\x37\xeb\x99\x71\xc9\x44\x09\x12\x75\x23\x85\x02\xae\x81\x29\x60\xa0\xb8\xd8\x55\x08\x4a\xcb\xa6\xd0\xb3\x19\xdf\x1f\x6a\xa9\xe1\xfc\xfa\x27\xdb\x1f\x2a\x5c\xdd\xac\xcf\xfb\xb1\x4f\x6d\xb4\xaf\x1c\x9f\xd5\xf9\x6c\xc6\x8a\x02\x95\x9a\xb3\xaa\x5a\xb4\xf6\x26\x12\xfc\x9a\x01\x00\x84\x93\x15\x6a\x10\x6c\x8f\x4b\x78\xd0\x92\x8b\x1d\x09\x28\xd1\x7d\x2c\xaf\xc5\x49\x9c\x7e\x6c\xf6\x1b\xc1\x78\x75\x12\x55\x3f\x0b\x94\x4b\x78\x5f\x96\x12\x95\xa2\x1d\x1d\x0f\xa7\x33\x92\xf5\x91\x55\x9a\xa3\x5a\xc2\xb7\xe8\xdb\xb3\x7b\x3b\x73\xfc\x4e\x9a\xe1\x4f\x8d\x52\xb0\xea\xcb\xfd\xdd\x49\xf7\x0a\x25\x67\xd5\xaa\xd9\x6f\x4c\xa6\x5f\x6e\x85\xfe\xeb\x4f\x12\x58\xd4\x55\x85\x85\x59\x98\xcf\xcd\xa6\xe2\xc5\x67\xa6\x1f\x97\xe0\x9f\x27\x8c\x1e\x74\x2d\xd9\x0e\x9d\x55\xf0\xf2\xaa\x58\x27\xbf\x60\x08\xbe\xe3\xe2\x09\xcb\xf5\xd4\xba\x7a\xb3\xd5\x54\x51\x78\xe8\xd5\x2b\xcb\xc3\x5b\x5c\xbf\x72\x1f\x82\x95\xfa\xa7\x61\x12\x6f\xf7\x6c\xf7\xda\xac\x3e\x30\x21\x50\xfe\x17\x8b\x07\xc3\xd3\x4a\x2d\xe1\x97\x83\x77\x66\x2f\x74\x2d\x95\xdc\x7d\x71\x5c\x7f\xd7\x6e\x98\x2e\x6b\xc9\xb8\x56\x43\x8b\xb5\x1d\x25\x0d\xf6\x58\x72\x36\x32\xf8\x64\x47\x2f\x49\x8b\x8a\x17\x28\x14\x0e\x4d\xee\xdc\x30\x6d\xb3\x91\xbc\xdc\x61\x39\xb9\xe3\xea\xb8\xdf\xd4\xa7\xb9\xad\xeb\x27\x14\x5f\xee\x6f\x7b\x90\x45\x71\xc1\xf5\xdc\x3e\x99\x7f\x61\xbb\x79\xd3\x8f\x12\x3d\xc6\x4f\x8e\x1a\x8b\x9f\x8a\xbb\x89\x1f\x17\x5b\x1d\x56\xbb\x9f\x98\x6e\x1d\x1e\x4b\xf4\x0b\x3f\x49\x35\x09\x3f\x3b\xd5\x19\x28\x64\xaa\x1d\xa4\xbd\x8e\xb3\x9a\x26\x3e\x85\x5d\x91\x7b\x72\x92\xe2\x14\x8c\xe0\x35\xf9\x9d\x63\x32\x53\x30\x82\xc1\xa4\xb7\x14\x6d\x83\x7d\x3c\xc9\xd5\xa0\xce\x4e\x10\xd4\xa3\x5a\x56\x92\xa4\xf4\xa8\x8e\x89\x34\x11\x3d\x8e\x60\x5f\x50\x63\x11\xe5\x82\x44\x07\x3c\xfb\x9f\xdd\xd9\x89\x45\x7b\x5d\x70\xb5\x5e\x6d\x33\x43\x5c\xc8\x2d\x7f\xe3\x89\x80\xbb\x90\x87\x4c\x8e\x61\x3d\x8b\x21\xf7\x8c\x8e\x21\x96\xcd\x90\x3b\x56\x0f\xac\x8f\x07\x1b\xdd\xf1\x3a\x9e\xeb\x39\x0d\xb9\xe7\x77\x0c\x09\xa8\x0c\x79\x48\xec\x18\x16\x92\x1a\xf2\x88\xe3\x31\x90\xe2\x37\xe4\x24\xed\x53\x86\x01\xc3\x23\xcb\xe1\x45\x20\x19\x93\x88\x77\xda\xc0\x37\x03\xc2\xd4\x4f\xa6\x9c\xac\x5c\x01\xc4\x03\x29\xf0\x55\x54\x14\xe4\x78\xca\xf4\x3a\xda\x2b\x72\x3c\xb9\xa6\xbe\xb5\xc4\x6b\xea\xc7\x53\xa6\x41\xbb\x89\x4c\x83\xf1\x64\x54\xd7\x82\xe2\x88\x6e\x6c\x50\x85\xae\xe3\x98\x0a\x0c\xee\x09\xbe\xc6\x6d\xa7\x31\xf4\xf0\x77\x82\x7e\xd2\xb5\x1d\xc8\xdb\xfe\x13\x4f\xb6\xdd\x06\xf2\xae\xef\xc4\xd3\x41\x57\x80\x3c\xec\x11\x83\xea\xb7\xfd\xc1\xd4\xbd\x7d\x18\x24\xd7\x36\x09\x93\x5e\xfb\x68\x01\x2f\xb3\x97\x58\x70\x6c\x1b\x01\x7b\xc6\xc5\x9c\xb9\x43\xd9\x9f\xce\xc0\xcb\xee\xa4\x5c\x2c\x03\x45\x62\xae\x0e\xac\x28\xea\x46\x68\xc8\x8d\xa4\x7a\xef\x5e\x3a\x0f\x8b\x59\x0f\x0b\x0a\xc9\xa8\xab\x1c\xbc\x1c\xca\x24\xaa\xba\xfa\x81\x1f\x6b\xa1\x25\x2b\xb4\xe9\xb8\x73\x33\xd6\xc8\x02\xdd\x09\x28\x78\xf5\xc6\xaa\x34\xf7\x6a\xfe\x7f\x1b\x37\xe8\xd5\xcd\xfa\x63\x14\xe2\xdd\x7c\xb1\x00\xa6\xce\x60\x02\x77\xd9\xaf\xd6\xe5\x25\x1c\x98\xe0\xc5\xfc\xdc\x40\xef\x5d\x52\x12\xca\x1a\x15\x88\x5a\x43\x9b\x26\x8c\x5c\xd8\xcc\xce\x17\xd6\x11\xf1\xc1\x90\x77\x8b\x94\x15\xec\xc0\x36\xbc\xe2\xa6\xcf\x65\x9b\x5a\xca\xfa\xf9\xed\x6f\xc1\x4a\x78\xbf\xef\xfc\xc5\x0b\xe2\x23\x9d\x69\x96\x1d\xc6\x4d\x6a\x11\xe4\xff\xb1\x6e\xaa\xd2\xe6\xec\x62\x00\x03\x89\x5b\x94\x28\x0a\x04\x5d\x5b\x2d\xeb\x3d\x9e\x07\xdb\x24\xb6\x3a\x62\x43\x9b\xe4\xea\x66\x3d\xe7\xe5\x82\x58\xaa\xa9\x50\x4c\xd8\x7a\xe9\x25\xf4\x8e\xff\x40\x01\xb7\x57\x5d\xd0\x8b\x0b\xf8\xdb\x4a\x50\x84\x0d\x53\xbc\x80\x92\xab\x43\xc5\x8e\xc0\xc5\xb6\x96\x7b\x66\x17\x70\x5b\x4b\xd0\x46\xbc\x1b\xd9\xdd\xa5\xda\x01\xf3\xc1\x0e\xef\x50\x5f\xb9\xa9\xb9\xd8\xea\xc5\xd9\x28\x8e\x3b\x69\xa8\x08\x5d\x7a\x61\x98\x16\x6d\x7c\x53\xa1\xee\xbb\x63\x2b\x0c\x36\xd0\xac\x94\x5d\xd0\x13\x87\x96\xc1\x5e\xa7\x3f\x31\x2e\xc2\xe8\x7b\x83\xbd\xf4\x90\x54\xfe\xa3\x62\x1e\x66\x23\xb6\xba\xbd\x6f\xa5\x5c\xb4\xd3\x6a\x10\x3e\x3c\x83\x15\x32\x77\x0e\xa7\x7c\x3c\x58\xf0\x30\x76\x2c\x12\xdc\x2d\xc2\xdd\x35\xce\xb2\xb6\xc5\x44\x9f\xbb\xee\xef\x1a\xc6\xa7\x79\x9b\x93\x2d\x28\x79\xf5\x84\x1c\x7e\x39\xd9\x68\x0a\xe2\x09\x4d\x91\x8c\xf7\x23\x53\xce\x3e\x7b\xc2\xa3\x0a\x6e\x5b\xa3\x00\xdf\x9e\xf0\xf8\x3d\x3e\x45\x63\x0f\x16\x70\x96\x35\xb2\x6a\x5b\x72\x9f\x6c\x7f\xa4\x8c\x96\xca\x5d\x6b\x87\x4b\xd5\x9f\x32\x23\xbc\xbb\xe1\x5a\x7c\x8f\xf6\xc7\xce\x08\xde\xde\x74\x1d\xbe\x37\x68\x8f\x9e\x0e\x4d\x96\xc1\xd7\x4f\x1f\x62\x54\x98\xa3\xfb\x23\x99\x61\xd6\x50\x51\xb6\x3c\xb6\xd7\xd4\x84\xae\xec\x20\xc1\x20\x29\x32\x3b\x5c\x3f\x94\x35\x92\xcf\x17\x23\xd5\x69\x7f\x08\xcd\xd9\x3e\x64\xbc\x44\xa1\xf9\x96\x87\xa0\x40\x7f\x06\x2d\x21\x6e\x01\x8b\x84\x04\x0d\x5e\xcc\x5e\xa7\xb4\x68\xf8\x66\x9d\x0b\xfb\x38\x25\x4e\x47\x3c\x0f\x8e\x87\x49\xb9\x3a\x36\x56\xaf\x13\xb0\xa9\xa8\x7e\x90\x5c\xc6\x53\x3a\x37\xe5\xd2\x63\x26\x5c\x3a\xf5\x34\x66\x5b\x5c\x5a\x09\x79\x3c\x36\x23\xcb\x2d\xa1\x9a\xc7\xd6\xc9\x4d\x4f\x08\x6a\xa2\x49\xf8\xe9\x6c\xcb\x2b\x1c\x56\x73\x42\x72\x8f\x1d\x6d\xfc\xf4\x84\xa3\xbe\x33\x8e\x86\x08\x55\x1e\x1f\x0d\x99\x39\x4f\xef\xb8\xd2\xdf\xfe\xf8\x3e\x96\xe6\x9a\x16\xe3\xed\xef\x58\x7e\x77\x0f\x09\x85\x3c\xe8\x47\x83\x1d\xee\xf4\xf2\x10\xe5\xc6\x29\xfd\x3c\x44\x36\x92\x0f\x17\x89\xbc\x8b\x9f\x4c\x80\x80\xa5\x32\x20\xa0\x7d\x0a\x4e\xd5\xcf\x5e\x66\xff\x06\x00\x00\xff\xff\x6e\xb9\x1b\x7a\xc4\x18\x00\x00" func transactionsScriptsGet_nft_metadataCdcBytes() ([]byte, error) { return bindataRead( @@ -410,7 +410,7 @@ func transactionsScriptsGet_nft_metadataCdc() (*asset, error) { } info := bindataFileInfo{name: "transactions/scripts/get_nft_metadata.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x41, 0x56, 0xf8, 0xa7, 0xd7, 0x14, 0x36, 0x75, 0x3d, 0x9e, 0x30, 0xf1, 0x4, 0x14, 0xe3, 0x16, 0xd5, 0x28, 0xa4, 0x5c, 0x6f, 0xc, 0x92, 0xcc, 0x7e, 0x68, 0x33, 0xc7, 0x57, 0x5e, 0x56, 0xc2}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x8a, 0xd, 0xd8, 0x9c, 0x76, 0xff, 0x45, 0xbd, 0x25, 0x32, 0xb3, 0xe1, 0x8, 0xc3, 0x4b, 0x8e, 0x87, 0x8e, 0xc3, 0xb1, 0x7d, 0x29, 0x63, 0xa1, 0x3f, 0x14, 0xda, 0x8b, 0x2d, 0x13, 0xad, 0xb5}} return a, nil } diff --git a/tests/example_nft_test.cdc b/tests/example_nft_test.cdc index 93c97c0..2ebddbc 100644 --- a/tests/example_nft_test.cdc +++ b/tests/example_nft_test.cdc @@ -359,7 +359,8 @@ fun testGetViews() { Type(), Type(), Type(), - Type() + Type(), + Type() ] Test.assertEqual(expectedViews, supportedViews) } @@ -375,7 +376,8 @@ fun testGetExampleNFTViews() { let supportedViews = scriptResult.returnValue! as! [Type] let expectedViews = [ Type(), - Type() + Type(), + Type() ] Test.assertEqual(expectedViews, supportedViews) } diff --git a/tests/scripts/get_nft_metadata.cdc b/tests/scripts/get_nft_metadata.cdc new file mode 100644 index 0000000..cfee7d3 --- /dev/null +++ b/tests/scripts/get_nft_metadata.cdc @@ -0,0 +1,203 @@ +/// This script checks all views from MetadataViews for +/// a given NFT. Used for testing only. + +import "ExampleNFT" +import "MetadataViews" + +pub struct NFT { + pub let name: String + pub let description: String + pub let thumbnail: String + pub let owner: Address + pub let type: String + pub let royalties: [MetadataViews.Royalty] + pub let externalURL: String + pub let serialNumber: UInt64 + pub let collectionPublicPath: PublicPath + pub let collectionStoragePath: StoragePath + pub let collectionProviderPath: PrivatePath + pub let collectionPublic: String + pub let collectionPublicLinkedType: String + pub let collectionProviderLinkedType: String + pub let collectionName: String + pub let collectionDescription: String + pub let collectionExternalURL: String + pub let collectionSquareImage: String + pub let collectionBannerImage: String + pub let collectionSocials: {String: String} + pub let edition: MetadataViews.Edition + pub let traits: MetadataViews.Traits + pub let medias: MetadataViews.Medias? + pub let license: MetadataViews.License? + pub let bridgedName: String + pub let symbol: String + pub let tokenURI: String + + init( + name: String, + description: String, + thumbnail: String, + owner: Address, + nftType: String, + royalties: [MetadataViews.Royalty], + externalURL: String, + serialNumber: UInt64, + collectionPublicPath: PublicPath, + collectionStoragePath: StoragePath, + collectionProviderPath: PrivatePath, + collectionPublic: String, + collectionPublicLinkedType: String, + collectionProviderLinkedType: String, + collectionName: String, + collectionDescription: String, + collectionExternalURL: String, + collectionSquareImage: String, + collectionBannerImage: String, + collectionSocials: {String: String}, + edition: MetadataViews.Edition, + traits: MetadataViews.Traits, + medias: MetadataViews.Medias?, + license: MetadataViews.License?, + bridgedName: String, + symbol: String, + tokenURI: String + ) { + self.name = name + self.description = description + self.thumbnail = thumbnail + self.owner = owner + self.type = nftType + self.royalties = royalties + self.externalURL = externalURL + self.serialNumber = serialNumber + self.collectionPublicPath = collectionPublicPath + self.collectionStoragePath = collectionStoragePath + self.collectionProviderPath = collectionProviderPath + self.collectionPublic = collectionPublic + self.collectionPublicLinkedType = collectionPublicLinkedType + self.collectionProviderLinkedType = collectionProviderLinkedType + self.collectionName = collectionName + self.collectionDescription = collectionDescription + self.collectionExternalURL = collectionExternalURL + self.collectionSquareImage = collectionSquareImage + self.collectionBannerImage = collectionBannerImage + self.collectionSocials = collectionSocials + self.edition = edition + self.traits = traits + self.medias = medias + self.license = license + self.bridgedName = bridgedName + self.symbol = symbol + self.tokenURI = tokenURI + } +} + +pub fun main(address: Address, id: UInt64): Bool { + let account = getAccount(address) + + let collection = account + .getCapability(ExampleNFT.CollectionPublicPath) + .borrow<&{ExampleNFT.ExampleNFTCollectionPublic}>() + ?? panic("Could not borrow a reference to the collection") + + let nft = collection.borrowExampleNFT(id: id)! + + // Get the basic display information for this NFT + let display = MetadataViews.getDisplay(nft)! + + // Get the royalty information for the given NFT + let royaltyView = MetadataViews.getRoyalties(nft)! + + let externalURL = MetadataViews.getExternalURL(nft)! + + let collectionDisplay = MetadataViews.getNFTCollectionDisplay(nft)! + let nftCollectionView = MetadataViews.getNFTCollectionData(nft)! + + let nftEditionView = MetadataViews.getEditions(nft)! + let serialNumberView = MetadataViews.getSerial(nft)! + + let owner: Address = nft.owner!.address! + let nftType = nft.getType() + + let collectionSocials: {String: String} = {} + for key in collectionDisplay.socials.keys { + collectionSocials[key] = collectionDisplay.socials[key]!.url + } + + let traits = MetadataViews.getTraits(nft)! + + let medias = MetadataViews.getMedias(nft) + let license = MetadataViews.getLicense(nft) + + let bridgedMetadata = MetadataViews.getEVMBridgedMetadata(nft)! + + let nftMetadata = NFT( + name: display.name, + description: display.description, + thumbnail: display.thumbnail.uri(), + owner: owner, + nftType: nftType.identifier, + royalties: royaltyView.getRoyalties(), + externalURL: externalURL.url, + serialNumber: serialNumberView.number, + collectionPublicPath: nftCollectionView.publicPath, + collectionStoragePath: nftCollectionView.storagePath, + collectionProviderPath: nftCollectionView.providerPath, + collectionPublic: nftCollectionView.publicCollection.identifier, + collectionPublicLinkedType: nftCollectionView.publicLinkedType.identifier, + collectionProviderLinkedType: nftCollectionView.providerLinkedType.identifier, + collectionName: collectionDisplay.name, + collectionDescription: collectionDisplay.description, + collectionExternalURL: collectionDisplay.externalURL.url, + collectionSquareImage: collectionDisplay.squareImage.file.uri(), + collectionBannerImage: collectionDisplay.bannerImage.file.uri(), + collectionSocials: collectionSocials, + edition: nftEditionView.infoList[0], + traits: traits, + medias: medias, + license: license, + bridgedName: bridgedMetadata.name, + symbol: bridgedMetadata.symbol, + tokenURI: bridgedMetadata.uri.uri() + ) + + assert("NFT Name" == nftMetadata.name) + assert("NFT Description" == nftMetadata.description) + assert("NFT Thumbnail" == nftMetadata.thumbnail) + assert(Address(0x0000000000000007) == nftMetadata.owner) + assert("A.0000000000000007.ExampleNFT.NFT" == nftMetadata.type) + assert("Creator Royalty" == nftMetadata.royalties[0].description) + assert(Address(0x0000000000000007) == nftMetadata.royalties[0].receiver.address) + assert(0.05 == nftMetadata.royalties[0].cut) + assert("https://example-nft.onflow.org/0" == nftMetadata.externalURL) + assert((0 as UInt64) == nftMetadata.serialNumber) + assert(/public/exampleNFTCollection == nftMetadata.collectionPublicPath) + assert(/storage/exampleNFTCollection == nftMetadata.collectionStoragePath) + assert(/private/exampleNFTCollection == nftMetadata.collectionProviderPath) + assert("&A.0000000000000007.ExampleNFT.Collection{A.0000000000000007.ExampleNFT.ExampleNFTCollectionPublic}" == nftMetadata.collectionPublic) + assert("&A.0000000000000007.ExampleNFT.Collection{A.0000000000000007.ExampleNFT.ExampleNFTCollectionPublic,A.0000000000000001.NonFungibleToken.CollectionPublic,A.0000000000000001.NonFungibleToken.Receiver,A.0000000000000007.MetadataViews.ResolverCollection}" == nftMetadata.collectionPublicLinkedType) + assert("&A.0000000000000007.ExampleNFT.Collection{A.0000000000000007.ExampleNFT.ExampleNFTCollectionPublic,A.0000000000000001.NonFungibleToken.CollectionPublic,A.0000000000000001.NonFungibleToken.Provider,A.0000000000000007.MetadataViews.ResolverCollection}" == nftMetadata.collectionProviderLinkedType) + assert("The Example Collection" == nftMetadata.collectionName) + assert("This collection is used as an example to help you develop your next Flow NFT." == nftMetadata.collectionDescription) + assert("https://example-nft.onflow.org" == nftMetadata.collectionExternalURL) + assert("https://assets.website-files.com/5f6294c0c7a8cdd643b1c820/5f6294c0c7a8cda55cb1c936_Flow_Wordmark.svg" == nftMetadata.collectionSquareImage) + assert("https://assets.website-files.com/5f6294c0c7a8cdd643b1c820/5f6294c0c7a8cda55cb1c936_Flow_Wordmark.svg" == nftMetadata.collectionBannerImage) + assert({"twitter": "https://twitter.com/flow_blockchain"} == nftMetadata.collectionSocials) + assert("Example NFT Edition" == nftMetadata.edition.name) + assert((0 as UInt64) == nftMetadata.edition.number) + assert(nil == nftMetadata.edition.max) + assert("Common" == nftMetadata.traits.traits[3]!.rarity!.description) + assert(10.0 == nftMetadata.traits.traits[3]!.rarity!.score) + assert(100.0 == nftMetadata.traits.traits[3]!.rarity!.max) + assert(nil == nftMetadata.medias) + assert(nil == nftMetadata.license) + assert("ExampleNFT" == nftMetadata.bridgedName) + assert("XMPL" == nftMetadata.symbol, message: "Symbol is ".concat(nftMetadata.symbol)) + assert("https://example-nft.onflow.org/token-metadata/".concat(id.toString()).concat(".json") == nftMetadata.tokenURI) + + let coll <- nftCollectionView.createEmptyCollection() + assert(0 == coll.getIDs().length) + destroy <- coll + + return true +} diff --git a/transactions/scripts/get_nft_metadata.cdc b/transactions/scripts/get_nft_metadata.cdc index 25d6779..85b1308 100644 --- a/transactions/scripts/get_nft_metadata.cdc +++ b/transactions/scripts/get_nft_metadata.cdc @@ -27,6 +27,9 @@ access(all) struct NFT { access(all) let traits: MetadataViews.Traits access(all) let medias: MetadataViews.Medias? access(all) let license: MetadataViews.License? + access(all) let bridgedName: String + access(all) let symbol: String + access(all) let tokenURI: String init( name: String, @@ -49,8 +52,14 @@ access(all) struct NFT { collectionSocials: {String: String}, edition: MetadataViews.Edition, traits: MetadataViews.Traits, - medias: MetadataViews.Medias?, - license: MetadataViews.License? + medias:MetadataViews.Medias?, + license:MetadataViews.License?, + bridgedName: String, + symbol: String, + tokenURI: String, + bridgedName: String, + symbol: String, + tokenURI: String ) { self.name = name self.description = description @@ -74,6 +83,9 @@ access(all) struct NFT { self.traits = traits self.medias = medias self.license = license + self.bridgedName = bridgedName + self.symbol = symbol + self.tokenURI = tokenURI } } @@ -102,7 +114,8 @@ access(all) fun main(address: Address, id: UInt64): NFT { let nftCollectionView = MetadataViews.getNFTCollectionData(nft)! let nftEditionView = MetadataViews.getEditions(nft)! - let serialNumberView = MetadataViews.getSerial(nft)! + let serialNumbersear + View = MetadataViews.getSerial(nft)! let owner: Address = nft.owner!.address! let nftType = nft.getType() @@ -117,6 +130,8 @@ access(all) fun main(address: Address, id: UInt64): NFT { let medias = MetadataViews.getMedias(nft) let license = MetadataViews.getLicense(nft) + let bridgedMetadata = MetadataViews.getEVMBridgedMetadata(nft)! + return NFT( name: display.name, description: display.description, @@ -138,7 +153,13 @@ access(all) fun main(address: Address, id: UInt64): NFT { collectionSocials: collectionSocials, edition: nftEditionView.infoList[0], traits: traits, - medias:medias, - license:license + medias: medias, + license: license, + bridgedName: bridgedMetadata.name, + symbol: bridgedMetadata.symbol, + tokenURI: bridgedMetadata.uri.uri(), + bridgedName = bridgedMetadata.name, + symbol = bridgedMetadata.symbol, + tokenURI = bridgedMetadata.uri.uri() ) }