diff --git a/pds/contracts/IPackNFT.cdc b/pds/contracts/IPackNFT.cdc index 0d275ef..2ca4a39 100644 --- a/pds/contracts/IPackNFT.cdc +++ b/pds/contracts/IPackNFT.cdc @@ -1,6 +1,8 @@ import Crypto import NonFungibleToken from "NonFungibleToken" +/// Contract interface for PackNFT contracts. +/// access(all) contract interface IPackNFT{ /// Entitlement to perform operations on the PackNFT @@ -10,32 +12,40 @@ access(all) contract interface IPackNFT{ /// StoragePath for Collection Resource /// access(all) let CollectionStoragePath: StoragePath + /// PublicPath expected for deposit /// access(all) let CollectionPublicPath: PublicPath + /// PublicPath for receiving PackNFT /// access(all) let CollectionIPackNFTPublicPath: PublicPath + /// StoragePath for the PackNFT Operator Resource (issuer owns this) /// access(all) let OperatorStoragePath: StoragePath + /// Request for Reveal /// access(all) event RevealRequest(id: UInt64, openRequest: Bool) + /// Request for Open /// /// This is emitted when owner of a PackNFT request for the entitled NFT to be /// deposited to its account access(all) event OpenRequest(id: UInt64) + /// Burned /// /// Emitted when a PackNFT has been burned access(all) event Burned(id: UInt64 ) + /// Opened /// /// Emitted when a packNFT has been opened access(all) event Opened(id: UInt64) + // TODO: Clean up after enum handling/removal is clarified. // Enums cannot be declared anymore in interfaces in Cadence 1.0 // access(all) enum Status: UInt8 { // access(all) case Sealed @@ -43,6 +53,8 @@ access(all) contract interface IPackNFT{ // access(all) case Opened // } + /// Struct interface for Collectible + /// access(all) struct interface Collectible { access(all) let address: Address access(all) let contractName: String @@ -51,6 +63,8 @@ access(all) contract interface IPackNFT{ init(address: Address, contractName: String, id: UInt64) } + /// Resource interface for PackNFT + /// access(all) resource interface IPack { access(all) let issuer: Address // access(all) var status: Status @@ -62,6 +76,8 @@ access(all) contract interface IPackNFT{ init(commitHash: String, issuer: Address) } + /// Resource interface for IOperator + /// access(all) resource interface IOperator { access(Operatable) fun mint(distId: UInt64, commitHash: String, issuer: Address): @{IPackNFT.NFT} access(Operatable) fun reveal(id: UInt64, nfts: [{Collectible}], salt: String) @@ -71,11 +87,15 @@ access(all) contract interface IPackNFT{ // Included for backwards compatibility access(all) resource interface PackNFTOperator: IOperator {} + /// Resource interface for IPackNFTToken + /// access(all) resource interface IPackNFTToken { access(all) let id: UInt64 access(all) let issuer: Address } + /// Resource interface for NFT + /// access(all) resource interface NFT: NonFungibleToken.INFT, IPackNFTToken, IPackNFTOwnerOperator { access(all) let id: UInt64 access(all) let issuer: Address @@ -85,22 +105,17 @@ access(all) contract interface IPackNFT{ // Included for backwards compatibility access(all) resource interface IPackNFTOwnerOperator{} + access(all) resource interface IPackNFTCollectionPublic {} - access(all) resource interface IPackNFTCollectionPublic { - access(all) fun deposit(token: @{NonFungibleToken.NFT}) - view access(all) fun getIDs(): [UInt64] - view access(all) fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? - view access(all) fun borrowPackNFT(id: UInt64): &{IPackNFT.NFT}? { - // If the result isn't nil, the id of the returned reference - // should be the same as the argument to the function - post { - (result == nil) || (result!.id == id): - "Cannot borrow PackNFT reference: The ID of the returned reference is incorrect" - } - } - } - + /// Emit a RevealRequest event to signal a Sealed Pack NFT should be revealed + /// access(contract) fun revealRequest(id: UInt64, openRequest: Bool) + + /// Emit an OpenRequest event to signal a Revealed Pack NFT should be opened + /// access(contract) fun openRequest(id: UInt64) + + /// Reveal a Sealed Pack NFT + /// access(all) fun publicReveal(id: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) } \ No newline at end of file diff --git a/pds/contracts/PDS.cdc b/pds/contracts/PDS.cdc index ab90c5e..6ca5e68 100644 --- a/pds/contracts/PDS.cdc +++ b/pds/contracts/PDS.cdc @@ -1,34 +1,49 @@ import NonFungibleToken from "NonFungibleToken" import IPackNFT from "IPackNFT" +/// The Pack Distribution Service (PDS) contract is responsible for creating and managing distributions of packs. +/// access(all) contract PDS{ - /// Entitlement that grants the ability to create a distribution + /// Entitlement that grants the ability to create a distribution. + /// access(all) entitlement DistCreation - /// The collection to hold all escrowed NFT - /// Original collection created from PackNFT access(all) var version: String access(all) let PackIssuerStoragePath: StoragePath access(all) let PackIssuerCapRecv: PublicPath access(all) let DistCreatorStoragePath: StoragePath access(all) let DistManagerStoragePath: StoragePath + /// The next distribution ID to be used. + /// access(all) var nextDistId: UInt64 + + /// Dictionary that stores distribution IDs to distribution details in the contract state. + /// access(contract) let Distributions: {UInt64: DistInfo} + + /// Dictionary that stores distribution IDs to shared capabilities in the contract state. + /// access(contract) let DistSharedCap: @{UInt64: SharedCapabilities} - /// Issuer has created a distribution + /// Emitted when an issuer has created a distribution. + /// access(all) event DistributionCreated(DistId: UInt64, title: String, metadata: {String: String}, state: UInt8) - /// Distribution manager has updated a distribution state + /// Emmitted when a distribution manager has updated a distribution state. + /// access(all) event DistributionStateUpdated(DistId: UInt64, state: UInt8) + /// Enum that defines the status of a Distribution. + /// access(all) enum DistState: UInt8 { access(all) case Initialized access(all) case Invalid access(all) case Complete } + /// Struct that defines the details of a Distribution. + /// access(all) struct DistInfo { access(all) let title: String access(all) let metadata: {String: String} @@ -38,6 +53,8 @@ access(all) contract PDS{ self.state = newState } + /// DistInfo struct initializer. + /// init(title: String, metadata: {String: String}) { self.title = title self.metadata = metadata @@ -45,7 +62,8 @@ access(all) contract PDS{ } } - + /// Struct that defines a Collectible. + /// access(all) struct Collectible: IPackNFT.Collectible { access(all) let address: Address access(all) let contractName: String @@ -70,9 +88,11 @@ access(all) contract PDS{ } else { a = addrStr.slice(from: 2, upTo: 18) } - var str = c.concat(a).concat(".").concat(self.contractName).concat(".").concat(self.id.toString()) - return str + return c.concat(a).concat(".").concat(self.contractName).concat(".").concat(self.id.toString()) } + + /// Collectible struct initializer. + /// init(address: Address, contractName: String, id: UInt64) { self.address = address self.contractName = contractName @@ -80,16 +100,27 @@ access(all) contract PDS{ } } + /// Resource that defines the shared capabilities required for creating and managing Pack NFTs. + /// access(all) resource SharedCapabilities { - access(self) let withdrawCap: Capability + /// Capability to withdraw NFTs from the issuer. + /// + access(self) let withdrawCap: Capability + + /// Capability to mint, reveal, and open Pack NFTs. + /// access(self) let operatorCap: Capability + /// Withdraw an NFT from the issuer. + /// access(all) fun withdrawFromIssuer(withdrawID: UInt64): @{NonFungibleToken.NFT} { let c = self.withdrawCap.borrow() ?? panic("no such cap") return <- c.withdraw(withdrawID: withdrawID) } - access(all) fun mintPackNFT(distId: UInt64, commitHashes: [String], issuer: Address, recvCap: &{NonFungibleToken.CollectionPublic} ){ + /// Mint Pack NFTs. + /// + access(all) fun mintPackNFT(distId: UInt64, commitHashes: [String], issuer: Address, recvCap: &{NonFungibleToken.CollectionPublic}) { var i = 0 let c = self.operatorCap.borrow() ?? panic("no such cap") while i < commitHashes.length{ @@ -100,11 +131,15 @@ access(all) contract PDS{ } } + /// Reveal Pack NFTs. + /// access(all) fun revealPackNFT(packId: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) { let c = self.operatorCap.borrow() ?? panic("no such cap") c.reveal(id: packId, nfts: nfts, salt: salt) } + /// Open Pack NFTs. + /// access(all) fun openPackNFT(packId: UInt64, nfts: [{IPackNFT.Collectible}], recvCap: &{NonFungibleToken.CollectionPublic}, collectionStoragePath: StoragePath) { let c = self.operatorCap.borrow() ?? panic("no such cap") let toReleaseNFTs: [UInt64] = [] @@ -117,23 +152,25 @@ access(all) contract PDS{ PDS.releaseEscrow(nftIds: toReleaseNFTs, recvCap: recvCap , collectionStoragePath: collectionStoragePath) } - + /// SharedCapabilities resource initializer. + /// init( - withdrawCap: Capability, + withdrawCap: Capability, operatorCap: Capability - - ){ + ) { self.withdrawCap = withdrawCap self.operatorCap = operatorCap } } - // Included for backwards compatibility + // Included for backwards compatibility. access(all) resource interface PackIssuerCapReciever {} + /// Resource that defines the issuer of a pack. + /// access(all) resource PackIssuer: PackIssuerCapReciever { - access(self) var cap: Capability? + access(self) var cap: Capability? access(all) fun setDistCap(cap: Capability) { pre { @@ -147,14 +184,19 @@ access(all) contract PDS{ let c = self.cap!.borrow()! c.createNewDist(sharedCap: <- sharedCap, title: title, metadata: metadata) } + + /// PackIssuer resource initializer. + /// init() { self.cap = nil } } - // Included for backwards compatibility - access(all) resource interface IDistCreator {} + // Included for backwards compatibility. + access(all) resource interface IDistCreator {} + /// Resource that defines the creator of a distribution. + /// access(all) resource DistributionCreator: IDistCreator { access(DistCreation) fun createNewDist(sharedCap: @SharedCapabilities, title: String, metadata: {String: String}) { let currentId = PDS.nextDistId @@ -165,6 +207,8 @@ access(all) contract PDS{ } } + /// Resource that defines the manager of a distribution. + /// access(all) resource DistributionManager { access(all) fun updateDistState(distId: UInt64, state: PDS.DistState) { let d = PDS.Distributions.remove(key: distId) ?? panic ("No such distribution") @@ -186,25 +230,25 @@ access(all) contract PDS{ PDS.DistSharedCap[distId] <-! d } - access(all) fun mintPackNFT(distId: UInt64, commitHashes: [String], issuer: Address, recvCap: &{NonFungibleToken.CollectionPublic}){ + access(all) fun mintPackNFT(distId: UInt64, commitHashes: [String], issuer: Address, recvCap: &{NonFungibleToken.CollectionPublic}) { assert(PDS.DistSharedCap.containsKey(distId), message: "No such distribution") let d <- PDS.DistSharedCap.remove(key: distId)! d.mintPackNFT(distId: distId, commitHashes: commitHashes, issuer: issuer, recvCap: recvCap) PDS.DistSharedCap[distId] <-! d } - access(all) fun revealPackNFT(distId: UInt64, packId: UInt64, nftContractAddrs: [Address], nftContractName: [String], nftIds: [UInt64], salt: String){ + access(all) fun revealPackNFT(distId: UInt64, packId: UInt64, nftContractAddrs: [Address], nftContractNames: [String], nftIds: [UInt64], salt: String) { assert(PDS.DistSharedCap.containsKey(distId), message: "No such distribution") assert( - nftContractAddrs.length == nftContractName.length && - nftContractName.length == nftIds.length, + nftContractAddrs.length == nftContractNames.length && + nftContractNames.length == nftIds.length, message: "NFTs must be fully described" ) let d <- PDS.DistSharedCap.remove(key: distId)! let arr: [{IPackNFT.Collectible}] = [] var i = 0 while i < nftContractAddrs.length { - let s = Collectible(address: nftContractAddrs[i], contractName: nftContractName[i], id: nftIds[i]) + let s = Collectible(address: nftContractAddrs[i], contractName: nftContractNames[i], id: nftIds[i]) arr.append(s) i = i + 1 } @@ -216,17 +260,17 @@ access(all) contract PDS{ distId: UInt64, packId: UInt64, nftContractAddrs: [Address], - nftContractName: [String], + nftContractNames: [String], nftIds: [UInt64], recvCap: &{NonFungibleToken.CollectionPublic}, collectionStoragePath: StoragePath - ){ + ) { assert(PDS.DistSharedCap.containsKey(distId), message: "No such distribution") let d <- PDS.DistSharedCap.remove(key: distId)! let arr: [{IPackNFT.Collectible}] = [] var i = 0 while i < nftContractAddrs.length { - let s = Collectible(address: nftContractAddrs[i], contractName: nftContractName[i], id: nftIds[i]) + let s = Collectible(address: nftContractAddrs[i], contractName: nftContractNames[i], id: nftIds[i]) arr.append(s) i = i + 1 } @@ -236,14 +280,18 @@ access(all) contract PDS{ } + /// Returns the manager collection capability to receive NFTs to be escrowed. + /// access(contract) fun getManagerCollectionCap(escrowCollectionPublic: PublicPath): Capability<&{NonFungibleToken.CollectionPublic}> { let pdsCollection = self.account.capabilities.get<&{NonFungibleToken.CollectionPublic}>(escrowCollectionPublic)! assert(pdsCollection.check(), message: "Please ensure PDS has created and linked a Collection for recieving escrows") return pdsCollection } - access(contract) fun releaseEscrow(nftIds: [UInt64], recvCap: &{NonFungibleToken.CollectionPublic}, collectionStoragePath: StoragePath ) { - let pdsCollection = self.account.storage.borrow(from: collectionStoragePath) + /// Release escrowed NFTs to the receiver. + /// + access(contract) fun releaseEscrow(nftIds: [UInt64], recvCap: &{NonFungibleToken.CollectionPublic}, collectionStoragePath: StoragePath ) { + let pdsCollection = self.account.storage.borrow(from: collectionStoragePath) ?? panic("Unable to borrow PDS collection provider capability from private path") var i = 0 while i < nftIds.length { @@ -252,24 +300,31 @@ access(all) contract PDS{ } } - access(all) fun createPackIssuer (): @PackIssuer{ + /// Create a PackIssuer resource and return it to the caller. + access(all) fun createPackIssuer(): @PackIssuer{ return <- create PackIssuer() } - access(all) fun createSharedCapabilities ( - withdrawCap: Capability, - operatorCap: Capability - ): @SharedCapabilities{ + /// Create a SharedCapabilities resource and return it to the caller. + /// + access(all) fun createSharedCapabilities( + withdrawCap: Capability, + operatorCap: Capability + ): @SharedCapabilities { return <- create SharedCapabilities( withdrawCap: withdrawCap, operatorCap: operatorCap ) } + /// Returns the details of a distribution if it exists, nil otherwise. + /// access(all) fun getDistInfo(distId: UInt64): DistInfo? { return PDS.Distributions[distId] } + /// PDS contract initializer. + /// init( PackIssuerStoragePath: StoragePath, PackIssuerCapRecv: PublicPath, @@ -286,10 +341,10 @@ access(all) contract PDS{ self.DistManagerStoragePath = DistManagerStoragePath self.version = version - // Create a distributionCreator to share create capability with PackIssuer + // Create a DistributionCreator resource to share create capability with PackIssuer. self.account.storage.save(<- create DistributionCreator(), to: self.DistCreatorStoragePath) - // Create a distributionManager to manager distributions (withdraw for escrow, mint PackNFT todo: reveal / transfer) + // Create a DistributionManager resource to manager distributions (withdraw for escrow, mint PackNFT todo: reveal / transfer). self.account.storage.save(<- create DistributionManager(), to: self.DistManagerStoragePath) } } diff --git a/pds/contracts/PackNFT.cdc b/pds/contracts/PackNFT.cdc index cc5cdf8..644dfe7 100644 --- a/pds/contracts/PackNFT.cdc +++ b/pds/contracts/PackNFT.cdc @@ -3,6 +3,8 @@ import NonFungibleToken from "NonFungibleToken" import IPackNFT from "IPackNFT" import MetadataViews from "MetadataViews" +/// Contract that defines Pack NFTs. +/// access(all) contract PackNFT: NonFungibleToken, IPackNFT { access(all) var totalSupply: UInt64 @@ -12,7 +14,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { access(all) let CollectionIPackNFTPublicPath: PublicPath access(all) let OperatorStoragePath: StoragePath - // representation of the NFT in this contract to keep track of states + /// Dictionary that stores Pack resources in the contract state (i.e., Pack NFT representations to keep track of states). + /// access(contract) let packs: @{UInt64: Pack} access(all) event RevealRequest(id: UInt64, openRequest: Bool) @@ -20,51 +23,70 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { access(all) event Revealed(id: UInt64, salt: [UInt8], nfts: String) access(all) event Opened(id: UInt64) access(all) event Minted(id: UInt64, hash: [UInt8], distId: UInt64) - access(all) event Burned(id: UInt64) access(all) event ContractInitialized() + + // TODO: Consider removing 'Withdraw' and 'Deposit' events now that similar 'Withdrawn' and 'Deposited' events are emitted in NonFungibleToken contract interface access(all) event Withdraw(id: UInt64, from: Address?) access(all) event Deposit(id: UInt64, to: Address?) + /// Enum that defines the status of a Pack resource. + /// access(all) enum Status: UInt8 { access(all) case Sealed access(all) case Revealed access(all) case Opened } + /// Resource that defines a Pack NFT Operator, responsible for: + /// - Minting Pack NFTs and the corresponding Pack resources that keep track of states, + /// - Revealing sealed Pack resources, and + /// - opening revealed Pack resources. + /// access(all) resource PackNFTOperator: IPackNFT.IOperator { + /// Mint a new Pack NFT resource and corresponding Pack resource; store the Pack resource in the contract's packs dictionary + /// and return the Pack NFT resource to the caller. + /// access(IPackNFT.Operatable) fun mint(distId: UInt64, commitHash: String, issuer: Address): @{IPackNFT.NFT} { let nft <- create NFT(commitHash: commitHash, issuer: issuer) PackNFT.totalSupply = PackNFT.totalSupply + 1 - let p <-create Pack(commitHash: commitHash, issuer: issuer) + let p <- create Pack(commitHash: commitHash, issuer: issuer) PackNFT.packs[nft.id] <-! p emit Minted(id: nft.id, hash: commitHash.decodeHex(), distId: distId) return <- nft } + /// Reveal a Sealed Pack resource. + /// access(IPackNFT.Operatable) fun reveal(id: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) { let p <- PackNFT.packs.remove(key: id) ?? panic("no such pack") p.reveal(id: id, nfts: nfts, salt: salt) PackNFT.packs[id] <-! p } + /// Open a Revealed Pack NFT resource. + /// access(IPackNFT.Operatable) fun open(id: UInt64, nfts: [{IPackNFT.Collectible}]) { let p <- PackNFT.packs.remove(key: id) ?? panic("no such pack") p.open(id: id, nfts: nfts) PackNFT.packs[id] <-! p } - init(){} + /// PackNFTOperator resource initializer. + /// + init() {} } + /// Resource that defines a Pack NFT. + /// access(all) resource Pack { access(all) let hash: [UInt8] access(all) let issuer: Address - access(all) var status: PackNFT.Status + access(all) var status: Status access(all) var salt: [UInt8]? access(all) fun verify(nftString: String): Bool { - assert(self.status != PackNFT.Status.Sealed, message: "Pack not revealed yet") + assert(self.status != Status.Sealed, message: "Pack not revealed yet") var hashString = String.encodeHex(self.salt!) hashString = hashString.concat(",").concat(nftString) let hash = HashAlgorithm.SHA2_256.hash(hashString.utf8) @@ -88,44 +110,58 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { } access(contract) fun reveal(id: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) { - assert(self.status == PackNFT.Status.Sealed, message: "Pack status is not Sealed") + assert(self.status == Status.Sealed, message: "Pack status is not Sealed") let v = self._verify(nfts: nfts, salt: salt, commitHash: String.encodeHex(self.hash)) self.salt = salt.decodeHex() - self.status = PackNFT.Status.Revealed + self.status = Status.Revealed emit Revealed(id: id, salt: salt.decodeHex(), nfts: v) } access(contract) fun open(id: UInt64, nfts: [{IPackNFT.Collectible}]) { - assert(self.status == PackNFT.Status.Revealed, message: "Pack status is not Revealed") + assert(self.status == Status.Revealed, message: "Pack status is not Revealed") self._verify(nfts: nfts, salt: String.encodeHex(self.salt!), commitHash: String.encodeHex(self.hash)) - self.status = PackNFT.Status.Opened + self.status = Status.Opened emit Opened(id: id) } + /// Pack resource initializer. + /// init(commitHash: String, issuer: Address) { + // Set the hash and issuer from the arguments. self.hash = commitHash.decodeHex() self.issuer = issuer - self.status = PackNFT.Status.Sealed + + // Initial status is Sealed. + self.status = Status.Sealed + + // Salt is nil until reveal. self.salt = nil } } - access(all) resource NFT: - NonFungibleToken.INFT, - IPackNFT.IPackNFTToken, - IPackNFT.IPackNFTOwnerOperator, - NonFungibleToken.NFT, - IPackNFT.NFT - { + /// Resource that defines a Pack NFT. + /// + access(all) resource NFT: NonFungibleToken.NFT, IPackNFT.NFT, IPackNFT.IPackNFTToken, IPackNFT.IPackNFTOwnerOperator { + /// This NFT's unique ID. + /// access(all) let id: UInt64 + + /// This NFT's commit hash, used to verify the IDs of the NFTs in the Pack. + /// access(all) let hash: [UInt8] + + /// This NFT's issuer. access(all) let issuer: Address - access(NonFungibleToken.Update | NonFungibleToken.Owner) fun reveal(openRequest: Bool){ + /// Reveal a Sealed Pack resource. + /// + access(NonFungibleToken.Update | NonFungibleToken.Owner) fun reveal(openRequest: Bool) { PackNFT.revealRequest(id: self.id, openRequest: openRequest) } - access(NonFungibleToken.Update |NonFungibleToken.Owner) fun open(){ + /// Open a Revealed Pack resource. + /// + access(NonFungibleToken.Update |NonFungibleToken.Owner) fun open() { PackNFT.openRequest(id: self.id) } @@ -133,17 +169,16 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { /// access(all) event ResourceDestroyed(id: UInt64 = self.id) - // When destroying a NFT resource, the corresponding PackNFT resource now has to be detroyed as well in a separate call. - // This is because custome destroy() function is not allowed in Cadence 1.0. - // destroy() { - // let p <- PackNFT.packs.remove(key: self.id) ?? panic("no such pack") - // PackNFT.totalSupply = PackNFT.totalSupply - (1 as UInt64) - - // emit Burned(id: self.id) - // destroy p - // } + /// Executed by calling the Burner contract's burn method (i.e., conforms to the Burnable interface) + /// + access(contract) fun burnCallback() { + PackNFT.totalSupply = PackNFT.totalSupply - 1 + destroy <- PackNFT.packs.remove(key: self.id) ?? panic("no such pack") + } - init(commitHash: String, issuer: Address ) { + /// NFT resource initializer. + /// + init(commitHash: String, issuer: Address) { self.id = self.uuid self.hash = commitHash.decodeHex() self.issuer = issuer @@ -152,125 +187,146 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { /// Create an empty Collection for Pinnacle NFTs and return it to the caller /// access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <- PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <- PackNFT.createEmptyCollection(nftType: Type<@NFT>()) } + /// Return the metadata view types available for this NFT. + /// view access(all) fun getViews(): [Type] { return [] } + + /// Resolve this NFT's metadata views. + /// view access(all) fun resolveView(_ view: Type): AnyStruct? { return nil } } - access(all) resource Collection: - NonFungibleToken.Provider, - NonFungibleToken.Receiver, - NonFungibleToken.CollectionPublic, - IPackNFT.IPackNFTCollectionPublic, - NonFungibleToken.Collection - { - // dictionary of NFT conforming tokens - // NFT is a resource type with an `UInt64` ID field + /// Resource that defines a Collection of Pack NFTs. + /// + access(all) resource Collection: NonFungibleToken.Collection, IPackNFT.IPackNFTCollectionPublic { + /// Dictionary of NFT conforming tokens. + /// NFT is a resource type with a UInt64 ID field. + /// access(all) var ownedNFTs: @{UInt64: {NonFungibleToken.NFT}} - init () { + /// Collection resource initializer. + /// + init() { self.ownedNFTs <- {} } - // withdraw removes an NFT from the collection and moves it to the caller + /// Remove an NFT from the collection and moves it to the caller. + /// access(NonFungibleToken.Withdraw | NonFungibleToken.Owner) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { let token <- self.ownedNFTs.remove(key: withdrawID) ?? panic("missing NFT") - emit Withdraw(id: token.id, from: self.owner?.address) + + // Withdrawn event emitted from NonFungibleToken contract interface. + emit Withdraw(id: token.id, from: self.owner?.address) // TODO: Consider removing return <- token } - // deposit takes a NFT and adds it to the collections dictionary - // and adds the ID to the id array + /// Deposit an NFT into this Collection. + /// access(all) fun deposit(token: @{NonFungibleToken.NFT}) { - let token <- token as! @PackNFT.NFT - + let token <- token as! @NFT let id: UInt64 = token.id - - // add the new token to the dictionary which removes the old one + // Add the new token to the dictionary which removes the old one. let oldToken <- self.ownedNFTs[id] <- token - emit Deposit(id: id, to: self.owner?.address) + // Deposited event emitted from NonFungibleToken contract interface. + emit Deposit(id: id, to: self.owner?.address) // TODO: Consider removing destroy oldToken } - // getIDs returns an array of the IDs that are in the collection + /// Return an array of the IDs that are in the collection. + /// view access(all) fun getIDs(): [UInt64] { return self.ownedNFTs.keys } - /// Return the amount of NFTs stored in the collection + /// Return the amount of NFTs stored in the collection. /// view access(all) fun getLength(): Int { return self.ownedNFTs.keys.length } - /// Return a list of NFT types that this receiver accepts + /// Return a list of NFT types that this receiver accepts. /// view access(all) fun getSupportedNFTTypes(): {Type: Bool} { let supportedTypes: {Type: Bool} = {} - supportedTypes[Type<@PackNFT.NFT>()] = true + supportedTypes[Type<@NFT>()] = true return supportedTypes } - /// Return whether or not the given type is accepted by the collection - /// A collection that can accept any type should just return true by default + /// Return whether or not the given type is accepted by the collection. /// view access(all) fun isSupportedNFTType(type: Type): Bool { - if type == Type<@PackNFT.NFT>() { + if type == Type<@NFT>() { return true } return false } - // borrowNFT gets a reference to an NFT in the collection - // so that the caller can read its metadata and call its methods + /// Return a reference to an NFT in the Collection. + /// view access(all) fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { return &self.ownedNFTs[id] } + /// Return a reference to an NFT in the Collection as a IPackNFT.NFT. + /// view access(all) fun borrowPackNFT(id: UInt64): &{IPackNFT.NFT}? { return self.borrowNFT(id) as! &{IPackNFT.NFT}? } - /// createEmptyCollection creates an empty Collection of the same type - /// and returns it to the caller + /// Create an empty Collection of the same type and returns it to the caller. + /// access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <-PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <-PackNFT.createEmptyCollection(nftType: Type<@NFT>()) } } + /// Emit a RevealRequest event to signal a Sealed Pack NFT should be revealed. + /// access(contract) fun revealRequest(id: UInt64, openRequest: Bool ) { let p = PackNFT.borrowPackRepresentation(id: id) ?? panic ("No such pack") - assert(p.status.rawValue == PackNFT.Status.Sealed.rawValue, message: "Pack status must be Sealed for reveal request") + assert(p.status.rawValue == Status.Sealed.rawValue, message: "Pack status must be Sealed for reveal request") emit RevealRequest(id: id, openRequest: openRequest) } + /// Emit an OpenRequest event to signal a Revealed Pack NFT should be opened. + /// access(contract) fun openRequest(id: UInt64) { let p = PackNFT.borrowPackRepresentation(id: id) ?? panic ("No such pack") - assert(p.status.rawValue == PackNFT.Status.Revealed.rawValue, message: "Pack status must be Revealed for open request") + assert(p.status.rawValue == Status.Revealed.rawValue, message: "Pack status must be Revealed for open request") emit OpenRequest(id: id) } + /// Reveal a Sealed Pack NFT. + /// access(all) fun publicReveal(id: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) { let p = PackNFT.borrowPackRepresentation(id: id) ?? panic ("No such pack") p.reveal(id: id, nfts: nfts, salt: salt) } - access(all) fun borrowPackRepresentation(id: UInt64): &Pack? { + /// Return a reference to a Pack resource stored in the contract state. + /// + access(all) fun borrowPackRepresentation(id: UInt64): &Pack? { return (&self.packs[id] as &Pack?)! } + /// Create an empty Collection for Pack NFTs and return it to the caller. + /// access(all) fun createEmptyCollection(nftType: Type): @{NonFungibleToken.Collection} { + if nftType != Type<@NFT>() { + panic("NFT type is not supported") + } return <- create Collection() } - /// Function that returns all the Metadata Views implemented by a Non Fungible Token + /// Return the metadata views implemented by this contract. /// /// @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. @@ -282,7 +338,7 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { ] } - /// Function that resolves a metadata view for this contract. + /// Resolve a metadata view for this contract. /// /// @param view: The Type of the desired view. /// @return A structure representing the requested view. @@ -293,10 +349,10 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { let collectionData = MetadataViews.NFTCollectionData( storagePath: /storage/cadenceExampleNFTCollection, publicPath: /public/cadenceExampleNFTCollection, - publicCollection: Type<&PackNFT.Collection>(), - publicLinkedType: Type<&PackNFT.Collection>(), + publicCollection: Type<&Collection>(), + publicLinkedType: Type<&Collection>(), createEmptyCollectionFunction: (fun(): @{NonFungibleToken.Collection} { - return <-PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <-PackNFT.createEmptyCollection(nftType: Type<@NFT>()) }) ) return collectionData @@ -321,13 +377,15 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { return nil } + /// PackNFT contract initializer. + /// init( CollectionStoragePath: StoragePath, CollectionPublicPath: PublicPath, CollectionIPackNFTPublicPath: PublicPath, OperatorStoragePath: StoragePath, version: String - ){ + ) { self.totalSupply = 0 self.packs <- {} self.CollectionStoragePath = CollectionStoragePath @@ -336,9 +394,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { self.OperatorStoragePath = OperatorStoragePath self.version = version - // Create a collection to receive Pack NFTs - let collection <- create Collection() - self.account.storage.save(<-collection, to: self.CollectionStoragePath) + // Create a collection to receive Pack NFTs and publish public receiver capabilities. + self.account.storage.save(<- create Collection(), to: self.CollectionStoragePath) self.account.capabilities.publish( self.account.capabilities.storage.issue<&{NonFungibleToken.CollectionPublic}>(self.CollectionStoragePath), at: self.CollectionPublicPath @@ -348,9 +405,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { at: self.CollectionIPackNFTPublicPath ) - // Create a operator to share mint capability with proxy - let operator <- create PackNFTOperator() - self.account.storage.save(<-operator, to: self.OperatorStoragePath) + // Create a Pack NFT operator to share mint capability with proxy. + self.account.storage.save(<- create PackNFTOperator(), to: self.OperatorStoragePath) self.account.capabilities.storage.issue<&{IPackNFT.IOperator}>(self.OperatorStoragePath) } } diff --git a/pds/contracts/PackNFT_AllDay.cdc b/pds/contracts/PackNFT_AllDay.cdc index b944b80..43a8476 100644 --- a/pds/contracts/PackNFT_AllDay.cdc +++ b/pds/contracts/PackNFT_AllDay.cdc @@ -4,6 +4,8 @@ import FungibleToken from "FungibleToken" import IPackNFT from "IPackNFT" import MetadataViews from "MetadataViews" +/// Contract that defines Pack NFTs. +/// access(all) contract PackNFT: NonFungibleToken, IPackNFT { access(all) var totalSupply: UInt64 @@ -13,7 +15,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { access(all) let CollectionIPackNFTPublicPath: PublicPath access(all) let OperatorStoragePath: StoragePath - // representation of the NFT in this contract to keep track of states + /// Dictionary that stores Pack resources in the contract state (i.e., Pack NFT representations to keep track of states). + /// access(contract) let packs: @{UInt64: Pack} access(all) event RevealRequest(id: UInt64, openRequest: Bool) @@ -22,50 +25,69 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { access(all) event Opened(id: UInt64) access(all) event Mint(id: UInt64, commitHash: String, distId: UInt64) access(all) event ContractInitialized() + + // TODO: Consider removing 'Withdraw' and 'Deposit' events now that similar 'Withdrawn' and 'Deposited' events are emitted in NonFungibleToken contract interface access(all) event Withdraw(id: UInt64, from: Address?) access(all) event Deposit(id: UInt64, to: Address?) - access(all) event Burned(id: UInt64) + /// Enum that defines the status of a Pack resource. + /// access(all) enum Status: UInt8 { access(all) case Sealed access(all) case Revealed access(all) case Opened } + /// Resource that defines a Pack NFT Operator, responsible for: + /// - Minting Pack NFTs and the corresponding Pack resources that keep track of states, + /// - Revealing sealed Pack resources, and + /// - opening revealed Pack resources. + /// access(all) resource PackNFTOperator: IPackNFT.IOperator { - access(IPackNFT.Operatable) fun mint(distId: UInt64, commitHash: String, issuer: Address): @{IPackNFT.NFT}{ + /// Mint a new Pack NFT resource and corresponding Pack resource; store the Pack resource in the contract's packs dictionary + /// and return the Pack NFT resource to the caller. + /// + access(IPackNFT.Operatable) fun mint(distId: UInt64, commitHash: String, issuer: Address): @{IPackNFT.NFT} { let nft <- create NFT(commitHash: commitHash, issuer: issuer) PackNFT.totalSupply = PackNFT.totalSupply + 1 - let p <-create Pack(commitHash: commitHash, issuer: issuer) + let p <- create Pack(commitHash: commitHash, issuer: issuer) PackNFT.packs[nft.id] <-! p emit Mint(id: nft.id, commitHash: commitHash, distId: distId) return <- nft } + /// Reveal a Sealed Pack resource. + /// access(IPackNFT.Operatable) fun reveal(id: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) { let p <- PackNFT.packs.remove(key: id) ?? panic("no such pack") p.reveal(id: id, nfts: nfts, salt: salt) PackNFT.packs[id] <-! p } + /// Open a Revealed Pack NFT resource. + /// access(IPackNFT.Operatable) fun open(id: UInt64, nfts: [{IPackNFT.Collectible}]) { let p <- PackNFT.packs.remove(key: id) ?? panic("no such pack") p.open(id: id, nfts: nfts) PackNFT.packs[id] <-! p } - init(){} + /// PackNFTOperator resource initializer. + /// + init() {} } + /// Resource that defines a Pack NFT. + /// access(all) resource Pack { access(all) let commitHash: String access(all) let issuer: Address - access(all) var status: PackNFT.Status + access(all) var status: Status access(all) var salt: String? access(all) fun verify(nftString: String): Bool { - assert(self.status != PackNFT.Status.Sealed, message: "Pack not revealed yet") + assert(self.status != Status.Sealed, message: "Pack not revealed yet") var hashString = self.salt! hashString = hashString.concat(",").concat(nftString) let hash = HashAlgorithm.SHA2_256.hash(hashString.utf8) @@ -89,38 +111,59 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { } access(contract) fun reveal(id: UInt64, nfts: [{IPackNFT.Collectible}], salt: String) { - assert(self.status == PackNFT.Status.Sealed, message: "Pack status is not Sealed") + assert(self.status == Status.Sealed, message: "Pack status is not Sealed") let v = self._verify(nfts: nfts, salt: salt, commitHash: self.commitHash) self.salt = salt - self.status = PackNFT.Status.Revealed + self.status = Status.Revealed emit Revealed(id: id, salt: salt, nfts: v) } access(contract) fun open(id: UInt64, nfts: [{IPackNFT.Collectible}]) { - assert(self.status == PackNFT.Status.Revealed, message: "Pack status is not Revealed") + assert(self.status == Status.Revealed, message: "Pack status is not Revealed") self._verify(nfts: nfts, salt: self.salt!, commitHash: self.commitHash) - self.status = PackNFT.Status.Opened + self.status = Status.Opened emit Opened(id: id) } + /// Pack resource initializer. + /// init(commitHash: String, issuer: Address) { + // Set the hash and issuer from the arguments. self.commitHash = commitHash self.issuer = issuer - self.status = PackNFT.Status.Sealed + + // Initial status is Sealed. + self.status = Status.Sealed + + // Salt is nil until reveal. self.salt = nil } } - access(all) resource NFT: NonFungibleToken.INFT, IPackNFT.IPackNFTToken, IPackNFT.IPackNFTOwnerOperator, NonFungibleToken.NFT, IPackNFT.NFT { + /// Resource that defines a Pack NFT. + /// + access(all) resource NFT: NonFungibleToken.NFT, IPackNFT.NFT, IPackNFT.IPackNFTToken, IPackNFT.IPackNFTOwnerOperator { + /// This NFT's unique ID. + /// access(all) let id: UInt64 + + /// This NFT's commit hash, used to verify the IDs of the NFTs in the Pack. + /// access(all) let commitHash: String + + /// This NFT's issuer. + /// access(all) let issuer: Address - access(NonFungibleToken.Update | NonFungibleToken.Owner) fun reveal(openRequest: Bool){ + /// Reveal a Sealed Pack resource. + /// + access(NonFungibleToken.Update | NonFungibleToken.Owner) fun reveal(openRequest: Bool) { PackNFT.revealRequest(id: self.id, openRequest: openRequest) } - access(NonFungibleToken.Update | NonFungibleToken.Owner) fun open(){ + /// Open a Revealed Pack resource. + /// + access(NonFungibleToken.Update | NonFungibleToken.Owner) fun open() { PackNFT.openRequest(id: self.id) } @@ -128,16 +171,15 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { /// access(all) event ResourceDestroyed(id: UInt64 = self.id) - // When destroying a NFT resource, the corresponding PackNFT resource now has to be detroyed as well in a separate call. - // This is because custome destroy() function is not allowed in Cadence 1.0. - // destroy() { - // let p <- PackNFT.packs.remove(key: self.id) ?? panic("no such pack") - // PackNFT.totalSupply = PackNFT.totalSupply - (1 as UInt64) - - // emit Burned(id: self.id) - // destroy p - // } + /// Executed by calling the Burner contract's burn method (i.e., conforms to the Burnable interface) + /// + access(contract) fun burnCallback() { + PackNFT.totalSupply = PackNFT.totalSupply - 1 + destroy <- PackNFT.packs.remove(key: self.id) ?? panic("no such pack") + } + /// NFT resource initializer. + /// init(commitHash: String, issuer: Address) { self.id = self.uuid self.commitHash = commitHash @@ -147,11 +189,11 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { /// Create an empty Collection for Pinnacle NFTs and return it to the caller /// access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <- PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <- PackNFT.createEmptyCollection(nftType: Type<@NFT>()) } - // All supported metadata views for the Moment including the Core NFT Views - // + /// Return the metadata view types available for this NFT. + /// view access(all) fun getViews(): [Type] { return [ Type(), @@ -164,6 +206,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { ] } + /// Resolve this NFT's metadata views. + /// access(all) fun resolveView(_ view: Type): AnyStruct? { switch view { case Type(): @@ -187,10 +231,10 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { return MetadataViews.NFTCollectionData( storagePath: PackNFT.CollectionStoragePath, publicPath: PackNFT.CollectionPublicPath, - publicCollection: Type<&PackNFT.Collection>(), - publicLinkedType: Type<&PackNFT.Collection>(), + publicCollection: Type<&Collection>(), + publicLinkedType: Type<&Collection>(), createEmptyCollectionFunction: (fun (): @{NonFungibleToken.Collection} { - return <-PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <-PackNFT.createEmptyCollection(nftType: Type<@NFT>()) }) ) case Type(): @@ -236,106 +280,117 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { return nil } + /// Return an asset path. + /// access(all) fun assetPath(): String { return "https://media.nflallday.com/packnfts/".concat(self.id.toString()).concat("/media/") } + /// Return an image path. + /// access(all) fun getImage(imageType: String, format: String, width: Int): String { return self.assetPath().concat(imageType).concat("?format=").concat(format).concat("&width=").concat(width.toString()) } } - access(all) resource Collection: - NonFungibleToken.Provider, - NonFungibleToken.Receiver, - NonFungibleToken.CollectionPublic, - IPackNFT.IPackNFTCollectionPublic, - // MetadataViews.ResolverCollection - NonFungibleToken.Collection { - // dictionary of NFT conforming tokens - // NFT is a resource type with an `UInt64` ID field + /// Resource that defines a Collection of Pack NFTs. + /// + access(all) resource Collection: NonFungibleToken.Collection, IPackNFT.IPackNFTCollectionPublic { + /// Dictionary of NFT conforming tokens. + /// NFT is a resource type with a UInt64 ID field. + /// access(all) var ownedNFTs: @{UInt64: {NonFungibleToken.NFT}} - init () { + /// Collection resource initializer, + /// + init() { self.ownedNFTs <- {} } - // withdraw removes an NFT from the collection and moves it to the caller + /// Remove an NFT from the collection and moves it to the caller. + /// access(NonFungibleToken.Withdraw | NonFungibleToken.Owner) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { let token <- self.ownedNFTs.remove(key: withdrawID) ?? panic("missing NFT") - emit Withdraw(id: token.id, from: self.owner?.address) + + // Withdrawn event emitted from NonFungibleToken contract interface. + emit Withdraw(id: token.id, from: self.owner?.address) // TODO: Consider removing return <- token } - // deposit takes a NFT and adds it to the collections dictionary - // and adds the ID to the id array + /// Deposit an NFT into this Collection. + /// access(all) fun deposit(token: @{NonFungibleToken.NFT}) { - let token <- token as! @PackNFT.NFT - + let token <- token as! @NFT let id: UInt64 = token.id - - // add the new token to the dictionary which removes the old one + // Add the new token to the dictionary which removes the old one. let oldToken <- self.ownedNFTs[id] <- token - emit Deposit(id: id, to: self.owner?.address) + // Deposited event emitted from NonFungibleToken contract interface. + emit Deposit(id: id, to: self.owner?.address) // TODO: Consider removing destroy oldToken } - // getIDs returns an array of the IDs that are in the collection + /// Return an array of the IDs that are in the collection. + /// view access(all) fun getIDs(): [UInt64] { return self.ownedNFTs.keys } - /// Return the amount of NFTs stored in the collection + /// Return the amount of NFTs stored in the collection. /// view access(all) fun getLength(): Int { return self.ownedNFTs.keys.length } - /// Return a list of NFT types that this receiver accepts + /// Return a list of NFT types that this receiver accepts. /// view access(all) fun getSupportedNFTTypes(): {Type: Bool} { let supportedTypes: {Type: Bool} = {} - supportedTypes[Type<@PackNFT.NFT>()] = true + supportedTypes[Type<@NFT>()] = true return supportedTypes } - /// Return whether or not the given type is accepted by the collection - /// A collection that can accept any type should just return true by default + /// Return whether or not the given type is accepted by the collection. /// view access(all) fun isSupportedNFTType(type: Type): Bool { - if type == Type<@PackNFT.NFT>() { + if type == Type<@NFT>() { return true } return false } - // borrowNFT gets a reference to an NFT in the collection - // so that the caller can read its metadata and call its methods + /// Return a reference to an NFT in the Collection. + /// view access(all) fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { return &self.ownedNFTs[id] } + /// Return a reference to an NFT in the Collection as a IPackNFT.NFT. + /// view access(all) fun borrowPackNFT(id: UInt64): &{IPackNFT.NFT}? { return self.borrowNFT(id) as! &{IPackNFT.NFT}? } - /// createEmptyCollection creates an empty Collection of the same type - /// and returns it to the caller + /// Create an empty Collection of the same type and returns it to the caller. + /// access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <-PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <-PackNFT.createEmptyCollection(nftType: Type<@NFT>()) } } + /// Emit a RevealRequest event to signal a Sealed Pack NFT should be revealed. + /// access(contract) fun revealRequest(id: UInt64, openRequest: Bool ) { let p = PackNFT.borrowPackRepresentation(id: id) ?? panic ("No such pack") - assert(p.status.rawValue == PackNFT.Status.Sealed.rawValue, message: "Pack status must be Sealed for reveal request") + assert(p.status.rawValue == Status.Sealed.rawValue, message: "Pack status must be Sealed for reveal request") emit RevealRequest(id: id, openRequest: openRequest) } + /// Emit an OpenRequest event to signal a Revealed Pack NFT should be opened. + /// access(contract) fun openRequest(id: UInt64) { let p = PackNFT.borrowPackRepresentation(id: id) ?? panic ("No such pack") - assert(p.status.rawValue == PackNFT.Status.Revealed.rawValue, message: "Pack status must be Revealed for open request") + assert(p.status.rawValue == Status.Revealed.rawValue, message: "Pack status must be Revealed for open request") emit OpenRequest(id: id) } @@ -344,18 +399,22 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { p.reveal(id: id, nfts: nfts, salt: salt) } - access(all) fun borrowPackRepresentation(id: UInt64): &Pack? { + /// Return a reference to a Pack resource stored in the contract state. + /// + access(all) fun borrowPackRepresentation(id: UInt64): &Pack? { return (&self.packs[id] as &Pack?)! } + /// Create an empty Collection for Pack NFTs and return it to the caller. + /// access(all) fun createEmptyCollection(nftType: Type): @{NonFungibleToken.Collection} { - if nftType != Type<@PackNFT.NFT>() { + if nftType != Type<@NFT>() { panic("NFT type is not supported") } return <- create Collection() } - /// Function that returns all the Metadata Views implemented by a Non Fungible Token + /// Return the metadata views implemented by this contract. /// /// @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. @@ -367,7 +426,7 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { ] } - /// Function that resolves a metadata view for this contract. + /// Resolve a metadata view for this contract. /// /// @param view: The Type of the desired view. /// @return A structure representing the requested view. @@ -378,10 +437,10 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { let collectionData = MetadataViews.NFTCollectionData( storagePath: /storage/cadenceExampleNFTCollection, publicPath: /public/cadenceExampleNFTCollection, - publicCollection: Type<&PackNFT.Collection>(), - publicLinkedType: Type<&PackNFT.Collection>(), + publicCollection: Type<&Collection>(), + publicLinkedType: Type<&Collection>(), createEmptyCollectionFunction: (fun(): @{NonFungibleToken.Collection} { - return <-PackNFT.createEmptyCollection(nftType: Type<@PackNFT.NFT>()) + return <-PackNFT.createEmptyCollection(nftType: Type<@NFT>()) }) ) return collectionData @@ -406,13 +465,15 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { return nil } + /// PackNFT contract initializer. + /// init( CollectionStoragePath: StoragePath, CollectionPublicPath: PublicPath, CollectionIPackNFTPublicPath: PublicPath, OperatorStoragePath: StoragePath, version: String - ){ + ) { self.totalSupply = 0 self.packs <- {} self.CollectionStoragePath = CollectionStoragePath @@ -421,9 +482,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { self.OperatorStoragePath = OperatorStoragePath self.version = version - // Create a collection to receive Pack NFTs - let collection <- create Collection() - self.account.storage.save(<-collection, to: self.CollectionStoragePath) + // Create a collection to receive Pack NFTs and publish public receiver capabilities. + self.account.storage.save(<- create Collection(), to: self.CollectionStoragePath) self.account.capabilities.publish( self.account.capabilities.storage.issue<&{NonFungibleToken.CollectionPublic}>(self.CollectionStoragePath), at: self.CollectionPublicPath @@ -433,9 +493,8 @@ access(all) contract PackNFT: NonFungibleToken, IPackNFT { at: self.CollectionIPackNFTPublicPath ) - // Create a operator to share mint capability with proxy - let operator <- create PackNFTOperator() - self.account.storage.save(<-operator, to: self.OperatorStoragePath) + // Create a Pack NFT operator to share mint capability with proxy. + self.account.storage.save(<- create PackNFTOperator(), to: self.OperatorStoragePath) self.account.capabilities.storage.issue<&{IPackNFT.IOperator}>(self.OperatorStoragePath) } diff --git a/pds/lib/go/contracts/internal/assets/assets.go b/pds/lib/go/contracts/internal/assets/assets.go index 1229bdb..ca71006 100644 --- a/pds/lib/go/contracts/internal/assets/assets.go +++ b/pds/lib/go/contracts/internal/assets/assets.go @@ -81,7 +81,7 @@ func (fi bindataFileInfo) Sys() interface{} { return nil } -var _ipacknftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\x4d\x6f\xe3\x36\x10\xbd\xfb\x57\x4c\x73\x68\x65\xc0\x48\x5a\xa0\x28\x0a\x01\x8b\x6d\x37\x1b\xa3\xbe\x38\x41\xe2\x3d\x2d\x16\x05\x45\x8d\x2c\x22\x14\xa9\x92\x23\xa7\x41\xe2\xff\x5e\x50\x1f\x16\xf5\x65\xc7\x0d\xd6\x17\x5b\xf4\x70\xde\x9b\x37\xc3\xe1\x48\x64\xb9\x36\x04\xd7\xe6\x39\x27\x3d\xab\x9f\xd6\x5a\x2d\x0b\xb5\x15\x91\xc4\x8d\x7e\x44\x05\x89\xd1\x19\x5c\xf4\x97\x2f\x66\x33\xc6\x39\x5a\x1b\x30\x29\xe7\xc0\xb5\x22\xc3\x38\x81\x50\x84\x26\x61\x1c\x61\x75\xc7\xf8\xe3\x7a\xb9\x79\x99\xcd\x00\x00\xae\xae\xae\xe0\x46\x91\x20\x89\x19\x2a\x02\xd2\x90\xa3\x49\xb4\xc9\x40\xe7\x68\x18\x09\xad\x2c\x68\x05\x94\x22\xd4\x5b\x9b\x8d\xe5\xb7\x0f\x87\x9e\xa3\xdb\x72\x37\x8b\x24\xb6\x40\x0f\xa4\x0d\xdb\xe2\x1d\xa3\x14\x12\x6d\xe0\x5a\x4b\x89\xdc\x41\xc0\x3d\x5a\x5d\x18\x8e\x93\xbe\x25\x92\x67\xef\x79\x0a\x7d\xb7\x07\xa8\xbb\x22\x92\x82\x97\x48\xf8\x6f\x8e\x9c\x30\x2e\x21\x63\xcc\xb5\x15\xf4\x46\x98\xd6\x4b\xe8\x79\x1c\x03\x71\xbe\x0d\x72\x14\x3b\xa1\xb6\x27\x85\xea\xa2\x34\x29\x39\x81\xd6\x57\xcf\xcb\x48\xad\xb6\x36\x07\x1d\x21\x10\xd6\x16\x68\x40\x3f\x29\x0b\x94\x0a\x3b\x3f\xca\xa6\x71\x70\x52\xd8\x7b\xfc\xa7\x40\x4b\x25\x83\x7b\xdc\x21\x93\xd3\xe5\xb0\x73\x85\x50\x19\xd5\xdb\x02\x11\x87\xf0\x65\xa5\xe8\xb7\x5f\x17\xae\xc0\x54\xbd\x1e\xc2\x27\xad\xe5\x7c\x14\xe5\x36\x47\xd5\xc1\x70\x06\x9b\x54\x58\x10\x16\x30\x13\xe4\x72\xfb\x94\xa2\x72\xb1\xba\x88\x13\x60\x07\x61\x8c\xe7\xc8\x09\x56\x97\x68\x0c\xee\x4f\xd2\x10\x1d\x2a\xae\x29\x0d\x8c\xdd\xba\x20\xeb\x62\xd1\x85\xa2\x89\xb8\x6e\x5b\xf6\x5e\x54\x6d\x08\x9f\x0a\xa3\x30\x1e\x10\xbf\xf1\x09\xb7\x3c\x53\x66\x21\x42\x54\x10\xb5\xdb\x86\x98\x95\x4f\x0f\x0e\x5a\x3c\xc7\xe7\x34\x5e\xde\xc7\xd3\xed\xb6\xf1\x18\x3b\x78\xf3\xe6\x30\xc3\x8d\x2a\x32\x0b\x9c\x29\xa5\x09\x22\x84\x18\xb9\x64\x06\x63\x60\xea\x39\xd3\x06\x41\xa8\xb6\xeb\x58\xf7\x74\xcd\x62\x54\x1c\xe1\x97\xcb\x9f\x1b\x27\xdd\xe6\x51\x64\xf0\x40\x8c\x0a\x5b\xa1\xfd\x0e\x2f\x8d\x5d\x9f\x1d\x67\x16\xe1\x01\x99\x3c\x04\x3c\x6e\x52\xd5\xde\x09\xa3\x8e\x70\xb0\x9f\x0d\xb4\xb0\x64\x8a\x4e\x0f\x6d\x8e\x6e\x24\xb1\xe6\x38\x76\xa4\x58\x1c\x1b\xb4\x36\x84\x3f\xab\x1f\x93\x86\x4d\x97\x5e\xb3\x0c\xdd\xa1\x33\x42\x6d\x27\x8d\xdb\x5c\x8c\x9a\x24\x85\x72\xb9\x4d\x2b\x2f\xc1\x7c\xe0\x4f\x28\x41\x41\x9f\xda\x62\x94\xc3\x02\xfa\x75\x3d\x22\x8e\x69\x1a\x4e\xef\x8a\x39\x22\x4c\xd5\x99\x86\xba\xf4\x0a\x62\xc7\x0c\xd8\xba\x1e\xaa\xba\x98\x4d\x86\xbc\x43\x23\x92\xe7\x40\x25\x54\x51\x6f\x42\x98\x57\x8d\x65\xb0\xb1\x09\xb7\xda\x6d\xca\x32\xe9\xf4\x26\x95\x90\x0d\xe1\xeb\x4b\xd3\x9b\x2f\xbd\x9c\xef\xbf\x2d\xc0\x32\x49\x07\x90\xe3\xde\xdd\x09\x3b\xc3\xf7\xbc\x9b\x2a\xae\xb3\x4c\xd0\x5f\xcc\xa6\x5e\x5a\xba\x02\x9e\x95\x9b\xc3\x4d\x31\xc8\x4f\x7b\x63\x57\xbc\x33\xa1\x28\x88\x85\xa5\x95\xc7\xfd\x2d\x74\x42\xf8\xa3\x8d\x6d\xbd\xdc\xec\x4f\x21\x1d\xd1\xff\x1c\xd9\xfb\x6e\xff\x97\xf0\xfb\x43\x87\x5b\x29\x2e\x8b\xb8\x9e\x1b\x22\xc6\x1f\x9f\x98\x89\xad\x53\x20\x67\x24\x22\x21\x05\x3d\xbf\x45\xf2\x1a\xac\x11\x3e\xf4\x73\x70\xc6\x81\x5a\x2f\x37\xd5\xe4\x77\xe4\x60\x1d\xef\x0d\x53\x67\xef\x6d\x24\xd6\xcb\x4d\x38\x18\x43\x2f\x57\xeb\xe5\x66\xd1\x25\xd8\x3e\xde\xba\xfb\x78\xba\xe0\xde\xcb\xdb\xb3\x1b\xf0\xfa\x92\xc7\x8c\x10\x5e\x87\x8c\x4b\x52\x9d\xba\x9b\x98\x43\xde\xed\xbe\xac\xbf\xef\x55\x55\xa3\x1a\x9f\x59\x4f\xfd\x41\x77\x22\x45\x2e\x96\x7a\x38\x0a\xc8\x05\xe9\x0e\xf8\x20\x70\x77\xd0\x5b\xe1\x76\x02\x9f\x06\x4e\xb6\x48\xab\xcf\xd6\x5d\x4a\x5f\xab\x74\x7f\x3b\x6e\x1f\x69\x63\xf4\xd3\x7a\xb9\x09\xfe\xf6\xaf\xa2\x10\x7e\x1c\x87\xff\xf8\x16\x77\x75\xec\x41\xcf\x61\xa7\x61\x7d\xf4\x94\x68\xf2\x96\x94\xf3\xa3\x41\x5b\x48\x57\x8e\xea\x27\x02\x25\xe4\xa2\x5c\x15\xb1\x9b\x3a\xab\xff\xa9\x9c\xd1\xc0\x60\x82\xc6\xcd\x3b\x7d\x47\x36\xd5\x85\x8c\xdd\xc8\xe4\xec\x2d\xcb\x10\x98\x2d\x7f\x33\xb3\x2d\x9a\x97\x30\xf7\x9c\x14\xaa\x4c\x4e\xc7\x43\xae\x2d\xf5\xd8\xb9\x4f\x50\x13\xfb\xf0\xc1\xb1\x9a\xc3\xeb\x6b\xb3\xf4\xc3\xa5\x88\xdd\xb2\x88\xe7\xe1\x60\x9b\xfb\x5c\x5c\xd7\x43\x5c\x29\x8f\x37\x39\xd7\x01\x84\xb0\x49\x11\x56\x9f\xa7\x43\x74\x83\xb8\x50\x5c\x1b\x83\x9c\x2e\x3a\x20\x6d\xef\xdf\x8f\xf4\x9a\xb1\x6b\xf8\x8c\x37\x85\xc9\xeb\x76\x6a\x2e\xef\x57\x44\x5e\x96\xfd\xfd\x7b\xaf\xff\xfd\x7f\x01\x00\x00\xff\xff\x80\xe7\xbf\xb8\xb3\x0f\x00\x00" +var _ipacknftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xb4\x57\xcb\x6e\xeb\x46\x0c\xdd\xfb\x2b\x88\xbb\xb2\x01\xc3\x69\x81\xa2\x28\xb4\x6a\xaf\x1b\xa3\xde\xd8\x41\xe2\xbb\x2a\xba\x18\x4b\x94\x35\xc8\x88\xa3\xce\x50\x4e\x83\xd4\xff\x5e\x8c\x1e\xd6\xe8\xe5\x47\xd3\xae\x12\x49\x24\x0f\x79\x78\x86\x43\xcb\x34\xd3\x86\x61\x69\xde\x33\xd6\x93\xea\x69\xa3\x69\x95\xd3\x41\xee\x15\xee\xf4\x2b\x12\xc4\x46\xa7\xf0\xa5\xfb\xfa\xcb\x64\xf2\xf0\xf0\x00\x4b\x4d\x6c\x44\xc8\x20\x89\xd1\xc4\x22\x44\x88\xb5\x81\x27\x11\xbe\x6e\x56\x3b\x08\xab\xcf\x76\xe1\xac\x27\x22\x0c\xd1\xda\xa9\x50\x6a\x76\xfe\xe4\x79\xae\x2b\xb7\x8f\xc9\x04\x00\xc0\xc5\x7f\x24\x96\xac\x30\x45\x62\x60\x0d\x19\x9a\x58\x9b\x14\x74\x86\x46\xb0\xd4\x64\x41\x13\x70\x82\x35\x62\xed\x58\xfc\xf5\xe1\xd0\x0b\xb4\x2d\xbc\xc5\x5e\x61\x03\xf4\xc2\xda\x88\x03\x3e\x09\x4e\x8a\x0a\x96\x5a\x29\x0c\x1d\x04\x3c\xa3\xd5\xb9\x09\x71\x34\xb6\x42\xf6\xec\xbd\x48\x81\x1f\xb6\xc1\x7a\xca\xf7\x4a\x86\x05\x14\xfe\x95\x61\xc8\x18\x15\x98\x11\x66\xda\x4a\xbe\x11\xa7\x89\x12\x78\x11\x07\x51\x5c\x70\x83\x21\xca\xa3\xa4\xc3\x55\xaa\xda\x30\x75\x53\xae\xc1\x75\x09\xf4\x9a\x52\x11\xae\xcd\x99\x4a\x98\x4a\x6b\x73\x34\xa0\xdf\xc8\x02\x27\xd2\xce\x2e\xa6\x53\x07\xb8\xce\xed\x33\xfe\x99\xa3\xe5\x22\x85\x67\x3c\xa2\x50\xe3\x92\x38\x3a\x31\x94\x46\x95\xdb\x54\x46\x01\x7c\x5b\x13\xff\xf8\xc3\xdc\x89\x8c\xaa\xf7\x01\x7c\xd5\x5a\xcd\x86\x61\xb6\x19\x52\x0b\xc4\x19\xec\x12\x69\x41\x5a\xc0\x54\xb2\xeb\xef\x5b\x82\xe4\xaa\x75\x35\xc7\x20\xce\xd4\x18\x2f\x90\xa3\xac\xd2\x69\x04\xee\x23\x6b\xd8\x9f\x65\x57\xcb\x03\x23\xf7\x5e\xb2\x75\xc5\xe8\x9c\x78\xa4\xb0\x6d\x93\xbe\x57\x96\x57\xc3\xd7\xdc\x10\x46\xbd\xcc\x1f\xfd\x8c\x9b\x44\x13\x61\x61\x8f\x48\xb0\x6f\xdc\xfa\xa0\x65\x4c\x0f\x0f\x3c\x40\x97\xd1\x75\xc0\xac\x0b\xa8\x1b\xb7\xe1\x2a\x5b\x80\x67\x3c\xd8\x6d\x7f\xdd\x06\xb0\x54\x28\x08\xf2\x0c\x44\xcc\x68\x00\x29\x4f\x21\x11\x14\x29\x49\x87\x07\x83\xa9\x3e\x0a\xe5\x1a\x15\x2a\x61\x64\x2c\x31\x5a\xd4\xfe\x8f\x94\xa7\x16\x42\x41\xa4\x19\xf6\x08\x11\x3a\x1b\x8c\x40\xd0\x7b\xaa\x0d\x82\xa4\x66\x78\x59\xf7\xb4\x14\x11\x52\x88\xf0\xfd\xe2\xbb\x3a\x48\x7b\x06\xe5\x29\xbc\xb0\xe0\xdc\x96\xd9\xfe\x04\x1f\xb5\x5d\xb7\xba\x50\x58\x84\x17\x14\xea\x4c\xd8\xb0\x49\x29\xdf\x2b\x46\x2d\xe2\xe1\xe4\x1f\x5a\x93\xf7\x86\x77\x7d\xf6\xdd\x7c\x1c\x3b\x3b\xb6\xeb\xe8\x39\x55\x45\x0d\x9d\x63\x11\x45\x06\xad\x0d\xe0\x97\xf2\x9f\x51\xc3\xfa\x76\xd8\x88\x14\xdd\x49\x37\x92\x0e\xa3\xc6\x4d\xf3\x07\x4d\xe2\x9c\x9c\x98\x92\x32\xca\x74\xd6\x8b\x27\x49\xf2\xb4\x9b\xda\x7c\x30\x87\x39\xf8\x4a\x73\xce\x27\x7f\x28\x54\xd3\x6d\xf0\x32\x1c\xe5\xd2\xf4\xdd\x8a\xa1\x7b\x81\xc7\x72\x7a\xf6\x69\xec\x08\xee\x28\x0c\xd8\x4a\x6f\xa5\xee\x26\xa3\x0c\x1d\xd1\xc8\xf8\x7d\x4a\x31\x97\x95\xd6\x15\xcf\xca\xd9\xd7\x73\xac\xd9\x29\xbd\x4d\x21\xc3\xd6\xf8\xa4\x98\x6d\x00\xbf\x7f\xd4\x17\xc8\xc2\x93\xc8\xe9\x8f\x39\x58\xa1\xf8\x0c\x72\x39\xba\x9b\x00\x77\xc4\x9e\xb5\x3b\x1b\xea\x34\x95\xfc\x9b\xb0\x89\xd7\xc5\x36\x81\xb7\xb6\x72\x5d\x5f\x44\x77\x35\xf3\x7c\xfd\xf5\x1a\xda\x6c\x22\x65\xa1\xa9\x24\x9e\x46\xd2\xf2\xda\x2b\xf6\x96\xfc\x03\xf8\xb9\x21\x63\xb3\xda\x9d\xae\x21\x5d\x68\xd8\x3d\x7d\xea\x86\xfd\x57\x9d\x3a\xf3\x0e\x6b\x0a\x55\x1e\x55\xeb\xd0\x5e\x84\xaf\x6f\xc2\x44\xd6\x31\x90\x09\x96\x7b\xa9\x24\xbf\xdf\x42\x79\x05\x56\x13\x1f\xf8\x3d\xb8\xa1\xcb\x95\x7b\xb1\xe8\xde\x7d\x6c\x6b\xc7\x4b\xc7\xf7\xf2\xc0\x1a\x3b\xe1\xd7\x33\xbf\x73\xcc\x6c\x56\xbb\xa0\xb7\xf0\x2f\xd6\x9b\xd5\x6e\xde\xae\xa5\x79\xdc\xba\x15\x66\x5c\xd0\x9f\x2d\xd1\xb3\xeb\xe5\xf5\x2d\x8b\x04\x23\xfc\xdd\xcf\xb8\x48\xaa\xa5\xeb\x81\xdd\xed\x3f\x09\x5f\xe8\xfb\xff\x52\xed\x20\xc7\x1f\xa7\x7b\x5c\xbb\x3f\x0f\x5a\x72\x77\x8b\x16\x88\xf6\xc6\x5b\xad\x51\xac\xc1\xca\x03\x09\x05\xa2\xda\x3a\x8a\x33\x54\x6c\xa1\x36\xd1\xb9\x8a\xdc\x06\x64\xda\xcb\x46\x4b\x63\x43\xf7\xc1\xbd\x5b\x75\x99\x20\xf9\xab\xeb\x40\x7e\xf5\xca\x33\x94\xa1\xee\xaf\x98\xa3\x37\xca\xc5\xe5\xb8\x04\xe9\xb3\x31\x7a\xbc\x5c\xd4\xac\xe0\xfc\xf9\xb3\x77\xe1\xe9\x9f\x00\x00\x00\xff\xff\x57\x13\x44\xb5\x99\x0f\x00\x00" func ipacknftCdcBytes() ([]byte, error) { return bindataRead( @@ -101,7 +101,7 @@ func ipacknftCdc() (*asset, error) { return a, nil } -var _pdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x5a\x4f\x6f\xe3\xb8\x15\xbf\xe7\x53\xbc\xf1\x61\x20\xa1\x8e\x32\xd9\xb6\xdb\x81\x10\xcf\xec\x22\x99\xa0\x46\xd1\x4c\xb0\xc9\xb4\x87\x20\x07\x5a\xa4\x6d\x22\x32\x29\x90\xb4\x33\x69\xe0\xef\x5e\x50\x14\x25\x52\xa4\x6c\x27\x9b\x2d\x76\x81\xce\x61\x62\x89\xef\x91\xef\x3f\x1f\x7f\x22\x5d\x55\x5c\x28\xb8\xe2\xec\x72\xcd\x16\x74\x56\x92\x5b\xfe\x40\x18\xcc\x05\x5f\xc1\xa8\xff\x7a\x74\xd4\xd0\x4f\xaf\x51\xf1\x70\x75\x79\xdb\xd0\xd9\xc7\xd1\xd1\x11\x2a\x0a\x22\x65\x82\xca\x32\x85\x82\x33\x25\x50\xa1\xe0\xfa\xe2\xe6\xf9\x08\x00\xe0\xe4\xe4\x04\xbe\x30\x45\x55\x49\x56\x84\x29\x50\x4b\xa4\x60\x21\x10\x53\x12\xd4\x92\x00\x9a\xd1\x92\xaa\x27\x50\x1c\x0a\x41\x90\x22\x80\x00\x53\xa9\x04\x9d\xad\x15\xe5\xac\x9e\xc4\x5d\x82\x38\x93\x5d\x50\xa9\xce\x35\x97\x26\x6c\x97\xbb\x5d\x12\x28\x78\x59\x92\x42\xbf\xd7\x33\x2f\x79\x89\x01\x95\x25\x10\x59\x08\xfe\x48\x30\x5c\x5d\xde\xb6\xf4\x5f\x05\x5d\x50\x86\x4a\x97\xc9\xc8\x82\x8d\xb6\x8d\xae\x81\x28\x1b\x24\x60\x43\x84\xa4\x9c\xe5\x70\xa3\x04\x65\x8b\x80\xa6\x24\xaa\xe6\x9f\x4a\xb9\x26\xe2\x46\x71\x81\x16\xe4\x1a\xa9\xa5\xe6\x68\x1f\xf6\xb0\x9d\xa3\xea\x17\x52\x6c\x72\xb8\x5e\xcf\x4a\x5a\x0c\x72\xb4\xf6\xe0\x2f\x5b\x49\xf3\xfd\x13\x31\xb4\xd8\x21\x61\x54\x7b\x46\xbe\x2b\xcd\x3c\xc5\x39\x7c\x9b\x32\xf5\xe3\x5f\x5c\x32\x1b\x0d\xdd\x22\xd6\xab\x32\x87\x67\x43\x9f\xd7\xef\xa7\x6c\xce\xb7\xbb\x59\x6f\x96\x48\x10\x7c\x8e\xaa\x1c\x7e\x6a\x79\xdb\x97\x26\x8c\x28\x91\xdb\x2e\x0e\x8c\xed\x60\x89\x64\xeb\xce\x7d\xb1\xb5\xb1\x51\x65\x49\xce\x0d\x63\xe2\x2b\x39\x86\x3a\x06\xad\xd3\xc7\xb0\x22\x0a\x61\xa4\x50\x0e\xcf\xe6\x95\x1d\xda\x8e\x41\x2a\xa4\x88\xe1\xfc\x98\x76\xd2\xb9\xab\xc0\xca\x18\xbf\x96\x75\x5d\xe1\x88\xac\x66\x9a\x03\x24\xbe\xd1\x74\xdf\xcc\x1c\x81\xd8\x11\x59\xfc\xdc\x5a\xaf\x8c\xb1\x1d\x3a\x30\x89\xdc\xa7\x2d\x90\x24\x30\x65\x54\x51\x54\xd2\xff\x10\xbc\x8b\x68\x83\x4a\xba\x83\xe0\x9c\xaf\xaa\x92\x34\xda\x6d\x43\xb1\xa4\x12\xeb\x42\xb5\x81\x32\x20\x90\x0e\x14\xcf\x2d\x83\x54\xc3\xde\x8a\xb2\xe8\x40\x6f\x0c\x77\x7d\x71\x93\xb5\xf6\x39\x8a\x52\xcf\xd7\x0c\x24\x31\x14\x09\x23\x8f\x37\x11\xce\xd4\x51\x41\xff\x93\xa4\x9c\x67\xf5\x12\x30\x01\xcb\xd3\x52\x6c\xbb\x85\x28\xa3\x2a\x39\x38\xf6\xa2\xcb\xd4\xdc\x30\x31\xa6\x0a\x87\xed\x6c\x30\x69\x27\x1e\x16\xd5\x53\x2a\x8b\x05\xc3\xd6\xfa\x74\xc8\xa9\xe7\x4d\xcd\x9d\x69\x95\xec\xae\x92\x39\x6f\x77\x78\x1b\x61\x2c\x88\x94\x39\xfc\x6c\x7e\x0c\x12\xda\x6a\x72\x85\x56\xfb\xa3\x83\x76\xb5\xac\xa5\x39\x39\x01\x41\xd4\x5a\x30\xca\x16\x40\x75\x32\xea\x29\x40\x72\xb3\x9f\x51\x05\x54\xc2\x8a\x0b\x02\x82\x20\x8c\xb4\xd8\x88\x61\x40\xec\x89\x33\x02\x05\x62\x50\x2c\x49\xf1\x50\xef\x78\x4b\x24\x97\x83\x91\xa3\x07\x8d\x7c\x49\x6a\x25\xed\x79\xf1\xe4\xc4\x2a\x6e\xc5\xa0\x12\x4e\x7f\x84\x62\x89\xb4\x8e\x44\x48\x28\x39\x5b\xc0\x23\x55\x4b\xf8\xf0\x1d\x90\x84\x4a\x90\x39\xfd\x0e\xc9\x9c\x0b\xf8\x08\xb3\x27\x45\xa4\xd6\x62\x49\xbe\xa7\xfd\xa9\xc9\x77\xa4\x93\x31\x87\xf1\xfc\xcf\xf3\x02\xff\x50\x9c\xa2\xbf\x7d\x9c\xff\x95\x90\xec\x8b\x19\xd1\xee\x39\xfd\xc1\x63\xab\x4d\x0c\x13\x18\xfd\x9c\x8d\xbc\x01\x9d\x39\x3a\x92\x46\xa3\x80\x5e\xab\x70\xa3\x04\x4c\x4c\x44\x35\x1a\x65\x8a\x5b\xed\x3d\x0e\x3a\xb7\x0c\x59\x49\xd8\x42\x2d\xe1\x0c\x4e\x3f\xf6\x0c\x63\xa7\xae\x10\xc6\xda\x2c\x13\x4d\x72\xdc\x63\x8c\x73\x68\x19\x3f\x8c\x82\x31\x2d\x3f\x85\x09\x7c\x08\x46\xb4\x56\x76\x62\x59\xd2\x82\x24\xba\x53\xc8\xe1\x87\x31\xac\xab\x5b\x9e\xf7\x56\x4d\x83\x09\x1e\x97\xb4\x24\x40\xe1\xac\x15\x37\x54\xc6\x2e\x54\x65\x05\x67\x05\x52\x09\x0a\xe7\xa9\xad\x03\x13\xa0\xf0\x27\x38\x0d\x46\xb7\xde\x9b\x2d\x90\x52\x92\xc8\x42\x7b\xb5\x39\xfd\xe8\xaf\xbc\x0d\xdc\x2c\x6b\x5f\x16\x9d\xa4\xf6\xd7\x28\x1b\xb5\xbf\x6b\x57\xbb\xc9\x38\x4c\x45\xb1\x13\x0b\xfe\xe2\x26\x13\xf5\x8a\x47\xa1\x3c\x75\x85\xec\x17\x86\x71\xb4\x02\x8c\x9d\x54\x8f\x96\x4a\x9b\x66\x13\x9b\x70\x21\x89\x3b\xaf\xd6\xdf\x79\x0c\x89\x29\xd6\x8e\x8a\x14\x47\xe8\x55\x02\x41\x24\x5f\x8b\x82\x44\xfa\x9b\xb0\x1c\xea\xa9\x4d\xe5\xd2\x19\x8f\x05\x7a\xac\x9b\xa4\x96\xe9\xe9\x0c\xad\xd5\x32\xe9\x77\xf6\xd9\xbf\x1b\xea\x14\xde\x3f\x07\x83\xd7\x82\x6f\x28\x26\x62\xfb\x69\x78\x39\x5e\x11\xa1\x5b\xcd\xe8\x72\x6d\x29\xff\x5a\x53\xe9\x92\xa8\x17\x6a\x5f\x4f\xbf\x36\xdc\xdb\x4f\xc3\xfb\xa8\x55\xe8\x52\xf0\x95\xe9\xe6\x12\xfb\x6a\x7a\xd1\xba\x4e\x37\x84\x81\x02\x57\x97\xb7\xdb\x9e\x4f\x6d\x99\xaa\x7d\xe1\xd8\x2a\x9b\x71\x21\xf8\x63\x92\xc2\xe7\xcf\x50\x21\x46\x8b\x64\xc4\x38\xc8\x75\xb1\x84\x02\x55\xa3\x68\xf4\x9d\x1d\x43\xd1\x4e\xe2\x49\xd5\xfd\x4e\x63\x5b\x78\x5f\xc7\x15\x65\xaa\x31\x4a\x82\x7b\xed\x5a\xc1\x57\x2b\xaa\xfe\x8e\xe4\x92\xc8\x1c\xee\x4c\xd8\xde\x8f\x81\xd6\xb6\x70\xc2\x5b\x90\x62\x53\xbb\x21\xe2\xca\xf3\xf6\x54\x63\x4e\x0f\x5b\x48\x9f\x83\xf4\x0d\xab\x9c\x67\x2d\xc7\xd5\x2f\xb3\x56\x57\xe6\x5c\x5d\x9a\xaa\x18\x2f\xdf\x6c\xae\x8c\x75\xb5\x65\x5a\x93\x98\xbf\xae\x49\x72\x6f\xca\x3b\xea\xd8\xc5\xfc\x0d\x8b\xe5\x70\xa1\xac\x17\xd6\xcb\xb2\xb9\x0a\x06\x1b\xeb\x66\x98\x54\x5c\xea\x06\x4c\xdb\x35\xaf\xa9\x87\xca\xe2\x0e\x87\x0b\xb2\x21\xa8\xb4\x2e\xaf\xf4\x21\xcf\x71\x39\x9b\x2b\xed\xea\xe7\x58\x2b\xb4\xbd\x1f\x83\x44\xa5\xb2\x05\xac\x5f\xb4\xde\xc6\x65\x45\x66\x24\x4c\x74\x75\x34\xe2\x59\xb1\xf4\xff\x56\x04\xfd\xff\x41\x01\xce\x2b\xc2\x5e\xab\xed\x8b\xe2\x7a\xec\x1c\xe0\x87\x8e\xb1\xbf\x8d\xc9\xea\xa3\x07\xff\x85\x94\x04\x49\xdd\x20\x69\x9d\x8c\x8a\xf7\x30\x81\xbb\xfb\x03\xd2\xad\x4b\x14\x6d\x13\xdb\xe5\x84\x19\xe2\x2d\x93\xa1\xaa\x22\x0c\x27\x9a\xe5\x8e\xde\x67\x14\x1f\x1a\xf3\xdb\x9e\xcb\xb5\x93\x06\x1c\xee\x4f\xa9\x5b\x7e\x61\x24\xf8\x52\x83\x29\x7a\xf1\x29\x96\xb9\x2f\x99\xe3\xba\xe6\x07\x0c\xba\x27\xfa\xda\x0b\x2d\x7f\x77\xf7\xed\xf6\x5b\xec\x79\x63\x6f\x89\xb7\xdf\xe7\xd2\x48\xb3\xe1\x28\x02\x13\x57\xad\x90\xd4\x11\x08\x26\xae\x78\x03\xc7\xae\x93\x13\x98\xb2\xa2\x5c\x63\x82\x41\x1f\x01\x66\xa8\x78\x78\x44\x02\x4b\x5d\x41\x2b\xa4\xa8\x51\x68\xb8\x0d\xa1\x4c\x11\x31\x47\x05\x09\x30\x29\x4a\x36\x44\xc0\xf3\xae\x1e\xa6\x63\xc9\x87\xd8\xe3\x3d\x86\x4e\x94\x42\xdb\x3c\x30\xba\x8b\xfb\xa5\xf0\x3e\x00\x6c\xb8\xf8\xf4\x79\xe7\xe9\xbc\x9e\x00\x55\x49\x11\x73\xe9\x01\xb3\xf7\xcb\x48\x25\x62\x6d\x75\xe1\xd6\x91\x77\x13\x60\xb4\xcc\x61\xd4\xc0\x21\x7a\xb4\x59\x76\xb4\x23\x35\x4d\x97\x59\x3b\xba\xf0\x1c\xdc\x57\xcf\x97\x5a\xeb\x69\x40\x2f\xfd\x3e\x91\x0e\x78\x16\xf6\x94\x2f\x80\xb3\xfa\x8a\x23\x29\x89\x68\x20\x09\x5b\xb4\x3e\xc1\x07\x3d\x85\x94\x68\x41\x72\x18\xdd\xd6\x80\xc3\x6a\x2d\x15\x30\xae\x60\x46\x80\xac\x2a\xf5\x14\x29\xa1\x6d\x21\x2e\x50\xf5\xae\xb5\xdc\xbb\x5e\xa9\x32\x6a\x5d\x91\xc7\xbe\x66\x67\xc7\xd0\x3e\xb5\x2a\xd5\x7f\x5c\x8d\xec\xaf\x74\xe8\xf0\x10\x3d\x0a\x18\x0f\x30\x5a\xc6\x9b\xf7\x37\xcc\x30\x98\x3a\x28\xee\xee\xcc\x8a\x44\x66\xde\x63\x3f\x34\x4a\x22\xe6\x7c\xdb\x40\xa9\xfd\xbb\x16\x82\x30\x35\xc5\x0d\x74\xd4\xa1\xc7\xc1\x16\xe3\x21\xbe\x77\x2d\xe3\x3d\x9c\x1d\xbf\xeb\xbc\x1c\x65\x6b\x31\x66\x97\x6d\xd2\xa2\x87\xc9\xe1\x81\x61\x67\xed\xe4\xd4\x59\xd8\x2a\xd1\xdf\x53\xc9\x8a\xee\x06\x8f\x5b\xd6\xfd\xd1\xd9\x42\xb5\x1f\xfa\x71\x7a\x68\x40\x34\x78\xfe\x00\x7c\xa6\x3d\x6f\x80\xe6\x16\xbf\x0b\x4e\x1f\x31\xcc\x33\xe6\x56\xec\x20\x81\xad\xf1\x33\x41\x56\x7c\x43\x92\x07\xf2\x64\x9b\xf7\xae\x97\x82\x64\x74\xd5\x34\x53\x2e\xc6\xdd\x2b\x09\x38\x8b\xe0\xa8\xb5\x50\xa1\x8b\xfc\xb5\x29\xab\xab\x92\xb3\xf6\x18\x7a\xad\x51\xe0\xac\x28\x6e\x6e\x99\xa5\xb3\x78\x26\xd0\xe3\xbf\x50\xb9\x26\x07\x75\xbf\xed\x11\xb1\x6f\x5d\xdd\x36\x5d\x38\x8d\xe2\xb8\xf9\x38\xd5\x6f\x6b\xdd\x8f\x3e\x03\xd5\x37\x48\x98\x1a\x96\x40\x94\xc9\x7f\x90\xa7\x66\xe1\xd4\x2d\xc9\x07\x18\xdf\x38\xf6\xec\x38\xcc\xc6\x98\x67\xdf\x05\xbc\x15\x96\x9d\x26\x4d\x80\x2c\x88\xfd\xca\xd4\x0d\xe9\x5d\x78\x48\xf1\xf8\xfb\x74\x60\x67\x38\xa0\xaf\x9e\x5e\xec\xe8\xac\x9d\xb3\x27\xce\xf6\x20\x0f\x66\xae\x3b\x7a\x1f\xf6\xdb\x9e\xe2\xbd\x23\xe3\xd9\x31\x9b\xab\xd7\xb5\xe8\x61\x51\x34\xa6\x37\x15\x11\xff\x3e\x91\x86\xf4\x0f\x11\xae\x38\x8b\x59\x26\x04\x1c\xb4\x65\xdc\xa7\x3e\xde\x10\x9e\x79\xe2\x75\xea\x57\xb8\xd0\xc7\x0e\xfa\x4e\x8c\x9c\xae\xcf\x1b\x40\x52\xfb\x4f\x3b\xb6\xf1\xe3\xbd\x37\x68\x40\xd1\xce\xe9\xf6\x44\xd7\x95\x26\x0f\x75\xf8\x9f\x39\xb5\x99\x3a\xc8\x97\xbe\x5e\x36\xa7\x27\x93\xbe\x56\x76\xe4\xfd\xfb\x5d\x93\xb8\x94\x66\x8e\x29\xb6\x93\x8e\x03\x46\x47\x85\xcb\x5b\x69\x1a\xdb\x19\x81\xf9\xba\x2c\x9f\x00\xeb\x9a\x45\x67\x04\xfb\x3d\xfd\xdb\xd6\x56\x24\xc4\x30\x68\xf2\x2a\xc0\x21\x6a\xce\x78\x89\x94\x30\x71\x3f\xda\x75\x58\x7b\x7f\x9a\x1a\x91\xf3\x71\xf7\x9e\xcd\x0d\x66\x87\xf3\xc6\xe2\xd1\x72\x8a\x84\xb0\x28\x87\x7c\x5d\xe5\xc4\x59\x1c\x71\xf3\x91\x0e\x24\x44\x1c\xd9\x82\xb7\xc9\x5c\x17\x05\xf3\xc5\xf3\x93\xd8\x3f\x56\xfa\x09\xed\x8d\xed\x4a\xee\x21\xc2\x5e\xa2\xf7\xc9\xfc\xa4\xef\xa1\xde\x2f\x01\xe2\xfc\x13\xdb\x5e\x50\x6e\x08\x17\xf9\x9d\xee\x17\xff\x4f\x41\xf7\xdf\x61\x29\x18\x03\x81\x23\x09\xd8\xdf\x40\x5f\x8b\x19\xc2\xcb\x93\xd6\x3f\x57\x75\xf7\x8f\x74\xf2\xbe\xb4\x71\x75\x3a\x76\x0f\x5e\x3a\x24\x79\x3e\x39\x4e\x8f\x35\xd2\xe6\xcb\x64\x51\xf0\x35\x53\x59\xe1\x1c\xce\x75\x7b\x7d\xd8\x0a\x03\x72\x3b\x61\xde\x64\x9e\xdf\xcb\xd6\x57\x18\x12\x2f\xd3\xae\x6b\xc0\x17\x08\x93\x6b\x41\xb4\xc5\xfd\xdb\x56\x0c\x43\x49\xd9\x43\x7d\x99\xc9\x51\x62\xce\x85\x76\x30\x25\x1b\xca\x16\x4d\x97\x2f\x9d\x04\x6d\x3e\xb1\x79\xab\xef\xf5\x51\x1c\x94\xee\x5a\x98\x36\xb4\xde\xec\x5b\x02\xa4\x2f\x71\x95\x34\x8c\xcd\xe1\xe5\xd7\xe1\xd3\xcd\xe7\xf9\x03\x92\xa0\xfb\x7a\xf1\x8d\xd5\xd7\x52\x14\x07\x23\x41\xed\x2d\xe7\xc6\x63\xd5\xcc\xee\xe0\x92\xe6\xf6\x63\x25\xe8\x06\x29\x02\x15\x52\x4b\xc7\x49\x61\x49\xf3\x8f\x5a\x78\xa0\x88\x0d\x7f\x4c\xf3\xa3\x2d\xfa\x6d\xb5\xab\x52\xbd\xfb\x21\x41\x11\x1a\x04\x4b\x3a\xcc\xab\x03\xa3\x21\x49\x73\xf8\xa9\x7b\x7e\xee\x87\xe2\xd9\xb1\xbd\x9d\xda\x11\x35\x57\x54\x76\x2e\x11\xf9\x7e\xff\xc7\xfd\x7c\xa1\x27\x4b\xa3\xb8\xe0\x0e\x7b\x85\xc4\x3b\x0c\xe0\x3c\xec\xd0\x21\xf6\xc1\x63\xa7\x2f\x16\x06\xf0\xaf\xd1\x3f\xbf\xdd\x4a\xbb\xeb\xa7\x9f\x21\xd0\x22\x44\x14\x9b\x1d\xc4\x5d\xcc\xff\x24\xb5\xff\xaa\xef\x38\x42\x1b\xb9\xdf\xdb\x91\x1d\x70\xa9\xd7\x27\xde\x73\x93\xb7\x23\x8e\xdd\x5d\x76\x6b\x5a\x5d\xbf\x3c\xf0\xf3\xd4\x1f\xf3\xb6\x57\xed\xf4\xe7\x6d\x48\xd0\x5a\x0f\x26\xc1\x78\xd4\x5c\x30\x89\x9b\x71\x88\xb5\xb1\x9e\xc7\xd6\xbc\x0b\xa5\x09\x2d\xd9\x60\xc3\xe1\x40\xc8\x1c\x5a\xb6\x61\x0e\x07\x7c\xe6\xc6\xd2\x30\xb1\x36\xf7\xae\x16\x9e\xc7\x2e\xbe\x5b\x08\x5f\x71\x83\x77\xdb\x84\x72\xca\x73\x7d\xc3\xaf\xd3\xd9\x5f\xb2\xbf\xef\x48\xb4\x21\x49\x97\x97\x91\x6f\x07\x7a\x6b\x57\x3c\xdf\x65\xab\x74\xbf\xdc\x16\x77\x56\xbc\xbd\xd5\x8c\xbd\x28\x68\x0b\x7a\xdd\x07\x98\xdd\x7f\x5c\x83\x53\xf6\xa2\x3d\x28\x8e\x79\xde\x80\x1d\x70\x02\x4a\x20\x26\xe7\xee\x85\x8e\x97\x6a\xd8\x08\x15\x68\x18\xfa\xcd\x16\x92\xed\xd1\x7f\x03\x00\x00\xff\xff\xc9\xbe\x2b\xf1\x29\x31\x00\x00" +var _pdsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x1b\x5d\x6f\x1b\xb9\xf1\xdd\xbf\x62\xa2\x87\x40\x42\xe5\x4d\x7c\x6d\xaf\x81\x60\x25\x77\xb0\x13\x54\x28\xce\x67\xc4\x4e\xfb\x10\xf8\x81\xde\x1d\x59\x84\x57\xdc\x2d\xc9\x95\xe3\x1a\xfe\xef\x05\xbf\x76\xc9\x25\x57\x92\x1d\x07\xbd\x87\xe6\x21\x96\x96\xc3\xf9\x9e\xe1\x70\x66\x45\xd7\x75\xc5\x25\x9c\x55\xec\x53\xc3\x6e\xe8\x75\x89\x97\xd5\x2d\x32\x58\xf2\x6a\x0d\xa3\xfe\xe3\xd1\x81\x85\x5f\x9c\x93\xfc\xf6\xec\xd3\xa5\x85\x73\x5f\x47\x07\x07\x6f\xde\xbc\x81\xcb\x15\x82\x7a\x02\xa7\x54\x48\x4e\xaf\x1b\x49\x2b\x06\x17\xc8\x37\x34\x47\x18\x9f\x9f\x5e\x4c\x20\xaf\x98\xe4\x24\x97\x40\x05\x70\x14\x75\xc5\x84\x22\x03\xcb\x8a\x43\xce\x91\x48\xca\x6e\x80\xb0\x02\xd6\x84\x91\x1b\xf5\xa5\xf0\x90\x09\xa8\x96\x50\x93\xfc\x56\x64\x8a\xe2\x01\xc9\x73\x14\x62\x4c\xca\xd2\xc3\x7c\x7e\x7a\xf1\x70\x00\x00\xa0\x78\xfa\xc8\x24\x95\x25\xae\x91\x49\x90\x2b\x22\xe1\x86\x13\x26\x05\xc8\x15\x02\xb9\xa6\x25\x95\xf7\x20\x2b\x43\x1a\x81\x04\xd4\x32\x87\x45\xff\xf5\x69\xa1\x87\x55\x09\x7b\xa2\x39\xaf\xd8\x41\x04\xb9\x21\x1c\x36\xc8\x05\xad\xd8\x0c\x2e\x24\xa7\xec\x26\x82\x29\x51\x6a\xbd\x2d\x84\x68\x90\x5f\xc8\x8a\x93\x1b\x3c\x27\x72\xa5\x76\xb4\x5f\x76\x6c\x3b\x21\xf5\x67\xcc\x37\x33\x38\x6f\xae\x4b\x9a\x0f\xee\x68\xd9\xad\x9e\x46\x49\xed\xfb\x4d\xd9\x64\x0b\x87\xad\xd6\x95\x27\x30\xfc\x26\x03\x75\xc2\xe2\x54\xa9\xfa\x1a\xa1\x11\x58\x0c\x2b\x57\xa9\x4c\x6d\x56\x14\x17\xc5\x0c\xbe\x2c\x98\xfc\xf9\x2f\x1d\xf2\x53\x9a\x2b\x74\x84\xdf\x1b\x8b\x0a\x59\x71\x14\x7d\x52\x42\xd1\x0a\x9e\x15\x28\x09\x2d\x05\x50\xa6\xad\xdf\xfa\x8b\x90\x44\x62\x92\x1d\x07\xd2\x69\xa0\x75\xc4\x19\x3c\x18\xbe\x66\xfa\xf9\x82\x2d\xab\xc7\x67\xb1\x28\x56\x84\x63\x01\x39\xa9\x8d\x3b\x52\xfc\x3e\x0e\x2f\x34\xbe\x13\x52\xcf\xe0\x97\x96\xc5\xf6\x61\x4b\xc3\x63\xf6\xe3\x9a\x4a\x89\x05\xdc\xad\x90\x01\x61\x40\xb5\x3f\xc1\x8a\x08\x1b\x16\xc5\xfe\x71\xb1\x71\x11\xe1\x60\x4f\x0c\x86\x71\x68\xcc\x29\xe8\xf8\x71\x11\x31\x85\x35\x4a\x52\x10\x49\x66\xf0\x60\x1e\xb9\xa5\xc7\xa9\x91\xde\xec\x7c\x37\xf1\xd9\x0e\xf8\x0e\x95\xbb\x36\x9e\xaa\x85\x68\xea\x22\x21\xc4\x16\xa5\x0e\x88\x72\xa1\x36\x7c\x31\xc8\x22\x79\x86\x98\x64\xcd\xda\xb8\x40\x81\x4b\xca\xd0\x24\x1e\x05\xdc\xe8\x5c\x46\x02\x0a\xdb\x12\x4e\xb3\x36\xe6\xf5\xe8\x80\x49\x73\x7d\xd8\x9c\x08\x84\x05\xa3\x92\x92\x92\xfe\x07\x8b\x6d\x40\x1b\x52\xd2\x2d\x00\x27\xd5\xba\x2e\x51\xa2\x86\xf0\x5c\xe6\x42\xf2\x26\x97\xb1\x60\x2e\xc4\x9e\x20\x99\x30\xa8\x5c\x10\x0d\xc8\xa4\xbc\x3b\x70\x99\x41\xa8\x61\x4f\x4a\x6e\x51\xc9\xc6\xda\xee\xfc\xf4\x22\x6b\x55\x7c\x90\x84\x5e\x36\x0c\x04\x1a\x88\x31\xc3\xbb\x8b\xc4\xce\x89\x27\x82\xfa\x27\xb0\x5c\x66\x9a\x04\xcc\xc1\xed\x69\x21\x1e\x3b\x42\x26\x71\x58\x35\x58\xb5\xd0\xd6\x8c\x3c\xf3\x01\xdb\xcf\x0a\x60\xbc\x77\x30\x25\x79\xd3\xbb\x61\x6e\xf4\x1b\x2f\x3b\x6c\x30\x6f\x11\x0f\xcb\x17\x68\x22\x4b\x39\xe1\xe3\x3e\xbe\x44\xe0\xa4\x2a\x4b\xcc\xa5\xaa\x0d\x76\xfa\x8e\x07\x3b\x6b\x4b\x94\xcc\x7b\xba\xc5\xa9\x48\x51\x70\x14\x62\x06\xbf\x9a\x0f\x83\x80\x2e\xd3\x9e\x91\xf5\x6e\x27\xa4\xbd\x63\xcb\x08\x00\x1c\x65\xc3\x99\x2a\x6a\xa8\xca\x3f\x0a\x05\x88\xca\x88\x4e\x75\x49\xb4\xae\x38\x02\x47\x52\x10\xc5\xb6\xaa\x83\x08\xbb\xaf\x18\x42\x4e\x18\xe4\x2b\xcc\x6f\x75\x9c\xad\x88\x58\x0d\x3a\xa8\x5a\x34\xfc\x8d\x27\x8e\xd3\x9e\xdd\xdf\xbc\x71\x82\x3b\x36\xa8\x80\xa3\x9f\x21\x5f\x11\x25\x23\x72\x01\x65\xc5\x6e\xe0\x8e\xca\x15\xbc\xfd\x06\x44\x40\xcd\x71\x49\xbf\xc1\x58\x15\x6a\xef\xe0\xfa\x5e\x9a\x73\x6a\x85\xdf\x26\x7d\xd4\xf8\x8d\xa8\xb4\x31\x83\xe9\xf2\xcf\xcb\xbc\xf8\x29\x3f\x22\x7f\x7b\xb7\xfc\x2b\x62\xf6\xd1\xac\x28\xf3\x1c\xfd\x14\x6c\xd3\x2a\x86\x39\x8c\x7e\xcd\x46\xc1\x82\x0a\x50\xe5\x7b\xa3\x51\x04\xaf\x44\xb8\x90\x1c\xe6\xc6\x07\xad\x44\x99\xac\x9c\xf4\xc1\x0e\xba\x74\x1b\xb2\x12\xd9\x8d\x5c\xc1\x31\x1c\xbd\xeb\x29\xc6\xa1\xae\x49\x51\x28\xb5\xcc\x15\xc8\x61\x6f\x63\x7a\x87\xe2\xf1\xed\x28\x5a\x53\xfc\x53\x98\xc3\xdb\x68\x45\x49\xe5\x10\x8b\x92\xe6\x38\x56\x55\xf5\x0c\x7e\x9a\x42\x53\x5f\x56\xb3\x1e\xd5\x49\x84\xe0\x6e\x45\x4b\x04\x0a\xc7\x2d\xbb\xb1\x30\x8e\x50\x9d\xe5\x15\xcb\x89\x1c\x93\x18\x8f\xd6\x0e\xcc\x81\xc2\x9f\xe0\x28\x5a\x7d\x0c\x9e\x3c\x02\x96\x02\x13\x84\x76\x4a\x73\xf4\x2e\xa4\x1c\xe2\x35\xa1\x01\x79\xc7\xa6\xfb\x34\xca\x46\xed\x67\x6d\x67\x3f\x12\x87\xa1\x68\xe1\x39\xc2\x64\x28\xdf\xfa\x49\xe2\x49\x29\xb7\x9f\x37\xa6\xc9\x04\x31\xf5\x32\x41\x32\xf7\xba\x28\x9c\xbb\x78\x8c\x41\x7c\xbc\x30\x0f\xc8\xc4\xc0\xb4\x50\x76\xdc\x92\x6d\x3f\xa3\xa8\x1a\x9e\x63\xa2\x28\x49\x14\xa2\x1c\xff\xdd\x50\xf5\x74\xf8\x7a\xa6\x2f\x7c\x67\x9f\x2e\xc5\x70\x9a\xe6\x8e\x66\x5c\x86\x7a\x3a\xd1\xe6\x70\x4b\xfa\x52\xa6\xb2\x4f\xc1\xc9\x9d\x46\x6f\xae\x9c\x8a\x51\x53\x9f\xa6\x6d\x63\xc9\x2a\x5d\x98\x4c\xec\x70\xe8\x82\xb8\x43\x7f\x4c\x1a\xb9\x1a\xf7\xef\xb9\xd9\xbf\x2c\xf4\x04\x5e\x3f\x44\x8b\xce\x57\x2a\xf6\xf8\xfe\x60\x0b\xdb\x6b\xca\xe4\x14\x38\x6e\x90\x94\x53\xad\xac\xaa\x46\xd6\x57\xd4\x4e\xce\xab\x1a\xb9\xba\xa5\x25\x39\x6f\x4f\xb9\xdf\x35\x94\x3a\x2d\x14\xcf\xed\xe3\xc5\xef\x76\x77\x9f\x55\x27\xa1\x2a\xf4\xdb\x8b\xfc\x9e\x5a\x6d\x4f\x18\xa7\xd4\x4f\xbc\x5a\x9b\xdb\xe7\xd8\x3d\x5a\x9c\xb6\xfe\xae\x2e\x20\x91\x12\xcf\x3e\x5d\x3e\xf6\x02\xc1\xa5\x7e\xed\xc0\x9e\xbd\xb2\xeb\x8a\xf3\xea\x6e\x3c\x81\x0f\x1f\xa0\x26\x8c\xe6\xe3\x11\xab\x40\x34\xf9\x4a\x79\xe9\x68\x92\x4a\x20\xc7\x87\x90\xb7\x48\x02\xae\xba\xcf\x83\xd9\xe0\x37\xca\xe4\x9e\x76\x6a\x75\xa1\xac\x6d\xb5\x3e\x2e\x7a\x97\x82\xbc\x52\x77\x94\xbf\x13\xb1\x42\x31\x83\xaf\x26\x27\x5c\x4d\xad\xae\xbd\xdc\xc1\x31\xdf\x68\x3b\x6f\x75\x3b\x73\xb3\x8f\x8a\xb8\xf4\x09\x13\x68\xd5\xf3\xa5\xa7\x69\xb5\x3b\x62\x7c\x59\xec\x89\x94\x3e\x3a\xd9\x52\x1a\x2b\x28\xcd\xb4\x2a\x31\x7f\x7d\x95\xcc\x02\x94\x5f\xa9\xa7\x17\xf3\x37\x3e\xa8\x86\x0f\x29\x4d\x58\x91\x65\x4b\x19\x2d\x5a\xed\x66\x05\xd6\x95\x50\xe5\xb2\xd2\xeb\x4c\x43\x0f\x1d\x49\x3d\xc7\xf8\xac\x83\xf9\xa9\xae\x61\x52\x80\x73\x8e\x9a\xe4\xb7\xbe\x73\xb0\xa5\x54\x4e\xf1\x90\x2a\x58\x1f\xaf\xa6\x20\x48\x29\xdd\x39\xd2\x37\xf9\xcb\x18\x37\xcf\x0c\x87\x63\x75\x48\x19\xf6\x1c\x5b\xea\x7f\xc7\x82\xfa\x7f\x30\x64\x7e\xdf\x3f\xb5\xb5\x7a\x51\xe9\xf0\xb9\x5a\x79\x52\xa4\x28\x77\x73\x8f\x86\x9a\x56\x3f\x46\xb5\xfa\xbe\x5a\x7d\xc6\x12\x89\x50\xe5\xae\x92\xc9\x88\x78\x05\x73\xf8\x7a\xb5\x47\x00\x77\xa1\xa7\x74\xe2\x6a\xd6\x38\xe6\x02\x32\x19\xa9\x6b\x64\xc5\x58\x6d\xf9\x4a\xaf\x32\x5a\xec\x1b\x45\x8f\x3d\xd7\x50\x46\x1a\x70\x8c\x10\xa5\xba\xf2\x71\xc3\xc1\x47\x91\x2b\x15\xb1\xa5\x5c\x14\x62\x16\x72\xe6\x99\xce\x7e\x80\x41\xf3\x24\x1f\x0f\xba\x60\xa2\xaa\x68\x2b\x8e\xfd\x8a\xb9\x50\xef\x3f\xa6\x62\x98\x06\x44\x5e\xec\x70\x77\x08\x93\xd5\xa5\x27\x0a\xcc\x7d\xc1\x62\x50\x8f\x21\x98\xfb\xec\xc5\xa5\xa4\xad\xf3\x60\xc1\xf2\xb2\x29\x6c\x71\x78\x4d\xf2\xdb\x3b\xc2\x0b\xa1\xb2\x7a\x4d\x24\x35\x02\x65\xc3\xc5\x20\x65\x12\xf9\x92\xe4\x18\x35\xb1\x29\x6e\x90\xc3\xc3\x5e\x55\xab\x6d\x56\xea\x86\x93\xf2\xd4\x3d\xaa\xd0\x8e\xdc\x6c\x88\x74\xba\x2a\x53\x71\x9a\xa7\x0c\xe6\x8f\x00\x26\xf0\x3a\xea\x7f\x56\xfc\xfd\x87\xad\x0d\x25\x8d\x80\xd4\xe3\xe7\x62\xef\x5b\xbf\xe6\xa9\x2b\x5a\xee\x67\xb1\x57\x73\x60\xb4\x9c\xc1\xc8\x36\x01\xbb\xc2\xff\x7e\xb4\x25\x31\x98\x2b\x89\x76\x92\x3c\x70\x8e\xbe\x78\x21\xd7\x4a\x4e\xd3\x4c\x56\xcf\xc7\xc2\x6b\x52\xc7\xe1\xfb\x84\xee\x70\x5f\x70\x22\x04\x72\xdb\x10\x73\x29\xf3\x3d\xbc\x55\x28\x84\x20\x37\x38\x83\xd1\xa5\x6e\x77\xad\x1b\x21\x81\x55\x12\xae\x11\x70\x5d\xcb\xfb\x44\x02\x6f\x8f\x81\x9c\xd4\xaf\x5a\xcd\xbd\xea\x25\x4a\x23\xd6\x19\xde\xf5\x25\x3b\x3e\x84\xf6\x5b\x2b\x92\xfe\xe3\x4b\xe4\x3e\x0d\xa6\xb7\xce\x45\x9f\x9a\xd6\x92\x39\xc1\xd8\x8e\xd1\x72\xe8\x8e\xf8\x72\x71\xbd\xf0\x66\x4d\x7b\x86\x73\x6e\xa1\x75\x3c\xef\x37\x73\x68\x09\x27\x02\x63\xd6\xe3\x61\x5f\x27\x4d\x58\xf3\x65\xfd\x54\xbb\x57\xc3\x39\x32\xb9\x28\x6c\xdf\xb4\x9b\x79\x45\xe7\x6b\x30\xd8\xf9\xda\x6e\xbc\x82\xe3\xc3\x57\x9d\x93\x25\xb7\xb5\x13\x2b\x7f\xdb\xbc\x6d\x34\x8f\xf7\xf7\x4b\x87\xb5\xe3\x53\x25\x81\x56\x88\x7e\x41\x81\x6b\xba\x7d\x14\xd4\x6e\xdd\x1d\x1c\xed\x7c\xe5\xed\xe4\x39\xad\x0d\x37\x0d\xfa\x5e\xaf\xb2\xf3\xcf\x81\x76\xb2\x72\x1f\x33\x6b\x6a\x3b\xe0\xd1\x8d\x30\x35\x6a\x48\xf9\x46\xe1\xf5\xd2\x5b\x0b\x66\x1c\xd7\xd5\x06\xc7\xb7\x78\xef\x2e\x54\x5d\x35\x0a\xe3\xd1\x99\x2d\x47\x7d\x09\x7b\x69\xad\xc8\x12\xe3\x0b\xcd\x54\x6c\xe7\x90\x36\x65\x3a\xb3\x7a\xb4\xa7\xd0\x2b\x2e\x23\x8b\x27\x27\x66\x6e\xb3\xf0\x88\x67\x9c\xdc\xfd\x93\x94\x0d\x26\xb3\xe0\x50\xfb\x21\xd2\xae\x2a\x3c\x4f\xbd\x52\x7b\x0a\xa8\x2b\xd2\xfe\xc5\xc0\x1f\x92\x0f\x9c\x20\x51\xd4\xe9\x3e\x1c\xa1\x4c\xfc\x03\xef\x2d\xe1\x89\x7f\xac\xec\xa1\x7c\x63\xd8\xe3\xc3\x38\xa4\x53\x96\x7d\x15\xed\xad\x0b\xd1\x49\x62\x1d\xe4\x06\xdd\x54\xbe\x5b\x52\x95\xc4\x90\xe0\xe9\xe7\x93\x81\xd3\x6d\x8f\x9b\xc9\xe2\x74\xcb\xdd\xc4\xeb\x07\x14\xd9\x8e\xae\x91\xc1\xf5\x95\x5e\xc5\x37\x96\x40\xf0\xde\x35\xfe\xf8\x90\x2d\xe5\xf3\x2e\x39\x71\x66\x35\xaa\x37\x69\xb5\xd8\xc7\x15\xff\xf7\xdd\x9f\x3f\xa8\xbf\x16\x59\x4a\x35\x71\x17\x48\xa9\xc6\xff\xd6\x6f\x02\xc5\xd7\xc6\x74\xa2\xfa\x0e\x1b\x86\x6d\x9a\xbe\x15\x13\x0d\x8a\x13\xdb\x82\x57\x06\x54\x96\xb5\x86\xbc\x0a\x16\xcf\xc8\x3a\x34\xbb\xbb\x15\x77\xc9\x69\x5b\x87\xe7\x07\x9a\xd5\xa2\x8e\x42\xa6\x2f\x99\x0b\xeb\xf9\x3c\x92\xcb\x2d\xbd\x7e\xbd\x0d\x4b\x00\x6a\xb0\x2c\x0a\xf7\x60\x1a\xed\xf4\x84\xf8\x74\x29\x4c\x85\x7e\x8d\xb0\x6c\xca\xf2\x1e\x0a\x95\xb8\xe8\x35\x16\xe1\xe5\xe4\x65\x13\x2c\xe1\x7c\xb8\xf7\xf4\xac\xbe\x4d\x52\xa1\xe9\x3c\x29\x60\xee\x8f\xa3\xba\x09\x53\x1f\x8d\x6e\x95\x86\xd3\xa6\xbe\xd2\x4d\x37\xb5\x98\x59\x95\x27\x93\x2a\xe1\xdc\x75\x8b\xc4\xf3\xf2\x67\x91\xa5\x3b\x9c\x61\xc7\x88\x70\x9e\xee\x24\xc2\xcb\x84\xaf\xdf\x4d\x0c\xd9\x0b\x23\x39\xbc\x20\x87\x51\x1d\xac\x6d\x8b\xf0\x21\xc0\x7e\xb4\xf7\xe1\xc2\xc8\x0f\x56\x9f\xd6\xd1\x0c\x2f\x9f\x3b\xbb\x9b\x83\xfd\xa1\x3f\xe8\xb1\xf1\xff\x28\x0c\xfe\xed\x17\x85\xa9\x7e\x7a\x22\x06\xfb\x07\xe9\x73\xdb\xaf\xf0\xf4\xb8\x0d\x6e\x69\xb2\xe1\x2c\xbc\x97\x75\x04\xbd\x2e\x14\xc8\x4a\x71\x8a\x74\x83\x66\x00\x6c\xde\x1d\x35\x05\xec\xc0\xfb\xa3\xdd\xeb\x90\x2a\x33\x3c\xb5\x36\xf6\x2e\x05\x41\x17\x6e\x9f\xc0\x7c\xef\xf9\x53\xaa\x56\x37\xd3\xfe\x3c\xaf\x1a\x26\x33\x7f\xc6\xae\x2a\xf8\xfd\x28\x0c\xf0\xed\x45\x90\x0d\xea\xb0\x5c\xd6\x6f\x0d\x8d\x83\x20\x3e\xd7\x5d\x79\x40\x26\x1a\x8e\xca\x96\xe1\xcb\x9e\xac\x80\x92\xb2\x5b\xfd\xca\xa4\x27\xc4\xb2\xe2\xca\x20\x14\x37\x94\xdd\x58\x3b\x08\x2f\xf6\xed\x04\x36\xa0\x1e\x5b\xdf\x92\xb6\x56\x6c\x2d\xab\xdc\xc1\x5a\x9b\xef\x61\xda\xf4\xc0\xa1\x2b\xad\x5e\x7c\x4c\x14\x24\xd0\x9d\x06\x16\x66\xa3\xbd\x55\x7d\xef\xe8\xc0\xbe\x49\xb3\x47\x58\x76\xa3\xa9\x2f\x4c\xbf\x41\xa6\x62\x46\xf3\xa0\xad\xec\xc5\x59\xcd\xab\x0d\x2d\x90\xfb\x01\xa7\xdf\x05\xa8\x39\xdd\x10\x89\x50\x13\xb9\xf2\x8c\x1b\x67\xd9\xf0\x16\x58\x0c\xe4\xd5\xe1\xd9\x6b\xe8\xa5\xc9\x91\x7d\x97\x37\x7b\xaf\x72\x45\x69\x31\x6a\x06\x9d\xb8\x17\xfa\x53\xed\x53\xe5\xe1\xd6\x5b\xa9\x74\xde\x97\x93\xb2\x74\xbe\xd7\xaf\x31\x4c\x68\x74\xa8\xc6\x93\x19\xfc\xd2\x7d\x7d\xe8\xc7\xc0\xf1\xa1\xfb\x45\x81\xbf\x67\x90\xc7\x6d\x13\xac\x9d\xbc\xa6\xba\x57\x1d\xcf\x31\xea\xae\x48\xfa\xe1\x93\xae\x17\x9d\x72\x4d\x92\x3d\x58\xd8\xa2\xfb\x6d\xb2\x47\xf2\x7b\x5f\xb6\x8c\xea\x52\x83\xb1\xc8\xae\xfe\x11\x17\xbc\x11\x1d\xbc\x7f\x4e\x97\xca\xa0\xf8\x8d\x0a\x29\xa6\xc0\x68\x09\x95\x5c\x21\xbf\xa3\x62\xcb\x1b\xaf\xf6\x58\x6b\xbb\xb7\x61\x8d\x3b\xe9\x7e\x8c\xf0\x21\x56\x4c\xdc\x11\xb6\x67\x76\x9f\x7f\x93\x2a\xdc\xef\x74\xfa\xa3\x06\xc7\x56\x38\x39\xdd\xfd\xfb\x95\x69\x02\x36\xf1\xa3\x95\x0e\x6c\x8f\x5f\xaa\x84\xc0\x3b\x7e\x9e\xd2\x01\xa7\x7e\x90\xe3\xe7\x77\x9d\xcb\x83\x36\xf7\x51\xb8\x16\x94\x3e\xca\xe3\x1e\x1e\x63\x80\xee\x47\x4b\xf3\x68\x3d\xa9\x2e\x98\xa7\xd5\x38\xb4\xd5\x6a\x2f\xd8\x66\x9f\xc5\xdc\xc4\x9a\xb4\x53\x80\x78\x21\xde\x1c\x6b\xd6\x6e\x8e\x17\xc2\xcd\x56\xd3\x30\x77\x3a\x0f\xde\x87\x6e\x13\x60\x62\x74\xd3\x65\x40\xf7\x23\x19\x17\xd6\xde\x89\xa5\xdf\x4f\xee\x84\xcf\x42\xe2\xfd\xd3\x58\x90\x0d\x8e\xbb\xf4\x90\x20\xaa\xca\x24\x59\xcd\xb6\x69\x6d\xb2\x5b\x02\x37\x26\xf0\x25\x70\xa5\x6e\xf8\x6b\xb6\xf6\xb4\xd3\xc5\x95\x29\x8a\xa6\xba\xa9\x08\xee\x97\x76\xb2\x2a\xaa\x99\xed\x51\xc1\x1b\x90\x9c\x30\xb1\x44\x3e\x79\xbe\xac\x96\xbd\x48\xd6\xd8\x96\x2e\xb3\x3d\x1e\xfc\x37\x00\x00\xff\xff\xcc\x99\x7a\x5d\x30\x38\x00\x00" func pdsCdcBytes() ([]byte, error) { return bindataRead( @@ -121,7 +121,7 @@ func pdsCdc() (*asset, error) { return a, nil } -var _packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x1b\xdb\x72\xdb\x36\xf6\xdd\x5f\x71\xa2\x87\x0c\x35\x75\xe8\x24\x6d\xb2\xa9\x26\x4a\x9a\xc6\xf1\xc4\x33\xad\x9b\x89\xdd\xf6\x21\xe3\x49\x21\xf2\xc8\xc2\x9a\x02\x58\x00\x94\xa2\xf5\xfa\xdf\x77\x70\x23\x41\x12\x94\xe4\x5c\x76\xf6\x61\xf5\x60\x4b\xe4\xb9\xe1\xdc\x71\x40\xd2\x65\xc9\x85\x82\xd7\x62\x53\x2a\x7e\xe0\x7e\x9d\x71\x76\x52\xb1\x2b\x3a\x2b\xf0\x82\x5f\x23\x83\xb9\xe0\x4b\x18\x75\x2f\x8f\x3c\xfc\xe9\x3b\x92\x5d\x9f\x9d\x5c\x38\x38\xff\xb3\xbe\xff\x2b\x2a\x92\x13\x45\xfe\xa0\xb8\x96\x0e\xa8\x75\x6d\x74\x70\x40\xb2\x0c\xa5\x4c\x48\x51\x8c\x21\xe3\x4c\x09\x92\x29\x70\x84\x26\x3d\x89\x0e\x1b\x9e\x37\x07\x07\x00\x00\x21\xfe\x8a\x08\x50\x5c\x91\xe2\xbc\x2a\xcb\x62\x33\x81\xdf\x4f\x99\x7a\xfa\x43\x0f\xae\x40\x05\x2b\x14\x92\x72\x36\x81\x73\x25\x28\xbb\x8a\xc2\xbc\xe6\x45\x81\x99\xa2\x9c\x9d\x2b\x2e\xc8\x15\xbe\x23\x6a\xa1\x31\xea\x1f\x3b\xd0\xde\x55\xb3\x82\x66\x16\xab\xf9\xbe\x03\xc9\xaf\xf0\x0e\xc8\xbf\x95\x28\x88\xe2\x62\x50\x4c\x83\x75\x74\x04\x02\x4b\x81\x12\x99\x22\x9a\x13\xf0\x39\xa8\x05\x82\x56\x27\x65\xa0\x16\x54\x36\x36\x50\x1c\xae\x11\x4b\xd0\xbf\xae\x35\xa4\x54\x44\xa1\x0c\xf9\x7b\x58\x2b\x44\x49\xb2\x6b\x39\x81\x9f\x6e\xac\xd6\x27\xc6\x8a\xb7\x7d\x2b\xe1\x0a\x99\x82\xf7\xb8\x42\x52\xbc\xc7\xbf\x2b\x94\x2a\xa1\xb9\x37\xd6\x21\xf0\x12\x99\xbb\x3e\x81\x9f\x39\x2f\xc6\x03\x24\x7e\x6b\x00\x03\x02\x43\xd0\x96\x21\xe6\x2d\x5e\x92\x14\x6a\x02\x1f\xf4\xcf\x67\x97\x87\xc0\xe6\x4a\x7a\x8f\xd8\xc6\xb5\x45\x65\x08\xf0\x57\xca\x54\x87\xdd\x82\xc8\x45\xc0\x2e\xa7\x52\x9d\xee\xa4\xf3\x73\x25\xf6\x63\xf8\xda\x99\xe3\x94\x51\x45\x49\x41\xff\x85\x79\x32\x04\xfb\x27\x55\x8b\x5c\x90\x75\x4b\x3c\x1d\xa1\x13\x78\x95\xe7\x02\xa5\x7c\x39\x84\x7a\x8c\x25\x97\xb4\x6d\x33\xc5\x43\xbc\x3e\x22\xab\x96\x70\xae\x88\xaa\xa4\xc5\x79\x06\x37\x06\xa8\x0b\x98\x11\x89\x70\x6e\xec\x34\x7c\xdf\x5b\x72\x18\xc2\xda\xc8\xdc\x8f\x38\xa0\x40\xc9\x2b\x91\xa1\x4f\x33\x3e\x7a\x26\x75\x72\x49\x4f\xfd\x35\x9f\x66\x02\x1a\x35\x90\x85\x21\xb3\x02\xc7\x30\xaf\x18\x2c\x29\x53\x49\xdb\xa6\x87\x90\xf1\xe5\x92\xaa\xb7\xc6\xf0\xd6\xb1\x0e\x81\x4a\x59\xa1\xa8\x35\x36\xd6\x41\x53\x53\x3d\x3b\xb9\xb8\x0d\xb4\xa3\x3f\x3a\xba\xd8\x5c\xc1\xf3\x07\x90\x09\x24\xca\x44\x6c\x12\x52\x6e\xbe\x37\xd4\xed\xff\x71\x8b\x92\x67\x12\x64\x49\x98\x46\xaf\x7e\x07\x8f\x7a\x32\x94\x00\xcf\x1f\x38\x09\x34\xce\x17\x89\x60\xd2\xc5\x07\x36\x57\x29\xcd\x2f\xe1\xf9\x83\x7b\x50\xb6\xe0\x70\x49\x5b\x31\x64\x21\x7d\x0c\x35\xdc\xd2\x1c\x33\x9e\xe3\x5b\xfc\x94\x8c\x9b\x90\xb2\xff\xdb\x9c\x05\xaa\x4a\x30\xad\x45\x36\x57\xf5\x9d\xdb\xfd\x0d\x2c\x8c\xe3\xb5\x1c\xdf\x66\x8c\x0f\x8d\xf9\x7c\x1e\x9f\x15\x78\x7b\xe9\x13\x8c\xcb\x28\x11\xb3\x96\x5a\x9c\x96\x4a\x52\x81\x4b\xbe\xc2\xe4\x1a\x37\x13\xa0\xf9\x18\x5e\xbe\x84\x92\x30\x9a\x25\x23\xc6\x41\x56\xd9\xc2\x64\xda\x51\x7b\x6d\x65\x1a\x08\xa7\xd5\x64\x05\xd3\x7f\xbd\x10\xfa\xef\x36\x53\xf4\xcd\x70\x07\xd5\xe8\xa4\x7d\x07\xc5\x7c\x5b\x55\xd4\xc2\xb4\x15\xf1\xd9\x8b\xa7\x8c\xaa\x64\x7c\x73\xbb\x57\x42\x19\xc8\x6c\x7a\x85\xad\xf4\x3f\x08\xd5\xc9\x0e\x51\x38\xdd\xe9\x48\x97\x4f\xfd\x42\x6c\x7e\x1d\x06\x0f\x4b\xdd\xcb\x9e\x65\x0d\x9c\xb6\xe4\x0a\x05\x9d\x6f\x12\x36\x57\xd6\x6b\x6b\xef\xb5\xc5\xb8\x63\x38\x22\x25\x0a\x95\x48\x2c\xe6\xa9\x15\x08\xee\x4d\x3b\x22\xa5\x36\xa1\x1f\xc2\x12\xa5\x24\x57\x38\x81\x91\x51\x14\xe3\xca\x85\x14\xe6\xb0\x41\xd5\xb1\xa3\x16\x5a\x6b\xcc\xb2\x87\xa9\x93\x23\x45\xe6\xe3\xdd\x72\x25\x85\xba\xd7\xc6\x6c\x61\x35\x3f\xd2\x8c\xb3\x8c\xa8\x64\x74\x38\x1a\xfb\xef\xf5\x32\xc7\x3d\x7f\xd4\x88\x30\x05\x9d\x63\x5e\x15\x57\x5c\x50\xb5\x58\xa6\xe7\x6f\x5f\x3d\xfe\xf8\xf8\xc9\xd3\x54\xdf\x4d\x02\xda\x95\x9a\x3f\x1b\xc7\x54\x13\x97\x5a\x63\x8e\x61\x1a\x59\x94\xb9\x13\xea\xea\x75\x9d\xea\x60\x4d\xa4\xd1\x9a\xb1\x11\xc5\x7c\x14\x4d\x70\x4a\x54\xb8\x25\x86\x35\x7f\x6b\xea\x8f\x8d\xad\xf7\x4e\x62\xb1\x8a\x36\xf6\x5f\x3a\xce\xd1\xb3\xa0\x26\xd4\x83\xa8\x4d\x00\x53\x13\xa6\x1f\x1e\x5e\xa6\x0d\x56\xd2\x77\x0a\x0a\xd3\x4e\x71\x5a\x2f\x68\x81\x40\xe1\xb9\x21\x90\x16\xc8\xae\xd4\xa2\x23\x8c\x37\xab\xf4\x6c\xe8\x16\x36\xfa\xd3\x91\x6b\xd8\x87\x64\x1f\x57\x8b\x48\x7b\x35\xf4\xf6\xff\x5e\xda\x78\x69\xbd\xa6\x2d\xae\xda\x6c\x30\xbe\x41\xf9\x8d\xa4\xae\xe9\xbe\xa9\xcb\xc1\x53\xbb\x50\x0b\x34\xea\x1b\x67\xa5\x7d\x5e\xd3\x6f\x47\x5a\xb7\x2a\xc7\x62\x2a\x6a\x8a\x36\x87\x3a\xfd\xb9\xc8\x0a\x3b\xa1\x08\xa0\x5b\x62\x77\x85\xbd\x6e\x1a\x7c\xf3\xd5\xda\x31\xe9\x52\xda\x48\xdc\x6e\xba\xec\xaa\x56\xe3\xbd\x2d\xf9\x85\xdd\xc2\x5e\x96\xf3\xd2\xef\xb0\x9d\x07\x1b\x45\x54\x36\x6c\xb5\x6d\xa5\xe8\x8b\xac\x39\x60\xa4\x60\x43\xd3\x32\x51\xb0\x19\xa5\x79\x54\xff\xa6\x77\xd9\x67\x13\xd2\xd1\x71\x2d\x26\x4c\x07\x9a\xed\x3e\xb8\x25\xa9\x53\x9f\xf9\xb2\xff\xf2\xce\xfb\x1e\x18\x3a\x37\xa3\x45\xb0\x34\xd8\xd1\x84\x9d\x9d\x5c\x4c\x6a\xf0\xee\x00\x29\x3d\x3d\x3b\xb9\x38\xac\x6f\x37\x1b\x3e\xf7\xc5\x4e\x99\x86\xef\xff\xb6\x66\x28\xfc\xe6\xf0\x70\x98\x4d\x9c\xcb\xd9\xc9\x85\xb9\x38\xdc\x22\x36\x41\xf1\x95\xbb\xc8\x2e\x60\x4f\xe2\xdf\xcb\x5c\xef\xeb\xfe\xdd\x5f\x8b\x59\x73\x2b\x05\xf7\x47\x34\x37\xd1\xde\x5a\xf4\x86\x3c\xd6\x4f\xf2\xce\x94\x27\xf8\xb1\x2d\x89\x0c\xca\xbc\x4d\x64\x93\x6b\x06\xe4\xe3\x9d\x09\x92\x93\x2e\x2a\xc3\xd1\xd1\x11\xbc\x31\x03\x10\x1d\x79\x0a\x73\x58\x2f\x90\x01\xb1\xd3\x33\x09\x39\x4a\x25\xf8\x06\x73\x48\x04\x96\x05\xc9\x50\xba\xd1\x8d\x9b\x9b\xcc\x70\xce\x05\xc2\x6b\x92\x23\xcb\x10\x1e\xa5\x0f\xa1\x32\xf2\x8f\x43\x1e\x51\x83\xfa\x09\x96\xf5\xf0\x63\xcf\x29\x48\xa1\xbe\xd0\x68\xe1\x03\x72\xf0\xa7\x96\xd1\x89\xa6\x3b\x0d\x2b\xae\x8f\x95\x43\x33\xfe\xcb\xb8\x10\x28\x4b\xce\x72\x0d\xe1\xe7\xab\x75\x3c\x31\xbe\xd6\x3e\x07\x8a\xc3\x0c\x21\x47\xb7\x4a\x22\x61\x8d\x45\x01\x54\xeb\x40\x62\x49\x84\x36\x45\x46\x8a\x22\x0d\x05\xb8\x58\x50\x93\x6b\x67\x98\x91\x4a\x22\x64\x95\x54\x7c\x89\x5e\xa6\xc4\x18\xc9\xcc\x3d\x7d\x46\x26\x45\xc1\xd7\x98\x6b\xc2\x81\xae\x5a\x44\x1b\xe4\x9b\xf0\x32\xec\xb7\x93\xf4\x8a\xda\xbd\x9d\x74\x34\xf7\x9f\x9a\x3c\x80\xe4\x91\xd6\x8c\x1f\xd4\x75\x29\x99\xa4\x1d\x0c\xf4\x7a\x0e\xe7\xe0\xdc\x02\x83\xed\xe8\xd1\xd1\xe7\x64\x75\x88\xa6\x75\x9a\x7b\x77\xa9\x2a\x1a\x49\xbb\x5f\x29\xed\x77\x82\xe7\xb5\x1d\x1c\x11\x06\xb8\x2c\xd5\x26\x98\x78\xc3\x9c\x0b\x78\x47\x19\x23\x59\x61\xf2\xb7\x04\xc2\x72\xdf\x28\x52\x33\x8b\x36\x8e\x4a\x8a\x22\xa0\x3f\x14\x2d\x3a\xea\xed\x94\xea\x8d\x66\xd4\xf0\x49\xcc\xa4\xad\x97\x2c\x1a\x80\xee\xe0\xad\x99\x18\x79\x63\xc7\xe9\xb2\xb9\xba\xd8\x94\x38\x01\xfd\xf7\xf9\x4f\x41\xba\x7f\x91\x8c\xa3\xd9\x64\x45\x71\xdd\x13\xfa\x0a\x95\x39\x16\xd1\x72\x7e\xd0\xa4\x2e\xe3\xf2\x7c\xb8\xec\x94\xc3\x41\x8a\x3a\x88\x8b\x15\x6a\xaa\xc9\x47\x03\x62\x65\x1c\x4f\xe0\x15\xdb\x9c\x2b\x51\x65\xea\x65\x9c\xc9\xdd\x8a\x6e\xa3\x8c\x2d\xb5\xf7\x9d\xe0\x2b\x9a\xe3\xb6\xba\xf9\x1e\x33\xa4\xab\xad\x20\xdd\xe3\x95\x2d\xd5\x7a\x18\x74\x0b\xd5\x4e\x85\xd6\xe9\x86\x9a\x1b\x44\x6c\x80\xcf\x4d\x02\xcd\x38\x9b\x73\xb1\xd4\xf9\x52\x69\x74\x19\x82\xbb\x82\x40\x1a\xed\xa8\x4d\x89\xb0\xa6\x6a\xa1\xbd\xff\x2f\x9b\x1c\xfe\x82\xd3\x63\x98\x53\x2c\xe2\x73\x6c\xbd\xd1\xe5\x6b\x86\xb9\x0e\x87\xf0\x54\xa5\xef\xbf\x67\x27\x17\xb7\x9d\xdc\x00\x49\x34\xf0\x6b\x82\xda\xa5\x6f\x6e\xe3\x91\x6a\x04\xcd\x05\x59\x83\x4d\x9a\x3a\x18\xa1\x3e\xe5\xb3\x05\xa3\x8e\x5c\x1d\xa7\x16\x68\x30\x4c\x87\x8a\xb7\x3f\x82\xd8\xd1\x72\x78\x69\x12\xff\xe5\xf4\xb8\x3e\x08\x89\x86\xf3\xc0\x00\xdd\xd8\x49\xaf\xbb\xad\x89\x56\x65\x68\x58\x84\xc5\x61\x49\xa5\xd4\x96\x3e\x3b\xb9\xe8\xec\x12\x4c\x3a\x6f\x1d\xa5\x18\x2e\xa6\xc1\xb1\x87\x29\x35\x33\xf1\x32\x25\xae\xd3\x1e\x48\x31\x06\x75\xc0\x24\xb9\x3d\x73\x01\x45\xae\xb5\x3d\x8c\x39\xb4\xea\x49\x9e\xb7\x34\x5f\x1b\x46\x06\x4e\x1b\x12\xaa\x91\x34\xf8\xe9\xb1\x47\xa4\x39\x10\x21\xc8\x66\x30\x9f\x3a\x01\x12\x23\xe4\xa0\xda\x63\x63\xdd\x5a\xef\xf6\x0b\x91\xf7\x20\x4c\x90\x07\x3d\x84\x56\x53\xe3\xf5\xd9\x06\xd3\x0b\xc9\x73\x23\x39\xc3\xb5\xa3\xec\x96\x12\x04\xeb\x7a\x41\xb3\x45\xed\xc5\xfa\x26\x2f\x72\xe0\x0c\x7b\x3c\x79\x91\x5f\xc4\xfd\xc3\x4d\x86\x3b\xd6\xa9\x8d\x1f\x1e\x86\x69\xab\x2b\x3e\x60\xf3\x16\xaa\x2f\xef\x9e\xed\x80\xd5\xaf\x50\x9d\x1e\x4b\xe7\x22\x26\x0c\x8d\x91\xfc\xb1\xad\xbe\xa7\x16\x44\x01\x11\x68\xcf\x6f\x43\x0f\xd8\x59\x6a\x4e\x8f\x6d\xa1\xb1\xba\x1e\x28\x35\x9d\x60\xb9\xc6\x8d\x1c\xaa\xef\xef\xdd\xf4\x71\x81\x40\x96\xbc\x62\xca\x25\x4b\x09\x52\x71\x61\x1b\xba\x01\x11\xc3\x4a\x3e\x24\xee\x2f\x66\xa8\xa7\x25\x3e\x65\x6a\x6f\x61\xdd\x2c\x70\x87\xcc\x04\x0a\x2a\xbd\xbc\x26\x5b\x3b\xcd\x9a\x23\x71\xe1\x6a\x92\x91\xaa\x54\xf2\x4e\x62\xeb\xc6\x90\x0b\x65\x44\xd2\x95\xd7\xe8\xfc\xc6\x76\x0b\x7a\xe7\x14\x4b\x55\xd2\xe3\x18\x84\x0e\xf8\x34\x4c\xdc\xfa\xd3\x86\xfe\x10\x6b\x41\x2e\x75\x24\x85\x53\xe1\x50\x69\x2d\xf4\x1d\x8a\x5a\x2f\x50\x2d\x50\x00\x17\xa6\x55\xd7\xe6\xbc\xa2\x2b\x1d\x7c\xba\xc2\xe9\xa2\x67\x54\x84\x39\xcc\x36\x5b\x8c\x0d\xaf\xc2\x1a\x62\x34\x9d\x69\xef\x36\xc8\x40\xd8\xc6\xd2\x93\x0b\x5e\x15\x39\xfc\xb3\x92\x2a\x9c\x6d\x6b\xda\x39\xce\x49\x15\x0c\x93\x77\x9a\x82\xca\xae\x25\x12\x55\xb7\x6c\xf1\xb3\x0d\x3a\xb7\x62\x4c\xa7\xd1\xbe\x2e\x32\x5f\x8e\x0d\xe0\xa1\x37\xf8\x75\x50\x73\x52\xc8\xe8\x9c\xfe\xe8\x08\x66\x5c\x08\xbe\xd6\xce\x78\x85\xca\xb6\x12\x73\x14\x66\x2f\xa4\xb8\xaf\xc7\xdb\xe2\x09\x24\xf7\x1e\xec\x0b\xb2\x51\xb1\x40\x92\x03\x55\x12\x96\xee\x39\x1c\x53\x11\x34\x80\xbf\xba\xe0\xb9\xdc\xae\xca\x5a\xb8\xe4\x63\x90\xac\xc7\x13\xb8\x1f\xaf\x0a\x03\x0d\xe6\xfd\x7e\xa2\xdd\xbb\x53\xb6\x22\x38\x7b\x24\x1d\x21\x5a\x47\xe9\x03\xcc\x0d\xef\x66\x21\x7a\x37\xa8\x2b\x53\x17\x79\x28\x1c\xa2\xdb\x00\x77\x55\x46\xb7\x38\x2e\x67\x4b\xb2\xb4\xed\x60\x8b\x5c\xb3\xdb\xd9\xdd\x47\x7d\xab\x2d\xce\x57\xda\xe1\x40\x6f\xa3\x10\x1b\xe2\xef\xf5\xdc\x4f\x6b\xf3\x6a\xf7\xf5\xcd\xae\xbb\xf1\x80\xf7\xad\x67\x9a\xfc\x2c\xb4\xee\xdf\x20\x19\x9d\xc5\x77\xf7\x6e\x8c\x5c\xba\xb1\x64\x2a\xc8\xfa\x0f\x52\x54\x38\x78\x0c\x50\x43\x0c\xcd\x94\x97\x3a\x53\xcd\xfc\x13\x2c\x66\x5b\x6b\xd7\x0b\xc2\x2e\x2c\xe0\x1e\x8c\xd8\x43\x6d\xec\x9e\x8d\x6d\xd3\x6e\x77\xa0\xe5\xa2\xe2\x7f\x46\x8f\x7e\xda\xbe\xb7\x26\x3d\x82\xd1\xa5\x5e\xdd\x90\x26\xbb\x0f\x83\xf9\xa1\x4a\x64\xd3\xaa\x15\x55\x9a\xfd\xe0\xfb\xaf\x77\xa2\xf4\x0d\xf4\x7a\xa7\x67\x3a\x06\xd6\xb9\x55\x8c\x3a\x67\xc2\x7d\x0d\x11\xa6\x4a\x97\x16\x12\x9b\xa4\x9b\x67\x24\x88\x74\xb0\xe3\x7b\xdb\xd8\xee\x91\x44\xee\x92\xa8\x9a\x4d\x92\x7b\xfa\x28\x4c\x78\xa1\x1c\x3a\x99\x9e\xf8\x79\xa2\xa9\x7f\x75\xf3\x5c\x14\x26\xa9\xfa\xe7\x4f\xc1\x3e\x94\x4a\x97\x65\x81\x4b\x64\xae\x65\x21\x7a\x2b\x0a\x5e\x24\x68\x9a\x73\xdf\x5f\x68\x06\x3f\x39\x71\x5e\x05\xfd\xb8\x69\x9e\x74\x57\x42\x99\x19\x0a\xe8\x3d\x55\x40\x5a\x17\x31\x99\xda\x61\xe8\xca\xc4\xc6\x9a\x16\x85\x76\xf0\x4a\x1a\xce\x35\x71\xff\xc9\x71\x85\x05\x2f\x51\x98\xc1\xeb\x35\xe3\x6b\xb7\x9d\x29\x89\x20\x4b\x54\x28\xf4\xf5\x92\x48\xe9\xcb\x45\x38\xeb\x19\xbb\x4a\x9e\xb6\x84\x6f\xcd\x17\x74\x59\x75\x3d\xaa\x7f\x70\xd0\x0e\x9f\xfc\xd4\xa2\x31\xd5\xcb\xd8\x3c\xca\xcf\xa2\x5a\xd5\xc4\x54\x87\xd6\x23\xbe\x69\x6b\x0c\x73\x4c\x14\x79\x91\x8c\x0f\xef\x86\x44\x65\x59\x90\xcd\x8b\x60\xf6\x78\xb9\xcb\xe8\x46\x15\xba\x71\xaa\xfb\x1c\xbb\x60\x2e\xda\x8f\xb9\xa6\x7d\xeb\x1a\x05\xfb\x59\xd9\x02\x8d\x78\xbe\x7c\xe7\x28\xa9\x70\xf6\x4c\xfb\x0e\x01\xd2\x4c\xd4\x2a\x81\xcd\x93\xb6\xde\x1d\x5c\xde\xea\x22\x47\xc3\xc7\xc9\x1f\xda\x25\x66\x96\x43\x43\xaa\x15\x52\xd1\xa9\x9e\x5c\x53\x95\x2d\x6a\xe0\x4e\x07\x60\x9e\x98\xdc\xd3\x70\x93\x5e\xcb\xab\xf3\x5e\xd6\x02\x83\x29\xec\x20\x94\xf4\xa8\x18\x29\xc3\x87\x97\x8f\xdc\xaf\xa3\xcc\x1e\x01\xbc\xf9\x44\x74\x38\xb5\x48\x1d\x46\xc9\x94\xc1\x63\xd3\x47\xf6\xc7\xe7\x12\x09\x86\x9a\x56\x41\xf7\xbb\x45\x81\xb3\x9e\x37\xb7\x49\xfc\x42\xd9\xb5\xdd\x5a\x7d\x06\x89\x68\x16\xf5\x9e\x3e\x81\x64\x5e\xdd\xbd\xdf\x0b\x3f\x5f\xb7\xf7\x0b\x3f\xb7\xfd\xcb\xfd\x2b\x8e\x7d\xdb\x7b\x3e\xc3\x35\xeb\xf4\x10\xf7\xce\x25\xe6\xb4\xef\x94\xbf\xea\xab\x71\x47\x9c\xd3\x02\x27\x1d\xf0\xb7\x17\x17\xef\x4e\x68\x81\x71\x0c\xfd\xa9\x44\x31\x81\xd1\x42\xa9\x52\x4e\x8e\x8e\x74\x4f\xa4\x64\xba\xc6\x99\xa4\x0a\x1f\x68\x92\x32\xcd\xf8\xf2\xe8\xc9\xfc\xe9\xe3\x1f\x7f\xc8\x1e\x66\xff\x20\xcf\xb2\x3c\x7f\xfa\xc3\xf7\xb3\x47\xd9\xb3\xc7\x0f\x3b\x37\xc8\x93\x27\xd9\xec\x51\xf6\xe3\xf7\x4f\x3f\x9e\x14\x7c\xfd\xf1\x4f\x2e\xf2\x25\x11\xd7\xa9\x5c\x5d\x8d\xa2\x32\x0c\xf8\x90\x59\xbd\x35\xdf\x88\x2e\x75\x44\xc9\xd5\xd5\x77\x9f\x96\x45\x9f\xca\xa0\x85\x76\x2b\x3f\xae\x16\x46\x96\x9a\xad\x4e\xa2\x2e\xf4\x82\xc2\x3d\x8a\xcb\x9b\xa3\xcc\x04\x2d\xad\x87\x8f\x2e\x6c\xae\xae\x77\x51\x54\xda\x82\x49\xec\x26\xcb\x11\x55\x1c\x16\x58\x94\xb0\xe1\x95\xaf\x9b\xfa\xbb\x00\x86\x9f\x14\x68\xfd\xe9\xfd\x72\x3a\xc0\x11\x3f\x29\x14\x8c\x14\xbf\xbf\xff\xa5\x6b\xf5\x37\xcd\xad\xa4\x36\xad\xe3\xfa\x80\xcd\x55\xca\xd9\xbc\xe0\xeb\x94\x8b\xab\xd1\x80\xfe\xe5\xdf\x15\x11\x78\xba\x34\x2d\xae\x31\x46\x1c\x6e\x46\x18\x43\xb1\x1b\x4e\xf2\x8c\x92\x42\x4e\xb6\x84\xf5\x48\xad\xa9\x52\x28\x46\x7b\x2d\xc7\x01\x1b\xe7\xd4\x8b\xf9\x38\x2b\x78\x76\x9d\x2d\x08\x65\xa3\x81\xe0\xde\xe2\x39\xb7\xdd\xfe\xc0\x1f\x23\xb9\x5a\x6d\x0e\x2e\x6b\x98\xdd\x2f\xd8\x1c\x46\x60\xe3\x2f\xc6\xc4\x20\xb7\xbf\x4a\xd3\x60\xec\x7a\x7f\xa6\x81\x8c\xbd\x36\x14\x3c\x5c\x60\xba\xe5\xf6\x31\xf1\xc3\xf6\x4d\xd3\x4a\x77\x8e\x5f\xcc\x8d\xa8\x2e\x60\x1a\xd7\xd1\x10\x6a\xb3\xb8\x16\x66\xe7\xf5\xa1\x08\x62\x5f\x53\x2d\x02\xfd\xdb\x6d\x42\x11\x05\xc2\x34\xa6\xd6\x36\x9a\xd3\x26\x4c\xbd\x5e\x5b\x43\x30\x7f\x60\xdc\x9a\x15\x72\x3f\x8e\xb5\x0f\x5b\x9f\x9d\x5c\xc8\xd6\x1e\x2c\x80\xdd\xb2\x5d\xa8\x25\x20\x59\xc6\x2b\xa6\x52\xd7\x6e\xa4\x92\xac\x30\x79\xfe\xa0\xa1\x12\x8c\xf4\xa3\x96\x18\xa0\x97\x91\x92\xcc\x68\x41\x15\x45\x99\x9a\x56\x40\x2e\xda\x49\x72\x18\xdc\xcb\x62\x8e\xd3\x9f\x47\x86\x6a\x5d\xc3\xde\xbe\x48\xb6\x08\xd8\xce\x23\x44\xf5\x56\x13\x31\xea\x7f\x61\x55\x3b\x0f\x6b\xbf\x70\x55\x5b\x5c\x76\x1c\x77\x33\xee\xdf\xf9\x51\x1c\xe4\x82\x08\x34\x6f\xf4\x40\xbd\x8a\x8d\x3d\xc2\x2d\x05\xff\xb4\x69\xf9\x5c\x8d\xd8\x78\x5c\xe7\xd5\xa2\x3d\xdd\xce\x13\x0a\x9c\x2e\x12\x43\xfb\x18\x67\x58\xdb\x9e\xa0\x57\xef\x20\x83\xdb\x83\xdb\x83\xff\x04\x00\x00\xff\xff\x55\x18\x91\xd2\x27\x3a\x00\x00" +var _packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x3b\x5d\x93\x13\x39\x92\xef\xfd\x2b\x12\x3f\x0c\x76\x6c\x53\xcd\xcc\xce\x70\xac\x8f\x1e\x86\xa5\xe9\xa0\x23\x66\x1a\x02\x3c\xbb\x0f\x04\x41\xc8\x55\xe9\xb6\xa2\xcb\x52\x8d\xa4\xb2\xf1\x71\xfd\xdf\x2f\xf4\x55\x25\x55\xa9\xfc\x41\xc3\xdd\xcb\xf5\x03\xd8\xae\x54\x2a\xbf\x33\x95\xa9\xa2\xab\x8a\x0b\x05\x2f\xc5\xb6\x52\xfc\xc4\x7d\xbb\xe6\xec\xb2\x66\x37\x74\x5e\xe2\x8c\xdf\x22\x83\x85\xe0\x2b\x18\x75\x7f\x1e\x79\xf8\xab\xb7\x24\xbf\xbd\xbe\x9c\x39\x38\xff\xb5\x79\xfe\x07\x2a\x52\x10\x45\xfe\x45\x71\x23\x1d\x50\xf4\xdb\xe8\xe4\xe4\xec\xec\x0c\x5e\x72\xa6\x04\xc9\x15\xa8\x25\x51\x50\xe0\x82\x32\x94\xa0\xb1\xc1\xf5\xe5\x4c\x66\x1a\xe8\x84\xe4\x39\x4a\x39\x26\x65\x39\x81\xdc\x2f\x70\x3b\x4e\x7b\xa4\x9f\xb6\xc4\x7d\x39\x39\x01\x00\x08\xd7\xaf\x89\x00\xc5\x15\x29\xdf\xd7\x55\x55\x6e\xa7\xf0\xe7\x15\x53\x4f\x7e\xee\xc1\x95\xa8\x60\x8d\x42\x52\xce\xa6\xf0\x5e\x09\xca\x6e\x92\x30\x2f\x79\x59\x62\xae\x28\x67\xef\x15\x17\xe4\x06\xdf\x12\xb5\xd4\x2b\x9a\x2f\x7b\x96\xbd\xad\xe7\x25\xcd\xed\xaa\xf6\xf3\x9e\x45\x9e\xc3\x23\x16\xbf\xa9\x50\x10\xc5\xc5\x20\x99\x66\x95\xd6\xc9\x05\x35\x7b\x10\xb1\xb5\x5a\x91\x8a\x0b\xaf\x14\x81\x92\xd7\x22\x47\x09\x94\x81\x5a\x62\xab\x0f\xa9\x88\x42\x18\xd3\x0c\xb3\xd3\x46\x81\x20\xb0\x12\x28\x91\x29\xa2\x51\x4a\x50\x1c\x6e\x11\x2b\xd0\x6b\x6e\x81\x2f\xec\x32\x39\xc9\xfc\xee\x21\xed\x1e\xb7\x65\xa0\x22\xf9\xad\x9c\xc2\x6f\x5f\xac\xc6\xa6\x66\x93\xbb\xbe\x86\x71\x8d\x4c\xc1\x3b\x5c\x23\x29\xdf\xe1\x5f\x35\x4a\x35\xa6\x85\x57\xf4\x29\xf0\x0a\x99\xfb\x7d\x0a\xff\xe4\xbc\x9c\x0c\xa0\x78\xd3\x02\x06\x08\x86\xa0\xed\x86\x58\x44\x7b\x49\x52\xaa\x29\x7c\xd0\x5f\x9f\x7e\x3c\x05\xb6\x50\xd2\x5b\xd3\xae\x5d\x23\x2c\x43\x80\x7f\x50\xa6\x3a\xdb\x2d\x89\x5c\x06\xdb\x15\x54\xaa\xab\xbd\x78\xbc\x0b\x5e\x31\xaa\x28\x29\xe9\x7f\x61\x31\x9e\x78\x6b\x80\xd9\x9b\x8b\x37\x53\x0d\x23\x69\x81\x02\x04\xae\xf8\x9a\xb2\x1b\x78\xf8\x6f\xaa\x96\x85\x20\x9b\x87\x40\x58\x01\x0f\x2f\xb0\xe2\x92\xaa\x87\x16\xa9\x04\xc6\x37\xce\x7a\xe8\x8a\x96\x44\xb4\x0b\x58\xbc\x02\x8b\x66\x0d\x11\x08\xb8\xa2\x4a\x61\xa1\xcd\xab\x17\x93\x1a\x5b\xd3\x9c\x8b\x05\xc9\x71\x80\x25\xbf\x55\x24\x1c\x1d\x84\xa6\xf0\xa2\x28\x04\x4a\xf9\x7c\x48\x1a\x8e\xaa\x68\xa5\xe2\xe1\xba\xc6\x4f\x5e\xb1\x7a\x15\xc7\x2d\xed\x10\xda\xa0\x6b\xa9\x4d\x9b\xc4\x2e\x93\x34\x71\xbb\xb3\x46\xf4\xde\xac\xb3\x9b\x3e\x85\x2f\x06\xa8\x0b\x98\x13\x89\xf0\xde\x98\xd9\xf0\x73\x6f\x88\xc3\x10\xd6\xc4\xcc\xf3\xbb\x96\x9d\x77\x8e\xce\x98\x25\xd2\xfa\xb2\x8f\x20\xa7\x9a\xa5\x4a\x5b\xc4\xbc\x44\x58\x70\x31\x6d\x70\xc0\x23\x63\x96\xda\x40\x9a\x18\x6e\xb4\x6d\x43\x85\xb0\x0b\x8b\xe6\x79\x1b\x4e\xcc\xa6\xa9\xd0\x70\x1a\x22\xb7\xbc\xe9\xe5\xd2\xf0\xd8\xc1\x72\xaa\xf7\x0a\xe1\xb5\xaf\x6b\x68\xe1\x64\xd2\x81\x1f\x56\x89\x07\xf1\x69\xc6\xf3\x3e\x6d\x92\x4b\x76\xe5\x7f\xf3\x69\xc6\xef\xab\x25\x00\x04\x18\x6e\xc2\x38\xe8\xf0\x69\x61\xec\x10\xc4\x7f\xda\x68\x6b\xe4\x15\x3d\xe8\xc6\xdb\x87\xd2\x06\x44\x28\x9a\x68\x1d\x11\xa1\xf7\x11\xa8\x6a\xc1\x5a\x5c\x11\x21\x8a\x5b\x7c\xa4\x2c\x51\x64\xe1\xda\xae\xe1\x34\x1c\x5b\x86\xc9\xbc\xc4\x09\x2c\x6a\x06\x2b\xca\xd4\x38\x0e\x32\xa7\x90\xf3\xd5\x8a\xaa\xd7\x26\x12\xd9\x48\x77\x0a\x54\xca\x1a\x45\xe3\x44\x13\x1d\xc5\x1b\xac\xd7\x97\xb3\xbb\xc0\xde\xf5\x9f\x0e\xf7\x6c\xa1\xe0\xd9\x23\xc8\x05\xea\xbc\x72\x7d\x39\x1b\x87\x98\xdb\xcf\x2d\x76\xfb\xff\x24\xc2\xe4\x37\x09\x52\x3e\x9c\x27\x7f\xfd\x1b\xfc\xd8\xa3\xa1\x0a\x28\xd0\x6b\xee\x45\x82\x51\xd7\x07\xb6\x50\x19\x2d\x3e\xc2\xb3\x47\x0f\xa0\x8a\xe0\x74\xe4\x0b\x83\xba\x85\xf4\x41\xbd\xdd\x2d\x2b\x30\xe7\x05\xbe\xc6\xcf\xe3\x49\x1b\xe3\xed\xff\xf1\xce\x4e\xff\xcf\x1e\x69\x5c\xcd\x93\xbb\xd8\x5a\xad\x4b\x01\x71\x71\x25\x15\xb3\x8e\xb5\x0b\xeb\x6d\x51\x08\xb5\x99\xef\x43\xab\x75\x5f\xcb\xcc\x4b\xbc\xfb\xe8\x13\xa5\xcb\x8c\x09\x6b\x30\x9a\x88\x24\x99\x99\x54\x84\xe3\x5b\xdc\x4e\x81\x16\x13\x78\xfe\x1c\x2a\xc2\x68\x3e\x1e\x31\x0e\xb2\xce\x97\xc6\x41\x46\xb1\x48\xaa\x2c\x20\x4e\x4b\xd7\x12\xa6\xff\xf5\x44\xe8\x7f\x77\x69\xb0\xaf\xbd\x8e\x44\x75\x78\x05\xd2\xc4\xe1\xbe\xef\x7d\x9d\x54\x75\x2c\x3b\x42\xa6\xdf\x57\x8a\x0d\x31\xb1\x0c\xef\x25\xb7\x4e\xa8\x0d\x43\x9f\xaf\x4c\x06\x02\x95\x06\x18\x4f\xe0\xcb\xdd\xb1\x39\xed\xc0\x04\x30\x90\x8e\xb5\x48\xa3\x92\x6b\x10\xaa\x13\x00\x93\x70\xfa\x64\x22\x5d\x11\x60\x8b\x81\x61\xb0\xb0\xac\x7c\x7e\x92\x84\xd3\x26\xb3\x46\x41\x17\xdb\x31\x5b\x28\xeb\x59\x8d\x87\xd9\xc2\xb7\x63\x21\x44\x4a\x14\x6a\x2c\xb1\x5c\x64\xae\x8a\x79\x70\xee\x48\xc9\x6c\x74\x38\x85\x15\x4a\x49\x6e\x70\x0a\x23\x23\x18\xc6\x55\x9b\x5c\xb7\xa8\x3a\x86\xa2\x89\xd5\x12\xb2\xdb\xc2\xb9\xdb\x3f\x43\xe6\x43\x98\xdd\x8d\x94\xea\x41\xbc\x32\x5a\xd5\x7e\xc9\x72\xce\x72\xa2\xc6\xa3\xd3\xd1\xc4\x7f\x6e\xd8\x9b\xf4\x0c\x5e\x2f\x84\x73\xd0\x61\xf3\x45\x79\xc3\x05\x55\xcb\x55\xf6\xfe\xf5\x8b\x9f\x3e\xfd\xf4\xcb\x93\x4c\x3f\x1d\x07\xb8\x6b\xb5\x78\x3a\x49\x89\x24\x4d\xb5\x5e\x39\x81\xf3\x04\x53\xe6\x49\x28\xab\x97\x4d\xf4\x86\x0d\x91\x46\x6a\x46\x37\x14\x8b\x51\x32\x66\x2b\x51\x63\xca\x4f\x9c\x86\xf5\xfe\x56\xc5\x9f\x5a\x1d\x1f\x1c\x60\x53\x49\x7a\xe2\x3f\x74\x8c\xa2\xa7\x41\x8d\xa8\x07\xd1\xa8\x00\xce\x4d\x1c\xf8\xf0\xf8\x63\xd6\xae\x1a\xf7\x8d\x82\xc2\x79\x27\xdf\x6e\x96\xb4\x44\xa0\xf0\xcc\x20\xc8\x4a\x64\x37\x6a\xd9\x21\xc6\xab\x55\xfa\x6d\xe8\x8e\x6d\xf4\x5f\x87\xae\x61\x1b\x92\xfd\xb5\x9a\x44\xda\x2b\x0b\xee\xfe\xdf\x4a\x5b\x2b\x6d\x78\xda\x61\xaa\xed\x21\xfe\x3b\x94\x06\x89\x90\x75\xbe\x2f\x64\x39\x38\x6a\x19\xb4\x40\xa3\xbe\x52\xd6\xda\xd6\x35\xde\xd8\xc3\xba\x95\x42\xca\x97\x92\x2a\x88\x77\x68\xc2\x9e\xf3\xa8\xb0\xa8\x4b\x00\x3a\xd6\x3c\x67\xbd\x23\x1e\xf8\xfa\x31\xea\x42\xe8\xdc\xdc\x52\x1a\xd7\x8d\x96\x9b\xf5\xe4\x60\xcd\xdd\xb3\xfc\xd8\xa9\x29\x4f\xf5\x1e\x5d\x79\xb0\x51\x42\x44\xc3\x5a\xda\x95\x72\xee\xa5\xbd\x8e\x52\x82\x53\x75\xa4\x92\xa0\xa1\x43\x8b\xa4\xbc\x7d\xf1\x73\x6c\xc5\x73\xc8\x51\xab\xa3\x86\xb3\x33\x78\x8f\xca\x9c\xfc\x4c\xd4\xd1\xc7\x44\xbb\xc4\x36\x69\xf5\x03\x22\x6e\xea\x15\x32\x25\xb3\x3e\xd3\x2e\x54\xa5\x4f\x23\x7d\x70\x87\xfa\xdc\xed\x71\xd2\xa5\xc5\xf5\x9c\x02\x3d\x5b\x7f\x4c\xec\xdc\x15\xb7\x6b\x83\xf4\xb8\xd3\x3e\xa5\xed\x85\x96\x50\x33\x45\x4b\x17\x72\x52\x18\xad\xfb\x31\x5a\x06\x4a\x81\x6f\x5e\x40\x26\x9b\xd4\xfa\xd4\xdb\x36\xaa\x3b\xdf\xfc\x87\x4e\x3b\xbb\xf9\xfd\xcd\x86\xa1\x08\xba\x0f\xa1\x1d\xcd\x96\x54\xea\x2d\x1f\x4a\xa8\x19\xfd\xab\x46\xb8\xba\xd8\x79\xde\x68\x6b\xd4\xc6\xb7\x4f\x86\x30\x5a\xb5\x1b\xcb\x39\x85\x5a\x62\x01\x8a\xbb\x22\xd3\x58\xce\xd5\x85\x69\x7c\xe9\x8f\xa6\xf3\x43\xdb\xe6\xc3\x61\x34\xc4\xd5\xf4\x10\x19\xd6\x98\xb2\x83\xab\xed\x6f\x74\xde\xed\xe9\xf0\xcf\xaa\x20\x0a\xe1\xbf\xfb\xda\x35\x1a\x8a\x32\x5e\xbf\xeb\xdc\xf1\x4c\xaf\x64\xd1\x6b\x5c\x5b\x4f\x2a\x3a\x9d\xeb\xe0\xcb\x60\x50\x49\x9e\x44\xef\xc7\xeb\x2e\x56\x4d\x8a\x18\xe2\x8b\x77\xba\xe9\x8e\xab\x41\xda\x5f\x99\x76\xac\x6f\x07\x6f\x96\x86\x13\x7d\x8a\xa6\x12\x0a\x94\x4a\xf0\x2d\x16\x30\x16\x58\x95\x24\x47\x09\xff\xac\x05\xc3\xc2\x75\x71\xe7\xb8\xe0\x02\xe1\x25\x29\x90\xe5\x08\x3f\x66\x8f\xa1\x36\x0c\x4c\xf6\x9a\xa1\xef\xe6\x5b\x21\x5d\xf8\x9d\x82\xd4\xe7\x0b\x03\x4d\x7c\x4c\xf2\x67\xcc\x6b\x4d\xed\x7c\x6b\xfa\x6a\xba\x2c\xd4\xf6\x6f\x48\x13\x61\xeb\x6e\xae\xab\xa7\x15\xaa\x25\x2f\xfc\xc8\x24\xe7\x6c\xc1\xc5\x4a\xfa\xc6\x9c\x5e\xa4\x0f\xff\x6d\xb3\x7b\x27\xed\x71\xb2\xd6\xf8\x5f\x92\xb2\x9c\x93\xfc\x76\x50\x23\xfb\x7b\x62\x8f\x3a\xc5\xaf\x93\xfb\xee\x2e\x82\x97\xcd\xfe\x56\x42\x47\xe3\x51\x7b\xf2\xbb\x65\x40\x47\x9e\x57\x62\x5d\xd3\xe2\x9b\xa7\xb9\x01\x06\x5f\xda\x4e\x22\x61\x80\xab\x4a\x6d\x83\x79\x1e\x2c\xb8\x80\xb7\x94\x31\x92\x97\xd8\x76\xcd\x5d\x99\x4d\x55\xdc\xad\xdd\x6b\xc3\xda\x04\x6c\xdb\xf2\x95\xde\xa8\xdd\x67\x6c\x5a\xaf\x3d\x1f\x6e\x01\xba\x9d\xd8\xb6\x85\xe8\x15\x9e\xc6\xcb\x16\x6a\xb6\xad\x70\x0a\xfa\xdf\x67\xbf\x5d\x5f\xce\x7e\x1d\x4f\x06\x35\xfd\xae\x6d\x4c\xaf\xdc\x50\x18\xd6\x14\x37\xa0\xb6\x95\x4e\xaf\x6b\x42\x4b\xe2\x86\x0b\xa0\x5c\xe0\x4f\x9b\x81\x59\xd6\xe5\xfd\x06\x95\x19\x32\x6b\x76\x3f\x68\x8a\x3e\xa6\xd9\xfa\xf0\x71\x98\x42\xc9\xcb\x35\x36\x9b\x3f\x94\x31\xa5\xf2\x08\x6a\x84\xc5\xa5\x29\x1a\x7f\x32\x20\x56\x4c\x93\x29\xbc\x60\xdb\xf7\x4a\xd4\xb9\x7a\x9e\x26\xf0\xab\x6a\x93\xc0\xac\xf8\x22\x9c\xa5\xc3\xbe\x52\xa5\x5d\x99\xa8\x58\xda\x87\x89\x92\xa4\x3b\xcf\xee\x54\x25\xc1\x48\x99\x2f\x8c\xa3\xbb\x70\x67\x42\xa4\x46\x1f\x0b\xd4\x07\x7a\x12\xcc\x2b\xb6\x15\xc2\x86\xaa\x25\x10\x1f\x87\xaf\x2e\x60\x41\xb1\x2c\xf6\xd7\x16\x6b\x22\x80\x6f\x18\x16\x5a\x10\xe1\x0c\xb9\xef\x0b\xd7\x97\xb3\xbb\xae\xdf\xb6\x02\x3d\xbe\x27\xd9\x8f\x16\x0d\x21\xda\xad\xbe\xdc\x0d\x9b\xa0\x8e\xa9\x3a\x5a\x34\xf7\x2c\xec\x00\xa8\x21\x46\x87\x08\x0d\x23\x7b\x11\xe2\xb8\xdc\xee\xc7\xa5\x7b\x2a\x99\x8d\x9f\xaa\xfa\x0f\x57\x17\xcd\x6c\x39\x19\x56\x06\x26\x3b\x46\xdf\x9a\xf7\x58\x1a\x51\x12\x69\xb7\x08\xf3\xc8\x8a\x4a\xa9\x2d\xe6\xfa\x72\x36\x9a\xf4\x4a\xff\x66\xc0\xec\x72\xb8\xaf\x1d\x8c\xe8\x0e\x18\x26\x67\xfd\xb3\x5b\x34\x48\x36\x74\x9b\x42\xcc\x8e\x92\x1b\xf2\xc5\xf3\x8c\xf8\x64\x33\x3c\x32\x1f\x88\xab\x06\xeb\x90\x0d\xb8\x69\xb4\x37\x02\xca\x8c\x96\xa9\x0c\x4c\x72\xbf\xf1\x6b\xdd\x15\x6e\xac\x6d\x76\x1b\x54\x56\x6a\x66\xd0\x68\xcb\x7e\x20\xf2\x01\xe8\xf0\xde\x83\x8b\xea\x23\x2f\xaa\xae\x8a\x5e\x14\x76\x14\xcc\x74\xac\x37\xf8\x9c\xd9\xb6\x53\x4c\xd8\x2c\x69\xbe\xb4\x52\x73\x23\x75\x5e\x16\xc0\x59\x47\x3f\x7a\x4f\x5e\x16\xb3\xb4\x31\xb9\x69\x83\x93\x6e\x97\x8c\xe6\xea\xc1\xb7\xb3\x94\xf0\xde\x80\x36\x11\xc5\xef\x67\x20\xbe\xd4\xf2\x2c\xee\x49\xa5\x84\x01\x11\x82\x6c\xfd\xf1\x4b\x9f\xc4\x4c\x5a\x20\x22\x18\x1d\xef\xb6\x99\xa1\x54\x7a\x75\x61\x13\xa9\xd5\xee\x40\x2a\xed\xf8\xf2\x2d\x6e\xe5\x01\xd9\x9f\xac\x78\xcd\x94\xcb\x09\xd2\xce\xbe\x8b\xfb\xd2\xfb\xbb\x69\x1d\x6b\x92\xaf\x98\x3a\x98\x5a\xd7\x71\xde\x27\x67\x28\xa9\xf4\x04\xbb\x72\xc5\xc8\xd9\x78\xa5\xc0\x1c\xe9\x1a\x85\xa1\xaa\x52\xc7\x14\x09\x37\xa8\x74\xd1\xcd\x85\x32\x34\xe9\xfa\xc0\x48\xfd\x8b\x2d\xab\xf4\x89\x31\x15\x4b\xa5\x5f\x63\x16\x74\xc0\xcf\xc3\xec\xa2\xff\x62\xe8\x0f\x61\xad\xf6\x51\x7b\x6d\x38\x74\x08\xa5\x15\x2d\xdb\x23\xa1\xcd\x12\xd5\x12\x05\x70\x61\x7a\x76\x5a\x91\x37\x74\xad\x3d\x5d\x27\x70\x9d\xd3\x8d\x6c\xec\x29\xe9\xab\xd5\x4c\x65\x57\x5a\x63\xd5\xd4\x9f\xe9\xf1\x16\x5d\x58\x12\xce\xcf\xa3\x22\x35\x31\x62\x48\xcd\x60\xa0\xd7\xfb\x77\x50\x0b\x52\xca\xe4\xa8\x26\xb2\x1a\x81\x0b\x14\xe6\x2c\xaa\x78\x1b\xcd\x0d\xff\xfb\x42\x79\x92\xff\x39\x17\x82\x6f\xae\x2f\x67\xe3\x4f\x41\xe4\x9d\x4c\xe1\x87\x74\x64\x1f\xa8\x2f\x7f\xe8\x47\xcd\x6f\xc3\x0a\x10\x5d\xbc\x85\xfd\xad\xa3\x99\x73\x6b\xc7\x1d\xf6\xa2\x7b\x23\x03\x6c\x19\xae\x5a\x11\xe9\xc3\xa8\xce\x5b\xdd\xc5\x5f\x71\x4e\x73\xe1\x55\x92\x95\xab\x48\xdb\x63\xda\x91\x55\xd8\xf7\x3a\xa8\xdd\xf3\x9c\x06\xf1\x19\xe3\x95\xce\x6d\x24\xbe\x4d\xe9\x92\xa6\xe2\x20\xe9\x0d\xeb\xf5\xd2\xb4\x3d\xc8\x25\xaf\xcb\x02\xe6\xd8\x0c\x87\xf7\x5c\xf0\x6c\x3b\x65\x07\x5d\xd9\x84\xd0\x6d\xed\xcd\x86\xb6\x83\xd1\x9a\xcf\xbb\xe8\xf6\xa9\x6f\xc1\x37\x05\x25\x8c\x47\xd7\xe9\xce\x84\x9b\x56\x54\xae\xeb\x9c\x09\xb2\xf9\x17\x29\x6b\xec\x4d\x97\x9a\x27\x43\xa3\x8b\x55\x2d\x95\x96\x83\x93\xd0\xc2\xdc\x6b\x30\x1d\x48\x61\x19\x0a\x76\x0d\x26\x38\xa1\x14\xf6\xb7\xfe\x7a\x0a\x63\xe1\xe5\xd5\x84\xbe\xfa\x77\x53\x5a\x8d\x71\x33\xaf\x38\x40\x5f\xdd\x8e\x9e\x73\xd2\xff\x73\xcd\x78\xe6\x0e\xd6\x4d\x23\x0d\xad\x1d\xcd\xd5\x90\x6e\xba\x37\x82\x7d\xfb\x32\x3a\x94\x27\xda\xcb\x3b\x07\x05\x5a\x94\x95\x39\x34\xbf\xfb\x76\xc3\xd1\xef\x20\xf9\xa3\xae\x4e\x45\x12\x49\x26\x8e\xce\xc4\xab\x5b\xfa\x85\xb7\xca\x77\xcb\x6e\x27\x6b\x6d\xe2\xd0\x00\x61\xba\x70\x01\x73\x6c\x53\x60\x7b\x45\x89\x48\x07\x3b\x79\xd0\xe5\x64\x5f\xff\x2e\xba\xf1\x3a\xd0\xbb\xdb\xcd\xcb\x01\x41\xfb\x98\xc4\x40\x17\xe0\xd6\xc2\x83\x9d\x55\x8f\x3b\x5f\xfb\x9a\xd6\x0f\x5c\x9b\xc2\x6f\xd4\x4d\x11\x51\xca\xf1\x57\x24\xc3\xf4\x35\x60\x05\xbd\x96\x9f\x04\xba\xaa\x4a\x5c\x21\x6b\x4a\x42\x2a\x1b\xfd\xc7\xd2\xd2\x78\x7e\x73\xbb\xbe\x08\x0e\x3c\xa6\x2c\xb5\x0d\x30\xdf\x72\x0f\x91\xda\x7e\x9d\x1d\x20\xad\x4d\xac\xd8\xd0\xb2\xd4\x8e\x6f\x46\x58\xf3\x6d\x83\xdc\xff\x15\xb8\xc6\x92\x57\x28\xec\x0b\x0b\x8c\x6f\xdc\xa9\xb4\x22\x82\xac\x50\xa1\xd0\xbf\x57\x44\x36\xdd\xfa\xb0\xc7\x37\x71\x9d\xfd\x61\x55\x9b\xaa\xc7\x55\xfd\xfe\xfa\xbd\x6d\x58\x7a\x7f\x68\xf5\xfd\x3c\xd5\xc3\xf4\xfd\xcb\x48\x89\x46\xbf\xd1\x4b\x36\x59\xd4\x99\xbb\x20\x8a\xfc\x3a\x9e\x9c\x1e\xb7\x88\xca\xaa\x24\xdb\x5f\x83\xb6\xf7\xc7\x54\x23\xb2\x5c\x23\x90\x4e\x37\xb7\xe9\xde\xee\x50\xa7\x91\xa8\x6f\x8a\x2e\xd1\xd0\xe3\xab\xac\x02\x25\x15\x4e\x81\x59\xdf\x02\x40\x9a\xd6\x69\x2d\xb0\x7d\xcd\xc4\xeb\xdf\x05\xf0\xee\xe2\xa4\xd3\x39\xdd\x85\x8a\x48\xe9\xe1\xd4\xa0\x8a\x1c\x31\xd9\xbe\x95\x1b\xaa\xf2\x65\x03\xdc\xf1\x34\x73\x01\xff\x40\x4d\x4d\x7b\x27\x13\x1d\xd6\xf3\x08\x0c\xce\x61\x0f\xa2\x71\x0f\x8b\xa1\x32\x7c\x0d\xe8\xcc\x7d\x3b\xcb\xed\xc0\xec\xd5\x67\xa2\xfd\x27\x42\x75\x9a\x44\x53\x05\x2f\x20\x9d\xd9\x2f\x5f\x8b\x24\x6c\x3e\x1b\x01\xfd\xd0\xfe\xd2\x33\xdb\x78\xe9\xef\x94\xdd\xda\xd3\xe9\x11\x4b\x93\xb1\xf6\xb2\x66\x8e\x84\xf1\xa2\x3e\xbe\x0a\x0f\xff\xbe\x4d\x45\x1e\xfe\xdd\xf5\x7f\xee\xff\xe2\xb6\x8d\xad\xe4\x2b\x4c\xb0\xf1\xfb\xb4\x15\xae\xb0\xa0\x7d\xe3\xfb\x43\xff\x9a\x36\xb8\x05\x2d\x71\xda\x01\x7f\x3d\x9b\xbd\xbd\xa4\x25\xa6\x57\xe8\xbf\x5a\x94\x53\x18\x2d\x95\xaa\xe4\xf4\xec\x4c\x17\x7f\x4a\x66\x1b\x9c\x4b\xaa\xf0\x91\x46\x29\xb3\x9c\xaf\xce\x7e\x59\x3c\xf9\xe9\x1f\x3f\xe7\x8f\xf3\xff\x20\x4f\xf3\xa2\x78\xf2\xf3\xdf\xe7\x3f\xe6\x4f\x7f\x7a\xdc\x79\x40\x7e\xf9\x25\x9f\xff\x98\xff\xe3\xef\x4f\x3e\x5d\x96\x7c\xf3\xe9\xdf\x5c\x14\x2b\x22\x6e\x33\xb9\xbe\x19\x25\x69\x18\xb0\x1d\xc3\xbd\x55\xdb\x88\xae\xb4\xe7\xc8\xf5\xcd\xdf\x3e\xaf\xca\x3e\x96\x41\x0d\xed\x17\x7e\x5a\x2c\x8c\xac\xf4\xb6\x3a\x58\x3a\x17\x0b\x12\xef\x28\x4d\x6f\x81\x32\x17\xb4\xb2\x96\x3d\x9a\xd9\x98\xdc\x14\x2f\x54\xda\x4c\xa8\xcf\xec\x0c\xd0\x21\x55\x1c\x96\x58\x56\xb0\xe5\xb5\x4f\x88\xfa\xb3\x00\x86\x9f\x15\x68\xf9\x99\xba\x76\x60\x47\xfc\xac\x50\x30\x52\xfe\xf9\xee\xf7\xae\xd6\x5f\xb5\x8f\xc6\x8d\x6a\xdd\xae\x8f\xd8\x42\x65\x9c\x2d\x4a\xbe\xc9\xb8\xb8\x19\x0d\xc8\x5f\xfe\x55\x13\x81\x57\x2b\x53\xd3\x1b\x65\xa4\xe1\xe6\x84\x31\x14\xfb\xe1\x24\xcf\x29\x29\xe5\x74\x87\x3b\x8f\xd4\x86\x2a\x85\x62\x74\x10\x3b\x0e\xd8\x18\xa7\x66\xe6\xd3\xbc\xe4\xf9\x6d\xbe\x24\x94\x8d\x06\x9c\x7b\x87\xe5\xf4\x6a\x2e\x3f\x17\x0c\x92\xb0\x7f\xe7\x35\xe8\x56\x77\x26\x54\x3e\xff\x99\xc9\x54\x83\x71\xff\x0b\xac\xa7\x09\xd8\xf4\x8b\xa7\x29\xc8\xdd\xaf\xaa\xb6\x2b\xf6\xbd\x9f\xda\x42\xa6\x5e\xcb\x0d\x0b\x5a\x53\xd0\xc7\x97\x1b\x1e\xc7\x0f\xed\x9b\x53\xf1\xf4\xcd\x3c\x48\x0a\x03\xce\xd3\x42\x1a\x5a\xda\x72\x17\xad\xec\xbc\x9f\x9b\x58\xd8\x17\x55\x84\xa0\xff\x38\x46\x94\x90\x20\x9c\xa7\xe4\x1a\x2f\x73\xe2\x84\x73\x2f\xd8\xb0\x19\xd6\x9c\x79\xc2\x78\xa1\xb8\xef\x74\x77\xce\x3c\x26\x1b\xcb\xa5\xcb\xca\x6d\x3b\x3c\x27\x15\x99\xd3\x92\x2a\x8a\x41\x4f\xdc\xec\x4e\xf2\x9c\xd7\x4c\x65\xae\x02\xc9\x24\x59\xe3\x38\x7d\xa4\x08\x86\x2a\x49\x7d\x4c\xd2\x98\xa3\xcd\x1d\x85\x71\x64\x1d\x06\xf7\x54\x99\x7b\x1d\xcf\x12\xbd\xd5\xae\x7a\xef\x7e\x1d\xef\x20\x30\x0e\x3e\x44\xf5\xb8\x49\xa8\xf6\x7f\x81\xab\xbd\xd3\xfc\x7b\x72\xb5\xc3\x70\x27\x69\x63\x6b\xda\x52\xdc\xdf\x72\x54\x1c\xe4\x92\x08\x34\x2f\x1d\xb6\x06\xb5\xb5\x57\x02\x2a\xc1\x3f\x6f\x8f\xb3\xac\xce\xdb\x46\x91\x79\x25\x7c\xe6\x10\x35\x0c\xcb\xd5\x23\xf4\x82\x1c\xdc\xe0\xee\xe4\xee\xe4\x7f\x02\x00\x00\xff\xff\xd4\x8e\x23\x3d\xa1\x41\x00\x00" func packnftCdcBytes() ([]byte, error) { return bindataRead( @@ -141,7 +141,7 @@ func packnftCdc() (*asset, error) { return a, nil } -var _packnft_alldayCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x3c\xed\x72\xdb\x38\x92\xff\xf3\x14\x1d\xfd\x98\xa2\x6a\x1d\x2a\xc9\x4e\x72\xb3\xaa\x38\x19\x27\x8e\x2b\xae\xcb\x78\x72\xb6\xb3\x53\x57\xa9\x54\x16\x22\x21\x09\x63\x88\xe0\x00\xa0\x14\xad\xcf\x55\xf7\x1a\xf7\x7a\xf7\x24\x57\xf8\x22\x01\x12\xa4\x64\x3b\xb9\xbd\xab\xe5\x0f\x5b\xa4\x1a\x8d\x46\x7f\xa1\xd1\xdd\x14\x59\x95\x8c\x4b\x78\xc3\xb7\xa5\x64\x0f\xec\xdd\x19\x2b\x4e\xaa\x62\x41\x66\x14\x5f\xb2\x2b\x5c\xc0\x9c\xb3\x15\x8c\xda\x8f\x47\x0e\x3e\x06\x1c\x87\x3c\xfd\x80\xb2\xab\xb3\x93\x4b\x0b\xe4\x6e\xeb\xef\x7f\xc1\x12\xe5\x48\xa2\xbf\x12\xbc\x11\x16\x28\x78\x36\x7a\xf0\x00\x65\x19\x16\x22\x41\x94\x8e\x21\x63\x85\xe4\x28\x93\x60\x11\x4d\x3b\xb4\x1f\x34\x73\x5e\x3f\x78\x00\x00\xe0\x8f\x5f\x23\x0e\x92\x49\x44\x2f\xaa\xb2\xa4\xdb\x29\x7c\x3c\x2d\xe4\xf3\x1f\x3b\x70\x14\x4b\x58\x63\x2e\x08\x2b\xa6\x70\x21\x39\x29\x16\x51\x98\x37\x8c\x52\x9c\x49\xc2\x8a\x0b\xc9\x38\x5a\xe0\x0f\x48\x2e\xd5\x88\xfa\x66\xc7\xb0\x0f\xd5\x8c\x92\xcc\x8c\x6a\x3e\xef\x18\xe4\x56\x78\x8b\xc1\xbf\x96\x98\x23\xc9\x78\x2f\x99\x7a\xd4\x64\x02\x1c\x97\x1c\x0b\x5c\x48\xa4\x66\x02\x36\x07\xb9\xc4\xa0\xd8\x49\x0a\x90\x4b\x22\x1a\x19\x48\x06\x57\x18\x97\xa0\xee\xae\x14\xa4\x90\x48\x62\xe1\xcf\xef\x60\x0d\x11\x25\xca\xae\xc4\x14\x7e\xbe\x36\x5c\x9f\x6a\x29\xde\x74\xa5\x84\xd7\xb8\x90\x70\x8e\xd7\x18\xd1\x73\xfc\x47\x85\x85\x4c\x48\xee\x84\x75\x00\xac\xc4\x85\x7d\x3e\x85\xd7\x8c\xd1\x71\x0f\x8a\x5f\x1b\x40\x0f\x41\x1f\xb4\x99\x10\xe7\xc1\x5c\x02\x51\xe9\x54\xe0\x00\x8a\xb9\x14\xee\x6e\x68\xd2\x00\x49\x1f\xe0\x2f\xa4\x08\xd7\x95\xb1\xd5\x8a\xc8\x77\x48\x2c\x9b\x19\x73\x22\xe4\xe9\x4e\x54\x6f\x2c\x9f\x4f\x0b\x22\x09\xa2\xe4\xef\x38\x4f\xfa\x60\x7f\x23\x72\x99\x73\xb4\x09\xa6\x56\xa6\x37\x85\xa3\x3c\xe7\x58\x88\x57\x7d\x43\x8f\x71\xc9\x04\x09\x89\x96\x6c\xf7\xb8\xd7\x15\x6f\xb3\xa4\x0b\x59\x54\x2b\xb8\x90\x48\x56\xc2\x40\xfd\x04\xd7\x1a\xa8\x0d\x98\x21\x81\xe1\x42\x4b\xaa\xff\x7b\x27\xcb\x7e\x08\x23\x26\xfd\x7d\x44\x05\x39\x16\xac\xe2\x19\x76\x8e\xc6\xd9\xcf\xb4\x76\x2f\xe9\xa9\x7b\xe6\x1c\x8d\x87\xa3\x06\x32\x30\x68\x46\xf1\x18\xe6\x55\x01\x2b\x25\xf3\x50\xa6\x71\xb9\x13\x21\x2a\xcc\x6b\xd6\x8e\x95\xd9\xd4\x58\xcf\x4e\x2e\x6f\x1a\xe6\xa8\x4b\x99\x57\x31\x97\xf0\xe2\x11\x64\x1c\x23\xa9\x4d\x36\xf1\x11\x37\x9f\x1b\xe4\xe6\xff\x38\xc0\xe4\xe6\xf0\xdc\x24\x1c\x46\x9f\xfe\x09\x9e\x74\x68\x28\x01\x5e\x3c\xb2\x14\xa8\x31\xf7\x22\x41\xfb\x8b\x4f\xc5\x5c\xa6\x24\xff\x0c\x2f\x1e\x3d\x84\x32\x80\xc3\x2b\xe2\x59\x91\x81\x0b\xb9\xe9\xcf\xe8\xb8\x6e\xfe\x87\x33\x72\x2c\x2b\x5e\x28\xee\x15\x73\x59\x7f\x73\xb3\xbf\x5c\xb9\xd6\xb7\xc0\x30\x8c\xaf\xf8\xd4\x48\xcd\x39\xf0\x19\xc5\x37\x9f\x43\xcf\x32\x86\xae\x38\x4b\x45\x4e\xc0\x8a\x94\xe3\x15\x5b\xe3\xe4\x0a\x6f\xa7\x40\xf2\x31\xbc\x7a\x05\x25\x2a\x48\x96\x8c\x0a\x06\xa2\xca\x96\xda\xc5\x8e\xc2\xb5\x95\xa9\x47\x9c\x62\x90\x21\x4c\xfd\x75\x44\xa8\xbf\x43\x22\xe8\xb2\xff\x16\xac\x51\xde\xfa\x16\x8c\xf9\xbe\xac\xa8\x89\x09\x19\x71\xe7\xc5\x93\x82\xc8\x64\x7c\x7d\xb3\x97\x1f\xe9\x71\x68\x6a\x85\x5d\x17\xd0\x0b\xda\xf2\x0c\x51\x38\x15\xe7\x08\xeb\x4b\xdd\x6a\x8c\x6f\xed\x07\xf7\xd4\xf1\x55\x47\xba\x1a\x4c\x49\x73\x8d\x39\x99\x6f\x93\x62\x2e\x0d\x68\xad\xc1\x66\x27\x6e\x09\x0f\x09\x81\xb9\x4c\x04\xa6\xf3\xd4\xd0\x03\x0f\x0f\x5b\x14\xa5\xc6\x97\x1f\xc0\x0a\x0b\x81\x16\x78\x0a\x23\xcd\xac\x82\x49\x6b\x56\x38\x87\x2d\x96\x2d\x59\x2a\x9a\x97\x48\x2c\xcd\xf4\x70\x08\x66\x12\x44\xe5\xc3\x00\x2e\x80\x69\x6e\xd2\x8c\x15\x19\x92\xc9\xe8\x60\x34\x76\x9f\xeb\x45\x8d\x3b\x1a\xa8\x06\xc2\x21\x28\x01\x1d\xd1\x05\xe3\x44\x2e\x57\xe9\xc5\xbb\xa3\xa7\x5f\x9e\x3e\x7b\x9e\xaa\x6f\x13\x0f\x77\x25\xe7\x3f\x8d\x7b\x19\xd1\xc8\x1a\x0e\x0f\x2d\xfb\x52\x5c\x64\x2c\xc7\xef\xf0\x57\x8d\x67\xec\x73\xe3\x4d\x03\xbf\x41\x42\xf3\x45\x4b\x81\xe0\x7c\x14\x75\x63\x92\x57\x78\xc0\x52\x15\x11\x46\x98\x5f\x1a\x69\xee\xed\xaa\x62\xdb\xd5\xd8\x7d\x68\x89\xbf\x2b\x23\x44\x65\x07\xa2\x66\x3b\x1c\x6a\x63\xfc\xf4\xf8\x73\xda\x8c\x4a\xba\x62\x27\x70\xd8\xda\x7a\x36\x4b\x42\x31\x10\x78\xa1\x11\xa4\x14\x17\x0b\xb9\x6c\x11\xe3\x44\x29\xdc\x34\x64\x60\x1a\x75\xb5\xe8\xea\xd7\x1b\xd1\x1d\xab\x48\x24\x9d\x1d\xf2\xe6\x9f\x5d\x33\xeb\x75\x0c\xa8\x67\x73\x66\xf8\x0e\x1b\x6b\xc4\x21\x1d\xee\xeb\x90\x2c\x3c\x31\x0b\x35\x40\xa3\xae\x40\xd6\xce\x17\x85\xd6\xd5\xde\x6f\x43\x3b\x6a\xb1\x3f\xc4\x5a\x7b\xb6\x98\x05\x05\x4b\x69\xaf\xa4\x13\x06\x83\x0b\x9b\x82\xc3\x8e\xda\x0c\x7d\xca\x0c\xc5\xeb\xf1\xde\x52\xba\xe7\x1e\xbf\x97\x54\x1c\xc5\x3b\xe4\xe2\xc0\x46\x11\x1e\x0e\x48\xa4\xde\x3c\x6e\x2d\x97\x1e\xd6\x7b\xe7\x8b\x80\xf1\xde\xf1\x90\xe4\x51\x0e\xeb\x98\x62\x9f\x33\x41\x8b\x8b\x1d\x13\xf6\x56\xd2\x05\x34\xc8\x94\x9b\xd2\x1f\xf6\x5f\xd8\x45\x57\xa3\x7c\x05\x2d\x08\xf5\x16\x05\x3b\xc2\xa2\x68\x0e\x27\x3d\x3d\x3b\xb9\x3c\xf0\x4e\x5a\xf6\x43\x2b\xc1\x53\x3f\xff\x75\x53\x60\xee\x4e\x63\x07\x5d\x74\x21\x36\x93\x1a\x6a\xa9\x73\x13\x5d\xe5\x41\x52\x28\x06\x72\x8f\x58\xad\x0d\xd8\x21\xf5\x63\x99\xab\xa3\xd3\x7f\x74\x17\xa1\x17\x19\xf8\xc4\x6e\x1a\xe4\x3a\x1a\xc6\xf2\x4e\x22\xc5\x28\x40\xde\xca\xa4\x78\x37\x43\x96\x7f\x37\x9a\xb5\x87\xe8\x21\x90\xb5\xd2\x34\x96\xbc\x28\x11\x93\xc9\x04\xde\xea\xa4\x82\xb2\x26\x89\x73\xd8\x2c\x71\x01\xc8\xa4\xa8\x04\xe4\x58\x48\xce\xb6\x38\x87\x84\xe3\x92\xa2\x0c\x0b\x9b\x7e\xb0\xb9\x88\x19\x9e\x33\x8e\xe1\x0d\xca\x71\x91\x61\x78\x92\x3e\x86\x4a\x2f\x60\xec\xcf\x11\x95\xa8\x4b\x13\x19\xdd\x3d\x76\x33\x79\x8e\xcf\xb9\x7e\x45\xbc\x87\x0e\x7e\x53\x34\x5a\xd2\xd4\x7e\x6f\xc8\x75\x56\x70\xa0\x73\x6c\x19\xe3\x1c\x8b\x92\x15\xb9\x82\x70\x49\xcc\xda\x52\x0a\xb6\x51\x7b\x3d\x48\x06\x33\x0c\x39\xb6\xab\x44\x02\x36\x98\x52\x20\x8a\x07\x02\x97\x88\x2b\x59\x64\x88\xd2\xd4\x27\xe0\x72\x49\xb4\x87\x9c\xe1\x0c\x55\x02\x43\x56\x09\xc9\x56\xd8\xd1\x94\x68\x21\xe9\xe4\xa2\xf3\xa3\x88\x52\xb6\xc1\xb9\x42\xec\xf1\x2a\x40\xda\x0c\xbe\xf6\x1f\xc3\x7e\xa7\x36\xc7\xa8\xdd\x47\x37\x8b\x73\xff\xcc\xc4\x23\x48\x9e\x28\xce\x04\xc9\x26\x0f\x93\x76\xc4\x5e\x52\xaa\xa3\x70\x16\xce\x2e\xd0\x3b\xfa\x4d\x26\xdf\xcc\x53\x93\xdc\x69\x4b\x55\x91\x88\x3f\xbd\xb7\x27\x6f\x59\xcd\x1b\x93\x95\x41\x05\xe0\x55\x29\xb7\x5e\x3e\x19\xe6\x8c\xc3\x07\x52\x14\x28\xa3\xda\x25\x0b\x40\x45\xee\x62\x36\xa2\x33\xbd\x5a\x43\x11\xa5\x1e\xfe\x3e\x33\x51\xe6\x6e\x52\x40\x6f\xd5\x44\xcd\x3c\x89\xce\x62\x75\xbc\x44\x03\x70\xd3\xe2\x53\x93\x96\x71\x52\x8e\xe3\x2d\xe6\xf2\x72\x5b\xe2\x29\xa8\xbf\x2f\x7e\xf6\x3c\xfd\xcb\x64\xdc\xe3\x46\xe0\x88\x52\x10\x55\x59\x32\xae\xbc\xc8\xca\x56\x1d\x60\x6d\x4a\x11\x8c\xeb\x25\xff\xc2\x56\xca\xe6\x49\x91\xd1\x4a\xdb\xa5\x7a\xf8\x46\x39\x10\x65\x9c\xba\x44\xe1\xe1\xac\x3f\x2a\x24\x1d\x9e\x2c\xb0\xd4\x03\x14\x1b\x3e\x29\x4a\x3f\xc7\x97\xfb\xa9\x73\x9a\xd0\xcb\x0a\xea\x22\xe9\x31\x11\x25\x45\xdb\x97\xc9\xf8\x60\x1f\xf0\xb7\x5f\x25\xe6\x05\xa2\x1f\xcf\xdf\xef\x3b\xe4\x17\x9c\x13\x24\xf6\x85\x3e\x3b\xb9\x6c\x04\x72\x8c\x24\xba\xdb\xc0\xdb\xad\xea\x9c\x6d\x11\x95\x04\xef\x4d\xe5\x05\xe6\x04\xd1\x97\xad\xc3\xde\xe7\x81\xdd\xae\x96\x9e\x72\xc4\x74\x8d\x15\x9e\xe4\x8b\x16\xb0\x51\xb7\xf1\x14\x8e\x8a\xed\x85\xe4\x55\x26\x5f\xb5\xed\x7c\x43\x64\xb6\x34\xda\xd0\x3d\x8c\xea\x34\xf4\xa0\x68\xa7\x9d\x31\xd0\xa8\x49\x74\x50\x12\x1d\xa1\xae\x02\xad\x54\xc4\x7c\x76\xf2\x5e\x6b\xfe\x31\xda\x6a\xa3\x1a\x75\xf9\xe6\xae\x1c\x8b\x8c\x93\x52\xea\x22\xd8\xc8\xc4\xd5\x02\xd8\x7c\x4e\x32\x82\x28\xf8\x98\x8c\x99\x08\xb3\x17\x33\x1d\xe1\x0e\x20\x96\xcb\x6a\x35\x2b\x10\xa1\xd3\xd6\x22\xde\x5d\x5e\x7e\x38\x21\x14\x27\x15\xa7\xd6\x2b\x2f\xb0\x3c\x5d\xa1\x05\x4e\x88\xfa\x6b\xac\x7c\xa4\x3f\x8f\x0e\x94\x95\xae\x90\x9c\xc2\xe8\xf7\x12\x2f\x46\x07\xb0\x21\xb9\x5c\x4e\xe1\xe9\xb3\xe7\xe3\xee\x91\x5c\x5d\xdd\xa7\x7d\x42\x08\x0d\xe6\x16\x82\xf0\x06\x26\xa3\xa5\x94\xa5\x98\x4e\x26\xc5\x9c\x22\x4a\x73\xb4\x55\x5e\x7d\xa2\xb6\x37\x75\xf8\x98\x8c\xea\x0c\x82\xd9\x10\x52\xc9\x5c\x36\x62\x3c\x56\x3e\x6a\x45\x16\x4b\x75\xc4\x5f\x63\xe5\x83\x57\xe8\x0a\x03\x82\x8f\xe7\xef\x41\x2e\x91\x04\x8e\x73\xc2\x71\x26\x75\x50\xa0\x37\x58\x28\xd1\x02\xc3\x0c\x09\x9c\x03\x2b\xf4\x33\x1d\x17\xe5\xf0\xe8\xa5\x4e\x7c\x73\x32\xab\xcc\x2e\x9f\xef\xcd\x8a\xda\x11\xdc\x82\x0b\x66\x4c\xbf\x36\x76\x7d\x9c\x7f\x45\x70\xf5\xa3\x72\xd7\x9c\x50\xfc\x9d\x14\xea\xd9\x93\xa7\xe3\x88\x83\x69\x5f\x2b\x45\xa8\x8f\x71\xa2\xd1\x0c\x8e\x8b\xeb\x29\x04\x5e\x69\x18\xbe\x4f\x6c\x31\x8f\x7c\x0b\x09\x76\x86\xf7\x4b\x40\xf8\x45\xe5\xf6\x81\x3f\x28\x8d\xf7\xf3\xb0\xf4\x6b\xd9\x1d\x14\x4d\x75\x7b\x17\x86\x66\x8c\x8d\x06\x7e\xe8\x62\x8b\xee\x16\x21\x9a\xf7\xa4\xb8\xc2\xb9\x17\x54\xdc\x16\x4d\x34\x50\x39\xb1\x31\xf6\x14\x12\xb5\xa5\xdc\x3a\x1e\x6a\x5f\x75\x7c\xf4\x4d\xc2\xa3\xf6\x75\x73\x5f\x1f\xda\xb3\xb5\xc7\x95\x50\x9d\x18\x66\xa8\x28\x30\xd7\xe6\x09\x87\xb7\xf3\x02\x83\xd6\x3f\xc8\x44\xed\x1a\x6a\x4f\x8d\x84\xc0\x52\xa4\xa1\xc3\x9e\x53\xb6\x99\x64\x48\x22\xca\x16\x15\x9e\x9c\x9d\xbc\x3f\x3a\xfe\xf2\xfa\xe8\xec\xec\xed\x79\x5a\x16\x03\x16\x3e\xa0\x20\x5d\x67\xd1\x8b\x29\x2e\x07\x9d\xcb\xfe\xa3\x42\x1c\xff\x3f\x61\xd8\xc5\xbf\x7d\x3c\x3a\x7f\xfb\x8f\x63\xd8\x1e\x6e\xee\x8e\x41\x94\xd8\x3b\x8a\xfa\xd5\x46\x4f\x74\x0b\xef\x49\x86\x0b\xb5\x51\x1f\x93\x05\x91\x88\x82\x97\x22\x15\x70\x82\x91\xac\xb8\x3b\x71\x9c\x9d\xbc\xff\xef\xff\xfc\x2f\x01\xaf\xb1\x90\xf0\x8e\x2c\x96\x54\x05\x06\x22\x85\xd7\xd5\xf6\x00\x2e\x30\xa5\xfa\xc4\x66\x31\xc0\xbf\xb3\x8a\xc3\x09\x5a\x33\x4e\x74\x27\xc0\x7b\x17\xa0\x0d\xd0\x89\x9b\xb8\xa5\xad\x16\x7b\x84\x34\xa3\x01\xc1\x79\x4a\x3a\xf5\x6f\xfa\x47\x78\x7e\x60\xea\xdf\x0c\xcc\xc1\x14\x57\xc5\x74\x87\xc3\x1c\x91\x42\x48\xb4\xe0\x68\x35\xda\x6b\x91\x9b\xcd\x26\xad\x87\xe8\x85\xd6\xcb\x1e\x5c\xb2\x9e\x4b\x6e\x88\x94\x98\xef\x37\x93\x05\xd6\x73\x28\x73\xa1\xf4\x18\x6d\x77\x4e\x91\x13\x91\x31\x9e\xef\x37\x85\x05\xd6\x53\x90\x62\x4d\x24\x9e\x3c\xfb\xd7\xe7\x7f\x6c\x2f\xff\xfe\xfb\xd3\x76\xa5\xdc\xbf\x6e\xee\xb9\x0d\xf8\xa7\xb4\x7e\xdf\xcf\x35\xd4\xf6\x1c\x67\x98\xac\x31\x9f\xc2\x1b\x54\xa2\x19\xa1\x44\x6e\x5f\xfc\x70\x1d\xee\x90\x0e\xe8\xe6\x25\x1c\xf6\x92\xbd\xc0\xf2\x28\xcb\x58\x55\xc8\xe4\xfa\xda\x12\xb1\xb5\x09\x99\x9b\x9b\x71\x9a\x39\xfc\x04\x0b\x15\x15\x0e\xcc\x92\x84\x0b\x5a\x60\x79\x1e\x52\xdb\xc4\x27\xc9\x78\xfc\x70\x7f\xef\x53\xb3\xe6\xdb\x44\xca\x96\xaa\xdd\xb1\x32\xaf\xb9\xdc\x62\xfb\xee\x20\x37\xab\xe4\x14\x1e\xa7\x8f\x9f\xed\x06\x0d\x5d\x9f\xef\x34\x57\x88\x5f\x61\xa9\xd3\xb3\x8e\x82\x7f\x54\x98\x5c\xa7\x04\x6e\x11\x1b\x9b\x31\x49\x27\x6d\x08\x1d\x6b\x71\x75\xcf\xa0\x28\xd2\x9b\x63\xd0\x7b\xa9\xd1\xa2\x9e\x8a\xba\xc5\x57\xdb\xb4\xde\x14\xd3\x3b\x1c\x2f\xeb\x2a\xb3\x41\x31\x19\x0d\xa5\xfc\xfd\x14\x56\xe7\xf0\xe4\x72\x9e\xee\xec\xe4\xee\xed\xd9\xe9\xb4\x90\x3b\x16\xa3\xa9\xf3\x96\xee\x48\xab\xe7\x68\x88\x7d\x65\x26\x39\x6c\x2a\xe3\xe6\x41\x03\xf1\x83\x9e\xd6\x03\xd0\xf7\xfe\xca\x6f\x51\x9d\xf2\x0e\x13\xf5\xa8\x4e\xb8\xfe\x81\xb3\x35\xc9\x7d\xd3\xe9\x80\x74\xad\x6b\x20\xe8\x37\xbe\xa4\x01\xed\x94\xbb\xfa\x41\x27\x93\xb6\x43\x30\x49\x2b\xde\x0c\xd9\x87\x82\x30\x9d\x9f\x13\xfd\x10\xf1\x2d\xb0\xb9\x4e\x7b\x66\xac\x50\x6c\xd7\xc1\x89\x1a\xea\xa7\x40\x5d\x1d\x06\x35\x5c\x94\xdb\x12\xc3\x86\xc8\x25\xa0\x02\xfe\x66\x72\xf2\x7f\x83\xd3\x63\x98\x13\x4c\xe3\x1d\x9a\x6b\xc4\x81\x6d\x0a\x9c\x9f\x9d\x5c\x06\x1d\xc3\xdd\xd3\xd2\xd9\xc9\xe5\x4d\x2b\x25\x0f\x49\x34\xe1\x5e\x23\x84\x17\x8f\xe0\xfa\xa6\x27\x2d\xbc\xb1\xed\xb1\x60\x6a\x15\x42\x11\x5d\x77\xb0\x9b\x3a\x4d\xcd\x27\x15\x73\x19\xa0\xde\x24\x79\x5f\xd1\xcc\x75\xe1\xee\x28\x9b\x39\x6a\x12\xf7\xe1\xf4\xb8\xee\xa1\x8d\x1e\x1e\x15\x3b\x22\x1d\x74\x5a\x4e\x6a\xdd\x21\x27\x82\x82\x4c\x33\x85\x5f\x93\x59\x11\x21\x94\xa4\xcf\x4e\x2e\x5b\x31\x82\xae\xa2\x04\xdd\xc4\x7a\x16\x5d\x58\x34\xfd\xc4\xf5\x64\xfc\x55\x8a\x6c\x29\xa4\x27\xc1\xaf\x87\xf6\x88\x24\x37\x6d\xc7\x20\xd1\x95\x92\x87\x16\x87\x62\x3d\xca\xf3\x80\xf3\xb5\x60\x84\xa7\xb4\x3e\xa2\x7a\x90\x02\x3f\x3d\x76\x03\x49\x0e\x88\x73\xb4\xed\x75\x7b\x96\x80\x44\x13\xd9\xcb\xf6\x58\xe7\x62\xcd\x77\xf3\x01\x89\x87\xe0\x9f\xbf\x1f\x74\x06\x04\xb5\x44\xc7\xcf\x10\x4c\x2d\x24\xcf\x35\xe5\x05\xde\x58\xcc\x76\x29\x9e\xb1\x6e\x96\x24\x5b\xd6\x5a\xac\xbe\x64\x34\x07\x56\xe0\xce\x9c\x8c\xe6\x97\x71\xfd\xb0\xcd\x8f\x2d\xe9\xd4\xc2\xf7\xfb\xc1\x95\xd4\x25\xeb\x91\x79\x30\xd4\x55\xd5\xdc\xb4\x3d\x52\x57\x7b\xcd\xb1\xb0\x2a\xa2\xcd\x50\x0b\xc9\xbd\x92\xa0\xbe\xd3\x59\x50\xc4\xb1\x79\x37\xc1\xd7\x80\x9d\x95\x98\xd3\x63\x53\x87\x31\xbc\xee\xa9\xc4\xb4\x8c\xe5\x0a\x6f\x45\x9c\xd8\x09\x9c\xdb\xd6\xbb\x25\x06\xb4\x52\x41\xa7\x75\x96\x42\x67\xc7\x4c\x1d\xb5\x87\xc4\xc9\x1e\x85\xa3\xf7\xba\xa3\x4d\x51\x7c\x5a\xc8\xbd\x89\xb5\x8d\x70\x3b\x68\x46\x40\x89\x70\xf4\x6a\x6f\x6d\x39\xab\x5f\xf7\x70\xa1\xa2\xa6\xaa\x94\xe2\x56\x64\x5f\xb8\xfa\xda\xd9\xc9\xa5\xda\xc9\x35\xcf\xaf\x4d\xdc\xf0\x9a\x31\x1a\x73\x55\x75\x4d\x4e\x0f\x68\x81\x1f\xfa\x8e\x5b\x5d\x21\xf4\xa7\x58\x86\xeb\xb3\xb2\x24\xbf\x25\xd2\x67\x5a\x30\x7c\x07\xa3\x36\x4b\x2c\x97\x98\x03\xe3\xba\x42\xae\xc4\xb9\x20\x6b\x65\x7c\x6a\x87\x53\x9b\x9e\x66\x11\xce\x61\xb6\x1d\x10\x36\x1c\xf9\x7b\x88\xe6\x74\xa6\xb4\x5b\x0f\x06\x54\x6c\x0d\x3e\xb1\x64\x15\xcd\xe1\xf7\x4a\x48\xbf\xb1\x53\xe1\xce\xf1\x1c\x55\x5e\x1f\xd8\x4e\x51\x10\xd1\x96\x44\x22\xeb\x8c\x60\xbc\x75\x97\xcc\x0d\x19\x87\x87\xd1\xb4\x61\xe4\xa0\x1d\xeb\x3e\x85\xbe\x88\x78\x8e\xa8\x88\x36\xa9\x4e\x26\x30\x63\x9c\xb3\x8d\x52\xc6\x05\x96\x26\x94\x98\x63\xae\x5b\x10\x24\x73\xfb\xf1\x90\x3d\x81\x60\x4e\x83\xdd\x86\xac\x59\xcc\x31\xca\x81\x48\xd1\x54\x7b\xd5\x8e\xa0\x00\xdc\xd3\x25\xcb\xc5\x30\x2b\x6b\xe2\x92\x2f\x9e\xb3\x1e\x4f\xe1\x87\xf8\xae\xd0\xae\x09\xda\xf5\xff\xd0\x75\xb4\x31\x6e\x0c\x90\x60\xe5\x91\xb4\x88\x08\x5e\x12\xe9\x99\x5c\xcf\xdd\x2c\x84\xe4\x63\xbd\x33\xb5\x07\xc7\x08\xd2\x0a\x1c\x4d\x33\xdb\xa7\x22\xda\x61\x60\x9d\xb6\x40\x2b\x13\x0f\x06\xf6\xd0\x34\x1b\xec\x0e\xa4\xbe\x57\x87\xc1\x37\x6a\x30\x80\xce\x89\x22\xd6\xce\xba\xd7\x4b\x6d\xe0\xdb\x98\xe9\xa7\x69\xba\x5d\x1a\x15\x38\x0f\x5e\xd8\x73\x7d\x85\x75\x00\x07\xc9\xe8\x2c\xde\x55\x63\x9b\x2e\x4b\xdb\xe8\x97\x72\xb4\xf9\x2b\xa2\x15\xee\x6d\x88\xad\x21\xfa\x3a\x30\x57\xca\x55\xcd\xdc\xcb\x59\xba\x87\xc2\xac\x17\xb8\x59\x98\x37\xbb\xd7\x84\xea\x73\x63\x77\x53\xda\x10\x77\xdb\x8d\x64\xd6\x2c\xfe\xcf\xf0\xd1\xf5\xa6\xee\xcd\x49\x37\x40\xf3\x52\xad\xae\x8f\x93\xed\x37\x1d\x5d\x56\x22\x72\xba\x55\x8c\x32\x45\xae\xf3\x6f\xd7\x5b\xfd\x1d\xf8\x7a\xab\xf7\x96\x7a\xd6\x39\x48\x46\xed\x34\x41\x17\xf7\x7c\x5f\x69\xdd\x42\x62\xbc\x74\xf3\x1e\x10\x12\x16\xd6\x26\xf9\x7a\xa6\xdd\xc3\x89\xdc\xc6\x51\x91\x39\xd8\xb1\xf0\x70\xaf\xdd\xd8\x1e\xdd\x5c\x38\xe7\x5a\xfa\xea\x60\x67\xd4\x76\x59\x81\x2b\x74\x6f\x10\xfa\x6e\xd5\x5f\xad\x72\xd9\xae\x92\xe9\x1a\x11\x6c\x8c\x4e\xa9\xe9\x9a\x72\xdb\xab\x79\xaf\x9b\xac\x4a\x8a\x57\xb8\xb0\x91\x11\x52\x27\xde\xfa\x25\x72\x68\xce\x00\x2e\x8c\x51\x13\xfc\x6c\xc9\x39\xf2\xc2\x7e\x1d\xa3\xa9\xe0\x87\x14\xae\x30\xe2\xa3\xd6\x9d\x5b\xa9\x69\x75\x5c\x6b\x0b\xdc\x10\x4a\x95\x19\x55\x42\xcf\x5c\x23\x77\x57\x8e\xd7\x98\xb2\x12\x73\xdd\x41\x71\x55\xb0\x8d\x3d\x35\x95\x88\xa3\x15\x96\x98\x9b\xce\x0a\x21\xdc\xa6\xe4\x77\x01\x8d\x6d\xc0\x90\x06\xc4\x07\x69\x0c\xb5\x7b\xdb\x50\xd8\xbd\xa2\x6b\x5a\xc0\x5c\x72\xa4\x51\x88\x57\xb1\xae\xb0\x68\x47\xd8\x9d\xba\xaf\xf6\x2f\xcf\xd6\xc3\x3e\xef\x12\xba\x66\x85\x8a\xcf\x82\xe6\x39\xdb\x3b\xe7\xbd\x29\x9e\x76\xa5\xab\x19\xec\xba\xa8\x96\x26\x31\xeb\x82\x84\x1c\x0b\xc2\xad\x3c\xd3\xae\x42\x80\xd0\xbd\x56\x15\xc7\xcd\xcb\xea\x4e\x1d\xac\x77\x6c\x0f\x8e\x1a\xa9\xa5\xdf\x97\x4b\x4c\x2c\x07\x1a\x55\x60\xb8\xd1\x7e\x2f\xaf\xd7\x4b\x2f\x26\xb4\xc8\xfb\x35\x69\x98\xae\x73\x1f\xac\x53\xed\xdd\xb3\x5d\x23\x68\xd5\x98\xd8\xbb\x49\x66\x1a\x7c\xdf\x7e\x45\xca\x9c\x02\x54\xf1\x2c\xbf\xdf\xad\x31\x31\x37\x77\x45\x72\xaf\x86\x8d\x6f\xd0\xac\xb1\x47\xa3\xc6\xbd\xfa\x34\xbe\x5f\x8f\x46\xa4\x3f\xa3\xfb\xc4\x4e\x1f\x6a\xcf\x1d\x54\x73\xa0\x7b\x43\x69\xa7\x2e\x22\xdc\xa6\x05\xe1\x6e\xed\x07\xd1\xd6\x83\x0d\x9e\x09\x22\xf1\x23\x85\x52\xe8\x0a\xc8\xb3\xf9\xf3\xa7\x7f\xf9\x31\x7b\x9c\xfd\x0b\xfa\x29\xcb\xf3\xe7\x3f\xfe\x79\xf6\x24\xfb\xe9\xe9\xe3\xd6\x17\xe8\xd9\xb3\x6c\xf6\x24\xfb\xcb\x9f\x9f\x7f\x39\xa1\x6c\xf3\xe5\x37\xc6\xf3\x15\xe2\x57\xa9\x58\xf7\x35\x16\xc4\x75\xa8\xdb\x9a\x20\xd6\x8b\x3f\x7d\x5d\xd1\x2e\x96\x5e\x09\xdd\xb5\x2d\xc1\xb6\x24\x28\x27\x6a\x4d\xcf\xdb\xb8\x7b\xea\xfd\x61\x61\xee\xd2\xf8\xea\xfa\xac\x46\x84\xd9\x30\x91\x39\xca\x59\xa4\x92\xc1\x12\xd3\x12\xb6\xac\x72\xfb\xa6\xfa\xcc\xa1\xc0\x5f\x25\x28\xfe\xa9\x63\x79\xda\x33\xe3\x6d\xbb\x0b\xec\xac\x8f\x8a\xb9\x4c\x59\x31\xa7\x6c\x93\x32\xbe\xe8\xab\x87\x07\x1d\x06\x5a\x18\x71\xb8\xa0\xaf\x60\x00\x6e\x8f\x6e\x82\xbb\x57\xf7\xd5\x62\xbe\xcc\x28\xcb\xae\xb2\x25\x22\x45\x4f\xe1\xbd\x5b\x74\x1f\x88\xd9\x5c\x79\xd1\xee\xd5\xfa\xb5\x84\x1a\x66\xf7\x6f\xd4\x1c\x44\x60\xe3\xbf\x2d\x13\x83\x1c\xfe\x35\x9a\x66\xc4\xae\x9f\xa0\x69\x20\x63\xbf\xbc\xe3\xbd\x3a\xa4\x63\xf2\xf0\x25\x90\xc7\xe1\x97\xa6\x17\x36\xac\xf2\xe8\x2f\xa2\xbc\x80\xc3\x38\x8f\xfa\x86\x36\x8b\x0b\x46\xb6\x7e\x81\x27\x32\xb0\xcb\xa9\x00\x41\xf7\xeb\x10\x51\x84\x81\x70\x18\x63\x6b\x38\xcc\x72\x13\x0e\x1d\x5f\x83\x5c\x9b\x7b\x2b\x24\x48\x49\x32\x97\xf5\x35\x3f\x5b\x70\x76\x72\x29\x82\x93\x9e\x07\x3b\x70\x5c\xa8\x29\x40\xa6\x0d\x23\xb5\xe1\x46\x2a\xd0\x1a\x27\x2f\x1e\x35\x58\xbc\xca\x41\x54\x12\x3d\xf8\x82\x0e\x0e\x1d\x0a\x88\x65\xe8\x24\xfb\xc1\x1d\x2d\xfa\x9d\x99\x17\x91\xdc\x5d\x5b\xb0\x37\x2f\x93\x01\x02\x43\x3f\x82\x64\x67\x35\x11\xa1\xfe\x2f\xac\x6a\x67\xed\xf8\x9e\xab\x1a\x50\xd9\x71\x5c\xcd\x98\xfb\xd1\x1c\xc9\x40\x2c\x11\xc7\xfa\x27\x71\xa0\x5e\xc5\xd6\x54\x8a\x4b\xce\xbe\x6e\x03\x9d\xab\x07\x36\x1a\xd7\xfa\x6d\x9e\x3d\xd5\x8e\xd5\x2f\x8a\xd6\x4a\x17\xb1\xa1\x7d\x84\xd3\xcf\x6d\x87\xd0\xb1\xb7\x77\x82\x9b\x07\x0f\x6e\xfe\x27\x00\x00\xff\xff\x3b\x34\x2d\xaa\x94\x4d\x00\x00" +var _packnft_alldayCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xe4\x3c\xed\x6e\x1b\x39\x92\xff\xfd\x14\x15\xfd\x98\x48\x58\x47\x4e\xb2\x93\xdc\xac\x2e\x4a\xc6\x89\x63\xc4\x38\x8f\x93\xb3\x9d\x5d\x1c\x82\x20\xa0\xba\x29\x89\x6b\x8a\xec\x21\xd9\x52\xb4\x39\x03\xf7\x1a\xf7\x7a\xf7\x24\x07\x7e\x75\x93\xdd\x6c\x7d\xd8\xc9\x0d\x0e\xab\x1f\xb6\x3e\x8a\xc5\xfa\x62\x55\xb1\x58\x6c\xb2\x28\xb8\x50\xf0\x46\xac\x0b\xc5\x0f\xdc\xa7\x0b\xce\x4e\x4b\x36\x23\x13\x8a\xaf\xf9\x0d\x66\x30\x15\x7c\x01\xbd\xe6\xd7\x3d\x0f\x9f\x02\x4e\x43\x9e\x7d\x40\xd9\xcd\xc5\xe9\xb5\x03\xf2\x1f\xab\xdf\x7f\xc3\x0a\xe5\x48\xa1\xbf\x12\xbc\x92\x0e\x28\xfa\xae\x77\x70\x70\x74\x74\x04\x6f\x38\x53\x02\x65\x0a\xd4\x1c\x29\xc8\xf1\x94\x30\x2c\x41\x63\x83\x8b\xd3\x6b\x39\xd4\x40\x07\x28\xcb\xb0\x94\x7d\x44\xe9\x00\x32\x3f\xc0\xcd\x38\x6a\x31\x79\x58\x13\xf7\xed\xe0\x00\x00\x20\x1c\xbf\x44\x02\x14\x57\x88\x5e\x95\x45\x41\xd7\x23\xf8\x78\xc6\xd4\xf3\x9f\x5b\x70\x14\x2b\x58\x62\x21\x09\x67\x23\xb8\x52\x82\xb0\x59\x12\xe6\x0d\xa7\x14\x67\x8a\x70\x76\xa5\xb8\x40\x33\xfc\x01\xa9\xb9\x1e\x51\x7d\xd8\x32\xec\x43\x39\xa1\x24\xb3\xa3\xea\xf7\x5b\x06\x79\x0e\xf7\x18\xfc\xbe\xc0\x02\x29\x2e\x3a\xc9\x34\xa3\xb4\x4e\x4e\x88\x99\x03\x89\xb5\xd5\x8a\x54\x5c\x78\xa5\x08\x2c\x79\x29\x32\x2c\x81\x30\x50\x73\x5c\xeb\x43\x2a\xa4\x30\xf4\xc9\x10\x0f\x0f\x2b\x05\x82\xc0\x85\xc0\x12\x33\x85\x34\x4a\x09\x8a\xc3\x0d\xc6\x05\xe8\x31\x37\xc0\xa7\x76\x98\x1c\x0c\xfd\xec\x21\xed\x1e\xb7\x65\xa0\x40\xd9\x8d\x1c\xc1\xaf\xdf\xac\xc6\x46\x66\x92\xdb\xb6\x86\xf1\x12\x33\x05\x97\x78\x89\x11\xbd\xc4\xbf\x97\x58\xaa\x3e\xc9\xbd\xa2\x0f\x81\x17\x98\xb9\xef\x47\xf0\x9a\x73\x3a\xe8\x40\xf1\xbe\x06\x0c\x10\x74\x41\xdb\x09\x71\x1e\xcd\x25\x11\x55\xde\x7c\x0e\x81\x4d\x95\xf4\x9f\x36\x4d\x1a\x21\xe9\x02\xfc\x8d\xb0\x98\xaf\x8c\x2f\x16\x44\xbd\x43\x72\x5e\xcf\x98\x13\xa9\xce\xb6\xa2\xf2\x8b\xf0\x8c\x11\x45\x10\x25\xff\xc0\x79\x7f\xe0\xed\x01\xae\xdf\x9f\xbc\x1f\x69\x18\x49\x72\x2c\x40\xe0\x05\x5f\x12\x36\x83\x87\x7f\x23\x6a\x9e\x0b\xb4\x7a\x08\x88\xe5\xf0\xf0\x04\x17\x5c\x12\xf5\xd0\x22\x95\xc0\xf8\xca\xd9\x0f\x59\x10\x8a\x44\x3d\x80\xc5\x23\x70\x5e\x8d\x41\x02\x03\x5e\x10\xa5\x70\xae\x0d\xac\xe5\xbf\x2a\x6b\x23\x4c\x61\x31\x45\x19\xee\x60\xc9\x4f\x15\x49\x48\xbb\xa1\x11\x1c\xe7\xb9\xc0\x52\xbe\xea\x92\x86\xa3\x2a\x1a\xa9\x78\x38\xae\x5a\x29\x6f\x59\xb9\x88\x3d\x97\x5e\x12\xda\xa4\x4b\xa9\x8d\x1b\xc5\x8b\x26\x69\xe4\x76\x66\x8d\xe8\xca\x8c\xb3\x93\xfe\x02\xdf\x0c\x50\x13\x30\x43\x12\xc3\x95\x31\xb4\xee\xdf\xbd\x29\x76\x43\x58\x2b\x33\xbf\xdf\xd6\xec\x5c\x3a\x3a\x63\x96\x50\xbd\x9a\xbd\x0f\x39\xd4\x2c\x15\xda\x22\x26\x14\xc3\x94\x8b\x51\x85\x03\x1e\x19\xcb\xd4\x06\x52\x79\x71\xa3\x6d\xeb\x2c\x84\x1d\x98\x57\xbf\xd7\x0e\xc5\x4c\x9a\x72\x0e\x87\x21\x72\xcb\x9b\x1e\x2e\x0d\x8f\x0d\x2c\x87\x7a\xae\x10\x5e\xaf\x76\x0d\x2d\x9c\x4c\x1a\xf0\xdd\x2a\xf1\x20\x3e\xd0\x78\xde\x47\x55\x78\x19\x9e\xf9\xef\x7c\xa0\xf1\xf3\x6a\x09\x00\x02\x86\x57\xa1\x27\x74\xf8\xb4\x30\x36\x08\xe2\x5f\xad\xbf\x35\xf2\x8a\x7e\x68\x7a\xdc\x87\xd2\xba\x44\xc8\x2b\x7f\x1d\x11\xa1\xe7\x11\x58\x95\x82\xd5\xb8\x22\x42\x14\xb7\xf8\x10\xa5\x58\x0c\xc3\xb1\x4d\xc3\xa9\x38\xb6\x0c\xa3\x09\xc5\x03\x98\x96\x0c\x16\xda\x09\xc5\x4e\x26\xed\x88\x88\x94\x25\x16\xd5\x22\x1a\x68\x3f\x5e\x61\xbd\x38\xbd\xbe\x0d\xec\x5d\xbf\xb4\xc3\x67\x53\x05\x2f\x1e\x41\x26\xb0\x8e\x2c\x17\xa7\xd7\xfd\x10\x73\xfd\xbe\xc6\x6e\xff\x0f\x22\x4c\x7e\x92\x20\xe8\xc3\x38\xf9\xed\x9f\xe0\x49\x8b\x86\x22\xa0\x40\x8f\xb9\x17\x09\x46\x5d\x9f\xd8\x54\x0d\x49\xfe\x19\x5e\x3c\x7a\x00\x45\x04\xa7\x3d\x5f\xed\xd7\x2d\x5c\x2c\xce\x70\x46\x2f\x76\xfb\x3f\x9e\xd1\xe9\xfd\xc5\x23\x8d\xa5\xfa\xe5\x36\xb6\x52\xbb\x94\x00\x39\x7f\x92\xf2\x55\xfb\xda\x83\x5d\x65\x91\xeb\xb4\x41\xef\x53\xad\x6d\x9f\xc5\x4c\x28\xbe\xfd\x1c\x87\xc8\x41\xc2\x0a\x8c\x06\x22\x09\x0e\x4d\x08\xc2\xfd\x1b\xbc\x1e\x01\xc9\x07\xf0\xea\x15\x14\x88\x91\xac\xdf\x63\x1c\x64\x99\xcd\xcd\xc2\xe8\xc5\x22\x29\x86\x01\x71\x5a\xae\x96\x30\xfd\xd7\x13\xa1\xff\x6e\xd2\x5c\x5b\x6b\x0d\x89\x6a\xb7\x0a\xa8\xf2\xbf\xed\x35\x77\x37\xa9\x6a\x1f\xb6\x87\x4c\x7f\xac\x14\x2b\x62\x62\x19\xde\x4b\x6e\x0d\x17\x1b\xba\x3c\x9f\x91\x74\x38\x28\x0d\xd0\x1f\xc0\xb7\xdb\x7d\x63\xd9\x8e\x8e\xbf\x23\x0c\x6b\x91\xb6\xdd\x5c\x27\x68\xc3\xfb\x25\xe1\xf4\xc6\x44\xba\x0c\xc0\x66\x02\xdd\x60\xc1\x92\x79\x75\x90\x04\xd3\x66\xb3\xc4\x82\x4c\xd7\x7d\x36\x55\x16\xb4\x5a\x65\x36\xed\x6d\x58\x09\x92\x12\x0b\xd5\x97\x98\x4e\x87\x2e\x83\x79\x30\x76\x94\x0c\xad\x87\x38\x84\x05\x96\x12\xcd\xf0\x08\x7a\x46\x38\x8c\xab\x3a\xb0\xae\xb1\x6a\x18\x8b\xa6\x75\x8e\xe4\xdc\x4e\x0b\x63\xb0\xc8\x11\x55\x0f\x22\xb8\x08\xa6\xfe\x30\xcc\x38\xcb\x90\xea\xf7\x0e\x7b\x03\xff\xbe\x62\x66\xd0\x32\x71\x3d\x10\xc6\xa0\x15\x72\x4c\x67\x5c\x10\x35\x5f\x0c\xaf\xde\x1d\x3f\xfd\xf2\xf4\xd9\xf3\xa1\xfe\xb5\x1f\xe0\x2e\xd5\xf4\x97\x41\xa7\x00\x6a\xdd\xc2\x78\xec\xc4\x36\xc4\x2c\xe3\x39\x7e\x87\xbf\x1a\x3c\x83\x50\x1a\x6f\x6a\xf8\x15\x92\x46\x2e\x46\xfa\x04\xe7\xbd\xa4\x67\x56\xa2\xc4\xa9\xd5\xe0\x74\xa8\x89\xb0\x4a\xfc\x52\x6b\x71\x67\x37\x9a\x0a\xc1\x03\xff\xa6\xa1\xf6\xb6\x8e\x10\x55\x2d\x88\x4a\xec\x30\x36\xab\xfd\xd3\xe3\xcf\xc3\x7a\x54\xbf\xad\x76\x02\xe3\x46\x34\x5d\xcd\x09\xc5\x40\xe0\x85\x41\x30\xa4\x98\xcd\xd4\xbc\x41\x8c\x57\xa5\xf4\xd3\x90\x0d\xd3\xe8\x57\x83\xae\x6e\xbb\x91\xed\xb1\x9a\x44\xd2\x0a\xfa\xb7\xff\xec\x96\x59\xf1\xb1\xc1\x3c\xeb\x8d\xf9\x0f\x08\xfa\x09\x47\x34\xde\xe6\x88\x1c\x1c\xb1\x0c\x5a\xa0\x5e\x5b\x11\x4b\xef\x83\xe2\x55\xd5\xcc\x01\xe2\xf5\xd3\x10\x7b\x8c\xb5\xf2\x68\xa9\x95\x13\xb1\xe0\x39\x68\x6d\xce\xc0\x67\x7e\x51\x05\x41\x47\xd7\x90\x22\x4b\xe9\x72\xb0\xb3\x56\xee\x99\x34\x6c\xd4\x82\xa7\x74\x8b\x1e\x3c\x58\x2f\x21\xb3\x0d\x1a\xa8\x82\xc4\xde\x7a\x68\x88\x3a\xd8\xe5\x46\x82\x0e\x6a\x2c\x24\x4f\x4a\xd4\x27\x25\xfb\x66\x22\xbb\x6c\x7d\x1a\x82\x3e\x3a\x82\x2b\xac\xcc\x4e\xcc\xf8\x09\xbd\x6d\xb3\x43\x6c\xd9\x54\xff\x80\xc4\xac\x5c\x60\xa6\xe4\xb0\xcd\x74\xe8\x10\x02\x79\xb5\x01\x1d\xd2\xb1\xc3\x7e\xd0\xa4\xc2\x55\x7f\x02\x1d\xda\x75\x94\x98\xb3\x29\x68\x57\x90\x68\xf1\xa5\xd7\x85\xb6\x05\x42\xa1\x64\x8a\x50\xe7\x2a\x52\x18\xed\x12\x62\x84\x06\xea\x80\xef\x9e\xd2\x25\x0b\xc6\x7a\xff\x59\x17\x8d\x1b\x9f\xfc\x9b\x46\x69\xb9\xfa\xfe\xfd\x8a\x61\x11\xd4\x01\x42\x0b\xba\x9e\x13\xa9\xa7\x7c\x28\xa1\x64\xe4\xf7\x12\xc3\xd9\xc9\xc6\x1d\x40\x9d\x30\x56\xeb\xf6\xa0\x0b\xa3\x55\xb5\xb1\x99\x43\x28\x25\xce\xf5\x7e\xde\x2e\x2a\x63\x33\x67\x27\xa6\x04\xa5\xdf\x9a\x1a\x0c\xa9\xcb\x00\xbb\xd1\x90\xc8\x6f\xbb\x68\xb1\x16\xb5\x23\x6b\x8d\x5c\xf8\x3b\x6d\x49\x5b\x4a\xfd\x58\xe4\x7a\xd3\xfe\x9f\x6d\x75\x1b\x95\x45\xa1\xab\x5d\x12\x6e\x2c\x52\xaf\x75\xd1\xaa\x2a\xdb\xa5\x95\x37\xca\xca\xc1\x87\x4e\xff\x92\xdc\x2c\xfe\x40\x5e\x4d\x40\xe8\x62\x8c\x37\x6a\xdd\x8e\xad\x4e\xe2\xdf\x9a\x52\xa9\x2f\xd5\xae\xe6\x86\x15\xbd\xd3\x25\x12\x72\x2c\x95\xe0\x6b\x9c\x43\x5f\xe0\x82\xa2\x0c\x4b\x78\x5d\x0a\x86\x73\x57\x61\x9d\xe0\x29\x17\x18\xde\xa0\x1c\xb3\x0c\xc3\x93\xe1\x63\x28\x0d\x07\x83\xad\x16\xe4\x6b\xed\x56\x4a\x27\x7e\xa6\x20\xd0\xf9\x10\xaf\x89\x8f\x49\xfe\x8a\xb3\x52\x53\x3b\x59\x9b\x9a\x97\x4e\xea\xf4\x8a\x30\xa4\x89\xb0\xac\x36\xd1\x79\xd0\x02\xab\x39\xcf\xfd\x81\x46\xc6\xd9\x94\x8b\x85\xf4\x45\x33\x3d\x48\x6f\xd0\xeb\x42\xf4\x46\xda\xe3\xd0\xac\xf1\xbf\x41\x94\x4e\x50\x76\xd3\xa9\x91\xed\xf5\xaa\x47\x8d\xd4\xd5\xc9\x7d\xf3\x4e\xdf\xcb\x66\xfb\x76\xbf\xa1\xf1\xa8\x74\xf8\xc3\xa2\xa1\x23\xcf\x2b\xb1\x2c\x49\xfe\x1d\x43\x5e\x07\x6b\x6f\x6c\x7d\x0f\x31\xc0\x8b\x42\xad\x83\x73\x36\x98\x72\x01\x1f\x08\x63\x28\xa3\xb8\xae\x65\xbb\x54\x99\xa8\xb8\x86\xba\xd5\x7a\xb5\xf2\x6d\x31\xf1\xad\x9e\xa8\x9e\xa7\x6f\x0a\xa2\xad\xd5\x5b\x03\x34\xeb\xa3\x75\x81\xcf\xab\x3a\x8d\x97\x4d\xd5\xf5\xba\xc0\x23\xd0\x7f\x5f\xfc\x7a\x71\x7a\xfd\xb2\x3f\xe8\xd4\xf1\x65\x5d\x2e\x5e\xb8\xc3\x5a\x58\x12\xbc\x02\xb5\x2e\x74\xa8\x5d\x22\x42\x91\x2b\xf9\x83\x72\xfe\x3f\x6d\x00\x66\x58\x93\xf7\x19\x56\xe6\xf0\x57\xb3\xfb\x49\x53\xf4\x39\xcd\xd6\xa7\xd6\x66\xcd\x90\x1f\x1d\x20\x0f\x4f\x88\x2c\x28\x5a\xbf\xec\x0f\x0e\x77\x01\x7f\xfb\x55\x61\xc1\x10\xfd\x78\x79\xbe\xeb\x90\xdf\x70\x4e\x90\xdc\x15\xfa\xe2\xf4\xba\x16\xfc\x09\x52\xe8\x6e\x03\xf7\xe3\xea\x92\xaf\x11\x55\x04\xef\x4c\xe5\x15\x16\x04\xd1\x97\x8d\xbd\xf4\xe7\x6e\x8b\x90\x9c\x2e\x71\xa5\xec\x87\x32\xb6\x0c\xb9\x3d\xe8\xdb\x38\x6b\xd0\x68\x12\xfa\x5f\xcc\x40\x6b\x91\x83\x11\x1c\xb3\xf5\x95\x12\x65\xa6\x5e\x35\x5d\xc1\x8a\xa8\x6c\x6e\x0d\xa9\x5d\x26\x30\xc7\x58\x1b\xad\x62\xd4\x1a\x03\xb5\x85\x25\x07\xf5\x93\x23\xf4\x8b\xa1\x85\xde\xe3\x5c\x9c\x9e\xc3\x31\xa5\x70\x82\xd6\x66\xdd\xf5\xda\x22\xf7\xaf\x1c\xcb\x4c\x90\x42\x99\xfe\x81\x9e\x0d\xf2\x3a\x21\x9b\x92\x4c\x27\xd9\x21\xa6\xdf\xb8\xc9\xed\x6d\x14\xe5\x66\x6f\xb2\x01\xb1\x9a\x97\x8b\x09\x43\x84\x8e\x1a\x4c\xbc\xbb\xbe\xfe\x70\x4a\x28\xee\x97\x82\x3a\x3f\x3f\xc3\xea\x6c\x81\x66\xb8\x4f\xf4\x5f\xeb\x08\x7a\xe6\x7d\xef\x50\xaf\xe1\x05\x52\x23\xe8\xfd\xbd\xc0\xb3\xde\x21\xac\x48\xae\xe6\x23\x78\xfa\xec\xf9\xa0\x5d\x2c\xd1\xaf\xf6\xb7\x5d\x4a\x88\xd7\xda\x1e\x8a\x08\x06\xf6\x7b\x73\xa5\x0a\x39\x3a\x3a\x62\x53\x8a\x28\xcd\xd1\x5a\x3b\xfe\x23\x1d\xa5\xf4\x76\xf1\xa8\x57\xd5\x76\x6c\xcc\x18\x2a\xee\xeb\x44\x83\x81\xde\x7e\x2c\xc8\x6c\xae\x13\xe4\xa5\x39\xea\x5a\xa0\x1b\x0c\x08\x3e\x5e\x9e\xdb\xfd\x83\xc0\x39\x11\x38\x53\x26\xa4\xdb\x83\xb4\x02\xcd\x30\x4c\x90\xce\xa5\x39\x33\xdf\x99\x8c\x26\x87\x47\x2f\xcd\x29\x8b\x20\x93\xd2\x44\x85\x46\x50\xda\x24\x8a\xca\x87\xec\x21\x05\x3b\xa6\xdb\x1a\xdb\xee\x31\x7c\x25\x70\x75\xa3\xf2\xaf\x29\xa1\xf8\x07\x19\xd4\xb3\x27\x4f\x07\x09\xdf\xd4\x7c\x2d\x34\xa1\x21\xc6\x23\x83\x66\xe3\xb8\xb4\x9d\x42\xe4\xd0\x36\xc3\x77\xa9\x2d\xe5\xcc\xf7\xd0\x60\x6b\x78\xb7\x06\x64\xd8\x8f\xd3\x2c\xcd\x44\x5d\x45\xdd\x32\x2c\xc2\x36\xa0\x16\x8a\xba\x31\x68\x1b\x86\x7a\x8c\x4b\x18\x7e\xaa\xbf\x49\x06\x98\x78\xf8\x39\x61\x37\x38\x0f\xf2\x8d\x5d\x87\x27\x73\x97\xd3\x92\x39\x52\xfa\x3a\x84\xec\x9d\x22\x35\x5f\x55\xca\x74\xaf\x8c\xa9\xf9\xba\xbd\xaf\xaf\xec\x88\xfe\x69\x63\xd3\x1b\xe8\x09\x62\x0c\x0b\xb3\x0c\x61\xbc\xdf\x6a\xdf\xb8\xca\x37\x0a\xcf\xb8\x80\xca\x23\x23\x29\xb1\x92\xc3\xd8\x31\x4f\x29\x5f\x1d\x65\x48\x21\xca\x67\x25\x3e\xba\x38\x3d\x3f\x3e\xf9\xf2\xfa\xf8\xe2\xe2\xed\xe5\xb0\x60\x1b\x56\xf2\x06\xc3\x68\x3b\x85\x4e\x4c\x69\x3d\x98\xd3\x84\xdf\x4b\x24\xf0\xff\x13\x81\x5d\xfd\xfb\xc7\xe3\xcb\xb7\x7f\x9c\xc0\x76\x70\x67\x77\x4c\x96\xe4\xce\xd9\xd2\x7b\x97\x25\xd1\x35\x9c\x93\x0c\x33\x1d\x90\x4f\xc8\x8c\x28\x44\x21\x28\x5a\x4b\x38\xc5\x48\x95\xc2\x6f\xe4\x2f\x4e\xcf\xff\xe7\xbf\xfe\x5b\xc2\x6b\x2c\x15\xbc\x23\xb3\x39\xd5\x09\x80\x1c\xc2\xeb\x72\x7d\x08\x57\x98\x52\xb3\x79\x73\x18\xe0\x3f\x78\x29\xe0\x14\x2d\xb9\x20\xa6\xbd\xe4\xdc\x27\x62\x1b\xe8\xc4\x75\x7e\xd2\x34\x8b\x1d\x52\x97\xde\x06\xc5\x05\x46\x3a\x0a\x3f\x74\x8f\x08\xfc\xc0\x28\xfc\xb0\x61\x0e\xae\xa5\x2a\x47\x5b\x1c\x65\x8f\x30\xa9\xd0\x4c\xa0\x45\x6f\x27\x26\x57\xab\xd5\xb0\x1a\x62\x18\xad\xd8\xde\xc8\xb2\x99\x4b\xad\x88\x52\x58\xec\x36\x93\x03\x36\x73\xe8\xe5\x42\xe9\x09\x5a\x6f\x9d\x22\x27\x32\xe3\x22\xdf\x6d\x0a\x07\x6c\xa6\x20\x6c\x49\x14\x3e\x7a\xf6\x6f\xcf\x7f\x5f\x5f\xff\xe3\xef\x4f\x9b\xcd\x10\xe1\xeb\xf6\x9e\x61\x20\xdc\xc8\x75\xfb\x7e\x61\xa0\xd6\x97\x38\xc3\x64\x89\xc5\x08\xde\xa0\x02\x4d\x08\x25\x6a\xfd\xe2\xa7\x6f\x71\x64\xf4\x40\xb7\x2f\x61\xdc\x49\xf6\x0c\xab\xe3\x2c\xe3\x25\x53\xfd\x6f\xdf\x1c\x11\x6b\x57\x9b\xb9\xbd\x1d\x0c\x33\x8f\x9f\x60\xa9\xb3\xbf\x0d\xb3\xf4\x63\x86\x66\x58\x5d\xc6\xd4\xd6\x79\x48\x7f\x30\x78\xb0\xbb\xf7\xa9\x44\xf3\x7d\x32\x62\x47\xd5\xf6\x9c\x58\x54\x52\x6e\x88\x7d\x7b\x32\x9b\x95\x6a\x04\x8f\x87\x8f\x9f\x6d\x07\x8d\x5d\x5f\xe8\x34\x17\x48\xdc\x60\x65\x0a\xa8\x9e\x82\x3f\x2a\x1d\xae\xaa\x06\x7b\xe4\xc0\x76\x4c\xbf\x55\x49\x86\xd6\x6a\xf1\x27\xcf\xd1\xe1\x4f\xaa\x30\x85\x98\x39\x97\x54\x50\x20\x35\xdf\xad\xf2\x60\xe0\xad\xcd\x75\x74\x40\xb8\xd9\x2b\x0f\x60\x42\xe8\xf0\x0e\x9b\xce\xaa\x2b\xc0\xa2\x38\xea\xae\xa5\xd6\xec\x98\x18\xbd\x07\x3b\xa9\x0d\x98\x2f\xad\xfa\xfd\x97\xff\xec\xf6\x5f\x67\x4c\x6d\x61\xdd\xf0\x12\x08\xca\x33\x52\xcd\x51\xb3\xf6\xca\x4e\x32\xae\xfb\x1e\xec\x17\x35\xc4\x4f\x66\xda\x00\xc0\x7c\x0e\xe5\x74\x10\x5b\xc1\x0e\x27\x7c\x41\x41\x96\x4f\xc3\xdb\x21\xb0\xed\xc0\x2f\xdc\xd1\x6c\xd8\x3b\x24\x0e\xf6\x9a\xfb\xa7\xc6\xd9\x5e\x70\x49\x82\x4f\x4d\x71\xdc\x1d\x11\x98\x6c\x44\xa3\x8f\x4b\x63\xfe\x70\x04\x05\xfd\xb7\xeb\x02\xc3\x8a\xa8\x39\x20\x7f\x76\x71\x76\x02\x53\x82\x69\xbe\xdd\x18\x96\x48\x00\x5f\x31\x9c\x6b\x41\x84\xb7\x22\xda\x5b\xa4\x8b\xd3\xeb\xdb\x66\xc5\xbb\x16\x68\xaa\xa6\x7f\xd8\x5d\xd3\x4f\x16\xec\x2b\x42\xe0\xc5\x23\xdf\x8b\x97\x34\xfb\x05\x5f\x9a\x3a\x7b\x75\x73\xc8\x36\x34\x57\xc4\xe8\xfc\x4c\xc3\xc8\x56\x6d\x7d\xbf\x03\x31\xdf\xfe\xbf\xe5\x48\x6c\xe5\x6f\x09\xf8\x37\x67\x27\xd5\x5d\x89\xe4\x6e\xb3\xa3\x53\xd9\xe8\x5b\xf3\x1e\x4b\x23\x3a\x78\xa9\xa7\x08\xcf\x5e\x16\x44\x4a\x6d\x31\x17\xa7\xd7\xbd\x41\xeb\x00\xbd\xba\x30\xe1\xce\xbd\xfc\x79\x9b\x11\xdd\x0e\x97\x23\xe2\x83\x76\xd3\xfb\x10\x5d\x8c\x30\x74\x9b\xd3\x4b\x7b\x35\xa2\x22\x5f\xbc\x1a\x22\x7f\x40\xd3\x7d\x05\xa4\xe3\x44\xc2\x60\xed\xb2\x01\x77\xbb\xc2\x1b\x01\x61\x46\xcb\x44\x06\x26\xb9\x9b\x27\xcc\xdd\x35\x0d\x33\x5b\xa7\xb2\x52\xbd\xb0\x95\xb6\xec\x1b\x24\x1f\x80\xde\xe6\xb7\xe0\xa2\x33\x45\x2f\xaa\xa6\x8a\x8e\x73\x7b\xb5\x81\xe1\x95\xc3\xe7\xcc\xb6\xee\xca\x87\xd5\x9c\x64\x73\x2b\x35\x77\x45\x84\xd3\x1c\x38\x6b\xe8\x47\xcf\xc9\x69\x7e\x9d\x36\x26\xd7\x45\xeb\xa4\xdb\x24\xa3\xba\x4a\xf3\xfd\x2c\x25\xbc\x07\xa3\x4d\x44\xf1\x0e\x03\xd9\xd5\x42\xfc\xf9\xa4\xe7\x71\x87\x60\x2f\x04\x5a\xfb\x2e\x86\xb3\x13\x77\x47\x04\x89\xe0\x2e\xc4\x66\xa3\xe9\x3a\x85\x3a\x3b\xb1\x67\x50\x56\xbd\x1d\xa7\x50\x8d\xc5\x7c\x83\xd7\x72\x0b\xc9\xa6\x57\x67\xa1\xb3\x69\x17\x14\xa4\xbd\xcc\x91\xdf\x97\xde\x73\xd3\x2d\xa9\x49\x3e\x63\x6a\x67\x6a\x5d\x93\xe5\x36\x39\x03\x25\xd2\x13\xec\x4e\xfa\x8c\x9c\xcd\xb2\xf4\x49\xb0\xa1\xaa\x50\x1d\xe7\x3d\x5d\x74\x5f\x95\x45\xc1\x85\x32\x34\xe9\x44\xc2\x48\xfd\x9b\x4d\x5b\x5e\x73\x4e\x53\xce\x54\xfa\x31\x66\x40\x03\x7c\x1c\x86\x17\xfd\x8a\xa1\x3f\x85\x45\xbb\xcf\x7a\xd9\x86\x7d\xb6\xa1\xb4\xa2\x61\x5b\x24\xb4\x9a\x63\x35\xc7\x02\xb8\x30\x6d\x6d\x5a\x91\x33\xb2\xd4\x4b\x5d\x47\x70\x1d\xd4\x8d\x6c\x6c\x6b\xc1\x9d\xd5\x4c\x64\x53\x5a\x7d\x55\x15\x22\xd3\x3d\xdb\x64\x6a\x49\x18\x8f\xa3\x6a\x65\x62\x7f\x9f\x6a\x3b\x86\xae\x44\x7c\x8a\xa8\x4c\x76\x27\x47\x56\x23\xf0\x14\x0b\xd3\xc0\xa1\x78\xed\xce\x0d\xff\xdb\x7c\x79\x92\xff\x09\x17\x82\xaf\x2e\x4e\xaf\xfb\x5f\x02\xd7\x3b\x18\xc1\x4f\x69\xd7\xde\x3c\x2f\x74\xc4\xff\xd4\x76\x9b\xdf\x87\x15\x40\x3a\x7b\x0b\xdb\xc4\xf6\x66\xce\x8d\xed\x37\xd8\x8b\x2e\x42\x75\xb0\x65\xb8\xaa\x45\x44\xf2\x81\x09\x5c\xcd\xc1\x5d\xac\x6e\x68\x71\x70\xee\x55\xa2\x85\x4b\x49\xeb\x0e\x87\x3d\xd3\xb0\x1f\xd5\xe3\x70\xcf\x16\x07\x88\x37\x19\x6f\x75\x70\x43\xf1\x05\x61\x17\x35\x15\x07\x49\x66\xac\xd5\x81\xa6\xed\x41\xce\x79\x49\x73\x98\xe0\xea\xc6\xc3\x96\x3b\xcb\x75\x7f\xd9\x4e\xb7\x90\x21\x5c\xb6\xf6\xca\x4e\xdd\xf6\x53\x9b\xcf\x65\x74\xa1\xda\xf7\xb0\x56\x19\x25\xf4\x7b\x17\xe9\x76\x1e\xd7\xd0\x5b\xb8\xe6\xcd\xa1\x40\xab\xbf\x22\x5a\xe2\x56\x73\x75\xf5\x4b\x57\x77\xef\xa2\x94\x4a\xcb\xc1\x49\x68\x6a\x2e\xec\x98\xbe\x3d\x61\x19\x0a\x66\x0d\x1a\x9b\x43\x29\x6c\x6f\x98\x6b\x29\x8c\x85\xf7\xb1\x13\xfa\x6a\x5f\xba\xaa\x35\x66\x0f\xd5\x77\xd0\x57\xb3\x0d\xce\x2d\xd2\x3f\x5c\x33\x9e\xb9\x9d\x75\x53\x49\x43\x6b\x47\x73\xd5\xa5\x9b\xe6\x25\x77\x5f\xa9\x49\x5c\xac\xd7\x02\xb2\x07\x7d\x97\xdf\xaf\xe3\xff\x07\xc8\x73\xaf\x9b\x7e\x51\xf5\x21\x19\x0e\x1a\x8d\xe0\xcd\x84\x2e\x7c\xfc\x41\x77\x41\x22\x8e\x01\x09\xd6\xea\x70\xa0\x01\xc2\x20\xe0\xdc\x60\xdf\x06\xb6\xfa\x46\x1d\x92\x0e\xd6\xd5\x52\x03\x4e\xb6\x35\xb4\x45\x17\xb3\x3b\x9a\xd9\x36\xf3\xb2\x83\x2b\xde\xc7\xdd\x93\x29\xb8\xb1\xf0\x60\x63\x2e\xe3\xb6\xcd\x3e\x53\xf5\x37\x0d\xaa\x74\xae\xd7\x74\xfc\x51\x20\xf1\x37\x79\xc3\xa0\xd4\x61\x05\xad\x1e\x38\x09\x64\x51\x50\xbc\xc0\xac\x4a\xf4\x88\xac\xf4\x1f\x4b\x4b\xe3\xf9\xd5\xcd\x7a\x1c\x6c\x63\x4c\xb2\x69\xeb\x5a\xfe\xd0\x2a\x44\x6a\x1b\xaa\x6c\x63\xf5\xd2\x78\x80\x15\xa1\x54\x2f\x67\xd3\xdf\x3d\x59\x57\xc8\xfd\x2b\xc7\x4b\x4c\x79\x81\x85\x7d\xb2\x06\xe3\x2b\xb7\xd9\x2c\x90\x40\x0b\xac\xb0\xb0\xdd\x2d\xb2\x6a\x5c\x0d\x3b\xb1\x06\xae\xc9\xb5\x5b\xd5\x26\x97\x71\xb9\xbc\x7f\x4a\x84\xed\xe0\xf3\xeb\xa1\xd6\xf7\xab\x54\x53\x5f\xb2\xa1\xef\x4e\xcd\x73\xbb\x1f\x9d\x57\xc3\x3e\xa7\xea\x8b\x74\x89\x01\x35\xda\x1b\xab\x76\xc6\x0d\xea\x34\x12\xf5\xad\x6b\x73\x5b\x25\xf7\xb9\x53\x8e\x25\x11\x4e\x81\xc3\xb6\x05\x80\x34\x0d\x6e\xa5\xc0\xf5\xf3\x50\xbc\xfe\x9d\x5b\x6e\x0e\x4e\x2e\x3a\xa7\xbb\x50\x11\x29\x3d\x1c\x1a\x54\xd1\x42\x4c\x36\xd9\x05\x0d\x76\x86\x99\x78\xa5\xdd\xaf\x33\xc6\x5e\x20\x08\xc1\x5a\x47\xef\x3b\xf6\xc8\x44\xfd\x31\x47\xee\xd3\x51\x66\x7b\xc7\xdf\x7e\x45\x7a\xfd\x44\xa8\xd2\x47\x2e\x61\x8b\xcc\x91\xfd\x70\x57\x24\x77\xea\x92\xb9\x47\x87\xcc\x0e\xdd\x31\xf7\x6a\x8e\xf9\xfe\x8d\x31\x89\xa6\x98\xf6\x37\x6e\xda\xd8\x4a\xee\x60\x82\x1b\x5a\x66\xb4\x15\x9a\xb3\x98\x7d\xfa\x3e\xee\xd6\xf3\x91\xec\xf7\x58\xe1\x89\x24\x0a\x3f\xd2\x28\xa5\x39\x48\x7a\x36\x7d\xfe\xf4\x2f\x3f\x67\x8f\xb3\x7f\x41\xbf\x64\x79\xfe\xfc\xe7\x3f\x4f\x9e\x64\xbf\x3c\x7d\xdc\xf8\x01\x3d\x7b\x96\x4d\x9e\x64\x7f\xf9\xf3\xf3\x2f\xa7\x94\xaf\xbe\xfc\x8d\x8b\x7c\x81\xc4\xcd\x50\x2e\xbb\xba\x39\xd2\xb6\xd3\xee\x07\x91\xcb\xd9\x9f\xbe\x2e\x68\x1b\x4b\xa7\x86\xee\xda\x0b\xe2\xfa\x40\xb4\xb3\x74\x4b\x2c\x08\xbc\x1d\x4d\x16\xf1\x69\xe8\xb5\xf5\xc9\x55\xf2\x42\xa4\x8d\x84\x7a\x27\xce\x00\x3b\xa4\x8a\xc3\x1c\xd3\x02\xd6\xbc\xf4\x01\x51\xbf\x17\xc0\xf0\x57\x05\x5a\x7e\xa6\x4d\xbd\x63\xc6\x7d\x5b\x3a\xdc\xac\x8f\xd8\x54\x0d\x39\x9b\x52\xbe\x1a\x72\x31\xeb\x6a\x42\x88\xda\x3a\x8c\x32\xd2\x70\x51\x33\xc7\x06\xb8\x1d\x5a\x38\xee\xde\x52\xa1\x99\xf9\x32\xa1\x3c\xbb\xc9\xe6\x88\xb0\x8e\x6e\x87\x76\xa7\xc3\x86\x9c\xcb\x9f\xe9\x06\x41\xd8\x3f\x9c\x2d\x28\x42\x37\x2e\x93\xf8\xf8\x67\x0e\x9c\x2a\x8c\xdb\x9f\xb4\x76\x98\x80\x4d\x3f\x21\x2d\x05\xb9\xf9\x99\x6a\xf5\x88\x6d\x0f\x52\xab\x21\x53\xcf\x8f\x0b\x13\x5a\x93\xd0\xc7\xf7\x7c\x1e\xc7\x3f\xda\xbe\xe4\xf8\x50\xcd\xfc\x90\x14\x06\x8c\xd3\x42\xea\x1a\x5a\x73\x17\x8d\x6c\x3c\x48\x2e\x31\xb0\x2d\xaa\x08\x41\xfb\xe7\x18\x51\x42\x82\x30\x4e\xc9\x35\x1e\xe6\xc4\x09\x63\x2f\xd8\xb0\xc4\x55\xed\x79\x42\x7f\xa1\xb8\xaf\x5f\x37\xf6\x3c\x26\x1a\xcb\xb9\x8b\xca\x75\x91\x3b\x6a\x77\x89\x67\x47\xb6\x4d\x66\xe8\x32\x90\xa1\x44\x4b\xdc\x4f\x6f\x29\x82\xb3\x92\xa4\x3e\x06\x69\xcc\xd1\xe4\x8e\xc2\xd8\xb3\x76\x83\x7b\xaa\xcc\x45\xa7\x17\x89\x8a\x69\x53\xbd\xb7\x2f\xfb\x1b\x08\x8c\x9d\x0f\x52\x2d\x6e\x12\xaa\xfd\x3f\xe0\x6a\xeb\x21\xfd\x3d\xb9\xda\x60\xb8\x83\xb4\xb1\x55\xc5\x26\xee\xaf\x00\x2b\x0e\x72\x8e\x04\x36\xcf\xc6\xaa\x0d\x6a\x6d\x4f\xfa\x0b\xc1\xbf\xae\xf7\xb3\xac\xc6\xc3\x71\x22\xf3\x4a\xac\x99\x5d\xd4\xd0\x2d\x57\x8f\xd0\x0b\xb2\x73\x82\xdb\x83\x83\xdb\xff\x0d\x00\x00\xff\xff\x6f\x2e\xfd\x2b\x74\x54\x00\x00" func packnft_alldayCdcBytes() ([]byte, error) { return bindataRead( diff --git a/pds/lib/go/templates/internal/assets/assets.go b/pds/lib/go/templates/internal/assets/assets.go index 7235329..8b33a83 100644 --- a/pds/lib/go/templates/internal/assets/assets.go +++ b/pds/lib/go/templates/internal/assets/assets.go @@ -780,7 +780,7 @@ func transactionsPacknftOpen_requestCdc() (*asset, error) { return a, nil } -var _transactionsPacknftPublic_reveal_packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6a\xdc\x30\x10\xbd\xfb\x2b\x1e\x7b\x08\x5e\x6a\x96\x16\x4a\x0f\xa2\x3e\x2c\x49\x03\xbe\x2c\xa5\x9b\x9e\x8c\x0f\xb3\xd2\xec\xae\x88\x2c\x0b\x49\x4e\x5b\x96\xfd\xf7\xa2\x38\x76\x62\x87\xe8\x60\x4b\xf3\xde\xcc\x1b\xe9\x8d\x6e\x5d\xe7\x23\x7e\x92\x7c\xdc\xdd\x3f\xe0\xe8\xbb\x16\xab\x97\xd3\x2a\x1b\xd1\xbb\xfd\x88\xdc\xed\xa7\x68\x35\x4f\xaa\x96\x59\x3f\xfe\x52\xeb\x0c\xbf\x32\x5e\x03\xab\x2c\x8b\x9e\x6c\x20\x19\x75\x67\x91\x3b\x92\x8f\x95\x12\xf8\x5d\xd9\xf8\xed\x6b\x01\x7b\x8c\xb7\x9d\x8d\x9e\x64\xdc\x2a\xe5\x83\x40\x9d\xfe\x1c\x42\x33\x03\x77\xd4\xb2\x40\xbd\x8f\x5e\xdb\xd3\x00\x55\x2a\xb1\x87\x42\x4d\x81\x40\x26\x0a\x0c\x84\x35\x2e\x19\x00\x38\xcf\x8e\x3c\xe7\x2e\x51\xb7\x7d\x3c\x6f\xa5\xec\x7a\x1b\x47\x3c\x2d\x0a\x81\x7d\xcc\xa7\x73\x5a\xcb\xae\x36\x86\xed\x29\x9e\x51\x96\xcb\x9e\x46\xe4\xe6\x06\x1f\x55\x78\x4b\x1b\x0a\x54\x6a\xac\x58\xcc\xb3\x5a\x0e\x81\x4e\x2c\xb0\xda\xdd\x3f\x04\xb4\x7d\x88\x38\x30\x8e\xbd\x31\xff\xa0\x38\x48\xaf\x0f\xac\x56\x53\xce\x7a\xda\x19\x8e\x20\xef\x05\xea\xcb\x68\xcf\xe6\xb6\x33\x86\x65\xd4\x07\xc3\xd7\x06\x25\xea\x66\xa2\x3f\x91\x87\x46\x89\xcf\x53\xe4\xcf\x59\x1b\x86\xc6\xf7\x0f\x2f\x7f\x99\xb5\x9a\x04\x03\xca\x34\x31\x6f\x85\x72\x1a\xdc\x13\xef\xca\xd4\xba\x29\x20\x67\x76\x2e\x1e\xe9\x99\xa1\x95\x78\x79\xa2\x5a\x37\xeb\x99\x24\x79\xbf\x21\xe7\xd8\xaa\x3c\xcc\x91\x74\x15\x8d\x4f\xf8\x32\x45\xaf\xd9\xb4\x1d\x9f\xc3\xf5\x07\xa3\xe5\x2f\x7e\x62\x32\x73\xbb\x93\xe6\x30\x98\xc5\x3b\x17\x83\x48\xba\x8b\xf8\x30\x6b\xe9\x3b\xf4\x71\xcd\xae\x59\xf6\x3f\x00\x00\xff\xff\x40\x35\x57\x54\x61\x03\x00\x00" +var _transactionsPacknftPublic_reveal_packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x8a\xdb\x30\x10\xbd\xfb\x2b\x1e\x3e\x2c\x0e\x35\xa1\x85\xd2\x83\xa8\x0f\x61\xb7\x0b\xbe\x84\xd2\x6c\x4f\xc6\x07\x45\x9a\x24\x62\x65\x59\x48\xf2\xb6\x25\xe4\xdf\x8b\xd6\x6b\xef\xca\x21\x3a\xd8\xd2\x7b\x6f\x66\xa4\x79\xa3\x3a\xdb\xbb\x80\x9f\x5c\x3c\x6f\x1f\x9f\x70\x70\x7d\x87\xfc\xed\x94\x67\x13\xfb\xb0\x9b\x98\x87\xdd\x8c\xd6\x69\x50\xbd\x8c\xfa\xf1\x97\x77\x56\xd3\xbb\xe2\x1d\xc8\xb3\x2c\x38\x6e\x3c\x17\x41\xf5\x06\x85\xe5\xe2\xb9\x96\x0c\xbf\x6b\x13\xbe\x7d\x2d\x61\x0e\xe1\xbe\x37\xc1\x71\x11\x36\x52\x3a\xcf\xd0\xc4\x3f\x79\xdf\x26\xe4\x96\x77\x14\xc9\x5d\x70\xca\x1c\x47\xae\x96\x11\x19\x33\xb5\x25\x3c\xd7\x81\x61\x14\xac\x70\xce\x00\xc0\x3a\xb2\xdc\x51\x61\xa3\x74\x33\x84\xd3\x46\x88\x7e\x30\x61\xe2\xe3\xe2\xde\x93\x0b\xc5\x7c\x8e\x6b\x79\xad\xb5\x26\x73\x0c\x27\x54\xd5\xd5\xa5\x26\xea\xee\xee\x56\x86\x44\x36\x66\xa8\xe5\x04\x94\x49\x54\x47\xde\xf3\x23\x31\xe4\xdb\xc7\x27\x8f\x6e\xf0\x01\x7b\xc2\x61\xd0\xfa\x1f\x24\x79\xe1\xd4\x9e\x64\x3e\xc7\xac\xe6\x9d\xa6\x00\xee\x1c\x43\x73\x9e\xfc\x59\xdf\xf7\x5a\x93\x08\x6a\xaf\xe9\xd2\xa2\x42\xd3\xce\xf2\x17\xee\xa0\x50\xe1\xf3\x8c\xfc\x39\x29\x4d\x50\xf8\x7e\xf3\xf1\xe7\xe4\xaa\xb1\xa0\x47\x15\x47\xe6\x63\xa1\x82\x8f\xf6\xb1\xab\x34\x8d\x6a\x4b\x88\x0f\x3d\x61\x57\x4d\x7a\x95\x28\xc9\xde\x5a\xd4\xa8\x76\x95\xd4\xe4\xce\xad\xb9\xb5\x64\x64\xe1\x53\x26\xbe\x45\xe1\x13\xbe\xcc\xe8\x25\x9b\xb7\x53\x3f\xec\xb0\xd7\x4a\xfc\xa2\x17\xe2\x3a\xf5\x3b\xd6\x1c\x47\xb3\x5c\xba\xe8\x59\x2c\x9b\xc2\xe3\xa8\xc5\xef\xc2\x89\x4b\x76\xc9\xb2\xff\x01\x00\x00\xff\xff\x38\xd8\x28\xa2\x6a\x03\x00\x00" func transactionsPacknftPublic_reveal_packnftCdcBytes() ([]byte, error) { return bindataRead( @@ -840,7 +840,7 @@ func transactionsPacknftTransfer_packnftCdc() (*asset, error) { return a, nil } -var _transactionsPdsCreate_distributionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\x4d\x8f\x9b\x30\x10\xbd\xf3\x2b\xa6\x1c\x56\x46\xca\xb2\x77\x9a\x66\xd5\x26\x8d\x94\x4b\x16\x89\xa8\x3d\x4f\xcc\x6c\xb0\x02\x36\xb2\xcd\xa6\x55\xc4\x7f\xaf\xcc\x57\x0c\xbd\xb4\xbe\x24\xbc\x19\x3f\xbf\x37\x1f\xa2\xaa\x95\xb6\x90\xee\x32\x78\xd7\xaa\x82\x30\xdd\x65\x61\x30\xa0\xf7\x7b\x9c\x22\xbf\x1e\xf7\xa7\x23\x56\xd4\xb6\x63\x4a\x8f\x4d\x69\x87\x01\x18\xc2\x87\x65\xfc\xa8\xe4\xbe\x91\x17\x71\x2e\xe9\xa4\xae\x24\x87\xbc\x25\x1c\x06\x81\xd5\x28\x0d\x72\x2b\x94\x64\x56\xd8\x92\x12\xc8\xac\x16\xf2\xb2\x82\x8a\x2c\xe6\x68\x31\x81\x7b\x0f\x8d\xa1\x36\x82\x7b\x00\x00\x50\x6b\xaa\x51\x13\x30\x61\x4c\x43\x3a\x01\x6c\x6c\xc1\xbe\x29\xad\xd5\xed\x07\x96\x0d\xad\x60\x8b\x35\x9e\x45\x29\xac\x20\x13\xc1\xd3\x57\xce\x55\x23\xad\x23\xe8\x18\xdc\x29\xc9\x82\x80\x2f\xd0\x93\xc4\xc6\x2a\x8d\x17\x8a\xcf\x1d\xcd\xba\xa3\x4c\x77\x59\xbc\x13\xc6\x6e\x35\xa1\x93\x1a\xc1\x93\x83\x9c\xed\x43\x77\x6b\xc3\x9c\xc3\x04\xe6\x68\xd6\x53\xa5\x68\x8b\x68\x7a\xce\x9d\xd7\x57\xa8\x51\x0a\x0e\x2c\xec\x5f\x85\x5c\x91\x01\xa9\x2c\x14\xf8\x41\xf0\xa0\x00\x4d\x46\x35\x9a\x53\x18\x3d\x14\xbf\xbc\x0c\x62\xa1\x6a\xcc\x70\x05\x61\xec\x09\x57\x65\x49\x5d\x45\x67\x16\x6f\xc2\x16\xb9\xc6\xdb\x16\xeb\x87\x59\xee\x95\x67\x72\xde\xc5\x7a\xe3\xcb\x8e\xc5\x3f\x07\x96\x08\x9e\xee\x7f\x05\x53\xad\x3e\x44\x4e\xba\xdd\x30\xcf\x3a\x13\x39\x49\x2b\xde\x85\xeb\x50\xc8\x31\x27\xc9\xe9\xfb\x2f\xac\xea\x92\x8e\xfb\xd3\x76\x92\x1b\x46\x9f\xa2\xcf\x33\xcd\xaa\x26\x8d\x56\xe9\xff\xd2\x3c\x4e\x63\xfc\xd6\xdd\xc6\x73\x49\x4e\xed\x04\x1f\xde\x06\xd6\x76\xc3\x96\xf3\x1e\x8f\x31\xbf\x75\x0f\x4d\x68\x0c\x69\xcb\xbc\x52\xc6\xbc\x20\x7e\x65\x91\x1b\x57\x63\xf0\x42\x09\x38\x8f\xd2\xb5\xb2\x9f\xa0\xa9\xf0\x30\x09\xff\x1d\x46\x4b\x4a\xcf\xe9\x3f\x50\x8e\xd9\x73\xca\x59\xe9\x0c\x87\xf5\x73\x37\x8f\xdc\x0d\x2d\x65\x05\x6a\xca\xfd\x75\x00\xe6\xcf\x44\xe2\x7f\xac\xfc\xca\x27\xb3\x36\x3c\x94\x8b\x81\xd9\x2d\x06\x33\x23\x7d\x02\xeb\x67\xc3\x57\x30\x2c\x73\xf7\xe3\xef\xf2\xf8\xaf\xe7\x69\x83\x36\xf8\x13\x00\x00\xff\xff\x00\x66\x67\x20\x91\x04\x00\x00" +var _transactionsPdsCreate_distributionCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x94\x53\xcd\xae\xda\x3c\x10\xdd\xe7\x29\xe6\xcb\x02\x39\x12\x37\x77\x9f\x8f\x72\xd5\x42\x91\xd8\x70\x91\x82\xda\xf5\xe0\xcc\x25\x16\x89\x1d\xd9\x4e\x69\x85\xf2\xee\x95\xf3\xeb\xa4\x9b\xd6\x1b\xc8\x19\xcf\xf1\x39\xf3\x23\xca\x4a\x69\x0b\xe7\x7d\x0a\x1f\x5a\x95\x10\x9e\xf7\x69\x18\xf4\xe8\xf3\x19\x9f\x91\xdf\x4f\x87\xcb\x09\x4b\x6a\x9a\xe1\x4a\x87\x8d\xd7\x8e\x3d\xd0\x87\x8f\xcb\xf8\x49\xc9\x43\x2d\x6f\xe2\x5a\xd0\x45\xdd\x49\xf6\xf7\x96\x70\x18\x04\x56\xa3\x34\xc8\xad\x50\x92\x59\x61\x0b\x4a\x20\xb5\x5a\xc8\xdb\x1a\x4a\xb2\x98\xa1\xc5\x04\x9e\x1d\x34\x84\x9a\x08\x9e\x01\x00\x40\xa5\xa9\x42\x4d\xc0\x84\x31\x35\xe9\x04\xb0\xb6\x39\xfb\xa2\xb4\x56\x8f\x6f\x58\xd4\xb4\x86\x1d\x56\x78\x15\x85\xb0\x82\x4c\x04\xab\xcf\x9c\xab\x5a\x5a\x47\xd0\x32\xb8\x53\x90\x05\x01\x9f\xa0\x23\x89\x8d\x55\x1a\x6f\x14\x5f\x5b\x9a\x4d\x4b\x79\xde\xa7\xf1\x5e\x18\xbb\xd3\x84\x4e\x6a\x04\x2b\x07\x39\xdb\xc7\x36\x6b\xcb\x9c\xc3\x04\xe6\x68\xda\x51\x9d\xd1\xe6\xd1\xf8\x9c\x3b\x6f\x6f\x50\xa1\x14\x1c\x58\xd8\xbd\x0a\x99\x22\x03\x52\x59\xc8\xf1\x07\xc1\x44\x01\x9a\x8c\xaa\x35\xa7\x30\x9a\x14\xbf\xbe\xf6\x62\xa1\xac\x4d\x9f\x82\x30\xf4\x84\xab\xa2\xa0\xb6\xa2\x33\x8b\x0f\x61\xf3\x4c\xe3\x63\x87\xd5\x64\x96\x7b\xe5\x19\x9d\xb7\xb1\xce\xf8\xb2\x63\xf1\xf7\x9e\x25\x82\xd5\xf3\x8f\xe0\x6e\x7c\xb9\xd9\x32\xcf\x3c\x13\x19\x49\x2b\x3e\x84\xeb\x51\xc8\x31\x23\xc9\xe9\xeb\x4f\x2c\xab\x82\x4e\x87\xcb\x94\x16\x46\xff\x45\xff\xcf\x54\xab\x8a\x34\x5a\xa5\xff\x49\xf5\x30\x8f\xf1\x7b\x9b\x8d\xd7\x82\x9c\xde\x11\x3e\xbe\xf7\xac\xcd\x96\x2d\x27\x3e\x1e\x62\x7e\xf3\x26\x4d\x68\x0c\x69\xcb\xbc\x62\xc6\x3c\x27\x7e\x67\x91\x1b\x58\x63\xf0\x46\x09\x38\x8f\xd2\x35\xb3\x9b\xa1\xb1\xf4\x30\x0a\xff\x15\x46\x4b\x4a\xcf\xe9\x5f\x50\x0e\xb7\xe7\x94\xb3\xd2\x19\x0e\x9b\x97\x76\x22\xb9\x1b\x5b\x4a\x73\xd4\x94\xf9\x0b\x01\xcc\x9f\x8a\xc4\xff\x58\xfb\x95\x4f\x66\x6d\x98\x94\x8b\x9e\xd9\xad\x06\x33\x03\x7d\x02\x9b\x17\xc3\xd7\xd0\xaf\x73\xfb\xe3\x6f\xf3\xf0\xaf\xe3\x69\x82\x26\xf8\x1d\x00\x00\xff\xff\x35\x7e\x98\xe6\x93\x04\x00\x00" func transactionsPdsCreate_distributionCdcBytes() ([]byte, error) { return bindataRead( @@ -900,7 +900,7 @@ func transactionsPdsMint_packnftCdc() (*asset, error) { return a, nil } -var _transactionsPdsOpen_packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x38\x1f\x0a\x1b\x28\x7c\x1a\x76\x30\x96\x16\x59\xb2\x00\x39\x2c\x30\x90\x74\x97\x62\x07\x5a\x66\x12\x21\x8e\x24\x48\x74\x3b\xa0\xc8\xbf\x0f\xb2\x1c\xbb\x76\x16\x5f\x28\x3f\x3e\x52\x8f\xd4\x93\x67\xa3\x2d\x43\xb1\xdc\xc2\xde\xea\x33\xc4\xc5\x72\x1b\x47\x1d\xfa\xf3\x2f\x9e\x4d\x4d\x9b\xd5\xae\x4b\x0e\x40\xcf\xd9\x68\xb5\x6a\xd4\x41\x96\x35\xed\xf4\x89\x54\xc7\x9c\xc2\x71\x14\xb1\x45\xe5\x50\xb0\xd4\x0a\x92\x08\x00\xa0\x92\x8e\xd7\x55\x0e\x2f\x6b\xc5\xdf\xbe\x3e\xb6\x98\x41\x71\x9a\x62\x6a\xcf\x0b\xad\xd8\xa2\xe0\x79\x55\x59\x97\xc3\xab\x8f\xe4\xdc\x9f\x1b\xc2\x06\xcf\x94\xc3\xeb\x96\xad\x54\x87\x21\xbd\xae\x7c\x55\x68\xda\xa1\xfa\x5d\x91\xcd\xa1\xeb\x14\x30\xa1\xeb\x9a\x5a\x89\x5b\xd6\x16\x0f\x54\x20\x1f\x73\xf8\xf4\x13\xa5\xf0\x11\x84\x5a\x32\x68\x29\x31\xbe\x33\x36\x7c\x4c\x7e\x68\x6b\xf5\xfb\x6f\xac\x1b\x4a\xe1\x61\x2e\x84\x6e\x14\x5f\xe9\xfe\xab\x89\x41\xa0\x81\x19\x98\xca\x65\x2e\x34\xcd\xca\xb6\xec\xfb\x43\xb1\xdc\x66\x4b\xe9\xd8\xca\xb2\xf1\x0a\x7e\xa1\xc2\x03\xd9\xa7\xc4\x6f\x34\x87\x6b\xba\x83\x3f\x49\x4a\xfb\x0b\xfc\xf7\xfc\x0c\x06\x95\x14\x49\x6c\x2a\x07\x95\x26\x07\x4a\x33\x1c\xf1\x8d\xc0\xd7\xc3\x39\x34\x88\xd3\x91\x2e\x4b\xe2\x6d\x2e\x04\xc3\x0c\x0e\xc4\x9d\xf8\xa4\xdd\xd1\x2d\x11\x66\x3d\x3f\x13\x68\xb0\x94\xb5\x64\x49\xae\x9f\xe5\x63\xfa\xfe\xd9\xa2\xdf\x6c\xd1\x94\xb5\x14\x97\xa7\x24\x1c\xfc\x04\x89\xac\x48\xb1\xdc\x4b\xff\x20\xb1\xc0\x8a\x94\xa0\xc1\x6c\x43\x6d\x9c\x7e\xb9\x37\xed\x8b\xc2\xb2\x26\x60\x0d\x41\x04\x0c\x55\x10\x6e\x02\x4b\x7b\xb2\xbe\x35\xec\xb5\xf5\x13\x48\x23\x49\x71\x9c\x46\x7d\x4f\x81\x26\xd3\x86\x54\x81\xe2\xb4\x59\xed\x92\xd1\x65\x57\xbf\x86\xf8\x38\xca\x5d\x7d\x1b\xe2\x38\x77\xeb\xdf\x29\x72\x97\x1f\xec\x3c\x01\x6e\xd8\xad\xbb\x43\x1c\xe7\xfc\x2b\x2d\xd0\xe4\xed\x61\x9c\xba\x63\xf5\xff\xc2\x43\x65\xd8\xfe\x25\xba\x44\xff\x02\x00\x00\xff\xff\xd2\x57\x44\x79\x3a\x04\x00\x00" +var _transactionsPdsOpen_packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x52\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x38\x1f\x0a\x1b\x28\x7c\x1a\x76\x30\x96\x16\x59\xb2\x00\x39\x2c\x30\x90\x74\x97\x61\x07\x5a\x66\x12\x21\x8e\x24\x48\x74\x3b\xa0\xc8\xbf\x0f\xb2\x1c\xbb\x76\x1a\x5f\x28\x3f\x3e\x52\x8f\xd4\x93\x67\xa3\x2d\x43\xb1\xdc\xc2\xde\xea\x33\xc4\xc5\x72\x1b\x47\x1d\xfa\xf3\x1f\x9e\x4d\x4d\x9b\xd5\xae\x4b\x0e\x40\xcf\xd9\x68\xb5\x6a\xd4\x41\x96\x35\xed\xf4\x89\x54\xc7\x9c\xc2\x71\x14\xb1\x45\xe5\x50\xb0\xd4\x0a\x92\x08\x00\xa0\x92\x8e\xd7\x55\x0e\x2f\x6b\xc5\xdf\xbe\x3e\xb6\x98\x41\x71\x9a\x62\x6a\xcf\x0b\xad\xd8\xa2\xe0\x79\x55\x59\x97\xc3\x1f\x1f\xc9\xb9\xbf\x37\x84\x0d\x9e\xc9\x13\xb6\x6c\xa5\x3a\x0c\xf9\x75\xe5\xd1\xd0\xb5\x43\xf5\x9b\x22\x9b\x43\xd7\x2a\x60\x42\xd7\x35\xb5\x1a\xb7\xac\x2d\x1e\xa8\x40\x3e\xe6\xf0\xe1\x27\x4a\xe1\x3d\x28\xb5\x64\xd0\x52\x62\x7c\x67\x6c\xf8\x98\xfc\xd0\xd6\xea\xb7\xdf\x58\x37\x94\xc2\xc3\x5c\x08\xdd\x28\xbe\xd2\xfd\x57\x13\x83\x40\x03\x33\x30\x95\xcb\x5c\x68\x9a\x95\x6d\xd9\xf7\x87\x62\xb9\xcd\x96\xd2\xb1\x95\x65\xe3\x15\xfc\x42\x85\x07\xb2\x4f\x89\x5f\x69\x0e\xd7\x74\x07\x7f\x90\x94\xf6\x17\xf8\xef\xf9\x19\x0c\x2a\x29\x92\xd8\x54\x0e\x2a\x4d\x0e\x94\x66\x38\xe2\x2b\x81\xaf\x87\x73\x68\x10\xa7\x23\x5d\x96\xc4\xeb\x5c\x08\x86\x19\x1c\x88\x3b\xf1\x49\xbb\xa3\x5b\x22\xcc\x7a\x7e\x26\xd0\x60\x29\x6b\xc9\x92\x5c\x3f\xcb\xfb\xd4\x00\xd9\xa2\xdf\x6c\xd1\x94\xb5\x14\x97\xa7\x24\x1c\xfc\x04\x89\xac\x48\xb1\xdc\x4b\xff\x20\xb1\xc0\x8a\x94\xa0\xc1\x6d\x43\x6d\x9c\x7e\xb9\x37\xed\x8b\xc2\xb2\x26\x60\x0d\x41\x04\x0c\x55\x10\x6e\x02\x4b\x7b\xb2\xbe\x35\xec\xb5\xf5\x13\x48\x23\x49\x71\x9c\x46\x7d\x4f\x81\x26\xd3\x86\x54\x81\xe2\xb4\x59\xed\x92\xd1\x65\x57\xc3\x86\xf8\x38\xca\x5d\x8d\x1b\xe2\x38\x77\x6b\xe0\x29\x72\x97\xdf\xf9\x79\x8a\xdc\xf0\x5b\x7f\x87\x38\xce\xf9\x77\x5a\xa0\xc9\xdb\xc3\x38\x75\xc7\xec\x9f\xc2\x43\x65\xd8\xff\x25\xba\x44\xff\x03\x00\x00\xff\xff\x3c\xe8\xde\x53\x3d\x04\x00\x00" func transactionsPdsOpen_packnftCdcBytes() ([]byte, error) { return bindataRead( @@ -920,7 +920,7 @@ func transactionsPdsOpen_packnftCdc() (*asset, error) { return a, nil } -var _transactionsPdsReveal_packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x54\x41\x6f\xdb\x3c\x0c\xbd\xfb\x57\xf0\xf3\x21\xb0\x81\xc2\xa7\x0f\x3b\x18\x4b\x8b\xb6\x59\x81\x1e\x16\x04\x4d\xbb\x4b\xb1\x03\x23\x33\x89\x50\x45\xd2\x24\xba\x1d\x10\xe4\xbf\x0f\xb2\x1c\x3b\xb1\xd3\xfd\x80\xf9\x60\x39\x8f\x8f\xd4\xd3\x13\x19\xb9\xb3\xc6\x31\x2c\x66\x4b\x58\x3b\xb3\x83\x74\x31\x5b\xa6\x49\x8b\xee\xf7\xc5\x02\xc5\xdb\xfc\xe1\x79\x8e\x3b\x3a\x1c\x8e\x94\x88\x75\xb4\x6f\xbf\x71\x67\x15\xcd\x1f\x9e\x5b\x42\x0f\x74\x9c\xb9\xd1\x0f\xb5\xde\xc8\x95\xa2\x67\xf3\x46\xba\x65\x0e\xe1\x34\x49\xd8\xa1\xf6\x28\x58\x1a\x0d\x59\x02\x00\x50\x49\xcf\x8f\x55\x09\x2f\x8f\x9a\xbf\xfc\x7f\xd5\x60\x16\xc5\xdb\x10\xd3\x6b\xbe\x37\x9a\x1d\x0a\xbe\xad\x2a\xe7\x4b\x78\x0d\x2b\x79\xff\x73\x44\x08\x07\x2a\xe1\x75\xc9\x4e\xea\x4d\x1f\x7e\xac\x42\x56\x2c\xda\xa2\x1e\x15\x97\x10\x89\x11\x31\x1f\x9a\x5c\x09\x6d\xed\x16\xb3\xa4\x9f\xe8\x57\x4d\x9e\x4b\xb8\x33\x46\x45\x58\x18\xa5\xa8\x39\xcb\x92\x8d\xc3\x0d\x2d\x90\xb7\xa1\x5a\xf7\x23\xc9\x61\x1f\x4f\xe4\xc8\xa2\xa3\xcc\x06\x09\x58\xf3\x36\xbb\x33\xce\x99\x8f\x1f\xa8\x6a\xca\x61\x72\x2b\x84\xa9\x35\x1f\xe9\xe1\x51\xc4\x20\xd0\xc2\x14\x6c\xe5\x0b\x1f\x8b\x16\xab\x26\xed\xeb\x64\x31\x5b\x16\x33\xe9\xd9\xc9\x55\x1d\x14\x7c\x47\x8d\x1b\x72\xd7\x59\xb0\xbe\x84\x63\xb8\x85\x4f\x24\xe5\xdd\x06\xe1\xb9\xb9\x01\x8b\x5a\x8a\x2c\xb5\x95\x87\xca\x90\x07\x6d\x18\xb6\xf8\x4e\x10\xf2\x61\x17\x0b\xa4\xf9\x99\xae\xa0\x6a\xd8\x3f\xad\xb4\x80\x3d\x91\x75\xe4\x49\x33\x06\x69\x99\xac\xca\xf6\x4a\x2f\x6f\x0e\x59\x3a\x37\xe0\x6b\xb1\x6d\x68\x69\x9e\x74\x34\xb9\x3e\x35\x1f\x26\x13\xb0\x85\x67\xe4\xda\xc3\xf4\x82\x84\x65\x13\x2a\x9e\xe8\x9d\x50\x51\x75\xe2\xe6\x51\xb9\x23\xf1\x7e\x2b\x04\xc3\x14\x36\xc4\xad\xed\x59\x73\xe9\xf9\x45\x32\x4c\xbb\x9c\x42\xa0\xc5\x95\x54\x92\x25\xf9\xee\x26\xf6\xc3\x36\x2f\xee\xbb\xbe\x58\xd4\x2b\x25\xc5\xe1\x3a\x8b\x1f\xc1\xff\x4c\x56\xa4\x59\xae\x65\xe8\xb2\x54\x60\x45\x5a\x50\x3f\x53\x7d\x6e\x9a\xff\x77\xae\xe8\xfc\xbe\x5e\x34\xae\x14\x01\x1b\x88\x42\xa0\xcf\x84\xb8\x1b\x38\x5a\x93\x0b\xe5\x61\x6d\x5c\x38\x85\xb4\x92\x34\xa7\xe7\x65\x05\xda\x22\x78\xdc\x3a\x99\x8d\xf6\x3c\x4e\x68\x5c\xaf\x46\xf1\xe3\xb4\xc6\x75\x1c\x1f\x4f\xee\x10\xf9\x6b\x4e\x1c\xe6\x01\x70\x31\xa3\x99\xef\xb8\x8e\xe3\xe1\x12\xef\xd1\x96\xcd\xc7\x38\xfc\xc9\x2c\x5f\x84\xcf\x92\x7b\x33\x0f\x40\xca\xd3\xa0\xe7\x82\xbb\xae\x69\xc7\x7f\xdc\xdf\xf8\x4f\x1a\xde\x9f\xd9\x93\xc4\xf7\x21\xf9\x13\x00\x00\xff\xff\xf6\x72\x5f\xc8\x97\x06\x00\x00" +var _transactionsPdsReveal_packnftCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xdc\x54\xc1\x6e\xdb\x30\x0c\xbd\xfb\x2b\x38\x1f\x02\x1b\x28\x7c\x1a\x76\x30\x96\x16\x6d\xb3\x02\x3d\x2c\x08\x9a\x76\x97\x61\x07\x46\x66\x12\xa1\x8a\xa4\x49\x74\x3b\x20\xc8\xbf\x0f\xb2\x1c\x3b\xb1\xd3\x7d\xc0\x7c\xb0\x9c\xc7\x47\xea\xe9\x89\x8c\xdc\x59\xe3\x18\x16\xb3\x25\xac\x9d\xd9\x41\xba\x98\x2d\xd3\xa4\x45\xf7\xfb\x62\x81\xe2\x75\xfe\xf0\x3c\xc7\x1d\x1d\x0e\x47\x4a\xc4\x3a\xda\xb7\x3f\xb8\xb3\x8a\xe6\x0f\xcf\x2d\xa1\x07\x3a\xce\xdc\xe8\x87\x5a\x6f\xe4\x4a\xd1\xb3\x79\x25\xdd\x32\x87\x70\x9a\x24\xec\x50\x7b\x14\x2c\x8d\x86\x2c\x01\x00\xa8\xa4\xe7\xc7\xaa\x84\x97\x47\xcd\x5f\x3e\x5f\x35\x98\x45\xf1\x3a\xc4\xf4\x9a\xef\x8d\x66\x87\x82\x6f\xab\xca\xf9\x12\x7e\x86\x95\xbc\xff\x35\x22\x84\x03\x05\xc2\x92\x9d\xd4\x9b\x3e\xfe\x58\x05\x34\x56\x6d\x51\x8f\x8a\x4b\x88\xc4\x88\x98\x77\x4d\xae\x84\xb6\x78\x8b\x59\xd2\x4f\xf4\xbb\x26\xcf\x25\xdc\x19\xa3\x22\x2c\x8c\x52\xd4\x1c\x66\xc9\xc6\xe1\x86\x16\xc8\xdb\x50\xad\xfb\x91\xe4\xb0\x8f\x47\x72\x64\xd1\x51\x66\x83\x04\xac\x79\x9b\xdd\x19\xe7\xcc\xfb\x0f\x54\x35\xe5\x30\xb9\x15\xc2\xd4\x9a\x8f\xf4\xf0\x28\x62\x10\x68\x61\x0a\xb6\xf2\x85\x8f\x45\x8b\x55\x93\xf6\x75\xb2\x98\x2d\x8b\x99\xf4\xec\xe4\xaa\x0e\x0a\xbe\xa3\xc6\x0d\xb9\xeb\x2c\x78\x5f\xc2\x31\xdc\xc2\x27\x92\xf2\x6e\x83\xf0\xdc\xdc\x80\x45\x2d\x45\x96\xda\xca\x43\x65\xc8\x83\x36\x0c\x5b\x7c\x23\x08\xf9\xb0\x8b\x05\xd2\xfc\x4c\x57\x50\x35\x6c\xa0\x56\x5a\xc0\x9e\xc8\x3a\xf2\xa4\x19\x83\xb4\x4c\x56\x65\x7b\xa7\x97\x37\x87\x2c\x9d\x1b\xf0\xb5\xd8\x36\xb4\x34\x4f\x3a\x9a\x5c\x9f\x9a\x0f\x93\x09\xd8\xc2\x33\x72\xed\x61\x7a\x41\xc2\xb2\x09\x15\x4f\xf4\x46\xa8\xa8\x3a\x71\xf3\xa8\xdc\x91\x78\xbb\x15\x82\x61\x0a\x1b\xe2\xd6\xf6\xac\xb9\xf4\xfc\x22\x19\xa6\x5d\x4e\x21\xd0\xe2\x4a\x2a\xc9\x92\x7c\x77\x13\xfb\x61\x9f\x17\xf7\x5d\x5f\x2c\xea\x95\x92\xe2\x70\x9d\xc5\x8f\xe0\x7f\x26\x2b\xd2\x2c\xd7\x32\x74\x59\x2a\xb0\x22\x2d\xa8\x1f\xaa\x3e\x37\xcd\x3f\x9d\x2b\x3a\xbf\xaf\x17\x8d\x2b\x45\xc0\x06\xa2\x10\xe8\x33\x21\xee\x06\x8e\xd6\xe4\x42\x79\x58\x1b\x17\x4e\x21\xad\x24\xcd\xe9\x79\x59\x81\xb6\x08\x1e\xb7\x4e\x66\xa3\x3d\x8f\x23\x1a\xd7\xab\x51\xfc\x38\xae\x71\x1d\xc7\xc7\xa3\x3b\x44\xfe\x99\xd3\x4e\xf3\x10\xb9\x98\xd3\x4c\x78\x5c\xc7\xf1\x70\x8d\xf7\x68\xcb\xe6\x63\x1c\xfe\x60\x9a\x2f\xc2\x67\xc9\xbd\x9d\x07\x20\xe5\x69\xd0\x75\xc1\x5f\xd7\x34\xe4\x7f\xef\x70\xfc\x37\x0d\xef\x8f\x0c\x4a\xe2\xfb\x90\xfc\x0d\x00\x00\xff\xff\x4c\x52\x71\x77\x9c\x06\x00\x00" func transactionsPdsReveal_packnftCdcBytes() ([]byte, error) { return bindataRead( diff --git a/pds/transactions/packNFT/public_reveal_packNFT.cdc b/pds/transactions/packNFT/public_reveal_packNFT.cdc index 8dafeb7..1f6cdc9 100644 --- a/pds/transactions/packNFT/public_reveal_packNFT.cdc +++ b/pds/transactions/packNFT/public_reveal_packNFT.cdc @@ -3,25 +3,26 @@ import PDS from "PDS" import IPackNFT from "IPackNFT" import ExampleNFT from "ExampleNFT" -transaction (packId: UInt64, nftContractAddrs: [Address], nftContractName: [String], nftIds: [UInt64], salt: String) { +transaction (packId: UInt64, nftContractAddrs: [Address], nftContractNames: [String], nftIds: [UInt64], salt: String) { prepare(pds: AuthAccount) { assert( - nftContractAddrs.length == nftContractName.length && - nftContractName.length == nftIds.length, + nftContractAddrs.length == nftContractNames.length && + nftContractNames.length == nftIds.length, message: "NFTs must be fully described" ) let arr: [{IPackNFT.Collectible}] = [] var i = 0 while i < nftContractAddrs.length { - let s = PDS.Collectible(address: nftContractAddrs[i], contractName: nftContractName[i], id: nftIds[i]) + let s = PDS.Collectible(address: nftContractAddrs[i], contractName: nftContractNames[i], id: nftIds[i]) arr.append(s) i = i + 1 } PackNFT.publicReveal( - id: packId, - nfts: arr, - salt: salt) + id: packId, + nfts: arr, + salt: salt + ) } } diff --git a/pds/transactions/pds/create_distribution.cdc b/pds/transactions/pds/create_distribution.cdc index f2e8a2c..1245857 100644 --- a/pds/transactions/pds/create_distribution.cdc +++ b/pds/transactions/pds/create_distribution.cdc @@ -10,7 +10,7 @@ transaction(title: String, metadata: {String: String}) { ?? panic ("issuer does not have PackIssuer resource") // issuer must have a PackNFT collection - let withdrawCap = issuer.capabilities.storage.issue(StoragePath(identifier: "cadenceExampleNFTCollection")!); + let withdrawCap = issuer.capabilities.storage.issue(StoragePath(identifier: "cadenceExampleNFTCollection")!); let operatorCap = issuer.capabilities.storage.issue({{.PackNFTName}}.OperatorStoragePath); assert(withdrawCap.check(), message: "cannot borrow withdraw capability") assert(operatorCap.check(), message: "cannot borrow operator capability") diff --git a/pds/transactions/pds/open_packNFT.cdc b/pds/transactions/pds/open_packNFT.cdc index 10dde60..540ea62 100644 --- a/pds/transactions/pds/open_packNFT.cdc +++ b/pds/transactions/pds/open_packNFT.cdc @@ -6,7 +6,7 @@ transaction ( distId: UInt64, packId: UInt64, nftContractAddrs: [Address], - nftContractName: [String], + nftContractNames: [String], nftIds: [UInt64], owner: Address, collectionStoragePath: StoragePath @@ -22,7 +22,7 @@ transaction ( distId: distId, packId: packId, nftContractAddrs: nftContractAddrs, - nftContractName: nftContractName, + nftContractNames: nftContractNames, nftIds: nftIds, recvCap: recv, collectionStoragePath: collectionStoragePath, diff --git a/pds/transactions/pds/reveal_packNFT.cdc b/pds/transactions/pds/reveal_packNFT.cdc index 17cc5fd..82690ed 100644 --- a/pds/transactions/pds/reveal_packNFT.cdc +++ b/pds/transactions/pds/reveal_packNFT.cdc @@ -7,7 +7,7 @@ transaction ( distId: UInt64, packId: UInt64, nftContractAddrs: [Address], - nftContractName: [String], + nftContractNames: [String], nftIds: [UInt64], salt: String, owner: Address, @@ -28,7 +28,7 @@ transaction ( distId: distId, packId: packId, nftContractAddrs: nftContractAddrs, - nftContractName: nftContractName, + nftContractNames: nftContractNames, nftIds: nftIds, recvCap: recv, collectionStoragePath: collectionStoragePath @@ -38,7 +38,7 @@ transaction ( distId: distId, packId: packId, nftContractAddrs: nftContractAddrs, - nftContractName: nftContractName, + nftContractNames: nftContractNames, nftIds: nftIds, salt: salt )