From 747cf40ead5d5f46ae686e3cbd4e9d054b732761 Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 10:53:18 -0700 Subject: [PATCH 1/9] add subedition metadata traits --- contracts/TopShot.cdc | 48 ++++++++++++++++++++++++++++++------------- 1 file changed, 34 insertions(+), 14 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 8f87f94..e1c3275 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -794,20 +794,9 @@ access(all) contract TopShot: NonFungibleToken { case Type(): return TopShot.resolveContractView(resourceType: nil, viewType: Type()) case Type(): - return TopShot.resolveContractView(resourceType: nil, viewType: Type()) + return TopShot.resolveContractView(resourceType: nil, viewType: Type()) case Type(): - // sports radar team id - let excludedNames: [String] = ["TeamAtMomentNBAID"] - // non play specific traits - let traitDictionary: {String: AnyStruct} = { - "SeriesNumber": TopShot.getSetSeries(setID: self.data.setID), - "SetName": TopShot.getSetName(setID: self.data.setID), - "SerialNumber": self.data.serialNumber, - "Locked": TopShotLocking.isLocked(nftRef: &self as &{NonFungibleToken.NFT}) - } - // add play specific data - let fullDictionary = self.mapPlayData(dict: traitDictionary) - return MetadataViews.dictToTraits(dict: fullDictionary, excludedNames: excludedNames) + return self.resolveTraitsView() case Type(): return MetadataViews.Medias( [ @@ -830,6 +819,37 @@ access(all) contract TopShot: NonFungibleToken { return nil } + /// Resolve this NFT's Traits view + /// + access(all) fun resolveTraitsView(): MetadataViews.Traits { + // sports radar team id + let excludedNames: [String] = ["TeamAtMomentNBAID"] + + // Retrieve this NFT's Play and Subedition details + let playMetadata = TopShot.getPlayMetaData(playID: self.data.playID) ?? {} + + // Create a dictionary of this NFT's traits with default metadata + let traits: {String: AnyStruct} = { + "SeriesNumber": TopShot.getSetSeries(setID: self.data.setID), + "SetName": TopShot.getSetName(setID: self.data.setID), + "SerialNumber": self.data.serialNumber, + "Locked": TopShotLocking.isLocked(nftRef: &self as &{NonFungibleToken.NFT}) + } + + // Add play specific data + traits = self.mapPlayData(dict: traits) + + // Add subedition specific data + let subeditionID = TopShot.getMomentsSubedition(nftID: self.id) ?? 0 + traits.insert(key: "SubeditionID", value: subeditionID) + if subeditionID > 0 { + let subedition = TopShot.getSubeditionByID(subeditionID: subeditionID) + traits.insert(key: "SubeditionName", value: subedition.name) + } + + return MetadataViews.dictToTraits(dict: traits, excludedNames: excludedNames) + } + // Functions used for computing MetadataViews // mapPlayData helps build our trait map from play metadata @@ -1482,7 +1502,7 @@ access(all) contract TopShot: NonFungibleToken { // // returns: UInt32? Subedition's ID if exists // - access(all) view fun getMomentsSubedition(nftID: UInt64):UInt32? { + access(all) view fun getMomentsSubedition(nftID: UInt64): UInt32? { let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) ?? panic("No subedition admin resource in storage") From e04e20d34d024d307db5fe31141c05132583aa40 Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 11:55:44 -0700 Subject: [PATCH 2/9] add view modifier, minor readability/consistency edits --- contracts/TopShot.cdc | 375 +++++++++++++++++++++--------------------- 1 file changed, 185 insertions(+), 190 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index e1c3275..eef0310 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -1,7 +1,7 @@ /* Description: Central Smart Contract for NBA TopShot - This smart contract contains the core functionality for + This smart contract contains the core functionality for NBA Top Shot, created by Dapper Labs The contract manages the data associated with all the plays and sets @@ -10,23 +10,23 @@ When a new Play wants to be added to the records, an Admin creates a new Play struct that is stored in the smart contract. - Then an Admin can create new Sets. Sets consist of a public struct that + Then an Admin can create new Sets. Sets consist of a public struct that contains public information about a set, and a private resource used to mint new moments based off of plays that have been linked to the Set. The admin resource has the power to do all of the important actions in the smart contract. When admins want to call functions in a set, - they call their borrowSet function to get a reference + they call their borrowSet function to get a reference to a set in the contract. Then, they can call functions on the set using that reference. - In this way, the smart contract and its defined resources interact + In this way, the smart contract and its defined resources interact with great teamwork, just like the Indiana Pacers, the greatest NBA team of all time. - + When moments are minted, they are initialized with a MomentData struct and are returned by the minter. - The contract also defines a Collection resource. This is an object that + The contract also defines a Collection resource. This is an object that every TopShot NFT owner will store in their account to manage their NFT collection. @@ -35,10 +35,10 @@ Note: All state changing functions will panic if an invalid argument is provided or one of its pre-conditions or post conditions aren't met. - Functions that don't modify state will simply return 0 or nil + Functions that don't modify state will simply return 0 or nil and those cases need to be handled by the caller. - It is also important to remember that + It is also important to remember that The Golden State Warriors blew a 3-1 lead in the 2016 NBA finals. */ @@ -55,21 +55,21 @@ access(all) contract TopShot: NonFungibleToken { // ----------------------------------------------------------------------- // The network the contract is deployed on - access(all) view fun Network() : String { return ${NETWORK} } + access(all) view fun Network(): String { return ${NETWORK} } // The address to which royalties should be deposited - access(all) view fun RoyaltyAddress() : Address { return 0xTOPSHOTROYALTYADDRESS } + access(all) view fun RoyaltyAddress(): Address { return 0xTOPSHOTROYALTYADDRESS } // The path to the Subedition Admin resource belonging to the Account // which the contract is deployed on - access(all) view fun SubeditionAdminStoragePath() : StoragePath { return /storage/TopShotSubeditionAdmin} + access(all) view fun SubeditionAdminStoragePath(): StoragePath { return /storage/TopShotSubeditionAdmin} // ----------------------------------------------------------------------- // TopShot contract Events // ----------------------------------------------------------------------- // Emitted when a new Play struct is created - access(all) event PlayCreated(id: UInt32, metadata: {String:String}) + access(all) event PlayCreated(id: UInt32, metadata: {String: String}) // Emitted when a new series has been triggered by an admin access(all) event NewSeriesStarted(newCurrentSeries: UInt32) @@ -97,7 +97,7 @@ access(all) contract TopShot: NonFungibleToken { access(all) event MomentDestroyed(id: UInt64) // Emitted when a Subedition is created - access(all) event SubeditionCreated(subeditionID: UInt32, name: String, metadata: {String:String}) + access(all) event SubeditionCreated(subeditionID: UInt32, name: String, metadata: {String: String}) // Emitted when a Subedition is linked to the specific Moment access(all) event SubeditionAddedToMoment(momentID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32) @@ -121,8 +121,8 @@ access(all) contract TopShot: NonFungibleToken { // Variable size dictionary of Set resources access(self) var sets: @{UInt32: Set} - // The ID that is used to create Plays. - // Every time a Play is created, playID is assigned + // The ID that is used to create Plays. + // Every time a Play is created, playID is assigned // to the new Play's ID and then is incremented by 1. access(all) var nextPlayID: UInt32 @@ -145,8 +145,8 @@ access(all) contract TopShot: NonFungibleToken { // can be created by this contract that contains stored values. // ----------------------------------------------------------------------- - // Play is a Struct that holds metadata associated - // with a specific NBA play, like the legendary moment when + // Play is a Struct that holds metadata associated + // with a specific NBA play, like the legendary moment when // Ray Allen hit the 3 to tie the Heat and Spurs in the 2013 finals game 6 // or when Lance Stephenson blew in the ear of Lebron James. // @@ -187,11 +187,11 @@ access(all) contract TopShot: NonFungibleToken { // A Set is a grouping of Plays that have occured in the real world // that make up a related group of collectibles, like sets of baseball // or Magic cards. A Play can exist in multiple different sets. - // + // // SetData is a struct that is stored in a field of the contract. // Anyone can query the constant information - // about a set by calling various getters located - // at the end of the contract. Only the admin has the ability + // about a set by calling various getters located + // at the end of the contract. Only the admin has the ability // to modify any data in the private Set resource. // access(all) struct SetData { @@ -228,14 +228,14 @@ access(all) contract TopShot: NonFungibleToken { // that reference that playdata. // The Moments that are minted by a Set will be listed as belonging to // the Set that minted it, as well as the Play it references. - // + // // Admin can also retire Plays from the Set, meaning that the retired // Play can no longer have Moments minted from it. // - // If the admin locks the Set, no more Plays can be added to it, but + // If the admin locks the Set, no more Plays can be added to it, but // Moments can still be minted. // - // If retireAll() and lock() are called back-to-back, + // If retireAll() and lock() are called back-to-back, // the Set is closed off forever and nothing more can be done with it. access(all) resource Set { @@ -253,7 +253,7 @@ access(all) contract TopShot: NonFungibleToken { access(contract) var retired: {UInt32: Bool} // Indicates if the Set is currently locked. - // When a Set is created, it is unlocked + // When a Set is created, it is unlocked // and Plays are allowed to be added to it. // When a set is locked, Plays cannot be added. // A Set can never be changed from locked to unlocked, @@ -263,7 +263,7 @@ access(all) contract TopShot: NonFungibleToken { // that exist in the Set. access(all) var locked: Bool - // Mapping of Play IDs that indicates the number of Moments + // Mapping of Play IDs that indicates the number of Moments // that have been minted for specific Plays in this Set. // When a Moment is minted, this value is stored in the Moment to // show its place in the Set, eg. 13 of 60. @@ -325,7 +325,7 @@ access(all) contract TopShot: NonFungibleToken { // // Pre-Conditions: // The Play is part of the Set and not retired (available for minting). - // + // access(all) fun retirePlay(playID: UInt32) { pre { self.retired[playID] != nil: "Cannot retire the Play: Play doesn't exist in this set!" @@ -359,14 +359,14 @@ access(all) contract TopShot: NonFungibleToken { } // mintMoment mints a new Moment and returns the newly minted Moment - // + // // Parameters: playID: The ID of the Play that the Moment references // // Pre-Conditions: // The Play must exist in the Set and be allowed to mint new Moments // // Returns: The NFT that was minted - // + // access(all) fun mintMoment(playID: UInt32): @NFT { pre { self.retired[playID] != nil: "Cannot mint the moment: This play doesn't exist." @@ -378,10 +378,12 @@ access(all) contract TopShot: NonFungibleToken { let numInPlay = self.numberMintedPerPlay[playID]! // Mint the new moment - let newMoment: @NFT <- create NFT(serialNumber: numInPlay + UInt32(1), - playID: playID, - setID: self.setID, - subeditionID: 0) + let newMoment: @NFT <- create NFT( + serialNumber: numInPlay + UInt32(1), + playID: playID, + setID: self.setID, + subeditionID: 0 + ) // Increment the count of Moments minted for this Play self.numberMintedPerPlay[playID] = numInPlay + UInt32(1) @@ -389,7 +391,7 @@ access(all) contract TopShot: NonFungibleToken { return <-newMoment } - // batchMintMoment mints an arbitrary quantity of Moments + // batchMintMoment mints an arbitrary quantity of Moments // and returns them as a Collection // // Parameters: playID: the ID of the Play that the Moments are minted for @@ -406,7 +408,7 @@ access(all) contract TopShot: NonFungibleToken { i = i + UInt64(1) } - return <-newCollection + return <- newCollection } // mintMomentWithSubedition mints a new Moment with subedition and returns the newly minted Moment @@ -428,28 +430,34 @@ access(all) contract TopShot: NonFungibleToken { // Gets the number of Moments that have been minted for this subedition // to use as this Moment's serial number let subeditionRef = TopShot.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) - ?? panic("No subedition admin resource in storage") + ?? panic("No subedition admin resource in storage") - let numInSubedition = subeditionRef.getNumberMintedPerSubedition(setID: self.setID, - playID: playID, - subeditionID: subeditionID) + let numInSubedition = subeditionRef.getNumberMintedPerSubedition( + setID: self.setID, + playID: playID, + subeditionID: subeditionID + ) // Mint the new moment - let newMoment: @NFT <- create NFT(serialNumber: numInSubedition + UInt32(1), - playID: playID, - setID: self.setID, - subeditionID: subeditionID) + let newMoment: @NFT <- create NFT( + serialNumber: numInSubedition + UInt32(1), + playID: playID, + setID: self.setID, + subeditionID: subeditionID + ) // Increment the count of Moments minted for this subedition - subeditionRef.addToNumberMintedPerSubedition(setID: self.setID, - playID: playID, - subeditionID: subeditionID) + subeditionRef.addToNumberMintedPerSubedition( + setID: self.setID, + playID: playID, + subeditionID: subeditionID + ) subeditionRef.setMomentsSubedition(nftID: newMoment.id, subeditionID: subeditionID, setID: self.setID, playID: playID) self.numberMintedPerPlay[playID] = self.numberMintedPerPlay[playID]! + UInt32(1) - return <-newMoment + return <- newMoment } // batchMintMomentWithSubedition mints an arbitrary quantity of Moments with subedition @@ -461,13 +469,12 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: Collection object that contains all the Moments that were minted // - access(all) fun batchMintMomentWithSubedition(playID: UInt32, quantity: UInt64, subeditionID: UInt32): @Collection { + access(all) fun batchMintMomentWithSubedition(playID: UInt32, quantity: UInt64, subeditionID: UInt32): @Collection { let newCollection <- create Collection() var i: UInt64 = 0 while i < quantity { - newCollection.deposit(token: <-self.mintMomentWithSubedition(playID: playID, - subeditionID: subeditionID)) + newCollection.deposit(token: <-self.mintMomentWithSubedition(playID: playID, subeditionID: subeditionID)) i = i + UInt64(1) } @@ -658,7 +665,7 @@ access(all) contract TopShot: NonFungibleToken { // Global unique moment ID access(all) let id: UInt64 - + // Struct of Moment metadata access(all) let data: MomentData @@ -671,14 +678,16 @@ access(all) contract TopShot: NonFungibleToken { // Set the metadata struct self.data = MomentData(setID: setID, playID: playID, serialNumber: serialNumber) - emit MomentMinted(momentID: self.id, - playID: playID, - setID: self.data.setID, - serialNumber: self.data.serialNumber, - subeditionID: subeditionID) + emit MomentMinted( + momentID: self.id, + playID: playID, + setID: self.data.setID, + serialNumber: self.data.serialNumber, + subeditionID: subeditionID + ) } - // If the Moment is destroyed, emit an event to indicate + // If the Moment is destroyed, emit an event to indicate // to outside observers that it has been destroyed access(all) event ResourceDestroyed( id: UInt64 = self.id, @@ -694,8 +703,16 @@ access(all) contract TopShot: NonFungibleToken { .concat(" ") .concat(playType) } - - access(self) fun buildDescString(): String { + + /// The description of the Moment. + /// If the Tagline prop exists, use is as the description; else, build the description using set, series, and serial number. + access(all) view fun description(): String { + // Return early if the tagline is non-empty + if let tagline = TopShot.getPlayMetaDataByField(playID: self.data.playID, field: "Tagline") { + return tagline + } + + // Build the description using set name, series number, and serial number let setName: String = TopShot.getSetName(setID: self.data.setID) ?? "" let serialNumber: String = self.data.serialNumber.toString() let seriesNumber: String = TopShot.getSetSeries(setID: self.data.setID)?.toString() ?? "" @@ -707,14 +724,6 @@ access(all) contract TopShot: NonFungibleToken { .concat(serialNumber) } - /// The description of the Moment. If Tagline property of the play is empty, compose it using the buildDescString function - /// If the Tagline property is not empty, use that as the description - access(all) fun description(): String { - let playDesc: String = TopShot.getPlayMetaDataByField(playID: self.data.playID, field: "Tagline") ?? "" - - return playDesc.length > 0 ? playDesc : self.buildDescString() - } - // All supported metadata views for the Moment including the Core NFT Views access(all) view fun getViews(): [Type] { return [ @@ -731,8 +740,6 @@ access(all) contract TopShot: NonFungibleToken { ] } - - access(all) fun resolveView(_ view: Type): AnyStruct? { switch view { case Type(): @@ -817,7 +824,7 @@ access(all) contract TopShot: NonFungibleToken { } return nil - } + } /// Resolve this NFT's Traits view /// @@ -850,7 +857,7 @@ access(all) contract TopShot: NonFungibleToken { return MetadataViews.dictToTraits(dict: traits, excludedNames: excludedNames) } - // Functions used for computing MetadataViews + // Functions used for computing MetadataViews // mapPlayData helps build our trait map from play metadata // Returns: The trait map with all non-empty fields from play data added @@ -865,14 +872,14 @@ access(all) contract TopShot: NonFungibleToken { return dict } - // getMomentURL + // getMomentURL // Returns: The computed external url of the moment access(all) view fun getMomentURL(): String { return "https://nbatopshot.com/moment/".concat(self.id.toString()) } // getEditionName Moment's edition name is a combination of the Moment's setName and playID // `setName: #playID` - access(all) view fun getEditionName() : String { + access(all) view fun getEditionName(): String { let setName: String = TopShot.getSetName(setID: self.data.setID) ?? "" let editionName = setName.concat(": #").concat(self.data.playID.toString()) return editionName @@ -883,26 +890,23 @@ access(all) contract TopShot: NonFungibleToken { } // returns a url to display an medium sized image - access(all) fun mediumimage(): String { - let url = self.assetPath().concat("?width=512") - return self.appendOptionalParams(url: url, firstDelim: "&") + access(all) view fun mediumimage(): String { + return self.appendOptionalParams(url: self.assetPath().concat("?width=512"), firstDelim: "&") } // a url to display a thumbnail associated with the moment - access(all) fun thumbnail(): String { - let url = self.assetPath().concat("?width=256") - return self.appendOptionalParams(url: url, firstDelim: "&") + access(all) view fun thumbnail(): String { + return self.appendOptionalParams(url: self.assetPath().concat("?width=256"), firstDelim: "&") } // a url to display a video associated with the moment - access(all) fun video(): String { - let url = self.assetPath().concat("/video") - return self.appendOptionalParams(url: url, firstDelim: "?") + access(all) view fun video(): String { + return self.appendOptionalParams(url: self.assetPath().concat("/video"), firstDelim: "?") } // appends and optional network param needed to resolve the media - access(all) fun appendOptionalParams(url: String, firstDelim: String): String { - if (TopShot.Network() == "testnet") { + access(all) view fun appendOptionalParams(url: String, firstDelim: String): String { + if TopShot.Network() == "testnet" { return url.concat(firstDelim).concat("testnet") } return url @@ -910,17 +914,16 @@ access(all) contract TopShot: NonFungibleToken { // Create an empty Collection for NBA NFTs and return it to the caller access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <- TopShot.createEmptyCollection(nftType: Type<@TopShot.NFT>()) + return <- TopShot.createEmptyCollection(nftType: Type<@NFT>()) } } - // Admin is a special authorization resource that - // allows the owner to perform important functions to modify the + // Admin is a special authorization resource that + // allows the owner to perform important functions to modify the // various aspects of the Plays, Sets, and Moments // access(all) resource Admin { - - // createPlay creates a new Play struct + // createPlay creates a new Play struct // and stores it in the Plays dictionary in the TopShot smart contract // // Parameters: metadata: A dictionary mapping metadata titles to their data @@ -950,8 +953,13 @@ access(all) contract TopShot: NonFungibleToken { /// tagline: A string to be used as the tagline for the play /// Returns: The ID of the play access(all) fun updatePlayTagline(playID: UInt32, tagline: String): UInt32 { - let tmpPlay = TopShot.playDatas[playID] ?? panic("playID does not exist") + let tmpPlay = TopShot.playDatas[playID] + ?? panic("playID does not exist") + + // Update the play's tagline tmpPlay.updateTagline(tagline: tagline) + + // Return the play's ID return playID } @@ -988,11 +996,11 @@ access(all) contract TopShot: NonFungibleToken { // Returns: A reference to the Set with all of the fields // and methods exposed // - access(all) view fun borrowSet(setID: UInt32): &Set { + access(all) view fun borrowSet(setID: UInt32): &Set { pre { TopShot.sets[setID] != nil: "Cannot borrow Set: The Set doesn't exist" } - + // Get a reference to the Set and return it // use `&` to indicate the reference to the object and type return (&TopShot.sets[setID] as &Set?)! @@ -1042,7 +1050,7 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: the ID of the new Subedition object // - access(all) fun createSubedition(name:String, metadata:{String:String}): UInt32 { + access(all) fun createSubedition(name: String, metadata: {String: String}): UInt32 { let subeditionAdmin = TopShot.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) ?? panic("No subedition admin resource in storage") @@ -1052,7 +1060,7 @@ access(all) contract TopShot: NonFungibleToken { // createNewAdmin creates a new Admin resource // access(all) fun createNewAdmin(): @Admin { - return <-create Admin() + return <- create Admin() } } @@ -1062,17 +1070,17 @@ access(all) contract TopShot: NonFungibleToken { /// Deprecated: This is no longer used for defining access control anymore. access(all) resource interface MomentCollectionPublic : NonFungibleToken.CollectionPublic { access(all) fun batchDeposit(tokens: @{NonFungibleToken.Collection}) - access(all) fun borrowMoment(id: UInt64): &TopShot.NFT? { + access(all) fun borrowMoment(id: UInt64): &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): + (result == nil) || (result?.id == id): "Cannot borrow Moment reference: The ID of the returned reference is incorrect" } } } - // Collection is a resource that every user who owns NFTs + // Collection is a resource that every user who owns NFTs // will store in their account to manage their NFTS // access(all) resource Collection: MomentCollectionPublic, NonFungibleToken.Collection { @@ -1087,14 +1095,14 @@ access(all) contract TopShot: NonFungibleToken { // Return a list of NFT types that this receiver accepts access(all) view fun getSupportedNFTTypes(): {Type: Bool} { let supportedTypes: {Type: Bool} = {} - supportedTypes[Type<@TopShot.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 access(all) view fun isSupportedNFTType(type: Type): Bool { - if type == Type<@TopShot.NFT>() { + if type == Type<@NFT>() { return true } return false @@ -1107,20 +1115,20 @@ access(all) contract TopShot: NonFungibleToken { // Create an empty Collection for TopShot NFTs and return it to the caller access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { - return <- TopShot.createEmptyCollection(nftType: Type<@TopShot.NFT>()) + return <- TopShot.createEmptyCollection(nftType: Type<@NFT>()) } // withdraw removes an Moment from the Collection and moves it to the caller // - // Parameters: withdrawID: The ID of the NFT + // Parameters: withdrawID: The ID of the NFT // that is to be removed from the Collection // // returns: @NonFungibleToken.NFT the token that was withdrawn access(NonFungibleToken.Withdraw) fun withdraw(withdrawID: UInt64): @{NonFungibleToken.NFT} { - // Borrow nft and check if locked let nft = self.borrowNFT(withdrawID) ?? panic("Cannot borrow: empty reference") + if TopShotLocking.isLocked(nftRef: nft) { panic("Cannot withdraw: Moment is locked") } @@ -1132,7 +1140,7 @@ access(all) contract TopShot: NonFungibleToken { emit Withdraw(id: token.id, from: self.owner?.address) // Return the withdrawn token - return <-token + return <- token } // batchWithdraw withdraws multiple tokens and returns them as a Collection @@ -1145,14 +1153,14 @@ access(all) contract TopShot: NonFungibleToken { access(NonFungibleToken.Withdraw) fun batchWithdraw(ids: [UInt64]): @{NonFungibleToken.Collection} { // Create a new empty Collection var batchCollection <- create Collection() - + // Iterate through the ids and withdraw them from the Collection for id in ids { - batchCollection.deposit(token: <-self.withdraw(withdrawID: id)) + batchCollection.deposit(token: <- self.withdraw(withdrawID: id)) } - + // Return the withdrawn tokens - return <-batchCollection + return <- batchCollection } // deposit takes a Moment and adds it to the Collections dictionary @@ -1160,10 +1168,9 @@ access(all) contract TopShot: NonFungibleToken { // Paramters: token: the NFT to be deposited in the collection // access(all) fun deposit(token: @{NonFungibleToken.NFT}) { - // Cast the deposited token as a TopShot NFT to make sure // it is the correct type - let token <- token as! @TopShot.NFT + let token <- token as! @NFT // Get the token's ID let id = token.id @@ -1171,7 +1178,7 @@ access(all) contract TopShot: NonFungibleToken { // Add the new token to the dictionary let oldToken <- self.ownedNFTs[id] <- token - // Only emit a deposit event if the Collection + // Only emit a deposit event if the Collection // is in an account's storage if self.owner?.address != nil { emit Deposit(id: id, to: self.owner?.address) @@ -1184,13 +1191,12 @@ access(all) contract TopShot: NonFungibleToken { // batchDeposit takes a Collection object as an argument // and deposits each contained NFT into this Collection access(all) fun batchDeposit(tokens: @{NonFungibleToken.Collection}) { - // Get an array of the IDs to be deposited let keys = tokens.getIDs() // Iterate through the keys in the collection and deposit each one for key in keys { - self.deposit(token: <-tokens.withdraw(withdrawID: key)) + self.deposit(token: <- tokens.withdraw(withdrawID: key)) } // Destroy the empty Collection @@ -1201,7 +1207,7 @@ access(all) contract TopShot: NonFungibleToken { // the moment for that duration access(NonFungibleToken.Update) fun lock(id: UInt64, duration: UFix64) { // Remove the nft from the Collection - let token <- self.ownedNFTs.remove(key: id) + let token <- self.ownedNFTs.remove(key: id) ?? panic("Cannot lock: Moment does not exist in the collection") TopShot.emitNFTUpdated(&token as auth(NonFungibleToken.Update) &{NonFungibleToken.NFT}) @@ -1226,7 +1232,7 @@ access(all) contract TopShot: NonFungibleToken { // TopShotLocking.unlockNFT contains business logic around unlock eligibility access(NonFungibleToken.Update) fun unlock(id: UInt64) { // Remove the nft from the Collection - let token <- self.ownedNFTs.remove(key: id) + let token <- self.ownedNFTs.remove(key: id) ?? panic("Cannot lock: Moment does not exist in the collection") TopShot.emitNFTUpdated(&token as auth(NonFungibleToken.Update) &{NonFungibleToken.NFT}) @@ -1285,7 +1291,7 @@ access(all) contract TopShot: NonFungibleToken { // Returns: A reference to the NFT // // Note: This only allows the caller to read the ID of the NFT, - // not any topshot specific data. Please use borrowMoment to + // not any topshot specific data. Please use borrowMoment to // read Moment data. // access(all) view fun borrowNFT(_ id: UInt64): &{NonFungibleToken.NFT}? { @@ -1302,8 +1308,8 @@ access(all) contract TopShot: NonFungibleToken { // Parameters: id: The ID of the NFT to get the reference for // // Returns: A reference to the NFT - access(all) view fun borrowMoment(id: UInt64): &TopShot.NFT? { - return self.borrowNFT(id) as! &TopShot.NFT? + access(all) view fun borrowMoment(id: UInt64): &NFT? { + return self.borrowNFT(id) as! &NFT? } access(all) view fun borrowViewResolver(id: UInt64): &{ViewResolver.Resolver}? { @@ -1325,21 +1331,21 @@ access(all) contract TopShot: NonFungibleToken { // Moments in transactions. // access(all) fun createEmptyCollection(nftType: Type): @{NonFungibleToken.Collection} { - if nftType != Type<@TopShot.NFT>() { + if nftType != Type<@NFT>() { panic("NFT type is not supported") } - return <-create TopShot.Collection() + return <- create TopShot.Collection() } // getAllPlays returns all the plays in topshot // // Returns: An array of all the plays that have been created - access(all) view fun getAllPlays(): [TopShot.Play] { + access(all) view fun getAllPlays(): [Play] { return TopShot.playDatas.values } // getPlayMetaData returns all the metadata associated with a specific Play - // + // // Parameters: playID: The id of the Play that is being searched // // Returns: The metadata as a String to String mapping optional @@ -1347,11 +1353,11 @@ access(all) contract TopShot: NonFungibleToken { return self.playDatas[playID]?.metadata } - // getPlayMetaDataByField returns the metadata associated with a + // getPlayMetaDataByField returns the metadata associated with a // specific field of the metadata // Ex: field: "Team" will return something // like "Memphis Grizzlies" - // + // // Parameters: playID: The id of the Play that is being searched // field: The field to search for // @@ -1360,28 +1366,26 @@ access(all) contract TopShot: NonFungibleToken { // Don't force a revert if the playID or field is invalid if let play = TopShot.playDatas[playID] { return play.metadata[field] - } else { - return nil } + return nil } // getSetData returns the data that the specified Set // is associated with. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: The QuerySetData struct that has all the important information about the set - access(all) fun getSetData(setID: UInt32): QuerySetData? { + access(all) view fun getSetData(setID: UInt32): QuerySetData? { if TopShot.sets[setID] == nil { return nil - } else { - return QuerySetData(setID: setID) } + return QuerySetData(setID: setID) } // getSetName returns the name that the specified Set // is associated with. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: The name of the Set @@ -1392,7 +1396,7 @@ access(all) contract TopShot: NonFungibleToken { // getSetSeries returns the series that the specified Set // is associated with. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: The series that the Set belongs to @@ -1403,11 +1407,11 @@ access(all) contract TopShot: NonFungibleToken { // getSetIDsByName returns the IDs that the specified Set name // is associated with. - // + // // Parameters: setName: The name of the Set that is being searched // // Returns: An array of the IDs of the Set if it exists, or nil if doesn't - access(all) fun getSetIDsByName(setName: String): [UInt32]? { + access(all) view fun getSetIDsByName(setName: String): [UInt32]? { var setIDs: [UInt32] = [] // Iterate through all the setDatas and search for the name @@ -1422,13 +1426,12 @@ access(all) contract TopShot: NonFungibleToken { // Don't force a revert if the setName is invalid if setIDs.length == 0 { return nil - } else { - return setIDs } + return setIDs } // getPlaysInSet returns the list of Play IDs that are in the Set - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: An array of Play IDs @@ -1441,32 +1444,24 @@ access(all) contract TopShot: NonFungibleToken { // (otherwise known as an edition) is retired. // If an edition is retired, it still remains in the Set, // but Moments can no longer be minted from it. - // + // // Parameters: setID: The id of the Set that is being searched // playID: The id of the Play that is being searched // // Returns: Boolean indicating if the edition is retired or not - access(all) fun isEditionRetired(setID: UInt32, playID: UInt32): Bool? { - + access(all) view fun isEditionRetired(setID: UInt32, playID: UInt32): Bool? { + // Return the retired status for the play in the set if it exists if let setdata = self.getSetData(setID: setID) { - - // See if the Play is retired from this Set - let retired = setdata.getRetired()[playID] - - // Return the retired status - return retired - } else { - - // If the Set wasn't found, return nil - return nil + return setdata.getRetired()[playID] } + return nil } // isSetLocked returns a boolean that indicates if a Set - // is locked. If it's locked, + // is locked. If it's locked, // new Plays can no longer be added to it, // but Moments can still be minted from Plays the set contains. - // + // // Parameters: setID: The id of the Set that is being searched // // Returns: Boolean indicating if the Set is locked or not @@ -1475,25 +1470,20 @@ access(all) contract TopShot: NonFungibleToken { return TopShot.sets[setID]?.locked } - // getNumMomentsInEdition return the number of Moments that have been + // getNumMomentsInEdition return the number of Moments that have been // minted from a certain edition. // // Parameters: setID: The id of the Set that is being searched // playID: The id of the Play that is being searched // - // Returns: The total number of Moments + // Returns: The total number of Moments // that have been minted from an edition - access(all) fun getNumMomentsInEdition(setID: UInt32, playID: UInt32): UInt32? { + access(all) view fun getNumMomentsInEdition(setID: UInt32, playID: UInt32): UInt32? { + // Return the number of moments minted for the play in the set if it exists if let setdata = self.getSetData(setID: setID) { - - // Read the numMintedPerPlay - let amount = setdata.getNumberMintedPerPlay()[playID] - - return amount - } else { - // If the set wasn't found return nil - return nil + return setdata.getNumberMintedPerPlay()[playID] } + return nil } // getMomentsSubedition returns the Subedition the Moment belongs to @@ -1505,14 +1495,13 @@ access(all) contract TopShot: NonFungibleToken { access(all) view fun getMomentsSubedition(nftID: UInt64): UInt32? { let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) ?? panic("No subedition admin resource in storage") - return subeditionAdmin.getMomentsSubedition(nftID: nftID) } // getAllSubeditions returns all the subeditions in topshot subeditionAdmin resource // // Returns: An array of all the subeditions that have been created - access(all) view fun getAllSubeditions(): &[TopShot.Subedition] { + access(all) view fun getAllSubeditions(): &[Subedition] { let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) ?? panic("No subedition admin resource in storage") return subeditionAdmin.subeditionDatas.values @@ -1523,7 +1512,7 @@ access(all) contract TopShot: NonFungibleToken { // Parameters: subeditionID: The id of the Subedition that is being searched // // Returns: The Subedition struct - access(all) view fun getSubeditionByID(subeditionID: UInt32): &TopShot.Subedition { + access(all) view fun getSubeditionByID(subeditionID: UInt32): &Subedition { let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) ?? panic("No subedition admin resource in storage") return subeditionAdmin.subeditionDatas[subeditionID]! @@ -1534,7 +1523,7 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: UInt32 // the next number in nextSubeditionID from the SubeditionAdmin resource - access(all) view fun getNextSubeditionID():UInt32 { + access(all) view fun getNextSubeditionID(): UInt32 { let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) ?? panic("No subedition admin resource in storage") return subeditionAdmin.nextSubeditionID @@ -1564,11 +1553,11 @@ access(all) contract TopShot: NonFungibleToken { // When a new Moment with Subedition is minted, 1 is added to the // number in this map by the key, formed by concatinating of // SetID, PlayID and SubeditionID - access(contract) let numberMintedPerSubedition: {String:UInt32} + access(contract) let numberMintedPerSubedition: {String: UInt32} // Map of Subedition which the Moment belongs to. // This map updates after each minting. - access(contract) let momentsSubedition: {UInt64:UInt32} + access(contract) let momentsSubedition: {UInt64: UInt32} // The ID that is used to create Subeditions. // Every time a Subeditions is created, subeditionID is assigned @@ -1586,7 +1575,7 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: the ID of the new Subedition object // - access(all) fun createSubedition(name:String, metadata:{String:String}): UInt32 { + access(all) fun createSubedition(name: String, metadata: {String: String}): UInt32 { let newID = self.nextSubeditionID @@ -1607,8 +1596,8 @@ access(all) contract TopShot: NonFungibleToken { // // returns: UInt32? Subedition's ID if exists // - access(all) view fun getMomentsSubedition(nftID: UInt64):UInt32? { - return self.momentsSubedition[nftID] + access(all) view fun getMomentsSubedition(nftID: UInt64): UInt32? { + return self.momentsSubedition[nftID] } // getNumberMintedPerSubedition function that return's @@ -1621,13 +1610,13 @@ access(all) contract TopShot: NonFungibleToken { // // returns: UInt32 Number of Moments, already minted for this Subedition // - access(all) fun getNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32): UInt32 { - let setPlaySubedition = setID.toString().concat(playID.toString()).concat(subeditionID.toString()) - if !self.numberMintedPerSubedition.containsKey(setPlaySubedition) { - self.numberMintedPerSubedition.insert(key: setPlaySubedition,UInt32(0)) + access(all) view fun getNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32): UInt32 { + let setPlaySubedition = self.getSetPlaySubeditionString(setID, playID, subeditionID) + if !self.numberMintedPerSubedition.containsKey(setPlaySubedition) { + self.numberMintedPerSubedition.insert(key: setPlaySubedition, UInt32(0)) return UInt32(0) - } - return self.numberMintedPerSubedition[setPlaySubedition]! + } + return self.numberMintedPerSubedition[setPlaySubedition]! } // addToNumberMintedPerSubedition function that increments 1 to the @@ -1638,13 +1627,18 @@ access(all) contract TopShot: NonFungibleToken { // subeditionID: The ID of the Subedition using which moment will be minted // // - access(all) fun addToNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32) { - let setPlaySubedition = setID.toString().concat(playID.toString()).concat(subeditionID.toString()) + access(contract) fun addToNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32) { + // Get number of moments minted for this subedition + let numberMinted = self.numberMintedPerSubedition[self.getSetPlaySubeditionString(setID, playID, subeditionID)] + ?? panic("Could not find number of moments minted for specified Subedition!") + + // Increment the number of moments minted for this subedition + self.numberMintedPerSubedition[setPlaySubedition] = numberMinted + UInt32(1) + } - if !self.numberMintedPerSubedition.containsKey(setPlaySubedition) { - panic("Could not find specified Subedition!") - } - self.numberMintedPerSubedition[setPlaySubedition] = self.numberMintedPerSubedition[setPlaySubedition]! + UInt32(1) + // getSetPlaySubeditionString builds a string that is used as a key in the numberMintedPerSubedition map + access(self) view fun getSetPlaySubeditionString(_ setID: UInt32, _ playID: UInt32, _ subeditionID: UInt32): String { + return setID.toString().concat(playID.toString()).concat(subeditionID.toString()) } @@ -1655,7 +1649,7 @@ access(all) contract TopShot: NonFungibleToken { // setID: The ID of the Set that the Moment references // playID: The ID of the Play that the Moment references // - access(all) fun setMomentsSubedition(nftID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32){ + access(all) fun setMomentsSubedition(nftID: UInt64, subeditionID: UInt32, setID: UInt32, playID: UInt32) { pre { !self.momentsSubedition.containsKey(nftID) : "Subedition for this moment already exists!" } @@ -1694,10 +1688,10 @@ access(all) contract TopShot: NonFungibleToken { return MetadataViews.NFTCollectionData( storagePath: /storage/MomentCollection, publicPath: /public/MomentCollection, - publicCollection: Type<&TopShot.Collection>(), - publicLinkedType: Type<&TopShot.Collection>(), + publicCollection: Type<&Collection>(), + publicLinkedType: Type<&Collection>(), createEmptyCollectionFunction: (fun (): @{NonFungibleToken.Collection} { - return <-TopShot.createEmptyCollection(nftType: Type<@TopShot.NFT>()) + return <- TopShot.createEmptyCollection(nftType: Type<@NFT>()) }) ) case Type(): @@ -1759,10 +1753,11 @@ access(all) contract TopShot: NonFungibleToken { // Put a new Collection in storage self.account.storage.save<@Collection>(<- create Collection(), to: /storage/MomentCollection) - // Create a public capability for the Collection - let cap = self.account.capabilities.storage.issue<&TopShot.Collection>(/storage/MomentCollection) - self.account.capabilities.publish(cap, at: /public/MomentCollection) - //self.account.link<&{MomentCollectionPublic}>(/public/MomentCollection, target: /storage/MomentCollection) + // Create and publish a capability for the collection + self.account.capabilities.publish( + self.account.capabilities.storage.issue<&Collection>(/storage/MomentCollection), + at: /public/MomentCollection + ) // Put the Minter in storage self.account.storage.save<@Admin>(<- create Admin(), to: /storage/TopShotAdmin) From 8e776586cc2f848a93cbe6d44abf4d9d3f301d15 Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:04:10 -0700 Subject: [PATCH 3/9] clean up unused --- contracts/TopShot.cdc | 3 --- 1 file changed, 3 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index eef0310..b65e712 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -832,9 +832,6 @@ access(all) contract TopShot: NonFungibleToken { // sports radar team id let excludedNames: [String] = ["TeamAtMomentNBAID"] - // Retrieve this NFT's Play and Subedition details - let playMetadata = TopShot.getPlayMetaData(playID: self.data.playID) ?? {} - // Create a dictionary of this NFT's traits with default metadata let traits: {String: AnyStruct} = { "SeriesNumber": TopShot.getSetSeries(setID: self.data.setID), From e8fd55aeca57b070ef3c886c337baaa56bdb6c5d Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 12:12:01 -0700 Subject: [PATCH 4/9] fix declaration --- contracts/TopShot.cdc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index b65e712..851df23 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -833,7 +833,7 @@ access(all) contract TopShot: NonFungibleToken { let excludedNames: [String] = ["TeamAtMomentNBAID"] // Create a dictionary of this NFT's traits with default metadata - let traits: {String: AnyStruct} = { + var traits: {String: AnyStruct} = { "SeriesNumber": TopShot.getSetSeries(setID: self.data.setID), "SetName": TopShot.getSetName(setID: self.data.setID), "SerialNumber": self.data.serialNumber, From 7b1a7b091941da3d63261c5d00e21498cb53d0ce Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 15:12:06 -0700 Subject: [PATCH 5/9] use same mediaType as deployed contract, fix view modifier --- contracts/TopShot.cdc | 22 ++++++++++++---------- 1 file changed, 12 insertions(+), 10 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 851df23..3dafccb 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -845,10 +845,10 @@ access(all) contract TopShot: NonFungibleToken { // Add subedition specific data let subeditionID = TopShot.getMomentsSubedition(nftID: self.id) ?? 0 - traits.insert(key: "SubeditionID", value: subeditionID) + traits.insert(key: "SubeditionID", subeditionID) if subeditionID > 0 { let subedition = TopShot.getSubeditionByID(subeditionID: subeditionID) - traits.insert(key: "SubeditionName", value: subedition.name) + traits.insert(key: "SubeditionName", subedition.name) } return MetadataViews.dictToTraits(dict: traits, excludedNames: excludedNames) @@ -909,7 +909,7 @@ access(all) contract TopShot: NonFungibleToken { return url } - // Create an empty Collection for NBA NFTs and return it to the caller + // Create an empty Collection for TopShot NFTs and return it to the caller access(all) fun createEmptyCollection(): @{NonFungibleToken.Collection} { return <- TopShot.createEmptyCollection(nftType: Type<@NFT>()) } @@ -1373,7 +1373,7 @@ access(all) contract TopShot: NonFungibleToken { // Parameters: setID: The id of the Set that is being searched // // Returns: The QuerySetData struct that has all the important information about the set - access(all) view fun getSetData(setID: UInt32): QuerySetData? { + access(all) fun getSetData(setID: UInt32): QuerySetData? { if TopShot.sets[setID] == nil { return nil } @@ -1408,7 +1408,7 @@ access(all) contract TopShot: NonFungibleToken { // Parameters: setName: The name of the Set that is being searched // // Returns: An array of the IDs of the Set if it exists, or nil if doesn't - access(all) view fun getSetIDsByName(setName: String): [UInt32]? { + access(all) fun getSetIDsByName(setName: String): [UInt32]? { var setIDs: [UInt32] = [] // Iterate through all the setDatas and search for the name @@ -1446,7 +1446,7 @@ access(all) contract TopShot: NonFungibleToken { // playID: The id of the Play that is being searched // // Returns: Boolean indicating if the edition is retired or not - access(all) view fun isEditionRetired(setID: UInt32, playID: UInt32): Bool? { + access(all) fun isEditionRetired(setID: UInt32, playID: UInt32): Bool? { // Return the retired status for the play in the set if it exists if let setdata = self.getSetData(setID: setID) { return setdata.getRetired()[playID] @@ -1475,7 +1475,7 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: The total number of Moments // that have been minted from an edition - access(all) view fun getNumMomentsInEdition(setID: UInt32, playID: UInt32): UInt32? { + access(all) fun getNumMomentsInEdition(setID: UInt32, playID: UInt32): UInt32? { // Return the number of moments minted for the play in the set if it exists if let setdata = self.getSetData(setID: setID) { return setdata.getNumberMintedPerPlay()[playID] @@ -1607,7 +1607,7 @@ access(all) contract TopShot: NonFungibleToken { // // returns: UInt32 Number of Moments, already minted for this Subedition // - access(all) view fun getNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32): UInt32 { + access(all) fun getNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32): UInt32 { let setPlaySubedition = self.getSetPlaySubeditionString(setID, playID, subeditionID) if !self.numberMintedPerSubedition.containsKey(setPlaySubedition) { self.numberMintedPerSubedition.insert(key: setPlaySubedition, UInt32(0)) @@ -1625,8 +1625,10 @@ access(all) contract TopShot: NonFungibleToken { // // access(contract) fun addToNumberMintedPerSubedition(setID: UInt32, playID: UInt32, subeditionID: UInt32) { + let setPlaySubedition = self.getSetPlaySubeditionString(setID, playID, subeditionID) + // Get number of moments minted for this subedition - let numberMinted = self.numberMintedPerSubedition[self.getSetPlaySubeditionString(setID, playID, subeditionID)] + let numberMinted = self.numberMintedPerSubedition[setPlaySubedition] ?? panic("Could not find number of moments minted for specified Subedition!") // Increment the number of moments minted for this subedition @@ -1702,7 +1704,7 @@ access(all) contract TopShot: NonFungibleToken { file: MetadataViews.HTTPFile( url: "https://nbatopshot.com/static/favicon/favicon.svg" ), - mediaType: "image/png" + mediaType: "image/svg+xml" ) return MetadataViews.NFTCollectionDisplay( name: "NBA-Top-Shot", From e7a7b7f3ca4cd130c3d2efb5b729f35035221aad Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 16:13:10 -0700 Subject: [PATCH 6/9] fallback to standard subedition name --- contracts/TopShot.cdc | 60 +++++++++++++++++++++---------------------- 1 file changed, 29 insertions(+), 31 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 3dafccb..81137d2 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -47,7 +47,7 @@ import FungibleToken from 0xFUNGIBLETOKENADDRESS import NonFungibleToken from 0xNFTADDRESS import MetadataViews from 0xMETADATAVIEWSADDRESS import TopShotLocking from 0xTOPSHOTLOCKINGADDRESS -import ViewResolver from 0xVIEWRESOLVERADDRESS +import ViewResolver from 0xVIEWRESOLVERADDRESS access(all) contract TopShot: NonFungibleToken { // ----------------------------------------------------------------------- @@ -155,7 +155,6 @@ access(all) contract TopShot: NonFungibleToken { // read the metadata associated with a specific play ID // access(all) struct Play { - // The unique ID for the Play access(all) let playID: UInt32 @@ -195,7 +194,6 @@ access(all) contract TopShot: NonFungibleToken { // to modify any data in the private Set resource. // access(all) struct SetData { - // Unique ID for the Set access(all) let setID: UInt32 @@ -238,7 +236,6 @@ access(all) contract TopShot: NonFungibleToken { // If retireAll() and lock() are called back-to-back, // the Set is closed off forever and nothing more can be done with it. access(all) resource Set { - // Unique ID for the set access(all) let setID: UInt32 @@ -539,7 +536,6 @@ access(all) contract TopShot: NonFungibleToken { } access(all) struct MomentData { - // The ID of the Set that the Moment comes from access(all) let setID: UInt32 @@ -555,14 +551,12 @@ access(all) contract TopShot: NonFungibleToken { self.playID = playID self.serialNumber = serialNumber } - } // This is an implementation of a custom metadata view for Top Shot. // This view contains the play metadata. // access(all) struct TopShotMomentMetadataView { - access(all) let fullName: String? access(all) let firstName: String? access(all) let lastName: String? @@ -662,7 +656,6 @@ access(all) contract TopShot: NonFungibleToken { // The resource that represents the Moment NFTs // access(all) resource NFT: NonFungibleToken.NFT { - // Global unique moment ID access(all) let id: UInt64 @@ -704,8 +697,8 @@ access(all) contract TopShot: NonFungibleToken { .concat(playType) } - /// The description of the Moment. - /// If the Tagline prop exists, use is as the description; else, build the description using set, series, and serial number. + // The description of the Moment. + // If the Tagline prop exists, use is as the description; else, build the description using set, series, and serial number. access(all) view fun description(): String { // Return early if the tagline is non-empty if let tagline = TopShot.getPlayMetaDataByField(playID: self.data.playID, field: "Tagline") { @@ -740,6 +733,7 @@ access(all) contract TopShot: NonFungibleToken { ] } + // resolves the view with the given type for the NFT access(all) fun resolveView(_ view: Type): AnyStruct? { switch view { case Type(): @@ -822,35 +816,30 @@ access(all) contract TopShot: NonFungibleToken { ] ) } - return nil } - /// Resolve this NFT's Traits view - /// + // resolves this NFT's Traits view access(all) fun resolveTraitsView(): MetadataViews.Traits { // sports radar team id let excludedNames: [String] = ["TeamAtMomentNBAID"] + // Get subedition + let subedition = TopShot.getSubeditionByNFTID(self.id) + // Create a dictionary of this NFT's traits with default metadata var traits: {String: AnyStruct} = { "SeriesNumber": TopShot.getSetSeries(setID: self.data.setID), "SetName": TopShot.getSetName(setID: self.data.setID), "SerialNumber": self.data.serialNumber, - "Locked": TopShotLocking.isLocked(nftRef: &self as &{NonFungibleToken.NFT}) + "Locked": TopShotLocking.isLocked(nftRef: &self as &{NonFungibleToken.NFT}), + "Subedition": subedition?.name ?? "Standard", + "SubeditionID": subedition?.subeditionID ?? 0 } // Add play specific data traits = self.mapPlayData(dict: traits) - // Add subedition specific data - let subeditionID = TopShot.getMomentsSubedition(nftID: self.id) ?? 0 - traits.insert(key: "SubeditionID", subeditionID) - if subeditionID > 0 { - let subedition = TopShot.getSubeditionByID(subeditionID: subeditionID) - traits.insert(key: "SubeditionName", subedition.name) - } - return MetadataViews.dictToTraits(dict: traits, excludedNames: excludedNames) } @@ -874,6 +863,7 @@ access(all) contract TopShot: NonFungibleToken { access(all) view fun getMomentURL(): String { return "https://nbatopshot.com/moment/".concat(self.id.toString()) } + // getEditionName Moment's edition name is a combination of the Moment's setName and playID // `setName: #playID` access(all) view fun getEditionName(): String { @@ -967,7 +957,6 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: The ID of the created set access(all) fun createSet(name: String): UInt32 { - // Create the new Set var newSet <- create Set(name: name) @@ -1315,7 +1304,6 @@ access(all) contract TopShot: NonFungibleToken { } return nil } - } // ----------------------------------------------------------------------- @@ -1515,6 +1503,20 @@ access(all) contract TopShot: NonFungibleToken { return subeditionAdmin.subeditionDatas[subeditionID]! } + // getSubeditionByNFTID returns the subedition struct that the NFT belongs to + // + // Parameters: nftID: The id of the NFT that is being searched + // + // Returns: The subedition struct that the NFT belongs to + access(all) view fun getSubeditionByNFTID(_ nftID: UInt64): &Subedition? { + let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) + ?? panic("No subedition admin resource in storage") + if let subeditionID = subeditionAdmin.getMomentsSubedition(nftID: nftID) { + return subeditionAdmin.subeditionDatas[subeditionID] + } + return nil + } + // This script reads the public nextSubeditionID from the SubeditionAdmin resource and // returns that number to the caller // @@ -1525,6 +1527,7 @@ access(all) contract TopShot: NonFungibleToken { ?? panic("No subedition admin resource in storage") return subeditionAdmin.nextSubeditionID } + // SubeditionAdmin is a resource that allows Set to mint Moments with Subeditions // access(all) struct Subedition { @@ -1545,7 +1548,6 @@ access(all) contract TopShot: NonFungibleToken { } access(all) resource SubeditionAdmin { - // Map of number of already minted Moments using Subedition. // When a new Moment with Subedition is minted, 1 is added to the // number in this map by the key, formed by concatinating of @@ -1573,7 +1575,6 @@ access(all) contract TopShot: NonFungibleToken { // Returns: the ID of the new Subedition object // access(all) fun createSubedition(name: String, metadata: {String: String}): UInt32 { - let newID = self.nextSubeditionID var newSubedition = Subedition(subeditionID: newID, name: name, metadata: metadata) @@ -1670,14 +1671,12 @@ access(all) contract TopShot: NonFungibleToken { // Contract MetadataViews //------------------------------------------------------------ - /// Return the metadata view types available for this contract - /// + // getContractViews returns the metadata view types available for this contract access(all) view fun getContractViews(resourceType: Type?): [Type] { return [Type(), Type(), Type()] } - /// Resolve this contract's metadata views - /// + // resolveContractView resolves this contract's metadata views access(all) view fun resolveContractView(resourceType: Type?, viewType: Type): AnyStruct? { post { result == nil || result!.getType() == viewType: "The returned view must be of the given type or nil" @@ -1734,7 +1733,6 @@ access(all) contract TopShot: NonFungibleToken { return nil } - // ----------------------------------------------------------------------- // TopShot initialization function // ----------------------------------------------------------------------- From f2444a5188265ab362a0bc28dc5b96f06b2629e7 Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 17:41:02 -0700 Subject: [PATCH 7/9] fix ci --- lib/go/contracts/internal/assets/assets.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index b601d4e..42666ea 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // ../../../contracts/FastBreakV1.cdc (38.474kB) // ../../../contracts/Market.cdc (11.292kB) -// ../../../contracts/TopShot.cdc (76.038kB) +// ../../../contracts/TopShot.cdc (76.594kB) // ../../../contracts/TopShotLocking.cdc (6.697kB) // ../../../contracts/TopShotMarketV2.cdc (13.008kB) // ../../../contracts/TopShotMarketV3.cdc (15.791kB) @@ -117,7 +117,7 @@ func marketCdc() (*asset, error) { return a, nil } -var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\x61\x93\x1b\x37\x8e\xe8\x77\xff\x0a\x5a\xf7\x2a\xd6\xec\xc9\x52\xb2\xbb\x97\x57\x4f\xe5\x89\x33\xf6\xd8\xd9\xb9\xb5\xc7\x3e\xcf\x24\xa9\x2b\x97\xeb\x96\x52\x53\x12\xd7\xad\xa6\xb6\x49\x8d\xac\x78\xfd\xdf\x5f\x11\x20\xd9\x24\x9b\x6c\xb5\x3c\xe3\xec\x5d\x6e\xf5\x21\xf1\x48\x24\x08\x82\x20\x08\x80\x20\x30\xf9\xdd\x3d\x42\x08\x39\x67\x72\x5e\xf3\x8d\xe2\xa2\x9a\x92\xa7\xac\x52\x35\x2d\xc9\xd5\x9a\xd6\x8a\x3c\x15\xfa\xaf\xb9\x22\x0b\x51\x93\xcb\x27\x67\xe4\x5a\x6c\xae\x56\x42\xdd\x83\x8e\xd7\x2b\x2e\x89\x84\x86\x73\xdb\x50\xff\x83\xf2\x4a\x12\xb5\x62\x64\x2e\x6a\x46\x16\xdb\x6a\xae\x61\xd3\x92\xab\x3d\x00\x82\xce\x06\x1a\xd1\xe0\x46\x64\x5e\x33\xaa\x58\x41\x66\x7b\x72\x4e\x37\x1b\x56\x93\x17\x74\x26\xed\x30\xac\x81\xbf\xa6\x15\x5d\x32\x04\x5f\x50\x45\x09\x95\x52\xcc\x39\x74\xde\x71\xb5\x22\xb4\x2c\xe1\xc7\x4d\x49\xf7\x92\xd0\xaa\x20\x92\x29\x09\x80\xd4\x8a\x2a\x42\x6b\x46\xb6\x92\x15\x84\x4a\xa2\xd8\x7a\x53\x52\xc5\x24\xa0\xa5\x7b\xbd\x14\x6b\x56\x29\x72\xf9\xfc\xda\x0c\xfe\xf3\x8a\x55\x84\x92\x8a\xed\xc8\xeb\x92\xee\xc9\x8e\x56\x4a\x12\x25\xc8\x8c\x11\x5a\x14\xac\xd0\xff\xd6\x3d\x6b\x36\x17\x75\x21\x47\x84\x56\xe4\xac\x58\xf3\xca\xcc\x09\x87\xf6\x20\x48\x55\x6f\xe7\x0a\x91\xd1\xf4\x53\xa2\x66\x05\xe1\x15\x40\x09\xa9\x39\x76\x04\xa8\x3c\xb0\xd4\x82\x06\x98\x57\x4c\xc9\x31\xfc\x57\x77\x93\x5c\x2a\x22\x16\x84\x92\xcd\x76\x56\xf2\x79\x30\x1a\x00\x73\x0b\x64\x1a\xf0\x6a\x21\xea\x35\xd5\x2b\x44\xe8\x4c\x6c\x15\xa1\x9a\x62\x23\x20\x1d\x25\x9b\x9a\xdf\xe8\xa1\x6a\x26\xc5\xb6\x9e\x23\xed\x90\x9a\x82\xac\x79\xa5\x00\x89\x35\x90\x4d\x92\x19\xd5\x94\x15\x8b\x85\xc6\x01\x57\x00\x46\x5e\xd1\x1b\x46\x66\x8c\x55\xa4\xe4\xd5\xfb\x86\x68\x57\xcc\x9b\x23\xa1\x30\x3f\x37\xd2\x8a\xe2\x32\x6f\xc4\x8e\xd5\xba\x47\x21\x60\x75\xc5\x02\xbe\xe6\xeb\x8d\xa8\x15\xad\x14\xa1\xc0\x5f\x48\xe8\x34\x1d\xcd\x32\x6a\xf8\x12\x96\x50\x83\x9b\x6b\x60\x96\x3b\xa5\xee\x89\x33\x37\xbc\xc2\xf6\xd8\x42\xad\x18\xaf\xc9\x4c\xd4\xb5\xd8\x5d\x31\xe5\x7a\x68\x10\x4b\xa6\xc9\x55\xb3\x05\xab\x59\x35\x67\xc4\x12\x06\x00\x59\x5c\x1a\x2c\xf4\x42\x8e\x2c\xe8\x2a\x46\x40\x18\xd4\x99\x22\x5b\xc9\xab\x25\x92\xce\x01\x37\x84\xba\xd0\xad\xb8\x9e\xc5\x7e\x94\x98\x2a\x2c\x1b\x57\x92\x14\x6c\xc1\x2b\x56\x38\x72\xea\x09\x2a\x06\x4d\x00\x0e\x6c\x96\xa5\xe6\x23\xa2\x18\x5d\xef\x44\xfd\x7e\x44\xfe\xba\x95\x8a\x94\xfc\x3d\x03\xc8\x17\x55\xc1\x69\x45\xc9\x6b\x3a\x67\xb5\xc4\xd1\x96\xc8\xd4\x0a\xf6\xaf\xee\x08\xc0\x34\xc7\x69\x52\xf1\x35\x1b\xc3\x17\xcd\xde\xb1\xac\xa1\xf7\x9d\xe6\x17\x56\x18\x0a\xe8\x2f\x78\xc5\x15\xa7\x25\xff\xc5\xed\x5e\xb3\x03\xcf\xf5\xd6\x36\xbc\x4b\x2b\x64\x38\xdd\xa1\x66\x6a\x5b\x57\x28\x28\x34\x3a\x00\xb1\x1e\x27\x04\x05\x2d\xa5\x30\x44\x90\x84\x92\xa7\xa2\x2c\x19\xae\x9b\xa5\xc8\x18\x05\x18\xd7\x52\x82\x88\xd9\x5f\x59\xb0\x4f\xd8\x0d\xab\xf7\x56\xde\x69\x81\x40\xc4\xae\x62\x35\xd9\xf1\xb2\xc4\x4d\x6b\xd6\x97\xd7\x84\xce\xe7\x62\x5b\x29\xb7\x2d\x40\x46\x99\xdf\x74\xcf\xb9\x1b\xdc\xc3\x74\x4d\x79\xe5\x24\xa0\x05\x81\xe0\x01\x77\xd8\x33\x7a\x25\xc5\xae\xb2\x72\xa9\x01\x64\xb8\x5d\x01\x23\x6d\x25\xd3\xe3\xae\x44\x59\xb8\x1e\x96\xee\xcd\xfe\xab\x84\x22\x7b\xa6\x70\x1f\x4a\x86\x9b\x80\xea\xce\x96\x80\x97\x42\xb1\x29\x39\x83\x09\xea\x4d\x3f\x5f\xd1\x6a\xa9\x39\xb1\x61\x52\xc0\x6f\x43\x2b\x2d\x39\x16\x9a\x70\xbc\xba\xa1\x25\x2f\x08\xad\x97\x5b\xc0\x91\x23\x6a\x9b\x5a\xdc\x70\x2d\x1f\x45\x4d\x44\xc5\x34\x8b\x68\xd4\x36\x35\x7b\x38\x17\x55\xc1\x0d\xcf\xd7\x64\x23\x24\xb0\xaf\xfd\x8a\xd6\xac\x7a\xa0\xc8\x5a\x8b\x06\x0d\xe8\xb9\x1b\x1b\xa6\x52\x08\xf8\x55\x14\x7c\xb1\x37\x68\xe2\x92\xf0\xf5\xa6\xdc\x1b\x06\x21\x5f\x6b\xc8\x15\x2f\x71\x2d\xf5\x9e\x50\x2b\x21\x19\x99\x53\xc9\x24\xa9\x18\x8a\xa0\x99\x16\x32\x55\x51\x36\xfc\xa4\xb7\xa4\x23\xc7\x05\x08\x68\x58\x8c\x46\xd8\x28\x41\x6a\xb6\x66\xeb\x99\x96\x49\x8e\x5b\xf4\x82\xfe\x20\xca\x82\x55\xe4\x0a\x70\xfa\x99\xd6\x35\x17\xb5\x24\xb3\x92\xed\x08\x25\x7f\x78\xf8\x0d\x29\x19\x75\x82\xfe\xf7\x5f\x7f\xf3\x2d\xec\xa1\x05\xaf\x68\x29\xc7\xf7\xee\xfd\x6e\x72\xef\x1e\x0e\xa3\xa7\xbc\xe4\xb3\x92\x5d\x8b\xf7\xac\x22\x8b\x5a\xac\xc9\xd7\x1f\x9e\xff\x78\xf9\xc3\xc5\x93\x17\xcf\xae\x5f\xfd\xf9\xd9\xe5\xd9\xf9\xf9\x9b\x67\x57\x57\xb6\xc3\xa5\xa8\x92\x7d\x2e\x9f\x5f\x47\x2d\x5f\x32\x45\xf5\xb9\xf9\x13\x67\x3b\x69\x9b\xbd\x7c\x76\x7d\x76\x7e\x76\x7d\xf6\xd3\xc5\xb3\x9f\xaf\xa2\x0e\x66\x07\xbc\x10\xf3\xf7\xc0\x09\xd8\xe3\xfa\xd5\xeb\xab\x3f\xbd\xba\x7e\xf1\xea\xe9\x9f\x2f\x2e\x7f\x88\xba\x68\xd8\x6f\x98\x14\xe5\x0d\xab\x09\xb1\x5d\x34\xf0\x37\xcf\xae\x5e\xbd\xf8\xe9\xd9\x1b\xdb\xe1\x1e\x9d\xcf\x99\x94\x43\x5a\x96\x27\xcd\xd6\x35\x43\x4e\xdb\xd3\xfa\x08\xc4\x9e\x4c\xc8\xc3\xbb\xf9\x58\x70\x76\x9b\x17\x6c\x53\x8a\x3d\xb0\xf1\x0d\xad\x39\x9d\x95\xe6\xfc\xbe\xc3\x21\xdd\x98\x2b\x7d\x80\x2b\x2d\x78\x83\x63\x42\xf3\x1c\xe2\xa1\x37\x4f\x85\x0c\xec\x91\xe9\x86\xb3\x9d\xde\x90\xe4\x12\x3b\x0f\x4f\xc8\x94\x5c\xa9\x5a\xaf\xce\x47\xcb\xff\xff\xe7\xe3\xe5\xb3\xeb\x9f\x5f\xbd\xf9\xf3\x27\xf2\x29\x18\x91\x16\x45\xcd\x24\x68\x30\xbb\x15\x9f\xaf\x48\x2d\xf6\xb4\x54\x9c\x49\x22\x57\x62\x5b\x16\x7a\x53\x14\x6c\x23\x24\x57\xe6\xa0\x4f\x0e\xfe\x06\xba\xed\xcf\x10\x1c\xe0\x60\xfe\xdd\x20\xe1\xd8\xe4\xcd\xab\xff\x3c\x7b\x71\xfd\x9f\x66\xd5\x23\x8c\x36\x54\xad\x9c\x3e\xb0\x9d\x31\x94\x03\x46\xd9\x71\xca\xc0\x8c\x95\x02\x65\x91\x69\x7a\xe6\xc9\xdc\xc9\xc4\x4c\xe6\xb3\xe8\xd8\x0c\x0a\x63\x5e\x29\x51\xd3\x25\x7b\x4d\xd5\xca\x90\xd6\xfd\xdd\x4c\x6d\x22\xf1\xdb\x89\xe1\x9c\x08\x46\x33\xc3\xbb\xe2\x9a\x88\x51\xdd\x24\x9f\xdd\x68\x29\xff\xa5\x78\xf4\xd9\x9a\x2b\xd0\xac\x23\x2d\xd8\x9c\xcc\x5c\x5a\xc5\xbd\x45\x5d\xa6\xf1\x82\xc6\x4f\xb1\xc5\x90\x17\x53\xf2\xe3\x45\xa5\xfe\xf0\xfb\x91\x16\xee\x20\x85\xa6\xe4\x23\x72\xee\x14\xff\xf7\xe9\xa4\x63\x64\xc9\x6a\xcd\xa6\x5a\x2d\x84\x23\x4c\xd5\x7c\xb9\x64\x35\x0a\x6f\x6a\xd4\xbb\x0c\x22\x97\x6c\x77\x05\xdd\xaf\x14\xad\x35\x36\x15\xdb\x3d\xdd\xd6\x35\xab\x14\x7e\x6f\x71\x3b\x69\xe6\x0e\x94\x05\xcb\xe0\x8a\xa9\x87\x6f\x58\x09\x46\x86\xaf\x6c\x4e\x26\x1d\xe8\x6a\x5d\xf1\x20\x81\xae\x98\xb2\xf4\x91\x4c\x5d\x9c\x37\x24\x92\x11\x5a\x07\x56\x44\x1f\x54\xd6\x1c\xa1\x1a\x6c\xc7\x8a\x9c\xe9\x86\xd7\xe2\x8a\xa9\x78\x50\xad\xb2\x37\x7f\xe7\x06\xb5\x03\xd6\x4c\x71\x4d\x7e\x10\xf0\x30\x28\x9c\xb4\x73\x5a\x69\x55\x63\x66\xec\x2c\x63\x27\x74\xe0\xf3\x06\xe1\x3c\xaf\xc5\xfa\x20\x4e\x23\x52\x6d\xd7\xa8\x0d\x1d\x24\x8e\x59\x81\x52\xcc\xdf\x6b\xad\x73\xcd\x68\xa5\x05\xc8\x6b\xb0\x4b\x1a\x2c\x81\x6e\xf9\xf5\x79\x01\xdd\x43\xac\x72\x23\x1a\x35\x8d\x4b\xa3\xea\x7a\xa4\xc9\x0c\x80\x3d\x5e\x42\xeb\x21\xea\x6c\x76\x98\x6f\xff\xd8\x9e\x7c\x82\x49\x68\x79\xb9\xd5\xda\x88\xf7\xad\x13\x46\x3e\xc6\x09\xbe\x6e\x94\xe2\x87\xf5\x31\xec\xbd\x76\xd3\xd4\x4a\x7b\x51\xd3\x5d\x65\x67\xda\x80\xcc\x4c\xf8\x67\xd3\xc3\xc9\x03\x3d\x4d\xdd\xd9\x1d\x20\x8f\x73\xd4\x6d\x86\x75\x07\x94\x36\x6a\x44\x9f\x61\xcf\xb1\x47\x30\xaa\x12\xfe\x98\x07\x97\xb4\x60\x52\xd5\xfa\x34\xe9\x5c\xca\x73\xdb\xca\x1b\x2a\x0b\xdc\x3b\xef\x0e\x8b\x0a\xd7\xd6\x49\x8c\xc4\x3a\x8f\x48\x45\xd7\xcc\x2a\x04\x9d\x92\xb6\x17\x4e\xa1\xbd\x2e\x37\x6c\xce\x17\x7c\x6e\xe6\x7a\x10\x53\x23\x69\xb0\x75\x82\xbd\xd3\x33\x38\x20\x94\x7e\xa5\xa3\xf5\x61\xc9\x6e\x58\x49\x16\x9c\x95\x85\x1c\x7b\x1a\x8b\x64\xd6\x89\xa2\x77\xcb\x96\x96\xe4\x86\x96\x5b\x26\x1b\xff\x52\xb7\x4f\xe7\x0b\x9d\xd5\x78\x8e\x21\x12\xe0\x21\xb8\x02\x5b\x4f\xab\x4d\x5a\xdd\x1b\x47\xed\xf4\x81\xa1\x91\x9a\xb3\x8d\x75\x46\x55\x05\x9f\x83\x37\x8c\x92\x65\x2d\xb6\x1b\x6d\xb3\x81\x63\x49\xad\x6a\xb1\x5d\xae\x3c\xfb\x7e\x32\x21\x2f\x69\xb5\x37\x7e\x27\x5a\x11\xf6\x81\x4b\x45\xf4\xfc\xa1\xd5\x88\xcc\xb6\x8a\x88\xaa\xdc\x83\xf1\x87\x87\xd9\xb8\xad\x83\xd1\x9a\xcc\x53\xc7\xb0\x9b\xd5\x4f\x46\x0d\x27\x92\xff\xc2\x48\xc1\xd1\x95\x58\xef\x35\x6e\x9e\x2a\x22\x7d\xd0\x92\x95\x0b\x84\xad\x59\xe7\x9c\x2a\x2a\xa7\xe4\x23\x02\x9e\x42\xaf\x4f\xbd\xe0\x5f\x31\xdf\x0f\x91\x19\x42\x62\x23\x7f\x04\xd3\xaf\xf7\x20\x8d\x8f\x26\x3b\x84\x9c\x92\xef\x7d\xf8\xa1\x0a\x7d\x71\xee\xdc\x89\xf6\xc8\x35\x1e\x42\x38\xeb\xc6\xc4\x93\xfd\xf5\x1e\x16\xc8\x3b\xc6\x8d\xd8\xb1\x1b\x0d\x38\x43\x4a\xbe\xac\x58\xe1\x3a\x9a\xfd\x6f\xd5\x8d\x07\x52\x8f\x89\x66\x35\x03\x39\xc1\xab\xb9\x36\x8b\x2b\xe3\xc4\xfd\x26\xbd\xd6\x15\xfb\xa0\x5e\x07\xdb\xb9\xe7\x3c\xd0\xcb\x19\xa0\x9f\xd0\xaf\x26\x13\x94\x1d\xc1\x14\x3c\xd4\x25\x53\xb7\xc1\xfc\xca\x97\x4b\x01\xe2\x4a\x28\x5a\x6a\xcd\x64\xc6\x6a\xbd\xa8\xd7\x62\xa3\xcd\x29\xe5\xfb\x93\x63\x4f\x68\x84\xf8\x13\x36\xa7\x5b\xc9\xb0\xa9\xde\x51\x60\x87\x99\xb3\x64\x44\xb8\x22\x85\x60\xb2\x7a\xa0\x48\xc5\x34\x6a\xb4\xe6\xe5\x1e\x74\x9a\x66\xcb\x5b\x58\x35\x5b\xe8\xd3\x10\xdd\xa7\x31\x6e\x30\x00\x37\x3b\x96\x55\x73\x66\xdc\x7e\x40\xa4\xad\xf3\x6b\x58\x58\x0d\xc2\x46\xa5\x51\x82\x14\x54\xb1\x31\x39\x2b\xa5\x70\xae\xf4\x65\x29\x66\xb4\xb4\x47\xf4\xc5\x39\x2a\x18\xba\x0b\xaf\x96\x69\x92\x02\x62\x57\xdb\xcd\xa6\xdc\xdb\x13\xe1\x57\x96\xed\x4f\xc5\x1a\xf5\x08\x72\xbd\xdf\x30\xf4\x16\x72\x5f\xff\xb9\x73\x3c\xe0\xf4\xd0\x47\x04\x90\xfc\x77\xde\x88\xbf\x03\x82\x69\x3c\x7c\x19\x6e\x11\xb6\x00\x34\xe3\x0a\xb5\x62\xce\xe7\x28\xad\x03\x70\x6c\x80\x7b\x20\x49\x21\xc0\xe9\x67\x4e\x2b\x07\x03\x0f\x2d\x73\x48\xe1\xd9\x85\xf2\x1a\xdc\x79\x52\xd1\x6a\xce\xc8\x50\xd4\xc6\x29\x7a\xa2\xb9\xc6\xb8\xf0\x14\x8c\x01\x58\x5a\x70\x86\x57\xbd\x1b\x9c\x00\x73\x9c\x8c\xbb\x75\x08\x46\xfd\x62\x67\xa1\x33\x89\xb4\x1e\xe4\xee\x3f\x56\xa2\x2c\xa4\xd3\x88\xfc\x9b\x23\xe7\x45\x40\x1f\xb4\x53\x73\x2e\x9f\x9c\x81\x54\x1c\x35\x4e\xf1\x92\x2d\x59\x55\x68\xe1\x6d\x78\x1d\xd4\x26\x0b\xe0\x0d\xdd\x93\xb3\xb2\x64\x15\x59\x71\xdc\x52\x7f\x00\x01\xc4\xb1\xf3\x9f\x18\x45\x1b\xe9\x6a\xb3\xad\xa5\xe7\x0b\xfc\x83\xf1\x03\x92\x25\x5d\x33\xf2\xad\x05\x27\x6a\x04\xff\x02\x96\xe4\x4a\xb1\xcd\x8a\x55\x52\x54\xe8\x55\x34\xdd\x19\x85\x7d\xfd\x82\xcd\x6a\x51\x91\x7f\xa7\xeb\x86\xb0\xee\xac\xf6\xc4\x90\xf1\x30\x97\xde\xb5\x05\x25\x92\x57\xcb\x12\x2f\xcd\x88\xb9\x76\x41\x77\xb7\x58\x58\x18\x5c\x35\xb4\x1b\xa3\xe7\x06\xaf\xd8\x6a\x66\xee\x92\xca\xbd\xd9\xe3\x7c\x56\xb2\x11\x91\x82\xd0\x6a\xaf\x19\x67\x4e\xab\x46\x34\xd1\x02\x3d\xf7\x89\x65\x88\xc9\x0f\xe8\x5c\x9c\xfb\x93\xf1\x85\x88\xf1\x42\xc0\x62\x7f\xc4\xb5\xf7\x64\xf2\xb6\xe2\x7f\xdb\xc2\x99\x62\x2f\xf7\x74\x43\xd7\xca\x07\x54\x32\x15\x69\x99\x01\xb4\x2b\xcd\xb3\xd2\xdd\x2c\x36\x98\xc3\x75\x99\xbd\x6c\xd4\x74\x03\x5d\x41\xdb\x98\x6b\xba\xd9\xf0\x6a\x19\xe2\x84\x97\x0d\x7a\x47\x02\x23\x89\x6a\x49\x14\xab\xd7\x64\x47\xf7\x70\x4d\xe0\x00\xc3\x12\xcd\xac\x1e\x39\x26\x17\xfa\xd8\xa2\x70\x5d\x29\x6a\x5a\xef\x7d\xb0\x73\x51\x19\x3a\xec\x56\xbc\x64\x64\xc7\xc8\x82\x2f\xb7\x35\x23\x78\x97\x37\x63\x4a\xb1\x1a\xc6\xc0\x2b\x34\xb7\x86\x1e\x94\x2c\x55\xda\xe6\x83\xb1\x2c\x3e\x35\x14\xd2\xe2\x66\x98\x6f\x78\x62\xbc\xb6\xf6\xb3\xa9\x59\xf4\x8d\xfe\x38\xac\x4a\x56\x2d\xd5\x8a\xdc\x3f\x25\x5f\x4f\xc9\xe0\xd2\xfa\x37\x1c\x6d\x1a\xbb\x9d\xad\x37\x6a\x3f\x08\x20\x7d\x0a\xfe\xd2\x1a\xd4\xd8\x28\x35\xa7\xf6\x0c\x18\x37\x3a\x48\xbb\xb1\x1b\xe5\xd4\x0d\x78\xaf\x81\xed\x11\xcc\x2c\xa7\xbb\x0b\xe4\x78\xbd\x56\x19\x0f\xcc\x8c\xce\xdf\x2f\xb8\xe1\x17\xc0\x1f\xf6\xac\x98\xbf\x9f\xaf\xb4\xdd\x60\x18\x7d\x2d\x6a\x2d\xb0\x15\xe5\xa5\x51\x04\x2c\xf4\xa2\xb9\x93\xb7\xf7\x9d\x1a\x0c\xee\xbb\x19\xab\xd8\x82\xc3\x3d\xef\x8a\xde\xe0\x4d\x21\x0b\xba\x70\x6b\x8c\xe0\xfe\xdb\x89\x6d\x19\xc2\x9f\x31\x02\x0a\xa9\x12\xe4\x7d\x25\x76\x68\xa7\x28\x81\x2a\xa9\x43\xba\xe0\x35\x9b\xab\x72\x8f\xc6\xfd\xf3\x52\xec\x62\x46\xb1\x52\xfe\x04\x3c\xa9\xdb\x8d\xd6\x0c\xae\xe9\xb2\xe4\x15\x1b\x2a\xfc\xbf\x65\x84\x13\xbb\xb7\xa2\xd5\x0f\x08\xff\x76\x60\x7a\x0f\xde\x91\x53\x62\x20\xdc\x0b\xda\xdb\x75\x74\xba\xfd\x5b\x6f\x9d\x75\x2f\xfd\x67\xd0\xc3\xf8\x6c\xbd\x66\xf7\x42\x86\x69\xb4\xe9\x33\xab\x56\x1a\x13\x48\x13\xd7\x58\x1a\xbe\x02\x27\xe6\xf3\xad\x67\xe1\xd5\x8c\x96\x64\x27\xea\xd2\x69\x73\xd0\x74\x4d\xdf\x33\xb2\xdd\xc0\x0d\x31\x7a\x57\x9c\x59\x65\x2f\xf2\x66\xa5\x3e\x7b\xe1\x70\xd1\x5a\xbe\xfe\x69\x46\x25\x9b\xd1\xb2\xf4\xce\x80\x97\x74\xc9\xe7\x64\x4e\xeb\x42\x8e\xc9\x19\xae\x4d\x63\x74\xf1\x8a\xac\xb7\xa5\xe2\x9b\x52\xdb\x16\x0b\x10\xea\x0a\xc0\xb9\xf3\xb5\xb1\xfd\xd0\xa2\xe1\x46\x54\xa5\x03\x11\x28\x1a\xbd\x96\x15\x5a\x96\xeb\x99\x93\xea\xe4\x6f\x5b\xd0\xc8\xb1\x95\x84\x0b\x32\x2f\xa0\xc0\x69\x1c\x4d\x5c\x81\xd6\x0f\xe6\xb4\x2c\x35\x61\x6f\x68\xcd\xc5\x56\x92\x25\x88\x28\x70\xd4\x05\xa7\x31\x45\x41\xc9\xaa\x36\x2a\xe4\x95\x36\x2d\x95\x0b\x1a\xb0\xb1\x02\x74\xc6\x21\xcc\xc4\xb3\x5b\xcc\x55\xa1\xb6\x56\x61\x6b\x9b\x35\xb3\x81\x0d\xbe\xfd\x35\x3e\x70\xd2\x58\xf2\x85\x87\xcd\x8f\xad\x83\xc6\xba\xfb\x62\x30\x5a\xa2\xca\xb6\x11\x61\xe0\x5c\xea\xa3\xdf\x4c\xd4\x87\x30\x99\x10\xf6\x61\x4c\x06\xd7\x7c\xcd\x24\xea\x03\xba\xc9\xb5\xa8\x45\xa5\x04\x79\x43\x37\x4a\xd4\x92\xcc\x57\xe2\x7d\xc3\x92\x9a\xcf\xc5\x62\x21\x07\x59\x44\x7c\x3f\x51\x78\xdc\xf5\x71\x24\x90\x3b\x74\x26\x90\xdb\x39\x14\xd2\x54\x6e\x7b\x13\x88\x3d\xab\xfc\x99\xf7\x3b\x9d\x74\x0f\x7b\x32\x7d\xe7\x0e\xa6\x2b\x43\xc5\xa3\xcf\x24\x34\x52\xc3\x23\x09\x8c\xcb\x76\x53\x80\x7f\x0a\xc3\xa4\xe0\x00\xf5\x1b\x40\x81\x2f\x25\x2b\xe4\x9c\x88\x73\xb7\x6b\x4a\x9b\x3f\xa1\xa2\xae\x99\xa8\xb9\xf6\x57\x82\xd0\xa2\x00\xd5\xb5\x66\x6b\x71\xc3\x7c\x4d\x5b\x5a\xe7\xaf\x34\x37\x00\x10\x17\x64\x9c\xf4\xb1\x2a\x7a\xd1\x12\x36\x76\x27\xa2\xd0\x89\x82\x66\xb4\x16\xe9\x9b\xa3\xaa\x1d\x27\xe4\x42\x69\x8c\x86\xba\x12\x45\x6b\xd4\x26\xbc\x68\x0e\x37\x45\x85\x15\xe9\xe6\xb6\xc4\x0e\xe3\x22\x70\x74\x33\x7f\x1a\x81\x60\x6f\x34\x67\xf8\x53\xef\xb5\x46\xa3\x32\xa3\xbd\xf4\xe3\x2f\x9a\xe0\x17\xb8\xab\x82\x11\xad\x92\x57\x6a\x33\x1c\x6c\x68\xff\x8e\xd3\x9f\xaf\x6e\x8d\x07\x0a\x82\xe0\x6a\xa4\x9b\xef\x98\x56\xe4\x65\x73\x5c\x73\x0f\xb3\xb6\xec\x6f\xa2\xc7\x20\xa2\x01\x2f\x6f\xfc\xf5\x33\x43\x35\x17\x25\x8e\x20\xe6\xa2\x27\xb0\xae\x34\xa0\x4a\x80\x16\xcb\x6a\x3c\x15\xed\x94\xfd\xbb\x0f\xae\x5a\x0c\xb0\xf0\x16\x51\xab\x44\xb2\x19\xb9\x12\xa8\x13\xb9\x2b\x9a\x20\xcc\x4e\xcf\x5b\x4b\x81\xd0\xaa\xc1\x76\x52\x19\x72\xe2\xe0\x89\x41\x71\x12\x67\x65\x39\x3c\x01\x26\xd5\x43\xeb\x7f\xd6\x26\xea\xa3\x00\xad\xed\xa1\x12\x0f\xf5\xff\x47\x24\x5e\x01\x6d\xd3\x96\xc2\xc6\xb7\x2d\x44\xcd\x6e\xb4\x19\x5e\x15\x5a\xa3\x5f\x81\xd2\x2f\x6a\xe6\x5c\x37\xa0\x77\x69\x35\xcf\x52\xc0\x17\x51\x8e\x77\x35\xe0\x43\xa7\x89\xfc\xac\xd3\xe4\xac\xae\xe9\x3e\x0a\xc3\xd3\x73\xa5\x64\x43\x6b\x85\xe7\x8c\xde\x88\x36\xcc\xc6\x74\x33\xf1\x8e\x9b\xf8\x4e\xd1\x20\x32\x82\x4d\x76\x71\xae\xcf\x6c\x49\xe8\x66\x83\x2a\xef\x8a\xd5\xa1\x2c\x37\xde\xbc\x42\x30\x34\x78\x96\x70\xca\x6a\xc1\x51\x58\x66\xd3\xd0\x01\xc7\xf4\xad\x62\x4b\xb6\x37\xaa\xa6\xf5\xec\xca\x29\x79\x8b\x33\x7f\x77\x2f\x3c\x48\x36\xce\x3d\x7c\x71\x6e\xe6\x7e\xe1\x0e\x24\xbe\x70\xa3\x55\xcd\x01\x67\xd6\xcd\x67\x9f\x90\x24\xe9\x6b\x56\xf0\xcc\x71\x09\x06\x1f\x7e\xbd\xa0\xa5\x64\x64\xa8\x67\x6d\xa6\x72\xd2\x05\xce\xb4\x19\x21\x26\xb8\x22\x40\xf0\x7a\xcb\xa2\xeb\x54\x08\xc7\x3a\x48\x19\x03\xd0\xf3\x47\x3f\x11\xa2\x0c\xac\x97\x90\x18\x3e\x83\xe3\xf9\x51\xee\xcd\xa5\x69\x0a\xf1\xd0\xef\x6a\xe7\xbf\xad\xb0\x07\xf1\x7b\x68\xf4\x5f\x3b\x27\x01\x2d\x4b\xb1\x73\x81\x57\xde\xae\x4e\x8d\x22\xc3\xbb\xdb\xe4\x9d\x6d\xd0\xef\xcc\xad\x62\x05\x1b\xb3\xa1\x17\x32\x9c\x41\x4f\x09\x87\xea\xc8\xef\x8e\x16\xd4\x9c\x4b\x13\xd9\xa9\x9b\xd8\xc9\x02\x26\xe0\x9f\x09\x46\xbc\x58\xb4\xef\x98\x93\x78\x82\xd4\x0a\x18\x34\x2f\xb8\x10\x59\x00\x13\xa2\x47\x55\xa3\xee\xbb\xd0\xd9\x94\x58\xd0\x3c\x80\xe8\xe0\xca\xc7\x5b\xc3\xb7\x69\x9a\xed\xd1\xe8\x6b\x9e\x1f\x58\x2c\x1c\xaa\x2d\x64\x5a\x7e\x61\x2d\xae\x9c\xe7\x06\xe9\xe0\xed\xaf\xd4\x1a\xc7\xb7\xe5\x66\x0f\x80\x6f\xb0\x1d\x1a\x6d\x5a\x9b\xa3\xd1\x40\x92\x2b\xb1\xc3\xb8\xc2\x92\xce\x99\x47\x9b\x11\x61\xcb\x31\xf9\xe6\x0f\x7a\x0e\xdf\x7e\x7d\x60\xcb\xe0\x74\xf1\x12\xfe\x35\xab\x35\xf2\xde\xf6\xc1\xff\xc7\x0e\x8f\x2e\x25\xf2\x58\x25\x0f\x45\xf4\x29\x79\xfb\xae\xfd\x9b\x0d\xb2\x38\x25\x1f\x13\x9a\xa4\xe1\xea\x53\x94\x3a\x09\xf5\xb1\x3d\x33\x84\x14\x34\x9d\x4c\x08\xde\x29\x37\xa1\x2b\x60\xe7\xe0\x09\x64\x04\x24\x84\xd2\x63\xdc\x2b\x30\x61\xa3\xa1\x61\x28\x54\xd2\x48\xb7\xb7\x63\x6f\x1b\x92\x68\x13\xdd\x0c\x60\x88\xa8\xff\x7b\x92\xf6\xb3\xe8\x0d\x04\x48\xd3\xa2\x90\xf6\x5c\x6a\x8e\xa3\x94\x0b\x4b\x2b\x28\xb4\xa6\x6b\xa6\x6d\xca\xa9\xf3\xeb\x99\x13\xc9\x77\x6f\x58\xcb\x77\xc6\xf4\x96\x68\xc2\x40\x12\x00\x6b\xf6\xf0\xa9\x0b\x51\x9d\xc6\x27\x1d\x40\xab\x18\x2b\xdc\xcb\x00\x63\xbf\x68\xb8\x1b\xdf\xeb\x68\x3a\x80\xe5\xe0\xb5\xd7\xd2\x02\x97\x32\x09\x7a\x4e\xab\x07\x66\xc7\xd1\xb2\x66\xb4\xd8\xe3\xce\x0b\x4e\xe7\xab\x34\x39\x7c\xd1\xb0\xd8\x56\x96\xa0\xc3\xe8\x56\xbd\x97\x19\xd4\x76\xbd\x58\xaf\xcb\xfd\x53\x52\xf1\x72\x4a\x06\x4f\x51\xf4\x69\x0d\xbb\xa1\xb3\xd0\xc8\x4d\x8d\x4f\xc9\xdc\x62\x01\x7d\xc6\x83\xd6\x18\xf7\x3d\xbe\x6e\xc3\xf3\xd7\x1f\x98\x72\xa1\x98\xd3\x92\x9a\xd0\x30\x73\x7a\xb5\xa1\xe7\x36\x85\x9b\xc8\xa9\x9d\x88\x75\x70\x03\x50\x8f\xea\x45\x4b\x27\x1a\xc7\xf6\x5e\xbc\xb7\xce\x22\x62\x80\xfa\x6b\xd5\xb3\x50\xd4\x93\x40\x24\x8c\x51\xc1\x32\x6b\x75\xd2\x02\xfc\x6a\x63\x7c\x01\x00\x79\xbb\xf1\xef\xdc\xb2\x92\xa4\x99\xaa\x11\x1a\x31\xd4\x0b\x17\x94\xef\xcb\x5d\x0c\x4f\x57\x82\xfc\xc2\x6a\xd1\x4b\xd0\x78\x03\x7d\x1d\x0e\xc2\xd6\x3c\x17\x89\xd6\xc8\x89\x26\xf0\xc3\x4e\x3f\x41\xe1\x46\x42\x48\x14\x11\xce\x13\xe6\xec\xbb\x8e\xbd\x91\x14\x15\xd2\xca\x0a\xe9\x0b\x0b\x4f\x83\x4e\x8b\x8b\x98\xd3\xf0\x43\xe1\x71\x01\x2c\xf6\x11\x9b\x53\x0e\x1d\x2a\x56\xc1\x8d\x37\xa8\x5e\xe9\x8d\xd1\x61\x4d\xe3\xc4\x86\x05\x6a\xc6\x3b\x5e\xff\xff\x24\xe3\xa2\x08\x49\x8b\x1c\x03\xcc\x85\xff\x94\x56\x71\xf5\x0d\x46\x67\x3b\xe3\x6b\x84\x07\xaa\x79\x17\xe4\x1b\xcf\x7d\x68\xdf\x43\x4c\xfb\xb6\x68\x02\x64\x0f\x41\xcd\xa5\x67\x02\x31\x77\xb6\x79\x0a\x3b\x19\xd2\x1b\xca\x4b\xf0\x90\x7b\x5b\x2a\xd4\xe3\xb3\x8b\xd8\x50\xed\xb3\x84\x6c\x72\xaf\xc6\xf2\xd5\x58\xef\x96\x46\x29\xd9\xea\xb4\x2f\xc9\xd4\xfd\x4e\x11\xc5\x17\x46\xea\x46\xa3\xde\xef\x8b\xdd\x29\x58\x2b\xf7\x5a\x8d\xdd\x3e\x4f\x47\x78\xe6\xf7\x7a\x18\xe5\x79\x48\xc0\xdc\x3f\x86\x9b\xcf\xe0\xe6\xd3\x30\x73\xf0\x56\xb0\x51\x1e\x03\xbb\x42\x9f\x30\x3b\x0a\x4f\xfb\xaa\xe6\x16\xdc\xb1\x0a\x0a\x07\xeb\xcc\xb1\x97\x2a\x7d\x76\x40\x9a\x6f\xd0\x41\x91\xdf\xec\x9e\xc2\xd8\xb9\x3a\x9f\xb9\xe5\x8d\x57\x24\xf0\xcb\xb8\x0d\x7e\xc8\x3d\xf3\x79\x9b\x12\x46\xc0\xb7\x07\xc6\x6a\x8a\x54\xa1\x98\x50\x06\xc7\x8f\x69\x26\x36\x2a\x71\x86\x38\x4e\x61\x06\x8e\x8d\x9b\x00\xc3\xb6\x62\x7e\x1b\x3e\xed\x47\x43\xbd\xf8\xe6\xd4\xd4\xff\x94\x46\xab\x36\x5f\xa1\x0f\x55\x6d\x6b\xe3\x64\xad\xd8\xae\xdc\x5b\x23\xca\x8b\xab\x24\x91\x98\x39\x52\x60\x7a\x47\x77\xe3\x14\xbc\x85\xd4\x5c\x6f\x65\xdb\x02\x85\xc9\xcc\x02\xd3\xbe\xa7\xec\x7f\x83\x14\x40\xfc\x2f\x9f\x5f\x23\xd2\x3b\x6a\x6d\xc1\x5e\x92\xb6\x21\x74\x2c\x69\xa7\xe4\x7b\x0d\xf4\xce\xe4\x2d\xcc\x0a\x2e\xff\x61\xb8\x29\x5e\xff\x6e\xfa\x2b\xb4\xb1\x68\xcd\x82\xf6\xdc\x63\x1b\x90\xec\xcd\x48\x4e\xbd\xb5\x2e\xb2\x43\x8a\xe7\x0f\x4c\xe5\xec\xf9\xbc\x0d\x0f\x43\x07\xa1\x12\xc4\xdd\xa5\x6d\x25\x43\x8f\x33\x97\x06\xd2\x03\x69\x82\xd0\xcd\x18\x41\x27\xb8\x66\xda\xae\x2f\x2a\x63\x77\x1e\x14\xe4\xad\x19\xbc\xb4\xc4\x69\x5e\x19\xb7\x47\x60\xbb\x97\x66\x55\x60\xd1\x1f\x3d\xb4\x51\x83\x97\xcf\xaf\x87\x61\x88\x7c\x83\xcd\xbf\x1a\x56\x19\x7e\x73\x32\x6a\xad\x59\xf7\x27\x3a\xab\x8e\xec\xdd\x3e\xfc\x8e\x05\x10\x04\x4d\x7f\xdd\x36\x0b\x2e\x6c\x44\xa3\xb9\x49\xd1\x8a\xbb\xb7\xf4\x07\xd7\xba\x87\x42\x9f\xa4\x63\x88\x88\xb9\x75\x7f\xf4\xd0\xad\x4f\x46\x5c\xce\xa8\x9a\xaf\x5e\xb6\x64\xa6\x56\x9b\x67\x5c\xd5\xb4\xde\x93\xbf\x6d\x69\xa5\xb8\xda\xe7\x3c\x52\x91\x4c\x5d\x63\x2c\x4e\xf4\x28\x80\xf4\x52\x40\xd5\x41\x79\xea\xbf\x65\xd6\x54\xcc\x19\x01\x16\x69\x94\x71\xa9\x29\xa0\xf1\xdf\x12\x78\x49\x39\xe9\x3d\x60\xf6\xdf\x2a\xbb\xfb\x3a\xab\xcb\x04\x1b\x7c\xc7\xea\x2e\xf8\xb1\x3c\x8d\x56\x62\x18\xbf\x3e\x69\x66\x64\xde\x35\x4c\xc9\xf7\x1e\x5e\x1f\x53\x5b\xd3\xfb\xbd\xd9\x98\xcd\x97\xc3\x88\x6b\x6e\x68\x4d\xb8\x85\x0f\x96\xa3\xff\x2b\x86\x38\x71\xf2\xa8\x21\x67\xe2\xb2\xd6\x1f\x74\x6c\x9e\x8a\x0c\x95\x78\xcf\xaa\x29\x79\xf4\x10\xe3\x4d\xda\x93\x34\x56\xe6\x49\x0b\x1e\x27\xa7\x84\x1b\x3e\xff\xf6\x8f\x9a\xcf\xfd\x5f\x3f\xe5\xb9\x3e\xc1\x7f\x39\x45\xe1\x67\xae\x56\xde\xc3\x8b\x84\xda\x00\x77\x49\xcd\xd6\x3f\x52\x8d\xf8\x52\x5a\x44\x40\xa8\x50\x30\x85\x20\x3d\xcc\xf5\x4c\x78\x45\x9e\x99\x3f\x7f\x63\xda\x4a\x0f\x65\x25\x5c\xec\xd6\x2e\x4b\x3e\xdf\xfa\xa7\x42\x73\x3b\x85\xa6\x21\xea\xdd\xa8\x35\x0d\xbc\x37\x6c\xe1\x79\xf9\x4d\x58\xf6\xd8\x38\xc5\xc7\x98\x37\xe4\xd1\x57\xd1\x03\xe1\xef\x86\xf8\xe4\xcd\x76\xeb\x7a\x83\x1c\xca\x9b\xc7\x8f\x31\xfd\xc2\x70\x70\x29\x02\x79\x10\x06\x45\x68\x4b\x11\x81\x0c\x22\x09\xeb\x94\x32\x4f\xde\x9c\x86\xf3\x19\x2f\x99\xba\x0c\xcf\x7f\x8f\x5f\x6f\xad\xc0\x1c\xf8\xdc\x4e\xbd\x3a\xf0\x09\x37\x97\xff\x57\x5b\x8f\xfa\x22\xca\xa7\x47\xf5\xdf\x8a\x0a\xda\x4d\xc5\x23\xb5\xd1\xcc\x46\x0d\xf9\x93\x16\xc5\xb5\xf8\x75\x38\xf4\xce\xb8\xb1\x37\xcd\xc2\xa9\x4a\x66\x4e\x0d\xe9\x4d\xb0\x5a\xc0\x04\x1d\xf3\x8d\x79\x11\x9f\x1b\xfe\x5f\xa3\xc4\x8a\xb7\xbc\xeb\xc7\x9a\x00\x07\x8d\xb9\xbb\x37\x0d\xd2\x5a\xd2\x21\x43\x21\xd2\x9c\x7e\xbb\x76\x43\x07\xbb\x7d\xa6\x32\x26\x0f\x6b\x63\x5f\xd4\x40\x39\x64\xa1\x1c\xd0\xa4\x62\x7b\x25\xaf\x5b\xfd\x4f\xb7\x62\x32\x84\xf8\xb5\x8f\xd0\x5f\xcd\x78\x4a\x26\x72\x59\x32\x85\xb7\x67\x27\xcd\xbd\x59\x44\xd9\xf8\x29\x80\x3c\x06\xb8\xb9\xc5\xd0\xe0\xc3\xd8\xaa\x8e\x41\xe2\xeb\xaa\x1e\xc3\x5c\x6e\xd7\x81\x40\x0d\xc6\x33\xc1\x28\x1d\x23\x26\x44\xb2\x37\x3a\x09\x23\x81\xbd\x27\x00\xc1\x46\x6d\xe5\xd8\xf3\x1e\x3c\x51\x17\x79\x31\x99\x90\xa7\x78\x09\xc0\xa8\xe4\xe5\x1e\x9e\x03\x70\x0c\x72\xc5\x87\x84\x8a\x53\x65\x1f\xa8\xfc\xe5\x3f\xb6\xac\xde\x9b\xd0\x8f\xbf\x18\x21\x61\xe1\x80\x90\x36\xcf\x58\xe0\x5e\x45\x32\xd5\x3c\xfd\xb2\xb1\x8e\xe7\xf8\x36\xc7\x6a\xcd\x3e\x40\x7b\xe8\x7f\xe3\x92\x73\xdc\x8b\x89\x6c\xa2\xf8\xfd\x5e\x1e\x1d\xbb\x43\x2b\x73\xad\x82\x28\xfa\x3c\xa8\x20\x1a\x3d\x6a\x16\x3e\x57\xf7\x83\x1a\xb3\x0d\x73\x31\x7e\x49\xd6\x8a\xe3\xc1\xb2\x50\x3f\x27\x0c\x2a\x4c\x8b\x72\x54\x14\x89\x64\x4a\xbe\x35\x21\x41\xf7\xfd\xb0\x0b\xc9\x54\xc3\x0f\x2e\x8f\x9c\x1f\x4e\x0a\xa6\x69\xa7\xb1\x68\x56\x90\x9c\x92\xe1\x57\xa9\x01\xa9\x24\x5f\x5d\x31\xf5\xf8\xe4\x7e\xaa\x5b\xc4\x67\x5e\x14\x93\x6a\xbb\xa9\x83\x68\x2f\xd9\x19\xc6\x6f\x00\x8d\x0f\x84\xf3\xdb\x66\x32\x8c\xe3\x27\x71\xbc\x98\x64\x6a\xdc\x08\xbd\x76\xbb\x26\x76\xcc\xb4\x74\x12\xac\xdd\xd6\x5d\x8c\xe9\xa6\xd1\x05\x1c\xe9\x0e\x27\x33\xc0\xdb\x72\xeb\x7f\xa1\xe4\x8e\xc9\xf3\xa5\x84\x77\x42\xae\x79\x99\x33\xdb\xaf\x61\x1b\xe5\xcf\xbd\x26\x08\x82\x7b\xd6\x0c\x5f\x01\xf4\x14\x87\x79\xf0\x7d\x7d\x87\x47\xbc\xbf\x35\xa1\x58\x4d\x7c\x27\x0b\xb5\x55\xe7\xb5\xc9\xdc\x1f\xbe\x52\x2b\x56\xef\xb8\x64\xf8\xd6\xd1\x3c\x99\x48\xfb\x77\x52\xa2\x3b\xce\xb0\xd4\x25\x02\x53\x29\x9b\xda\x10\x3a\x03\x46\x33\x22\xc4\x3d\x64\xdd\x64\x1e\xaf\xfa\x03\x01\x98\xe6\xcf\x98\x89\xfd\xf4\x21\x2e\x05\x2a\x5f\x6f\x4a\x30\xd4\xa9\x7d\x76\x4a\xc9\x7c\x2b\x95\x58\x37\xaf\x6f\x91\xdb\x45\xed\x12\x97\x8e\x03\x40\xf0\x73\xf0\x84\x68\xe3\x3f\xde\x3d\xf4\xbe\xce\xc8\x5b\x93\x13\xcb\xcb\x54\xe9\x33\x74\xbc\x42\x8b\x6d\x59\x5e\x7a\xa7\xf0\xe3\x7c\x4b\x5e\x4b\xd5\xaf\x69\x49\xfb\xb6\x9c\xf1\x5a\xad\x0a\xaa\xfa\x36\x05\x46\x3e\xdc\xf6\xaf\xac\x96\x6c\x6f\xb9\xe6\x50\xeb\xa2\xa6\x0b\x75\xcd\xe8\xba\x67\xd3\xff\x64\xb4\x2f\xd4\x2b\x66\xd4\xf0\x9e\xed\xdf\x88\x6d\x55\x1c\x6e\xab\x18\x5d\x9f\x99\x95\xbe\x7c\x72\xa6\x37\xcc\x31\x5d\x0e\xb7\xde\xd4\x7c\x4d\xeb\xfd\x6b\x6d\x36\xf5\xc2\x7e\xc5\xf8\x72\xd5\x03\xf0\xae\x67\x3b\x48\x6f\xa2\x09\x2d\x9f\x7d\xd8\xe8\x83\xbc\xea\xb3\xee\xd5\x8c\x5e\x31\x2a\x7b\x91\x9b\x2a\xf6\x6a\xd1\x9b\x1e\x25\xdd\x3f\xa5\x8a\x2d\x45\xbd\xef\xd7\xfa\x7a\xbf\xe9\x81\xf0\x4a\xac\x99\xe6\xbc\x7e\xbb\x85\xee\xe8\xbe\x7f\x6b\x0b\xfb\x6a\x2e\xea\x23\x80\xf7\x6c\x8e\xda\x55\x28\x98\xbb\x5a\xf7\x14\x08\xc9\x13\xa3\x8b\xce\x3d\xac\x8c\x9e\xb6\x88\x8b\x99\xbb\xa8\x8c\x43\xa7\x99\x57\x78\x66\x05\xa7\x47\x4b\x82\x86\x0e\x83\xb6\xd8\x0c\x7f\x6f\xc9\xca\xf0\xe7\xb6\x80\x4c\xfc\x1e\x4a\xc5\xb0\x41\x52\x14\x86\x4d\xda\xf2\x2f\xf1\x7b\x20\xf4\x12\xbf\xb7\x25\x5d\xa2\x51\x28\xde\xc2\x06\x79\x99\x96\x6f\x97\x69\x92\x93\x5e\x61\xab\x48\x64\x85\x3f\xee\xba\x7e\xec\x14\x4e\x61\xd3\xb6\x44\x8a\xc8\x92\x12\x43\xd1\x6c\x52\xb2\xa7\xdd\x24\x10\x38\xd1\x4c\x53\x52\x26\x6c\x92\x14\x2d\x69\x28\xa1\x80\x48\x83\xe9\x6a\x93\x94\x1c\x71\x93\xae\x3d\x91\xcc\xdb\xd9\xa2\x87\xa7\x45\xc6\xb0\x73\x3f\x75\x8a\x00\xdb\x28\xa9\x7d\x5a\x21\x40\x4e\x9d\x3c\x48\x34\xb2\xa2\x40\xb7\xb2\xff\x4e\xd8\x92\xd4\xb5\xb2\xff\x6c\x37\x72\x72\x81\x9c\x36\x32\x22\xd3\x0c\xb5\xff\x53\x4f\x56\xb4\x1b\xfa\x62\x82\x9c\x06\x52\xa3\xdd\xd8\x09\x0c\x72\xda\x08\x8f\x4c\x33\xbd\x4d\x6c\x33\xfd\xef\x4c\x33\x27\x3e\x6c\x5b\xf7\x45\xa6\x03\x88\x12\xdb\x18\xfe\x68\x37\x6c\x89\x14\x72\xda\x16\x33\xdd\xdd\xa2\x1e\x09\xc3\x22\x94\x35\xda\xc2\x08\xbf\x69\x77\x41\xc1\x43\x4e\x8d\x04\x6a\x37\xd8\xd9\x06\xbb\x4c\x83\x94\x00\xd2\x98\x26\xbe\x4e\xb8\x21\xac\x48\x22\xa7\x8d\x78\x4a\x50\xd9\x93\x4c\xa7\x81\x9c\x4a\x5b\x57\x56\x44\x19\x1b\xcb\xfe\x99\x6e\x0c\x19\xe3\x4e\x9d\xdc\x4a\xd0\xc8\x13\x59\x9a\x52\xde\x9f\xed\xc6\xbe\xf0\x22\xa7\x81\x2c\xcb\x43\x06\x11\xe5\x81\x86\xbf\xf3\xb0\x6d\xf3\xe0\xef\x9c\x17\x2a\x30\x23\xed\x9f\x49\x9b\xf5\xd2\xb9\xb6\xd2\xd8\xf6\x31\x4b\xc9\x11\x46\x6e\xb7\x9f\xad\x2d\xff\x30\x5a\x31\xfe\x36\xed\x55\x31\xce\x86\x26\x2f\x06\x66\x7b\xd8\xd4\x4c\x9a\x3b\xab\xb0\x44\x10\x49\x9b\xb3\xae\xff\xe5\xf3\xeb\x76\x15\x83\x31\x06\xf2\xf8\x1e\x8a\x1f\x30\x7b\xa2\x49\x59\xe6\x92\x28\x66\x35\xbd\x26\xb5\xb0\x6b\xe2\x83\x33\x6e\x7d\x77\x63\xd8\x4e\x66\x95\xb0\x25\xe8\xd4\xf3\x20\xb5\x5c\x1c\xa9\x3c\xd3\x87\x92\x53\xa7\xee\xda\xa2\xa3\xa7\x15\x1f\x60\xf2\x48\xbe\x74\x79\x24\x83\xe6\xd6\x21\xeb\xa5\x8e\xf4\xdc\xb4\xfe\xb7\xfe\x8d\x53\x9b\x4d\x78\x91\xee\xd6\x0a\x5e\x40\x67\x99\x97\xf3\x0d\x3d\x15\x49\x59\x43\xc9\xa9\x47\xc1\x26\x08\x21\xf9\xbe\x25\xa4\xa8\xff\xd7\x49\xe2\xad\x5c\x26\x4b\xb8\x99\xcb\xa1\xfb\xbd\xe3\x6e\x03\xfd\x50\x81\x02\xbd\xd0\x3d\x22\x28\xe2\xf9\x34\x9d\x9b\xef\x0f\xc2\xe8\x88\x90\xb0\x6d\xa2\x3c\x06\x0b\x7f\x4b\xfa\x39\xba\x47\x48\x38\x5a\x99\x9c\xd4\x4a\xb8\x27\xee\xe1\x5b\x76\x41\xc4\x56\x49\x5e\x30\x22\x66\x92\xd5\x37\xac\x96\xee\x35\x9b\x8b\x4f\x0b\x53\x7f\x93\x64\xd6\xeb\x37\x66\xd3\x37\x09\xc0\x83\xe9\x36\x5b\xd6\xc6\x4e\xc4\x0b\x97\xda\x64\xe4\x94\xf4\x22\x66\xb8\x15\xc3\x5e\xa9\x65\x0f\xb6\xaa\x45\xa8\x59\xed\x46\x55\x3c\xe0\xf4\xae\xe8\x9a\x0d\x4f\x9a\xfa\x23\xa1\x61\x98\xf0\xce\x79\xfb\xce\x38\xfd\x5f\x32\x45\xf5\x86\x79\xb2\x7f\xce\x59\x59\xb8\xbb\xeb\xd6\x04\x30\x41\xd0\x94\x0c\x9e\x1b\x98\x83\x13\xf2\xf8\x31\x19\x0c\x5a\x83\xc6\xc6\xc4\x5d\x0c\xfa\xda\xc0\x4c\x0e\x6a\x5c\xf8\x49\xc5\x59\x7f\xc6\x73\x51\xcd\xa9\x1a\x0e\xc8\xa0\x7d\x45\x6e\x7f\xb4\x58\x9f\x44\x67\x13\xf1\xa5\x7b\x70\x69\x07\x11\x11\x5b\x5e\x16\xe7\x4c\xce\x71\xaa\x9d\x8b\x11\x19\x25\x21\x59\xae\xf0\xc7\x61\x7a\xff\xe7\x48\x1d\x32\xad\x83\x9b\xe6\xd9\xb1\x12\x16\xcb\x24\xa0\xc6\xa6\xca\x20\x88\x89\xad\x72\x28\x3e\xf6\xe0\xe7\x17\x69\x70\x66\x2b\x89\xb4\x43\x5b\xed\x52\xf8\xc8\xe4\x17\xac\x73\x35\x0d\xad\xbb\x7a\xaf\xfd\xc8\x6e\xff\x36\xa2\x1b\xae\x7f\x54\x34\x9c\xe2\x09\x35\x54\x62\x12\x29\x24\x4d\xb0\x98\x16\x9b\x26\xcd\x22\xd9\xd4\x62\xc3\x6a\xe5\xf2\x3e\xda\xc4\x3f\x90\xc8\x6c\x44\xe6\x90\x21\x19\x52\x3e\xd8\x9a\x74\x2c\x66\x39\x97\x26\x2c\x40\xc1\x88\xe6\xd6\x38\x26\x03\xaa\x81\x0f\x95\xcb\xe0\x61\xb5\x8c\x93\x58\x26\x05\x8f\xe6\x78\xaf\x4d\x27\xb7\x43\x96\x02\x26\xe7\x77\x29\x05\x6c\x76\xca\x14\x7f\xa5\x98\xcd\xe2\xe0\x25\x8f\x23\x8f\xdd\xb7\xc4\x0c\xd5\xda\xc3\x99\xe3\x0e\x2a\xb3\x6d\x37\x1b\x51\x2b\x56\x84\x97\x32\xad\x12\x96\xbc\x9a\x97\xdb\xc2\x2e\xd9\x53\xad\xfa\x6b\xbd\x13\xea\x7e\x75\xcb\xf4\x25\x53\xd0\x0a\x2e\x63\xb5\x40\xca\x5c\xc5\xbe\x6d\xf1\xa8\x6e\xfc\x28\xa8\x30\x36\x3e\xe7\x52\xcf\xf6\xbb\x61\x22\xc4\x15\x9a\x67\xef\x7c\xf2\x5d\xc2\x11\xde\xd8\x02\x56\x7d\x3b\x18\x0b\xa0\x7f\xfb\x0f\x8a\xd5\x15\x2d\x7f\x7c\xf3\xa2\x6f\x97\xcb\xe7\xd7\x4d\xfc\x92\xe6\xb0\xcf\xeb\x78\x88\x76\x61\xdf\x2b\x90\x0c\x7d\x5b\x5f\xd7\x94\xab\xde\x34\x78\xc9\x0a\x4e\x75\xeb\xa0\xf1\xbb\x04\x9f\xa6\x15\x06\x7c\xdf\x0c\x25\xe1\x34\xc0\xe1\x7f\x01\xbb\x4d\x61\xa8\x93\x29\x39\xab\xf6\x68\xb3\x3c\x8e\x5d\x53\x3b\xae\xe6\x2b\xe4\xcd\x76\x24\xc9\x9c\x9a\x64\xe4\x59\xa6\x9b\x26\x55\x4e\xc3\xc0\xc9\x4e\xc3\xac\x92\x8a\xa1\x3e\x2e\x9c\x23\x45\x39\xfb\x29\xfc\x92\xba\x28\x4d\x7c\xa1\x95\xef\xa8\x56\xdb\xf5\xac\xa2\xbc\x9c\x46\xd8\xfd\xe9\xfa\xfa\xf5\x73\x5e\xb2\xe1\xb6\x2e\x0d\x48\xd7\x36\x7e\x22\x60\x3f\xed\x6f\x27\x13\xf2\x34\x75\xa3\x6b\x0c\x4f\x25\x5c\xa6\xfc\xf8\x3d\x4c\x9b\xe4\x5d\x1b\xb7\x93\xec\xd9\x8e\x79\xd2\x37\x5a\xe4\x1d\x2a\x8f\xf9\x55\xf0\x6e\x3c\x6e\x3f\x9e\x85\xd5\x35\x60\x73\x85\x72\xeb\xf1\x5e\xd0\xc3\xc3\x79\x57\x32\xb7\x1e\xef\x89\x85\x75\x70\x40\x73\xc7\x73\x37\x23\x02\xb0\xae\x21\xc3\x5b\xa3\x5b\x0f\xfa\xef\x1e\xb8\xae\x61\xbd\x9b\xa8\x5b\x8f\x79\x6e\x61\x1d\x1c\x10\xaf\xb6\xee\x66\x40\x0d\xeb\xe0\x80\xde\x5d\xd9\xdd\x8c\xea\x00\x1e\x1c\xda\xdc\xc0\xdd\xcd\xb0\x00\xac\x6b\xc8\xc4\x9d\xde\xed\x95\xc8\x18\x66\x5f\x04\xee\x78\xec\xae\x61\x5b\x17\x90\xb7\x37\xa0\x43\x88\x5d\x83\xdb\x7b\xcd\x5b\x8f\xf9\x27\x00\xd4\x35\xd4\xee\xae\x86\xfa\xf9\xe0\x50\xe9\x3b\xd7\xdb\xaf\x68\x02\x6c\x17\x1a\xde\x7d\xee\xad\xc7\xbe\xb4\xb0\x3a\x77\x6d\x70\x41\x7c\xfb\x7d\xeb\x81\xeb\xe4\xe0\xe0\xd2\xf9\x4e\xfc\x3f\x16\xdc\xa1\x61\xd1\xf7\x74\x87\x2e\xa7\x8e\xad\x12\x5c\x8c\xdf\x7e\xc3\x78\xe0\xba\x86\x0d\x2f\xdb\x6f\x3d\xec\x99\x07\xae\xcf\x6c\xcd\xe5\xfc\x9d\x4d\x17\xe0\xf5\x99\xef\x5d\x0d\x7c\xe6\xc3\xeb\x1a\x38\x74\x8b\x1d\xe3\x0d\xeb\x82\xd9\x56\x36\x0f\x78\xff\xba\x11\xfc\x7c\xc7\x7f\x96\x52\x5d\xc8\x1f\x75\x3d\x91\x8c\x88\xf0\x26\x7e\xd9\xfe\x3d\x43\x84\x51\x16\xdb\xbe\xe6\x57\xce\x5e\xf5\x3c\x12\x69\xcb\xc9\xbe\x34\xb1\x9e\xd5\x25\x53\xa6\x0f\x2c\x5a\x7a\x7c\xa8\xdf\x43\x3f\x84\x6e\xaf\x3b\x99\x2e\x79\xfc\x38\x7a\xd2\xe6\x8f\x69\x6f\x6d\xaa\x85\x20\xa7\x24\x39\x53\x2f\xf1\xeb\xc8\xf8\x3c\xed\xed\xc8\x30\xcd\x42\x27\x23\x3d\x97\x29\x4c\x08\x9d\x68\xa6\xf9\x9a\x7e\x38\x21\x53\x52\xf1\x32\x4f\x05\x83\xd1\x0b\x2e\xd5\x94\xbc\x4d\x62\xf4\x8e\x9c\x92\xb7\x1e\xe6\xef\xfa\x3b\x0e\xec\xea\xe5\xcd\x57\x6f\xfc\x5b\x72\x8a\xf3\xf1\x1c\xe1\xd8\xc0\x3e\x79\xec\xba\xe9\x7e\x4b\x84\x7d\xef\x5c\x1f\xaf\xc0\xd8\x78\x89\x9e\x9a\xec\xc2\xe0\x17\xb0\xf7\xe9\x78\xae\x56\xbc\x1c\x81\xdb\xc2\x1c\xb3\xdd\x83\x1e\xb1\x0b\x03\x3f\xdf\x11\x04\xf6\x3a\x0e\xed\xf6\xc4\x4d\xa6\xbf\x39\x02\x83\x94\xdb\xf0\x57\x23\x5a\x6a\xf0\xcf\x45\xfd\x80\xff\xed\xcb\xa3\xef\x10\xe8\x3f\x03\xe7\x10\x4d\xe3\x3c\x99\x10\xb9\x11\xb5\x92\xa4\xa6\x05\xad\xc1\x2e\x23\xbc\xc8\xcb\x9c\x0f\xf3\x72\x5b\xb0\x42\x0b\x68\x39\x25\x6f\xd1\xb5\x0f\x62\x26\x61\x00\xa6\xc5\xcd\x64\x42\x2a\x81\x97\x08\x4d\x6a\x75\x05\x78\x66\xc7\x85\x9f\xcf\x5d\x89\x59\xaf\x1e\x9b\x73\xb2\x7e\x22\xa7\x09\x67\xaa\xfd\x0c\xae\x3c\x95\x63\x70\x57\x3a\xc7\xc0\x28\x18\x2d\x80\x9f\xa7\x75\x0c\xae\x3c\x19\x35\x38\x5e\xef\x18\x60\x86\xc7\x06\x1b\xfd\x37\xaf\x96\x63\x2e\x4d\xee\xc7\x6a\xa1\xde\xb0\xc5\x94\x7c\xa5\x41\xc3\x73\xc1\x8f\xa9\x40\x9e\x4f\x69\x01\xf9\x29\xb7\x9e\xb4\x28\xa2\xf5\x0c\xe2\x72\xfc\x8f\xbd\x3e\x6f\x16\xd3\x1e\xff\x6b\xba\x79\x6d\x52\x70\x0f\x0b\x3e\x57\xd3\x78\xd5\xd3\x48\x25\x85\x97\xee\x7f\x2d\x90\xf9\x0d\xb0\x70\xd0\x51\xcc\xca\xc1\x9f\xfd\xf7\x97\xbb\x42\x38\x42\xb2\x62\x9f\xfc\xd1\xd5\xbe\x82\xf2\x3f\x09\x58\x79\x50\xf6\xb3\xe0\x25\xcb\x3a\xdf\x0f\xf6\xd6\x9f\xc6\x43\xbf\x66\x05\xdf\xae\xf9\x9a\x2e\x73\x3a\x9a\xff\xe9\x91\x04\x46\x03\xa4\x28\x02\x07\x00\x76\xf2\xd7\x0d\x5b\xb6\xef\xb1\x8f\x00\xfb\x0f\x27\xd2\x0d\x2f\x98\xb8\x7b\xf2\x00\xd8\xc9\x7a\xf3\xc7\x03\xd4\xc9\xfe\x9a\x16\xc9\x7d\xf2\x17\x54\xbc\x79\x64\xfd\x29\xb8\x12\x9b\x4c\xc8\x73\x57\x53\x0b\x4a\x27\x2f\x44\x0d\x97\xec\x5b\x78\x26\x1f\x50\x34\xec\xe7\xed\x79\xb2\x62\xe5\x46\xe2\x35\x3c\x11\xdb\x1a\x77\xbf\x6e\x81\xb9\xb6\x82\x37\x77\x3e\x8c\x20\x8d\x59\xd3\x09\xab\x51\x96\xa5\x3e\x6c\x1e\xc2\xc5\xbc\xa9\x7a\xef\x81\xc3\xf7\xff\x41\xce\xf3\x56\x82\xb3\x96\x54\x4a\x1c\x3d\x5a\x57\x4f\x9d\x48\xe9\xeb\xfb\x97\x4d\x3d\xce\x8c\xc9\x9d\xb5\xb5\xc1\x48\x89\x4a\x66\x68\x62\x83\x19\x65\x92\xa6\x5b\xf0\xe3\xf7\x2c\x99\x4e\x59\xa3\x81\xd5\x48\x4e\x83\xf6\x6f\x35\x90\x77\x89\x10\x00\x82\x89\x88\xb1\xcf\xfd\x53\x32\x18\x64\x0e\x5a\x4d\x9f\x31\xaf\x24\xab\xd5\xf0\x3d\xdb\x5b\x53\x08\x3a\xb6\x59\xf2\xd3\xbd\xfc\x5f\x86\xe7\x34\xc0\x4c\xd4\x80\xaf\x8d\x92\x2c\x3b\x20\x13\xb2\x82\x30\xa3\xcd\xea\x2d\x6a\xa3\x42\xa2\xe4\x57\xb9\xb0\x01\x4f\xe9\xcd\xc4\x65\xd8\x18\x9c\x95\x52\x1b\x39\x9d\x4c\xaa\x19\x55\x62\x23\xa1\x76\x9d\x58\x4f\x70\x9c\xc9\xa0\x09\x76\x81\x38\x39\x2f\xae\x27\x15\x1c\x85\x73\xf4\x0c\xe2\x26\x89\x9b\x7d\x29\x8c\xab\x8e\x55\x0a\xd7\x33\x5e\xd1\x76\x58\x0c\xa4\x7c\xc3\x68\x66\x5a\x15\x71\x00\xf2\x64\x42\xfe\xe2\xfc\x26\xff\x82\x3f\xfe\xe5\x20\x41\x02\x23\x9d\xfc\xba\x91\x59\xcc\xa3\x87\x0b\xcf\x76\xc1\x47\x53\xf2\x2f\x83\x93\x80\xcc\xde\xde\x49\xd2\xdb\x5b\x3e\x0f\x74\x8a\xe7\x92\xd4\xa0\x52\x32\x85\x09\xed\x7a\xf2\x06\xf4\x90\xe3\x98\x45\xb4\x8c\xef\xcb\x21\xfe\xf2\xd9\x3c\x4f\x14\x18\x5b\x09\x52\xa0\x91\x40\x68\x45\xf0\xa0\x26\x92\xff\xc2\x0a\x02\x07\x6b\x5e\xca\xf9\x67\x7a\xc7\x8a\xea\x41\x8c\xba\xe6\x4d\xdd\xd1\xff\xf1\x8e\x17\x6a\x75\xfa\x6f\xdf\xfc\x7e\x90\x24\x31\x76\x84\xf2\x1f\xaf\x20\x6a\x80\x96\x90\x75\x4a\x62\x00\xc0\xb6\x2e\x47\x78\x4d\x7d\xce\x4a\xbe\x9e\x92\xc1\x57\x83\x6c\x81\x8c\xd6\x84\x9b\x30\x83\x56\xf5\xed\x03\xbb\x5d\x53\xc0\x8b\x3b\xb8\xf5\xfc\x7f\xff\x6f\xdf\xfe\x23\xe6\x0f\xca\xc1\xe7\xcc\xdd\x28\x2b\x9f\x3f\xef\x09\x40\xb8\xa3\x39\x3f\xce\xcf\x19\xa0\x48\x90\x64\xc2\xc0\x22\x15\x53\x3b\x51\xbf\x27\x1b\x0d\x14\xea\x0f\x61\x12\x54\x63\x7e\x9b\x40\xf7\x82\xa7\x9f\x09\xc0\x26\xce\x22\x87\xf4\x08\xf1\x73\x75\x9f\x93\xc4\xe2\x0b\x32\xb4\x42\xee\x12\x31\x1b\x9e\x90\xd3\x53\x32\x50\x4c\xaa\x8a\xa9\x41\xfc\x58\xc0\x23\xd5\xb6\x2e\x2d\x49\x9b\x11\x1b\x2a\x3b\x08\x87\x0f\xce\x6d\x5d\x66\x68\x68\x4b\x62\x55\x18\xac\xe8\x27\x38\xd3\x8a\xc4\xe5\x93\x33\x2c\xa8\xdf\x24\x91\x23\x5c\xd9\x8a\x33\x50\x52\x32\x9d\x56\x42\x13\x12\x33\x88\x3d\xd3\x70\xfd\x2c\x62\x53\xf2\x7d\xdb\xca\x6c\x1a\x64\x32\x87\x3c\x7a\xd8\x14\x80\x4d\xc2\xad\x16\xca\xf3\x9b\x7c\xef\xa8\xfe\xfc\xfa\xbb\xf6\x89\xea\x15\xc3\x86\x94\xa2\x58\x2b\x5a\x5b\xab\xb4\x24\x74\xab\x56\xa2\xe6\xbf\xe0\xf9\x19\xbe\x93\xb1\xdd\x20\xbd\x2e\x86\x73\x8a\x5d\xc5\x6a\x4d\x92\x0d\xab\x17\xa2\x5e\x7b\x09\xa5\x82\xda\xb2\xa6\x46\xb3\xee\x62\xa1\xd8\xe2\xd0\x54\x0f\xad\xc2\x5a\x3c\x23\x28\x13\x3c\x02\xca\x87\xf5\x59\xef\xc5\xc4\x76\x28\xe2\x64\xc2\x67\x37\x48\x2d\x2c\xb1\x05\xff\xb4\x39\x97\xe1\x2b\x93\x94\x22\xd8\x56\xb6\x06\x9a\x34\x45\xd0\x9a\xf2\x40\x45\x63\xa5\x73\x5b\xa0\x19\x43\xa9\xe4\x9a\xd6\xca\x95\x4b\xf3\xc0\xf9\x90\xfd\x94\x82\x4d\x2d\xfd\x33\x1f\xec\xda\xd4\xee\x73\xa1\x5b\x8a\xab\x92\xd9\x1a\x47\xbc\x26\xb1\xba\x9f\xfe\xb0\x0f\x74\xbd\xd1\xe6\xdb\x47\xb8\x60\x64\x35\x31\x7e\x99\xc1\x9f\xd9\x0d\xaf\xc8\xf9\xb6\xa6\x95\x1a\x8c\xdc\xed\xf9\x94\x0c\xfe\x2f\x59\x30\xa6\x06\x9f\x0e\x43\xb7\x9f\xe1\x8c\xcd\xe9\x56\x32\xb2\x83\x7c\xcb\x98\x79\xc5\x1f\xc0\x06\x02\x7f\xfb\xe0\xff\x79\xdb\x34\x93\x5b\x30\x4c\xae\xe8\x56\xc8\x4b\x21\x46\xba\x93\x2f\x37\x2b\x3d\x6c\xa8\xeb\xec\x10\xfc\xff\xa7\x5c\x85\xfa\x46\x16\xf8\xa3\x07\x4d\x20\x7d\x16\xdb\x99\x84\x48\xd1\x38\xf6\x5f\xed\xa0\xf7\x8a\xed\xe0\x35\x9b\xe9\x6a\xab\xd3\xc7\xa3\x87\x4f\xa4\x2e\xce\xfd\x8a\x4b\x1c\x72\x35\x83\x2d\x49\x97\x94\x87\xcf\x20\xfd\xda\x83\xaf\xed\xd3\xba\xc4\x97\xd9\x4c\x9d\xae\x82\x0f\x12\xa0\x18\xf2\x62\x1a\x61\x3b\x22\xa9\x99\xc6\x53\xb8\xf2\x2a\x07\x86\xf5\x9d\x3b\xaa\x07\x6e\x5c\x9d\x39\x20\xd4\xbb\x86\x52\x69\xbb\x5b\x37\x4a\x0b\xf3\x09\xb9\x66\x5a\xf4\xd0\x9a\x97\x7b\xc2\x2a\x3a\x2b\x59\x81\x64\x4c\x46\xca\x6f\x6c\x89\xe3\x19\x83\xb2\xc0\x0b\x5e\x96\x41\x52\xa1\x3e\x69\xd4\x37\xa6\xde\xdb\x76\x13\x3c\x6d\x9e\x44\x9b\x47\x61\x4c\xb9\xde\xed\x12\x0f\x4a\xcc\xef\x89\x6b\x8a\x82\xd4\xb4\x71\x41\xde\x9b\xb0\xa8\x60\x64\xcb\x85\x28\x64\x37\x05\xe2\x05\x51\x06\x08\xbe\x95\x40\xd3\xa1\xe6\x8e\xf2\xe4\x06\x01\xbf\xf3\x7a\x63\xb8\x3f\x5f\x25\xb0\xc9\x5d\x6d\xde\x79\x46\x09\xdd\xc2\x0d\x62\x20\x8e\x11\x4d\x8b\xa2\x43\xc9\xfc\x23\xa9\x49\x45\xc6\xdb\xa7\x84\xd4\x87\x6a\xb1\x81\xd0\xbf\x82\x1a\xc5\xe6\xb8\x08\x24\xbd\xdf\xdb\xf0\xaf\x36\x4d\x9c\x44\x8e\x04\xfe\x11\xa2\x1e\xef\x41\xf5\x9a\x55\xd9\xea\xff\x59\x93\xbd\x59\x66\x53\x8c\x37\x5b\x2a\xba\x11\x81\x57\x2c\x2a\x5d\xea\x2d\xe9\x01\xa1\xe7\x63\x45\x1a\x99\xa7\xc9\xd6\xe4\x44\x6d\xe0\x63\x55\xcf\x6e\x51\x86\xaf\x79\x3f\x47\x9a\x5d\xe5\xaa\xab\xe6\x65\x59\x24\x70\xaf\x98\x32\x8f\xdd\xda\x12\xef\x8a\x29\x2b\xf0\x8c\xd1\xed\x77\x18\xb9\x84\x8e\xc9\xba\xfb\x87\x85\x5f\xc0\x3c\xe0\x6a\x4b\xce\x13\xf2\x15\x1a\xc9\xf7\xe8\xe1\x7d\x83\xc3\xb1\xa2\x8f\x60\x0a\x7a\xe4\x6e\x6b\x02\x7b\x15\xec\x85\xad\xb6\x1c\x30\x71\xb0\x61\xa2\x5a\xfc\x5e\xfd\x76\x57\x7b\xdf\xd4\xdd\x27\xa2\xea\xa8\x03\xe6\x31\xbe\x21\x6b\x26\x35\xdd\x5e\x6c\xc9\x8e\xb6\xaa\xfd\x2e\x99\x8a\x70\x3f\xb4\x4d\xce\xc2\x99\xda\x41\x9c\xc7\xd3\x0c\x8c\xee\xce\x58\xd3\xb3\x73\x62\x1f\x36\x42\xf6\x48\x50\xec\x7c\x1d\x8e\xe2\x51\x7a\xcc\x29\xe4\x9c\xbc\x7d\x92\x4c\x53\x68\x01\x87\xc1\xda\xaa\xb6\x90\x5a\x50\xbc\x21\xce\x90\xe9\xff\x15\xf3\xe8\x0f\x2d\xda\x06\x65\x33\x9c\x81\x13\xf7\xd3\x3a\xde\x5f\xbe\xfa\x4b\xf0\xc0\x16\xeb\xe3\x45\x90\x4c\x52\x68\x0d\x4c\xc5\x09\x13\x0c\xf4\xde\xa9\x3a\x43\x06\x97\x8a\xd6\xea\x52\x6f\x0e\x78\xd6\x07\x86\x2f\x48\x45\xdc\x95\xf6\xb9\x1f\x24\xa5\x35\xd2\xc7\xcf\xd6\x6a\xaa\x7f\x9b\x56\x18\x8d\xa2\x95\x1a\x5a\xe1\xeb\x29\xaa\xe2\x64\xf5\xb6\xea\x2c\x0f\x58\x06\x6a\x00\xe2\x83\x36\x14\x98\x01\xc4\x3e\x02\xbd\x57\xa7\x58\xae\x87\xb3\x1f\x76\x28\xb1\xcf\xaa\x22\x45\x17\x3c\xea\xb4\x8d\x82\xe7\xa0\xa8\x58\xdc\x33\x22\x5d\x68\xde\x24\x11\xf6\x79\x38\x90\x8e\x9e\xcc\x0e\xbf\xef\xd6\x41\xdd\x04\xaf\x34\xa6\xac\x18\x56\x6c\xf7\xd4\xef\xdf\x4f\x18\x47\x81\x07\x41\xd3\x6e\x75\xc1\x4b\xca\x6f\x54\x04\xab\x3d\xc0\xd9\xe8\x7e\x7e\x49\x37\xa1\x5d\xdc\x62\x11\xab\xda\xd9\xf2\x33\x41\x9e\xfa\x06\x50\xfa\x95\x9e\x77\x92\x87\x25\x43\x2c\x5a\xad\xc2\x88\xb9\xca\x24\x92\xde\xb0\x47\xdf\xb7\xea\x92\x78\x47\x79\xf8\xd3\xf0\x64\x44\x94\x38\xb6\x64\x49\xb4\x53\x13\xc5\x0c\x88\x46\x44\x92\xdd\x8a\xcf\xfd\xe9\xfb\x6f\x19\x67\xac\x14\xd5\x52\xe6\xe5\x7d\xa0\x52\x2d\x12\x27\xcb\xe5\xf3\xeb\x9c\xed\xda\x95\x28\xff\x08\x74\x42\x98\x9d\xa7\xdb\x51\x45\x95\xd2\xa6\xc5\x67\xd4\x79\x6c\xc9\x8d\x8e\xc2\x12\x5d\xe9\xf2\x5b\x79\x3e\x36\x9d\x45\x6e\xc3\x62\x39\xe8\x85\xf9\x15\xcb\xe5\x90\xbb\x28\x99\x13\xe1\xdf\x5d\x93\x63\x81\x1a\x62\x9f\x62\x1c\x47\x54\xb9\x8e\xf7\x7c\x6c\xbb\x78\xdb\x29\xcc\x50\x92\xf3\x5a\x79\x82\x26\xe1\xbb\x8a\x08\xec\x88\xf4\xf9\x26\x4d\xb2\xfe\x86\xff\xb9\x23\xaf\x57\x4f\xff\x91\x47\xb0\x63\xbd\x48\xfe\x9a\xeb\xb9\x5a\xd7\xb7\x9b\x80\xf5\x2b\x1d\x70\x2b\xfd\x16\x76\x86\xbd\xb9\x88\x36\x48\x9a\x50\x78\xc7\xed\xc8\xd4\x76\x8b\xa5\x58\xfe\x92\xed\x90\x34\x21\xc3\x1f\x66\xcb\xf4\xe2\x59\x70\xe0\x6b\xb7\x3e\xe1\xc4\x8c\x1e\x3d\x34\xa7\xa0\x69\x9d\x75\x92\xdb\x04\xca\x50\x2e\xa1\x52\xac\x5e\x50\xeb\x10\xdf\x4a\x56\x4b\x63\x22\x49\x65\xd8\xd5\xc8\x6a\xef\x32\x81\x5a\xe7\x35\xd8\x62\x65\x29\x76\x44\xa8\x15\xe4\xa1\x11\xc4\x14\xfe\x70\x4a\x02\xaf\x1c\xe3\x7b\xe5\x41\xc8\x85\x22\xb4\x94\xc2\xfa\xde\x17\xa2\x26\x35\xa3\x85\x55\x73\x8d\x8a\x6b\x6a\xda\x37\xb0\x4c\x6e\x00\x07\xc7\x34\x9e\x90\x73\xb6\xa9\x99\xd6\xe5\x8b\xa9\x9b\x61\x25\x88\x3e\xf7\x58\xdd\x44\xae\x14\x6c\xc1\x41\x4b\x46\x62\xa3\xa5\x28\x4a\x42\xab\xfd\x5a\xd4\x6c\x9c\x77\xc7\x37\xa4\x42\x6c\x1a\x24\x5e\x6f\x67\x25\x9f\x93\x44\xde\xac\x56\x9b\x74\xf1\x06\x57\x27\xe6\xdc\x2f\x9a\x22\x0f\xdd\xad\x9c\xe4\x81\xc1\xd6\x33\xe5\x22\x9b\x3c\x3e\xda\x9c\xf3\xae\x52\xe2\xa7\xeb\x4d\x0e\x8c\x9a\xc9\x6d\x69\x7d\x1b\x10\xc9\x0a\xcc\x52\x78\xa5\xc4\xb7\x75\xc5\x8a\xe6\x00\x8f\x01\x99\xf2\xd8\x33\xb4\x2d\x24\xc4\x28\x20\xcb\xd1\x7a\xb9\x5d\x9b\x04\x47\x60\xc9\xc6\xb9\x38\xf4\x67\x23\x64\x6c\x75\xea\xcf\xd0\x20\x76\x0a\x76\xe5\x09\xf9\xfb\xdf\xed\x57\x8f\x21\x43\xd6\x29\xe1\xc5\xc9\x94\xb4\xfa\xe9\x4f\x64\x83\xc6\x1a\x48\xac\xaf\xb4\xa7\xa8\x39\x8a\x57\x73\x51\xd7\x6c\x9e\x35\x54\xe3\xcd\xe6\xed\x1a\x8e\x6e\x0c\xff\x02\x8a\xdd\xb0\x7a\x0f\xbb\x8e\xec\x56\x82\x88\x5d\x25\xf1\x86\xce\x76\x07\xf5\x5b\xa2\x33\xa6\x32\xbb\xc8\xc8\x59\xd0\xc6\x69\x45\x97\xcc\x7c\x7f\xf9\xfc\xfa\xea\x1e\x39\x70\xa9\xd4\xe0\x33\xcd\xf0\xf1\xa8\x8b\x8d\xbd\x35\xd1\x7b\xae\x39\xf4\x9a\xcc\x6d\x73\x51\x2d\x44\xbd\x46\xaf\xb0\x66\x63\xbf\xc7\xe5\xf3\xeb\x98\x0e\xfb\x0d\x33\xde\x0d\x9b\x6d\xea\xe2\x3c\x72\x31\xc5\xc5\x41\xc4\xae\x62\x85\xa6\x93\xde\x21\xd8\x69\x4a\xd2\xc1\xae\x71\xf5\x8f\x64\x26\x51\x07\x8f\x3c\x7a\xe8\x47\x60\x85\xd2\x1d\xcf\x66\x42\x49\xc9\x25\xa4\xaa\x83\xb2\x9a\xfb\x0d\x93\x5e\x5a\xff\x9a\xcd\x19\xbf\x61\xb0\x4a\x6c\xa3\x0e\x27\x2e\xb9\xb2\xd9\x51\x2e\x9f\x5f\x5f\x6b\x60\x50\x7f\x01\x2f\x3f\x53\x05\x1f\xf0\x0c\x36\x7d\xa0\x43\xd4\xfc\x34\x8e\x21\x0b\x5b\xbf\x4d\xdd\xa8\xbe\x4b\x95\x97\x77\x27\xa5\xdf\xbd\x9b\x36\xbb\x15\xd3\xe7\x00\x11\x35\xf8\xc8\x21\x3d\x1e\xbf\x61\x15\xae\xb2\x5e\x78\xa0\x0a\xd6\xdb\xc1\x4b\x95\x44\xe1\x32\x72\xe6\x7d\x6f\x4a\xfd\xd0\xca\xf4\xd5\x92\x1a\xc1\x19\x11\xf3\xd7\xad\xb4\x7e\x42\x98\x83\x06\x5d\xb0\x05\xdd\x96\x07\xc2\xbf\xb8\x8c\x69\x3f\x54\xee\xce\xf9\x04\xc9\xd9\x8e\x00\x80\xa1\x4f\x4f\x93\x17\xd3\xf9\xdb\xff\x16\x71\x93\x37\xfb\x0b\x5a\xca\x64\x7c\x52\x43\x61\x90\xa0\x6b\x5b\x92\x10\x78\x16\xc4\x43\xd1\x5c\x53\xb5\x28\x9a\x63\xbd\x17\x90\xe1\x47\xf3\xdb\x45\x15\x4b\x5b\x3f\xc0\xc3\x6d\x0f\x93\x13\x28\x83\xe1\x81\xe8\x03\xeb\x7d\xf9\xad\x45\x20\x84\xde\x12\xb5\x2a\x6a\xba\x23\x35\x5b\x8b\x1b\xf0\x54\x59\xb1\x68\x6a\xca\xb2\x40\x8f\xaa\x0a\x82\xed\xb2\x44\xc8\x5b\x2d\x76\xac\xa4\xeb\x20\xcc\x18\x08\x57\x15\xb6\x08\x1f\xa2\x56\xa4\x10\xca\x8c\x5a\x5b\xa3\xe4\xfb\x64\x62\x50\xb8\xed\xd3\x7f\x35\x35\x86\x2d\x6e\x2d\x1e\x6c\x01\xf8\xd9\xb4\xc4\x25\xb6\xfd\x86\xfe\xe4\x9a\xca\xdd\x69\x11\x9f\xb8\x07\x7a\x82\x67\x7c\xb5\x40\xef\xed\x7c\xc5\xe6\xef\xf5\xe6\x4d\x54\x09\x82\x3b\x96\x85\xb2\x11\x50\xa8\x1d\x5c\x3e\xbf\xf6\x50\xe8\xb2\x42\x02\xa5\x62\x6a\x38\xdf\xa9\x0c\xd1\xfd\x20\x5f\x1c\x7c\xbc\x51\x2d\x54\x4a\x8c\x84\xa3\x59\xd4\xa6\x5e\x1e\x49\x9c\x5a\x2b\x7e\x28\xa6\xcc\x1b\x58\x7d\x34\x2a\x17\x49\xae\x6c\x51\x07\xd7\xf6\xd1\xc3\x58\x18\x20\x23\x61\x30\xf0\x51\xc4\x6a\xa1\x1f\x5e\xaa\xb6\x25\x59\x6c\xc3\x81\x7f\xd5\x72\x0e\xe8\xb7\x80\x23\xd4\x14\x45\xe3\xd2\xa1\x5a\x3f\x1e\xd3\xa2\xa8\x99\x4c\x5c\x72\x79\x22\xd5\x31\x2c\x42\x4a\x4b\x8c\xf0\xa7\x44\xdd\x4f\x8b\x92\x03\x27\xc9\x7a\x5b\x2a\xbe\x29\xcd\x0e\x91\x77\x51\xbf\x93\x17\x72\x4a\xce\x2a\x42\xeb\x9a\x82\xe2\xa5\x8d\x24\x25\xdc\xa0\x87\x5c\x0b\xed\x5d\xec\x2b\x85\x89\xb3\xd7\x54\xc7\xc9\xb9\x41\x3a\x3e\x21\x69\xd7\xf9\x8a\xe5\xfd\xc4\x43\x40\xe4\x21\xd0\xe1\x2d\x4a\x87\x77\xc7\x1e\x03\xde\x79\x05\xd6\x79\x7c\x64\x05\x8d\xb5\xce\x09\x63\x1f\x2e\xaa\xe9\x77\x6b\x19\x57\x8a\xd5\x78\xd9\x54\x8b\xed\x72\x65\x6c\x2a\xe4\x09\x77\x72\x00\x53\x1c\xda\x96\xfa\x3c\xe5\x70\xe4\xeb\xfe\x6d\x71\x11\x21\x9b\x29\xc6\x99\x94\xb6\xbc\x38\xe9\x8a\x41\xec\xbf\x87\x64\x7a\x13\x45\xa8\x65\xb6\x93\x75\x22\x28\xfa\x1e\x1c\x28\x46\x50\x68\x4a\xd1\xa2\xf0\xcf\xcb\x06\x94\xef\x15\xec\xda\x46\xb8\x8b\x0c\x29\xec\x79\x89\x67\xa3\x19\xb6\x53\x9b\xea\x70\xd8\x44\x64\xce\x9c\x57\xb1\x7c\x6f\xf1\xa5\x71\xbd\x78\xd8\xa0\x08\x06\x51\xe1\xa9\x51\x68\x01\xbe\x67\x44\x6e\xeb\x96\x01\xce\x95\xf5\xf1\x18\x8b\xb5\x7d\x87\x19\x08\x77\x3b\xc4\x7d\xe2\xeb\x3a\xa9\x7a\xf6\xcd\x81\xff\x40\x92\x28\xa5\x39\xa6\xfa\x86\xb4\xf8\x28\x90\x5b\x00\xce\x8a\xc2\xb9\x34\x8d\xd6\x60\x62\x9a\xda\x8b\x67\x21\x8a\xb2\xb8\x4e\x1f\x42\x6f\x79\xf1\xce\x61\xdf\x1a\xeb\x55\x55\xee\x4d\x56\x65\xc7\x51\x98\xfa\x98\x2f\x62\x5d\xac\x45\x3f\xf0\x36\xa1\xd9\xa1\xd5\xed\x07\x32\x19\xf8\xc5\x17\xa9\xb3\xc6\x5c\x7c\x27\x76\x26\x60\x63\xdd\x3c\xfa\xe4\xd2\x67\x96\x12\x99\x13\xcb\xef\xd9\x3e\xcb\x4d\xde\x66\x2c\x30\x07\xf2\x4b\x94\x45\xac\x8a\x0d\x8c\xbe\x17\x3a\x2c\x4c\x7a\x68\x47\xd9\xae\x53\xed\x3c\xda\x8b\xed\xb2\xc9\xd4\xd4\xb4\x46\xc7\x4e\xec\xc8\x37\x94\x97\x84\xd1\xf9\xca\x9e\x26\xac\x40\x5f\x00\x3a\x07\xb9\x4c\x49\xba\xbb\x70\x91\x25\x94\x43\x88\x1b\xf0\x8e\x4f\xeb\x67\x8c\x44\x40\x8b\x0b\xe1\xc9\x95\xe1\x6c\x39\x5e\x32\x75\x71\x2e\xe3\x32\xca\x19\x29\x0f\x5d\x5b\x22\xc5\xa7\x0e\x12\x27\xbe\xc8\xd6\x72\xfe\x3d\x83\x3b\x8e\xcc\x83\x2f\x93\xaa\x31\x12\xef\x06\xc7\xa4\x80\x7f\xcf\xf6\x2d\x09\x7f\x98\xb3\x32\x07\x91\xe5\xa3\x48\xe2\x87\x5c\xa4\x55\x53\xc7\x3d\xc8\x9e\xbc\x40\x59\x4e\x8a\x6d\x8d\x91\xd9\x5c\x1b\x9b\x73\x61\x9f\x00\xe8\x3e\x32\x34\x62\x5c\x99\x01\x0c\x29\xa4\xca\x75\x3e\xa8\x46\xfc\x08\x01\x79\xc8\x45\x1a\xb2\xe7\x13\x1d\x39\x28\x53\xf2\xe3\x73\xfe\xe1\xdb\x3f\x26\x32\xfe\x7f\x21\xad\x99\x17\x27\x6d\x5f\x65\x4b\x5d\xd6\x08\x7f\xb6\xaa\x6c\x65\xb9\x96\x3b\x97\xcf\xaf\x91\x10\xc5\xf0\xab\xe6\x44\xd9\xaa\x55\x9e\x60\xd9\x27\xe4\x31\x85\x36\x54\x4a\xdf\x12\x44\x99\x5e\xa2\x99\xd3\x8e\x2f\x24\x36\x0e\xc6\x84\x99\x41\xe8\x9c\x89\x52\xe1\xb6\xba\xe7\x8c\xce\xdf\x7f\xc6\x59\x10\x99\x58\x1a\x07\x6d\xcf\x55\x0b\x35\x75\x47\x85\xbf\xea\xf6\x5f\xd1\xa4\x8e\x11\x91\x2f\x3c\x0e\xf7\x25\x8b\xe1\x75\x99\x67\x76\x1f\x94\x3e\xb2\x51\x78\xc8\xa4\x8e\x08\x7b\x02\x05\x85\x8d\xaa\x35\x6f\xf2\x59\xf1\x79\x7b\xc1\x21\x1f\x2a\xd3\xbd\xf6\x44\x97\x36\x8b\x3b\x7e\xc5\xd6\x47\x69\xad\xae\xaa\xaf\x3b\x18\x53\x8b\xe4\xf7\xc8\xb9\x6a\xb7\x55\x87\xcc\x51\x4a\x8b\x34\x90\xf7\xa6\x5d\x18\x2f\x1b\xf1\x0f\xb6\xd1\x87\x95\x2b\x13\x3a\xdb\x4a\x5e\xe9\x63\xbe\x14\x4b\x3e\x27\xb4\x86\xba\x48\x06\x18\x2b\xf9\x92\xcf\x78\xc9\x55\x2b\x8e\xb9\x73\x2d\xb0\xbb\x7f\x5b\xf3\x4f\x39\x74\xbc\x1c\x7a\x9d\x94\x43\xe1\x92\x36\xe1\xa1\x6a\xc5\xc0\x13\xaa\xb7\x5e\x4b\xda\xf8\x61\xb0\xfa\x47\x17\x16\xe8\x6e\x0b\x6e\xa5\xb2\xe6\xd8\x2c\x14\x54\xb7\x10\x4a\x3f\x06\x9b\x20\x25\x96\x8e\x11\x3e\x88\x9f\x11\x3f\xa8\x3e\xef\x09\xad\x99\xe1\xf7\xb2\xf5\xfe\xf4\xb0\xe0\xf9\xd1\x72\xbc\x6f\xc7\x1f\x27\x68\x2c\x56\x9f\x27\x6b\xbc\x2d\xc7\x8b\x7e\x92\xc5\x2c\x80\xbd\x90\x36\x7f\x4a\xeb\xdb\xc0\x8d\xc0\x65\xe6\x62\xc3\x43\xb7\xe9\xe1\xd1\x32\xf2\x4f\x1e\xe1\x03\xd2\xf2\xc9\xaf\x3d\x84\x77\xf3\xa0\xcf\x9a\xe2\x2e\x9d\xd2\xa2\xcf\x9a\x85\x53\xef\x5e\x36\x94\x3c\x3e\x83\xf7\x8d\x16\x89\xb6\x45\x2a\x64\x24\xf8\xed\x98\x78\x91\x48\x0c\xf4\x8e\x19\x39\xc4\x4c\xc7\x4b\x66\x72\x9c\x74\x6e\xf5\x25\x29\x01\x6d\x16\xa8\x43\x46\xcf\x3d\x47\x9f\x7b\x90\x1e\xbe\x45\x8f\xa6\x6e\xa6\xf7\x0c\x8d\x68\xe7\xa5\x42\x2b\x7a\xc5\x6a\xe6\x42\xec\x37\x25\x55\x0b\x51\xaf\x25\x29\x04\x8c\xba\xa2\x37\x0c\x0f\xd9\x82\xd5\x52\xe9\xed\x6a\x16\xe0\xa1\x4b\x25\x04\x70\xe0\x28\x96\xcc\x3c\xbe\x94\x2b\xbe\x21\xf3\x15\xad\x96\xed\xaa\x34\x70\x37\xb8\xf3\xbd\xac\x62\xab\x20\x45\x42\x5d\x33\xb9\x11\x15\x94\x8f\xb0\x26\xd5\x9a\x51\x53\xd3\x1b\x4d\x4d\xf2\xb7\x2d\x93\xa0\x7f\xad\x28\x04\x87\xe0\x63\x4f\x63\x6d\xa7\x4d\xf5\xc0\xcb\x7c\x8c\x7f\xd9\xa0\x6b\xd7\x60\x05\xaf\x6e\xfc\xdc\x14\xf6\x39\x61\xe2\x4e\x82\x40\xee\xdd\xd6\xee\x31\xf2\xea\xc9\xfe\xe2\xdc\xc9\xac\x56\xbf\xc0\x22\xeb\x25\xd2\xd0\x92\x6d\x9e\x5a\xa4\x4c\x63\x28\x78\xe2\x82\x10\x0e\x19\xeb\xfe\x25\x23\x18\xc9\x8d\xa0\xe8\x75\xcd\xa8\x6d\xdd\xdc\xc9\x66\xef\x67\xac\x3f\x9b\x50\xf3\x5d\x10\xaa\x01\x6f\x44\x5c\x5d\x91\xfc\x35\x57\xf0\x40\x04\xaf\xde\xe0\xae\xb9\x66\xb4\x20\x5c\x05\xfe\xad\x2e\x69\x9c\xba\x82\x53\x02\x54\x8b\xf0\x69\xc1\x42\x1c\x8c\xab\x4f\xbc\x00\x09\x83\x81\xfd\x5e\x97\x02\x72\xe2\xeb\x23\x47\x54\xe5\xde\x7f\xca\x6c\xa6\x03\xcf\xe5\x69\x11\x45\x14\x5e\x3e\xbf\x1e\xf9\x70\x34\x27\xc2\xcd\x3a\x26\xae\x08\x93\x7d\x8d\xc9\xeb\x92\x51\x09\x51\xe0\x41\x6c\x91\x06\xee\x43\x81\x81\xac\xf4\x71\xe5\xf3\x49\xde\x6b\x1a\x3d\x40\xd1\xea\xcf\x7f\x91\x30\x60\x29\xad\xf9\xc5\xb1\x4b\x86\x91\xbe\x6a\xeb\x5a\x9d\x8c\xe4\xa2\x80\xfa\xf1\x52\x5f\xce\xc1\xdc\x43\x55\x11\xbe\x34\x82\x43\x81\xab\x71\x60\x6c\xe8\xa3\x5f\xf7\xc3\x67\x18\x78\x4b\xeb\xb8\x2f\x08\xb8\x0d\x4b\xf0\x05\xab\x27\x6a\x58\x3c\xb3\xb6\x92\x41\x3d\x3f\xfd\xed\xeb\x26\x13\x52\x94\x3a\x42\x2b\xb5\xfb\x48\x0c\xb8\x97\x12\xf8\xca\x4d\xd4\x66\x64\x73\x6b\x45\x4d\x71\x1e\x21\x99\x9f\x6e\x29\xf6\xd2\x84\xaf\xc7\x93\x2c\xf0\x8f\xdc\x3f\x1d\xec\x77\x6c\xc0\x9c\x2f\xbd\x1a\x06\xd6\xd6\x14\x95\xf7\xc3\x9e\x29\x2e\xec\xc0\xe4\x27\xce\x76\x6f\x30\xc9\x45\x1d\xe1\xf3\xd1\xff\x6d\x6c\xff\xd1\xda\x10\x7c\xe1\x5d\x6d\x27\xb6\x45\x47\x82\xc0\x18\x94\x37\x55\xb8\x51\x97\x59\x24\x32\xe7\x0d\xc9\x64\x1a\x43\x52\x34\xc1\x72\x0f\xef\xe6\x63\xc1\xc5\xaf\x5b\x1f\x96\xec\x86\x95\x2e\xe0\xd0\xc4\x82\x36\x2f\x57\xee\x10\x03\x0b\x2f\x19\x5b\x12\x06\x06\x8f\xda\xe1\x32\xc6\xad\x6e\x24\x8c\x85\x45\x31\x50\x50\x0b\x0b\x19\x3e\xcf\xf4\x82\x02\xad\x3a\x6d\x3b\xbd\x82\x5d\xa0\x85\x0c\xa8\x63\x81\xf7\xde\x75\x36\x9d\x46\x8d\x21\x42\x67\x70\x65\x6d\xc3\xd9\x2c\x34\x3f\x0e\xb7\xa6\x95\xa4\x78\xf1\x66\x47\xbb\x17\x73\x75\x3e\x6c\x27\x08\xaf\x39\xe6\xf2\x96\x2f\x88\xe9\x4b\xee\xf7\x8a\xc2\xb2\xea\xbf\x09\xd6\xb3\x6a\x97\x0b\x6b\x1b\xa4\x12\x74\xc5\x31\xd5\x76\x84\xd6\x5d\x6f\xc3\xbc\x4b\xa6\xce\xca\x12\x53\x6b\xb8\xf3\xa4\x2c\x89\x7d\xd4\x8e\x54\xc3\xe3\xd5\xa7\x57\x20\xba\x3c\xdd\x2b\xec\x0b\x47\x0d\x2c\x21\x94\xf7\x34\xcf\xa7\x5b\x04\xf7\x35\x2f\x8b\x0d\x56\x45\x33\x13\xd0\xdf\xf8\x4a\x58\xf4\xbc\xcc\xbd\x80\x1f\x43\x62\x37\xd9\x9e\xa3\x9f\xca\xae\x35\x4f\xf7\xe4\x21\x3e\x6d\x68\xa3\x50\xb8\x4c\x14\x93\x89\x0b\x73\xcd\x65\x26\x68\x22\x8e\x9b\xe7\x43\x5c\x92\x19\xd3\x07\x91\x64\xb4\x9e\xaf\x0c\x11\x12\xc4\xbc\x0e\x11\x22\xd4\x66\xf5\x51\xc2\xfe\xcb\x3e\xd5\xb0\x09\x87\x3a\xe9\x99\x4c\xe2\xe7\xde\xc9\xc6\xa9\x39\x1e\xb7\x89\xec\xea\x45\x07\x39\x06\x1e\x8f\x83\xc4\x87\x59\x62\x9b\x54\xfd\x7e\xf4\x48\x17\xbd\x2d\x94\xcc\xc7\x2d\x07\x1c\xe4\x2e\x6b\x9e\x8f\x49\xbe\xf3\xb3\x0f\xd3\xa0\x3c\xcb\x00\xe3\x94\xed\x34\x85\x56\x78\xbc\x40\xfe\xcc\xa7\xe4\xef\x19\x19\xbc\x64\xeb\x8d\x56\x7b\x7e\xa8\xf9\x2f\xbf\x94\x9c\xc9\xc1\x97\x60\x8e\x60\x60\x83\xfa\xb5\x7d\x46\x8d\xe6\xa7\x6e\xef\xd4\x8b\x43\xec\x84\xfd\x7c\xa6\x7a\x75\x2c\x0b\xc5\xa5\x17\xec\xe3\x34\x83\x5d\x94\x8a\xea\x71\x14\x79\x2d\xaa\x07\x70\x11\x36\x67\x10\x4c\x7d\xc3\x6a\x77\xa9\x6d\x74\x36\x51\x1b\x2c\xe1\x26\xfb\x86\x96\x5e\xea\x67\xa3\x1c\x6c\x0e\xa5\xbf\x48\xaa\x3b\xfa\x47\xc7\xb3\x6f\x61\x0c\x4f\xc9\x26\xac\x94\xf1\xf3\xf0\xe4\xd9\xdf\x62\xf6\x2b\xa3\xb6\xfa\x0c\x8e\xef\xa7\xac\x9a\xdd\xdc\x76\xd8\xcc\x0e\xe1\xca\x72\x19\x6f\x84\x71\x17\x33\x79\x6f\x1e\x1b\x5e\x72\x6f\x1e\x8f\x92\x33\xff\xb1\x65\xf5\xde\x4e\xc0\xa4\x61\x32\x22\xbb\x91\x8e\x4d\x2a\x29\x0e\x21\xf2\x78\x17\x44\x67\x62\xeb\x72\x4b\x20\x7d\xe2\x23\xb4\x21\x4e\xeb\x79\xbe\x3f\xf0\xe3\xf0\x98\x4c\xbd\x4c\x3f\x4d\xc5\x25\x24\x93\xc0\xe6\x97\xd1\x1f\x32\xa8\x19\x9e\x7f\x72\xd4\xa4\x84\x0c\x56\x17\x9e\xdb\xfd\x0f\x58\xdd\x54\xa6\x93\x6c\x3c\x7f\x98\xfa\xd2\x2d\xd4\xd1\xdb\x18\x6d\xb0\xc4\xe6\x8d\x8e\x6c\x63\xed\xd9\x25\x7e\x0c\xa5\x1e\x93\xf4\x37\xcf\xd6\xfd\x15\x30\x4f\xe1\x7b\xaf\xc1\x3f\x72\x15\x62\x5c\x35\x94\xe8\x61\x73\xc7\xa2\x84\x69\xe0\xdd\xb2\xe0\x3f\x7e\x8d\x65\x91\xcd\x93\xfd\x78\x61\x2e\xce\xe5\x93\x7d\x6b\x77\x38\xc7\x5b\x6b\x61\x88\x5b\xe2\xc4\xe9\x7a\xfc\x02\x5d\xe6\x52\xfa\x1c\xb9\x48\x67\x09\xcf\xa1\x07\x8c\x2f\xb4\xc5\x02\xbe\x68\x39\x82\x27\x22\xbc\xd4\x5f\x9a\x04\x20\x49\xe3\x21\xa2\xcf\x30\xca\x3a\x6b\x1d\x8b\x7f\xf8\xfd\x3b\x7f\x09\x6f\x68\x8d\xeb\x24\x9b\xdf\xc9\x29\x79\xfb\x2e\x2c\xc5\x1f\xdd\x2b\x59\x31\x6d\x57\x0e\x5f\x21\x3b\xbd\xc0\x49\x2c\x07\x43\x7f\x69\x7d\x2d\xbc\xbd\xf2\x46\x85\x6e\xdb\xe5\x36\x69\xef\xe9\xa9\xed\x0e\x7b\x36\x7d\xb1\x60\x5e\xe4\xd9\x74\xc0\x0b\xb1\xad\x8a\x91\x7b\x56\x02\x54\x6e\x75\xc3\xb9\x9b\xc4\x9c\x43\x3b\x46\x24\xa3\x49\x87\x4b\x38\x1c\x14\x37\x83\x3f\xae\x7f\x54\x1c\xde\x2f\x97\x06\xf7\x84\x16\x62\x30\x35\xb5\xa6\x4f\x4f\xc9\xd7\xb7\x3b\x9b\x10\x5e\xd7\x39\x04\x26\xd1\x45\xe5\x27\x17\x82\x48\x15\xf3\xa6\x0b\x54\xc9\x94\xcb\xdb\x93\x87\x5f\x50\xce\xf9\x5b\xc8\xa2\x72\x50\xa3\xc4\xe9\xb4\x44\x5b\x6a\x67\xdc\x9d\x70\x6b\x04\x1b\x18\xa8\x11\xa1\xb9\x7c\x66\x73\x8f\x28\x5e\xb3\x22\xf0\xb0\x8a\x92\x51\x13\xa1\x68\x13\xf0\xc0\x35\x28\xd5\x04\x9b\x60\x72\x4b\xb1\x9e\x89\xac\xfd\x30\x84\xd7\xc6\x3b\x2e\x19\x64\x69\xac\x4c\x00\xa2\x79\xba\x7d\x42\xe0\x1d\x1e\x8c\x3b\xce\xc2\xb8\x58\x78\x5d\xbc\x1e\x23\x2d\xa4\xa4\x42\x7b\x66\x0d\xe1\x1e\x0d\x07\x8c\xb2\xe0\x66\xdb\xe6\xc5\xf3\x9c\x56\xde\xd3\xe3\x19\xb3\x49\x78\x02\xff\xef\x9d\xf2\x51\x80\xca\x9d\x19\xd0\x4f\xcc\x4a\x99\x45\xf2\x6e\xb0\xda\x64\x33\x4f\xfe\x92\x42\x3c\x66\x86\x61\x77\x3a\x0e\x1c\xf8\xb1\x1f\xb9\x69\xec\x15\xc9\x94\xc9\xad\x6f\x8b\x16\x25\xd5\xd0\x44\xcc\xe7\x15\x63\x16\x77\x20\x84\x87\xb8\xb9\xaa\xe5\xb2\x95\x2e\xae\x44\x19\x01\xad\x4e\xed\xe0\x7a\x54\x3b\x8f\x13\x6b\x28\x75\x3d\x2d\xb1\x10\xa4\xa2\x6a\x9b\x0c\x8a\x37\x2d\xda\x02\x2e\x86\x7a\xd1\xb0\xc3\x8e\x1e\x10\xcb\xa4\x9f\xdd\xc5\xe5\x15\x53\xf8\x06\xa9\xff\x1e\x4d\x71\x9d\x7b\x82\x34\xd6\x68\x72\xf5\xc0\xfe\x3d\x4a\xba\x22\x6c\x4e\xd2\xc4\x6e\x81\x9a\x0d\x90\x9d\x2b\xbd\xdf\xe2\xad\x86\x9b\x35\xda\x66\xaf\x8d\xd7\x0c\x64\x9a\x8b\xdc\xfa\x35\x54\xd5\xfc\xae\x01\x25\xc8\x92\x25\xb7\x61\xfc\xe7\xa9\x76\x65\x5a\xa2\xdd\x6e\x10\x8f\x37\xee\x5c\xac\x7b\xf7\xd2\xc1\x01\x9a\xa8\xc7\xe7\xab\x23\x98\x55\xcb\x4f\xda\x10\xb9\x2e\x0f\x78\x85\xfc\x45\xa4\x64\xce\x6a\xbd\x70\x56\xe0\x8c\x23\xa2\xff\x77\x95\x9c\x50\xad\x44\x28\x5a\x26\xc8\xd1\x1a\x38\xa2\x4f\x40\x00\x37\xf3\x9c\x76\xdc\x51\x1d\x31\x2b\x5e\xdb\x36\xcf\xad\xe5\xeb\x1b\x7b\xc3\x5c\x6d\xd7\x2f\x61\x02\xaf\x59\xdd\xca\x39\xac\xc7\x30\x8f\x97\x03\x79\x8a\x37\x9a\x41\xbf\x9c\x6c\x35\x9c\x86\x50\xba\x55\xc2\x46\x60\xca\x48\x60\xde\x42\x5e\x2e\x53\xf9\xc0\x7c\x45\xb2\x57\x02\xae\x34\x07\x77\xe6\x01\x6b\xba\xb8\xe7\xb8\x76\x1d\x9b\x21\xe1\x41\x8e\x5e\x4d\xb4\xb2\xfc\x8e\xdd\x15\x50\xb2\x19\xb5\x4e\xa6\x6d\x6e\x49\xa7\x01\xc2\x5a\x00\x5f\x3a\x07\xd0\xad\xf2\xff\x64\x72\xff\x74\x51\x01\xfe\x97\xbe\xea\xf1\xf3\x51\xc5\x17\x21\xd2\xfb\xad\xb9\xf6\x69\x51\x2d\xc8\x06\xd4\xf3\x3e\xc8\x07\xfd\x79\xb7\x42\x1e\xe2\xc3\x93\x29\xf9\xea\x6d\x7b\x19\xde\xfd\x0f\x5e\xee\x03\xab\xdd\xfc\xdd\x7d\xd1\xd5\x20\xf9\x64\x7f\x71\x1e\x7a\xcd\xe2\xdc\x65\x84\x55\xca\xc6\x7b\x67\x4e\xa7\x56\xce\x3e\xef\x90\xf2\x45\xc6\xb1\xc7\x4c\x3a\x8f\x5a\x3e\xdb\x88\x3f\xa9\x61\x2a\x5b\x9e\x1f\xf3\xe0\x01\xff\xdf\xc2\x0f\x6f\x7d\x9a\xbc\xbb\x1f\xf1\x05\x04\x5a\x61\xee\x75\x08\x88\x41\x7e\xd8\x60\x72\x27\xc8\xe8\xec\xf5\x6e\xa2\x40\x73\xc9\xe9\x08\xad\x8a\x48\xac\x23\x0b\x18\xb5\xa1\x9d\x13\x22\xc1\x05\xb8\x6c\xf6\x6b\x7c\x5b\xf9\xc1\x81\xe0\xd5\x67\xe0\xd5\xc9\x43\x97\x11\xb8\xa1\x3d\x23\x7e\xbb\x3c\x12\x53\xf0\x5e\xa3\x1a\x68\xe3\x32\x9a\x68\x22\xd1\x93\x09\xcb\x03\x75\xb4\x4f\x12\xd5\xc4\xa1\x6d\x24\x4d\x72\x4b\xfa\xed\x42\xd2\x37\xfb\x3a\x1d\x77\x64\xeb\x74\x5b\x8f\x6a\xbe\x55\xbe\x0a\x45\x94\x62\x29\x9d\x82\xd3\x1f\x64\xd4\x01\xac\x15\xbe\x91\x4c\x36\xad\xa1\x59\xaf\xe1\xfd\x53\xf2\xf5\x94\x0c\x2e\xc3\x1c\x89\xe0\xbb\x9c\x9b\xec\x1c\xe6\x15\x63\x57\x76\x69\xe0\x4d\x1f\x75\xcd\xaf\xf1\x92\x07\x8d\x4d\x79\xf3\xc0\x25\xec\x7e\x5c\x37\x75\x00\x5b\x75\x0d\x03\x9d\x32\x99\xa5\x2b\xe6\xa8\xb0\x08\xcc\x4b\xba\xd1\x47\x47\x63\x5a\xd0\x52\xcb\xa2\xbd\x35\x1d\x2c\x67\x6d\xa5\x3e\x44\x1a\x58\x41\xe0\xe1\xcf\x2b\x56\x99\xdc\x07\x46\x47\x8d\x18\x51\xb3\x31\x02\x1c\x91\x6f\x80\xa7\xad\x5d\xae\x56\x7e\xfa\x42\x4f\xd0\x80\x17\x65\x4d\x37\x36\xbb\xd3\x7b\xb6\x1f\x69\x93\x74\x8d\x09\x9f\x30\xde\x1c\x4a\xd9\x55\x4b\x22\x16\x3e\x90\x2b\x8c\x74\x7c\xdd\xc4\x1b\xb6\xf6\x9b\x47\x2d\x1b\xd1\x65\xf8\x37\x34\x1f\x9a\x8e\x0d\x77\x21\x17\x7e\x4a\x91\xd1\x9b\x31\x66\xf4\x4d\xaa\xed\x51\xd0\xa6\x99\x27\x16\x7a\x90\xe6\xe1\x22\x3c\x8d\xd1\x24\xe3\xd5\x72\xdc\x8d\xf2\x3a\xd6\x37\xa7\xc4\x26\x32\x4b\xa1\x6a\x4c\x02\xab\x1d\xd8\x64\xcc\xad\xb4\xc7\x32\x40\xf3\x19\x64\x97\x53\x7c\xcd\x08\x0d\xb2\xa7\x72\x69\x55\xc5\x30\xed\xab\xb9\x3b\xe2\xcb\x2a\x78\x84\x62\x8f\xa1\x30\x0b\x29\xda\x1a\x14\x33\x74\x57\x26\x39\x1e\x26\xdc\xc6\xe5\xfe\xa6\x83\x06\x58\x89\x21\x14\xaa\x6d\x41\x35\x99\x90\x9f\x68\xcd\x21\x18\x4d\xf2\x5f\xfc\x1c\x01\xd1\xca\xa1\x70\x6c\x65\x5b\x0b\x89\x1e\x9d\xf4\x86\xe4\x7f\xf8\xfd\xd4\x83\xf4\xcf\x1c\xb6\xbf\xc1\x1c\xb6\x2d\x27\x84\x2d\xaa\x81\x72\x3c\x3e\xdc\x83\xe6\xb6\x66\x48\x83\xf9\xa9\x37\x8d\xe8\xb0\x03\xb8\xf6\xac\x8b\x92\xc7\xe6\x4a\x0d\x25\x71\xc8\xe1\x96\xcf\x39\x1f\x9d\x5f\xed\x22\x44\x1e\x2f\x04\x1d\xb1\x7c\x88\xfb\xd1\x55\x11\xb9\xf5\xc4\x7a\x14\xfa\x48\x7a\x53\x5c\x7c\x2e\x88\x3b\x84\xf2\x40\xeb\x49\xbf\x5a\xb6\x75\xbf\xeb\x91\xde\x96\x0e\x5e\xbe\xa5\xd7\x25\x8a\x23\x6c\x9d\x20\x6f\x01\x42\xee\xb9\x43\xdb\xcb\x76\x90\xe2\xc1\x09\xd0\xc7\xb3\x6b\x3d\x97\x02\x2b\x4d\x78\xf2\x36\x3a\x4c\xb6\xd2\x64\x83\xe5\xd2\x2f\x65\x5b\x73\xe7\x30\xed\xb1\x8e\xd9\x8c\xf5\x4e\x9d\x69\xdd\x0a\xe4\x84\x60\x47\xc6\xfa\xe3\x81\xf5\xcc\xce\x8f\xca\x19\x6a\x1c\xeb\xd4\x20\xfd\xf8\x91\x5c\xc6\xab\x32\x8a\xd5\x41\xb7\x1e\xc9\xd3\x20\x2b\x76\xbb\x38\xa6\xdb\xc5\x9c\xce\xc2\x9f\x49\x2a\x6e\xfc\xce\x9a\xd8\x81\x8c\x85\x11\xbc\x87\x89\xf6\xb5\x62\xbb\xde\xaf\x2b\xac\xeb\x0d\x9a\xab\x07\xcc\x17\xe4\x3e\x0a\xd6\xdc\xd4\xc6\xf6\xae\xe8\xcf\x6c\x3f\x6c\x21\x96\xca\xcd\x77\x00\x9e\x5f\x33\xbb\x05\x6f\x64\xa4\xf9\xd7\x89\xa7\xab\x66\xb7\xbb\x16\x7e\x83\x4f\x39\xb1\x90\xc5\xe3\x6d\x6b\xec\x77\xb9\xea\x34\xb4\x28\xae\x45\x5f\x69\xe1\x94\x3e\x49\xbe\xc9\x1b\x07\xb7\x14\x1a\xff\x94\x01\x93\x3e\x5b\xb6\x7b\xe1\x3e\x6b\xd3\xfe\xea\x9b\xf5\x8b\xee\x56\xfb\x5e\x1a\x12\x07\x57\x42\x91\x05\xd7\x5a\x7a\x13\x5b\xe7\xba\xde\x1f\xe4\xf7\xdb\xd1\x1b\xcd\x69\x73\xc7\x6c\xce\x40\xd5\xf3\x36\xaa\xcf\x73\xff\xac\x4e\xf3\xdb\xaf\x4e\xd3\xc7\x1d\x76\x3f\xad\x12\x06\xbb\x03\x6f\xb2\xc8\x94\x0c\x7c\x59\x6e\xc5\xae\x11\x3f\x56\x75\x40\x8d\xf6\x7e\xec\x30\x4b\xf8\xb9\x5a\x63\xfa\xe7\x5d\xa2\xb4\x4c\x2a\x95\xab\x6f\xf7\x16\xac\xb8\x16\xe6\x21\x26\x02\xff\x52\x35\x6a\xf2\xf9\xe0\x5b\x93\x4a\x24\x55\xef\xdc\xcf\x99\xf6\x91\x79\x96\x83\xda\xb6\x05\xbf\x49\xfb\x0e\x27\x93\xbb\x78\x26\xf9\xd4\x66\xc3\x79\x69\xec\xb8\x9f\x38\xdb\xc9\xbb\x18\xc0\xc0\x08\xc2\xa1\x9c\x47\x01\xcc\x21\x4c\x9f\x4f\x6f\x28\x2f\xc1\xcb\xe3\xf8\x31\xc8\x18\x36\x39\x70\x87\x6d\x67\x00\x88\x0f\xad\xd7\xa4\x79\x5f\xf8\x18\x5e\xc0\xed\x37\x2c\xf1\xf2\x0d\xf3\xe1\x07\x53\x1f\x5f\x3e\xbf\x6e\x1e\xfa\xe9\xa5\xfa\x6e\x78\x32\x22\x07\x1b\x62\xb1\xfe\x5c\xdb\x37\x62\x4f\x4b\xc5\x99\xfc\x6e\x78\xf2\x2e\x5c\x45\x4d\x20\x5b\xd0\xde\x9b\xfb\x03\x19\x52\x4b\x1e\x26\x86\x29\x8c\xef\x13\x24\x45\x8f\x11\xf4\x08\x1e\x60\x9e\x55\xfb\x2b\xf0\x61\xf9\x36\x67\xa2\x0c\x47\x50\x81\x83\xfc\xfd\xef\xe6\x8b\xfb\xe3\x25\x83\x57\x99\x58\x11\xbf\x01\x3f\xb8\xf6\x8b\x69\x00\xa2\xeb\xad\x04\x9f\xbc\x91\xbd\x5e\x85\x00\x0c\x0a\x1f\x44\xdc\x0e\x3b\x63\xc7\xd5\x7c\xe5\xe0\x46\x48\xcd\xa9\x64\x87\xd7\x07\x17\x72\x9a\x53\xb4\x0f\x74\x1d\xb6\xfa\x01\x5e\xcd\x3d\xd4\x94\x4c\xcc\x5f\x93\xb8\xb2\xc6\x28\xd9\x17\xaf\x0d\x4d\x57\xfc\xe3\xa8\x9e\x7e\xda\x66\x98\xfc\x57\xed\x67\xaa\x9a\x1b\x3b\x40\xbc\xe0\xd5\x7b\xac\xec\xf0\x19\x20\x92\x2f\x7b\x9f\x1b\xeb\x60\x4a\x86\x9a\x21\x8f\xce\xcf\x9f\x58\x98\x47\x0f\xef\x24\x55\xbf\xff\xf9\xd4\xfe\xfa\xe4\x33\x38\xca\xed\xf8\x36\x53\x69\x55\x79\x46\xab\x8a\xd5\x17\x6b\xba\x64\xe4\x34\xe2\xaf\x97\xac\xe0\x19\x9e\x5a\xf0\x92\x4d\xa3\xe6\x7f\xba\xbe\x7e\xfd\x9c\x97\x2c\xdd\x43\x7f\xb6\x75\x39\x25\x83\x95\x52\x1b\x39\x9d\x4c\xaa\x19\x35\x41\x27\xe3\xb9\x58\x4f\xa4\xa2\x8a\xcf\x27\x7c\xbd\x9c\x28\xb1\x79\xa8\xbf\x7f\x58\x8a\xa5\x78\xb8\x12\x35\xff\x45\x6b\x09\xe5\xc3\xdd\x8a\x2b\x36\x96\x37\xcb\x41\x72\x8c\x0c\x13\xac\xf5\x3c\xcc\x56\xe7\x7a\xa6\x13\x79\xb3\xfc\xd7\x0f\xeb\xb2\x0d\xa5\x4d\x73\xb0\x27\xfe\xb6\xa5\x35\xfb\x6f\x44\xa4\x05\xbd\xe1\x73\x51\xd9\xff\xdf\x01\x45\x36\x55\x02\x42\xd6\xe0\x3f\xcc\x70\xe9\xf9\xa1\x73\x76\x70\xf9\xe4\x4c\xef\x97\x87\x7a\x0f\x0c\xd2\x18\x7a\xe5\xe3\xb1\x03\xb9\x16\x1b\x02\xb9\x12\xb8\x24\x7b\xb1\xad\x21\x01\x13\xe6\xcf\x10\xbb\x4a\x2b\x57\x65\x39\xc2\xcb\x9e\x9a\x16\x5a\x74\x2f\xf8\x9c\xd3\x92\x14\x7c\xc9\x15\x2d\x5d\x66\xa9\x59\xc9\xdc\xa3\x1f\x0d\x58\x77\xf9\xf9\xf2\xc9\xd9\x03\x49\x96\x78\x77\xa2\xcc\x8b\x76\xfd\x8b\xfe\x17\xab\x65\x06\x4d\xf6\x41\xb1\xba\xa2\xe5\x8f\x6f\x5e\xc4\x2b\xfd\xac\xf9\x69\x98\x59\xce\x41\x66\x79\x3c\x7e\x9b\xfa\x7f\xa4\x5b\x7b\x5b\x78\xea\xff\x91\x81\x2d\x34\x51\xe4\xb4\x43\xa6\x0d\xd4\x8e\x2b\xc5\xea\x41\xaf\x29\x99\xc6\xc0\x9e\xcd\xf4\x72\x53\x03\xf8\x05\x97\x73\x51\x17\xfd\xe0\x9b\xc6\x00\x9f\x57\x37\x5c\xb1\xbe\xc3\xf0\x4a\x2a\xba\xac\xe9\xba\xdf\x40\xbb\xdd\x6e\xec\xba\xb4\xa6\x93\x96\xd1\x3d\xb6\x4c\x4e\x4c\xfb\xca\x56\x5b\x36\x13\x1b\xdc\x0f\xad\xf6\x6f\x4c\xcd\xa6\x29\x79\x4a\x37\x14\x53\x77\x3e\xfa\xea\x63\x78\x62\xd9\x46\x9f\xbe\x23\xa7\x59\xaa\x2c\x99\x3a\xc3\xf0\x96\xa1\x3d\x85\x10\x93\xfd\x19\x26\x09\x03\x0f\x88\x1d\x84\x33\x48\x23\xdd\x31\xd4\x30\x9c\xd5\x92\xa9\x37\x21\xca\xaf\x9d\x0a\x31\x3c\xf1\xaa\x4d\xfb\x9f\xa4\x54\x71\xf4\xc9\x8b\xca\xb7\xd9\x5f\xf4\x27\x05\x2e\x23\x97\x42\x64\x2c\xa9\x23\xda\xe7\x39\xcd\x7e\xe6\x5b\x35\x25\x5f\x8f\xbf\xfe\xb7\xc3\x4d\x5b\xf2\xcd\x66\x82\x59\xd3\xfa\x3d\x53\x9b\x92\xce\x99\x45\x20\x2d\xda\xed\x27\xcd\x99\xfa\xf3\x2e\x7d\x24\x24\x54\xd7\x28\xaa\xd8\xba\x70\xbe\x5c\xbe\x1b\x48\x6a\x43\x4b\xfe\x0b\x0d\xfc\xb5\x5f\x66\x54\xf8\x5f\xcb\x94\x9e\x4c\xc8\x85\xc5\x82\x35\xf9\x56\xa3\xaa\xf5\x60\xee\xc6\xb5\xb6\xbf\x0e\x7f\x76\x49\x09\x42\x6b\x19\xed\x69\xfb\x52\x33\xf9\x53\x5c\xcd\xcd\x19\xd7\x26\xc8\xc4\x37\xab\x1b\xc3\x1b\x9e\x4a\xb4\x7e\x82\x60\xfe\xab\xed\x66\x53\xee\x01\xc5\xc0\x59\xb6\xb5\x75\xc8\xc3\xdc\x3a\x71\xb9\x80\x64\xf4\x1b\xd6\xb4\xf6\x95\xed\x74\x61\x11\x2c\x12\x90\x35\x30\x4e\x92\x95\xb8\x6c\x60\xa2\x93\x38\x7b\xf7\x90\x35\x91\x0d\x4f\x4b\xc4\x39\xdd\xc4\x71\x7a\x81\xb8\xb2\x68\x73\x29\xb7\x19\x63\xa1\x03\xc7\x24\x25\x02\xf8\x80\xb0\x5c\x0d\xe7\x74\x33\x22\x54\xe5\xed\xa2\x13\x6f\xbe\x01\xb8\x92\x57\xef\x1f\x7d\xf5\x31\x5d\xdb\xf0\xd3\x77\xc3\xac\xa1\x45\x14\xad\x97\x4c\xf5\x26\xf2\x6b\x93\xb5\x01\xdc\x3f\xf5\x91\x0b\xde\x2a\x5d\x1e\x14\x2c\x77\x18\x18\xfa\xc2\x8f\x36\x08\xfd\xd3\xbd\xff\x1f\x00\x00\xff\xff\x46\xa2\x25\xb3\x06\x29\x01\x00" +var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\x77\x5b\xb7\x91\x38\xfe\xde\x9f\x02\xe6\x9e\x13\x53\x5d\x99\x72\x9a\x6e\xd2\xf2\x1f\xc5\x91\xad\xa8\xd5\x6e\xac\x78\x2d\xa5\x39\xff\xe3\xe3\xd3\x82\xbc\x20\x89\xfa\xf2\x82\xbd\x00\x45\x33\x69\xbe\xfb\xef\x60\x06\xc0\xc5\xe3\x25\x29\xc9\xe9\xf6\x81\x2f\x12\x8b\x04\x06\x83\xc1\x60\x30\x33\x18\xcc\x9c\xfc\xea\x11\x21\x84\x9c\x33\x39\x6d\xf9\x4a\x71\xd1\x8c\xc9\x4b\xd6\xa8\x96\xd6\xe4\x7a\x49\x5b\x45\x5e\x0a\xfd\xd7\x54\x91\x99\x68\xc9\xd5\x8b\x33\x72\x23\x56\xd7\x0b\xa1\x1e\x41\xc7\x9b\x05\x97\x44\x42\xc3\xa9\x6d\xa8\xff\x41\x79\x23\x89\x5a\x30\x32\x15\x2d\x23\xb3\x75\x33\xd5\xb0\x69\xcd\xd5\x56\x03\x82\xbe\x06\x18\xd1\xd0\x8e\xc9\xb4\x65\x54\xb1\x8a\x4c\xb6\xe4\x9c\xae\x56\xac\x25\xdf\xd2\x89\xb4\xa3\xb0\x0e\xfc\x92\x36\x74\xce\x10\x7a\x45\x15\x25\x54\x4a\x31\xe5\xd0\x79\xc3\xd5\x82\xd0\xba\x86\x1f\x57\x35\xdd\x4a\x42\x9b\x8a\x48\xa6\x24\x00\x52\x0b\xaa\x08\x6d\x19\x59\x4b\x56\x11\x2a\x89\x62\xcb\x55\x4d\x15\x93\x30\x3d\xdd\xeb\x95\x58\xb2\x46\x91\xab\x8b\x1b\x33\xf8\x0f\x0b\xd6\x10\x4a\x1a\xb6\x21\xaf\x6b\xba\x25\x1b\xda\x28\x49\x94\x20\x13\x46\x68\x55\xb1\x4a\xff\x5b\xf7\x6c\xd9\x54\xb4\x95\x3c\x26\xb4\x21\x67\xd5\x92\x37\x66\x4e\x38\xb4\x07\x41\xaa\x76\x3d\x55\x88\x8c\x26\x9f\x12\x2d\xab\x08\x6f\x00\x4a\x48\xcc\x91\x23\x40\xe3\x81\xa5\x16\x34\xc0\xbc\x66\x4a\x8e\xe0\xbf\xba\x9b\xe4\x52\x11\x31\x23\x94\xac\xd6\x93\x9a\x4f\xfd\xd1\x00\x96\x5b\x1e\xf3\x3b\x6f\x66\xa2\x5d\x52\xbd\x3e\x84\x4e\xc4\x5a\x11\xaa\x09\x76\x0c\x94\xa3\x64\xd5\xf2\x5b\x3d\x52\xcb\xa4\x58\xb7\x53\x24\x1d\x12\x53\x90\x25\x6f\x14\xe0\xb0\x04\xaa\x49\x32\xa1\x9a\xb0\x62\x36\xd3\x28\xe0\x02\xc0\x34\x17\xf4\x96\x91\x09\x63\x0d\xa9\x79\xf3\xbe\xa3\xd9\x35\xf3\xa6\x48\x28\x4c\xcf\x8d\xb4\xa0\xb8\xca\x2b\xb1\x61\xad\xee\x51\x09\x58\x5c\x31\x83\xaf\xf9\x72\x25\x5a\x45\x1b\x45\x28\x70\x17\xd2\x39\x4f\x46\xb3\x8a\x1a\xbe\x84\x15\xd4\xe0\xa6\x1a\x98\xe5\x4d\xa9\x7b\xe2\xcc\x0d\xab\xb0\x2d\xb6\x50\x0b\xc6\x5b\x32\x11\x6d\x2b\x36\xd7\x4c\xb9\x1e\x1a\xc4\x9c\x69\x72\xb5\x6c\xc6\x5a\xd6\x4c\x99\xa5\x0b\xc0\xb1\xa8\x74\x48\xe8\x65\x3c\xb6\x90\x9b\x78\x7c\x61\x30\x67\x8a\xac\x25\x6f\xe6\x48\x39\x07\xdb\xd0\xe9\x52\xb7\xe2\x7a\x12\xdb\xe3\xcc\x4c\x61\xd5\xb8\x92\xa4\x62\x33\xde\xb0\xca\x51\x53\xcf\x4f\x31\xdd\x04\xc0\xc0\x4e\x99\x6b\x26\x22\x8a\xd1\xe5\x46\xb4\xef\x8f\xc9\x5f\xd6\x52\x91\x9a\xbf\x67\x00\xf8\xb2\xa9\x38\x6d\x28\x79\x4d\xa7\xac\x95\x38\xd8\x1c\x39\x5a\xc1\xe6\xd5\x1d\x01\x98\x66\x37\x4d\x28\xbe\xb4\x58\x02\xb9\x2d\x53\xe8\x0d\xa7\x39\x85\x55\x66\xf2\xfa\x0b\xde\x70\xc5\x69\xcd\x7f\x74\xdb\xd6\x6c\xbd\x73\xbd\xa7\x0d\xd3\xd2\x06\x59\x4d\x77\x68\x99\x5a\xb7\x0d\x4a\x08\x8d\x0a\x40\x6c\x47\x19\x09\x41\x6b\x29\xcc\xfc\x25\xa1\xe4\xa5\xa8\x6b\x86\x2b\x66\x89\x31\x42\xc1\xc5\xb5\x78\x20\x62\xf2\x17\xe6\x6f\x10\x76\xcb\xda\xad\x15\x73\x5a\x10\x10\xb1\x69\x58\x4b\x36\xbc\xae\x71\xb3\x9a\x95\xe5\x2d\xa1\xd3\xa9\x58\x37\xca\xed\x07\x90\x4d\xe6\x37\xdd\x73\xea\xc6\xf6\x10\x5d\x52\xde\x38\xc9\x67\x41\x20\x78\x40\x1d\x36\x8b\x5e\x43\xb1\x69\xac\x3c\xea\x00\x19\x36\x57\xc0\x42\x6b\xc9\xf4\xb8\x0b\x51\x57\xae\x87\x25\x7b\xb7\xf1\x1a\xa1\xc8\x96\x29\xdc\x80\x92\x21\xf7\x53\xdd\xd9\xd2\xef\x4a\x28\x36\x26\x67\x30\x41\xbd\xdb\xa7\x0b\xda\xcc\x35\x0f\x76\xec\x09\xf8\xad\x68\xa3\x45\xc6\x4c\xd3\x8d\x37\xb7\xb4\xe6\x15\xa1\xed\x7c\x0d\x38\x72\x44\x6d\xd5\x8a\x5b\xae\xe5\xa2\x68\x89\x68\x98\xe6\x0e\x8d\xda\xaa\x65\x4f\xa7\xa2\xa9\xb8\xe1\xf6\x96\xac\x84\x04\xc6\xb5\x5f\xd1\x96\x35\x4f\x14\x59\x6a\x99\xa0\x01\x5d\xb8\xb1\x61\x2a\x95\x80\x5f\x45\xc5\x67\x5b\x83\x26\x2e\x09\x5f\xae\xea\xad\xe1\x0f\xf2\x4c\x43\x6e\x78\x8d\x7c\xd3\x54\x44\x2d\x84\x64\x64\x4a\x25\x93\xa4\x61\x28\x7a\x26\x5a\xb8\x34\x55\xdd\x71\x93\xde\x8b\x8e\x1a\x97\x20\x97\x61\x2d\x3a\x21\xa3\x04\x69\xd9\x92\x2d\x27\x5a\x16\x59\x5e\xd1\xcb\xf9\x7b\x51\x57\xac\x21\xd7\x80\xd1\x0f\xb4\x6d\xb9\x68\x25\x99\xd4\x6c\x43\x28\xf9\xec\xe9\xa7\xa4\x66\xd4\x89\xf7\x5f\x3f\xfb\xf4\x73\xd8\x3c\x33\xde\xd0\x5a\x8e\x1e\x3d\xfa\xd5\xc9\xa3\x47\x38\x8a\x9e\xf0\x9c\x4f\x6a\x76\x23\xde\xb3\x86\xcc\x5a\xb1\x24\xcf\x3e\xfc\x8e\x3e\xfb\xe2\xf3\xcf\xab\xdf\x7d\x36\xf9\xfc\xf3\x67\xbf\x9d\x7c\x61\x1b\x5f\x89\x26\xdb\xfe\xf3\xcf\x3e\x65\xbf\xfd\x2d\x65\x5f\xcc\x3e\xad\xbe\x98\xfe\xfa\x99\x6d\xff\x8a\x29\xaa\xcf\xcb\x3f\x72\xb6\x91\xbb\x1a\x1b\xee\xff\x56\x4c\xdf\x03\x17\x60\xeb\xdf\x7e\xf1\xc5\xef\x3e\xfb\xf4\x8b\xcf\x3e\x67\xec\x8b\x2f\xa6\xb3\x99\x6d\xad\x41\xbe\x61\x52\xd4\xb7\xac\x2d\x42\x7e\x44\xa7\x53\x26\xe5\x90\xd6\xf5\x51\xb7\x57\xcd\x40\xe3\x74\x3a\x3f\x01\x81\x4f\x4e\xc8\xd3\x87\xf9\x58\x70\x76\x63\x57\x6c\x55\x8b\x2d\x30\xee\x2d\x6d\x39\x9d\xd4\xe6\xa4\x7e\xc0\x21\xdd\x98\x0b\x7d\x54\x2b\x2d\x65\x83\x23\x41\xb3\x19\xe2\xa1\xb7\x4b\x83\x3c\xeb\x91\xe9\x96\xb3\x8d\xde\x82\xe4\x0a\x3b\x0f\x8f\xc6\xe4\x5a\xb5\x7a\x49\x7e\xb2\x0c\x3f\xd0\xf2\xb8\x61\x6a\x40\x7e\x0e\xc6\xa3\x55\xd5\x32\x09\x9a\xca\x66\xc1\xa7\x0b\xd2\x8a\x2d\xad\x15\x67\x92\xc8\x85\x58\xd7\x95\xde\x05\x15\x5b\x09\xc9\x95\x39\xd1\xb3\x43\xbf\x81\x6e\xdb\x33\x04\xa7\x31\x30\xff\xec\x50\x78\xf6\x61\xf2\x8c\xd2\x67\xd5\x6f\x67\xf4\x77\xcf\xd8\xec\x77\x13\x16\xe1\xb2\xa2\x6a\xe1\x8e\xfc\xf5\x84\xe1\x8e\x37\xea\x8c\x3b\xef\x27\xac\x16\x28\x75\x4c\xd3\x33\x4f\xba\x9e\x9c\x98\x69\xdc\x89\x7e\xdd\xa0\x30\xe6\xb5\x12\x2d\x9d\xb3\xd7\x54\x2d\x90\xa4\xee\xcf\x6e\x52\x27\x12\xbf\x3d\x31\x0c\x13\x81\xe8\x26\xf8\x50\xcc\x12\xf1\xa7\x9b\xe3\x37\xb7\x5a\x9c\x7f\x2c\xd6\xfc\x66\xc9\x15\xa8\xce\x91\x9a\x6b\x4e\x60\x2e\xad\x66\x9e\x10\x97\x69\xbc\xa0\xf1\x4b\x6c\x31\xe4\xd5\x98\x7c\x7f\xd9\xa8\xcf\x7e\x7d\xac\xa5\x38\x88\x9b\x31\xf9\x09\x39\xd6\x72\xee\xcf\x47\x3d\x43\x4b\xd6\x6a\x06\xd5\x9a\x1f\x1c\x56\xaa\xe5\xf3\x39\x6b\x51\x4e\x53\xa3\xc1\x15\x30\xb9\x62\x9b\x6b\xe8\x7e\xad\x68\xab\xd1\x69\xd8\xe6\xe5\xba\x6d\x59\xa3\xf0\x7b\x8b\xdc\x51\x37\x79\x20\x2d\xe8\xfe\xd7\x4c\x3d\x7d\xc3\x6a\x30\x23\x7c\x7d\xf2\xe4\xa4\x07\x5d\xad\x0e\xee\xa4\xd0\x35\x53\x96\x40\x92\xa9\xcb\xf3\x8e\x46\x32\x42\x6b\xc7\x92\xe8\x33\xc9\x1a\x1c\x54\x83\xed\x59\x92\x33\xdd\xf0\x46\x5c\x33\x15\x0f\xaa\xb5\xf2\xee\xef\xd2\xa0\x76\xc0\x96\x29\xae\xc9\x0f\x52\x1d\x06\x85\x43\x75\x4a\x1b\xad\x54\x4c\x8c\x25\x65\x4c\x81\x1e\x7c\xde\x20\x9c\x8b\x56\x2c\x77\xe2\x74\x4c\x9a\xf5\x12\xf5\x9e\x9d\xc4\x31\x2b\x50\x8b\xe9\x7b\xad\x5e\x2e\x19\x6d\xb4\x00\x79\x0d\xa6\x47\x87\x25\xd0\xad\xbc\x3e\xdf\x42\xf7\x10\xab\xd2\x88\x46\x21\xe3\xd2\xe8\xb4\x1e\x69\x0a\x03\x60\x8f\x57\xd0\x7a\x88\xda\x99\x1d\xe6\xf3\xdf\xa4\x93\xcf\x30\x09\xad\xaf\xd6\x5a\xf1\xf0\xbe\x75\xd2\xc8\xc7\x38\xc3\xd7\x9d\xf6\xfb\xb4\x3d\x84\xbd\x97\x6e\x9a\x5a\x3b\xaf\x5a\xba\x69\xec\x4c\x3b\x90\x85\x09\xff\x60\x7a\x38\x81\xa0\xa7\xa9\x3b\xbb\xb3\xe3\x79\x89\xba\xdd\xb0\xee\x68\xd2\x86\x8b\xd8\x67\xd8\x73\xec\x11\x8c\xaa\x84\x3f\xe6\xce\x25\xad\x98\x54\xad\x3e\x4d\x7a\x97\xf2\xdc\xb6\xf2\x86\x2a\x02\xf7\xce\xbb\xdd\xa2\xc2\xb5\x75\x12\x23\xb3\xce\xc7\xa4\xa1\x4b\x66\xe5\x69\xbf\xa8\xdd\x0b\xa9\xd0\x26\x97\x2b\x36\xe5\x33\x3e\x35\x93\xdd\x89\xaa\x11\x35\xd8\x3a\xc3\xdf\xf9\x29\xec\x90\x4a\xbf\xd0\xe1\xfa\xb4\x66\xb7\xac\x26\x33\xce\xea\x4a\x8e\x3c\x95\x45\x32\xeb\x28\xd1\xdb\x65\x4d\x6b\x72\x4b\xeb\x35\x93\x9d\x0b\xa9\xdf\x6d\xf3\x91\x4e\x6b\x3c\xc8\x10\x09\x70\x03\x5c\x83\x59\xa7\xf5\x26\xad\xe9\x8d\xa2\x76\xfa\xc4\xd0\x48\x4d\xd9\xca\xfa\x9b\x9a\x8a\x4f\xc1\xe1\x45\xc9\xbc\x15\xeb\x95\x36\xcf\xc0\x77\xa4\x16\xad\x58\xcf\x17\xc6\x8a\x37\x70\x5e\xd1\x66\x6b\x5c\x4b\xb4\x21\xec\x03\x97\x8a\xe8\xf9\x43\xab\x63\x32\x59\x2b\x22\x9a\x7a\x0b\x76\x1e\x9e\x66\xa3\x54\x09\xa3\x2d\x99\xe6\xce\x61\x37\xab\x3f\x1a\xfd\x9b\x48\xfe\x23\x23\x15\x47\x67\x61\xbb\xd5\xb8\x79\xca\x88\xf4\x41\x4b\x56\xcf\x10\xb6\x66\x9d\x73\xaa\xa8\x1c\x93\x9f\x10\xf0\x18\x7a\xfd\xbc\x17\xfc\x6b\xe6\x7b\x1c\x0a\x43\x48\x6c\xe4\x8f\x60\xfa\xed\x3d\x48\xe7\x88\x29\x0e\x21\xc7\xe4\x6b\x1f\x7e\xa8\x43\x5f\x9e\x3b\x8f\xa1\x3d\x73\x8d\x13\x10\x0e\xbb\x91\x27\xfb\xdb\x2d\xac\x8f\x77\x8c\x1b\xb1\x63\xf7\x19\x30\x86\x94\x7c\xde\x18\x51\x74\x72\x62\x77\xbf\xd5\x36\x9e\x48\x3d\x22\x1a\xd0\x0c\xa4\x04\x6f\xa6\xda\x00\x6e\x8c\x97\xf6\xd3\xfc\x4a\x37\xec\x83\x7a\x1d\x6c\xe6\x3d\x67\x81\x6e\xcc\x00\xfb\x8c\x7a\x75\x72\x82\x92\xc3\x9f\x81\x8f\xba\x64\xea\x3e\x98\x5f\xfb\x52\x29\x40\x5c\x09\x45\x6b\xad\x98\x68\xfb\x5f\xcc\xc0\x7f\x23\xb5\x28\xf1\x1c\xc6\xb1\xaf\x33\x42\xfc\x05\x9b\xd2\xb5\x64\xd8\x54\xef\x27\x30\xc0\xcc\x51\x72\x4c\xb8\x22\x95\x60\xb2\x79\xa2\x48\xc3\x34\x6a\xb4\xe5\xf5\x16\x54\x9a\x6e\xc3\x5b\x58\x2d\x9b\xe9\xc3\x10\x1d\xa4\x31\x6e\x30\x00\x37\xfb\x95\x35\x53\x66\x5c\x7b\x40\xa4\x75\xe8\xc1\x38\x39\xf1\x10\x36\x1a\x8d\x12\xa4\xa2\x8a\x8d\xc8\x59\x2d\x85\xf3\x95\xcf\x6b\x31\xa1\xb5\x3d\xa1\x2f\xcf\x51\xbf\xd0\x5d\x78\x33\xcf\x93\x14\x10\xbb\x5e\xaf\x56\xf5\xd6\x9e\x07\xbf\xb0\x64\x7f\x29\x96\xa8\x46\x90\x9b\xed\x8a\xa1\x57\x90\xfb\xea\xcf\x83\xe3\x01\x67\x87\x3e\x20\x80\xe4\xbf\xf2\x46\xfc\x15\x10\x4c\xe3\xe1\x4b\x70\x8b\xb0\x05\xa0\x19\x57\xa8\x05\x73\xce\x45\x69\x3d\x7d\x23\x03\xdc\x03\x49\x2a\x01\xde\x3d\x73\x56\x39\x18\x78\x64\x99\x23\x0a\x4f\x2e\x94\xd6\xe0\xb7\x93\x8a\x36\x53\x46\x86\xa2\x35\xce\xcf\x23\xcd\x35\xc6\x57\xa7\x60\x0c\xc0\xd2\x82\x33\xbc\xea\x5d\xd1\x04\x98\xe3\x64\xdc\xbd\x42\x30\xea\x47\x3b\x09\x9d\x45\xa4\x75\x1d\x77\x9d\xb2\x10\x75\x25\x9d\x42\xe4\x5d\x0d\x39\x1f\x02\xba\x9a\x9d\x8e\x73\xf5\xe2\x0c\x64\xe2\x71\xe7\xf7\xae\xd9\x9c\x35\x95\x96\xdc\x86\xd5\xb5\xce\x64\xfb\xbf\xa1\x5b\x72\x56\xd7\xac\x21\x0b\x8e\x1b\xea\x33\x10\x3f\x1c\xfb\xfe\x81\x51\x34\x90\xae\x57\xeb\x56\x7a\x4e\xbf\xcf\x8c\xc3\x8f\xcc\xe9\x92\x91\xcf\x2d\x38\xd1\xa2\x46\xf6\x2d\x2c\xc8\xb5\x62\xab\x05\x6b\xa4\x68\xd0\x7d\x68\xba\x33\x0a\xbb\xfa\x5b\x36\x69\x45\x43\xfe\x9b\x2e\x3b\xb2\xba\x73\xda\x13\x42\xc6\x91\x5c\x77\x57\x07\x7a\xc2\xbc\x99\xd7\x78\x27\x46\xcc\xb5\x0a\x7a\xb5\xc5\xcc\xc2\xe0\xaa\xa3\xdc\x08\xdd\x36\x78\x83\xd6\x32\x73\x57\x54\x6f\xcd\x0e\xe7\x93\x9a\x1d\x13\x29\x08\x6d\xb6\x9a\x6d\xa6\xb4\xe9\x04\x13\xad\xd0\x3f\x9f\x2e\x42\x42\x7d\x40\xe7\xf2\xdc\x9f\x8c\x2f\x42\x8c\x0f\x02\x96\x1a\xdd\x81\x9e\x40\x5e\x37\xfc\xaf\x6b\x38\x50\xec\xd5\x9d\x6e\xe7\x5a\xf9\x70\x6a\xa6\x22\x05\xf3\x91\x0f\xed\x5a\x33\xac\x74\xf7\x86\x1d\xe2\x70\x1b\x66\xaf\x12\x35\xd9\x40\x4d\xd0\xf6\xe5\x92\xae\x56\xbc\x99\x87\x38\xe1\x8d\x82\xde\x8e\xc0\x46\xa2\x99\x13\xc5\xda\x25\xd9\xd0\x2d\x5c\x06\x38\xc0\xb0\x42\x13\xab\x42\x8e\xc8\xa5\x3e\xb3\x28\x5c\x46\x8a\x96\xb6\x5b\x1f\xec\x54\x34\x86\x0c\x9b\x05\xaf\x19\xd9\x30\x32\xe3\xf3\x75\xcb\x08\x5e\xd5\x4d\x98\x52\xac\x85\x31\xf0\x86\xcc\x2d\xa1\x07\xa5\x48\x95\xb2\xe9\xd0\x51\x48\xcb\x9a\x61\x8f\x8d\xe1\x2d\x0d\x01\xf7\x3f\x8b\xbe\xd1\x1f\x87\x55\xcd\x9a\xb9\x5a\x90\xc7\xa7\xe4\xd9\x98\x0c\xae\xac\x6f\xc3\xd1\xa6\xb3\xd9\xd9\x72\xa5\xb6\x83\x00\xd2\xcf\xc1\x5f\x5a\x79\x1a\x19\x85\xe6\xd4\x1e\x00\xa3\x4e\x01\x49\x1b\xbb\x51\x4e\xdd\x80\x8f\x3a\xd8\x1e\xc1\xcc\x72\xba\xab\x3e\x8e\xd7\x67\x8d\xf1\xbe\x4c\xe8\xf4\xfd\x8c\x1b\x7e\x01\xfc\x61\xcb\x8a\xe9\xfb\xe9\x42\x9b\x0c\x86\xcf\x97\xa2\xd5\xd2\x5a\x51\x5e\x1b\x09\x64\xa1\x57\xdd\x85\xbb\xbd\xce\xd4\x60\x70\xdb\x4d\x58\xc3\x66\x1c\x6e\x71\x17\xf4\x16\x6f\x02\x59\xd0\x85\x5b\x3b\x04\xb7\xdf\x46\xac\xeb\x10\xfe\x84\x11\xd0\x45\x95\x20\xef\x1b\xb1\x41\x13\x45\x09\xd4\x46\x1d\xd2\x15\x6f\xd9\x54\xd5\x5b\x34\xec\x2f\x6a\xb1\x89\x19\xc5\x8a\xf8\x23\xf0\xa2\xae\x57\x5a\x2d\xb8\xa1\xf3\x9a\x37\x6c\xa8\xf0\xff\x96\x11\x8e\xec\xde\x8a\x56\x3f\x20\xfc\xdb\x81\xe9\x3d\x78\x47\x4e\x89\x81\xf0\x28\x68\x6f\xd7\xd1\xa9\xf5\x6f\xbd\x75\xd6\xbd\xf4\x9f\x41\x0f\xe3\xb0\xf5\x9a\x3d\x0a\x19\xa6\x53\xa4\xcf\xac\x4e\x69\xac\x1f\x4d\x5c\x63\x64\xf8\xda\x9b\x98\x4e\xd7\x9e\x71\xd7\x32\x5a\x93\x8d\x68\xeb\x4e\x59\xd6\x4d\x97\xf4\x3d\x23\xeb\x15\x5c\x00\xa3\x67\xc5\x59\x54\xf6\xba\x6e\x52\xeb\x83\x17\x8e\x16\xad\xe0\xeb\x9f\x26\x54\xb2\x09\xad\x6b\xef\x08\x78\x45\xe7\x7c\x4a\xa6\xb4\xad\xe4\x88\x9c\xe1\xda\x74\xf6\x16\x6f\xc8\x72\x5d\x2b\xbe\xaa\xb5\x59\x31\x03\x99\xae\x00\x5c\x7c\x0a\x58\x5b\x86\x1b\x49\x95\x8f\x32\xa0\x68\xee\x5a\x4e\x48\x6c\xd6\x33\x27\xd3\xc9\x5f\xd7\xa0\x8d\x63\x2b\x09\xd7\x60\x5e\xb8\x80\xd3\x36\xba\xa8\x01\xad\x1b\x4c\x69\x5d\x6b\xba\xde\xd2\x96\x8b\xb5\x24\x73\x90\x50\xe0\xa3\xf3\x4f\x62\x8a\x62\x92\x35\x29\x26\xe4\x3b\x6d\x53\x2a\x17\x11\x60\x03\x01\xe8\x84\xd7\x5c\x6d\x3d\x8b\xc5\xdc\x06\x6a\x2b\x15\xf6\xb5\x59\x30\x1b\xb4\xe0\xdb\x5d\xa3\x1d\xa7\x8c\x25\x5e\x70\xd0\x7c\x9f\x1c\x32\xd6\xcd\x17\x43\xd1\xd2\x54\xa6\xd6\x83\x81\x73\xa5\x4f\x7d\x33\x4d\x1f\xc2\xc9\x09\x61\x1f\x46\x64\x70\xc3\x97\x4c\xa2\x2a\xa0\x9b\xdc\x88\x56\x34\x4a\x90\x37\x74\xa5\x44\x2b\xc9\x74\x21\xde\x77\xec\xa8\x79\x5c\xcc\x66\x72\x50\x44\xc4\xf7\x0f\x85\x47\xdd\x3e\xfe\x03\xf2\x80\x3e\x04\x72\x3f\x3f\x42\x9e\xca\xa9\x13\x81\xd8\x73\xca\x9f\xf9\x7e\x27\x93\xee\x61\x4f\xa5\xaf\xdc\xa1\x74\x6d\xa8\x78\xf0\x79\x84\xd6\x69\x78\x1c\x81\x55\x99\x36\x05\xf8\xa7\x30\x4c\x0e\x0e\x50\xbf\x03\x14\xb8\x50\x8a\x02\xce\x89\x37\x77\xab\xa6\xb4\xdd\x13\x6a\xe8\x9a\x89\xba\x8b\x7d\x25\x08\xad\x2a\xd0\x5a\x5b\xb6\x14\xb7\xcc\x57\xb1\xa5\x75\xfa\x4a\xe3\xf9\x87\x90\x1f\xe3\x9c\x8f\xe5\xcf\x65\x22\x69\xec\x46\x44\x89\x13\x05\xc4\x68\x05\xd2\xb7\x43\x55\x1a\x02\xe4\xc2\x64\x8c\x72\xba\x10\x55\x32\x6a\x17\x39\x34\x85\x1b\xa2\xca\x8a\x73\x73\x4b\x62\x87\x71\xd1\x35\xba\x99\x3f\x8d\x40\xa8\x77\x4a\x33\xfc\xa9\xf7\x5a\xa7\x4d\x99\xd1\x5e\xf9\x11\x16\x5d\x74\x0b\xdc\x51\xc1\x88\x56\xc1\xab\xb5\xfd\x0d\xc6\xb3\x7f\xb7\xe9\xcf\x57\xb7\xc6\xc3\x04\x41\x70\x75\xac\x9b\x6f\x98\xd6\xe1\x65\x77\x54\x73\x0f\xb3\x84\x02\x5d\x58\x18\xc4\x2c\xe0\x9d\x8d\xbf\x7c\x66\xa4\xee\x7e\xc4\xd1\xc3\xdc\xef\x04\x56\x95\x06\xd4\x08\x50\x60\x59\x8b\x07\xa2\x9d\xb1\x7f\xe5\xc1\x55\xb2\xfe\x33\x6f\x0d\xb5\x36\x24\xbb\x91\x1b\x81\xea\x90\xbb\x99\x09\xe2\xe7\xf4\xb4\x27\x6b\x15\x9a\x33\xd8\x4c\x2a\x43\x4c\x1c\x3b\x33\x26\xce\xe1\xac\xae\x87\x47\xc0\xa2\x7a\x64\xfd\xcf\xd6\x84\x75\x54\xa0\xaf\x3d\x55\xe2\xa9\xfe\xff\x71\x4c\x7e\x6d\xc9\xd6\xc2\xc6\xad\xcd\x44\xcb\x6e\xb5\xf1\xdd\x54\x5a\x95\x5f\x80\xb6\x2f\x5a\xe6\x1c\x36\xa0\x70\x69\xfd\xce\xce\xdf\x97\x4f\x8e\x71\x35\xe0\x1d\x27\x89\xbc\xd3\x49\x72\xd6\xb6\x74\x1b\x45\xd7\xe9\x99\x52\xb2\xa2\xad\xc2\x33\x46\x6f\x42\x1b\x44\x63\xba\x99\x28\xc6\x55\x7c\x8f\x68\x10\x39\x86\x0d\x76\x79\xae\x0f\x6b\x49\xe8\x6a\x85\xaa\xee\x82\xb5\xa1\x1c\x37\x2e\xbc\x4a\x30\x34\x74\xe6\x70\xc0\x6a\xa1\x51\x59\x4e\xd3\xd0\x01\xc7\xfc\x4d\x62\x22\xd7\x3b\x15\xd3\x3a\x73\xe5\x98\xbc\xc5\x99\xbf\x7b\x14\x1e\x22\x2b\xe7\x11\xbe\x3c\x37\x73\xbf\x74\x87\x11\x9f\xb9\xd1\x9a\xee\x70\x33\xcb\xe6\x33\x4f\x48\x92\xfc\xd5\x2a\xb8\xe3\xb8\x04\x43\x0f\xbf\x9e\xd1\x5a\x32\x32\xd4\xb3\x36\x53\x39\xea\x03\x67\xda\x1c\x23\x26\xb8\x22\x40\xf0\x76\xcd\xa2\x2b\x54\x08\xb6\xda\x49\x19\x03\xd0\x73\x41\xbf\x10\xa2\x0e\xac\x96\x90\x18\x3e\x7f\xe3\xd9\x51\x6f\xcd\x45\x69\x0e\xf1\xd0\xd9\x6a\xe7\xbf\x6e\xb0\x87\xdf\x41\x63\xff\xda\xb9\x06\x68\x5d\x8b\x8d\x0b\xab\xf2\x76\x74\x6e\x10\x19\x5e\xd7\x66\xaf\x69\x83\x7e\x67\x6e\x11\x1b\xd8\x96\x1d\xb9\x90\xdf\x10\x92\x1e\xd0\x62\x7a\xec\x77\x47\xc3\x69\xca\xa5\x89\xd7\xd4\x4d\xec\x5c\x01\x13\xf0\xca\x04\x23\x5e\xce\xd2\x6b\xe5\x2c\x9e\x9d\xc4\xda\x2d\xb5\x10\x59\x00\x13\xa2\x47\x55\xa7\xe5\xbb\x80\xd8\x9c\x54\xd0\x2c\x80\xe8\xe0\xc2\xc7\x3b\xc3\x37\x65\xba\xdd\xd1\xa9\x6a\x9e\xef\x57\xcc\x82\x93\xcf\xc7\x25\x71\x05\x6b\x61\xe5\xdc\x35\x48\x06\x6f\x77\xe5\x96\x38\xbe\x1f\x37\x3b\x00\xdc\x81\x69\xb8\xb3\x69\x6d\x0e\x45\x03\x49\x2e\xc4\x06\x63\x06\x6b\x3a\x65\x1e\x69\x8e\x09\x9b\x8f\xc8\xa7\x9f\xe9\x29\x7c\xfe\x6c\xc7\x86\xc1\xd9\xe2\xb5\xfb\x6b\xd6\x6a\xe4\xbd\xcd\x83\xff\x8f\xdd\x1c\x7d\xea\xe3\xa1\xea\x1d\x0a\xe8\x53\xf2\xf6\x5d\xfa\x9b\x0d\xab\x38\x25\x3f\x65\x74\x48\xc3\xd4\xa7\x28\x73\x32\x8a\x63\x3a\x33\x84\x14\x34\x3d\x39\x21\x78\x8b\xdc\x05\xab\x80\x81\x83\xe7\x8f\x11\x8f\x10\x1e\x8f\x31\xad\xc0\x83\x9d\x6e\x86\xd1\x4f\x59\xd3\xdc\x5e\x87\xbd\xed\x48\xa2\x0d\x73\x33\x80\x21\xa2\xfe\xef\x51\xde\xbb\xa2\xf7\x0f\x20\x4d\xab\x4a\xda\x53\xa9\x3b\x8c\x72\x8e\x2b\xad\x9b\xd0\x96\x2e\x99\x36\x25\xc7\xce\x9b\x67\xce\x23\xdf\xa9\x61\x0d\xde\x09\xd3\x3b\xa2\x0b\xfc\xc8\x00\x6c\xd9\xd3\x97\x2e\xfc\x74\x1c\x9f\x73\x00\xad\x61\xac\x72\xd1\xfe\xc6\x72\xd1\x70\x57\xbe\xaf\xd1\x74\x00\x9b\xc1\x6b\xaf\x85\x45\x2a\x3d\x1d\xe8\x29\x6d\x9e\x98\x1d\x47\xeb\x96\xd1\x6a\x8b\x3b\x2f\x38\x9b\xaf\xf3\xe4\xf0\x25\xc3\x6c\xdd\x58\x82\x0e\xa3\x6b\xf4\xbd\x0c\xa0\xd4\xe1\x62\x7d\x2d\x8f\x4f\x49\xc3\xeb\x31\x19\xbc\x44\xc9\xa7\x75\xeb\x8e\xce\x42\x23\x37\x36\x9e\x24\x73\x71\x05\xf4\x19\x0d\x92\x31\x1e\x7b\x7c\x9d\xc2\xf3\xd7\x1f\x98\x72\xa6\x98\xd3\x91\xba\x60\x30\x73\x76\xa5\xd0\x4b\x9b\xc2\x4d\xe4\xd4\x4e\xc4\x7a\xb5\x01\xa8\x47\xf5\x2a\xd1\x88\x46\xb1\xa5\x17\xef\xad\xb3\x88\x18\xa0\xf9\x5a\xe5\x2c\x94\xf4\x24\x10\x09\x23\x54\xaf\xcc\x5a\x1d\x25\x80\xbf\x5b\x19\x2f\x00\x40\x5e\xaf\xfc\x6b\xb6\xa2\x24\xe9\xa6\x6a\x84\x46\x0c\xf5\xd2\xc5\xdb\xfb\x72\x17\x43\xcf\x95\x20\x3f\xb2\x56\xec\x25\x68\xbc\x81\x9e\x85\x83\xb0\x25\x2f\xc5\x9e\x75\x72\xa2\x8b\xf4\xb0\xd3\xcf\x50\xb8\x93\x10\x12\x45\x84\xf3\x7f\x39\xcb\xae\x67\x6f\x64\x45\x85\xb4\xb2\x42\xfa\xc2\xc2\xd3\x9f\xf3\xe2\x22\xe6\x34\xfc\x50\x78\x37\x00\x8b\x7d\xc0\xe6\x94\x43\x87\x8a\x55\x6f\xe3\x0d\xaa\x57\x7a\x65\x34\x58\xd3\x38\xb3\x61\x81\x9a\xf1\x8e\xd7\xff\x3f\x2a\x38\x27\x42\xd2\x22\xc7\x00\x73\xe1\x3f\xa5\x55\x5b\x7d\x5b\xd1\x59\xcd\xf8\xd2\xe0\x89\xea\x1e\xfb\xa4\xca\xc3\xbd\xc5\xb4\x6f\x86\x66\x40\xee\x21\xa8\xb9\xf4\x0c\x20\xe6\xce\x36\x4f\x5d\x27\x43\x7a\x4b\x79\x0d\x7e\x71\x6f\x4b\x1d\xed\xbc\x28\xd1\x6b\xd8\x11\xed\x4e\x32\x36\xbb\x55\x63\xf1\x6a\xec\x76\x4b\xa2\x9c\x68\x75\xca\x97\x64\xea\x71\xaf\x84\xe2\x33\x23\x74\xa3\x51\x1f\xef\x8b\xdd\x29\x98\x2a\x8f\x92\xc6\x6e\x9b\xe7\x43\x3a\xcb\x5b\x3d\x0c\xeb\xdc\x25\x5f\x1e\x1f\xc2\xcc\x67\x70\xdb\x69\x78\x39\x78\xfe\xd7\xe9\x8e\x81\x55\xa1\x0f\x98\x0d\x85\xd7\x7a\x4d\x77\xef\xed\x38\x05\x65\x83\xf5\xe2\xd8\x9b\x94\x7d\x36\x40\x9e\x6f\xd0\x37\x51\xde\xeb\x9e\xbe\xd8\xbb\x3a\x77\xdc\xf1\xc6\x21\x12\x78\x64\xdc\xfe\xde\xe5\x98\xb9\xdb\x9e\x84\x11\xf0\x99\x81\xb1\x99\x22\x4d\x28\x26\x94\xc1\xf1\xa7\x3c\x13\x1b\x8d\xb8\x40\x1c\xa7\x2f\x03\xc7\xc6\x4d\x80\x61\x93\x20\xdf\x8e\x4f\xf7\xa3\xa1\x5e\x7c\x73\x68\xea\x7f\x4a\xa3\x54\x9b\xaf\xd0\x79\xaa\xd6\xad\xf1\xae\x36\x6c\x53\x6f\xad\x0d\xe5\xc5\x51\x66\xe8\x78\x80\xb8\xf4\x0e\xee\xce\x19\x78\x0f\x99\xb9\x5c\xcb\xd4\xfc\x84\xb9\x4c\x02\xbb\x7e\x4f\xc9\xff\x06\x09\x80\xf8\x5f\x5d\xdc\x20\xd2\x1b\x6a\x2d\xc1\x7d\xf6\x4b\x47\xe6\x58\xce\x8e\xc9\xd7\x1a\xe6\x83\x49\x5b\x98\x14\xdc\xf7\xc3\x70\x63\xbc\xf1\x5d\xed\xaf\xcd\xc6\x82\xb5\x08\xda\xf3\x8c\xad\x40\xae\x77\x23\x39\xdd\xd6\x7a\xc7\x76\x69\x9d\xbf\x67\xaa\x60\xcb\xf7\x18\xf0\x30\x74\x10\x1d\x41\xdc\x0d\xda\x5a\x32\x74\x34\x73\x69\x20\x3d\x91\x26\xe6\xdc\x8c\x11\x74\x82\xdb\xa5\xf5\xf2\xb2\x31\x46\xe7\x4e\x31\x9e\xcc\xe0\x95\x25\x4e\xf7\x6e\x38\x1d\x81\x6d\x5e\x99\x55\x81\x45\xff\xf2\xa9\x8d\x12\xbc\xba\xb8\x19\x66\xd6\xdb\x0f\x91\xef\xd0\xfb\x4f\xc3\x3b\xc3\x4f\x8f\x8e\x93\x4e\xd1\xe1\x94\x01\x1a\x9f\x67\x69\x93\x20\xb2\xf9\x59\xf0\x7b\xaa\xd7\x5f\xda\x28\x44\x73\x09\xa2\x35\x6f\x6f\xf9\x76\xae\xd7\x1e\x1a\x79\x76\xea\x21\x22\xe6\xb2\xfc\xcb\xa7\x8e\xc6\x05\x81\x37\xa1\x6a\xba\x78\x95\x48\x3d\xad\xf7\x4e\xb8\x6a\x69\xbb\x25\x7f\x5d\xd3\x46\x71\xb5\x2d\x78\x94\x22\xa1\xb8\xc4\x08\x9a\x28\x8c\x9f\xec\x25\x11\xd5\x4e\x89\xe8\x3f\x33\x76\x29\x06\x48\xaa\xc4\x5b\x9c\x51\x4a\x65\x66\x60\x8c\xf7\xb2\xc8\xf2\x25\x9d\xf7\xb6\xd8\x7b\x46\xdc\xdd\xb4\x59\x65\x24\xd8\xa3\x1b\xd6\xf6\xc1\x8f\x45\x62\xb4\x10\xc3\xf8\xbd\x48\x37\x23\xf3\x12\x61\x4c\xbe\xf6\xf0\xfa\x29\xb7\xbb\xbc\xdf\xbb\xbd\xd5\x7d\x39\x8c\x98\xe6\x96\xb6\x84\x5b\xf8\x60\xf9\xf9\xbf\x62\x60\x12\x27\x5f\x76\xe4\xcc\x5c\xb3\xfa\x83\x8e\xcc\xe3\x8e\xa1\x12\xef\x59\x33\x26\x5f\x3e\xc5\x28\x91\x74\x92\xc6\x4a\x3c\x4a\xe0\x71\x72\x4a\xb8\x61\xf3\xcf\x7f\xa3\xd9\xdc\xff\xf5\xe7\x02\xd3\x87\x68\xec\x3c\xea\x7f\xe0\x6a\xe1\x3d\x95\xc8\x1c\xfc\x70\x13\xd4\xc9\x81\xff\x23\x8a\x40\x40\xa9\x50\x4a\x85\x20\x3d\xcc\xf5\x4c\x78\x43\xbe\x31\x7f\xfe\xeb\x29\x1c\xe1\x62\x27\xdb\x2c\xfb\xe2\xea\xdf\x4a\xc9\xfd\x94\x92\x8e\xa8\x0f\xa3\x9a\x74\xf0\xde\xb0\x99\xe7\xa6\x37\xa1\xd4\x23\xe3\xd5\x1e\x61\x36\x8f\x2f\x3f\x89\x1e\xf5\x7e\x35\xc4\x57\x6a\xb6\x5b\xdf\xb3\xe1\x54\x24\x3d\x7f\x8e\xf9\x11\x86\x83\x2b\x11\xc8\x84\x30\xa6\x41\xdb\x7b\x08\x68\x10\x89\x59\xa7\x5c\x79\x32\xe7\x34\x9c\xd3\x68\xce\xd4\x55\xa8\x03\x78\x3c\x7b\x17\x25\x66\xa7\x1e\x14\xf0\xbd\xff\xd7\x0e\x7d\xe7\x97\x51\xf4\x3c\x52\xfd\xb2\xea\xde\x01\x94\x38\x50\xf3\x2b\x6c\x8a\x90\x0f\x68\x55\xdd\x88\x7f\x04\x4e\x08\xd1\x96\xcc\x48\x5b\xe9\x21\xdb\xcc\x00\x37\xc7\x0c\x23\x5e\xc5\xf2\xd6\xff\xeb\x38\x33\x99\xc4\xad\x7c\xa8\xea\xbc\xd3\x90\xd9\x43\xa5\x26\x07\xea\xd4\x79\xf5\x62\x87\x86\x1d\xab\x1c\xff\xbc\x1a\x77\x0f\xf3\xdd\x51\x8b\x91\xbb\xd5\x98\xbf\xa7\x6a\xbf\x43\x03\x89\x15\xfd\xb2\x4e\xf2\x8f\xae\xfe\x17\x08\x61\xfd\xc8\x65\xd1\xf0\x60\x86\xc2\x4e\x3b\x21\x9b\x66\x64\xce\x14\xde\xf4\x1c\x75\x77\x3c\x11\x31\xe2\x60\x75\x79\x08\x70\xe3\x72\xd7\xe0\xc3\x28\xa0\x9e\x41\xe2\xab\x95\x3d\x86\xb9\x5a\x2f\x03\x19\x18\x8c\x67\x02\x27\x7a\x46\xcc\x48\x51\x6f\x74\x12\xc6\xab\x7a\x51\xea\xc1\xd6\x4a\x92\xbc\x79\x4f\x72\xa8\x8b\x12\x38\x39\x21\x2f\xd1\x63\xcd\xa8\xe4\xf5\x16\x22\xd6\x39\x86\x62\xe2\x3b\x37\xc5\xa9\xb2\x4f\x28\xfe\xfc\xbf\x6b\xd6\x6e\x4d\x98\xc2\x9f\xcd\xb6\xb6\x70\x40\xac\x9a\x87\x16\x70\x09\x20\x99\xea\xde\x26\xd9\xa8\xbc\x73\x7c\x3d\x62\x15\x44\x1f\xa0\xf5\x2c\x7f\xea\x52\x47\x3c\x8a\x89\x6c\x42\xcd\xfd\x5e\x1e\x1d\xfb\x83\x00\x4b\xad\x82\x58\xef\x32\xa8\x20\x66\x3a\x6a\x16\xbe\xa5\xf6\xc3\xef\x8a\x0d\x4b\xd1\x68\x59\xd6\x8a\x43\x97\x8a\x50\xef\x12\xb2\x13\x26\xed\x38\x28\xe2\x41\x32\x25\xdf\x9a\xf0\x95\xc7\x7e\x88\x80\x64\xaa\xe3\x07\x97\xcf\xcc\x0f\x7c\x04\x2b\xac\xd7\x2e\x32\x2b\x48\x4e\xc9\xf0\x93\xdc\x80\x54\x92\x4f\xae\x99\x7a\x7e\xf4\x38\xd7\x2d\xe2\x33\x2f\xe2\x46\xa5\x5e\xd5\x20\x32\x49\xf6\x06\x9b\x1b\x40\xa3\x1d\x41\xe7\xb6\x99\x0c\xa3\xcd\x49\x1c\xdb\x24\x99\x1a\x75\x42\x2f\x6d\xd7\xc5\x39\x99\x96\x4e\x82\xa5\x6d\xdd\x2d\x8e\x6e\x1a\xdd\x16\x91\xfe\xd0\x27\x03\x3c\x95\x5b\xff\x82\x92\x3b\x26\xcf\xc7\x12\xde\x19\xb9\xe6\x25\x70\x4c\x9e\x6b\x76\xda\x9a\x0b\x79\x0f\xe2\x50\x96\x0c\x63\xd5\xf7\x94\x86\x65\xf0\xfb\x7a\xc9\x0e\x78\x20\x6a\xa2\x86\xba\x50\x44\x16\xaa\x97\xce\x3f\x91\xf7\x3d\x91\xef\xd4\x82\xb5\x1b\x2e\x19\x3e\xc6\x33\x71\xfd\x79\x4f\x46\x4e\x72\xc7\xe9\x7f\xfa\x24\x60\x2e\x9f\x50\x0a\xa1\x37\xb6\xb1\x20\x41\xdc\x4b\xcb\x55\xe1\x75\xa5\x3f\x10\x80\xe9\xfe\x2c\x9e\xff\x5e\x1e\x4e\xbe\x5c\xd5\x60\x25\x53\xfb\x2c\x92\x92\xe9\x5a\x2a\xb1\xec\x5e\x87\x22\xaf\x8b\xd6\xa5\xcf\x1c\x05\x80\xe0\xe7\xe0\x99\xcb\xca\x7f\x5c\xba\xeb\x09\x98\x91\xb6\x26\x5f\x93\x97\x2f\xb1\xe7\x90\x9e\xad\xeb\xfa\xca\x3b\x82\x9f\x97\x5b\xf2\x56\xaa\xfd\x9a\xd6\x74\xdf\x96\x13\xde\xaa\x45\x45\xd5\xbe\x4d\x81\x8d\x77\xb7\xfd\x0b\x6b\x25\xdb\x5a\x9e\xd9\xd5\xba\x6a\xe9\x4c\xdd\x30\xba\xdc\xb3\xe9\xff\xcf\xe8\xbe\x50\xaf\x99\xd1\xc1\xf7\x6c\xff\x46\xac\x9b\x6a\x77\x5b\xc5\xe8\xf2\xcc\x2c\xf4\xd5\x8b\x33\xbd\x5d\x0e\xe9\xb2\xbb\xf5\xaa\xe5\x4b\xda\x6e\x5f\x6b\x33\x67\x2f\xec\x17\x8c\xcf\x17\x7b\x00\xde\xec\xd9\x0e\x52\x6f\x68\x42\xcb\x6f\x3e\xac\xf4\x29\xde\xec\xb3\xee\xcd\x84\x5e\x33\x2a\xf7\x22\x37\x55\xec\xbb\xd9\xde\xf4\xa8\xe9\xf6\x25\x55\x6c\x2e\xda\xed\x7e\xad\x6f\xb6\xab\x3d\x10\x5e\x88\x25\xd3\x9c\xb7\xdf\x6e\xa1\x1b\xba\xdd\xbf\xb5\x85\x7d\x3d\x15\xed\x01\xc0\xf7\x6c\x8e\xaa\x55\x28\x96\xfb\x5a\xef\x29\x10\xb2\xe7\x45\x1f\x9d\xf7\x30\x31\xf6\x34\x44\x5c\x74\xd7\x65\x63\xfc\x2f\xdd\xbc\xc2\x13\x2b\x38\x3b\x12\x09\x1a\x7a\x1e\x53\xb1\x19\xfe\x9e\xc8\xca\xf0\xe7\x54\x40\x66\x7e\x0f\xa5\x62\xd8\x20\x2b\x0a\xc3\x26\xa9\xfc\xcb\xfc\x1e\x08\xbd\xcc\xef\xa9\xa4\xcb\x34\x0a\xc5\x5b\xd8\xa0\x2c\xd3\xca\xed\x0a\x4d\x4a\xd2\x2b\x6c\x15\x89\xac\xf0\xc7\x4d\xdf\x8f\xbd\xc2\x29\x6c\x9a\x4a\xa4\x88\x2c\x39\x31\x14\xcd\x26\x27\x7b\xd2\x26\x81\xc0\x89\x66\x9a\x93\x32\x61\x93\xac\x68\xc9\x43\x09\x05\x44\x1e\x4c\x5f\x9b\xac\xe4\x88\x9b\xf4\xed\x89\x6c\x4a\xc9\x84\x1e\x9e\x0e\x19\xc3\x2e\xfd\xd4\x2b\x02\x6c\xa3\xac\xee\x69\x85\x00\x39\x75\xf2\x20\xd3\xc8\x8a\x02\xdd\xca\xfe\x3b\x63\x48\x52\xd7\xca\xfe\x33\x6d\xe4\xe4\x02\x39\xed\x64\x44\xa1\x19\xea\xfe\xa7\x9e\xac\x48\x1b\xfa\x62\x82\x9c\x06\x52\x23\x6d\xec\x04\x06\x39\xed\x84\x47\xa1\x99\xde\x26\xb6\x99\xfe\x77\xa1\x99\x13\x1f\xb6\xad\xfb\xa2\xd0\x01\x44\x89\x6d\x0c\x7f\xa4\x0d\x13\x91\x42\x4e\x53\x31\xd3\xdf\x2d\xea\x91\x31\x2b\x42\x59\xa3\xed\x8b\xf0\x9b\xb4\x0b\x0a\x1e\x72\x6a\x24\x50\xda\x60\x63\x1b\x6c\x0a\x0d\x72\x02\x48\x63\x9a\xf9\x3a\xe3\x83\xb0\x22\x89\x9c\x76\xe2\x29\x43\x65\x4f\x32\x9d\x06\x72\x2a\x6f\x5b\x59\x11\x65\x2c\x2c\xfb\x67\xbe\x31\x64\x33\x3b\x75\x72\x2b\x43\x23\x4f\x64\x69\x4a\x79\x7f\xa6\x8d\x7d\xe1\x45\x4e\x03\x59\x56\x86\x0c\x22\xca\x03\x0d\x7f\x97\x61\xdb\xe6\xc1\xdf\x25\x17\x54\x60\x44\xda\x3f\xb3\x16\xeb\x95\xf3\x6b\xe5\xb1\xdd\xc7\x28\x25\x07\x98\xb8\xfd\x4e\xb6\x54\xfe\x61\x54\x5e\xfc\x6d\x8f\x3d\xec\x95\x5a\x31\x09\x09\x56\x2d\x93\xe6\x8a\x29\xac\x4f\x43\xf2\xd6\xac\xeb\x7f\x75\x71\x93\x26\xd6\x1f\x85\x01\x2b\x27\x27\xe4\xf7\x98\xd8\xcf\x24\xd4\x72\xf9\xfd\x8a\x8a\x5e\x97\xf4\x36\x4a\xa3\x05\x46\xb4\xbb\xd7\x4b\x53\x2c\x65\x4c\x08\x3a\xf6\xbc\x46\x89\x5f\x23\x97\xf9\x78\x57\xba\xe4\xdc\x95\x58\x74\xe2\x24\x57\xf2\x26\xb5\xe1\x2b\x97\xda\x30\x68\x6e\x9d\xb0\x5e\x36\x43\xcf\x35\xeb\x7f\xeb\xdf\x32\xa5\xdc\xc1\xab\x7c\xb7\x24\x5e\x00\x3d\x64\x5e\x26\x32\xf4\x4f\x64\x45\x0c\x25\xa7\x1e\x05\xbb\xe8\xf6\xec\x03\x8c\x90\xa2\xfe\x5f\x47\x99\xb7\x5c\x41\xde\xea\xe0\x67\xfd\xe9\x12\xfd\x9a\xc9\xdd\x2f\xe6\xa2\x42\x77\x73\x3e\xf0\x22\x42\xbb\x6b\xde\x7d\x7f\x8f\x70\x05\xfb\xaf\xe8\x2d\xfd\xcc\xdf\x6f\x7e\x6e\xe8\x63\x24\x0f\x6d\x4c\x2a\x64\x25\xdc\x3b\x6b\x1f\x80\x12\x44\xac\x95\xe4\x15\x23\x62\x22\x59\x7b\xcb\x5a\xe9\x9e\x54\xb9\x18\xab\x30\xe3\x34\xc9\xe6\x5a\x7e\x63\x36\x74\x97\x77\x3a\x98\x41\xb7\x1f\x6d\x1c\x43\xbc\x18\xb9\x9d\x44\x4e\xc9\x5e\xa4\x0c\xf7\x5b\xd8\x2b\xb7\xb0\xc1\x7e\xb4\x08\x75\xab\xdb\xa9\x81\x3b\xbc\xd9\x0d\x5d\x32\xbf\xde\x45\x68\xf4\x65\x3c\x6f\xde\xe6\x32\xde\xfc\x57\x4c\x51\xbd\x2b\x5e\x6c\x2f\x38\xab\x2b\x77\x8f\x9c\x4c\x00\xf3\xd3\x8c\xc9\xe0\xc2\xc0\x1c\x1c\x91\xe7\xcf\xc9\x60\x90\x0c\x1a\x1b\x0a\x0f\x31\xe8\x6b\x03\x33\x3b\xa8\xf1\xcd\x67\x95\x62\xfd\x19\x4d\x45\x33\xa5\x6a\x38\x20\x83\xf4\xee\xdb\xfe\x68\xb1\x2e\xf1\xfa\x4d\x94\x5f\x4e\xf8\xbc\x1f\x67\x47\x80\x04\x55\x98\xb9\x8d\xac\x5a\xb1\xc2\xbb\x30\x79\x0c\xf1\x7a\x90\x96\x37\xce\x57\xf7\xff\x11\x56\x4b\x48\xf3\xc4\xeb\x2a\x49\x66\x87\xc5\xae\x20\x09\x09\x9e\xf6\xc7\xa6\x68\x9b\xe7\x1e\x2f\xe4\x44\xb0\xbc\xe2\x81\x2b\xb2\x8c\x8b\xed\x20\x8c\xb6\xf5\xd6\x66\xc8\x30\x39\xe8\x30\x73\x63\xf3\x14\x92\x3c\x85\xbb\x6b\x86\xfe\x34\xd3\xee\x01\xd6\xdb\xa6\xc0\x8b\x8f\x25\x6f\xb9\x6d\x66\x3c\xff\xa7\x34\xee\xf2\x45\x3f\x3d\x61\x0b\x59\xa2\x1a\x42\x66\x68\x9b\xf0\x78\x64\x3c\x86\x53\xbe\xc6\x1f\x87\x79\xd9\x5d\xda\x36\xa1\x00\x72\x70\xf3\xf2\x67\xa4\x04\xb6\x88\x6e\x09\x53\xaf\x59\x01\x41\xcc\x91\x55\x42\xf1\xb9\x07\xbf\xbc\xe1\x06\x67\x96\x70\x69\xa8\xad\xdd\x56\x3e\x32\xe5\xcd\xd7\xbb\x33\x0d\xad\xfb\x7a\x2f\xfd\x48\x73\x7f\xe1\xfa\xe1\xfa\x67\x7b\x86\x85\x4e\x4e\xb0\xdc\xd7\x7a\xb5\x12\xad\x62\x55\x78\xc7\x92\xd4\x43\xe4\xcd\xb4\x5e\x57\x36\x90\xe2\xa5\x56\xe5\xb5\x1e\x09\xc5\xa4\xfa\xf7\xe6\x9c\x29\x68\x05\x37\xab\x5a\x08\x15\xee\x55\xdf\x26\x73\xd1\x8d\xbf\x0c\xca\x56\x8d\xce\xb9\xd4\xbb\xe9\xab\x61\x26\xc2\x13\x9a\x17\xaf\x70\xca\x5d\xc2\x11\xde\xd8\x2a\x49\xfb\x76\x30\x1a\xfd\xfe\xed\x3f\x28\xd6\x36\xb4\xfe\xfe\xcd\xb7\xfb\x76\xb9\xba\xb8\xe9\x82\x91\xb4\xac\xb9\x5b\xc7\x5d\xb4\x0b\xfb\x5e\x03\x07\xed\xdb\xfa\xa6\xa5\x5c\xed\x4d\x83\x57\xac\xe2\x54\xb7\x0e\x1a\xbf\x2b\xf0\x69\x8b\xa5\xc5\xf0\x58\x01\xbe\x72\xb1\x19\x73\x7e\xcb\x1a\x4c\x71\x67\x19\xf6\xea\xe2\x26\xcb\x90\xf8\x1a\x17\x20\x69\x24\x86\x7f\x02\x50\x63\x40\xef\x68\x4c\xce\x9a\x2d\x1a\x30\xcf\x63\xf7\xd4\x86\xab\xe9\x02\xc7\x4d\xe5\xf5\x94\x9a\x64\xd9\x45\x46\x1d\x27\x7d\x48\xc7\xf4\xd9\x4e\xa9\xae\x6d\x3f\x18\xeb\xe3\xe2\x39\x72\xd4\xb6\x9f\xca\x2f\xe9\x8a\x22\xd0\x3f\x24\xcb\x1d\xd5\x62\xbd\x9c\x34\x94\xd7\xe3\x08\xbb\x3f\xdc\xdc\xbc\xbe\xe0\x35\x1b\xae\xdb\xda\x80\x74\x6d\x73\xe1\xf0\x24\x50\xae\xed\xe7\xe4\x84\xbc\xcc\x5d\xea\x1a\xeb\x53\x09\x97\xc9\x3d\x7e\xfb\x91\x92\xbc\x6f\xb3\xf7\x92\xbd\xd8\xb1\x4c\xfa\x4e\xdb\x7c\x40\x25\xb3\xbc\x0a\xde\xad\xc7\xfd\xc7\xb3\xb0\xfa\x06\xec\xae\x51\xee\x3d\xde\xb7\x74\xf7\x70\xde\xb5\xcc\xbd\xc7\x7b\x61\x61\xed\x1c\xd0\xdc\xf3\x3c\xcc\x88\x00\xac\x6f\xc8\xf0\xe6\xe8\xde\x83\xfe\xb7\x07\xae\x6f\x58\xef\x36\xea\xde\x63\x9e\x5b\x58\x3b\x07\xc4\xeb\xad\x87\x19\x50\xc3\xda\x39\xa0\x77\x5f\xf6\x30\xa3\x3a\x80\x3b\x87\x36\xb7\x70\x0f\x33\x2c\x00\xeb\x1b\x32\x73\xaf\x77\x7f\x13\x24\x86\xb9\x2f\x02\x0f\x3c\x76\xdf\xb0\xc9\x25\xe4\xfd\x0d\xed\x10\x62\xdf\xe0\xf6\x6e\xf3\xde\x63\xfe\x01\x00\xf5\x0d\xb5\x79\xa8\xa1\x7e\xd8\x39\x54\xfe\xde\xf5\xfe\x2b\x9a\x01\xdb\x87\x86\x77\xa7\x7b\xef\xb1\xaf\x2c\xac\xde\x5d\x1b\x5c\x12\xdf\x7f\xdf\x7a\xe0\x7a\x39\x38\xb8\x78\x7e\x10\x3f\x91\x05\xb7\x6b\x58\xf4\x51\x3d\xa0\x6b\xaa\x67\xab\x04\x97\xe3\xf7\xdf\x30\x1e\xb8\xbe\x61\xc3\x0b\xf7\x7b\x0f\x7b\xe6\x81\xdb\x67\xb6\xe6\x82\xfe\xc1\xa6\x0b\xf0\xf6\x99\xef\x43\x0d\x7c\xe6\xc3\xeb\x1b\x38\x74\xb9\x1c\xe2\x69\xe9\x83\x99\x2a\x9b\x3b\x3c\x4b\xfd\x08\x1e\x7e\x3d\x60\x3f\x45\x4a\xf5\x21\xbf\xd7\xb5\x85\xfd\x64\xa3\x22\xbc\x89\x5f\xa5\xbf\x17\x88\x70\x5c\xc4\x76\x5f\xf3\xab\x64\xaf\x7a\x5e\x8c\xbc\xe5\x64\x9f\x9a\x58\xaf\xdd\x9c\x29\xd3\x07\x16\x2d\x3f\x3e\x94\x98\xa1\x1f\x42\x07\xdd\x83\x4c\x97\x3c\x7f\x1e\x3d\x43\xf3\xc7\xb4\x37\x3d\xcd\x4c\x90\x53\x92\x9d\xa9\x97\xa5\xf4\xd8\xf8\xd3\xec\x2d\xca\x30\xcf\x42\x47\xc7\x7a\x2e\x63\x98\xd0\x57\xe4\x19\x79\x6e\x9b\x2f\xe9\x87\x23\x32\x26\x0d\xaf\xcb\x54\x30\x18\x7d\xcb\xa5\x1a\x93\xb7\x59\x8c\xde\x91\x53\xf2\xd6\xc3\xfc\xdd\xfe\x8e\x03\xbb\x7a\x65\xf3\xd5\x1b\xff\x9e\x9c\xe2\xfc\x42\x07\x38\x36\xb0\x4f\x19\xbb\x7e\xba\xdf\x13\x61\xdf\xa3\xb7\x8f\x57\x60\x64\xbc\x44\x2f\x4d\x2a\x5c\xf0\x0b\xd8\x3b\x75\x3c\x57\x1b\x5e\x1f\x83\xdb\xc2\x1c\xb3\xfd\x83\x1e\xb0\x0b\x03\xdf\xe0\x01\x04\xf6\x3a\x0e\xed\xf6\xc4\x4d\xa6\xbf\x39\x00\x83\x9c\xab\xf1\x17\x23\x5a\x6e\xf0\xbb\xa2\xbe\x9f\xff\xed\xe3\x61\xef\xc6\xdf\x7f\x02\xce\x87\xda\x8b\xb2\x79\x1a\x04\xf8\x62\x0f\xc0\x76\xff\x61\x9c\xf3\xf5\x00\xfe\xc2\x3e\xe5\x0d\x9c\x3a\xef\xfd\x4f\x06\x56\x19\x94\xfd\xcc\x78\xcd\x8a\x2e\xc8\x9d\xbd\xf5\xa7\xf3\x53\x2e\x59\xc5\xd7\x4b\xbe\xa4\xf3\xd2\x49\xe5\x7f\x7a\x54\x0d\xfb\xd1\x00\x29\x72\xc2\x00\xc0\x9e\xfc\x65\xc5\xe6\xe9\x4d\xd1\x01\x60\xff\xee\x44\xba\xe5\x15\x13\x0f\x4f\x1e\x00\x7b\xb2\x5c\xfd\x66\x07\x75\x8a\xbf\xe6\xcf\xc1\x52\xd6\x46\xd2\xb1\x70\xc3\xeb\xdd\x37\x0a\x5c\x92\xab\x8b\x9b\x27\x92\xe0\x5e\x82\x2d\xbe\xeb\xfe\xc0\xdf\x76\x31\xf5\x0d\x98\xe4\xee\x59\xae\x44\xab\x24\x69\x69\x45\x5b\xf0\xa8\x10\x5e\x25\xb7\x9b\xec\xc3\xb4\x5e\x57\xac\xd2\x2a\x95\x1c\x93\xb7\x78\x4d\x09\x8a\x41\xc6\x65\xf3\x2e\x97\x88\xa7\x94\x3d\x24\xcc\x8e\x13\x5d\x99\xba\xef\x5f\x6c\xaf\x2e\x6e\x2e\xcf\x87\x26\x8a\x24\x4d\x65\xe2\x32\xca\x87\x05\x8e\x3d\x3a\x2a\x24\x00\x5c\xd1\x54\x6c\x46\xd7\x75\x26\x12\x8c\x98\xac\x02\xd8\xd8\x2b\x2a\xe8\xae\x61\x7e\x26\xa7\x99\xeb\x96\xc1\xb5\x67\x8c\x0c\xee\x6b\x8d\x0c\x8c\xc9\x91\x00\x3a\xcc\x0e\x19\x5c\x7b\xda\xca\x60\x7f\x0b\x64\x80\x19\x49\xbb\xd1\xf5\xdf\xbc\x99\x8f\xb8\x34\xb9\x4a\x9b\x99\x7a\xc3\x66\x63\xf2\x89\x06\x09\x2f\x86\x7f\xca\x85\xf3\xfd\x9c\x45\xca\x2d\xea\xc0\x8f\x7e\x7a\x8e\x2f\x81\x9f\x3f\x27\x83\x6b\x45\x9b\x8a\xb6\xd5\xa0\xb7\xf7\xe5\x79\xd4\xdf\x8f\xa4\x4a\xd5\xf0\x7c\xa2\x74\x78\x86\xe7\xea\x48\x24\xac\x60\x78\xc6\x98\x16\x4b\xba\x7a\x6d\x72\xd1\x0f\x35\x9b\x8d\xcd\xef\xf9\xb4\x2b\xe1\xf6\xd3\xed\x6f\x04\x6e\xc2\xa0\xf3\x71\xbc\xb9\x82\x3f\x4b\x57\xe4\x17\xae\x4a\x16\x54\x41\x9e\x89\x96\x4c\xc5\x72\xb5\x86\x94\x02\xc1\xc8\x61\x06\xb9\x6e\x06\x64\xc1\xea\x95\x34\xa1\x2f\x62\x6d\x58\x5e\xb7\xc0\x0c\x5c\xc1\x03\x45\x1f\x46\x90\xdc\xac\xeb\x84\xa5\x25\xeb\xba\x8b\x56\x31\xd5\xeb\x3d\x70\x98\x2a\x21\x48\x65\x9e\xa4\x3d\x4b\x68\x9c\xd9\x82\xda\xaa\xc9\xed\xcc\x34\x16\x6b\x65\x5c\x10\x55\xf8\x6c\x3d\x72\x4e\x14\xbd\x12\x60\xce\x45\x95\x30\x34\xad\x81\x55\x4d\x2e\x74\x0b\x7e\xf4\x9e\x65\xd3\x24\x6b\x34\xb0\xc8\xc8\x69\xd0\xfe\xad\x06\xf2\x2e\x13\xe8\x41\x30\xb8\x07\xfb\x3c\x3e\x25\x83\x41\x06\xaa\xfe\x68\xfa\x8c\x78\x23\x59\xab\x86\xef\xd9\xd6\x1a\x8d\xd0\x31\x3d\xb6\x7e\xde\x7d\x30\x69\x80\x05\x86\xf3\xf5\xf6\x22\x37\x20\x0b\xb2\x8a\x30\xa3\xf6\xeb\x53\xdc\x06\x6d\x45\x99\xb6\x4a\x31\x19\x9e\x75\x50\x08\x98\xb2\x81\x30\x0b\xa5\x56\x72\x7c\x72\xd2\x4c\xa8\x12\x2b\x09\xb5\xe8\xc4\xf2\x04\xc7\x39\x19\x74\x11\x27\x70\x64\x78\xc1\x35\xa5\x4d\x15\xba\x0e\xba\xd4\x6e\xf6\x6c\xc2\x55\xc7\xb2\x83\xcb\x09\x6f\x68\x1a\x93\x06\x89\xe0\x30\xf6\x9b\x36\x55\x1c\xae\x7d\x72\x42\xfe\xec\x3c\x4c\xff\x81\x3f\xfe\x79\x27\x45\x02\x77\x46\x4f\xdc\xe1\x47\x08\x8f\x62\x1e\x39\x5c\x2c\xbb\x8b\x00\x1a\x93\xff\x18\x1c\x05\x64\xf6\xb6\x4e\x96\xde\xde\xf2\x79\xa0\x73\xcb\x91\x25\x06\x95\x92\x29\xcc\x72\xb7\x27\x6f\x40\x0f\x39\x8a\x59\x44\xab\x81\x77\xe1\x10\x9b\xc3\x8a\x02\x63\x2b\x41\x2a\x34\xa7\x08\x6d\x08\xea\xf2\x44\xf2\x1f\x59\x45\x40\xf7\xee\x9f\x4c\xa0\xfb\xf7\x4f\x07\xdf\x2b\x40\x75\x8e\xef\x20\x4e\x82\xd6\x90\x1a\x4b\x7a\x21\x0f\x1e\x6d\xdc\x02\x3d\xdf\xf0\x4a\x2d\x4e\xff\xeb\xd3\x5f\x0f\x8e\x8e\xf1\xea\xfe\x9c\xd5\x7c\x39\x26\x83\x4f\x06\xc5\x0a\x17\xc9\xdc\xba\xd0\x8b\xa4\x66\xf6\xbe\x1b\xdb\x0b\xc8\xf8\xa8\x53\xfd\xf5\x7f\x7d\x7e\xbf\xa9\x82\x55\x70\xe7\x69\x1a\x53\xe5\xe3\x4c\xf1\x04\xa0\x27\xd3\x7b\x5e\x9e\x1e\x8c\x21\xb1\x72\xbf\x19\x89\x34\x4c\x6d\x44\xfb\x9e\xac\xf4\x90\x50\x16\x08\x53\x9b\x1a\x13\xc2\xc4\xf7\x57\x3c\xff\x3a\xa2\xdb\x8a\x45\xfc\x71\xea\x21\x92\xae\x12\x73\x96\x2e\x7c\xe6\x24\xd5\x15\x62\x37\x3c\x22\xa7\xa7\x64\xa0\x98\x54\x0d\x53\xb9\xf3\xcf\xd0\x72\xdd\xd6\x96\x3e\xdd\x78\x1d\xc9\x2c\x80\x3d\x8c\xb2\x75\x5b\x32\xca\xac\x69\xd1\x60\xa5\x55\x3f\x01\x9b\xc9\xf8\x00\x61\x41\x50\xe3\xbe\x4b\x74\x47\xb8\xb2\xf5\x60\xa0\xd8\x63\x3e\x93\x86\x26\x25\xa6\x39\xfb\x46\xc3\xf6\x53\x9d\x8d\xc9\xd7\xa9\x52\xdd\x35\x28\xe4\x4a\xf9\xf2\x69\x57\x98\x35\x0b\xb7\x99\x29\xcf\x53\xf4\xf5\xd5\xc5\xcd\x57\xa1\xbc\x23\x61\x61\x6a\xc8\x11\x8a\x85\x9b\xb5\x9a\x4c\x6b\x42\xd7\x6a\x21\x5a\xfe\x23\x1e\x7f\xc1\xa3\x20\xdb\x0b\x52\xe6\xfa\xd5\xfc\x95\x20\x2b\xd6\xce\x44\xbb\xf4\x32\x67\x05\xa5\x5e\x4d\xc5\x64\xb5\x70\x65\x5e\x6d\x9d\x66\xaa\x07\x56\x61\x7d\x9c\x63\x28\xda\x8b\x41\xc3\x61\xb5\xd4\x47\x31\x89\x1d\x82\x38\x95\xe0\x85\x11\x92\x08\xab\x5e\xc1\x3f\x6d\x16\x65\xf8\x2a\x7a\xdd\x62\xf2\x18\x4a\xac\xca\xcf\x5d\xaa\x60\x2c\x50\xe1\xd9\x9d\xdc\x16\x4b\x46\xc6\x90\x4b\xda\x2a\x57\xc0\xcc\x03\xe7\x43\xf6\x53\x1d\x76\x35\xed\xcf\x7c\xb0\xa6\xb6\x7f\x17\x9f\xa6\xb8\xaa\x99\xad\x3a\xc4\x5b\x12\x6b\xea\xf9\x0f\xfb\x40\x97\xab\x9a\x8d\xc9\x4f\x70\x8b\xca\x5a\x62\x4c\xcd\xc1\xff\xb0\x5b\xde\x90\xf3\x75\x4b\x1b\x35\x38\x76\x21\x02\x63\x32\xf8\x82\xcc\x18\x53\x83\x9f\x77\x43\xb7\x9f\xe1\x84\x4d\xe9\x5a\x32\xb2\x81\x04\xca\x98\x60\xc6\x1f\x00\x03\xdb\x15\xf9\xfc\xc9\xef\xbc\xed\x59\xc8\x79\x18\x26\x7d\x74\x0b\xe4\x25\x4a\x23\xfd\x09\x0d\xbb\x85\x1e\x76\xd4\x75\x26\x04\xfe\xff\xe7\x52\xa5\xf8\x4e\x06\xf8\xa3\x27\x3e\x83\x86\x6d\x4c\xda\xa7\x68\x1c\xfb\xaf\x34\x6a\xbc\x61\x1b\x78\xb6\x67\xba\xda\x2a\xf1\xf1\xe8\xe1\xa3\xb0\xcb\x73\xbf\x06\x12\x87\xe4\xcb\x60\x05\xd2\x39\xe5\xa1\x73\xc5\xaf\x06\xf8\xda\xbe\x21\xcc\x7c\x59\x4c\x21\xea\x8a\xea\x20\x01\xaa\x21\xaf\xc6\x11\xb6\xc7\x24\x37\xd3\x78\x0a\xd7\x5e\x2d\xbf\xb0\xd6\x72\x4f\x3d\xbf\x95\xab\xfc\x06\x84\x7a\xd7\x51\x2a\x6b\x71\x43\xa3\xbc\x10\x3f\x21\x37\x4c\xcb\x1d\xda\xf2\x7a\x4b\x58\x43\x27\x35\xab\x90\x8c\xd9\x17\x26\x2b\x5b\x6f\x78\xc2\xa0\x48\xef\x8c\xd7\x75\x90\x3b\x69\x9f\xbc\xe8\x2b\x53\x81\x6d\xbd\xaa\xc2\x27\x58\xe1\xe6\x31\x6f\x2a\xf4\x6e\x97\x78\x3c\x62\xde\x51\x5c\x53\x19\xbc\x06\xb1\xc1\xc4\xab\xb0\xcc\x5f\x64\x87\x85\x28\x14\x37\x05\xe2\x05\xa1\x14\x08\x3e\xc9\xec\xe9\x50\x73\x07\x78\x76\x83\xc0\x3b\x94\xe5\xca\x70\x7f\xb1\x6e\x5f\x72\x88\x77\x89\xa9\xcd\x03\xd7\x28\x8d\x5d\xca\x46\xdf\x03\xca\x6e\x6a\x4f\x64\xf6\x45\x8a\xc1\x65\x84\x13\xb4\x93\x73\x93\x31\xff\x48\xa1\x9b\x77\x38\x1e\xf4\xe8\x4d\x9e\x61\xb4\xc8\xac\x0b\xd5\x05\x14\x35\x50\x1d\x36\x38\x52\xfc\x9a\xff\xe1\x41\xe2\xf7\x36\xdb\x43\x5b\x2d\x4e\xe0\x47\xe7\xc9\x01\x27\x09\xde\x25\x6b\x96\x68\x8a\x85\xfe\x8b\xd6\x7c\xc7\x45\xa6\xf6\x6e\xb1\x32\x74\x27\x61\xaf\x59\x54\xab\x74\x6f\x91\xea\x23\x45\x3a\x89\xaa\xa9\xd6\xa5\x82\xed\xc0\x63\x15\xcf\x7e\x41\x89\x8f\xa2\xef\x22\x2b\xaf\x4b\xd5\x54\xcb\x92\x32\x12\xe7\xd7\x4c\x99\x77\x85\xa9\x3c\xbd\x66\xca\x8a\x53\x63\x8e\xfb\x1d\x8e\x5d\x52\xcc\x6c\x85\xfd\xdd\xa2\x35\xe0\x1d\xf0\xc1\x65\xe7\x09\x39\x1f\x8d\x5c\xfd\xf2\xe9\x63\x83\xc3\xa1\x82\x95\x60\xc6\x7a\x64\x6e\x6b\x1c\x7b\xb5\xea\x85\x2d\xae\x1c\xf0\x70\xb0\x5f\xa2\xaa\xfb\x5e\xa9\x76\x57\x65\xdf\x54\xd8\x27\xa2\xe9\x29\xfc\xe5\xf1\xbd\x21\x6b\x21\xbf\xdf\x56\xac\xc9\x86\x26\xd5\x7d\xe7\x4c\x45\xb8\xef\xda\x25\x67\xe1\x4c\xed\x20\xce\x15\x6a\x06\x46\x3f\x68\xac\x47\xda\x39\xb1\x0f\x2b\x21\x77\xa7\x65\x76\x96\x97\x23\x78\x94\x61\x74\x0c\x69\x3b\xef\x9f\x67\xd4\x94\x65\xc0\x61\xb0\x94\xaa\x2d\x9c\x16\x94\x7a\xd8\xa3\xf8\x42\xcc\x0a\x7e\x61\x0d\x67\x25\xc5\xfd\xb4\xd2\xf8\xe7\x4f\xfe\xec\xbf\x5e\x36\x35\xf0\x22\x48\x26\xfb\xb5\x06\xa6\xe2\x54\x13\x06\xfa\xde\x19\x4e\x43\x9e\x96\x8a\xb6\xea\x4a\xef\x07\x78\x68\x07\x46\x34\xc8\x41\xdc\x88\xf6\x01\x1e\xe4\xf2\x35\x02\xc7\x4f\x72\x6b\xea\x7b\x47\xef\x1b\x97\x8c\x36\xf8\x4e\x8d\xaa\x38\xc5\xbe\x2d\x2c\xcb\x03\x2e\x81\x3a\x7f\x9a\x1c\x56\x46\x06\x10\xf7\x11\xe1\x7b\x75\x8a\x25\x79\x38\xfb\x61\x8f\x08\xff\xa6\xa9\x72\x74\xc1\xc3\x4d\x1b\x3d\x78\xf2\x89\xe8\x78\xd6\x52\x23\x24\x5d\x68\x2f\x65\x11\xf6\xf9\x36\x10\x88\x9e\x98\x0e\xbf\xef\x57\x6a\xdd\x04\xaf\x35\xa6\xac\x1a\x36\x6c\xf3\xd2\xef\xbf\x9f\xfc\x8d\xe2\x35\x82\xa6\xfd\x0a\x82\x57\x7e\xc0\x28\x05\x56\x5f\x80\xe3\xd0\xfd\xfc\x8a\xae\x32\x46\xb6\xcf\x22\x56\x57\xb4\x05\x6a\x82\x84\xfc\x1d\xa0\xfc\x7b\x48\xef\xec\x0e\x8b\x8a\x58\xb4\x92\xe2\x87\xa5\xda\x25\x92\xde\xb2\x2f\xbf\x4e\x2a\x97\x78\xa7\x77\xf8\xd3\xf0\xe8\x98\x28\x71\x68\x51\x93\x68\xa7\x66\xca\x36\x10\x8d\x88\x24\x9b\x05\x9f\xfa\xd3\xf7\x5f\x8d\x4e\x58\x2d\x9a\xb9\x2c\x8b\xf8\x40\x89\x9a\x65\x0e\x13\xff\x35\xdf\x01\x15\x01\x0e\x40\x27\x84\xd9\x7b\xa0\x1d\x54\x76\x29\x6f\xab\xdc\xa1\x98\x63\x22\x37\x7a\x4a\x68\xf4\x15\x06\x48\x52\xa5\xac\x7a\x0b\xd9\x86\x01\x03\xe8\xd4\xf9\x47\x2b\xa8\x13\xe1\xdf\x5f\x7d\x64\xa6\xfa\x6b\x0b\x78\x65\x47\x0e\x28\x64\x1d\xef\xf9\xd8\x5a\xf1\xb6\xd3\x7e\x6e\x30\x4f\xd0\x64\x9c\x61\x11\x81\x1d\x91\xee\x6e\xc4\x64\x0b\x8d\xf8\x9f\x07\x72\xa3\xed\xe9\x90\xf2\x08\x76\xa8\x5b\xca\x5f\x73\xcf\x76\xf2\x1d\x2b\xfb\xba\xaa\xfe\x19\x36\x87\xbd\x26\x89\xf6\x48\x9e\x56\x78\xe5\xed\x08\x95\xba\xda\x72\x5c\x7f\xc5\x36\x48\x9a\x90\xe7\x77\x73\x66\x7e\xfd\x2c\x38\xf0\xd9\xc7\x5e\x66\x12\xf8\xe6\xcd\x49\x68\x9a\x17\xbd\xee\x36\xfb\x34\x54\x9a\x68\x14\x6b\x67\xd4\xa6\xdd\x5a\x4b\xd6\x4a\x63\x19\x49\x65\x58\xd6\xc8\x6b\xef\x66\x82\x5a\x7f\x38\x98\x60\x75\x2d\x36\x44\xa8\x05\x64\xfa\x11\xc4\x94\x39\x71\x8a\x02\x6f\x1c\xf3\x7b\xc5\x50\xc8\xa5\x22\xb4\x96\xc2\x7a\xf3\x67\xa2\x25\x2d\xa3\x95\x55\x75\x8d\x9a\x6b\x4a\xd7\x77\xb0\x4c\x26\x06\x07\xc7\x34\x3e\x21\xe7\x6c\xd5\x32\xad\xcf\x57\x63\x37\xc3\x46\x10\x7d\xf6\xb1\xb6\x0b\x64\xa9\xd8\x8c\x83\xa6\x8c\xd4\x46\x03\x51\xd4\x84\x36\xdb\xa5\x68\xd9\xa8\xec\xe1\xef\x48\x85\xd8\x74\x48\xbc\x5e\x4f\x6a\x3e\x25\x99\xac\x63\x49\x9b\x7c\x4a\x6d\x57\x15\xe7\xdc\x2f\x11\x23\x77\x5d\xd2\x1c\x95\x81\xc1\xde\x33\x55\x25\xbb\x4c\x49\xda\x8c\xbb\xba\xb8\x89\x1f\xfb\x77\x19\x6e\x5a\x26\xd7\xb5\x75\x65\x40\xf0\x2f\x30\x49\xe5\x95\x0a\x5f\xb7\x0d\xab\xba\xc3\x3b\x06\x64\xca\x5f\x4f\xd0\xae\x90\x10\xab\x80\xac\x46\xdb\xf9\x7a\x69\x32\x47\x81\xe1\x6a\x2e\x68\x42\x93\x52\xc8\xd8\xca\xd4\x9f\xa1\x41\xec\x14\xec\xc8\x23\xf2\xb7\xbf\xd9\xaf\x9e\x43\x82\xb1\x53\xc2\xab\x42\x64\x6f\x64\x72\xc6\xca\x47\xac\xaa\xa4\x33\xd4\x8c\xc4\x9b\xa9\x68\x5b\x36\x4d\xec\xd2\xd2\x1e\xf3\x36\x0b\x47\xa7\x85\x9f\xdd\x8e\xdd\xb2\x76\x0b\x9b\x8d\x6c\x16\x82\x88\x4d\x23\xfd\xdc\x76\xa8\x78\x4b\xf4\xbc\x34\x66\xef\x18\xf1\x0a\x7a\x38\x6d\xe8\x9c\x99\xef\xaf\x2e\x6e\xae\x1f\x91\x1d\xb7\x53\x1d\x3a\xe3\x02\xf7\x1e\xf7\x31\x6f\x78\xaf\x75\x1e\x04\x41\xba\x5a\x06\xcd\x4c\xb4\x4b\x74\x30\x6b\xe6\xf5\x7b\x5c\x5d\xdc\xc4\x64\xd8\xae\x98\x71\x65\xd8\x2c\x5e\x97\xe7\x91\x3f\x29\xae\xa6\x22\x36\x0d\xab\x34\x99\xf4\xbe\xc0\x4e\x63\x92\x0f\x0d\x8c\xcb\xa5\x64\xb3\xaf\x3a\x78\x5a\x76\xfe\x54\x2a\x81\x6e\xdc\xb6\x94\xd4\x5c\x42\x9e\x3f\x28\xb9\xb9\x5d\x31\xe9\x15\x42\x68\xd9\x94\xf1\x5b\x06\xab\xc4\x56\x6a\x77\x72\x98\x6b\x9b\x81\xe6\xea\xe2\xe6\x46\x03\x83\x82\x15\x78\x77\x9a\xab\x90\x81\x47\xaf\xe9\x03\x1d\xa2\xe6\xa7\x71\x24\x59\xd8\xfa\xad\x7f\x21\xfb\x2e\x57\x34\xde\x1d\x8c\x7e\xb7\x7e\x9a\x6c\x16\x4c\x4b\x7d\x22\x5a\x70\xab\x47\xa9\x49\xf4\x82\x03\x35\xb0\x30\x11\xde\xcb\x64\x6a\xb2\x91\x33\xef\x7b\x53\x13\x89\x36\xa6\xaf\x96\xcb\x08\xce\x08\x96\xbf\xac\xa5\x72\xf9\xa2\xda\x35\xd3\xa0\x4d\xc0\x6d\x3f\xd1\xb9\x8c\x69\x3e\x54\xee\xaa\xfa\x08\xc9\x98\x86\x0e\xc0\xd0\xa7\xa7\xc1\x7d\x76\x4f\x02\xab\x98\xa8\xd9\x60\x80\x19\xad\x65\x36\x2c\x29\xbc\x24\xa0\x4b\x5b\x32\x11\x78\x14\xc4\x41\xd5\xdd\x70\x25\x94\x2c\xb1\xda\xb7\xac\x99\x63\x50\xd3\x65\x13\xcb\x56\x3f\x68\xc4\x6d\x87\x51\x0d\x3d\x0a\x18\xfe\x8b\x05\x2c\x84\xfe\x10\xb5\xa8\x5a\xba\x21\x2d\x5b\x8a\x5b\xf0\x45\x59\xf1\x67\xea\xca\xb2\x40\x4b\x6a\x2a\x82\xed\x8a\x93\x2f\xdb\x25\x76\xac\x9d\xce\x01\xbc\x7e\xb0\xe5\x04\x11\xb3\x2a\x87\x4f\x61\xd0\xd6\x5a\x1d\x5f\x67\x73\xa6\xc2\xfd\xa0\xfe\xab\x2b\x33\x6c\x51\x4b\x58\x2f\x01\xf0\x83\x69\x89\x2b\x6b\xfb\x0d\xfd\xb9\x75\xd5\xbb\xf3\x92\x3c\x55\x55\x5e\xe0\x41\xde\xcc\xd0\x3b\x3b\x5d\xb0\xe9\x7b\xc8\x57\x97\x16\x4f\x82\x6b\x93\x99\xb2\x21\xd6\xa8\x02\x5c\x5d\xdc\x78\x18\xf4\x99\x18\x81\xe6\x30\x36\xfc\xee\xf4\x82\xd8\xb2\xe8\x02\x8d\x8a\x11\xed\xcd\x4c\xe5\xa4\x47\x38\x9c\xc5\x6d\xec\x65\xe1\xc4\xb9\x25\x91\x46\x31\x69\xde\xc0\xea\xa3\xd5\x38\xcb\x32\x65\x42\x1e\x5c\xdb\x2f\x9f\xc6\x32\x00\x19\x09\x23\x7f\x0f\xa2\x56\x82\x7e\x78\xed\x9a\x0a\xb0\x98\x8e\xe0\x40\xb5\x9c\x03\xca\x2b\xe0\x08\xe5\x51\xd1\x74\x74\xa8\xb6\xcf\x47\xb4\xaa\x5a\x26\x33\x17\x57\x9e\x24\x75\x0c\x8b\x90\x0a\x82\x22\xfc\x2d\x53\xc2\xd4\xe2\xe4\xe0\x49\xb2\x5c\xd7\x8a\xaf\x6a\xb3\x45\xe4\x43\x94\x22\xe5\x95\x1c\x93\xb3\x86\xd0\xb6\xa5\xa0\x60\x69\x13\x48\x09\x37\xe8\x2e\xe7\x41\xba\x8d\x7d\xe5\x2f\x73\xd6\x9a\xc2\x41\x25\x47\x47\xcf\x27\xa4\xed\xb2\x5c\xb5\x7c\x3f\xf9\x10\x10\x79\x08\x74\x78\x8b\xe2\xe1\xdd\xa1\xe2\xdf\x7f\xb3\xa3\x8d\xef\xf8\xa8\x0a\x1a\x6b\xdd\x12\xc6\x3e\xb0\x40\xa8\x36\x9b\x14\x6b\xf1\x0a\xa9\x15\xeb\xf9\xc2\x58\x4b\xc8\x07\xee\xb4\x00\x46\xd8\xb5\x17\xf5\xd9\xc9\xe1\x78\xd7\xfd\x53\x19\x11\x21\x98\x16\x13\x35\x39\xe0\x73\x32\x96\x57\x47\xbb\x25\x47\x69\xb7\xc8\xc2\x76\x89\x10\x2a\x6c\x1c\xeb\x0c\x50\xf4\x3d\x78\x42\x8c\x4c\xd0\xf4\xa1\x55\xe5\x9f\x8c\x1d\x28\xdf\xc3\xd7\xb7\x61\x70\xbf\x18\x02\x28\x5b\x0c\x1f\x8e\x41\x33\x6c\xaf\xbe\xd4\xe3\x79\x89\x88\x5b\x38\x9a\x32\x09\xb6\x5f\x1a\xaf\x89\x87\x00\x0a\x58\x90\x03\x9e\x6e\x84\x66\xdc\x7b\x46\xe4\xba\x4d\x6c\x68\xae\xac\x7b\xc6\x58\x9d\xe9\x15\x64\x20\xba\xed\x10\x8f\xa1\x9c\x78\xf6\xae\xd4\x1d\xe3\x69\xd8\x09\x26\x37\x87\x3a\x00\x28\x66\xb3\x6f\x99\xac\x27\xd2\xe8\x02\x26\xb6\x29\x5d\x27\x0b\x51\xd4\xd5\x4d\xfe\x68\x79\xcb\xab\x77\x9d\xbc\x8d\xc7\xfa\xae\xa9\xb7\x26\xd3\xb4\x63\x1e\xcc\x07\x6d\x52\xd7\x16\xf6\x8f\x26\x1b\xf8\x87\xd0\x74\xd0\xaa\xf3\x13\x99\x8d\xff\xe2\xb3\xdc\x01\x62\xae\xa8\x33\x3b\x0f\x90\xb1\x8e\x19\x7d\x1c\xe9\x83\x48\x89\xc2\x31\xe4\xf7\x4c\xb7\x99\xc9\x65\x8d\xe5\xf4\x40\x26\x89\xba\x8a\xf5\xab\x81\x51\xe2\x42\x5f\x83\x49\x99\xed\x08\xdb\x77\x52\x9d\x47\xbb\x2e\xad\xea\x4c\x4d\xc9\x6d\x74\xc9\xc4\xee\x77\x43\x78\x49\x18\x9d\x2e\xec\x09\xc1\x2a\xb4\xe3\xd1\x9d\xc7\x65\x6e\x25\x1e\xc2\xa9\x95\xee\x2a\xb8\xec\xf7\x4e\x44\xeb\x18\x8c\xf6\x7a\xc2\x83\xf0\x66\xca\xf0\xb5\x1c\xcd\x99\xba\x3c\x97\x7b\x0a\x71\xe8\x9a\xc8\x0e\x9f\x38\x48\x9b\xf8\xf6\x59\x8b\xf1\xf7\x0c\x2e\x26\x0a\x2f\xb6\x4c\x56\xca\x58\x7a\x1b\x24\xb3\xf2\xfb\x3d\xdb\xee\x14\xe0\x29\x67\x15\x36\x8a\xe5\xa3\x48\xb8\x87\x5c\xa4\xf5\x4d\xc7\x3d\xc8\x9e\xbc\x42\xa9\x4d\xaa\x75\x8b\xc1\xd9\x5c\x1b\x8e\x53\x61\x1f\x01\xe8\x3e\x32\xb4\x4c\x5c\x5d\x05\x8c\x2c\xa4\xca\x75\xde\xa9\x1a\x60\x2c\x1e\x72\x91\x86\xec\x79\x31\x8f\x1d\x94\x31\xf9\xfe\x82\x7f\xf8\xfc\x37\x19\x9e\xf9\x48\xaa\x30\xaf\xf6\x50\x81\x35\xbe\x77\x56\x7f\xad\xbd\xaa\xc5\xce\xd5\xc5\x0d\xd2\xa1\x1a\x7e\xd2\x9d\x23\x6b\xb5\x28\xd3\xab\xf4\x56\x36\x61\x98\x15\x95\xd2\xb7\xee\x50\xa2\xd7\x68\xba\xa4\x61\x80\xc4\x06\xaf\x98\x70\x30\x08\x71\x33\xa1\x25\xdc\x96\x32\x9d\xd0\xe9\xfb\x3b\x9c\x04\x91\xd9\xa4\x71\xd0\x46\x5a\x33\x53\xdd\xd6\xf0\x17\xdd\xfe\x2b\x9a\xd4\x21\x12\xf2\x5b\x8f\xc1\x7d\xc9\x62\x58\x5d\x96\x79\xdd\x07\xa5\x0f\x6a\x14\x1e\x32\xab\x02\xc2\x96\x40\x41\x61\x63\x6b\xcd\x73\x60\x56\xdd\x6d\x2b\x38\xe4\x43\xfd\x78\xaf\x2d\xd1\xa7\xac\xe2\x86\x5f\xb0\xe5\x41\x4a\xa9\xab\x60\xec\xce\xc5\xdc\x22\xf9\x3d\x4a\x5e\xd6\x75\xd3\x23\x72\x94\xd2\x12\x0d\xe4\xbd\x69\x17\x86\xb5\x46\xfc\x83\x6d\xf4\x59\xe5\x8a\xa2\x4e\xd6\x92\x37\xfa\x94\xaf\xc5\x9c\x4f\x09\x6d\xa1\x0c\x94\x01\xc6\x6a\x3e\xe7\x13\x5e\x73\x95\x44\x33\xf7\xae\x05\x76\xf7\xaf\x57\xfe\x2d\x86\x0e\x16\x43\xaf\xb3\x62\x28\x5c\xd1\x2e\x8a\x53\x2d\x18\xf8\x34\xf5\xce\x4b\x84\x8d\x1f\xad\xaa\x7f\x74\xa1\x7c\xce\xcf\x7f\x2f\x7d\xb5\xc4\x65\xa1\x9c\xba\x87\x4c\xfa\x3e\xd8\x03\x39\xa9\x74\x88\xec\x41\xfc\x8c\xf4\x41\xdd\x79\x4b\x68\xcb\x0c\xbb\xd7\xc9\x03\xd2\xdd\x72\xe7\x7b\xcb\xf0\xbe\x65\x7e\x98\x9c\xb1\x58\xdd\x4d\xd4\x78\x3b\x2e\xde\x01\x25\xc1\x62\x16\xc0\x5e\x20\x9b\x3f\xa5\xf5\x56\xe0\x46\xe0\xb2\x70\x35\xe1\xa1\xdb\xf5\xf0\x68\x19\xf9\x1c\x0f\xf0\xea\x68\xf1\xe4\x97\x5c\xc2\xbb\x74\x50\x67\x4d\xb9\x9b\x5e\x61\xb1\xcf\x9a\x85\x53\xef\x5f\x36\x14\x3c\x3e\x83\xef\x1b\xde\x11\x6d\x8b\x5c\x8c\x47\xf0\xdb\x21\x01\x1e\x91\x18\xd8\x3b\xc8\x63\x17\x33\x1d\x2e\x98\xc9\x3d\x85\x33\xc9\x09\x68\xb3\x40\x3d\x32\x7a\xea\xb9\xee\xdc\x8b\xf2\xf0\x31\x79\x34\x75\x33\xbd\x6f\xd0\x82\x76\x3e\x28\x34\xa1\x17\xac\x65\x2e\x12\x7e\x55\x53\x35\x13\xed\x52\x92\x4a\xc0\xa8\x0b\x7a\xcb\xf0\x8c\xad\x58\x2b\x95\xde\xae\x66\x01\x9e\xba\x24\x26\x00\x07\x4e\x62\xc9\xcc\xf3\x4b\xb9\xe0\x2b\x32\x5d\xd0\x66\x9e\xd6\xe9\x81\xdb\xbd\x8d\xef\x37\x15\x6b\x05\x29\x0e\xda\x96\xc9\x95\x68\xa0\xb8\x86\xb5\xa8\x96\x8c\x9a\x02\xe6\x68\x68\x92\xbf\xae\x99\x04\xf5\x6b\x41\x21\x98\x03\x9f\x7b\x1a\x5b\x3b\x6f\xa8\x07\x8e\xe3\x43\x5c\xc6\x06\x5d\xbb\x06\x0b\x78\x1b\xe3\x27\x97\xb0\x6f\x0a\x33\xf7\x0c\x04\xb2\x0c\x27\xbb\xc7\xc8\xab\x17\xdb\xcb\x73\x27\xb3\x92\x7e\x81\x3d\xb6\x97\x48\x43\x43\xb6\x7b\x11\x91\xb3\x8c\xf5\x02\x53\x17\x3e\xb0\xcb\x54\xf7\xaf\x0b\xc1\x46\xee\x04\xc5\x5e\x17\x86\xda\xd4\x2d\x9d\x6c\xf6\xce\xc5\x7a\xa8\x09\x35\xdf\x05\x31\x16\xf0\x94\xc3\x55\x5d\x29\xdf\x5c\x05\xef\x38\xf0\x32\x0d\x6e\x8b\x5b\x46\x2b\xc2\x55\xe0\xdc\xea\x93\xc6\x99\x4b\x35\x8d\xc3\xdc\xb8\xca\x3a\xc4\x66\x62\x67\x2c\x7c\xe6\xa1\x46\x78\x47\xe7\xf7\xba\x12\x90\xfd\x5f\x1f\x39\xa2\xa9\xb7\xfe\x63\x66\x33\x1d\x78\x2e\x4f\xab\x28\x0a\xf0\xea\xe2\xe6\xd8\x87\xa3\x39\x11\xee\xc6\x31\xf3\x44\x98\x66\x68\x44\x5e\xd7\x8c\x4a\x88\xdc\x0e\x62\x81\xa2\x20\x60\x18\xc7\x0a\x1f\xdd\x6f\x97\x73\x34\x7a\x27\xa2\xb5\x9f\x3f\x91\x30\xbe\x28\xaf\xf8\xc5\x21\x47\x86\x8f\x3e\x49\x55\xad\x5e\x3e\x72\xd1\x3b\xfb\xb1\xd2\xbe\x8c\x83\xa9\x83\x9a\x2a\x7c\x0f\x04\x67\x02\x0f\x2b\x81\xdd\xe8\x93\x5f\xf7\xc3\x97\x13\x78\xef\xea\x98\x2f\x88\x91\x0d\x0b\x0f\x06\x8b\x27\x5a\x58\x3b\xb3\xb4\x92\x41\x15\x43\xfd\xed\xeb\x2e\x91\x51\x94\x24\x42\xeb\xb4\xdb\x48\x0a\xb8\xc7\x0d\xf8\x16\x4d\xb4\x66\x64\x73\x0d\x45\x4d\xe5\x22\x21\x99\x9f\x2d\x29\x76\xd1\x84\x2f\xc8\xb3\x2c\xf0\xf7\xdc\x3e\x3d\xec\xb7\x6f\x7c\x9b\x2f\xb4\x3a\xc6\xe5\xd5\x11\xf8\xcc\xa1\x47\x8e\xeb\x7a\x46\xfe\x23\x67\x9b\x37\x98\xd3\xa2\x8d\xc6\xff\xc9\xff\x6d\x64\xff\x91\x6c\x00\x53\x60\x0d\x6f\xa7\x33\xdb\xa0\x27\xef\x59\x0c\xca\x9b\x22\x5c\x8a\xcb\x22\x12\x85\xe3\x85\x94\xb2\x07\x92\x20\xa6\xed\xe9\xc3\x7c\x2c\xb8\xf8\xc5\xe9\xd3\x9a\xdd\xb2\xda\x85\x05\x9a\x48\xcd\xee\x6d\xc9\x03\x62\x60\xe1\x65\x63\x42\xc2\xb8\xdd\xe3\x34\xcc\xc5\xb8\xd0\x8d\x40\xb1\xb0\x28\xc6\xf3\x69\xd9\x20\xc3\x37\x93\x5e\xf0\x9e\x55\x9e\x6d\xa7\xef\x80\xe9\xb5\x4c\x01\xe5\x2b\xf0\xd4\xbb\xce\xa6\xd3\x71\x67\x76\xd0\x09\x5c\x39\xdb\xb0\x33\x0b\xcd\x8f\x92\x6d\x69\x23\x29\x5e\xa7\xd9\xd1\x1e\xc5\x4c\x5d\x0e\xb7\x09\xc2\x62\x0e\xb9\x7c\xe5\x33\x62\xfa\x92\xc7\xbd\x51\x53\x56\xc9\x37\xc1\x74\x56\xb9\x72\xe1\x67\x83\x38\x7e\x99\xe4\x42\x9d\xad\x71\x12\x5c\xd2\x86\x5c\x3b\x67\xea\xac\xae\x31\x8d\x86\x3b\x37\xea\x9a\xd8\x77\xd8\x48\x2e\x3c\x45\x7d\x42\x05\x22\xca\x53\xb1\xc2\xbe\x70\xa4\xc0\xda\x41\x5d\x53\xf3\x96\x39\xa1\xb4\xaf\x60\x59\x6c\x40\xcb\xd2\xff\xf2\x75\xac\xe8\xc5\x97\x7b\xe5\x3e\x82\xbc\x6b\x32\x9d\x9b\x9f\x69\x2e\x99\x9f\x7b\x85\x10\x9f\x26\xb4\xd3\x17\x5c\xb6\x89\x6e\xde\xa5\xe4\x03\x5d\x1c\x70\xf7\xa0\x87\x4b\x32\x61\x58\x7a\x91\xb6\xd3\x85\x99\x7b\x86\x86\x37\x21\x3e\x84\xda\x74\x3d\x4a\xd8\x7f\xd9\xc7\x13\x36\x9d\x50\x2f\x19\xb3\x29\xf6\xdc\x6b\xd5\xf8\x49\xc3\xf3\x94\xc6\xae\xf6\x75\x90\x46\xe0\xf9\x28\x48\x4b\x58\xa4\xb5\x29\x39\xe0\x47\x7b\xf4\x90\xdb\x02\x29\x7c\xdc\x62\xc0\x31\xed\x72\xda\xf9\x88\x94\x3b\x7f\xf3\x61\x1c\x54\x99\x19\x60\xf8\xb0\x9d\xa5\xd0\xea\x8c\x17\x55\x5f\xf8\xd4\xfc\x3d\x23\x83\x57\x6c\xb9\xd2\x4a\xcd\xef\x5b\xfe\xe3\x8f\x35\x67\x72\xf0\x11\x58\x23\x18\xd7\x60\x7e\x63\x5f\x32\xa3\x69\xa9\xdb\x3b\xdd\x61\x17\x33\x61\x3f\x9f\xa5\xbe\x3b\x94\x81\xe2\x02\x12\xf6\xb1\x98\xc1\x2e\xca\x30\xf5\x3c\x8a\x87\x16\xcd\x13\xb8\xe2\x9a\x32\x08\x71\xbe\x65\xad\xbb\xad\x36\x0a\x99\x68\x0d\x96\x70\x47\x7d\x4b\x6b\x2f\x0d\xae\xd1\x04\x56\x3b\xf2\x5b\xe4\x75\x1a\xfd\xa3\xe3\xd8\xb7\x30\xc6\xbb\xb2\xe0\xb4\xa7\x7b\xc0\xd5\xd7\x46\xfd\xf4\x39\x19\x9f\x2e\x59\x75\xb9\xbb\xb3\xb0\x79\x14\xc2\x45\x84\xf2\xb7\x01\xc7\x8f\x7a\xd8\xc6\x7b\x6d\xd8\x71\x8d\x7b\x6d\x78\x90\x3c\xf9\xdf\x35\x6b\xb7\x16\x7f\x7c\x49\x66\x25\x72\x27\x04\xbb\x94\x50\x1c\x42\xd4\xf1\x42\x87\x4e\xc4\xda\x25\x72\xc8\x9e\x8c\x1d\x69\x92\xb7\xf0\xfe\xb8\xcf\xc3\xd3\x2f\xf7\x24\xfc\x34\x17\x5a\x50\x54\xb8\xbc\x1f\xfd\x71\x82\x22\xe7\x99\x43\xce\xe4\x60\x0c\x96\x11\x9e\xb4\xfd\xdf\x5f\xc6\x5c\xfa\x90\x62\xe0\x7c\x98\x6a\xd2\x2d\xc9\xc1\x3b\x13\x6d\xa6\xcc\x7e\x8c\x8e\x60\x63\x9d\xd9\xc5\xc4\x4c\xc2\x59\xf2\x9b\x97\xe1\xfe\x02\x98\xd7\xe6\x7b\x2f\xc1\xdf\x71\x11\x62\x54\x35\x94\xe8\xe9\x70\xcf\x9a\x84\x49\xa8\xdd\xaa\xe0\x3f\x7e\x89\x55\x91\xdd\xa3\xf8\x78\x5d\x2e\xcf\xe5\x8b\x6d\xb2\x37\x9c\x9b\x2c\x59\x17\xe2\x56\x38\x73\x5c\x1e\xbc\x3e\x57\xa5\x2c\x39\x07\xae\xd1\x59\xc6\xcd\xe7\x01\xe3\x33\x6d\x70\xd8\xa2\xe4\xa2\x05\x89\xc3\x67\x36\xab\x46\x8f\x84\x73\xe4\x19\x46\x39\x5e\xad\x17\xf0\xb3\x5f\xbf\xf3\x57\xf0\x96\xb6\xb8\x4c\xb2\xfb\x9d\x9c\x92\xb7\xef\x02\x7f\x4d\x7c\x09\x64\xa5\xb1\x5d\x38\x53\x91\xdb\x1e\xf4\x4e\x5c\x39\x18\xfa\x4b\xeb\x19\xe1\xe9\xc2\x1b\x85\x38\xb5\xaa\x6d\x86\xdc\xd3\x53\xdb\x1d\x73\x7f\x67\x6f\x01\xcc\xb3\x37\x9b\x7b\x77\x26\xd6\x4d\x75\xec\x5e\x73\x00\x95\x93\x6e\x38\x77\x93\x63\x73\x68\xc7\xf0\xc4\xb2\xfd\x94\xfc\xb7\xe1\xa0\xb8\x17\xfc\x71\xfd\x23\x61\xf7\x76\xb9\x32\xb8\x67\xd4\x0a\x83\x29\x3e\xe7\xd0\x04\x79\x76\x87\x33\x08\x81\xe4\x95\x61\x79\xd9\xf8\xb9\x79\x20\x80\xc4\xbc\x92\x02\x35\x30\xe7\x8a\xee\x04\xdf\x47\x14\x68\xfe\x66\xb1\x98\xec\x54\x06\x71\x36\x89\x0c\xcb\xed\x81\x87\x93\x62\x9d\x04\x03\x83\x32\xa2\x33\x97\xdf\xd8\x34\x1e\x8a\xb7\xac\x0a\x3c\x9f\xa2\x66\xd4\x84\x0d\xda\x5c\x36\x70\x3b\x49\x35\xc1\x4e\x30\xef\xa4\x58\x4e\x44\x51\xf3\x1f\xc2\xa3\xdd\x0d\x97\x0c\x32\x28\x36\x26\x2a\xd0\x3c\x81\x3e\x22\xf0\xb0\x0d\xc6\x1d\x15\x61\x5c\xce\xbc\x2e\x5e\x8f\x63\x2d\x8e\xa4\x42\x4b\x64\x09\x41\x18\x1d\x03\x1c\x17\xc1\x4d\xd6\xdd\xc3\xe1\x29\x6d\xbc\x17\xbc\x13\x66\xf3\xd9\x04\x7e\xd9\x87\x64\xa3\x00\x93\x07\x33\x7c\x5f\x98\x85\x32\x6b\xe4\xdd\x2b\xa5\x54\x33\x4f\xe9\xb2\xd2\x3a\xe6\x85\x61\x7f\x62\x0b\x1c\x38\x62\x5a\x2f\xcc\xdb\x8e\x28\x15\x55\x6b\x19\xe4\xfe\xf3\x72\x7d\x05\xe7\x4a\x6c\xb2\x48\xa6\x4c\xea\x7b\x5b\x7d\x29\xab\xab\x96\xbc\xb1\xd0\x59\xf7\xb2\x13\x3a\x4a\x72\xf9\xed\x61\xc1\x70\x79\xcd\x14\xbe\xb3\xd9\x7f\x77\xe4\x16\xdc\x3d\xb3\x19\x69\xa6\xe6\xea\x89\xfd\x3b\xcb\xad\x36\x51\x67\x86\x4d\xa1\x06\x01\x64\x98\xca\x33\x7a\xcc\xe3\xb8\x4b\x22\xfe\x7e\x6d\xdc\x4b\xb8\x0a\x36\x90\xe9\x17\xd0\x05\xcb\xec\x0a\x6a\x86\x25\x4a\x89\x53\xfd\xf7\x96\x76\x5d\x12\x91\x9a\xe1\xcc\x07\x17\xa7\xde\x35\x6d\x70\x6e\x65\x0a\xf1\xf9\x07\x3e\x26\x86\xf2\x73\x0e\x84\x2e\xbe\x1d\x6e\x14\x7f\x09\x29\x99\xb2\x56\x2f\x9b\xdd\xe8\xff\x28\x12\x0b\x6a\x6f\x08\x45\xeb\x94\x1a\xc9\xb8\x91\x03\x34\x98\xbf\x9b\x78\x49\xfb\xec\x29\x8a\x58\x94\x6a\x59\x93\xe2\x4d\x6e\x01\x97\x61\x1a\xb4\xbf\xa7\x84\xc3\x3b\xc0\x57\x80\xc8\x6b\xd6\x42\x0a\xdf\x3b\x49\xbb\x79\x2e\x25\x95\xaf\x7f\xed\x95\x03\x2a\xcf\x82\xbd\xa9\xa8\xba\x2e\xee\xc1\xa8\x5d\x89\x6e\x48\x78\x5c\xa2\x69\xe7\x51\x33\x73\xef\x90\x56\xe4\x28\x26\x75\xca\x2e\x78\x3e\x0f\x0d\xa6\xb6\xff\xd8\x49\x68\xee\x92\x80\x26\xe6\x8b\x28\xf7\x4c\x1f\x15\xe0\x7f\xf9\x2b\x0d\x3f\x25\x52\xec\xf8\x97\xde\x6f\xdd\xf5\x46\x42\xb4\x20\x1b\xcd\x9e\xf7\x1e\x3e\xe8\xbb\xdd\x7e\x78\x88\x0f\x8f\xc6\xe4\x93\xb7\xdd\x17\xef\xfe\x79\x57\xb9\xfb\xbb\xff\x42\xc7\x2f\x4b\x76\x79\x1e\x7a\x93\xe2\xb4\x59\x84\x35\xca\x46\x2d\x17\x8e\x95\x24\x5d\x9c\x77\xba\xf8\xa2\xe2\xd0\xf3\x21\x9f\xc2\xab\x9c\xee\xc2\x9f\xd4\x30\x97\xa8\x0d\x52\x8c\x76\x40\xff\x55\xf8\xe0\xad\x4f\x8b\x77\x8f\xfb\xf9\x01\xca\xd4\xed\x60\x09\xe7\xd3\xba\xba\xb8\x39\x58\xee\x77\xcc\x81\x6f\xff\x0f\x76\x22\x1e\x84\xce\x3e\xdc\x82\x95\xf9\xfe\x44\xe2\x53\xc1\x5b\xe3\x7f\x86\xa3\xc1\xea\x1b\x7e\x95\xb9\xd3\x3b\x9c\x14\x05\x4d\xe4\x10\x1e\x3c\x44\x1d\x81\x38\x36\xcc\x6f\x0f\x01\x47\xc8\x94\x2b\xcc\x75\x05\x79\xad\xfd\x09\xb9\x20\xdb\x52\xbe\x3e\x42\x9b\x2a\x52\x33\x90\x81\x8c\x52\x97\x26\xd1\xc8\xf0\x21\x8a\x13\xfb\x35\xbe\x5b\xfd\xe0\x40\xf0\xe6\x0e\x78\xf5\x72\xeb\x55\x04\x2e\x9b\xd3\xf6\x1f\x95\x2f\x0b\x0c\x14\x93\x30\x62\x8b\x98\x8e\x99\x14\x58\x26\xee\x11\x2c\x9c\x7d\x32\xcb\x66\xd4\x48\x23\x61\xb2\x87\x86\xdf\x2e\xde\x58\x8e\x45\x8a\xad\xfd\x44\x89\xe5\x56\xe5\x04\x8a\x51\xf6\xa9\x7c\x5e\xd2\xbd\xb3\x31\xee\x95\x75\x5b\x43\xb3\x9e\xde\xc7\xa7\xe4\xd9\x98\x0c\xae\xc2\xc4\x91\xe0\x6f\x9e\x9a\x94\x26\xe6\x91\x68\x29\x9d\x19\xb1\x2f\x2e\x8a\x02\x29\x72\x8c\x43\x63\x53\x29\x3f\x70\xe3\xbb\x1f\x97\x5d\xa1\xc4\xa4\xf0\x63\x10\x69\x96\x4d\x60\x16\x73\x54\x60\xfd\xbd\xa2\x2b\x7d\x6c\x75\x96\x1f\xad\xb5\x30\xda\x5a\xcb\xcf\x32\xd6\x5a\xea\x73\xac\x03\x15\x44\x76\xfe\xb0\x60\x8d\xc9\x16\x61\x8c\xa6\x88\x0f\x35\x17\x23\xc0\x63\xf2\x29\xb0\xb4\xf5\xf3\xd8\xb2\x42\x06\x52\x27\x69\x20\x40\x74\x49\x57\x36\xff\xd5\x7b\xb6\x3d\xd6\x76\xe8\x12\x53\x62\x61\x3c\x3f\x94\xfa\x6b\xe6\x44\xcc\x7c\x20\xd7\x18\x4a\xfa\xba\x0b\xe8\x4c\xf6\x9b\x47\x2c\x1b\x43\x67\xd8\x37\xb4\x36\xbb\x8e\x1e\x73\x21\x17\x86\x17\x13\x86\x8e\xde\x94\x31\xcd\x71\xd6\x90\x8c\xc2\x62\xcd\x44\xb1\x28\x86\x34\x0f\x43\xe1\xed\x91\xa6\x19\x6f\xe6\xa3\x7e\x9c\x97\xf1\xb9\x36\x26\x2e\xc7\x5b\x0e\x57\x63\xa5\x5a\x15\xc5\xa6\xa8\x4e\x92\x41\xcb\x00\xcf\x6f\x20\xf1\x9e\xe2\x4b\x46\x68\x90\x53\x96\x4b\x6b\xbd\x84\xc9\x70\xcd\x7d\x1f\x9f\x37\xc1\x33\x1f\x7b\x12\x85\xb9\x59\xd1\xfc\xa5\x98\xb7\xbc\x31\x79\x03\x31\x0d\x39\x2e\xf8\xa7\x3d\x44\xc0\x92\x14\xa1\x58\x4d\x25\xd5\xc9\x09\xf9\x23\x6d\x39\x04\x00\x4a\xfe\x23\x8b\x2a\x12\x27\x5a\x79\x92\x89\x2e\xa4\x7a\xa4\x08\x18\x9a\x7f\xf6\xeb\xb1\x07\xe9\xdf\x99\x7d\xff\x35\x32\xfb\xda\xfa\x22\x28\xca\xe3\x03\x3e\x68\x6e\xcb\xa7\x74\xb8\x9f\x7a\x13\x89\xce\x3b\x80\x6b\x8f\xbb\x28\xa3\x6e\xa9\xa6\x53\x16\x87\x12\x6e\xe5\x5c\xfc\xd1\x11\x96\x56\x7b\xf2\xb8\x21\xe8\x88\x95\x54\xdc\x8f\xae\xa0\xca\xbd\x27\xb6\x47\xcd\x93\xac\x8b\xcf\x45\x45\x83\xc0\x43\x28\x4f\xb4\xaa\xf4\x8b\x65\xa1\xf7\xbb\x1e\xe8\x02\xec\xe1\xe6\xfb\xba\x02\x49\x14\xcf\x99\x1c\x23\x6f\x01\x46\xe9\x55\x49\xea\x9a\xdd\x49\xf3\xe0\x14\xd8\xe3\xc2\x20\x74\x3f\x6b\x73\x29\x2b\x81\x94\x80\x27\x25\xd4\x54\xe7\xf7\x0a\xfe\xb6\xdc\x39\xe2\xf7\x58\xc9\x62\x2e\x7f\xa7\xd4\x24\x77\x4d\x25\x41\xd8\x93\xcb\xff\x70\x60\x7b\xd6\x2d\x40\x15\x0d\xd5\x8e\x65\x6e\x90\xfd\x38\x92\x5c\xc5\xab\x72\x1c\x2b\x85\x6e\x3d\xb2\x27\x42\x51\xf4\xf6\x71\x4c\xff\xdd\x45\xbe\x3e\x41\x6f\xae\x75\x8c\x4b\x08\xc4\xac\x77\x0f\x11\xfe\x66\x1e\x84\xc6\x4f\x90\xbc\x21\x43\xab\x90\xcf\xc8\x63\x14\xa7\xa5\xe9\x8c\xec\xad\xe3\xff\xb0\xed\x30\xc1\x25\x97\xc8\x70\x07\x3c\xbf\x9a\x78\x02\xef\xd8\x0a\xf1\x67\x99\x57\xc1\x66\x8b\xbb\x16\x3d\x66\x8b\x2f\x0d\x8a\xa8\xbc\x4d\x86\x7f\x57\x2a\xd7\x43\xab\xea\x46\xec\x2b\x24\x9c\xbe\x27\xc9\xa7\x65\xcb\xe0\x9e\xb2\xe2\xdf\x5b\xff\xa4\x67\xa7\x76\x0a\x2e\x54\x12\xee\x5d\xbd\x3b\x6d\xd8\x5f\x62\xa3\x06\x23\x98\x0c\x58\x3b\x2e\x36\xf3\xdc\x62\x31\xf4\x77\x82\xd3\xa3\x0e\xd8\x1d\xc9\x8e\xf4\x1e\xb3\x43\x5e\xe6\x46\x28\x32\xe3\x4d\xd5\x8f\xa6\x17\x67\xe9\x60\x3f\xce\x54\x62\x0c\x4b\xed\xdd\x79\xe6\x07\x4f\x53\x6b\x85\x3e\xa5\x7c\xcd\x32\x2f\x1e\xca\x2b\x4c\x26\x6b\x5e\x57\x50\xdb\xd8\x3c\x74\xf1\x6d\x55\x78\xae\x60\x32\x85\x75\x73\xcc\x49\x98\x25\x5d\xc5\x3c\xae\xe7\x95\x84\xe0\x66\xb9\xec\x4f\x71\xf9\x9b\x3f\x25\x4c\xfe\xa7\xd2\xb9\xd4\x5f\x66\x5c\x05\x55\xf8\x6d\x6e\x82\xb4\x3c\xbf\xab\x83\xef\x0d\x52\x2a\x86\xef\x13\xf6\xdf\xc5\x97\xfe\xe5\x8a\x2f\xe5\x3d\x9b\x8f\xf3\x8a\x7d\xa0\x9d\x98\xcb\x8f\x31\x19\xf8\x47\xb3\x95\x0e\xe6\x34\xb1\x0a\x20\x5a\x26\x8f\x7b\x4b\x0c\x16\xc6\xf4\x35\x98\x4c\xe9\xa4\x5c\x26\x63\xdf\x83\x51\xb1\xea\x46\x98\x57\xcb\x08\xfc\x63\xd5\x60\x2a\x57\x3d\x48\x26\x95\x29\x1d\xd0\x2b\x36\x0b\xed\x23\x33\xbb\x04\x35\xb5\xe9\x3f\xcd\xbb\x81\x4f\x4e\x1e\xe2\x91\xf1\x4b\x9b\x39\xea\x95\xb1\xc7\xff\xc8\xd9\x46\x3e\xc4\x00\x76\x84\x39\x53\x76\x10\x80\x9d\x7f\x11\x08\xb2\x1a\xab\x46\xd0\x5b\xca\x6b\x70\xe0\x39\x06\x0d\xb2\xed\x95\xcc\xe3\x60\x94\xa1\x75\x84\x75\xcf\x74\x9f\x1f\x8d\x09\x94\x79\xc8\xbc\x27\xc5\xf2\x0f\x01\x0d\x46\x57\x17\x37\xdd\xb3\x59\xbd\x66\x5f\x0d\x8f\x8e\xc9\xce\x86\x5c\x6a\xb6\x2b\xb5\x7d\x23\xb6\xb4\x56\x9c\xc9\xaf\x86\x47\xef\xa2\x5b\xa1\x16\x9f\xa1\xfb\xf3\xb0\xdf\xc9\x90\x0e\x4f\x64\x48\xb9\x9e\xd8\xed\x0c\xd0\x1c\x6d\x8e\xa1\x47\xf0\xa6\xf9\xac\xd9\x5e\x83\x8b\xd2\xf7\x27\x64\xea\xcf\x04\xa5\x67\xc8\xdf\xfe\x66\xbe\x78\xac\x95\x3b\x28\x23\x71\xa4\x7f\xeb\xc0\x0f\x6e\xfc\x32\x32\x80\xe8\x72\x2d\xe1\xce\xc5\x48\x64\xaf\x48\x06\x3e\xd4\x18\x44\x5b\x00\xb6\xcb\x86\xab\xe9\xc2\xc1\x8d\x90\x9a\x52\xc9\x76\xaf\x15\x2e\x6a\x5a\x17\xc7\x70\xc5\x8e\xae\xc3\xa4\x1f\xe0\xd5\x5d\x34\x8e\xc9\x89\xf9\xeb\x24\x2e\x2a\x73\x9c\xed\x8b\x17\xc3\xa6\x2b\xfe\x71\x50\x4f\x3f\x93\x39\x4c\xfe\x93\xee\x1b\xcd\x91\x3d\x5d\xbf\xe5\xcd\x7b\x2c\x6a\x72\x40\xd7\xec\xe3\xf8\x0b\x63\xf1\x8d\xc9\x50\x33\xe0\xc1\xa5\x29\x32\x0b\x71\xdf\x32\x15\xfe\xe7\xe7\xf4\xeb\xa3\x3b\xb0\x8e\xdb\xe6\x29\xf7\x68\x7b\x62\x42\x9b\x86\xb5\x97\x4b\x3a\x67\xe4\x34\x62\xa4\x57\xac\xe2\x05\xe6\x99\xf1\x9a\x8d\xa3\xe6\x7f\xb8\xb9\x79\x7d\xc1\x6b\x96\xef\xa1\x3f\xeb\xb6\x1e\x93\xc1\x42\xa9\x95\x1c\x9f\x9c\x34\x13\x6a\xe2\xd9\x46\x53\xb1\x3c\x91\x8a\x2a\x3e\x3d\xe1\xcb\xf9\x89\x12\xab\xa7\xfa\xfb\xa7\xb5\x98\x8b\xa7\x0b\xd1\xf2\x1f\xb5\x8e\x50\x3f\xdd\x2c\xb8\x62\x23\x79\x3b\x1f\x64\xc7\x28\xac\xfe\x52\xcf\xc3\xec\x69\xae\x67\x7a\x22\x6f\xe7\xff\xf9\x61\x59\xa7\x50\x52\x9a\x83\x59\xf8\xd7\x35\x6d\xd9\xff\x21\x22\xcd\xe8\x2d\x9f\x8a\xc6\xfe\xff\x97\xa5\xc8\x1e\x42\x07\x99\x2e\x3f\x47\x74\xb3\x0f\xae\x5e\x9c\x3d\xbd\x11\xab\xa7\x7a\xb3\x0c\xf2\x58\x56\x0c\x23\x52\x30\x6b\xda\xd5\x8b\x33\xbd\xb9\x08\xe4\x1a\xe1\x92\x6c\xc5\xba\x85\x74\x65\x98\x6e\x46\x6c\x1a\xad\x5e\xd5\xf5\x31\x5e\xdc\xb5\xb4\xd2\x72\x7a\xc6\xa7\x9c\xd6\xa4\xe2\x73\xae\x68\xed\xf2\xb0\x4d\x6a\xe6\x5e\xdd\x69\xc0\xba\xcb\x0f\x57\x2f\xce\x9e\x48\x32\xc7\x7b\x30\x65\x12\x43\xe8\x5f\xf4\xbf\x58\x2b\x0b\x68\xb2\x0f\x8a\xb5\x0d\xad\xbf\x7f\xf3\x6d\xbc\xda\xdf\x74\x3f\x0d\x0b\x4b\x3a\x28\x2c\x91\xc7\x73\x63\xff\x8f\x7c\x6b\x6f\x1b\x8f\xfd\x3f\x0a\xb0\x85\x26\x8a\x1c\xf7\x08\xb4\x81\xda\x70\xa5\x58\x3b\xd8\x6b\x4a\xa6\x31\xb0\x68\x37\xbd\xd2\xd4\x00\x7e\xc5\xe5\x54\xb4\xd5\x7e\xf0\x4d\x63\x80\xcf\x9b\x5b\xae\xd8\xbe\xc3\xf0\x46\x2a\x3a\x6f\xe9\x72\xbf\x81\x36\x9b\xcd\xc8\x75\x49\xa6\x93\x97\xd3\x7b\x6c\x99\x92\xa8\xf6\xb5\xac\x7c\xd5\x3b\x2d\x7e\x5a\x68\xb5\x7d\x63\x6a\x93\x8d\xc9\x4b\xba\xa2\x98\xe7\xf6\xcb\x4f\x7e\x0a\x8f\x2b\xdb\xe8\xe7\xaf\xc8\x69\x91\x2a\x73\xa6\xce\x30\x58\x69\x68\x8f\x2b\xc4\x64\x7b\x86\x29\xf5\xc0\xdc\xb7\x83\x70\x06\x39\xd7\x7b\x86\x1a\x86\xb3\x9a\x33\xf5\x26\x44\xf9\xb5\xd3\x17\x86\x47\x5e\x3d\x75\xff\x93\x95\x2a\x8e\x3e\x65\x71\xf9\xb6\xf8\x8b\xfe\xe4\xc0\x15\xe4\x52\x88\x8c\x25\x75\x44\xfb\x32\xa7\xd9\xcf\x74\xad\xc6\xe4\xd9\xe8\xd9\x7f\xed\x6e\x9a\xc8\x37\x9b\x49\x69\x49\xdb\xf7\x4c\xad\x6a\x3a\x65\x16\x81\xbc\x78\xb7\x9f\x3c\x67\xea\x4f\xea\xf0\x0b\xdb\xef\x11\x1b\x78\x1f\xeb\x2a\x63\xc9\xd9\x49\x42\x4e\x28\x5a\xf3\x1f\x69\xe0\x7f\xff\x38\xa3\xc2\xff\x12\x5b\x1a\x1c\x94\x06\x0b\xd6\x25\x27\xc6\x1c\x6b\x9d\x02\xaf\xed\xdd\xb8\x98\xfc\xb3\xf0\x67\x97\xe5\x23\x34\x97\xd1\xa0\xb6\x2f\xa5\xb3\x3f\xc5\x45\x0b\x9d\x75\x6d\x22\x86\x7c\xbb\xba\xb3\xbc\xe1\x21\x55\xf2\x13\xbc\xf5\xb9\x5e\xaf\x56\xf5\x16\x50\x0c\xdc\x65\x6b\x5b\x68\x3f\x4c\x4d\x15\x57\xd6\xc8\x86\x32\x62\xd1\x76\x5f\xd1\xce\xd7\xd5\xc1\x7a\x1a\x45\x63\xe2\x28\x5f\x80\xae\x42\xd5\x5e\x2e\x08\x25\x4e\xea\x6c\xdd\x3b\x9f\x4c\x46\xdf\x00\xc9\x40\x50\x19\x48\xc3\xd4\x63\x91\x6d\x6e\x27\xc8\xa5\x5c\x47\xa6\x44\x79\x16\xe1\xce\xa6\xaa\x6c\x03\x3d\xea\x36\x5c\xbc\x16\xe0\xc3\x83\x52\xb4\x07\xae\x42\x52\x30\x3f\x28\x93\xef\xb0\x36\xdb\x0c\x7e\xb4\xef\x4e\x7e\x7e\xf4\xff\x02\x00\x00\xff\xff\x9b\x69\xf4\xd3\x32\x2b\x01\x00" func topshotCdcBytes() ([]byte, error) { return bindataRead( @@ -133,7 +133,7 @@ func topshotCdc() (*asset, error) { } info := bindataFileInfo{name: "TopShot.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x2d, 0x14, 0xbf, 0xbe, 0xae, 0x12, 0x70, 0x99, 0xdf, 0x10, 0x43, 0xdb, 0xe, 0xb0, 0xe0, 0xe8, 0xc3, 0xb, 0x2f, 0x62, 0xbf, 0x16, 0xbb, 0x77, 0xe9, 0xd7, 0x28, 0x95, 0xd, 0xfb, 0x3a, 0xa6}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xee, 0x23, 0x12, 0x94, 0x86, 0x5e, 0xab, 0xbc, 0xe9, 0xf5, 0xfd, 0xb2, 0x37, 0x8c, 0xd6, 0xf9, 0xdf, 0x5f, 0x30, 0x14, 0xd9, 0xf6, 0x6c, 0xce, 0xcd, 0xd, 0x6a, 0x48, 0x6e, 0x8a, 0xed}} return a, nil } From 0e0f692fce4ba854825dff8d9d637a6c53be2698 Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 19:35:18 -0700 Subject: [PATCH 8/9] fix ci --- lib/go/contracts/internal/assets/assets.go | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 42666ea..52a7cbd 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // ../../../contracts/FastBreakV1.cdc (38.474kB) // ../../../contracts/Market.cdc (11.292kB) -// ../../../contracts/TopShot.cdc (76.594kB) +// ../../../contracts/TopShot.cdc (76.61kB) // ../../../contracts/TopShotLocking.cdc (6.697kB) // ../../../contracts/TopShotMarketV2.cdc (13.008kB) // ../../../contracts/TopShotMarketV3.cdc (15.791kB) @@ -117,7 +117,7 @@ func marketCdc() (*asset, error) { return a, nil } -var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\x77\x5b\xb7\x91\x38\xfe\xde\x9f\x02\xe6\x9e\x13\x53\x5d\x99\x72\x9a\x6e\xd2\xf2\x1f\xc5\x91\xad\xa8\xd5\x6e\xac\x78\x2d\xa5\x39\xff\xe3\xe3\xd3\x82\xbc\x20\x89\xfa\xf2\x82\xbd\x00\x45\x33\x69\xbe\xfb\xef\x60\x06\xc0\xc5\xe3\x25\x29\xc9\xe9\xf6\x81\x2f\x12\x8b\x04\x06\x83\xc1\x60\x30\x33\x18\xcc\x9c\xfc\xea\x11\x21\x84\x9c\x33\x39\x6d\xf9\x4a\x71\xd1\x8c\xc9\x4b\xd6\xa8\x96\xd6\xe4\x7a\x49\x5b\x45\x5e\x0a\xfd\xd7\x54\x91\x99\x68\xc9\xd5\x8b\x33\x72\x23\x56\xd7\x0b\xa1\x1e\x41\xc7\x9b\x05\x97\x44\x42\xc3\xa9\x6d\xa8\xff\x41\x79\x23\x89\x5a\x30\x32\x15\x2d\x23\xb3\x75\x33\xd5\xb0\x69\xcd\xd5\x56\x03\x82\xbe\x06\x18\xd1\xd0\x8e\xc9\xb4\x65\x54\xb1\x8a\x4c\xb6\xe4\x9c\xae\x56\xac\x25\xdf\xd2\x89\xb4\xa3\xb0\x0e\xfc\x92\x36\x74\xce\x10\x7a\x45\x15\x25\x54\x4a\x31\xe5\xd0\x79\xc3\xd5\x82\xd0\xba\x86\x1f\x57\x35\xdd\x4a\x42\x9b\x8a\x48\xa6\x24\x00\x52\x0b\xaa\x08\x6d\x19\x59\x4b\x56\x11\x2a\x89\x62\xcb\x55\x4d\x15\x93\x30\x3d\xdd\xeb\x95\x58\xb2\x46\x91\xab\x8b\x1b\x33\xf8\x0f\x0b\xd6\x10\x4a\x1a\xb6\x21\xaf\x6b\xba\x25\x1b\xda\x28\x49\x94\x20\x13\x46\x68\x55\xb1\x4a\xff\x5b\xf7\x6c\xd9\x54\xb4\x95\x3c\x26\xb4\x21\x67\xd5\x92\x37\x66\x4e\x38\xb4\x07\x41\xaa\x76\x3d\x55\x88\x8c\x26\x9f\x12\x2d\xab\x08\x6f\x00\x4a\x48\xcc\x91\x23\x40\xe3\x81\xa5\x16\x34\xc0\xbc\x66\x4a\x8e\xe0\xbf\xba\x9b\xe4\x52\x11\x31\x23\x94\xac\xd6\x93\x9a\x4f\xfd\xd1\x00\x96\x5b\x1e\xf3\x3b\x6f\x66\xa2\x5d\x52\xbd\x3e\x84\x4e\xc4\x5a\x11\xaa\x09\x76\x0c\x94\xa3\x64\xd5\xf2\x5b\x3d\x52\xcb\xa4\x58\xb7\x53\x24\x1d\x12\x53\x90\x25\x6f\x14\xe0\xb0\x04\xaa\x49\x32\xa1\x9a\xb0\x62\x36\xd3\x28\xe0\x02\xc0\x34\x17\xf4\x96\x91\x09\x63\x0d\xa9\x79\xf3\xbe\xa3\xd9\x35\xf3\xa6\x48\x28\x4c\xcf\x8d\xb4\xa0\xb8\xca\x2b\xb1\x61\xad\xee\x51\x09\x58\x5c\x31\x83\xaf\xf9\x72\x25\x5a\x45\x1b\x45\x28\x70\x17\xd2\x39\x4f\x46\xb3\x8a\x1a\xbe\x84\x15\xd4\xe0\xa6\x1a\x98\xe5\x4d\xa9\x7b\xe2\xcc\x0d\xab\xb0\x2d\xb6\x50\x0b\xc6\x5b\x32\x11\x6d\x2b\x36\xd7\x4c\xb9\x1e\x1a\xc4\x9c\x69\x72\xb5\x6c\xc6\x5a\xd6\x4c\x99\xa5\x0b\xc0\xb1\xa8\x74\x48\xe8\x65\x3c\xb6\x90\x9b\x78\x7c\x61\x30\x67\x8a\xac\x25\x6f\xe6\x48\x39\x07\xdb\xd0\xe9\x52\xb7\xe2\x7a\x12\xdb\xe3\xcc\x4c\x61\xd5\xb8\x92\xa4\x62\x33\xde\xb0\xca\x51\x53\xcf\x4f\x31\xdd\x04\xc0\xc0\x4e\x99\x6b\x26\x22\x8a\xd1\xe5\x46\xb4\xef\x8f\xc9\x5f\xd6\x52\x91\x9a\xbf\x67\x00\xf8\xb2\xa9\x38\x6d\x28\x79\x4d\xa7\xac\x95\x38\xd8\x1c\x39\x5a\xc1\xe6\xd5\x1d\x01\x98\x66\x37\x4d\x28\xbe\xb4\x58\x02\xb9\x2d\x53\xe8\x0d\xa7\x39\x85\x55\x66\xf2\xfa\x0b\xde\x70\xc5\x69\xcd\x7f\x74\xdb\xd6\x6c\xbd\x73\xbd\xa7\x0d\xd3\xd2\x06\x59\x4d\x77\x68\x99\x5a\xb7\x0d\x4a\x08\x8d\x0a\x40\x6c\x47\x19\x09\x41\x6b\x29\xcc\xfc\x25\xa1\xe4\xa5\xa8\x6b\x86\x2b\x66\x89\x31\x42\xc1\xc5\xb5\x78\x20\x62\xf2\x17\xe6\x6f\x10\x76\xcb\xda\xad\x15\x73\x5a\x10\x10\xb1\x69\x58\x4b\x36\xbc\xae\x71\xb3\x9a\x95\xe5\x2d\xa1\xd3\xa9\x58\x37\xca\xed\x07\x90\x4d\xe6\x37\xdd\x73\xea\xc6\xf6\x10\x5d\x52\xde\x38\xc9\x67\x41\x20\x78\x40\x1d\x36\x8b\x5e\x43\xb1\x69\xac\x3c\xea\x00\x19\x36\x57\xc0\x42\x6b\xc9\xf4\xb8\x0b\x51\x57\xae\x87\x25\x7b\xb7\xf1\x1a\xa1\xc8\x96\x29\xdc\x80\x92\x21\xf7\x53\xdd\xd9\xd2\xef\x4a\x28\x36\x26\x67\x30\x41\xbd\xdb\xa7\x0b\xda\xcc\x35\x0f\x76\xec\x09\xf8\xad\x68\xa3\x45\xc6\x4c\xd3\x8d\x37\xb7\xb4\xe6\x15\xa1\xed\x7c\x0d\x38\x72\x44\x6d\xd5\x8a\x5b\xae\xe5\xa2\x68\x89\x68\x98\xe6\x0e\x8d\xda\xaa\x65\x4f\xa7\xa2\xa9\xb8\xe1\xf6\x96\xac\x84\x04\xc6\xb5\x5f\xd1\x96\x35\x4f\x14\x59\x6a\x99\xa0\x01\x5d\xb8\xb1\x61\x2a\x95\x80\x5f\x45\xc5\x67\x5b\x83\x26\x2e\x09\x5f\xae\xea\xad\xe1\x0f\xf2\x4c\x43\x6e\x78\x8d\x7c\xd3\x54\x44\x2d\x84\x64\x64\x4a\x25\x93\xa4\x61\x28\x7a\x26\x5a\xb8\x34\x55\xdd\x71\x93\xde\x8b\x8e\x1a\x97\x20\x97\x61\x2d\x3a\x21\xa3\x04\x69\xd9\x92\x2d\x27\x5a\x16\x59\x5e\xd1\xcb\xf9\x7b\x51\x57\xac\x21\xd7\x80\xd1\x0f\xb4\x6d\xb9\x68\x25\x99\xd4\x6c\x43\x28\xf9\xec\xe9\xa7\xa4\x66\xd4\x89\xf7\x5f\x3f\xfb\xf4\x73\xd8\x3c\x33\xde\xd0\x5a\x8e\x1e\x3d\xfa\xd5\xc9\xa3\x47\x38\x8a\x9e\xf0\x9c\x4f\x6a\x76\x23\xde\xb3\x86\xcc\x5a\xb1\x24\xcf\x3e\xfc\x8e\x3e\xfb\xe2\xf3\xcf\xab\xdf\x7d\x36\xf9\xfc\xf3\x67\xbf\x9d\x7c\x61\x1b\x5f\x89\x26\xdb\xfe\xf3\xcf\x3e\x65\xbf\xfd\x2d\x65\x5f\xcc\x3e\xad\xbe\x98\xfe\xfa\x99\x6d\xff\x8a\x29\xaa\xcf\xcb\x3f\x72\xb6\x91\xbb\x1a\x1b\xee\xff\x56\x4c\xdf\x03\x17\x60\xeb\xdf\x7e\xf1\xc5\xef\x3e\xfb\xf4\x8b\xcf\x3e\x67\xec\x8b\x2f\xa6\xb3\x99\x6d\xad\x41\xbe\x61\x52\xd4\xb7\xac\x2d\x42\x7e\x44\xa7\x53\x26\xe5\x90\xd6\xf5\x51\xb7\x57\xcd\x40\xe3\x74\x3a\x3f\x01\x81\x4f\x4e\xc8\xd3\x87\xf9\x58\x70\x76\x63\x57\x6c\x55\x8b\x2d\x30\xee\x2d\x6d\x39\x9d\xd4\xe6\xa4\x7e\xc0\x21\xdd\x98\x0b\x7d\x54\x2b\x2d\x65\x83\x23\x41\xb3\x19\xe2\xa1\xb7\x4b\x83\x3c\xeb\x91\xe9\x96\xb3\x8d\xde\x82\xe4\x0a\x3b\x0f\x8f\xc6\xe4\x5a\xb5\x7a\x49\x7e\xb2\x0c\x3f\xd0\xf2\xb8\x61\x6a\x40\x7e\x0e\xc6\xa3\x55\xd5\x32\x09\x9a\xca\x66\xc1\xa7\x0b\xd2\x8a\x2d\xad\x15\x67\x92\xc8\x85\x58\xd7\x95\xde\x05\x15\x5b\x09\xc9\x95\x39\xd1\xb3\x43\xbf\x81\x6e\xdb\x33\x04\xa7\x31\x30\xff\xec\x50\x78\xf6\x61\xf2\x8c\xd2\x67\xd5\x6f\x67\xf4\x77\xcf\xd8\xec\x77\x13\x16\xe1\xb2\xa2\x6a\xe1\x8e\xfc\xf5\x84\xe1\x8e\x37\xea\x8c\x3b\xef\x27\xac\x16\x28\x75\x4c\xd3\x33\x4f\xba\x9e\x9c\x98\x69\xdc\x89\x7e\xdd\xa0\x30\xe6\xb5\x12\x2d\x9d\xb3\xd7\x54\x2d\x90\xa4\xee\xcf\x6e\x52\x27\x12\xbf\x3d\x31\x0c\x13\x81\xe8\x26\xf8\x50\xcc\x12\xf1\xa7\x9b\xe3\x37\xb7\x5a\x9c\x7f\x2c\xd6\xfc\x66\xc9\x15\xa8\xce\x91\x9a\x6b\x4e\x60\x2e\xad\x66\x9e\x10\x97\x69\xbc\xa0\xf1\x4b\x6c\x31\xe4\xd5\x98\x7c\x7f\xd9\xa8\xcf\x7e\x7d\xac\xa5\x38\x88\x9b\x31\xf9\x09\x39\xd6\x72\xee\xcf\x47\x3d\x43\x4b\xd6\x6a\x06\xd5\x9a\x1f\x1c\x56\xaa\xe5\xf3\x39\x6b\x51\x4e\x53\xa3\xc1\x15\x30\xb9\x62\x9b\x6b\xe8\x7e\xad\x68\xab\xd1\x69\xd8\xe6\xe5\xba\x6d\x59\xa3\xf0\x7b\x8b\xdc\x51\x37\x79\x20\x2d\xe8\xfe\xd7\x4c\x3d\x7d\xc3\x6a\x30\x23\x7c\x7d\xf2\xe4\xa4\x07\x5d\xad\x0e\xee\xa4\xd0\x35\x53\x96\x40\x92\xa9\xcb\xf3\x8e\x46\x32\x42\x6b\xc7\x92\xe8\x33\xc9\x1a\x1c\x54\x83\xed\x59\x92\x33\xdd\xf0\x46\x5c\x33\x15\x0f\xaa\xb5\xf2\xee\xef\xd2\xa0\x76\xc0\x96\x29\xae\xc9\x0f\x52\x1d\x06\x85\x43\x75\x4a\x1b\xad\x54\x4c\x8c\x25\x65\x4c\x81\x1e\x7c\xde\x20\x9c\x8b\x56\x2c\x77\xe2\x74\x4c\x9a\xf5\x12\xf5\x9e\x9d\xc4\x31\x2b\x50\x8b\xe9\x7b\xad\x5e\x2e\x19\x6d\xb4\x00\x79\x0d\xa6\x47\x87\x25\xd0\xad\xbc\x3e\xdf\x42\xf7\x10\xab\xd2\x88\x46\x21\xe3\xd2\xe8\xb4\x1e\x69\x0a\x03\x60\x8f\x57\xd0\x7a\x88\xda\x99\x1d\xe6\xf3\xdf\xa4\x93\xcf\x30\x09\xad\xaf\xd6\x5a\xf1\xf0\xbe\x75\xd2\xc8\xc7\x38\xc3\xd7\x9d\xf6\xfb\xb4\x3d\x84\xbd\x97\x6e\x9a\x5a\x3b\xaf\x5a\xba\x69\xec\x4c\x3b\x90\x85\x09\xff\x60\x7a\x38\x81\xa0\xa7\xa9\x3b\xbb\xb3\xe3\x79\x89\xba\xdd\xb0\xee\x68\xd2\x86\x8b\xd8\x67\xd8\x73\xec\x11\x8c\xaa\x84\x3f\xe6\xce\x25\xad\x98\x54\xad\x3e\x4d\x7a\x97\xf2\xdc\xb6\xf2\x86\x2a\x02\xf7\xce\xbb\xdd\xa2\xc2\xb5\x75\x12\x23\xb3\xce\xc7\xa4\xa1\x4b\x66\xe5\x69\xbf\xa8\xdd\x0b\xa9\xd0\x26\x97\x2b\x36\xe5\x33\x3e\x35\x93\xdd\x89\xaa\x11\x35\xd8\x3a\xc3\xdf\xf9\x29\xec\x90\x4a\xbf\xd0\xe1\xfa\xb4\x66\xb7\xac\x26\x33\xce\xea\x4a\x8e\x3c\x95\x45\x32\xeb\x28\xd1\xdb\x65\x4d\x6b\x72\x4b\xeb\x35\x93\x9d\x0b\xa9\xdf\x6d\xf3\x91\x4e\x6b\x3c\xc8\x10\x09\x70\x03\x5c\x83\x59\xa7\xf5\x26\xad\xe9\x8d\xa2\x76\xfa\xc4\xd0\x48\x4d\xd9\xca\xfa\x9b\x9a\x8a\x4f\xc1\xe1\x45\xc9\xbc\x15\xeb\x95\x36\xcf\xc0\x77\xa4\x16\xad\x58\xcf\x17\xc6\x8a\x37\x70\x5e\xd1\x66\x6b\x5c\x4b\xb4\x21\xec\x03\x97\x8a\xe8\xf9\x43\xab\x63\x32\x59\x2b\x22\x9a\x7a\x0b\x76\x1e\x9e\x66\xa3\x54\x09\xa3\x2d\x99\xe6\xce\x61\x37\xab\x3f\x1a\xfd\x9b\x48\xfe\x23\x23\x15\x47\x67\x61\xbb\xd5\xb8\x79\xca\x88\xf4\x41\x4b\x56\xcf\x10\xb6\x66\x9d\x73\xaa\xa8\x1c\x93\x9f\x10\xf0\x18\x7a\xfd\xbc\x17\xfc\x6b\xe6\x7b\x1c\x0a\x43\x48\x6c\xe4\x8f\x60\xfa\xed\x3d\x48\xe7\x88\x29\x0e\x21\xc7\xe4\x6b\x1f\x7e\xa8\x43\x5f\x9e\x3b\x8f\xa1\x3d\x73\x8d\x13\x10\x0e\xbb\x91\x27\xfb\xdb\x2d\xac\x8f\x77\x8c\x1b\xb1\x63\xf7\x19\x30\x86\x94\x7c\xde\x18\x51\x74\x72\x62\x77\xbf\xd5\x36\x9e\x48\x3d\x22\x1a\xd0\x0c\xa4\x04\x6f\xa6\xda\x00\x6e\x8c\x97\xf6\xd3\xfc\x4a\x37\xec\x83\x7a\x1d\x6c\xe6\x3d\x67\x81\x6e\xcc\x00\xfb\x8c\x7a\x75\x72\x82\x92\xc3\x9f\x81\x8f\xba\x64\xea\x3e\x98\x5f\xfb\x52\x29\x40\x5c\x09\x45\x6b\xad\x98\x68\xfb\x5f\xcc\xc0\x7f\x23\xb5\x28\xf1\x1c\xc6\xb1\xaf\x33\x42\xfc\x05\x9b\xd2\xb5\x64\xd8\x54\xef\x27\x30\xc0\xcc\x51\x72\x4c\xb8\x22\x95\x60\xb2\x79\xa2\x48\xc3\x34\x6a\xb4\xe5\xf5\x16\x54\x9a\x6e\xc3\x5b\x58\x2d\x9b\xe9\xc3\x10\x1d\xa4\x31\x6e\x30\x00\x37\xfb\x95\x35\x53\x66\x5c\x7b\x40\xa4\x75\xe8\xc1\x38\x39\xf1\x10\x36\x1a\x8d\x12\xa4\xa2\x8a\x8d\xc8\x59\x2d\x85\xf3\x95\xcf\x6b\x31\xa1\xb5\x3d\xa1\x2f\xcf\x51\xbf\xd0\x5d\x78\x33\xcf\x93\x14\x10\xbb\x5e\xaf\x56\xf5\xd6\x9e\x07\xbf\xb0\x64\x7f\x29\x96\xa8\x46\x90\x9b\xed\x8a\xa1\x57\x90\xfb\xea\xcf\x83\xe3\x01\x67\x87\x3e\x20\x80\xe4\xbf\xf2\x46\xfc\x15\x10\x4c\xe3\xe1\x4b\x70\x8b\xb0\x05\xa0\x19\x57\xa8\x05\x73\xce\x45\x69\x3d\x7d\x23\x03\xdc\x03\x49\x2a\x01\xde\x3d\x73\x56\x39\x18\x78\x64\x99\x23\x0a\x4f\x2e\x94\xd6\xe0\xb7\x93\x8a\x36\x53\x46\x86\xa2\x35\xce\xcf\x23\xcd\x35\xc6\x57\xa7\x60\x0c\xc0\xd2\x82\x33\xbc\xea\x5d\xd1\x04\x98\xe3\x64\xdc\xbd\x42\x30\xea\x47\x3b\x09\x9d\x45\xa4\x75\x1d\x77\x9d\xb2\x10\x75\x25\x9d\x42\xe4\x5d\x0d\x39\x1f\x02\xba\x9a\x9d\x8e\x73\xf5\xe2\x0c\x64\xe2\x71\xe7\xf7\xae\xd9\x9c\x35\x95\x96\xdc\x86\xd5\xb5\xce\x64\xfb\xbf\xa1\x5b\x72\x56\xd7\xac\x21\x0b\x8e\x1b\xea\x33\x10\x3f\x1c\xfb\xfe\x81\x51\x34\x90\xae\x57\xeb\x56\x7a\x4e\xbf\xcf\x8c\xc3\x8f\xcc\xe9\x92\x91\xcf\x2d\x38\xd1\xa2\x46\xf6\x2d\x2c\xc8\xb5\x62\xab\x05\x6b\xa4\x68\xd0\x7d\x68\xba\x33\x0a\xbb\xfa\x5b\x36\x69\x45\x43\xfe\x9b\x2e\x3b\xb2\xba\x73\xda\x13\x42\xc6\x91\x5c\x77\x57\x07\x7a\xc2\xbc\x99\xd7\x78\x27\x46\xcc\xb5\x0a\x7a\xb5\xc5\xcc\xc2\xe0\xaa\xa3\xdc\x08\xdd\x36\x78\x83\xd6\x32\x73\x57\x54\x6f\xcd\x0e\xe7\x93\x9a\x1d\x13\x29\x08\x6d\xb6\x9a\x6d\xa6\xb4\xe9\x04\x13\xad\xd0\x3f\x9f\x2e\x42\x42\x7d\x40\xe7\xf2\xdc\x9f\x8c\x2f\x42\x8c\x0f\x02\x96\x1a\xdd\x81\x9e\x40\x5e\x37\xfc\xaf\x6b\x38\x50\xec\xd5\x9d\x6e\xe7\x5a\xf9\x70\x6a\xa6\x22\x05\xf3\x91\x0f\xed\x5a\x33\xac\x74\xf7\x86\x1d\xe2\x70\x1b\x66\xaf\x12\x35\xd9\x40\x4d\xd0\xf6\xe5\x92\xae\x56\xbc\x99\x87\x38\xe1\x8d\x82\xde\x8e\xc0\x46\xa2\x99\x13\xc5\xda\x25\xd9\xd0\x2d\x5c\x06\x38\xc0\xb0\x42\x13\xab\x42\x8e\xc8\xa5\x3e\xb3\x28\x5c\x46\x8a\x96\xb6\x5b\x1f\xec\x54\x34\x86\x0c\x9b\x05\xaf\x19\xd9\x30\x32\xe3\xf3\x75\xcb\x08\x5e\xd5\x4d\x98\x52\xac\x85\x31\xf0\x86\xcc\x2d\xa1\x07\xa5\x48\x95\xb2\xe9\xd0\x51\x48\xcb\x9a\x61\x8f\x8d\xe1\x2d\x0d\x01\xf7\x3f\x8b\xbe\xd1\x1f\x87\x55\xcd\x9a\xb9\x5a\x90\xc7\xa7\xe4\xd9\x98\x0c\xae\xac\x6f\xc3\xd1\xa6\xb3\xd9\xd9\x72\xa5\xb6\x83\x00\xd2\xcf\xc1\x5f\x5a\x79\x1a\x19\x85\xe6\xd4\x1e\x00\xa3\x4e\x01\x49\x1b\xbb\x51\x4e\xdd\x80\x8f\x3a\xd8\x1e\xc1\xcc\x72\xba\xab\x3e\x8e\xd7\x67\x8d\xf1\xbe\x4c\xe8\xf4\xfd\x8c\x1b\x7e\x01\xfc\x61\xcb\x8a\xe9\xfb\xe9\x42\x9b\x0c\x86\xcf\x97\xa2\xd5\xd2\x5a\x51\x5e\x1b\x09\x64\xa1\x57\xdd\x85\xbb\xbd\xce\xd4\x60\x70\xdb\x4d\x58\xc3\x66\x1c\x6e\x71\x17\xf4\x16\x6f\x02\x59\xd0\x85\x5b\x3b\x04\xb7\xdf\x46\xac\xeb\x10\xfe\x84\x11\xd0\x45\x95\x20\xef\x1b\xb1\x41\x13\x45\x09\xd4\x46\x1d\xd2\x15\x6f\xd9\x54\xd5\x5b\x34\xec\x2f\x6a\xb1\x89\x19\xc5\x8a\xf8\x23\xf0\xa2\xae\x57\x5a\x2d\xb8\xa1\xf3\x9a\x37\x6c\xa8\xf0\xff\x96\x11\x8e\xec\xde\x8a\x56\x3f\x20\xfc\xdb\x81\xe9\x3d\x78\x47\x4e\x89\x81\xf0\x28\x68\x6f\xd7\xd1\xa9\xf5\x6f\xbd\x75\xd6\xbd\xf4\x9f\x41\x0f\xe3\xb0\xf5\x9a\x3d\x0a\x19\xa6\x53\xa4\xcf\xac\x4e\x69\xac\x1f\x4d\x5c\x63\x64\xf8\xda\x9b\x98\x4e\xd7\x9e\x71\xd7\x32\x5a\x93\x8d\x68\xeb\x4e\x59\xd6\x4d\x97\xf4\x3d\x23\xeb\x15\x5c\x00\xa3\x67\xc5\x59\x54\xf6\xba\x6e\x52\xeb\x83\x17\x8e\x16\xad\xe0\xeb\x9f\x26\x54\xb2\x09\xad\x6b\xef\x08\x78\x45\xe7\x7c\x4a\xa6\xb4\xad\xe4\x88\x9c\xe1\xda\x74\xf6\x16\x6f\xc8\x72\x5d\x2b\xbe\xaa\xb5\x59\x31\x03\x99\xae\x00\x5c\x7c\x0a\x58\x5b\x86\x1b\x49\x95\x8f\x32\xa0\x68\xee\x5a\x4e\x48\x6c\xd6\x33\x27\xd3\xc9\x5f\xd7\xa0\x8d\x63\x2b\x09\xd7\x60\x5e\xb8\x80\xd3\x36\xba\xa8\x01\xad\x1b\x4c\x69\x5d\x6b\xba\xde\xd2\x96\x8b\xb5\x24\x73\x90\x50\xe0\xa3\xf3\x4f\x62\x8a\x62\x92\x35\x29\x26\xe4\x3b\x6d\x53\x2a\x17\x11\x60\x03\x01\xe8\x84\xd7\x5c\x6d\x3d\x8b\xc5\xdc\x06\x6a\x2b\x15\xf6\xb5\x59\x30\x1b\xb4\xe0\xdb\x5d\xa3\x1d\xa7\x8c\x25\x5e\x70\xd0\x7c\x9f\x1c\x32\xd6\xcd\x17\x43\xd1\xd2\x54\xa6\xd6\x83\x81\x73\xa5\x4f\x7d\x33\x4d\x1f\xc2\xc9\x09\x61\x1f\x46\x64\x70\xc3\x97\x4c\xa2\x2a\xa0\x9b\xdc\x88\x56\x34\x4a\x90\x37\x74\xa5\x44\x2b\xc9\x74\x21\xde\x77\xec\xa8\x79\x5c\xcc\x66\x72\x50\x44\xc4\xf7\x0f\x85\x47\xdd\x3e\xfe\x03\xf2\x80\x3e\x04\x72\x3f\x3f\x42\x9e\xca\xa9\x13\x81\xd8\x73\xca\x9f\xf9\x7e\x27\x93\xee\x61\x4f\xa5\xaf\xdc\xa1\x74\x6d\xa8\x78\xf0\x79\x84\xd6\x69\x78\x1c\x81\x55\x99\x36\x05\xf8\xa7\x30\x4c\x0e\x0e\x50\xbf\x03\x14\xb8\x50\x8a\x02\xce\x89\x37\x77\xab\xa6\xb4\xdd\x13\x6a\xe8\x9a\x89\xba\x8b\x7d\x25\x08\xad\x2a\xd0\x5a\x5b\xb6\x14\xb7\xcc\x57\xb1\xa5\x75\xfa\x4a\xe3\xf9\x87\x90\x1f\xe3\x9c\x8f\xe5\xcf\x65\x22\x69\xec\x46\x44\x89\x13\x05\xc4\x68\x05\xd2\xb7\x43\x55\x1a\x02\xe4\xc2\x64\x8c\x72\xba\x10\x55\x32\x6a\x17\x39\x34\x85\x1b\xa2\xca\x8a\x73\x73\x4b\x62\x87\x71\xd1\x35\xba\x99\x3f\x8d\x40\xa8\x77\x4a\x33\xfc\xa9\xf7\x5a\xa7\x4d\x99\xd1\x5e\xf9\x11\x16\x5d\x74\x0b\xdc\x51\xc1\x88\x56\xc1\xab\xb5\xfd\x0d\xc6\xb3\x7f\xb7\xe9\xcf\x57\xb7\xc6\xc3\x04\x41\x70\x75\xac\x9b\x6f\x98\xd6\xe1\x65\x77\x54\x73\x0f\xb3\x84\x02\x5d\x58\x18\xc4\x2c\xe0\x9d\x8d\xbf\x7c\x66\xa4\xee\x7e\xc4\xd1\xc3\xdc\xef\x04\x56\x95\x06\xd4\x08\x50\x60\x59\x8b\x07\xa2\x9d\xb1\x7f\xe5\xc1\x55\xb2\xfe\x33\x6f\x0d\xb5\x36\x24\xbb\x91\x1b\x81\xea\x90\xbb\x99\x09\xe2\xe7\xf4\xb4\x27\x6b\x15\x9a\x33\xd8\x4c\x2a\x43\x4c\x1c\x3b\x33\x26\xce\xe1\xac\xae\x87\x47\xc0\xa2\x7a\x64\xfd\xcf\xd6\x84\x75\x54\xa0\xaf\x3d\x55\xe2\xa9\xfe\xff\x71\x4c\x7e\x6d\xc9\xd6\xc2\xc6\xad\xcd\x44\xcb\x6e\xb5\xf1\xdd\x54\x5a\x95\x5f\x80\xb6\x2f\x5a\xe6\x1c\x36\xa0\x70\x69\xfd\xce\xce\xdf\x97\x4f\x8e\x71\x35\xe0\x1d\x27\x89\xbc\xd3\x49\x72\xd6\xb6\x74\x1b\x45\xd7\xe9\x99\x52\xb2\xa2\xad\xc2\x33\x46\x6f\x42\x1b\x44\x63\xba\x99\x28\xc6\x55\x7c\x8f\x68\x10\x39\x86\x0d\x76\x79\xae\x0f\x6b\x49\xe8\x6a\x85\xaa\xee\x82\xb5\xa1\x1c\x37\x2e\xbc\x4a\x30\x34\x74\xe6\x70\xc0\x6a\xa1\x51\x59\x4e\xd3\xd0\x01\xc7\xfc\x4d\x62\x22\xd7\x3b\x15\xd3\x3a\x73\xe5\x98\xbc\xc5\x99\xbf\x7b\x14\x1e\x22\x2b\xe7\x11\xbe\x3c\x37\x73\xbf\x74\x87\x11\x9f\xb9\xd1\x9a\xee\x70\x33\xcb\xe6\x33\x4f\x48\x92\xfc\xd5\x2a\xb8\xe3\xb8\x04\x43\x0f\xbf\x9e\xd1\x5a\x32\x32\xd4\xb3\x36\x53\x39\xea\x03\x67\xda\x1c\x23\x26\xb8\x22\x40\xf0\x76\xcd\xa2\x2b\x54\x08\xb6\xda\x49\x19\x03\xd0\x73\x41\xbf\x10\xa2\x0e\xac\x96\x90\x18\x3e\x7f\xe3\xd9\x51\x6f\xcd\x45\x69\x0e\xf1\xd0\xd9\x6a\xe7\xbf\x6e\xb0\x87\xdf\x41\x63\xff\xda\xb9\x06\x68\x5d\x8b\x8d\x0b\xab\xf2\x76\x74\x6e\x10\x19\x5e\xd7\x66\xaf\x69\x83\x7e\x67\x6e\x11\x1b\xd8\x96\x1d\xb9\x90\xdf\x10\x92\x1e\xd0\x62\x7a\xec\x77\x47\xc3\x69\xca\xa5\x89\xd7\xd4\x4d\xec\x5c\x01\x13\xf0\xca\x04\x23\x5e\xce\xd2\x6b\xe5\x2c\x9e\x9d\xc4\xda\x2d\xb5\x10\x59\x00\x13\xa2\x47\x55\xa7\xe5\xbb\x80\xd8\x9c\x54\xd0\x2c\x80\xe8\xe0\xc2\xc7\x3b\xc3\x37\x65\xba\xdd\xd1\xa9\x6a\x9e\xef\x57\xcc\x82\x93\xcf\xc7\x25\x71\x05\x6b\x61\xe5\xdc\x35\x48\x06\x6f\x77\xe5\x96\x38\xbe\x1f\x37\x3b\x00\xdc\x81\x69\xb8\xb3\x69\x6d\x0e\x45\x03\x49\x2e\xc4\x06\x63\x06\x6b\x3a\x65\x1e\x69\x8e\x09\x9b\x8f\xc8\xa7\x9f\xe9\x29\x7c\xfe\x6c\xc7\x86\xc1\xd9\xe2\xb5\xfb\x6b\xd6\x6a\xe4\xbd\xcd\x83\xff\x8f\xdd\x1c\x7d\xea\xe3\xa1\xea\x1d\x0a\xe8\x53\xf2\xf6\x5d\xfa\x9b\x0d\xab\x38\x25\x3f\x65\x74\x48\xc3\xd4\xa7\x28\x73\x32\x8a\x63\x3a\x33\x84\x14\x34\x3d\x39\x21\x78\x8b\xdc\x05\xab\x80\x81\x83\xe7\x8f\x11\x8f\x10\x1e\x8f\x31\xad\xc0\x83\x9d\x6e\x86\xd1\x4f\x59\xd3\xdc\x5e\x87\xbd\xed\x48\xa2\x0d\x73\x33\x80\x21\xa2\xfe\xef\x51\xde\xbb\xa2\xf7\x0f\x20\x4d\xab\x4a\xda\x53\xa9\x3b\x8c\x72\x8e\x2b\xad\x9b\xd0\x96\x2e\x99\x36\x25\xc7\xce\x9b\x67\xce\x23\xdf\xa9\x61\x0d\xde\x09\xd3\x3b\xa2\x0b\xfc\xc8\x00\x6c\xd9\xd3\x97\x2e\xfc\x74\x1c\x9f\x73\x00\xad\x61\xac\x72\xd1\xfe\xc6\x72\xd1\x70\x57\xbe\xaf\xd1\x74\x00\x9b\xc1\x6b\xaf\x85\x45\x2a\x3d\x1d\xe8\x29\x6d\x9e\x98\x1d\x47\xeb\x96\xd1\x6a\x8b\x3b\x2f\x38\x9b\xaf\xf3\xe4\xf0\x25\xc3\x6c\xdd\x58\x82\x0e\xa3\x6b\xf4\xbd\x0c\xa0\xd4\xe1\x62\x7d\x2d\x8f\x4f\x49\xc3\xeb\x31\x19\xbc\x44\xc9\xa7\x75\xeb\x8e\xce\x42\x23\x37\x36\x9e\x24\x73\x71\x05\xf4\x19\x0d\x92\x31\x1e\x7b\x7c\x9d\xc2\xf3\xd7\x1f\x98\x72\xa6\x98\xd3\x91\xba\x60\x30\x73\x76\xa5\xd0\x4b\x9b\xc2\x4d\xe4\xd4\x4e\xc4\x7a\xb5\x01\xa8\x47\xf5\x2a\xd1\x88\x46\xb1\xa5\x17\xef\xad\xb3\x88\x18\xa0\xf9\x5a\xe5\x2c\x94\xf4\x24\x10\x09\x23\x54\xaf\xcc\x5a\x1d\x25\x80\xbf\x5b\x19\x2f\x00\x40\x5e\xaf\xfc\x6b\xb6\xa2\x24\xe9\xa6\x6a\x84\x46\x0c\xf5\xd2\xc5\xdb\xfb\x72\x17\x43\xcf\x95\x20\x3f\xb2\x56\xec\x25\x68\xbc\x81\x9e\x85\x83\xb0\x25\x2f\xc5\x9e\x75\x72\xa2\x8b\xf4\xb0\xd3\xcf\x50\xb8\x93\x10\x12\x45\x84\xf3\x7f\x39\xcb\xae\x67\x6f\x64\x45\x85\xb4\xb2\x42\xfa\xc2\xc2\xd3\x9f\xf3\xe2\x22\xe6\x34\xfc\x50\x78\x37\x00\x8b\x7d\xc0\xe6\x94\x43\x87\x8a\x55\x6f\xe3\x0d\xaa\x57\x7a\x65\x34\x58\xd3\x38\xb3\x61\x81\x9a\xf1\x8e\xd7\xff\x3f\x2a\x38\x27\x42\xd2\x22\xc7\x00\x73\xe1\x3f\xa5\x55\x5b\x7d\x5b\xd1\x59\xcd\xf8\xd2\xe0\x89\xea\x1e\xfb\xa4\xca\xc3\xbd\xc5\xb4\x6f\x86\x66\x40\xee\x21\xa8\xb9\xf4\x0c\x20\xe6\xce\x36\x4f\x5d\x27\x43\x7a\x4b\x79\x0d\x7e\x71\x6f\x4b\x1d\xed\xbc\x28\xd1\x6b\xd8\x11\xed\x4e\x32\x36\xbb\x55\x63\xf1\x6a\xec\x76\x4b\xa2\x9c\x68\x75\xca\x97\x64\xea\x71\xaf\x84\xe2\x33\x23\x74\xa3\x51\x1f\xef\x8b\xdd\x29\x98\x2a\x8f\x92\xc6\x6e\x9b\xe7\x43\x3a\xcb\x5b\x3d\x0c\xeb\xdc\x25\x5f\x1e\x1f\xc2\xcc\x67\x70\xdb\x69\x78\x39\x78\xfe\xd7\xe9\x8e\x81\x55\xa1\x0f\x98\x0d\x85\xd7\x7a\x4d\x77\xef\xed\x38\x05\x65\x83\xf5\xe2\xd8\x9b\x94\x7d\x36\x40\x9e\x6f\xd0\x37\x51\xde\xeb\x9e\xbe\xd8\xbb\x3a\x77\xdc\xf1\xc6\x21\x12\x78\x64\xdc\xfe\xde\xe5\x98\xb9\xdb\x9e\x84\x11\xf0\x99\x81\xb1\x99\x22\x4d\x28\x26\x94\xc1\xf1\xa7\x3c\x13\x1b\x8d\xb8\x40\x1c\xa7\x2f\x03\xc7\xc6\x4d\x80\x61\x93\x20\xdf\x8e\x4f\xf7\xa3\xa1\x5e\x7c\x73\x68\xea\x7f\x4a\xa3\x54\x9b\xaf\xd0\x79\xaa\xd6\xad\xf1\xae\x36\x6c\x53\x6f\xad\x0d\xe5\xc5\x51\x66\xe8\x78\x80\xb8\xf4\x0e\xee\xce\x19\x78\x0f\x99\xb9\x5c\xcb\xd4\xfc\x84\xb9\x4c\x02\xbb\x7e\x4f\xc9\xff\x06\x09\x80\xf8\x5f\x5d\xdc\x20\xd2\x1b\x6a\x2d\xc1\x7d\xf6\x4b\x47\xe6\x58\xce\x8e\xc9\xd7\x1a\xe6\x83\x49\x5b\x98\x14\xdc\xf7\xc3\x70\x63\xbc\xf1\x5d\xed\xaf\xcd\xc6\x82\xb5\x08\xda\xf3\x8c\xad\x40\xae\x77\x23\x39\xdd\xd6\x7a\xc7\x76\x69\x9d\xbf\x67\xaa\x60\xcb\xf7\x18\xf0\x30\x74\x10\x1d\x41\xdc\x0d\xda\x5a\x32\x74\x34\x73\x69\x20\x3d\x91\x26\xe6\xdc\x8c\x11\x74\x82\xdb\xa5\xf5\xf2\xb2\x31\x46\xe7\x4e\x31\x9e\xcc\xe0\x95\x25\x4e\xf7\x6e\x38\x1d\x81\x6d\x5e\x99\x55\x81\x45\xff\xf2\xa9\x8d\x12\xbc\xba\xb8\x19\x66\xd6\xdb\x0f\x91\xef\xd0\xfb\x4f\xc3\x3b\xc3\x4f\x8f\x8e\x93\x4e\xd1\xe1\x94\x01\x1a\x9f\x67\x69\x93\x20\xb2\xf9\x59\xf0\x7b\xaa\xd7\x5f\xda\x28\x44\x73\x09\xa2\x35\x6f\x6f\xf9\x76\xae\xd7\x1e\x1a\x79\x76\xea\x21\x22\xe6\xb2\xfc\xcb\xa7\x8e\xc6\x05\x81\x37\xa1\x6a\xba\x78\x95\x48\x3d\xad\xf7\x4e\xb8\x6a\x69\xbb\x25\x7f\x5d\xd3\x46\x71\xb5\x2d\x78\x94\x22\xa1\xb8\xc4\x08\x9a\x28\x8c\x9f\xec\x25\x11\xd5\x4e\x89\xe8\x3f\x33\x76\x29\x06\x48\xaa\xc4\x5b\x9c\x51\x4a\x65\x66\x60\x8c\xf7\xb2\xc8\xf2\x25\x9d\xf7\xb6\xd8\x7b\x46\xdc\xdd\xb4\x59\x65\x24\xd8\xa3\x1b\xd6\xf6\xc1\x8f\x45\x62\xb4\x10\xc3\xf8\xbd\x48\x37\x23\xf3\x12\x61\x4c\xbe\xf6\xf0\xfa\x29\xb7\xbb\xbc\xdf\xbb\xbd\xd5\x7d\x39\x8c\x98\xe6\x96\xb6\x84\x5b\xf8\x60\xf9\xf9\xbf\x62\x60\x12\x27\x5f\x76\xe4\xcc\x5c\xb3\xfa\x83\x8e\xcc\xe3\x8e\xa1\x12\xef\x59\x33\x26\x5f\x3e\xc5\x28\x91\x74\x92\xc6\x4a\x3c\x4a\xe0\x71\x72\x4a\xb8\x61\xf3\xcf\x7f\xa3\xd9\xdc\xff\xf5\xe7\x02\xd3\x87\x68\xec\x3c\xea\x7f\xe0\x6a\xe1\x3d\x95\xc8\x1c\xfc\x70\x13\xd4\xc9\x81\xff\x23\x8a\x40\x40\xa9\x50\x4a\x85\x20\x3d\xcc\xf5\x4c\x78\x43\xbe\x31\x7f\xfe\xeb\x29\x1c\xe1\x62\x27\xdb\x2c\xfb\xe2\xea\xdf\x4a\xc9\xfd\x94\x92\x8e\xa8\x0f\xa3\x9a\x74\xf0\xde\xb0\x99\xe7\xa6\x37\xa1\xd4\x23\xe3\xd5\x1e\x61\x36\x8f\x2f\x3f\x89\x1e\xf5\x7e\x35\xc4\x57\x6a\xb6\x5b\xdf\xb3\xe1\x54\x24\x3d\x7f\x8e\xf9\x11\x86\x83\x2b\x11\xc8\x84\x30\xa6\x41\xdb\x7b\x08\x68\x10\x89\x59\xa7\x5c\x79\x32\xe7\x34\x9c\xd3\x68\xce\xd4\x55\xa8\x03\x78\x3c\x7b\x17\x25\x66\xa7\x1e\x14\xf0\xbd\xff\xd7\x0e\x7d\xe7\x97\x51\xf4\x3c\x52\xfd\xb2\xea\xde\x01\x94\x38\x50\xf3\x2b\x6c\x8a\x90\x0f\x68\x55\xdd\x88\x7f\x04\x4e\x08\xd1\x96\xcc\x48\x5b\xe9\x21\xdb\xcc\x00\x37\xc7\x0c\x23\x5e\xc5\xf2\xd6\xff\xeb\x38\x33\x99\xc4\xad\x7c\xa8\xea\xbc\xd3\x90\xd9\x43\xa5\x26\x07\xea\xd4\x79\xf5\x62\x87\x86\x1d\xab\x1c\xff\xbc\x1a\x77\x0f\xf3\xdd\x51\x8b\x91\xbb\xd5\x98\xbf\xa7\x6a\xbf\x43\x03\x89\x15\xfd\xb2\x4e\xf2\x8f\xae\xfe\x17\x08\x61\xfd\xc8\x65\xd1\xf0\x60\x86\xc2\x4e\x3b\x21\x9b\x66\x64\xce\x14\xde\xf4\x1c\x75\x77\x3c\x11\x31\xe2\x60\x75\x79\x08\x70\xe3\x72\xd7\xe0\xc3\x28\xa0\x9e\x41\xe2\xab\x95\x3d\x86\xb9\x5a\x2f\x03\x19\x18\x8c\x67\x02\x27\x7a\x46\xcc\x48\x51\x6f\x74\x12\xc6\xab\x7a\x51\xea\xc1\xd6\x4a\x92\xbc\x79\x4f\x72\xa8\x8b\x12\x38\x39\x21\x2f\xd1\x63\xcd\xa8\xe4\xf5\x16\x22\xd6\x39\x86\x62\xe2\x3b\x37\xc5\xa9\xb2\x4f\x28\xfe\xfc\xbf\x6b\xd6\x6e\x4d\x98\xc2\x9f\xcd\xb6\xb6\x70\x40\xac\x9a\x87\x16\x70\x09\x20\x99\xea\xde\x26\xd9\xa8\xbc\x73\x7c\x3d\x62\x15\x44\x1f\xa0\xf5\x2c\x7f\xea\x52\x47\x3c\x8a\x89\x6c\x42\xcd\xfd\x5e\x1e\x1d\xfb\x83\x00\x4b\xad\x82\x58\xef\x32\xa8\x20\x66\x3a\x6a\x16\xbe\xa5\xf6\xc3\xef\x8a\x0d\x4b\xd1\x68\x59\xd6\x8a\x43\x97\x8a\x50\xef\x12\xb2\x13\x26\xed\x38\x28\xe2\x41\x32\x25\xdf\x9a\xf0\x95\xc7\x7e\x88\x80\x64\xaa\xe3\x07\x97\xcf\xcc\x0f\x7c\x04\x2b\xac\xd7\x2e\x32\x2b\x48\x4e\xc9\xf0\x93\xdc\x80\x54\x92\x4f\xae\x99\x7a\x7e\xf4\x38\xd7\x2d\xe2\x33\x2f\xe2\x46\xa5\x5e\xd5\x20\x32\x49\xf6\x06\x9b\x1b\x40\xa3\x1d\x41\xe7\xb6\x99\x0c\xa3\xcd\x49\x1c\xdb\x24\x99\x1a\x75\x42\x2f\x6d\xd7\xc5\x39\x99\x96\x4e\x82\xa5\x6d\xdd\x2d\x8e\x6e\x1a\xdd\x16\x91\xfe\xd0\x27\x03\x3c\x95\x5b\xff\x82\x92\x3b\x26\xcf\xc7\x12\xde\x19\xb9\xe6\x25\x70\x4c\x9e\x6b\x76\xda\x9a\x0b\x79\x0f\xe2\x50\x96\x0c\x63\xd5\xf7\x94\x86\x65\xf0\xfb\x7a\xc9\x0e\x78\x20\x6a\xa2\x86\xba\x50\x44\x16\xaa\x97\xce\x3f\x91\xf7\x3d\x91\xef\xd4\x82\xb5\x1b\x2e\x19\x3e\xc6\x33\x71\xfd\x79\x4f\x46\x4e\x72\xc7\xe9\x7f\xfa\x24\x60\x2e\x9f\x50\x0a\xa1\x37\xb6\xb1\x20\x41\xdc\x4b\xcb\x55\xe1\x75\xa5\x3f\x10\x80\xe9\xfe\x2c\x9e\xff\x5e\x1e\x4e\xbe\x5c\xd5\x60\x25\x53\xfb\x2c\x92\x92\xe9\x5a\x2a\xb1\xec\x5e\x87\x22\xaf\x8b\xd6\xa5\xcf\x1c\x05\x80\xe0\xe7\xe0\x99\xcb\xca\x7f\x5c\xba\xeb\x09\x98\x91\xb6\x26\x5f\x93\x97\x2f\xb1\xe7\x90\x9e\xad\xeb\xfa\xca\x3b\x82\x9f\x97\x5b\xf2\x56\xaa\xfd\x9a\xd6\x74\xdf\x96\x13\xde\xaa\x45\x45\xd5\xbe\x4d\x81\x8d\x77\xb7\xfd\x0b\x6b\x25\xdb\x5a\x9e\xd9\xd5\xba\x6a\xe9\x4c\xdd\x30\xba\xdc\xb3\xe9\xff\xcf\xe8\xbe\x50\xaf\x99\xd1\xc1\xf7\x6c\xff\x46\xac\x9b\x6a\x77\x5b\xc5\xe8\xf2\xcc\x2c\xf4\xd5\x8b\x33\xbd\x5d\x0e\xe9\xb2\xbb\xf5\xaa\xe5\x4b\xda\x6e\x5f\x6b\x33\x67\x2f\xec\x17\x8c\xcf\x17\x7b\x00\xde\xec\xd9\x0e\x52\x6f\x68\x42\xcb\x6f\x3e\xac\xf4\x29\xde\xec\xb3\xee\xcd\x84\x5e\x33\x2a\xf7\x22\x37\x55\xec\xbb\xd9\xde\xf4\xa8\xe9\xf6\x25\x55\x6c\x2e\xda\xed\x7e\xad\x6f\xb6\xab\x3d\x10\x5e\x88\x25\xd3\x9c\xb7\xdf\x6e\xa1\x1b\xba\xdd\xbf\xb5\x85\x7d\x3d\x15\xed\x01\xc0\xf7\x6c\x8e\xaa\x55\x28\x96\xfb\x5a\xef\x29\x10\xb2\xe7\x45\x1f\x9d\xf7\x30\x31\xf6\x34\x44\x5c\x74\xd7\x65\x63\xfc\x2f\xdd\xbc\xc2\x13\x2b\x38\x3b\x12\x09\x1a\x7a\x1e\x53\xb1\x19\xfe\x9e\xc8\xca\xf0\xe7\x54\x40\x66\x7e\x0f\xa5\x62\xd8\x20\x2b\x0a\xc3\x26\xa9\xfc\xcb\xfc\x1e\x08\xbd\xcc\xef\xa9\xa4\xcb\x34\x0a\xc5\x5b\xd8\xa0\x2c\xd3\xca\xed\x0a\x4d\x4a\xd2\x2b\x6c\x15\x89\xac\xf0\xc7\x4d\xdf\x8f\xbd\xc2\x29\x6c\x9a\x4a\xa4\x88\x2c\x39\x31\x14\xcd\x26\x27\x7b\xd2\x26\x81\xc0\x89\x66\x9a\x93\x32\x61\x93\xac\x68\xc9\x43\x09\x05\x44\x1e\x4c\x5f\x9b\xac\xe4\x88\x9b\xf4\xed\x89\x6c\x4a\xc9\x84\x1e\x9e\x0e\x19\xc3\x2e\xfd\xd4\x2b\x02\x6c\xa3\xac\xee\x69\x85\x00\x39\x75\xf2\x20\xd3\xc8\x8a\x02\xdd\xca\xfe\x3b\x63\x48\x52\xd7\xca\xfe\x33\x6d\xe4\xe4\x02\x39\xed\x64\x44\xa1\x19\xea\xfe\xa7\x9e\xac\x48\x1b\xfa\x62\x82\x9c\x06\x52\x23\x6d\xec\x04\x06\x39\xed\x84\x47\xa1\x99\xde\x26\xb6\x99\xfe\x77\xa1\x99\x13\x1f\xb6\xad\xfb\xa2\xd0\x01\x44\x89\x6d\x0c\x7f\xa4\x0d\x13\x91\x42\x4e\x53\x31\xd3\xdf\x2d\xea\x91\x31\x2b\x42\x59\xa3\xed\x8b\xf0\x9b\xb4\x0b\x0a\x1e\x72\x6a\x24\x50\xda\x60\x63\x1b\x6c\x0a\x0d\x72\x02\x48\x63\x9a\xf9\x3a\xe3\x83\xb0\x22\x89\x9c\x76\xe2\x29\x43\x65\x4f\x32\x9d\x06\x72\x2a\x6f\x5b\x59\x11\x65\x2c\x2c\xfb\x67\xbe\x31\x64\x33\x3b\x75\x72\x2b\x43\x23\x4f\x64\x69\x4a\x79\x7f\xa6\x8d\x7d\xe1\x45\x4e\x03\x59\x56\x86\x0c\x22\xca\x03\x0d\x7f\x97\x61\xdb\xe6\xc1\xdf\x25\x17\x54\x60\x44\xda\x3f\xb3\x16\xeb\x95\xf3\x6b\xe5\xb1\xdd\xc7\x28\x25\x07\x98\xb8\xfd\x4e\xb6\x54\xfe\x61\x54\x5e\xfc\x6d\x8f\x3d\xec\x95\x5a\x31\x09\x09\x56\x2d\x93\xe6\x8a\x29\xac\x4f\x43\xf2\xd6\xac\xeb\x7f\x75\x71\x93\x26\xd6\x1f\x85\x01\x2b\x27\x27\xe4\xf7\x98\xd8\xcf\x24\xd4\x72\xf9\xfd\x8a\x8a\x5e\x97\xf4\x36\x4a\xa3\x05\x46\xb4\xbb\xd7\x4b\x53\x2c\x65\x4c\x08\x3a\xf6\xbc\x46\x89\x5f\x23\x97\xf9\x78\x57\xba\xe4\xdc\x95\x58\x74\xe2\x24\x57\xf2\x26\xb5\xe1\x2b\x97\xda\x30\x68\x6e\x9d\xb0\x5e\x36\x43\xcf\x35\xeb\x7f\xeb\xdf\x32\xa5\xdc\xc1\xab\x7c\xb7\x24\x5e\x00\x3d\x64\x5e\x26\x32\xf4\x4f\x64\x45\x0c\x25\xa7\x1e\x05\xbb\xe8\xf6\xec\x03\x8c\x90\xa2\xfe\x5f\x47\x99\xb7\x5c\x41\xde\xea\xe0\x67\xfd\xe9\x12\xfd\x9a\xc9\xdd\x2f\xe6\xa2\x42\x77\x73\x3e\xf0\x22\x42\xbb\x6b\xde\x7d\x7f\x8f\x70\x05\xfb\xaf\xe8\x2d\xfd\xcc\xdf\x6f\x7e\x6e\xe8\x63\x24\x0f\x6d\x4c\x2a\x64\x25\xdc\x3b\x6b\x1f\x80\x12\x44\xac\x95\xe4\x15\x23\x62\x22\x59\x7b\xcb\x5a\xe9\x9e\x54\xb9\x18\xab\x30\xe3\x34\xc9\xe6\x5a\x7e\x63\x36\x74\x97\x77\x3a\x98\x41\xb7\x1f\x6d\x1c\x43\xbc\x18\xb9\x9d\x44\x4e\xc9\x5e\xa4\x0c\xf7\x5b\xd8\x2b\xb7\xb0\xc1\x7e\xb4\x08\x75\xab\xdb\xa9\x81\x3b\xbc\xd9\x0d\x5d\x32\xbf\xde\x45\x68\xf4\x65\x3c\x6f\xde\xe6\x32\xde\xfc\x57\x4c\x51\xbd\x2b\x5e\x6c\x2f\x38\xab\x2b\x77\x8f\x9c\x4c\x00\xf3\xd3\x8c\xc9\xe0\xc2\xc0\x1c\x1c\x91\xe7\xcf\xc9\x60\x90\x0c\x1a\x1b\x0a\x0f\x31\xe8\x6b\x03\x33\x3b\xa8\xf1\xcd\x67\x95\x62\xfd\x19\x4d\x45\x33\xa5\x6a\x38\x20\x83\xf4\xee\xdb\xfe\x68\xb1\x2e\xf1\xfa\x4d\x94\x5f\x4e\xf8\xbc\x1f\x67\x47\x80\x04\x55\x98\xb9\x8d\xac\x5a\xb1\xc2\xbb\x30\x79\x0c\xf1\x7a\x90\x96\x37\xce\x57\xf7\xff\x11\x56\x4b\x48\xf3\xc4\xeb\x2a\x49\x66\x87\xc5\xae\x20\x09\x09\x9e\xf6\xc7\xa6\x68\x9b\xe7\x1e\x2f\xe4\x44\xb0\xbc\xe2\x81\x2b\xb2\x8c\x8b\xed\x20\x8c\xb6\xf5\xd6\x66\xc8\x30\x39\xe8\x30\x73\x63\xf3\x14\x92\x3c\x85\xbb\x6b\x86\xfe\x34\xd3\xee\x01\xd6\xdb\xa6\xc0\x8b\x8f\x25\x6f\xb9\x6d\x66\x3c\xff\xa7\x34\xee\xf2\x45\x3f\x3d\x61\x0b\x59\xa2\x1a\x42\x66\x68\x9b\xf0\x78\x64\x3c\x86\x53\xbe\xc6\x1f\x87\x79\xd9\x5d\xda\x36\xa1\x00\x72\x70\xf3\xf2\x67\xa4\x04\xb6\x88\x6e\x09\x53\xaf\x59\x01\x41\xcc\x91\x55\x42\xf1\xb9\x07\xbf\xbc\xe1\x06\x67\x96\x70\x69\xa8\xad\xdd\x56\x3e\x32\xe5\xcd\xd7\xbb\x33\x0d\xad\xfb\x7a\x2f\xfd\x48\x73\x7f\xe1\xfa\xe1\xfa\x67\x7b\x86\x85\x4e\x4e\xb0\xdc\xd7\x7a\xb5\x12\xad\x62\x55\x78\xc7\x92\xd4\x43\xe4\xcd\xb4\x5e\x57\x36\x90\xe2\xa5\x56\xe5\xb5\x1e\x09\xc5\xa4\xfa\xf7\xe6\x9c\x29\x68\x05\x37\xab\x5a\x08\x15\xee\x55\xdf\x26\x73\xd1\x8d\xbf\x0c\xca\x56\x8d\xce\xb9\xd4\xbb\xe9\xab\x61\x26\xc2\x13\x9a\x17\xaf\x70\xca\x5d\xc2\x11\xde\xd8\x2a\x49\xfb\x76\x30\x1a\xfd\xfe\xed\x3f\x28\xd6\x36\xb4\xfe\xfe\xcd\xb7\xfb\x76\xb9\xba\xb8\xe9\x82\x91\xb4\xac\xb9\x5b\xc7\x5d\xb4\x0b\xfb\x5e\x03\x07\xed\xdb\xfa\xa6\xa5\x5c\xed\x4d\x83\x57\xac\xe2\x54\xb7\x0e\x1a\xbf\x2b\xf0\x69\x8b\xa5\xc5\xf0\x58\x01\xbe\x72\xb1\x19\x73\x7e\xcb\x1a\x4c\x71\x67\x19\xf6\xea\xe2\x26\xcb\x90\xf8\x1a\x17\x20\x69\x24\x86\x7f\x02\x50\x63\x40\xef\x68\x4c\xce\x9a\x2d\x1a\x30\xcf\x63\xf7\xd4\x86\xab\xe9\x02\xc7\x4d\xe5\xf5\x94\x9a\x64\xd9\x45\x46\x1d\x27\x7d\x48\xc7\xf4\xd9\x4e\xa9\xae\x6d\x3f\x18\xeb\xe3\xe2\x39\x72\xd4\xb6\x9f\xca\x2f\xe9\x8a\x22\xd0\x3f\x24\xcb\x1d\xd5\x62\xbd\x9c\x34\x94\xd7\xe3\x08\xbb\x3f\xdc\xdc\xbc\xbe\xe0\x35\x1b\xae\xdb\xda\x80\x74\x6d\x73\xe1\xf0\x24\x50\xae\xed\xe7\xe4\x84\xbc\xcc\x5d\xea\x1a\xeb\x53\x09\x97\xc9\x3d\x7e\xfb\x91\x92\xbc\x6f\xb3\xf7\x92\xbd\xd8\xb1\x4c\xfa\x4e\xdb\x7c\x40\x25\xb3\xbc\x0a\xde\xad\xc7\xfd\xc7\xb3\xb0\xfa\x06\xec\xae\x51\xee\x3d\xde\xb7\x74\xf7\x70\xde\xb5\xcc\xbd\xc7\x7b\x61\x61\xed\x1c\xd0\xdc\xf3\x3c\xcc\x88\x00\xac\x6f\xc8\xf0\xe6\xe8\xde\x83\xfe\xb7\x07\xae\x6f\x58\xef\x36\xea\xde\x63\x9e\x5b\x58\x3b\x07\xc4\xeb\xad\x87\x19\x50\xc3\xda\x39\xa0\x77\x5f\xf6\x30\xa3\x3a\x80\x3b\x87\x36\xb7\x70\x0f\x33\x2c\x00\xeb\x1b\x32\x73\xaf\x77\x7f\x13\x24\x86\xb9\x2f\x02\x0f\x3c\x76\xdf\xb0\xc9\x25\xe4\xfd\x0d\xed\x10\x62\xdf\xe0\xf6\x6e\xf3\xde\x63\xfe\x01\x00\xf5\x0d\xb5\x79\xa8\xa1\x7e\xd8\x39\x54\xfe\xde\xf5\xfe\x2b\x9a\x01\xdb\x87\x86\x77\xa7\x7b\xef\xb1\xaf\x2c\xac\xde\x5d\x1b\x5c\x12\xdf\x7f\xdf\x7a\xe0\x7a\x39\x38\xb8\x78\x7e\x10\x3f\x91\x05\xb7\x6b\x58\xf4\x51\x3d\xa0\x6b\xaa\x67\xab\x04\x97\xe3\xf7\xdf\x30\x1e\xb8\xbe\x61\xc3\x0b\xf7\x7b\x0f\x7b\xe6\x81\xdb\x67\xb6\xe6\x82\xfe\xc1\xa6\x0b\xf0\xf6\x99\xef\x43\x0d\x7c\xe6\xc3\xeb\x1b\x38\x74\xb9\x1c\xe2\x69\xe9\x83\x99\x2a\x9b\x3b\x3c\x4b\xfd\x08\x1e\x7e\x3d\x60\x3f\x45\x4a\xf5\x21\xbf\xd7\xb5\x85\xfd\x64\xa3\x22\xbc\x89\x5f\xa5\xbf\x17\x88\x70\x5c\xc4\x76\x5f\xf3\xab\x64\xaf\x7a\x5e\x8c\xbc\xe5\x64\x9f\x9a\x58\xaf\xdd\x9c\x29\xd3\x07\x16\x2d\x3f\x3e\x94\x98\xa1\x1f\x42\x07\xdd\x83\x4c\x97\x3c\x7f\x1e\x3d\x43\xf3\xc7\xb4\x37\x3d\xcd\x4c\x90\x53\x92\x9d\xa9\x97\xa5\xf4\xd8\xf8\xd3\xec\x2d\xca\x30\xcf\x42\x47\xc7\x7a\x2e\x63\x98\xd0\x57\xe4\x19\x79\x6e\x9b\x2f\xe9\x87\x23\x32\x26\x0d\xaf\xcb\x54\x30\x18\x7d\xcb\xa5\x1a\x93\xb7\x59\x8c\xde\x91\x53\xf2\xd6\xc3\xfc\xdd\xfe\x8e\x03\xbb\x7a\x65\xf3\xd5\x1b\xff\x9e\x9c\xe2\xfc\x42\x07\x38\x36\xb0\x4f\x19\xbb\x7e\xba\xdf\x13\x61\xdf\xa3\xb7\x8f\x57\x60\x64\xbc\x44\x2f\x4d\x2a\x5c\xf0\x0b\xd8\x3b\x75\x3c\x57\x1b\x5e\x1f\x83\xdb\xc2\x1c\xb3\xfd\x83\x1e\xb0\x0b\x03\xdf\xe0\x01\x04\xf6\x3a\x0e\xed\xf6\xc4\x4d\xa6\xbf\x39\x00\x83\x9c\xab\xf1\x17\x23\x5a\x6e\xf0\xbb\xa2\xbe\x9f\xff\xed\xe3\x61\xef\xc6\xdf\x7f\x02\xce\x87\xda\x8b\xb2\x79\x1a\x04\xf8\x62\x0f\xc0\x76\xff\x61\x9c\xf3\xf5\x00\xfe\xc2\x3e\xe5\x0d\x9c\x3a\xef\xfd\x4f\x06\x56\x19\x94\xfd\xcc\x78\xcd\x8a\x2e\xc8\x9d\xbd\xf5\xa7\xf3\x53\x2e\x59\xc5\xd7\x4b\xbe\xa4\xf3\xd2\x49\xe5\x7f\x7a\x54\x0d\xfb\xd1\x00\x29\x72\xc2\x00\xc0\x9e\xfc\x65\xc5\xe6\xe9\x4d\xd1\x01\x60\xff\xee\x44\xba\xe5\x15\x13\x0f\x4f\x1e\x00\x7b\xb2\x5c\xfd\x66\x07\x75\x8a\xbf\xe6\xcf\xc1\x52\xd6\x46\xd2\xb1\x70\xc3\xeb\xdd\x37\x0a\x5c\x92\xab\x8b\x9b\x27\x92\xe0\x5e\x82\x2d\xbe\xeb\xfe\xc0\xdf\x76\x31\xf5\x0d\x98\xe4\xee\x59\xae\x44\xab\x24\x69\x69\x45\x5b\xf0\xa8\x10\x5e\x25\xb7\x9b\xec\xc3\xb4\x5e\x57\xac\xd2\x2a\x95\x1c\x93\xb7\x78\x4d\x09\x8a\x41\xc6\x65\xf3\x2e\x97\x88\xa7\x94\x3d\x24\xcc\x8e\x13\x5d\x99\xba\xef\x5f\x6c\xaf\x2e\x6e\x2e\xcf\x87\x26\x8a\x24\x4d\x65\xe2\x32\xca\x87\x05\x8e\x3d\x3a\x2a\x24\x00\x5c\xd1\x54\x6c\x46\xd7\x75\x26\x12\x8c\x98\xac\x02\xd8\xd8\x2b\x2a\xe8\xae\x61\x7e\x26\xa7\x99\xeb\x96\xc1\xb5\x67\x8c\x0c\xee\x6b\x8d\x0c\x8c\xc9\x91\x00\x3a\xcc\x0e\x19\x5c\x7b\xda\xca\x60\x7f\x0b\x64\x80\x19\x49\xbb\xd1\xf5\xdf\xbc\x99\x8f\xb8\x34\xb9\x4a\x9b\x99\x7a\xc3\x66\x63\xf2\x89\x06\x09\x2f\x86\x7f\xca\x85\xf3\xfd\x9c\x45\xca\x2d\xea\xc0\x8f\x7e\x7a\x8e\x2f\x81\x9f\x3f\x27\x83\x6b\x45\x9b\x8a\xb6\xd5\xa0\xb7\xf7\xe5\x79\xd4\xdf\x8f\xa4\x4a\xd5\xf0\x7c\xa2\x74\x78\x86\xe7\xea\x48\x24\xac\x60\x78\xc6\x98\x16\x4b\xba\x7a\x6d\x72\xd1\x0f\x35\x9b\x8d\xcd\xef\xf9\xb4\x2b\xe1\xf6\xd3\xed\x6f\x04\x6e\xc2\xa0\xf3\x71\xbc\xb9\x82\x3f\x4b\x57\xe4\x17\xae\x4a\x16\x54\x41\x9e\x89\x96\x4c\xc5\x72\xb5\x86\x94\x02\xc1\xc8\x61\x06\xb9\x6e\x06\x64\xc1\xea\x95\x34\xa1\x2f\x62\x6d\x58\x5e\xb7\xc0\x0c\x5c\xc1\x03\x45\x1f\x46\x90\xdc\xac\xeb\x84\xa5\x25\xeb\xba\x8b\x56\x31\xd5\xeb\x3d\x70\x98\x2a\x21\x48\x65\x9e\xa4\x3d\x4b\x68\x9c\xd9\x82\xda\xaa\xc9\xed\xcc\x34\x16\x6b\x65\x5c\x10\x55\xf8\x6c\x3d\x72\x4e\x14\xbd\x12\x60\xce\x45\x95\x30\x34\xad\x81\x55\x4d\x2e\x74\x0b\x7e\xf4\x9e\x65\xd3\x24\x6b\x34\xb0\xc8\xc8\x69\xd0\xfe\xad\x06\xf2\x2e\x13\xe8\x41\x30\xb8\x07\xfb\x3c\x3e\x25\x83\x41\x06\xaa\xfe\x68\xfa\x8c\x78\x23\x59\xab\x86\xef\xd9\xd6\x1a\x8d\xd0\x31\x3d\xb6\x7e\xde\x7d\x30\x69\x80\x05\x86\xf3\xf5\xf6\x22\x37\x20\x0b\xb2\x8a\x30\xa3\xf6\xeb\x53\xdc\x06\x6d\x45\x99\xb6\x4a\x31\x19\x9e\x75\x50\x08\x98\xb2\x81\x30\x0b\xa5\x56\x72\x7c\x72\xd2\x4c\xa8\x12\x2b\x09\xb5\xe8\xc4\xf2\x04\xc7\x39\x19\x74\x11\x27\x70\x64\x78\xc1\x35\xa5\x4d\x15\xba\x0e\xba\xd4\x6e\xf6\x6c\xc2\x55\xc7\xb2\x83\xcb\x09\x6f\x68\x1a\x93\x06\x89\xe0\x30\xf6\x9b\x36\x55\x1c\xae\x7d\x72\x42\xfe\xec\x3c\x4c\xff\x81\x3f\xfe\x79\x27\x45\x02\x77\x46\x4f\xdc\xe1\x47\x08\x8f\x62\x1e\x39\x5c\x2c\xbb\x8b\x00\x1a\x93\xff\x18\x1c\x05\x64\xf6\xb6\x4e\x96\xde\xde\xf2\x79\xa0\x73\xcb\x91\x25\x06\x95\x92\x29\xcc\x72\xb7\x27\x6f\x40\x0f\x39\x8a\x59\x44\xab\x81\x77\xe1\x10\x9b\xc3\x8a\x02\x63\x2b\x41\x2a\x34\xa7\x08\x6d\x08\xea\xf2\x44\xf2\x1f\x59\x45\x40\xf7\xee\x9f\x4c\xa0\xfb\xf7\x4f\x07\xdf\x2b\x40\x75\x8e\xef\x20\x4e\x82\xd6\x90\x1a\x4b\x7a\x21\x0f\x1e\x6d\xdc\x02\x3d\xdf\xf0\x4a\x2d\x4e\xff\xeb\xd3\x5f\x0f\x8e\x8e\xf1\xea\xfe\x9c\xd5\x7c\x39\x26\x83\x4f\x06\xc5\x0a\x17\xc9\xdc\xba\xd0\x8b\xa4\x66\xf6\xbe\x1b\xdb\x0b\xc8\xf8\xa8\x53\xfd\xf5\x7f\x7d\x7e\xbf\xa9\x82\x55\x70\xe7\x69\x1a\x53\xe5\xe3\x4c\xf1\x04\xa0\x27\xd3\x7b\x5e\x9e\x1e\x8c\x21\xb1\x72\xbf\x19\x89\x34\x4c\x6d\x44\xfb\x9e\xac\xf4\x90\x50\x16\x08\x53\x9b\x1a\x13\xc2\xc4\xf7\x57\x3c\xff\x3a\xa2\xdb\x8a\x45\xfc\x71\xea\x21\x92\xae\x12\x73\x96\x2e\x7c\xe6\x24\xd5\x15\x62\x37\x3c\x22\xa7\xa7\x64\xa0\x98\x54\x0d\x53\xb9\xf3\xcf\xd0\x72\xdd\xd6\x96\x3e\xdd\x78\x1d\xc9\x2c\x80\x3d\x8c\xb2\x75\x5b\x32\xca\xac\x69\xd1\x60\xa5\x55\x3f\x01\x9b\xc9\xf8\x00\x61\x41\x50\xe3\xbe\x4b\x74\x47\xb8\xb2\xf5\x60\xa0\xd8\x63\x3e\x93\x86\x26\x25\xa6\x39\xfb\x46\xc3\xf6\x53\x9d\x8d\xc9\xd7\xa9\x52\xdd\x35\x28\xe4\x4a\xf9\xf2\x69\x57\x98\x35\x0b\xb7\x99\x29\xcf\x53\xf4\xf5\xd5\xc5\xcd\x57\xa1\xbc\x23\x61\x61\x6a\xc8\x11\x8a\x85\x9b\xb5\x9a\x4c\x6b\x42\xd7\x6a\x21\x5a\xfe\x23\x1e\x7f\xc1\xa3\x20\xdb\x0b\x52\xe6\xfa\xd5\xfc\x95\x20\x2b\xd6\xce\x44\xbb\xf4\x32\x67\x05\xa5\x5e\x4d\xc5\x64\xb5\x70\x65\x5e\x6d\x9d\x66\xaa\x07\x56\x61\x7d\x9c\x63\x28\xda\x8b\x41\xc3\x61\xb5\xd4\x47\x31\x89\x1d\x82\x38\x95\xe0\x85\x11\x92\x08\xab\x5e\xc1\x3f\x6d\x16\x65\xf8\x2a\x7a\xdd\x62\xf2\x18\x4a\xac\xca\xcf\x5d\xaa\x60\x2c\x50\xe1\xd9\x9d\xdc\x16\x4b\x46\xc6\x90\x4b\xda\x2a\x57\xc0\xcc\x03\xe7\x43\xf6\x53\x1d\x76\x35\xed\xcf\x7c\xb0\xa6\xb6\x7f\x17\x9f\xa6\xb8\xaa\x99\xad\x3a\xc4\x5b\x12\x6b\xea\xf9\x0f\xfb\x40\x97\xab\x9a\x8d\xc9\x4f\x70\x8b\xca\x5a\x62\x4c\xcd\xc1\xff\xb0\x5b\xde\x90\xf3\x75\x4b\x1b\x35\x38\x76\x21\x02\x63\x32\xf8\x82\xcc\x18\x53\x83\x9f\x77\x43\xb7\x9f\xe1\x84\x4d\xe9\x5a\x32\xb2\x81\x04\xca\x98\x60\xc6\x1f\x00\x03\xdb\x15\xf9\xfc\xc9\xef\xbc\xed\x59\xc8\x79\x18\x26\x7d\x74\x0b\xe4\x25\x4a\x23\xfd\x09\x0d\xbb\x85\x1e\x76\xd4\x75\x26\x04\xfe\xff\xe7\x52\xa5\xf8\x4e\x06\xf8\xa3\x27\x3e\x83\x86\x6d\x4c\xda\xa7\x68\x1c\xfb\xaf\x34\x6a\xbc\x61\x1b\x78\xb6\x67\xba\xda\x2a\xf1\xf1\xe8\xe1\xa3\xb0\xcb\x73\xbf\x06\x12\x87\xe4\xcb\x60\x05\xd2\x39\xe5\xa1\x73\xc5\xaf\x06\xf8\xda\xbe\x21\xcc\x7c\x59\x4c\x21\xea\x8a\xea\x20\x01\xaa\x21\xaf\xc6\x11\xb6\xc7\x24\x37\xd3\x78\x0a\xd7\x5e\x2d\xbf\xb0\xd6\x72\x4f\x3d\xbf\x95\xab\xfc\x06\x84\x7a\xd7\x51\x2a\x6b\x71\x43\xa3\xbc\x10\x3f\x21\x37\x4c\xcb\x1d\xda\xf2\x7a\x4b\x58\x43\x27\x35\xab\x90\x8c\xd9\x17\x26\x2b\x5b\x6f\x78\xc2\xa0\x48\xef\x8c\xd7\x75\x90\x3b\x69\x9f\xbc\xe8\x2b\x53\x81\x6d\xbd\xaa\xc2\x27\x58\xe1\xe6\x31\x6f\x2a\xf4\x6e\x97\x78\x3c\x62\xde\x51\x5c\x53\x19\xbc\x06\xb1\xc1\xc4\xab\xb0\xcc\x5f\x64\x87\x85\x28\x14\x37\x05\xe2\x05\xa1\x14\x08\x3e\xc9\xec\xe9\x50\x73\x07\x78\x76\x83\xc0\x3b\x94\xe5\xca\x70\x7f\xb1\x6e\x5f\x72\x88\x77\x89\xa9\xcd\x03\xd7\x28\x8d\x5d\xca\x46\xdf\x03\xca\x6e\x6a\x4f\x64\xf6\x45\x8a\xc1\x65\x84\x13\xb4\x93\x73\x93\x31\xff\x48\xa1\x9b\x77\x38\x1e\xf4\xe8\x4d\x9e\x61\xb4\xc8\xac\x0b\xd5\x05\x14\x35\x50\x1d\x36\x38\x52\xfc\x9a\xff\xe1\x41\xe2\xf7\x36\xdb\x43\x5b\x2d\x4e\xe0\x47\xe7\xc9\x01\x27\x09\xde\x25\x6b\x96\x68\x8a\x85\xfe\x8b\xd6\x7c\xc7\x45\xa6\xf6\x6e\xb1\x32\x74\x27\x61\xaf\x59\x54\xab\x74\x6f\x91\xea\x23\x45\x3a\x89\xaa\xa9\xd6\xa5\x82\xed\xc0\x63\x15\xcf\x7e\x41\x89\x8f\xa2\xef\x22\x2b\xaf\x4b\xd5\x54\xcb\x92\x32\x12\xe7\xd7\x4c\x99\x77\x85\xa9\x3c\xbd\x66\xca\x8a\x53\x63\x8e\xfb\x1d\x8e\x5d\x52\xcc\x6c\x85\xfd\xdd\xa2\x35\xe0\x1d\xf0\xc1\x65\xe7\x09\x39\x1f\x8d\x5c\xfd\xf2\xe9\x63\x83\xc3\xa1\x82\x95\x60\xc6\x7a\x64\x6e\x6b\x1c\x7b\xb5\xea\x85\x2d\xae\x1c\xf0\x70\xb0\x5f\xa2\xaa\xfb\x5e\xa9\x76\x57\x65\xdf\x54\xd8\x27\xa2\xe9\x29\xfc\xe5\xf1\xbd\x21\x6b\x21\xbf\xdf\x56\xac\xc9\x86\x26\xd5\x7d\xe7\x4c\x45\xb8\xef\xda\x25\x67\xe1\x4c\xed\x20\xce\x15\x6a\x06\x46\x3f\x68\xac\x47\xda\x39\xb1\x0f\x2b\x21\x77\xa7\x65\x76\x96\x97\x23\x78\x94\x61\x74\x0c\x69\x3b\xef\x9f\x67\xd4\x94\x65\xc0\x61\xb0\x94\xaa\x2d\x9c\x16\x94\x7a\xd8\xa3\xf8\x42\xcc\x0a\x7e\x61\x0d\x67\x25\xc5\xfd\xb4\xd2\xf8\xe7\x4f\xfe\xec\xbf\x5e\x36\x35\xf0\x22\x48\x26\xfb\xb5\x06\xa6\xe2\x54\x13\x06\xfa\xde\x19\x4e\x43\x9e\x96\x8a\xb6\xea\x4a\xef\x07\x78\x68\x07\x46\x34\xc8\x41\xdc\x88\xf6\x01\x1e\xe4\xf2\x35\x02\xc7\x4f\x72\x6b\xea\x7b\x47\xef\x1b\x97\x8c\x36\xf8\x4e\x8d\xaa\x38\xc5\xbe\x2d\x2c\xcb\x03\x2e\x81\x3a\x7f\x9a\x1c\x56\x46\x06\x10\xf7\x11\xe1\x7b\x75\x8a\x25\x79\x38\xfb\x61\x8f\x08\xff\xa6\xa9\x72\x74\xc1\xc3\x4d\x1b\x3d\x78\xf2\x89\xe8\x78\xd6\x52\x23\x24\x5d\x68\x2f\x65\x11\xf6\xf9\x36\x10\x88\x9e\x98\x0e\xbf\xef\x57\x6a\xdd\x04\xaf\x35\xa6\xac\x1a\x36\x6c\xf3\xd2\xef\xbf\x9f\xfc\x8d\xe2\x35\x82\xa6\xfd\x0a\x82\x57\x7e\xc0\x28\x05\x56\x5f\x80\xe3\xd0\xfd\xfc\x8a\xae\x32\x46\xb6\xcf\x22\x56\x57\xb4\x05\x6a\x82\x84\xfc\x1d\xa0\xfc\x7b\x48\xef\xec\x0e\x8b\x8a\x58\xb4\x92\xe2\x87\xa5\xda\x25\x92\xde\xb2\x2f\xbf\x4e\x2a\x97\x78\xa7\x77\xf8\xd3\xf0\xe8\x98\x28\x71\x68\x51\x93\x68\xa7\x66\xca\x36\x10\x8d\x88\x24\x9b\x05\x9f\xfa\xd3\xf7\x5f\x8d\x4e\x58\x2d\x9a\xb9\x2c\x8b\xf8\x40\x89\x9a\x65\x0e\x13\xff\x35\xdf\x01\x15\x01\x0e\x40\x27\x84\xd9\x7b\xa0\x1d\x54\x76\x29\x6f\xab\xdc\xa1\x98\x63\x22\x37\x7a\x4a\x68\xf4\x15\x06\x48\x52\xa5\xac\x7a\x0b\xd9\x86\x01\x03\xe8\xd4\xf9\x47\x2b\xa8\x13\xe1\xdf\x5f\x7d\x64\xa6\xfa\x6b\x0b\x78\x65\x47\x0e\x28\x64\x1d\xef\xf9\xd8\x5a\xf1\xb6\xd3\x7e\x6e\x30\x4f\xd0\x64\x9c\x61\x11\x81\x1d\x91\xee\x6e\xc4\x64\x0b\x8d\xf8\x9f\x07\x72\xa3\xed\xe9\x90\xf2\x08\x76\xa8\x5b\xca\x5f\x73\xcf\x76\xf2\x1d\x2b\xfb\xba\xaa\xfe\x19\x36\x87\xbd\x26\x89\xf6\x48\x9e\x56\x78\xe5\xed\x08\x95\xba\xda\x72\x5c\x7f\xc5\x36\x48\x9a\x90\xe7\x77\x73\x66\x7e\xfd\x2c\x38\xf0\xd9\xc7\x5e\x66\x12\xf8\xe6\xcd\x49\x68\x9a\x17\xbd\xee\x36\xfb\x34\x54\x9a\x68\x14\x6b\x67\xd4\xa6\xdd\x5a\x4b\xd6\x4a\x63\x19\x49\x65\x58\xd6\xc8\x6b\xef\x66\x82\x5a\x7f\x38\x98\x60\x75\x2d\x36\x44\xa8\x05\x64\xfa\x11\xc4\x94\x39\x71\x8a\x02\x6f\x1c\xf3\x7b\xc5\x50\xc8\xa5\x22\xb4\x96\xc2\x7a\xf3\x67\xa2\x25\x2d\xa3\x95\x55\x75\x8d\x9a\x6b\x4a\xd7\x77\xb0\x4c\x26\x06\x07\xc7\x34\x3e\x21\xe7\x6c\xd5\x32\xad\xcf\x57\x63\x37\xc3\x46\x10\x7d\xf6\xb1\xb6\x0b\x64\xa9\xd8\x8c\x83\xa6\x8c\xd4\x46\x03\x51\xd4\x84\x36\xdb\xa5\x68\xd9\xa8\xec\xe1\xef\x48\x85\xd8\x74\x48\xbc\x5e\x4f\x6a\x3e\x25\x99\xac\x63\x49\x9b\x7c\x4a\x6d\x57\x15\xe7\xdc\x2f\x11\x23\x77\x5d\xd2\x1c\x95\x81\xc1\xde\x33\x55\x25\xbb\x4c\x49\xda\x8c\xbb\xba\xb8\x89\x1f\xfb\x77\x19\x6e\x5a\x26\xd7\xb5\x75\x65\x40\xf0\x2f\x30\x49\xe5\x95\x0a\x5f\xb7\x0d\xab\xba\xc3\x3b\x06\x64\xca\x5f\x4f\xd0\xae\x90\x10\xab\x80\xac\x46\xdb\xf9\x7a\x69\x32\x47\x81\xe1\x6a\x2e\x68\x42\x93\x52\xc8\xd8\xca\xd4\x9f\xa1\x41\xec\x14\xec\xc8\x23\xf2\xb7\xbf\xd9\xaf\x9e\x43\x82\xb1\x53\xc2\xab\x42\x64\x6f\x64\x72\xc6\xca\x47\xac\xaa\xa4\x33\xd4\x8c\xc4\x9b\xa9\x68\x5b\x36\x4d\xec\xd2\xd2\x1e\xf3\x36\x0b\x47\xa7\x85\x9f\xdd\x8e\xdd\xb2\x76\x0b\x9b\x8d\x6c\x16\x82\x88\x4d\x23\xfd\xdc\x76\xa8\x78\x4b\xf4\xbc\x34\x66\xef\x18\xf1\x0a\x7a\x38\x6d\xe8\x9c\x99\xef\xaf\x2e\x6e\xae\x1f\x91\x1d\xb7\x53\x1d\x3a\xe3\x02\xf7\x1e\xf7\x31\x6f\x78\xaf\x75\x1e\x04\x41\xba\x5a\x06\xcd\x4c\xb4\x4b\x74\x30\x6b\xe6\xf5\x7b\x5c\x5d\xdc\xc4\x64\xd8\xae\x98\x71\x65\xd8\x2c\x5e\x97\xe7\x91\x3f\x29\xae\xa6\x22\x36\x0d\xab\x34\x99\xf4\xbe\xc0\x4e\x63\x92\x0f\x0d\x8c\xcb\xa5\x64\xb3\xaf\x3a\x78\x5a\x76\xfe\x54\x2a\x81\x6e\xdc\xb6\x94\xd4\x5c\x42\x9e\x3f\x28\xb9\xb9\x5d\x31\xe9\x15\x42\x68\xd9\x94\xf1\x5b\x06\xab\xc4\x56\x6a\x77\x72\x98\x6b\x9b\x81\xe6\xea\xe2\xe6\x46\x03\x83\x82\x15\x78\x77\x9a\xab\x90\x81\x47\xaf\xe9\x03\x1d\xa2\xe6\xa7\x71\x24\x59\xd8\xfa\xad\x7f\x21\xfb\x2e\x57\x34\xde\x1d\x8c\x7e\xb7\x7e\x9a\x6c\x16\x4c\x4b\x7d\x22\x5a\x70\xab\x47\xa9\x49\xf4\x82\x03\x35\xb0\x30\x11\xde\xcb\x64\x6a\xb2\x91\x33\xef\x7b\x53\x13\x89\x36\xa6\xaf\x96\xcb\x08\xce\x08\x96\xbf\xac\xa5\x72\xf9\xa2\xda\x35\xd3\xa0\x4d\xc0\x6d\x3f\xd1\xb9\x8c\x69\x3e\x54\xee\xaa\xfa\x08\xc9\x98\x86\x0e\xc0\xd0\xa7\xa7\xc1\x7d\x76\x4f\x02\xab\x98\xa8\xd9\x60\x80\x19\xad\x65\x36\x2c\x29\xbc\x24\xa0\x4b\x5b\x32\x11\x78\x14\xc4\x41\xd5\xdd\x70\x25\x94\x2c\xb1\xda\xb7\xac\x99\x63\x50\xd3\x65\x13\xcb\x56\x3f\x68\xc4\x6d\x87\x51\x0d\x3d\x0a\x18\xfe\x8b\x05\x2c\x84\xfe\x10\xb5\xa8\x5a\xba\x21\x2d\x5b\x8a\x5b\xf0\x45\x59\xf1\x67\xea\xca\xb2\x40\x4b\x6a\x2a\x82\xed\x8a\x93\x2f\xdb\x25\x76\xac\x9d\xce\x01\xbc\x7e\xb0\xe5\x04\x11\xb3\x2a\x87\x4f\x61\xd0\xd6\x5a\x1d\x5f\x67\x73\xa6\xc2\xfd\xa0\xfe\xab\x2b\x33\x6c\x51\x4b\x58\x2f\x01\xf0\x83\x69\x89\x2b\x6b\xfb\x0d\xfd\xb9\x75\xd5\xbb\xf3\x92\x3c\x55\x55\x5e\xe0\x41\xde\xcc\xd0\x3b\x3b\x5d\xb0\xe9\x7b\xc8\x57\x97\x16\x4f\x82\x6b\x93\x99\xb2\x21\xd6\xa8\x02\x5c\x5d\xdc\x78\x18\xf4\x99\x18\x81\xe6\x30\x36\xfc\xee\xf4\x82\xd8\xb2\xe8\x02\x8d\x8a\x11\xed\xcd\x4c\xe5\xa4\x47\x38\x9c\xc5\x6d\xec\x65\xe1\xc4\xb9\x25\x91\x46\x31\x69\xde\xc0\xea\xa3\xd5\x38\xcb\x32\x65\x42\x1e\x5c\xdb\x2f\x9f\xc6\x32\x00\x19\x09\x23\x7f\x0f\xa2\x56\x82\x7e\x78\xed\x9a\x0a\xb0\x98\x8e\xe0\x40\xb5\x9c\x03\xca\x2b\xe0\x08\xe5\x51\xd1\x74\x74\xa8\xb6\xcf\x47\xb4\xaa\x5a\x26\x33\x17\x57\x9e\x24\x75\x0c\x8b\x90\x0a\x82\x22\xfc\x2d\x53\xc2\xd4\xe2\xe4\xe0\x49\xb2\x5c\xd7\x8a\xaf\x6a\xb3\x45\xe4\x43\x94\x22\xe5\x95\x1c\x93\xb3\x86\xd0\xb6\xa5\xa0\x60\x69\x13\x48\x09\x37\xe8\x2e\xe7\x41\xba\x8d\x7d\xe5\x2f\x73\xd6\x9a\xc2\x41\x25\x47\x47\xcf\x27\xa4\xed\xb2\x5c\xb5\x7c\x3f\xf9\x10\x10\x79\x08\x74\x78\x8b\xe2\xe1\xdd\xa1\xe2\xdf\x7f\xb3\xa3\x8d\xef\xf8\xa8\x0a\x1a\x6b\xdd\x12\xc6\x3e\xb0\x40\xa8\x36\x9b\x14\x6b\xf1\x0a\xa9\x15\xeb\xf9\xc2\x58\x4b\xc8\x07\xee\xb4\x00\x46\xd8\xb5\x17\xf5\xd9\xc9\xe1\x78\xd7\xfd\x53\x19\x11\x21\x98\x16\x13\x35\x39\xe0\x73\x32\x96\x57\x47\xbb\x25\x47\x69\xb7\xc8\xc2\x76\x89\x10\x2a\x6c\x1c\xeb\x0c\x50\xf4\x3d\x78\x42\x8c\x4c\xd0\xf4\xa1\x55\xe5\x9f\x8c\x1d\x28\xdf\xc3\xd7\xb7\x61\x70\xbf\x18\x02\x28\x5b\x0c\x1f\x8e\x41\x33\x6c\xaf\xbe\xd4\xe3\x79\x89\x88\x5b\x38\x9a\x32\x09\xb6\x5f\x1a\xaf\x89\x87\x00\x0a\x58\x90\x03\x9e\x6e\x84\x66\xdc\x7b\x46\xe4\xba\x4d\x6c\x68\xae\xac\x7b\xc6\x58\x9d\xe9\x15\x64\x20\xba\xed\x10\x8f\xa1\x9c\x78\xf6\xae\xd4\x1d\xe3\x69\xd8\x09\x26\x37\x87\x3a\x00\x28\x66\xb3\x6f\x99\xac\x27\xd2\xe8\x02\x26\xb6\x29\x5d\x27\x0b\x51\xd4\xd5\x4d\xfe\x68\x79\xcb\xab\x77\x9d\xbc\x8d\xc7\xfa\xae\xa9\xb7\x26\xd3\xb4\x63\x1e\xcc\x07\x6d\x52\xd7\x16\xf6\x8f\x26\x1b\xf8\x87\xd0\x74\xd0\xaa\xf3\x13\x99\x8d\xff\xe2\xb3\xdc\x01\x62\xae\xa8\x33\x3b\x0f\x90\xb1\x8e\x19\x7d\x1c\xe9\x83\x48\x89\xc2\x31\xe4\xf7\x4c\xb7\x99\xc9\x65\x8d\xe5\xf4\x40\x26\x89\xba\x8a\xf5\xab\x81\x51\xe2\x42\x5f\x83\x49\x99\xed\x08\xdb\x77\x52\x9d\x47\xbb\x2e\xad\xea\x4c\x4d\xc9\x6d\x74\xc9\xc4\xee\x77\x43\x78\x49\x18\x9d\x2e\xec\x09\xc1\x2a\xb4\xe3\xd1\x9d\xc7\x65\x6e\x25\x1e\xc2\xa9\x95\xee\x2a\xb8\xec\xf7\x4e\x44\xeb\x18\x8c\xf6\x7a\xc2\x83\xf0\x66\xca\xf0\xb5\x1c\xcd\x99\xba\x3c\x97\x7b\x0a\x71\xe8\x9a\xc8\x0e\x9f\x38\x48\x9b\xf8\xf6\x59\x8b\xf1\xf7\x0c\x2e\x26\x0a\x2f\xb6\x4c\x56\xca\x58\x7a\x1b\x24\xb3\xf2\xfb\x3d\xdb\xee\x14\xe0\x29\x67\x15\x36\x8a\xe5\xa3\x48\xb8\x87\x5c\xa4\xf5\x4d\xc7\x3d\xc8\x9e\xbc\x42\xa9\x4d\xaa\x75\x8b\xc1\xd9\x5c\x1b\x8e\x53\x61\x1f\x01\xe8\x3e\x32\xb4\x4c\x5c\x5d\x05\x8c\x2c\xa4\xca\x75\xde\xa9\x1a\x60\x2c\x1e\x72\x91\x86\xec\x79\x31\x8f\x1d\x94\x31\xf9\xfe\x82\x7f\xf8\xfc\x37\x19\x9e\xf9\x48\xaa\x30\xaf\xf6\x50\x81\x35\xbe\x77\x56\x7f\xad\xbd\xaa\xc5\xce\xd5\xc5\x0d\xd2\xa1\x1a\x7e\xd2\x9d\x23\x6b\xb5\x28\xd3\xab\xf4\x56\x36\x61\x98\x15\x95\xd2\xb7\xee\x50\xa2\xd7\x68\xba\xa4\x61\x80\xc4\x06\xaf\x98\x70\x30\x08\x71\x33\xa1\x25\xdc\x96\x32\x9d\xd0\xe9\xfb\x3b\x9c\x04\x91\xd9\xa4\x71\xd0\x46\x5a\x33\x53\xdd\xd6\xf0\x17\xdd\xfe\x2b\x9a\xd4\x21\x12\xf2\x5b\x8f\xc1\x7d\xc9\x62\x58\x5d\x96\x79\xdd\x07\xa5\x0f\x6a\x14\x1e\x32\xab\x02\xc2\x96\x40\x41\x61\x63\x6b\xcd\x73\x60\x56\xdd\x6d\x2b\x38\xe4\x43\xfd\x78\xaf\x2d\xd1\xa7\xac\xe2\x86\x5f\xb0\xe5\x41\x4a\xa9\xab\x60\xec\xce\xc5\xdc\x22\xf9\x3d\x4a\x5e\xd6\x75\xd3\x23\x72\x94\xd2\x12\x0d\xe4\xbd\x69\x17\x86\xb5\x46\xfc\x83\x6d\xf4\x59\xe5\x8a\xa2\x4e\xd6\x92\x37\xfa\x94\xaf\xc5\x9c\x4f\x09\x6d\xa1\x0c\x94\x01\xc6\x6a\x3e\xe7\x13\x5e\x73\x95\x44\x33\xf7\xae\x05\x76\xf7\xaf\x57\xfe\x2d\x86\x0e\x16\x43\xaf\xb3\x62\x28\x5c\xd1\x2e\x8a\x53\x2d\x18\xf8\x34\xf5\xce\x4b\x84\x8d\x1f\xad\xaa\x7f\x74\xa1\x7c\xce\xcf\x7f\x2f\x7d\xb5\xc4\x65\xa1\x9c\xba\x87\x4c\xfa\x3e\xd8\x03\x39\xa9\x74\x88\xec\x41\xfc\x8c\xf4\x41\xdd\x79\x4b\x68\xcb\x0c\xbb\xd7\xc9\x03\xd2\xdd\x72\xe7\x7b\xcb\xf0\xbe\x65\x7e\x98\x9c\xb1\x58\xdd\x4d\xd4\x78\x3b\x2e\xde\x01\x25\xc1\x62\x16\xc0\x5e\x20\x9b\x3f\xa5\xf5\x56\xe0\x46\xe0\xb2\x70\x35\xe1\xa1\xdb\xf5\xf0\x68\x19\xf9\x1c\x0f\xf0\xea\x68\xf1\xe4\x97\x5c\xc2\xbb\x74\x50\x67\x4d\xb9\x9b\x5e\x61\xb1\xcf\x9a\x85\x53\xef\x5f\x36\x14\x3c\x3e\x83\xef\x1b\xde\x11\x6d\x8b\x5c\x8c\x47\xf0\xdb\x21\x01\x1e\x91\x18\xd8\x3b\xc8\x63\x17\x33\x1d\x2e\x98\xc9\x3d\x85\x33\xc9\x09\x68\xb3\x40\x3d\x32\x7a\xea\xb9\xee\xdc\x8b\xf2\xf0\x31\x79\x34\x75\x33\xbd\x6f\xd0\x82\x76\x3e\x28\x34\xa1\x17\xac\x65\x2e\x12\x7e\x55\x53\x35\x13\xed\x52\x92\x4a\xc0\xa8\x0b\x7a\xcb\xf0\x8c\xad\x58\x2b\x95\xde\xae\x66\x01\x9e\xba\x24\x26\x00\x07\x4e\x62\xc9\xcc\xf3\x4b\xb9\xe0\x2b\x32\x5d\xd0\x66\x9e\xd6\xe9\x81\xdb\xbd\x8d\xef\x37\x15\x6b\x05\x29\x0e\xda\x96\xc9\x95\x68\xa0\xb8\x86\xb5\xa8\x96\x8c\x9a\x02\xe6\x68\x68\x92\xbf\xae\x99\x04\xf5\x6b\x41\x21\x98\x03\x9f\x7b\x1a\x5b\x3b\x6f\xa8\x07\x8e\xe3\x43\x5c\xc6\x06\x5d\xbb\x06\x0b\x78\x1b\xe3\x27\x97\xb0\x6f\x0a\x33\xf7\x0c\x04\xb2\x0c\x27\xbb\xc7\xc8\xab\x17\xdb\xcb\x73\x27\xb3\x92\x7e\x81\x3d\xb6\x97\x48\x43\x43\xb6\x7b\x11\x91\xb3\x8c\xf5\x02\x53\x17\x3e\xb0\xcb\x54\xf7\xaf\x0b\xc1\x46\xee\x04\xc5\x5e\x17\x86\xda\xd4\x2d\x9d\x6c\xf6\xce\xc5\x7a\xa8\x09\x35\xdf\x05\x31\x16\xf0\x94\xc3\x55\x5d\x29\xdf\x5c\x05\xef\x38\xf0\x32\x0d\x6e\x8b\x5b\x46\x2b\xc2\x55\xe0\xdc\xea\x93\xc6\x99\x4b\x35\x8d\xc3\xdc\xb8\xca\x3a\xc4\x66\x62\x67\x2c\x7c\xe6\xa1\x46\x78\x47\xe7\xf7\xba\x12\x90\xfd\x5f\x1f\x39\xa2\xa9\xb7\xfe\x63\x66\x33\x1d\x78\x2e\x4f\xab\x28\x0a\xf0\xea\xe2\xe6\xd8\x87\xa3\x39\x11\xee\xc6\x31\xf3\x44\x98\x66\x68\x44\x5e\xd7\x8c\x4a\x88\xdc\x0e\x62\x81\xa2\x20\x60\x18\xc7\x0a\x1f\xdd\x6f\x97\x73\x34\x7a\x27\xa2\xb5\x9f\x3f\x91\x30\xbe\x28\xaf\xf8\xc5\x21\x47\x86\x8f\x3e\x49\x55\xad\x5e\x3e\x72\xd1\x3b\xfb\xb1\xd2\xbe\x8c\x83\xa9\x83\x9a\x2a\x7c\x0f\x04\x67\x02\x0f\x2b\x81\xdd\xe8\x93\x5f\xf7\xc3\x97\x13\x78\xef\xea\x98\x2f\x88\x91\x0d\x0b\x0f\x06\x8b\x27\x5a\x58\x3b\xb3\xb4\x92\x41\x15\x43\xfd\xed\xeb\x2e\x91\x51\x94\x24\x42\xeb\xb4\xdb\x48\x0a\xb8\xc7\x0d\xf8\x16\x4d\xb4\x66\x64\x73\x0d\x45\x4d\xe5\x22\x21\x99\x9f\x2d\x29\x76\xd1\x84\x2f\xc8\xb3\x2c\xf0\xf7\xdc\x3e\x3d\xec\xb7\x6f\x7c\x9b\x2f\xb4\x3a\xc6\xe5\xd5\x11\xf8\xcc\xa1\x47\x8e\xeb\x7a\x46\xfe\x23\x67\x9b\x37\x98\xd3\xa2\x8d\xc6\xff\xc9\xff\x6d\x64\xff\x91\x6c\x00\x53\x60\x0d\x6f\xa7\x33\xdb\xa0\x27\xef\x59\x0c\xca\x9b\x22\x5c\x8a\xcb\x22\x12\x85\xe3\x85\x94\xb2\x07\x92\x20\xa6\xed\xe9\xc3\x7c\x2c\xb8\xf8\xc5\xe9\xd3\x9a\xdd\xb2\xda\x85\x05\x9a\x48\xcd\xee\x6d\xc9\x03\x62\x60\xe1\x65\x63\x42\xc2\xb8\xdd\xe3\x34\xcc\xc5\xb8\xd0\x8d\x40\xb1\xb0\x28\xc6\xf3\x69\xd9\x20\xc3\x37\x93\x5e\xf0\x9e\x55\x9e\x6d\xa7\xef\x80\xe9\xb5\x4c\x01\xe5\x2b\xf0\xd4\xbb\xce\xa6\xd3\x71\x67\x76\xd0\x09\x5c\x39\xdb\xb0\x33\x0b\xcd\x8f\x92\x6d\x69\x23\x29\x5e\xa7\xd9\xd1\x1e\xc5\x4c\x5d\x0e\xb7\x09\xc2\x62\x0e\xb9\x7c\xe5\x33\x62\xfa\x92\xc7\xbd\x51\x53\x56\xc9\x37\xc1\x74\x56\xb9\x72\xe1\x67\x83\x38\x7e\x99\xe4\x42\x9d\xad\x71\x12\x5c\xd2\x86\x5c\x3b\x67\xea\xac\xae\x31\x8d\x86\x3b\x37\xea\x9a\xd8\x77\xd8\x48\x2e\x3c\x45\x7d\x42\x05\x22\xca\x53\xb1\xc2\xbe\x70\xa4\xc0\xda\x41\x5d\x53\xf3\x96\x39\xa1\xb4\xaf\x60\x59\x6c\x40\xcb\xd2\xff\xf2\x75\xac\xe8\xc5\x97\x7b\xe5\x3e\x82\xbc\x6b\x32\x9d\x9b\x9f\x69\x2e\x99\x9f\x7b\x85\x10\x9f\x26\xb4\xd3\x17\x5c\xb6\x89\x6e\xde\xa5\xe4\x03\x5d\x1c\x70\xf7\xa0\x87\x4b\x32\x61\x58\x7a\x91\xb6\xd3\x85\x99\x7b\x86\x86\x37\x21\x3e\x84\xda\x74\x3d\x4a\xd8\x7f\xd9\xc7\x13\x36\x9d\x50\x2f\x19\xb3\x29\xf6\xdc\x6b\xd5\xf8\x49\xc3\xf3\x94\xc6\xae\xf6\x75\x90\x46\xe0\xf9\x28\x48\x4b\x58\xa4\xb5\x29\x39\xe0\x47\x7b\xf4\x90\xdb\x02\x29\x7c\xdc\x62\xc0\x31\xed\x72\xda\xf9\x88\x94\x3b\x7f\xf3\x61\x1c\x54\x99\x19\x60\xf8\xb0\x9d\xa5\xd0\xea\x8c\x17\x55\x5f\xf8\xd4\xfc\x3d\x23\x83\x57\x6c\xb9\xd2\x4a\xcd\xef\x5b\xfe\xe3\x8f\x35\x67\x72\xf0\x11\x58\x23\x18\xd7\x60\x7e\x63\x5f\x32\xa3\x69\xa9\xdb\x3b\xdd\x61\x17\x33\x61\x3f\x9f\xa5\xbe\x3b\x94\x81\xe2\x02\x12\xf6\xb1\x98\xc1\x2e\xca\x30\xf5\x3c\x8a\x87\x16\xcd\x13\xb8\xe2\x9a\x32\x08\x71\xbe\x65\xad\xbb\xad\x36\x0a\x99\x68\x0d\x96\x70\x47\x7d\x4b\x6b\x2f\x0d\xae\xd1\x04\x56\x3b\xf2\x5b\xe4\x75\x1a\xfd\xa3\xe3\xd8\xb7\x30\xc6\xbb\xb2\xe0\xb4\xa7\x7b\xc0\xd5\xd7\x46\xfd\xf4\x39\x19\x9f\x2e\x59\x75\xb9\xbb\xb3\xb0\x79\x14\xc2\x45\x84\xf2\xb7\x01\xc7\x8f\x7a\xd8\xc6\x7b\x6d\xd8\x71\x8d\x7b\x6d\x78\x90\x3c\xf9\xdf\x35\x6b\xb7\x16\x7f\x7c\x49\x66\x25\x72\x27\x04\xbb\x94\x50\x1c\x42\xd4\xf1\x42\x87\x4e\xc4\xda\x25\x72\xc8\x9e\x8c\x1d\x69\x92\xb7\xf0\xfe\xb8\xcf\xc3\xd3\x2f\xf7\x24\xfc\x34\x17\x5a\x50\x54\xb8\xbc\x1f\xfd\x71\x82\x22\xe7\x99\x43\xce\xe4\x60\x0c\x96\x11\x9e\xb4\xfd\xdf\x5f\xc6\x5c\xfa\x90\x62\xe0\x7c\x98\x6a\xd2\x2d\xc9\xc1\x3b\x13\x6d\xa6\xcc\x7e\x8c\x8e\x60\x63\x9d\xd9\xc5\xc4\x4c\xc2\x59\xf2\x9b\x97\xe1\xfe\x02\x98\xd7\xe6\x7b\x2f\xc1\xdf\x71\x11\x62\x54\x35\x94\xe8\xe9\x70\xcf\x9a\x84\x49\xa8\xdd\xaa\xe0\x3f\x7e\x89\x55\x91\xdd\xa3\xf8\x78\x5d\x2e\xcf\xe5\x8b\x6d\xb2\x37\x9c\x9b\x2c\x59\x17\xe2\x56\x38\x73\x5c\x1e\xbc\x3e\x57\xa5\x2c\x39\x07\xae\xd1\x59\xc6\xcd\xe7\x01\xe3\x33\x6d\x70\xd8\xa2\xe4\xa2\x05\x89\xc3\x67\x36\xab\x46\x8f\x84\x73\xe4\x19\x46\x39\x5e\xad\x17\xf0\xb3\x5f\xbf\xf3\x57\xf0\x96\xb6\xb8\x4c\xb2\xfb\x9d\x9c\x92\xb7\xef\x02\x7f\x4d\x7c\x09\x64\xa5\xb1\x5d\x38\x53\x91\xdb\x1e\xf4\x4e\x5c\x39\x18\xfa\x4b\xeb\x19\xe1\xe9\xc2\x1b\x85\x38\xb5\xaa\x6d\x86\xdc\xd3\x53\xdb\x1d\x73\x7f\x67\x6f\x01\xcc\xb3\x37\x9b\x7b\x77\x26\xd6\x4d\x75\xec\x5e\x73\x00\x95\x93\x6e\x38\x77\x93\x63\x73\x68\xc7\xf0\xc4\xb2\xfd\x94\xfc\xb7\xe1\xa0\xb8\x17\xfc\x71\xfd\x23\x61\xf7\x76\xb9\x32\xb8\x67\xd4\x0a\x83\x29\x3e\xe7\xd0\x04\x79\x76\x87\x33\x08\x81\xe4\x95\x61\x79\xd9\xf8\xb9\x79\x20\x80\xc4\xbc\x92\x02\x35\x30\xe7\x8a\xee\x04\xdf\x47\x14\x68\xfe\x66\xb1\x98\xec\x54\x06\x71\x36\x89\x0c\xcb\xed\x81\x87\x93\x62\x9d\x04\x03\x83\x32\xa2\x33\x97\xdf\xd8\x34\x1e\x8a\xb7\xac\x0a\x3c\x9f\xa2\x66\xd4\x84\x0d\xda\x5c\x36\x70\x3b\x49\x35\xc1\x4e\x30\xef\xa4\x58\x4e\x44\x51\xf3\x1f\xc2\xa3\xdd\x0d\x97\x0c\x32\x28\x36\x26\x2a\xd0\x3c\x81\x3e\x22\xf0\xb0\x0d\xc6\x1d\x15\x61\x5c\xce\xbc\x2e\x5e\x8f\x63\x2d\x8e\xa4\x42\x4b\x64\x09\x41\x18\x1d\x03\x1c\x17\xc1\x4d\xd6\xdd\xc3\xe1\x29\x6d\xbc\x17\xbc\x13\x66\xf3\xd9\x04\x7e\xd9\x87\x64\xa3\x00\x93\x07\x33\x7c\x5f\x98\x85\x32\x6b\xe4\xdd\x2b\xa5\x54\x33\x4f\xe9\xb2\xd2\x3a\xe6\x85\x61\x7f\x62\x0b\x1c\x38\x62\x5a\x2f\xcc\xdb\x8e\x28\x15\x55\x6b\x19\xe4\xfe\xf3\x72\x7d\x05\xe7\x4a\x6c\xb2\x48\xa6\x4c\xea\x7b\x5b\x7d\x29\xab\xab\x96\xbc\xb1\xd0\x59\xf7\xb2\x13\x3a\x4a\x72\xf9\xed\x61\xc1\x70\x79\xcd\x14\xbe\xb3\xd9\x7f\x77\xe4\x16\xdc\x3d\xb3\x19\x69\xa6\xe6\xea\x89\xfd\x3b\xcb\xad\x36\x51\x67\x86\x4d\xa1\x06\x01\x64\x98\xca\x33\x7a\xcc\xe3\xb8\x4b\x22\xfe\x7e\x6d\xdc\x4b\xb8\x0a\x36\x90\xe9\x17\xd0\x05\xcb\xec\x0a\x6a\x86\x25\x4a\x89\x53\xfd\xf7\x96\x76\x5d\x12\x91\x9a\xe1\xcc\x07\x17\xa7\xde\x35\x6d\x70\x6e\x65\x0a\xf1\xf9\x07\x3e\x26\x86\xf2\x73\x0e\x84\x2e\xbe\x1d\x6e\x14\x7f\x09\x29\x99\xb2\x56\x2f\x9b\xdd\xe8\xff\x28\x12\x0b\x6a\x6f\x08\x45\xeb\x94\x1a\xc9\xb8\x91\x03\x34\x98\xbf\x9b\x78\x49\xfb\xec\x29\x8a\x58\x94\x6a\x59\x93\xe2\x4d\x6e\x01\x97\x61\x1a\xb4\xbf\xa7\x84\xc3\x3b\xc0\x57\x80\xc8\x6b\xd6\x42\x0a\xdf\x3b\x49\xbb\x79\x2e\x25\x95\xaf\x7f\xed\x95\x03\x2a\xcf\x82\xbd\xa9\xa8\xba\x2e\xee\xc1\xa8\x5d\x89\x6e\x48\x78\x5c\xa2\x69\xe7\x51\x33\x73\xef\x90\x56\xe4\x28\x26\x75\xca\x2e\x78\x3e\x0f\x0d\xa6\xb6\xff\xd8\x49\x68\xee\x92\x80\x26\xe6\x8b\x28\xf7\x4c\x1f\x15\xe0\x7f\xf9\x2b\x0d\x3f\x25\x52\xec\xf8\x97\xde\x6f\xdd\xf5\x46\x42\xb4\x20\x1b\xcd\x9e\xf7\x1e\x3e\xe8\xbb\xdd\x7e\x78\x88\x0f\x8f\xc6\xe4\x93\xb7\xdd\x17\xef\xfe\x79\x57\xb9\xfb\xbb\xff\x42\xc7\x2f\x4b\x76\x79\x1e\x7a\x93\xe2\xb4\x59\x84\x35\xca\x46\x2d\x17\x8e\x95\x24\x5d\x9c\x77\xba\xf8\xa2\xe2\xd0\xf3\x21\x9f\xc2\xab\x9c\xee\xc2\x9f\xd4\x30\x97\xa8\x0d\x52\x8c\x76\x40\xff\x55\xf8\xe0\xad\x4f\x8b\x77\x8f\xfb\xf9\x01\xca\xd4\xed\x60\x09\xe7\xd3\xba\xba\xb8\x39\x58\xee\x77\xcc\x81\x6f\xff\x0f\x76\x22\x1e\x84\xce\x3e\xdc\x82\x95\xf9\xfe\x44\xe2\x53\xc1\x5b\xe3\x7f\x86\xa3\xc1\xea\x1b\x7e\x95\xb9\xd3\x3b\x9c\x14\x05\x4d\xe4\x10\x1e\x3c\x44\x1d\x81\x38\x36\xcc\x6f\x0f\x01\x47\xc8\x94\x2b\xcc\x75\x05\x79\xad\xfd\x09\xb9\x20\xdb\x52\xbe\x3e\x42\x9b\x2a\x52\x33\x90\x81\x8c\x52\x97\x26\xd1\xc8\xf0\x21\x8a\x13\xfb\x35\xbe\x5b\xfd\xe0\x40\xf0\xe6\x0e\x78\xf5\x72\xeb\x55\x04\x2e\x9b\xd3\xf6\x1f\x95\x2f\x0b\x0c\x14\x93\x30\x62\x8b\x98\x8e\x99\x14\x58\x26\xee\x11\x2c\x9c\x7d\x32\xcb\x66\xd4\x48\x23\x61\xb2\x87\x86\xdf\x2e\xde\x58\x8e\x45\x8a\xad\xfd\x44\x89\xe5\x56\xe5\x04\x8a\x51\xf6\xa9\x7c\x5e\xd2\xbd\xb3\x31\xee\x95\x75\x5b\x43\xb3\x9e\xde\xc7\xa7\xe4\xd9\x98\x0c\xae\xc2\xc4\x91\xe0\x6f\x9e\x9a\x94\x26\xe6\x91\x68\x29\x9d\x19\xb1\x2f\x2e\x8a\x02\x29\x72\x8c\x43\x63\x53\x29\x3f\x70\xe3\xbb\x1f\x97\x5d\xa1\xc4\xa4\xf0\x63\x10\x69\x96\x4d\x60\x16\x73\x54\x60\xfd\xbd\xa2\x2b\x7d\x6c\x75\x96\x1f\xad\xb5\x30\xda\x5a\xcb\xcf\x32\xd6\x5a\xea\x73\xac\x03\x15\x44\x76\xfe\xb0\x60\x8d\xc9\x16\x61\x8c\xa6\x88\x0f\x35\x17\x23\xc0\x63\xf2\x29\xb0\xb4\xf5\xf3\xd8\xb2\x42\x06\x52\x27\x69\x20\x40\x74\x49\x57\x36\xff\xd5\x7b\xb6\x3d\xd6\x76\xe8\x12\x53\x62\x61\x3c\x3f\x94\xfa\x6b\xe6\x44\xcc\x7c\x20\xd7\x18\x4a\xfa\xba\x0b\xe8\x4c\xf6\x9b\x47\x2c\x1b\x43\x67\xd8\x37\xb4\x36\xbb\x8e\x1e\x73\x21\x17\x86\x17\x13\x86\x8e\xde\x94\x31\xcd\x71\xd6\x90\x8c\xc2\x62\xcd\x44\xb1\x28\x86\x34\x0f\x43\xe1\xed\x91\xa6\x19\x6f\xe6\xa3\x7e\x9c\x97\xf1\xb9\x36\x26\x2e\xc7\x5b\x0e\x57\x63\xa5\x5a\x15\xc5\xa6\xa8\x4e\x92\x41\xcb\x00\xcf\x6f\x20\xf1\x9e\xe2\x4b\x46\x68\x90\x53\x96\x4b\x6b\xbd\x84\xc9\x70\xcd\x7d\x1f\x9f\x37\xc1\x33\x1f\x7b\x12\x85\xb9\x59\xd1\xfc\xa5\x98\xb7\xbc\x31\x79\x03\x31\x0d\x39\x2e\xf8\xa7\x3d\x44\xc0\x92\x14\xa1\x58\x4d\x25\xd5\xc9\x09\xf9\x23\x6d\x39\x04\x00\x4a\xfe\x23\x8b\x2a\x12\x27\x5a\x79\x92\x89\x2e\xa4\x7a\xa4\x08\x18\x9a\x7f\xf6\xeb\xb1\x07\xe9\xdf\x99\x7d\xff\x35\x32\xfb\xda\xfa\x22\x28\xca\xe3\x03\x3e\x68\x6e\xcb\xa7\x74\xb8\x9f\x7a\x13\x89\xce\x3b\x80\x6b\x8f\xbb\x28\xa3\x6e\xa9\xa6\x53\x16\x87\x12\x6e\xe5\x5c\xfc\xd1\x11\x96\x56\x7b\xf2\xb8\x21\xe8\x88\x95\x54\xdc\x8f\xae\xa0\xca\xbd\x27\xb6\x47\xcd\x93\xac\x8b\xcf\x45\x45\x83\xc0\x43\x28\x4f\xb4\xaa\xf4\x8b\x65\xa1\xf7\xbb\x1e\xe8\x02\xec\xe1\xe6\xfb\xba\x02\x49\x14\xcf\x99\x1c\x23\x6f\x01\x46\xe9\x55\x49\xea\x9a\xdd\x49\xf3\xe0\x14\xd8\xe3\xc2\x20\x74\x3f\x6b\x73\x29\x2b\x81\x94\x80\x27\x25\xd4\x54\xe7\xf7\x0a\xfe\xb6\xdc\x39\xe2\xf7\x58\xc9\x62\x2e\x7f\xa7\xd4\x24\x77\x4d\x25\x41\xd8\x93\xcb\xff\x70\x60\x7b\xd6\x2d\x40\x15\x0d\xd5\x8e\x65\x6e\x90\xfd\x38\x92\x5c\xc5\xab\x72\x1c\x2b\x85\x6e\x3d\xb2\x27\x42\x51\xf4\xf6\x71\x4c\xff\xdd\x45\xbe\x3e\x41\x6f\xae\x75\x8c\x4b\x08\xc4\xac\x77\x0f\x11\xfe\x66\x1e\x84\xc6\x4f\x90\xbc\x21\x43\xab\x90\xcf\xc8\x63\x14\xa7\xa5\xe9\x8c\xec\xad\xe3\xff\xb0\xed\x30\xc1\x25\x97\xc8\x70\x07\x3c\xbf\x9a\x78\x02\xef\xd8\x0a\xf1\x67\x99\x57\xc1\x66\x8b\xbb\x16\x3d\x66\x8b\x2f\x0d\x8a\xa8\xbc\x4d\x86\x7f\x57\x2a\xd7\x43\xab\xea\x46\xec\x2b\x24\x9c\xbe\x27\xc9\xa7\x65\xcb\xe0\x9e\xb2\xe2\xdf\x5b\xff\xa4\x67\xa7\x76\x0a\x2e\x54\x12\xee\x5d\xbd\x3b\x6d\xd8\x5f\x62\xa3\x06\x23\x98\x0c\x58\x3b\x2e\x36\xf3\xdc\x62\x31\xf4\x77\x82\xd3\xa3\x0e\xd8\x1d\xc9\x8e\xf4\x1e\xb3\x43\x5e\xe6\x46\x28\x32\xe3\x4d\xd5\x8f\xa6\x17\x67\xe9\x60\x3f\xce\x54\x62\x0c\x4b\xed\xdd\x79\xe6\x07\x4f\x53\x6b\x85\x3e\xa5\x7c\xcd\x32\x2f\x1e\xca\x2b\x4c\x26\x6b\x5e\x57\x50\xdb\xd8\x3c\x74\xf1\x6d\x55\x78\xae\x60\x32\x85\x75\x73\xcc\x49\x98\x25\x5d\xc5\x3c\xae\xe7\x95\x84\xe0\x66\xb9\xec\x4f\x71\xf9\x9b\x3f\x25\x4c\xfe\xa7\xd2\xb9\xd4\x5f\x66\x5c\x05\x55\xf8\x6d\x6e\x82\xb4\x3c\xbf\xab\x83\xef\x0d\x52\x2a\x86\xef\x13\xf6\xdf\xc5\x97\xfe\xe5\x8a\x2f\xe5\x3d\x9b\x8f\xf3\x8a\x7d\xa0\x9d\x98\xcb\x8f\x31\x19\xf8\x47\xb3\x95\x0e\xe6\x34\xb1\x0a\x20\x5a\x26\x8f\x7b\x4b\x0c\x16\xc6\xf4\x35\x98\x4c\xe9\xa4\x5c\x26\x63\xdf\x83\x51\xb1\xea\x46\x98\x57\xcb\x08\xfc\x63\xd5\x60\x2a\x57\x3d\x48\x26\x95\x29\x1d\xd0\x2b\x36\x0b\xed\x23\x33\xbb\x04\x35\xb5\xe9\x3f\xcd\xbb\x81\x4f\x4e\x1e\xe2\x91\xf1\x4b\x9b\x39\xea\x95\xb1\xc7\xff\xc8\xd9\x46\x3e\xc4\x00\x76\x84\x39\x53\x76\x10\x80\x9d\x7f\x11\x08\xb2\x1a\xab\x46\xd0\x5b\xca\x6b\x70\xe0\x39\x06\x0d\xb2\xed\x95\xcc\xe3\x60\x94\xa1\x75\x84\x75\xcf\x74\x9f\x1f\x8d\x09\x94\x79\xc8\xbc\x27\xc5\xf2\x0f\x01\x0d\x46\x57\x17\x37\xdd\xb3\x59\xbd\x66\x5f\x0d\x8f\x8e\xc9\xce\x86\x5c\x6a\xb6\x2b\xb5\x7d\x23\xb6\xb4\x56\x9c\xc9\xaf\x86\x47\xef\xa2\x5b\xa1\x16\x9f\xa1\xfb\xf3\xb0\xdf\xc9\x90\x0e\x4f\x64\x48\xb9\x9e\xd8\xed\x0c\xd0\x1c\x6d\x8e\xa1\x47\xf0\xa6\xf9\xac\xd9\x5e\x83\x8b\xd2\xf7\x27\x64\xea\xcf\x04\xa5\x67\xc8\xdf\xfe\x66\xbe\x78\xac\x95\x3b\x28\x23\x71\xa4\x7f\xeb\xc0\x0f\x6e\xfc\x32\x32\x80\xe8\x72\x2d\xe1\xce\xc5\x48\x64\xaf\x48\x06\x3e\xd4\x18\x44\x5b\x00\xb6\xcb\x86\xab\xe9\xc2\xc1\x8d\x90\x9a\x52\xc9\x76\xaf\x15\x2e\x6a\x5a\x17\xc7\x70\xc5\x8e\xae\xc3\xa4\x1f\xe0\xd5\x5d\x34\x8e\xc9\x89\xf9\xeb\x24\x2e\x2a\x73\x9c\xed\x8b\x17\xc3\xa6\x2b\xfe\x71\x50\x4f\x3f\x93\x39\x4c\xfe\x93\xee\x1b\xcd\x91\x3d\x5d\xbf\xe5\xcd\x7b\x2c\x6a\x72\x40\xd7\xec\xe3\xf8\x0b\x63\xf1\x8d\xc9\x50\x33\xe0\xc1\xa5\x29\x32\x0b\x71\xdf\x32\x15\xfe\xe7\xe7\xf4\xeb\xa3\x3b\xb0\x8e\xdb\xe6\x29\xf7\x68\x7b\x62\x42\x9b\x86\xb5\x97\x4b\x3a\x67\xe4\x34\x62\xa4\x57\xac\xe2\x05\xe6\x99\xf1\x9a\x8d\xa3\xe6\x7f\xb8\xb9\x79\x7d\xc1\x6b\x96\xef\xa1\x3f\xeb\xb6\x1e\x93\xc1\x42\xa9\x95\x1c\x9f\x9c\x34\x13\x6a\xe2\xd9\x46\x53\xb1\x3c\x91\x8a\x2a\x3e\x3d\xe1\xcb\xf9\x89\x12\xab\xa7\xfa\xfb\xa7\xb5\x98\x8b\xa7\x0b\xd1\xf2\x1f\xb5\x8e\x50\x3f\xdd\x2c\xb8\x62\x23\x79\x3b\x1f\x64\xc7\x28\xac\xfe\x52\xcf\xc3\xec\x69\xae\x67\x7a\x22\x6f\xe7\xff\xf9\x61\x59\xa7\x50\x52\x9a\x83\x59\xf8\xd7\x35\x6d\xd9\xff\x21\x22\xcd\xe8\x2d\x9f\x8a\xc6\xfe\xff\x97\xa5\xc8\x1e\x42\x07\x99\x2e\x3f\x47\x74\xb3\x0f\xae\x5e\x9c\x3d\xbd\x11\xab\xa7\x7a\xb3\x0c\xf2\x58\x56\x0c\x23\x52\x30\x6b\xda\xd5\x8b\x33\xbd\xb9\x08\xe4\x1a\xe1\x92\x6c\xc5\xba\x85\x74\x65\x98\x6e\x46\x6c\x1a\xad\x5e\xd5\xf5\x31\x5e\xdc\xb5\xb4\xd2\x72\x7a\xc6\xa7\x9c\xd6\xa4\xe2\x73\xae\x68\xed\xf2\xb0\x4d\x6a\xe6\x5e\xdd\x69\xc0\xba\xcb\x0f\x57\x2f\xce\x9e\x48\x32\xc7\x7b\x30\x65\x12\x43\xe8\x5f\xf4\xbf\x58\x2b\x0b\x68\xb2\x0f\x8a\xb5\x0d\xad\xbf\x7f\xf3\x6d\xbc\xda\xdf\x74\x3f\x0d\x0b\x4b\x3a\x28\x2c\x91\xc7\x73\x63\xff\x8f\x7c\x6b\x6f\x1b\x8f\xfd\x3f\x0a\xb0\x85\x26\x8a\x1c\xf7\x08\xb4\x81\xda\x70\xa5\x58\x3b\xd8\x6b\x4a\xa6\x31\xb0\x68\x37\xbd\xd2\xd4\x00\x7e\xc5\xe5\x54\xb4\xd5\x7e\xf0\x4d\x63\x80\xcf\x9b\x5b\xae\xd8\xbe\xc3\xf0\x46\x2a\x3a\x6f\xe9\x72\xbf\x81\x36\x9b\xcd\xc8\x75\x49\xa6\x93\x97\xd3\x7b\x6c\x99\x92\xa8\xf6\xb5\xac\x7c\xd5\x3b\x2d\x7e\x5a\x68\xb5\x7d\x63\x6a\x93\x8d\xc9\x4b\xba\xa2\x98\xe7\xf6\xcb\x4f\x7e\x0a\x8f\x2b\xdb\xe8\xe7\xaf\xc8\x69\x91\x2a\x73\xa6\xce\x30\x58\x69\x68\x8f\x2b\xc4\x64\x7b\x86\x29\xf5\xc0\xdc\xb7\x83\x70\x06\x39\xd7\x7b\x86\x1a\x86\xb3\x9a\x33\xf5\x26\x44\xf9\xb5\xd3\x17\x86\x47\x5e\x3d\x75\xff\x93\x95\x2a\x8e\x3e\x65\x71\xf9\xb6\xf8\x8b\xfe\xe4\xc0\x15\xe4\x52\x88\x8c\x25\x75\x44\xfb\x32\xa7\xd9\xcf\x74\xad\xc6\xe4\xd9\xe8\xd9\x7f\xed\x6e\x9a\xc8\x37\x9b\x49\x69\x49\xdb\xf7\x4c\xad\x6a\x3a\x65\x16\x81\xbc\x78\xb7\x9f\x3c\x67\xea\x4f\xea\xf0\x0b\xdb\xef\x11\x1b\x78\x1f\xeb\x2a\x63\xc9\xd9\x49\x42\x4e\x28\x5a\xf3\x1f\x69\xe0\x7f\xff\x38\xa3\xc2\xff\x12\x5b\x1a\x1c\x94\x06\x0b\xd6\x25\x27\xc6\x1c\x6b\x9d\x02\xaf\xed\xdd\xb8\x98\xfc\xb3\xf0\x67\x97\xe5\x23\x34\x97\xd1\xa0\xb6\x2f\xa5\xb3\x3f\xc5\x45\x0b\x9d\x75\x6d\x22\x86\x7c\xbb\xba\xb3\xbc\xe1\x21\x55\xf2\x13\xbc\xf5\xb9\x5e\xaf\x56\xf5\x16\x50\x0c\xdc\x65\x6b\x5b\x68\x3f\x4c\x4d\x15\x57\xd6\xc8\x86\x32\x62\xd1\x76\x5f\xd1\xce\xd7\xd5\xc1\x7a\x1a\x45\x63\xe2\x28\x5f\x80\xae\x42\xd5\x5e\x2e\x08\x25\x4e\xea\x6c\xdd\x3b\x9f\x4c\x46\xdf\x00\xc9\x40\x50\x19\x48\xc3\xd4\x63\x91\x6d\x6e\x27\xc8\xa5\x5c\x47\xa6\x44\x79\x16\xe1\xce\xa6\xaa\x6c\x03\x3d\xea\x36\x5c\xbc\x16\xe0\xc3\x83\x52\xb4\x07\xae\x42\x52\x30\x3f\x28\x93\xef\xb0\x36\xdb\x0c\x7e\xb4\xef\x4e\x7e\x7e\xf4\xff\x02\x00\x00\xff\xff\x9b\x69\xf4\xd3\x32\x2b\x01\x00" +var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\x73\x1b\x37\xb2\x30\xfa\xdd\xbf\x02\xe6\x73\x2b\xa6\xf6\xc8\x94\xb3\xd9\x93\x5b\x97\x37\x8a\x23\x5b\xd6\xae\xce\xda\xb2\x8f\xc5\x24\x75\xca\xe5\xda\x05\x39\x20\x89\xf5\x70\xc0\x1d\x80\xa2\x19\xaf\xff\xfb\x53\xe8\x06\x30\x78\x9b\xe1\x50\x92\xb3\x67\x5f\xf8\x21\xb1\x48\xa0\x01\x34\x1a\x8d\x7e\x43\xf7\xc9\x6f\x1e\x10\x42\xc8\x39\x93\xb3\x9a\xaf\x15\x17\xd5\x98\x3c\x67\x95\xaa\x69\x49\xae\x57\xb4\x56\xe4\xb9\xd0\x7f\xcd\x14\x99\x8b\x9a\x5c\x3d\x3b\x23\x13\xb1\xbe\x5e\x0a\xf5\x00\x3a\x4e\x96\x5c\x12\x09\x0d\x67\xb6\xa1\xfe\x07\xe5\x95\x24\x6a\xc9\xc8\x4c\xd4\x8c\xcc\x37\xd5\x4c\xc3\xa6\x25\x57\x3b\x0d\x08\xfa\x1a\x60\x44\x43\x3b\x26\xb3\x9a\x51\xc5\x0a\x32\xdd\x91\x73\xba\x5e\xb3\x9a\xbc\xa4\x53\x69\x47\x61\x0d\xf8\x15\xad\xe8\x82\x21\xf4\x82\x2a\x4a\xa8\x94\x62\xc6\xa1\xf3\x96\xab\x25\xa1\x65\x09\x3f\xae\x4b\xba\x93\x84\x56\x05\x91\x4c\x49\x00\xa4\x96\x54\x11\x5a\x33\xb2\x91\xac\x20\x54\x12\xc5\x56\xeb\x92\x2a\x26\x61\x79\xba\xd7\x2b\xb1\x62\x95\x22\x57\x17\x13\x33\xf8\xcf\x4b\x56\x11\x4a\x2a\xb6\x25\x6f\x4a\xba\x23\x5b\x5a\x29\x49\x94\x20\x53\x46\x68\x51\xb0\x42\xff\x5b\xf7\xac\xd9\x4c\xd4\x85\x3c\x26\xb4\x22\x67\xc5\x8a\x57\x66\x4d\x38\xb4\x07\x41\xaa\x7a\x33\x53\x38\x19\x8d\x3e\x25\x6a\x56\x10\x5e\x01\x94\x10\x99\x23\x87\x80\xca\x03\x4b\x2d\x68\x80\x79\xcd\x94\x1c\xc1\x7f\x75\x37\xc9\xa5\x22\x62\x4e\x28\x59\x6f\xa6\x25\x9f\xf9\xa3\x01\x2c\xb7\x3d\xe6\x77\x5e\xcd\x45\xbd\xa2\x7a\x7f\x08\x9d\x8a\x8d\x22\x54\x23\xec\x18\x30\x47\xc9\xba\xe6\x37\x7a\xa4\x9a\x49\xb1\xa9\x67\x88\x3a\x44\xa6\x20\x2b\x5e\x29\x98\xc3\x0a\xb0\x26\xc9\x94\x6a\xc4\x8a\xf9\x5c\x4f\x01\x37\x00\x96\xb9\xa4\x37\x8c\x4c\x19\xab\x48\xc9\xab\x0f\x0d\xce\xae\x99\xb7\x44\x42\x61\x79\x6e\xa4\x25\xc5\x5d\x5e\x8b\x2d\xab\x75\x8f\x42\xc0\xe6\x8a\x39\x7c\xcd\x57\x6b\x51\x2b\x5a\x29\x42\x81\xba\x10\xcf\x79\x34\x9a\x5d\xd4\xf0\x25\xec\xa0\x06\x37\xd3\xc0\x2c\x6d\x4a\xdd\x13\x57\x6e\x48\x85\xed\xb0\x85\x5a\x32\x5e\x93\xa9\xa8\x6b\xb1\xbd\x66\xca\xf5\xd0\x20\x16\x4c\xa3\xab\x66\x73\x56\xb3\x6a\xc6\x2c\x5e\x00\x8e\x9d\x4a\x33\x09\xbd\x8d\xc7\x16\x72\x15\x8f\x2f\xcc\xcc\x99\x22\x1b\xc9\xab\x05\x62\xce\xc1\x36\x78\xba\xd4\xad\xb8\x5e\xc4\xee\x38\xb3\x52\xd8\x35\xae\x24\x29\xd8\x9c\x57\xac\x70\xd8\xd4\xeb\x53\x4c\x37\x01\x30\x70\x52\x16\x9a\x88\x88\x62\x74\xb5\x15\xf5\x87\x63\xf2\x97\x8d\x54\xa4\xe4\x1f\x18\x00\xbe\xac\x0a\x4e\x2b\x4a\xde\xd0\x19\xab\x25\x0e\xb6\x40\x8a\x56\x70\x78\x75\x47\x00\xa6\xc9\x4d\x23\x8a\xaf\xec\x2c\x01\xdd\x96\x28\xf4\x81\xd3\x94\xc2\x0a\xb3\x78\xfd\x05\xaf\xb8\xe2\xb4\xe4\xbf\xb8\x63\x6b\x8e\xde\xb9\x3e\xd3\x86\x68\x69\x85\xa4\xa6\x3b\xd4\x4c\x6d\xea\x0a\x39\x84\x9e\x0a\x40\xac\x47\x19\x0e\x41\x4b\x29\xcc\xfa\x25\xa1\xe4\xb9\x28\x4b\x86\x3b\x66\x91\x31\x42\xc6\xc5\x35\x7b\x20\x62\xfa\x17\xe6\x1f\x10\x76\xc3\xea\x9d\x65\x73\x9a\x11\x10\xb1\xad\x58\x4d\xb6\xbc\x2c\xf1\xb0\x9a\x9d\xe5\x35\xa1\xb3\x99\xd8\x54\xca\x9d\x07\xe0\x4d\xe6\x37\xdd\x73\xe6\xc6\xf6\x26\xba\xa2\xbc\x72\x9c\xcf\x82\x40\xf0\x30\x75\x38\x2c\x7a\x0f\xc5\xb6\xb2\xfc\xa8\x01\x64\xc8\x5c\x01\x09\x6d\x24\xd3\xe3\x2e\x45\x59\xb8\x1e\x16\xed\xcd\xc1\xab\x84\x22\x3b\xa6\xf0\x00\x4a\x86\xd4\x4f\x75\x67\x8b\xbf\x2b\xa1\xd8\x98\x9c\xc1\x02\xf5\x69\x9f\x2d\x69\xb5\xd0\x34\xd8\x90\x27\xcc\x6f\x4d\x2b\xcd\x32\xe6\x1a\x6f\xbc\xba\xa1\x25\x2f\x08\xad\x17\x1b\x98\x23\xc7\xa9\xad\x6b\x71\xc3\x35\x5f\x14\x35\x11\x15\xd3\xd4\xa1\xa7\xb6\xae\xd9\xe3\x99\xa8\x0a\x6e\xa8\xbd\x26\x6b\x21\x81\x70\xed\x57\xb4\x66\xd5\x23\x45\x56\x9a\x27\x68\x40\x17\x6e\x6c\x58\x4a\x21\xe0\x57\x51\xf0\xf9\xce\x4c\x13\xb7\x84\xaf\xd6\xe5\xce\xd0\x07\x79\xa2\x21\x57\xbc\x44\xba\xa9\x0a\xa2\x96\x42\x32\x32\xa3\x92\x49\x52\x31\x64\x3d\x53\xcd\x5c\xaa\xa2\x6c\xa8\x49\x9f\x45\x87\x8d\x4b\xe0\xcb\xb0\x17\x0d\x93\x51\x82\xd4\x6c\xc5\x56\x53\xcd\x8b\x2c\xad\xe8\xed\xfc\xbd\x28\x0b\x56\x91\x6b\x98\xd1\xcf\xb4\xae\xb9\xa8\x25\x99\x96\x6c\x4b\x28\xf9\xe6\xf1\xd7\xa4\x64\xd4\xb1\xf7\xdf\x3e\xf9\xfa\x5b\x38\x3c\x73\x5e\xd1\x52\x8e\x1e\x3c\xf8\xcd\xc9\x83\x07\x38\x8a\x5e\xf0\x82\x4f\x4b\x36\x11\x1f\x58\x45\xe6\xb5\x58\x91\x27\x1f\x2f\x7e\xbc\xfa\xfd\xe5\xb3\x97\x2f\x26\xaf\xff\xf8\xe2\xea\xec\xfc\xfc\xed\x8b\xeb\x6b\xdb\xe1\x4a\x54\xd9\x3e\x57\x17\x93\xa8\xe5\x2b\xa6\xa8\xbe\x2d\x7f\xe2\x6c\x2b\x6d\xb3\x57\x2f\x26\x67\xe7\x67\x93\xb3\x9f\x2e\x5f\xfc\x7c\x1d\x75\x30\xf4\xff\x52\xcc\x3e\x00\x1d\x60\x8f\xc9\xeb\x37\xd7\x7f\x78\x3d\x79\xf9\xfa\xf9\x1f\x2f\xaf\x7e\x1f\x75\xd1\xb0\xdf\x32\x29\xca\x1b\x56\xdb\x0e\x1a\xf4\xdb\x17\xd7\xaf\x5f\xfe\xf4\xe2\xad\x6d\xfe\x80\xce\x66\x4c\xca\x21\x2d\xcb\xa3\xe6\xd4\x9a\x01\xc7\xe9\xa2\x3e\x01\xaa\x4f\x4e\xc8\xe3\xfb\xf9\x58\x70\xf6\x88\x17\x6c\x5d\x8a\x1d\x90\xf0\x0d\xad\x39\x9d\x96\xe6\xce\xbe\xc7\x21\xdd\x98\x4b\x7d\x69\x2b\xcd\x6f\x83\xcb\x41\x13\x1c\xce\x43\x1f\x9c\x0a\xa9\xd7\x43\xd3\x0d\x67\x5b\x7d\x18\xc9\x15\x76\x1e\x1e\x8d\xc9\xb5\xaa\xf5\xd6\x7c\xb2\xa4\xff\xff\x7c\xba\x7a\x31\xf9\xf9\xf5\xdb\x3f\x7e\x26\x9f\x83\x01\x69\x51\xd4\x4c\x82\xd0\xb2\x5d\xf2\xd9\x92\xd4\x62\x47\x4b\xc5\x99\x24\x72\x29\x36\x65\xa1\x0f\x44\xc1\xd6\x42\x72\x65\x2e\xf7\xec\xd8\x6f\xa1\xdb\xee\x0c\xc1\xe9\x29\x98\x7f\x36\x73\x70\x24\xf2\xf6\xf5\xff\x9c\xbd\x9c\xfc\x8f\xd9\xf3\x68\x42\x6b\xaa\x96\x4e\x04\xd8\x4c\x19\x72\x00\x23\xde\xb8\xfb\x7f\xca\x4a\x81\x5c\xc8\x34\x3d\xf3\xb8\xed\xc9\x89\x59\xcb\xad\xb0\xd8\x0c\x0a\x63\x5e\x2b\x51\xd3\x05\x7b\x43\xd5\x12\x11\xeb\xfe\x6c\x56\x76\x22\xf1\xdb\x13\x43\x36\x11\x88\x66\x81\xf7\x45\x32\x11\x95\xba\x35\xbe\xb8\xd1\xec\xfd\x4b\x11\xe8\x8b\x15\x57\x20\x4a\x47\x62\xaf\xb9\x91\xb9\xb4\x92\x7a\x82\x5c\xa6\xe7\x05\x8d\x9f\x63\x8b\x21\x2f\xc6\xe4\xc7\xcb\x4a\x7d\xf3\xdb\x63\xcd\xd5\x81\x01\x8d\xc9\x27\xa4\x5b\x4b\xbf\x9f\x8f\x3a\x86\x96\xac\xd6\x54\xaa\x25\x41\xb8\xbc\x54\xcd\x17\x0b\x56\x23\xdf\xa6\x46\xa2\x6b\x99\xc9\x15\xdb\x5e\x43\xf7\x6b\x45\x6b\x3d\x9d\x8a\x6d\x9f\x6f\xea\x9a\x55\x0a\xbf\xb7\x93\x3b\x6a\x16\x0f\xa8\x05\x5d\xe0\x9a\xa9\xc7\x6f\x59\x09\x6a\x85\x2f\x5f\x9e\x9c\x74\x4c\x57\x8b\x87\x7b\x31\x74\xcd\x94\x45\x90\x64\xea\xf2\xbc\xc1\x91\x8c\xa6\xb5\x67\x4b\xf4\x1d\x65\x15\x10\xaa\xc1\x76\x6c\xc9\x99\x6e\x38\x11\xd7\x4c\xc5\x83\x6a\x29\xbd\xf9\xbb\x6d\x50\x3b\x60\xcd\x14\xd7\xe8\x07\xf6\x0e\x83\xc2\x25\x3b\xa3\x95\x16\x32\xa6\x46\xb3\x32\xaa\x41\xc7\x7c\xde\x22\x9c\x8b\x5a\xac\xf6\xce\xe9\x98\x54\x9b\x15\xca\x41\x7b\x91\x63\x76\xa0\x14\xb3\x0f\x5a\xdc\x5c\x31\x5a\x69\x06\xf2\x06\x54\x91\x66\x96\x80\xb7\xf6\xfd\x79\x09\xdd\xc3\x59\xb5\x8d\x68\x04\x34\x2e\x8d\x8c\xeb\xa1\xa6\x65\x00\xec\xf1\x0a\x5a\x0f\x51\x5a\xb3\xc3\x7c\xfb\xbb\x74\xf1\x19\x22\xa1\xe5\xd5\x46\x0b\x22\xde\xb7\x8e\x1b\xf9\x33\xce\xd0\x75\x23\x0d\x3f\xae\x0f\x21\xef\x95\x5b\xa6\x96\xd6\x8b\x9a\x6e\x2b\xbb\xd2\x06\x64\xcb\x82\x7f\x36\x3d\x1c\x43\xd0\xcb\xd4\x9d\xdd\x05\xf2\xb4\x0d\xbb\xcd\xb0\xee\x7e\xd2\x8a\x8c\xe8\x33\xec\x39\xf6\x08\x46\x55\xc2\x1f\x73\xef\x96\x16\x4c\xaa\x5a\xdf\x26\x9d\x5b\x79\x6e\x5b\x79\x43\xb5\x02\xf7\xee\xbb\xfd\xac\xc2\xb5\x75\x1c\x23\xb3\xcf\xc7\xa4\xa2\x2b\x66\xf9\x69\x37\xab\xed\x35\xa9\x50\x47\x97\x6b\x36\xe3\x73\x3e\x33\x8b\xdd\x3b\x55\xc3\x6a\xb0\x75\x86\xbe\xf3\x4b\xd8\xc3\x95\x7e\xa5\xcb\xf5\x71\xc9\x6e\x58\x49\xe6\x9c\x95\x85\x1c\x79\x22\x8b\x64\xd6\x70\xa2\x8f\xcb\x86\x96\xe4\x86\x96\x1b\x26\x1b\x93\x52\xb7\x19\xe7\x0b\xdd\xd6\x78\x91\xe1\x24\xc0\x2c\x70\x0d\x6a\x9e\x96\x9b\xb4\xb8\x37\x8a\xda\xe9\x1b\x43\x4f\x6a\xc6\xd6\xd6\xfe\x54\x15\x7c\x06\x06\x30\x4a\x16\xb5\xd8\xac\xb5\xba\x06\xb6\x24\xb5\xac\xc5\x66\xb1\x34\x5a\xbd\x81\xf3\x8a\x56\x3b\x63\x6a\xa2\x15\x61\x1f\xb9\x54\x44\xaf\x1f\x5a\x1d\x93\xe9\x46\x11\x51\x95\x3b\xd0\xfb\xf0\x36\x1b\xa5\x42\x18\xad\xc9\x2c\x77\x0f\xbb\x55\xfd\x64\xa4\x70\x22\xf9\x2f\x8c\x14\x1c\x8d\x87\xf5\x4e\xcf\xcd\x13\x46\xa4\x0f\x5a\xb2\x72\x8e\xb0\x35\xe9\x9c\x53\x45\xe5\x98\x7c\x42\xc0\x63\xe8\xf5\xb9\x17\xfc\x6b\xe6\x5b\x20\x5a\x86\x90\xd8\xc8\x1f\xc1\xf4\xeb\x3d\x48\x63\x98\x69\x1d\x42\x8e\xc9\x0f\x3e\xfc\x50\x86\xbe\x3c\x77\x16\x44\x7b\xe7\x1a\xa3\x20\x5c\x76\x23\x8f\xf7\xd7\x3b\xd8\x1f\xef\x1a\x37\x6c\xc7\x9e\x33\x20\x0c\x29\xf9\xa2\x32\xac\xe8\xe4\xc4\x9e\x7e\x2b\x6d\x3c\x92\x7a\x44\x54\xa8\x19\x70\x09\x5e\xcd\xb4\x42\x5c\x19\xab\xed\xd7\xf9\x9d\xae\xd8\x47\xf5\x26\x38\xcc\x3d\x57\x81\x66\xcd\x60\xf6\x19\xf1\xea\xe4\x04\x39\x87\xbf\x02\x7f\xea\x92\xa9\xbb\xcc\xfc\xda\xe7\x4a\xc1\xc4\x95\x50\xb4\xd4\x82\xc9\x94\xd5\x7a\x4b\x27\x62\xad\x95\x29\xe5\x1b\x90\x63\xdb\x67\x34\xf1\x67\x6c\x46\x37\x92\x61\x53\x7d\x9e\x40\x0b\x33\x57\xc9\x31\xe1\x8a\x14\x82\xc9\xea\x91\x22\x15\xd3\x53\xa3\x35\x2f\x77\x20\xd2\x34\x07\xde\xc2\xaa\xd9\x5c\x5f\x86\x68\x30\x8d\xe7\x06\x03\x70\x73\x5e\x59\x35\x63\xc6\xd4\x07\x48\xda\x84\x16\x8d\x93\x13\x6f\xc2\x46\xa2\x51\x82\x14\x54\xb1\x11\x39\x2b\xa5\x70\xb6\xf3\x45\x29\xa6\xb4\xb4\x37\xf4\xe5\x39\xca\x17\xba\x0b\xaf\x16\x79\x94\xc2\xc4\xae\x37\xeb\x75\xb9\xb3\xf7\xc1\xaf\xcc\xd9\x9f\x8b\x15\x8a\x11\x64\xb2\x5b\x33\xb4\x12\x72\x5f\xfc\xb9\xf7\x79\xc0\xdd\xa1\x2f\x08\x40\xf9\x6f\xbc\x11\x7f\x03\x08\xd3\xf3\xf0\x39\xb8\x9d\xb0\x05\xa0\x09\x57\xa8\x25\x73\xc6\x46\x69\x2d\x7f\x23\x03\xdc\x03\x49\x0a\x01\xd6\x3e\x73\x57\x39\x18\x78\x65\x99\x2b\x0a\x6f\x2e\xe4\xd6\x60\xc7\x93\x8a\x56\x33\x46\x86\xa2\x36\xc6\xd0\x23\x4d\x35\xc6\x76\xa7\x60\x0c\x98\xa5\x05\x67\x68\xd5\x73\xd9\x04\x33\xc7\xc5\x38\x3f\x43\x30\xea\x17\xbb\x09\x9d\x46\xa4\x65\x1d\xe7\x5e\x59\x8a\xb2\x90\x4e\x20\xf2\x5c\x45\xce\x86\x80\xa6\x67\x27\xe3\x5c\x3d\x3b\x03\x9e\x78\xdc\xd8\xc1\x4b\xb6\x60\x55\xa1\x39\xb7\x21\x75\x2d\x33\xd9\xfe\x6f\xe9\x8e\x9c\x95\x25\xab\xc8\x92\xe3\x81\xfa\x06\xd8\x0f\xc7\xbe\x7f\x60\x14\x15\xa4\xeb\xf5\xa6\x96\x9e\x11\xf0\x1b\x63\x00\x24\x0b\xba\x62\xe4\x5b\x0b\x4e\xd4\x28\x91\xbd\x84\x0d\xb9\x56\x6c\xbd\x64\x95\x14\x15\x9a\x13\x4d\x77\x46\xe1\x54\xbf\x64\xd3\x5a\x54\xe4\xbf\xe8\xaa\x41\xab\xbb\xa7\x3d\x26\x64\x0c\xcb\x65\xe3\x4a\xd0\x0b\xe6\xd5\xa2\x44\x1f\x19\x31\x6e\x16\xb4\x72\x8b\xb9\x85\xc1\x55\x83\xb9\x11\x9a\x6d\xd0\xa3\x56\x33\xe3\x3b\x2a\x77\xe6\x84\xf3\x69\xc9\x8e\x89\x14\x84\x56\x3b\x4d\x36\x33\x5a\x35\x8c\x89\x16\x68\xaf\x4f\x37\x21\xc1\x3e\x4c\xe7\xf2\xdc\x5f\x8c\xcf\x42\x8c\x0d\x02\xb6\x1a\x8d\x82\x1e\x43\xde\x54\xfc\xaf\x1b\xb8\x50\xac\x2b\x4f\xb7\x73\xad\x7c\x38\x25\x53\x91\x80\xf9\xc0\x87\x76\xad\x09\x56\x3a\x3f\x62\x33\x71\xf0\x8e\x59\xd7\xa2\x46\x1b\x88\x09\x5a\xbf\x5c\xd1\xf5\x9a\x57\x8b\x70\x4e\xe8\x61\xd0\xc7\x11\xc8\x48\x54\x0b\xa2\x58\xbd\x22\x5b\xba\x03\xe7\x80\x03\x0c\x3b\x34\xb5\x22\xe4\x88\x5c\xea\x3b\x8b\x82\x73\x52\xd4\xb4\xde\xf9\x60\x67\xa2\x32\x68\xd8\x2e\x79\xc9\xc8\x96\x91\x39\x5f\x6c\x6a\x46\xd0\x75\x37\x65\x4a\xb1\x1a\xc6\x40\x8f\x99\xdb\x42\x0f\x4a\x2b\x56\xda\x55\x87\x06\x43\x9a\xd7\x0c\x3b\x74\x0c\x6f\x6b\x08\xb8\x03\x58\xf4\x8d\xfe\xb8\x59\x95\xac\x5a\xa8\x25\x79\x78\x4a\x9e\x8c\xc9\xe0\xca\xda\x36\x1c\x6e\x1a\x9d\x9d\xad\xd6\x6a\x37\x08\x20\x7d\x0e\xfe\xd2\xc2\xd3\xc8\x08\x34\xa7\xf6\x02\x18\x35\x02\x48\xda\xd8\x8d\x72\xea\x06\x7c\xd0\xc0\xf6\x10\x66\xb6\xd3\xb9\xfe\x38\xba\xd3\x2a\x63\x7d\x99\xd2\xd9\x87\x39\x37\xf4\x02\xf3\x87\x23\x2b\x66\x1f\x66\x4b\xad\x32\x18\x3a\x5f\x89\x5a\x73\x6b\x45\x79\x69\x38\x90\x85\x5e\x34\x0e\x78\xeb\xde\xd4\x60\xf0\xd8\x4d\x59\xc5\xe6\x1c\xbc\xba\x4b\x7a\x83\x9e\x41\x16\x74\xe1\x56\x0f\xc1\xe3\xb7\x15\x9b\x32\x84\x3f\x65\x04\x64\x51\x25\xc8\x87\x4a\x6c\x51\x45\x51\x02\xa5\x51\x37\xe9\x82\xd7\x6c\xa6\xca\x1d\x2a\xf6\x17\xa5\xd8\xc6\x84\x62\x59\xfc\x11\x58\x51\x37\x6b\x2d\x16\x4c\xe8\xa2\xe4\x15\x1b\x2a\xfc\xbf\x25\x84\x23\x7b\xb6\xa2\xdd\x0f\x10\xff\x6e\x60\x7a\x0f\xde\x93\x53\x62\x20\x3c\x08\xda\xdb\x7d\x74\x62\xfd\x3b\x6f\x9f\x75\x2f\xfd\x67\xd0\xc3\x18\x6c\xbd\x66\x0f\x42\x82\x69\x04\xe9\x33\x2b\x53\x1a\xed\x47\x23\xd7\x28\x19\xbe\xf4\x26\x66\xb3\x8d\xa7\xdc\xd5\x8c\x96\x64\x2b\xea\xb2\x11\x96\x75\xd3\x15\xfd\xc0\xc8\x66\x0d\x0e\x61\xb4\xac\x38\x8d\xca\xba\xef\xa6\xa5\xbe\x78\xe1\x6a\xd1\x02\xbe\xfe\x69\x4a\x25\x9b\xd2\xb2\xf4\xae\x80\x57\x74\xc1\x67\x64\x46\xeb\x42\x8e\xc8\x19\xee\x4d\xa3\x6f\xf1\x8a\xac\x36\xa5\xe2\xeb\x52\xab\x15\x73\xe0\xe9\x0a\xc0\xc5\xb7\x80\xd5\x65\xb8\xe1\x54\xf9\xa8\x03\x8a\xea\xae\xa5\x84\x44\x67\x3d\x73\x3c\x9d\xfc\x75\x03\xd2\x38\xb6\x92\xe0\x16\xf3\xc2\x07\x9c\xb4\xd1\x44\x11\x68\xd9\x60\x46\xcb\x52\xe3\xf5\x86\xd6\x5c\x6c\x24\x59\x00\x87\x02\x1b\x9d\x7f\x13\x53\x64\x93\xac\x4a\x67\x42\x5e\x6b\x9d\x52\xb9\x08\x01\x1b\x18\x40\xa7\xbc\xe4\x6a\xe7\x69\x2c\xc6\x3b\xa8\xb5\x54\x38\xd7\x66\xc3\x6c\x10\x83\xaf\x77\x8d\xf6\xdc\x32\x16\x79\xc1\x45\xf3\x63\x72\xc9\x58\x33\x5f\x0c\x45\x73\x53\x99\x6a\x0f\x06\xce\x95\xbe\xf5\xcd\x32\x7d\x08\x27\x27\x84\x7d\x1c\x91\xc1\x84\xaf\x98\x44\x51\x40\x37\x99\x88\x5a\x54\x4a\x90\xb7\x74\xad\x44\x2d\xc9\x6c\x29\x3e\x34\xe4\xa8\x69\x5c\xcc\xe7\x72\xd0\x3a\x11\xdf\x3e\x14\x5e\x75\x7d\xec\x07\xe4\x1e\x6d\x08\xe4\x6e\x76\x84\x3c\x96\x53\x23\x02\xb1\xf7\x94\xbf\xf2\x7e\x37\x93\xee\x61\x6f\xa5\xef\xdd\xa5\x74\x6d\xb0\x78\xf0\x7d\x84\xda\x69\x78\x1d\x81\x56\x99\x36\x05\xf8\xa7\x30\x4c\x0e\x0e\x60\xbf\x01\x14\x98\x50\x5a\x19\x9c\x63\x6f\xce\xab\xa6\xb4\xde\x13\x4a\xe8\x9a\x88\x1a\x47\xbf\x12\x84\x16\x05\x48\xad\x35\x5b\x89\x1b\xe6\x8b\xd8\xd2\x1a\x7d\xa5\xb1\xfc\x43\x08\x90\x31\xce\xc7\xfc\xe7\x32\xe1\x34\xf6\x20\x22\xc7\x89\x02\x64\xb4\x00\xe9\xeb\xa1\x2a\x0d\x09\x72\x61\x33\x46\x38\x5d\x8a\x22\x19\xb5\x89\x24\x9a\x81\x87\xa8\xb0\xec\xdc\x78\x49\xec\x30\x2e\xda\x46\x37\xf3\x97\x11\x30\xf5\x46\x68\x86\x3f\xf5\x59\x6b\xa4\x29\x33\xda\x2b\x3f\xe2\xa2\x89\x76\x01\x1f\x15\x8c\x68\x05\xbc\x52\xeb\xdf\xa0\x3c\xfb\xbe\x4d\x7f\xbd\xba\x35\x5e\x26\x08\x82\xab\x63\xdd\x7c\xcb\xb4\x0c\x2f\x9b\xab\x9a\x7b\x33\x4b\x30\xd0\x84\x89\x41\x0c\x03\xfa\x6c\xfc\xed\x33\x23\x35\xfe\x11\x87\x0f\xe3\xdf\x09\xb4\x2a\x0d\xa8\x12\x20\xc0\xb2\x1a\x2f\x44\xbb\x62\xdf\xe5\xc1\x55\xb2\xff\x73\x6f\x0f\xb5\x34\x24\x9b\x91\x2b\x81\xe2\x90\xf3\xcc\x04\xf1\x74\x7a\xd9\xd3\x8d\x0a\xd5\x19\x6c\x26\x95\x41\x26\x8e\x9d\x19\x13\xd7\x70\x56\x96\xc3\x23\x20\x51\x3d\xb2\xfe\x67\x6d\xc2\x3c\x0a\x90\xd7\x1e\x2b\xf1\x58\xff\xff\x38\x46\xbf\xd6\x64\x4b\x61\xe3\xd8\xe6\xa2\x66\x37\x5a\xf9\xae\x0a\x2d\xca\x2f\x41\xda\x17\x35\x73\x06\x1b\x10\xb8\xb4\x7c\x67\xd7\xef\xf3\x27\x47\xb8\x1a\xf0\x9e\x9b\x44\xde\xea\x26\x39\xab\x6b\xba\x8b\xa2\xed\xf4\x4a\x29\x59\xd3\x5a\xe1\x1d\xa3\x0f\xa1\x0d\xaa\x31\xdd\x4c\x54\xe3\x3a\xf6\x23\x9a\x89\x1c\xc3\x01\xbb\x3c\xd7\x97\xb5\x24\x74\xbd\x46\x51\x77\xc9\xea\x90\x8f\x1b\x13\x5e\x21\x18\x2a\x3a\x0b\xb8\x60\x35\xd3\x28\x2c\xa5\x69\xe8\x30\xc7\xbc\x27\x31\xe1\xeb\x8d\x88\x69\x8d\xb9\x72\x4c\xde\xe1\xca\xdf\x3f\x08\x2f\x91\xb5\xb3\x08\x5f\x9e\x9b\xb5\x5f\xba\xcb\x88\xcf\xdd\x68\x55\x73\xb9\x99\x6d\xf3\x89\x27\x44\x49\xde\xb5\x0a\xe6\x38\x2e\x41\xd1\xc3\xaf\xe7\xb4\x94\x8c\x0c\xf5\xaa\xcd\x52\x8e\xba\xc0\x99\x36\xc7\x38\x13\xdc\x11\x40\x78\xbd\x61\x91\x0b\x15\x82\xaf\xf6\x62\xc6\x00\xf4\x4c\xd0\xcf\x84\x28\x03\xad\x25\x44\x86\x4f\xdf\x78\x77\x94\x3b\xe3\x28\xcd\x4d\x3c\x34\xb6\xda\xf5\x6f\x2a\xec\xe1\x77\xd0\xb3\x7f\xe3\x4c\x03\xb4\x2c\xc5\xd6\x85\x59\x79\x27\x3a\x37\x88\x0c\xdd\xb5\x59\x37\x6d\xd0\xef\xcc\x6d\x62\x05\xc7\xb2\x41\x17\xd2\x1b\x42\xd2\x03\xda\x99\x1e\xfb\xdd\x51\x71\x9a\x71\x69\xe2\x37\x75\x13\xbb\x56\x98\x09\x58\x65\x82\x11\x2f\xe7\xa9\x5b\x39\x3b\xcf\x86\x63\xed\xe7\x5a\x38\x59\x00\x13\x4e\x8f\xaa\x46\xca\x77\x01\xb2\x39\xae\xa0\x49\x00\xa7\x83\x1b\x1f\x9f\x0c\x5f\x95\x69\x4e\x47\x23\xaa\x79\xb6\x5f\x31\x0f\x6e\x3e\x7f\x2e\x89\x29\x58\x33\x2b\x67\xae\x41\x34\x78\xa7\x2b\xb7\xc5\xb1\x7f\xdc\x9c\x00\x30\x07\xa6\xe1\xcf\xa6\xb5\xb9\x14\x0d\x24\xb9\x14\x5b\x8c\x21\x2c\xe9\x8c\x79\xa8\x39\x26\x6c\x31\x22\x5f\x7f\xa3\x97\xf0\xed\x93\x3d\x07\x06\x57\x8b\x6e\xf7\x37\xac\xd6\x93\xf7\x0e\x0f\xfe\x3f\x36\x73\x74\x89\x8f\x87\x8a\x77\xc8\xa0\x4f\xc9\xbb\xf7\xe9\x6f\x36\xac\xe2\x94\x7c\xca\xc8\x90\x86\xa8\x4f\x91\xe7\x64\x04\xc7\x74\x65\x08\x29\x68\x7a\x72\x42\xd0\x8b\xdc\x04\xab\x80\x82\x83\xf7\x8f\x61\x8f\x10\x2e\x8f\x31\xae\x40\x83\x8d\x6c\x86\xd1\x4f\x59\xd5\xdc\xba\xc3\xde\x35\x28\xd1\x8a\xb9\x19\xc0\x20\x51\xff\xf7\x28\x6f\x5d\xd1\xe7\x07\x26\x4d\x8b\x42\xda\x5b\xa9\xb9\x8c\x72\x86\x2b\x2d\x9b\xd0\x9a\xae\x98\x56\x25\xc7\xce\x9a\x67\xee\x23\xdf\xa8\x61\x15\xde\x29\xd3\x27\xa2\x09\xfc\xc8\x00\xac\xd9\xe3\xe7\x2e\x1c\x75\x1c\xdf\x73\x00\xad\x62\xac\x70\xd1\xff\x46\x73\xd1\x70\xd7\xbe\xad\xd1\x74\x00\x9d\xc1\x6b\xaf\x99\x45\xca\x3d\x1d\xe8\x19\xad\x1e\x99\x13\x47\xcb\x9a\xd1\x62\x87\x27\x2f\xb8\x9b\xaf\xf3\xe8\xf0\x39\xc3\x7c\x53\x59\x84\x0e\x23\x37\x7a\x2f\x05\x28\x35\xb8\x58\x5b\xcb\xc3\x53\x52\xf1\x72\x4c\x06\xcf\x91\xf3\x69\xd9\xba\xc1\xb3\xd0\x93\x1b\x1b\x4b\x92\x71\x5c\x01\x7e\x46\x83\x64\x8c\x87\x1e\x5d\xa7\xf0\xfc\xfd\x07\xa2\x9c\x2b\xe6\x64\xa4\x26\x18\xcc\xdc\x5d\x29\xf4\xb6\x43\xe1\x16\x72\x6a\x17\x62\xad\xda\x00\xd4\xc3\x7a\x91\x48\x44\xa3\x58\xd3\x8b\xcf\xd6\x59\x84\x0c\x90\x7c\xad\x70\x16\x72\x7a\x12\xb0\x84\x11\x8a\x57\x66\xaf\x8e\x12\xc0\xaf\xd7\xc6\x0a\x00\x90\x37\x6b\xdf\xcd\xd6\xca\x49\x9a\xa5\x1a\xa6\x11\x43\xbd\x74\xf1\xf7\x3e\xdf\xc5\x50\x74\x25\xc8\x2f\xac\x16\xbd\x18\x8d\x37\xd0\x93\x70\x10\xb6\xe2\x6d\xb1\x67\x0d\x9f\x68\x22\x3d\xec\xf2\x33\x18\x6e\x38\x84\x44\x16\xe1\xec\x5f\x4e\xb3\xeb\x38\x1b\x59\x56\x21\x2d\xaf\x90\x3e\xb3\xf0\xe4\xe7\x3c\xbb\x88\x29\x0d\x3f\x14\xde\x11\xc0\x66\x1f\x70\x38\xe5\xd0\x4d\xc5\x8a\xb7\xf1\x01\xd5\x3b\xbd\x36\x12\xac\x69\x9c\x39\xb0\x80\xcd\xf8\xc4\xeb\xff\x1f\xb5\x18\x27\x42\xd4\x22\xc5\x00\x71\xe1\x3f\xa5\x15\x5b\x7d\x5d\xd1\x69\xcd\xf8\xf2\xe0\x91\x6a\x1e\xff\xa4\xc2\xc3\x9d\xd9\xb4\xaf\x86\x66\x40\xf6\x60\xd4\x5c\x7a\x0a\x10\x73\x77\x9b\x27\xae\x93\x21\xbd\xa1\xbc\x04\xbb\xb8\x77\xa4\x8e\xf6\x3a\x4a\xf4\x1e\x36\x48\xbb\x15\x8f\xcd\x1e\xd5\x98\xbd\x1a\xbd\xdd\xa2\x28\xc7\x5a\x9d\xf0\x25\x99\x7a\xd8\xc9\xa1\xf8\xdc\x30\xdd\x68\xd4\x87\x7d\x67\x77\x0a\xaa\xca\x83\xa4\xb1\x3b\xe6\xf9\x90\xce\xf6\xa3\x1e\x86\x75\xee\xe3\x2f\x0f\x0f\x21\xe6\x33\xf0\x76\x1a\x5a\x0e\x9e\x03\x36\xb2\x63\xa0\x55\xe8\x0b\x66\x4b\xe1\xf5\x5e\xd5\xf8\xbd\x1d\xa5\x20\x6f\xb0\x56\x1c\xeb\x49\xe9\x73\x00\xf2\x74\x83\xb6\x89\xf6\xb3\xee\xc9\x8b\x9d\xbb\x73\xcb\x13\x6f\x0c\x22\x81\x45\xc6\x9d\xef\x7d\x86\x99\xdb\x9d\x49\x18\x01\xdf\x1a\x18\x9d\x29\x92\x84\x62\x44\x99\x39\x7e\xca\x13\xb1\x91\x88\x5b\x90\xe3\xe4\x65\xa0\xd8\xb8\x09\x10\x6c\x12\xe4\xdb\xd0\x69\x3f\x1c\xea\xcd\x37\x97\xa6\xfe\xa7\x34\x42\xb5\xf9\x0a\x8d\xa7\x6a\x53\x1b\xeb\x6a\xc5\xb6\xe5\xce\xea\x50\x5e\x1c\x65\x06\x8f\x07\xb0\x4b\xef\xe2\x6e\x8c\x81\x77\xe0\x99\xab\x8d\x4c\xd5\x4f\x58\xcb\x34\xd0\xeb\x7b\x72\xfe\xb7\x88\x00\x9c\xff\xd5\xc5\x04\x27\xbd\xa5\x56\x13\xec\x73\x5e\x1a\x34\xc7\x7c\x76\x4c\x7e\xd0\x30\xef\x8d\xdb\xc2\xa2\xc0\xdf\x0f\xc3\x8d\xd1\xe3\xbb\xee\x2f\xcd\xc6\x8c\xb5\x15\xb4\x67\x19\x5b\x03\x5f\x6f\x46\x72\xb2\xad\xb5\x8e\xed\x93\x3a\x7f\xcf\x54\x8b\x2e\xdf\xa1\xc0\xc3\xd0\x41\x74\x04\x71\x1e\xb4\x8d\x64\x68\x68\xe6\xd2\x40\x7a\x24\x4d\xcc\xb9\x19\x23\xe8\x04\xde\xa5\xcd\xea\xb2\x32\x4a\xe7\x5e\x36\x9e\xac\xe0\x95\x45\x4e\xf3\x8e\x38\x1d\x81\x6d\x5f\x99\x5d\x81\x4d\xff\xee\xb1\x8d\x12\xbc\xba\x98\x0c\x33\xfb\xed\x87\xc8\x37\xd3\xfb\x0f\x43\x3b\xc3\xaf\x8f\x8e\x93\x4e\xd1\xe5\x94\x01\x1a\xdf\x67\x69\x93\x20\xb2\xf9\x49\xf0\x7b\x2a\xd7\x5f\xda\x28\x44\xe3\x04\xd1\x92\xb7\xb7\x7d\x7b\xf7\xab\x87\x44\x9e\x5d\x7a\x38\x11\xe3\x2c\xff\xee\xb1\xc3\x71\x0b\xc3\x9b\x52\x35\x5b\xbe\x4a\xb8\x9e\x96\x7b\xa7\x5c\xd5\xb4\xde\x91\xbf\x6e\x68\xa5\xb8\xda\xb5\x58\x94\x22\xa6\xb8\xc2\x08\x9a\x28\x8c\x9f\xf4\xe2\x88\x6a\x2f\x47\xf4\x9f\x1d\xbb\x94\x03\x24\x15\xe2\xed\x9c\x91\x4b\x65\x56\x60\x94\xf7\x76\x96\xe5\x73\x3a\xef\xad\xb1\xf7\xac\xb8\xf1\xb4\x59\x61\x24\x38\xa3\x5b\x56\x77\xc1\x8f\x59\x62\xb4\x11\xc3\xf8\xbd\x48\xb3\x22\xf3\x12\x61\x4c\x7e\xf0\xe6\xf5\x29\x77\xba\xbc\xdf\x9b\xb3\xd5\x7c\x39\x8c\x88\xe6\x86\xd6\x84\x5b\xf8\xa0\xf9\xf9\xbf\x62\x60\x12\x27\xdf\x35\xe8\xcc\xb8\x59\xfd\x41\x47\xe6\x71\xc7\x50\x89\x0f\xac\x1a\x93\xef\x1e\x63\x94\x48\xba\x48\xa3\x25\x1e\x25\xf0\x38\x39\x25\xdc\x90\xf9\xb7\xbf\xd3\x64\xee\xff\xfa\xb9\x85\xe8\xc3\x69\xec\xbd\xea\x7f\xe6\x6a\xe9\x3d\x95\xc8\x5c\xfc\xe0\x09\x6a\xf8\xc0\xff\x12\x41\x20\xc0\x54\xc8\xa5\x42\x90\xde\xcc\xf5\x4a\x78\x45\x5e\x98\x3f\xff\xf5\x04\x8e\x70\xb3\x93\x63\x96\x7d\x71\xf5\x6f\xa1\xe4\x6e\x42\x49\x83\xd4\xfb\x11\x4d\x1a\x78\x6f\xd9\xdc\x33\xd3\x9b\x50\xea\x91\xb1\x6a\x8f\x30\xbb\xc7\x77\x5f\x45\x8f\x7a\xbf\x1f\xe2\x2b\x35\xdb\xad\xeb\xd9\x70\xca\x92\x9e\x3e\xc5\x7c\x09\xc3\xc1\x95\x08\x78\x42\x18\xd3\xa0\xf5\x3d\x04\x34\x88\xd8\xac\x13\xae\x3c\x9e\x73\x1a\xae\x69\xb4\x60\xea\x2a\x94\x01\x3c\x9a\xbd\x8d\x10\xb3\x57\x0e\x0a\xe8\xde\xff\x6b\x8f\xbc\xf3\xeb\x08\x7a\x1e\xaa\x7e\x5d\x71\xef\x00\x4c\x1c\x28\xf9\xb5\x1c\x8a\x90\x0e\x68\x51\x4c\xc4\x3f\x02\x25\x84\xd3\x96\xcc\x70\x5b\xe9\x4d\xb6\x9a\xc3\xdc\x1c\x31\x8c\x78\x11\xf3\x5b\xff\xaf\xe3\xcc\x62\x12\xb3\xf2\xa1\xa2\xf3\x5e\x45\xa6\x87\x48\x4d\x0e\x94\xa9\xf3\xe2\xc5\x1e\x09\x3b\x16\x39\xfe\x79\x25\xee\x0e\xe2\xbb\xa5\x14\x23\xf7\x8b\x31\x7f\x4f\xd1\x7e\x8f\x04\x12\x0b\xfa\xed\x32\xc9\x3f\xba\xf8\xdf\x82\x08\x6b\x47\x6e\x67\x0d\xf7\xa6\x28\xec\xd5\x13\xb2\x69\x46\x16\x4c\xa1\xa7\xe7\xa8\xf1\xf1\x44\xc8\x88\x83\xd5\xe5\x21\xc0\x8d\xc9\x5d\x83\x0f\xa3\x80\x3a\x06\x89\x5d\x2b\x3d\x86\xb9\xda\xac\x02\x1e\x18\x8c\x67\x02\x27\x3a\x46\xcc\x70\x51\x6f\x74\x12\xc6\xab\x7a\x51\xea\xc1\xd1\x4a\x92\xbe\x79\x4f\x72\xa8\x8b\x12\x38\x39\x21\xcf\xd1\x62\xcd\xa8\xe4\xe5\x0e\x22\xd6\x39\x86\x62\xe2\x3b\x37\xc5\xa9\xb2\x4f\x28\xfe\xfc\xdf\x1b\x56\xef\x4c\x98\xc2\x9f\xcd\xb1\xb6\x70\x80\xad\x9a\x87\x16\xe0\x04\x90\x4c\x35\x6f\x93\x6c\x54\xde\x39\xbe\x1e\xb1\x02\xa2\x0f\xd0\x5a\x96\xbf\x76\xa9\x23\x1e\xc4\x48\x36\xa1\xe6\x7e\x2f\x0f\x8f\xdd\x41\x80\x6d\xad\x82\x58\xef\x76\x50\x41\xcc\x74\xd4\x2c\x7c\x4b\xed\x87\xdf\xb5\x36\x6c\x8b\x46\xcb\x92\x56\x1c\xba\xd4\x0a\xf5\x36\x21\x3b\x61\xd2\x8e\x83\x22\x1e\x24\x53\xf2\x9d\x09\x5f\x79\xe8\x87\x08\x48\xa6\x1a\x7a\x70\xf9\xcd\xfc\xc0\x47\xd0\xc2\x3a\xf5\x22\xb3\x83\xe4\x94\x0c\xbf\xca\x0d\x48\x25\xf9\xea\x9a\xa9\xa7\x47\x0f\x73\xdd\x22\x3a\xf3\x22\x6e\x54\x6a\x55\x0d\x22\x93\x64\x67\xb0\xb9\x01\x34\xda\x13\x74\x6e\x9b\xc9\x30\xda\x9c\xc4\xb1\x4d\x92\xa9\x51\xc3\xf4\xd2\x76\x4d\x9c\x93\x69\xe9\x38\x58\xda\xd6\x79\x71\x74\xd3\xc8\x5b\x44\xba\x43\x9f\x0c\xf0\x94\x6f\xfd\x0b\x72\xee\x18\x3d\x5f\x8a\x79\x67\xf8\x9a\x97\xd0\x31\x79\xae\xd9\x48\x6b\x2e\xe4\x3d\x88\x43\x59\x31\x8c\x55\xef\xc9\x0d\xdb\xc1\xf7\xb5\x92\x1d\xf0\x40\xd4\x44\x0d\x35\xa1\x88\x2c\x14\x2f\x9d\x7d\x22\x6f\x7b\x22\xaf\xd5\x92\xd5\x5b\x2e\x19\x3e\xc6\x33\x71\xfd\x79\x4b\x46\x8e\x73\xc7\xe9\x7f\xba\x38\x60\x2e\x9f\x50\x0a\xa1\x33\xb6\xb1\x85\x83\xb8\x97\x96\xeb\x96\xd7\x95\xfe\x40\x00\xa6\xf9\xb3\xf5\xfe\xf7\xf2\x72\xf2\xd5\xba\x04\x2d\x99\xda\x67\x91\x94\xcc\x36\x52\x89\x55\xf3\x3a\x14\x69\x5d\xd4\x2e\x9d\xe6\x28\x00\x04\x3f\x07\xcf\x5c\xd6\xfe\xe3\xd2\x7d\x4f\xc0\x0c\xb7\x35\xf9\x9a\xbc\x0c\x8a\x1d\x97\xf4\x7c\x53\x96\x57\xde\x15\xfc\xb4\xbd\x25\xaf\xa5\xea\xd7\xb4\xa4\x7d\x5b\x4e\x79\xad\x96\x05\x55\x7d\x9b\x02\x19\xef\x6f\xfb\x17\x56\x4b\xb6\xb3\x34\xb3\xaf\x75\x51\xd3\xb9\x9a\x30\xba\xea\xd9\xf4\x7f\x18\xed\x0b\xf5\x9a\x19\x19\xbc\x67\xfb\xb7\x62\x53\x15\xfb\xdb\x2a\x46\x57\x67\x66\xa3\xaf\x9e\x9d\xe9\xe3\x72\x48\x97\xfd\xad\xd7\x35\x5f\xd1\x7a\xf7\x46\xab\x39\xbd\x66\xbf\x64\x7c\xb1\xec\x01\x78\xdb\xb3\x1d\xa4\xde\xd0\x88\x96\x2f\x3e\xae\xf5\x2d\x5e\xf5\xd9\xf7\x6a\x4a\xaf\x19\x95\xbd\xd0\x4d\x15\x7b\x3d\xef\x8d\x8f\x92\xee\x9e\x53\xc5\x16\xa2\xde\xf5\x6b\x3d\xd9\xad\x7b\x4c\x78\x29\x56\x4c\x53\x5e\xbf\xd3\x42\xb7\x74\xd7\xbf\xb5\x85\x7d\x3d\x13\xf5\x01\xc0\x7b\x36\x47\xd1\x2a\x64\xcb\x5d\xad\x7b\x32\x84\xec\x7d\xd1\x85\xe7\x1e\x2a\x46\x4f\x45\xc4\x45\x77\x5d\x56\xc6\xfe\xd2\xac\x2b\xbc\xb1\x82\xbb\x23\xe1\xa0\xa1\xe5\x31\x65\x9b\xe1\xef\x09\xaf\x0c\x7f\x4e\x19\x64\xe6\xf7\x90\x2b\x86\x0d\xb2\xac\x30\x6c\x92\xf2\xbf\xcc\xef\x01\xd3\xcb\xfc\x9e\x72\xba\x4c\xa3\x90\xbd\x85\x0d\xda\x79\x5a\x7b\xbb\x96\x26\x6d\xdc\x2b\x6c\x15\xb1\xac\xf0\xc7\x6d\xd7\x8f\x9d\xcc\x29\x6c\x9a\x72\xa4\x08\x2d\x39\x36\x14\xad\x26\xc7\x7b\xd2\x26\x01\xc3\x89\x56\x9a\xe3\x32\x61\x93\x2c\x6b\xc9\x43\x09\x19\x44\x1e\x4c\x57\x9b\x2c\xe7\x88\x9b\x74\x9d\x89\x6c\x4a\xc9\x04\x1f\x9e\x0c\x19\xc3\x6e\xfb\xa9\x93\x05\xd8\x46\x59\xd9\xd3\x32\x01\x72\xea\xf8\x41\xa6\x91\x65\x05\xba\x95\xfd\x77\x46\x91\xa4\xae\x95\xfd\x67\xda\xc8\xf1\x05\x72\xda\xf0\x88\x96\x66\x28\xfb\x9f\x7a\xbc\x22\x6d\xe8\xb3\x09\x72\x1a\x70\x8d\xb4\xb1\x63\x18\xe4\xb4\x61\x1e\x2d\xcd\xf4\x31\xb1\xcd\xf4\xbf\x5b\x9a\x39\xf6\x61\xdb\xba\x2f\x5a\x3a\x00\x2b\xb1\x8d\xe1\x8f\xb4\x61\xc2\x52\xc8\x69\xca\x66\xba\xbb\x45\x3d\x32\x6a\x45\xc8\x6b\xb4\x7e\x11\x7e\x93\x76\x41\xc6\x43\x4e\x0d\x07\x4a\x1b\x6c\x6d\x83\x6d\x4b\x83\x1c\x03\xd2\x33\xcd\x7c\x9d\xb1\x41\x58\x96\x44\x4e\x1b\xf6\x94\xc1\xb2\xc7\x99\x4e\x03\x3e\x95\xd7\xad\x2c\x8b\x32\x1a\x96\xfd\x33\xdf\x18\xb2\x99\x9d\x3a\xbe\x95\xc1\x91\xc7\xb2\x34\xa6\xbc\x3f\xd3\xc6\x3e\xf3\x22\xa7\x01\x2f\x6b\x87\x0c\x2c\xca\x03\x0d\x7f\xb7\xc3\xb6\xcd\x83\xbf\xdb\x4c\x50\x81\x12\x69\xff\xcc\x6a\xac\x57\xce\xae\x95\x9f\x6d\x1f\xa5\x94\x1c\xa0\xe2\x76\x1b\xd9\x52\xfe\x87\x51\x79\xf1\xb7\x1d\xfa\xb0\x57\x7a\xc5\x24\x24\x58\xd7\x4c\x1a\x17\x53\x58\xaf\x86\xe4\xb5\x59\xd7\xff\xea\x62\x92\xa6\xd7\x1f\x85\x01\x2b\x27\x27\xe4\xf7\x98\xd8\xcf\x24\xd4\x72\xf9\xfd\x5a\x05\xbd\x26\xe9\x6d\x94\x46\x0b\x94\x68\xe7\xd7\x4b\x53\x2c\x65\x54\x08\x3a\xf6\xac\x46\x89\x5d\x23\x97\xf9\x78\x5f\xba\xe4\x9c\x4b\x2c\xba\x71\x12\x97\xbc\x49\x6d\xf8\xca\xa5\x36\x0c\x9a\x5b\x23\xac\x97\xcd\xd0\x33\xcd\xfa\xdf\xfa\x5e\xa6\x94\x3a\x78\x91\xef\x96\xc4\x0b\xa0\x85\xcc\xcb\x44\x86\xf6\x89\x2c\x8b\xa1\xe4\xd4\xc3\x60\x13\xdd\x9e\x7d\x80\x11\x62\xd4\xff\xeb\x28\xf3\x96\x2b\xc8\x5b\x1d\xfc\xac\x3f\x4d\xa2\x5f\xb3\xb8\xbb\xc5\x5c\x14\x68\x6e\xce\x07\x5e\x44\xd3\x6e\x9a\x37\xdf\xdf\x21\x5c\xc1\xfe\x2b\x7a\x4b\x3f\xf7\xcf\x9b\x9f\x1b\xfa\x18\xd1\x43\x2b\x93\x0a\x59\x09\xf7\xce\xda\x07\xa0\x04\x11\x1b\x25\x79\xc1\x88\x98\x4a\x56\xdf\xb0\x5a\xba\x27\x55\x2e\xc6\x2a\xcc\x38\x4d\xb2\xb9\x96\xdf\x9a\x03\xdd\xe4\x9d\x0e\x56\xd0\x9c\x47\x1b\xc7\x10\x6f\x46\xee\x24\x91\x53\xd2\x0b\x95\xe1\x79\x0b\x7b\xe5\x36\x36\x38\x8f\x76\x42\xcd\xee\x36\x62\xe0\x1e\x6b\x76\x45\x57\xcc\xaf\x7a\x11\x2a\x7d\x19\xcb\x9b\x77\xb8\x8c\x35\xff\x15\x53\x54\x9f\x8a\x67\xbb\x0b\xce\xca\xc2\xf9\x91\x93\x05\x60\x7e\x9a\x31\x19\x5c\x18\x98\x83\x23\xf2\xf4\x29\x19\x0c\x92\x41\x63\x45\xe1\x3e\x06\x7d\x63\x60\x66\x07\x35\xb6\xf9\xac\x50\xac\x3f\xa3\x99\xa8\x66\x54\x0d\x07\x64\x90\xfa\xbe\xed\x8f\x76\xd6\x6d\xb4\x3e\x89\xf2\xcb\x09\x9f\xf6\xe3\xec\x08\x90\xa0\x0a\x33\xb7\x91\x75\x2d\xd6\xe8\x0b\x93\xc7\x10\xaf\x07\x69\x79\xe3\x7c\x75\xff\x3f\x61\xa5\x84\x34\x4f\xbc\x2c\x92\x64\x76\x58\xfc\x0a\x92\x90\xe0\x6d\x7f\x6c\x8a\xb8\x79\xe6\xf1\x96\x9c\x08\x96\x56\x3c\x70\xad\x24\xe3\x62\x3b\x08\xa3\x75\xb9\xb3\x19\x32\x4c\x0e\x3a\xcc\xdc\x58\x3d\x86\x24\x4f\xe1\xe9\x9a\xa3\x3d\xcd\xb4\xbb\x87\xfd\xb6\x29\xf0\xe2\x6b\xc9\xdb\x6e\x9b\x19\xcf\xff\x29\x8d\xbb\x7c\xd6\x8d\x4f\x38\x42\x16\xa9\x06\x91\x19\xdc\x26\x34\x1e\x29\x8f\xe1\x92\xaf\xf1\xc7\x61\x9e\x77\xb7\x1d\x9b\x90\x01\x39\xb8\x79\xfe\x33\x52\x02\x5b\x44\x5e\xc2\xd4\x6a\xd6\x32\x41\xcc\x91\xd5\x36\xc5\xa7\x1e\xfc\xf6\x03\x37\x38\xb3\x88\x4b\x43\x6d\xed\xb1\xf2\x27\xd3\x7e\xf8\x3a\x4f\xa6\xc1\x75\x57\xef\x95\x1f\x69\xee\x6f\x5c\x37\x5c\xff\x6e\xcf\x90\xd0\xc9\x09\x96\xff\xda\xac\xd7\xa2\x56\xac\x08\x7d\x2c\x49\x7d\x44\x5e\xcd\xca\x4d\x61\x03\x29\x9e\x6b\x51\x5e\xcb\x91\x50\x5e\xaa\xfb\x6c\x2e\x98\x82\x56\xe0\x59\xd5\x4c\xa8\xc5\xaf\xfa\x2e\x59\x8b\x6e\xfc\x5d\x50\xc8\x6a\x74\xce\xa5\x3e\x4d\xdf\x0f\x33\x11\x9e\xd0\xbc\xd5\x85\xd3\xde\x25\x1c\xe1\xad\x2d\x95\xd4\xb7\x83\x91\xe8\xfb\xb7\xff\xa8\x58\x5d\xd1\xf2\xc7\xb7\x2f\xfb\x76\xb9\xba\x98\x34\xc1\x48\x9a\xd7\xdc\xae\xe3\x3e\xdc\x85\x7d\xaf\x81\x82\xfa\xb6\x9e\xd4\x94\xab\xde\x38\x78\xc5\x0a\x4e\x75\xeb\xa0\xf1\xfb\x16\x3a\xad\xb1\xc6\x18\x5e\x2b\x40\x57\x2e\x36\x63\xc1\x6f\x58\x85\x29\xee\x2c\xc1\x5e\x5d\x4c\xb2\x04\x89\xaf\x71\x01\x92\x9e\xc4\xf0\x4f\x00\x6a\x0c\xd3\x3b\x1a\x93\xb3\x6a\x87\x0a\xcc\xd3\xd8\x3c\xb5\xe5\x6a\xb6\xc4\x71\x53\x7e\x3d\xa3\x26\x59\x76\x2b\xa1\x8e\x93\x3e\xa4\x21\xfa\x6c\xa7\x54\xd6\xb6\x1f\x8c\xf5\x71\xf1\x1c\x39\x6c\xdb\x4f\xe1\x97\x78\x45\x16\xe8\x5f\x92\xed\x1d\xd5\x72\xb3\x9a\x56\x94\x97\xe3\x68\x76\x7f\x98\x4c\xde\x5c\xf0\x92\x0d\x37\x75\x69\x40\xba\xb6\xb9\x70\x78\x12\x08\xd7\xf6\x73\x72\x42\x9e\xe7\x9c\xba\x46\xfb\x54\xc2\x65\x72\x8f\xdf\x7e\xa4\x28\xef\x3a\xec\x9d\x68\x6f\xed\xd8\x8e\xfa\x46\xda\xbc\x47\x21\xb3\x7d\x17\x3c\xaf\xc7\xdd\xc7\xb3\xb0\xba\x06\x6c\xdc\x28\x77\x1e\xef\x25\xdd\x3f\x9c\xe7\x96\xb9\xf3\x78\xcf\x2c\xac\xbd\x03\x1a\x3f\xcf\xfd\x8c\x08\xc0\xba\x86\x0c\x3d\x47\x77\x1e\xf4\xbf\x3c\x70\x5d\xc3\x7a\xde\xa8\x3b\x8f\x79\x6e\x61\xed\x1d\x10\xdd\x5b\xf7\x33\xa0\x86\xb5\x77\x40\xcf\x5f\x76\x3f\xa3\x3a\x80\x7b\x87\x36\x5e\xb8\xfb\x19\x16\x80\x75\x0d\x99\xf1\xeb\xdd\x5d\x05\x89\x61\xf6\x9d\xc0\x3d\x8f\xdd\x35\x6c\xe2\x84\xbc\xbb\xa2\x1d\x42\xec\x1a\xdc\xfa\x36\xef\x3c\xe6\x1f\x00\x50\xd7\x50\xdb\xfb\x1a\xea\xe7\xbd\x43\xe5\xfd\xae\x77\xdf\xd1\x0c\xd8\xae\x69\x78\x3e\xdd\x3b\x8f\x7d\x65\x61\x75\x9e\xda\xc0\x49\x7c\xf7\x73\xeb\x81\xeb\xa4\xe0\xc0\xf1\x7c\x2f\x76\x22\x0b\x6e\xdf\xb0\x68\xa3\xba\x47\xd3\x54\xc7\x51\x09\x9c\xe3\x77\x3f\x30\x1e\xb8\xae\x61\x43\x87\xfb\x9d\x87\x3d\xf3\xc0\xf5\x59\xad\x71\xd0\xdf\xdb\x72\x01\x5e\x9f\xf5\xde\xd7\xc0\x67\x3e\xbc\xae\x81\x43\x93\xcb\x21\x96\x96\x2e\x98\xa9\xb0\xb9\xc7\xb2\xd4\x3d\xc1\xc3\xdd\x03\xf6\xd3\x8a\xa9\xae\xc9\xf7\x72\x5b\xd8\x4f\x36\x2a\xc2\x5b\xf8\x55\xfa\x7b\x0b\x12\x8e\x5b\x67\xdb\x57\xfd\x6a\xd3\x57\x3d\x2b\x46\x5e\x73\xb2\x4f\x4d\xac\xd5\x6e\xc1\x94\xe9\x03\x9b\x96\x1f\x1f\x4a\xcc\xd0\x8f\xa1\x81\xee\x5e\x96\x4b\x9e\x3e\x8d\x9e\xa1\xf9\x63\x5a\x4f\x4f\x35\x17\xe4\x94\x64\x57\xea\x65\x29\x3d\x36\xf6\x34\xeb\x45\x19\xe6\x49\xe8\xe8\x58\xaf\x65\x0c\x0b\xfa\x9e\x3c\x21\x4f\x6d\xf3\x15\xfd\x78\x44\xc6\xa4\xe2\x65\x3b\x16\xcc\x8c\x5e\x72\xa9\xc6\xe4\x5d\x76\x46\xef\xc9\x29\x79\xe7\xcd\xfc\x7d\x7f\xc3\x81\xdd\xbd\x76\xf5\xd5\x1b\xff\x8e\x94\xe2\xec\x42\x07\x18\x36\xb0\x4f\xfb\xec\xba\xf1\x7e\xc7\x09\xfb\x16\xbd\x3e\x56\x81\x91\xb1\x12\x3d\x37\xa9\x70\xc1\x2e\x60\x7d\xea\x78\xaf\x56\xbc\x3c\x06\xb3\x85\xb9\x66\xbb\x07\x3d\xe0\x14\x06\xb6\xc1\x03\x10\xec\x75\x1c\xda\xe3\x89\x87\x4c\x7f\x73\xc0\x0c\x72\xa6\xc6\x5f\x0d\x69\xb9\xc1\x6f\x3b\xf5\x7e\xf6\xb7\x2f\x37\x7b\x37\x7e\xff\x05\x38\x1b\x6a\xe7\x94\xcd\xd3\x20\x98\x2f\xf6\x80\xd9\xf6\x1f\xc6\x19\x5f\x0f\xa0\x2f\xec\xd3\x7e\x80\x53\xe3\xbd\xff\xc9\xc0\x6a\x07\x65\x3f\x73\x5e\xb2\x56\x13\xe4\xde\xde\xfa\xd3\xd8\x29\x57\xac\xe0\x9b\x15\x5f\xd1\x45\xdb\x4d\xe5\x7f\x3a\x44\x0d\xfb\xd1\x00\x29\x52\xc2\x00\xc0\x9e\xfc\x65\xcd\x16\xa9\xa7\xe8\x00\xb0\x7f\x77\x24\xdd\xf0\x82\x89\xfb\x47\x0f\x80\x3d\x59\xad\x7f\xb7\x07\x3b\xad\xbf\xe6\xef\xc1\xb6\xac\x8d\xa4\x21\xe1\x8a\x97\xfb\x3d\x0a\x5c\x92\xab\x8b\xc9\x23\x49\xf0\x2c\xc1\x11\xdf\xe7\x3f\xf0\x8f\x5d\x8c\x7d\x03\x26\xf1\x3d\xcb\xb5\xa8\x95\x24\x35\x2d\x68\x0d\x16\x15\xc2\x8b\xc4\xbb\xc9\x3e\xce\xca\x4d\xc1\x0a\x2d\x52\xc9\x31\x79\x87\x6e\x4a\x10\x0c\x32\x26\x9b\xf7\xb9\x44\x3c\x6d\xd9\x43\xc2\xec\x38\x91\xcb\xd4\x7d\xff\x6c\x77\x75\x31\xb9\x3c\x1f\x9a\x28\x92\x34\x95\x89\xcb\x28\x1f\x16\x38\xf6\xf0\xa8\x10\x01\xe0\xa2\x29\xd8\x9c\x6e\xca\x4c\x24\x18\x31\x59\x05\xb0\xb1\x57\x54\xd0\xb9\x61\x3e\x93\xd3\x8c\xbb\x65\x70\xed\x29\x23\x83\xbb\x6a\x23\x03\xa3\x72\x24\x80\x0e\xd3\x43\x06\xd7\x9e\xb4\x32\xe8\xaf\x81\x0c\x30\x23\x69\x33\xba\xfe\x9b\x57\x8b\x11\x97\x26\x57\x69\x35\x57\x6f\xd9\x7c\x4c\xbe\xd2\x20\xe1\xc5\xf0\xa7\x5c\x38\xdf\xe7\xec\xa4\xdc\xa6\x0e\xfc\xe8\xa7\xa7\xf8\x12\xf8\xe9\x53\x32\xb8\x56\xb4\x2a\x68\x5d\x0c\x3a\x7b\x5f\x9e\x47\xfd\xfd\x48\xaa\x54\x0c\xcf\x27\x4a\x87\x67\x78\xae\x8e\x44\x42\x0a\x86\x66\x8c\x6a\xb1\xa2\xeb\x37\x26\x17\xfd\x50\x93\xd9\xd8\xfc\x9e\x4f\xbb\x12\x1e\x3f\xdd\x7e\x22\xf0\x10\x06\x9d\x8f\xe3\xc3\x15\xfc\xd9\xe6\x22\xbf\x70\x55\xb2\xa0\x0a\xf2\x5c\xd4\x64\x26\x56\xeb\x0d\xa4\x14\x08\x46\x0e\x33\xc8\x35\x2b\x20\x4b\x56\xae\xa5\x09\x7d\x11\x1b\x43\xf2\xba\x05\x66\xe0\x0a\x1e\x28\xfa\x30\x82\xe4\x66\x4d\x27\x2c\x2d\x59\x96\x4d\xb4\x8a\xa9\x5e\xef\x81\xc3\x54\x09\x41\x2a\xf3\x24\xed\x59\x82\xe3\xcc\x11\xd4\x5a\x4d\xee\x64\xa6\xb1\x58\x6b\x63\x82\x28\xc2\x67\xeb\x91\x71\xa2\xd5\x2a\x01\xea\x5c\x54\x09\x43\xe3\x1a\x48\xd5\xe4\x42\xb7\xe0\x47\x1f\x58\x36\x4d\xb2\x9e\x06\x16\x19\x39\x0d\xda\xbf\xd3\x40\xde\x67\x02\x3d\x08\x06\xf7\x60\x9f\x87\xa7\x64\x30\xc8\x40\xd5\x1f\x8d\x9f\x11\xaf\x24\xab\xd5\xf0\x03\xdb\x59\xa5\x11\x3a\xa6\xd7\xd6\xe7\xfd\x17\x93\x06\xd8\x42\x70\xbe\xdc\xde\x4a\x0d\x48\x82\xac\x20\xcc\x88\xfd\xfa\x16\xb7\x41\x5b\x51\xa6\xad\xb6\x98\x0c\x4f\x3b\x68\x09\x98\xb2\x81\x30\x4b\xa5\xd6\x72\x7c\x72\x52\x4d\xa9\x12\x6b\x09\xb5\xe8\xc4\xea\x04\xc7\x39\x19\x34\x11\x27\x70\x65\x78\xc1\x35\x6d\x87\x2a\x34\x1d\x34\xa9\xdd\xec\xdd\x84\xbb\x8e\x65\x07\x57\x53\x5e\xd1\x34\x26\x0d\x12\xc1\x61\xec\x37\xad\x8a\x38\x5c\xfb\xe4\x84\xfc\xd9\x59\x98\xfe\x0f\xfe\xf8\xe7\xbd\x18\x09\xcc\x19\x1d\x71\x87\x5f\x20\x3c\x8a\x79\xe8\x70\xb1\xec\x2e\x02\x68\x4c\xfe\xcf\xe0\x28\x40\xb3\x77\x74\xb2\xf8\xf6\xb6\xcf\x03\x9d\xdb\x8e\x2c\x32\xa8\x94\x4c\x61\x96\xbb\x9e\xb4\x01\x3d\xe4\x28\x26\x11\x2d\x06\xde\x86\x42\x6c\x0e\x2b\x0a\x84\xad\x04\x29\x50\x9d\x22\xb4\x22\x28\xcb\x13\xc9\x7f\x61\x05\x01\xd9\xbb\x7b\x31\x81\xec\xdf\xbd\x1c\x7c\xaf\x00\xd5\x39\x5e\x43\x9c\x04\x2d\x21\x35\x96\xf4\x42\x1e\x3c\xdc\xb8\x0d\x7a\xba\xe5\x85\x5a\x9e\xfe\xe7\xd7\xbf\x1d\x1c\x1d\xa3\xeb\xfe\x9c\x95\x7c\x35\x26\x83\xaf\x06\xad\x15\x2e\x92\xb5\x35\xa1\x17\x49\xcd\xec\xbe\x07\xdb\x0b\xc8\xf8\xa2\x4b\xfd\xed\x7f\x7e\x7b\xb7\xa5\x82\x56\x70\xeb\x65\x1a\x55\xe5\xcb\x2c\xf1\x04\xa0\x27\xcb\x7b\xda\xbe\x3c\x18\x43\x62\xe5\x7e\x33\x12\xa9\x98\xda\x8a\xfa\x03\x59\xeb\x21\xa1\x2c\x10\xa6\x36\x35\x2a\x84\x89\xef\x2f\x78\xfe\x75\x44\x73\x14\x5b\xe7\x8f\x4b\x0f\x27\xe9\x2a\x31\x67\xf1\xc2\xe7\x8e\x53\x5d\xe1\xec\x86\x47\xe4\xf4\x94\x0c\x14\x93\xaa\x62\x2a\x77\xff\x19\x5c\x6e\xea\xd2\xe2\xa7\x19\xaf\x41\x99\x05\xd0\x43\x29\xdb\xd4\x6d\x4a\x99\x55\x2d\x2a\xac\xb4\xea\x27\x60\x33\x19\x1f\x20\x2c\x08\x6a\xdc\x37\x89\xee\x08\x57\xb6\x1e\x0c\x14\x7b\xcc\x67\xd2\xd0\xa8\xc4\x34\x67\x2f\x34\x6c\x3f\xd5\xd9\x98\xfc\x90\x0a\xd5\x4d\x83\x96\x5c\x29\xdf\x3d\x6e\x0a\xb3\x66\xe1\x56\x73\xe5\x59\x8a\x7e\xb8\xba\x98\x7c\x1f\xf2\x3b\x12\x16\xa6\x86\x1c\xa1\x58\xb8\x59\x8b\xc9\xb4\x24\x74\xa3\x96\xa2\xe6\xbf\xe0\xf5\x17\x3c\x0a\xb2\xbd\x20\x65\xae\x5f\xcd\x5f\x09\xb2\x66\xf5\x5c\xd4\x2b\x2f\x73\x56\x50\xea\xd5\x54\x4c\x56\x4b\x57\xe6\xd5\xd6\x69\xa6\x7a\x60\x15\xd6\xc7\x39\x86\xa2\xbd\x18\x34\x1c\x56\x4b\x7d\x10\xa3\xd8\x4d\x10\x97\x12\xbc\x30\x42\x14\x61\xd5\x2b\xf8\xa7\xcd\xa2\x0c\x5f\x45\xaf\x5b\x4c\x1e\x43\x89\x55\xf9\xb9\x4b\x15\x8c\x05\x2a\x3c\xbd\x93\xdb\x62\xc9\x48\x18\x72\x45\x6b\xe5\x0a\x98\x79\xe0\x7c\xc8\x7e\xaa\xc3\xa6\xa6\xfd\x99\x0f\xd6\xd4\xf6\x6f\xe2\xd3\x14\x57\x25\xb3\x55\x87\x78\x4d\x62\x49\x3d\xff\x61\x1f\xe9\x6a\x5d\xb2\x31\xf9\x04\x5e\x54\x56\x13\xa3\x6a\x0e\xfe\xc8\x6e\x78\x45\xce\x37\x35\xad\xd4\xe0\xd8\x85\x08\x8c\xc9\xe0\xff\x25\x73\xc6\xd4\xe0\xf3\x7e\xe8\xf6\x33\x9c\xb2\x19\xdd\x48\x46\xb6\x90\x40\x19\x13\xcc\xf8\x03\x60\x60\xbb\x22\xdf\x3e\xfa\xff\xbc\xe3\xd9\x92\xf3\x30\x4c\xfa\xe8\x36\xc8\x4b\x94\x46\xba\x13\x1a\x36\x1b\x3d\x6c\xb0\xeb\x54\x08\xfc\xff\xe7\xb6\x4a\xf1\x0d\x0f\xf0\x47\x4f\x6c\x06\x15\xdb\x9a\xb4\x4f\xd1\x38\xf6\x5f\x69\xd4\x78\xc5\xb6\xf0\x6c\xcf\x74\xb5\x55\xe2\xe3\xd1\xc3\x47\x61\x97\xe7\x7e\x0d\x24\x0e\xc9\x97\x41\x0b\xa4\x0b\xca\x43\xe3\x8a\x5f\x0d\xf0\x8d\x7d\x43\x98\xf9\xb2\x35\x85\xa8\x2b\xaa\x83\x08\x28\x86\xbc\x18\x47\xb3\x3d\x26\xb9\x95\xc6\x4b\xb8\xf6\x6a\xf9\x85\xb5\x96\x3b\xea\xf9\xad\x5d\xe5\x37\x40\xd4\xfb\x06\x53\x59\x8d\x1b\x1a\xe5\x99\xf8\x09\x99\x30\xcd\x77\x68\xcd\xcb\x1d\x61\x15\x9d\x96\xac\x40\x34\x66\x5f\x98\xac\x6d\xbd\xe1\x29\x83\x22\xbd\x73\x5e\x96\x41\xee\xa4\x3e\x79\xd1\xd7\xa6\x02\xdb\x66\x5d\x84\x4f\xb0\xc2\xc3\x63\xde\x54\xe8\xd3\x2e\xf1\x7a\xc4\xbc\xa3\xb8\xa7\x32\x78\x0d\x62\x83\x89\xd7\x61\x99\xbf\x48\x0f\x0b\xa7\xd0\x7a\x28\x70\x5e\x10\x4a\x81\xe0\x93\xcc\x9e\x6e\x6a\xee\x02\xcf\x1e\x10\x78\x87\xb2\x5a\x1b\xea\x6f\xad\xdb\x97\x5c\xe2\x4d\x62\x6a\xf3\xc0\x35\x4a\x63\x97\x92\xd1\x8f\x30\x65\xb7\xb4\x47\x32\xfb\x22\xc5\xcc\x65\x84\x0b\xb4\x8b\x73\x8b\x31\xff\x48\xa1\x9b\x77\x38\x1e\xf4\xe8\x4d\x9e\x21\xb4\x48\xad\x0b\xc5\x05\x64\x35\x50\x1d\x36\xb8\x52\xfc\x9a\xff\xe1\x45\xe2\xf7\x36\xc7\x43\x6b\x2d\x8e\xe1\x47\xf7\xc9\x01\x37\x09\xfa\x92\x35\x49\x54\xad\x85\xfe\x5b\xb5\xf9\x86\x8a\x4c\xed\xdd\xd6\xca\xd0\x0d\x87\xbd\x66\x51\xad\xd2\xde\x2c\xd5\x9f\x14\x69\x38\xaa\xc6\x5a\x93\x0a\xb6\x01\x8f\x55\x3c\xbb\x19\x25\x3e\x8a\xbe\x0d\xaf\xbc\x6e\xab\xa6\xda\xce\x29\x23\x76\x7e\xcd\x94\x79\x57\x98\xf2\xd3\x6b\xa6\x2c\x3b\x35\xea\xb8\xdf\xe1\xd8\x25\xc5\xcc\x56\xd8\xdf\xcf\x5a\x03\xda\x01\x1b\x5c\x76\x9d\x90\xf3\xd1\xf0\xd5\xef\x1e\x3f\x34\x73\x38\x94\xb1\x12\xcc\x58\x8f\xc4\x6d\x95\x63\xaf\x56\xbd\xb0\xc5\x95\x03\x1a\x0e\xce\x4b\x54\x75\xdf\x2b\xd5\xee\xaa\xec\x9b\x0a\xfb\x44\x54\x1d\x85\xbf\x3c\xba\x37\x68\x6d\xc9\xef\xb7\x13\x1b\xb2\xa5\x49\x75\xdf\x05\x53\xd1\xdc\xf7\x9d\x92\xb3\x70\xa5\x76\x10\x67\x0a\x35\x03\xa3\x1d\x34\x96\x23\xed\x9a\xd8\xc7\xb5\x90\xfb\xd3\x32\x3b\xcd\xcb\x21\x3c\xca\x30\x3a\x86\xb4\x9d\x77\xcf\x33\x6a\xca\x32\xe0\x30\x58\x4a\xd5\x16\x4e\x0b\x4a\x3d\xf4\x28\xbe\x10\x93\x82\x5f\x58\xc3\x69\x49\x71\x3f\x2d\x34\xfe\xf9\xab\x3f\xfb\xaf\x97\x4d\x0d\xbc\x08\x92\xc9\x7e\xad\x81\xa9\x38\xd5\x84\x81\xde\x3b\xc3\x69\x48\xd3\x52\xd1\x5a\x5d\xe9\xf3\x00\x0f\xed\x40\x89\x06\x3e\x88\x07\xd1\x3e\xc0\x83\x5c\xbe\x86\xe1\xf8\x49\x6e\x4d\x7d\xef\xe8\x7d\xe3\x8a\xd1\x0a\xdf\xa9\x51\x15\xa7\xd8\xb7\x85\x65\x79\x40\x25\x50\xe7\x4f\xa3\xc3\xf2\xc8\x00\x62\x1f\x16\xde\xab\x53\xcc\xc9\xc3\xd5\x0f\x3b\x58\xf8\x8b\xaa\xc8\xe1\x05\x2f\x37\xad\xf4\xe0\xcd\x27\xa2\xeb\x59\x73\x8d\x10\x75\xa1\xbe\x94\x9d\xb0\x4f\xb7\x01\x43\xf4\xd8\x74\xf8\x7d\xb7\x50\xeb\x16\x78\xad\x67\xca\x8a\x61\xc5\xb6\xcf\xfd\xfe\xfd\xf8\x6f\x14\xaf\x11\x34\xed\x16\x10\xbc\xf2\x03\x46\x28\xb0\xf2\x02\x5c\x87\xee\xe7\x57\x74\x9d\x51\xb2\x7d\x12\xb1\xb2\xa2\x2d\x50\x13\x24\xe4\x6f\x00\xe5\xdf\x43\x7a\x77\x77\x58\x54\xc4\x4e\x2b\x29\x7e\xd8\x56\xbb\x44\xd2\x1b\xf6\xdd\x0f\x49\xe5\x12\xef\xf6\x0e\x7f\x1a\x1e\x1d\x13\x25\x0e\x2d\x6a\x12\x9d\xd4\x4c\xd9\x06\xa2\x27\x22\xc9\x76\xc9\x67\xfe\xf2\xfd\x57\xa3\x53\x56\x8a\x6a\x21\xdb\x59\x7c\x20\x44\xcd\x33\x97\x89\xff\x9a\xef\x80\x8a\x00\x07\x4c\x27\x84\xd9\x79\xa1\x1d\x54\x76\x29\xaf\xab\xdc\xa2\x98\x63\xc2\x37\x3a\x4a\x68\x74\x15\x06\x48\x52\xa5\xac\x3b\x0b\xd9\x86\x01\x03\x68\xd4\xf9\x47\x2b\xa8\x13\xcd\xbf\xbb\xfa\xc8\x5c\x75\xd7\x16\xf0\xca\x8e\x1c\x50\xc8\x3a\x3e\xf3\xb1\xb6\xe2\x1d\xa7\x7e\x66\x30\x8f\xd1\x64\x8c\x61\x11\x82\x1d\x92\x6e\xaf\xc4\x64\x0b\x8d\xf8\x9f\x7b\x32\xa3\xf5\x34\x48\x79\x08\x3b\xd4\x2c\xe5\xef\xb9\xa7\x3b\xf9\x86\x95\xbe\xa6\xaa\x7f\x86\xc3\x61\xdd\x24\xd1\x19\xc9\xe3\x0a\x5d\xde\x0e\x51\xa9\xa9\x2d\x47\xf5\x57\x6c\x8b\xa8\x09\x69\x7e\x3f\x65\xe6\xf7\xcf\x82\x03\x9b\x7d\x6c\x65\x26\x81\x6d\xde\xdc\x84\xa6\x79\xab\xd5\xdd\x66\x9f\x86\x4a\x13\x95\x62\xf5\x9c\xda\xb4\x5b\x1b\xc9\x6a\x69\x34\x23\xa9\x0c\xc9\x1a\x7e\xed\x79\x26\xa8\xb5\x87\x83\x0a\x56\x96\x62\x4b\x84\x5a\x42\xa6\x1f\x41\x4c\x99\x13\x27\x28\xf0\xca\x11\xbf\x57\x0c\x85\x5c\x2a\x42\x4b\x29\xac\x35\x7f\x2e\x6a\x52\x33\x5a\x58\x51\xd7\x88\xb9\xa6\x74\x7d\x03\xcb\x64\x62\x70\x70\x4c\xe3\x13\x72\xce\xd6\x35\xd3\xf2\x7c\x31\x76\x2b\xac\x04\xd1\x77\x1f\xab\x9b\x40\x96\x82\xcd\x39\x48\xca\x88\x6d\x54\x10\x45\x49\x68\xb5\x5b\x89\x9a\x8d\xda\x2d\xfc\x0d\xaa\x70\x36\xcd\x24\xde\x6c\xa6\x25\x9f\x91\x4c\xd6\xb1\xa4\x4d\x3e\xa5\xb6\xab\x8a\x73\xee\x97\x88\x91\xfb\x9c\x34\x47\xed\xc0\xe0\xec\x99\xaa\x92\x4d\xa6\x24\xad\xc6\x5d\x5d\x4c\xe2\xc7\xfe\x4d\x86\x9b\x9a\xc9\x4d\x69\x4d\x19\x10\xfc\x0b\x44\x52\x78\xa5\xc2\x37\x75\xc5\x8a\xe6\xf2\x8e\x01\x99\xf2\xd7\x53\xd4\x2b\x24\xc4\x2a\x20\xa9\xd1\x7a\xb1\x59\x99\xcc\x51\xa0\xb8\x1a\x07\x4d\xa8\x52\x0a\x19\x6b\x99\xfa\x33\x34\x13\x3b\x05\x3d\xf2\x88\xfc\xed\x6f\xf6\xab\xa7\x90\x60\xec\x94\xf0\xa2\x25\xb2\x37\x52\x39\x63\xe1\x23\x16\x55\xd2\x15\x6a\x42\xe2\xd5\x4c\xd4\x35\x9b\x25\x7a\x69\xdb\x19\xf3\x0e\x0b\x47\xa3\x85\x9f\xdd\x8e\xdd\xb0\x7a\x07\x87\x8d\x6c\x97\x82\x88\x6d\x25\xfd\xdc\x76\x28\x78\x4b\xb4\xbc\x54\xe6\xec\x18\xf6\x0a\x72\x38\xad\xe8\x82\x99\xef\xaf\x2e\x26\xd7\x0f\xc8\x1e\xef\x54\x33\x9d\x71\x0b\xf5\x1e\x77\x11\x6f\xe8\xd7\x3a\x0f\x82\x20\x5d\x2d\x83\x6a\x2e\xea\x15\x1a\x98\x35\xf1\xfa\x3d\xae\x2e\x26\x31\x1a\x76\x6b\x66\x4c\x19\x36\x8b\xd7\xe5\x79\x64\x4f\x8a\xab\xa9\x88\x6d\xc5\x0a\x8d\x26\x7d\x2e\xb0\xd3\x98\xe4\x43\x03\xe3\x72\x29\xd9\xec\xab\x0e\x9e\xe6\x9d\x9f\xda\x4a\xa0\x1b\xb3\x2d\x25\x25\x97\x90\xe7\x0f\x4a\x6e\xee\xd6\x4c\x7a\x85\x10\x6a\x36\x63\xfc\x86\xc1\x2e\xb1\xb5\xda\x9f\x1c\xe6\xda\x66\xa0\xb9\xba\x98\x4c\x34\x30\x28\x58\x81\xbe\xd3\x5c\x85\x0c\xbc\x7a\x4d\x1f\xe8\x10\x35\x3f\x8d\x23\xc9\xc2\xd6\xef\x7c\x87\xec\xfb\x5c\xd1\x78\x77\x31\xfa\xdd\xba\x71\xb2\x5d\x32\xcd\xf5\x89\xa8\xc1\xac\x1e\xa5\x26\xd1\x1b\x0e\xd8\xc0\xc2\x44\xe8\x97\xc9\xd4\x64\x23\x67\xde\xf7\xa6\x26\x12\xad\x4c\x5f\xcd\x97\x11\x9c\x61\x2c\x7f\xd9\x48\xe5\xf2\x45\xd5\x1b\xa6\x41\x9b\x80\xdb\x6e\xa4\x73\x19\xe3\x7c\xa8\x9c\xab\xfa\x08\xd1\x98\x86\x0e\xc0\xd0\xa7\xa7\x81\x3f\xbb\x23\x81\x55\x8c\xd4\x6c\x30\xc0\x9c\x96\x32\x1b\x96\x14\x3a\x09\xe8\xca\x96\x4c\x04\x1a\x05\x76\x50\x34\x1e\xae\x04\x93\x6d\xa4\xf6\x92\x55\x0b\x0c\x6a\xba\xac\x62\xde\xea\x07\x8d\xb8\xe3\x30\x2a\xa1\x47\xcb\x0c\xff\xc5\x02\x16\x42\x7b\x88\x5a\x16\x35\xdd\x92\x9a\xad\xc4\x0d\xd8\xa2\x2c\xfb\x33\x75\x65\x59\x20\x25\x55\x05\xc1\x76\xad\x8b\x6f\xd7\x4b\xec\x58\x7b\x8d\x03\xe8\x7e\xb0\xe5\x04\x71\x66\x45\x6e\x3e\x2d\x83\xd6\x56\xeb\xf8\x21\x9b\x33\x15\xfc\x83\xfa\xaf\xa6\xcc\xb0\x9d\x5a\x42\x7a\x09\x80\x9f\x4d\x4b\xdc\x59\xdb\x6f\xe8\xaf\xad\xa9\xde\x9d\xe7\xe4\xa9\xa8\xf2\x0c\x2f\xf2\x6a\x8e\xd6\xd9\xd9\x92\xcd\x3e\x40\xbe\xba\xb4\x78\x12\xb8\x4d\xe6\xca\x86\x58\xa3\x08\x70\x75\x31\xf1\x66\xd0\xa5\x62\x04\x92\xc3\xd8\xd0\xbb\x93\x0b\x62\xcd\xa2\x09\x34\x6a\x8d\x68\xaf\xe6\x2a\xc7\x3d\xc2\xe1\xec\xdc\xc6\x5e\x16\x4e\x5c\x5b\x12\x69\x14\xa3\xe6\x2d\xec\x3e\x6a\x8d\xf3\x2c\x51\x26\xe8\xc1\xbd\xfd\xee\x71\xcc\x03\x90\x90\x30\xf2\xf7\x20\x6c\x25\xd3\x0f\xdd\xae\x29\x03\x8b\xf1\x08\x06\x54\x4b\x39\x20\xbc\xc2\x1c\xa1\x3c\x2a\xaa\x8e\x6e\xaa\xf5\xd3\x11\x2d\x8a\x9a\xc9\x8c\xe3\xca\xe3\xa4\x8e\x60\x11\x52\x0b\xa3\x08\x7f\xcb\x94\x30\xb5\x73\x72\xf0\x24\x59\x6d\x4a\xc5\xd7\xa5\x39\x22\xf2\x3e\x4a\x91\xf2\x42\x8e\xc9\x59\x45\x68\x5d\x53\x10\xb0\xb4\x0a\xa4\x84\x1b\x74\x9f\xf1\x20\x3d\xc6\xbe\xf0\x97\xb9\x6b\x4d\xe1\xa0\x36\x43\x47\xc7\x27\xc4\xed\xaa\xbd\x6a\x79\x3f\xfe\x10\x20\x79\x08\x78\x78\x87\xec\xe1\xfd\xa1\xec\xdf\x7f\xb3\xa3\x95\xef\xf8\xaa\x0a\x1a\x6b\xd9\x12\xc6\x3e\xb0\x40\xa8\x56\x9b\x14\xab\xd1\x85\x54\x8b\xcd\x62\x69\xb4\x25\xa4\x03\x77\x5b\x00\x21\xec\x3b\x8b\xfa\xee\xe4\x70\xbd\xeb\xfe\x29\x8f\x88\x26\x98\x16\x13\x35\x39\xe0\x73\x3c\x96\x17\x47\xfb\x39\x47\xdb\x69\x91\x2d\xc7\x25\x9a\x50\xcb\xc1\xb1\xc6\x00\x45\x3f\x80\x25\xc4\xf0\x04\x8d\x1f\x5a\x14\xfe\xcd\xd8\x80\xf2\x2d\x7c\x5d\x07\x06\xcf\x8b\x41\x80\xb2\xc5\xf0\xe1\x1a\x34\xc3\x76\xca\x4b\x1d\x96\x97\x08\xb9\x2d\x57\x53\x26\xc1\xf6\x73\x63\x35\xf1\x26\x80\x0c\x16\xf8\x80\x27\x1b\xa1\x1a\xf7\x81\x11\xb9\xa9\x13\x1d\x9a\x2b\x6b\x9e\x31\x5a\x67\xea\x82\x0c\x58\xb7\x1d\xe2\x21\x94\x13\xcf\xfa\x4a\xdd\x35\x9e\x86\x9d\x60\x72\x73\xa8\x03\x80\x6c\x36\xfb\x96\xc9\x5a\x22\x8d\x2c\x60\x62\x9b\xd2\x7d\xb2\x10\x45\x59\x4c\xf2\x57\xcb\x3b\x5e\xbc\x6f\xf8\x6d\x3c\xd6\xeb\xaa\xdc\x99\x4c\xd3\x8e\x78\x30\x1f\xb4\x49\x5d\xdb\x72\x7e\x34\xda\xc0\x3e\x84\xaa\x83\x16\x9d\x1f\xc9\x6c\xfc\x17\x9f\xe7\x2e\x10\xe3\xa2\xce\x9c\x3c\x98\x8c\x35\xcc\xe8\xeb\x48\x5f\x44\x4a\xb4\x5c\x43\x7e\xcf\xf4\x98\x99\x5c\xd6\x58\x4e\x0f\x78\x92\x28\x8b\x58\xbe\x1a\x18\x21\x2e\xb4\x35\x98\x94\xd9\x0e\xb1\x5d\x37\xd5\x79\x74\xea\xd2\xaa\xce\xd4\x94\xdc\x46\x93\x4c\x6c\x7e\x37\x88\x97\x84\xd1\xd9\xd2\xde\x10\xac\x40\x3d\x1e\xcd\x79\x5c\xe6\x76\xe2\x3e\x8c\x5a\xe9\xa9\x02\x67\xbf\x77\x23\x5a\xc3\x60\x74\xd6\x13\x1a\x84\x37\x53\x86\xae\xe5\x68\xc1\xd4\xe5\xb9\xec\xc9\xc4\xa1\x6b\xc2\x3b\x7c\xe4\x20\x6e\x62\xef\xb3\x66\xe3\x1f\x18\x38\x26\x5a\x5e\x6c\x99\xac\x94\x31\xf7\x36\x93\xcc\xf2\xef\x0f\x6c\xb7\x97\x81\xa7\x94\xd5\x72\x50\x2c\x1d\x45\xcc\x3d\xa4\x22\x2d\x6f\x3a\xea\x41\xf2\xe4\x05\x72\x6d\x52\x6c\x6a\x0c\xce\xe6\x5a\x71\x9c\x09\xfb\x08\x40\xf7\x91\xa1\x66\xe2\xea\x2a\x60\x64\x21\x55\xae\xf3\x5e\xd1\x00\x63\xf1\x90\x8a\x34\x64\xcf\x8a\x79\xec\xa0\x8c\xc9\x8f\x17\xfc\xe3\xb7\xbf\xcb\xd0\xcc\x17\x12\x85\x79\xd1\x43\x04\xd6\xf3\xbd\xb5\xf8\x6b\xf5\x55\xcd\x76\xae\x2e\x26\x88\x87\x62\xf8\x55\x73\x8f\x6c\xd4\xb2\x1d\x5f\x6d\x6f\x65\x13\x82\x59\x53\x29\x7d\xed\x0e\x39\x7a\x89\xaa\x4b\x1a\x06\x48\x6c\xf0\x8a\x09\x07\x83\x10\x37\x13\x5a\xc2\x6d\x29\xd3\x29\x9d\x7d\xb8\xc5\x4d\x10\xa9\x4d\x7a\x0e\x5a\x49\xab\xe6\xaa\x39\x1a\xfe\xa6\xdb\x7f\x45\x8b\x3a\x84\x43\xbe\xf4\x08\xdc\xe7\x2c\x86\xd4\x65\x3b\xad\xfb\xa0\xf4\x45\x8d\xcc\x43\x66\x45\x40\x38\x12\xc8\x28\x6c\x6c\xad\x79\x0e\xcc\x8a\xdb\x1d\x05\x37\xf9\x50\x3e\xee\x75\x24\xba\x84\x55\x3c\xf0\x4b\xb6\x3a\x48\x28\x75\x15\x8c\xdd\xbd\x98\xdb\x24\xbf\x47\x9b\x95\x75\x53\x75\xb0\x1c\xa5\x34\x47\x03\x7e\x6f\xda\x85\x61\xad\x11\xfd\x60\x1b\x7d\x57\xb9\xa2\xa8\xd3\x8d\xe4\x95\xbe\xe5\x4b\xb1\xe0\x33\x42\x6b\x28\x03\x65\x80\xb1\x92\x2f\xf8\x94\x97\x5c\x25\xd1\xcc\x9d\x7b\x81\xdd\x7d\xf7\xca\xbf\xd9\xd0\xc1\x6c\xe8\x4d\x96\x0d\x85\x3b\xda\x44\x71\xaa\x25\x03\x9b\xa6\x3e\x79\x09\xb3\xf1\xa3\x55\xf5\x8f\x2e\x94\xcf\xd9\xf9\xef\x24\xaf\xb6\x51\x59\xc8\xa7\xee\xc0\x93\x7e\x0c\xce\x40\x8e\x2b\x1d\xc2\x7b\x70\x7e\x86\xfb\xa0\xec\xbc\x23\xb4\x66\x86\xdc\xcb\xe4\x01\xe9\x7e\xbe\xf3\xa3\x25\x78\x5f\x33\x3f\x8c\xcf\xd8\x59\xdd\x8e\xd5\x78\x27\x2e\x3e\x01\x6d\x8c\xc5\x6c\x80\x75\x20\x9b\x3f\xa5\xb5\x56\xe0\x41\xe0\xb2\xc5\x35\xe1\x4d\xb7\xe9\xe1\xe1\x32\xb2\x39\x1e\x60\xd5\xd1\xec\xc9\x2f\xb9\x84\xbe\x74\x10\x67\x4d\xb9\x9b\x4e\x66\xd1\x67\xcf\xc2\xa5\x77\x6f\x1b\x32\x1e\x9f\xc0\xfb\x86\x77\x44\xc7\x22\x17\xe3\x11\xfc\x76\x48\x80\x47\xc4\x06\x7a\x07\x79\xec\x23\xa6\xc3\x19\x33\xb9\x23\x73\x26\x39\x06\x6d\x36\xa8\x83\x47\xcf\x3c\xd3\x9d\x7b\x51\x1e\x3e\x26\x8f\x96\x6e\x96\xf7\x02\x35\x68\x67\x83\x42\x15\x7a\xc9\x6a\xe6\x22\xe1\xd7\x25\x55\x73\x51\xaf\x24\x29\x04\x8c\xba\xa4\x37\x0c\xef\xd8\x82\xd5\x52\xe9\xe3\x6a\x36\xe0\xb1\x4b\x62\x02\x70\xe0\x26\x96\xcc\x3c\xbf\x94\x4b\xbe\x26\xb3\x25\xad\x16\x69\x9d\x1e\xf0\xee\x6d\x7d\xbb\xa9\xd8\x28\x48\x71\x50\xd7\x4c\xae\x45\x05\xc5\x35\xac\x46\xb5\x62\xd4\x14\x30\x47\x45\x93\xfc\x75\xc3\x24\x88\x5f\x4b\x0a\xc1\x1c\xf8\xdc\xd3\xe8\xda\x79\x45\x3d\x30\x1c\x1f\x62\x32\x36\xd3\xb5\x7b\xb0\x84\xb7\x31\x7e\x72\x09\xfb\xa6\x30\xe3\x67\x20\x90\x65\x38\x39\x3d\x86\x5f\x3d\xdb\x5d\x9e\x3b\x9e\x95\xf4\x0b\xf4\xb1\x5e\x2c\x0d\x15\xd9\xe6\x45\x44\x4e\x33\xd6\x1b\x4c\x5d\xf8\xc0\x3e\x55\xdd\x77\x17\x82\x8e\xdc\x30\x8a\x5e\x0e\x43\xad\xea\xb6\xdd\x6c\xd6\xe7\x62\x2d\xd4\x84\x9a\xef\x82\x18\x0b\x78\xca\xe1\xaa\xae\xb4\x7b\xae\x82\x77\x1c\xe8\x4c\x03\x6f\x71\xcd\x68\x41\xb8\x0a\x8c\x5b\x5d\xdc\x38\xe3\x54\xd3\x73\x58\x18\x53\x59\x33\xb1\xb9\xd8\x1b\x0b\x9f\x79\xa8\x11\xfa\xe8\xfc\x5e\x57\x02\xb2\xff\xeb\x2b\x47\x54\xe5\xce\x7f\xcc\x6c\x96\x03\xcf\xe5\x69\x11\x45\x01\x5e\x5d\x4c\x8e\x7d\x38\x9a\x12\xc1\x37\x8e\x99\x27\xc2\x34\x43\x23\xf2\xa6\x64\x54\x42\xe4\x76\x10\x0b\x14\x05\x01\xc3\x38\x96\xf9\xe8\x7e\xfb\x8c\xa3\xd1\x3b\x11\x2d\xfd\xfc\x89\x84\xf1\x45\x79\xc1\x2f\x0e\x39\x32\x74\xf4\x55\x2a\x6a\x75\xd2\x91\x8b\xde\xe9\x47\x4a\x7d\x09\x07\x53\x07\x55\x45\xf8\x1e\x08\xee\x04\x1e\x56\x02\x9b\xe8\x9b\x5f\xf7\xc3\x97\x13\xe8\x77\x75\xc4\x17\xc4\xc8\x86\x85\x07\x83\xcd\x13\x35\xec\x9d\xd9\x5a\xc9\xa0\x8a\xa1\xfe\xf6\x4d\x93\xc8\x28\x4a\x12\xa1\x65\xda\x5d\xc4\x05\xdc\xe3\x06\x7c\x8b\x26\x6a\x33\xb2\x71\x43\x51\x53\xb9\x48\x48\xe6\x67\x4b\x8a\x4d\x34\xe1\x0b\xf2\x2c\x09\xfc\x3d\x8f\x4f\x07\xf9\xf5\x8d\x6f\xf3\x99\x56\x43\xb8\xbc\x38\x02\x9b\x39\xf4\xc8\x51\x5d\xc7\xc8\x3f\x71\xb6\x7d\x8b\x39\x2d\xea\x68\xfc\x4f\xfe\x6f\x23\xfb\x8f\xe4\x00\x98\x02\x6b\xe8\x9d\xce\x1c\x83\x8e\xbc\x67\x31\x28\x6f\x89\xe0\x14\x97\xad\x93\x68\xb9\x5e\x48\x5b\xf6\x40\x12\xc4\xb4\x3d\xbe\x9f\x8f\x05\x17\xbf\x38\x7d\x5c\xb2\x1b\x56\xba\xb0\x40\x13\xa9\xd9\xbc\x2d\xb9\xc7\x19\x58\x78\xd9\x98\x90\x30\x6e\xf7\x38\x0d\x73\x31\x26\x74\xc3\x50\x2c\x2c\x8a\xf1\x7c\x9a\x37\xc8\xf0\xcd\xa4\x17\xbc\x67\x85\x67\xdb\xe9\x35\x10\xbd\xe6\x29\x20\x7c\x05\x96\x7a\xd7\xd9\x74\x3a\x6e\xd4\x0e\x3a\x05\x97\xb3\x0d\x3b\xb3\xd0\xfc\x28\xd9\x9a\x56\x92\xa2\x3b\xcd\x8e\xf6\x20\x26\xea\xf6\x70\x9b\x20\x2c\xe6\x10\xe7\x2b\x9f\x13\xd3\x97\x3c\xec\x8c\x9a\xb2\x42\xbe\x09\xa6\xb3\xc2\x95\x0b\x3f\x1b\xc4\xf1\xcb\x24\x17\xea\x6c\x95\x93\xc0\x49\x1b\x52\xed\x82\xa9\xb3\xb2\xc4\x34\x1a\xee\xde\x28\x4b\x62\xdf\x61\x23\xba\xf0\x16\xf5\x11\x15\xb0\x28\x4f\xc4\x0a\xfb\xc2\x95\x02\x7b\x07\x75\x4d\xcd\x5b\xe6\x04\xd3\xbe\x80\x65\x67\x03\x52\x96\xfe\x97\x2f\x63\x45\x2f\xbe\xdc\x2b\xf7\x11\xe4\x5d\x93\xe9\xda\xfc\x4c\x73\xc9\xfa\xdc\x2b\x84\xf8\x36\xa1\x8d\xbc\xe0\xb2\x4d\x34\xeb\x6e\x4b\x3e\xd0\xc4\x01\x37\x0f\x7a\xb8\x24\x53\x86\xa5\x17\x69\x3d\x5b\x9a\xb5\x67\x70\x38\x09\xe7\x43\xa8\x4d\xd7\xa3\x84\xfd\x97\x7d\x3c\x61\xd3\x09\x75\xa2\x31\x9b\x62\xcf\xbd\x56\x8d\x9f\x34\x3c\x4d\x71\xec\x6a\x5f\x07\x69\x04\x9e\x8e\x82\xb4\x84\xad\xb8\x36\x25\x07\xfc\x68\x8f\x0e\x74\x5b\x20\x2d\x1f\xb7\x19\x70\x4d\xbb\x9c\x76\xfe\x44\xda\x3b\xbf\xf8\x38\x0e\xaa\xcc\x0c\x30\x7c\xd8\xae\x52\x68\x71\xc6\x8b\xaa\x6f\xf9\x94\xfc\x03\x23\x83\x57\x6c\xb5\xd6\x42\xcd\xef\x6b\xfe\xcb\x2f\x25\x67\x72\xf0\x05\x48\x23\x18\xd7\xcc\x7c\x62\x5f\x32\xa3\x6a\xa9\xdb\x3b\xd9\x61\x1f\x31\x61\x3f\x9f\xa4\x5e\x1f\x4a\x40\x71\x01\x09\xfb\x58\xcc\xcc\x2e\xca\x30\xf5\x34\x8a\x87\x16\xd5\x23\x70\x71\xcd\x18\x84\x38\xdf\xb0\xda\x79\xab\x8d\x40\x26\x6a\x33\x4b\xf0\x51\xdf\xd0\xd2\x4b\x83\x6b\x24\x81\xf5\x9e\xfc\x16\x79\x99\x46\xff\xe8\x28\xf6\x1d\x8c\xf1\xbe\x9d\x71\xda\xdb\x3d\xa0\xea\x6b\x23\x7e\xfa\x94\x8c\x4f\x97\xac\xb8\xdc\xf8\x2c\x6c\x1e\x85\x70\x13\xa1\xfc\x6d\x40\xf1\xa3\x0e\xb2\xf1\x5e\x1b\x36\x54\xe3\x5e\x1b\x1e\xc4\x4f\xfe\x7b\xc3\xea\x9d\x9d\x3f\xbe\x24\xb3\x1c\xb9\x61\x82\x4d\x4a\x28\x0e\x21\xea\xe8\xd0\xa1\x53\xb1\x71\x89\x1c\xb2\x37\x63\x83\x9a\xe4\x2d\xbc\x3f\xee\xd3\xf0\xf6\xcb\x3d\x09\x3f\xcd\x85\x16\xb4\x0a\x5c\xde\x8f\xfe\x38\x41\x91\xf3\xcc\x25\x67\x72\x30\x06\xdb\x08\x4f\xda\xfe\xf7\x6f\x63\x2e\x7d\x48\x6b\xe0\x7c\x98\x6a\xd2\x6d\xc9\xc1\x27\x13\x75\xa6\xcc\x79\x8c\xae\x60\xa3\x9d\xd9\xcd\xc4\x4c\xc2\x59\xf4\x9b\x97\xe1\xfe\x06\x98\xd7\xe6\xbd\xb7\xe0\xef\xb8\x09\xf1\x54\x35\x94\xe8\xe9\x70\xc7\x9e\x84\x49\xa8\xdd\xae\xe0\x3f\x7e\x8d\x5d\x91\xcd\xa3\xf8\x78\x5f\x2e\xcf\xe5\xb3\x5d\x72\x36\x9c\x99\x2c\xd9\x17\xe2\x76\x38\x73\x5d\x1e\xbc\x3f\x57\x6d\x59\x72\x0e\xdc\xa3\xb3\x8c\x99\xcf\x03\xc6\xe7\x5a\xe1\xb0\x45\xc9\x45\x0d\x1c\x87\xcf\x6d\x56\x8d\x0e\x0e\xe7\xd0\x33\x8c\x72\xbc\x5a\x2b\xe0\x37\xbf\x7d\xef\xef\xe0\x0d\xad\x71\x9b\x64\xf3\x3b\x39\x25\xef\xde\x07\xf6\x9a\xd8\x09\x64\xb9\xb1\xdd\x38\x53\x91\xdb\x5e\xf4\x8e\x5d\x39\x18\xfa\x4b\x6b\x19\xe1\xe9\xc6\x1b\x81\x38\xd5\xaa\x6d\x86\xdc\xd3\x53\xdb\x1d\x73\x7f\x67\xbd\x00\xe6\xd9\x9b\xcd\xbd\x3b\x17\x9b\xaa\x38\x76\xaf\x39\x00\xcb\x49\x37\x5c\xbb\xc9\xb1\x39\xb4\x63\x78\x6c\xd9\x7e\xda\xec\xb7\xe1\xa0\x78\x16\xfc\x71\xfd\x2b\x61\xff\x71\xb9\x32\x73\xcf\x88\x15\x66\xa6\xf8\x9c\x43\x23\xe4\xc9\x2d\xee\x20\x04\x92\x17\x86\xe5\x65\xe5\xe7\xe6\x81\x00\x12\xf3\x4a\x0a\xc4\xc0\x9c\x29\xba\x61\x7c\x5f\x90\xa1\xf9\x87\xc5\xce\x64\xaf\x30\x88\xab\x49\x78\x58\xee\x0c\xdc\x1f\x17\x6b\x38\x18\x28\x94\x11\x9e\xb9\x7c\x61\xd3\x78\x28\x5e\xb3\x22\xb0\x7c\x8a\x92\x51\x13\x36\x68\x73\xd9\x80\x77\x92\x6a\x84\x9d\x60\xde\x49\xb1\x9a\x8a\x56\xc9\x7f\x08\x8f\x76\xb7\x5c\x32\xc8\xa0\x58\x99\xa8\x40\xf3\x04\xfa\x88\xc0\xc3\x36\x18\x77\xd4\x0a\xe3\x72\xee\x75\xf1\x7a\x1c\x6b\x76\x24\x15\x6a\x22\x2b\x08\xc2\x68\x08\xe0\xb8\x15\xdc\x74\xd3\x3c\x1c\x9e\xd1\xca\x7b\xc1\x3b\x65\x36\x9f\x4d\x60\x97\xbd\x4f\x32\x0a\x66\x72\x6f\x8a\xef\x33\xb3\x51\x66\x8f\x3c\xbf\x52\x8a\x35\xf3\x94\x2e\xcb\xad\x63\x5a\x18\x76\x27\xb6\xc0\x81\x23\xa2\xf5\xc2\xbc\xed\x88\x52\x51\xb5\x91\x41\xee\x3f\x2f\xd7\x57\x70\xaf\xc4\x2a\x8b\x64\xca\xa4\xbe\xb7\xd5\x97\xb2\xb2\x6a\x9b\x35\x16\x3a\xeb\x5e\x76\x41\x47\x49\x2e\xbf\x1e\x1a\x0c\x97\xd7\x4c\xe1\x3b\x9b\xfe\xa7\x23\xb7\xe1\xee\x99\xcd\x48\x13\x35\x57\x8f\xec\xdf\x59\x6a\xb5\x89\x3a\x33\x64\x0a\x35\x08\x20\xc3\x54\x9e\xd0\x63\x1a\xc7\x53\x12\xd1\xf7\x1b\x63\x5e\xc2\x5d\xb0\x81\x4c\xbf\x82\x2c\xd8\x4e\xae\x20\x66\x58\xa4\xb4\x51\xaa\xff\xde\xd2\xee\x4b\xc2\x52\x33\x94\x79\xef\xec\xd4\x73\xd3\x06\xf7\x56\xa6\x10\x9f\x7f\xe1\x63\x62\x28\x3f\xe7\x40\x68\xe2\xdb\x63\x46\xf1\xb7\x90\x92\x19\xab\xf5\xb6\xd9\x83\xfe\x8f\xc2\xb1\xa0\xf6\x86\x50\xb4\x4c\xb1\x91\x8c\x1b\x19\x40\x83\xf5\xbb\x85\xb7\x49\x9f\x1d\x45\x11\x5b\xb9\x5a\x56\xa5\x78\x9b\xdb\xc0\x55\x98\x06\xed\xef\xc9\xe1\xd0\x07\xf8\x0a\x26\xf2\x86\xd5\x90\xc2\xf7\x56\xdc\x6e\x91\x4b\x49\xe5\xcb\x5f\xbd\x72\x40\xe5\x49\xb0\x33\x15\x55\xd3\xc5\x3d\x18\xb5\x3b\xd1\x0c\x09\x8f\x4b\x34\xee\x3c\x6c\x66\xfc\x0e\x69\x45\x8e\xd6\xa4\x4e\xd9\x0d\xcf\xe7\xa1\xc1\xd4\xf6\x5f\x3a\x09\xcd\x6d\x12\xd0\xc4\x74\x11\xe5\x9e\xe9\xc2\x02\xfc\x2f\xef\xd2\xf0\x53\x22\xc5\x86\x7f\xe9\xfd\xd6\xb8\x37\x12\xa4\x05\xd9\x68\x7a\xfa\x3d\x7c\xd0\xb7\xf3\x7e\x78\x13\x1f\x1e\x8d\xc9\x57\xef\x9a\x2f\xde\xff\xf3\xee\x72\xf3\x77\xb7\x43\xc7\x2f\x4b\x76\x79\x1e\x5a\x93\xe2\xb4\x59\x84\x55\xca\x46\x2d\xb7\x5c\x2b\x49\xba\x38\xef\x76\xf1\x59\xc5\xa1\xf7\x43\x3e\x85\x57\x7b\xba\x0b\x7f\x51\xc3\x5c\xa2\x36\x48\x31\xda\x00\xfd\x57\xa1\x83\x77\x3e\x2e\xde\x3f\xec\xa6\x07\x28\x53\xb7\x87\x24\x9c\x4d\xeb\xea\x62\x72\x30\xdf\x6f\x88\x03\xdf\xfe\x1f\x6c\x44\x3c\x68\x3a\x7d\xa8\x05\x2b\xf3\xfd\x89\xc4\xb7\x82\xb7\xc7\xff\x0c\x57\x83\x95\x37\xfc\x2a\x73\xa7\xb7\xb8\x29\x5a\x24\x91\x43\x68\xf0\x10\x71\x04\xe2\xd8\x30\xbf\x3d\x04\x1c\x21\x51\xae\x31\xd7\x15\xe4\xb5\xf6\x17\xe4\x82\x6c\xdb\xf2\xf5\x11\x5a\x15\x91\x98\x81\x04\x64\x84\xba\x34\x89\x46\x86\x0e\x91\x9d\xd8\xaf\xf1\xdd\xea\x47\x07\x82\x57\xb7\x98\x57\x27\xb5\x5e\x45\xe0\xb2\x39\x6d\xff\x51\xe9\xb2\x85\x80\x62\x14\x46\x64\x11\xe3\x31\x93\x02\xcb\xc4\x3d\x82\x86\xd3\x27\xb3\x6c\x46\x8c\x34\x1c\x26\x7b\x69\xf8\xed\xe2\x83\xe5\x48\xa4\xb5\xb5\x9f\x28\xb1\xbd\x55\x7b\x02\xc5\x28\xfb\x54\x3e\x2f\x69\xef\x6c\x8c\xbd\xb2\x6e\x6b\x68\xd6\xd2\xfb\xf0\x94\x3c\x19\x93\xc1\x55\x98\x38\x12\xec\xcd\x33\x93\xd2\xc4\x3c\x12\x6d\x4b\x67\x46\xec\x8b\x8b\x56\x86\x14\x19\xc6\xa1\xb1\xa9\x94\x1f\x98\xf1\xdd\x8f\xab\xa6\x50\x62\x52\xf8\x31\x88\x34\xcb\x26\x30\x8b\x29\x2a\xd0\xfe\x5e\xd1\xb5\xbe\xb6\x1a\xcd\x8f\x96\x9a\x19\xed\xac\xe6\x67\x09\x6b\x23\xf5\x3d\xd6\x80\x0a\x22\x3b\x7f\x5e\xb2\xca\x64\x8b\x30\x4a\x53\x44\x87\x9a\x8a\x11\xe0\x31\xf9\x1a\x48\xda\xda\x79\x6c\x59\x21\x03\xa9\xe1\x34\x10\x20\xba\xa2\x6b\x9b\xff\xea\x03\xdb\x1d\x6b\x3d\x74\x85\x29\xb1\x30\x9e\x1f\x4a\xfd\x55\x0b\x22\xe6\x3e\x90\x6b\x0c\x25\x7d\xd3\x04\x74\x26\xe7\xcd\x43\x96\x8d\xa1\x33\xe4\x1b\x6a\x9b\x4d\x47\x8f\xb8\x90\x0a\x43\xc7\x84\xc1\xa3\xb7\x64\x4c\x73\x9c\x55\x24\xa3\xb0\x58\xb3\x50\x2c\x8a\x21\xcd\xc3\x50\x78\x7b\xa4\x71\xc6\xab\xc5\xa8\x7b\xce\xab\xf8\x5e\x1b\x13\x97\xe3\x2d\x37\x57\xa3\xa5\x5a\x11\xc5\xa6\xa8\x4e\x92\x41\xcb\x60\x9e\x2f\x20\xf1\x9e\xe2\x2b\x46\x68\x90\x53\x96\x4b\xab\xbd\x84\xc9\x70\x8d\xbf\x8f\x2f\xaa\xe0\x99\x8f\xbd\x89\xc2\xdc\xac\xa8\xfe\x52\xcc\x5b\x5e\x99\xbc\x81\x98\x86\x1c\x37\xfc\xeb\x0e\x24\x60\x49\x8a\x90\xad\xa6\x9c\xea\xe4\x84\xfc\x44\x6b\x0e\x01\x80\x92\xff\xc2\xa2\x8a\xc4\x89\x54\x9e\x64\xa2\x0b\xb1\x1e\x09\x02\x06\xe7\xdf\xfc\x76\xec\x41\xfa\x77\x66\xdf\x7f\x8d\xcc\xbe\xb6\xbe\x08\xb2\xf2\xf8\x82\x0f\x9a\xdb\xf2\x29\xcd\xdc\x4f\xbd\x85\x44\xf7\x1d\xc0\xb5\xd7\x5d\x94\x51\xb7\xad\xa6\x53\x76\x0e\x6d\x73\x6b\xcf\xc5\x1f\x5d\x61\x69\xb5\x27\x8f\x1a\x82\x8e\x58\x49\xc5\xfd\xe8\x0a\xaa\xdc\x79\x61\x3d\x6a\x9e\x64\x4d\x7c\x2e\x2a\x1a\x18\x1e\x42\x79\xa4\x45\xa5\x5f\x2d\x0b\xbd\xdf\xf5\x40\x13\x60\x07\x35\xdf\xd5\x14\x48\xa2\x78\xce\xe4\x1a\x79\x07\x30\xda\x5e\x95\xa4\xa6\xd9\xbd\x38\x0f\x6e\x81\x1e\x0e\x83\xd0\xfc\xac\xd5\xa5\x2c\x07\x52\x02\x9e\x94\x50\x53\x9d\xdf\x2b\xf8\x5b\x73\x67\x88\xef\xb1\x93\xad\xb9\xfc\x9d\x50\x93\xf8\x9a\xda\x18\x61\x47\x2e\xff\xc3\x81\xf5\xac\x5b\x80\x22\x1a\x8a\x1d\xab\xdc\x20\xfd\x28\x92\x5c\xc5\xbb\x72\x1c\x0b\x85\x6e\x3f\xb2\x37\x42\x2b\xeb\xed\xa2\x98\x6e\xdf\x45\xbe\x3e\x41\x67\xae\x75\x8c\x4b\x08\xd8\xac\xe7\x87\x08\x7f\x33\x0f\x42\xe3\x27\x48\xde\x90\xa1\x56\xc8\xe7\xe4\x21\xb2\xd3\xb6\xe5\x8c\xac\xd7\xf1\x8f\x6c\x37\x4c\xe6\x92\x4b\x64\xb8\x07\x9e\x5f\x4d\x3c\x81\x77\x6c\x99\xf8\x93\xcc\xab\x60\x73\xc4\x5d\x8b\x0e\xb5\xc5\xe7\x06\xad\x53\x79\x97\x0c\xff\xbe\xad\x5c\x0f\x2d\x8a\x89\xe8\xcb\x24\x9c\xbc\x27\xc9\xd7\xed\x9a\xc1\x1d\x79\xc5\xbf\x8f\xfe\x49\xc7\x49\x6d\x04\x5c\xa8\x24\xdc\xb9\x7b\xb7\x3a\xb0\xbf\xc6\x41\x0d\x46\x30\x19\xb0\xf6\x38\x36\xf3\xd4\x62\x67\xe8\x9f\x04\x27\x47\x1d\x70\x3a\x92\x13\xe9\x3d\x66\x87\xbc\xcc\x95\x50\x64\xce\xab\xa2\x7b\x9a\x5e\x9c\xa5\x83\xfd\x30\x53\x89\x31\x2c\xb5\x77\xeb\x95\x1f\xbc\x4c\x2d\x15\xfa\x98\xf2\x25\xcb\x3c\x7b\x68\xdf\x61\x32\xdd\xf0\xb2\x80\xda\xc6\xe6\xa1\x8b\xaf\xab\xc2\x73\x05\x93\x29\xac\x59\x63\x8e\xc3\xac\xe8\x3a\xa6\x71\xbd\xae\x24\x04\x37\x4b\x65\x7f\x8a\xcb\xdf\xfc\x29\x21\xf2\x3f\xb5\xdd\x4b\xdd\x65\xc6\x55\x50\x85\xdf\xe6\x26\x48\xcb\xf3\xbb\x3a\xf8\xde\x20\x6d\xc5\xf0\x7d\xc4\xfe\xbb\xf8\xd2\xbf\x5c\xf1\xa5\xbc\x65\xf3\x61\x5e\xb0\x0f\xa4\x13\xe3\xfc\x18\x93\x81\x7f\x35\x5b\xee\x60\x6e\x13\x2b\x00\xa2\x66\xf2\xb0\xb3\xc4\x60\xcb\x98\xbe\x04\x93\x29\x9d\x94\xcb\x64\xec\x5b\x30\x0a\x56\x4c\x84\x79\xb5\x8c\xc0\xbf\x54\x0d\xa6\xf6\xaa\x07\xc9\xa2\x32\xa5\x03\x3a\xd9\x66\x4b\xfb\x48\xcd\x6e\x83\x9a\xea\xf4\x5f\xe7\xcd\xc0\x27\x27\xf7\xf1\xc8\xf8\xb9\xcd\x1c\xf5\xca\xe8\xe3\x3f\x71\xb6\x95\xf7\x31\x80\x1d\x61\xc1\x94\x1d\x04\x60\xe7\x5f\x04\x02\xaf\xc6\xaa\x11\xf4\x86\xf2\x12\x0c\x78\x8e\x40\x83\x6c\x7b\x6d\xea\x71\x30\xca\xd0\x1a\xc2\x9a\x67\xba\x4f\x8f\xc6\x04\xca\x3c\x64\xde\x93\x62\xf9\x87\x00\x07\xa3\xab\x8b\x49\xf3\x6c\x56\xef\xd9\xf7\xc3\xa3\x63\xb2\xb7\x21\x97\x9a\xec\xda\xda\xbe\x15\x3b\x5a\x2a\xce\xe4\xf7\xc3\xa3\xf7\x91\x57\xa8\xc6\x67\xe8\xfe\x3a\xec\x77\x32\xc4\xc3\x23\x19\x62\xae\x23\x76\x3b\x03\x34\x87\x9b\x63\xe8\x11\xbc\x69\x3e\xab\x76\xd7\x60\xa2\xf4\xed\x09\x99\xfa\x33\x41\xe9\x19\xf2\xb7\xbf\x99\x2f\x1e\x6a\xe1\x0e\xca\x48\x1c\xe9\xdf\x1a\xf0\x83\x89\x5f\x46\x06\x26\xba\xda\x48\xf0\xb9\x18\x8e\xec\x15\xc9\xc0\x87\x1a\x83\xe8\x08\xc0\x71\xd9\x72\x35\x5b\x3a\xb8\xd1\xa4\x66\x54\xb2\xfd\x7b\x85\x9b\x9a\xd6\xc5\x31\x54\xb1\xa7\xeb\x30\xe9\x07\xf3\x6a\x1c\x8d\x63\x72\x62\xfe\x3a\x89\x8b\xca\x1c\x67\xfb\xa2\x63\xd8\x74\xc5\x3f\x0e\xea\xe9\x67\x32\x87\xc5\x7f\xd5\x7c\xa3\x29\xb2\xa3\xeb\x4b\x5e\x7d\xc0\xa2\x26\x07\x74\xcd\x3e\x8e\xbf\x30\x1a\xdf\x98\x0c\x35\x01\x1e\x5c\x9a\x22\xb3\x11\x77\x2d\x53\xe1\x7f\x3e\xa7\x5f\x1f\xdd\x82\x74\xdc\x31\x4f\xa9\x47\xeb\x13\x53\x5a\x55\xac\xbe\x5c\xd1\x05\x23\xa7\x11\x21\xbd\x62\x05\x6f\x21\x9e\x39\x2f\xd9\x38\x6a\xfe\x87\xc9\xe4\xcd\x05\x2f\x59\xbe\x87\xfe\x6c\xea\x72\x4c\x06\x4b\xa5\xd6\x72\x7c\x72\x52\x4d\xa9\x89\x67\x1b\xcd\xc4\xea\x44\x2a\xaa\xf8\xec\x84\xaf\x16\x27\x4a\xac\x1f\xeb\xef\x1f\x97\x62\x21\x1e\x2f\x45\xcd\x7f\xd1\x32\x42\xf9\x78\xbb\xe4\x8a\x8d\xe4\xcd\x62\x90\x1d\xa3\x65\xf7\x57\x7a\x1d\xe6\x4c\x73\xbd\xd2\x13\x79\xb3\xf8\x8f\x8f\xab\x32\x85\x92\xe2\x1c\xd4\xc2\xbf\x6e\x68\xcd\xfe\x17\x21\x69\x4e\x6f\xf8\x4c\x54\xf6\xff\xbf\x2e\x46\x7a\x30\x1d\x24\xba\xfc\x1a\xd1\xcc\x3e\xb8\x7a\x76\xf6\x78\x22\xd6\x8f\xf5\x61\x19\xe4\x67\x59\x30\x8c\x48\xc1\xac\x69\x57\xcf\xce\xf4\xe1\x22\x90\x6b\x84\x4b\xb2\x13\x9b\x1a\xd2\x95\x61\xba\x19\xb1\xad\xb4\x78\x55\x96\xc7\xe8\xb8\xab\x69\xa1\xf9\xf4\x9c\xcf\x38\x2d\x49\xc1\x17\x5c\xd1\xd2\xe5\x61\x9b\x96\xcc\xbd\xba\xd3\x80\x75\x97\x9f\xaf\x9e\x9d\x3d\x92\x64\x81\x7e\x30\x65\x12\x43\xe8\x5f\xf4\xbf\x58\x2d\x5b\xa6\xc9\x3e\x2a\x56\x57\xb4\xfc\xf1\xed\xcb\x78\xb7\x5f\x34\x3f\x0d\x5b\xb6\x74\xd0\xb2\x45\x1e\xcd\x8d\xfd\x3f\xf2\xad\xbd\x63\x3c\xf6\xff\x68\x81\x2d\x34\x52\xe4\xb8\x83\xa1\x0d\xd4\x96\x2b\xc5\xea\x41\xaf\x25\x99\xc6\x40\xa2\xcd\xf2\xda\x96\x06\xf0\x0b\x2e\x67\xa2\x2e\xfa\xc1\x37\x8d\x01\x3e\xaf\x6e\xb8\x62\x7d\x87\xe1\x95\x54\x74\x51\xd3\x55\xbf\x81\xb6\xdb\xed\xc8\x75\x49\x96\x93\xe7\xd3\x3d\x8e\x4c\x1b\xab\xf6\xa5\xac\x7c\xd5\x3b\xcd\x7e\x6a\x68\xb5\x7b\x6b\x6a\x93\x8d\xc9\x73\xba\xa6\x98\xe7\xf6\xbb\xaf\x3e\x85\xd7\x95\x6d\xf4\xf9\x7b\x72\xda\x8a\x95\x05\x53\x67\x18\xac\x34\xb4\xd7\x15\xce\x64\x77\x86\x29\xf5\x40\xdd\xb7\x83\x70\x06\x39\xd7\x3b\x86\x1a\x86\xab\x5a\x30\xf5\x36\x9c\xf2\x1b\x27\x2f\x0c\x8f\xbc\x7a\xea\xfe\x27\xcb\x55\x1c\x7e\xda\xd9\xe5\xbb\xd6\x5f\xf4\x27\x07\xae\x85\x2f\x85\x93\xb1\xa8\x8e\x70\xdf\x4e\x69\xf6\x33\xdb\xa8\x31\x79\x32\x7a\xf2\x9f\xfb\x9b\x26\xfc\xcd\x66\x52\x5a\xd1\xfa\x03\x53\xeb\x92\xce\x98\x9d\x40\x9e\xbd\xdb\x4f\x9e\x32\xf5\x27\x35\xf8\x85\xed\x7b\xc4\x06\xde\x45\xbb\xca\x68\x72\x76\x91\x90\x13\x8a\x96\xfc\x17\x1a\xd8\xdf\xbf\xcc\xa8\xf0\xbf\x44\x97\x06\x03\xa5\x99\x05\x6b\x92\x13\x63\x8e\xb5\x46\x80\xd7\xfa\x6e\x5c\x4c\xfe\x49\xf8\xb3\xcb\xf2\x11\xaa\xcb\xa8\x50\xdb\x97\xd2\xd9\x9f\xe2\xa2\x85\x4e\xbb\x36\x11\x43\xbe\x5e\xdd\x68\xde\xf0\x90\x2a\xf9\x09\xde\xfa\x5c\x6f\xd6\xeb\x72\x07\x53\x0c\xcc\x65\x1b\x5b\x68\x3f\x4c\x4d\x15\x57\xd6\xc8\x86\x32\x62\xd1\x76\x5f\xd0\xce\xd7\xd5\xc1\x7a\x1a\xad\xca\xc4\x51\xbe\x00\x5d\x81\xa2\xbd\x5c\x12\x4a\x1c\xd7\xd9\xb9\x77\x3e\x99\x8c\xbe\xc1\x24\x03\x46\x65\x20\x0d\x53\x8b\x45\xb6\xb9\x5d\x20\x97\x72\x13\xa9\x12\xed\xab\x08\x4f\x36\x55\xed\x3a\xd0\x83\xe6\xc0\xc5\x7b\x01\x36\x3c\x28\x45\x7b\xe0\x2e\x24\x05\xf3\x83\x32\xf9\x6e\xd6\xe6\x98\xc1\x8f\xf6\xdd\xc9\xe7\x07\xff\x37\x00\x00\xff\xff\xb0\x4f\x43\xa3\x42\x2b\x01\x00" func topshotCdcBytes() ([]byte, error) { return bindataRead( @@ -133,7 +133,7 @@ func topshotCdc() (*asset, error) { } info := bindataFileInfo{name: "TopShot.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa5, 0xee, 0x23, 0x12, 0x94, 0x86, 0x5e, 0xab, 0xbc, 0xe9, 0xf5, 0xfd, 0xb2, 0x37, 0x8c, 0xd6, 0xf9, 0xdf, 0x5f, 0x30, 0x14, 0xd9, 0xf6, 0x6c, 0xce, 0xcd, 0xd, 0x6a, 0x48, 0x6e, 0x8a, 0xed}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x1d, 0xb, 0x4, 0x59, 0xe6, 0x9a, 0x3f, 0xfc, 0x10, 0xc, 0xa0, 0x7e, 0x9f, 0xcb, 0xc3, 0x86, 0xe8, 0xe, 0x26, 0xf4, 0x3c, 0xf4, 0x52, 0x8a, 0x7, 0xb1, 0x2f, 0x44, 0xf6, 0x14, 0x5c}} return a, nil } From 2486d6436196fefaac6423a77f512bc2f072f0b8 Mon Sep 17 00:00:00 2001 From: loic1 <17323063+loic1@users.noreply.github.com> Date: Mon, 6 Jan 2025 20:25:34 -0700 Subject: [PATCH 9/9] fix tests --- contracts/TopShot.cdc | 8 ++++---- lib/go/contracts/internal/assets/assets.go | 6 +++--- lib/go/test/subedition_test.go | 2 +- lib/go/test/topshot_test.go | 2 +- 4 files changed, 9 insertions(+), 9 deletions(-) diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 81137d2..b79db2a 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -1509,10 +1509,10 @@ access(all) contract TopShot: NonFungibleToken { // // Returns: The subedition struct that the NFT belongs to access(all) view fun getSubeditionByNFTID(_ nftID: UInt64): &Subedition? { - let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) - ?? panic("No subedition admin resource in storage") - if let subeditionID = subeditionAdmin.getMomentsSubedition(nftID: nftID) { - return subeditionAdmin.subeditionDatas[subeditionID] + if let subeditionAdmin = self.account.storage.borrow<&SubeditionAdmin>(from: TopShot.SubeditionAdminStoragePath()) { + if let subeditionID = subeditionAdmin.getMomentsSubedition(nftID: nftID) { + return subeditionAdmin.subeditionDatas[subeditionID] + } } return nil } diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 52a7cbd..7446c1b 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // ../../../contracts/FastBreakV1.cdc (38.474kB) // ../../../contracts/Market.cdc (11.292kB) -// ../../../contracts/TopShot.cdc (76.61kB) +// ../../../contracts/TopShot.cdc (76.573kB) // ../../../contracts/TopShotLocking.cdc (6.697kB) // ../../../contracts/TopShotMarketV2.cdc (13.008kB) // ../../../contracts/TopShotMarketV3.cdc (15.791kB) @@ -117,7 +117,7 @@ func marketCdc() (*asset, error) { return a, nil } -var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\x73\x1b\x37\xb2\x30\xfa\xdd\xbf\x02\xe6\x73\x2b\xa6\xf6\xc8\x94\xb3\xd9\x93\x5b\x97\x37\x8a\x23\x5b\xd6\xae\xce\xda\xb2\x8f\xc5\x24\x75\xca\xe5\xda\x05\x39\x20\x89\xf5\x70\xc0\x1d\x80\xa2\x19\xaf\xff\xfb\x53\xe8\x06\x30\x78\x9b\xe1\x50\x92\xb3\x67\x5f\xf8\x21\xb1\x48\xa0\x01\x34\x1a\x8d\x7e\x43\xf7\xc9\x6f\x1e\x10\x42\xc8\x39\x93\xb3\x9a\xaf\x15\x17\xd5\x98\x3c\x67\x95\xaa\x69\x49\xae\x57\xb4\x56\xe4\xb9\xd0\x7f\xcd\x14\x99\x8b\x9a\x5c\x3d\x3b\x23\x13\xb1\xbe\x5e\x0a\xf5\x00\x3a\x4e\x96\x5c\x12\x09\x0d\x67\xb6\xa1\xfe\x07\xe5\x95\x24\x6a\xc9\xc8\x4c\xd4\x8c\xcc\x37\xd5\x4c\xc3\xa6\x25\x57\x3b\x0d\x08\xfa\x1a\x60\x44\x43\x3b\x26\xb3\x9a\x51\xc5\x0a\x32\xdd\x91\x73\xba\x5e\xb3\x9a\xbc\xa4\x53\x69\x47\x61\x0d\xf8\x15\xad\xe8\x82\x21\xf4\x82\x2a\x4a\xa8\x94\x62\xc6\xa1\xf3\x96\xab\x25\xa1\x65\x09\x3f\xae\x4b\xba\x93\x84\x56\x05\x91\x4c\x49\x00\xa4\x96\x54\x11\x5a\x33\xb2\x91\xac\x20\x54\x12\xc5\x56\xeb\x92\x2a\x26\x61\x79\xba\xd7\x2b\xb1\x62\x95\x22\x57\x17\x13\x33\xf8\xcf\x4b\x56\x11\x4a\x2a\xb6\x25\x6f\x4a\xba\x23\x5b\x5a\x29\x49\x94\x20\x53\x46\x68\x51\xb0\x42\xff\x5b\xf7\xac\xd9\x4c\xd4\x85\x3c\x26\xb4\x22\x67\xc5\x8a\x57\x66\x4d\x38\xb4\x07\x41\xaa\x7a\x33\x53\x38\x19\x8d\x3e\x25\x6a\x56\x10\x5e\x01\x94\x10\x99\x23\x87\x80\xca\x03\x4b\x2d\x68\x80\x79\xcd\x94\x1c\xc1\x7f\x75\x37\xc9\xa5\x22\x62\x4e\x28\x59\x6f\xa6\x25\x9f\xf9\xa3\x01\x2c\xb7\x3d\xe6\x77\x5e\xcd\x45\xbd\xa2\x7a\x7f\x08\x9d\x8a\x8d\x22\x54\x23\xec\x18\x30\x47\xc9\xba\xe6\x37\x7a\xa4\x9a\x49\xb1\xa9\x67\x88\x3a\x44\xa6\x20\x2b\x5e\x29\x98\xc3\x0a\xb0\x26\xc9\x94\x6a\xc4\x8a\xf9\x5c\x4f\x01\x37\x00\x96\xb9\xa4\x37\x8c\x4c\x19\xab\x48\xc9\xab\x0f\x0d\xce\xae\x99\xb7\x44\x42\x61\x79\x6e\xa4\x25\xc5\x5d\x5e\x8b\x2d\xab\x75\x8f\x42\xc0\xe6\x8a\x39\x7c\xcd\x57\x6b\x51\x2b\x5a\x29\x42\x81\xba\x10\xcf\x79\x34\x9a\x5d\xd4\xf0\x25\xec\xa0\x06\x37\xd3\xc0\x2c\x6d\x4a\xdd\x13\x57\x6e\x48\x85\xed\xb0\x85\x5a\x32\x5e\x93\xa9\xa8\x6b\xb1\xbd\x66\xca\xf5\xd0\x20\x16\x4c\xa3\xab\x66\x73\x56\xb3\x6a\xc6\x2c\x5e\x00\x8e\x9d\x4a\x33\x09\xbd\x8d\xc7\x16\x72\x15\x8f\x2f\xcc\xcc\x99\x22\x1b\xc9\xab\x05\x62\xce\xc1\x36\x78\xba\xd4\xad\xb8\x5e\xc4\xee\x38\xb3\x52\xd8\x35\xae\x24\x29\xd8\x9c\x57\xac\x70\xd8\xd4\xeb\x53\x4c\x37\x01\x30\x70\x52\x16\x9a\x88\x88\x62\x74\xb5\x15\xf5\x87\x63\xf2\x97\x8d\x54\xa4\xe4\x1f\x18\x00\xbe\xac\x0a\x4e\x2b\x4a\xde\xd0\x19\xab\x25\x0e\xb6\x40\x8a\x56\x70\x78\x75\x47\x00\xa6\xc9\x4d\x23\x8a\xaf\xec\x2c\x01\xdd\x96\x28\xf4\x81\xd3\x94\xc2\x0a\xb3\x78\xfd\x05\xaf\xb8\xe2\xb4\xe4\xbf\xb8\x63\x6b\x8e\xde\xb9\x3e\xd3\x86\x68\x69\x85\xa4\xa6\x3b\xd4\x4c\x6d\xea\x0a\x39\x84\x9e\x0a\x40\xac\x47\x19\x0e\x41\x4b\x29\xcc\xfa\x25\xa1\xe4\xb9\x28\x4b\x86\x3b\x66\x91\x31\x42\xc6\xc5\x35\x7b\x20\x62\xfa\x17\xe6\x1f\x10\x76\xc3\xea\x9d\x65\x73\x9a\x11\x10\xb1\xad\x58\x4d\xb6\xbc\x2c\xf1\xb0\x9a\x9d\xe5\x35\xa1\xb3\x99\xd8\x54\xca\x9d\x07\xe0\x4d\xe6\x37\xdd\x73\xe6\xc6\xf6\x26\xba\xa2\xbc\x72\x9c\xcf\x82\x40\xf0\x30\x75\x38\x2c\x7a\x0f\xc5\xb6\xb2\xfc\xa8\x01\x64\xc8\x5c\x01\x09\x6d\x24\xd3\xe3\x2e\x45\x59\xb8\x1e\x16\xed\xcd\xc1\xab\x84\x22\x3b\xa6\xf0\x00\x4a\x86\xd4\x4f\x75\x67\x8b\xbf\x2b\xa1\xd8\x98\x9c\xc1\x02\xf5\x69\x9f\x2d\x69\xb5\xd0\x34\xd8\x90\x27\xcc\x6f\x4d\x2b\xcd\x32\xe6\x1a\x6f\xbc\xba\xa1\x25\x2f\x08\xad\x17\x1b\x98\x23\xc7\xa9\xad\x6b\x71\xc3\x35\x5f\x14\x35\x11\x15\xd3\xd4\xa1\xa7\xb6\xae\xd9\xe3\x99\xa8\x0a\x6e\xa8\xbd\x26\x6b\x21\x81\x70\xed\x57\xb4\x66\xd5\x23\x45\x56\x9a\x27\x68\x40\x17\x6e\x6c\x58\x4a\x21\xe0\x57\x51\xf0\xf9\xce\x4c\x13\xb7\x84\xaf\xd6\xe5\xce\xd0\x07\x79\xa2\x21\x57\xbc\x44\xba\xa9\x0a\xa2\x96\x42\x32\x32\xa3\x92\x49\x52\x31\x64\x3d\x53\xcd\x5c\xaa\xa2\x6c\xa8\x49\x9f\x45\x87\x8d\x4b\xe0\xcb\xb0\x17\x0d\x93\x51\x82\xd4\x6c\xc5\x56\x53\xcd\x8b\x2c\xad\xe8\xed\xfc\xbd\x28\x0b\x56\x91\x6b\x98\xd1\xcf\xb4\xae\xb9\xa8\x25\x99\x96\x6c\x4b\x28\xf9\xe6\xf1\xd7\xa4\x64\xd4\xb1\xf7\xdf\x3e\xf9\xfa\x5b\x38\x3c\x73\x5e\xd1\x52\x8e\x1e\x3c\xf8\xcd\xc9\x83\x07\x38\x8a\x5e\xf0\x82\x4f\x4b\x36\x11\x1f\x58\x45\xe6\xb5\x58\x91\x27\x1f\x2f\x7e\xbc\xfa\xfd\xe5\xb3\x97\x2f\x26\xaf\xff\xf8\xe2\xea\xec\xfc\xfc\xed\x8b\xeb\x6b\xdb\xe1\x4a\x54\xd9\x3e\x57\x17\x93\xa8\xe5\x2b\xa6\xa8\xbe\x2d\x7f\xe2\x6c\x2b\x6d\xb3\x57\x2f\x26\x67\xe7\x67\x93\xb3\x9f\x2e\x5f\xfc\x7c\x1d\x75\x30\xf4\xff\x52\xcc\x3e\x00\x1d\x60\x8f\xc9\xeb\x37\xd7\x7f\x78\x3d\x79\xf9\xfa\xf9\x1f\x2f\xaf\x7e\x1f\x75\xd1\xb0\xdf\x32\x29\xca\x1b\x56\xdb\x0e\x1a\xf4\xdb\x17\xd7\xaf\x5f\xfe\xf4\xe2\xad\x6d\xfe\x80\xce\x66\x4c\xca\x21\x2d\xcb\xa3\xe6\xd4\x9a\x01\xc7\xe9\xa2\x3e\x01\xaa\x4f\x4e\xc8\xe3\xfb\xf9\x58\x70\xf6\x88\x17\x6c\x5d\x8a\x1d\x90\xf0\x0d\xad\x39\x9d\x96\xe6\xce\xbe\xc7\x21\xdd\x98\x4b\x7d\x69\x2b\xcd\x6f\x83\xcb\x41\x13\x1c\xce\x43\x1f\x9c\x0a\xa9\xd7\x43\xd3\x0d\x67\x5b\x7d\x18\xc9\x15\x76\x1e\x1e\x8d\xc9\xb5\xaa\xf5\xd6\x7c\xb2\xa4\xff\xff\x7c\xba\x7a\x31\xf9\xf9\xf5\xdb\x3f\x7e\x26\x9f\x83\x01\x69\x51\xd4\x4c\x82\xd0\xb2\x5d\xf2\xd9\x92\xd4\x62\x47\x4b\xc5\x99\x24\x72\x29\x36\x65\xa1\x0f\x44\xc1\xd6\x42\x72\x65\x2e\xf7\xec\xd8\x6f\xa1\xdb\xee\x0c\xc1\xe9\x29\x98\x7f\x36\x73\x70\x24\xf2\xf6\xf5\xff\x9c\xbd\x9c\xfc\x8f\xd9\xf3\x68\x42\x6b\xaa\x96\x4e\x04\xd8\x4c\x19\x72\x00\x23\xde\xb8\xfb\x7f\xca\x4a\x81\x5c\xc8\x34\x3d\xf3\xb8\xed\xc9\x89\x59\xcb\xad\xb0\xd8\x0c\x0a\x63\x5e\x2b\x51\xd3\x05\x7b\x43\xd5\x12\x11\xeb\xfe\x6c\x56\x76\x22\xf1\xdb\x13\x43\x36\x11\x88\x66\x81\xf7\x45\x32\x11\x95\xba\x35\xbe\xb8\xd1\xec\xfd\x4b\x11\xe8\x8b\x15\x57\x20\x4a\x47\x62\xaf\xb9\x91\xb9\xb4\x92\x7a\x82\x5c\xa6\xe7\x05\x8d\x9f\x63\x8b\x21\x2f\xc6\xe4\xc7\xcb\x4a\x7d\xf3\xdb\x63\xcd\xd5\x81\x01\x8d\xc9\x27\xa4\x5b\x4b\xbf\x9f\x8f\x3a\x86\x96\xac\xd6\x54\xaa\x25\x41\xb8\xbc\x54\xcd\x17\x0b\x56\x23\xdf\xa6\x46\xa2\x6b\x99\xc9\x15\xdb\x5e\x43\xf7\x6b\x45\x6b\x3d\x9d\x8a\x6d\x9f\x6f\xea\x9a\x55\x0a\xbf\xb7\x93\x3b\x6a\x16\x0f\xa8\x05\x5d\xe0\x9a\xa9\xc7\x6f\x59\x09\x6a\x85\x2f\x5f\x9e\x9c\x74\x4c\x57\x8b\x87\x7b\x31\x74\xcd\x94\x45\x90\x64\xea\xf2\xbc\xc1\x91\x8c\xa6\xb5\x67\x4b\xf4\x1d\x65\x15\x10\xaa\xc1\x76\x6c\xc9\x99\x6e\x38\x11\xd7\x4c\xc5\x83\x6a\x29\xbd\xf9\xbb\x6d\x50\x3b\x60\xcd\x14\xd7\xe8\x07\xf6\x0e\x83\xc2\x25\x3b\xa3\x95\x16\x32\xa6\x46\xb3\x32\xaa\x41\xc7\x7c\xde\x22\x9c\x8b\x5a\xac\xf6\xce\xe9\x98\x54\x9b\x15\xca\x41\x7b\x91\x63\x76\xa0\x14\xb3\x0f\x5a\xdc\x5c\x31\x5a\x69\x06\xf2\x06\x54\x91\x66\x96\x80\xb7\xf6\xfd\x79\x09\xdd\xc3\x59\xb5\x8d\x68\x04\x34\x2e\x8d\x8c\xeb\xa1\xa6\x65\x00\xec\xf1\x0a\x5a\x0f\x51\x5a\xb3\xc3\x7c\xfb\xbb\x74\xf1\x19\x22\xa1\xe5\xd5\x46\x0b\x22\xde\xb7\x8e\x1b\xf9\x33\xce\xd0\x75\x23\x0d\x3f\xae\x0f\x21\xef\x95\x5b\xa6\x96\xd6\x8b\x9a\x6e\x2b\xbb\xd2\x06\x64\xcb\x82\x7f\x36\x3d\x1c\x43\xd0\xcb\xd4\x9d\xdd\x05\xf2\xb4\x0d\xbb\xcd\xb0\xee\x7e\xd2\x8a\x8c\xe8\x33\xec\x39\xf6\x08\x46\x55\xc2\x1f\x73\xef\x96\x16\x4c\xaa\x5a\xdf\x26\x9d\x5b\x79\x6e\x5b\x79\x43\xb5\x02\xf7\xee\xbb\xfd\xac\xc2\xb5\x75\x1c\x23\xb3\xcf\xc7\xa4\xa2\x2b\x66\xf9\x69\x37\xab\xed\x35\xa9\x50\x47\x97\x6b\x36\xe3\x73\x3e\x33\x8b\xdd\x3b\x55\xc3\x6a\xb0\x75\x86\xbe\xf3\x4b\xd8\xc3\x95\x7e\xa5\xcb\xf5\x71\xc9\x6e\x58\x49\xe6\x9c\x95\x85\x1c\x79\x22\x8b\x64\xd6\x70\xa2\x8f\xcb\x86\x96\xe4\x86\x96\x1b\x26\x1b\x93\x52\xb7\x19\xe7\x0b\xdd\xd6\x78\x91\xe1\x24\xc0\x2c\x70\x0d\x6a\x9e\x96\x9b\xb4\xb8\x37\x8a\xda\xe9\x1b\x43\x4f\x6a\xc6\xd6\xd6\xfe\x54\x15\x7c\x06\x06\x30\x4a\x16\xb5\xd8\xac\xb5\xba\x06\xb6\x24\xb5\xac\xc5\x66\xb1\x34\x5a\xbd\x81\xf3\x8a\x56\x3b\x63\x6a\xa2\x15\x61\x1f\xb9\x54\x44\xaf\x1f\x5a\x1d\x93\xe9\x46\x11\x51\x95\x3b\xd0\xfb\xf0\x36\x1b\xa5\x42\x18\xad\xc9\x2c\x77\x0f\xbb\x55\xfd\x64\xa4\x70\x22\xf9\x2f\x8c\x14\x1c\x8d\x87\xf5\x4e\xcf\xcd\x13\x46\xa4\x0f\x5a\xb2\x72\x8e\xb0\x35\xe9\x9c\x53\x45\xe5\x98\x7c\x42\xc0\x63\xe8\xf5\xb9\x17\xfc\x6b\xe6\x5b\x20\x5a\x86\x90\xd8\xc8\x1f\xc1\xf4\xeb\x3d\x48\x63\x98\x69\x1d\x42\x8e\xc9\x0f\x3e\xfc\x50\x86\xbe\x3c\x77\x16\x44\x7b\xe7\x1a\xa3\x20\x5c\x76\x23\x8f\xf7\xd7\x3b\xd8\x1f\xef\x1a\x37\x6c\xc7\x9e\x33\x20\x0c\x29\xf9\xa2\x32\xac\xe8\xe4\xc4\x9e\x7e\x2b\x6d\x3c\x92\x7a\x44\x54\xa8\x19\x70\x09\x5e\xcd\xb4\x42\x5c\x19\xab\xed\xd7\xf9\x9d\xae\xd8\x47\xf5\x26\x38\xcc\x3d\x57\x81\x66\xcd\x60\xf6\x19\xf1\xea\xe4\x04\x39\x87\xbf\x02\x7f\xea\x92\xa9\xbb\xcc\xfc\xda\xe7\x4a\xc1\xc4\x95\x50\xb4\xd4\x82\xc9\x94\xd5\x7a\x4b\x27\x62\xad\x95\x29\xe5\x1b\x90\x63\xdb\x67\x34\xf1\x67\x6c\x46\x37\x92\x61\x53\x7d\x9e\x40\x0b\x33\x57\xc9\x31\xe1\x8a\x14\x82\xc9\xea\x91\x22\x15\xd3\x53\xa3\x35\x2f\x77\x20\xd2\x34\x07\xde\xc2\xaa\xd9\x5c\x5f\x86\x68\x30\x8d\xe7\x06\x03\x70\x73\x5e\x59\x35\x63\xc6\xd4\x07\x48\xda\x84\x16\x8d\x93\x13\x6f\xc2\x46\xa2\x51\x82\x14\x54\xb1\x11\x39\x2b\xa5\x70\xb6\xf3\x45\x29\xa6\xb4\xb4\x37\xf4\xe5\x39\xca\x17\xba\x0b\xaf\x16\x79\x94\xc2\xc4\xae\x37\xeb\x75\xb9\xb3\xf7\xc1\xaf\xcc\xd9\x9f\x8b\x15\x8a\x11\x64\xb2\x5b\x33\xb4\x12\x72\x5f\xfc\xb9\xf7\x79\xc0\xdd\xa1\x2f\x08\x40\xf9\x6f\xbc\x11\x7f\x03\x08\xd3\xf3\xf0\x39\xb8\x9d\xb0\x05\xa0\x09\x57\xa8\x25\x73\xc6\x46\x69\x2d\x7f\x23\x03\xdc\x03\x49\x0a\x01\xd6\x3e\x73\x57\x39\x18\x78\x65\x99\x2b\x0a\x6f\x2e\xe4\xd6\x60\xc7\x93\x8a\x56\x33\x46\x86\xa2\x36\xc6\xd0\x23\x4d\x35\xc6\x76\xa7\x60\x0c\x98\xa5\x05\x67\x68\xd5\x73\xd9\x04\x33\xc7\xc5\x38\x3f\x43\x30\xea\x17\xbb\x09\x9d\x46\xa4\x65\x1d\xe7\x5e\x59\x8a\xb2\x90\x4e\x20\xf2\x5c\x45\xce\x86\x80\xa6\x67\x27\xe3\x5c\x3d\x3b\x03\x9e\x78\xdc\xd8\xc1\x4b\xb6\x60\x55\xa1\x39\xb7\x21\x75\x2d\x33\xd9\xfe\x6f\xe9\x8e\x9c\x95\x25\xab\xc8\x92\xe3\x81\xfa\x06\xd8\x0f\xc7\xbe\x7f\x60\x14\x15\xa4\xeb\xf5\xa6\x96\x9e\x11\xf0\x1b\x63\x00\x24\x0b\xba\x62\xe4\x5b\x0b\x4e\xd4\x28\x91\xbd\x84\x0d\xb9\x56\x6c\xbd\x64\x95\x14\x15\x9a\x13\x4d\x77\x46\xe1\x54\xbf\x64\xd3\x5a\x54\xe4\xbf\xe8\xaa\x41\xab\xbb\xa7\x3d\x26\x64\x0c\xcb\x65\xe3\x4a\xd0\x0b\xe6\xd5\xa2\x44\x1f\x19\x31\x6e\x16\xb4\x72\x8b\xb9\x85\xc1\x55\x83\xb9\x11\x9a\x6d\xd0\xa3\x56\x33\xe3\x3b\x2a\x77\xe6\x84\xf3\x69\xc9\x8e\x89\x14\x84\x56\x3b\x4d\x36\x33\x5a\x35\x8c\x89\x16\x68\xaf\x4f\x37\x21\xc1\x3e\x4c\xe7\xf2\xdc\x5f\x8c\xcf\x42\x8c\x0d\x02\xb6\x1a\x8d\x82\x1e\x43\xde\x54\xfc\xaf\x1b\xb8\x50\xac\x2b\x4f\xb7\x73\xad\x7c\x38\x25\x53\x91\x80\xf9\xc0\x87\x76\xad\x09\x56\x3a\x3f\x62\x33\x71\xf0\x8e\x59\xd7\xa2\x46\x1b\x88\x09\x5a\xbf\x5c\xd1\xf5\x9a\x57\x8b\x70\x4e\xe8\x61\xd0\xc7\x11\xc8\x48\x54\x0b\xa2\x58\xbd\x22\x5b\xba\x03\xe7\x80\x03\x0c\x3b\x34\xb5\x22\xe4\x88\x5c\xea\x3b\x8b\x82\x73\x52\xd4\xb4\xde\xf9\x60\x67\xa2\x32\x68\xd8\x2e\x79\xc9\xc8\x96\x91\x39\x5f\x6c\x6a\x46\xd0\x75\x37\x65\x4a\xb1\x1a\xc6\x40\x8f\x99\xdb\x42\x0f\x4a\x2b\x56\xda\x55\x87\x06\x43\x9a\xd7\x0c\x3b\x74\x0c\x6f\x6b\x08\xb8\x03\x58\xf4\x8d\xfe\xb8\x59\x95\xac\x5a\xa8\x25\x79\x78\x4a\x9e\x8c\xc9\xe0\xca\xda\x36\x1c\x6e\x1a\x9d\x9d\xad\xd6\x6a\x37\x08\x20\x7d\x0e\xfe\xd2\xc2\xd3\xc8\x08\x34\xa7\xf6\x02\x18\x35\x02\x48\xda\xd8\x8d\x72\xea\x06\x7c\xd0\xc0\xf6\x10\x66\xb6\xd3\xb9\xfe\x38\xba\xd3\x2a\x63\x7d\x99\xd2\xd9\x87\x39\x37\xf4\x02\xf3\x87\x23\x2b\x66\x1f\x66\x4b\xad\x32\x18\x3a\x5f\x89\x5a\x73\x6b\x45\x79\x69\x38\x90\x85\x5e\x34\x0e\x78\xeb\xde\xd4\x60\xf0\xd8\x4d\x59\xc5\xe6\x1c\xbc\xba\x4b\x7a\x83\x9e\x41\x16\x74\xe1\x56\x0f\xc1\xe3\xb7\x15\x9b\x32\x84\x3f\x65\x04\x64\x51\x25\xc8\x87\x4a\x6c\x51\x45\x51\x02\xa5\x51\x37\xe9\x82\xd7\x6c\xa6\xca\x1d\x2a\xf6\x17\xa5\xd8\xc6\x84\x62\x59\xfc\x11\x58\x51\x37\x6b\x2d\x16\x4c\xe8\xa2\xe4\x15\x1b\x2a\xfc\xbf\x25\x84\x23\x7b\xb6\xa2\xdd\x0f\x10\xff\x6e\x60\x7a\x0f\xde\x93\x53\x62\x20\x3c\x08\xda\xdb\x7d\x74\x62\xfd\x3b\x6f\x9f\x75\x2f\xfd\x67\xd0\xc3\x18\x6c\xbd\x66\x0f\x42\x82\x69\x04\xe9\x33\x2b\x53\x1a\xed\x47\x23\xd7\x28\x19\xbe\xf4\x26\x66\xb3\x8d\xa7\xdc\xd5\x8c\x96\x64\x2b\xea\xb2\x11\x96\x75\xd3\x15\xfd\xc0\xc8\x66\x0d\x0e\x61\xb4\xac\x38\x8d\xca\xba\xef\xa6\xa5\xbe\x78\xe1\x6a\xd1\x02\xbe\xfe\x69\x4a\x25\x9b\xd2\xb2\xf4\xae\x80\x57\x74\xc1\x67\x64\x46\xeb\x42\x8e\xc8\x19\xee\x4d\xa3\x6f\xf1\x8a\xac\x36\xa5\xe2\xeb\x52\xab\x15\x73\xe0\xe9\x0a\xc0\xc5\xb7\x80\xd5\x65\xb8\xe1\x54\xf9\xa8\x03\x8a\xea\xae\xa5\x84\x44\x67\x3d\x73\x3c\x9d\xfc\x75\x03\xd2\x38\xb6\x92\xe0\x16\xf3\xc2\x07\x9c\xb4\xd1\x44\x11\x68\xd9\x60\x46\xcb\x52\xe3\xf5\x86\xd6\x5c\x6c\x24\x59\x00\x87\x02\x1b\x9d\x7f\x13\x53\x64\x93\xac\x4a\x67\x42\x5e\x6b\x9d\x52\xb9\x08\x01\x1b\x18\x40\xa7\xbc\xe4\x6a\xe7\x69\x2c\xc6\x3b\xa8\xb5\x54\x38\xd7\x66\xc3\x6c\x10\x83\xaf\x77\x8d\xf6\xdc\x32\x16\x79\xc1\x45\xf3\x63\x72\xc9\x58\x33\x5f\x0c\x45\x73\x53\x99\x6a\x0f\x06\xce\x95\xbe\xf5\xcd\x32\x7d\x08\x27\x27\x84\x7d\x1c\x91\xc1\x84\xaf\x98\x44\x51\x40\x37\x99\x88\x5a\x54\x4a\x90\xb7\x74\xad\x44\x2d\xc9\x6c\x29\x3e\x34\xe4\xa8\x69\x5c\xcc\xe7\x72\xd0\x3a\x11\xdf\x3e\x14\x5e\x75\x7d\xec\x07\xe4\x1e\x6d\x08\xe4\x6e\x76\x84\x3c\x96\x53\x23\x02\xb1\xf7\x94\xbf\xf2\x7e\x37\x93\xee\x61\x6f\xa5\xef\xdd\xa5\x74\x6d\xb0\x78\xf0\x7d\x84\xda\x69\x78\x1d\x81\x56\x99\x36\x05\xf8\xa7\x30\x4c\x0e\x0e\x60\xbf\x01\x14\x98\x50\x5a\x19\x9c\x63\x6f\xce\xab\xa6\xb4\xde\x13\x4a\xe8\x9a\x88\x1a\x47\xbf\x12\x84\x16\x05\x48\xad\x35\x5b\x89\x1b\xe6\x8b\xd8\xd2\x1a\x7d\xa5\xb1\xfc\x43\x08\x90\x31\xce\xc7\xfc\xe7\x32\xe1\x34\xf6\x20\x22\xc7\x89\x02\x64\xb4\x00\xe9\xeb\xa1\x2a\x0d\x09\x72\x61\x33\x46\x38\x5d\x8a\x22\x19\xb5\x89\x24\x9a\x81\x87\xa8\xb0\xec\xdc\x78\x49\xec\x30\x2e\xda\x46\x37\xf3\x97\x11\x30\xf5\x46\x68\x86\x3f\xf5\x59\x6b\xa4\x29\x33\xda\x2b\x3f\xe2\xa2\x89\x76\x01\x1f\x15\x8c\x68\x05\xbc\x52\xeb\xdf\xa0\x3c\xfb\xbe\x4d\x7f\xbd\xba\x35\x5e\x26\x08\x82\xab\x63\xdd\x7c\xcb\xb4\x0c\x2f\x9b\xab\x9a\x7b\x33\x4b\x30\xd0\x84\x89\x41\x0c\x03\xfa\x6c\xfc\xed\x33\x23\x35\xfe\x11\x87\x0f\xe3\xdf\x09\xb4\x2a\x0d\xa8\x12\x20\xc0\xb2\x1a\x2f\x44\xbb\x62\xdf\xe5\xc1\x55\xb2\xff\x73\x6f\x0f\xb5\x34\x24\x9b\x91\x2b\x81\xe2\x90\xf3\xcc\x04\xf1\x74\x7a\xd9\xd3\x8d\x0a\xd5\x19\x6c\x26\x95\x41\x26\x8e\x9d\x19\x13\xd7\x70\x56\x96\xc3\x23\x20\x51\x3d\xb2\xfe\x67\x6d\xc2\x3c\x0a\x90\xd7\x1e\x2b\xf1\x58\xff\xff\x38\x46\xbf\xd6\x64\x4b\x61\xe3\xd8\xe6\xa2\x66\x37\x5a\xf9\xae\x0a\x2d\xca\x2f\x41\xda\x17\x35\x73\x06\x1b\x10\xb8\xb4\x7c\x67\xd7\xef\xf3\x27\x47\xb8\x1a\xf0\x9e\x9b\x44\xde\xea\x26\x39\xab\x6b\xba\x8b\xa2\xed\xf4\x4a\x29\x59\xd3\x5a\xe1\x1d\xa3\x0f\xa1\x0d\xaa\x31\xdd\x4c\x54\xe3\x3a\xf6\x23\x9a\x89\x1c\xc3\x01\xbb\x3c\xd7\x97\xb5\x24\x74\xbd\x46\x51\x77\xc9\xea\x90\x8f\x1b\x13\x5e\x21\x18\x2a\x3a\x0b\xb8\x60\x35\xd3\x28\x2c\xa5\x69\xe8\x30\xc7\xbc\x27\x31\xe1\xeb\x8d\x88\x69\x8d\xb9\x72\x4c\xde\xe1\xca\xdf\x3f\x08\x2f\x91\xb5\xb3\x08\x5f\x9e\x9b\xb5\x5f\xba\xcb\x88\xcf\xdd\x68\x55\x73\xb9\x99\x6d\xf3\x89\x27\x44\x49\xde\xb5\x0a\xe6\x38\x2e\x41\xd1\xc3\xaf\xe7\xb4\x94\x8c\x0c\xf5\xaa\xcd\x52\x8e\xba\xc0\x99\x36\xc7\x38\x13\xdc\x11\x40\x78\xbd\x61\x91\x0b\x15\x82\xaf\xf6\x62\xc6\x00\xf4\x4c\xd0\xcf\x84\x28\x03\xad\x25\x44\x86\x4f\xdf\x78\x77\x94\x3b\xe3\x28\xcd\x4d\x3c\x34\xb6\xda\xf5\x6f\x2a\xec\xe1\x77\xd0\xb3\x7f\xe3\x4c\x03\xb4\x2c\xc5\xd6\x85\x59\x79\x27\x3a\x37\x88\x0c\xdd\xb5\x59\x37\x6d\xd0\xef\xcc\x6d\x62\x05\xc7\xb2\x41\x17\xd2\x1b\x42\xd2\x03\xda\x99\x1e\xfb\xdd\x51\x71\x9a\x71\x69\xe2\x37\x75\x13\xbb\x56\x98\x09\x58\x65\x82\x11\x2f\xe7\xa9\x5b\x39\x3b\xcf\x86\x63\xed\xe7\x5a\x38\x59\x00\x13\x4e\x8f\xaa\x46\xca\x77\x01\xb2\x39\xae\xa0\x49\x00\xa7\x83\x1b\x1f\x9f\x0c\x5f\x95\x69\x4e\x47\x23\xaa\x79\xb6\x5f\x31\x0f\x6e\x3e\x7f\x2e\x89\x29\x58\x33\x2b\x67\xae\x41\x34\x78\xa7\x2b\xb7\xc5\xb1\x7f\xdc\x9c\x00\x30\x07\xa6\xe1\xcf\xa6\xb5\xb9\x14\x0d\x24\xb9\x14\x5b\x8c\x21\x2c\xe9\x8c\x79\xa8\x39\x26\x6c\x31\x22\x5f\x7f\xa3\x97\xf0\xed\x93\x3d\x07\x06\x57\x8b\x6e\xf7\x37\xac\xd6\x93\xf7\x0e\x0f\xfe\x3f\x36\x73\x74\x89\x8f\x87\x8a\x77\xc8\xa0\x4f\xc9\xbb\xf7\xe9\x6f\x36\xac\xe2\x94\x7c\xca\xc8\x90\x86\xa8\x4f\x91\xe7\x64\x04\xc7\x74\x65\x08\x29\x68\x7a\x72\x42\xd0\x8b\xdc\x04\xab\x80\x82\x83\xf7\x8f\x61\x8f\x10\x2e\x8f\x31\xae\x40\x83\x8d\x6c\x86\xd1\x4f\x59\xd5\xdc\xba\xc3\xde\x35\x28\xd1\x8a\xb9\x19\xc0\x20\x51\xff\xf7\x28\x6f\x5d\xd1\xe7\x07\x26\x4d\x8b\x42\xda\x5b\xa9\xb9\x8c\x72\x86\x2b\x2d\x9b\xd0\x9a\xae\x98\x56\x25\xc7\xce\x9a\x67\xee\x23\xdf\xa8\x61\x15\xde\x29\xd3\x27\xa2\x09\xfc\xc8\x00\xac\xd9\xe3\xe7\x2e\x1c\x75\x1c\xdf\x73\x00\xad\x62\xac\x70\xd1\xff\x46\x73\xd1\x70\xd7\xbe\xad\xd1\x74\x00\x9d\xc1\x6b\xaf\x99\x45\xca\x3d\x1d\xe8\x19\xad\x1e\x99\x13\x47\xcb\x9a\xd1\x62\x87\x27\x2f\xb8\x9b\xaf\xf3\xe8\xf0\x39\xc3\x7c\x53\x59\x84\x0e\x23\x37\x7a\x2f\x05\x28\x35\xb8\x58\x5b\xcb\xc3\x53\x52\xf1\x72\x4c\x06\xcf\x91\xf3\x69\xd9\xba\xc1\xb3\xd0\x93\x1b\x1b\x4b\x92\x71\x5c\x01\x7e\x46\x83\x64\x8c\x87\x1e\x5d\xa7\xf0\xfc\xfd\x07\xa2\x9c\x2b\xe6\x64\xa4\x26\x18\xcc\xdc\x5d\x29\xf4\xb6\x43\xe1\x16\x72\x6a\x17\x62\xad\xda\x00\xd4\xc3\x7a\x91\x48\x44\xa3\x58\xd3\x8b\xcf\xd6\x59\x84\x0c\x90\x7c\xad\x70\x16\x72\x7a\x12\xb0\x84\x11\x8a\x57\x66\xaf\x8e\x12\xc0\xaf\xd7\xc6\x0a\x00\x90\x37\x6b\xdf\xcd\xd6\xca\x49\x9a\xa5\x1a\xa6\x11\x43\xbd\x74\xf1\xf7\x3e\xdf\xc5\x50\x74\x25\xc8\x2f\xac\x16\xbd\x18\x8d\x37\xd0\x93\x70\x10\xb6\xe2\x6d\xb1\x67\x0d\x9f\x68\x22\x3d\xec\xf2\x33\x18\x6e\x38\x84\x44\x16\xe1\xec\x5f\x4e\xb3\xeb\x38\x1b\x59\x56\x21\x2d\xaf\x90\x3e\xb3\xf0\xe4\xe7\x3c\xbb\x88\x29\x0d\x3f\x14\xde\x11\xc0\x66\x1f\x70\x38\xe5\xd0\x4d\xc5\x8a\xb7\xf1\x01\xd5\x3b\xbd\x36\x12\xac\x69\x9c\x39\xb0\x80\xcd\xf8\xc4\xeb\xff\x1f\xb5\x18\x27\x42\xd4\x22\xc5\x00\x71\xe1\x3f\xa5\x15\x5b\x7d\x5d\xd1\x69\xcd\xf8\xf2\xe0\x91\x6a\x1e\xff\xa4\xc2\xc3\x9d\xd9\xb4\xaf\x86\x66\x40\xf6\x60\xd4\x5c\x7a\x0a\x10\x73\x77\x9b\x27\xae\x93\x21\xbd\xa1\xbc\x04\xbb\xb8\x77\xa4\x8e\xf6\x3a\x4a\xf4\x1e\x36\x48\xbb\x15\x8f\xcd\x1e\xd5\x98\xbd\x1a\xbd\xdd\xa2\x28\xc7\x5a\x9d\xf0\x25\x99\x7a\xd8\xc9\xa1\xf8\xdc\x30\xdd\x68\xd4\x87\x7d\x67\x77\x0a\xaa\xca\x83\xa4\xb1\x3b\xe6\xf9\x90\xce\xf6\xa3\x1e\x86\x75\xee\xe3\x2f\x0f\x0f\x21\xe6\x33\xf0\x76\x1a\x5a\x0e\x9e\x03\x36\xb2\x63\xa0\x55\xe8\x0b\x66\x4b\xe1\xf5\x5e\xd5\xf8\xbd\x1d\xa5\x20\x6f\xb0\x56\x1c\xeb\x49\xe9\x73\x00\xf2\x74\x83\xb6\x89\xf6\xb3\xee\xc9\x8b\x9d\xbb\x73\xcb\x13\x6f\x0c\x22\x81\x45\xc6\x9d\xef\x7d\x86\x99\xdb\x9d\x49\x18\x01\xdf\x1a\x18\x9d\x29\x92\x84\x62\x44\x99\x39\x7e\xca\x13\xb1\x91\x88\x5b\x90\xe3\xe4\x65\xa0\xd8\xb8\x09\x10\x6c\x12\xe4\xdb\xd0\x69\x3f\x1c\xea\xcd\x37\x97\xa6\xfe\xa7\x34\x42\xb5\xf9\x0a\x8d\xa7\x6a\x53\x1b\xeb\x6a\xc5\xb6\xe5\xce\xea\x50\x5e\x1c\x65\x06\x8f\x07\xb0\x4b\xef\xe2\x6e\x8c\x81\x77\xe0\x99\xab\x8d\x4c\xd5\x4f\x58\xcb\x34\xd0\xeb\x7b\x72\xfe\xb7\x88\x00\x9c\xff\xd5\xc5\x04\x27\xbd\xa5\x56\x13\xec\x73\x5e\x1a\x34\xc7\x7c\x76\x4c\x7e\xd0\x30\xef\x8d\xdb\xc2\xa2\xc0\xdf\x0f\xc3\x8d\xd1\xe3\xbb\xee\x2f\xcd\xc6\x8c\xb5\x15\xb4\x67\x19\x5b\x03\x5f\x6f\x46\x72\xb2\xad\xb5\x8e\xed\x93\x3a\x7f\xcf\x54\x8b\x2e\xdf\xa1\xc0\xc3\xd0\x41\x74\x04\x71\x1e\xb4\x8d\x64\x68\x68\xe6\xd2\x40\x7a\x24\x4d\xcc\xb9\x19\x23\xe8\x04\xde\xa5\xcd\xea\xb2\x32\x4a\xe7\x5e\x36\x9e\xac\xe0\x95\x45\x4e\xf3\x8e\x38\x1d\x81\x6d\x5f\x99\x5d\x81\x4d\xff\xee\xb1\x8d\x12\xbc\xba\x98\x0c\x33\xfb\xed\x87\xc8\x37\xd3\xfb\x0f\x43\x3b\xc3\xaf\x8f\x8e\x93\x4e\xd1\xe5\x94\x01\x1a\xdf\x67\x69\x93\x20\xb2\xf9\x49\xf0\x7b\x2a\xd7\x5f\xda\x28\x44\xe3\x04\xd1\x92\xb7\xb7\x7d\x7b\xf7\xab\x87\x44\x9e\x5d\x7a\x38\x11\xe3\x2c\xff\xee\xb1\xc3\x71\x0b\xc3\x9b\x52\x35\x5b\xbe\x4a\xb8\x9e\x96\x7b\xa7\x5c\xd5\xb4\xde\x91\xbf\x6e\x68\xa5\xb8\xda\xb5\x58\x94\x22\xa6\xb8\xc2\x08\x9a\x28\x8c\x9f\xf4\xe2\x88\x6a\x2f\x47\xf4\x9f\x1d\xbb\x94\x03\x24\x15\xe2\xed\x9c\x91\x4b\x65\x56\x60\x94\xf7\x76\x96\xe5\x73\x3a\xef\xad\xb1\xf7\xac\xb8\xf1\xb4\x59\x61\x24\x38\xa3\x5b\x56\x77\xc1\x8f\x59\x62\xb4\x11\xc3\xf8\xbd\x48\xb3\x22\xf3\x12\x61\x4c\x7e\xf0\xe6\xf5\x29\x77\xba\xbc\xdf\x9b\xb3\xd5\x7c\x39\x8c\x88\xe6\x86\xd6\x84\x5b\xf8\xa0\xf9\xf9\xbf\x62\x60\x12\x27\xdf\x35\xe8\xcc\xb8\x59\xfd\x41\x47\xe6\x71\xc7\x50\x89\x0f\xac\x1a\x93\xef\x1e\x63\x94\x48\xba\x48\xa3\x25\x1e\x25\xf0\x38\x39\x25\xdc\x90\xf9\xb7\xbf\xd3\x64\xee\xff\xfa\xb9\x85\xe8\xc3\x69\xec\xbd\xea\x7f\xe6\x6a\xe9\x3d\x95\xc8\x5c\xfc\xe0\x09\x6a\xf8\xc0\xff\x12\x41\x20\xc0\x54\xc8\xa5\x42\x90\xde\xcc\xf5\x4a\x78\x45\x5e\x98\x3f\xff\xf5\x04\x8e\x70\xb3\x93\x63\x96\x7d\x71\xf5\x6f\xa1\xe4\x6e\x42\x49\x83\xd4\xfb\x11\x4d\x1a\x78\x6f\xd9\xdc\x33\xd3\x9b\x50\xea\x91\xb1\x6a\x8f\x30\xbb\xc7\x77\x5f\x45\x8f\x7a\xbf\x1f\xe2\x2b\x35\xdb\xad\xeb\xd9\x70\xca\x92\x9e\x3e\xc5\x7c\x09\xc3\xc1\x95\x08\x78\x42\x18\xd3\xa0\xf5\x3d\x04\x34\x88\xd8\xac\x13\xae\x3c\x9e\x73\x1a\xae\x69\xb4\x60\xea\x2a\x94\x01\x3c\x9a\xbd\x8d\x10\xb3\x57\x0e\x0a\xe8\xde\xff\x6b\x8f\xbc\xf3\xeb\x08\x7a\x1e\xaa\x7e\x5d\x71\xef\x00\x4c\x1c\x28\xf9\xb5\x1c\x8a\x90\x0e\x68\x51\x4c\xc4\x3f\x02\x25\x84\xd3\x96\xcc\x70\x5b\xe9\x4d\xb6\x9a\xc3\xdc\x1c\x31\x8c\x78\x11\xf3\x5b\xff\xaf\xe3\xcc\x62\x12\xb3\xf2\xa1\xa2\xf3\x5e\x45\xa6\x87\x48\x4d\x0e\x94\xa9\xf3\xe2\xc5\x1e\x09\x3b\x16\x39\xfe\x79\x25\xee\x0e\xe2\xbb\xa5\x14\x23\xf7\x8b\x31\x7f\x4f\xd1\x7e\x8f\x04\x12\x0b\xfa\xed\x32\xc9\x3f\xba\xf8\xdf\x82\x08\x6b\x47\x6e\x67\x0d\xf7\xa6\x28\xec\xd5\x13\xb2\x69\x46\x16\x4c\xa1\xa7\xe7\xa8\xf1\xf1\x44\xc8\x88\x83\xd5\xe5\x21\xc0\x8d\xc9\x5d\x83\x0f\xa3\x80\x3a\x06\x89\x5d\x2b\x3d\x86\xb9\xda\xac\x02\x1e\x18\x8c\x67\x02\x27\x3a\x46\xcc\x70\x51\x6f\x74\x12\xc6\xab\x7a\x51\xea\xc1\xd1\x4a\x92\xbe\x79\x4f\x72\xa8\x8b\x12\x38\x39\x21\xcf\xd1\x62\xcd\xa8\xe4\xe5\x0e\x22\xd6\x39\x86\x62\xe2\x3b\x37\xc5\xa9\xb2\x4f\x28\xfe\xfc\xdf\x1b\x56\xef\x4c\x98\xc2\x9f\xcd\xb1\xb6\x70\x80\xad\x9a\x87\x16\xe0\x04\x90\x4c\x35\x6f\x93\x6c\x54\xde\x39\xbe\x1e\xb1\x02\xa2\x0f\xd0\x5a\x96\xbf\x76\xa9\x23\x1e\xc4\x48\x36\xa1\xe6\x7e\x2f\x0f\x8f\xdd\x41\x80\x6d\xad\x82\x58\xef\x76\x50\x41\xcc\x74\xd4\x2c\x7c\x4b\xed\x87\xdf\xb5\x36\x6c\x8b\x46\xcb\x92\x56\x1c\xba\xd4\x0a\xf5\x36\x21\x3b\x61\xd2\x8e\x83\x22\x1e\x24\x53\xf2\x9d\x09\x5f\x79\xe8\x87\x08\x48\xa6\x1a\x7a\x70\xf9\xcd\xfc\xc0\x47\xd0\xc2\x3a\xf5\x22\xb3\x83\xe4\x94\x0c\xbf\xca\x0d\x48\x25\xf9\xea\x9a\xa9\xa7\x47\x0f\x73\xdd\x22\x3a\xf3\x22\x6e\x54\x6a\x55\x0d\x22\x93\x64\x67\xb0\xb9\x01\x34\xda\x13\x74\x6e\x9b\xc9\x30\xda\x9c\xc4\xb1\x4d\x92\xa9\x51\xc3\xf4\xd2\x76\x4d\x9c\x93\x69\xe9\x38\x58\xda\xd6\x79\x71\x74\xd3\xc8\x5b\x44\xba\x43\x9f\x0c\xf0\x94\x6f\xfd\x0b\x72\xee\x18\x3d\x5f\x8a\x79\x67\xf8\x9a\x97\xd0\x31\x79\xae\xd9\x48\x6b\x2e\xe4\x3d\x88\x43\x59\x31\x8c\x55\xef\xc9\x0d\xdb\xc1\xf7\xb5\x92\x1d\xf0\x40\xd4\x44\x0d\x35\xa1\x88\x2c\x14\x2f\x9d\x7d\x22\x6f\x7b\x22\xaf\xd5\x92\xd5\x5b\x2e\x19\x3e\xc6\x33\x71\xfd\x79\x4b\x46\x8e\x73\xc7\xe9\x7f\xba\x38\x60\x2e\x9f\x50\x0a\xa1\x33\xb6\xb1\x85\x83\xb8\x97\x96\xeb\x96\xd7\x95\xfe\x40\x00\xa6\xf9\xb3\xf5\xfe\xf7\xf2\x72\xf2\xd5\xba\x04\x2d\x99\xda\x67\x91\x94\xcc\x36\x52\x89\x55\xf3\x3a\x14\x69\x5d\xd4\x2e\x9d\xe6\x28\x00\x04\x3f\x07\xcf\x5c\xd6\xfe\xe3\xd2\x7d\x4f\xc0\x0c\xb7\x35\xf9\x9a\xbc\x0c\x8a\x1d\x97\xf4\x7c\x53\x96\x57\xde\x15\xfc\xb4\xbd\x25\xaf\xa5\xea\xd7\xb4\xa4\x7d\x5b\x4e\x79\xad\x96\x05\x55\x7d\x9b\x02\x19\xef\x6f\xfb\x17\x56\x4b\xb6\xb3\x34\xb3\xaf\x75\x51\xd3\xb9\x9a\x30\xba\xea\xd9\xf4\x7f\x18\xed\x0b\xf5\x9a\x19\x19\xbc\x67\xfb\xb7\x62\x53\x15\xfb\xdb\x2a\x46\x57\x67\x66\xa3\xaf\x9e\x9d\xe9\xe3\x72\x48\x97\xfd\xad\xd7\x35\x5f\xd1\x7a\xf7\x46\xab\x39\xbd\x66\xbf\x64\x7c\xb1\xec\x01\x78\xdb\xb3\x1d\xa4\xde\xd0\x88\x96\x2f\x3e\xae\xf5\x2d\x5e\xf5\xd9\xf7\x6a\x4a\xaf\x19\x95\xbd\xd0\x4d\x15\x7b\x3d\xef\x8d\x8f\x92\xee\x9e\x53\xc5\x16\xa2\xde\xf5\x6b\x3d\xd9\xad\x7b\x4c\x78\x29\x56\x4c\x53\x5e\xbf\xd3\x42\xb7\x74\xd7\xbf\xb5\x85\x7d\x3d\x13\xf5\x01\xc0\x7b\x36\x47\xd1\x2a\x64\xcb\x5d\xad\x7b\x32\x84\xec\x7d\xd1\x85\xe7\x1e\x2a\x46\x4f\x45\xc4\x45\x77\x5d\x56\xc6\xfe\xd2\xac\x2b\xbc\xb1\x82\xbb\x23\xe1\xa0\xa1\xe5\x31\x65\x9b\xe1\xef\x09\xaf\x0c\x7f\x4e\x19\x64\xe6\xf7\x90\x2b\x86\x0d\xb2\xac\x30\x6c\x92\xf2\xbf\xcc\xef\x01\xd3\xcb\xfc\x9e\x72\xba\x4c\xa3\x90\xbd\x85\x0d\xda\x79\x5a\x7b\xbb\x96\x26\x6d\xdc\x2b\x6c\x15\xb1\xac\xf0\xc7\x6d\xd7\x8f\x9d\xcc\x29\x6c\x9a\x72\xa4\x08\x2d\x39\x36\x14\xad\x26\xc7\x7b\xd2\x26\x01\xc3\x89\x56\x9a\xe3\x32\x61\x93\x2c\x6b\xc9\x43\x09\x19\x44\x1e\x4c\x57\x9b\x2c\xe7\x88\x9b\x74\x9d\x89\x6c\x4a\xc9\x04\x1f\x9e\x0c\x19\xc3\x6e\xfb\xa9\x93\x05\xd8\x46\x59\xd9\xd3\x32\x01\x72\xea\xf8\x41\xa6\x91\x65\x05\xba\x95\xfd\x77\x46\x91\xa4\xae\x95\xfd\x67\xda\xc8\xf1\x05\x72\xda\xf0\x88\x96\x66\x28\xfb\x9f\x7a\xbc\x22\x6d\xe8\xb3\x09\x72\x1a\x70\x8d\xb4\xb1\x63\x18\xe4\xb4\x61\x1e\x2d\xcd\xf4\x31\xb1\xcd\xf4\xbf\x5b\x9a\x39\xf6\x61\xdb\xba\x2f\x5a\x3a\x00\x2b\xb1\x8d\xe1\x8f\xb4\x61\xc2\x52\xc8\x69\xca\x66\xba\xbb\x45\x3d\x32\x6a\x45\xc8\x6b\xb4\x7e\x11\x7e\x93\x76\x41\xc6\x43\x4e\x0d\x07\x4a\x1b\x6c\x6d\x83\x6d\x4b\x83\x1c\x03\xd2\x33\xcd\x7c\x9d\xb1\x41\x58\x96\x44\x4e\x1b\xf6\x94\xc1\xb2\xc7\x99\x4e\x03\x3e\x95\xd7\xad\x2c\x8b\x32\x1a\x96\xfd\x33\xdf\x18\xb2\x99\x9d\x3a\xbe\x95\xc1\x91\xc7\xb2\x34\xa6\xbc\x3f\xd3\xc6\x3e\xf3\x22\xa7\x01\x2f\x6b\x87\x0c\x2c\xca\x03\x0d\x7f\xb7\xc3\xb6\xcd\x83\xbf\xdb\x4c\x50\x81\x12\x69\xff\xcc\x6a\xac\x57\xce\xae\x95\x9f\x6d\x1f\xa5\x94\x1c\xa0\xe2\x76\x1b\xd9\x52\xfe\x87\x51\x79\xf1\xb7\x1d\xfa\xb0\x57\x7a\xc5\x24\x24\x58\xd7\x4c\x1a\x17\x53\x58\xaf\x86\xe4\xb5\x59\xd7\xff\xea\x62\x92\xa6\xd7\x1f\x85\x01\x2b\x27\x27\xe4\xf7\x98\xd8\xcf\x24\xd4\x72\xf9\xfd\x5a\x05\xbd\x26\xe9\x6d\x94\x46\x0b\x94\x68\xe7\xd7\x4b\x53\x2c\x65\x54\x08\x3a\xf6\xac\x46\x89\x5d\x23\x97\xf9\x78\x5f\xba\xe4\x9c\x4b\x2c\xba\x71\x12\x97\xbc\x49\x6d\xf8\xca\xa5\x36\x0c\x9a\x5b\x23\xac\x97\xcd\xd0\x33\xcd\xfa\xdf\xfa\x5e\xa6\x94\x3a\x78\x91\xef\x96\xc4\x0b\xa0\x85\xcc\xcb\x44\x86\xf6\x89\x2c\x8b\xa1\xe4\xd4\xc3\x60\x13\xdd\x9e\x7d\x80\x11\x62\xd4\xff\xeb\x28\xf3\x96\x2b\xc8\x5b\x1d\xfc\xac\x3f\x4d\xa2\x5f\xb3\xb8\xbb\xc5\x5c\x14\x68\x6e\xce\x07\x5e\x44\xd3\x6e\x9a\x37\xdf\xdf\x21\x5c\xc1\xfe\x2b\x7a\x4b\x3f\xf7\xcf\x9b\x9f\x1b\xfa\x18\xd1\x43\x2b\x93\x0a\x59\x09\xf7\xce\xda\x07\xa0\x04\x11\x1b\x25\x79\xc1\x88\x98\x4a\x56\xdf\xb0\x5a\xba\x27\x55\x2e\xc6\x2a\xcc\x38\x4d\xb2\xb9\x96\xdf\x9a\x03\xdd\xe4\x9d\x0e\x56\xd0\x9c\x47\x1b\xc7\x10\x6f\x46\xee\x24\x91\x53\xd2\x0b\x95\xe1\x79\x0b\x7b\xe5\x36\x36\x38\x8f\x76\x42\xcd\xee\x36\x62\xe0\x1e\x6b\x76\x45\x57\xcc\xaf\x7a\x11\x2a\x7d\x19\xcb\x9b\x77\xb8\x8c\x35\xff\x15\x53\x54\x9f\x8a\x67\xbb\x0b\xce\xca\xc2\xf9\x91\x93\x05\x60\x7e\x9a\x31\x19\x5c\x18\x98\x83\x23\xf2\xf4\x29\x19\x0c\x92\x41\x63\x45\xe1\x3e\x06\x7d\x63\x60\x66\x07\x35\xb6\xf9\xac\x50\xac\x3f\xa3\x99\xa8\x66\x54\x0d\x07\x64\x90\xfa\xbe\xed\x8f\x76\xd6\x6d\xb4\x3e\x89\xf2\xcb\x09\x9f\xf6\xe3\xec\x08\x90\xa0\x0a\x33\xb7\x91\x75\x2d\xd6\xe8\x0b\x93\xc7\x10\xaf\x07\x69\x79\xe3\x7c\x75\xff\x3f\x61\xa5\x84\x34\x4f\xbc\x2c\x92\x64\x76\x58\xfc\x0a\x92\x90\xe0\x6d\x7f\x6c\x8a\xb8\x79\xe6\xf1\x96\x9c\x08\x96\x56\x3c\x70\xad\x24\xe3\x62\x3b\x08\xa3\x75\xb9\xb3\x19\x32\x4c\x0e\x3a\xcc\xdc\x58\x3d\x86\x24\x4f\xe1\xe9\x9a\xa3\x3d\xcd\xb4\xbb\x87\xfd\xb6\x29\xf0\xe2\x6b\xc9\xdb\x6e\x9b\x19\xcf\xff\x29\x8d\xbb\x7c\xd6\x8d\x4f\x38\x42\x16\xa9\x06\x91\x19\xdc\x26\x34\x1e\x29\x8f\xe1\x92\xaf\xf1\xc7\x61\x9e\x77\xb7\x1d\x9b\x90\x01\x39\xb8\x79\xfe\x33\x52\x02\x5b\x44\x5e\xc2\xd4\x6a\xd6\x32\x41\xcc\x91\xd5\x36\xc5\xa7\x1e\xfc\xf6\x03\x37\x38\xb3\x88\x4b\x43\x6d\xed\xb1\xf2\x27\xd3\x7e\xf8\x3a\x4f\xa6\xc1\x75\x57\xef\x95\x1f\x69\xee\x6f\x5c\x37\x5c\xff\x6e\xcf\x90\xd0\xc9\x09\x96\xff\xda\xac\xd7\xa2\x56\xac\x08\x7d\x2c\x49\x7d\x44\x5e\xcd\xca\x4d\x61\x03\x29\x9e\x6b\x51\x5e\xcb\x91\x50\x5e\xaa\xfb\x6c\x2e\x98\x82\x56\xe0\x59\xd5\x4c\xa8\xc5\xaf\xfa\x2e\x59\x8b\x6e\xfc\x5d\x50\xc8\x6a\x74\xce\xa5\x3e\x4d\xdf\x0f\x33\x11\x9e\xd0\xbc\xd5\x85\xd3\xde\x25\x1c\xe1\xad\x2d\x95\xd4\xb7\x83\x91\xe8\xfb\xb7\xff\xa8\x58\x5d\xd1\xf2\xc7\xb7\x2f\xfb\x76\xb9\xba\x98\x34\xc1\x48\x9a\xd7\xdc\xae\xe3\x3e\xdc\x85\x7d\xaf\x81\x82\xfa\xb6\x9e\xd4\x94\xab\xde\x38\x78\xc5\x0a\x4e\x75\xeb\xa0\xf1\xfb\x16\x3a\xad\xb1\xc6\x18\x5e\x2b\x40\x57\x2e\x36\x63\xc1\x6f\x58\x85\x29\xee\x2c\xc1\x5e\x5d\x4c\xb2\x04\x89\xaf\x71\x01\x92\x9e\xc4\xf0\x4f\x00\x6a\x0c\xd3\x3b\x1a\x93\xb3\x6a\x87\x0a\xcc\xd3\xd8\x3c\xb5\xe5\x6a\xb6\xc4\x71\x53\x7e\x3d\xa3\x26\x59\x76\x2b\xa1\x8e\x93\x3e\xa4\x21\xfa\x6c\xa7\x54\xd6\xb6\x1f\x8c\xf5\x71\xf1\x1c\x39\x6c\xdb\x4f\xe1\x97\x78\x45\x16\xe8\x5f\x92\xed\x1d\xd5\x72\xb3\x9a\x56\x94\x97\xe3\x68\x76\x7f\x98\x4c\xde\x5c\xf0\x92\x0d\x37\x75\x69\x40\xba\xb6\xb9\x70\x78\x12\x08\xd7\xf6\x73\x72\x42\x9e\xe7\x9c\xba\x46\xfb\x54\xc2\x65\x72\x8f\xdf\x7e\xa4\x28\xef\x3a\xec\x9d\x68\x6f\xed\xd8\x8e\xfa\x46\xda\xbc\x47\x21\xb3\x7d\x17\x3c\xaf\xc7\xdd\xc7\xb3\xb0\xba\x06\x6c\xdc\x28\x77\x1e\xef\x25\xdd\x3f\x9c\xe7\x96\xb9\xf3\x78\xcf\x2c\xac\xbd\x03\x1a\x3f\xcf\xfd\x8c\x08\xc0\xba\x86\x0c\x3d\x47\x77\x1e\xf4\xbf\x3c\x70\x5d\xc3\x7a\xde\xa8\x3b\x8f\x79\x6e\x61\xed\x1d\x10\xdd\x5b\xf7\x33\xa0\x86\xb5\x77\x40\xcf\x5f\x76\x3f\xa3\x3a\x80\x7b\x87\x36\x5e\xb8\xfb\x19\x16\x80\x75\x0d\x99\xf1\xeb\xdd\x5d\x05\x89\x61\xf6\x9d\xc0\x3d\x8f\xdd\x35\x6c\xe2\x84\xbc\xbb\xa2\x1d\x42\xec\x1a\xdc\xfa\x36\xef\x3c\xe6\x1f\x00\x50\xd7\x50\xdb\xfb\x1a\xea\xe7\xbd\x43\xe5\xfd\xae\x77\xdf\xd1\x0c\xd8\xae\x69\x78\x3e\xdd\x3b\x8f\x7d\x65\x61\x75\x9e\xda\xc0\x49\x7c\xf7\x73\xeb\x81\xeb\xa4\xe0\xc0\xf1\x7c\x2f\x76\x22\x0b\x6e\xdf\xb0\x68\xa3\xba\x47\xd3\x54\xc7\x51\x09\x9c\xe3\x77\x3f\x30\x1e\xb8\xae\x61\x43\x87\xfb\x9d\x87\x3d\xf3\xc0\xf5\x59\xad\x71\xd0\xdf\xdb\x72\x01\x5e\x9f\xf5\xde\xd7\xc0\x67\x3e\xbc\xae\x81\x43\x93\xcb\x21\x96\x96\x2e\x98\xa9\xb0\xb9\xc7\xb2\xd4\x3d\xc1\xc3\xdd\x03\xf6\xd3\x8a\xa9\xae\xc9\xf7\x72\x5b\xd8\x4f\x36\x2a\xc2\x5b\xf8\x55\xfa\x7b\x0b\x12\x8e\x5b\x67\xdb\x57\xfd\x6a\xd3\x57\x3d\x2b\x46\x5e\x73\xb2\x4f\x4d\xac\xd5\x6e\xc1\x94\xe9\x03\x9b\x96\x1f\x1f\x4a\xcc\xd0\x8f\xa1\x81\xee\x5e\x96\x4b\x9e\x3e\x8d\x9e\xa1\xf9\x63\x5a\x4f\x4f\x35\x17\xe4\x94\x64\x57\xea\x65\x29\x3d\x36\xf6\x34\xeb\x45\x19\xe6\x49\xe8\xe8\x58\xaf\x65\x0c\x0b\xfa\x9e\x3c\x21\x4f\x6d\xf3\x15\xfd\x78\x44\xc6\xa4\xe2\x65\x3b\x16\xcc\x8c\x5e\x72\xa9\xc6\xe4\x5d\x76\x46\xef\xc9\x29\x79\xe7\xcd\xfc\x7d\x7f\xc3\x81\xdd\xbd\x76\xf5\xd5\x1b\xff\x8e\x94\xe2\xec\x42\x07\x18\x36\xb0\x4f\xfb\xec\xba\xf1\x7e\xc7\x09\xfb\x16\xbd\x3e\x56\x81\x91\xb1\x12\x3d\x37\xa9\x70\xc1\x2e\x60\x7d\xea\x78\xaf\x56\xbc\x3c\x06\xb3\x85\xb9\x66\xbb\x07\x3d\xe0\x14\x06\xb6\xc1\x03\x10\xec\x75\x1c\xda\xe3\x89\x87\x4c\x7f\x73\xc0\x0c\x72\xa6\xc6\x5f\x0d\x69\xb9\xc1\x6f\x3b\xf5\x7e\xf6\xb7\x2f\x37\x7b\x37\x7e\xff\x05\x38\x1b\x6a\xe7\x94\xcd\xd3\x20\x98\x2f\xf6\x80\xd9\xf6\x1f\xc6\x19\x5f\x0f\xa0\x2f\xec\xd3\x7e\x80\x53\xe3\xbd\xff\xc9\xc0\x6a\x07\x65\x3f\x73\x5e\xb2\x56\x13\xe4\xde\xde\xfa\xd3\xd8\x29\x57\xac\xe0\x9b\x15\x5f\xd1\x45\xdb\x4d\xe5\x7f\x3a\x44\x0d\xfb\xd1\x00\x29\x52\xc2\x00\xc0\x9e\xfc\x65\xcd\x16\xa9\xa7\xe8\x00\xb0\x7f\x77\x24\xdd\xf0\x82\x89\xfb\x47\x0f\x80\x3d\x59\xad\x7f\xb7\x07\x3b\xad\xbf\xe6\xef\xc1\xb6\xac\x8d\xa4\x21\xe1\x8a\x97\xfb\x3d\x0a\x5c\x92\xab\x8b\xc9\x23\x49\xf0\x2c\xc1\x11\xdf\xe7\x3f\xf0\x8f\x5d\x8c\x7d\x03\x26\xf1\x3d\xcb\xb5\xa8\x95\x24\x35\x2d\x68\x0d\x16\x15\xc2\x8b\xc4\xbb\xc9\x3e\xce\xca\x4d\xc1\x0a\x2d\x52\xc9\x31\x79\x87\x6e\x4a\x10\x0c\x32\x26\x9b\xf7\xb9\x44\x3c\x6d\xd9\x43\xc2\xec\x38\x91\xcb\xd4\x7d\xff\x6c\x77\x75\x31\xb9\x3c\x1f\x9a\x28\x92\x34\x95\x89\xcb\x28\x1f\x16\x38\xf6\xf0\xa8\x10\x01\xe0\xa2\x29\xd8\x9c\x6e\xca\x4c\x24\x18\x31\x59\x05\xb0\xb1\x57\x54\xd0\xb9\x61\x3e\x93\xd3\x8c\xbb\x65\x70\xed\x29\x23\x83\xbb\x6a\x23\x03\xa3\x72\x24\x80\x0e\xd3\x43\x06\xd7\x9e\xb4\x32\xe8\xaf\x81\x0c\x30\x23\x69\x33\xba\xfe\x9b\x57\x8b\x11\x97\x26\x57\x69\x35\x57\x6f\xd9\x7c\x4c\xbe\xd2\x20\xe1\xc5\xf0\xa7\x5c\x38\xdf\xe7\xec\xa4\xdc\xa6\x0e\xfc\xe8\xa7\xa7\xf8\x12\xf8\xe9\x53\x32\xb8\x56\xb4\x2a\x68\x5d\x0c\x3a\x7b\x5f\x9e\x47\xfd\xfd\x48\xaa\x54\x0c\xcf\x27\x4a\x87\x67\x78\xae\x8e\x44\x42\x0a\x86\x66\x8c\x6a\xb1\xa2\xeb\x37\x26\x17\xfd\x50\x93\xd9\xd8\xfc\x9e\x4f\xbb\x12\x1e\x3f\xdd\x7e\x22\xf0\x10\x06\x9d\x8f\xe3\xc3\x15\xfc\xd9\xe6\x22\xbf\x70\x55\xb2\xa0\x0a\xf2\x5c\xd4\x64\x26\x56\xeb\x0d\xa4\x14\x08\x46\x0e\x33\xc8\x35\x2b\x20\x4b\x56\xae\xa5\x09\x7d\x11\x1b\x43\xf2\xba\x05\x66\xe0\x0a\x1e\x28\xfa\x30\x82\xe4\x66\x4d\x27\x2c\x2d\x59\x96\x4d\xb4\x8a\xa9\x5e\xef\x81\xc3\x54\x09\x41\x2a\xf3\x24\xed\x59\x82\xe3\xcc\x11\xd4\x5a\x4d\xee\x64\xa6\xb1\x58\x6b\x63\x82\x28\xc2\x67\xeb\x91\x71\xa2\xd5\x2a\x01\xea\x5c\x54\x09\x43\xe3\x1a\x48\xd5\xe4\x42\xb7\xe0\x47\x1f\x58\x36\x4d\xb2\x9e\x06\x16\x19\x39\x0d\xda\xbf\xd3\x40\xde\x67\x02\x3d\x08\x06\xf7\x60\x9f\x87\xa7\x64\x30\xc8\x40\xd5\x1f\x8d\x9f\x11\xaf\x24\xab\xd5\xf0\x03\xdb\x59\xa5\x11\x3a\xa6\xd7\xd6\xe7\xfd\x17\x93\x06\xd8\x42\x70\xbe\xdc\xde\x4a\x0d\x48\x82\xac\x20\xcc\x88\xfd\xfa\x16\xb7\x41\x5b\x51\xa6\xad\xb6\x98\x0c\x4f\x3b\x68\x09\x98\xb2\x81\x30\x4b\xa5\xd6\x72\x7c\x72\x52\x4d\xa9\x12\x6b\x09\xb5\xe8\xc4\xea\x04\xc7\x39\x19\x34\x11\x27\x70\x65\x78\xc1\x35\x6d\x87\x2a\x34\x1d\x34\xa9\xdd\xec\xdd\x84\xbb\x8e\x65\x07\x57\x53\x5e\xd1\x34\x26\x0d\x12\xc1\x61\xec\x37\xad\x8a\x38\x5c\xfb\xe4\x84\xfc\xd9\x59\x98\xfe\x0f\xfe\xf8\xe7\xbd\x18\x09\xcc\x19\x1d\x71\x87\x5f\x20\x3c\x8a\x79\xe8\x70\xb1\xec\x2e\x02\x68\x4c\xfe\xcf\xe0\x28\x40\xb3\x77\x74\xb2\xf8\xf6\xb6\xcf\x03\x9d\xdb\x8e\x2c\x32\xa8\x94\x4c\x61\x96\xbb\x9e\xb4\x01\x3d\xe4\x28\x26\x11\x2d\x06\xde\x86\x42\x6c\x0e\x2b\x0a\x84\xad\x04\x29\x50\x9d\x22\xb4\x22\x28\xcb\x13\xc9\x7f\x61\x05\x01\xd9\xbb\x7b\x31\x81\xec\xdf\xbd\x1c\x7c\xaf\x00\xd5\x39\x5e\x43\x9c\x04\x2d\x21\x35\x96\xf4\x42\x1e\x3c\xdc\xb8\x0d\x7a\xba\xe5\x85\x5a\x9e\xfe\xe7\xd7\xbf\x1d\x1c\x1d\xa3\xeb\xfe\x9c\x95\x7c\x35\x26\x83\xaf\x06\xad\x15\x2e\x92\xb5\x35\xa1\x17\x49\xcd\xec\xbe\x07\xdb\x0b\xc8\xf8\xa2\x4b\xfd\xed\x7f\x7e\x7b\xb7\xa5\x82\x56\x70\xeb\x65\x1a\x55\xe5\xcb\x2c\xf1\x04\xa0\x27\xcb\x7b\xda\xbe\x3c\x18\x43\x62\xe5\x7e\x33\x12\xa9\x98\xda\x8a\xfa\x03\x59\xeb\x21\xa1\x2c\x10\xa6\x36\x35\x2a\x84\x89\xef\x2f\x78\xfe\x75\x44\x73\x14\x5b\xe7\x8f\x4b\x0f\x27\xe9\x2a\x31\x67\xf1\xc2\xe7\x8e\x53\x5d\xe1\xec\x86\x47\xe4\xf4\x94\x0c\x14\x93\xaa\x62\x2a\x77\xff\x19\x5c\x6e\xea\xd2\xe2\xa7\x19\xaf\x41\x99\x05\xd0\x43\x29\xdb\xd4\x6d\x4a\x99\x55\x2d\x2a\xac\xb4\xea\x27\x60\x33\x19\x1f\x20\x2c\x08\x6a\xdc\x37\x89\xee\x08\x57\xb6\x1e\x0c\x14\x7b\xcc\x67\xd2\xd0\xa8\xc4\x34\x67\x2f\x34\x6c\x3f\xd5\xd9\x98\xfc\x90\x0a\xd5\x4d\x83\x96\x5c\x29\xdf\x3d\x6e\x0a\xb3\x66\xe1\x56\x73\xe5\x59\x8a\x7e\xb8\xba\x98\x7c\x1f\xf2\x3b\x12\x16\xa6\x86\x1c\xa1\x58\xb8\x59\x8b\xc9\xb4\x24\x74\xa3\x96\xa2\xe6\xbf\xe0\xf5\x17\x3c\x0a\xb2\xbd\x20\x65\xae\x5f\xcd\x5f\x09\xb2\x66\xf5\x5c\xd4\x2b\x2f\x73\x56\x50\xea\xd5\x54\x4c\x56\x4b\x57\xe6\xd5\xd6\x69\xa6\x7a\x60\x15\xd6\xc7\x39\x86\xa2\xbd\x18\x34\x1c\x56\x4b\x7d\x10\xa3\xd8\x4d\x10\x97\x12\xbc\x30\x42\x14\x61\xd5\x2b\xf8\xa7\xcd\xa2\x0c\x5f\x45\xaf\x5b\x4c\x1e\x43\x89\x55\xf9\xb9\x4b\x15\x8c\x05\x2a\x3c\xbd\x93\xdb\x62\xc9\x48\x18\x72\x45\x6b\xe5\x0a\x98\x79\xe0\x7c\xc8\x7e\xaa\xc3\xa6\xa6\xfd\x99\x0f\xd6\xd4\xf6\x6f\xe2\xd3\x14\x57\x25\xb3\x55\x87\x78\x4d\x62\x49\x3d\xff\x61\x1f\xe9\x6a\x5d\xb2\x31\xf9\x04\x5e\x54\x56\x13\xa3\x6a\x0e\xfe\xc8\x6e\x78\x45\xce\x37\x35\xad\xd4\xe0\xd8\x85\x08\x8c\xc9\xe0\xff\x25\x73\xc6\xd4\xe0\xf3\x7e\xe8\xf6\x33\x9c\xb2\x19\xdd\x48\x46\xb6\x90\x40\x19\x13\xcc\xf8\x03\x60\x60\xbb\x22\xdf\x3e\xfa\xff\xbc\xe3\xd9\x92\xf3\x30\x4c\xfa\xe8\x36\xc8\x4b\x94\x46\xba\x13\x1a\x36\x1b\x3d\x6c\xb0\xeb\x54\x08\xfc\xff\xe7\xb6\x4a\xf1\x0d\x0f\xf0\x47\x4f\x6c\x06\x15\xdb\x9a\xb4\x4f\xd1\x38\xf6\x5f\x69\xd4\x78\xc5\xb6\xf0\x6c\xcf\x74\xb5\x55\xe2\xe3\xd1\xc3\x47\x61\x97\xe7\x7e\x0d\x24\x0e\xc9\x97\x41\x0b\xa4\x0b\xca\x43\xe3\x8a\x5f\x0d\xf0\x8d\x7d\x43\x98\xf9\xb2\x35\x85\xa8\x2b\xaa\x83\x08\x28\x86\xbc\x18\x47\xb3\x3d\x26\xb9\x95\xc6\x4b\xb8\xf6\x6a\xf9\x85\xb5\x96\x3b\xea\xf9\xad\x5d\xe5\x37\x40\xd4\xfb\x06\x53\x59\x8d\x1b\x1a\xe5\x99\xf8\x09\x99\x30\xcd\x77\x68\xcd\xcb\x1d\x61\x15\x9d\x96\xac\x40\x34\x66\x5f\x98\xac\x6d\xbd\xe1\x29\x83\x22\xbd\x73\x5e\x96\x41\xee\xa4\x3e\x79\xd1\xd7\xa6\x02\xdb\x66\x5d\x84\x4f\xb0\xc2\xc3\x63\xde\x54\xe8\xd3\x2e\xf1\x7a\xc4\xbc\xa3\xb8\xa7\x32\x78\x0d\x62\x83\x89\xd7\x61\x99\xbf\x48\x0f\x0b\xa7\xd0\x7a\x28\x70\x5e\x10\x4a\x81\xe0\x93\xcc\x9e\x6e\x6a\xee\x02\xcf\x1e\x10\x78\x87\xb2\x5a\x1b\xea\x6f\xad\xdb\x97\x5c\xe2\x4d\x62\x6a\xf3\xc0\x35\x4a\x63\x97\x92\xd1\x8f\x30\x65\xb7\xb4\x47\x32\xfb\x22\xc5\xcc\x65\x84\x0b\xb4\x8b\x73\x8b\x31\xff\x48\xa1\x9b\x77\x38\x1e\xf4\xe8\x4d\x9e\x21\xb4\x48\xad\x0b\xc5\x05\x64\x35\x50\x1d\x36\xb8\x52\xfc\x9a\xff\xe1\x45\xe2\xf7\x36\xc7\x43\x6b\x2d\x8e\xe1\x47\xf7\xc9\x01\x37\x09\xfa\x92\x35\x49\x54\xad\x85\xfe\x5b\xb5\xf9\x86\x8a\x4c\xed\xdd\xd6\xca\xd0\x0d\x87\xbd\x66\x51\xad\xd2\xde\x2c\xd5\x9f\x14\x69\x38\xaa\xc6\x5a\x93\x0a\xb6\x01\x8f\x55\x3c\xbb\x19\x25\x3e\x8a\xbe\x0d\xaf\xbc\x6e\xab\xa6\xda\xce\x29\x23\x76\x7e\xcd\x94\x79\x57\x98\xf2\xd3\x6b\xa6\x2c\x3b\x35\xea\xb8\xdf\xe1\xd8\x25\xc5\xcc\x56\xd8\xdf\xcf\x5a\x03\xda\x01\x1b\x5c\x76\x9d\x90\xf3\xd1\xf0\xd5\xef\x1e\x3f\x34\x73\x38\x94\xb1\x12\xcc\x58\x8f\xc4\x6d\x95\x63\xaf\x56\xbd\xb0\xc5\x95\x03\x1a\x0e\xce\x4b\x54\x75\xdf\x2b\xd5\xee\xaa\xec\x9b\x0a\xfb\x44\x54\x1d\x85\xbf\x3c\xba\x37\x68\x6d\xc9\xef\xb7\x13\x1b\xb2\xa5\x49\x75\xdf\x05\x53\xd1\xdc\xf7\x9d\x92\xb3\x70\xa5\x76\x10\x67\x0a\x35\x03\xa3\x1d\x34\x96\x23\xed\x9a\xd8\xc7\xb5\x90\xfb\xd3\x32\x3b\xcd\xcb\x21\x3c\xca\x30\x3a\x86\xb4\x9d\x77\xcf\x33\x6a\xca\x32\xe0\x30\x58\x4a\xd5\x16\x4e\x0b\x4a\x3d\xf4\x28\xbe\x10\x93\x82\x5f\x58\xc3\x69\x49\x71\x3f\x2d\x34\xfe\xf9\xab\x3f\xfb\xaf\x97\x4d\x0d\xbc\x08\x92\xc9\x7e\xad\x81\xa9\x38\xd5\x84\x81\xde\x3b\xc3\x69\x48\xd3\x52\xd1\x5a\x5d\xe9\xf3\x00\x0f\xed\x40\x89\x06\x3e\x88\x07\xd1\x3e\xc0\x83\x5c\xbe\x86\xe1\xf8\x49\x6e\x4d\x7d\xef\xe8\x7d\xe3\x8a\xd1\x0a\xdf\xa9\x51\x15\xa7\xd8\xb7\x85\x65\x79\x40\x25\x50\xe7\x4f\xa3\xc3\xf2\xc8\x00\x62\x1f\x16\xde\xab\x53\xcc\xc9\xc3\xd5\x0f\x3b\x58\xf8\x8b\xaa\xc8\xe1\x05\x2f\x37\xad\xf4\xe0\xcd\x27\xa2\xeb\x59\x73\x8d\x10\x75\xa1\xbe\x94\x9d\xb0\x4f\xb7\x01\x43\xf4\xd8\x74\xf8\x7d\xb7\x50\xeb\x16\x78\xad\x67\xca\x8a\x61\xc5\xb6\xcf\xfd\xfe\xfd\xf8\x6f\x14\xaf\x11\x34\xed\x16\x10\xbc\xf2\x03\x46\x28\xb0\xf2\x02\x5c\x87\xee\xe7\x57\x74\x9d\x51\xb2\x7d\x12\xb1\xb2\xa2\x2d\x50\x13\x24\xe4\x6f\x00\xe5\xdf\x43\x7a\x77\x77\x58\x54\xc4\x4e\x2b\x29\x7e\xd8\x56\xbb\x44\xd2\x1b\xf6\xdd\x0f\x49\xe5\x12\xef\xf6\x0e\x7f\x1a\x1e\x1d\x13\x25\x0e\x2d\x6a\x12\x9d\xd4\x4c\xd9\x06\xa2\x27\x22\xc9\x76\xc9\x67\xfe\xf2\xfd\x57\xa3\x53\x56\x8a\x6a\x21\xdb\x59\x7c\x20\x44\xcd\x33\x97\x89\xff\x9a\xef\x80\x8a\x00\x07\x4c\x27\x84\xd9\x79\xa1\x1d\x54\x76\x29\xaf\xab\xdc\xa2\x98\x63\xc2\x37\x3a\x4a\x68\x74\x15\x06\x48\x52\xa5\xac\x3b\x0b\xd9\x86\x01\x03\x68\xd4\xf9\x47\x2b\xa8\x13\xcd\xbf\xbb\xfa\xc8\x5c\x75\xd7\x16\xf0\xca\x8e\x1c\x50\xc8\x3a\x3e\xf3\xb1\xb6\xe2\x1d\xa7\x7e\x66\x30\x8f\xd1\x64\x8c\x61\x11\x82\x1d\x92\x6e\xaf\xc4\x64\x0b\x8d\xf8\x9f\x7b\x32\xa3\xf5\x34\x48\x79\x08\x3b\xd4\x2c\xe5\xef\xb9\xa7\x3b\xf9\x86\x95\xbe\xa6\xaa\x7f\x86\xc3\x61\xdd\x24\xd1\x19\xc9\xe3\x0a\x5d\xde\x0e\x51\xa9\xa9\x2d\x47\xf5\x57\x6c\x8b\xa8\x09\x69\x7e\x3f\x65\xe6\xf7\xcf\x82\x03\x9b\x7d\x6c\x65\x26\x81\x6d\xde\xdc\x84\xa6\x79\xab\xd5\xdd\x66\x9f\x86\x4a\x13\x95\x62\xf5\x9c\xda\xb4\x5b\x1b\xc9\x6a\x69\x34\x23\xa9\x0c\xc9\x1a\x7e\xed\x79\x26\xa8\xb5\x87\x83\x0a\x56\x96\x62\x4b\x84\x5a\x42\xa6\x1f\x41\x4c\x99\x13\x27\x28\xf0\xca\x11\xbf\x57\x0c\x85\x5c\x2a\x42\x4b\x29\xac\x35\x7f\x2e\x6a\x52\x33\x5a\x58\x51\xd7\x88\xb9\xa6\x74\x7d\x03\xcb\x64\x62\x70\x70\x4c\xe3\x13\x72\xce\xd6\x35\xd3\xf2\x7c\x31\x76\x2b\xac\x04\xd1\x77\x1f\xab\x9b\x40\x96\x82\xcd\x39\x48\xca\x88\x6d\x54\x10\x45\x49\x68\xb5\x5b\x89\x9a\x8d\xda\x2d\xfc\x0d\xaa\x70\x36\xcd\x24\xde\x6c\xa6\x25\x9f\x91\x4c\xd6\xb1\xa4\x4d\x3e\xa5\xb6\xab\x8a\x73\xee\x97\x88\x91\xfb\x9c\x34\x47\xed\xc0\xe0\xec\x99\xaa\x92\x4d\xa6\x24\xad\xc6\x5d\x5d\x4c\xe2\xc7\xfe\x4d\x86\x9b\x9a\xc9\x4d\x69\x4d\x19\x10\xfc\x0b\x44\x52\x78\xa5\xc2\x37\x75\xc5\x8a\xe6\xf2\x8e\x01\x99\xf2\xd7\x53\xd4\x2b\x24\xc4\x2a\x20\xa9\xd1\x7a\xb1\x59\x99\xcc\x51\xa0\xb8\x1a\x07\x4d\xa8\x52\x0a\x19\x6b\x99\xfa\x33\x34\x13\x3b\x05\x3d\xf2\x88\xfc\xed\x6f\xf6\xab\xa7\x90\x60\xec\x94\xf0\xa2\x25\xb2\x37\x52\x39\x63\xe1\x23\x16\x55\xd2\x15\x6a\x42\xe2\xd5\x4c\xd4\x35\x9b\x25\x7a\x69\xdb\x19\xf3\x0e\x0b\x47\xa3\x85\x9f\xdd\x8e\xdd\xb0\x7a\x07\x87\x8d\x6c\x97\x82\x88\x6d\x25\xfd\xdc\x76\x28\x78\x4b\xb4\xbc\x54\xe6\xec\x18\xf6\x0a\x72\x38\xad\xe8\x82\x99\xef\xaf\x2e\x26\xd7\x0f\xc8\x1e\xef\x54\x33\x9d\x71\x0b\xf5\x1e\x77\x11\x6f\xe8\xd7\x3a\x0f\x82\x20\x5d\x2d\x83\x6a\x2e\xea\x15\x1a\x98\x35\xf1\xfa\x3d\xae\x2e\x26\x31\x1a\x76\x6b\x66\x4c\x19\x36\x8b\xd7\xe5\x79\x64\x4f\x8a\xab\xa9\x88\x6d\xc5\x0a\x8d\x26\x7d\x2e\xb0\xd3\x98\xe4\x43\x03\xe3\x72\x29\xd9\xec\xab\x0e\x9e\xe6\x9d\x9f\xda\x4a\xa0\x1b\xb3\x2d\x25\x25\x97\x90\xe7\x0f\x4a\x6e\xee\xd6\x4c\x7a\x85\x10\x6a\x36\x63\xfc\x86\xc1\x2e\xb1\xb5\xda\x9f\x1c\xe6\xda\x66\xa0\xb9\xba\x98\x4c\x34\x30\x28\x58\x81\xbe\xd3\x5c\x85\x0c\xbc\x7a\x4d\x1f\xe8\x10\x35\x3f\x8d\x23\xc9\xc2\xd6\xef\x7c\x87\xec\xfb\x5c\xd1\x78\x77\x31\xfa\xdd\xba\x71\xb2\x5d\x32\xcd\xf5\x89\xa8\xc1\xac\x1e\xa5\x26\xd1\x1b\x0e\xd8\xc0\xc2\x44\xe8\x97\xc9\xd4\x64\x23\x67\xde\xf7\xa6\x26\x12\xad\x4c\x5f\xcd\x97\x11\x9c\x61\x2c\x7f\xd9\x48\xe5\xf2\x45\xd5\x1b\xa6\x41\x9b\x80\xdb\x6e\xa4\x73\x19\xe3\x7c\xa8\x9c\xab\xfa\x08\xd1\x98\x86\x0e\xc0\xd0\xa7\xa7\x81\x3f\xbb\x23\x81\x55\x8c\xd4\x6c\x30\xc0\x9c\x96\x32\x1b\x96\x14\x3a\x09\xe8\xca\x96\x4c\x04\x1a\x05\x76\x50\x34\x1e\xae\x04\x93\x6d\xa4\xf6\x92\x55\x0b\x0c\x6a\xba\xac\x62\xde\xea\x07\x8d\xb8\xe3\x30\x2a\xa1\x47\xcb\x0c\xff\xc5\x02\x16\x42\x7b\x88\x5a\x16\x35\xdd\x92\x9a\xad\xc4\x0d\xd8\xa2\x2c\xfb\x33\x75\x65\x59\x20\x25\x55\x05\xc1\x76\xad\x8b\x6f\xd7\x4b\xec\x58\x7b\x8d\x03\xe8\x7e\xb0\xe5\x04\x71\x66\x45\x6e\x3e\x2d\x83\xd6\x56\xeb\xf8\x21\x9b\x33\x15\xfc\x83\xfa\xaf\xa6\xcc\xb0\x9d\x5a\x42\x7a\x09\x80\x9f\x4d\x4b\xdc\x59\xdb\x6f\xe8\xaf\xad\xa9\xde\x9d\xe7\xe4\xa9\xa8\xf2\x0c\x2f\xf2\x6a\x8e\xd6\xd9\xd9\x92\xcd\x3e\x40\xbe\xba\xb4\x78\x12\xb8\x4d\xe6\xca\x86\x58\xa3\x08\x70\x75\x31\xf1\x66\xd0\xa5\x62\x04\x92\xc3\xd8\xd0\xbb\x93\x0b\x62\xcd\xa2\x09\x34\x6a\x8d\x68\xaf\xe6\x2a\xc7\x3d\xc2\xe1\xec\xdc\xc6\x5e\x16\x4e\x5c\x5b\x12\x69\x14\xa3\xe6\x2d\xec\x3e\x6a\x8d\xf3\x2c\x51\x26\xe8\xc1\xbd\xfd\xee\x71\xcc\x03\x90\x90\x30\xf2\xf7\x20\x6c\x25\xd3\x0f\xdd\xae\x29\x03\x8b\xf1\x08\x06\x54\x4b\x39\x20\xbc\xc2\x1c\xa1\x3c\x2a\xaa\x8e\x6e\xaa\xf5\xd3\x11\x2d\x8a\x9a\xc9\x8c\xe3\xca\xe3\xa4\x8e\x60\x11\x52\x0b\xa3\x08\x7f\xcb\x94\x30\xb5\x73\x72\xf0\x24\x59\x6d\x4a\xc5\xd7\xa5\x39\x22\xf2\x3e\x4a\x91\xf2\x42\x8e\xc9\x59\x45\x68\x5d\x53\x10\xb0\xb4\x0a\xa4\x84\x1b\x74\x9f\xf1\x20\x3d\xc6\xbe\xf0\x97\xb9\x6b\x4d\xe1\xa0\x36\x43\x47\xc7\x27\xc4\xed\xaa\xbd\x6a\x79\x3f\xfe\x10\x20\x79\x08\x78\x78\x87\xec\xe1\xfd\xa1\xec\xdf\x7f\xb3\xa3\x95\xef\xf8\xaa\x0a\x1a\x6b\xd9\x12\xc6\x3e\xb0\x40\xa8\x56\x9b\x14\xab\xd1\x85\x54\x8b\xcd\x62\x69\xb4\x25\xa4\x03\x77\x5b\x00\x21\xec\x3b\x8b\xfa\xee\xe4\x70\xbd\xeb\xfe\x29\x8f\x88\x26\x98\x16\x13\x35\x39\xe0\x73\x3c\x96\x17\x47\xfb\x39\x47\xdb\x69\x91\x2d\xc7\x25\x9a\x50\xcb\xc1\xb1\xc6\x00\x45\x3f\x80\x25\xc4\xf0\x04\x8d\x1f\x5a\x14\xfe\xcd\xd8\x80\xf2\x2d\x7c\x5d\x07\x06\xcf\x8b\x41\x80\xb2\xc5\xf0\xe1\x1a\x34\xc3\x76\xca\x4b\x1d\x96\x97\x08\xb9\x2d\x57\x53\x26\xc1\xf6\x73\x63\x35\xf1\x26\x80\x0c\x16\xf8\x80\x27\x1b\xa1\x1a\xf7\x81\x11\xb9\xa9\x13\x1d\x9a\x2b\x6b\x9e\x31\x5a\x67\xea\x82\x0c\x58\xb7\x1d\xe2\x21\x94\x13\xcf\xfa\x4a\xdd\x35\x9e\x86\x9d\x60\x72\x73\xa8\x03\x80\x6c\x36\xfb\x96\xc9\x5a\x22\x8d\x2c\x60\x62\x9b\xd2\x7d\xb2\x10\x45\x59\x4c\xf2\x57\xcb\x3b\x5e\xbc\x6f\xf8\x6d\x3c\xd6\xeb\xaa\xdc\x99\x4c\xd3\x8e\x78\x30\x1f\xb4\x49\x5d\xdb\x72\x7e\x34\xda\xc0\x3e\x84\xaa\x83\x16\x9d\x1f\xc9\x6c\xfc\x17\x9f\xe7\x2e\x10\xe3\xa2\xce\x9c\x3c\x98\x8c\x35\xcc\xe8\xeb\x48\x5f\x44\x4a\xb4\x5c\x43\x7e\xcf\xf4\x98\x99\x5c\xd6\x58\x4e\x0f\x78\x92\x28\x8b\x58\xbe\x1a\x18\x21\x2e\xb4\x35\x98\x94\xd9\x0e\xb1\x5d\x37\xd5\x79\x74\xea\xd2\xaa\xce\xd4\x94\xdc\x46\x93\x4c\x6c\x7e\x37\x88\x97\x84\xd1\xd9\xd2\xde\x10\xac\x40\x3d\x1e\xcd\x79\x5c\xe6\x76\xe2\x3e\x8c\x5a\xe9\xa9\x02\x67\xbf\x77\x23\x5a\xc3\x60\x74\xd6\x13\x1a\x84\x37\x53\x86\xae\xe5\x68\xc1\xd4\xe5\xb9\xec\xc9\xc4\xa1\x6b\xc2\x3b\x7c\xe4\x20\x6e\x62\xef\xb3\x66\xe3\x1f\x18\x38\x26\x5a\x5e\x6c\x99\xac\x94\x31\xf7\x36\x93\xcc\xf2\xef\x0f\x6c\xb7\x97\x81\xa7\x94\xd5\x72\x50\x2c\x1d\x45\xcc\x3d\xa4\x22\x2d\x6f\x3a\xea\x41\xf2\xe4\x05\x72\x6d\x52\x6c\x6a\x0c\xce\xe6\x5a\x71\x9c\x09\xfb\x08\x40\xf7\x91\xa1\x66\xe2\xea\x2a\x60\x64\x21\x55\xae\xf3\x5e\xd1\x00\x63\xf1\x90\x8a\x34\x64\xcf\x8a\x79\xec\xa0\x8c\xc9\x8f\x17\xfc\xe3\xb7\xbf\xcb\xd0\xcc\x17\x12\x85\x79\xd1\x43\x04\xd6\xf3\xbd\xb5\xf8\x6b\xf5\x55\xcd\x76\xae\x2e\x26\x88\x87\x62\xf8\x55\x73\x8f\x6c\xd4\xb2\x1d\x5f\x6d\x6f\x65\x13\x82\x59\x53\x29\x7d\xed\x0e\x39\x7a\x89\xaa\x4b\x1a\x06\x48\x6c\xf0\x8a\x09\x07\x83\x10\x37\x13\x5a\xc2\x6d\x29\xd3\x29\x9d\x7d\xb8\xc5\x4d\x10\xa9\x4d\x7a\x0e\x5a\x49\xab\xe6\xaa\x39\x1a\xfe\xa6\xdb\x7f\x45\x8b\x3a\x84\x43\xbe\xf4\x08\xdc\xe7\x2c\x86\xd4\x65\x3b\xad\xfb\xa0\xf4\x45\x8d\xcc\x43\x66\x45\x40\x38\x12\xc8\x28\x6c\x6c\xad\x79\x0e\xcc\x8a\xdb\x1d\x05\x37\xf9\x50\x3e\xee\x75\x24\xba\x84\x55\x3c\xf0\x4b\xb6\x3a\x48\x28\x75\x15\x8c\xdd\xbd\x98\xdb\x24\xbf\x47\x9b\x95\x75\x53\x75\xb0\x1c\xa5\x34\x47\x03\x7e\x6f\xda\x85\x61\xad\x11\xfd\x60\x1b\x7d\x57\xb9\xa2\xa8\xd3\x8d\xe4\x95\xbe\xe5\x4b\xb1\xe0\x33\x42\x6b\x28\x03\x65\x80\xb1\x92\x2f\xf8\x94\x97\x5c\x25\xd1\xcc\x9d\x7b\x81\xdd\x7d\xf7\xca\xbf\xd9\xd0\xc1\x6c\xe8\x4d\x96\x0d\x85\x3b\xda\x44\x71\xaa\x25\x03\x9b\xa6\x3e\x79\x09\xb3\xf1\xa3\x55\xf5\x8f\x2e\x94\xcf\xd9\xf9\xef\x24\xaf\xb6\x51\x59\xc8\xa7\xee\xc0\x93\x7e\x0c\xce\x40\x8e\x2b\x1d\xc2\x7b\x70\x7e\x86\xfb\xa0\xec\xbc\x23\xb4\x66\x86\xdc\xcb\xe4\x01\xe9\x7e\xbe\xf3\xa3\x25\x78\x5f\x33\x3f\x8c\xcf\xd8\x59\xdd\x8e\xd5\x78\x27\x2e\x3e\x01\x6d\x8c\xc5\x6c\x80\x75\x20\x9b\x3f\xa5\xb5\x56\xe0\x41\xe0\xb2\xc5\x35\xe1\x4d\xb7\xe9\xe1\xe1\x32\xb2\x39\x1e\x60\xd5\xd1\xec\xc9\x2f\xb9\x84\xbe\x74\x10\x67\x4d\xb9\x9b\x4e\x66\xd1\x67\xcf\xc2\xa5\x77\x6f\x1b\x32\x1e\x9f\xc0\xfb\x86\x77\x44\xc7\x22\x17\xe3\x11\xfc\x76\x48\x80\x47\xc4\x06\x7a\x07\x79\xec\x23\xa6\xc3\x19\x33\xb9\x23\x73\x26\x39\x06\x6d\x36\xa8\x83\x47\xcf\x3c\xd3\x9d\x7b\x51\x1e\x3e\x26\x8f\x96\x6e\x96\xf7\x02\x35\x68\x67\x83\x42\x15\x7a\xc9\x6a\xe6\x22\xe1\xd7\x25\x55\x73\x51\xaf\x24\x29\x04\x8c\xba\xa4\x37\x0c\xef\xd8\x82\xd5\x52\xe9\xe3\x6a\x36\xe0\xb1\x4b\x62\x02\x70\xe0\x26\x96\xcc\x3c\xbf\x94\x4b\xbe\x26\xb3\x25\xad\x16\x69\x9d\x1e\xf0\xee\x6d\x7d\xbb\xa9\xd8\x28\x48\x71\x50\xd7\x4c\xae\x45\x05\xc5\x35\xac\x46\xb5\x62\xd4\x14\x30\x47\x45\x93\xfc\x75\xc3\x24\x88\x5f\x4b\x0a\xc1\x1c\xf8\xdc\xd3\xe8\xda\x79\x45\x3d\x30\x1c\x1f\x62\x32\x36\xd3\xb5\x7b\xb0\x84\xb7\x31\x7e\x72\x09\xfb\xa6\x30\xe3\x67\x20\x90\x65\x38\x39\x3d\x86\x5f\x3d\xdb\x5d\x9e\x3b\x9e\x95\xf4\x0b\xf4\xb1\x5e\x2c\x0d\x15\xd9\xe6\x45\x44\x4e\x33\xd6\x1b\x4c\x5d\xf8\xc0\x3e\x55\xdd\x77\x17\x82\x8e\xdc\x30\x8a\x5e\x0e\x43\xad\xea\xb6\xdd\x6c\xd6\xe7\x62\x2d\xd4\x84\x9a\xef\x82\x18\x0b\x78\xca\xe1\xaa\xae\xb4\x7b\xae\x82\x77\x1c\xe8\x4c\x03\x6f\x71\xcd\x68\x41\xb8\x0a\x8c\x5b\x5d\xdc\x38\xe3\x54\xd3\x73\x58\x18\x53\x59\x33\xb1\xb9\xd8\x1b\x0b\x9f\x79\xa8\x11\xfa\xe8\xfc\x5e\x57\x02\xb2\xff\xeb\x2b\x47\x54\xe5\xce\x7f\xcc\x6c\x96\x03\xcf\xe5\x69\x11\x45\x01\x5e\x5d\x4c\x8e\x7d\x38\x9a\x12\xc1\x37\x8e\x99\x27\xc2\x34\x43\x23\xf2\xa6\x64\x54\x42\xe4\x76\x10\x0b\x14\x05\x01\xc3\x38\x96\xf9\xe8\x7e\xfb\x8c\xa3\xd1\x3b\x11\x2d\xfd\xfc\x89\x84\xf1\x45\x79\xc1\x2f\x0e\x39\x32\x74\xf4\x55\x2a\x6a\x75\xd2\x91\x8b\xde\xe9\x47\x4a\x7d\x09\x07\x53\x07\x55\x45\xf8\x1e\x08\xee\x04\x1e\x56\x02\x9b\xe8\x9b\x5f\xf7\xc3\x97\x13\xe8\x77\x75\xc4\x17\xc4\xc8\x86\x85\x07\x83\xcd\x13\x35\xec\x9d\xd9\x5a\xc9\xa0\x8a\xa1\xfe\xf6\x4d\x93\xc8\x28\x4a\x12\xa1\x65\xda\x5d\xc4\x05\xdc\xe3\x06\x7c\x8b\x26\x6a\x33\xb2\x71\x43\x51\x53\xb9\x48\x48\xe6\x67\x4b\x8a\x4d\x34\xe1\x0b\xf2\x2c\x09\xfc\x3d\x8f\x4f\x07\xf9\xf5\x8d\x6f\xf3\x99\x56\x43\xb8\xbc\x38\x02\x9b\x39\xf4\xc8\x51\x5d\xc7\xc8\x3f\x71\xb6\x7d\x8b\x39\x2d\xea\x68\xfc\x4f\xfe\x6f\x23\xfb\x8f\xe4\x00\x98\x02\x6b\xe8\x9d\xce\x1c\x83\x8e\xbc\x67\x31\x28\x6f\x89\xe0\x14\x97\xad\x93\x68\xb9\x5e\x48\x5b\xf6\x40\x12\xc4\xb4\x3d\xbe\x9f\x8f\x05\x17\xbf\x38\x7d\x5c\xb2\x1b\x56\xba\xb0\x40\x13\xa9\xd9\xbc\x2d\xb9\xc7\x19\x58\x78\xd9\x98\x90\x30\x6e\xf7\x38\x0d\x73\x31\x26\x74\xc3\x50\x2c\x2c\x8a\xf1\x7c\x9a\x37\xc8\xf0\xcd\xa4\x17\xbc\x67\x85\x67\xdb\xe9\x35\x10\xbd\xe6\x29\x20\x7c\x05\x96\x7a\xd7\xd9\x74\x3a\x6e\xd4\x0e\x3a\x05\x97\xb3\x0d\x3b\xb3\xd0\xfc\x28\xd9\x9a\x56\x92\xa2\x3b\xcd\x8e\xf6\x20\x26\xea\xf6\x70\x9b\x20\x2c\xe6\x10\xe7\x2b\x9f\x13\xd3\x97\x3c\xec\x8c\x9a\xb2\x42\xbe\x09\xa6\xb3\xc2\x95\x0b\x3f\x1b\xc4\xf1\xcb\x24\x17\xea\x6c\x95\x93\xc0\x49\x1b\x52\xed\x82\xa9\xb3\xb2\xc4\x34\x1a\xee\xde\x28\x4b\x62\xdf\x61\x23\xba\xf0\x16\xf5\x11\x15\xb0\x28\x4f\xc4\x0a\xfb\xc2\x95\x02\x7b\x07\x75\x4d\xcd\x5b\xe6\x04\xd3\xbe\x80\x65\x67\x03\x52\x96\xfe\x97\x2f\x63\x45\x2f\xbe\xdc\x2b\xf7\x11\xe4\x5d\x93\xe9\xda\xfc\x4c\x73\xc9\xfa\xdc\x2b\x84\xf8\x36\xa1\x8d\xbc\xe0\xb2\x4d\x34\xeb\x6e\x4b\x3e\xd0\xc4\x01\x37\x0f\x7a\xb8\x24\x53\x86\xa5\x17\x69\x3d\x5b\x9a\xb5\x67\x70\x38\x09\xe7\x43\xa8\x4d\xd7\xa3\x84\xfd\x97\x7d\x3c\x61\xd3\x09\x75\xa2\x31\x9b\x62\xcf\xbd\x56\x8d\x9f\x34\x3c\x4d\x71\xec\x6a\x5f\x07\x69\x04\x9e\x8e\x82\xb4\x84\xad\xb8\x36\x25\x07\xfc\x68\x8f\x0e\x74\x5b\x20\x2d\x1f\xb7\x19\x70\x4d\xbb\x9c\x76\xfe\x44\xda\x3b\xbf\xf8\x38\x0e\xaa\xcc\x0c\x30\x7c\xd8\xae\x52\x68\x71\xc6\x8b\xaa\x6f\xf9\x94\xfc\x03\x23\x83\x57\x6c\xb5\xd6\x42\xcd\xef\x6b\xfe\xcb\x2f\x25\x67\x72\xf0\x05\x48\x23\x18\xd7\xcc\x7c\x62\x5f\x32\xa3\x6a\xa9\xdb\x3b\xd9\x61\x1f\x31\x61\x3f\x9f\xa4\x5e\x1f\x4a\x40\x71\x01\x09\xfb\x58\xcc\xcc\x2e\xca\x30\xf5\x34\x8a\x87\x16\xd5\x23\x70\x71\xcd\x18\x84\x38\xdf\xb0\xda\x79\xab\x8d\x40\x26\x6a\x33\x4b\xf0\x51\xdf\xd0\xd2\x4b\x83\x6b\x24\x81\xf5\x9e\xfc\x16\x79\x99\x46\xff\xe8\x28\xf6\x1d\x8c\xf1\xbe\x9d\x71\xda\xdb\x3d\xa0\xea\x6b\x23\x7e\xfa\x94\x8c\x4f\x97\xac\xb8\xdc\xf8\x2c\x6c\x1e\x85\x70\x13\xa1\xfc\x6d\x40\xf1\xa3\x0e\xb2\xf1\x5e\x1b\x36\x54\xe3\x5e\x1b\x1e\xc4\x4f\xfe\x7b\xc3\xea\x9d\x9d\x3f\xbe\x24\xb3\x1c\xb9\x61\x82\x4d\x4a\x28\x0e\x21\xea\xe8\xd0\xa1\x53\xb1\x71\x89\x1c\xb2\x37\x63\x83\x9a\xe4\x2d\xbc\x3f\xee\xd3\xf0\xf6\xcb\x3d\x09\x3f\xcd\x85\x16\xb4\x0a\x5c\xde\x8f\xfe\x38\x41\x91\xf3\xcc\x25\x67\x72\x30\x06\xdb\x08\x4f\xda\xfe\xf7\x6f\x63\x2e\x7d\x48\x6b\xe0\x7c\x98\x6a\xd2\x6d\xc9\xc1\x27\x13\x75\xa6\xcc\x79\x8c\xae\x60\xa3\x9d\xd9\xcd\xc4\x4c\xc2\x59\xf4\x9b\x97\xe1\xfe\x06\x98\xd7\xe6\xbd\xb7\xe0\xef\xb8\x09\xf1\x54\x35\x94\xe8\xe9\x70\xc7\x9e\x84\x49\xa8\xdd\xae\xe0\x3f\x7e\x8d\x5d\x91\xcd\xa3\xf8\x78\x5f\x2e\xcf\xe5\xb3\x5d\x72\x36\x9c\x99\x2c\xd9\x17\xe2\x76\x38\x73\x5d\x1e\xbc\x3f\x57\x6d\x59\x72\x0e\xdc\xa3\xb3\x8c\x99\xcf\x03\xc6\xe7\x5a\xe1\xb0\x45\xc9\x45\x0d\x1c\x87\xcf\x6d\x56\x8d\x0e\x0e\xe7\xd0\x33\x8c\x72\xbc\x5a\x2b\xe0\x37\xbf\x7d\xef\xef\xe0\x0d\xad\x71\x9b\x64\xf3\x3b\x39\x25\xef\xde\x07\xf6\x9a\xd8\x09\x64\xb9\xb1\xdd\x38\x53\x91\xdb\x5e\xf4\x8e\x5d\x39\x18\xfa\x4b\x6b\x19\xe1\xe9\xc6\x1b\x81\x38\xd5\xaa\x6d\x86\xdc\xd3\x53\xdb\x1d\x73\x7f\x67\xbd\x00\xe6\xd9\x9b\xcd\xbd\x3b\x17\x9b\xaa\x38\x76\xaf\x39\x00\xcb\x49\x37\x5c\xbb\xc9\xb1\x39\xb4\x63\x78\x6c\xd9\x7e\xda\xec\xb7\xe1\xa0\x78\x16\xfc\x71\xfd\x2b\x61\xff\x71\xb9\x32\x73\xcf\x88\x15\x66\xa6\xf8\x9c\x43\x23\xe4\xc9\x2d\xee\x20\x04\x92\x17\x86\xe5\x65\xe5\xe7\xe6\x81\x00\x12\xf3\x4a\x0a\xc4\xc0\x9c\x29\xba\x61\x7c\x5f\x90\xa1\xf9\x87\xc5\xce\x64\xaf\x30\x88\xab\x49\x78\x58\xee\x0c\xdc\x1f\x17\x6b\x38\x18\x28\x94\x11\x9e\xb9\x7c\x61\xd3\x78\x28\x5e\xb3\x22\xb0\x7c\x8a\x92\x51\x13\x36\x68\x73\xd9\x80\x77\x92\x6a\x84\x9d\x60\xde\x49\xb1\x9a\x8a\x56\xc9\x7f\x08\x8f\x76\xb7\x5c\x32\xc8\xa0\x58\x99\xa8\x40\xf3\x04\xfa\x88\xc0\xc3\x36\x18\x77\xd4\x0a\xe3\x72\xee\x75\xf1\x7a\x1c\x6b\x76\x24\x15\x6a\x22\x2b\x08\xc2\x68\x08\xe0\xb8\x15\xdc\x74\xd3\x3c\x1c\x9e\xd1\xca\x7b\xc1\x3b\x65\x36\x9f\x4d\x60\x97\xbd\x4f\x32\x0a\x66\x72\x6f\x8a\xef\x33\xb3\x51\x66\x8f\x3c\xbf\x52\x8a\x35\xf3\x94\x2e\xcb\xad\x63\x5a\x18\x76\x27\xb6\xc0\x81\x23\xa2\xf5\xc2\xbc\xed\x88\x52\x51\xb5\x91\x41\xee\x3f\x2f\xd7\x57\x70\xaf\xc4\x2a\x8b\x64\xca\xa4\xbe\xb7\xd5\x97\xb2\xb2\x6a\x9b\x35\x16\x3a\xeb\x5e\x76\x41\x47\x49\x2e\xbf\x1e\x1a\x0c\x97\xd7\x4c\xe1\x3b\x9b\xfe\xa7\x23\xb7\xe1\xee\x99\xcd\x48\x13\x35\x57\x8f\xec\xdf\x59\x6a\xb5\x89\x3a\x33\x64\x0a\x35\x08\x20\xc3\x54\x9e\xd0\x63\x1a\xc7\x53\x12\xd1\xf7\x1b\x63\x5e\xc2\x5d\xb0\x81\x4c\xbf\x82\x2c\xd8\x4e\xae\x20\x66\x58\xa4\xb4\x51\xaa\xff\xde\xd2\xee\x4b\xc2\x52\x33\x94\x79\xef\xec\xd4\x73\xd3\x06\xf7\x56\xa6\x10\x9f\x7f\xe1\x63\x62\x28\x3f\xe7\x40\x68\xe2\xdb\x63\x46\xf1\xb7\x90\x92\x19\xab\xf5\xb6\xd9\x83\xfe\x8f\xc2\xb1\xa0\xf6\x86\x50\xb4\x4c\xb1\x91\x8c\x1b\x19\x40\x83\xf5\xbb\x85\xb7\x49\x9f\x1d\x45\x11\x5b\xb9\x5a\x56\xa5\x78\x9b\xdb\xc0\x55\x98\x06\xed\xef\xc9\xe1\xd0\x07\xf8\x0a\x26\xf2\x86\xd5\x90\xc2\xf7\x56\xdc\x6e\x91\x4b\x49\xe5\xcb\x5f\xbd\x72\x40\xe5\x49\xb0\x33\x15\x55\xd3\xc5\x3d\x18\xb5\x3b\xd1\x0c\x09\x8f\x4b\x34\xee\x3c\x6c\x66\xfc\x0e\x69\x45\x8e\xd6\xa4\x4e\xd9\x0d\xcf\xe7\xa1\xc1\xd4\xf6\x5f\x3a\x09\xcd\x6d\x12\xd0\xc4\x74\x11\xe5\x9e\xe9\xc2\x02\xfc\x2f\xef\xd2\xf0\x53\x22\xc5\x86\x7f\xe9\xfd\xd6\xb8\x37\x12\xa4\x05\xd9\x68\x7a\xfa\x3d\x7c\xd0\xb7\xf3\x7e\x78\x13\x1f\x1e\x8d\xc9\x57\xef\x9a\x2f\xde\xff\xf3\xee\x72\xf3\x77\xb7\x43\xc7\x2f\x4b\x76\x79\x1e\x5a\x93\xe2\xb4\x59\x84\x55\xca\x46\x2d\xb7\x5c\x2b\x49\xba\x38\xef\x76\xf1\x59\xc5\xa1\xf7\x43\x3e\x85\x57\x7b\xba\x0b\x7f\x51\xc3\x5c\xa2\x36\x48\x31\xda\x00\xfd\x57\xa1\x83\x77\x3e\x2e\xde\x3f\xec\xa6\x07\x28\x53\xb7\x87\x24\x9c\x4d\xeb\xea\x62\x72\x30\xdf\x6f\x88\x03\xdf\xfe\x1f\x6c\x44\x3c\x68\x3a\x7d\xa8\x05\x2b\xf3\xfd\x89\xc4\xb7\x82\xb7\xc7\xff\x0c\x57\x83\x95\x37\xfc\x2a\x73\xa7\xb7\xb8\x29\x5a\x24\x91\x43\x68\xf0\x10\x71\x04\xe2\xd8\x30\xbf\x3d\x04\x1c\x21\x51\xae\x31\xd7\x15\xe4\xb5\xf6\x17\xe4\x82\x6c\xdb\xf2\xf5\x11\x5a\x15\x91\x98\x81\x04\x64\x84\xba\x34\x89\x46\x86\x0e\x91\x9d\xd8\xaf\xf1\xdd\xea\x47\x07\x82\x57\xb7\x98\x57\x27\xb5\x5e\x45\xe0\xb2\x39\x6d\xff\x51\xe9\xb2\x85\x80\x62\x14\x46\x64\x11\xe3\x31\x93\x02\xcb\xc4\x3d\x82\x86\xd3\x27\xb3\x6c\x46\x8c\x34\x1c\x26\x7b\x69\xf8\xed\xe2\x83\xe5\x48\xa4\xb5\xb5\x9f\x28\xb1\xbd\x55\x7b\x02\xc5\x28\xfb\x54\x3e\x2f\x69\xef\x6c\x8c\xbd\xb2\x6e\x6b\x68\xd6\xd2\xfb\xf0\x94\x3c\x19\x93\xc1\x55\x98\x38\x12\xec\xcd\x33\x93\xd2\xc4\x3c\x12\x6d\x4b\x67\x46\xec\x8b\x8b\x56\x86\x14\x19\xc6\xa1\xb1\xa9\x94\x1f\x98\xf1\xdd\x8f\xab\xa6\x50\x62\x52\xf8\x31\x88\x34\xcb\x26\x30\x8b\x29\x2a\xd0\xfe\x5e\xd1\xb5\xbe\xb6\x1a\xcd\x8f\x96\x9a\x19\xed\xac\xe6\x67\x09\x6b\x23\xf5\x3d\xd6\x80\x0a\x22\x3b\x7f\x5e\xb2\xca\x64\x8b\x30\x4a\x53\x44\x87\x9a\x8a\x11\xe0\x31\xf9\x1a\x48\xda\xda\x79\x6c\x59\x21\x03\xa9\xe1\x34\x10\x20\xba\xa2\x6b\x9b\xff\xea\x03\xdb\x1d\x6b\x3d\x74\x85\x29\xb1\x30\x9e\x1f\x4a\xfd\x55\x0b\x22\xe6\x3e\x90\x6b\x0c\x25\x7d\xd3\x04\x74\x26\xe7\xcd\x43\x96\x8d\xa1\x33\xe4\x1b\x6a\x9b\x4d\x47\x8f\xb8\x90\x0a\x43\xc7\x84\xc1\xa3\xb7\x64\x4c\x73\x9c\x55\x24\xa3\xb0\x58\xb3\x50\x2c\x8a\x21\xcd\xc3\x50\x78\x7b\xa4\x71\xc6\xab\xc5\xa8\x7b\xce\xab\xf8\x5e\x1b\x13\x97\xe3\x2d\x37\x57\xa3\xa5\x5a\x11\xc5\xa6\xa8\x4e\x92\x41\xcb\x60\x9e\x2f\x20\xf1\x9e\xe2\x2b\x46\x68\x90\x53\x96\x4b\xab\xbd\x84\xc9\x70\x8d\xbf\x8f\x2f\xaa\xe0\x99\x8f\xbd\x89\xc2\xdc\xac\xa8\xfe\x52\xcc\x5b\x5e\x99\xbc\x81\x98\x86\x1c\x37\xfc\xeb\x0e\x24\x60\x49\x8a\x90\xad\xa6\x9c\xea\xe4\x84\xfc\x44\x6b\x0e\x01\x80\x92\xff\xc2\xa2\x8a\xc4\x89\x54\x9e\x64\xa2\x0b\xb1\x1e\x09\x02\x06\xe7\xdf\xfc\x76\xec\x41\xfa\x77\x66\xdf\x7f\x8d\xcc\xbe\xb6\xbe\x08\xb2\xf2\xf8\x82\x0f\x9a\xdb\xf2\x29\xcd\xdc\x4f\xbd\x85\x44\xf7\x1d\xc0\xb5\xd7\x5d\x94\x51\xb7\xad\xa6\x53\x76\x0e\x6d\x73\x6b\xcf\xc5\x1f\x5d\x61\x69\xb5\x27\x8f\x1a\x82\x8e\x58\x49\xc5\xfd\xe8\x0a\xaa\xdc\x79\x61\x3d\x6a\x9e\x64\x4d\x7c\x2e\x2a\x1a\x18\x1e\x42\x79\xa4\x45\xa5\x5f\x2d\x0b\xbd\xdf\xf5\x40\x13\x60\x07\x35\xdf\xd5\x14\x48\xa2\x78\xce\xe4\x1a\x79\x07\x30\xda\x5e\x95\xa4\xa6\xd9\xbd\x38\x0f\x6e\x81\x1e\x0e\x83\xd0\xfc\xac\xd5\xa5\x2c\x07\x52\x02\x9e\x94\x50\x53\x9d\xdf\x2b\xf8\x5b\x73\x67\x88\xef\xb1\x93\xad\xb9\xfc\x9d\x50\x93\xf8\x9a\xda\x18\x61\x47\x2e\xff\xc3\x81\xf5\xac\x5b\x80\x22\x1a\x8a\x1d\xab\xdc\x20\xfd\x28\x92\x5c\xc5\xbb\x72\x1c\x0b\x85\x6e\x3f\xb2\x37\x42\x2b\xeb\xed\xa2\x98\x6e\xdf\x45\xbe\x3e\x41\x67\xae\x75\x8c\x4b\x08\xd8\xac\xe7\x87\x08\x7f\x33\x0f\x42\xe3\x27\x48\xde\x90\xa1\x56\xc8\xe7\xe4\x21\xb2\xd3\xb6\xe5\x8c\xac\xd7\xf1\x8f\x6c\x37\x4c\xe6\x92\x4b\x64\xb8\x07\x9e\x5f\x4d\x3c\x81\x77\x6c\x99\xf8\x93\xcc\xab\x60\x73\xc4\x5d\x8b\x0e\xb5\xc5\xe7\x06\xad\x53\x79\x97\x0c\xff\xbe\xad\x5c\x0f\x2d\x8a\x89\xe8\xcb\x24\x9c\xbc\x27\xc9\xd7\xed\x9a\xc1\x1d\x79\xc5\xbf\x8f\xfe\x49\xc7\x49\x6d\x04\x5c\xa8\x24\xdc\xb9\x7b\xb7\x3a\xb0\xbf\xc6\x41\x0d\x46\x30\x19\xb0\xf6\x38\x36\xf3\xd4\x62\x67\xe8\x9f\x04\x27\x47\x1d\x70\x3a\x92\x13\xe9\x3d\x66\x87\xbc\xcc\x95\x50\x64\xce\xab\xa2\x7b\x9a\x5e\x9c\xa5\x83\xfd\x30\x53\x89\x31\x2c\xb5\x77\xeb\x95\x1f\xbc\x4c\x2d\x15\xfa\x98\xf2\x25\xcb\x3c\x7b\x68\xdf\x61\x32\xdd\xf0\xb2\x80\xda\xc6\xe6\xa1\x8b\xaf\xab\xc2\x73\x05\x93\x29\xac\x59\x63\x8e\xc3\xac\xe8\x3a\xa6\x71\xbd\xae\x24\x04\x37\x4b\x65\x7f\x8a\xcb\xdf\xfc\x29\x21\xf2\x3f\xb5\xdd\x4b\xdd\x65\xc6\x55\x50\x85\xdf\xe6\x26\x48\xcb\xf3\xbb\x3a\xf8\xde\x20\x6d\xc5\xf0\x7d\xc4\xfe\xbb\xf8\xd2\xbf\x5c\xf1\xa5\xbc\x65\xf3\x61\x5e\xb0\x0f\xa4\x13\xe3\xfc\x18\x93\x81\x7f\x35\x5b\xee\x60\x6e\x13\x2b\x00\xa2\x66\xf2\xb0\xb3\xc4\x60\xcb\x98\xbe\x04\x93\x29\x9d\x94\xcb\x64\xec\x5b\x30\x0a\x56\x4c\x84\x79\xb5\x8c\xc0\xbf\x54\x0d\xa6\xf6\xaa\x07\xc9\xa2\x32\xa5\x03\x3a\xd9\x66\x4b\xfb\x48\xcd\x6e\x83\x9a\xea\xf4\x5f\xe7\xcd\xc0\x27\x27\xf7\xf1\xc8\xf8\xb9\xcd\x1c\xf5\xca\xe8\xe3\x3f\x71\xb6\x95\xf7\x31\x80\x1d\x61\xc1\x94\x1d\x04\x60\xe7\x5f\x04\x02\xaf\xc6\xaa\x11\xf4\x86\xf2\x12\x0c\x78\x8e\x40\x83\x6c\x7b\x6d\xea\x71\x30\xca\xd0\x1a\xc2\x9a\x67\xba\x4f\x8f\xc6\x04\xca\x3c\x64\xde\x93\x62\xf9\x87\x00\x07\xa3\xab\x8b\x49\xf3\x6c\x56\xef\xd9\xf7\xc3\xa3\x63\xb2\xb7\x21\x97\x9a\xec\xda\xda\xbe\x15\x3b\x5a\x2a\xce\xe4\xf7\xc3\xa3\xf7\x91\x57\xa8\xc6\x67\xe8\xfe\x3a\xec\x77\x32\xc4\xc3\x23\x19\x62\xae\x23\x76\x3b\x03\x34\x87\x9b\x63\xe8\x11\xbc\x69\x3e\xab\x76\xd7\x60\xa2\xf4\xed\x09\x99\xfa\x33\x41\xe9\x19\xf2\xb7\xbf\x99\x2f\x1e\x6a\xe1\x0e\xca\x48\x1c\xe9\xdf\x1a\xf0\x83\x89\x5f\x46\x06\x26\xba\xda\x48\xf0\xb9\x18\x8e\xec\x15\xc9\xc0\x87\x1a\x83\xe8\x08\xc0\x71\xd9\x72\x35\x5b\x3a\xb8\xd1\xa4\x66\x54\xb2\xfd\x7b\x85\x9b\x9a\xd6\xc5\x31\x54\xb1\xa7\xeb\x30\xe9\x07\xf3\x6a\x1c\x8d\x63\x72\x62\xfe\x3a\x89\x8b\xca\x1c\x67\xfb\xa2\x63\xd8\x74\xc5\x3f\x0e\xea\xe9\x67\x32\x87\xc5\x7f\xd5\x7c\xa3\x29\xb2\xa3\xeb\x4b\x5e\x7d\xc0\xa2\x26\x07\x74\xcd\x3e\x8e\xbf\x30\x1a\xdf\x98\x0c\x35\x01\x1e\x5c\x9a\x22\xb3\x11\x77\x2d\x53\xe1\x7f\x3e\xa7\x5f\x1f\xdd\x82\x74\xdc\x31\x4f\xa9\x47\xeb\x13\x53\x5a\x55\xac\xbe\x5c\xd1\x05\x23\xa7\x11\x21\xbd\x62\x05\x6f\x21\x9e\x39\x2f\xd9\x38\x6a\xfe\x87\xc9\xe4\xcd\x05\x2f\x59\xbe\x87\xfe\x6c\xea\x72\x4c\x06\x4b\xa5\xd6\x72\x7c\x72\x52\x4d\xa9\x89\x67\x1b\xcd\xc4\xea\x44\x2a\xaa\xf8\xec\x84\xaf\x16\x27\x4a\xac\x1f\xeb\xef\x1f\x97\x62\x21\x1e\x2f\x45\xcd\x7f\xd1\x32\x42\xf9\x78\xbb\xe4\x8a\x8d\xe4\xcd\x62\x90\x1d\xa3\x65\xf7\x57\x7a\x1d\xe6\x4c\x73\xbd\xd2\x13\x79\xb3\xf8\x8f\x8f\xab\x32\x85\x92\xe2\x1c\xd4\xc2\xbf\x6e\x68\xcd\xfe\x17\x21\x69\x4e\x6f\xf8\x4c\x54\xf6\xff\xbf\x2e\x46\x7a\x30\x1d\x24\xba\xfc\x1a\xd1\xcc\x3e\xb8\x7a\x76\xf6\x78\x22\xd6\x8f\xf5\x61\x19\xe4\x67\x59\x30\x8c\x48\xc1\xac\x69\x57\xcf\xce\xf4\xe1\x22\x90\x6b\x84\x4b\xb2\x13\x9b\x1a\xd2\x95\x61\xba\x19\xb1\xad\xb4\x78\x55\x96\xc7\xe8\xb8\xab\x69\xa1\xf9\xf4\x9c\xcf\x38\x2d\x49\xc1\x17\x5c\xd1\xd2\xe5\x61\x9b\x96\xcc\xbd\xba\xd3\x80\x75\x97\x9f\xaf\x9e\x9d\x3d\x92\x64\x81\x7e\x30\x65\x12\x43\xe8\x5f\xf4\xbf\x58\x2d\x5b\xa6\xc9\x3e\x2a\x56\x57\xb4\xfc\xf1\xed\xcb\x78\xb7\x5f\x34\x3f\x0d\x5b\xb6\x74\xd0\xb2\x45\x1e\xcd\x8d\xfd\x3f\xf2\xad\xbd\x63\x3c\xf6\xff\x68\x81\x2d\x34\x52\xe4\xb8\x83\xa1\x0d\xd4\x96\x2b\xc5\xea\x41\xaf\x25\x99\xc6\x40\xa2\xcd\xf2\xda\x96\x06\xf0\x0b\x2e\x67\xa2\x2e\xfa\xc1\x37\x8d\x01\x3e\xaf\x6e\xb8\x62\x7d\x87\xe1\x95\x54\x74\x51\xd3\x55\xbf\x81\xb6\xdb\xed\xc8\x75\x49\x96\x93\xe7\xd3\x3d\x8e\x4c\x1b\xab\xf6\xa5\xac\x7c\xd5\x3b\xcd\x7e\x6a\x68\xb5\x7b\x6b\x6a\x93\x8d\xc9\x73\xba\xa6\x98\xe7\xf6\xbb\xaf\x3e\x85\xd7\x95\x6d\xf4\xf9\x7b\x72\xda\x8a\x95\x05\x53\x67\x18\xac\x34\xb4\xd7\x15\xce\x64\x77\x86\x29\xf5\x40\xdd\xb7\x83\x70\x06\x39\xd7\x3b\x86\x1a\x86\xab\x5a\x30\xf5\x36\x9c\xf2\x1b\x27\x2f\x0c\x8f\xbc\x7a\xea\xfe\x27\xcb\x55\x1c\x7e\xda\xd9\xe5\xbb\xd6\x5f\xf4\x27\x07\xae\x85\x2f\x85\x93\xb1\xa8\x8e\x70\xdf\x4e\x69\xf6\x33\xdb\xa8\x31\x79\x32\x7a\xf2\x9f\xfb\x9b\x26\xfc\xcd\x66\x52\x5a\xd1\xfa\x03\x53\xeb\x92\xce\x98\x9d\x40\x9e\xbd\xdb\x4f\x9e\x32\xf5\x27\x35\xf8\x85\xed\x7b\xc4\x06\xde\x45\xbb\xca\x68\x72\x76\x91\x90\x13\x8a\x96\xfc\x17\x1a\xd8\xdf\xbf\xcc\xa8\xf0\xbf\x44\x97\x06\x03\xa5\x99\x05\x6b\x92\x13\x63\x8e\xb5\x46\x80\xd7\xfa\x6e\x5c\x4c\xfe\x49\xf8\xb3\xcb\xf2\x11\xaa\xcb\xa8\x50\xdb\x97\xd2\xd9\x9f\xe2\xa2\x85\x4e\xbb\x36\x11\x43\xbe\x5e\xdd\x68\xde\xf0\x90\x2a\xf9\x09\xde\xfa\x5c\x6f\xd6\xeb\x72\x07\x53\x0c\xcc\x65\x1b\x5b\x68\x3f\x4c\x4d\x15\x57\xd6\xc8\x86\x32\x62\xd1\x76\x5f\xd0\xce\xd7\xd5\xc1\x7a\x1a\xad\xca\xc4\x51\xbe\x00\x5d\x81\xa2\xbd\x5c\x12\x4a\x1c\xd7\xd9\xb9\x77\x3e\x99\x8c\xbe\xc1\x24\x03\x46\x65\x20\x0d\x53\x8b\x45\xb6\xb9\x5d\x20\x97\x72\x13\xa9\x12\xed\xab\x08\x4f\x36\x55\xed\x3a\xd0\x83\xe6\xc0\xc5\x7b\x01\x36\x3c\x28\x45\x7b\xe0\x2e\x24\x05\xf3\x83\x32\xf9\x6e\xd6\xe6\x98\xc1\x8f\xf6\xdd\xc9\xe7\x07\xff\x37\x00\x00\xff\xff\xb0\x4f\x43\xa3\x42\x2b\x01\x00" +var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x6d\x73\x1b\x37\xb2\x30\xfa\xdd\xbf\x02\xe6\x73\x2b\xa6\xf6\xc8\x94\xb3\xd9\x93\x5b\x97\x37\x8a\x23\x5b\xd6\xae\xce\xda\xb2\x8f\xc5\x24\x75\xca\xe5\xda\x05\x39\x20\x89\xf5\x70\xc0\x1d\x80\xa2\x19\xaf\xff\xfb\x53\xe8\x06\x30\x78\x9b\xe1\x50\x92\xb3\x67\x5f\xf8\x21\xb1\x48\xa0\x01\x34\x1a\x8d\x7e\x43\xf7\xc9\x6f\x1e\x10\x42\xc8\x39\x93\xb3\x9a\xaf\x15\x17\xd5\x98\x3c\x67\x95\xaa\x69\x49\xae\x57\xb4\x56\xe4\xb9\xd0\x7f\xcd\x14\x99\x8b\x9a\x5c\x3d\x3b\x23\x13\xb1\xbe\x5e\x0a\xf5\x00\x3a\x4e\x96\x5c\x12\x09\x0d\x67\xb6\xa1\xfe\x07\xe5\x95\x24\x6a\xc9\xc8\x4c\xd4\x8c\xcc\x37\xd5\x4c\xc3\xa6\x25\x57\x3b\x0d\x08\xfa\x1a\x60\x44\x43\x3b\x26\xb3\x9a\x51\xc5\x0a\x32\xdd\x91\x73\xba\x5e\xb3\x9a\xbc\xa4\x53\x69\x47\x61\x0d\xf8\x15\xad\xe8\x82\x21\xf4\x82\x2a\x4a\xa8\x94\x62\xc6\xa1\xf3\x96\xab\x25\xa1\x65\x09\x3f\xae\x4b\xba\x93\x84\x56\x05\x91\x4c\x49\x00\xa4\x96\x54\x11\x5a\x33\xb2\x91\xac\x20\x54\x12\xc5\x56\xeb\x92\x2a\x26\x61\x79\xba\xd7\x2b\xb1\x62\x95\x22\x57\x17\x13\x33\xf8\xcf\x4b\x56\x11\x4a\x2a\xb6\x25\x6f\x4a\xba\x23\x5b\x5a\x29\x49\x94\x20\x53\x46\x68\x51\xb0\x42\xff\x5b\xf7\xac\xd9\x4c\xd4\x85\x3c\x26\xb4\x22\x67\xc5\x8a\x57\x66\x4d\x38\xb4\x07\x41\xaa\x7a\x33\x53\x38\x19\x8d\x3e\x25\x6a\x56\x10\x5e\x01\x94\x10\x99\x23\x87\x80\xca\x03\x4b\x2d\x68\x80\x79\xcd\x94\x1c\xc1\x7f\x75\x37\xc9\xa5\x22\x62\x4e\x28\x59\x6f\xa6\x25\x9f\xf9\xa3\x01\x2c\xb7\x3d\xe6\x77\x5e\xcd\x45\xbd\xa2\x7a\x7f\x08\x9d\x8a\x8d\x22\x54\x23\xec\x18\x30\x47\xc9\xba\xe6\x37\x7a\xa4\x9a\x49\xb1\xa9\x67\x88\x3a\x44\xa6\x20\x2b\x5e\x29\x98\xc3\x0a\xb0\x26\xc9\x94\x6a\xc4\x8a\xf9\x5c\x4f\x01\x37\x00\x96\xb9\xa4\x37\x8c\x4c\x19\xab\x48\xc9\xab\x0f\x0d\xce\xae\x99\xb7\x44\x42\x61\x79\x6e\xa4\x25\xc5\x5d\x5e\x8b\x2d\xab\x75\x8f\x42\xc0\xe6\x8a\x39\x7c\xcd\x57\x6b\x51\x2b\x5a\x29\x42\x81\xba\x10\xcf\x79\x34\x9a\x5d\xd4\xf0\x25\xec\xa0\x06\x37\xd3\xc0\x2c\x6d\x4a\xdd\x13\x57\x6e\x48\x85\xed\xb0\x85\x5a\x32\x5e\x93\xa9\xa8\x6b\xb1\xbd\x66\xca\xf5\xd0\x20\x16\x4c\xa3\xab\x66\x73\x56\xb3\x6a\xc6\x2c\x5e\x00\x8e\x9d\x4a\x33\x09\xbd\x8d\xc7\x16\x72\x15\x8f\x2f\xcc\xcc\x99\x22\x1b\xc9\xab\x05\x62\xce\xc1\x36\x78\xba\xd4\xad\xb8\x5e\xc4\xee\x38\xb3\x52\xd8\x35\xae\x24\x29\xd8\x9c\x57\xac\x70\xd8\xd4\xeb\x53\x4c\x37\x01\x30\x70\x52\x16\x9a\x88\x88\x62\x74\xb5\x15\xf5\x87\x63\xf2\x97\x8d\x54\xa4\xe4\x1f\x18\x00\xbe\xac\x0a\x4e\x2b\x4a\xde\xd0\x19\xab\x25\x0e\xb6\x40\x8a\x56\x70\x78\x75\x47\x00\xa6\xc9\x4d\x23\x8a\xaf\xec\x2c\x01\xdd\x96\x28\xf4\x81\xd3\x94\xc2\x0a\xb3\x78\xfd\x05\xaf\xb8\xe2\xb4\xe4\xbf\xb8\x63\x6b\x8e\xde\xb9\x3e\xd3\x86\x68\x69\x85\xa4\xa6\x3b\xd4\x4c\x6d\xea\x0a\x39\x84\x9e\x0a\x40\xac\x47\x19\x0e\x41\x4b\x29\xcc\xfa\x25\xa1\xe4\xb9\x28\x4b\x86\x3b\x66\x91\x31\x42\xc6\xc5\x35\x7b\x20\x62\xfa\x17\xe6\x1f\x10\x76\xc3\xea\x9d\x65\x73\x9a\x11\x10\xb1\xad\x58\x4d\xb6\xbc\x2c\xf1\xb0\x9a\x9d\xe5\x35\xa1\xb3\x99\xd8\x54\xca\x9d\x07\xe0\x4d\xe6\x37\xdd\x73\xe6\xc6\xf6\x26\xba\xa2\xbc\x72\x9c\xcf\x82\x40\xf0\x30\x75\x38\x2c\x7a\x0f\xc5\xb6\xb2\xfc\xa8\x01\x64\xc8\x5c\x01\x09\x6d\x24\xd3\xe3\x2e\x45\x59\xb8\x1e\x16\xed\xcd\xc1\xab\x84\x22\x3b\xa6\xf0\x00\x4a\x86\xd4\x4f\x75\x67\x8b\xbf\x2b\xa1\xd8\x98\x9c\xc1\x02\xf5\x69\x9f\x2d\x69\xb5\xd0\x34\xd8\x90\x27\xcc\x6f\x4d\x2b\xcd\x32\xe6\x1a\x6f\xbc\xba\xa1\x25\x2f\x08\xad\x17\x1b\x98\x23\xc7\xa9\xad\x6b\x71\xc3\x35\x5f\x14\x35\x11\x15\xd3\xd4\xa1\xa7\xb6\xae\xd9\xe3\x99\xa8\x0a\x6e\xa8\xbd\x26\x6b\x21\x81\x70\xed\x57\xb4\x66\xd5\x23\x45\x56\x9a\x27\x68\x40\x17\x6e\x6c\x58\x4a\x21\xe0\x57\x51\xf0\xf9\xce\x4c\x13\xb7\x84\xaf\xd6\xe5\xce\xd0\x07\x79\xa2\x21\x57\xbc\x44\xba\xa9\x0a\xa2\x96\x42\x32\x32\xa3\x92\x49\x52\x31\x64\x3d\x53\xcd\x5c\xaa\xa2\x6c\xa8\x49\x9f\x45\x87\x8d\x4b\xe0\xcb\xb0\x17\x0d\x93\x51\x82\xd4\x6c\xc5\x56\x53\xcd\x8b\x2c\xad\xe8\xed\xfc\xbd\x28\x0b\x56\x91\x6b\x98\xd1\xcf\xb4\xae\xb9\xa8\x25\x99\x96\x6c\x4b\x28\xf9\xe6\xf1\xd7\xa4\x64\xd4\xb1\xf7\xdf\x3e\xf9\xfa\x5b\x38\x3c\x73\x5e\xd1\x52\x8e\x1e\x3c\xf8\xcd\xc9\x83\x07\x38\x8a\x5e\xf0\x82\x4f\x4b\x36\x11\x1f\x58\x45\xe6\xb5\x58\x91\x27\x1f\x2f\x7e\xbc\xfa\xfd\xe5\xb3\x97\x2f\x26\xaf\xff\xf8\xe2\xea\xec\xfc\xfc\xed\x8b\xeb\x6b\xdb\xe1\x4a\x54\xd9\x3e\x57\x17\x93\xa8\xe5\x2b\xa6\xa8\xbe\x2d\x7f\xe2\x6c\x2b\x6d\xb3\x57\x2f\x26\x67\xe7\x67\x93\xb3\x9f\x2e\x5f\xfc\x7c\x1d\x75\x30\xf4\xff\x52\xcc\x3e\x00\x1d\x60\x8f\xc9\xeb\x37\xd7\x7f\x78\x3d\x79\xf9\xfa\xf9\x1f\x2f\xaf\x7e\x1f\x75\xd1\xb0\xdf\x32\x29\xca\x1b\x56\xdb\x0e\x1a\xf4\xdb\x17\xd7\xaf\x5f\xfe\xf4\xe2\xad\x6d\xfe\x80\xce\x66\x4c\xca\x21\x2d\xcb\xa3\xe6\xd4\x9a\x01\xc7\xe9\xa2\x3e\x01\xaa\x4f\x4e\xc8\xe3\xfb\xf9\x58\x70\xf6\x88\x17\x6c\x5d\x8a\x1d\x90\xf0\x0d\xad\x39\x9d\x96\xe6\xce\xbe\xc7\x21\xdd\x98\x4b\x7d\x69\x2b\xcd\x6f\x83\xcb\x41\x13\x1c\xce\x43\x1f\x9c\x0a\xa9\xd7\x43\xd3\x0d\x67\x5b\x7d\x18\xc9\x15\x76\x1e\x1e\x8d\xc9\xb5\xaa\xf5\xd6\x7c\xb2\xa4\xff\xff\x7c\xba\x7a\x31\xf9\xf9\xf5\xdb\x3f\x7e\x26\x9f\x83\x01\x69\x51\xd4\x4c\x82\xd0\xb2\x5d\xf2\xd9\x92\xd4\x62\x47\x4b\xc5\x99\x24\x72\x29\x36\x65\xa1\x0f\x44\xc1\xd6\x42\x72\x65\x2e\xf7\xec\xd8\x6f\xa1\xdb\xee\x0c\xc1\xe9\x29\x98\x7f\x36\x73\x70\x24\xf2\xf6\xf5\xff\x9c\xbd\x9c\xfc\x8f\xd9\xf3\x68\x42\x6b\xaa\x96\x4e\x04\xd8\x4c\x19\x72\x00\x23\xde\xb8\xfb\x7f\xca\x4a\x81\x5c\xc8\x34\x3d\xf3\xb8\xed\xc9\x89\x59\xcb\xad\xb0\xd8\x0c\x0a\x63\x5e\x2b\x51\xd3\x05\x7b\x43\xd5\x12\x11\xeb\xfe\x6c\x56\x76\x22\xf1\xdb\x13\x43\x36\x11\x88\x66\x81\xf7\x45\x32\x11\x95\xba\x35\xbe\xb8\xd1\xec\xfd\x4b\x11\xe8\x8b\x15\x57\x20\x4a\x47\x62\xaf\xb9\x91\xb9\xb4\x92\x7a\x82\x5c\xa6\xe7\x05\x8d\x9f\x63\x8b\x21\x2f\xc6\xe4\xc7\xcb\x4a\x7d\xf3\xdb\x63\xcd\xd5\x81\x01\x8d\xc9\x27\xa4\x5b\x4b\xbf\x9f\x8f\x3a\x86\x96\xac\xd6\x54\xaa\x25\x41\xb8\xbc\x54\xcd\x17\x0b\x56\x23\xdf\xa6\x46\xa2\x6b\x99\xc9\x15\xdb\x5e\x43\xf7\x6b\x45\x6b\x3d\x9d\x8a\x6d\x9f\x6f\xea\x9a\x55\x0a\xbf\xb7\x93\x3b\x6a\x16\x0f\xa8\x05\x5d\xe0\x9a\xa9\xc7\x6f\x59\x09\x6a\x85\x2f\x5f\x9e\x9c\x74\x4c\x57\x8b\x87\x7b\x31\x74\xcd\x94\x45\x90\x64\xea\xf2\xbc\xc1\x91\x8c\xa6\xb5\x67\x4b\xf4\x1d\x65\x15\x10\xaa\xc1\x76\x6c\xc9\x99\x6e\x38\x11\xd7\x4c\xc5\x83\x6a\x29\xbd\xf9\xbb\x6d\x50\x3b\x60\xcd\x14\xd7\xe8\x07\xf6\x0e\x83\xc2\x25\x3b\xa3\x95\x16\x32\xa6\x46\xb3\x32\xaa\x41\xc7\x7c\xde\x22\x9c\x8b\x5a\xac\xf6\xce\xe9\x98\x54\x9b\x15\xca\x41\x7b\x91\x63\x76\xa0\x14\xb3\x0f\x5a\xdc\x5c\x31\x5a\x69\x06\xf2\x06\x54\x91\x66\x96\x80\xb7\xf6\xfd\x79\x09\xdd\xc3\x59\xb5\x8d\x68\x04\x34\x2e\x8d\x8c\xeb\xa1\xa6\x65\x00\xec\xf1\x0a\x5a\x0f\x51\x5a\xb3\xc3\x7c\xfb\xbb\x74\xf1\x19\x22\xa1\xe5\xd5\x46\x0b\x22\xde\xb7\x8e\x1b\xf9\x33\xce\xd0\x75\x23\x0d\x3f\xae\x0f\x21\xef\x95\x5b\xa6\x96\xd6\x8b\x9a\x6e\x2b\xbb\xd2\x06\x64\xcb\x82\x7f\x36\x3d\x1c\x43\xd0\xcb\xd4\x9d\xdd\x05\xf2\xb4\x0d\xbb\xcd\xb0\xee\x7e\xd2\x8a\x8c\xe8\x33\xec\x39\xf6\x08\x46\x55\xc2\x1f\x73\xef\x96\x16\x4c\xaa\x5a\xdf\x26\x9d\x5b\x79\x6e\x5b\x79\x43\xb5\x02\xf7\xee\xbb\xfd\xac\xc2\xb5\x75\x1c\x23\xb3\xcf\xc7\xa4\xa2\x2b\x66\xf9\x69\x37\xab\xed\x35\xa9\x50\x47\x97\x6b\x36\xe3\x73\x3e\x33\x8b\xdd\x3b\x55\xc3\x6a\xb0\x75\x86\xbe\xf3\x4b\xd8\xc3\x95\x7e\xa5\xcb\xf5\x71\xc9\x6e\x58\x49\xe6\x9c\x95\x85\x1c\x79\x22\x8b\x64\xd6\x70\xa2\x8f\xcb\x86\x96\xe4\x86\x96\x1b\x26\x1b\x93\x52\xb7\x19\xe7\x0b\xdd\xd6\x78\x91\xe1\x24\xc0\x2c\x70\x0d\x6a\x9e\x96\x9b\xb4\xb8\x37\x8a\xda\xe9\x1b\x43\x4f\x6a\xc6\xd6\xd6\xfe\x54\x15\x7c\x06\x06\x30\x4a\x16\xb5\xd8\xac\xb5\xba\x06\xb6\x24\xb5\xac\xc5\x66\xb1\x34\x5a\xbd\x81\xf3\x8a\x56\x3b\x63\x6a\xa2\x15\x61\x1f\xb9\x54\x44\xaf\x1f\x5a\x1d\x93\xe9\x46\x11\x51\x95\x3b\xd0\xfb\xf0\x36\x1b\xa5\x42\x18\xad\xc9\x2c\x77\x0f\xbb\x55\xfd\x64\xa4\x70\x22\xf9\x2f\x8c\x14\x1c\x8d\x87\xf5\x4e\xcf\xcd\x13\x46\xa4\x0f\x5a\xb2\x72\x8e\xb0\x35\xe9\x9c\x53\x45\xe5\x98\x7c\x42\xc0\x63\xe8\xf5\xb9\x17\xfc\x6b\xe6\x5b\x20\x5a\x86\x90\xd8\xc8\x1f\xc1\xf4\xeb\x3d\x48\x63\x98\x69\x1d\x42\x8e\xc9\x0f\x3e\xfc\x50\x86\xbe\x3c\x77\x16\x44\x7b\xe7\x1a\xa3\x20\x5c\x76\x23\x8f\xf7\xd7\x3b\xd8\x1f\xef\x1a\x37\x6c\xc7\x9e\x33\x20\x0c\x29\xf9\xa2\x32\xac\xe8\xe4\xc4\x9e\x7e\x2b\x6d\x3c\x92\x7a\x44\x54\xa8\x19\x70\x09\x5e\xcd\xb4\x42\x5c\x19\xab\xed\xd7\xf9\x9d\xae\xd8\x47\xf5\x26\x38\xcc\x3d\x57\x81\x66\xcd\x60\xf6\x19\xf1\xea\xe4\x04\x39\x87\xbf\x02\x7f\xea\x92\xa9\xbb\xcc\xfc\xda\xe7\x4a\xc1\xc4\x95\x50\xb4\xd4\x82\xc9\x94\xd5\x7a\x4b\x27\x62\xad\x95\x29\xe5\x1b\x90\x63\xdb\x67\x34\xf1\x67\x6c\x46\x37\x92\x61\x53\x7d\x9e\x40\x0b\x33\x57\xc9\x31\xe1\x8a\x14\x82\xc9\xea\x91\x22\x15\xd3\x53\xa3\x35\x2f\x77\x20\xd2\x34\x07\xde\xc2\xaa\xd9\x5c\x5f\x86\x68\x30\x8d\xe7\x06\x03\x70\x73\x5e\x59\x35\x63\xc6\xd4\x07\x48\xda\x84\x16\x8d\x93\x13\x6f\xc2\x46\xa2\x51\x82\x14\x54\xb1\x11\x39\x2b\xa5\x70\xb6\xf3\x45\x29\xa6\xb4\xb4\x37\xf4\xe5\x39\xca\x17\xba\x0b\xaf\x16\x79\x94\xc2\xc4\xae\x37\xeb\x75\xb9\xb3\xf7\xc1\xaf\xcc\xd9\x9f\x8b\x15\x8a\x11\x64\xb2\x5b\x33\xb4\x12\x72\x5f\xfc\xb9\xf7\x79\xc0\xdd\xa1\x2f\x08\x40\xf9\x6f\xbc\x11\x7f\x03\x08\xd3\xf3\xf0\x39\xb8\x9d\xb0\x05\xa0\x09\x57\xa8\x25\x73\xc6\x46\x69\x2d\x7f\x23\x03\xdc\x03\x49\x0a\x01\xd6\x3e\x73\x57\x39\x18\x78\x65\x99\x2b\x0a\x6f\x2e\xe4\xd6\x60\xc7\x93\x8a\x56\x33\x46\x86\xa2\x36\xc6\xd0\x23\x4d\x35\xc6\x76\xa7\x60\x0c\x98\xa5\x05\x67\x68\xd5\x73\xd9\x04\x33\xc7\xc5\x38\x3f\x43\x30\xea\x17\xbb\x09\x9d\x46\xa4\x65\x1d\xe7\x5e\x59\x8a\xb2\x90\x4e\x20\xf2\x5c\x45\xce\x86\x80\xa6\x67\x27\xe3\x5c\x3d\x3b\x03\x9e\x78\xdc\xd8\xc1\x4b\xb6\x60\x55\xa1\x39\xb7\x21\x75\x2d\x33\xd9\xfe\x6f\xe9\x8e\x9c\x95\x25\xab\xc8\x92\xe3\x81\xfa\x06\xd8\x0f\xc7\xbe\x7f\x60\x14\x15\xa4\xeb\xf5\xa6\x96\x9e\x11\xf0\x1b\x63\x00\x24\x0b\xba\x62\xe4\x5b\x0b\x4e\xd4\x28\x91\xbd\x84\x0d\xb9\x56\x6c\xbd\x64\x95\x14\x15\x9a\x13\x4d\x77\x46\xe1\x54\xbf\x64\xd3\x5a\x54\xe4\xbf\xe8\xaa\x41\xab\xbb\xa7\x3d\x26\x64\x0c\xcb\x65\xe3\x4a\xd0\x0b\xe6\xd5\xa2\x44\x1f\x19\x31\x6e\x16\xb4\x72\x8b\xb9\x85\xc1\x55\x83\xb9\x11\x9a\x6d\xd0\xa3\x56\x33\xe3\x3b\x2a\x77\xe6\x84\xf3\x69\xc9\x8e\x89\x14\x84\x56\x3b\x4d\x36\x33\x5a\x35\x8c\x89\x16\x68\xaf\x4f\x37\x21\xc1\x3e\x4c\xe7\xf2\xdc\x5f\x8c\xcf\x42\x8c\x0d\x02\xb6\x1a\x8d\x82\x1e\x43\xde\x54\xfc\xaf\x1b\xb8\x50\xac\x2b\x4f\xb7\x73\xad\x7c\x38\x25\x53\x91\x80\xf9\xc0\x87\x76\xad\x09\x56\x3a\x3f\x62\x33\x71\xf0\x8e\x59\xd7\xa2\x46\x1b\x88\x09\x5a\xbf\x5c\xd1\xf5\x9a\x57\x8b\x70\x4e\xe8\x61\xd0\xc7\x11\xc8\x48\x54\x0b\xa2\x58\xbd\x22\x5b\xba\x03\xe7\x80\x03\x0c\x3b\x34\xb5\x22\xe4\x88\x5c\xea\x3b\x8b\x82\x73\x52\xd4\xb4\xde\xf9\x60\x67\xa2\x32\x68\xd8\x2e\x79\xc9\xc8\x96\x91\x39\x5f\x6c\x6a\x46\xd0\x75\x37\x65\x4a\xb1\x1a\xc6\x40\x8f\x99\xdb\x42\x0f\x4a\x2b\x56\xda\x55\x87\x06\x43\x9a\xd7\x0c\x3b\x74\x0c\x6f\x6b\x08\xb8\x03\x58\xf4\x8d\xfe\xb8\x59\x95\xac\x5a\xa8\x25\x79\x78\x4a\x9e\x8c\xc9\xe0\xca\xda\x36\x1c\x6e\x1a\x9d\x9d\xad\xd6\x6a\x37\x08\x20\x7d\x0e\xfe\xd2\xc2\xd3\xc8\x08\x34\xa7\xf6\x02\x18\x35\x02\x48\xda\xd8\x8d\x72\xea\x06\x7c\xd0\xc0\xf6\x10\x66\xb6\xd3\xb9\xfe\x38\xba\xd3\x2a\x63\x7d\x99\xd2\xd9\x87\x39\x37\xf4\x02\xf3\x87\x23\x2b\x66\x1f\x66\x4b\xad\x32\x18\x3a\x5f\x89\x5a\x73\x6b\x45\x79\x69\x38\x90\x85\x5e\x34\x0e\x78\xeb\xde\xd4\x60\xf0\xd8\x4d\x59\xc5\xe6\x1c\xbc\xba\x4b\x7a\x83\x9e\x41\x16\x74\xe1\x56\x0f\xc1\xe3\xb7\x15\x9b\x32\x84\x3f\x65\x04\x64\x51\x25\xc8\x87\x4a\x6c\x51\x45\x51\x02\xa5\x51\x37\xe9\x82\xd7\x6c\xa6\xca\x1d\x2a\xf6\x17\xa5\xd8\xc6\x84\x62\x59\xfc\x11\x58\x51\x37\x6b\x2d\x16\x4c\xe8\xa2\xe4\x15\x1b\x2a\xfc\xbf\x25\x84\x23\x7b\xb6\xa2\xdd\x0f\x10\xff\x6e\x60\x7a\x0f\xde\x93\x53\x62\x20\x3c\x08\xda\xdb\x7d\x74\x62\xfd\x3b\x6f\x9f\x75\x2f\xfd\x67\xd0\xc3\x18\x6c\xbd\x66\x0f\x42\x82\x69\x04\xe9\x33\x2b\x53\x1a\xed\x47\x23\xd7\x28\x19\xbe\xf4\x26\x66\xb3\x8d\xa7\xdc\xd5\x8c\x96\x64\x2b\xea\xb2\x11\x96\x75\xd3\x15\xfd\xc0\xc8\x66\x0d\x0e\x61\xb4\xac\x38\x8d\xca\xba\xef\xa6\xa5\xbe\x78\xe1\x6a\xd1\x02\xbe\xfe\x69\x4a\x25\x9b\xd2\xb2\xf4\xae\x80\x57\x74\xc1\x67\x64\x46\xeb\x42\x8e\xc8\x19\xee\x4d\xa3\x6f\xf1\x8a\xac\x36\xa5\xe2\xeb\x52\xab\x15\x73\xe0\xe9\x0a\xc0\xc5\xb7\x80\xd5\x65\xb8\xe1\x54\xf9\xa8\x03\x8a\xea\xae\xa5\x84\x44\x67\x3d\x73\x3c\x9d\xfc\x75\x03\xd2\x38\xb6\x92\xe0\x16\xf3\xc2\x07\x9c\xb4\xd1\x44\x11\x68\xd9\x60\x46\xcb\x52\xe3\xf5\x86\xd6\x5c\x6c\x24\x59\x00\x87\x02\x1b\x9d\x7f\x13\x53\x64\x93\xac\x4a\x67\x42\x5e\x6b\x9d\x52\xb9\x08\x01\x1b\x18\x40\xa7\xbc\xe4\x6a\xe7\x69\x2c\xc6\x3b\xa8\xb5\x54\x38\xd7\x66\xc3\x6c\x10\x83\xaf\x77\x8d\xf6\xdc\x32\x16\x79\xc1\x45\xf3\x63\x72\xc9\x58\x33\x5f\x0c\x45\x73\x53\x99\x6a\x0f\x06\xce\x95\xbe\xf5\xcd\x32\x7d\x08\x27\x27\x84\x7d\x1c\x91\xc1\x84\xaf\x98\x44\x51\x40\x37\x99\x88\x5a\x54\x4a\x90\xb7\x74\xad\x44\x2d\xc9\x6c\x29\x3e\x34\xe4\xa8\x69\x5c\xcc\xe7\x72\xd0\x3a\x11\xdf\x3e\x14\x5e\x75\x7d\xec\x07\xe4\x1e\x6d\x08\xe4\x6e\x76\x84\x3c\x96\x53\x23\x02\xb1\xf7\x94\xbf\xf2\x7e\x37\x93\xee\x61\x6f\xa5\xef\xdd\xa5\x74\x6d\xb0\x78\xf0\x7d\x84\xda\x69\x78\x1d\x81\x56\x99\x36\x05\xf8\xa7\x30\x4c\x0e\x0e\x60\xbf\x01\x14\x98\x50\x5a\x19\x9c\x63\x6f\xce\xab\xa6\xb4\xde\x13\x4a\xe8\x9a\x88\x1a\x47\xbf\x12\x84\x16\x05\x48\xad\x35\x5b\x89\x1b\xe6\x8b\xd8\xd2\x1a\x7d\xa5\xb1\xfc\x43\x08\x90\x31\xce\xc7\xfc\xe7\x32\xe1\x34\xf6\x20\x22\xc7\x89\x02\x64\xb4\x00\xe9\xeb\xa1\x2a\x0d\x09\x72\x61\x33\x46\x38\x5d\x8a\x22\x19\xb5\x89\x24\x9a\x81\x87\xa8\xb0\xec\xdc\x78\x49\xec\x30\x2e\xda\x46\x37\xf3\x97\x11\x30\xf5\x46\x68\x86\x3f\xf5\x59\x6b\xa4\x29\x33\xda\x2b\x3f\xe2\xa2\x89\x76\x01\x1f\x15\x8c\x68\x05\xbc\x52\xeb\xdf\xa0\x3c\xfb\xbe\x4d\x7f\xbd\xba\x35\x5e\x26\x08\x82\xab\x63\xdd\x7c\xcb\xb4\x0c\x2f\x9b\xab\x9a\x7b\x33\x4b\x30\xd0\x84\x89\x41\x0c\x03\xfa\x6c\xfc\xed\x33\x23\x35\xfe\x11\x87\x0f\xe3\xdf\x09\xb4\x2a\x0d\xa8\x12\x20\xc0\xb2\x1a\x2f\x44\xbb\x62\xdf\xe5\xc1\x55\xb2\xff\x73\x6f\x0f\xb5\x34\x24\x9b\x91\x2b\x81\xe2\x90\xf3\xcc\x04\xf1\x74\x7a\xd9\xd3\x8d\x0a\xd5\x19\x6c\x26\x95\x41\x26\x8e\x9d\x19\x13\xd7\x70\x56\x96\xc3\x23\x20\x51\x3d\xb2\xfe\x67\x6d\xc2\x3c\x0a\x90\xd7\x1e\x2b\xf1\x58\xff\xff\x38\x46\xbf\xd6\x64\x4b\x61\xe3\xd8\xe6\xa2\x66\x37\x5a\xf9\xae\x0a\x2d\xca\x2f\x41\xda\x17\x35\x73\x06\x1b\x10\xb8\xb4\x7c\x67\xd7\xef\xf3\x27\x47\xb8\x1a\xf0\x9e\x9b\x44\xde\xea\x26\x39\xab\x6b\xba\x8b\xa2\xed\xf4\x4a\x29\x59\xd3\x5a\xe1\x1d\xa3\x0f\xa1\x0d\xaa\x31\xdd\x4c\x54\xe3\x3a\xf6\x23\x9a\x89\x1c\xc3\x01\xbb\x3c\xd7\x97\xb5\x24\x74\xbd\x46\x51\x77\xc9\xea\x90\x8f\x1b\x13\x5e\x21\x18\x2a\x3a\x0b\xb8\x60\x35\xd3\x28\x2c\xa5\x69\xe8\x30\xc7\xbc\x27\x31\xe1\xeb\x8d\x88\x69\x8d\xb9\x72\x4c\xde\xe1\xca\xdf\x3f\x08\x2f\x91\xb5\xb3\x08\x5f\x9e\x9b\xb5\x5f\xba\xcb\x88\xcf\xdd\x68\x55\x73\xb9\x99\x6d\xf3\x89\x27\x44\x49\xde\xb5\x0a\xe6\x38\x2e\x41\xd1\xc3\xaf\xe7\xb4\x94\x8c\x0c\xf5\xaa\xcd\x52\x8e\xba\xc0\x99\x36\xc7\x38\x13\xdc\x11\x40\x78\xbd\x61\x91\x0b\x15\x82\xaf\xf6\x62\xc6\x00\xf4\x4c\xd0\xcf\x84\x28\x03\xad\x25\x44\x86\x4f\xdf\x78\x77\x94\x3b\xe3\x28\xcd\x4d\x3c\x34\xb6\xda\xf5\x6f\x2a\xec\xe1\x77\xd0\xb3\x7f\xe3\x4c\x03\xb4\x2c\xc5\xd6\x85\x59\x79\x27\x3a\x37\x88\x0c\xdd\xb5\x59\x37\x6d\xd0\xef\xcc\x6d\x62\x05\xc7\xb2\x41\x17\xd2\x1b\x42\xd2\x03\xda\x99\x1e\xfb\xdd\x51\x71\x9a\x71\x69\xe2\x37\x75\x13\xbb\x56\x98\x09\x58\x65\x82\x11\x2f\xe7\xa9\x5b\x39\x3b\xcf\x86\x63\xed\xe7\x5a\x38\x59\x00\x13\x4e\x8f\xaa\x46\xca\x77\x01\xb2\x39\xae\xa0\x49\x00\xa7\x83\x1b\x1f\x9f\x0c\x5f\x95\x69\x4e\x47\x23\xaa\x79\xb6\x5f\x31\x0f\x6e\x3e\x7f\x2e\x89\x29\x58\x33\x2b\x67\xae\x41\x34\x78\xa7\x2b\xb7\xc5\xb1\x7f\xdc\x9c\x00\x30\x07\xa6\xe1\xcf\xa6\xb5\xb9\x14\x0d\x24\xb9\x14\x5b\x8c\x21\x2c\xe9\x8c\x79\xa8\x39\x26\x6c\x31\x22\x5f\x7f\xa3\x97\xf0\xed\x93\x3d\x07\x06\x57\x8b\x6e\xf7\x37\xac\xd6\x93\xf7\x0e\x0f\xfe\x3f\x36\x73\x74\x89\x8f\x87\x8a\x77\xc8\xa0\x4f\xc9\xbb\xf7\xe9\x6f\x36\xac\xe2\x94\x7c\xca\xc8\x90\x86\xa8\x4f\x91\xe7\x64\x04\xc7\x74\x65\x08\x29\x68\x7a\x72\x42\xd0\x8b\xdc\x04\xab\x80\x82\x83\xf7\x8f\x61\x8f\x10\x2e\x8f\x31\xae\x40\x83\x8d\x6c\x86\xd1\x4f\x59\xd5\xdc\xba\xc3\xde\x35\x28\xd1\x8a\xb9\x19\xc0\x20\x51\xff\xf7\x28\x6f\x5d\xd1\xe7\x07\x26\x4d\x8b\x42\xda\x5b\xa9\xb9\x8c\x72\x86\x2b\x2d\x9b\xd0\x9a\xae\x98\x56\x25\xc7\xce\x9a\x67\xee\x23\xdf\xa8\x61\x15\xde\x29\xd3\x27\xa2\x09\xfc\xc8\x00\xac\xd9\xe3\xe7\x2e\x1c\x75\x1c\xdf\x73\x00\xad\x62\xac\x70\xd1\xff\x46\x73\xd1\x70\xd7\xbe\xad\xd1\x74\x00\x9d\xc1\x6b\xaf\x99\x45\xca\x3d\x1d\xe8\x19\xad\x1e\x99\x13\x47\xcb\x9a\xd1\x62\x87\x27\x2f\xb8\x9b\xaf\xf3\xe8\xf0\x39\xc3\x7c\x53\x59\x84\x0e\x23\x37\x7a\x2f\x05\x28\x35\xb8\x58\x5b\xcb\xc3\x53\x52\xf1\x72\x4c\x06\xcf\x91\xf3\x69\xd9\xba\xc1\xb3\xd0\x93\x1b\x1b\x4b\x92\x71\x5c\x01\x7e\x46\x83\x64\x8c\x87\x1e\x5d\xa7\xf0\xfc\xfd\x07\xa2\x9c\x2b\xe6\x64\xa4\x26\x18\xcc\xdc\x5d\x29\xf4\xb6\x43\xe1\x16\x72\x6a\x17\x62\xad\xda\x00\xd4\xc3\x7a\x91\x48\x44\xa3\x58\xd3\x8b\xcf\xd6\x59\x84\x0c\x90\x7c\xad\x70\x16\x72\x7a\x12\xb0\x84\x11\x8a\x57\x66\xaf\x8e\x12\xc0\xaf\xd7\xc6\x0a\x00\x90\x37\x6b\xdf\xcd\xd6\xca\x49\x9a\xa5\x1a\xa6\x11\x43\xbd\x74\xf1\xf7\x3e\xdf\xc5\x50\x74\x25\xc8\x2f\xac\x16\xbd\x18\x8d\x37\xd0\x93\x70\x10\xb6\xe2\x6d\xb1\x67\x0d\x9f\x68\x22\x3d\xec\xf2\x33\x18\x6e\x38\x84\x44\x16\xe1\xec\x5f\x4e\xb3\xeb\x38\x1b\x59\x56\x21\x2d\xaf\x90\x3e\xb3\xf0\xe4\xe7\x3c\xbb\x88\x29\x0d\x3f\x14\xde\x11\xc0\x66\x1f\x70\x38\xe5\xd0\x4d\xc5\x8a\xb7\xf1\x01\xd5\x3b\xbd\x36\x12\xac\x69\x9c\x39\xb0\x80\xcd\xf8\xc4\xeb\xff\x1f\xb5\x18\x27\x42\xd4\x22\xc5\x00\x71\xe1\x3f\xa5\x15\x5b\x7d\x5d\xd1\x69\xcd\xf8\xf2\xe0\x91\x6a\x1e\xff\xa4\xc2\xc3\x9d\xd9\xb4\xaf\x86\x66\x40\xf6\x60\xd4\x5c\x7a\x0a\x10\x73\x77\x9b\x27\xae\x93\x21\xbd\xa1\xbc\x04\xbb\xb8\x77\xa4\x8e\xf6\x3a\x4a\xf4\x1e\x36\x48\xbb\x15\x8f\xcd\x1e\xd5\x98\xbd\x1a\xbd\xdd\xa2\x28\xc7\x5a\x9d\xf0\x25\x99\x7a\xd8\xc9\xa1\xf8\xdc\x30\xdd\x68\xd4\x87\x7d\x67\x77\x0a\xaa\xca\x83\xa4\xb1\x3b\xe6\xf9\x90\xce\xf6\xa3\x1e\x86\x75\xee\xe3\x2f\x0f\x0f\x21\xe6\x33\xf0\x76\x1a\x5a\x0e\x9e\x03\x36\xb2\x63\xa0\x55\xe8\x0b\x66\x4b\xe1\xf5\x5e\xd5\xf8\xbd\x1d\xa5\x20\x6f\xb0\x56\x1c\xeb\x49\xe9\x73\x00\xf2\x74\x83\xb6\x89\xf6\xb3\xee\xc9\x8b\x9d\xbb\x73\xcb\x13\x6f\x0c\x22\x81\x45\xc6\x9d\xef\x7d\x86\x99\xdb\x9d\x49\x18\x01\xdf\x1a\x18\x9d\x29\x92\x84\x62\x44\x99\x39\x7e\xca\x13\xb1\x91\x88\x5b\x90\xe3\xe4\x65\xa0\xd8\xb8\x09\x10\x6c\x12\xe4\xdb\xd0\x69\x3f\x1c\xea\xcd\x37\x97\xa6\xfe\xa7\x34\x42\xb5\xf9\x0a\x8d\xa7\x6a\x53\x1b\xeb\x6a\xc5\xb6\xe5\xce\xea\x50\x5e\x1c\x65\x06\x8f\x07\xb0\x4b\xef\xe2\x6e\x8c\x81\x77\xe0\x99\xab\x8d\x4c\xd5\x4f\x58\xcb\x34\xd0\xeb\x7b\x72\xfe\xb7\x88\x00\x9c\xff\xd5\xc5\x04\x27\xbd\xa5\x56\x13\xec\x73\x5e\x1a\x34\xc7\x7c\x76\x4c\x7e\xd0\x30\xef\x8d\xdb\xc2\xa2\xc0\xdf\x0f\xc3\x8d\xd1\xe3\xbb\xee\x2f\xcd\xc6\x8c\xb5\x15\xb4\x67\x19\x5b\x03\x5f\x6f\x46\x72\xb2\xad\xb5\x8e\xed\x93\x3a\x7f\xcf\x54\x8b\x2e\xdf\xa1\xc0\xc3\xd0\x41\x74\x04\x71\x1e\xb4\x8d\x64\x68\x68\xe6\xd2\x40\x7a\x24\x4d\xcc\xb9\x19\x23\xe8\x04\xde\xa5\xcd\xea\xb2\x32\x4a\xe7\x5e\x36\x9e\xac\xe0\x95\x45\x4e\xf3\x8e\x38\x1d\x81\x6d\x5f\x99\x5d\x81\x4d\xff\xee\xb1\x8d\x12\xbc\xba\x98\x0c\x33\xfb\xed\x87\xc8\x37\xd3\xfb\x0f\x43\x3b\xc3\xaf\x8f\x8e\x93\x4e\xd1\xe5\x94\x01\x1a\xdf\x67\x69\x93\x20\xb2\xf9\x49\xf0\x7b\x2a\xd7\x5f\xda\x28\x44\xe3\x04\xd1\x92\xb7\xb7\x7d\x7b\xf7\xab\x87\x44\x9e\x5d\x7a\x38\x11\xe3\x2c\xff\xee\xb1\xc3\x71\x0b\xc3\x9b\x52\x35\x5b\xbe\x4a\xb8\x9e\x96\x7b\xa7\x5c\xd5\xb4\xde\x91\xbf\x6e\x68\xa5\xb8\xda\xb5\x58\x94\x22\xa6\xb8\xc2\x08\x9a\x28\x8c\x9f\xf4\xe2\x88\x6a\x2f\x47\xf4\x9f\x1d\xbb\x94\x03\x24\x15\xe2\xed\x9c\x91\x4b\x65\x56\x60\x94\xf7\x76\x96\xe5\x73\x3a\xef\xad\xb1\xf7\xac\xb8\xf1\xb4\x59\x61\x24\x38\xa3\x5b\x56\x77\xc1\x8f\x59\x62\xb4\x11\xc3\xf8\xbd\x48\xb3\x22\xf3\x12\x61\x4c\x7e\xf0\xe6\xf5\x29\x77\xba\xbc\xdf\x9b\xb3\xd5\x7c\x39\x8c\x88\xe6\x86\xd6\x84\x5b\xf8\xa0\xf9\xf9\xbf\x62\x60\x12\x27\xdf\x35\xe8\xcc\xb8\x59\xfd\x41\x47\xe6\x71\xc7\x50\x89\x0f\xac\x1a\x93\xef\x1e\x63\x94\x48\xba\x48\xa3\x25\x1e\x25\xf0\x38\x39\x25\xdc\x90\xf9\xb7\xbf\xd3\x64\xee\xff\xfa\xb9\x85\xe8\xc3\x69\xec\xbd\xea\x7f\xe6\x6a\xe9\x3d\x95\xc8\x5c\xfc\xe0\x09\x6a\xf8\xc0\xff\x12\x41\x20\xc0\x54\xc8\xa5\x42\x90\xde\xcc\xf5\x4a\x78\x45\x5e\x98\x3f\xff\xf5\x04\x8e\x70\xb3\x93\x63\x96\x7d\x71\xf5\x6f\xa1\xe4\x6e\x42\x49\x83\xd4\xfb\x11\x4d\x1a\x78\x6f\xd9\xdc\x33\xd3\x9b\x50\xea\x91\xb1\x6a\x8f\x30\xbb\xc7\x77\x5f\x45\x8f\x7a\xbf\x1f\xe2\x2b\x35\xdb\xad\xeb\xd9\x70\xca\x92\x9e\x3e\xc5\x7c\x09\xc3\xc1\x95\x08\x78\x42\x18\xd3\xa0\xf5\x3d\x04\x34\x88\xd8\xac\x13\xae\x3c\x9e\x73\x1a\xae\x69\xb4\x60\xea\x2a\x94\x01\x3c\x9a\xbd\x8d\x10\xb3\x57\x0e\x0a\xe8\xde\xff\x6b\x8f\xbc\xf3\xeb\x08\x7a\x1e\xaa\x7e\x5d\x71\xef\x00\x4c\x1c\x28\xf9\xb5\x1c\x8a\x90\x0e\x68\x51\x4c\xc4\x3f\x02\x25\x84\xd3\x96\xcc\x70\x5b\xe9\x4d\xb6\x9a\xc3\xdc\x1c\x31\x8c\x78\x11\xf3\x5b\xff\xaf\xe3\xcc\x62\x12\xb3\xf2\xa1\xa2\xf3\x5e\x45\xa6\x87\x48\x4d\x0e\x94\xa9\xf3\xe2\xc5\x1e\x09\x3b\x16\x39\xfe\x79\x25\xee\x0e\xe2\xbb\xa5\x14\x23\xf7\x8b\x31\x7f\x4f\xd1\x7e\x8f\x04\x12\x0b\xfa\xed\x32\xc9\x3f\xba\xf8\xdf\x82\x08\x6b\x47\x6e\x67\x0d\xf7\xa6\x28\xec\xd5\x13\xb2\x69\x46\x16\x4c\xa1\xa7\xe7\xa8\xf1\xf1\x44\xc8\x88\x83\xd5\xe5\x21\xc0\x8d\xc9\x5d\x83\x0f\xa3\x80\x3a\x06\x89\x5d\x2b\x3d\x86\xb9\xda\xac\x02\x1e\x18\x8c\x67\x02\x27\x3a\x46\xcc\x70\x51\x6f\x74\x12\xc6\xab\x7a\x51\xea\xc1\xd1\x4a\x92\xbe\x79\x4f\x72\xa8\x8b\x12\x38\x39\x21\xcf\xd1\x62\xcd\xa8\xe4\xe5\x0e\x22\xd6\x39\x86\x62\xe2\x3b\x37\xc5\xa9\xb2\x4f\x28\xfe\xfc\xdf\x1b\x56\xef\x4c\x98\xc2\x9f\xcd\xb1\xb6\x70\x80\xad\x9a\x87\x16\xe0\x04\x90\x4c\x35\x6f\x93\x6c\x54\xde\x39\xbe\x1e\xb1\x02\xa2\x0f\xd0\x5a\x96\xbf\x76\xa9\x23\x1e\xc4\x48\x36\xa1\xe6\x7e\x2f\x0f\x8f\xdd\x41\x80\x6d\xad\x82\x58\xef\x76\x50\x41\xcc\x74\xd4\x2c\x7c\x4b\xed\x87\xdf\xb5\x36\x6c\x8b\x46\xcb\x92\x56\x1c\xba\xd4\x0a\xf5\x36\x21\x3b\x61\xd2\x8e\x83\x22\x1e\x24\x53\xf2\x9d\x09\x5f\x79\xe8\x87\x08\x48\xa6\x1a\x7a\x70\xf9\xcd\xfc\xc0\x47\xd0\xc2\x3a\xf5\x22\xb3\x83\xe4\x94\x0c\xbf\xca\x0d\x48\x25\xf9\xea\x9a\xa9\xa7\x47\x0f\x73\xdd\x22\x3a\xf3\x22\x6e\x54\x6a\x55\x0d\x22\x93\x64\x67\xb0\xb9\x01\x34\xda\x13\x74\x6e\x9b\xc9\x30\xda\x9c\xc4\xb1\x4d\x92\xa9\x51\xc3\xf4\xd2\x76\x4d\x9c\x93\x69\xe9\x38\x58\xda\xd6\x79\x71\x74\xd3\xc8\x5b\x44\xba\x43\x9f\x0c\xf0\x94\x6f\xfd\x0b\x72\xee\x18\x3d\x5f\x8a\x79\x67\xf8\x9a\x97\xd0\x31\x79\xae\xd9\x48\x6b\x2e\xe4\x3d\x88\x43\x59\x31\x8c\x55\xef\xc9\x0d\xdb\xc1\xf7\xb5\x92\x1d\xf0\x40\xd4\x44\x0d\x35\xa1\x88\x2c\x14\x2f\x9d\x7d\x22\x6f\x7b\x22\xaf\xd5\x92\xd5\x5b\x2e\x19\x3e\xc6\x33\x71\xfd\x79\x4b\x46\x8e\x73\xc7\xe9\x7f\xba\x38\x60\x2e\x9f\x50\x0a\xa1\x33\xb6\xb1\x85\x83\xb8\x97\x96\xeb\x96\xd7\x95\xfe\x40\x00\xa6\xf9\xb3\xf5\xfe\xf7\xf2\x72\xf2\xd5\xba\x04\x2d\x99\xda\x67\x91\x94\xcc\x36\x52\x89\x55\xf3\x3a\x14\x69\x5d\xd4\x2e\x9d\xe6\x28\x00\x04\x3f\x07\xcf\x5c\xd6\xfe\xe3\xd2\x7d\x4f\xc0\x0c\xb7\x35\xf9\x9a\xbc\x0c\x8a\x1d\x97\xf4\x7c\x53\x96\x57\xde\x15\xfc\xb4\xbd\x25\xaf\xa5\xea\xd7\xb4\xa4\x7d\x5b\x4e\x79\xad\x96\x05\x55\x7d\x9b\x02\x19\xef\x6f\xfb\x17\x56\x4b\xb6\xb3\x34\xb3\xaf\x75\x51\xd3\xb9\x9a\x30\xba\xea\xd9\xf4\x7f\x18\xed\x0b\xf5\x9a\x19\x19\xbc\x67\xfb\xb7\x62\x53\x15\xfb\xdb\x2a\x46\x57\x67\x66\xa3\xaf\x9e\x9d\xe9\xe3\x72\x48\x97\xfd\xad\xd7\x35\x5f\xd1\x7a\xf7\x46\xab\x39\xbd\x66\xbf\x64\x7c\xb1\xec\x01\x78\xdb\xb3\x1d\xa4\xde\xd0\x88\x96\x2f\x3e\xae\xf5\x2d\x5e\xf5\xd9\xf7\x6a\x4a\xaf\x19\x95\xbd\xd0\x4d\x15\x7b\x3d\xef\x8d\x8f\x92\xee\x9e\x53\xc5\x16\xa2\xde\xf5\x6b\x3d\xd9\xad\x7b\x4c\x78\x29\x56\x4c\x53\x5e\xbf\xd3\x42\xb7\x74\xd7\xbf\xb5\x85\x7d\x3d\x13\xf5\x01\xc0\x7b\x36\x47\xd1\x2a\x64\xcb\x5d\xad\x7b\x32\x84\xec\x7d\xd1\x85\xe7\x1e\x2a\x46\x4f\x45\xc4\x45\x77\x5d\x56\xc6\xfe\xd2\xac\x2b\xbc\xb1\x82\xbb\x23\xe1\xa0\xa1\xe5\x31\x65\x9b\xe1\xef\x09\xaf\x0c\x7f\x4e\x19\x64\xe6\xf7\x90\x2b\x86\x0d\xb2\xac\x30\x6c\x92\xf2\xbf\xcc\xef\x01\xd3\xcb\xfc\x9e\x72\xba\x4c\xa3\x90\xbd\x85\x0d\xda\x79\x5a\x7b\xbb\x96\x26\x6d\xdc\x2b\x6c\x15\xb1\xac\xf0\xc7\x6d\xd7\x8f\x9d\xcc\x29\x6c\x9a\x72\xa4\x08\x2d\x39\x36\x14\xad\x26\xc7\x7b\xd2\x26\x01\xc3\x89\x56\x9a\xe3\x32\x61\x93\x2c\x6b\xc9\x43\x09\x19\x44\x1e\x4c\x57\x9b\x2c\xe7\x88\x9b\x74\x9d\x89\x6c\x4a\xc9\x04\x1f\x9e\x0c\x19\xc3\x6e\xfb\xa9\x93\x05\xd8\x46\x59\xd9\xd3\x32\x01\x72\xea\xf8\x41\xa6\x91\x65\x05\xba\x95\xfd\x77\x46\x91\xa4\xae\x95\xfd\x67\xda\xc8\xf1\x05\x72\xda\xf0\x88\x96\x66\x28\xfb\x9f\x7a\xbc\x22\x6d\xe8\xb3\x09\x72\x1a\x70\x8d\xb4\xb1\x63\x18\xe4\xb4\x61\x1e\x2d\xcd\xf4\x31\xb1\xcd\xf4\xbf\x5b\x9a\x39\xf6\x61\xdb\xba\x2f\x5a\x3a\x00\x2b\xb1\x8d\xe1\x8f\xb4\x61\xc2\x52\xc8\x69\xca\x66\xba\xbb\x45\x3d\x32\x6a\x45\xc8\x6b\xb4\x7e\x11\x7e\x93\x76\x41\xc6\x43\x4e\x0d\x07\x4a\x1b\x6c\x6d\x83\x6d\x4b\x83\x1c\x03\xd2\x33\xcd\x7c\x9d\xb1\x41\x58\x96\x44\x4e\x1b\xf6\x94\xc1\xb2\xc7\x99\x4e\x03\x3e\x95\xd7\xad\x2c\x8b\x32\x1a\x96\xfd\x33\xdf\x18\xb2\x99\x9d\x3a\xbe\x95\xc1\x91\xc7\xb2\x34\xa6\xbc\x3f\xd3\xc6\x3e\xf3\x22\xa7\x01\x2f\x6b\x87\x0c\x2c\xca\x03\x0d\x7f\xb7\xc3\xb6\xcd\x83\xbf\xdb\x4c\x50\x81\x12\x69\xff\xcc\x6a\xac\x57\xce\xae\x95\x9f\x6d\x1f\xa5\x94\x1c\xa0\xe2\x76\x1b\xd9\x52\xfe\x87\x51\x79\xf1\xb7\x1d\xfa\xb0\x57\x7a\xc5\x24\x24\x58\xd7\x4c\x1a\x17\x53\x58\xaf\x86\xe4\xb5\x59\xd7\xff\xea\x62\x92\xa6\xd7\x1f\x85\x01\x2b\x27\x27\xe4\xf7\x98\xd8\xcf\x24\xd4\x72\xf9\xfd\x5a\x05\xbd\x26\xe9\x6d\x94\x46\x0b\x94\x68\xe7\xd7\x4b\x53\x2c\x65\x54\x08\x3a\xf6\xac\x46\x89\x5d\x23\x97\xf9\x78\x5f\xba\xe4\x9c\x4b\x2c\xba\x71\x12\x97\xbc\x49\x6d\xf8\xca\xa5\x36\x0c\x9a\x5b\x23\xac\x97\xcd\xd0\x33\xcd\xfa\xdf\xfa\x5e\xa6\x94\x3a\x78\x91\xef\x96\xc4\x0b\xa0\x85\xcc\xcb\x44\x86\xf6\x89\x2c\x8b\xa1\xe4\xd4\xc3\x60\x13\xdd\x9e\x7d\x80\x11\x62\xd4\xff\xeb\x28\xf3\x96\x2b\xc8\x5b\x1d\xfc\xac\x3f\x4d\xa2\x5f\xb3\xb8\xbb\xc5\x5c\x14\x68\x6e\xce\x07\x5e\x44\xd3\x6e\x9a\x37\xdf\xdf\x21\x5c\xc1\xfe\x2b\x7a\x4b\x3f\xf7\xcf\x9b\x9f\x1b\xfa\x18\xd1\x43\x2b\x93\x0a\x59\x09\xf7\xce\xda\x07\xa0\x04\x11\x1b\x25\x79\xc1\x88\x98\x4a\x56\xdf\xb0\x5a\xba\x27\x55\x2e\xc6\x2a\xcc\x38\x4d\xb2\xb9\x96\xdf\x9a\x03\xdd\xe4\x9d\x0e\x56\xd0\x9c\x47\x1b\xc7\x10\x6f\x46\xee\x24\x91\x53\xd2\x0b\x95\xe1\x79\x0b\x7b\xe5\x36\x36\x38\x8f\x76\x42\xcd\xee\x36\x62\xe0\x1e\x6b\x76\x45\x57\xcc\xaf\x7a\x11\x2a\x7d\x19\xcb\x9b\x77\xb8\x8c\x35\xff\x15\x53\x54\x9f\x8a\x67\xbb\x0b\xce\xca\xc2\xf9\x91\x93\x05\x60\x7e\x9a\x31\x19\x5c\x18\x98\x83\x23\xf2\xf4\x29\x19\x0c\x92\x41\x63\x45\xe1\x3e\x06\x7d\x63\x60\x66\x07\x35\xb6\xf9\xac\x50\xac\x3f\xa3\x99\xa8\x66\x54\x0d\x07\x64\x90\xfa\xbe\xed\x8f\x76\xd6\x6d\xb4\x3e\x89\xf2\xcb\x09\x9f\xf6\xe3\xec\x08\x90\xa0\x0a\x33\xb7\x91\x75\x2d\xd6\xe8\x0b\x93\xc7\x10\xaf\x07\x69\x79\xe3\x7c\x75\xff\x3f\x61\xa5\x84\x34\x4f\xbc\x2c\x92\x64\x76\x58\xfc\x0a\x92\x90\xe0\x6d\x7f\x6c\x8a\xb8\x79\xe6\xf1\x96\x9c\x08\x96\x56\x3c\x70\xad\x24\xe3\x62\x3b\x08\xa3\x75\xb9\xb3\x19\x32\x4c\x0e\x3a\xcc\xdc\x58\x3d\x86\x24\x4f\xe1\xe9\x9a\xa3\x3d\xcd\xb4\xbb\x87\xfd\xb6\x29\xf0\xe2\x6b\xc9\xdb\x6e\x9b\x19\xcf\xff\x29\x8d\xbb\x7c\xd6\x8d\x4f\x38\x42\x16\xa9\x06\x91\x19\xdc\x26\x34\x1e\x29\x8f\xe1\x92\xaf\xf1\xc7\x61\x9e\x77\xb7\x1d\x9b\x90\x01\x39\xb8\x79\xfe\x33\x52\x02\x5b\x44\x5e\xc2\xd4\x6a\xd6\x32\x41\xcc\x91\xd5\x36\xc5\xa7\x1e\xfc\xf6\x03\x37\x38\xb3\x88\x4b\x43\x6d\xed\xb1\xf2\x27\xd3\x7e\xf8\x3a\x4f\xa6\xc1\x75\x57\xef\x95\x1f\x69\xee\x6f\x5c\x37\x5c\xff\x6e\xcf\x90\xd0\xc9\x09\x96\xff\xda\xac\xd7\xa2\x56\xac\x08\x7d\x2c\x49\x7d\x44\x5e\xcd\xca\x4d\x61\x03\x29\x9e\x6b\x51\x5e\xcb\x91\x50\x5e\xaa\xfb\x6c\x2e\x98\x82\x56\xe0\x59\xd5\x4c\xa8\xc5\xaf\xfa\x2e\x59\x8b\x6e\xfc\x5d\x50\xc8\x6a\x74\xce\xa5\x3e\x4d\xdf\x0f\x33\x11\x9e\xd0\xbc\xd5\x85\xd3\xde\x25\x1c\xe1\xad\x2d\x95\xd4\xb7\x83\x91\xe8\xfb\xb7\xff\xa8\x58\x5d\xd1\xf2\xc7\xb7\x2f\xfb\x76\xb9\xba\x98\x34\xc1\x48\x9a\xd7\xdc\xae\xe3\x3e\xdc\x85\x7d\xaf\x81\x82\xfa\xb6\x9e\xd4\x94\xab\xde\x38\x78\xc5\x0a\x4e\x75\xeb\xa0\xf1\xfb\x16\x3a\xad\xb1\xc6\x18\x5e\x2b\x40\x57\x2e\x36\x63\xc1\x6f\x58\x85\x29\xee\x2c\xc1\x5e\x5d\x4c\xb2\x04\x89\xaf\x71\x01\x92\x9e\xc4\xf0\x4f\x00\x6a\x0c\xd3\x3b\x1a\x93\xb3\x6a\x87\x0a\xcc\xd3\xd8\x3c\xb5\xe5\x6a\xb6\xc4\x71\x53\x7e\x3d\xa3\x26\x59\x76\x2b\xa1\x8e\x93\x3e\xa4\x21\xfa\x6c\xa7\x54\xd6\xb6\x1f\x8c\xf5\x71\xf1\x1c\x39\x6c\xdb\x4f\xe1\x97\x78\x45\x16\xe8\x5f\x92\xed\x1d\xd5\x72\xb3\x9a\x56\x94\x97\xe3\x68\x76\x7f\x98\x4c\xde\x5c\xf0\x92\x0d\x37\x75\x69\x40\xba\xb6\xb9\x70\x78\x12\x08\xd7\xf6\x73\x72\x42\x9e\xe7\x9c\xba\x46\xfb\x54\xc2\x65\x72\x8f\xdf\x7e\xa4\x28\xef\x3a\xec\x9d\x68\x6f\xed\xd8\x8e\xfa\x46\xda\xbc\x47\x21\xb3\x7d\x17\x3c\xaf\xc7\xdd\xc7\xb3\xb0\xba\x06\x6c\xdc\x28\x77\x1e\xef\x25\xdd\x3f\x9c\xe7\x96\xb9\xf3\x78\xcf\x2c\xac\xbd\x03\x1a\x3f\xcf\xfd\x8c\x08\xc0\xba\x86\x0c\x3d\x47\x77\x1e\xf4\xbf\x3c\x70\x5d\xc3\x7a\xde\xa8\x3b\x8f\x79\x6e\x61\xed\x1d\x10\xdd\x5b\xf7\x33\xa0\x86\xb5\x77\x40\xcf\x5f\x76\x3f\xa3\x3a\x80\x7b\x87\x36\x5e\xb8\xfb\x19\x16\x80\x75\x0d\x99\xf1\xeb\xdd\x5d\x05\x89\x61\xf6\x9d\xc0\x3d\x8f\xdd\x35\x6c\xe2\x84\xbc\xbb\xa2\x1d\x42\xec\x1a\xdc\xfa\x36\xef\x3c\xe6\x1f\x00\x50\xd7\x50\xdb\xfb\x1a\xea\xe7\xbd\x43\xe5\xfd\xae\x77\xdf\xd1\x0c\xd8\xae\x69\x78\x3e\xdd\x3b\x8f\x7d\x65\x61\x75\x9e\xda\xc0\x49\x7c\xf7\x73\xeb\x81\xeb\xa4\xe0\xc0\xf1\x7c\x2f\x76\x22\x0b\x6e\xdf\xb0\x68\xa3\xba\x47\xd3\x54\xc7\x51\x09\x9c\xe3\x77\x3f\x30\x1e\xb8\xae\x61\x43\x87\xfb\x9d\x87\x3d\xf3\xc0\xf5\x59\xad\x71\xd0\xdf\xdb\x72\x01\x5e\x9f\xf5\xde\xd7\xc0\x67\x3e\xbc\xae\x81\x43\x93\xcb\x21\x96\x96\x2e\x98\xa9\xb0\xb9\xc7\xb2\xd4\x3d\xc1\xc3\xdd\x03\xf6\xd3\x8a\xa9\xae\xc9\xf7\x72\x5b\xd8\x4f\x36\x2a\xc2\x5b\xf8\x55\xfa\x7b\x0b\x12\x8e\x5b\x67\xdb\x57\xfd\x6a\xd3\x57\x3d\x2b\x46\x5e\x73\xb2\x4f\x4d\xac\xd5\x6e\xc1\x94\xe9\x03\x9b\x96\x1f\x1f\x4a\xcc\xd0\x8f\xa1\x81\xee\x5e\x96\x4b\x9e\x3e\x8d\x9e\xa1\xf9\x63\x5a\x4f\x4f\x35\x17\xe4\x94\x64\x57\xea\x65\x29\x3d\x36\xf6\x34\xeb\x45\x19\xe6\x49\xe8\xe8\x58\xaf\x65\x0c\x0b\xfa\x9e\x3c\x21\x4f\x6d\xf3\x15\xfd\x78\x44\xc6\xa4\xe2\x65\x3b\x16\xcc\x8c\x5e\x72\xa9\xc6\xe4\x5d\x76\x46\xef\xc9\x29\x79\xe7\xcd\xfc\x7d\x7f\xc3\x81\xdd\xbd\x76\xf5\xd5\x1b\xff\x8e\x94\xe2\xec\x42\x07\x18\x36\xb0\x4f\xfb\xec\xba\xf1\x7e\xc7\x09\xfb\x16\xbd\x3e\x56\x81\x91\xb1\x12\x3d\x37\xa9\x70\xc1\x2e\x60\x7d\xea\x78\xaf\x56\xbc\x3c\x06\xb3\x85\xb9\x66\xbb\x07\x3d\xe0\x14\x06\xb6\xc1\x03\x10\xec\x75\x1c\xda\xe3\x89\x87\x4c\x7f\x73\xc0\x0c\x72\xa6\xc6\x5f\x0d\x69\xb9\xc1\x6f\x3b\xf5\x7e\xf6\xb7\x2f\x37\x7b\x37\x7e\xff\x05\x38\x1b\x6a\xe7\x94\xcd\xd3\x20\x98\x2f\xf6\x80\xd9\xf6\x1f\xc6\x19\x5f\x0f\xa0\x2f\xec\xd3\x7e\x80\x53\xe3\xbd\xff\xc9\xc0\x6a\x07\x65\x3f\x73\x5e\xb2\x56\x13\xe4\xde\xde\xfa\xd3\xd8\x29\x57\xac\xe0\x9b\x15\x5f\xd1\x45\xdb\x4d\xe5\x7f\x3a\x44\x0d\xfb\xd1\x00\x29\x52\xc2\x00\xc0\x9e\xfc\x65\xcd\x16\xa9\xa7\xe8\x00\xb0\x7f\x77\x24\xdd\xf0\x82\x89\xfb\x47\x0f\x80\x3d\x59\xad\x7f\xb7\x07\x3b\xad\xbf\xe6\xef\xc1\xb6\xac\x8d\xa4\x21\xe1\x8a\x97\xfb\x3d\x0a\x5c\x92\xab\x8b\xc9\x23\x49\xf0\x2c\xc1\x11\xdf\xe7\x3f\xf0\x8f\x5d\x8c\x7d\x03\x26\xf1\x3d\xcb\xb5\xa8\x95\x24\x35\x2d\x68\x0d\x16\x15\xc2\x8b\xc4\xbb\xc9\x3e\xce\xca\x4d\xc1\x0a\x2d\x52\xc9\x31\x79\x87\x6e\x4a\x10\x0c\x32\x26\x9b\xf7\xb9\x44\x3c\x6d\xd9\x43\xc2\xec\x38\x91\xcb\xd4\x7d\xff\x6c\x77\x75\x31\xb9\x3c\x1f\x9a\x28\x92\x34\x95\x89\xcb\x28\x1f\x16\x38\xf6\xf0\xa8\x10\x01\xe0\xa2\x29\xd8\x9c\x6e\xca\x4c\x24\x18\x31\x59\x05\xb0\xb1\x57\x54\xd0\xb9\x61\x3e\x93\xd3\x8c\xbb\x65\x70\xed\x29\x23\x83\xbb\x6a\x23\x03\xa3\x72\x24\x80\x0e\xd3\x43\x06\xd7\x9e\xb4\x32\xe8\xaf\x81\x0c\x30\x23\x69\x33\xba\xfe\x9b\x57\x8b\x11\x97\x26\x57\x69\x35\x57\x6f\xd9\x7c\x4c\xbe\xd2\x20\xe1\xc5\xf0\xa7\x5c\x38\xdf\xe7\xec\xa4\xdc\xa6\x0e\xfc\xe8\xa7\xa7\xf8\x12\xf8\xe9\x53\x32\xb8\x56\xb4\x2a\x68\x5d\x0c\x3a\x7b\x5f\x9e\x47\xfd\xfd\x48\xaa\x54\x0c\xcf\x27\x4a\x87\x67\x78\xae\x8e\x44\x42\x0a\x86\x66\x8c\x6a\xb1\xa2\xeb\x37\x26\x17\xfd\x50\x93\xd9\xd8\xfc\x9e\x4f\xbb\x12\x1e\x3f\xdd\x7e\x22\xf0\x10\x06\x9d\x8f\xe3\xc3\x15\xfc\xd9\xe6\x22\xbf\x70\x55\xb2\xa0\x0a\xf2\x5c\xd4\x64\x26\x56\xeb\x0d\xa4\x14\x08\x46\x0e\x33\xc8\x35\x2b\x20\x4b\x56\xae\xa5\x09\x7d\x11\x1b\x43\xf2\xba\x05\x66\xe0\x0a\x1e\x28\xfa\x30\x82\xe4\x66\x4d\x27\x2c\x2d\x59\x96\x4d\xb4\x8a\xa9\x5e\xef\x81\xc3\x54\x09\x41\x2a\xf3\x24\xed\x59\x82\xe3\xcc\x11\xd4\x5a\x4d\xee\x64\xa6\xb1\x58\x6b\x63\x82\x28\xc2\x67\xeb\x91\x71\xa2\xd5\x2a\x01\xea\x5c\x54\x09\x43\xe3\x1a\x48\xd5\xe4\x42\xb7\xe0\x47\x1f\x58\x36\x4d\xb2\x9e\x06\x16\x19\x39\x0d\xda\xbf\xd3\x40\xde\x67\x02\x3d\x08\x06\xf7\x60\x9f\x87\xa7\x64\x30\xc8\x40\xd5\x1f\x8d\x9f\x11\xaf\x24\xab\xd5\xf0\x03\xdb\x59\xa5\x11\x3a\xa6\xd7\xd6\xe7\xfd\x17\x93\x06\xd8\x42\x70\xbe\xdc\xde\x4a\x0d\x48\x82\xac\x20\xcc\x88\xfd\xfa\x16\xb7\x41\x5b\x51\xa6\xad\xb6\x98\x0c\x4f\x3b\x68\x09\x98\xb2\x81\x30\x4b\xa5\xd6\x72\x7c\x72\x52\x4d\xa9\x12\x6b\x09\xb5\xe8\xc4\xea\x04\xc7\x39\x19\x34\x11\x27\x70\x65\x78\xc1\x35\x6d\x87\x2a\x34\x1d\x34\xa9\xdd\xec\xdd\x84\xbb\x8e\x65\x07\x57\x53\x5e\xd1\x34\x26\x0d\x12\xc1\x61\xec\x37\xad\x8a\x38\x5c\xfb\xe4\x84\xfc\xd9\x59\x98\xfe\x0f\xfe\xf8\xe7\xbd\x18\x09\xcc\x19\x1d\x71\x87\x5f\x20\x3c\x8a\x79\xe8\x70\xb1\xec\x2e\x02\x68\x4c\xfe\xcf\xe0\x28\x40\xb3\x77\x74\xb2\xf8\xf6\xb6\xcf\x03\x9d\xdb\x8e\x2c\x32\xa8\x94\x4c\x61\x96\xbb\x9e\xb4\x01\x3d\xe4\x28\x26\x11\x2d\x06\xde\x86\x42\x6c\x0e\x2b\x0a\x84\xad\x04\x29\x50\x9d\x22\xb4\x22\x28\xcb\x13\xc9\x7f\x61\x05\x01\xd9\xbb\x7b\x31\x81\xec\xdf\xbd\x1c\x7c\xaf\x00\xd5\x39\x5e\x43\x9c\x04\x2d\x21\x35\x96\xf4\x42\x1e\x3c\xdc\xb8\x0d\x7a\xba\xe5\x85\x5a\x9e\xfe\xe7\xd7\xbf\x1d\x1c\x1d\xa3\xeb\xfe\x9c\x95\x7c\x35\x26\x83\xaf\x06\xad\x15\x2e\x92\xb5\x35\xa1\x17\x49\xcd\xec\xbe\x07\xdb\x0b\xc8\xf8\xa2\x4b\xfd\xed\x7f\x7e\x7b\xb7\xa5\x82\x56\x70\xeb\x65\x1a\x55\xe5\xcb\x2c\xf1\x04\xa0\x27\xcb\x7b\xda\xbe\x3c\x18\x43\x62\xe5\x7e\x33\x12\xa9\x98\xda\x8a\xfa\x03\x59\xeb\x21\xa1\x2c\x10\xa6\x36\x35\x2a\x84\x89\xef\x2f\x78\xfe\x75\x44\x73\x14\x5b\xe7\x8f\x4b\x0f\x27\xe9\x2a\x31\x67\xf1\xc2\xe7\x8e\x53\x5d\xe1\xec\x86\x47\xe4\xf4\x94\x0c\x14\x93\xaa\x62\x2a\x77\xff\x19\x5c\x6e\xea\xd2\xe2\xa7\x19\xaf\x41\x99\x05\xd0\x43\x29\xdb\xd4\x6d\x4a\x99\x55\x2d\x2a\xac\xb4\xea\x27\x60\x33\x19\x1f\x20\x2c\x08\x6a\xdc\x37\x89\xee\x08\x57\xb6\x1e\x0c\x14\x7b\xcc\x67\xd2\xd0\xa8\xc4\x34\x67\x2f\x34\x6c\x3f\xd5\xd9\x98\xfc\x90\x0a\xd5\x4d\x83\x96\x5c\x29\xdf\x3d\x6e\x0a\xb3\x66\xe1\x56\x73\xe5\x59\x8a\x7e\xb8\xba\x98\x7c\x1f\xf2\x3b\x12\x16\xa6\x86\x1c\xa1\x58\xb8\x59\x8b\xc9\xb4\x24\x74\xa3\x96\xa2\xe6\xbf\xe0\xf5\x17\x3c\x0a\xb2\xbd\x20\x65\xae\x5f\xcd\x5f\x09\xb2\x66\xf5\x5c\xd4\x2b\x2f\x73\x56\x50\xea\xd5\x54\x4c\x56\x4b\x57\xe6\xd5\xd6\x69\xa6\x7a\x60\x15\xd6\xc7\x39\x86\xa2\xbd\x18\x34\x1c\x56\x4b\x7d\x10\xa3\xd8\x4d\x10\x97\x12\xbc\x30\x42\x14\x61\xd5\x2b\xf8\xa7\xcd\xa2\x0c\x5f\x45\xaf\x5b\x4c\x1e\x43\x89\x55\xf9\xb9\x4b\x15\x8c\x05\x2a\x3c\xbd\x93\xdb\x62\xc9\x48\x18\x72\x45\x6b\xe5\x0a\x98\x79\xe0\x7c\xc8\x7e\xaa\xc3\xa6\xa6\xfd\x99\x0f\xd6\xd4\xf6\x6f\xe2\xd3\x14\x57\x25\xb3\x55\x87\x78\x4d\x62\x49\x3d\xff\x61\x1f\xe9\x6a\x5d\xb2\x31\xf9\x04\x5e\x54\x56\x13\xa3\x6a\x0e\xfe\xc8\x6e\x78\x45\xce\x37\x35\xad\xd4\xe0\xd8\x85\x08\x8c\xc9\xe0\xff\x25\x73\xc6\xd4\xe0\xf3\x7e\xe8\xf6\x33\x9c\xb2\x19\xdd\x48\x46\xb6\x90\x40\x19\x13\xcc\xf8\x03\x60\x60\xbb\x22\xdf\x3e\xfa\xff\xbc\xe3\xd9\x92\xf3\x30\x4c\xfa\xe8\x36\xc8\x4b\x94\x46\xba\x13\x1a\x36\x1b\x3d\x6c\xb0\xeb\x54\x08\xfc\xff\xe7\xb6\x4a\xf1\x0d\x0f\xf0\x47\x4f\x6c\x06\x15\xdb\x9a\xb4\x4f\xd1\x38\xf6\x5f\x69\xd4\x78\xc5\xb6\xf0\x6c\xcf\x74\xb5\x55\xe2\xe3\xd1\xc3\x47\x61\x97\xe7\x7e\x0d\x24\x0e\xc9\x97\x41\x0b\xa4\x0b\xca\x43\xe3\x8a\x5f\x0d\xf0\x8d\x7d\x43\x98\xf9\xb2\x35\x85\xa8\x2b\xaa\x83\x08\x28\x86\xbc\x18\x47\xb3\x3d\x26\xb9\x95\xc6\x4b\xb8\xf6\x6a\xf9\x85\xb5\x96\x3b\xea\xf9\xad\x5d\xe5\x37\x40\xd4\xfb\x06\x53\x59\x8d\x1b\x1a\xe5\x99\xf8\x09\x99\x30\xcd\x77\x68\xcd\xcb\x1d\x61\x15\x9d\x96\xac\x40\x34\x66\x5f\x98\xac\x6d\xbd\xe1\x29\x83\x22\xbd\x73\x5e\x96\x41\xee\xa4\x3e\x79\xd1\xd7\xa6\x02\xdb\x66\x5d\x84\x4f\xb0\xc2\xc3\x63\xde\x54\xe8\xd3\x2e\xf1\x7a\xc4\xbc\xa3\xb8\xa7\x32\x78\x0d\x62\x83\x89\xd7\x61\x99\xbf\x48\x0f\x0b\xa7\xd0\x7a\x28\x70\x5e\x10\x4a\x81\xe0\x93\xcc\x9e\x6e\x6a\xee\x02\xcf\x1e\x10\x78\x87\xb2\x5a\x1b\xea\x6f\xad\xdb\x97\x5c\xe2\x4d\x62\x6a\xf3\xc0\x35\x4a\x63\x97\x92\xd1\x8f\x30\x65\xb7\xb4\x47\x32\xfb\x22\xc5\xcc\x65\x84\x0b\xb4\x8b\x73\x8b\x31\xff\x48\xa1\x9b\x77\x38\x1e\xf4\xe8\x4d\x9e\x21\xb4\x48\xad\x0b\xc5\x05\x64\x35\x50\x1d\x36\xb8\x52\xfc\x9a\xff\xe1\x45\xe2\xf7\x36\xc7\x43\x6b\x2d\x8e\xe1\x47\xf7\xc9\x01\x37\x09\xfa\x92\x35\x49\x54\xad\x85\xfe\x5b\xb5\xf9\x86\x8a\x4c\xed\xdd\xd6\xca\xd0\x0d\x87\xbd\x66\x51\xad\xd2\xde\x2c\xd5\x9f\x14\x69\x38\xaa\xc6\x5a\x93\x0a\xb6\x01\x8f\x55\x3c\xbb\x19\x25\x3e\x8a\xbe\x0d\xaf\xbc\x6e\xab\xa6\xda\xce\x29\x23\x76\x7e\xcd\x94\x79\x57\x98\xf2\xd3\x6b\xa6\x2c\x3b\x35\xea\xb8\xdf\xe1\xd8\x25\xc5\xcc\x56\xd8\xdf\xcf\x5a\x03\xda\x01\x1b\x5c\x76\x9d\x90\xf3\xd1\xf0\xd5\xef\x1e\x3f\x34\x73\x38\x94\xb1\x12\xcc\x58\x8f\xc4\x6d\x95\x63\xaf\x56\xbd\xb0\xc5\x95\x03\x1a\x0e\xce\x4b\x54\x75\xdf\x2b\xd5\xee\xaa\xec\x9b\x0a\xfb\x44\x54\x1d\x85\xbf\x3c\xba\x37\x68\x6d\xc9\xef\xb7\x13\x1b\xb2\xa5\x49\x75\xdf\x05\x53\xd1\xdc\xf7\x9d\x92\xb3\x70\xa5\x76\x10\x67\x0a\x35\x03\xa3\x1d\x34\x96\x23\xed\x9a\xd8\xc7\xb5\x90\xfb\xd3\x32\x3b\xcd\xcb\x21\x3c\xca\x30\x3a\x86\xb4\x9d\x77\xcf\x33\x6a\xca\x32\xe0\x30\x58\x4a\xd5\x16\x4e\x0b\x4a\x3d\xf4\x28\xbe\x10\x93\x82\x5f\x58\xc3\x69\x49\x71\x3f\x2d\x34\xfe\xf9\xab\x3f\xfb\xaf\x97\x4d\x0d\xbc\x08\x92\xc9\x7e\xad\x81\xa9\x38\xd5\x84\x81\xde\x3b\xc3\x69\x48\xd3\x52\xd1\x5a\x5d\xe9\xf3\x00\x0f\xed\x40\x89\x06\x3e\x88\x07\xd1\x3e\xc0\x83\x5c\xbe\x86\xe1\xf8\x49\x6e\x4d\x7d\xef\xe8\x7d\xe3\x8a\xd1\x0a\xdf\xa9\x51\x15\xa7\xd8\xb7\x85\x65\x79\x40\x25\x50\xe7\x4f\xa3\xc3\xf2\xc8\x00\x62\x1f\x16\xde\xab\x53\xcc\xc9\xc3\xd5\x0f\x3b\x58\xf8\x8b\xaa\xc8\xe1\x05\x2f\x37\xad\xf4\xe0\xcd\x27\xa2\xeb\x59\x73\x8d\x10\x75\xa1\xbe\x94\x9d\xb0\x4f\xb7\x01\x43\xf4\xd8\x74\xf8\x7d\xb7\x50\xeb\x16\x78\xad\x67\xca\x8a\x61\xc5\xb6\xcf\xfd\xfe\xfd\xf8\x6f\x14\xaf\x11\x34\xed\x16\x10\xbc\xf2\x03\x46\x28\xb0\xf2\x02\x5c\x87\xee\xe7\x57\x74\x9d\x51\xb2\x7d\x12\xb1\xb2\xa2\x2d\x50\x13\x24\xe4\x6f\x00\xe5\xdf\x43\x7a\x77\x77\x58\x54\xc4\x4e\x2b\x29\x7e\xd8\x56\xbb\x44\xd2\x1b\xf6\xdd\x0f\x49\xe5\x12\xef\xf6\x0e\x7f\x1a\x1e\x1d\x13\x25\x0e\x2d\x6a\x12\x9d\xd4\x4c\xd9\x06\xa2\x27\x22\xc9\x76\xc9\x67\xfe\xf2\xfd\x57\xa3\x53\x56\x8a\x6a\x21\xdb\x59\x7c\x20\x44\xcd\x33\x97\x89\xff\x9a\xef\x80\x8a\x00\x07\x4c\x27\x84\xd9\x79\xa1\x1d\x54\x76\x29\xaf\xab\xdc\xa2\x98\x63\xc2\x37\x3a\x4a\x68\x74\x15\x06\x48\x52\xa5\xac\x3b\x0b\xd9\x86\x01\x03\x68\xd4\xf9\x47\x2b\xa8\x13\xcd\xbf\xbb\xfa\xc8\x5c\x75\xd7\x16\xf0\xca\x8e\x1c\x50\xc8\x3a\x3e\xf3\xb1\xb6\xe2\x1d\xa7\x7e\x66\x30\x8f\xd1\x64\x8c\x61\x11\x82\x1d\x92\x6e\xaf\xc4\x64\x0b\x8d\xf8\x9f\x7b\x32\xa3\xf5\x34\x48\x79\x08\x3b\xd4\x2c\xe5\xef\xb9\xa7\x3b\xf9\x86\x95\xbe\xa6\xaa\x7f\x86\xc3\x61\xdd\x24\xd1\x19\xc9\xe3\x0a\x5d\xde\x0e\x51\xa9\xa9\x2d\x47\xf5\x57\x6c\x8b\xa8\x09\x69\x7e\x3f\x65\xe6\xf7\xcf\x82\x03\x9b\x7d\x6c\x65\x26\x81\x6d\xde\xdc\x84\xa6\x79\xab\xd5\xdd\x66\x9f\x86\x4a\x13\x95\x62\xf5\x9c\xda\xb4\x5b\x1b\xc9\x6a\x69\x34\x23\xa9\x0c\xc9\x1a\x7e\xed\x79\x26\xa8\xb5\x87\x83\x0a\x56\x96\x62\x4b\x84\x5a\x42\xa6\x1f\x41\x4c\x99\x13\x27\x28\xf0\xca\x11\xbf\x57\x0c\x85\x5c\x2a\x42\x4b\x29\xac\x35\x7f\x2e\x6a\x52\x33\x5a\x58\x51\xd7\x88\xb9\xa6\x74\x7d\x03\xcb\x64\x62\x70\x70\x4c\xe3\x13\x72\xce\xd6\x35\xd3\xf2\x7c\x31\x76\x2b\xac\x04\xd1\x77\x1f\xab\x9b\x40\x96\x82\xcd\x39\x48\xca\x88\x6d\x54\x10\x45\x49\x68\xb5\x5b\x89\x9a\x8d\xda\x2d\xfc\x0d\xaa\x70\x36\xcd\x24\xde\x6c\xa6\x25\x9f\x91\x4c\xd6\xb1\xa4\x4d\x3e\xa5\xb6\xab\x8a\x73\xee\x97\x88\x91\xfb\x9c\x34\x47\xed\xc0\xe0\xec\x99\xaa\x92\x4d\xa6\x24\xad\xc6\x5d\x5d\x4c\xe2\xc7\xfe\x4d\x86\x9b\x9a\xc9\x4d\x69\x4d\x19\x10\xfc\x0b\x44\x52\x78\xa5\xc2\x37\x75\xc5\x8a\xe6\xf2\x8e\x01\x99\xf2\xd7\x53\xd4\x2b\x24\xc4\x2a\x20\xa9\xd1\x7a\xb1\x59\x99\xcc\x51\xa0\xb8\x1a\x07\x4d\xa8\x52\x0a\x19\x6b\x99\xfa\x33\x34\x13\x3b\x05\x3d\xf2\x88\xfc\xed\x6f\xf6\xab\xa7\x90\x60\xec\x94\xf0\xa2\x25\xb2\x37\x52\x39\x63\xe1\x23\x16\x55\xd2\x15\x6a\x42\xe2\xd5\x4c\xd4\x35\x9b\x25\x7a\x69\xdb\x19\xf3\x0e\x0b\x47\xa3\x85\x9f\xdd\x8e\xdd\xb0\x7a\x07\x87\x8d\x6c\x97\x82\x88\x6d\x25\xfd\xdc\x76\x28\x78\x4b\xb4\xbc\x54\xe6\xec\x18\xf6\x0a\x72\x38\xad\xe8\x82\x99\xef\xaf\x2e\x26\xd7\x0f\xc8\x1e\xef\x54\x33\x9d\x71\x0b\xf5\x1e\x77\x11\x6f\xe8\xd7\x3a\x0f\x82\x20\x5d\x2d\x83\x6a\x2e\xea\x15\x1a\x98\x35\xf1\xfa\x3d\xae\x2e\x26\x31\x1a\x76\x6b\x66\x4c\x19\x36\x8b\xd7\xe5\x79\x64\x4f\x8a\xab\xa9\x88\x6d\xc5\x0a\x8d\x26\x7d\x2e\xb0\xd3\x98\xe4\x43\x03\xe3\x72\x29\xd9\xec\xab\x0e\x9e\xe6\x9d\x9f\xda\x4a\xa0\x1b\xb3\x2d\x25\x25\x97\x90\xe7\x0f\x4a\x6e\xee\xd6\x4c\x7a\x85\x10\x6a\x36\x63\xfc\x86\xc1\x2e\xb1\xb5\xda\x9f\x1c\xe6\xda\x66\xa0\xb9\xba\x98\x4c\x34\x30\x28\x58\x81\xbe\xd3\x5c\x85\x0c\xbc\x7a\x4d\x1f\xe8\x10\x35\x3f\x8d\x23\xc9\xc2\xd6\xef\x7c\x87\xec\xfb\x5c\xd1\x78\x77\x31\xfa\xdd\xba\x71\xb2\x5d\x32\xcd\xf5\x89\xa8\xc1\xac\x1e\xa5\x26\xd1\x1b\x0e\xd8\xc0\xc2\x44\xe8\x97\xc9\xd4\x64\x23\x67\xde\xf7\xa6\x26\x12\xad\x4c\x5f\xcd\x97\x11\x9c\x61\x2c\x7f\xd9\x48\xe5\xf2\x45\xd5\x1b\xa6\x41\x9b\x80\xdb\x6e\xa4\x73\x19\xe3\x7c\xa8\x9c\xab\xfa\x08\xd1\x98\x86\x0e\xc0\xd0\xa7\xa7\x81\x3f\xbb\x23\x81\x55\x8c\xd4\x6c\x30\xc0\x9c\x96\x32\x1b\x96\x14\x3a\x09\xe8\xca\x96\x4c\x04\x1a\x05\x76\x50\x34\x1e\xae\x04\x93\x6d\xa4\xf6\x92\x55\x0b\x0c\x6a\xba\xac\x62\xde\xea\x07\x8d\xb8\xe3\x30\x2a\xa1\x47\xcb\x0c\xff\xc5\x02\x16\x42\x7b\x88\x5a\x16\x35\xdd\x92\x9a\xad\xc4\x0d\xd8\xa2\x2c\xfb\x33\x75\x65\x59\x20\x25\x55\x05\xc1\x76\xad\x8b\x6f\xd7\x4b\xec\x58\x7b\x8d\x03\xe8\x7e\xb0\xe5\x04\x71\x66\x45\x6e\x3e\x2d\x83\xd6\x56\xeb\xf8\x21\x9b\x33\x15\xfc\x83\xfa\xaf\xa6\xcc\xb0\x9d\x5a\x42\x7a\x09\x80\x9f\x4d\x4b\xdc\x59\xdb\x6f\xe8\xaf\xad\xa9\xde\x9d\xe7\xe4\xa9\xa8\xf2\x0c\x2f\xf2\x6a\x8e\xd6\xd9\xd9\x92\xcd\x3e\x40\xbe\xba\xb4\x78\x12\xb8\x4d\xe6\xca\x86\x58\xa3\x08\x70\x75\x31\xf1\x66\xd0\xa5\x62\x04\x92\xc3\xd8\xd0\xbb\x93\x0b\x62\xcd\xa2\x09\x34\x6a\x8d\x68\xaf\xe6\x2a\xc7\x3d\xc2\xe1\xec\xdc\xc6\x5e\x16\x4e\x5c\x5b\x12\x69\x14\xa3\xe6\x2d\xec\x3e\x6a\x8d\xf3\x2c\x51\x26\xe8\xc1\xbd\xfd\xee\x71\xcc\x03\x90\x90\x30\xf2\xf7\x20\x6c\x25\xd3\x0f\xdd\xae\x29\x03\x8b\xf1\x08\x06\x54\x4b\x39\x20\xbc\xc2\x1c\xa1\x3c\x2a\xaa\x8e\x6e\xaa\xf5\xd3\x11\x2d\x8a\x9a\xc9\x8c\xe3\xca\xe3\xa4\x8e\x60\x11\x52\x0b\xa3\x08\x7f\xcb\x94\x30\xb5\x73\x72\xf0\x24\x59\x6d\x4a\xc5\xd7\xa5\x39\x22\xf2\x3e\x4a\x91\xf2\x42\x8e\xc9\x59\x45\x68\x5d\x53\x10\xb0\xb4\x0a\xa4\x84\x1b\x74\x9f\xf1\x20\x3d\xc6\xbe\xf0\x97\xb9\x6b\x4d\xe1\xa0\x36\x43\x47\xc7\x27\xc4\xed\xaa\xbd\x6a\x79\x3f\xfe\x10\x20\x79\x08\x78\x78\x87\xec\xe1\xfd\xa1\xec\xdf\x7f\xb3\xa3\x95\xef\xf8\xaa\x0a\x1a\x6b\xd9\x12\xc6\x3e\xb0\x40\xa8\x56\x9b\x14\xab\xd1\x85\x54\x8b\xcd\x62\x69\xb4\x25\xa4\x03\x77\x5b\x00\x21\xec\x3b\x8b\xfa\xee\xe4\x70\xbd\xeb\xfe\x29\x8f\x88\x26\x98\x16\x13\x35\x39\xe0\x73\x3c\x96\x17\x47\xfb\x39\x47\xdb\x69\x91\x2d\xc7\x25\x9a\x50\xcb\xc1\xb1\xc6\x00\x45\x3f\x80\x25\xc4\xf0\x04\x8d\x1f\x5a\x14\xfe\xcd\xd8\x80\xf2\x2d\x7c\x5d\x07\x06\xcf\x8b\x41\x80\xb2\xc5\xf0\xe1\x1a\x34\xc3\x76\xca\x4b\x1d\x96\x97\x08\xb9\x2d\x57\x53\x26\xc1\xf6\x73\x63\x35\xf1\x26\x80\x0c\x16\xf8\x80\x27\x1b\xa1\x1a\xf7\x81\x11\xb9\xa9\x13\x1d\x9a\x2b\x6b\x9e\x31\x5a\x67\xea\x82\x0c\x58\xb7\x1d\xe2\x21\x94\x13\xcf\xfa\x4a\xdd\x35\x9e\x86\x9d\x60\x72\x73\xa8\x03\x80\x6c\x36\xfb\x96\xc9\x5a\x22\x8d\x2c\x60\x62\x9b\xd2\x7d\xb2\x10\x45\x59\x4c\xf2\x57\xcb\x3b\x5e\xbc\x6f\xf8\x6d\x3c\xd6\xeb\xaa\xdc\x99\x4c\xd3\x8e\x78\x30\x1f\xb4\x49\x5d\xdb\x72\x7e\x34\xda\xc0\x3e\x84\xaa\x83\x16\x9d\x1f\xc9\x6c\xfc\x17\x9f\xe7\x2e\x10\xe3\xa2\xce\x9c\x3c\x98\x8c\x35\xcc\xe8\xeb\x48\x5f\x44\x4a\xb4\x5c\x43\x7e\xcf\xf4\x98\x99\x5c\xd6\x58\x4e\x0f\x78\x92\x28\x8b\x58\xbe\x1a\x18\x21\x2e\xb4\x35\x98\x94\xd9\x0e\xb1\x5d\x37\xd5\x79\x74\xea\xd2\xaa\xce\xd4\x94\xdc\x46\x93\x4c\x6c\x7e\x37\x88\x97\x84\xd1\xd9\xd2\xde\x10\xac\x40\x3d\x1e\xcd\x79\x5c\xe6\x76\xe2\x3e\x8c\x5a\xe9\xa9\x02\x67\xbf\x77\x23\x5a\xc3\x60\x74\xd6\x13\x1a\x84\x37\x53\x86\xae\xe5\x68\xc1\xd4\xe5\xb9\xec\xc9\xc4\xa1\x6b\xc2\x3b\x7c\xe4\x20\x6e\x62\xef\xb3\x66\xe3\x1f\x18\x38\x26\x5a\x5e\x6c\x99\xac\x94\x31\xf7\x36\x93\xcc\xf2\xef\x0f\x6c\xb7\x97\x81\xa7\x94\xd5\x72\x50\x2c\x1d\x45\xcc\x3d\xa4\x22\x2d\x6f\x3a\xea\x41\xf2\xe4\x05\x72\x6d\x52\x6c\x6a\x0c\xce\xe6\x5a\x71\x9c\x09\xfb\x08\x40\xf7\x91\xa1\x66\xe2\xea\x2a\x60\x64\x21\x55\xae\xf3\x5e\xd1\x00\x63\xf1\x90\x8a\x34\x64\xcf\x8a\x79\xec\xa0\x8c\xc9\x8f\x17\xfc\xe3\xb7\xbf\xcb\xd0\xcc\x17\x12\x85\x79\xd1\x43\x04\xd6\xf3\xbd\xb5\xf8\x6b\xf5\x55\xcd\x76\xae\x2e\x26\x88\x87\x62\xf8\x55\x73\x8f\x6c\xd4\xb2\x1d\x5f\x6d\x6f\x65\x13\x82\x59\x53\x29\x7d\xed\x0e\x39\x7a\x89\xaa\x4b\x1a\x06\x48\x6c\xf0\x8a\x09\x07\x83\x10\x37\x13\x5a\xc2\x6d\x29\xd3\x29\x9d\x7d\xb8\xc5\x4d\x10\xa9\x4d\x7a\x0e\x5a\x49\xab\xe6\xaa\x39\x1a\xfe\xa6\xdb\x7f\x45\x8b\x3a\x84\x43\xbe\xf4\x08\xdc\xe7\x2c\x86\xd4\x65\x3b\xad\xfb\xa0\xf4\x45\x8d\xcc\x43\x66\x45\x40\x38\x12\xc8\x28\x6c\x6c\xad\x79\x0e\xcc\x8a\xdb\x1d\x05\x37\xf9\x50\x3e\xee\x75\x24\xba\x84\x55\x3c\xf0\x4b\xb6\x3a\x48\x28\x75\x15\x8c\xdd\xbd\x98\xdb\x24\xbf\x47\x9b\x95\x75\x53\x75\xb0\x1c\xa5\x34\x47\x03\x7e\x6f\xda\x85\x61\xad\x11\xfd\x60\x1b\x7d\x57\xb9\xa2\xa8\xd3\x8d\xe4\x95\xbe\xe5\x4b\xb1\xe0\x33\x42\x6b\x28\x03\x65\x80\xb1\x92\x2f\xf8\x94\x97\x5c\x25\xd1\xcc\x9d\x7b\x81\xdd\x7d\xf7\xca\xbf\xd9\xd0\xc1\x6c\xe8\x4d\x96\x0d\x85\x3b\xda\x44\x71\xaa\x25\x03\x9b\xa6\x3e\x79\x09\xb3\xf1\xa3\x55\xf5\x8f\x2e\x94\xcf\xd9\xf9\xef\x24\xaf\xb6\x51\x59\xc8\xa7\xee\xc0\x93\x7e\x0c\xce\x40\x8e\x2b\x1d\xc2\x7b\x70\x7e\x86\xfb\xa0\xec\xbc\x23\xb4\x66\x86\xdc\xcb\xe4\x01\xe9\x7e\xbe\xf3\xa3\x25\x78\x5f\x33\x3f\x8c\xcf\xd8\x59\xdd\x8e\xd5\x78\x27\x2e\x3e\x01\x6d\x8c\xc5\x6c\x80\x75\x20\x9b\x3f\xa5\xb5\x56\xe0\x41\xe0\xb2\xc5\x35\xe1\x4d\xb7\xe9\xe1\xe1\x32\xb2\x39\x1e\x60\xd5\xd1\xec\xc9\x2f\xb9\x84\xbe\x74\x10\x67\x4d\xb9\x9b\x4e\x66\xd1\x67\xcf\xc2\xa5\x77\x6f\x1b\x32\x1e\x9f\xc0\xfb\x86\x77\x44\xc7\x22\x17\xe3\x11\xfc\x76\x48\x80\x47\xc4\x06\x7a\x07\x79\xec\x23\xa6\xc3\x19\x33\xb9\x23\x73\x26\x39\x06\x6d\x36\xa8\x83\x47\xcf\x3c\xd3\x9d\x7b\x51\x1e\x3e\x26\x8f\x96\x6e\x96\xf7\x02\x35\x68\x67\x83\x42\x15\x7a\xc9\x6a\xe6\x22\xe1\xd7\x25\x55\x73\x51\xaf\x24\x29\x04\x8c\xba\xa4\x37\x0c\xef\xd8\x82\xd5\x52\xe9\xe3\x6a\x36\xe0\xb1\x4b\x62\x02\x70\xe0\x26\x96\xcc\x3c\xbf\x94\x4b\xbe\x26\xb3\x25\xad\x16\x69\x9d\x1e\xf0\xee\x6d\x7d\xbb\xa9\xd8\x28\x48\x71\x50\xd7\x4c\xae\x45\x05\xc5\x35\xac\x46\xb5\x62\xd4\x14\x30\x47\x45\x93\xfc\x75\xc3\x24\x88\x5f\x4b\x0a\xc1\x1c\xf8\xdc\xd3\xe8\xda\x79\x45\x3d\x30\x1c\x1f\x62\x32\x36\xd3\xb5\x7b\xb0\x84\xb7\x31\x7e\x72\x09\xfb\xa6\x30\xe3\x67\x20\x90\x65\x38\x39\x3d\x86\x5f\x3d\xdb\x5d\x9e\x3b\x9e\x95\xf4\x0b\xf4\xb1\x5e\x2c\x0d\x15\xd9\xe6\x45\x44\x4e\x33\xd6\x1b\x4c\x5d\xf8\xc0\x3e\x55\xdd\x77\x17\x82\x8e\xdc\x30\x8a\x5e\x0e\x43\xad\xea\xb6\xdd\x6c\xd6\xe7\x62\x2d\xd4\x84\x9a\xef\x82\x18\x0b\x78\xca\xe1\xaa\xae\xb4\x7b\xae\x82\x77\x1c\xe8\x4c\x03\x6f\x71\xcd\x68\x41\xb8\x0a\x8c\x5b\x5d\xdc\x38\xe3\x54\xd3\x73\x58\x18\x53\x59\x33\xb1\xb9\xd8\x1b\x0b\x9f\x79\xa8\x11\xfa\xe8\xfc\x5e\x57\x02\xb2\xff\xeb\x2b\x47\x54\xe5\xce\x7f\xcc\x6c\x96\x03\xcf\xe5\x69\x11\x45\x01\x5e\x5d\x4c\x8e\x7d\x38\x9a\x12\xc1\x37\x8e\x99\x27\xc2\x34\x43\x23\xf2\xa6\x64\x54\x42\xe4\x76\x10\x0b\x14\x05\x01\xc3\x38\x96\xf9\xe8\x7e\xfb\x8c\xa3\xd1\x3b\x11\x2d\xfd\xfc\x89\x84\xf1\x45\x79\xc1\x2f\x0e\x39\x32\x74\xf4\x55\x2a\x6a\x75\xd2\x91\x8b\xde\xe9\x47\x4a\x7d\x09\x07\x53\x07\x55\x45\xf8\x1e\x08\xee\x04\x1e\x56\x02\x9b\xe8\x9b\x5f\xf7\xc3\x97\x13\xe8\x77\x75\xc4\x17\xc4\xc8\x86\x85\x07\x83\xcd\x13\x35\xec\x9d\xd9\x5a\xc9\xa0\x8a\xa1\xfe\xf6\x4d\x93\xc8\x28\x4a\x12\xa1\x65\xda\x5d\xc4\x05\xdc\xe3\x06\x7c\x8b\x26\x6a\x33\xb2\x71\x43\x51\x53\xb9\x48\x48\xe6\x67\x4b\x8a\x4d\x34\xe1\x0b\xf2\x2c\x09\xfc\x3d\x8f\x4f\x07\xf9\xf5\x8d\x6f\xf3\x99\x56\x43\xb8\xbc\x38\x02\x9b\x39\xf4\xc8\x51\x5d\xc7\xc8\x3f\x71\xb6\x7d\x8b\x39\x2d\xea\x68\xfc\x4f\xfe\x6f\x23\xfb\x8f\xe4\x00\x98\x02\x6b\xe8\x9d\xce\x1c\x83\x8e\xbc\x67\x31\x28\x6f\x89\xe0\x14\x97\xad\x93\x68\xb9\x5e\x48\x5b\xf6\x40\x12\xc4\xb4\x3d\xbe\x9f\x8f\x05\x17\xbf\x38\x7d\x5c\xb2\x1b\x56\xba\xb0\x40\x13\xa9\xd9\xbc\x2d\xb9\xc7\x19\x58\x78\xd9\x98\x90\x30\x6e\xf7\x38\x0d\x73\x31\x26\x74\xc3\x50\x2c\x2c\x8a\xf1\x7c\x9a\x37\xc8\xf0\xcd\xa4\x17\xbc\x67\x85\x67\xdb\xe9\x35\x10\xbd\xe6\x29\x20\x7c\x05\x96\x7a\xd7\xd9\x74\x3a\x6e\xd4\x0e\x3a\x05\x97\xb3\x0d\x3b\xb3\xd0\xfc\x28\xd9\x9a\x56\x92\xa2\x3b\xcd\x8e\xf6\x20\x26\xea\xf6\x70\x9b\x20\x2c\xe6\x10\xe7\x2b\x9f\x13\xd3\x97\x3c\xec\x8c\x9a\xb2\x42\xbe\x09\xa6\xb3\xc2\x95\x0b\x3f\x1b\xc4\xf1\xcb\x24\x17\xea\x6c\x95\x93\xc0\x49\x1b\x52\xed\x82\xa9\xb3\xb2\xc4\x34\x1a\xee\xde\x28\x4b\x62\xdf\x61\x23\xba\xf0\x16\xf5\x11\x15\xb0\x28\x4f\xc4\x0a\xfb\xc2\x95\x02\x7b\x07\x75\x4d\xcd\x5b\xe6\x04\xd3\xbe\x80\x65\x67\x03\x52\x96\xfe\x97\x2f\x63\x45\x2f\xbe\xdc\x2b\xf7\x11\xe4\x5d\x93\xe9\xda\xfc\x4c\x73\xc9\xfa\xdc\x2b\x84\xf8\x36\xa1\x8d\xbc\xe0\xb2\x4d\x34\xeb\x6e\x4b\x3e\xd0\xc4\x01\x37\x0f\x7a\xb8\x24\x53\x86\xa5\x17\x69\x3d\x5b\x9a\xb5\x67\x70\x38\x09\xe7\x43\xa8\x4d\xd7\xa3\x84\xfd\x97\x7d\x3c\x61\xd3\x09\x75\xa2\x31\x9b\x62\xcf\xbd\x56\x8d\x9f\x34\x3c\x4d\x71\xec\x6a\x5f\x07\x69\x04\x9e\x8e\x82\xb4\x84\xad\xb8\x36\x25\x07\xfc\x68\x8f\x0e\x74\x5b\x20\x2d\x1f\xb7\x19\x70\x4d\xbb\x9c\x76\xfe\x44\xda\x3b\xbf\xf8\x38\x0e\xaa\xcc\x0c\x30\x7c\xd8\xae\x52\x68\x71\xc6\x8b\xaa\x6f\xf9\x94\xfc\x03\x23\x83\x57\x6c\xb5\xd6\x42\xcd\xef\x6b\xfe\xcb\x2f\x25\x67\x72\xf0\x05\x48\x23\x18\xd7\xcc\x7c\x62\x5f\x32\xa3\x6a\xa9\xdb\x3b\xd9\x61\x1f\x31\x61\x3f\x9f\xa4\x5e\x1f\x4a\x40\x71\x01\x09\xfb\x58\xcc\xcc\x2e\xca\x30\xf5\x34\x8a\x87\x16\xd5\x23\x70\x71\xcd\x18\x84\x38\xdf\xb0\xda\x79\xab\x8d\x40\x26\x6a\x33\x4b\xf0\x51\xdf\xd0\xd2\x4b\x83\x6b\x24\x81\xf5\x9e\xfc\x16\x79\x99\x46\xff\xe8\x28\xf6\x1d\x8c\xf1\xbe\x9d\x71\xda\xdb\x3d\xa0\xea\x6b\x23\x7e\xfa\x94\x8c\x4f\x97\xac\xb8\xdc\xf8\x2c\x6c\x1e\x85\x70\x13\xa1\xfc\x6d\x40\xf1\xa3\x0e\xb2\xf1\x5e\x1b\x36\x54\xe3\x5e\x1b\x1e\xc4\x4f\xfe\x7b\xc3\xea\x9d\x9d\x3f\xbe\x24\xb3\x1c\xb9\x61\x82\x4d\x4a\x28\x0e\x21\xea\xe8\xd0\xa1\x53\xb1\x71\x89\x1c\xb2\x37\x63\x83\x9a\xe4\x2d\xbc\x3f\xee\xd3\xf0\xf6\xcb\x3d\x09\x3f\xcd\x85\x16\xb4\x0a\x5c\xde\x8f\xfe\x38\x41\x91\xf3\xcc\x25\x67\x72\x30\x06\xdb\x08\x4f\xda\xfe\xf7\x6f\x63\x2e\x7d\x48\x6b\xe0\x7c\x98\x6a\xd2\x6d\xc9\xc1\x27\x13\x75\xa6\xcc\x79\x8c\xae\x60\xa3\x9d\xd9\xcd\xc4\x4c\xc2\x59\xf4\x9b\x97\xe1\xfe\x06\x98\xd7\xe6\xbd\xb7\xe0\xef\xb8\x09\xf1\x54\x35\x94\xe8\xe9\x70\xc7\x9e\x84\x49\xa8\xdd\xae\xe0\x3f\x7e\x8d\x5d\x91\xcd\xa3\xf8\x78\x5f\x2e\xcf\xe5\xb3\x5d\x72\x36\x9c\x99\x2c\xd9\x17\xe2\x76\x38\x73\x5d\x1e\xbc\x3f\x57\x6d\x59\x72\x0e\xdc\xa3\xb3\x8c\x99\xcf\x03\xc6\xe7\x5a\xe1\xb0\x45\xc9\x45\x0d\x1c\x87\xcf\x6d\x56\x8d\x0e\x0e\xe7\xd0\x33\x8c\x72\xbc\x5a\x2b\xe0\x37\xbf\x7d\xef\xef\xe0\x0d\xad\x71\x9b\x64\xf3\x3b\x39\x25\xef\xde\x07\xf6\x9a\xd8\x09\x64\xb9\xb1\xdd\x38\x53\x91\xdb\x5e\xf4\x8e\x5d\x39\x18\xfa\x4b\x6b\x19\xe1\xe9\xc6\x1b\x81\x38\xd5\xaa\x6d\x86\xdc\xd3\x53\xdb\x1d\x73\x7f\x67\xbd\x00\xe6\xd9\x9b\xcd\xbd\x3b\x17\x9b\xaa\x38\x76\xaf\x39\x00\xcb\x49\x37\x5c\xbb\xc9\xb1\x39\xb4\x63\x78\x6c\xd9\x7e\xda\xec\xb7\xe1\xa0\x78\x16\xfc\x71\xfd\x2b\x61\xff\x71\xb9\x32\x73\xcf\x88\x15\x66\xa6\xf8\x9c\x43\x23\xe4\xc9\x2d\xee\x20\x04\x92\x17\x86\xe5\x65\xe5\xe7\xe6\x81\x00\x12\xf3\x4a\x0a\xc4\xc0\x9c\x29\xba\x61\x7c\x5f\x90\xa1\xf9\x87\xc5\xce\x64\xaf\x30\x88\xab\x49\x78\x58\xee\x0c\xdc\x1f\x17\x6b\x38\x18\x28\x94\x11\x9e\xb9\x7c\x61\xd3\x78\x28\x5e\xb3\x22\xb0\x7c\x8a\x92\x51\x13\x36\x68\x73\xd9\x80\x77\x92\x6a\x84\x9d\x60\xde\x49\xb1\x9a\x8a\x56\xc9\x7f\x08\x8f\x76\xb7\x5c\x32\xc8\xa0\x58\x99\xa8\x40\xf3\x04\xfa\x88\xc0\xc3\x36\x18\x77\xd4\x0a\xe3\x72\xee\x75\xf1\x7a\x1c\x6b\x76\x24\x15\x6a\x22\x2b\x08\xc2\x68\x08\xe0\xb8\x15\xdc\x74\xd3\x3c\x1c\x9e\xd1\xca\x7b\xc1\x3b\x65\x36\x9f\x4d\x60\x97\xbd\x4f\x32\x0a\x66\x72\x6f\x8a\xef\x33\xb3\x51\x66\x8f\x3c\xbf\x52\x8a\x35\xf3\x94\x2e\xcb\xad\x63\x5a\x18\x76\x27\xb6\xc0\x81\x23\xa2\xf5\xc2\xbc\xed\x88\x52\x51\xb5\x91\x41\xee\x3f\x2f\xd7\x57\x70\xaf\xc4\x2a\x8b\x64\xca\xa4\xbe\xb7\xd5\x97\xb2\xb2\x6a\x9b\x35\x16\x3a\xeb\x5e\x76\x41\x47\x49\x2e\xbf\x1e\x1a\x0c\x97\xd7\x4c\xe1\x3b\x9b\xfe\xa7\x23\xb7\xe1\xee\x99\xcd\x48\x13\x35\x57\x8f\xec\xdf\x59\x6a\xb5\x89\x3a\x33\x64\x0a\x35\x08\x20\xc3\x54\x9e\xd0\x63\x1a\xc7\x53\x12\xd1\xf7\x1b\x63\x5e\xc2\x5d\xb0\x81\x4c\xbf\x82\x2c\xd8\x4e\xae\x20\x66\x58\xa4\xb4\x51\xaa\xff\xde\xd2\xee\x4b\xc2\x52\x33\x94\x79\xef\xec\xd4\x73\xd3\x06\xf7\x56\xa6\x10\x9f\x7f\xe1\x63\x62\x28\x3f\xe7\x40\x68\xe2\xdb\x63\x46\xf1\xb7\x90\x92\x19\xab\xf5\xb6\xd9\x83\xfe\x8f\xc2\xb1\xa0\xf6\x86\x50\xb4\x4c\xb1\x91\x8c\x1b\x19\x40\x83\xf5\xbb\x85\xb7\x49\x9f\x1d\x45\x11\x5b\xb9\x5a\x56\xa5\x78\x9b\xdb\xc0\x55\x98\x06\xed\xef\xc9\xe1\xd0\x07\xf8\x0a\x26\xf2\x86\xd5\x90\xc2\xf7\x56\xdc\x6e\x91\x4b\x49\xe5\xcb\x5f\xbd\x72\x40\xe5\x49\xb0\x33\x15\x55\xd3\xc5\x3d\x18\xb5\x3b\xd1\x0c\x09\x8f\x4b\x34\xee\x3c\x6c\x66\xfc\x0e\x69\x45\x8e\xd6\xa4\x4e\xd9\x0d\xcf\xe7\xa1\xc1\xd4\xf6\x5f\x3a\x09\xcd\x6d\x12\xd0\xc4\x74\x11\xe5\x9e\xe9\xc2\x02\xfc\x2f\xef\xd2\xf0\x53\x22\xc5\x86\x7f\xe9\xfd\xd6\xb8\x37\x12\xa4\x05\xd9\x68\x7a\xfa\x3d\x7c\xd0\xb7\xf3\x7e\x78\x13\x1f\x1e\x8d\xc9\x57\xef\x9a\x2f\xde\xff\xf3\xee\x72\xf3\x77\xb7\x43\xc7\x2f\x4b\x76\x79\x1e\x5a\x93\xe2\xb4\x59\x84\x55\xca\x46\x2d\xb7\x5c\x2b\x49\xba\x38\xef\x76\xf1\x59\xc5\xa1\xf7\x43\x3e\x85\x57\x7b\xba\x0b\x7f\x51\xc3\x5c\xa2\x36\x48\x31\xda\x00\xfd\x57\xa1\x83\x77\x3e\x2e\xde\x3f\xec\xa6\x07\x28\x53\xb7\x87\x24\x9c\x4d\xeb\xea\x62\x72\x30\xdf\x6f\x88\x03\xdf\xfe\x1f\x6c\x44\x3c\x68\x3a\x7d\xa8\x05\x2b\xf3\xfd\x89\xc4\xb7\x82\xb7\xc7\x91\x05\xfe\x57\xa6\x97\x7c\x5c\x47\x50\x2e\xee\xf4\x16\x2c\xbf\x3d\xc6\xe3\x20\x82\x6a\x35\x48\x45\x40\x53\x49\x03\x42\xd4\x30\x75\x3d\xc4\x12\x21\xbd\xad\x31\x8d\x15\xa4\xac\xf6\x97\xe8\xe2\x67\xdb\x52\xf1\x11\x5a\x15\x91\x04\x81\xb4\x61\xe4\xb5\x34\x3f\x46\x86\xc4\x90\x53\xd8\xaf\xf1\x49\xea\x47\x07\x82\x57\xb7\x98\x57\x27\x21\x5e\x45\xe0\xb2\xe9\x6a\xff\xc9\xf8\x53\x8c\xc2\x88\x2c\x62\x3c\x66\xb2\x5b\x99\x90\x46\x50\x5e\xfa\x24\x8d\xcd\x48\x88\x86\x79\x64\xef\x03\xbf\x5d\x7c\xd4\x1c\x89\xb4\xb6\xf6\x73\x20\xb6\xb7\x6a\xcf\x8d\x18\x25\x96\xca\xa7\x1c\xed\x9d\x68\xb1\x57\x42\x6d\x0d\xcd\x1a\x71\x1f\x9e\x92\x27\x63\x32\xb8\x0a\x73\x42\x82\x29\x79\x66\xb2\x95\x98\xf7\x9f\x6d\x99\xca\x88\x7d\x4c\xd1\xca\xa2\x22\x9b\x37\x34\x36\x45\xf0\x03\x0b\xbd\xfb\x71\xd5\xd4\x40\x4c\x6a\x3a\x06\x41\x64\xd9\xdc\x64\x31\x45\x05\x8a\xdd\x2b\xba\xd6\x37\x52\xa3\xd4\xd1\x52\x33\xa3\x9d\x55\xea\x2c\x61\x6d\xa4\xbe\xa2\x1a\x50\x41\xd0\xe6\xcf\x4b\x56\x99\x44\x10\x46\x1f\x8a\xe8\x50\x53\x31\x02\x3c\x26\x5f\x03\x49\x5b\x13\x8e\xad\x18\x64\x20\x35\x9c\x06\x62\x3f\x57\x74\x6d\x53\x5b\x7d\x60\xbb\x63\xad\x62\xae\x30\xdb\x15\x86\xea\x43\x15\xbf\x6a\x41\xc4\xdc\x07\x72\x8d\x51\xa2\x6f\x9a\x58\xcd\xe4\xbc\x79\xc8\xb2\xe1\x71\x86\x7c\x43\x45\xb2\xe9\xe8\x11\x17\x52\x61\xe8\x73\x30\x78\xf4\x96\x8c\x19\x8c\xb3\x3a\x62\x14\xf1\x6a\x16\x8a\xf5\x2e\xa4\x79\xf3\x09\xcf\x8a\x34\xce\x78\xb5\x18\x75\xcf\x79\x15\xdf\x74\x63\xe2\xd2\xb7\xe5\xe6\x6a\x14\x50\x2b\x7d\xd8\xec\xd3\x49\x9e\x67\x19\xcc\xf3\x05\xe4\xd4\x53\x7c\xc5\x08\x0d\xd2\xc5\x72\x69\x15\x93\x30\xcf\xad\x71\xe5\xf1\x45\x15\xbc\xe0\xb1\x37\x51\x98\x76\x15\x35\x5b\x8a\x29\xc9\x2b\x93\x12\x10\x33\x8c\xe3\x86\x7f\xdd\x81\x04\xac\x36\x11\xb2\xd5\x94\x53\x9d\x9c\x90\x9f\x68\xcd\x21\xb6\x4f\xf2\x5f\x58\x54\x6c\x38\x11\xb8\x93\x24\x73\x21\xd6\x23\xb1\xc0\xe0\xfc\x9b\xdf\x8e\x3d\x48\xff\x4e\xda\xfb\xaf\x91\xb4\xd7\x96\x0e\x41\x56\x1e\x5f\xf0\x41\x73\x5b\x19\xa5\x99\xfb\xa9\xb7\x90\xe8\xbe\x03\xb8\xf6\xba\x8b\x92\xe5\xb6\x95\x6b\xca\xce\xa1\x6d\x6e\xed\x69\xf6\xa3\x2b\x2c\x2d\xe4\xe4\x51\x43\xd0\x11\x8b\xa4\xb8\x1f\x5d\xad\x94\x3b\x2f\xac\x47\x39\x93\xac\xf5\xce\x05\x3c\x03\xc3\x43\x28\x8f\xb4\xa8\xf4\xab\x25\x98\xf7\xbb\x1e\x68\xdd\xeb\xa0\xe6\xbb\x5a\xf9\x48\x14\xaa\x99\x5c\x23\xef\x00\x46\xdb\x83\x91\xd4\xea\xba\x17\xe7\xc1\x2d\xd0\xc3\x17\x10\x5a\x96\xb5\xba\x94\xe5\x40\x4a\xc0\x6b\x11\x6a\x0a\xef\x7b\xb5\x7c\x6b\xee\x6c\xec\x3d\x76\xb2\x35\x4d\xbf\x13\x6a\x12\x37\x52\x1b\x23\xec\x48\xd3\x7f\x38\xb0\x9e\x25\x09\x50\x44\x43\xb1\x63\x95\x1b\xa4\x1f\x45\x92\xab\x78\x57\x8e\x63\xa1\xd0\xed\x47\xf6\x46\x68\x65\xbd\x5d\x14\xd3\xed\x96\xc8\x97\x1e\xe8\x4c\xa3\x8e\x21\x07\x01\x9b\xf5\x5c\x0c\xe1\x6f\xe6\xad\x67\xfc\xba\xc8\x1b\xf2\x28\xb6\x41\x3c\x44\x76\xda\xb6\x9c\x91\x75\x28\xfe\x91\xed\x86\xc9\x5c\x72\xc6\x87\x3d\xf0\xfc\x42\xe1\x09\xbc\x63\xcb\xc4\x9f\x64\x1e\xfc\x9a\x23\xee\x5a\x74\xa8\x2d\x3e\x37\x68\x9d\xca\xbb\x64\xf8\xf7\x6d\x95\x78\x68\x51\x4c\x44\x5f\x26\xe1\xe4\x3d\x49\xbe\x6e\xd7\x0c\xee\xc8\x2b\xfe\x7d\xf4\x4f\x3a\x4e\x6a\x23\xe0\x42\x91\xe0\xce\xdd\xbb\xd5\x81\xfd\x35\x0e\x6a\x30\x82\x49\x6e\xb5\xc7\x67\x99\xa7\x16\x3b\x43\xff\x24\x38\x39\xea\x80\xd3\x91\x9c\x48\xef\x9d\x3a\xa4\x5c\xae\x84\x22\x73\x5e\x15\xdd\xd3\xf4\x42\x28\x1d\xec\x87\x99\x22\x8b\x61\x15\xbd\x5b\xaf\xfc\xe0\x65\x6a\xa9\xd0\xc7\x94\x2f\x59\xe6\xd9\x43\xfb\x0e\x93\xe9\x86\x97\x05\x94\x2d\x36\x6f\x58\x7c\x5d\x15\x5e\x22\x98\x24\x60\xcd\x1a\x73\x1c\x66\x45\xd7\x31\x8d\xeb\x75\x25\xd1\xb5\x59\x2a\xfb\x53\x5c\xd9\xe6\x4f\x09\x91\xff\xa9\xed\x5e\xea\xae\x20\xae\x82\x02\xfb\x36\xed\x40\x5a\x79\xdf\x95\xb8\xf7\x06\x69\xab\x73\xef\x23\xf6\xdf\x75\x95\xfe\xe5\xea\x2a\xe5\x2d\x9b\x0f\xf3\x82\x7d\x20\x9d\x18\x77\xc8\x98\x0c\xfc\xab\xd9\x72\x07\x73\x9b\x58\x01\x10\x35\x93\x87\x9d\xd5\x03\x5b\xc6\xf4\x25\x98\x4c\x55\xa4\x5c\x92\x62\xdf\x82\x51\xb0\x62\x22\xcc\x83\x64\x04\xfe\xa5\xca\x2b\xb5\x17\x34\x48\x16\x95\xa9\x0a\xd0\xc9\x36\x5b\xda\x47\x6a\x76\x1b\xd4\x54\xa7\xff\x3a\x6f\x06\x3e\x39\xb9\x8f\xf7\xc3\xcf\x6d\x52\xa8\x57\x46\x1f\xff\x89\xb3\xad\xbc\x8f\x01\xec\x08\x0b\xa6\xec\x20\x00\x3b\xff\xd8\x0f\x78\x35\x16\x84\xa0\x37\x94\x97\x60\xc0\x73\x04\x1a\x24\xd2\x6b\x53\x8f\x83\x51\x86\xd6\x10\xd6\xbc\xc0\x7d\x7a\x34\x26\x50\xc1\x21\xf3\x54\x14\x2b\x3b\x04\x38\x18\x5d\x5d\x4c\x9a\x17\xb1\x7a\xcf\xbe\x1f\x1e\x1d\x93\xbd\x0d\xb9\xd4\x64\xd7\xd6\xf6\xad\xd8\xd1\x52\x71\x26\xbf\x1f\x1e\xbd\x8f\xbc\x42\x35\xbe\x30\xf7\xd7\x61\xbf\x93\x21\x1e\x1e\xc9\x10\x73\x1d\x61\xd9\x19\xa0\x39\xdc\x1c\x43\x8f\xe0\xb9\xf2\x59\xb5\xbb\x06\x13\xa5\x6f\x4f\xc8\x94\x96\x09\xaa\xca\x90\xbf\xfd\xcd\x7c\xf1\x50\x0b\x77\x50\x21\xe2\x48\xff\xd6\x80\x1f\x4c\xfc\x0a\x31\x30\xd1\xd5\x46\x82\xcf\xc5\x70\x64\xaf\xfe\x05\xbe\xc1\x18\x44\x47\x00\x8e\xcb\x96\xab\xd9\xd2\xc1\x8d\x26\x35\xa3\x92\xed\xdf\x2b\xdc\xd4\xb4\xe4\x8d\xa1\x8a\x3d\x5d\x87\x49\x3f\x98\x57\xe3\x68\x1c\x93\x13\xf3\xd7\x49\x5c\x2f\xe6\x38\xdb\x17\x1d\xc3\xa6\x2b\xfe\x71\x50\x4f\x3f\x49\x39\x2c\xfe\xab\xe6\x1b\x4d\x91\x1d\x5d\x5f\xf2\xea\x03\xd6\x2b\x39\xa0\x6b\xf6\xdd\xfb\x85\xd1\xf8\xc6\x64\xa8\x09\xf0\xe0\xaa\x13\x99\x8d\xb8\x6b\x05\x0a\xff\xf3\x39\xfd\xfa\xe8\x16\xa4\xe3\x8e\x79\x4a\x3d\x5a\x9f\x98\xd2\xaa\x62\xf5\xe5\x8a\x2e\x18\x39\x8d\x08\xe9\x15\x2b\x78\x0b\xf1\xcc\x79\xc9\xc6\x51\xf3\x3f\x4c\x26\x6f\x2e\x78\xc9\xf2\x3d\xf4\x67\x53\x97\x63\x32\x58\x2a\xb5\x96\xe3\x93\x93\x6a\x4a\x4d\xa8\xda\x68\x26\x56\x27\x52\x51\xc5\x67\x27\x7c\xb5\x38\x51\x62\xfd\x58\x7f\xff\xb8\x14\x0b\xf1\x78\x29\x6a\xfe\x8b\x96\x11\xca\xc7\xdb\x25\x57\x6c\x24\x6f\x16\x83\xec\x18\x2d\xbb\xbf\xd2\xeb\x30\x67\x9a\xeb\x95\x9e\xc8\x9b\xc5\x7f\x7c\x5c\x95\x29\x94\x14\xe7\xa0\x16\xfe\x75\x43\x6b\xf6\xbf\x08\x49\x73\x7a\xc3\x67\xa2\xb2\xff\xff\x75\x31\xd2\x83\xe9\x20\xd1\xe5\xd7\x88\x66\xf6\xc1\xd5\xb3\xb3\xc7\x13\xb1\x7e\xac\x0f\xcb\x20\x3f\xcb\x82\x61\x44\x0a\x26\x44\xbb\x7a\x76\xa6\x0f\x17\x81\x34\x22\x5c\x92\x9d\xd8\xd4\x90\x89\x0c\x33\xc9\x88\x6d\xa5\xc5\xab\xb2\x3c\x46\xc7\x5d\x4d\x0b\xcd\xa7\xe7\x7c\xc6\x69\x49\x0a\xbe\xe0\x8a\x96\x2e\xc5\xda\xb4\x64\xee\x41\x9d\x06\xac\xbb\xfc\x7c\xf5\xec\xec\x91\x24\x0b\xf4\x83\x29\x93\xf3\x41\xff\xa2\xff\xc5\x6a\xd9\x32\x4d\xf6\x51\xb1\xba\xa2\xe5\x8f\x6f\x5f\xc6\xbb\xfd\xa2\xf9\x69\xd8\xb2\xa5\x83\x96\x2d\xf2\x68\x6e\xec\xff\x91\x6f\xed\x1d\xe3\xb1\xff\x47\x0b\x6c\xa1\x91\x22\xc7\x1d\x0c\x6d\xa0\xb6\x5c\x29\x56\x0f\x7a\x2d\xc9\x34\x06\x12\x6d\x96\xd7\xb6\x34\x80\x5f\x70\x39\x13\x75\xd1\x0f\xbe\x69\x0c\xf0\x79\x75\xc3\x15\xeb\x3b\x0c\xaf\xa4\xa2\x8b\x9a\xae\xfa\x0d\xb4\xdd\x6e\x47\xae\x4b\xb2\x9c\x3c\x9f\xee\x71\x64\xda\x58\xb5\x2f\x65\xe5\x0b\xda\x69\xf6\x53\x43\xab\xdd\x5b\x53\x76\x6c\x4c\x9e\xd3\x35\xc5\x14\xb6\xdf\x7d\xf5\x29\xbc\xae\x6c\xa3\xcf\xdf\x93\xd3\x56\xac\x2c\x98\x3a\xc3\x60\xa5\xa1\xbd\xae\x70\x26\xbb\x33\xcc\x96\x07\xea\xbe\x1d\x84\x33\x48\xa7\xde\x31\xd4\x30\x5c\xd5\x82\xa9\xb7\xe1\x94\xdf\x38\x79\x61\x78\xe4\x95\x4a\xf7\x3f\x59\xae\xe2\xf0\xd3\xce\x2e\xdf\xb5\xfe\xa2\x3f\x39\x70\x2d\x7c\x29\x9c\x8c\x45\x75\x84\xfb\x76\x4a\xb3\x9f\xd9\x46\x8d\xc9\x93\xd1\x93\xff\xdc\xdf\x34\xe1\x6f\x36\x49\xd2\x8a\xd6\x1f\x98\x5a\x97\x74\xc6\xec\x04\xf2\xec\xdd\x7e\xf2\x94\xa9\x3f\xa9\xc1\x2f\x6c\xdf\x23\x36\xf0\x2e\xda\x55\x46\x93\xb3\x8b\x84\x74\x4f\xb4\xe4\xbf\xd0\xc0\xfe\xfe\x65\x46\x85\xff\x25\xba\x34\x18\x28\xcd\x2c\x58\x93\x77\x18\xd3\xa7\x35\x02\xbc\xd6\x77\xe3\x3a\xf1\x4f\xc2\x9f\x5d\x02\x8f\x50\x5d\x46\x85\xda\x3e\x82\xce\xfe\x14\xd7\x23\x74\xda\xb5\x89\x18\xf2\xf5\xea\x46\xf3\x86\x37\x52\xc9\x4f\xf0\x8c\xe7\x7a\xb3\x5e\x97\x3b\x98\x62\x60\x2e\xdb\xd8\x1a\xfa\x61\xd6\xa9\xb8\x68\x46\x36\x94\x11\xeb\xb1\xfb\x82\x76\xbe\x64\x0e\x96\xca\x68\x55\x26\x8e\xf2\xb5\xe5\x0a\x14\xed\xe5\x92\x50\xe2\xb8\xce\xce\x3d\xe1\xc9\x24\xeb\x0d\x26\x19\x30\x2a\x03\x69\x98\x5a\x2c\xb2\xcd\xed\x02\xb9\x94\x9b\x48\x95\x68\x5f\x45\x78\xb2\xa9\x6a\xd7\x81\x1e\x34\x07\x2e\xde\x0b\xb0\xe1\x41\x95\xd9\x03\x77\x21\xa9\x85\x1f\x54\xc0\x77\xb3\x36\xc7\x0c\x7e\xb4\x4f\x4a\x3e\x3f\xf8\xbf\x01\x00\x00\xff\xff\x29\xed\xfa\x7d\x1d\x2b\x01\x00" func topshotCdcBytes() ([]byte, error) { return bindataRead( @@ -133,7 +133,7 @@ func topshotCdc() (*asset, error) { } info := bindataFileInfo{name: "TopShot.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7e, 0x1d, 0xb, 0x4, 0x59, 0xe6, 0x9a, 0x3f, 0xfc, 0x10, 0xc, 0xa0, 0x7e, 0x9f, 0xcb, 0xc3, 0x86, 0xe8, 0xe, 0x26, 0xf4, 0x3c, 0xf4, 0x52, 0x8a, 0x7, 0xb1, 0x2f, 0x44, 0xf6, 0x14, 0x5c}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x3f, 0xb, 0xed, 0x95, 0x5f, 0x30, 0x5c, 0x36, 0xca, 0xb3, 0xb9, 0x27, 0x8, 0x16, 0x9f, 0x41, 0xb, 0x62, 0x7f, 0x7d, 0xc8, 0xa4, 0x39, 0x84, 0xdd, 0xd0, 0xc5, 0x79, 0xe4, 0x1a, 0xa5, 0xfa}} return a, nil } diff --git a/lib/go/test/subedition_test.go b/lib/go/test/subedition_test.go index c095546..f53f235 100644 --- a/lib/go/test/subedition_test.go +++ b/lib/go/test/subedition_test.go @@ -378,7 +378,7 @@ func TestSubeditions(t *testing.T) { expectedCollectionSquareImage := "https://nbatopshot.com/static/favicon/favicon.svg" expectedCollectionBannerImage := "https://nbatopshot.com/static/img/top-shot-logo-horizontal-white.svg" expectedRoyaltyReceiversCount := 1 - expectedTraitsCount := 6 + expectedTraitsCount := 8 expectedVideoURL := "https://assets.nbatopshot.com/media/1/video" mvs := getTopShotMetadata(t, b, env, topshotAddr, 1) diff --git a/lib/go/test/topshot_test.go b/lib/go/test/topshot_test.go index d6a46f7..60bfd7e 100644 --- a/lib/go/test/topshot_test.go +++ b/lib/go/test/topshot_test.go @@ -395,7 +395,7 @@ func TestMintNFTs(t *testing.T) { expectedCollectionSquareImage := "https://nbatopshot.com/static/favicon/favicon.svg" expectedCollectionBannerImage := "https://nbatopshot.com/static/img/top-shot-logo-horizontal-white.svg" expectedRoyaltyReceiversCount := 1 - expectedTraitsCount := 7 + expectedTraitsCount := 9 expectedVideoURL := "https://assets.nbatopshot.com/media/1/video" mvs := getTopShotMetadata(t, b, env, topshotAddr, 1)