diff --git a/contracts/TopShot.cdc b/contracts/TopShot.cdc index 81fcb08f..7bd3efc3 100644 --- a/contracts/TopShot.cdc +++ b/contracts/TopShot.cdc @@ -174,6 +174,16 @@ pub contract TopShot: NonFungibleToken { self.playID = TopShot.nextPlayID self.metadata = metadata } + + /// This function is intended to backfill the Play on blockchain with a more detailed + /// description of the Play. The benefit of having the description is that anyone would + /// be able to know the story of the Play directly from Flow + access(contract) fun updateTagline(tagline: String): UInt32 { + self.metadata["Tagline"] = tagline + + TopShot.playDatas[self.playID] = self + return self.playID + } } // A Set is a grouping of Plays that have occured in the real world @@ -683,8 +693,8 @@ pub contract TopShot: NonFungibleToken { .concat(" ") .concat(playType) } - - pub fun description(): String { + + access(self) fun buildDescString(): String { 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() ?? "" @@ -696,6 +706,14 @@ pub 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 + pub 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 pub fun getViews(): [Type] { return [ @@ -943,6 +961,16 @@ pub contract TopShot: NonFungibleToken { return newID } + /// Temporarily enabled so the description of the play can be backfilled + /// Parameters: playID: The ID of the play to update + /// tagline: A string to be used as the tagline for the play + /// Returns: The ID of the play + pub fun updatePlayTagline(playID: UInt32, tagline: String): UInt32 { + let tmpPlay = TopShot.playDatas[playID] ?? panic("playID does not exist") + tmpPlay.updateTagline(tagline: tagline) + return playID + } + // createSet creates a new Set resource and stores it // in the sets mapping in the TopShot contract // diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 9146b152..1e2c777c 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // ../../../contracts/MarketTopShot.cdc (12.958kB) // ../../../contracts/MarketTopShotOldVersion.cdc (11.029kB) -// ../../../contracts/TopShot.cdc (69.597kB) +// ../../../contracts/TopShot.cdc (71.066kB) // ../../../contracts/TopShotLocking.cdc (5.506kB) // ../../../contracts/TopShotMarketV2.cdc (13.008kB) // ../../../contracts/TopShotMarketV3.cdc (14.787kB) @@ -117,7 +117,7 @@ func markettopshotoldversionCdc() (*asset, error) { return a, nil } -var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7d\x73\x1b\xb9\x91\x30\xfe\xbf\x3f\x05\xac\xfb\xd5\x9a\xca\x51\xa4\x9d\xcd\xed\xaf\x1e\x96\xb5\x5e\xd9\xb2\x36\xba\xd8\xb2\xcf\xd2\x66\xeb\xca\xe5\x7a\x16\xe4\x80\x24\xa2\xe1\x80\x01\x30\xa2\xb9\x3e\x7f\xf7\xa7\xd0\x78\x7f\x99\x21\x65\xc9\x9b\xcb\x56\x58\xa9\xac\x45\x02\x8d\x46\xa3\xbb\xd1\xdd\x68\x34\xc6\x7f\x78\x80\x10\x42\xa7\x44\xcc\x38\x5d\x4b\xca\x9a\x09\x7a\x41\x1a\xc9\x71\x8d\x2e\x57\x98\x4b\xf4\x82\xa9\xbf\x66\x12\xcd\x19\x47\x17\xcf\x4f\xd0\x15\x5b\x5f\x2e\x99\x7c\x00\x1d\xaf\x96\x54\x20\x01\x0d\x67\xb6\xa1\xfa\x07\xa6\x8d\x40\x72\x49\xd0\x8c\x71\x82\xe6\x6d\x33\x53\xb0\x71\x4d\xe5\x16\x00\x41\x67\x03\x0d\x29\x70\x43\x34\xe3\x04\x4b\x52\xa1\xe9\x16\x9d\xe2\xf5\x9a\x70\xf4\x0a\x4f\x85\x1d\x86\x78\xf8\x2b\xdc\xe0\x05\xd1\xe0\x2b\x2c\x31\xc2\x42\xb0\x19\x85\xce\x1b\x2a\x97\x08\xd7\x35\xfc\xb8\xae\xf1\x56\x20\xdc\x54\x48\x10\x29\x00\x90\x5c\x62\x89\x30\x27\xa8\x15\xa4\x42\x58\x20\x49\x56\xeb\x1a\x4b\x22\x00\x2d\xd5\xeb\x35\x5b\x91\x46\xa2\x8b\xb3\x2b\x33\xf8\xcf\x4b\xd2\x20\x8c\x1a\xb2\x41\x6f\x6b\xbc\x45\x1b\xdc\x48\x81\x24\x43\x53\x82\x70\x55\x91\x4a\xfd\x5b\xf5\xe4\x64\xc6\x78\x25\x86\x08\x37\xe8\xa4\x5a\xd1\xc6\xcc\x49\x0f\x1d\x40\x10\x92\xb7\x33\xa9\x91\x51\xf4\x93\x8c\x93\x0a\xd1\x06\xa0\xc4\xd4\x1c\x39\x02\x34\x01\x58\x6c\x41\x03\xcc\x4b\x22\xc5\x08\xfe\x5f\x75\x13\x54\x48\xc4\xe6\x08\xa3\x75\x3b\xad\xe9\x2c\x1a\x0d\x80\xb9\x05\x32\x0d\x68\x33\x67\x7c\x85\xd5\x0a\x21\x3c\x65\xad\x44\x58\x51\x6c\x08\xa4\xc3\x68\xcd\xe9\x8d\x1a\x8a\x13\xc1\x5a\x3e\xd3\xb4\xd3\xd4\x64\x68\x45\x1b\x09\x48\xac\x80\x6c\x02\x4d\xb1\xa2\x2c\x9b\xcf\x15\x0e\x7a\x05\x60\xe4\x25\xbe\x21\x68\x4a\x48\x83\x6a\xda\x5c\x7b\xa2\x5d\x92\x60\x8e\x08\xc3\xfc\xdc\x48\x4b\xac\x97\x79\xcd\x36\x84\xab\x1e\x15\x83\xd5\x65\x73\xf8\x9a\xae\xd6\x8c\x4b\xdc\x48\x84\x81\xbf\x34\xa1\xcb\x74\x34\xcb\xa8\xe0\x0b\x58\x42\x05\x6e\xa6\x80\x59\xee\x14\xaa\xa7\x9e\xb9\xe1\x15\xb2\xd5\x2d\xe4\x92\x50\x8e\xa6\x8c\x73\xb6\xb9\x24\xd2\xf5\x50\x20\x16\x44\x91\x8b\x93\x39\xe1\xa4\x99\x11\x64\x09\x03\x80\x2c\x2e\x1e\x0b\xb5\x90\x43\x0b\xba\x49\x11\x60\x06\x75\x22\x51\x2b\x68\xb3\xd0\xa4\x73\xc0\x0d\xa1\xce\x55\x2b\xaa\x66\xb1\x1d\x16\xa6\x0a\xcb\x46\xa5\x40\x15\x99\xd3\x86\x54\x8e\x9c\x6a\x82\x92\x40\x13\x80\x03\xc2\xb2\x50\x7c\x84\x24\xc1\xab\x0d\xe3\xd7\x43\xf4\xb7\x56\x48\x54\xd3\x6b\x02\x90\xcf\x9b\x8a\xe2\x06\xa3\xb7\x78\x46\xb8\xd0\xa3\x2d\x34\x53\x4b\x90\x5f\xd5\x11\x80\x29\x8e\x53\xa4\xa2\x2b\x32\x82\x2f\xbc\xec\x58\xd6\x50\x72\xa7\xf8\x85\x54\x86\x02\xea\x0b\xda\x50\x49\x71\x4d\x7f\x75\xd2\x6b\x24\xf0\x54\x89\xb6\xe1\x5d\xdc\x68\x86\x53\x1d\x38\x91\x2d\x6f\xb4\xa2\x50\xe8\x00\x44\x3e\x2a\x28\x0a\x5c\x0b\x66\x88\x20\x10\x46\x2f\x58\x5d\x13\xbd\x6e\x96\x22\x23\xad\xc0\xa8\xd2\x12\x88\x4d\xff\x46\x22\x39\x21\x37\x84\x6f\xad\xbe\x53\x0a\x01\xb1\x4d\x43\x38\xda\xd0\xba\xd6\x42\x6b\xd6\x97\x72\x84\x67\x33\xd6\x36\xd2\x89\x05\xe8\x28\xf3\x9b\xea\x39\x73\x83\x07\x98\xae\x30\x6d\x9c\x06\xb4\x20\x34\x78\xc0\x1d\x64\x46\xad\x24\xdb\x34\x56\x2f\x79\x40\x86\xdb\x25\x30\x52\x2b\x88\x1a\x77\xc9\xea\xca\xf5\xb0\x74\xf7\xf2\xd7\x30\x89\xb6\x44\x6a\x39\x14\x44\x0b\x01\x56\x9d\x2d\x01\x2f\x98\x24\x13\x74\x02\x13\x54\x42\x3f\x5b\xe2\x66\xa1\x38\xd1\x33\x29\xe0\xb7\xc6\x8d\xd2\x1c\x73\x45\x38\xda\xdc\xe0\x9a\x56\x08\xf3\x45\x0b\x38\x52\x8d\xda\x9a\xb3\x1b\xaa\xf4\x23\xe3\x88\x35\x44\xb1\x88\x42\x6d\xcd\xc9\xd1\x8c\x35\x15\x35\x3c\xcf\xd1\x9a\x09\x60\x5f\xfb\x15\xe6\xa4\x79\x24\xd1\x4a\xa9\x06\x05\xe8\xcc\x8d\x0d\x53\xa9\x18\xfc\xca\x2a\x3a\xdf\x1a\x34\xf5\x92\xd0\xd5\xba\xde\x1a\x06\x41\x8f\x15\xe4\x86\xd6\x7a\x2d\x95\x4c\xc8\x25\x13\x04\xcd\xb0\x20\x02\x35\x44\xab\xa0\xa9\x52\x32\x4d\x55\x7b\x7e\x52\x22\xe9\xc8\x71\x0e\x0a\x1a\x16\xc3\x2b\x1b\xc9\x10\x27\x2b\xb2\x9a\x2a\x9d\xe4\xb8\x45\x2d\xe8\x8f\xac\xae\x48\x83\x2e\x01\xa7\x9f\x31\xe7\x94\x71\x81\xa6\x35\xd9\x20\x8c\xbe\x3d\x7a\x82\x6a\x82\x9d\xa2\xff\xe3\xe3\x27\xdf\x81\x0c\xcd\x69\x83\x6b\x31\x7a\xf0\xe0\x0f\xe3\x07\x0f\xf4\x30\x6a\xca\x0b\x3a\xad\xc9\x15\xbb\x26\x0d\x9a\x73\xb6\x42\x8f\x3f\x9e\xfd\x74\xf1\xe3\xf9\xf3\x57\x2f\xaf\xde\xfc\xe5\xe5\xc5\xc9\xe9\xe9\xbb\x97\x97\x97\xb6\xc3\x05\x6b\x8a\x7d\x2e\xce\xae\x92\x96\xaf\x89\xc4\x6a\xdf\xfc\x2b\x25\x1b\x61\x9b\xbd\x7e\x79\x75\x72\x7a\x72\x75\xf2\xd7\xf3\x97\x3f\x5f\x26\x1d\x8c\x04\xbc\x62\xb3\x6b\xe0\x04\xdd\xe3\xea\xcd\xdb\xcb\x3f\xbf\xb9\x7a\xf5\xe6\xc5\x5f\xce\x2f\x7e\xb4\x5d\x1e\xac\xdb\xa9\x97\x40\xd3\x73\x92\x63\xf7\x09\x68\x36\x1e\xa3\xa3\xfb\xf9\x58\x70\x56\x5a\x2b\xb2\xae\xd9\x16\xb8\xf1\x06\x73\x8a\xa7\xb5\xd9\x86\xef\x71\x48\x37\xe6\x52\xed\xc3\x52\xe9\xcf\x48\xdb\x2b\xd6\xd1\x78\x28\x19\x68\xb4\x4c\xb4\x53\x25\x4a\xe8\x42\xb7\x1f\x1c\xa2\x09\xba\x94\x5c\xd1\xf5\x93\xe5\xdc\xff\xef\xd3\xc5\xcb\xab\x9f\xdf\xbc\xfb\xcb\x67\xf4\x39\x1a\x04\x57\x15\x27\x02\x6c\x8f\xcd\x92\xce\x96\x88\xb3\x2d\xae\x25\x25\x02\x89\x25\x6b\xeb\x4a\xb1\x73\x45\xd6\x4c\x50\x69\xb6\x68\x3b\xde\x3b\x68\xb9\x3d\xd1\x10\x60\x58\xf3\x6f\x3f\xae\x5b\xd3\x77\x6f\xfe\xfb\xe4\xd5\xd5\x7f\x9b\x35\x4d\x90\x58\x63\xb9\x74\x9b\x77\x3b\x25\x5a\x68\x8d\x65\xe2\x76\xee\x29\xa9\x99\x56\x1c\xa6\xe9\x49\xa0\x20\xc7\x63\x83\xff\xbe\xd4\xf2\xe3\xc0\x30\x97\x92\x71\xbc\x20\x6f\xb1\x5c\x1a\x02\xba\xbf\xfd\x6c\xc6\x42\x7f\x3b\x36\x2c\x91\xc0\xf0\x93\xba\x2f\x76\x48\x38\xd0\xcd\xeb\xe5\x8d\xd2\xc2\x5f\x8b\xf9\x5e\xae\xa8\x04\xcb\x57\xed\xb4\x8a\x9e\xd9\xf8\x54\x58\xdb\xda\xd1\x94\x28\x94\x9c\x69\x7f\xee\xb7\xe0\xc1\x61\x19\x70\x6e\xbc\x76\x42\x55\x8d\x5e\xe8\x5f\x06\xb4\x9a\xa0\x9f\xce\x1b\xf9\xed\x1f\x87\x4a\x9b\x83\xda\x99\xa0\x4f\x9a\xe1\x27\xfa\x3f\x9f\x0f\x7b\x46\x14\x84\x2b\xee\x56\x76\x20\xec\x59\x92\xd3\xc5\x82\x70\xad\xad\xb1\xb1\xe7\x12\x04\x2e\xc8\xe6\x12\xba\x5d\x4a\xcc\x15\x16\x0d\xd9\xbc\x68\x39\x27\x8d\xd4\xdf\x5b\x9c\x82\xb9\xc2\x12\x81\x0b\x70\x49\xe4\xd1\x3b\x52\x83\x37\x11\x5a\x95\xe3\x71\x0f\x9a\xca\x28\xec\x24\xc8\x25\x91\x96\x1e\x82\xc8\xf3\x53\x4f\x12\x91\xa0\xb3\x83\xf2\x6a\x27\xb2\xfe\x06\x56\x60\x0b\x94\x3f\x51\x0d\xae\xd8\x25\x91\xe9\x60\xca\x16\xf7\x7f\x77\x0d\x66\x07\xe2\x44\x52\x45\x66\x50\xf6\x30\x18\x6c\xa1\x33\xdc\x28\x1b\x62\x6a\x1c\x28\xe3\x00\x14\xf0\x78\xa7\xfb\x9f\x71\xb6\xda\x89\xcb\x10\x35\xed\x4a\x9b\x37\x3b\x89\x61\x28\x5d\xb3\xd9\xb5\x32\x23\x57\x04\x37\x4a\xc9\xbc\x05\x47\xc3\x63\x07\x74\xca\xd7\xe1\x15\x74\x8b\xb1\xe9\x1a\xc9\xd8\x5b\x54\x18\x9b\x35\x20\x45\x02\x58\xb7\x7c\x0d\xad\x06\xda\xe8\xb2\xe0\xbf\xfb\x53\x3e\xd9\x02\x13\xe0\xfa\xa2\x55\xe6\x44\xf0\xad\xd3\x56\x21\xa6\x05\x7e\xf5\x56\xed\x11\xbf\x0d\xdb\xae\xdc\xf4\x94\xd5\x5d\x71\xbc\x69\xec\x0c\x3d\xc8\x64\xa2\x3f\x9b\x96\x4e\xae\xd5\xf4\x54\x27\xb7\x99\x3c\xeb\xa2\xa6\x1f\xce\xed\x4f\xca\x1b\x61\x7d\xc3\x9d\xea\x96\xd1\x68\x92\x85\x63\xed\x5c\xba\x8a\x08\xc9\xd5\x8e\x52\x5c\xb2\x53\xfb\x6b\x30\x44\x27\xd0\x60\xaf\xeb\x16\x75\xd7\xc6\x49\x7c\x61\x1d\x87\xa8\xc1\x2b\x62\xf7\xfd\x5e\xcd\xb8\x17\x2e\xb1\x43\x2d\xd6\x64\x46\xe7\x74\x66\xe6\xd8\x89\xa1\xd1\x14\xba\x55\x81\x6d\xcb\x98\xef\x50\x2a\xbf\xd1\x9e\x7a\x54\x93\x1b\x52\xa3\x39\x25\x75\x25\x46\x81\x75\x22\x88\x8d\x6e\x28\x29\x68\x71\x8d\x6e\x70\xdd\x12\xe1\x03\x3f\xfd\xc1\x96\xaf\xb4\x49\xeb\x7d\x47\x23\x01\xae\xfb\x25\x38\x61\xca\x44\x52\xd6\xdc\x28\x69\xa7\x14\xbd\x42\x6a\x46\xd6\x36\x4a\xd4\x54\x74\x06\x61\x2a\x8c\x16\x9c\xb5\x6b\xe5\x4c\x41\xc4\x47\x2e\x39\x6b\x17\xcb\xc0\xf1\x1e\x8f\xd1\x6b\xdc\x6c\x4d\x40\x08\x37\x88\x7c\xa4\x42\x22\x35\x7f\x68\x35\x44\xd3\x56\x22\xd6\xd4\x5b\xf0\xca\xf4\x26\x34\x72\x7c\x72\x83\x39\x9a\x95\xb6\x4b\x37\x9b\xbf\x1a\x83\x1a\x09\xfa\x2b\x41\x15\xd5\xb1\x3d\xbe\x55\x38\x05\x26\x82\x09\x7b\xcd\x66\xca\xe0\x14\xa4\x9e\x1f\x02\x6c\xc5\x32\xca\xb7\x17\x13\xf4\x49\x03\x9e\x40\xaf\xcf\x7b\xc1\xbf\x24\x61\x60\xa0\x63\x08\xa1\x1b\x85\x23\x98\x7e\x7b\x0f\xe2\x83\x26\x9d\x43\x88\x09\xfa\x21\x84\x1f\x9b\xc9\xe7\xa7\x2e\xbe\x67\xb7\x4a\x13\xb2\x83\xbd\x6a\x84\x02\x5d\xce\xb7\xb0\x30\xc1\xf6\x6b\xd4\x8b\x15\x30\xe0\x08\x21\xe8\xa2\x21\x95\xeb\x68\xe4\xdd\x9a\x07\x8f\x84\x1a\x53\xfb\xb9\x04\xf4\x02\x6d\x66\xca\x4f\x6d\x4c\x54\xf5\x49\xbc\xc6\x0d\xf9\x28\xdf\x46\xe2\xbb\x27\xfe\x3a\xdc\x18\xa1\x5d\xb0\x7f\xc6\x63\xad\x2b\x22\xd4\x03\x94\x05\x91\x5f\x82\xf1\x65\xa8\x7f\x22\x84\x25\x93\xb8\x56\x96\x84\x72\xcb\xd9\x1c\xe2\x2a\x42\x29\x8d\x20\xa0\x9b\x86\x22\x13\x84\x9f\x93\x19\x6e\x05\xd1\x4d\x95\xe4\x80\x3b\x65\xf6\x88\x21\xa2\x12\x55\x8c\x88\xe6\x91\x44\x0d\x51\xfc\x80\x39\xad\xb7\x60\x83\x78\xd1\xb6\xb0\x38\x99\xab\x5d\x4d\xc7\x2f\x53\xdc\x60\x00\x6a\x24\x93\x34\x33\x62\xe2\x6e\x40\x9c\xd6\x05\x16\x2c\x2c\x8f\xb0\x31\x45\x24\x43\x15\x96\x64\x84\x4e\x6a\xc1\x5c\x2c\x7b\x51\xb3\x29\xae\xed\x56\x7b\x7e\xaa\x0d\x04\xd5\x85\x36\x8b\x98\x94\x80\xd0\x65\xbb\x5e\xd7\x5b\xab\xf1\x7f\x63\xdd\xfd\x82\xad\xb4\x1d\x80\xae\xb6\x6b\xa2\xc3\x74\x34\xb4\x5b\xee\x1d\x0f\xd8\x1d\xd4\x16\x00\xa4\xfe\x43\x30\xe2\x1f\x80\x50\x0a\x8f\x50\x47\x5b\x84\x2d\x00\xc5\xa8\x4c\x2e\x89\x0b\xf6\x09\x1b\x79\x1b\x19\xe0\x01\x48\x54\x31\x88\xb6\x99\xdd\xc8\xc1\xd0\x9b\x92\xd9\x84\xf4\xde\xa4\xf5\x31\xc4\xd1\x84\xc4\xcd\x8c\xa0\x01\xe3\x26\x1a\x79\xa8\xb8\xc5\xc4\xce\x24\x8c\x01\x58\x5a\x70\x86\x47\x83\xa3\x93\x08\x73\x3d\x19\x17\xee\x8f\x46\xfd\x6a\x7b\x9d\x73\x55\x94\x7d\xe3\x0e\x1e\x96\xac\xae\x84\xb3\x74\xc2\x23\x1b\x17\x11\xd0\xc1\x5f\x67\xbe\x5c\x3c\x3f\x01\xed\x37\xf4\xd1\xe8\x9a\x2c\x48\x53\x29\x25\x6d\x78\x1c\xcc\x21\x0b\xe0\x1d\xde\xa2\x93\xba\x26\x0d\x5a\x52\x2d\x4a\xdf\x82\xc2\xa1\xba\xf3\x9f\x09\xd6\x3e\xcc\xe5\xba\xe5\x22\x08\xc2\x7d\x6b\x02\x70\x68\x81\x57\x04\x7d\x67\xc1\x31\xae\xc1\xbf\x82\x25\xb9\x94\x64\xbd\x24\x8d\x60\x8d\x0e\xe7\x99\xee\x04\x83\x3c\xbf\x22\x53\xce\x1a\xf4\x9f\x78\xe5\x09\xeb\xf6\xe2\x40\xfd\x98\xd0\x6e\x1d\x9c\x17\x60\x24\x68\xb3\xa8\xf5\x69\x15\x32\xe7\x1d\x3a\xce\xcc\xe6\x16\x06\x95\x9e\x76\x23\x1d\x85\xd1\x67\x5b\x9c\x98\x43\x9c\x7a\x6b\xf6\x28\x3a\xad\xc9\x10\x09\x86\x70\xb3\x55\x8c\x33\xc3\x8d\x57\x49\xb8\xd2\x21\xf3\xc2\x32\xa4\xe4\x07\x74\xce\x4f\xc3\xc9\x28\xe5\x61\xbc\x7f\x58\xe4\x4f\x7a\xcd\x03\x1d\xdc\x36\xf4\xef\x2d\xec\x1d\xf6\x34\x4d\x35\x74\xad\x14\x80\x9a\xc8\xc4\x6a\x8c\xa0\x5c\x2a\x1e\x15\xee\x08\xcf\x63\x0a\xe7\x52\xf6\x54\x4f\xd1\x09\x6c\x00\xe5\xfb\xad\xf0\x7a\x4d\x9b\x45\x8c\x8b\x8e\xea\x2b\x09\x04\xc6\x61\xcd\x02\x49\xc2\x57\x68\x83\xb7\x10\x8f\x77\x80\x61\x49\xa6\xd6\x2e\x1c\xa1\x73\xb5\x2d\x61\x38\x17\x64\x1c\xf3\x6d\x08\x76\xc6\x1a\x33\xff\xcd\x92\xd6\x04\x6d\x08\x9a\xd3\x45\xcb\x09\xd2\x87\x66\x53\x22\x25\xe1\x30\x86\x3e\xab\x72\x6b\x16\x40\xc9\xa8\x91\x9b\xff\xc6\x33\xf8\xec\x29\xa3\xd4\xca\xa0\xbb\xe1\xa1\x89\xa7\x3a\xd0\x9c\x24\xdf\xa8\x8f\xc3\xa6\x26\xcd\x42\x2e\xd1\xc3\x63\xf4\x78\x82\x0e\x2e\x6c\x7c\xc1\xd1\xc4\xfb\xd1\x64\xb5\x96\xdb\x83\x08\xd2\xe7\xe8\x2f\x65\x11\x8d\x8c\x91\x72\x6c\x75\xfd\xc8\xdb\x16\x79\x63\x37\xca\xb1\x1b\xf0\x41\x0c\xdb\x1b\x52\x27\xd6\xb2\x30\x56\xaf\x5a\x6e\x63\x64\x86\x7b\x39\x9b\xcd\xda\xc0\xa8\xe7\x04\xd7\x68\xc3\x78\xed\x36\x76\x68\xba\xc2\xd7\x04\xb5\x6b\x38\xad\xd3\x8e\xb2\xb3\xa4\xed\xa1\xca\xb4\x56\xea\x18\xf4\x8d\x32\xf0\xd4\x4f\x53\x2c\xc8\x14\xd7\x75\xa0\x16\x5e\xe3\x05\x9d\xa1\x19\xe6\x95\x18\xa1\x13\x4d\x3b\x6f\x67\xd3\x06\xad\xda\x5a\xd2\x75\xad\xcc\xca\x39\xc8\xb9\x04\x70\x4e\xe5\x7a\x73\x5f\x1b\xb3\xd4\x70\x73\xf9\x50\x18\x6b\x3f\xc7\x1e\x7a\x66\xce\xca\x89\x13\x74\xf4\xf7\x16\x8c\x32\xdd\x4a\xc0\x61\x45\x70\xb8\xeb\x36\x21\x7f\xc6\xab\xb6\x8c\x19\xae\x6b\x45\xd8\x1b\xcc\x29\x6b\x05\x5a\x00\x17\x43\x8c\x25\x52\xd0\x58\xcb\x12\x69\x72\x54\xd0\x1b\xe5\x4d\x48\x77\x80\x6b\xcf\x6d\xf1\x94\xc2\x91\x7f\x60\xb2\x9a\x63\x1b\xe5\xa0\x00\x17\x98\x35\xb3\x87\xcc\xa1\xe9\x3d\xea\x50\x3e\x96\x6c\xb1\xfe\xf9\x29\xd3\x3d\x36\x52\x13\x0a\x9b\xc8\xed\x47\xd3\xff\x42\x69\x7f\x33\xb1\xb0\xe7\x78\x8c\xc8\xc7\x11\x3a\xb8\xa2\x2b\x22\xc2\x30\x2b\x67\x8d\x64\xe8\x1d\x5e\x4b\xc6\x05\x9a\x2d\xd9\xb5\x67\x41\x25\x11\x6c\x3e\x17\x07\x19\x02\xa1\xeb\x1f\x6b\xbe\x7d\x7c\x44\x74\x8f\x7e\x22\xba\x9b\xaf\x18\x53\x35\x77\x14\x9d\xda\x0a\x67\xbc\x9f\xa2\x52\x3d\xac\x92\xfa\xde\xe9\xa8\x4b\x43\xbd\x5b\xab\x27\xed\x87\xc4\xda\x09\xfc\x88\xbc\x29\xc0\x3f\x86\x61\x4a\x70\x80\xea\x1e\x50\xe4\x26\x77\x2a\x31\xa7\xc2\xdc\xe1\x88\x54\x16\x6f\x6c\x9b\x29\xa6\xf1\x47\xac\x92\x21\x5c\x55\x60\xad\x70\xb2\x62\x37\x24\x34\xae\x84\x8d\xd3\x09\x13\x94\x85\x1c\x0c\x13\x3f\x4d\xad\x8f\xf3\x4c\x99\x58\x49\xd3\x4a\x25\x49\x50\x50\x86\x43\xe8\x79\xc8\x3c\x27\xc3\xa5\x2d\x18\xa3\x64\xc9\xaa\x6c\x54\x9f\xca\x31\x83\x20\x7d\x65\x55\xb6\x09\x5c\xdb\x61\x5c\xb6\x83\x6a\x16\x4e\x23\x52\xdc\xde\x58\x82\x3f\x95\x6c\xf9\x4d\xd5\x8c\xf6\x3a\x3c\xeb\xf6\x89\x06\x70\x4c\x00\x23\xda\x7d\xbe\x56\x1e\x17\xb8\x4b\xe1\x11\x55\x38\x5f\xd5\x5a\x6f\x18\x1a\x04\x95\x43\xd5\x7c\x43\x94\xed\x26\x9c\x55\xa3\xdc\x41\x87\x59\xae\xdb\x7d\xa6\x0e\x9c\x1e\xeb\x78\x7a\xb8\x7e\x66\x28\x1f\xc3\x76\x04\x31\xb1\xf7\xc8\xa0\x56\x80\x1a\x06\x86\x0c\xe1\x7a\xd7\xb3\x53\x0e\xc3\xd3\x54\x66\x0c\x30\x0f\x16\xb1\x66\xb3\x6b\xe1\x47\x6e\x94\x3a\x76\x58\x19\x67\xc2\x1d\x31\xa8\x79\x2b\xe9\x8f\x0d\x59\xdd\x4e\x48\x43\x4e\x3d\x78\x61\x50\x3d\x89\x93\xba\x1e\x1c\x02\x93\xaa\xa1\xd5\x3f\xb9\x39\x61\xaf\xd0\x14\xcf\xae\x8f\x24\x3b\x52\xff\x1d\xa2\x74\x05\x94\x1b\x53\x33\x9b\x4b\x34\x67\x9c\xdc\x28\xcf\xab\xa9\x94\x51\xb7\x04\xbb\x8f\x71\xe2\xbc\x74\xa5\x9d\xc0\x84\xb5\x14\x50\xaa\xc9\xf1\xac\x02\xb8\x6b\xb7\x10\xb7\xda\x2d\x4e\x38\xc7\xdb\x24\xc5\x49\xcd\x0d\xa3\x35\xe6\x52\xef\x23\x4a\xf0\x6c\x0a\x83\xe9\x66\x72\xc9\xd6\xe9\x71\x8e\x41\x60\x08\x42\x75\x7e\xaa\xf6\x60\x81\xf0\x7a\x4d\x1a\xd5\x60\x49\x78\xac\xb3\x4d\x80\xa6\x62\x44\xdb\xb8\x0b\xd8\x35\x95\xa2\xa8\x2c\x73\x29\xe8\x80\x63\xf9\x60\xc7\x83\x33\xa1\x2d\xab\x01\x7c\x90\x4e\x4c\xd0\x7b\x3d\xf3\x0f\x0f\xe2\x0d\x63\xed\x22\x7d\xe7\xa7\x66\xee\xe7\x6e\xe3\xa1\x73\x37\x5a\xe3\x37\x32\xb3\x4e\x21\xbb\xc4\x24\x29\x9f\x70\x41\xd0\x85\x0a\xb0\xf1\xf5\xd7\x73\x5c\x0b\x82\x06\x6a\xd6\x66\x2a\x87\x7d\xe0\x4c\x9b\xa1\xc6\x44\xaf\x08\x10\x9c\xb7\x24\x39\xd1\x82\x54\x97\x9d\x94\x31\x00\x83\xd0\xe2\x73\xc6\xea\xcf\x11\x85\x22\x62\x84\x0c\xad\xf7\x8b\x7a\x6b\xce\xaf\x4a\x88\xc7\xa1\x34\x3b\xff\xb6\xd1\x3d\x50\xd8\x43\xa1\xff\xd6\xf9\x81\xb8\xae\xd9\xc6\x25\xb5\x04\x52\x5c\x1a\x45\xc4\xc7\x68\xc5\xe3\xb3\xa8\xdf\x89\x5b\xc5\x06\x04\xd1\xd3\x4b\x33\x9c\x41\x4f\x32\x87\xea\x30\xec\x0e\xb9\x9a\x64\x46\x85\xc9\x9a\x53\x4d\xec\x64\x01\x13\x70\xc1\xa3\x11\xcf\xe7\xf9\x71\x5f\x11\x4f\xd0\x52\x11\x83\x76\x2b\x2a\x8d\x2c\x80\x89\xd1\xc3\xd2\x9b\xef\x2e\x2d\x31\x54\x07\x6a\xed\x35\x1a\x7a\xc5\x53\x91\x08\x7d\x13\x2f\x16\xde\x1e\x0b\x42\x7b\x6c\xee\x50\xcc\x90\xc8\x42\x7d\x4a\x3d\x39\xa7\x5c\xcf\x3f\x90\xab\xd2\xda\xa6\x07\x97\x86\xf7\x21\xec\x93\xa7\x9b\x9a\xd6\x66\x0b\x34\x90\xc4\x92\x6d\x74\xae\x56\x8d\x67\x24\xa0\xc9\x10\x91\xc5\x08\x3d\xf9\x56\xcd\xe1\xbb\xc7\x3b\x44\x45\x4f\x57\x9f\x8b\xbe\x25\x5c\x21\x1f\x88\x8d\xfe\x6f\xea\xe3\xf6\x19\x8b\xb7\x35\xe6\xb4\x6a\x3e\x46\xef\x3f\xe4\xbf\xd9\xf3\xed\x63\xf4\xa9\x60\x31\x1a\x6e\x3e\xd6\xda\xa6\x60\x26\xe6\x33\xd3\x90\xa2\xa6\xe3\x31\xd2\xc7\x80\x3e\x4b\x00\xfc\x16\xbd\xe3\x18\xc5\x08\xe9\xc9\x3a\x97\x10\x98\xcf\x5b\x62\x3a\x7d\x25\x82\x68\x27\x6d\x0f\x38\xde\x7b\x92\x7c\x40\xc7\x76\x00\x43\x44\xf5\xff\x87\x81\x55\x1a\xa9\x8e\xaa\x02\xa4\x71\x55\x09\xbb\x1f\xf9\x6d\xa8\x14\xad\x50\x86\x08\xe6\x78\x45\x94\x6f\x38\x71\x21\x1c\xb3\x13\x19\xbf\x09\x60\x5a\x0f\x76\x4a\x94\x48\xf8\x93\xf8\x02\x40\x4e\x8e\x5e\xb8\xb4\xbf\x49\xba\xc3\x01\xb4\x86\x90\xca\x65\x5b\x1b\xff\x44\xc1\x5d\x87\x81\x25\xd3\x01\x3c\x84\xa0\xbd\xd2\x12\x7a\x29\x8b\xa0\x67\xb8\x79\x64\x24\x0e\xd7\x9c\xe0\x6a\xab\x25\x2f\xda\x95\x2f\xcb\xe4\xb0\x99\x49\x86\x90\x83\xe4\x20\x74\x2f\x37\xc7\xae\xa6\x3b\x11\x7b\xaf\xa1\x7c\x40\x0f\x8f\x51\x43\xeb\x09\x3a\x78\xa1\x55\x9d\xb2\xa0\x3d\x7d\x99\x42\x4a\x1f\x9a\xb9\x03\x09\xa0\xcb\xe8\x20\x1b\xe3\x61\xc0\xcf\x39\xbc\x70\xdd\x81\x19\xe7\x92\x38\x6b\xc8\x67\xdd\x98\xdd\x2a\x87\xde\x25\x0c\x6e\x22\xc7\x76\x22\x36\x66\x09\x40\x03\x6a\x57\x99\x0d\x34\x4a\xfd\xb9\x54\xa6\x4e\x12\x62\x80\x79\x6b\xcd\xb1\x58\xb5\xa3\x48\x15\x8c\xb4\x41\x65\xd6\xea\x30\x03\xfc\x66\x6d\x7c\x7b\x80\xdc\xae\xc3\xe3\x93\x4e\x0d\xe2\xa7\x6a\x94\x45\x0a\xd5\x67\x57\x85\xfa\x56\xa7\xfa\x4a\x86\x7e\x25\x9c\xed\xa5\x60\x82\x81\x1e\xc7\x83\x90\x15\xed\x4a\xfe\xf1\xfa\xc1\x9f\xd5\xdb\xe9\x17\x28\xec\x35\x83\xd0\xaa\xc1\x45\xb2\x9c\xff\xd6\x23\x13\x45\x15\x21\xac\x8e\x10\xa1\x92\x08\x2c\xe6\xb2\x9a\x48\x39\x4d\x7f\x30\x24\x6a\xc3\x62\xef\x21\x94\x62\xe0\x50\xb0\x86\x6c\x2a\x98\x6a\x85\xd7\xc6\x56\x35\x8d\x0b\x82\x0a\x54\x4c\x25\x5d\xfd\xf7\xb0\x23\xf4\x10\x93\x54\x73\x0a\x30\x95\xfe\xa7\xb0\x06\x6a\xe8\x08\x3a\x9f\x58\x67\x74\x3f\x92\xfe\x6e\x45\xe8\x14\xef\x43\xf3\x3d\xd4\x72\xe8\x63\x16\x40\xee\xa1\x98\xa9\x08\x5c\x1d\xe2\xf6\xb2\xc0\x30\x47\x03\x7c\x83\x69\x0d\xa7\xec\x81\x28\xc5\xf6\x7a\xb6\x78\x9e\x5a\x5f\xa4\x54\x8b\xb2\x99\xea\x53\xe3\x8d\x5b\xda\x94\x74\xa9\xb3\xb2\x04\x91\x0f\x7b\x55\x12\x9d\x1b\x2d\x9b\x8c\xfa\x70\x5f\xec\x8e\xc1\x1b\x79\x90\x35\x76\x72\x5d\x4e\xa6\xeb\x96\xed\x38\xa1\x6e\x97\x42\x79\x78\x1b\x2e\x3e\x81\xc3\x2b\xc3\xc4\xd1\x3d\x2b\x6f\x24\x46\x7e\x83\xda\x51\x36\x18\xae\x45\x35\xfe\x20\xd3\xb1\x88\x56\x06\x36\x38\x03\xac\x12\xde\x2a\xea\xe1\xfc\x98\x5f\x74\xa0\xa1\x5b\xb8\x03\x83\xb0\x77\x55\xbe\x50\xc4\x4d\x74\x23\x8a\xaf\x38\x81\xde\x15\x66\xf9\x32\x21\x84\x11\x74\xd6\xb7\xf1\x86\x12\x53\xc7\x12\xc8\xe0\xf6\xa9\xcc\xb4\xc6\xd4\xed\x20\x8a\x33\x84\x81\x43\xd3\x26\xc0\xa0\x59\x5a\xa5\xe7\xcb\xfd\x68\xa7\x16\xdb\xec\x8a\xea\x9f\xc2\x58\xcb\xe6\x2b\x1d\x03\x95\x2d\x37\x41\xd2\x86\x6c\xea\xad\x75\x8e\x82\x14\x37\x94\xa8\x93\x5b\x2a\xc6\x60\x6b\xf6\x41\xbd\x3b\x68\xc7\x55\x2b\x72\x8f\x12\x26\x33\x8d\x5c\xf5\x3d\x75\xfc\x3b\x4d\x01\x8d\xff\xc5\xd9\x95\x46\x7a\x83\xad\x8f\xd7\xab\x51\x3d\x81\x53\x8d\x3a\x41\x3f\x28\x60\xf7\xa6\x57\x61\x36\x70\x6e\x0b\xc3\x4d\xf4\x41\xec\x7a\x7f\x43\x35\x55\xa1\x9d\xa0\x83\x30\xd7\x1a\x34\xb8\x1f\xc9\x99\xad\x36\xd4\xb5\xcb\xa0\xfc\x91\xc8\x2e\xff\xbc\xdb\x27\x87\xa1\xa3\xd3\x6d\xe4\xce\xb8\x5a\x41\x74\xa4\x98\x0a\x03\xe9\x91\x30\x79\xbe\x66\x8c\xa8\x13\x1c\x0b\xb5\xab\xf3\xc6\xf8\x91\x3b\x15\x76\x36\x83\xd7\x96\x38\xfe\x26\x66\x3e\x02\xd9\xbc\x36\xab\x02\x8b\xfe\xf4\xc8\x26\x74\x5d\x9c\x5d\x0d\xe2\x2c\x64\x8f\xcd\xbf\x1b\x56\x19\x3c\x39\x1c\x66\x6b\xd6\xff\x49\xf6\xa4\x5b\xf6\xce\x37\xb9\xdb\x02\x88\xf2\x57\x1f\xe7\xe6\xfe\xb9\x4d\x36\x33\x27\x20\xca\x20\x0f\x96\x7e\xe7\x5a\xef\x61\xa8\x17\xe9\x18\x23\x62\x6e\xab\x3c\x3d\x72\xeb\xd3\xa1\x26\xa7\x58\xce\x96\xaf\x33\x5d\xa9\xcc\xe1\x29\x95\x1c\xf3\x2d\xfa\x7b\x8b\x1b\x49\xe5\xb6\x2b\xc2\x94\xe8\xd2\x95\x4e\xa3\x48\xf2\xaf\xd1\x5e\x06\xa6\xdc\xa9\x47\xc3\xfb\x9e\x8a\x8a\x5d\xc6\xbd\x45\x5a\xeb\xb6\xd2\x14\xb4\x33\x9f\x29\xba\xa2\x7e\x0c\x2e\x79\x86\xf7\x39\xdd\x39\x9b\xb5\x59\x22\x01\xdf\x10\xde\x07\xdf\xea\xd1\x64\x05\x06\x69\x62\xbf\x9f\x89\x49\x25\x9f\xa0\x1f\x02\x7c\x3e\x95\x44\x32\xf8\xdd\x0b\xa4\xff\x72\x90\x70\xcb\x0d\xe6\x88\x5a\xf8\xe0\x09\x86\xbf\xea\xac\x14\x8a\x9e\x7a\x32\x16\x0e\x57\xc3\x41\x47\x26\x1b\x7f\x20\xd9\x35\x69\x26\xe8\xe9\x91\xce\xd1\xc8\x27\x69\xbc\xc6\xc3\x0c\x1e\x45\xc7\x88\x1a\xfe\xfe\xee\x4f\x8a\xbf\xc3\x5f\x3f\x77\x73\x7b\x81\xef\xba\x0c\x83\x9f\xa9\x5c\x06\x39\xef\x05\x33\x01\xce\x7e\xbc\xc8\xdf\xd2\x6c\xf8\x5a\x56\x43\x44\xa8\x58\x21\xc5\x20\x03\xcc\xd5\x4c\x68\x83\x5e\x9a\x3f\x7f\x67\xd6\x49\x8f\x71\x12\x2f\x72\x26\x5d\xc5\x1b\x31\xff\x32\x60\xee\x66\xc0\x78\xa2\xde\x8f\x19\xe3\xe1\xbd\x23\xf3\x20\x4a\x6f\x32\x66\x47\xba\x86\xc2\xd3\x6f\x92\xcb\x98\xdf\x0f\xf4\x2d\x22\xdb\xbc\xef\xbe\x67\xac\x5f\x9e\x3d\xd3\x57\xd1\x07\x07\x17\x2c\x92\xff\x38\x69\x41\x79\x80\x1a\xc8\x41\xa2\x51\x9d\xf1\x15\xe8\x97\xe3\x78\x1e\xa3\x05\x91\x17\xf1\x3e\x1f\xf0\xe9\x9d\x0d\x95\x1d\x9f\xbb\x99\x51\x3b\x3e\xb1\x50\x85\x7f\xe5\xf6\xd2\x57\x31\x32\x03\xaa\xff\x5e\x4c\xcd\x7e\x2a\xde\xd2\xea\xec\x10\xd0\x98\x3f\x71\x55\x5d\xb1\xdf\x86\x43\xef\x8d\x1b\xf7\xa6\x59\x3c\x55\x41\xcc\x6e\x21\x82\x09\x36\x73\x98\xa0\x63\xbe\x11\xad\xd2\xfd\x22\xfc\x6b\x58\x58\xf1\x2c\x3a\x7e\x5b\x53\x7f\xa7\xd3\x76\xff\x2e\x40\xd9\x2a\xda\xe5\x10\x24\x96\xd2\xef\xd7\x3f\xe8\x61\xb7\x2f\x34\xbe\xc4\x6e\xeb\xeb\xab\x3a\x22\x5d\x9e\xc8\x0e\xcb\x29\xf5\x4b\xba\x6d\xa9\x7f\x76\x6f\xa5\x83\x10\xbf\xf5\xd6\xf9\x9b\x39\x49\x96\x1f\x16\x44\xea\x03\xaf\x43\x7f\xd4\x95\x10\xd3\x00\xf5\x71\xf0\x1d\xf0\xcc\x99\x83\x82\x18\x67\x3a\xf5\xc0\x4d\x0f\x95\xca\x90\x2f\xda\x55\xa4\x21\xa3\x21\x4c\x56\x48\xcf\x20\x05\x1d\x1b\x0c\x88\xe2\xd4\xdb\x20\xa7\x3e\x92\xbc\xac\x80\x58\x70\xc9\x04\xbb\x14\x88\xf1\x18\xbd\xd0\xd1\x7a\x82\x05\xad\xb7\x90\x5f\x4f\x75\x56\xa9\xbe\xac\x25\x29\x96\x3a\x77\x93\xa0\x5f\xfe\xab\x25\x7c\x6b\x72\x30\x7e\x31\x52\x6f\xe1\x80\xd6\xd5\x59\x50\x02\x0e\x3e\x04\x91\xfe\x7a\x8d\x4d\x36\x3c\xd5\xf7\x22\xac\x19\x1c\x02\xb4\xbb\xf8\x13\x57\xb0\xe0\x01\x8a\xd3\xe2\xc3\xd6\x01\xfd\xca\xb9\x8c\xe9\xaf\x51\x5a\x7a\xde\x35\x4a\xef\xb6\x3f\x17\xaf\xf6\x86\x59\x83\x9d\x0d\xbb\x92\xe8\xc2\x81\xb3\x84\xab\x4e\x68\x5f\x92\x67\x14\x97\x80\xb8\x55\xba\x86\x20\x52\xbc\x37\x39\x37\x0f\xc3\xfc\x06\x41\xa4\x5f\x67\x57\xfc\x2a\xcc\xd3\x04\xdf\xb1\xd7\x9b\x33\x2b\x85\x8e\xd1\xe0\x9b\xd2\x80\x58\xa0\x6f\x2e\x89\x7c\x76\xf8\xb0\xd4\x2d\xe1\x9f\x20\x4d\x48\xe6\x71\xe3\x28\x9d\x4a\xf4\xe6\xc3\x1b\x40\xa3\x1d\x79\xf1\xb6\x99\x88\x13\xe2\x51\x9a\x90\x25\x88\x4c\x74\x10\xca\xf3\xb2\x54\xa3\x54\xa1\xa0\xec\x5c\x4a\xb5\x4a\xce\xbd\x50\x7f\x96\x96\xea\xd1\xaf\x43\xfe\xe9\xd5\x6b\x3a\xb7\xaf\xa5\x61\x03\xe5\x13\xd4\xec\xcb\xaf\x05\x7a\x53\xcb\xe5\xd6\x47\xa9\x30\x2b\xa2\x73\xe2\x77\xe8\xac\x6e\xb0\xfb\x46\xe4\xf6\xb8\x80\x68\x12\x95\x7c\xd6\x23\x89\x6d\x41\x17\x0b\xe9\x38\x7d\x7b\x23\x97\x84\x6f\xa8\x20\xe8\xba\x61\x1b\x7b\x61\xa0\x1c\x35\x09\xf5\x6b\x5a\x02\xa6\x4f\x5f\x95\x6a\xca\xe4\x10\x7a\xd3\x27\x3b\xe4\xdd\xdd\xe4\x5b\x77\xdc\xde\x0b\x07\x02\x30\xfe\xcf\x94\x2f\xc3\x7a\x08\xae\xc8\x22\x5d\xad\x6b\x70\x7f\x75\xb9\x51\xa8\x53\x3a\x6b\x85\x64\x2b\x7f\xfd\xf0\x86\x92\x8d\xbe\x91\x6d\x4a\x23\x8e\x22\x40\xf0\x73\x74\x71\x66\x1d\xde\x5e\xec\xba\x35\x66\x94\xa2\x29\xd6\x13\xd4\xc0\x0b\x19\xd6\xae\xc8\xbc\xad\xeb\x8b\x60\x4b\x7c\x96\xb7\xa0\x5c\xc8\xfe\x26\x35\xde\xd5\x62\x4a\xb9\x5c\x56\x58\xee\x6a\x02\x0c\xd9\xdd\xe6\x6f\x84\x0b\xb2\xb5\xab\xdf\xd5\xaa\xe2\x78\x2e\xaf\x08\x5e\xed\x68\xf2\xdf\x04\xef\x82\x72\x49\x8c\x51\xba\xa3\xdd\x3b\xd6\x36\x55\x77\x1b\x49\xf0\xea\xc4\xac\xc8\xc5\xf3\x13\xc5\xd0\xfb\x34\xed\x6e\xb5\xe6\x74\x85\xf9\xf6\xad\x72\x12\x7a\xb1\x5b\x12\xba\x58\xf6\x00\xda\xec\xf8\x1d\xea\x27\x28\x42\x89\x97\x1f\xd7\x6a\xb7\x6b\xfa\xd6\xa7\x99\xe2\x4b\x82\x45\x2f\xb9\xb0\x24\x6f\xe6\x3b\xe7\x57\xe3\xed\x0b\x2c\xc9\x82\xf1\x6d\x7f\xab\xab\xed\xba\x07\xa1\x25\x5b\x11\xc5\x09\xfd\xdc\x89\x37\x78\xbb\xbb\x95\x85\x75\x39\x63\x7c\x0f\x60\x3b\x9a\x69\xd3\x21\x56\x64\xa5\x56\x3b\x04\xab\xa8\x51\x4b\x74\xea\x31\x89\x77\x18\xcc\x2e\xc3\xea\xbc\x31\xe1\x02\x8f\x6f\xac\xbb\x23\x2d\x9a\x69\x96\xd8\x2d\xcd\xd5\x4a\xfc\x7b\xa6\x53\xe2\x9f\x73\x85\x52\xf8\x3d\xd6\x26\x71\x83\xa2\x2a\x89\x9b\xe4\x7a\xa4\xf0\x7b\xa4\x44\x0a\xbf\xe7\x1a\xa4\xd0\x28\x56\x1f\x71\x83\x6e\xdd\xd1\xdd\xae\xa3\x49\x97\xd6\x88\x5b\x25\x2a\x23\xfe\x71\xd3\xf7\x63\xaf\xb2\x88\x9b\xe6\x9a\x22\x21\x4b\x49\x4d\x24\xb3\x29\xe9\x88\xbc\x49\xa4\x20\x92\x99\x96\xb4\x43\xdc\xa4\xa8\x1a\xca\x50\x62\x81\x2f\x83\xe9\x6b\x53\xd4\x08\x69\x93\x3e\x99\x28\x16\xd8\xcb\xe8\x11\x58\x53\x29\xec\xae\x9f\x7a\x55\x80\x6d\x54\xb4\xc2\xac\x12\x40\xc7\x4e\x1f\x14\x1a\x59\x55\xa0\x5a\xd9\x7f\x17\x5c\x21\xec\x5a\xd9\x7f\xe6\x8d\x9c\x5e\x40\xc7\x5e\x47\x74\x34\xd3\xd6\xef\x71\xa0\x2b\xf2\x86\xa1\x9a\x40\xc7\x91\xd6\xc8\x1b\x3b\x85\x81\x8e\xbd\xf2\xe8\x68\xa6\xc4\xc4\x36\x53\xff\xee\x68\xe6\xd4\x87\x6d\xeb\xbe\xe8\xe8\x00\xaa\xc4\x36\x86\x3f\xf2\x86\x99\x4a\x41\xc7\xb9\x9a\xe9\xef\x96\xf4\x28\x18\xd8\xb1\xae\x51\x96\x76\xfc\x4d\xde\x45\x2b\x1e\x74\x6c\x34\x50\xde\x60\x63\x1b\x6c\x3a\x1a\x94\x14\x90\xc2\xb4\xf0\x75\xc1\x8b\xb6\x2a\x09\x1d\x7b\xf5\x54\xa0\x72\xa0\x99\x8e\x23\x3d\x55\xf6\x32\xac\x8a\x32\xbe\x86\xfd\xb3\xdc\x18\x4a\x44\x1d\x3b\xbd\x55\xa0\x51\xa0\xb2\x14\xa5\x82\x3f\xf3\xc6\xa1\xf2\x42\xc7\x91\x2e\xeb\x86\x0c\x2a\x2a\x00\x0d\x7f\x77\xc3\xb6\xcd\xa3\xbf\xbb\x42\x27\x91\x3b\x65\xff\x2c\xfa\x6e\x17\x2e\x1e\x53\xc6\x76\x1f\xf7\x0c\xdd\xc2\xd9\xeb\x0f\x0e\xe5\xfa\x4f\xe7\xbc\xa5\xdf\x96\xa3\x07\xc6\xd9\xf6\x55\x11\xf4\x5d\xff\x35\x27\xc2\x9c\x88\xc4\x8f\x71\xa0\xd8\xad\x73\xfd\x2e\xce\xae\xf2\x02\xe3\xa3\xf3\x8b\xb3\xab\x61\x5c\xeb\x7c\xf4\x8e\x08\x56\xdf\x10\x9e\x84\x28\x7e\xd4\x75\xd3\x4c\xf1\x22\x57\x3e\x2d\x33\xf9\x7c\x91\x50\xf7\x53\x08\xc6\x04\x9b\xdd\xc1\x54\x5e\xde\x26\x30\xf6\xf1\x24\x08\x99\x64\xbe\x7e\xa9\x22\xec\xae\x32\xb2\xa5\x23\x9d\x64\xef\xc9\x8e\x9f\x4d\xc5\xb8\xd7\xae\x62\x5c\xd4\xdc\x86\x11\x83\x62\x71\x41\x70\x31\xfc\x36\x3c\xd8\xc8\xf9\x84\x56\xe5\x6e\xd9\xd9\xb8\x8e\x0e\x05\x55\x9f\xb4\xeb\x5e\x54\x36\x18\x1d\x07\x14\xf4\x67\xdc\xc5\xeb\x10\x31\x45\xc3\xbf\x0e\x0b\x57\xa9\x3a\xea\xf9\x9a\xb9\xec\x3a\x46\xba\xdd\xa1\x53\x78\x12\x5d\xe9\xd8\xe9\x1e\x07\xf4\xe9\x7c\x7c\x67\xff\xfd\x4e\x18\x3d\x07\xf0\xb6\x4d\x72\xad\x7d\x1e\xca\x64\x58\x5d\x77\xa8\x09\x87\x1b\x53\x65\x56\x32\x77\xf3\x39\xbe\xe2\xcc\x10\x6b\xa5\xa0\x15\x41\xec\x66\x2a\x08\xbf\x21\x5c\xb8\x5b\x4f\x2e\xef\x29\xae\xda\xab\x3e\xe6\x9b\xec\x1a\x43\xb0\x5e\x71\x31\x5f\xb3\x58\xc5\xa9\xd8\x60\x69\x83\x57\x64\x70\xe8\xeb\xef\xc7\x8e\x56\x21\x0a\x14\xb0\xb1\x09\x09\x2b\xfd\xa2\xf8\xef\xf9\xf6\x8c\x92\xba\x72\x27\x8e\x7e\x49\x2c\x0b\x42\xb9\x95\x09\x3a\x38\x33\x30\x0f\x0e\xd1\xb3\x67\xe8\xe0\x20\x1b\x34\x35\xce\xef\x63\xd0\xb7\x06\x66\x71\x50\x13\xfa\x2d\x1a\xa2\xea\x33\x9a\xb1\x66\x86\xe5\xe0\x00\x1d\xe4\x07\x9b\xf6\x47\x8b\x75\x2f\xc1\x2b\xff\xcc\x54\x2f\xdd\x13\x7b\x3e\xa6\xc0\xa5\xfe\x71\x50\x96\x9c\x2e\xaa\xc6\x12\xe3\xe0\x96\x45\x67\x24\x99\x6e\x31\x38\x2c\x02\xf2\xee\x48\x07\x82\xba\x22\x50\x17\x8a\xcf\x02\xf8\xdd\xeb\x71\x70\x62\xab\xdf\xe7\xb9\x86\x96\xea\x21\x32\xdd\x6b\xd3\xbb\x70\x86\xd6\x7d\xbd\x57\x61\x8a\x6d\x18\xc8\xee\x87\x1b\x2a\xd9\x02\x53\x8c\xc7\xfa\x99\x99\x76\xbd\x66\x5c\x92\x2a\x8e\xff\x66\xef\x71\xd1\x66\x56\xb7\x95\x3d\x6b\x7d\xa1\xac\xab\x8b\xb3\x2b\x04\x1b\x7b\xc6\x68\x0b\x22\xe1\x07\x38\xb0\x51\x6c\xd9\x71\x5c\xf3\x3e\x43\x5f\x35\x7e\x1a\x5b\x0d\xa7\x54\x28\xee\xfe\x7e\x50\x48\x4b\x83\xe6\x9d\x91\xe5\xee\x2e\x89\x5d\x62\x9f\xf1\xd8\xb7\x83\xb1\xab\xf6\x6f\xff\x51\x12\xde\xe0\xfa\xa7\x77\xaf\xf6\xed\x72\x71\x76\xe5\x73\x0f\x94\xb6\xf9\xb2\x8e\xbb\x68\x17\xf7\xbd\x04\xa6\xd9\xb7\xf5\x15\xc7\x54\xee\x4d\x83\xd7\xa4\xa2\x58\xb5\x8e\x1a\x7f\x28\xb0\x66\xae\xb8\xb8\x36\x1c\x15\xa0\xc1\xff\x05\xfe\x9c\xc0\x10\x87\x13\x74\xd2\x6c\xb5\xe1\xf7\x2c\x75\xf4\x37\x54\xce\x96\xfa\xb4\x22\x3f\x4c\x9e\x61\x53\xcb\xb5\x93\xd9\x26\xc5\xfd\xdb\x30\x6e\xb1\xd3\xa0\x73\xc7\xd7\xa7\xfb\xee\x44\xb7\x44\x31\xfb\xa9\xc2\xa7\x00\xb5\xe6\x0a\xb5\x76\x77\x47\xb9\x6c\x57\xd3\x06\xd3\x7a\x92\x60\xf7\xe7\xab\xab\xb7\x67\xb4\x26\x83\x96\xd7\x06\xa4\x6b\x9b\xa6\xf3\xda\x4f\xfe\xed\x78\x8c\x5e\x94\xce\x89\x8c\xd5\x2e\x99\x2b\x34\x9c\xe6\xaa\xe7\x24\xef\x13\xd8\x5e\xb2\x77\x76\xec\x26\xbd\xb7\x21\xee\xd1\x74\xe8\x5e\x85\x20\x7e\x7c\xf7\xf1\x2c\xac\xbe\x01\x7d\x40\xfa\xce\xe3\xbd\xc2\xbb\x87\x0b\x02\xdc\x77\x1e\xef\xb9\x85\xb5\x73\x40\x13\x31\xbf\x9f\x11\x01\x58\xdf\x90\x71\x0c\xfe\xce\x83\xfe\x67\x00\xae\x6f\xd8\x20\xae\x7f\xe7\x31\x4f\x2d\xac\x9d\x03\xea\x83\x82\xfb\x19\x50\xc1\xda\x39\x60\x70\xf2\x70\x3f\xa3\x3a\x80\x3b\x87\x36\xe7\x19\xf7\x33\x2c\x00\xeb\x1b\xb2\x70\x42\x72\xe7\x91\xaf\x52\x98\xfb\x22\x70\xcf\x63\xf7\x0d\x9b\x1d\xe7\xdc\xdd\x7d\x8a\x21\xf6\x0d\x6e\x4f\x89\xee\x3c\xe6\x9f\x01\x50\xdf\x50\x9b\xfb\x1a\xea\xe7\x9d\x43\x95\x4f\xb0\xee\xbe\xa2\x05\xb0\x7d\x68\x04\xa7\x63\x77\x1e\xfb\xc2\xc2\xea\x95\xda\xe8\xb8\xed\xee\x72\x1b\x80\xeb\xe5\xe0\xe8\x08\xef\x5e\xbc\x7f\x0b\x6e\xd7\xb0\x3a\xf2\x70\x8f\x01\x87\x1e\x51\x89\x8e\x19\xef\x2e\x30\x01\xb8\xbe\x61\xe3\xa3\xcb\x3b\x0f\x7b\x12\x80\xdb\x67\xb6\xe6\xa8\xf3\xde\xa6\x0b\xf0\xf6\x99\xef\x7d\x0d\x7c\x12\xc2\xeb\x1b\x38\x8e\x94\xdc\x26\x40\xd2\x07\x33\x37\x36\x77\x04\x84\xfa\x11\xfc\xf2\x28\x6a\x27\xa5\xfa\x90\xbf\x55\xac\xb7\x78\xbe\x1c\x4c\xfc\x22\xff\xbd\x83\x08\xc3\x4e\x6c\xf7\x75\xbf\xba\xfc\xd5\x20\x12\x51\xf6\x9c\x6c\x72\xb9\x0d\xb6\x2d\x88\x34\x7d\x60\xd1\xca\xe3\xc3\xb3\x08\xf8\x63\x1c\x57\xbb\x97\xe9\xa2\x67\xcf\x92\x6b\x28\xe1\x98\x36\x04\xde\xcc\x19\x3a\x46\xc5\x99\x06\xc5\x15\x87\x26\x0c\x66\x4f\x85\x06\x65\x16\x3a\x1c\xaa\xb9\x4c\x60\x42\xdf\xa3\xc7\xe8\x99\x6d\xbe\xc2\x1f\x0f\xd1\x04\x35\xb4\xee\xa6\x82\xc1\xe8\x15\x15\x72\x82\xde\x17\x31\xfa\x80\x8e\xd1\xfb\x00\xf3\x0f\xfb\x07\x0e\xec\xea\x75\xbb\xaf\xc1\xf8\x77\xe4\x14\x17\xdb\xb9\x45\x60\x43\xf7\xe9\xc6\xae\x9f\xee\x77\x44\x38\x8c\xca\x75\xf3\xb6\x7e\x82\x77\xfb\x8e\xcc\x08\xbd\x51\xbc\xf0\x02\xaf\xcd\xb3\x07\x4f\xbf\xf9\x14\x9f\x49\xda\x46\x9f\xbf\x47\xc7\x9d\x73\x5a\x10\x69\xde\xca\x1d\x58\xe6\x4f\x1f\xef\x3d\x54\xe2\x10\x8e\x73\xd2\x6c\xdf\x99\xe3\xd0\xce\x21\x07\xf1\xec\x16\x44\xbe\x8b\x51\x7f\x0b\x0f\xc9\x94\x2e\x59\xf7\xae\x91\x23\x53\xf7\x32\xb9\x67\x8a\x27\x85\x88\x6b\xf8\x29\x41\xee\x09\x6b\x79\xbc\x2c\xf1\x93\xd5\xd8\x7d\xe5\x6b\xd6\xca\x09\x7a\x3c\x7a\xfc\x1f\xbb\x9b\x46\x91\xb1\x83\x8b\xe7\x27\x36\xe0\xb4\xc2\xfc\x9a\x48\x9d\x36\x63\x10\xc8\x43\xf6\xe1\xa7\x4c\x5d\x14\x85\x23\xfb\xdb\x77\xaa\xe3\x28\xd0\x7b\x0b\x49\x0b\x3a\x0e\xac\x9e\xd6\xda\x56\x7d\x53\xe0\x87\x2e\x0c\x4a\x71\xe3\x5b\xe0\x91\x75\xef\x5e\x7d\xe1\xab\x02\x4c\xfc\x6b\xcf\x1a\x69\x0f\xa3\x67\x03\x77\xfc\x3e\x41\x63\xfd\xc7\x6d\x7a\xeb\xfb\x3d\xdc\xf6\xd7\xaf\x2a\xdc\x7a\x78\xdf\x52\x47\x94\x9f\xba\x5b\x3f\xfe\x97\x4f\xf6\xab\x14\xb8\x96\xd8\xcf\xc5\x08\x78\x3c\xcc\x2b\x78\x22\xd4\x18\xf7\x5f\x36\xcc\x30\x4b\xb1\x70\x52\x96\xfd\x92\xf5\x2d\xe7\x61\xf8\x66\x3b\xe6\x60\x68\xbd\xd7\x2c\x32\x64\xde\x9a\xde\xc3\xff\xb5\xf3\xd3\x17\x69\x5f\xae\xd6\x72\xeb\xbb\x9c\x99\xd7\x40\x26\x68\x30\x6f\x1b\x34\x80\x5a\x27\xdd\x88\x14\xce\x18\xc2\x8f\xbb\x53\xea\xde\x2e\x29\x8d\xd9\x61\x8e\xa9\xcf\xe7\xbb\x6e\xa7\x1d\xe7\x42\xdd\x3b\xeb\x14\x37\x0d\xe1\xe7\x2b\xbc\x20\x99\x31\x06\x87\x39\x3d\x41\x77\x5a\x93\xce\x63\x88\x5e\x3a\xc1\x19\xc5\xc1\x52\xca\xb5\x98\x8c\xc7\xcd\x14\x4b\xb6\x16\x40\x2f\xb6\x1a\x0b\x89\x25\x9d\x8d\xe9\x6a\x31\x96\x6c\x7d\xa4\xbe\x3f\xaa\xd9\x82\x1d\x2d\x19\xa7\xbf\xb2\x46\xe2\xfa\x68\xb3\xa4\x92\x8c\xc4\xcd\xa2\x7b\x0b\xe8\xe1\x84\x95\x9a\x97\x66\xf0\x03\xaa\x66\x3e\x16\x37\x8b\x7f\xff\xb8\xaa\xcb\xd0\xba\xed\x46\xf1\xf7\x16\x73\xf2\xbf\x94\x78\x4c\xfd\x6f\xb4\x6e\xee\x8b\x46\x9d\x90\x6e\x61\xc6\x94\xd8\x73\xd7\x81\x9a\x32\x02\x94\x40\x1d\x29\x89\x3a\xd8\xf3\x4c\x4d\x75\x72\x37\x9b\x10\x15\x68\xcb\x5a\x0e\x8f\x29\xcc\xe0\x18\x8b\x6d\x9a\xa1\xf2\x5b\xea\xa1\x7e\x1a\x95\xe3\x8a\x20\x36\x9f\xd3\x19\xc5\x35\xaa\xe8\x82\x4a\x5c\x47\x2f\x96\xd9\x5b\x70\x0a\xb0\xea\xf2\xf3\xc5\xf3\x93\x47\x02\x2d\x40\xc2\x85\xb4\x6f\x05\x36\x15\xfc\x8b\x70\xd1\x83\x2a\xf1\x76\x40\xca\x03\xa1\x89\xd0\xb1\xc8\xbd\xe1\x00\xcf\x91\x93\xf0\x8f\x9e\xa3\x17\xaf\x00\x26\xe1\x1f\x3d\x63\x30\x45\x24\x31\xd9\xa1\x0c\x0f\xe4\x86\x4a\x49\xf8\xc1\x5e\x53\x34\x8d\x81\x89\xfd\x74\xfb\xa6\x0a\x63\x54\x54\xcc\x18\xaf\xf6\x1b\xc3\x34\x86\x31\x68\x73\x43\x25\xb9\xcd\x50\x70\x17\x7d\xc1\xf1\x6a\xbf\xc1\x36\x9b\xcd\xc8\x75\xc9\xa6\xd5\xbd\x03\xdc\x71\x03\x70\xc7\xf5\x65\x95\x3f\x1e\x23\xb1\x66\x5c\x0a\xc4\x71\x85\x39\x9c\x1e\x20\x5a\x75\x7b\xc6\x1f\x67\x75\x5b\x91\xea\x02\xaf\xc0\xb1\xd0\x19\x35\xe0\x0c\x17\x8e\x29\xca\x86\xf5\x78\x8c\x1a\xa6\x2b\x7f\xfb\x47\x36\x24\xe0\xd9\x39\x2e\xfc\x7c\xea\xde\x8b\x0e\x1e\x63\x74\xa9\x00\x9f\xd1\x71\x0f\x07\x1e\x5c\x06\x81\xb1\x83\xfb\x8a\x8c\x1d\x98\x30\x58\x06\xf0\xcb\x62\x63\x07\x97\x81\x27\x7d\xd0\x15\x1d\x2b\x76\x2f\xf3\x89\x2e\x2d\x9f\x90\x3a\xca\x8e\x4d\x09\x3d\x6f\xeb\xda\xd3\xd9\xc6\x8f\x56\x78\xfd\xd6\xbc\x97\x30\xa8\xe8\x4c\x4e\xd2\x05\xb9\x85\xce\x57\xfd\xaf\x98\xe6\x4b\x03\x2c\x1e\x74\x98\x72\x59\xf4\xe7\xfe\xac\xef\x72\x4f\x6e\xe1\x09\xe9\x3e\xdd\x5b\x10\x95\x64\x75\x4b\x87\x7a\xc7\xc6\x6f\x3f\x5f\x6e\x00\xd8\x8f\xcf\xf4\x50\x9b\x75\xbb\x82\x6d\xba\xc7\xb8\xb4\x9f\x3d\x0a\x7f\xe5\xbb\xff\xdf\xd6\xa4\xc7\x90\xd8\x03\xec\x3f\x9c\x48\xca\x3d\x61\xf7\x4f\x1e\x00\x3b\x5e\xad\xff\xf4\x35\xa3\x11\xe5\xda\x35\x0d\xf5\xf5\x3a\x3e\x47\x29\x55\xe3\x31\x3a\x73\xef\x1c\xc2\xcb\xe5\x73\xc6\xd1\x8c\xad\xd6\x2d\x54\x52\x89\x28\x1a\xf7\x0b\x44\x1f\x2d\x49\xbd\x16\x68\xda\xd2\xba\x42\xca\x7e\x02\x25\xa0\x5a\xe8\xba\x8a\xd1\x8d\xf0\x10\x46\x54\xaa\xd2\x77\xd2\xaf\x1f\xd7\xb5\xda\x0e\x8e\xe0\x55\x49\x7d\xde\x21\x02\x70\xba\x44\x4c\xf4\x4e\x85\x2b\x62\x99\x29\xa5\xc2\xa6\x70\x88\xca\x7b\xc5\x27\x0d\x2b\x22\xa3\x4d\x04\x7e\xed\x1f\xcb\xed\x38\xb8\xe9\x3c\xb1\x81\x50\x77\xf2\xb8\x91\x22\x35\x04\xe3\xcd\x73\x17\x16\xfc\xe8\x9a\x14\x0b\xe3\x2b\x34\xf4\xbb\x51\xc7\x51\xfb\xf7\x0a\xc8\x87\x42\xee\x2a\xd2\xa5\xe5\x75\x9f\x87\xc7\xe8\xe0\xa0\x63\x23\x54\x54\x52\x46\x08\xe1\x72\x70\x4d\xb6\x36\xa0\x0e\x1d\x73\x86\xfc\xfc\xa0\xfb\x2f\xc3\x71\x0a\xa0\x67\xb9\x88\x6f\xc2\x50\x16\xea\x64\x06\xcd\x82\xa4\x72\x26\xb0\x12\x50\x6b\x5a\x27\xe5\x0e\x83\x3c\xd3\x20\x48\xd6\x91\xd1\x6c\xf3\x79\x3b\xfc\x22\x0d\x7a\x7c\xe0\x13\x67\x21\x73\x3d\xc8\x11\x0e\xd3\x67\xe3\x69\x05\x27\x29\xbe\x42\xa7\x2d\x58\xa1\x17\x5a\x3f\x11\xbb\x9a\xd2\xc6\x55\x5c\xf0\x59\xb5\x50\xcf\x53\x5f\x2a\xb2\xee\x41\x70\xef\x65\x3c\x46\xbf\xb8\x03\xb7\x7f\xd3\x3f\xfe\x52\xa2\x41\x74\xa0\x83\x7e\xdb\xc4\x6e\x12\x90\xc0\x5d\x8c\x72\xb9\xcb\x13\xf4\x6f\x07\x87\x11\x65\x03\x09\x29\x92\x38\x58\xb1\x00\x74\x89\xb3\xdc\x6b\x33\x42\x10\xa9\xc3\xe6\x7b\x72\x00\xf4\x10\xa3\x94\x11\x94\xea\xde\x97\x0f\xc2\x45\xb2\x25\xfb\x30\x70\xac\x64\xa8\xd2\xee\x2b\xc2\x0d\xd2\xfb\x2f\x12\xf4\x57\x52\x21\xd8\x2f\x73\xe5\x15\x6e\xd1\x3d\x8b\xa7\x80\x1b\x23\x2c\x98\xb2\x23\xf5\xb3\x0d\xad\xe4\xf2\xf8\x3f\x9e\xfc\xf1\xa0\x48\x4d\xdd\x11\x5e\x60\x7a\x03\xae\x30\xae\xa1\x70\xa0\xd0\x79\xa1\x2d\xaf\x87\x3a\x7b\xf1\x94\xd4\x74\x35\x41\x07\xdf\x1c\x74\xbe\x51\x94\x4d\xd4\x67\x9f\x66\x6f\xda\xf7\x88\x6f\x90\x86\x7a\xe7\x79\xff\xf1\x3f\xbe\xfb\x47\xcc\x1b\xf6\xf8\xdb\xcc\xd9\xd8\x1a\x5f\x3e\xdf\x31\x40\xb8\xa7\xb9\x3e\xeb\x9e\x2b\x40\xd1\x61\x0b\x66\x60\xa1\x86\xc8\x0d\xe3\xd7\x68\xad\x80\xc2\x53\x6f\xba\x4e\xb5\xc9\xcf\x36\x97\xc7\x2a\x8a\x73\x21\xed\x44\x4a\xd3\x21\xc6\xcb\xbc\x3f\xd8\x41\x24\x3a\x47\xee\x68\xee\x42\x63\x34\x38\x44\xc7\xc7\xe8\x40\x12\x21\x1b\x22\x0f\xd2\x6b\x4a\x01\x89\x5a\x5e\x5b\x52\xfa\x11\x3d\x75\x1d\x84\xdd\x3b\x5e\xcb\xeb\x64\x63\x08\x1e\xce\x87\xf2\xc7\xfa\x5d\x79\xe5\x6c\xe1\x1a\xe1\x56\x42\x98\x52\x6f\x03\xf1\xad\x4b\xdb\x0d\x4a\x7f\xeb\x9b\x97\x6c\xd3\x10\xae\x68\xbb\x26\x7c\xce\xf8\x2a\xa8\x95\x17\xbd\x53\x6d\xde\x73\x57\x5d\x2c\x14\xfb\x90\x3c\x56\x43\xcb\xf8\xdd\xaf\x21\x3c\x35\xae\x43\x5b\xf1\x5b\xcf\x0f\x50\x7a\xb1\x53\x4f\x22\xbe\xab\xa9\xc3\xd6\xfa\xf9\x3e\x1d\xdf\x32\x75\xe0\xe1\x2b\x53\xea\x27\xe2\x23\xfb\xbe\xa2\x30\x0f\x2c\xfa\x27\xc8\x2a\xef\x5c\x52\xfb\xa8\xbb\x3e\xd1\x13\x2b\xcc\xa5\x7b\x8a\x31\x00\x17\x42\x0e\xcb\x9e\x5a\x53\x73\x82\x4e\x42\xb0\x2b\xf3\x2e\xa8\x4b\x59\x97\x54\xd6\xc4\xbe\xa3\x46\x39\x4a\xcd\xd3\xf2\x87\x7c\xc4\xab\xb5\x72\x37\x3e\x41\x62\x15\xe1\xc8\x78\xfa\x07\x7f\x21\x37\xb4\x41\xa7\x2d\xc7\x8d\x3c\x18\xba\xac\xc1\x09\x3a\xf8\xff\xd1\x9c\x10\x79\xf0\x79\x37\x74\xfb\x19\x4c\xc9\x0c\xb7\x82\xa0\x0d\xd4\x80\xd7\xf5\xab\xc2\x01\x14\x3f\x35\x4c\xa2\xef\x1e\xfd\x9f\x80\x3f\x3b\xea\x9f\xc6\x05\x60\xdd\x0a\x05\x55\x11\x51\xb9\x20\xbc\x5f\xe1\x81\xa7\xaa\xb3\x9b\xf5\x7f\x3f\x1f\xda\x2b\xae\xf9\x0d\x57\xf3\xe4\x66\x38\x6a\xd4\x04\x2a\x06\x92\x8d\xa9\x06\x97\x8c\x63\xff\x95\xdf\xfb\x6a\xc8\x06\xee\x42\x9b\xae\xc6\x84\xd8\x51\xde\xf9\xfc\x34\x7c\xd5\x8d\x42\xfd\x78\xf0\x79\xf0\x02\xd3\xf8\x12\x7d\xf8\x9e\xe9\x5b\x7b\x31\xbb\xf0\x65\x67\x15\x61\xf7\x5a\x98\x26\x80\xbe\x06\x19\x63\x3b\x44\xa5\x99\xa6\x53\xb8\x0c\x5e\x23\x8d\xdf\x86\xef\x79\x91\x74\xed\xde\xb0\x04\x42\x7d\xf0\x94\x2a\xfb\x87\xaa\x51\x87\xe6\xd7\x0c\x00\xcf\x0d\x47\x12\x7e\x09\x8f\x5c\x1b\xdd\x10\x89\x75\xd8\xdb\x20\xad\x0c\x2c\x27\x7e\x89\x74\xdf\x42\xae\x75\x9c\x5f\xb9\x07\x60\x4d\xfb\x2a\x76\xbb\xd8\x3f\xae\x4f\x67\x5e\x73\xce\xde\x18\xf7\xfc\x7e\x49\x92\xb7\x6f\x03\x06\xdf\xc1\xe1\x21\x36\x01\x83\x2b\x72\xf9\x22\xbd\x1e\xbe\x7e\x16\xb6\x9f\x6f\xf5\xc5\xff\x2f\x61\xdd\xcb\xae\xe7\x79\xbb\x19\x37\x91\xae\x4b\x22\xb5\xc5\x5f\x60\xef\x4b\x22\x2d\x77\x1b\x2f\x21\xec\x30\x74\x85\x4a\xdd\x21\xa7\x7e\x70\x5b\xc7\x54\x77\x73\x7a\xc4\x34\xe0\xff\x17\xe7\x09\xf5\x38\x0d\x9b\x3f\x3d\x7a\x68\x70\xb8\x35\x9f\xeb\xb7\x10\x34\x57\x5b\x03\xde\xd5\x2c\xd4\x2f\xa0\xc3\x33\xdd\x11\xf3\x46\x82\xe2\x04\x93\xf9\xe2\x87\xfa\xe1\x83\x19\x6e\xe0\x99\x7d\x25\xe6\x4b\x56\x09\xc4\x9a\x9e\x87\xe6\x02\x86\x37\x64\xed\xa8\xda\xb8\x65\x2d\xda\xe0\xec\xb9\xe8\x05\x91\x09\xee\xbb\xc4\xe3\x24\x9e\xa9\x1d\xc4\x85\x61\xcc\xc0\x3a\x06\x93\x6e\xe7\x76\x4e\xe4\xe3\x9a\x89\x1d\x4f\xf6\x58\x1a\x27\x05\x5f\x27\x50\x45\xf5\xee\x65\x5f\xcd\xdb\x1e\x7a\x18\xfd\x2c\xaf\x7d\x9b\x2f\x7a\x2f\x24\xad\xf9\x1a\xfe\x95\x72\xe5\x8f\x19\x35\xa3\x17\x5a\x0c\x67\x51\x99\xf6\x53\x5b\xf7\x2f\xdf\xfc\x12\x5d\xbe\xd7\x4f\x2d\x26\x90\x4c\x3d\x72\x38\x5d\x4c\xab\xa9\x18\xe8\x7b\x17\x9f\x8d\x59\x5a\x48\xcc\xe5\x85\x12\x07\xb8\xb8\x0c\x06\x3c\xe8\x3f\x2d\x87\xf6\x42\x33\x94\x4f\x36\xfa\x26\xac\x37\x6c\x1e\x8a\x37\xad\x74\x72\xa5\xda\xb3\x70\xa3\xef\xfd\x62\x99\xbe\x93\x60\x1f\x2c\xa6\x11\x93\xc0\x73\x92\x8a\x1c\x56\x45\x46\x10\xf7\x51\xdd\x7b\x75\xb2\x4c\x16\xcf\x7a\xd0\x63\x9b\xbc\x6c\xaa\x12\x3d\xf4\x66\xa6\x4c\x4e\xbd\xd3\xb1\x86\xa4\x3d\x13\x92\xc5\xd6\x6a\x11\xd1\x90\x77\x23\x3d\x18\x68\xe7\xf8\xfb\x7e\xd3\xc2\x4d\xf0\x52\x61\x4a\xaa\x41\x43\x36\x2f\xc2\xfe\xfb\xa9\xdd\xf8\x26\x65\xdc\xb4\xdf\x20\x08\xde\x81\x30\x46\x80\xb5\x0f\x60\x17\x74\x3f\xbf\xc6\xeb\xd8\xbd\xc9\x58\x63\x4a\xf4\x56\x66\x5f\x38\x8a\x9e\x46\xf0\x80\xf2\x7b\xe5\x29\x26\xe0\xa1\x58\x74\xb2\xe2\x14\xe9\xe3\x37\x02\xdf\x90\xa7\x3f\x64\x4f\xdf\x04\x9b\x74\xfc\xd3\xe0\x70\x88\x24\xbb\xed\xab\x38\x89\x44\x16\xde\xcb\x40\x0a\x11\x81\x36\x4b\x3a\x0b\xa7\x1b\xde\xb6\x9f\x92\x9a\x35\x0b\xd1\xad\xc9\x23\x23\x69\x5e\xd8\x33\x2e\xce\xae\xba\x5c\x8f\xbe\xb7\x18\x6e\x81\x4e\x0c\xb3\x77\xdf\xba\xd5\x3b\x5d\xeb\xfb\x7a\x2a\xd4\xe9\x87\x9e\x37\x4b\xfa\x5e\x64\xc8\x6a\xfc\xac\x7b\xdf\x43\x8e\xdf\x5f\xd2\xce\xf3\x6f\xf0\x02\x13\xba\x8f\x57\x98\x12\xbc\xfb\x9f\x79\x99\x6b\x5b\x6f\x9f\xf7\x5d\x6e\xf1\xf0\x79\x2a\xdb\xa9\xf7\x11\x88\x4f\x5c\x95\xa8\x2b\xc8\x10\x28\x92\x42\xa8\x21\x21\xb0\x23\xd2\x97\x3b\x25\xc5\x27\x5d\xc2\xcf\x3d\x05\x29\xf6\x74\xf7\x03\x82\xed\xeb\xf4\x87\x6b\xad\xe6\x68\x43\x73\x0e\x71\x1b\x06\xd8\x11\x05\xf8\x67\x96\x04\x1b\x49\x4d\x04\xa2\x4c\x20\x7d\x68\xe6\xc8\x93\x47\x2f\x4a\x2c\x7e\x41\x36\x9a\x24\x31\x83\xef\x66\xc3\x78\xb1\x2c\x18\x48\x4c\xb5\xa1\xba\xc2\x4c\x9e\x1e\x99\xdd\xcd\xb4\xee\x8c\x59\xda\x2a\xe1\xf0\x30\x47\x23\x09\x9f\x63\x1b\x9f\x6c\x05\xe1\xc2\x38\x35\x42\x1a\xb6\x34\x3a\x38\x48\x81\xc5\x36\x96\x08\xde\x53\x5d\xb3\x0d\x62\x72\x09\x25\xa6\x18\x32\x6f\xc7\xb8\xcd\x9e\x36\x8e\xc1\x83\x17\x66\xd0\xb9\x44\xb8\x16\xcc\x86\x42\xe7\x8c\x23\x4e\x70\x65\xcd\x54\x63\xa2\x9e\x9f\x8a\xf0\x05\x22\x23\xd3\x01\x9c\x3c\x9a\xe9\xa7\x54\xce\x3f\x4e\x9e\xec\xd0\xf5\x92\xa2\xe7\x6e\xf2\xf4\xdf\x8b\xb3\xab\xc3\xdc\xe7\xc1\x72\xb6\x3c\x0d\xbb\x8a\xfe\xd4\xe1\x1c\xc4\x42\x29\x4e\xff\xdc\xc1\x77\x7f\xfa\xd0\xe1\x59\x5d\x9c\x5d\x0d\x7c\x59\x3c\xe5\x56\x95\x70\xec\xe8\x6c\x5e\x18\x8d\xfb\xbb\xc0\xfa\xd9\x55\x5a\x51\xc5\x97\x20\xe3\x44\xb4\xb5\x8d\x4a\x34\xb4\x1e\x6a\xa6\xa9\x82\xd7\xe5\x5b\xde\x90\xca\x6f\xd0\x29\x20\xf3\x72\xfa\x54\xfb\x08\x02\x4e\x40\x35\xeb\x61\xbe\x68\x57\xa6\x88\x19\xf8\xa0\x26\xda\x1d\xbb\x8a\x4c\xa4\xde\xa3\xfa\x0c\x0c\x62\xc7\xe0\x1f\x1e\xa2\xff\xf9\x1f\xfb\xd5\x33\xa8\x82\x77\x8c\x68\x75\x38\x41\x59\x3f\xf5\x49\x7c\xc9\xd4\xc2\x48\xed\x91\x7c\x8a\x4a\x76\x68\x33\x63\x9c\x93\x59\xa7\xc3\x99\x0a\x5d\x20\x3d\x54\x07\x20\xc2\x73\x01\x72\x43\xf8\x16\xa4\x0f\x6d\x96\x90\x9a\x2a\xa0\x16\xa3\x0b\xf5\x83\x39\x2d\x74\x18\xa5\x31\xd2\x64\xf4\x2b\x58\xd7\xb8\xc1\x0b\x62\xbe\xbf\x38\xbb\xba\xec\x8c\xf5\x87\xf7\x20\x3a\xf2\xf3\xf3\x1a\x8f\x2e\xb3\x3f\xff\xc9\xe5\xee\xe7\x3f\xe5\x80\x77\x65\xef\xa3\x4f\xd1\x91\x42\x90\x94\xe6\x8b\x3d\xce\x58\x33\x67\x7c\x05\xbe\x19\xc8\x5c\xd8\xe3\xe2\xec\x2a\x25\xef\x76\x4d\x4c\xb8\xc3\xbe\x8f\x75\x7e\x9a\xc4\x9c\xec\x2b\x38\x6c\xd3\x90\x4a\x91\x7d\x82\x7e\xf8\xa4\x1b\x17\x0a\x5e\x5e\x9c\x5d\xa5\x8f\xdc\x14\x6b\x0f\x3b\x68\xe8\xe9\x51\x98\x1f\x12\x6f\x15\x0a\xb5\x8a\xe3\x0d\xe2\x64\xc5\x6e\xc0\x47\xb5\x33\x35\x0f\x97\x92\x48\xf3\x36\x15\xd2\xed\xa8\x13\x9c\x19\xae\xeb\x4e\x6f\x3b\xb4\x67\xec\x58\x45\x27\x22\xae\x1f\x08\xe1\x48\xfb\xe2\x9b\x46\xad\x2a\x21\xd4\x31\x2a\xb7\xe6\x4a\x51\x95\x02\x0c\x58\x3c\xff\x80\xad\xc5\xad\xc9\x74\x98\xfd\x65\x10\xa2\xef\x1f\x7e\x2e\x0e\x90\xc7\x72\x9f\x6b\x69\x6f\xe6\x3a\x1e\x33\x5b\x92\xd9\x35\xa2\x73\x54\x78\xd3\x06\xe2\xa4\x73\x69\xcf\x66\x63\x05\xec\x91\x88\x6d\x12\x3a\xb7\x86\xcc\x2b\x36\xbb\xa6\xcd\x62\x44\xc5\x2b\x80\xad\xcc\xe9\x77\x64\x0e\xf6\x74\xe9\xbc\xd2\x98\x31\x46\x2b\x59\xf8\x93\xa0\xfc\xa3\xc6\x31\x3b\xaa\x4c\xa7\xf8\x0e\x96\x49\xdb\x85\xf3\x22\xfb\x64\xd3\xd4\x8b\xf0\xf4\x28\xe1\xd8\x91\x5e\x71\x9d\x30\x14\xcc\x38\x57\xa8\xde\x0c\xeb\xc2\x3f\x7e\x93\xc9\x9f\x75\xd4\xae\x98\x4b\x21\x06\xf2\xb3\x5d\x73\x45\x72\x40\x12\x9e\x9a\xd4\x06\xa3\xc3\x95\x3f\x1b\x61\x7d\x55\xf3\xb0\x37\xd0\xa7\x8d\x67\x18\xd7\xb1\x99\x86\x5a\xb6\xa3\xe2\x9f\x0a\x4f\x43\x5a\xf4\x1c\x38\x81\x56\x6d\x2d\xe9\xba\x36\x7c\x2d\xee\xe3\x89\x47\x5a\x89\x09\x3a\x69\x10\xe6\x1c\x83\x06\x54\xc6\x90\x64\x6e\xd0\x5d\xae\x42\x9f\x29\xa2\x5c\x13\xbf\x06\xf1\xc3\x6d\x5d\x6e\x4d\xcf\x27\x26\xed\xaa\xfb\x11\xeb\xc8\x76\x0a\x56\x59\x78\x0b\xe8\x76\xf7\xaf\xfc\x31\x8d\xb6\xae\x75\x4e\x61\x07\xcb\x2b\x25\x0f\x23\xef\x7e\x5f\xb1\x8f\x9f\xce\x25\xe1\x3a\xe8\xcb\x59\xbb\x58\x1a\x9b\x48\xaf\xb9\xd3\xe7\xb0\xe8\xbb\x64\x50\x59\xbd\xb4\x52\x42\xa1\xfa\xe7\xba\x21\x41\xb6\xe3\x5d\xc6\xa2\x86\xa4\xd5\x61\x5f\x6e\xc3\xfe\x32\x22\xca\x42\x92\xa0\xd6\x21\x2e\xd6\x19\x90\xf8\x1a\x1c\x20\xa3\x14\x14\xa5\x70\x55\x85\xbb\x98\x07\x15\x7a\xf1\x7d\x62\xa2\xa5\xc4\x90\xc2\xee\x62\x7a\xc7\x32\xc3\x92\x2a\xd7\x37\x7d\x5c\xb9\x97\x1f\x90\x2c\x53\xc6\x8d\xc6\x71\x0a\x70\xd0\x5a\x16\x14\x80\x0d\x25\x1b\x54\x57\xf8\x9a\x20\xd1\xf2\xcc\x6c\xa6\xd2\x7a\x68\xc6\xce\xcc\x4f\x10\x22\xfd\x6d\x87\x78\x88\x7e\x08\x0c\xfb\xd2\x03\xe6\x7e\xf3\x7d\x24\x50\x52\x6d\x5c\x17\xdf\x86\x8a\xf5\x5a\xe5\x66\x00\x4e\xaa\xca\x05\x1e\xcc\x0e\xae\x97\xaf\xb0\x64\x16\x22\xab\xab\xab\xf2\x3e\xf3\x9e\x56\x1f\x1c\xf6\xd9\x58\x6f\x9a\x7a\x6b\xea\x1d\x3b\x3e\xd2\x65\x8f\xe9\x3c\xb5\x8b\x32\xfa\x81\xaf\x88\x1b\x6b\x24\x3f\x12\xc5\x53\x75\x3a\x2f\xed\x26\xe6\xd8\xa9\x20\x8f\x80\x8d\x75\xf9\xd4\xde\xa4\x76\x25\xc9\xf6\xd8\x93\xf2\xed\xda\xd4\x51\xd6\x6f\x9f\x81\xd6\x62\x75\x95\x9a\x45\x07\xc6\xf6\x8a\xdd\x0c\x53\xa5\xd9\x51\xb6\x6f\xaf\x3a\x4d\x24\x30\x7f\x2f\x17\x9b\xc7\x8c\xb5\x3b\x96\x86\xdb\x0c\xe5\x05\x22\x78\xb6\xb4\x7b\x04\xa9\xb4\xa9\xad\x5d\x7b\x2a\x4a\xfa\xed\xcb\xdd\xe4\x82\xf9\x06\x67\x75\xc1\x56\x68\x63\x03\x89\xb8\x67\xbc\x07\xf9\xd6\x86\x9f\xa1\x16\x03\xb8\xdb\xf9\xa9\x7c\x41\xa3\x43\xd7\x4c\x7d\x84\x34\xd1\x24\x49\x0f\x91\x94\x4e\xbf\x26\x10\x7f\xec\xc8\xf6\x36\xd5\x3e\x13\x55\x6e\x70\x2c\x2a\xf3\x6b\xb2\xcd\xb4\xf9\x6e\x7e\xea\xd8\x74\x2c\xf7\x24\xda\x3d\xe6\x1d\x65\x73\x3a\x9e\xd1\x4c\x49\x2b\xad\xb7\x51\xd5\x72\x9d\xdc\x46\x1b\x24\xc8\x8c\xd9\xf4\x41\xd5\x47\xc4\x6e\x84\x2b\xf3\xaf\xab\x0c\x63\xe9\x3a\x67\x7c\xa2\x7a\x07\x31\x8a\xa1\x6b\x39\x41\x3f\x9d\xd1\x8f\xdf\xfd\xa9\x50\x65\xff\x2b\x99\xbc\xb4\xda\xc7\xd4\x55\x08\x7f\xb1\x99\x3b\x1e\xa3\x35\x16\x22\x74\x85\xb4\x22\xad\xb5\xfb\x90\x27\xcf\x20\x7b\xf4\x6b\x72\x29\x20\x3f\xc4\x1c\xcc\x52\xfb\xba\xe3\x14\xcf\xae\xbf\x40\x01\x27\xae\x8b\xc2\x41\x39\x3c\xcd\x5c\x4e\x9c\x7e\x0e\x17\xc4\xfe\x2b\x99\xd4\x6d\xf4\xd2\xab\x80\xc1\x42\xc1\x36\xac\x26\xba\x79\x2d\x04\xa5\xf6\x49\x2d\xbb\xa2\x68\x8e\x01\x4b\x6a\x39\xb5\x75\xae\xcd\xa5\x38\x52\x75\xb3\xa2\x43\x30\xb6\x4c\xf7\x62\xc9\x3e\xe3\x50\x0b\xd5\x92\xac\x6e\x65\x04\xba\x87\x58\xdd\x8e\x53\x5a\x88\xb0\x47\x57\xb0\xa1\x6d\x7a\xc4\x5a\x4a\xa5\x35\x40\xa5\x9a\x76\x71\xc2\x57\xc2\x23\xba\x8d\xda\x05\xdc\x13\x91\xd3\x56\xd0\x46\xed\x9f\x35\x5b\xd0\x19\xc2\x1c\xde\x02\x32\xc0\x48\x4d\x17\x54\xd7\xd1\xc9\xe8\xad\x9b\x84\x01\xca\xdf\x99\xa8\xbf\x2d\x8a\x7a\x4c\x51\x9f\x66\x24\x97\x04\x42\xc3\x8a\xbb\x33\x81\x0e\xd3\xa9\xd4\x8f\x2e\xd9\xc4\x85\x9b\xee\x64\x8a\x75\xad\x72\xac\x0b\xee\x20\xf7\x3f\x45\x3c\x58\x92\xfc\xdb\xc8\xb7\xc6\xcf\x48\xb8\x36\x0b\xb7\x08\x73\x62\xd8\xad\xce\x6f\x61\x04\x48\x24\x7e\xe7\xed\x64\xd9\x8e\xfc\x65\xe2\x1c\x70\x7c\xf8\x78\x06\xea\x11\x5e\x6d\xbc\xf8\x1c\xb6\x92\x35\xa4\x36\x58\xec\x62\xc4\x7d\x56\x59\x7e\xf2\xd0\xf3\x50\xb1\x17\x1d\x65\xd1\x74\xad\xae\x8d\x93\xd9\x08\x04\xc2\xe6\xbb\x28\x78\x0e\xf9\x76\xee\xad\x81\xee\x70\x62\x94\x6c\xa7\x43\x9c\x70\x30\xc5\x09\xae\x90\xb2\x47\xa3\x0b\x54\xdd\x31\x94\x52\xa8\x53\x32\x10\xaf\x38\x69\x6b\xce\x76\x66\x2c\x15\xb2\xe9\xe2\xf4\x8b\x28\x16\xcd\xa0\x78\xb6\xb2\x8e\x99\xf2\x64\x82\x9c\x7f\x33\x1d\xb8\x50\x81\xab\xe4\x4c\xf7\xe2\xec\x6a\x18\xc2\x51\x9a\x06\x37\xca\x5c\x83\x2b\x4c\xf1\xa5\xee\x11\x7a\x5b\x13\x2c\x20\xcf\x26\x3a\xed\x51\xc0\xe3\x88\x2c\xae\x9c\x02\x73\xaf\xf7\xa2\xbe\x6c\xbe\xfd\xce\x9c\xca\x6c\x33\xf8\xa6\xa0\x5e\xb0\x28\x83\xe8\xce\x73\x8b\x66\xc4\xf7\x64\xab\x7d\x99\x48\xdf\x33\x6d\xaa\x38\x81\x13\x36\x16\x2a\x47\xd1\xd6\xa7\xb4\x8a\xea\xa7\x73\xdd\x74\x60\xdc\x31\x62\x94\xfd\x10\xbf\x81\x14\x2d\x24\xe3\xb0\x8e\x66\x99\xed\x2b\xf2\x8c\xeb\x94\x17\x8d\x4d\x72\xbf\x48\xe9\xf8\x6d\xa2\x04\x5c\x5a\x9a\x4e\x1e\x66\xdc\x8c\x6c\x42\x8e\xd8\xbc\xdd\xc1\x04\x09\xaf\xd6\xa6\x66\x79\x7c\xf3\xa2\xc8\x0d\xff\x48\x51\xba\xdb\x01\x66\xe8\xd6\x7b\xf6\xeb\xf4\xea\xa1\xbc\x20\x99\xa3\xe3\x4e\xb6\xc5\xad\x5c\xee\xe6\xdd\x44\x06\x14\x48\x2c\x1e\x46\x98\xc6\x9a\x1e\x91\x5a\x94\x52\x61\x0b\x97\xbb\x51\xd7\xce\x10\x53\xea\xaf\x94\x6c\xec\xb9\x5a\x42\xaf\xb0\x76\x61\xf9\x20\x2e\x7d\xab\xde\x1f\x84\x7c\x11\x5d\xf2\x9b\xd6\x52\x13\x42\xf1\xcd\xb1\x3e\x8a\xe9\x23\x8f\xa1\x42\xd0\x49\x29\x90\x3d\xa6\xd1\xa1\x4c\xce\xe7\xca\xe6\xe5\xb8\x11\x58\xbb\xf2\xc6\x6c\x11\x69\x30\x49\xc7\x45\x22\xd9\x3d\xa9\x6b\xcb\xa3\x22\x08\x82\x28\x21\x55\x4e\x18\x27\x3a\x99\xc1\x3d\xa8\xf5\x30\xec\xfc\xba\x9d\x2d\x51\x4d\xaf\x09\xda\x28\xcb\xee\x14\xaf\x28\x6e\xd0\x2b\x5a\xd7\x98\x57\x31\x16\x4b\xb6\xd6\x79\xaa\x51\x10\x95\x13\xbc\x72\xd7\xbb\x48\x23\x29\x27\x68\x46\x25\xe8\x92\x3f\xb3\x56\x48\x9b\x08\x81\x62\x81\xeb\x7a\xcd\xcb\xda\x6b\xf1\xa2\x3e\x88\xf9\xcc\x9f\x5d\x1f\xdd\xcf\xc7\x82\x4b\xaf\x87\x1c\xd5\xe4\x86\xd4\xee\xfc\x1f\x55\x64\x4e\x9b\x20\x31\xf4\x1e\x31\xb0\xf0\x8a\x45\xd9\xe2\x3c\x9d\x61\x16\x44\xb1\xf1\x32\xb3\xa7\x58\x58\x58\x9f\xdb\xab\xed\x41\xc4\xf7\x1c\x82\x33\x7a\x13\x7c\x74\x0f\xec\xbf\x01\xbd\xa7\xb6\x95\x25\xbe\x21\x71\x58\xce\x75\x36\x9d\x86\xde\xaa\xc5\x53\x38\x61\xb2\x85\x38\x2d\xb4\x30\x3d\xc6\xf3\xb7\xc8\x5e\xe8\xf7\x49\x45\x59\x3d\xba\xbd\x0f\x5d\xd2\x6c\xa3\xbc\x32\xa0\x39\x3d\xf1\xfc\xb3\x20\xf2\xa4\xae\xf5\x5d\x40\xb7\x89\x1b\x81\xd2\x35\xb3\x68\x63\xcd\x9b\x10\xe5\x68\xbf\x08\xcc\xdd\xb8\x2f\xec\xef\x40\x45\x78\xd3\xce\x5c\x01\x8a\xe6\x1c\x20\xa0\x5f\xaa\x32\x38\xab\x6f\x3e\xe4\x73\xcb\xee\x5a\x8d\xa0\x5c\x82\xc8\xa7\x15\x16\x88\xc8\xa6\xe6\xf2\xfc\xd2\x5d\x1d\x7b\x1b\xce\xdd\x9a\x1b\x8f\x5d\xae\x47\xb8\xe9\x86\x39\xb2\x3e\xed\xc6\xe7\xc8\x52\x81\xa6\x44\x6d\xf8\x82\x60\x3e\x5b\x9a\x79\x17\xe8\x77\x15\x23\x84\xb0\xbd\x72\x2b\x99\xfd\x97\xcd\x4f\xb4\xb7\x80\x53\x12\x16\xab\x61\xb8\x7b\x1e\xe9\xcd\xc1\x67\x39\x5d\xdd\x63\xa8\xfa\x02\x9b\x06\xf1\xe1\xd9\x28\xaa\x1f\xd2\x49\x5f\x53\x39\x3d\x3c\x55\xed\x23\xb1\x85\xd2\xf1\x71\x2b\x00\x36\x92\x2b\x3f\x11\x62\xd2\xdd\xf9\xe5\xc7\x49\xf4\x5a\xc6\x81\xce\xcf\xb1\xd3\x64\xca\x96\x0c\x12\xd9\x3a\x3e\xb0\x23\x1c\xbc\x26\xab\xb5\xb2\x28\x7f\xe4\xf4\xd7\x5f\x6b\x4a\xc4\xc1\xd7\xe0\x87\x68\x60\x83\xfa\x95\xbd\xf8\xa3\x78\x40\xb7\x77\x96\xdb\x2e\x0e\xd2\xfd\x42\x3e\x7a\xb3\x07\xd7\xa4\xc5\xef\x6d\xbe\xb5\x41\x28\xb9\x0d\x1e\x72\xd0\x78\x8c\x4e\x59\xf3\x08\xe2\xc8\x33\x02\x09\x3e\x37\x84\xbb\x93\x20\x63\x01\x33\x6e\x10\x83\xe3\x9f\x1b\x5c\x07\x65\xcd\xe8\xdc\x15\x7b\x09\x72\x54\x33\x6e\x2c\xbb\x33\xea\x47\xc7\xa6\xef\x61\x8c\xe0\x41\xb3\x92\x19\x57\xaa\xcf\x93\xf3\xf7\xa5\x71\x02\x42\x9e\xd6\xa9\xc1\xd6\x69\xf1\xd1\x4a\x7b\xfd\x30\x5e\x4c\x2a\x52\xde\x1f\xf5\xf1\x4f\x90\xbe\xef\xd9\xc7\xa5\xef\xdf\x4a\x9b\xfc\x57\x4b\xf8\xd6\x4e\xc0\x5c\x08\x37\xba\xd8\xeb\x40\x7f\x99\x9d\x42\xda\x96\x8e\xe5\xe2\x29\x6b\xdd\x05\xc8\x94\x61\x0c\xc8\xec\x22\x59\x38\x5e\xc8\x1a\x3e\xf3\x26\xba\x43\x75\x5c\xb2\xf6\x8b\x55\x93\xba\x57\x2f\x1c\x32\x7a\xf9\xb6\x3b\xb9\xd6\xd7\x57\x89\x16\x15\x12\xc8\xff\x09\x16\xb5\x74\xfb\x36\x5e\x9b\xb0\x74\x8c\x5b\x9b\x5b\x0b\xac\xf6\x5d\x0b\x62\x9a\x6c\xc1\xc6\x4b\xb6\xab\xfa\x0c\x9e\xd5\x2b\x92\xdc\xdc\xad\x0a\x89\x6e\xee\x6b\xed\x4d\xf6\x7f\x24\xe1\x53\x5c\x15\x94\xe4\x36\x4e\xbc\x0e\x71\xfd\x42\xb7\x12\xfa\x1f\xbf\xc5\x4a\x08\x7f\x95\x2c\x5d\x8b\xf3\x53\xf1\x7c\x9b\xc9\x80\x8b\x50\x66\x6b\x81\xdc\xaa\x16\x76\xcb\xdb\xaf\xc9\x45\xd7\x65\xf2\x5b\xae\xcb\x49\x21\xc4\x1a\x00\xa3\x73\x65\xea\xc3\x21\x80\x18\xaa\xbd\x47\xe9\x1b\x3a\xb7\x17\x52\x0b\x6b\xe6\xe8\x32\x48\x0a\x34\xd9\x30\xec\xb7\x7f\xfc\x10\x2e\xdd\x0d\xe6\x7a\x7d\x84\xff\x1d\x1d\xa3\xf7\x1f\x62\xbf\x36\x89\x52\x5b\xdd\x6b\x57\x4c\xdf\x9a\x71\xfb\xbb\xd3\x47\x0e\x86\xfa\xd2\x86\xa3\x68\xbe\xe2\xc6\xfa\x2d\xc5\x58\xcc\x3b\xf9\xc7\xb6\x3b\x88\x67\x21\xa0\xe1\x33\xca\x6d\xb1\xac\x39\x6b\x9b\x6a\xe8\x7c\x7c\xa0\x6e\xd6\x4d\xcf\xdd\x14\xba\x19\xd8\x31\x12\x0d\x8c\x7a\x62\xe6\xf1\xa0\x5a\x08\xc2\x71\xc3\x8d\x60\xb7\x9c\x5c\x18\xdc\x0b\xa6\x85\xc1\xb4\x26\xcd\x42\x2e\x15\x41\x1e\xdf\x6d\xe7\xd1\xf0\xfa\x76\x19\xf0\x66\xce\x9b\xf0\x5a\x3b\x1c\x1f\x53\x01\x4f\xe3\x83\x49\x58\x3a\x13\x08\x54\xdf\x57\x54\x69\xa1\xe8\x58\x54\x4a\x96\xa1\x9e\x41\xa6\xc5\x4a\xc2\x70\x7f\x7a\xcc\xeb\x30\xf0\x20\x13\xda\x52\xf1\xd2\x5e\x7f\x95\x94\x93\x2a\x8a\x3b\xb3\x9a\x60\x93\x9e\x63\xef\x7e\x0b\x85\x01\x56\x34\x1a\xeb\x72\x39\x6c\x35\x65\x9d\xa6\xff\x00\x2e\xca\x6c\xa8\x20\x50\xf7\xa5\x31\xd9\x37\xe6\xb6\xd1\xa1\x9a\x00\xd7\xe3\x8e\x3a\x61\x9c\xcf\x83\x2e\x41\x8f\xa1\xd2\x47\x42\x6a\x57\x64\x05\x47\xb2\x7e\xd1\x87\x9d\xe0\xa6\xad\xbf\xac\x33\xc3\x0d\x6a\x18\x52\xfb\x0e\xe1\x68\x4a\xec\xfd\xef\x28\x2a\x7e\xaf\xac\x13\xa1\x72\x6f\xee\xee\x73\xb3\x52\x66\x91\xa0\x38\x89\x09\x9f\x65\x64\x03\xd5\xcd\x62\x7d\x9d\x32\xc1\xa0\xff\x86\xa8\x1e\xf0\x59\x98\xb8\x64\xfc\x0d\x41\xa4\xa9\x2b\x69\x5f\xfb\x28\xda\x93\x85\x94\xa7\x4b\x42\x2c\xce\x40\x80\x00\x61\x73\xf8\x4d\x45\x56\x93\x44\x87\xb2\x75\xab\x63\x3b\x38\xbc\x41\x63\xe6\x71\x68\x1d\x9d\x42\xfa\xb8\x53\xc5\x16\x82\x90\x58\xb6\xc5\xfc\x4f\xd3\x22\xd7\x65\x29\xd4\x73\xcf\x06\x1b\xbc\x43\x03\xa3\xfd\xfc\x26\x2a\x2e\x89\xd4\xb9\xf5\xfb\xcb\x66\x89\xdb\x5c\x6a\xfd\x48\xa1\x49\xe5\x23\xfb\xf7\xb0\x18\x3d\xb0\x55\x8e\x0a\x52\x02\xd5\x4a\xa1\x20\x44\x59\xce\x52\x11\xd3\x42\x9a\x88\xd7\x5b\x13\xce\x02\x5d\xe6\xb2\x2a\x7e\x0b\x03\xb4\x5b\x5a\xc0\xce\xb1\x64\x29\x0b\x8a\x5b\x8c\x4c\x8b\x5b\x99\x08\xd8\xe1\xde\x35\x78\x70\x7f\x23\xda\x1e\x0b\x8f\x98\x85\xc6\x86\x79\x57\x3f\xb8\x5a\x98\x84\x11\x77\xc4\x6e\xc2\x75\xc3\x68\x46\xb8\x5a\x2b\xab\x5b\x46\x09\x9d\xff\xb7\x2a\x49\x28\xcd\xcb\x24\xae\x0b\xe4\xc8\x06\x4e\xe8\x13\x11\xc0\xcd\x3c\xdd\xe2\x7b\x9e\x92\xeb\xd4\xa4\xb9\x07\x73\x67\x55\xfa\xce\x9e\xb2\x37\xed\xea\x35\x20\xfe\x96\xf0\xac\x60\x99\x1a\x03\xaf\x20\x5c\x1f\xa9\x4e\x7d\x94\x1b\xf5\xeb\x52\xa3\x86\xc3\x34\x94\x7e\x43\xcf\xeb\x46\x91\xe8\xc6\x3b\xa8\xc6\x45\xa9\x0a\x45\x68\x1e\xee\x55\xf6\xa1\xcc\xb9\xbd\xd5\x27\x7c\x17\x77\xf5\xcb\xae\xa3\x1f\x12\x12\xce\xd5\x6a\x6a\x9f\x29\xec\x98\x15\xfa\xed\x2c\xe1\x70\x38\xc9\x19\xa4\x7c\x0f\x5d\x17\xc9\xfc\x5a\x97\xd0\xef\x74\x01\xbd\xe3\xf2\x79\xdf\xec\xe1\x3f\xe5\x93\x95\xb0\x00\x42\x7a\x08\x21\x82\xdf\xfc\x29\x4b\x46\xad\xe8\x3a\xfa\x9e\xc7\x2f\x21\xe8\xbd\x0f\x61\x02\x5c\x07\x87\x93\xf7\x39\xdd\x3f\xfc\x13\xae\xeb\x8e\x65\xf5\x7f\xf7\x9f\x26\x79\x24\x9f\x6f\xcf\x4f\xe3\x50\x56\x5a\x15\x03\x8e\x81\xe5\xb6\x6f\xa7\xc9\xaa\xbf\x04\x1b\x4e\xa8\x06\x6e\xbb\x65\x94\x2b\x74\x84\x91\x8e\x68\x1e\x83\x52\xc9\x95\xc3\x49\xbe\x32\xbf\xfb\x85\x7f\x1f\x52\xe2\xc3\xc3\x84\x01\x20\x53\x4c\xbf\x5f\x04\x69\x3c\x7a\xe1\xf5\xb3\x72\x08\xca\xfb\x05\xbd\x7d\xfe\x6b\x57\x7d\x13\x97\x44\x10\x14\xae\x86\xb5\x36\x7b\x7d\x7e\x79\xb8\xb0\xdc\x7a\xb1\xec\xd7\xfa\xe2\xcf\x47\x07\x82\x36\x5f\x80\x57\x66\x22\x24\x10\x06\x56\xc1\xff\xfe\xd8\x21\x25\xd6\x03\xbf\x85\x2b\x7f\x2f\x99\x60\xa1\x4c\x80\x49\x21\x04\x73\x71\x9f\x92\x5a\xc1\xe6\x6a\xb4\x46\x51\xda\xd4\xef\x31\x89\xbd\xa0\x3e\xc8\x5a\x85\xd5\x33\xf3\x5f\xbb\x4b\xc9\x26\x77\xe6\xcb\x85\x98\x42\xe0\xc3\x1e\x60\x69\x46\x4b\xb9\xa4\xa0\x82\x66\x63\x72\x0f\x8f\xd1\xe3\x09\x3a\xb8\x88\x2b\xe6\x40\x64\x70\x66\x0a\x42\x98\x7b\x33\x7d\x35\x04\x81\xe7\x42\xd4\x15\x1f\xa6\x4b\x1a\x35\x36\x6f\x32\x47\x01\x57\xf7\xe3\xca\x3f\x3b\x91\x3d\xa2\x11\xd9\x76\x51\x0d\x87\x94\x53\xe2\xca\xcd\xaf\xf1\x5a\xa9\x79\x6f\xd2\xe3\x5a\xa9\x93\xad\x35\xd9\x2d\xc7\xb4\x42\x29\x7c\x0f\x2b\xca\x78\xfc\x79\x49\x1a\x73\xa3\xd6\xd8\x88\x09\x83\x29\xf6\xd4\x00\x87\xe8\x09\xf0\xaa\x75\x81\xe5\x32\x2c\x6a\x13\xe8\x0a\x08\x58\xac\xf0\x1a\x4d\xb7\xf6\x82\xd5\x50\xb9\x82\x2b\x52\xa9\xaf\x74\x65\x6e\x78\x3e\xa1\x59\x20\x36\x0f\x81\x5c\xea\x14\xcb\xb7\x3e\xd1\x31\x93\x23\xf5\xc1\xb3\x19\x11\x62\x60\x13\x8b\x0e\x35\xbf\xc6\xe6\xbb\xef\xe8\xb9\x4a\x73\xdf\xe7\x12\x19\x83\x19\xeb\x3a\x6e\x45\xb3\x39\xc9\x16\x35\xf3\x6c\xd7\x95\xce\x27\x82\x3b\x3a\x90\xa2\xae\x48\x46\x9b\xc5\xa8\x1f\xe5\x55\x6a\x04\x4e\x90\xad\x47\x51\x42\xd5\x98\xe4\x76\x27\xb7\x25\xf7\xb2\x62\x77\x22\x42\xf3\x25\xd4\x1c\x91\x74\xa5\x3c\xf1\xd0\x84\xa4\xc2\xda\x6f\x71\xf1\x2f\x73\x12\x43\x17\x4d\x54\x0b\xd4\xee\x24\x71\x2d\x2a\x6d\xeb\x63\x5d\x87\xb1\x31\x25\x53\x74\x59\x45\xbd\xdc\x4f\x7a\x68\xa0\x2b\xeb\xc6\xca\x32\x57\x48\xe3\x31\xfa\x2b\xe6\x14\x72\xa2\x04\xfd\x35\xbc\x83\x9a\xac\x9c\x56\x7e\xa2\x9f\xe8\xc9\x66\x6d\x48\xfe\xed\x1f\x27\x01\xa4\x7f\x55\x32\xfb\x1d\x55\x32\xcb\x9c\x7f\x5b\x1c\x59\xeb\xed\x74\xb3\x8e\x9a\xdb\xda\xcf\x1e\xe3\xe3\x00\xfd\x64\x73\x03\xb8\x76\x6f\x4b\x4a\x89\x75\xd5\x07\x2f\xe2\xd0\x85\x5b\x77\x45\xd1\x64\xbf\xca\x2b\x87\x07\x3c\x10\x75\xd4\x65\xa0\xdd\x8f\xae\x1a\xf4\x9d\x27\xb6\x47\xc1\xe6\x62\x14\xc3\xa5\x87\x82\x9a\xd3\x50\x1e\x29\xbb\xe7\x37\xab\xad\x19\x76\xbd\x65\x94\xa3\x83\x87\xbf\x2c\xda\x91\x24\xd4\x65\x9b\xc5\x7b\x80\xf0\xa1\x9b\xb8\x17\x5d\x3b\x62\x07\x91\x23\x65\xbf\x4f\xf0\xd4\x06\x07\x99\x2e\x19\x1c\xa8\xd6\x64\xdf\x68\x85\x29\x07\x46\x45\xf8\x52\x12\xa7\x2e\x26\xb9\xc7\xd2\x75\x96\x24\x75\x96\x4b\x16\x6b\xef\xd2\x77\x3d\x25\x49\x6f\x0f\x6c\xcf\xf2\xab\xda\x0e\xd3\xc6\xc5\xaa\x34\xc8\x7e\x2c\x88\x2e\xd2\x55\x19\xa6\x96\x9f\x5b\x8f\xa2\xe2\x2f\x71\x67\x27\xa7\xf4\x47\x71\xcb\x65\x56\x3b\xaa\x48\x9a\xd0\xae\x22\x72\xa4\x4e\x61\x84\xe0\x55\x26\xfb\x74\x4b\xfe\xa6\x94\x7b\xc9\x29\x18\xb4\xeb\xcd\x29\x3a\x47\x0f\xb5\x0e\xed\x9a\xda\xc8\x9e\xbc\xfc\x85\x6c\x07\x19\x62\xa5\x0a\x4e\x3b\xe0\x85\xaf\xaf\x65\xf0\x86\x46\x71\x3f\x2e\xd4\xb8\x34\x52\xee\x5a\x84\x0d\x3e\x77\xa9\x83\x4e\x3c\xde\x67\x63\x7f\xe8\xba\x76\x85\xab\xea\x8a\xed\xab\x25\x9c\x5d\x27\xd0\x93\x6e\xfb\xff\x8e\xca\xe2\x5f\xb2\x3f\xee\x13\xd5\xfe\x05\xfb\x22\x61\xfd\xcd\x85\xf4\xab\x4a\xa9\xbd\xce\x0d\xc5\x28\x95\xb3\x3f\xa7\xca\x00\xf7\x49\x68\xae\xeb\xc3\x83\x6e\x39\xbb\xb5\x80\x39\x83\xed\x36\x42\x19\x59\x73\x81\x80\x86\xbc\xf6\xaf\x72\xe3\xbf\xdf\x72\xe3\xfb\x44\xb6\x1e\x96\x4d\xbf\x48\x2a\xf4\x89\x11\x9a\xa0\x83\x50\x77\x5b\x35\x6b\xd4\x8d\x35\x11\xb4\xb1\xfa\x30\x8d\x7d\x15\x42\x56\xd9\x98\xd1\xeb\xa2\x79\xcd\xf0\x52\x7d\xbf\xd0\x95\xad\x48\x75\xc5\xcc\x0d\x4f\x0d\xfc\x6b\x15\x1f\xef\xae\xd5\x99\x4d\x0a\x1d\xa7\x4f\xba\xf6\xcb\x71\x47\xfb\xc4\xf3\xea\x82\x9a\xbb\x79\x4f\xf2\x30\xa0\x8d\x13\xdf\xd7\x5d\x38\x03\xce\xde\xc6\x83\x2b\x77\xb8\xb6\xef\xd6\x45\xd5\x78\xef\x7d\xd4\x07\xc5\xe5\x80\xe7\x91\x0c\x16\xc1\x73\x58\xc9\xe3\x34\x40\xb2\xf4\xa1\x8d\xc7\xf1\xcf\xee\x5a\x47\x4c\x71\xbd\x26\x36\x2d\xb6\xf8\x53\x5a\xad\xd5\x2d\x90\x7b\x2b\xec\x49\xfe\x9b\x7d\x8c\x29\xf9\x09\x72\x2b\x2e\xdb\xf5\xba\xde\x02\x8a\x91\xa2\x6d\xed\x23\x24\xf1\xcd\xbf\xb4\x4a\x59\x74\xc8\xa1\x1f\xb6\xf0\x1d\xc2\x37\x2d\xc2\xfb\x77\xba\x26\xd9\xd8\xc0\x1a\xa7\x75\x7e\x0f\x23\x4c\x5c\xf9\x44\x73\xd4\x34\xc3\x6b\xac\xeb\xb4\xb8\x6c\xe1\x42\x81\x86\x08\xaf\x9a\x36\xd7\x4f\xbf\xf9\x54\xae\x27\xfc\xf9\xfb\xc1\x58\x83\xce\x10\x19\x22\x89\xf9\x82\xc8\xbd\x71\x7d\x6b\xae\x8d\x80\x04\xf2\x3d\xe9\x95\x3d\xff\x11\x3d\xfa\xe1\x46\x36\x82\x00\x3f\x06\xa3\x82\xbe\x7a\x61\x78\xd1\xb3\x67\xe5\x6e\x39\x7e\x7e\xf0\xff\x02\x00\x00\xff\xff\xc1\xb0\x4e\xce\xdd\x0f\x01\x00" +var _topshotCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\xbd\x7d\x73\x1b\xb9\x91\x30\xfe\xbf\x3f\x05\xac\xfb\xd5\x2e\x95\xa3\x49\x6f\x36\xb7\xbf\x7a\x58\x56\x1c\xd9\xb2\x36\xba\xd8\xb2\xcf\x52\xb2\x75\xe5\x72\x3d\x01\x39\x20\x89\x78\x38\x60\x06\xa0\x68\xae\xcf\xdf\xfd\x29\x74\xe3\x1d\x98\x21\x65\xc9\x9b\xcb\x56\x58\xa9\xac\x45\x02\x8d\x46\xa3\xd1\xe8\x37\x34\xc6\xbf\x79\x40\x08\x21\x67\x4c\xce\x5a\xbe\x56\x5c\x34\x13\xf2\x9c\x35\xaa\xa5\x35\xb9\x5a\xd1\x56\x91\xe7\x42\xff\x35\x53\x64\x2e\x5a\x72\xf9\xec\x94\x5c\x8b\xf5\xd5\x52\xa8\x07\xd0\xf1\x7a\xc9\x25\x91\xd0\x70\x66\x1b\xea\x7f\x50\xde\x48\xa2\x96\x8c\xcc\x44\xcb\xc8\x7c\xd3\xcc\x34\x6c\x5a\x73\xb5\x03\x40\xd0\xd9\x40\x23\x1a\xdc\x90\xcc\x5a\x46\x15\xab\xc8\x74\x47\xce\xe8\x7a\xcd\x5a\xf2\x92\x4e\xa5\x1d\x86\x79\xf8\x2b\xda\xd0\x05\x43\xf0\x15\x55\x94\x50\x29\xc5\x8c\x43\xe7\x2d\x57\x4b\x42\xeb\x1a\x7e\x5c\xd7\x74\x27\x09\x6d\x2a\x22\x99\x92\x00\x48\x2d\xa9\x22\xb4\x65\x64\x23\x59\x45\xa8\x24\x8a\xad\xd6\x35\x55\x4c\x02\x5a\xba\xd7\x2b\xb1\x62\x8d\x22\x97\xe7\xd7\x66\xf0\x9f\x96\xac\x21\x94\x34\x6c\x4b\xde\xd4\x74\x47\xb6\xb4\x51\x92\x28\x41\xa6\x8c\xd0\xaa\x62\x95\xfe\xb7\xee\xd9\xb2\x99\x68\x2b\x39\x24\xb4\x21\xa7\xd5\x8a\x37\x66\x4e\x38\x74\x00\x41\xaa\x76\x33\x53\x88\x8c\xa6\x9f\x12\x2d\xab\x08\x6f\x00\x4a\x4c\xcd\x91\x23\x40\x13\x80\xa5\x16\x34\xc0\xbc\x62\x4a\x8e\xe0\xff\x75\x37\xc9\xa5\x22\x62\x4e\x28\x59\x6f\xa6\x35\x9f\x45\xa3\x01\x30\xb7\x40\xa6\x01\x6f\xe6\xa2\x5d\x51\xbd\x42\x84\x4e\xc5\x46\x11\xaa\x29\x36\x04\xd2\x51\xb2\x6e\xf9\x8d\x1e\xaa\x65\x52\x6c\xda\x19\xd2\x0e\xa9\x29\xc8\x8a\x37\x0a\x90\x58\x01\xd9\x24\x99\x52\x4d\x59\x31\x9f\x6b\x1c\x70\x05\x60\xe4\x25\xbd\x61\x64\xca\x58\x43\x6a\xde\x7c\xf0\x44\xbb\x62\xc1\x1c\x09\x85\xf9\xb9\x91\x96\x14\x97\x79\x2d\xb6\xac\xd5\x3d\x2a\x01\xab\x2b\xe6\xf0\x35\x5f\xad\x45\xab\x68\xa3\x08\x05\xfe\x42\x42\x97\xe9\x68\x96\x51\xc3\x97\xb0\x84\x1a\xdc\x4c\x03\xb3\xdc\x29\x75\x4f\x9c\xb9\xe1\x15\xb6\xc3\x16\x6a\xc9\x78\x4b\xa6\xa2\x6d\xc5\xf6\x8a\x29\xd7\x43\x83\x58\x30\x4d\xae\x96\xcd\x59\xcb\x9a\x19\x23\x96\x30\x00\xc8\xe2\xe2\xb1\xd0\x0b\x39\xb4\xa0\x9b\x14\x01\x61\x50\x67\x8a\x6c\x24\x6f\x16\x48\x3a\x07\xdc\x10\xea\x42\xb7\xe2\x7a\x16\xbb\x61\x61\xaa\xb0\x6c\x5c\x49\x52\xb1\x39\x6f\x58\xe5\xc8\xa9\x27\xa8\x18\x34\x01\x38\xb0\x59\x16\x9a\x8f\x88\x62\x74\xb5\x15\xed\x87\x21\xf9\xdb\x46\x2a\x52\xf3\x0f\x0c\x20\x5f\x34\x15\xa7\x0d\x25\x6f\xe8\x8c\xb5\x12\x47\x5b\x20\x53\x2b\xd8\xbf\xba\x23\x00\xd3\x1c\xa7\x49\xc5\x57\x6c\x04\x5f\xf8\xbd\x63\x59\x43\xef\x3b\xcd\x2f\xac\x32\x14\xd0\x5f\xf0\x86\x2b\x4e\x6b\xfe\xb3\xdb\xbd\x66\x07\x9e\xe9\xad\x6d\x78\x97\x36\xc8\x70\xba\x43\xcb\xd4\xa6\x6d\x50\x50\x68\x74\x00\x62\x3b\x2a\x08\x0a\x5a\x4b\x61\x88\x20\x09\x25\xcf\x45\x5d\x33\x5c\x37\x4b\x91\x11\x0a\x30\xae\xa5\x04\x11\xd3\xbf\xb1\x68\x9f\xb0\x1b\xd6\xee\xac\xbc\xd3\x02\x81\x88\x6d\xc3\x5a\xb2\xe5\x75\x8d\x9b\xd6\xac\x2f\x6f\x09\x9d\xcd\xc4\xa6\x51\x6e\x5b\x80\x8c\x32\xbf\xe9\x9e\x33\x37\x78\x80\xe9\x8a\xf2\xc6\x49\x40\x0b\x02\xc1\x03\xee\xb0\x67\xf4\x4a\x8a\x6d\x63\xe5\x92\x07\x64\xb8\x5d\x01\x23\x6d\x24\xd3\xe3\x2e\x45\x5d\xb9\x1e\x96\xee\x7e\xff\x35\x42\x91\x1d\x53\xb8\x0f\x25\xc3\x4d\x40\x75\x67\x4b\xc0\x4b\xa1\xd8\x84\x9c\xc2\x04\xf5\xa6\x9f\x2d\x69\xb3\xd0\x9c\xe8\x99\x14\xf0\x5b\xd3\x46\x4b\x8e\xb9\x26\x1c\x6f\x6e\x68\xcd\x2b\x42\xdb\xc5\x06\x70\xe4\x88\xda\xba\x15\x37\x5c\xcb\x47\xd1\x12\xd1\x30\xcd\x22\x1a\xb5\x75\xcb\x1e\xcd\x44\x53\x71\xc3\xf3\x2d\x59\x0b\x09\xec\x6b\xbf\xa2\x2d\x6b\xbe\x55\x64\xa5\x45\x83\x06\x74\xee\xc6\x86\xa9\x54\x02\x7e\x15\x15\x9f\xef\x0c\x9a\xb8\x24\x7c\xb5\xae\x77\x86\x41\xc8\x63\x0d\xb9\xe1\x35\xae\xa5\xde\x13\x6a\x29\x24\x23\x33\x2a\x99\x24\x0d\x43\x11\x34\xd5\x42\xa6\xa9\x6a\xcf\x4f\x7a\x4b\x3a\x72\x5c\x80\x80\x86\xc5\xf0\xc2\x46\x09\xd2\xb2\x15\x5b\x4d\xb5\x4c\x72\xdc\xa2\x17\xf4\x47\x51\x57\xac\x21\x57\x80\xd3\x4f\xb4\x6d\xb9\x68\x25\x99\xd6\x6c\x4b\x28\xf9\xfe\xd1\x77\xa4\x66\xd4\x09\xfa\xdf\x3e\xfe\xee\x07\xd8\x43\x73\xde\xd0\x5a\x8e\x1e\x3c\xf8\xcd\xf8\xc1\x03\x1c\x46\x4f\x79\xc1\xa7\x35\xbb\x16\x1f\x58\x43\xe6\xad\x58\x91\xc7\x1f\xcf\xff\x7c\xf9\xe3\xc5\xb3\x97\x2f\xae\x5f\xff\xe9\xc5\xe5\xe9\xd9\xd9\xdb\x17\x57\x57\xb6\xc3\xa5\x68\x8a\x7d\x2e\xcf\xaf\x93\x96\xaf\x98\xa2\xfa\xdc\xfc\x0b\x67\x5b\x69\x9b\xbd\x7a\x71\x7d\x7a\x76\x7a\x7d\xfa\x97\x8b\x17\x3f\x5d\x25\x1d\xcc\x0e\x78\x29\x66\x1f\x80\x13\xb0\xc7\xf5\xeb\x37\x57\x7f\x7c\x7d\xfd\xf2\xf5\xf3\x3f\x5d\x5c\xfe\x68\xbb\x3c\x58\x6f\xa6\x7e\x07\x9a\x9e\x93\x1c\xbb\x4f\x40\xb3\xf1\x98\x3c\xba\x9f\x8f\x05\x67\x77\x6b\xc5\xd6\xb5\xd8\x01\x37\xde\xd0\x96\xd3\x69\x6d\x8e\xe1\x7b\x1c\xd2\x8d\xb9\xd4\xe7\xb0\xd2\xf2\x33\x92\xf6\x9a\x75\x10\x0f\xbd\x07\x1a\xdc\x13\x9b\xa9\xde\x4a\xe4\x12\xdb\x0f\x8e\xc9\x84\x5c\xa9\x56\xd3\xf5\x93\xe5\xdc\xff\xef\xd3\xe5\x8b\xeb\x9f\x5e\xbf\xfd\xd3\x67\xf2\x39\x1a\x84\x56\x55\xcb\x24\xe8\x1e\xdb\x25\x9f\x2d\x49\x2b\x76\xb4\x56\x9c\x49\x22\x97\x62\x53\x57\x9a\x9d\x2b\xb6\x16\x92\x2b\x73\x44\xdb\xf1\xde\x42\xcb\xdd\x29\x42\x80\x61\xcd\xbf\xfd\xb8\x6e\x4d\xdf\xbe\xfe\xef\xd3\x97\xd7\xff\x6d\xd6\x34\x41\x62\x4d\xd5\xd2\x1d\xde\x9b\x29\xc3\x4d\x6b\x34\x13\x77\x72\x4f\x59\x2d\x50\x70\x98\xa6\xa7\x81\x80\x1c\x8f\x0d\xfe\x87\x52\xcb\x8f\x03\xc3\x5c\x29\xd1\xd2\x05\x7b\x43\xd5\xd2\x10\xd0\xfd\xed\x67\x33\x96\xf8\xed\xd8\xb0\x44\x02\xc3\x4f\xea\xbe\xd8\x21\xe1\x40\x37\xaf\x17\x37\x5a\x0a\x7f\x2d\xe6\x7b\xb1\xe2\x0a\x34\x5f\x7d\xd2\x6a\x7a\x66\xe3\x73\x69\x75\x6b\x47\x53\xa6\x51\x72\xaa\xfd\x85\x3f\x82\x07\xc7\x65\xc0\xb9\xf2\xda\x09\x55\x37\x7a\x8e\xbf\x0c\x78\x35\x21\x7f\xbe\x68\xd4\xf7\xbf\x1d\x6a\x69\x0e\x62\x67\x42\x3e\x21\xc3\x4f\xf0\x3f\x9f\x8f\x7b\x46\x94\xac\xd5\xdc\xad\xf5\x40\x38\xb3\x54\xcb\x17\x0b\xd6\xa2\xb4\xa6\x46\x9f\x4b\x10\xb8\x64\xdb\x2b\xe8\x76\xa5\x68\xab\xb1\x68\xd8\xf6\xf9\xa6\x6d\x59\xa3\xf0\x7b\x8b\x53\x30\x57\x58\x22\x30\x01\xae\x98\x7a\xf4\x96\xd5\x60\x4d\x84\x5a\xe5\x78\xdc\x83\xa6\x56\x0a\x3b\x09\x72\xc5\x94\xa5\x87\x64\xea\xe2\xcc\x93\x44\x26\xe8\xec\xa1\xbc\x3e\x89\xac\xbd\x41\x35\xd8\x02\xe5\x4f\x75\x83\x6b\x71\xc5\x54\x3a\x98\xd6\xc5\xfd\xdf\x5d\x83\xd9\x81\x5a\xa6\xb8\x26\x33\x08\x7b\x18\x0c\x8e\xd0\x19\x6d\xb4\x0e\x31\x35\x06\x94\x31\x00\x0a\x78\xbc\xc5\xfe\xe7\xad\x58\xed\xc5\x65\x48\x9a\xcd\x0a\xd5\x9b\xbd\xc4\x30\x94\xae\xc5\xec\x83\x56\x23\x57\x8c\x36\x5a\xc8\xbc\x01\x43\xc3\x63\x07\x74\xca\xd7\xe1\x25\x74\x8b\xb1\xe9\x1a\xc9\xe8\x5b\x5c\x1a\x9d\x35\x20\x45\x02\x18\x5b\xbe\x82\x56\x03\x54\xba\x2c\xf8\x1f\x7e\x97\x4f\xb6\xc0\x04\xb4\xbe\xdc\x68\x75\x22\xf8\xd6\x49\xab\x10\xd3\x02\xbf\x7a\xad\xf6\x51\x7b\x1b\xb6\x5d\xb9\xe9\x69\xad\xbb\x6a\xe9\xb6\xb1\x33\xf4\x20\x93\x89\xfe\x64\x5a\xba\x7d\xad\xa7\xa7\x3b\xb9\xc3\xe4\x69\x17\x35\xfd\x70\xee\x7c\xd2\xd6\x88\xe8\x1b\xee\x0c\x5b\x46\xa3\x29\x11\x8e\xb5\x77\xe9\x2a\x26\x55\xab\x4f\x94\xe2\x92\x9d\xd9\x5f\x83\x21\x3a\x81\x06\x67\x5d\xf7\x56\x77\x6d\xdc\x8e\x2f\xac\xe3\x90\x34\x74\xc5\xec\xb9\xdf\x2b\x19\x0f\xc2\x25\x36\xa8\xe5\x9a\xcd\xf8\x9c\xcf\xcc\x1c\x3b\x31\x34\x92\x02\x5b\x15\xd8\xb6\x8c\xf9\x1e\xa1\xf2\x0b\x9d\xa9\x8f\x6a\x76\xc3\x6a\x32\xe7\xac\xae\xe4\x28\xd0\x4e\x24\xb3\xde\x0d\xbd\x0b\x36\xb4\x26\x37\xb4\xde\x30\xe9\x1d\x3f\xfd\xce\x96\xaf\x74\x48\xe3\xb9\x83\x48\x80\xe9\x7e\x05\x46\x98\x56\x91\xb4\x36\x37\x4a\xda\x69\x41\xaf\x91\x9a\xb1\xb5\xf5\x12\x35\x15\x9f\x81\x9b\x8a\x92\x45\x2b\x36\x6b\x6d\x4c\x81\xc7\x47\x2d\x5b\xb1\x59\x2c\x03\xc3\x7b\x3c\x26\xaf\x68\xb3\x33\x0e\x21\xda\x10\xf6\x91\x4b\x45\xf4\xfc\xa1\xd5\x90\x4c\x37\x8a\x88\xa6\xde\x81\x55\x86\x87\xd0\xc8\xf1\xc9\x0d\x6d\xc9\xac\x74\x5c\xba\xd9\xfc\xc5\x28\xd4\x44\xf2\x9f\x19\xa9\x38\xfa\xf6\xda\x9d\xc6\x29\x50\x11\x8c\xdb\x6b\x36\xd3\x0a\xa7\x64\xf5\xfc\x18\x60\x6b\x96\xd1\xb6\xbd\x9c\x90\x4f\x08\x78\x02\xbd\x3e\x1f\x04\xff\x8a\x85\x8e\x81\x8e\x21\x24\x36\x0a\x47\x30\xfd\x0e\x1e\xc4\x3b\x4d\x3a\x87\x90\x13\xf2\x87\x10\x7e\xac\x26\x5f\x9c\x39\xff\x9e\x3d\x2a\x8d\xcb\x0e\xce\xaa\x11\x09\x64\x79\xbb\x83\x85\x09\x8e\x5f\x23\x5e\xec\x06\x03\x8e\x90\x92\x2f\x1a\x56\xb9\x8e\x66\xbf\x5b\xf5\xe0\x5b\xa9\xc7\x44\x3b\x97\x81\x5c\xe0\xcd\x4c\xdb\xa9\x8d\xf1\xaa\x7e\x17\xaf\x71\xc3\x3e\xaa\x37\xd1\xf6\x3d\x10\x7f\x74\x37\x46\x68\x17\xf4\x9f\xf1\x18\x65\x45\x84\x7a\x80\xb2\x64\xea\x4b\x30\xbe\x0a\xe5\x4f\x84\xb0\x12\x8a\xd6\x5a\x93\xd0\x66\xb9\x98\x83\x5f\x45\x6a\xa1\x11\x38\x74\x53\x57\x64\x82\xf0\x33\x36\xa3\x1b\xc9\xb0\xa9\xde\x39\x60\x4e\x99\x33\x62\x48\xb8\x22\x95\x60\xb2\xf9\x56\x91\x86\x69\x7e\xa0\x2d\xaf\x77\xa0\x83\xf8\xad\x6d\x61\xb5\x6c\xae\x4f\x35\xf4\x5f\xa6\xb8\xc1\x00\xdc\xec\x4c\xd6\xcc\x98\xf1\xbb\x01\x71\x36\xce\xb1\x60\x61\x79\x84\x8d\x2a\xa2\x04\xa9\xa8\x62\x23\x72\x5a\x4b\xe1\x7c\xd9\x8b\x5a\x4c\x69\x6d\x8f\xda\x8b\x33\x54\x10\x74\x17\xde\x2c\x62\x52\x02\x42\x57\x9b\xf5\xba\xde\x59\x89\xff\x0b\xcb\xee\xe7\x62\x85\x7a\x00\xb9\xde\xad\x19\xba\xe9\x78\xa8\xb7\xdc\x3b\x1e\x70\x3a\xe8\x23\x00\x48\xfd\x9b\x60\xc4\xdf\x00\xa1\x34\x1e\xa1\x8c\xb6\x08\x5b\x00\x9a\x51\x85\x5a\x32\xe7\xec\x93\xd6\xf3\x36\x32\xc0\x03\x90\xa4\x12\xe0\x6d\x33\xa7\x91\x83\x81\x87\x92\x39\x84\xf0\x6c\x42\x79\x0c\x7e\x34\xa9\x68\x33\x63\x64\x20\x5a\xe3\x8d\x3c\xd6\xdc\x62\x7c\x67\x0a\xc6\x00\x2c\x2d\x38\xc3\xa3\x41\xe8\x24\xc2\x1c\x27\xe3\xdc\xfd\xd1\xa8\x5f\xed\xac\x73\xa6\x8a\xd6\x6f\x5c\xe0\x61\x29\xea\x4a\x3a\x4d\x27\x0c\xd9\x38\x8f\x00\x3a\x7f\x9d\xfa\x72\xf9\xec\x14\xa4\xdf\xd0\x7b\xa3\x6b\xb6\x60\x4d\xa5\x85\xb4\xe1\x71\x50\x87\x2c\x80\xb7\x74\x47\x4e\xeb\x9a\x35\x64\xc9\x71\x2b\x7d\x0f\x02\x87\x63\xe7\x3f\x32\x8a\x36\xcc\xd5\x7a\xd3\xca\xc0\x09\xf7\xbd\x71\xc0\x91\x05\x5d\x31\xf2\x83\x05\x27\x5a\x04\xff\x12\x96\xe4\x4a\xb1\xf5\x92\x35\x52\x34\xe8\xce\x33\xdd\x19\x85\xfd\xfc\x92\x4d\x5b\xd1\x90\xff\xa4\x2b\x4f\x58\x77\x16\x07\xe2\xc7\xb8\x76\xeb\x20\x5e\x40\x89\xe4\xcd\xa2\xc6\x68\x15\x31\xf1\x0e\xf4\x33\x8b\xb9\x85\xc1\x95\xa7\xdd\x08\xbd\x30\x18\xdb\x6a\x99\x09\xe2\xd4\x3b\x73\x46\xf1\x69\xcd\x86\x44\x0a\x42\x9b\x9d\x66\x9c\x19\x6d\xbc\x48\xa2\x15\xba\xcc\x0b\xcb\x90\x92\x1f\xd0\xb9\x38\x0b\x27\xa3\x85\x87\xb1\xfe\x61\x91\x3f\xe1\x9a\x07\x32\x78\xd3\xf0\xbf\x6f\xe0\xec\xb0\xd1\x34\xdd\xd0\xb5\xd2\x00\x6a\xa6\x12\xad\x31\x82\x72\xa5\x79\x54\xba\x10\x9e\xc7\x14\xe2\x52\x36\xaa\xa7\xe9\x04\x3a\x80\xb6\xfd\x56\x74\xbd\xe6\xcd\x22\xc6\x05\xbd\xfa\x7a\x07\x02\xe3\x88\x66\x41\x14\x6b\x57\x64\x4b\x77\xe0\x8f\x77\x80\x61\x49\xa6\x56\x2f\x1c\x91\x0b\x7d\x2c\x51\x88\x0b\x8a\x96\xb6\xbb\x10\xec\x4c\x34\x66\xfe\xdb\x25\xaf\x19\xd9\x32\x32\xe7\x8b\x4d\xcb\x08\x06\xcd\xa6\x4c\x29\xd6\xc2\x18\x18\xab\x72\x6b\x16\x40\xc9\xa8\x91\xab\xff\xc6\x32\xf8\xec\x29\xa3\xc5\xca\xa0\xbb\xe1\xb1\xf1\xa7\x3a\xd0\x2d\x4b\xbe\xd1\x1f\x87\x4d\xcd\x9a\x85\x5a\x92\x87\x27\xe4\xf1\x84\x1c\x5d\x5a\xff\x82\xa3\x89\xb7\xa3\xd9\x6a\xad\x76\x47\x11\xa4\xcf\xd1\x5f\x5a\x23\x1a\x19\x25\xe5\xc4\xca\xfa\x91\xd7\x2d\xf2\xc6\x6e\x94\x13\x37\xe0\x03\x0f\x3b\x20\x94\x59\x46\x17\x6c\xe3\x18\xbf\x6a\x8c\x07\x64\x4a\x67\x1f\xe6\xdc\xf0\x09\xe0\x0f\x7b\x53\xcc\x3e\xcc\x96\x5a\xff\x37\x0c\xbd\x12\xad\x16\xcc\x8a\xf2\xda\x1c\xf4\x16\x7a\xe5\x83\xde\x36\xa0\xa8\xc1\xe0\xfe\x9a\xb2\x86\xcd\x39\x04\x52\x97\xf4\x06\x43\x71\x2c\xea\xc2\xad\x51\x81\xfb\x6c\x2b\x36\x75\x0c\x7f\xca\x08\x28\x98\x4a\x90\x0f\x8d\xd8\xa2\xbd\xa1\x04\xaa\x98\x0e\xe9\x8a\xb7\x6c\xa6\xea\x1d\x1a\xdf\xe7\xb5\xd8\x3a\x20\x46\xe9\xb4\xd2\xfc\x18\x5c\xa1\x9b\xb5\x3e\xf9\xaf\xe9\xa2\xe6\x0d\x1b\x28\xfc\xaf\x65\x84\x63\xbb\xa7\x92\xd5\x8f\x08\xff\xee\xc8\xf4\x3e\x7a\x4f\x4e\x88\x81\xf0\x20\x6a\x6f\xd7\xd1\xe9\xea\xef\x82\x75\xd6\xbd\xf4\x9f\x51\x0f\xe3\x74\x0d\x9a\x3d\x88\x19\xc6\x6b\xc7\xa7\x56\x5d\x34\xa6\x8c\x26\xae\xb1\x1c\x42\x05\x4d\xcc\x66\x9b\xc0\x52\x6b\x19\xad\xc9\x56\xb4\xb5\xd3\xd6\xa0\xe9\x8a\x7e\x60\x64\xb3\x86\x10\x2c\x7a\x3f\x9c\x79\x64\x23\x65\xd3\x5a\x9f\xb1\x70\x88\x68\xad\x5d\xff\x34\xa5\x92\x4d\x69\x5d\x07\xb2\xfe\x15\x5d\xf0\x19\x99\xd1\xb6\x92\x23\x72\x8a\x6b\xe3\x8d\x27\xde\x90\xd5\xa6\x56\x7c\x5d\x6b\x5b\x61\x0e\xc2\x5b\x01\x38\x77\x8e\x7a\x1b\x0e\x2d\x14\x6e\x44\x54\x39\xd2\x4f\xd1\x78\xb5\xac\x90\x59\xa0\xa7\x4e\x7a\x93\xbf\x6f\x40\xd3\xc6\x56\x12\x22\x50\x41\xc4\xde\x69\x16\x3e\x70\xaf\xf5\x80\x19\xad\x6b\x4d\xd8\x1b\xda\x72\xb1\x91\x64\x01\xa2\x09\x1c\x67\xd1\xa9\x4b\x51\x40\xb2\x26\x47\x85\xbc\xd6\x26\xa2\x72\x51\x79\x1b\x8c\xa7\x53\x0e\x79\x1c\x81\x1d\x62\x62\x71\xda\xea\x84\xad\x6d\xd6\xcc\x66\x0e\x84\xf6\xd4\xa8\xe3\x44\xb1\x64\x8b\x0f\x95\x3f\x67\x07\x8a\x75\xbf\x91\x40\x82\xca\xdc\x28\x30\xfd\x2f\xf5\x91\x6e\x26\x16\xf6\x1c\x8f\x09\xfb\x38\x22\x47\xd7\x7c\xc5\x64\xe8\x3b\x6f\x45\xa3\x04\x79\x4b\xd7\x4a\xb4\x92\xcc\x96\xe2\x83\x67\x41\xcd\xd7\x62\x3e\x97\x47\x19\x02\xa1\x3f\x27\x3e\xce\x0e\x31\xfc\xc9\x3d\x1a\xff\xe4\x6e\x0e\x80\x98\xaa\xb9\xf5\x4f\xec\x59\x14\xce\xf8\xb0\xd3\x47\xf7\xb0\x27\xcf\xef\xdd\xc1\x73\x65\xa8\x77\xeb\x33\x07\x8d\xcb\xf8\xc8\x01\xe3\x30\x6f\x0a\xf0\x4f\x60\x98\x12\x1c\xa0\xba\x07\x14\xf9\x3e\x3a\x85\x98\x13\x61\x2e\xe2\xa5\xb4\x19\x13\x2b\xdc\x9a\x69\x7c\xdc\x5c\x09\x42\xab\x0a\x54\xd0\x96\xad\xc4\x0d\x0b\x35\x66\x69\x9d\xaf\xd2\x78\xda\x21\xb1\xc6\x38\xc5\x53\x95\xf2\x22\x13\x26\x76\xa7\xa1\x50\x49\xb2\x4e\xb4\x36\x18\x9a\x93\x2a\x4f\xb4\x71\xb9\x28\x46\xd3\x5c\x8a\x2a\x1b\xd5\xe7\xe7\xcc\x20\xf2\x52\x59\x91\x6d\xa2\x11\x76\x18\x97\xc2\xa2\x9b\x85\xd3\x88\x04\xb7\xd7\x80\xe1\x4f\xbd\xb7\xbc\xa6\x64\x46\x7b\x15\x26\x30\xf8\xec\x11\x88\xfd\xc0\x88\x56\x79\xab\xb5\x19\x0d\x36\x70\x18\x77\x0c\xe7\xab\x5b\xe3\x81\x81\x20\xb8\x1a\xea\xe6\x5b\xa6\x15\x72\xe9\x8f\x63\x1e\x60\x96\xcb\x76\x9f\x7e\x05\x29\x01\x18\x24\x09\xd7\xcf\x0c\xe5\x03\x13\x8e\x20\x26\xa0\x12\x59\x49\x1a\x50\x23\x40\x3b\x65\x2d\x9e\x7a\x76\xca\x61\xcc\x81\xab\x8c\x01\xe6\xc1\x22\x6a\x95\x47\xfa\x91\x1b\x81\x3a\x8f\x0b\x89\x44\x79\x6a\x7a\xde\x7a\xf7\xc7\xd6\x09\xb6\x93\xca\x90\x13\x07\x2f\x0c\x8a\x93\x38\xad\xeb\xc1\x31\x30\xa9\x1e\x5a\xff\xb3\x35\x69\x13\x15\x68\x65\x8f\x94\x78\xa4\xff\x3b\x24\xe9\x0a\x68\xdb\xb4\x16\x36\x41\x6c\x2e\x5a\x76\xa3\xcd\xe9\xa6\xd2\x9a\xfa\x12\x94\x79\xd1\x32\xe7\x7a\x01\xbd\x4a\xab\x71\x96\x02\x5a\x34\x39\x9e\xd5\x00\xf7\x9d\x16\xf2\x56\xa7\xc5\x69\xdb\xd2\x5d\x92\xb7\xa6\xe7\x46\xc9\x9a\xb6\x0a\xcf\x11\xbd\xf1\x6c\x5e\x8a\xe9\x66\x12\x04\xd7\x69\x8c\xce\x20\x30\x84\x4d\x75\x71\xa6\xcf\x60\x49\xe8\x7a\x8d\x2a\xec\x92\xb5\xb1\xcc\x36\x5e\xb7\x4a\x30\x34\x5c\x16\x70\x6a\x6a\x41\x51\x59\xe6\xd2\xd0\x01\xc7\x72\xb4\x6e\xd4\xad\x3a\x5a\xcf\xab\x9c\x90\x77\x38\xf3\xf7\x0f\xe2\x03\x63\xed\xdc\xb7\x17\x67\x66\xee\x17\xee\xe0\xe1\x73\x37\x5a\xe3\x0f\x32\xb3\x4e\x21\xbb\xc4\x24\x29\x87\x2d\xc1\x93\xc6\x25\x18\x6e\xf8\xf5\x9c\xd6\x92\x91\x81\x9e\xb5\x99\xca\x71\x1f\x38\xd3\x66\x88\x98\xe0\x8a\x00\xc1\xdb\x0d\x4b\xc2\x94\x90\xbf\xb4\x97\x32\x06\x60\xe0\x2f\x7e\x26\x44\x1d\x59\x23\x31\x31\x42\x86\xc6\xf3\xa2\xde\x99\xa0\x64\x09\xf1\xd8\x3f\x6a\xe7\xbf\x69\xb0\x07\x09\x7b\x68\xf4\xdf\x38\xe3\x9e\xd6\xb5\xd8\xba\x4c\xa5\x60\x17\x97\x46\x91\x71\x6c\xb4\x18\x13\x8d\xfa\x9d\xba\x55\x6c\x60\x23\x7a\x7a\x21\xc3\x19\xf4\x94\x70\xa8\x0e\xc3\xee\x68\x11\xcd\xb8\x34\xa9\x90\xba\x89\x9d\x2c\x60\x02\x7e\x95\x68\xc4\x8b\x79\x1e\xc3\x2d\xe2\x09\x52\x2a\x62\xd0\x6e\x41\x85\xc8\x02\x98\x18\x3d\xaa\xbc\xfa\xee\x72\x4d\x43\x71\xa0\xd7\x1e\xd1\xc0\x15\x4f\xb7\x44\x68\x9b\xf8\x6d\xe1\xf5\xb1\xc0\x5f\x2b\xe6\x0e\xc5\x0c\x89\xcc\x7f\xab\xc5\x93\xf3\xb4\xe0\xfc\x83\x7d\x55\x5a\xdb\x34\x1a\x6d\x78\x1f\x7c\x79\x79\x0e\xb1\x69\x6d\x8e\x40\x03\x49\x2e\xc5\x16\x13\xf0\x6a\x3a\x63\x01\x4d\x86\x84\x2d\x46\xe4\xbb\xef\xf5\x1c\x7e\x78\xbc\x67\xab\xe0\x74\x31\xd8\xfd\x86\xb5\x1a\xf9\x60\xdb\xe0\x7f\x53\xc7\x45\x9f\xb2\x78\x5b\x65\x0e\x45\xf3\x09\x79\xf7\x3e\xff\xcd\x26\x2d\x9c\x90\x4f\x05\x8d\xd1\x70\xf3\x09\x4a\x9b\x82\x9a\x98\xcf\x0c\x21\x45\x4d\xc7\x63\x82\xb1\x5d\x9f\xfa\x01\x76\x0b\x9e\x38\x46\x30\x42\xce\x39\x26\x88\x02\xf3\x79\x4d\x0c\x73\x92\x8a\xc6\xb6\x8d\x5a\xbd\xf3\x24\xd1\xa6\xb6\x19\xc0\x10\x51\xff\xff\x71\xd9\x5f\xa2\x37\x0e\x20\x4d\xab\x4a\xda\xf3\xc8\x1f\x43\x25\x17\x94\x56\x44\x68\x4b\x57\x4c\xdb\x86\x13\xe7\x97\x33\x27\x51\xe8\xa6\xb0\x16\xec\x94\xe9\x2d\xe1\xd3\x2b\x0a\x00\x5b\xf6\xe8\xb9\xcb\xe5\x9c\xa4\x27\x1c\x40\x6b\x18\xab\x5c\x0a\xbd\xb1\x4f\x34\xdc\x75\xe8\x2d\x34\x1d\xc0\x42\x08\xda\x6b\x29\x81\x4b\x59\x04\x3d\xa3\xcd\xb7\x66\xc7\xd1\xba\x65\xb4\xda\xe1\xce\x8b\x4e\xe5\xab\x32\x39\x6c\xba\x99\x21\xe4\x20\x89\x6e\x1f\x64\xe6\xe4\xae\x13\xeb\x35\x79\x78\x42\x1a\x5e\x4f\xc8\xd1\x73\x14\x75\x5a\x83\xf6\xf4\x15\x1a\xa9\x89\xf1\x09\x99\x28\x13\xd0\x65\x74\x94\x8d\xf1\x30\xe0\xe7\x1c\x5e\xb8\xee\xc0\x8c\x73\xc5\x9c\x36\xe4\x53\xa9\xcc\x69\x95\x43\xef\xda\x0c\x6e\x22\x27\x76\x22\xd6\x11\x0d\x40\x03\x6a\x57\x99\x0e\x34\x4a\xed\xb9\x74\x4f\x9d\x26\xc4\x00\xf5\xd6\xaa\x63\xb1\x68\x27\x91\x28\x18\xa1\x42\x65\xd6\xea\x38\x03\xfc\x7a\x6d\x6c\x7b\x80\xbc\x59\x87\x31\xb1\x4e\x09\xe2\xa7\x6a\x84\x45\x0a\xd5\xa7\xcc\x85\xf2\x16\xf3\xb7\x95\x20\x3f\xb3\x56\x1c\x24\x60\x82\x81\x1e\xc7\x83\xb0\x15\xef\xca\xe8\xf2\xf2\xc1\x27\x60\xd8\xe9\x17\x28\xec\x25\x83\x44\xd1\xe0\x3c\x59\xce\x7e\xeb\xd9\x13\x45\x11\x21\xad\x8c\x90\xa1\x90\x08\x34\xe6\xb2\x98\x48\x39\x0d\x3f\x14\xb2\xef\x61\xb1\x0f\xd8\x94\x72\xe0\x50\xb0\x8a\x6c\xba\x31\xf5\x0a\xaf\x8d\xae\x6a\x1a\x17\x36\x2a\x50\x31\xdd\xe9\xfa\xbf\xc7\x1d\xae\x87\x98\xa4\xc8\x29\xc0\x54\xf8\x4f\x69\x15\xd4\xd0\x10\x74\x36\x31\xa6\xe9\x7f\xab\xfc\x85\x99\xd0\x28\x3e\x84\xe6\x07\x88\xe5\xd0\xc6\x2c\x80\x3c\x40\x30\x73\x19\x98\x3a\xcc\x9d\x65\x81\x62\x4e\x06\xf4\x86\xf2\x1a\x3c\xdb\xc1\x56\x8a\xf5\xf5\x6c\xf1\x3c\xb5\xbe\x48\xa8\x16\xf7\x66\x2a\x4f\x8d\x35\x6e\x69\x53\x92\xa5\x4e\xcb\x92\x4c\x3d\xec\x15\x49\x7c\x6e\xa4\x6c\x32\xea\xc3\x43\xb1\x3b\x01\x6b\xe4\x41\xd6\xd8\xed\xeb\x72\x86\x64\xf7\xde\x8e\xb3\x24\xf7\x09\x94\x87\xb7\xe1\xe2\x53\x88\x48\x1a\x26\x8e\x2e\xcf\x79\x25\x31\xb2\x1b\xf4\x89\xb2\xa5\x70\xd7\xad\xf1\xd1\x69\xc7\x22\x28\x0c\xac\x73\xc6\x06\x41\x0e\xe1\xfc\x98\x5f\xd0\xd1\xd0\xbd\xb9\x03\x85\xb0\x77\x55\xbe\x70\x8b\x1b\xef\x46\xe4\x5f\x71\x1b\x7a\x9f\x9b\xe5\xcb\x36\x21\x8c\x80\xa9\xfc\xc6\x1a\x4a\x54\x1d\x4b\x20\x83\xdb\xa7\x32\xd3\x1a\x55\xb7\x83\x28\x4e\x11\x06\x0e\x4d\x9b\x00\x83\x66\xb9\xb2\x9e\x2f\x0f\xa3\x9d\x5e\x6c\x73\x2a\xea\x7f\x4a\xa3\x2d\x9b\xaf\xd0\x07\xaa\x36\xad\x71\x92\x36\x6c\x5b\xef\xac\x71\x14\xe4\x2d\x92\x44\x9c\xdc\x52\x30\x06\x47\xb3\x77\xea\xdd\x41\x3a\xae\x36\x32\xb7\x28\x61\x32\xd3\xc8\x54\x3f\x50\xc6\xbf\x45\x0a\x20\xfe\x97\xe7\xd7\x88\xf4\x96\x5a\x1b\xaf\x57\xa2\x7a\x02\xa7\x12\x75\x42\xfe\xa0\x81\xdd\x9b\x5c\x85\xd9\x40\x30\x1e\x86\x9b\x60\x58\x76\x7d\xb8\xa2\x9a\x8a\xd0\x4e\xd0\x81\x9b\x6b\x0d\x12\xdc\x8f\xe4\xd4\x56\xeb\xea\xda\xa7\x50\xfe\xc8\x54\x97\x7d\xde\x6d\x93\xc3\xd0\x51\xca\x02\x71\x31\xae\x8d\x64\xe8\x29\xe6\xd2\x40\xfa\x56\x9a\xe4\x6d\x33\x46\xd4\x09\xc2\x42\x9b\xd5\x45\x63\xec\xc8\xbd\x02\x3b\x9b\xc1\x2b\x4b\x1c\x7f\xbd\x36\x1f\x81\x6d\x5f\x99\x55\x81\x45\x7f\xf2\xc8\x66\xe9\x5d\x9e\x5f\x0f\xe2\xd4\x72\x8f\xcd\xbf\x1b\x56\x19\x7c\x77\x3c\xcc\xd6\xac\xff\x93\x9c\x49\xb7\xec\x9d\x1f\x72\xb7\x05\x10\x25\x25\x3f\xce\xd5\xfd\x0b\x9b\x41\x68\x22\x20\x5a\x21\x0f\x96\x7e\xef\x5a\x1f\xa0\xa8\x17\xe9\x18\x23\x62\xa2\xe1\x4f\x1e\xb9\xf5\xe9\x10\x93\x53\xaa\x66\xcb\x57\x99\xac\xd4\xea\xf0\x94\xab\x96\xb6\x3b\xf2\xf7\x0d\x6d\x14\x57\xbb\x2e\x0f\x53\x22\x4b\x57\x98\x1b\x93\x24\xd5\x93\x83\x14\x4c\xb5\x57\x8e\x86\x97\x78\x35\x15\xbb\x94\x7b\x8b\x34\xca\xb6\xd2\x14\xd0\x98\xcf\x04\x5d\x51\x3e\x06\x37\x77\xc3\x4b\xba\x2e\xce\x66\x75\x96\x68\x83\x6f\x59\xdb\x07\xdf\xca\xd1\x64\x05\x06\xe9\x6d\x0d\x3f\x13\x73\x3f\x60\x42\xfe\x10\xe0\xf3\xa9\xb4\x25\x83\xdf\xfd\x86\xf4\x5f\x0e\x12\x6e\xb9\xa1\x2d\xe1\x16\x3e\x58\x82\xe1\xaf\x98\x6a\xc4\xc9\x13\x4f\xc6\x42\x70\x35\x1c\x74\x64\xae\x58\x0c\x94\xf8\xc0\x9a\x09\x79\xf2\x08\xf3\x3f\xf2\x49\x1a\xab\xf1\x38\x83\xc7\xc9\x09\xe1\x86\xbf\x7f\xf8\x9d\xe6\xef\xf0\xd7\xcf\xdd\xdc\x5e\xe0\xbb\x2e\xc5\xe0\x27\xae\x96\xc1\x45\x86\x82\x9a\x00\xb1\x1f\xbf\xe5\x6f\xa9\x36\x7c\x2d\xad\x21\x22\x54\x2c\x90\x62\x90\x01\xe6\x7a\x26\xbc\x21\x2f\xcc\x9f\xbf\x32\xed\xa4\x47\x39\x89\x17\x39\xdb\x5d\xc5\x6b\x4e\xff\x52\x60\xee\xa6\xc0\x78\xa2\xde\x8f\x1a\xe3\xe1\xbd\x65\xf3\xc0\x4b\x6f\xd2\xa0\x47\x58\x18\xe3\xc9\x37\xc9\x0d\xdb\xdf\x0f\xf0\x6a\x98\x6d\xde\x77\x89\x37\x96\x2f\x4f\x9f\x62\x7d\x81\xc1\xd1\xa5\x88\xf6\x7f\x9c\xb4\xa0\x2d\x40\x04\x72\x94\x48\x54\xa7\x7c\x05\xf2\xe5\x24\x9e\xc7\x68\xc1\xd4\x65\x7c\xce\x07\x7c\x7a\x67\x45\x65\xcf\xe7\x6e\x6a\xd4\x9e\x4f\xbc\xa9\xc2\xbf\x72\x7d\xe9\xab\x28\x99\x01\xd5\x7f\x2d\xaa\x66\x3f\x15\x6f\xa9\x75\x76\x6c\xd0\x98\x3f\x69\x55\x5d\x8b\x5f\x86\x43\xef\x8d\x1b\x0f\xa6\x59\x3c\x55\xc9\xcc\x69\x21\x83\x09\x36\x73\x98\xa0\x63\xbe\x11\xaf\xd2\xf3\x22\xfc\x6b\x58\x58\xf1\xcc\x3b\x7e\x5b\x55\x7f\xaf\xd1\x76\xff\x26\x40\x59\x2b\xda\x67\x10\x24\x9a\xd2\xaf\xd7\x3e\xe8\x61\xb7\x2f\x54\xbe\xe4\x7e\xed\xeb\xab\x1a\x22\x5d\x96\xc8\x1e\xcd\x29\xb5\x4b\xba\x75\xa9\x7f\x76\x6b\xa5\x83\x10\xbf\xf4\xd1\xf9\x8b\x19\x49\x96\x1f\x16\x4c\x61\xc0\xeb\xd8\x87\xba\x12\x62\xa6\x59\xf7\x72\x0f\x3c\x13\x73\xd0\x10\xe3\x4c\xa7\x1e\xb8\x69\x50\xa9\x0c\xf9\x72\xb3\x8a\x24\x64\x34\x84\xc9\x0a\xe9\x19\xa4\x20\x63\x83\x01\x49\x9c\x7a\x1b\xe4\xd4\x47\x3b\x2f\xab\x0a\x17\xdc\x1c\xa2\x2e\x05\x62\x3c\x26\xcf\xd1\x5b\xcf\xa8\xe4\xf5\x0e\xf2\xeb\x39\x66\x95\xe2\x0d\x3c\xc5\xa9\xb2\x37\x3e\xfe\xfa\x5f\x1b\xd6\xee\x4c\x0e\xc6\x5f\xcd\xae\xb7\x70\x40\xea\x9a\x7b\x21\x10\xf8\x90\x4c\xf9\x3b\x53\x36\xd9\xf0\x0c\x2f\xbb\x58\x35\x38\x04\x68\x4f\xf1\xef\x5c\x15\x8a\x07\x24\x4e\x8b\x0f\x5b\x07\xf4\x2b\xe7\x32\xa6\xbf\x46\x69\xe9\x79\xd7\x28\xbd\xdb\xfe\x5c\xbc\xaf\x1d\x66\x0d\x76\x36\xec\x4a\xa2\x0b\x07\xce\x12\xae\x3a\xa1\x7d\x49\x9e\x51\x5c\xd7\xe3\x56\xe9\x1a\x92\x29\xf9\xce\xe4\xdc\x3c\x0c\xf3\x1b\x24\x53\x7e\x9d\x5d\x45\xb3\x30\x4f\x13\x6c\xc7\x5e\x6b\xce\xac\x14\x39\x21\x83\x6f\x4a\x03\x52\x49\xbe\xb9\x62\xea\xe9\xf1\xc3\x52\xb7\x84\x7f\x82\x34\x21\x95\xfb\x8d\xa3\x74\x2a\xd9\x9b\x0f\x6f\x00\x8d\xf6\xe4\xc5\xdb\x66\x32\x4e\x88\x27\x69\x42\x96\x64\x2a\x91\x41\x24\xcf\xcb\xd2\x8d\x52\x81\x42\xb2\xb8\x94\x6e\x95\xc4\xbd\x48\x7f\x96\x96\xee\xd1\x2f\x43\xfe\xe9\xc5\x6b\x3a\xb7\xaf\x25\x61\x03\xe1\x13\x14\x62\xcc\xef\x7a\x7a\x55\xcb\xe5\xd6\x47\xa9\x30\x2b\x86\x39\xf1\x7b\x64\x56\x37\xd8\x43\x3d\x72\x07\xdc\x2a\x35\x89\x4a\x3e\xeb\x91\xc5\xba\xa0\xf3\x85\x74\x44\xdf\x5e\xab\x25\x6b\xb7\x5c\x32\xbc\xc9\x67\x2e\x0c\x94\xbd\x26\xa1\x7c\x4d\xeb\xfa\xf4\xc9\xab\x52\xa1\xa0\x1c\x42\x6f\xfa\x64\xc7\x7e\x77\xd7\x33\xd7\x1d\x57\x32\xc3\x81\x00\x8c\xff\x33\xe5\xcb\xb0\xc8\x85\xab\x9c\xc9\x57\xeb\x1a\xcc\x5f\x6a\x2f\x53\x52\x32\xdb\x48\x25\x56\xfe\x4e\xe9\x0d\x67\x5b\xbc\x66\x6f\xea\x5d\x8e\x22\x40\xf0\x73\x74\x71\x66\x1d\x5e\x49\xed\xba\x35\x66\x84\xa2\xa9\xc0\x14\x14\x36\x0c\x19\xd6\xae\xc8\x7c\x53\xd7\x97\xc1\x91\xf8\x34\x6f\xc1\x5b\xa9\xfa\x9b\xd4\x74\x5f\x8b\x29\x6f\xd5\xb2\xa2\x6a\x5f\x13\x60\xc8\xee\x36\x7f\x63\xad\x64\x3b\xbb\xfa\x5d\xad\xaa\x96\xce\xd5\x35\xa3\xab\x3d\x4d\xfe\x9b\xd1\x7d\x50\xae\x98\x51\x4a\xf7\xb4\x7b\x2b\x36\x4d\xd5\xdd\x46\x31\xba\x3a\x35\x2b\x72\xf9\xec\x54\x33\xf4\x21\x4d\xbb\x5b\xad\x5b\xbe\xa2\xed\xee\x8d\x36\x12\x7a\xb1\x5b\x32\xbe\x58\xf6\x00\xda\xee\xf9\x1d\x8a\x62\x68\x42\xc9\x17\x1f\xd7\xfa\xb4\x6b\xfa\xd6\xa7\x99\xd2\x2b\x46\x65\x2f\xb9\xa8\x62\xaf\xe7\x7b\xe7\x57\xd3\xdd\x73\xaa\xd8\x42\xb4\xbb\xfe\x56\xd7\xbb\x75\x0f\x42\x4b\xb1\x62\x9a\x13\xfa\xb9\x93\x6e\xe9\x6e\x7f\x2b\x0b\xeb\x6a\x26\xda\x03\x80\xed\x69\x86\xaa\x43\x2c\xc8\x4a\xad\xf6\x6c\xac\xa2\x44\x2d\xd1\xa9\x47\x25\xde\xa3\x30\xbb\x0c\xab\x8b\xc6\xb8\x0b\x3c\xbe\xb1\xec\x8e\xa4\x68\x26\x59\x62\xb3\x34\x17\x2b\xf1\xef\x99\x4c\x89\x7f\xce\x05\x4a\xe1\xf7\x58\x9a\xc4\x0d\x8a\xa2\x24\x6e\x92\xcb\x91\xc2\xef\x91\x10\x29\xfc\x9e\x4b\x90\x42\xa3\x58\x7c\xc4\x0d\xba\x65\x47\x77\xbb\x8e\x26\x5d\x52\x23\x6e\x95\x88\x8c\xf8\xc7\x6d\xdf\x8f\xbd\xc2\x22\x6e\x9a\x4b\x8a\x84\x2c\x25\x31\x91\xcc\xa6\x24\x23\xf2\x26\x91\x80\x48\x66\x5a\x92\x0e\x71\x93\xa2\x68\x28\x43\x89\x37\x7c\x19\x4c\x5f\x9b\xa2\x44\x48\x9b\xf4\xed\x89\x62\xd5\xc4\x8c\x1e\x81\x36\x95\xc2\xee\xfa\xa9\x57\x04\xd8\x46\x45\x2d\xcc\x0a\x01\x72\xe2\xe4\x41\xa1\x91\x15\x05\xba\x95\xfd\x77\xc1\x14\xa2\xae\x95\xfd\x67\xde\xc8\xc9\x05\x72\xe2\x65\x44\x47\x33\xd4\x7e\x4f\x02\x59\x91\x37\x0c\xc5\x04\x39\x89\xa4\x46\xde\xd8\x09\x0c\x72\xe2\x85\x47\x47\x33\xbd\x4d\x6c\x33\xfd\xef\x8e\x66\x4e\x7c\xd8\xb6\xee\x8b\x8e\x0e\x20\x4a\x6c\x63\xf8\x23\x6f\x98\x89\x14\x72\x92\x8b\x99\xfe\x6e\x49\x8f\x82\x82\x1d\xcb\x1a\xad\x69\xc7\xdf\xe4\x5d\x50\xf0\x90\x13\x23\x81\xf2\x06\x5b\xdb\x60\xdb\xd1\xa0\x24\x80\x34\xa6\x85\xaf\x0b\x56\xb4\x15\x49\xe4\xc4\x8b\xa7\x02\x95\x03\xc9\x74\x12\xc9\xa9\xb2\x95\x61\x45\x94\xb1\x35\xec\x9f\xe5\xc6\x50\xf7\xeb\xc4\xc9\xad\x02\x8d\x02\x91\xa5\x29\x15\xfc\x99\x37\x0e\x85\x17\x39\x89\x64\x59\x37\x64\x10\x51\x01\x68\xf8\xbb\x1b\xb6\x6d\x1e\xfd\xdd\xe5\x3a\x89\xcc\x29\xfb\x67\xd1\x76\xbb\x74\xfe\x98\x32\xb6\x87\x98\x67\xe4\x16\xc6\x5e\xbf\x73\x28\x97\x7f\x98\xf3\x96\x7e\x5b\xf6\x1e\x18\x63\xdb\x57\x45\xc0\xbb\xfe\xeb\x96\x49\x13\x11\x89\x5f\x58\x21\xb1\x59\xe7\xfa\x5d\x9e\x5f\xe7\x55\xe3\x47\x17\x97\xe7\xd7\xc3\xb8\x80\xfd\xe8\x2d\x93\xa2\xbe\x61\x6d\xe2\xa2\xf8\x11\x8b\xe1\x99\x8a\x54\xae\x26\x5e\xa6\xf2\xf9\xca\xaf\xee\xa7\x10\x8c\x71\x36\xbb\xc0\x54\x5e\xb3\x28\x50\xf6\xe9\x24\x70\x99\x64\xb6\x7e\xa9\xcc\xef\xbe\xda\xc0\xa5\x90\x4e\x72\xf6\x64\xe1\x67\x53\x06\xf0\x95\x2b\x03\x18\x35\xb7\x6e\xc4\xa0\x02\x60\xe0\x5c\x0c\xbf\x0d\x03\x1b\x39\x9f\xf0\xaa\xdc\x2d\x8b\x8d\xa3\x77\x28\x28\xe5\x85\xa6\x7b\x51\xd8\x50\x72\x12\x50\xd0\xc7\xb8\x8b\xd7\x21\x62\x8a\x86\x7f\x1d\x17\xae\x52\x75\x14\x69\x36\x73\xd9\x17\x46\xba\x5d\xd0\x29\x8c\x44\x57\xe8\x3b\x3d\x20\x40\x9f\xce\xc7\x77\xf6\xdf\xef\x85\xd1\x13\x80\xb7\x6d\x92\x6b\xed\xf3\x70\x4f\x86\x25\x93\x87\x48\x38\xda\x98\xd2\xc1\x4a\xb8\x9b\xcf\xf1\x15\x67\x41\xc4\x46\x49\x5e\x31\x22\x6e\xa6\x92\xb5\x37\xac\x95\xee\xd6\x93\xcb\x7b\x8a\x4b\x31\xeb\x8f\xf9\x26\xbb\xc6\x10\xac\x57\x5c\xa1\xd9\x2c\x56\x71\x2a\xd6\x59\xda\xd0\x15\x1b\x1c\xfb\x47\x15\x62\x43\xab\xe0\x05\x0a\xd8\xd8\xb8\x84\xb5\x7c\xd1\xfc\xf7\x6c\x77\xce\x59\x5d\xb9\x88\xa3\x5f\x12\xcb\x82\x50\x6e\x65\x42\x8e\xce\x0d\xcc\xa3\x63\xf2\xf4\x29\x39\x3a\xca\x06\x4d\x95\xf3\xfb\x18\xf4\x8d\x81\x59\x1c\xd4\xb8\x7e\x8b\x8a\xa8\xfe\x8c\x66\xa2\x99\x51\x35\x38\x22\x47\x79\x60\xd3\xfe\x68\xb1\x3e\x4e\x64\x3d\x09\x85\x64\x14\xb9\x81\x38\xf6\x86\xd7\xd5\x19\x93\x33\x9c\x6a\xef\x62\x24\x4a\x7e\x4c\x96\x2b\xfc\x71\x50\xde\x4e\x5d\xa4\x8e\xb7\x91\x83\x5b\xde\x4f\x23\x25\x2c\x96\x45\x40\xde\x46\xe9\x40\x10\xcb\x04\x75\xa1\xf8\x34\x80\xdf\xbd\x48\x47\xa7\xf6\x9d\x83\x3c\x01\xd1\x2e\x45\x88\x4c\xf7\x82\xf5\xae\xa6\xa1\x75\x5f\xef\x55\x98\x77\x1b\x7a\xb7\xfb\xe1\x86\x92\xd7\x73\x4a\x20\x23\x50\x29\x28\x14\xdc\x33\xa9\x3d\x5a\x0a\x99\xa2\x74\x64\xdd\x8a\x35\x6b\x95\xab\x92\x67\xcb\xaa\x40\x59\xa8\x21\x99\x41\xdd\x58\xb8\x58\x6f\x9f\xc8\x62\x29\xcb\xb9\xa2\x4b\x11\x0a\x46\xd2\x65\xe3\x98\x3a\x91\x06\x3e\x3c\xa4\x04\xd7\x58\x65\x5a\xf2\x2f\x93\x35\xc1\x6f\xbd\x5c\x0e\x77\xc1\x99\x9c\xdd\xe7\xee\xb7\x35\xfc\x4a\x7c\x55\x62\x32\x8b\x43\x50\x82\x8b\x3c\x75\xdf\x12\x33\x54\xb6\x77\x3b\x4e\x0d\x78\x20\x6a\xb3\x5e\x8b\x56\xb1\x2a\x76\xf2\x67\x2f\xe9\xf1\x66\x56\x6f\x2a\xbb\x54\xcf\xb5\x0a\x7d\x79\x7e\x4d\x40\x7b\xcb\x48\xba\x60\x0a\x7e\x80\xa8\x9c\x96\x3d\x1d\x31\xb9\x77\x19\x3b\xea\xc6\x4f\x62\xd5\xf0\x8c\x4b\x3d\xc1\xdf\x0f\x0a\xb9\x87\xd0\xbc\x33\x7c\xd0\xdd\x25\x51\x3e\xed\x03\x3c\x87\x76\x30\xca\xf3\xe1\xed\x3f\x2a\xd6\x36\xb4\xfe\xf3\xdb\x97\x87\x76\xb9\x3c\xbf\xf6\x09\x26\x9a\xa9\xbe\xac\xe3\x3e\xda\xc5\x7d\xaf\x40\x08\x1c\xda\xfa\xba\xa5\x5c\x1d\x4c\x83\x57\xac\xe2\x54\xb7\x8e\x1a\xbf\x2f\xb0\x66\xae\x0e\xb4\x68\x1d\x68\x40\x83\xff\x0b\xfc\x39\x81\x21\x8e\x27\xe4\xb4\xd9\xa1\x76\xff\x34\xf5\xe6\x6c\xb9\x9a\x2d\x31\x24\x95\x67\x0c\xcc\xa8\xa9\xc2\xdc\xc9\x6c\x93\xa2\x92\x66\x18\xb7\xd8\x69\xd0\xa9\xd6\x61\x0a\x87\x0b\xdb\x97\x28\x66\x3f\x55\xf8\x88\x27\x0a\x8e\x50\x3e\x75\x77\x54\xcb\xcd\x6a\xda\x50\x5e\x4f\x12\xec\xfe\x78\x7d\xfd\xe6\x9c\xd7\x6c\xb0\x69\x6b\x03\xd2\xb5\x4d\x73\xb6\xed\x27\xff\x76\x3c\x26\xcf\x4b\xc1\x40\x63\x9a\x29\xe1\x4a\x84\xa7\x17\x12\x72\x92\xf7\x6d\xd8\x5e\xb2\x77\x76\xec\x26\xbd\x57\x14\xef\x51\x3f\xec\x5e\x85\x20\x48\x70\xf7\xf1\x2c\xac\xbe\x01\x7d\xd4\xe1\xce\xe3\xbd\xa4\xfb\x87\x0b\xa2\x18\x77\x1e\xef\x99\x85\xb5\x77\x40\x13\x16\xb9\x9f\x11\x01\x58\xdf\x90\x71\xa0\xe5\xce\x83\xfe\x67\x00\xae\x6f\xd8\x20\x78\x73\xe7\x31\xcf\x2c\xac\xbd\x03\x62\x34\xe8\x7e\x06\xd4\xb0\xf6\x0e\x18\x84\x97\xee\x67\x54\x07\x70\xef\xd0\x26\x68\x75\x3f\xc3\x02\xb0\xbe\x21\x0b\x61\xb0\xbb\xeb\x8b\x29\xcc\x43\x11\xb8\xe7\xb1\xfb\x86\xcd\x62\x76\x77\xb7\x91\x63\x88\x7d\x83\xdb\x50\xe0\x9d\xc7\xfc\x23\x00\xea\x1b\x6a\x7b\x5f\x43\xfd\xb4\x77\xa8\x72\x98\xf2\xee\x2b\x5a\x00\xdb\x87\x46\x10\x02\xbd\xf3\xd8\x97\x16\x56\xef\xae\x8d\x62\xaa\x77\xdf\xb7\x01\xb8\x5e\x0e\x8e\xe2\xb4\xf7\xe2\xe2\xb1\xe0\xf6\x0d\x8b\xee\xa5\x7b\xf4\x2a\xf5\x6c\x95\x28\x96\x7c\xf7\x0d\x13\x80\xeb\x1b\x36\x8e\x4f\xdf\x79\xd8\xd3\x00\xdc\x21\xb3\x35\xf1\xec\x7b\x9b\x2e\xc0\x3b\x64\xbe\xf7\x35\xf0\x69\x08\xaf\x6f\xe0\xd8\xf3\x75\x1b\x87\x57\x1f\xcc\x5c\xd9\xdc\xe3\xe0\xeb\x47\xf0\xcb\x5d\xe5\x9d\x94\xea\x43\xfe\x56\x0e\xfd\x62\x12\x41\x30\xf1\xcb\xfc\xf7\x0e\x22\x0c\x3b\xb1\x3d\xd4\xfc\xea\xb2\x57\x03\x4f\x44\xd9\x72\xb2\x37\x08\xac\xf3\x74\xc1\x94\xe9\x03\x8b\x56\x1e\x1f\x1e\x34\xa1\x1f\x63\x0f\xd7\xbd\x4c\x97\x3c\x7d\x9a\xdc\x35\x0a\xc7\xb4\x71\x8e\x66\x2e\xc8\x09\x29\xce\x34\xa8\xa0\x39\x34\x6e\x4d\x1b\xfa\x1b\x94\x59\xe8\x78\xa8\xe7\x32\x81\x09\xa1\xbf\xcc\x34\x5f\xd1\x8f\xc7\x64\x42\x1a\x5e\x77\x53\xc1\x60\xf4\x92\x4b\x35\x21\xef\x8a\x18\xbd\x27\x27\xe4\x5d\x80\xf9\xfb\xc3\x1d\x07\x76\xf5\xba\xcd\xd7\x60\xfc\x3b\x72\x8a\xf3\xed\xdc\xc2\xb1\x81\x7d\xba\xb1\xeb\xa7\xfb\x1d\x11\x0e\xbd\x72\xdd\xbc\x8d\x8f\x67\xef\xde\xb2\x19\xe3\x37\x9a\x17\x9e\xd3\xb5\x79\xdb\xe2\xc9\x37\x9f\xe2\xc0\xb3\x6d\xf4\xf9\xf7\xe4\xa4\x73\x4e\x0b\xa6\xcc\x2b\xd7\x03\xcb\xfc\xe9\xb3\xdb\xc7\x7a\x3b\x84\xe3\x9c\x36\xbb\xb7\x26\xe6\xdd\x39\xe4\x20\x9e\xdd\x82\xa9\xb7\x31\xea\x6f\xe0\x09\xa8\xd2\x4d\xfa\xde\x35\x72\x64\xea\x5e\x26\xf7\xc0\xf8\xa4\xe0\x71\x0d\x3f\x25\xc8\x3d\x6e\x2d\x8f\x97\x25\x7e\xb2\x1a\xfb\xef\xf5\xcd\x36\x6a\x42\x1e\x8f\x1e\xff\xc7\xfe\xa6\x91\x67\xec\xe8\xf2\xd9\xa9\x75\x38\xad\x68\xfb\x81\x29\xcc\x8d\x32\x08\xe4\x21\x98\xf0\x53\xa6\x2e\x89\xdc\x91\xfd\xed\x3b\xc5\x71\xe4\xe8\xbd\xc5\x4e\x0b\x3a\x0e\xac\x9c\x46\x69\xab\xbf\x29\xf0\x43\x17\x06\x25\xbf\xf1\x2d\xf0\xc8\xba\x77\xaf\xbe\xf4\xa5\x1f\x26\xfe\x9d\x76\x44\xda\xc3\xe8\x39\xc0\x1d\xbf\x4f\xc8\x18\xff\xb8\x4d\x6f\xbc\xc4\xd5\xda\xfe\xf8\x74\xc6\xad\x87\xf7\x2d\xd1\xa3\xfc\xc4\x5d\xed\xf2\xbf\x7c\xb2\x5f\xa5\xc0\x71\xc7\x7e\x2e\x7a\xc0\xe3\x61\x5e\xc2\xe3\xbe\x46\xb9\xff\xb2\x61\x86\x59\x1e\x8d\xdb\x65\xd9\x2f\x59\xdf\x72\xb2\x8d\x6f\xb6\x67\x0e\x86\xd6\x07\xcd\x22\x43\xe6\x8d\xe9\x3d\xfc\x5f\x3b\x3f\xbc\x2d\xfd\x62\xb5\x56\x3b\xdf\xe5\xdc\x44\x1f\x27\x64\x30\xdf\x34\x64\x00\x05\x6d\xba\x11\x29\xc4\x18\xc2\x8f\xbb\x38\xec\x1e\xa8\x29\x8d\xd9\xa1\x8e\xe9\xcf\xe7\xbb\x1e\xa7\x1d\x71\xa1\xee\x93\x75\x4a\x9b\x86\xb5\x17\x2b\xba\x60\x99\x32\x06\xc1\x9c\x1e\xa7\x3b\xaf\x59\x67\x18\xa2\x97\x4e\x10\xa3\x38\x5a\x2a\xb5\x96\x93\xf1\xb8\x99\x52\x25\xd6\x12\xe8\x25\x56\x63\xa9\xa8\xe2\xb3\x31\x5f\x2d\xc6\x4a\xac\x1f\xe9\xef\x1f\xd5\x62\x21\x1e\x2d\x45\xcb\x7f\x16\x8d\xa2\xf5\xa3\xed\x92\x2b\x36\x92\x37\x8b\xee\x23\xa0\x87\x13\x56\x7a\x5e\xc8\xe0\x47\x5c\xcf\x7c\x2c\x6f\x16\xff\xfe\x71\x55\x97\xa1\x75\xeb\x8d\xf2\xef\x1b\xda\xb2\xff\xa5\xc4\x13\xfa\x7f\xa3\x75\x73\x5f\x34\xea\x84\x74\x0b\x35\xa6\xc4\x9e\xfb\x02\x6a\x5a\x09\xd0\x1b\xea\x91\xde\x51\x47\x07\xc6\xd4\x74\x27\x77\x7d\x8d\x70\x49\x76\x62\xd3\xc2\x8b\x19\x33\x08\x63\x89\x6d\x33\xd4\x76\x4b\x3d\xc4\x47\x8d\x5b\x5a\x31\x22\xe6\x73\x3e\xe3\xb4\x26\x15\x5f\x70\x45\xeb\xe8\x59\x3a\x9b\xe3\xa0\x01\xeb\x2e\x3f\x5d\x3e\x3b\xfd\x56\x92\x05\xec\x70\xa9\xec\x2b\x9f\x4d\x05\xff\x62\xad\xec\x41\x95\x79\x3d\x20\xe5\x81\x50\x45\xe8\x58\xe4\x5e\x77\x80\xe7\xc8\x49\xf8\x47\x4f\xe8\xc5\x0b\x80\x49\xf8\x47\xcf\x18\x42\x13\x49\x4e\xf6\x08\xc3\x23\xb5\xe5\x4a\xb1\xf6\xe8\xa0\x29\x9a\xc6\xc0\xc4\x7e\xba\x7d\x53\x85\x31\x2a\x2e\x67\xa2\xad\x0e\x1b\xc3\x34\x86\x31\x78\x73\xc3\x15\xbb\xcd\x50\x50\x70\x60\xd1\xd2\xd5\x61\x83\x6d\xb7\xdb\x91\xeb\x92\x4d\xab\xfb\x04\xb8\xe3\x01\xe0\xc2\xf5\x65\x91\x3f\x1e\x13\xb9\x16\xad\x92\xa4\xa5\x15\x6d\x21\x7a\x40\x78\xd5\x6d\x19\x7f\x9c\xd5\x9b\x8a\x55\x97\x74\x05\x86\x05\xe6\x9a\x80\x31\x5c\x08\x53\x94\x15\xeb\xf1\x98\x34\x02\xb3\x5a\xfc\x4b\x2a\x0a\xf0\xec\x1c\x17\x7e\x3e\x73\x2f\xbd\x07\xcf\xa8\xba\x54\x80\xcf\xe4\xa4\x87\x03\x8f\xae\x02\xc7\xd8\xd1\x7d\x79\xc6\x8e\x8c\x1b\x2c\x03\xf8\x65\xbe\xb1\xa3\xab\xc0\x92\x3e\xea\xf2\x8e\x15\xbb\x97\xf9\x04\xdf\x0f\x48\x48\x1d\xa5\x40\xa7\x84\x9e\x6f\xea\xda\xd3\xd9\xfa\x8f\x56\x74\xfd\xc6\x3c\x8a\x31\xa8\xf8\x4c\x4d\xd2\x05\xb9\x85\xcc\xd7\xfd\xaf\x05\xf2\xa5\x01\x16\x0f\x3a\x4c\xb9\x2c\xfa\xf3\x70\xd6\x77\xb9\x27\xb7\xb0\x84\xb0\x4f\xf7\x11\xc4\x15\x5b\xdd\xd2\xa0\xde\x73\xf0\xdb\xcf\x97\x2b\x00\xf6\xe3\x33\x3d\xf4\x61\xbd\x59\xc1\x31\xdd\xa3\x5c\xda\xcf\x01\xd5\xdd\xf2\xd3\xff\x6f\x6b\xd6\xa3\x48\x1c\x00\xf6\x1f\x4e\x24\x6d\x9e\x88\xfb\x27\x0f\x80\x1d\xaf\xd6\xbf\xfb\x9a\xde\x88\x72\x81\xa2\x86\xfb\xa2\x2c\x9f\xa3\x94\xaa\xf1\x98\x9c\xbb\xc7\x2c\x37\xd2\x14\xb4\x9b\x89\xd5\x7a\x03\xe5\x72\x22\x8a\xc6\xfd\x82\xad\x4f\x96\xac\x5e\x4b\xcc\xd8\x24\x5a\x7f\x02\x21\xa0\x5b\x60\xf1\xcc\xe8\xda\x7f\x08\x23\xaa\x47\xea\x3b\xe1\x33\xcf\x75\xad\x8f\x83\x47\x90\xc3\x89\xf1\x0e\x19\x80\xc3\x3a\x40\xd1\x63\x24\xae\x52\x69\x26\x94\x0a\x87\xc2\x31\x29\x9f\x15\x9f\x10\x56\x44\x46\x9b\xef\xf9\xca\x3f\x73\xdd\x11\xb8\xe9\x8c\xd8\x80\xab\x3b\x79\xc1\x4a\x93\x1a\x9c\xf1\xe6\x4d\x13\x0b\x7e\xf4\x81\x15\x5f\x3f\xd0\x68\xe0\xe3\x60\x27\x51\xfb\x77\x1a\xc8\xfb\x42\xce\x28\xc1\xf7\x03\xb0\xcf\xc3\x13\x72\x74\xd4\x71\x10\x6a\x2a\x69\x25\x84\xb5\x6a\xf0\x81\xed\xac\x43\x1d\x3a\xe6\x0c\xf9\xf9\x41\xf7\x5f\x86\xe3\x34\x40\xcf\x72\x11\xdf\x84\xae\x2c\xd2\xc9\x0c\xc8\x82\xac\x72\x2a\xb0\xde\xa0\x56\xb5\x4e\x6a\x5a\x06\x79\xa6\x81\x93\xac\x23\x77\xd7\xe6\x67\x77\xd8\x45\x08\x7a\x7c\xe4\x13\xa1\xe1\x7a\x42\x90\xf3\x5d\x4a\x9c\xc7\x69\x05\x91\x14\x5f\x86\xd5\x56\x25\xc1\x85\xc6\x77\x80\x57\x53\xde\xd0\x3c\x65\x1a\x8a\xb6\xe2\xcd\x31\x6b\x1e\x04\x97\x9b\xc6\x63\xf2\x57\x17\x70\xfb\x37\xfc\xf1\xaf\x25\x1a\x44\x01\x1d\xf2\xcb\x26\xea\xb3\x80\x04\xee\xf6\x9b\xcb\x45\x9f\x90\x7f\x3b\x3a\x8e\x28\x1b\xec\x90\x22\x89\x83\x15\x0b\x40\x97\x38\xcb\x3d\x29\x24\x25\x53\xe8\x36\x3f\x90\x03\xa0\x87\x1c\xa5\x8c\xa0\x45\xf7\xa1\x7c\x10\x2e\x92\xad\xcb\x48\x81\x63\x95\x20\x15\x9a\xaf\x84\x36\x04\xcf\x5f\x22\xf9\xcf\xac\x22\x70\x5e\xe6\xc2\x2b\x3c\xa2\x7b\x16\x4f\x03\x37\x4a\x58\x30\x65\x47\xea\xa7\x5b\x5e\xa9\xe5\xc9\x7f\x7c\xf7\xdb\xa3\x22\x35\xb1\x23\x3c\xb3\xf5\x1a\x4c\x61\x5a\x43\x75\x48\x89\x79\xa1\x9b\xb6\x1e\x62\xf6\xe2\x19\xab\xf9\x6a\x42\x8e\xbe\x39\xea\x7c\x88\x2a\x9b\xa8\xcf\x3e\xd5\xcb\xa1\xad\x40\xbd\x93\x5d\xc5\xad\x8e\xed\x1b\xa4\xa1\xde\x79\xde\xbf\xfd\x8f\x1f\xfe\x11\xf3\x86\x33\xfe\x36\x73\x36\xba\xc6\x97\xcf\x77\x0c\x10\xee\x69\xae\x4f\xbb\xe7\x0a\x50\xd0\x6d\x21\x0c\x2c\xd2\x30\xb5\x15\xed\x07\xb2\xd6\x40\xe1\x3d\x3f\x2c\x46\x6e\xf2\xb3\xcd\x0d\xc1\x8a\xd3\x7c\x93\x76\x22\x85\x74\x88\xf1\x32\x8f\x4c\x76\x10\x89\xcf\x89\x0b\xcd\x5d\x22\x46\x83\x63\x72\x72\x42\x8e\x14\x93\xaa\x61\xea\x28\xbd\x8b\x16\x90\x68\xd3\xd6\x96\x94\x7e\x44\x4f\x5d\x07\x61\xff\x89\xb7\x69\xeb\xe4\x60\xf0\xb7\x67\xf1\x89\x69\x10\xfe\x60\x6c\xd1\x9a\xd0\x8d\x02\x37\x25\x1e\x03\xf1\xd5\x5a\xdb\x0d\xea\xbb\xe3\x8d\x15\xb1\x6d\x58\xab\x69\xbb\x66\xed\x5c\xb4\xab\xa0\x20\x62\xf4\x18\xb9\x79\xb4\x5f\x77\xb1\x50\x6e\x68\xcb\xc5\x46\x12\xaa\x87\x56\xf1\xe3\x6e\x43\x78\x4f\x1e\x5d\x5b\xf1\x83\xde\x0f\x48\x7a\x7b\x17\x27\x11\x5f\xc8\x45\xb7\x35\xbe\xd1\x88\xfe\x2d\x53\xec\x1f\xbe\x32\xf5\x9c\x22\x3e\xb2\x8f\x68\x4a\xf3\x8a\xa6\x7f\x67\xae\xf2\xc6\x25\xb7\x2f\xf7\x63\x44\x4f\xae\x68\xab\xdc\x7b\x9b\x01\xb8\x10\x72\x58\xdb\xd6\xaa\x9a\x13\x72\x1a\x82\x5d\x99\xc7\x5f\x5d\xca\xba\xe2\xaa\x66\xf6\xb1\x3c\xde\x92\x54\x3d\x2d\x7f\xd8\x47\xba\x5a\x6b\x73\xe3\x13\x24\x56\xb1\x96\x18\x4b\xff\xe8\x4f\xec\x86\x37\xe4\x6c\xd3\xd2\x46\x1d\x0d\x5d\xd6\xe0\x84\x1c\xfd\xff\x64\xce\x98\x3a\xfa\xbc\x1f\xba\xfd\x0c\xa6\x6c\x46\x37\x92\x91\x2d\x14\xfa\xc7\x22\x65\xe1\x00\xf6\x8e\xd3\x0f\xdf\xfe\x9f\x80\x3f\x3b\x8a\xdc\xc6\x55\x7e\xdd\x0a\x05\xa5\x2f\x49\xb9\xea\xbf\x5f\xe1\x81\xa7\xaa\xd3\x9b\xf1\xbf\x9f\x8f\xed\x3d\xe6\xfc\x1a\xb3\x79\x57\x35\x1c\x35\x6a\x02\x65\x21\xd9\xd6\x94\xfc\x4b\xc6\xb1\xff\xca\xef\xf1\x35\x6c\x0b\x17\xde\x4d\x57\xa3\x42\xec\xa9\xe1\x7d\x71\x16\x3e\xdd\xc7\xe1\x91\x00\xb0\x79\xe8\x82\xf2\xb8\x52\x42\xf8\x68\xed\x1b\x7b\xfb\xbe\xf0\x65\x67\xa9\x68\xf7\x24\x1c\x12\x00\xef\xba\xc6\xd8\x0e\x49\x69\xa6\xe9\x14\xae\x82\x27\x67\xb1\x10\xf9\x01\xcf\xce\xae\xdd\x43\xa5\x40\xa8\xf7\x9e\x52\x65\xfb\x50\x37\x2a\x4b\xfe\x31\xb9\x66\x5a\xd4\xd0\x96\xd7\x3b\xc2\x1a\x3a\xad\x59\x85\x64\x2c\x5e\xfe\x5b\xdb\x37\xf0\xa7\x0c\xde\x8d\x9f\xf3\xba\x8e\xea\xee\x1d\xf2\x6e\xc7\xda\x3c\x18\xba\x59\x47\xd5\x4f\xc6\xc9\xa6\x51\x78\x5d\x4e\xef\x72\x89\x27\x03\x16\x98\xc6\x35\x45\xc1\x69\xda\xb8\xfb\x6b\xeb\xf8\x35\xda\xc4\xea\x88\x51\xc8\x36\x03\xe2\x03\xd9\x94\x08\x36\xab\xe0\xec\x50\x72\x67\x56\x71\x63\x80\xe7\x72\xb5\x36\x5c\xdf\xfd\xbc\xac\x7f\x34\xc1\x94\x80\x48\x0a\x94\xc6\x1b\xc3\x40\x1c\x21\x9a\x16\x45\x87\x92\xf9\x47\x51\x55\x48\x6c\x8d\xcf\x05\x29\x0f\xcf\x8a\x47\x42\xfe\x0a\x1e\xb3\x37\xc7\x43\x24\xd9\xc3\xde\x86\x6f\xb5\x8e\xed\x24\x70\x22\xe0\x6f\x21\xda\x31\xd4\xa3\xd7\x0a\x0c\x2a\x5f\xad\x72\x9f\x04\x8c\x97\xd7\xbc\xda\x1e\xbd\xa1\x1c\x8b\xbc\x2b\x96\xbc\x71\x1d\x2c\xe5\x1e\x21\x17\x62\x43\xbc\x8c\xd3\xe4\xf2\xc5\xb8\x3d\x7c\x7c\xfe\xb9\x5f\x74\x61\x81\x8f\x2f\x91\x5e\x57\x5d\xcf\x70\x77\xcb\xae\x44\xc0\x5e\x31\x85\x46\x5f\x41\xc2\x5d\x31\x65\x05\x9c\x31\x14\xc3\x0e\x43\x57\x90\xd8\xc5\xb9\xf1\x61\x7d\x74\xab\xef\x17\x76\x11\xd3\x80\x0b\xa8\x38\x4f\xa8\xbb\x6b\x24\xdd\x93\x47\x0f\x0d\x0e\xb7\x15\x75\x04\xdf\x3c\x41\xae\xb6\x36\x9c\xab\x4d\xaa\x65\x8b\x79\x8e\x3f\x62\xde\x68\xa3\x38\xd9\x2c\x7c\x91\x53\x7c\xe0\x44\x8b\xc4\x99\x3e\xc7\x57\x4c\x2d\x45\x25\x89\x68\x7a\x1e\x94\x0c\x18\xde\x90\xb5\xa3\x3a\xeb\x4e\x6c\xc8\x96\x66\xcf\xc2\x2f\x98\x4a\x70\xdf\xb7\x3d\x4e\xe3\x99\xda\x41\x9c\x27\xce\x0c\x8c\x6e\xb8\x54\xa3\xb3\x73\x62\x1f\xd7\x42\xee\x79\x9a\xcb\xd2\x38\x29\xec\x3c\x81\x6a\xc9\x77\x2f\xef\x6c\xde\xf0\xc1\x61\xf0\xf9\x6d\xfb\x06\x67\xf4\x2e\x50\x5a\xdb\x39\xfc\x2b\xe5\xca\x1f\x33\x6a\x46\x2f\x31\x19\xce\xe2\x2a\xed\xa7\xb5\xb7\xbf\x7e\xf3\xd7\xa8\xc8\x06\x3e\xa9\x9a\x40\x32\xef\x0e\x40\x80\x39\xad\x9a\x64\xa0\x1f\x5c\x64\x3a\x66\x69\xa9\x68\xab\x2e\xf5\x76\x80\x5a\x04\x60\xc3\x81\xfc\xc3\x7d\x68\x6b\x14\x40\x99\x74\x23\x6f\xc2\xba\xe2\xe3\xb1\x2b\x8a\xab\xcf\x1d\xcc\xc1\x26\x2b\x46\x1b\xbc\xfa\x4d\x55\xfa\x1e\x8a\x7d\x98\x9c\x47\x4c\x02\xcf\xc6\xe2\x2d\x7c\x14\x91\x11\xc4\x43\x44\xf7\x41\x9d\x2c\x93\xc5\xb3\x1e\xf4\xa8\xa7\x2f\x9a\xaa\x44\x0f\x3c\xcc\xb4\xd5\x81\x27\x9d\x68\x58\xda\x33\x21\x59\x6c\xb0\x14\x11\x0d\x79\x37\x92\x83\x81\x74\x8e\xbf\xef\xd7\x2e\xdd\x04\xaf\x34\xa6\xac\x1a\x34\x6c\xfb\x3c\xec\x7f\x98\xd8\x8d\x2f\xd3\xc6\x4d\xfb\x15\x82\xe0\xbd\x17\xa3\x04\x58\xfd\x00\x4e\x41\xf7\xf3\x2b\xba\x8e\x2d\xdc\x8c\x35\xac\xd2\x66\x5f\x32\x8b\x9e\x40\xf1\x80\xf2\xd2\x02\x29\x26\x60\xa4\x5a\x74\xb2\x22\x34\xe9\x23\x57\x92\xde\xb0\x27\x7f\xc8\x9e\xb8\x0a\x0e\xe9\xf8\xa7\xc1\xf1\x90\x28\x71\xdb\xd7\xaf\x92\x1d\x59\x78\x17\x87\x68\x44\x24\xd9\x2e\xf9\x2c\x9c\x6e\x58\x70\x61\xca\x6a\xd1\x2c\x64\xb7\x24\x8f\x94\xa4\x79\xe1\xcc\xb8\x3c\xbf\xee\xb2\x3e\xfb\xde\x5c\xb9\x05\x3a\x31\xcc\xde\x73\xeb\x56\xef\xf1\x95\x8d\x84\x2f\x78\x12\xd8\xc9\x87\x9e\xb7\x89\xfa\x5e\x5e\xc9\x6a\x79\xad\x7b\xdf\x3d\x8f\xdf\x59\x43\xff\xc9\x2f\xf0\xd2\x1a\xb9\x8f\xd7\xd6\x12\xbc\xfb\x9f\x73\x9a\xa3\xae\x77\xc8\x3b\x4e\xc5\x27\x9c\xca\x3b\x25\xdd\xdb\xa9\xf5\x11\x6c\x9f\xb8\xfa\x58\x97\x9f\x29\x10\x24\x05\x6f\x53\x42\x60\x47\xa4\x2f\x37\x4a\x8a\x4f\x37\x85\x9f\x7b\xf2\x53\x1d\xe8\xf1\x09\x08\x76\xa8\xdf\x27\x5c\x6b\x3d\x47\xeb\x9d\x75\x88\x5b\x4f\xd0\x1e\x47\xd0\x3f\xf3\x4e\xb0\xce\xf4\x64\x43\x94\x09\x84\x71\x53\x47\x9e\xdc\x81\x55\x62\xf1\x4b\xb6\x45\x92\xc4\x0c\xbe\x9f\x0d\xe3\xc5\xb2\x60\x20\x37\xd9\x7a\x6b\x0b\x33\x79\xf2\xc8\x9c\x6e\xa6\x75\xa7\xdb\xda\xbe\x06\x00\x0f\xf0\x34\x8a\xb5\x73\x6a\x5d\xd4\x1b\xc9\x5a\x69\x8c\x1a\xa9\x0c\x5b\x1a\x19\x1c\x64\x41\x53\xeb\x4e\x06\xeb\xa9\xae\xc5\x96\x08\xb5\x84\x52\x72\x82\x98\x37\xa2\xdc\x61\xcf\x1b\xc7\xe0\xc1\x4b\x52\xe4\x42\x11\x5a\x4b\x61\xbd\xe1\x73\xd1\x92\x96\xd1\xca\xaa\xa9\x46\x45\xbd\x38\x93\xe1\x4b\x63\x66\x4f\x07\x70\x72\x87\xb6\x9f\x52\x39\x05\x3d\x79\x9a\x07\x8b\x43\x45\xcf\x5a\xe5\x19\xe0\x97\xe7\xd7\xc7\xb9\xcd\x43\xd5\x6c\x79\x16\x76\x95\xfd\xd9\xe3\x39\x88\x85\x16\x9c\xfe\x59\x93\x1f\x7e\xf7\xbe\xc3\xb2\xba\x3c\xbf\x1e\xf8\xf2\x97\xda\xac\x2a\xe1\xd8\xd1\xd9\xbc\x24\x1c\xf7\x77\xb1\x95\xf3\xeb\xb4\xa8\x8e\x2f\xc0\xd5\x32\xb9\xa9\xad\x57\xa2\xe1\xf5\x10\x99\xa6\xb2\xf2\x07\x59\x8f\x55\xfe\x80\x4e\x01\xc9\xa5\xd8\xd4\xf0\xac\x2d\x58\x1c\x10\x04\x47\xd6\xa3\xed\x62\xb3\x32\xc5\x0a\xc1\x06\x4d\x0b\x81\xc1\x44\x84\x4c\xad\x47\xfd\x19\x18\xc4\x4e\xc0\x3e\x3c\x26\xff\xf3\x3f\xf6\xab\xa7\x50\xed\xf2\x84\xf0\xea\x78\x42\xb2\x7e\xfa\x93\xd8\x92\xa9\x86\x91\xea\x23\xf9\x14\xf5\xde\xe1\xcd\x4c\xb4\x2d\x9b\x75\x1a\x9c\xe9\xa6\x0b\x76\x0f\x47\x07\x44\x18\x1a\x62\x37\xac\xdd\xc1\xee\x23\xdb\x25\x64\x27\x4b\xa8\xb9\xea\xa2\x3d\xa0\x4e\x4b\x74\xa3\x34\x66\x37\x19\xf9\x0a\xda\x35\x6d\xe8\x82\x99\xef\x2f\xcf\xaf\xaf\x1e\x90\x8e\x70\x4f\x78\x15\xa6\xe3\x8a\x46\x5e\xcb\xd5\x5d\xee\xc8\x7f\x72\xd7\x37\xf2\x9f\x72\xc0\xfb\x2e\x70\x90\x4f\x51\x54\x29\xc8\x4b\xf4\x45\x5d\x67\xa2\x99\x8b\x76\x85\x6e\x61\xbd\xe7\xc2\x1e\x97\xe7\xd7\x29\x79\x77\x6b\x66\xdc\x1d\xf6\x1d\xbc\x8b\xb3\xc4\xe7\x64\x5f\xbb\x12\xdb\x86\x55\x9a\xec\x13\xf2\x87\x4f\xd8\xb8\x50\xd8\xf6\xf2\xfc\x3a\x7d\xcc\xaa\x58\x63\xdc\x41\x23\x4f\x1e\x85\x29\x42\xf1\x51\xa1\x51\xab\x5a\xba\x25\x2d\x5b\x89\x1b\xb0\x51\xed\x4c\xcd\x03\xc5\x2c\x92\xbc\x4d\x45\xb0\x1d\x77\x1b\x67\x46\xeb\xba\xd3\xda\x0e\xf5\x19\x3b\x56\xd1\x88\x88\xeb\x84\x82\x3b\xd2\xbe\xec\x88\xa8\x55\x25\x84\x3a\x46\x6d\xad\xba\x52\x14\xa5\xe8\xc1\xd7\x7f\xf9\x87\xaa\x2d\x6e\x79\xe5\x3e\xfb\xcb\x20\x44\xdf\x3f\xf0\x5e\x1c\x20\xf7\xe5\x3e\xc3\xdd\xde\xcc\xd1\x1f\x33\x5b\xb2\xd9\x07\xc2\xe7\xa4\xf0\x76\x15\xf8\x49\xe7\xca\x86\xe7\x63\x01\xec\x91\x88\x75\x12\x3e\xb7\x8a\xcc\x4b\x31\xfb\xc0\x9b\xc5\x88\xcb\x97\x00\x5b\xab\xd3\x6f\xd9\x1c\xf4\xe9\x52\xc8\xda\xa8\x31\x46\x2a\x59\xf8\x93\xa0\xcc\x2b\xe2\x98\x45\xab\xd3\x29\xbe\x85\x65\x42\xbd\x70\x5e\x64\x9f\x3c\x58\x01\x8b\xf0\xe4\x51\xc2\xb1\x23\x5c\x71\xcc\x19\x0b\x66\x9c\x0b\x54\xaf\x86\x75\xe1\x1f\x87\x36\x7c\xb8\xab\x76\xf5\x7c\x0a\x3e\x90\x9f\xec\x9a\x6b\x92\x03\x92\xf0\xa4\x2c\x2a\x8c\x0e\xd7\xf6\xe9\x88\xe2\x6d\xdd\xe3\x5e\x47\x1f\x2a\xcf\x30\xae\x63\x33\x84\x5a\xd6\xa3\xe2\x9f\x0a\x4f\xc0\x5a\xf4\x1c\x38\x49\x56\x9b\x5a\xf1\x75\x6d\xf8\x5a\xde\xc7\x53\xae\xbc\x92\x13\x72\xda\x10\xda\xb6\x14\x24\xa0\x56\x86\x94\x70\x83\xee\x33\x15\xfa\x54\x11\x6d\x9a\xf8\x35\x88\x1f\x68\xec\x32\x6b\x7a\x3e\x31\x69\x57\xdd\x8f\xd5\x47\xba\x53\xb0\xca\xd2\x6b\x40\xb7\xbb\x82\xe7\xc3\x34\xa8\x5d\x63\x5a\x69\x07\xcb\x6b\x21\x0f\x23\xef\x7f\x47\xb5\x8f\x9f\x2e\x14\x6b\xd1\xe9\xdb\x8a\xcd\x62\x69\x74\x22\x5c\x73\x27\xcf\x61\xd1\xf7\xed\x41\xad\xf5\xf2\x4a\x6f\x0a\xdd\x3f\x97\x0d\x09\xb2\x1d\xef\xaf\x16\x25\x24\xaf\x8e\xfb\xd2\x5b\x0e\xdf\x23\xb2\xbc\x49\x12\xd4\x3a\xb6\x8b\x35\x06\x14\xfd\x00\x06\x90\x11\x0a\x9a\x52\xb4\xaa\xc2\x53\xcc\x83\x0a\xad\xf8\xbe\x6d\x82\xbb\xc4\x90\xc2\x9e\x62\x78\x62\x99\x61\x59\x95\xcb\x9b\x3e\xae\x3c\xc8\x0e\x48\x96\x29\xe3\x46\x63\x38\x05\x38\xa0\x94\x05\x01\x60\x5d\xc9\x06\xd5\x15\xfd\xc0\x88\xdc\xb4\x99\xda\xcc\x95\xb5\xd0\x8c\x9e\x99\x47\x10\x22\xf9\x6d\x87\x78\x48\xfe\x10\x28\xf6\xd9\x11\xf1\xa3\x29\xf0\x0e\xcd\xbf\x95\x24\x79\x55\x00\x8b\xec\xc3\xcb\x14\x28\x72\x33\x00\xa7\x55\xe5\x1c\x0f\xe6\x04\x37\x39\x03\xf9\x92\x59\x88\xa2\xae\xae\xcb\xe7\xcc\x3b\x5e\xbd\x77\xd8\x67\x63\xbd\x6e\xea\x9d\xa9\x6b\xee\xf8\x08\xcb\x9b\xf3\x79\xaa\x17\x65\xf4\x03\x5b\x91\x36\x56\x49\xfe\x56\x16\x13\x2b\xf8\xbc\x74\x9a\x98\xb0\x53\x61\x3f\x02\x36\xd6\xe4\xd3\x67\x93\x3e\x95\x94\x38\xe0\x4c\xca\x8f\x6b\x53\x2f\x1d\xdf\x38\x04\xa9\x25\xea\x2a\x55\x8b\x8e\x8c\xee\x15\x9b\x19\xa6\x1a\xbb\xa3\x6c\xdf\x59\x75\x96\xec\xc0\xfc\x5d\x6c\x6a\x1e\x2d\x47\x73\x2c\x75\xb7\x19\xca\x4b\xc2\xe8\x6c\x69\xcf\x08\x56\xa1\xaa\x8d\xa6\x3d\x97\x25\xf9\xf6\xe5\x66\x72\x41\x7d\x83\x58\x5d\x70\x14\x5a\xdf\x40\xb2\xdd\x33\xde\x83\x94\x7b\xc3\xcf\x50\x8e\x03\xcc\xed\x3c\x2a\x5f\x90\xe8\xd0\x35\x13\x1f\x21\x4d\x90\x24\x69\x10\x49\xcb\xf4\x0f\x0c\xfc\x8f\x1d\x09\xff\xa6\xe0\x6b\x22\xca\x0d\x8e\x45\x61\xfe\x81\xed\x32\x69\xbe\x9f\x9f\x3a\x0e\x1d\xcb\x3d\x89\x74\x8f\x79\x47\xeb\x9c\x8e\x67\x90\x29\x79\x85\x72\x9b\x54\x9b\x16\xf3\x1b\x79\x43\x24\x9b\x09\x9b\x41\xaa\xfb\xc8\xd8\x8c\x70\xcf\x79\x60\xa2\x0e\x55\xae\x73\xc6\x27\xba\x77\xe0\xa3\x18\xba\x96\x13\xf2\xe7\x73\xfe\xf1\x87\xdf\x15\x5e\xd3\xf8\x4a\x2a\x2f\xaf\x0e\x51\x75\x35\xc2\x5f\xac\xe6\x8e\xc7\x64\x4d\xa5\x0c\x4d\x21\x14\xa4\x35\x9a\x0f\x79\xf2\x0c\xb1\xa1\x5f\x93\x4b\x01\xf9\x21\x26\x30\xcb\xed\x2b\xae\x53\x3a\xfb\xf0\x05\x02\x38\x31\x5d\x34\x0e\xda\xe0\x69\xe6\x6a\xe2\xe4\x73\xb8\x20\xf6\x5f\xc9\xa4\x6e\x23\x97\x5e\x06\x0c\x16\x6e\x6c\xc3\x6a\xb2\x9b\xd7\x42\x50\xfa\x9c\xc4\xbd\x2b\x8b\xea\x18\xb0\x24\xee\x53\x9b\x2a\x66\xee\x45\xb2\xaa\x9b\x15\x1d\x82\xb1\x66\x7a\x10\x4b\xf6\x29\x87\xb8\xa9\x96\x6c\x75\x2b\x25\xd0\x3d\xb8\xec\x4e\x9c\xd2\x42\x84\x3d\xba\x9c\x0d\x9b\xa6\x67\x5b\x2b\xa5\xa5\x06\x88\x54\xd3\x2e\x4e\xf8\x4a\x78\x04\xdb\xe8\x53\xc0\x3d\x05\x3b\xdd\x48\xde\xe8\xf3\xb3\x16\x0b\x3e\x23\xb4\x85\x37\xbf\x0c\x30\x56\xf3\x05\xc7\x52\x4a\x19\xbd\xb1\x49\xe8\xa0\xfc\x95\x6d\xf5\x37\xc5\xad\x1e\x53\xd4\xa7\x19\xa9\x25\x03\xd7\xb0\xe6\xee\x6c\x43\x87\xe9\x54\xfa\x47\x97\x6c\xe2\xdc\x4d\x77\x52\xc5\xba\x56\x39\x96\x05\x77\xd8\xf7\x7f\x8e\x78\xb0\xb4\xf3\x6f\xb3\xbf\x11\x3f\xb3\xc3\x51\x2d\xdc\x11\xda\x32\xc3\x6e\x75\x7e\x11\x27\x40\x22\xb1\x3b\x6f\xb7\x97\xed\xc8\x5f\xb6\x9d\x03\x8e\x0f\x1f\xc9\x21\x3d\x9b\x17\x95\x17\x9f\xc3\x56\xd2\x86\xe0\x31\x0c\xe7\x23\xee\xd3\xca\xf2\xc8\x43\xcf\x83\xe4\x7e\xeb\x68\x8d\xa6\x6b\x75\xad\x9f\xcc\x7a\x20\x08\x35\xdf\x45\xce\x73\xc8\xb7\x73\xcf\x4d\x74\xbb\x13\xa3\x64\x3b\x74\x71\x42\x60\xaa\x65\xb4\x22\x5a\x1f\x8d\xee\xd0\x75\xfb\x50\x4a\xae\x4e\x25\x60\x7b\xc5\x49\x5b\x73\xb1\x37\x63\xa9\x90\x4d\x17\xa7\x5f\x44\xbe\x68\x01\xf5\xd3\xb5\x76\x2c\xb4\x25\x13\x5c\xfb\x30\xd3\x81\x3b\x35\xb4\x4a\x62\xba\x97\xe7\xd7\xc3\x10\x8e\x96\x34\xb4\xd1\xea\x1a\xdc\x62\x8b\xef\xf5\x8f\xc8\x9b\x9a\x51\x09\x79\x36\x51\xb4\x47\x03\x8f\x3d\xb2\xb4\x72\x02\xcc\xbd\xd2\x4d\xfa\xb2\xf9\x0e\x8b\x39\x95\xd9\x66\xf0\x4d\x41\xbc\x50\x59\x06\xd1\x9d\xe7\x16\xcd\xa8\x3d\x90\xad\x0e\x65\x22\xbc\x6a\xdc\x54\x71\x02\x27\x1c\x2c\x5c\x8d\xa2\xa3\x4f\x4b\x15\xdd\x0f\x73\xdd\xd0\x31\xee\x18\x31\xca\x7e\x88\xdf\x3a\x8b\x16\x52\xb4\xb0\x8e\x66\x99\x25\xc3\xd7\xfa\x45\x8b\x29\x2f\x88\x4d\x72\xc5\x4c\xcb\xf8\x5d\x22\x04\x5c\x5a\x1a\x26\x0f\x8b\xd6\x8c\x6c\x5c\x8e\xd4\x3c\xdf\x22\x24\x0b\x6f\x57\xa7\x6a\x79\x7c\xf9\xa6\xc8\x0d\xff\xc8\xad\x74\xb7\x00\x66\x68\xd6\x7b\xf6\xeb\xb4\xea\xa1\xc2\x24\x9b\x93\x93\x4e\xb6\xa5\x1b\xb5\xdc\xcf\xbb\xc9\x1e\xd0\x20\xa9\x7c\x18\x61\x1a\x4b\x7a\xc2\x6a\x59\x4a\x85\x2d\xdc\xef\x27\x5d\x27\x43\x4c\xa9\xbf\x70\xb6\xb5\x71\xb5\x84\x5e\x61\xf9\xca\x72\x20\xee\x73\x21\xbd\x03\x03\x21\x5f\x44\x97\xfc\xb2\xbd\x42\x42\x68\xbe\x39\xc1\x50\x4c\x1f\x79\x0c\x15\x82\x4e\x5a\x80\x1c\x30\x8d\x0e\x61\x72\x31\xd7\x3a\x6f\x4b\x1b\x49\xd1\x94\x37\x6a\x8b\x4c\x9d\x49\xe8\x17\x89\xf6\xee\x69\x5d\x5b\x1e\x95\x81\x13\x44\x6f\x52\x6d\x84\xb5\x0c\x93\x19\xdc\xc3\x79\x0f\xc3\xce\xaf\x36\xb3\x25\xa9\xf9\x07\x46\xb6\x5a\xb3\x3b\xa3\x2b\x4e\x1b\xf2\x92\xd7\x35\x6d\xab\x18\x8b\xa5\x58\x63\x9e\x6a\xe4\x44\x6d\x19\x5d\xb9\x1b\x7e\xac\x51\xbc\x65\x64\xc6\xf1\xdd\xad\x3f\x8a\x8d\x54\x36\x11\x82\xc4\x1b\xae\xeb\xd5\x3e\xab\xaf\xc5\x8b\xfa\x20\xe6\x33\x1f\xbb\x7e\x74\x3f\x1f\x0b\x2e\xbd\x1e\xf2\xa8\x66\x37\xac\x76\xf1\x7f\x52\xb1\x39\x6f\x82\xc4\xd0\x7b\xc4\xc0\xc2\x2b\xd6\xe5\x8b\xf3\x74\x86\x99\x13\xc5\xfa\xcb\xcc\x99\x62\x61\x51\x8c\xdb\xeb\xe3\x41\xc6\xf7\x1c\x82\x18\xbd\x71\x3e\x8e\x6c\xa7\xd7\x20\xf7\xf4\xb1\xb2\xa4\x37\x2c\x76\xcb\xb9\xce\xa6\xd3\xd0\x6b\xb5\x74\x0a\x11\x26\x5b\x8b\xd5\x42\x0b\xd3\x63\x3c\x7f\x4b\x3b\xda\x03\x92\x25\x15\x65\x25\x09\x0f\x0e\xba\xa4\xd9\x46\x79\x71\x48\x13\x3d\xf1\xfc\xb3\x60\xea\xb4\xae\xf1\x3a\xa8\x3b\xc4\xcd\x86\xc2\xb2\x69\xbc\xb1\xea\x4d\x88\x72\x74\x5e\x04\xea\x6e\xdc\x17\xce\x77\xa0\x22\xbc\x5d\x69\xae\x00\x45\x73\x0e\x10\xc0\xc7\xca\x0c\xce\xfa\x9b\xf7\xf9\xdc\xb2\x8b\x5b\x23\xa8\x98\x21\xf3\x69\x85\x35\x42\xb2\xa9\xb9\x3c\xbf\xf4\x54\xa7\x5e\x87\x73\x17\x27\xc7\x63\x97\xeb\xd1\x75\x91\xce\xa7\xdd\xf8\x1c\x59\x2e\xc9\x94\xe9\x03\x5f\x32\xda\xce\x96\x66\xde\x05\xfa\x5d\xc7\x08\x11\x6a\x6f\x5d\x2b\x61\xff\x65\xf3\x13\xed\x45\xf0\x94\x84\xc5\x82\x28\xee\x9e\x47\x7a\x79\xf4\x69\x4e\x57\xf7\xe8\x71\x74\x1b\xee\xe9\x28\x2a\x21\xd3\x49\x5f\x53\x3c\x3f\x8c\xaa\xf6\x91\xd8\x42\xe9\xf8\xb8\x15\x00\x1d\xc9\x55\x20\x09\x31\xe9\xee\xfc\xe2\xe3\x24\x7a\x30\xe5\x08\xf3\x73\xec\x34\x85\xd6\x25\x83\x44\xb6\x8e\x0f\x9c\x08\x47\xaf\xd8\x6a\xad\x35\xca\x1f\x5b\xfe\xf3\xcf\x35\x67\xf2\xe8\x6b\xf0\x43\x34\xb0\x41\xfd\xda\x5e\xfc\xd1\x3c\x80\xed\x9d\xe6\xb6\x8f\x83\xb0\x5f\xc8\x47\xaf\x0f\xe0\x9a\xf4\xfd\x03\x9b\x6f\x6d\x10\x4a\x0a\x02\x84\x1c\x34\x1e\x93\x33\xd1\x7c\x0b\x7e\xe4\x19\x83\x04\x9f\x1b\xd6\xba\x48\x90\xd1\x80\x45\x6b\x10\x83\xf0\xcf\x0d\xad\x83\xca\x76\x7c\xee\xea\xfd\xf4\xde\xcd\x2c\x9a\x33\xfa\x47\xc7\xa6\xef\x60\x8c\xe0\x4d\xbb\x92\x1a\x57\x2a\xd1\x94\xf3\xf7\x95\x31\x02\x42\x9e\xc6\xd4\x60\x6b\xb4\x78\x6f\xa5\xbd\x7e\x18\x2f\x26\x97\x29\xef\x8f\xfa\xf8\x27\x48\xdf\xf7\xec\xe3\xd2\xf7\x6f\x25\x4d\xfe\x6b\xc3\xda\x9d\x9d\x80\xa9\x09\x60\x64\xb1\x97\x81\xbe\x9e\x01\x87\xb4\x2d\xf4\xe5\xd2\xa9\xd8\xb8\x0b\x90\x29\xc3\x18\x90\xd9\x45\xb2\x70\xbc\x90\x35\x7c\xe6\x4d\x74\x87\xea\xa4\xa4\xed\x17\x0b\x67\x75\xaf\x5e\x38\x64\xf4\xc2\x75\x77\x72\xad\x2f\xb1\x13\x2d\x2a\x24\x90\xff\x13\x2c\x6a\xe9\xf6\x6d\xbc\x36\x61\xf5\x20\xb7\x36\xb7\xde\xb0\x68\xbb\x16\xb6\x69\x72\x04\x1b\x2b\xd9\xae\xea\x53\x78\x59\xb1\x48\x72\x73\xb7\x2a\x24\xba\xb9\xaf\x75\x30\xd9\xff\x91\x84\x4f\x71\xd5\x50\x92\xdb\x38\xf1\x3a\xc4\x25\x2c\xdd\x4a\xe0\x3f\x7e\x89\x95\x90\xfe\x2a\x59\xba\x16\x17\x67\xf2\xd9\x2e\xdb\x03\xce\x43\x99\xad\x05\x71\xab\x5a\x38\x2d\x6f\xbf\x26\x97\x5d\x97\xc9\x6f\xb9\x2e\xa7\x05\x17\x6b\x00\x8c\xcf\xb5\xaa\x0f\x41\x00\x39\xd4\x67\x8f\x96\x37\x7c\x6e\x2f\xa4\x16\xd6\xcc\xd1\x65\x90\xd4\xe8\xb2\x6e\xd8\xef\x7f\xfb\x3e\x5c\xba\x1b\xda\xe2\xfa\x48\xff\x3b\x39\x21\xef\xde\xc7\x76\x6d\xe2\xa5\xb6\xb2\xd7\xae\x18\xde\x9a\x71\xe7\xbb\x93\x47\x0e\x86\xfe\xd2\xba\xa3\x78\xbe\xe2\x46\xfb\x2d\xf9\x58\x50\xd0\x9d\x9c\xd8\xee\xb0\x3d\x0b\x0e\x0d\x9f\x51\x6e\xeb\xa5\xcd\xc5\xa6\xa9\x86\xce\xc6\x07\xea\x66\xdd\x70\xee\xa6\xd6\xd1\xc0\x8e\x91\x48\x60\xd2\xe3\x33\x8f\x07\xc5\x4d\x10\x8e\x1b\x1e\x04\xfb\xf7\xc9\xa5\xc1\xbd\xa0\x5a\x18\x4c\xcd\x83\xcd\x27\x27\xe4\xf1\xdd\x4e\x1e\x84\xd7\x77\xca\x80\x35\x73\xd1\x84\xd7\xda\x21\x7c\xcc\xa5\xd2\x4c\x0a\x2a\x61\x29\x26\x10\x88\xbe\xaf\x28\xd2\xc2\xad\x63\x51\x29\x69\x86\x38\x83\x4c\x8a\x95\x36\xc3\xfd\xc9\x31\x2f\xc3\xc0\x82\x4c\x68\xcb\xe5\x0b\x7b\xfd\x55\xf1\x96\x55\x91\xdf\x59\xd4\x8c\x9a\xf4\x1c\x7b\xf7\x5b\x6a\x0c\xa8\xa6\xd1\x18\x2b\x26\x89\xd5\x54\x74\xaa\xfe\x03\xb8\x28\xb3\xe5\x92\x41\xe9\x9f\xc6\x64\xdf\x98\xdb\x46\xc7\x7a\x02\x2d\x8e\x3b\xea\x84\x71\x31\x0f\xba\x04\x3d\x86\x5a\x1e\x49\x85\xa6\xc8\x0a\x42\xb2\x7e\xd1\x87\x9d\xe0\xa6\x1b\x7f\x59\x67\x46\x1b\xd2\x08\xa2\xcf\x1d\xd6\x92\x29\xb3\xf7\xbf\x23\xaf\xf8\xbd\xb2\x4e\x84\xca\xbd\x99\xbb\xcf\xcc\x4a\x99\x45\x82\xe2\x24\xc6\x7d\x96\x91\x0d\x44\xb7\x88\xe5\x75\xca\x04\x83\xfe\x1b\xa2\x38\xe0\xd3\x30\x71\xc9\xd8\x1b\x92\x29\x53\x5a\xd4\x3e\xf8\x52\xd4\x27\x0b\x29\x4f\x57\x8c\x59\x9c\xdf\x98\x77\xf5\x2d\xc2\x26\xf8\xcd\x65\x56\x93\x04\x5d\xd9\xd8\xea\xc4\x0e\x0e\xcf\x10\x99\x79\x1c\x5b\x43\xa7\x90\x3e\xee\x44\xb1\x85\x20\x15\x55\x9b\x62\xfe\xa7\x69\x91\xcb\xb2\x14\xea\x85\x67\x83\x2d\xdd\x23\x81\xc9\x61\x76\x13\x97\x57\x4c\x61\x6e\xfd\xe1\x7b\xb3\xc4\x6d\x2e\xb5\x7e\xa4\xd1\xe4\xea\x5b\xfb\xf7\xb0\xe8\x3d\xb0\x85\xae\x0a\xbb\x04\x0a\xd6\x42\x41\x88\xf2\x3e\x4b\xb7\x18\x6e\xd2\x64\x7b\xbd\x31\xee\x2c\x90\x65\x2e\xab\xe2\x97\x50\x40\xbb\x77\x0b\xe8\x39\x96\x2c\xe5\x8d\xe2\x16\x23\x93\xe2\x76\x4f\x04\xec\x70\xef\x12\x3c\xb8\xbf\x11\x1d\x8f\x85\x77\xec\x42\x65\x03\x6b\x38\x84\x57\x0b\x13\x37\xe2\x1e\xdf\x4d\xb8\x6e\x94\xcc\x58\xab\xd7\xca\xca\x96\x51\x42\xe7\xff\xad\x42\x12\xaa\x33\x0b\x45\xeb\x02\x39\xb2\x81\x13\xfa\x44\x04\x70\x33\x4f\x8f\xf8\x9e\xd7\x04\x3b\x25\x69\x6e\xc1\xdc\x59\x94\xbe\xb5\x51\xf6\x66\xb3\x7a\x05\x88\xbf\x61\x6d\x56\xb3\x4e\x8f\x41\x57\xe0\xae\x8f\x44\x27\x86\x72\xa3\x7e\x5d\x62\xd4\x70\x18\x42\xe9\x57\xf4\xbc\x6c\x94\x89\x6c\xbc\x83\x68\x5c\x94\xaa\x50\x84\xea\xe1\x41\x65\x1f\xca\x9c\xdb\x5b\x7d\xc2\x77\x71\x57\xbf\xec\x3a\xfa\x21\x21\xe1\x5c\xaf\x26\xda\x4c\x61\xc7\xac\xd6\x73\x67\x09\x87\xe3\x49\xce\x20\xe5\x7b\xe8\x58\x27\xf5\x6b\x5d\x42\xbf\xd3\x05\xf4\x8e\xcb\xe7\x7d\xb3\x87\xff\x94\x23\x2b\x61\x01\x84\x34\x08\x21\x83\xdf\x7c\x94\x25\xa3\x56\x74\x1d\xfd\xc0\xf0\x4b\x08\xfa\xe0\x20\x4c\x80\xeb\xe0\x78\xf2\x2e\xa7\xfb\xfb\x7f\xc2\x75\xdd\xb3\xac\xfe\xef\xfe\x68\x92\x47\xf2\xd9\xee\xe2\x2c\x76\x65\xa5\x55\x31\x20\x0c\xac\x76\x7d\x27\x4d\x56\xfd\x25\x38\x70\x42\x31\x70\xdb\x23\xa3\x5c\xa1\x23\xf4\x74\x44\xf3\x18\x94\x4a\xae\x1c\x4f\xf2\x95\xf9\xd5\x2f\xfc\xbb\x90\x12\xef\x1f\x26\x0c\x00\x99\x62\x58\x78\x13\xd2\x78\x70\xe1\xf1\x65\x41\x02\xe5\xfd\x82\xde\x3e\xff\xb5\xab\xbe\x89\x4b\x22\x08\x6a\x97\xc3\x5a\x9b\xb3\x3e\xbf\x3c\x5c\x58\x6e\x5c\x2c\xfb\x35\x5e\xfc\xf9\xe8\x40\xf0\xe6\x0b\xf0\xca\x54\x84\x04\xc2\xc0\x0a\xf8\x5f\x1f\x3b\xa4\xc4\x7a\xe0\x8f\x70\x6d\xef\x25\x13\x2c\x94\x09\x30\x29\x84\xa0\x2e\x1e\x52\x52\x2b\x38\x5c\x8d\xd4\x28\xee\x36\xfd\x7b\x4c\x62\xbf\x51\x1f\x64\xad\xc2\xea\x99\xf9\xaf\xdd\xd5\x84\x93\x3b\xf3\xe5\x42\x4c\x21\xf0\x61\x0f\xb0\x34\xa3\xa5\x5c\x52\x50\x43\xb3\x3e\xb9\x87\x27\xe4\xf1\x84\x1c\x5d\xc6\x15\x73\xc0\x33\x38\x33\x05\x21\xcc\xbd\x99\xbe\x1a\x82\xc0\x73\x21\xea\x9a\x0f\xd3\x25\x8d\x1a\x9b\x67\xb9\x23\x87\xab\xfb\x71\xe5\x5f\x1e\xc9\xde\x51\x89\x74\xbb\xa8\x86\x43\xca\x29\x71\xf1\xee\x57\x74\xad\xc5\xbc\x57\xe9\x69\xad\xc5\xc9\xce\xaa\xec\x96\x63\x36\x52\x0b\x7c\x0f\x2b\xca\x78\xfc\x69\xc9\x1a\x73\xa3\xd6\xe8\x88\x09\x83\x69\xf6\x44\x80\x43\xf2\x1d\xf0\xaa\x35\x81\xd5\x32\x2c\x6a\x13\xc8\x0a\x70\x58\xac\xe8\x9a\x4c\x77\xf6\x82\xd5\x50\x9b\x82\x2b\x56\xe9\xaf\xb0\x38\x3b\xbc\xa0\xd1\x2c\x88\x98\x87\x40\xae\x30\xc5\xf2\x8d\x4f\x74\xcc\xf6\x91\xfe\xd0\xd9\x8c\x49\x39\xb0\x89\x45\xc7\xc8\xaf\xb1\xfa\xee\x3b\x7a\xae\x42\xee\xfb\x5c\x22\x63\x30\x63\xac\xe3\x56\x54\x9b\x93\x6c\x51\x33\x4f\x2c\xd8\x2b\xcd\x1d\x1d\x48\x51\xd7\x24\xe3\xcd\x62\xd4\x8f\xf2\x2a\x55\x02\x27\xc4\xd6\xa3\x28\xa1\x6a\x54\x72\x7b\x92\xdb\x92\x7b\x59\xb1\x3b\x19\xa1\xf9\x02\x6a\x8e\x28\xbe\xd2\x96\x78\xa8\x42\x72\x69\xf5\xb7\xb8\xf8\x97\x89\xc4\xf0\x45\x13\xd5\x02\xb5\x27\x49\x5c\x8b\x0a\x75\x7d\x8a\x75\x18\x1b\x53\x32\x05\xcb\x2a\xe2\x72\x7f\xd7\x43\x03\xac\xac\x1b\x0b\xcb\x5c\x20\x8d\xc7\xe4\x2f\xb4\xe5\x90\x13\x25\xf9\xcf\xe1\x1d\xd4\x64\xe5\x50\xf8\xc9\x7e\xa2\x27\x87\xb5\x21\xf9\xf7\xbf\x9d\x04\x90\xfe\x55\xc9\xec\x57\x54\xc9\x2c\x33\xfe\x6d\x71\x64\x94\xdb\xe9\x61\x1d\x35\xb7\xb5\x9f\x3d\xc6\x27\x01\xfa\xc9\xe1\x06\x70\xed\xd9\x96\x94\x12\xeb\x2a\x11\x5f\xc4\xa1\x0b\xb7\xee\x8a\xa2\xc9\x79\x95\x17\x8f\x0f\x78\x20\xea\x88\x65\xa0\xdd\x8f\xae\x1a\xf4\x9d\x27\x76\x40\xc1\xe6\xa2\x17\xc3\xa5\x87\x82\x98\x43\x28\xdf\x6a\xbd\xe7\x17\xab\xad\x19\x76\xbd\xa5\x97\xa3\x83\x87\xbf\xcc\xdb\x91\x24\xd4\x65\x87\xc5\x3b\x80\xf0\xbe\x9b\xb8\x97\x5d\x27\x62\x07\x91\x23\x61\x7f\x88\xf3\xd4\x3a\x07\x05\x96\x0c\x0e\x44\x6b\x72\x6e\x6c\xa4\x29\x07\xc6\x65\xf8\x58\x56\xcb\x9d\x4f\xf2\x80\xa5\xeb\x2c\x49\xea\x34\x97\xcc\xd7\xde\x25\xef\x7a\x4a\x92\xde\x1e\xd8\x81\xe5\x57\x51\x0f\x43\xe5\x62\x55\x1a\xe4\x30\x16\x24\x97\xe9\xaa\x0c\x53\xcd\xcf\xad\x47\x51\xf0\x97\xb8\xb3\x93\x53\xfa\xbd\xb8\xe5\x32\xab\x1d\x55\x24\x8d\x6b\x57\x13\x39\x12\xa7\x30\x42\xf0\x30\x97\x7d\xbd\x27\x7f\x56\xcc\x3d\xe6\x15\x0c\xda\xf5\xec\x18\x9f\x93\x87\x28\x43\xbb\xa6\x36\xb2\x91\x97\x3f\xb1\xdd\x20\x43\xac\x54\xc1\x69\x0f\xbc\xf0\x01\xbe\x0c\xde\xd0\x08\xee\xc7\x85\x1a\x97\x66\x97\xbb\x16\x61\x83\xcf\x5d\xe2\xa0\x13\x8f\x77\xd9\xd8\xef\xbb\xae\x5d\xd1\xaa\xba\x16\x87\x4a\x09\xa7\xd7\x49\xf2\x5d\xb7\xfe\x7f\x47\x61\xf1\xaf\xbd\x3f\xee\xdb\xaa\xfd\x0b\xf6\x45\x9b\xf5\x17\xdf\xa4\x5f\x75\x97\xda\xeb\xdc\x50\x8c\x52\x1b\xfb\x73\xae\x15\x70\x9f\x84\xe6\xba\x3e\x3c\xea\xde\x67\xb7\xde\x60\x4e\x61\xbb\xcd\xa6\x8c\xb4\xb9\x60\x83\x86\xbc\xf6\xaf\x72\xe3\xbf\xde\x72\xe3\x87\x78\xb6\x1e\x96\x55\xbf\x68\x57\x60\xc4\x88\x4c\xc8\x51\x28\xbb\xad\x98\x35\xe2\xc6\xaa\x08\xa8\xac\x3e\x4c\x7d\x5f\x05\x97\x55\x36\x66\xf4\xc0\x6c\x5e\x33\xbc\x54\xdf\x2f\x34\x65\x2b\x56\x5d\x0b\x73\xc3\x13\x81\x7f\xad\xe2\xe3\xdd\xb5\x3a\xb3\x49\x91\x93\xf4\x55\xdf\xfe\x7d\xdc\xd1\x3e\xb1\xbc\xba\xa0\xe6\x66\xde\x77\xb9\x1b\xd0\xfa\x89\xef\xeb\x2e\x9c\x01\x67\x6f\xe3\xc1\x95\x3b\x5a\xdb\xa7\x0b\xa3\x6a\xbc\xf7\x3e\xea\x83\xe2\x72\xc0\xf3\x48\x06\x8b\xe0\x45\xb4\xe4\x71\x1a\x20\x59\xfa\xd0\xc6\xe3\xf8\x67\x77\xad\x23\xa6\x38\xae\x89\x4d\x8b\x2d\xfe\x94\x56\x6b\x75\x0b\xe4\x9e\x8b\xfb\x2e\xff\xcd\x3e\xc6\x94\xfc\x04\xb9\x15\x57\x9b\xf5\xba\xde\x01\x8a\x91\xa0\xdd\xd8\x47\x48\xe2\x9b\x7f\x69\x95\xb2\x28\xc8\x81\x0f\x5b\xf8\x0e\xe1\x9b\x16\xe1\xfd\x3b\xac\x49\x36\x36\xb0\xc6\x69\x9d\xdf\xe3\x08\x13\x57\x3e\xd1\x84\x9a\x66\x74\x4d\xb1\x4e\x8b\xcb\x16\x2e\x14\x68\x88\xf0\xaa\x79\xf3\xe1\xc9\x37\x9f\xca\xf5\x84\x3f\xff\x7e\x30\x46\xd0\x19\x22\x43\xa2\x68\xbb\x60\xea\x60\x5c\xdf\x98\x6b\x23\xb0\x03\xdb\x03\xe9\x95\x3d\xff\x11\x3d\xfa\xe1\x46\x36\x1b\x01\x7e\x0c\x46\x05\x79\xf5\xdc\xf0\xa2\x67\xcf\xca\xdd\x72\xfc\xfc\xe0\xff\x05\x00\x00\xff\xff\x01\xd5\x3a\xde\x9a\x15\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{0x77, 0x1c, 0x9, 0x5f, 0x1, 0xcc, 0x71, 0xb1, 0x3a, 0x47, 0xa, 0x7e, 0xf2, 0xc8, 0x26, 0xeb, 0xd7, 0x9f, 0xc, 0x38, 0xad, 0xe3, 0x64, 0xde, 0x50, 0xf0, 0x61, 0x26, 0xd7, 0x2b, 0xbd, 0x63}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf8, 0x50, 0x6a, 0x6c, 0x4, 0x5a, 0xf7, 0xd9, 0xea, 0xb0, 0xfa, 0x64, 0x96, 0x2b, 0x2f, 0xbf, 0xad, 0xf5, 0x80, 0xfa, 0xdd, 0x59, 0x3, 0x3f, 0x13, 0x37, 0xc5, 0xa9, 0xad, 0xe1, 0xc1, 0x9a}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index b2534c9a..b289b088 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -21,6 +21,7 @@ // ../../../transactions/admin/start_new_series.cdc (763B) // ../../../transactions/admin/transfer_admin.cdc (606B) // ../../../transactions/admin/unlock_all_moments.cdc (422B) +// ../../../transactions/admin/update_tagline.cdc (1.243kB) // ../../../transactions/market/change_percentage.cdc (942B) // ../../../transactions/market/change_price.cdc (879B) // ../../../transactions/market/change_receiver.cdc (810B) @@ -584,6 +585,26 @@ func TransactionsAdminUnlock_all_momentsCdc() (*asset, error) { return a, nil } +var _TransactionsAdminUpdate_taglineCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x9c\x93\x4f\x6f\xda\x4a\x14\xc5\xf7\xfe\x14\xe7\xb1\x78\x01\x29\x0f\xe7\xbd\xb7\xb3\x9a\x46\x54\x34\x6a\xd4\xb4\x89\x02\x5d\x45\x59\xdc\x8c\xaf\x61\x8a\x3d\x63\xcd\x5c\x9a\x58\x88\xef\x5e\xcd\xd8\x18\xdc\x6e\xa2\xb2\x01\xdd\x7f\xe7\x37\xe7\x5e\x74\x55\x5b\x27\x58\xda\x7a\xb1\xb6\x82\xc2\xd9\x0a\x17\xaf\xcb\xbb\xfb\xc5\xa7\xbb\xe5\x6c\x3e\x7f\xf8\xb8\x58\x24\x49\x9a\x62\xb9\xd6\x1e\xe2\xc8\x78\x52\xa2\xad\xc1\xb6\xce\x49\xd8\xa3\xda\x96\xa2\xeb\x92\xc1\xaf\xda\x8b\x36\x2b\xd4\x25\x35\xfe\x0c\x42\xab\x52\x1b\xf6\xa1\x9b\x4c\x0e\x2f\xd6\xb1\x87\xac\xb9\x82\x36\xe1\x3b\xc8\x22\xea\xfa\x8a\x9c\x40\x59\x23\x8e\x94\x44\xc1\x7b\x72\x54\xb1\xb0\xf3\x59\x92\xa6\x21\x12\xe7\x66\x98\x21\xd7\x11\x81\x5c\x03\x5b\x60\x17\xe2\x37\xf3\xec\x20\xb8\x47\x4d\xda\xf9\x24\x39\xa1\x1d\x77\xbd\xbb\x6f\x37\x46\xfe\xff\x2f\xc3\x42\x9c\x36\xab\xfd\x04\xbb\x24\x01\x80\x34\xc5\xad\x55\x54\xe2\x07\x39\x4d\xcf\x25\xa3\xb0\x2e\x32\x8a\xad\x7d\x40\x9c\xe5\x95\x36\xb0\xcf\xdf\x59\x49\x6c\x29\x59\x40\x21\xf8\xc0\x45\x86\xbf\x3b\x0b\xa7\xb1\xae\x2f\x28\xb4\xf3\xf2\x99\x9b\x0c\xad\x72\x9f\x28\x69\x18\x8f\x89\xda\x71\x4d\x8e\xc7\xa4\x94\x64\x98\x6d\x65\x3d\x53\xca\x6e\x8d\xf4\x9c\x1d\xeb\xb3\x75\xce\xbe\x80\xe0\xb8\x60\xc7\x46\x05\xce\x88\x1b\x89\xe0\xd8\xdb\xad\x53\xdc\xf7\x78\x2e\x8b\xe9\x81\x16\x97\x08\x0a\xd3\x76\xca\xbb\x21\xfa\xfb\x71\x38\x82\x0c\x69\xd8\x17\xad\x38\xed\xb2\x31\x39\xe9\x07\x86\xcf\xd5\x15\x6a\x32\x5a\x8d\x47\x5f\xed\x2f\xc2\x61\xc3\xdd\x80\xd1\x64\x48\x71\xb0\x04\x97\xed\x46\xa7\x1b\x6e\xfc\xe3\xc5\xd3\xb0\xaa\xf3\x67\x58\x74\xfc\x39\x2d\xd9\xac\x64\x8d\x7f\xf0\x6f\xdb\xb8\x6f\xfd\xe1\x57\x56\x5b\x61\xec\x4e\xdd\x6a\x4f\xf5\x78\xa9\x71\x0c\x5e\xb4\xac\xa3\x65\xbe\x66\xa5\x0b\xcd\x39\x2a\x16\xca\x49\xa8\x6f\x0e\x47\xb0\xe1\x26\xbc\xe6\xa8\x7d\x32\xfc\x37\x6b\xa7\xad\xd6\x7d\x49\xcd\xb2\x3d\xc7\xf1\xe1\x3c\x37\xdc\x9c\x1f\x6e\x34\x6b\xc7\x3d\x6e\xb8\x79\x1a\xda\xd8\x15\x44\xe5\x50\x33\x9a\x1c\xed\xdb\x9f\xbe\xb4\xb6\x5e\x4e\x48\x0e\x3b\x5c\xb1\x04\xf1\x2f\x2c\x34\x27\xa1\x0f\xcd\xb5\xe6\x32\xef\x21\x06\x1b\x38\x47\x11\x92\x19\x46\x1d\xeb\x68\x82\xbf\x2e\x61\x74\x99\x0d\x5e\x38\xba\x0e\x0d\x11\xe7\xcc\xf7\x84\xb9\x65\x0f\x63\xa5\xfd\xe3\x8f\xfe\x88\xa4\xdb\xf2\x9b\x41\x6e\xe9\x6d\x1c\xfb\x64\x9f\xfc\x0c\x00\x00\xff\xff\xfe\xe5\xa8\xfa\xdb\x04\x00\x00" + +func TransactionsAdminUpdate_taglineCdcBytes() ([]byte, error) { + return bindataRead( + _TransactionsAdminUpdate_taglineCdc, + "../../../transactions/admin/update_tagline.cdc", + ) +} + +func TransactionsAdminUpdate_taglineCdc() (*asset, error) { + bytes, err := TransactionsAdminUpdate_taglineCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "../../../transactions/admin/update_tagline.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xf5, 0xb4, 0x41, 0x41, 0xce, 0xa6, 0xfd, 0x9a, 0x8f, 0xbb, 0xde, 0x56, 0x22, 0xdf, 0xc3, 0x47, 0x8a, 0x7f, 0xc1, 0xa6, 0xce, 0x6, 0xe5, 0x53, 0x6e, 0xff, 0x44, 0x3c, 0x82, 0x23, 0x59, 0x44}} + return a, nil +} + var _TransactionsMarketChange_percentageCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x8c\x92\xc1\x6e\xdb\x30\x10\x44\xef\xfa\x8a\xad\x0f\xad\x73\xb1\x7a\x28\x7a\x10\xea\x06\x86\x93\x5e\xda\x00\x81\x9d\x7e\xc0\x9a\x59\x59\x44\x28\xae\xb0\x5c\xd9\x2e\x8a\xfc\x7b\x41\xd2\x76\x2c\xc1\x45\xcb\x83\x00\x89\xe4\xec\x9b\xd1\xd8\xb6\x63\x51\x78\x40\x79\x21\x85\x5a\xb8\x85\x8f\x87\x87\xc5\xea\xfb\xfd\xd3\xe2\xee\x6e\x75\xbf\x5e\x17\x45\x59\xc2\x53\x63\x03\xa8\xa0\x0f\x68\xd4\xb2\x07\xd3\xa0\xdf\x52\x00\x6d\x08\x3a\x12\x43\x5e\x71\x4b\x60\x7a\x05\xae\x01\xa1\xe5\x96\xbc\x7e\x08\x10\xd0\x11\x6c\xed\x8e\x3c\x28\xc3\x86\x3c\xd5\xd6\x58\x94\x5f\x49\xf7\x11\x05\x5b\x52\x92\x50\x15\x65\x19\xbf\x78\xda\x3f\x9e\xf5\xaa\xf8\x7a\xa9\xcf\x35\x28\xbf\x90\xcf\x83\x2f\xd4\x60\x6f\x9d\x03\x21\x43\x76\x47\xd9\x47\x3c\x11\xa7\x17\xc5\x05\xf8\x74\xa4\xff\xf3\x9b\x3d\x7c\xfe\x74\x03\xbf\x8b\x02\x00\xa0\x2c\xe1\x07\x1b\x74\xb0\x43\xb1\xb8\x71\x04\x35\x4b\x52\x42\x63\xb8\x4f\x8e\x94\xbb\xd0\xb0\x66\x67\x86\x9d\xa3\xa4\x9c\xee\x3b\xd2\xd3\xfe\x1a\x1d\x2d\xcf\xbb\x2b\xaa\x2b\x78\x9f\x63\x9e\x0d\xb7\xf2\xe4\x4e\xa8\x43\xa1\x29\x1a\xa3\x15\x2c\x7a\x6d\x16\x79\xe2\x99\xed\xc8\xb7\x61\x11\xde\x03\x82\x50\x4d\x42\xde\x50\x0c\x36\x22\xf2\xde\x93\x9c\x22\x1f\x81\xc5\x15\xc8\xd5\xb3\xbf\xd1\xc1\x3c\x5a\xd4\x59\x96\xff\x72\x1d\xf5\xeb\x34\x26\x5b\x41\x19\x94\x05\xb7\x54\x5e\x55\xbb\x39\x4f\x8c\xeb\xf6\x16\x3a\xf4\xd6\x4c\x27\x4b\xee\xdd\x33\x78\xd6\x93\x87\xf4\x9b\x12\xad\xf5\x70\x94\x9c\xe4\xdb\xaf\xd9\x33\x1d\xc8\xf4\x4a\xa3\x08\x96\xa9\x7c\xe3\xee\xc5\x6e\x34\x74\x6c\xde\xff\x99\x9e\xe5\x1a\xbf\x15\x62\x58\x8f\x01\x4a\xc7\x41\x2f\x39\xfe\x21\xdc\xeb\x9b\xce\x3b\x98\xcf\xc7\xc5\x1e\x64\x34\x19\x1c\x4f\x11\x65\xb2\xe7\xc9\x11\x21\x3e\x8b\xd7\x3f\x01\x00\x00\xff\xff\x5a\x89\x61\xf6\xae\x03\x00\x00" func TransactionsMarketChange_percentageCdcBytes() ([]byte, error) { @@ -2176,6 +2197,7 @@ var _bindata = map[string]func() (*asset, error){ "../../../transactions/admin/start_new_series.cdc": TransactionsAdminStart_new_seriesCdc, "../../../transactions/admin/transfer_admin.cdc": TransactionsAdminTransfer_adminCdc, "../../../transactions/admin/unlock_all_moments.cdc": TransactionsAdminUnlock_all_momentsCdc, + "../../../transactions/admin/update_tagline.cdc": TransactionsAdminUpdate_taglineCdc, "../../../transactions/market/change_percentage.cdc": TransactionsMarketChange_percentageCdc, "../../../transactions/market/change_price.cdc": TransactionsMarketChange_priceCdc, "../../../transactions/market/change_receiver.cdc": TransactionsMarketChange_receiverCdc, @@ -2322,6 +2344,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "start_new_series.cdc": {TransactionsAdminStart_new_seriesCdc, map[string]*bintree{}}, "transfer_admin.cdc": {TransactionsAdminTransfer_adminCdc, map[string]*bintree{}}, "unlock_all_moments.cdc": {TransactionsAdminUnlock_all_momentsCdc, map[string]*bintree{}}, + "update_tagline.cdc": {TransactionsAdminUpdate_taglineCdc, map[string]*bintree{}}, }}, "market": {nil, map[string]*bintree{ "change_percentage.cdc": {TransactionsMarketChange_percentageCdc, map[string]*bintree{}}, diff --git a/lib/go/templates/topshot_admin_templates.go b/lib/go/templates/topshot_admin_templates.go index cff7514d..a8500d40 100644 --- a/lib/go/templates/topshot_admin_templates.go +++ b/lib/go/templates/topshot_admin_templates.go @@ -7,6 +7,7 @@ import ( const ( transactionsPath = "../../../transactions/" createPlayFilename = "admin/create_play.cdc" + updateTaglineFilename = "admin/update_tagline.cdc" createSetFilename = "admin/create_set.cdc" addPlayFilename = "admin/add_play_to_set.cdc" addPlaysFilename = "admin/add_plays_to_set.cdc" @@ -36,6 +37,14 @@ func GenerateMintPlayScript(env Environment) []byte { return []byte(replaceAddresses(code, env)) } +// GenerateMintPlayScript creates a new play data struct +// and initializes it with metadata +func GenerateUpdateTaglineScript(env Environment) []byte { + code := assets.MustAssetString(transactionsPath + updateTaglineFilename) + + return []byte(replaceAddresses(code, env)) +} + // GenerateMintSetScript creates a new Set struct and initializes its metadata func GenerateMintSetScript(env Environment) []byte { code := assets.MustAssetString(transactionsPath + createSetFilename) diff --git a/lib/go/test/topshot_test.go b/lib/go/test/topshot_test.go index 0289c58b..f85379c4 100644 --- a/lib/go/test/topshot_test.go +++ b/lib/go/test/topshot_test.go @@ -193,6 +193,15 @@ func TestMintNFTs(t *testing.T) { tb.CreatePlay(t, []cadence.KeyValuePair{{Key: firstName, Value: lebron}, {Key: playType, Value: dunk}}) }) + t.Run("Should be able to update an existing Play", func(t *testing.T) { + result := executeScriptAndCheck(t, b, templates.GenerateGetPlayMetadataFieldScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.String("FullName"))}) + assert.Equal(t, CadenceString("Lebron"), result) + + tb.UpdateTagline(t, []cadence.KeyValuePair{{Key: cadence.UInt32(1), Value: CadenceString("lorem ipsum")}}) + result = executeScriptAndCheck(t, b, templates.GenerateGetPlayMetadataFieldScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt32(1)), jsoncdc.MustEncode(cadence.String("Tagline"))}) + assert.Equal(t, CadenceString("lorem ipsum"), result) + }) + // Admin sends transactions to create multiple plays t.Run("Should be able to create multiple new Plays", func(t *testing.T) { metadatas := [][]cadence.KeyValuePair{ @@ -321,7 +330,7 @@ func TestMintNFTs(t *testing.T) { t.Run("Should be able to get moments metadata", func(t *testing.T) { // Tests to ensure that all core metadataviews are resolvable expectedMetadataName := "Lebron Dunk" - expectedMetadataDescription := "A series 0 Genesis moment with serial number 1" + expectedMetadataDescription := "lorem ipsum" expectedMetadataThumbnail := "https://assets.nbatopshot.com/media/1?width=256" expectedMetadataExternalURL := "https://nbatopshot.com/moment/1" expectedStoragePath := "/storage/MomentCollection" @@ -332,7 +341,7 @@ func TestMintNFTs(t *testing.T) { expectedCollectionSquareImage := "https://nbatopshot.com/static/img/og/og.png" expectedCollectionBannerImage := "https://nbatopshot.com/static/img/top-shot-logo-horizontal-white.svg" expectedRoyaltyReceiversCount := 1 - expectedTraitsCount := 5 + expectedTraitsCount := 6 expectedVideoURL := "https://assets.nbatopshot.com/media/1/video" resultNFT := executeScriptAndCheck(t, b, templates.GenerateGetNFTMetadataScript(env), [][]byte{jsoncdc.MustEncode(cadence.Address(topshotAddr)), jsoncdc.MustEncode(cadence.UInt64(1))}) @@ -608,6 +617,18 @@ func (b *topshotTestBlockchain) CreatePlay(t *testing.T, metadata []cadence.KeyV ) } +func (b *topshotTestBlockchain) UpdateTagline(t *testing.T, plays []cadence.KeyValuePair) { + tx := createTxWithTemplateAndAuthorizer(b.Blockchain, templates.GenerateUpdateTaglineScript(b.env), b.topshotAdminAddr) + tags := cadence.NewDictionary(plays) + _ = tx.AddArgument(tags) + + signAndSubmit( + t, b.Blockchain, tx, + []flow.Address{b.ServiceKey().Address, b.topshotAdminAddr}, []crypto.Signer{b.serviceKeySigner, b.topshotAdminSigner}, + false, + ) +} + func (b *topshotTestBlockchain) CreateSet(t *testing.T, setName string) { tx := createTxWithTemplateAndAuthorizer(b.Blockchain, templates.GenerateMintSetScript(b.env), b.topshotAdminAddr) diff --git a/transactions/admin/update_tagline.cdc b/transactions/admin/update_tagline.cdc new file mode 100644 index 00000000..783fb860 --- /dev/null +++ b/transactions/admin/update_tagline.cdc @@ -0,0 +1,39 @@ +import TopShot from 0xTOPSHOTADDRESS + +// This transaction updates multiple existing plays' taglines +// and stores them in the Top Shot smart contract + +// Parameters: +// +// plays: A dictionary of {playID: tagline} pairs + +transaction(plays: {UInt32: String}) { + + // Local variable for the topshot Admin object + let adminRef: &TopShot.Admin + let firstKey: UInt32 + let lastKey: UInt32 + + prepare(acct: AuthAccount) { + + // borrow a reference to the admin resource + self.adminRef = acct.borrow<&TopShot.Admin>(from: /storage/TopShotAdmin) + ?? panic("No admin resource in storage") + self.firstKey = plays.keys[0] + self.lastKey = plays.keys[plays.keys.length - 1] + } + + execute { + // update multiple plays with the specified metadata + for key in plays.keys { + self.adminRef.updatePlayTagline(playID: key, tagline: plays[key] ?? panic("No tagline for play")) + } + } + + post { + TopShot.getPlayMetaDataByField(playID: self.firstKey, field: "Tagline") != nil: + "First play's tagline does not exist" + TopShot.getPlayMetaDataByField(playID: self.lastKey, field: "Tagline") != nil: + "Last play's tagline does not exist" + } +}