diff --git a/contracts/FlowIDTableStaking.cdc b/contracts/FlowIDTableStaking.cdc index 7725806d4..f0437fb89 100644 --- a/contracts/FlowIDTableStaking.cdc +++ b/contracts/FlowIDTableStaking.cdc @@ -68,6 +68,7 @@ pub contract FlowIDTableStaking { pub event NewDelegatorCutPercentage(newCutPercentage: UFix64) pub event NewWeeklyPayout(newPayout: UFix64) pub event NewStakingMinimums(newMinimums: {UInt8: UFix64}) + pub event NewDelegatorStakingMinimum(newMinimum: UFix64) /// Holds the identity table for all the nodes in the network. /// Includes nodes that aren't actively participating @@ -78,7 +79,6 @@ pub contract FlowIDTableStaking { /// The minimum amount of tokens that each staker type has to stake /// in order to be considered valid /// Keys: - /// 0 - Delegators /// 1 - Collector Nodes /// 2 - Consensus Nodes /// 3 - Execution Nodes @@ -853,17 +853,25 @@ pub contract FlowIDTableStaking { /// at the end of the staking auction, and pay rewards to nodes at the end of an epoch pub resource Admin: EpochOperations { - /// Sets a new set of minimum staking requirements for all the nodes and delegators - /// Delegator minimum is at index 0, other nodes' indexes are their role numbers + /// Sets a new set of minimum staking requirements for all the nodes + /// Nodes' indexes are their role numbers pub fun setMinimumStakeRequirements(_ newRequirements: {UInt8: UFix64}) { pre { - newRequirements.keys.length == 6: - "There must be six entries for minimum stake requirements (one for delegators and 5 for nodes)" + newRequirements.keys.length == 5: + "There must be six entries for node minimum stake requirements" } FlowIDTableStaking.minimumStakeRequired = newRequirements emit NewStakingMinimums(newMinimums: newRequirements) } + /// Sets a new set of minimum staking requirements for all the delegators + pub fun setDelegatorMinimumStakeRequirement(_ newRequirement: UFix64) { + FlowIDTableStaking.account.load(from: /storage/delegatorStakingMinimum) + FlowIDTableStaking.account.save(newRequirement, to: /storage/delegatorStakingMinimum) + + emit NewDelegatorStakingMinimum(newMinimum: newRequirement) + } + /// Changes the total weekly payout to a new value pub fun setEpochTokenPayout(_ newPayout: UFix64) { if newPayout != FlowIDTableStaking.epochTokenPayout { @@ -1441,9 +1449,9 @@ pub contract FlowIDTableStaking { let delRecord = nodeRecord.borrowDelegatorRecord(delegator) // If the delegator's committed tokens for the next epoch - // Is less than the delegator minimum, unstake all their tokens + // is less than the delegator minimum, unstake all their tokens let actualCommittedForNextEpoch = delRecord.tokensCommitted.balance + delRecord.tokensStaked.balance - delRecord.tokensRequestedToUnstake - if !FlowIDTableStaking.isGreaterThanMinimumForRole(numTokens: actualCommittedForNextEpoch, role: UInt8(0)) { + if actualCommittedForNextEpoch < FlowIDTableStaking.getDelegatorMinimumStakeRequirement() { delRecord.tokensUnstaked.deposit(from: <-delRecord.tokensCommitted.withdraw(amount: delRecord.tokensCommitted.balance)) delRecord.tokensRequestedToUnstake = delRecord.tokensStaked.balance } @@ -1548,9 +1556,9 @@ pub contract FlowIDTableStaking { message: "Cannot register a delegator for an access node" ) - let minimum = self.minimumStakeRequired[UInt8(0)]! + let minimum = self.getDelegatorMinimumStakeRequirement() assert( - self.isGreaterThanMinimumForRole(numTokens: tokensCommitted.balance, role: 0), + tokensCommitted.balance >= minimum, message: "Tokens committed for delegator registration is not above the minimum (".concat(minimum.toString()).concat(")") ) @@ -1810,10 +1818,10 @@ pub contract FlowIDTableStaking { } /// Checks if the amount of tokens is greater than the minimum staking requirement - /// for the specified staker role (including role == 0 for delegators) + /// for the specified node role pub fun isGreaterThanMinimumForRole(numTokens: UFix64, role: UInt8): Bool { let minimumStake = self.minimumStakeRequired[role] - ?? panic("Incorrect role provided for minimum stake. Must be 0, 1, 2, 3, 4, or 5") + ?? panic("Incorrect role provided for minimum stake. Must be 1, 2, 3, 4, or 5") return numTokens >= minimumStake } @@ -1851,11 +1859,17 @@ pub contract FlowIDTableStaking { ?? panic("could not get non-operational node list") } - /// Gets the minimum stake requirements for all the staker types + /// Gets the minimum stake requirements for all the node types pub fun getMinimumStakeRequirements(): {UInt8: UFix64} { return self.minimumStakeRequired } + /// Gets the minimum stake requirement for delegators + pub fun getDelegatorMinimumStakeRequirement(): UFix64 { + return self.account.copy(from: /storage/delegatorStakingMinimum) + ?? 0.0 + } + /// Gets a dictionary that indicates the current number of tokens staked /// by all the nodes of each type pub fun getTotalTokensStakedByNodeType(): {UInt8: UFix64} { @@ -1906,7 +1920,8 @@ pub contract FlowIDTableStaking { self.StakingAdminStoragePath = /storage/flowStakingAdmin self.DelegatorStoragePath = /storage/flowStakingDelegator - self.minimumStakeRequired = {UInt8(0): 50.0, UInt8(1): 250000.0, UInt8(2): 500000.0, UInt8(3): 1250000.0, UInt8(4): 135000.0, UInt8(5): 100.0} + self.minimumStakeRequired = {UInt8(1): 250000.0, UInt8(2): 500000.0, UInt8(3): 1250000.0, UInt8(4): 135000.0, UInt8(5): 100.0} + self.account.save(50.0 as UFix64, to: /storage/delegatorStakingMinimum) self.totalTokensStakedByNodeType = {UInt8(1): 0.0, UInt8(2): 0.0, UInt8(3): 0.0, UInt8(4): 0.0, UInt8(5): 0.0} self.epochTokenPayout = epochTokenPayout self.nodeDelegatingRewardCut = rewardCut diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index f33f6fd39..25ee823e2 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -2,7 +2,7 @@ // sources: // FlowContractAudits.cdc (9.042kB) // FlowFees.cdc (9.388kB) -// FlowIDTableStaking.cdc (95.319kB) +// FlowIDTableStaking.cdc (95.898kB) // FlowServiceAccount.cdc (7.987kB) // FlowStakingCollection.cdc (54.45kB) // FlowStorageFees.cdc (9.163kB) @@ -123,7 +123,7 @@ func flowfeesCdc() (*asset, error) { return a, nil } -var _flowidtablestakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xeb\x72\x1b\x37\xb2\xf0\xef\xe3\xa7\x80\x5d\xf5\xd9\x54\x22\x89\x92\x2f\x39\x59\x95\xe5\xac\x22\xd9\x7b\x54\xc9\xda\x2e\xcb\xd9\xfc\x70\xa5\xb2\xd0\x0c\x28\x62\x3d\x1c\x30\x83\x19\xd1\x3c\x89\xdf\xfd\x2b\x34\xee\xb7\x99\xa1\x44\x3b\xd9\xec\x51\x25\x65\x89\x9c\x69\x00\x8d\x46\xa3\xef\x3d\xfd\xe2\xce\x1d\x84\x10\x7a\x51\xb1\xd5\xf9\xd9\x5b\x7c\x59\x91\x8b\x16\xbf\xa7\xf5\x95\xfc\xfc\xed\x9c\xc0\x77\xe8\xfc\x0c\xc1\xb7\x08\xd7\x25\x52\x8f\xa0\x82\xd5\x6d\x83\x8b\x16\x2d\x70\x8d\xaf\x08\x87\x57\x6a\x56\x12\xc4\x96\xa4\xc1\x2d\x6b\xf8\x03\x78\xa1\x24\x15\xb9\x52\x7f\xd3\x7a\xc6\x9a\x05\x6e\x29\xab\xe1\x79\xf1\x3d\x0c\xd1\xb2\xf7\xa4\xe6\xa8\x9d\xe3\x16\xe1\x86\x20\xde\xe2\xf7\xa4\x44\x98\xa3\x25\x6e\x5a\xc4\x66\xa8\xd5\xb3\x79\xdd\xb0\x96\x15\xac\xda\x97\xb3\x7c\xc9\x4a\xc2\x11\xef\x2e\x17\xb4\x15\x0f\xd1\x46\xbe\x8c\x5a\x06\xef\x2c\xbb\xcb\x8a\x16\x08\x97\xa5\x78\xf2\xbc\x9e\x31\x34\xeb\xea\xc2\x4c\xa1\xec\x1a\xb1\x1c\xf1\x28\x57\x4b\xc3\x1d\x7c\x8d\x96\x73\xcc\xc9\xbe\x46\x06\xe5\xa8\x21\x05\x6b\x4a\xae\x86\x11\x8b\x81\x15\x14\x6c\xb1\xa0\x6d\x4b\x4a\xb5\x8c\x7d\x81\xba\x35\xc2\x15\x67\x68\x45\xab\x0a\x5d\x91\x16\x61\x98\x29\xc0\x7a\x75\xf9\x2f\x52\xb4\x72\xb1\xad\x78\xb2\xc0\x35\xea\x38\x4c\x19\xe6\xbe\x8b\xba\x5a\xfd\x22\xe0\xaf\x68\x3b\x2f\x1b\xbc\x42\x0d\x59\xe1\xa6\xe4\x6a\x4a\xcf\x71\x31\x97\x18\x9f\x63\x8e\x16\x5d\xd5\xd2\x65\x45\xe4\x1c\xd0\x65\x57\xbc\x27\xad\xc2\xe8\x9c\x55\xa5\x9a\xb4\x9c\x21\xbc\x7f\x89\x39\x29\x11\xab\x2d\xd6\xda\x8e\x1f\xd9\xd5\xec\xaa\x5d\xd0\xb3\xa1\xf5\x95\x99\x58\x29\x67\x26\x27\x44\x4a\x35\xa3\x33\xb3\xd5\xb0\x24\x40\x40\x43\xae\x28\x6f\x89\x18\x59\x93\x02\x41\x2f\xbe\x7f\xf5\xa3\xf8\x00\xfb\x14\x33\x6a\x43\xd0\xe5\x1a\x75\x5c\x3f\xa2\xc1\xbf\x24\x2b\x33\xfa\x64\xc7\x6c\xf1\xbe\xa6\xe4\x35\x9a\xe3\x6b\x22\xa1\xe2\x45\x12\x4b\x3e\xf1\xa2\x92\xed\xdb\x73\x70\x52\x2e\x68\x0d\x78\x16\x10\x70\xd7\xce\x59\x43\xdb\xb5\x58\x43\x43\x16\xec\x9a\xc8\xb7\x15\x81\xec\xc2\x7b\x0d\x99\x75\x75\x89\x68\xcd\xbb\xd9\x8c\x16\x94\xd4\x6d\xb5\xd6\x94\x2d\x1e\xe7\xbb\x68\x89\xd7\x7a\x57\x77\xcd\x89\x00\x78\xea\x44\x5c\x92\x76\x45\xec\x4c\x81\xb4\x38\x91\x64\x35\xc7\xcb\x25\xa9\x11\xab\x0b\x82\xc8\x35\x69\xd6\x88\x2c\x59\x31\x57\xd3\xbe\x20\x44\x50\x3d\x15\x68\xc0\x95\xc1\x65\xc9\x8a\x6e\x41\xea\x16\x0e\x21\x9a\x93\x86\x1c\xa1\x79\xdb\x2e\xf9\xd1\x74\x5a\xb2\x82\xef\xb3\x7a\x56\xb1\xd5\x3e\x6b\xae\xa6\xea\x9d\xe9\x9d\x3b\xe8\x8b\xe9\x9d\x3b\x74\xb1\x64\x4d\x8b\x5e\x74\xf5\x15\xbd\xac\xc8\x5b\x40\xe1\xac\x61\x0b\x74\xf0\xe1\xc5\x0f\x2f\xff\x76\xfe\xed\xf7\xcf\xdf\xbe\xfa\xee\xf9\xcb\x93\xb3\xb3\x37\xcf\x2f\x2e\xcc\x0b\x15\x5b\xf9\x0f\x7f\xff\xea\xc7\xdc\x83\x2f\x08\xe1\xee\x73\x2f\x9e\x3f\xbf\x08\x1e\x3b\x6d\xd6\xcb\x96\xdd\xb9\xb3\xec\x2e\x2d\x1b\x8a\xb9\x18\xfa\x55\x22\x62\xfa\x05\xfc\xa4\xd9\xd8\xf3\x6b\x52\xb7\x1c\xc9\x47\xa6\xf2\x05\x01\x97\x88\xcf\xd1\x4b\xb2\x7a\x2e\x50\x3a\x69\x59\x8b\xab\x0b\xd8\xba\x23\xf4\xc3\x0b\xfa\xe1\xab\xc7\xbb\x08\x3e\x7c\x03\xbb\xf7\x1a\xaf\x59\xd7\xea\xaf\x76\x02\x30\x00\xe3\xad\x7d\x9a\xbf\xc6\xb4\x94\x30\x2d\x34\xb1\x66\xb1\x78\xfb\xc9\x82\xd6\xad\x3b\xde\x8c\x10\xfe\x6d\xd7\xd4\xf6\xb3\x1d\xb5\xc2\xe9\x14\xb8\x8b\x5a\x4d\xbc\x08\xf1\xe5\x69\x43\x70\x4b\xca\x89\xa0\xbc\xf3\xb3\x23\x74\xd1\x36\x70\xa2\x1b\x56\x91\x23\xf4\xc3\x79\xdd\x7e\xbd\x8b\xf0\x82\x75\x75\x7b\xaa\x59\x40\x6e\x41\xb0\x9b\xdc\x3c\x16\xc1\x94\x60\xfa\xdf\x96\xd8\xdc\xf0\x55\xb1\x10\xf9\xfa\x1b\xf2\x4b\x47\x78\x4b\xca\xb7\xec\x07\xc9\x93\x6e\x34\x8b\x1f\x34\x6b\xbb\xc5\xdb\x37\x5a\xc5\x1b\x60\x1b\xe5\x49\x5d\xbe\x01\x3e\xb1\x31\x10\x97\x94\x36\x7b\x53\xcf\x5a\xae\xe1\x47\x75\xbb\xd4\x37\x1a\xff\x76\x30\x5e\x92\x76\xc5\x1a\x81\xfe\x93\xb2\x6c\x08\xe7\x3f\x2c\xcb\x24\x91\xd6\x64\xa5\x9e\xd0\x9f\xa5\x70\xfa\x23\xa1\x57\xf3\xf6\x74\x8e\xeb\xab\x34\x0c\xf9\x80\xa4\x76\xef\xf4\x98\xbb\x23\x7b\x84\xcc\x13\xb9\x73\x64\xe4\x1c\xf1\xa1\x18\xe0\xd1\xc3\x70\x8e\x06\xc6\xd0\xf9\x49\xc0\x1a\x42\x65\x00\x3b\x73\xba\x6e\x0f\x78\xc4\xb9\xbb\xfd\x20\xf9\x53\xb9\x2d\xd8\x5b\xc6\x4d\xdf\x61\xbc\x0d\xdc\xb1\x47\xf5\xf6\x73\xdf\xca\x08\xe6\x3c\x9d\x9a\x6b\x99\x92\xaa\x44\xf2\x48\x8e\x38\x5b\x5d\xfb\x9a\x34\x85\x10\x4f\xae\xc8\xa4\x26\x2b\xef\x83\x3c\x17\x59\xfd\x48\xc8\xfb\x6a\x2d\x6f\x61\xf1\x5e\xff\x7d\xfc\x92\xac\xd4\xfd\xff\x77\x5a\xd3\x45\xb7\xe0\xe2\x1d\xfd\xfb\x11\xfa\x15\x6e\x43\xfd\xf6\x47\x67\x5d\xff\xc3\x2a\x29\xff\x23\x5a\x92\xba\x05\x11\x10\x64\x8a\x19\x6b\x10\xae\x2a\xf8\x0a\x64\x3b\x44\x6b\xf9\x87\x64\x71\xfb\x06\xc4\x79\x5d\x54\x9d\x78\x40\x3e\xa6\x55\x9e\xfa\x41\x8b\x70\xd1\xd2\x6b\x52\xad\x41\xe9\xa1\x05\x5d\xe2\x56\x68\x63\xfa\xcd\xf7\x64\x8d\x8e\xa5\xa0\x79\x7e\x66\x3e\xbd\xc6\x55\x47\xd0\xb1\x92\x86\x85\xfc\x29\xd5\x25\x25\xd1\x3e\xe0\xa0\xa8\xec\x2a\x81\x72\x37\xd0\xc9\xa4\xd0\x59\x14\x84\xf3\x89\x96\xa5\x76\xd0\x35\x6e\xe4\xf4\x8e\xd0\x5f\x7f\x95\x14\x70\xa4\x6e\x2d\x31\xc0\x47\x8b\x10\x21\x1c\x2f\x24\xe2\x14\x35\xc0\xe8\x8e\x3a\x47\x84\x9a\x02\x54\xdc\xa0\x76\xbd\x94\xda\x8a\xd6\x74\x0c\x1c\x5a\x23\xd6\x94\x52\x4d\xb8\x24\x42\xac\xe3\xb4\x24\x0d\x29\xc5\xfa\x68\x69\x9e\xfb\x8e\xac\xf9\x91\xf9\xeb\x00\xed\x39\x4a\x87\xf9\xf8\x10\xed\xa1\x53\x56\x55\xa4\x10\x1c\x1d\x34\x44\xf3\xdd\x43\xf8\xae\xe6\xa4\xe6\x1d\x0f\xbe\x7b\x84\xf6\xd0\xf3\x0f\xa4\xe8\x40\x36\xf6\xbf\x7b\x8c\xf6\xd0\x3f\x48\x43\x67\xb4\xc0\x89\xaf\x9f\xa0\x3d\x74\x02\x68\x74\xbe\x50\x78\xc5\x45\x21\x10\x23\xd1\xaa\x90\x05\xfc\x59\xf0\x52\xda\x08\x31\x2b\xa0\x38\x1f\xbf\x20\x28\x66\xb0\xeb\x28\xcb\x11\x09\x1a\x20\x6c\x26\x77\x01\x48\x07\xf6\xc0\x51\xb2\x8a\xae\x69\xc4\xa1\x00\xdd\x21\x3b\x6d\x98\x83\x7b\xb5\x7c\xbb\x06\x59\x6c\xbd\x24\xb7\x9c\xfd\x12\x53\x50\xf4\x95\x1a\xe4\x6a\x32\x06\x4e\xc1\xba\xaa\x14\x74\xb1\xc0\x75\x87\xab\x6a\x8d\x0a\x79\xc9\x0b\x65\x10\x34\x32\xd0\xcf\x1a\xc2\x59\xd7\x14\x24\xbb\x0a\x22\x05\xf1\xf7\xa4\xf6\x19\x84\x3f\xe3\x46\x6c\xb0\xb6\x39\xac\x80\xb3\x20\x2c\x27\x67\x29\xda\xe2\xf2\x8a\xb4\x3c\x75\x46\x85\x60\x1d\x9d\xd2\x92\x14\x74\x81\x2b\x54\x77\x8b\x4b\xd2\x18\xf5\xee\x00\x8e\xe5\x21\xa2\x75\x09\xf4\x25\x94\x5e\xb4\x34\x9c\xcf\x4a\xf9\xaf\xde\x3e\x3f\x42\xa7\x72\xcb\xaa\x35\xa2\x82\x8d\xb4\xa8\xe3\xa4\xcc\x9f\x64\x89\xd9\x37\x62\x55\x31\x73\xf3\x97\x6e\x87\x14\xeb\xd7\x5b\x22\x57\x0d\xfb\xe2\x29\xc9\x48\x50\x82\xd4\xd6\x0c\x14\x81\xb3\x8e\x93\xc6\xd9\x61\xc5\x6d\x80\xe0\x18\xa2\x6d\x76\x7b\x04\xf0\x33\xf3\xb0\xbc\x97\x4e\x53\xbb\xf4\x1a\xb7\x73\x0e\x04\xcf\x5b\x06\x94\xac\xd5\x5b\x4d\x02\xf6\x96\xa9\x88\x14\x0e\x81\x6c\x9b\x8b\x96\x35\xf8\x8a\x08\x00\xe2\x6e\x33\x7f\x64\x1e\x7f\x0d\xd6\x23\xf9\xb4\xfd\xdd\x7b\x58\xdd\x24\x60\x21\x18\x05\xdd\x30\xac\xec\xd3\xae\xda\xda\xa3\xbb\x9e\xb2\xc5\x92\x71\xda\x12\x24\x8e\x21\x3a\x23\x33\x5a\x83\xba\xaf\xf5\xd9\x2f\x3c\xb5\x56\xdf\xcb\x98\xd6\xdc\xb5\xc4\xc9\x8d\xa2\x1c\xf1\x25\x29\x04\x7f\x73\x2c\x33\xb4\x06\xc5\xda\xcc\x5f\xa3\xd7\xb9\x0c\xb4\x9a\xed\x92\x51\x57\xd3\x5f\x3a\x71\x4b\xe9\x53\x54\x6b\xdb\x97\x7e\xea\x82\xb4\x68\x35\x27\xb5\xf9\x56\x4c\xa0\x90\xa2\xb5\x79\x50\x63\x8c\x96\x5a\x0e\x89\x87\x82\x23\xc8\x66\x00\xe3\xc8\xfb\xf6\x10\x1d\xa3\x42\xde\x02\xda\xd8\x67\x2f\x81\x63\xb8\x62\xe0\x12\xf0\xbe\x79\x84\x8e\x11\xd1\x57\x80\xf7\xcd\x63\x74\x8c\xae\x9d\x0b\xc0\xfb\xf2\x09\x3a\x56\x14\xed\x4d\x1e\x4e\x9f\xd5\xaf\xef\xb8\x5f\x4e\x38\xd1\x64\x1f\x6a\x41\x66\xb5\x03\x8f\x7f\x47\xd6\xfd\x8f\xaa\x53\xe1\x3e\xe7\x23\xf0\xd5\xd9\xab\x23\xf4\xba\x61\x6c\x26\x70\xf8\x9a\x71\x4e\x38\x17\x34\x31\x79\xcd\x5e\xef\xe8\xdd\xd3\x87\x6b\xd9\xd0\x6b\xdc\x12\xc1\xe4\x12\x1b\x01\x7c\xde\xe5\xee\xac\xae\x04\x77\xa6\x52\xd4\xd1\x17\x4d\xb5\x06\x09\x40\x9b\x11\x05\xfb\xa2\x20\x12\x81\x75\xca\xbf\xcc\x2d\x7c\xca\x15\x0b\x5d\x74\xbc\x45\xb8\x5a\xe1\x35\x17\x17\x02\xbe\x64\xca\xac\xa7\xa5\x90\x46\x5e\xaa\x0b\x71\xa7\x49\x31\xc3\x18\xdd\xc4\x05\x59\x14\x64\xd9\xa6\xc6\xd1\xfb\xd5\x3a\x97\xdc\x11\xfa\xab\x31\x5e\xed\xff\x03\x77\x55\x9b\x5a\xb7\x5d\xb1\x5d\xac\x58\xa2\x6b\x17\x56\x46\x69\xc1\xb2\xa4\x54\xf8\xa1\xd5\xd6\x3a\x17\xe0\xdf\xd9\x35\xe1\xda\x74\xed\xce\x44\x19\x00\x91\x34\x19\x23\x52\x83\x94\x87\x6b\xe7\xa2\x8c\x17\xe1\xd8\x71\x6e\xb3\x0e\x6d\xf3\x95\x66\x39\x30\xaa\x37\xe4\x9a\xb2\x8e\x07\xa3\x67\x56\xa0\x95\x98\xfe\x35\xec\x67\x16\x61\x74\xc1\xc1\x45\x0c\x2f\x40\x70\x4f\x71\x23\x01\x2b\x6d\x99\xb5\xac\x0b\x56\x24\x2e\x38\x69\x8f\x5f\xe1\xba\xed\x9d\xcd\x30\x46\x2f\xcc\x7d\x24\xaf\x50\x23\xe9\x00\x66\x28\x57\xb8\xc8\x8c\xf2\x46\xd9\xd5\x87\x46\xa9\x28\x07\x99\xca\x92\xb3\xa2\x30\xbd\x7a\xcf\xb2\x8e\x1c\x96\x6a\xdf\x10\x22\xbe\xd4\xe7\x8e\x5c\x9d\xd0\x91\xf3\x5d\x2a\xa1\x75\x21\xcf\x96\x58\xdc\xf9\x19\x48\x1e\xd2\x0a\xae\xcc\xfc\x35\x59\x65\x4e\x97\x65\x4b\x8e\x2e\x79\x2a\x6e\x7f\xd2\x68\x95\x32\x1e\x30\x2d\x38\xfa\xfb\xdb\x68\x9b\x84\x98\x89\xda\xec\xc4\x51\x4b\x4f\xa6\xcd\x98\x35\x7c\xa9\x43\x4f\x69\x05\x16\x24\x21\xaf\x96\xa4\x25\xcd\x82\xd6\x8e\x10\x2a\xa7\xaa\x69\x6d\xd6\x4a\x7a\x0a\xdd\x18\xe9\x69\xc0\xd5\x8d\x2b\xdf\x42\x65\xc7\x16\x5f\x4f\xcc\x5f\xf0\x89\xb9\x14\x77\xbd\xcf\x5d\x7b\xae\xf7\x45\xf6\x9a\xc9\x3d\xe6\x5c\x1b\xfe\x23\xf1\xb5\xe2\x7f\x9f\xe0\x3e\xae\xcf\x40\x51\xb2\x7e\x7a\x07\xfd\xea\xbd\xbd\x6c\x48\xf0\x89\x5c\xee\x7e\x45\xea\xab\x76\x8e\x8e\x8f\xd1\x57\x8f\x8f\xd0\xbd\x97\x52\x11\x46\xea\x63\xb8\x18\x2e\x09\x7a\xf4\x10\x5d\xae\x5b\xc2\xd1\xe4\xab\xc7\x68\x4e\x3e\x08\x55\x41\xc8\xc2\xa4\xe1\x3b\xf7\x22\xb0\xb1\xdb\x60\x9f\xf2\x7f\x08\x95\x13\xdc\x85\x67\x13\x5a\xee\x1c\xa1\x7b\x6f\xb5\x94\x72\x7e\x26\x07\x02\x6f\x12\x5c\x70\x52\x92\xe7\xc0\x5b\x2a\xb6\x22\x4d\x81\x39\x09\x06\x1e\x35\x2e\xe8\x6c\xef\x68\xf9\x93\x58\x61\x4d\x2b\x35\xec\xf9\x19\x2a\x70\x2d\xae\x49\x5c\x35\x04\x97\x6b\x44\x3e\x88\x63\xaf\xec\x0b\x52\xe5\x8f\x07\x10\x64\x80\x9e\x1d\x4b\x42\x98\x1c\xee\xa0\xfb\xf7\xe5\x67\x4f\xf5\x67\x4f\xf4\xc2\xe0\x63\x8d\xbe\xc3\x5d\xf4\x70\x17\x3d\xda\x45\x8f\x77\xc5\x7d\xf9\x24\x86\x1c\xd1\x91\xde\x98\x67\xe8\x40\x8c\x92\xfd\xfe\xe9\x31\x7a\x72\x78\xa0\xb1\x19\x3e\x65\x66\x50\x89\x3f\xda\x39\xae\xc5\xd3\xbd\x48\xf4\x48\xd5\x21\x8f\xc3\x87\x5f\x47\xa3\x7c\x47\xd6\x21\xa5\x90\x0f\xb8\x10\xe2\xc8\x57\x8f\x35\xc5\x1c\x3e\xfc\x7a\x98\x64\x2c\xf5\xbb\x43\xfe\xe5\xa1\x1a\xd2\x7e\x9d\x1b\xef\x2f\x5f\x99\xf1\xfe\xf2\x70\x78\xbc\xbb\x09\x5a\xb9\x22\x6d\x64\x3b\x3f\xad\x30\x5d\x90\x72\x82\xf5\xe9\x8e\x50\xbc\x93\xc5\xbd\xa2\x30\xa0\x6a\x4d\x66\x97\x42\x31\x2d\x24\xd0\x1b\xcc\xea\x3b\xb2\xd6\x33\x7a\x2f\x18\x85\xb7\x15\xf1\x4c\xbe\x93\x7e\xf0\xed\xcc\xe2\xc2\xec\x81\x37\x05\xbb\x35\x3b\xf1\x66\x6d\x36\xb8\x73\x35\x8a\x1f\x71\xa5\x02\xdf\xff\x0e\xf4\x7f\xa9\x2a\x7e\x47\xd6\x93\x68\xc6\x4b\xfd\x95\x3b\x9d\xfd\x92\x14\xac\x24\xff\x43\x3e\x4c\x76\x76\x63\x82\xa3\x57\x35\x6e\xbb\x86\x9c\x54\x57\xac\xa1\xed\x7c\x71\x84\x2e\xa2\xcf\xf6\xbf\xfd\xfe\xe2\xe7\x6f\xbf\xbf\x38\x7c\xf8\xf3\xa3\xaf\x0f\x3d\x20\x3b\xf1\x64\x6b\xd2\x6e\x32\x55\xff\xa4\x6d\x63\xb6\xcf\x4f\xcf\x2e\x4e\x7e\x7e\xfd\xf0\xc9\x57\x7d\x53\x35\x3a\x0a\x98\xde\xd6\x4a\xf8\x64\xd7\xb4\x24\x65\x52\x6f\x19\xa3\xb1\xc0\x2c\x49\x35\xdb\xa7\x25\x3a\x46\xb4\x8c\xbf\x00\x8e\x78\x6c\x2d\x38\xde\x97\xf1\xe9\x39\x8e\x4f\x54\xdf\x6b\x12\xf1\xde\xdf\xf1\xe3\x0e\x65\x1e\x3b\x94\x92\x58\x84\x2b\x38\xa0\x63\x74\x10\x3f\xe2\x88\x87\x4f\xf7\xd0\xaf\x1f\x7b\x9e\x30\x12\x19\x40\xf2\x1e\x4c\x1c\xb5\x0e\xdc\x75\xfa\x8c\x2d\xc1\x90\x31\xe5\xd2\x92\x31\x8d\x70\x42\x34\x8b\xda\x8d\xf1\xb5\xab\x8f\xd9\x11\x6a\x9b\x8e\xec\x6c\x69\xe4\xef\xc8\x3a\x35\xe8\x77\x64\xbd\xd5\x01\xed\xfe\xd8\xd1\xec\x67\xd1\x50\x31\xfe\x03\x89\x49\x6c\x53\xf8\x11\xe6\x77\x63\x6d\x20\x03\x48\xe9\x8c\x4f\xf7\x6c\xec\xc5\xbe\x34\xae\x3c\x5f\x2c\xdb\x35\xbc\x3b\xd9\xd9\x08\xa4\x51\xc3\x3e\x01\xd4\x2d\x4f\x55\x6b\x4f\x5b\x06\x1a\x2a\x08\xe2\x84\xec\x07\x67\x84\x2c\x68\x36\xe0\x42\xb1\x1c\x1d\x71\x61\x18\x4d\x22\xea\x22\x45\x13\xfb\x97\xb8\xc2\x75\xe1\x50\xaa\x73\x07\x95\x84\xb7\x0d\x5b\x4f\x42\x59\x5a\xb0\xfa\x99\x5e\xe0\x1b\x32\x43\xc7\x29\xda\x56\x46\xd8\xfd\x4b\xd6\x34\x6c\xf5\xf4\x7e\x80\x92\x67\x13\xa1\xf8\x3b\xe4\x6e\x20\xc2\xd7\x3b\x77\x87\xce\x4e\x8f\xf3\xe0\x9d\x41\xc3\x4f\xe9\xb9\x8d\x7b\xf7\x2e\xda\x8b\xe9\x5f\x63\xcc\x9b\x9e\x8b\x8d\xfd\x92\x80\x01\x55\xad\xef\xe9\x5e\x04\x62\xe7\x46\xef\x9a\x3d\xbb\xd9\xeb\xe6\xa8\xdd\xe6\xf5\x9b\x0e\xae\x0f\x4f\x7c\x11\xbf\x21\x6d\xd7\xd4\xe0\x62\x52\xb7\xac\x1b\xda\x39\xeb\xea\xd2\xbf\xf5\x84\x02\x6e\x9e\x10\xea\x4a\x70\x17\xed\xbf\x27\x6b\x9e\xd0\xf4\x94\x79\x42\x59\x97\x8f\xe5\x6b\x92\x34\x03\xfb\xc4\xc4\x00\xdb\x89\xa0\xf4\xae\xd7\x80\x8f\x0e\x99\xb6\x08\x4d\xb4\x6b\x3b\xff\xa8\x3e\x8f\xb7\x1c\x5b\xd1\xea\xe0\xc0\x3e\x4d\xdf\x76\x54\x4d\x24\xc3\xe3\x9a\x27\xb7\x34\xb2\x26\xb0\xe1\x91\xcd\x93\x5b\x5d\xb3\x60\x2a\x23\x17\x2d\x1e\x4d\x8f\x1d\x88\xff\x8a\xfd\x86\x14\x9e\xe2\xd4\xd3\xe9\x14\xfd\xd0\xd2\x8a\xb6\x6b\xf4\x42\x45\xa9\x4a\x9b\x56\x31\x27\xc5\x7b\xae\x3c\x2f\x0f\x38\x62\xd7\xa4\x11\x87\xcd\x9a\x91\xd5\x5c\xa4\x1d\x96\xb6\x1c\xc9\x53\x41\x4a\x65\x05\x30\x83\x84\xce\xb5\x59\x57\x03\xd4\x17\x5d\x55\x19\x02\xfe\x56\x42\x9b\xec\x68\x4b\x57\x70\x16\xe9\x0c\x4d\xfa\x2e\x22\xf4\x65\x9e\xe5\xee\xa0\xa7\x03\x97\x67\x7c\xee\x1b\xc9\x5f\xc4\x9d\xea\xa1\x1a\x91\x8a\xf7\x3c\x7f\xd3\x29\xfa\x37\x46\x3c\xc3\x60\xbf\x33\x5b\x29\x77\x00\x61\xd4\x90\x19\x69\x88\x80\xdb\x32\xf1\x1f\xab\x49\xcc\x26\xa5\x8f\xde\xb8\xd6\xac\xfd\xa6\x77\xe7\xd2\xbc\xef\xe7\x64\xc4\xd9\x11\xba\x1f\x3c\x38\xca\xba\x16\x10\xee\x3b\x07\xf4\x4f\xe8\xae\x34\x47\x45\x2f\x89\x9f\x7b\x17\xd2\x69\x48\x9c\xa0\x12\x74\x7e\x86\x4a\x46\xa4\x6b\x7a\xd0\x58\xe5\x6b\x23\x6a\x53\x27\xf7\x7b\x67\x84\x79\xb4\xcc\x6f\x1c\x31\x24\xd8\xa3\x93\xb2\x44\xd8\x99\x9e\x72\x4e\x38\x11\xdb\xbd\xe8\xe7\xa4\xb5\xa1\xe5\xc9\x30\x28\xf3\xe1\x11\xfa\x6b\x30\xad\x50\x20\xeb\x5d\xd6\xd3\xbd\xbb\x16\xd6\x1d\x1f\x41\x8e\xa3\xfe\xa2\x6d\xba\x02\x9c\x5b\x52\xa6\x15\xbf\x5d\x91\x16\x35\x04\x97\x7b\x60\x93\x94\xa9\x09\x97\xac\x6b\x15\xb5\x19\x07\x2e\x97\xef\x9a\x5c\x88\x5f\xfb\x9c\xad\xe1\x57\xae\x2b\x33\xfc\x6e\x94\x13\x33\x78\x32\xe3\xbf\x34\xd6\x94\x81\x47\x7c\x4f\x9d\xb2\xd6\xa7\x1f\x8a\x22\x9a\x33\xcf\x39\xce\xa6\x11\xcf\x0d\x82\xb3\x7e\x9c\x94\x2f\x21\xf2\xde\xa0\xf3\xb3\x1b\x39\x70\xde\x49\x42\xfc\x29\xff\x50\xec\x68\xc9\x4d\x38\xeb\x06\x89\xe8\x64\x84\xc3\xc2\x0f\x22\x4c\x29\x27\xb5\x8d\x23\x48\x8a\xff\x92\xf7\xd9\x68\x03\x05\x32\xa5\x43\x83\x35\xc7\xc2\xdb\xef\x31\xec\x38\x4f\x6d\x60\xe3\xb1\x2f\xdd\xc4\xdc\x93\x7a\x7b\xd8\xf2\xe3\xbc\xd6\x67\x04\xf2\xd4\x7e\xef\xad\x41\x85\x28\x69\x7f\x48\x80\x88\x2e\xd7\x61\x4b\x41\x02\x4a\x24\x58\x0d\x5a\x06\xb2\x40\x86\x67\x62\x0c\x01\x09\x18\xa1\x70\xd9\x6b\x35\xf3\xde\x0f\x34\x98\x91\xc6\xb4\x14\x00\xf3\xfd\x46\x46\x87\xc4\x52\x7a\x65\x97\xa4\x95\xd0\x3d\x27\xee\x57\xb9\x3b\xf4\x8c\x34\xf4\x9a\x94\x32\x9e\xd7\x0f\x9a\x10\x77\x24\x68\xe9\x86\x42\x7e\xa4\xed\xdc\x86\x65\x66\x05\xcc\x1b\x9d\x7f\x75\xd4\x7d\x71\xfc\x1a\x37\x56\x4c\xbe\xe8\x16\x5a\x6b\x8c\xa7\xc5\xba\xd6\x9d\xd9\x46\x0a\xeb\x08\x5d\xd5\x41\xeb\xc6\x1a\x6b\xb0\x00\xef\xcf\x2f\x1d\x0d\xc5\x80\x48\x4b\xf3\xc3\xc2\x95\x0b\x39\xb5\xdf\xf9\x4d\x0d\xb0\xf7\xc9\xf7\x55\x4d\xd8\xe5\x9d\x59\x2d\x66\x70\x25\x92\x07\xfe\x2e\xb4\x29\xd9\x95\x47\x98\x96\x2b\xff\x91\x68\xd0\x9b\xa8\xf9\xfd\xcb\x01\x63\xc4\x30\xc9\x19\x58\x83\xbb\x24\x4d\x7d\xe7\xb5\x9a\x6b\x6e\x7f\x62\xe5\x4f\x5d\x7e\x5f\xa6\x2f\xb4\x2f\xd3\x37\x54\xe2\xe3\xf0\x61\x7d\x51\xe4\xe5\xf1\x37\x36\x2d\xd8\x38\x9e\xa4\x04\xce\x39\x2b\x28\x16\xe3\xaf\x68\x3b\x77\x95\x10\xf3\xb2\x4a\x2c\x56\x61\x95\x94\x43\x44\x2b\x29\xb5\xc6\xe4\xc4\x59\x32\x27\x6d\x98\x72\x74\x49\x9c\x80\x39\x08\x7d\x31\x42\xbe\x01\x97\x57\x05\xbd\x80\x29\xca\x1d\x9a\xf3\x23\xd7\xfa\xa3\x68\x6e\x14\x6b\x96\x1d\xd5\x89\x63\x4f\x07\xa6\xc7\xa3\x8e\x0c\xd3\xcb\x0e\x99\x8c\x1c\xc2\x75\x29\x10\x5c\xb1\x62\xd3\xe9\x6c\x1e\xab\x16\xcd\x08\x5c\xce\x3a\xaf\x5a\xa6\x97\xe3\xda\x04\xaa\x0d\xea\x19\x1b\x86\xc8\xd9\xb1\xbd\x18\xb9\x11\x43\x8e\x0d\x84\x3b\xc9\xc4\x6f\x91\x11\x3b\xe1\x0e\x7d\x93\x80\x2d\xd0\x41\x92\x1a\x78\xc2\xdf\xb6\x35\x4f\xd1\xbf\x8d\xf3\xed\x93\xf8\xc9\x3e\x91\x47\x2f\xe3\x7c\xb3\x3c\x39\x74\x85\xa1\x68\xe3\x3d\x23\x6d\x40\x00\x43\x0f\x26\x6e\xea\xc4\x53\x66\x9b\x86\x1e\x8c\xee\x94\x5e\x80\xde\xdd\xb3\x89\x21\xd9\x9c\xb0\xad\x58\x93\x6d\x52\x89\xb8\xac\x07\xa4\xd0\xff\xb3\x29\x6f\x64\x53\x46\x69\x0b\x1f\xec\x26\xae\xd1\x25\x51\x33\x53\xb1\xe4\x73\xb6\x32\xa9\x5e\x9e\xad\xcf\x97\x2f\x1c\x83\x9f\x91\x04\x7a\xac\x7e\x19\xcb\x90\x6f\xc4\xb9\xa5\x81\x6d\x94\xb5\x6e\xac\x15\x2e\x32\xaf\xf5\x81\x1b\x61\xac\x1b\x79\xa3\x8c\xc9\xfc\xde\xa6\xa9\x2b\x04\x54\x06\x52\xdd\x26\x22\x7f\x08\xcf\x5a\xce\x9c\x47\x12\xd6\x2c\x98\x8a\x1a\x29\xf5\x40\x6c\x40\x0a\x66\xb9\xa9\x15\xc9\xd8\xb2\xd2\x70\xc6\x19\xb4\x5c\x53\x54\x1a\xce\x4d\xec\x51\x7d\x90\x36\x32\x4a\xa5\x01\x0d\x5b\xa6\x7a\x2e\xc5\x1c\xc8\x2c\x27\xfa\x93\xe8\x61\x9e\xda\x43\xeb\x96\x34\x33\xac\xd2\xd4\xdc\x4c\xbe\x61\x7f\x87\xa7\xd7\x29\x78\x46\x64\xf5\xb3\x1f\xe1\x42\x64\x95\x4e\x44\xb4\x37\x7f\x94\x29\x27\xa7\x70\x94\x9a\x8e\x7f\x9f\x9b\xbc\x39\xa3\x77\xf5\x3a\x01\x52\x89\x71\xc0\xa2\xec\x17\x49\xf1\x37\x0c\x7c\x0c\x13\x3d\x48\x55\x71\xb4\x9a\x93\x76\x4e\x1a\x3f\x43\xcf\xe4\x70\x91\x8a\x42\x44\x3f\xcc\xf4\x14\xd7\x25\x2d\x71\x4b\xd4\x02\xdb\x20\xab\x6e\x35\xa7\xc5\x1c\x2d\x08\xd6\xf2\x3f\x05\x15\x16\x43\xb6\x08\xc0\x5e\xcd\x99\x03\x5c\xa5\xb5\x7a\x69\xf0\x52\x85\x56\x4a\x44\x20\x16\x89\x31\x84\xde\x22\x14\x09\x52\xb3\xee\x6a\xde\xab\xc2\xc2\x47\x42\xe2\xf1\x8c\xff\x4a\xcc\x11\x08\x92\x22\x0e\xe5\xcf\xd5\x22\x5f\xb0\x26\xb1\xc4\xc9\xcf\x0e\xe3\x3d\x42\xf7\x13\x3c\xdd\x72\xf3\x9d\x23\xf4\x2d\x63\x55\xe2\x5e\x30\xab\xac\xdb\xef\x29\x6f\xd3\x97\xc3\x15\x69\x5f\xdb\xe7\x04\x58\xf1\xec\x24\x88\xbd\xa2\xb3\x10\xda\x3b\xcf\x21\x02\xa9\x05\x6d\xd3\xf5\x88\x3e\x33\x5c\xf1\x11\x06\x9d\x01\x0f\x83\x18\xe7\x60\xff\x00\xdd\xbf\x1f\x8d\x93\xcc\xb8\xf8\x1b\xe8\x07\xcd\xdb\x39\xae\x55\x19\x86\x17\xac\x79\xc3\x2a\x32\xa9\xbb\x85\x64\x45\x47\x23\x5c\x12\x3a\xb6\x2e\xf0\xef\x24\x6d\x83\x90\x0e\x2b\xeb\x52\x68\x0a\x7f\xc0\x1d\xe7\x24\x52\x71\xf4\x2a\x1b\x96\xac\x10\xab\x49\xc4\x2b\x65\x58\x68\x14\x8b\x2f\x48\x23\x2e\x59\x33\xca\x15\x9f\xc0\x8f\xe2\x2d\xcf\x6b\xf1\x21\xf0\xe2\x7b\xa7\x32\x5a\x5d\x0e\x9f\x9a\x35\x9d\x25\x4b\xa8\x51\x5e\x3f\x00\x77\xfc\xb2\x61\x57\xe2\xc1\x54\x56\xc5\x2a\x97\xd8\x11\x7e\xb1\xf5\x8c\x8e\x5b\xe4\x3a\xac\xb6\x9c\xe4\xf0\x31\x0a\x80\xfb\x56\xc6\x7a\x38\xd4\xa2\xea\x6d\x98\xbc\x48\x1e\x14\x47\xdc\xa2\x49\xf9\xce\x00\x8d\xdc\x3c\x14\xbb\xc7\xad\xe9\x44\x2e\x03\x5f\x08\xa6\xd1\xf7\x2a\x44\xb8\xeb\x3d\xf9\x94\x81\xe4\xab\x5c\x04\xb9\x37\xa6\x0a\xcc\x1d\x28\x37\x65\x42\x74\xdd\xc3\xeb\x90\x56\x8e\x8f\x9c\x94\x25\x70\x08\x6d\xe2\x92\x01\x26\x7c\xcd\x5b\xb2\xb0\xc9\xbf\x4e\xd1\x8d\x8c\x39\x15\xc2\x4d\xc4\xb3\x2f\x89\x34\x8b\x08\x46\xd2\x2a\xf6\x97\x4a\xa2\xfb\x04\x2c\x45\xce\xf5\x66\xec\xe3\x8f\x7c\x66\x80\x02\x72\x85\xb7\xbc\x5b\xd2\xd6\x35\x92\xa8\xb7\x91\xd7\xe1\xea\xc4\xbe\xcb\xed\xf4\xf6\x5e\xfe\x56\x24\x8d\x4b\x3d\x97\x58\x18\xbf\x28\xbf\x8f\x47\x7d\x55\x57\x6b\xc1\xe7\xc5\xd0\x0b\x84\x85\x1c\x55\x68\xe9\x44\x49\x6a\x33\x99\xc8\x5c\x32\x28\x2b\x24\x79\x5d\x08\x46\x16\xc4\x74\xe5\x29\x27\x3f\x3a\xc8\xaa\x0f\xa5\x0c\x89\xe2\x21\xf9\xc8\xae\x35\xa4\xd3\x0c\x55\xe2\xb2\x7c\xcb\x3c\x48\x20\xe5\x64\x76\x49\x5c\xed\x6f\xd9\x49\x59\xf6\x5c\xf8\x09\xaa\x4c\x9d\x06\x71\xc5\xac\x20\x75\xfd\x35\xa9\x4b\xb7\xf0\x98\x61\x09\x9e\x96\x5f\xd3\x2a\xcb\x0c\x2e\x54\xf9\xd9\xf7\x5e\x99\x1b\xe5\xcf\x49\x66\xc4\xa7\x79\x80\x5f\xfb\x6b\x12\xd4\xda\xfa\x43\x1f\xfc\x2d\x1e\x5b\x59\xc0\x66\x81\x69\x2d\xd8\xb6\x74\x26\x1c\xab\x03\x1a\x9d\x8c\x73\x98\xbc\x20\x60\xf1\x7f\xbd\xf6\x76\x01\xe8\x5d\xb9\x57\x7a\xf2\xc5\x3d\x3f\xcf\x6e\x38\x42\x21\x18\x41\x85\xda\x39\xe3\x04\xcd\x68\x03\x02\xce\x8c\x35\x16\x63\x82\x17\x18\x67\x8a\x1c\x3f\x3c\x3d\xe1\x7a\x9e\x8e\x0a\xea\x48\xec\xef\x98\xb7\xc6\xc1\xde\x0b\x27\x95\xd0\x0f\xc2\x4d\xc8\x58\x55\x13\x0b\x7c\x76\xc3\xf5\xc5\x63\x86\x9f\xec\x6d\x1c\x0e\x33\x1e\x6f\xd1\xfa\x22\x7a\x93\xbc\x5b\x85\xb6\xaa\x89\xe9\x32\x00\xe6\x82\x53\x34\xd8\x65\xce\x7c\x72\x3e\xf9\x4b\x21\x1f\x0c\x15\x05\xb5\x07\xb8\xda\xd9\xc2\x85\x18\x82\xfc\xbf\xbb\xe9\x4f\x77\x37\x19\xfb\x64\xdf\xdd\xa4\x1f\xfa\xcf\xbe\x9b\x6e\x73\x6c\xf3\x69\x30\x78\x6b\xa7\x15\xff\xdf\x21\xfd\x77\x3c\xa4\xea\x32\xd2\x17\x89\x55\x2c\xc0\x0d\x08\x65\xa3\xe5\xed\x62\x0e\x82\x57\x50\x69\x40\xbf\x54\xc2\x8f\x2d\xb1\xfb\xc9\x0f\xaf\x96\xb0\xfe\x68\xc7\xd7\x08\x8c\x1a\x27\x88\x72\x74\x25\x2d\x91\xd2\x5c\xd5\x9a\xba\x66\xaa\x5e\xa3\x09\x63\x09\x01\xb9\xae\x5a\xdb\x23\xa1\x21\xd7\xa4\xf1\xaf\x7a\xcc\x39\x69\x5a\x14\x57\x5b\x18\xb2\xa8\x7e\x39\xfc\x46\xbf\x73\x4d\xfc\x3c\xd3\xa2\x33\xfa\x72\x8c\x10\x14\x57\x77\x58\x10\xce\xa1\x14\xef\xbd\x97\xac\xd5\xb6\x76\x4b\xa1\x6a\xe9\x77\xfd\x2d\x8c\xf1\xfe\xd2\xef\xb5\xb0\x9a\x33\xc9\x4d\x9c\x40\x47\xc5\x5d\xe4\xbf\x6a\x20\x49\xdd\xb4\x41\x6c\x55\x67\x5c\x01\x7a\x3f\x18\x5a\x10\xd2\xba\x2c\x68\x17\x3c\x08\xe0\x27\xaf\xd7\xd2\xdc\x40\x2f\x3b\x59\x2f\x11\x8e\x53\x22\x71\x6f\xec\x8e\x39\x31\xe1\xb6\x26\xcc\x01\xfa\xed\xb7\x2d\x9a\xbf\x33\xee\x85\xf3\x7a\xc6\xd2\x0c\x6e\x67\x38\xfe\x19\xed\x29\x7a\xc8\x59\xce\xfb\x28\x20\x38\xde\x97\xa4\x52\x96\x1e\x5d\x8a\x8f\xba\xea\x98\x45\xd1\x10\x71\xfc\x4d\xed\x9b\xa6\x7c\xc5\xd3\x42\xa9\xc5\xba\x8b\xd2\x96\x16\xc1\x29\x82\xcc\xfa\x71\x79\x0d\x03\x4c\x42\x9c\xf2\x82\x2d\x54\xe0\x8c\xd3\x2e\xc5\x54\x93\xf3\xbf\x70\xce\x45\x19\x5e\x83\xe1\xfc\xec\xf9\xfc\xf5\x4e\x84\xf9\xe9\xd4\x0e\xe1\x4c\xc8\xa8\x99\xe1\xb8\x9c\x42\x3a\xa2\x69\x7e\x22\x36\x0b\xf4\x5f\x75\x59\xaf\x49\xac\xe5\xe5\xd5\x8b\x41\x89\xa6\x27\x89\x3a\x2d\xd2\x20\x5f\xac\x89\x0a\xb3\x9b\x9b\xb3\x57\x9e\xc9\xc6\xf2\x6c\x67\xff\xff\x0c\x88\xb7\xf5\x08\x12\x3b\x30\x9d\x6a\x2f\x92\x26\x70\x1d\x61\x04\x27\xad\x22\xb3\x96\x5d\x93\x46\xd3\x25\x0d\x42\x35\x9d\xfb\xee\x13\x9a\x27\xbe\x44\x6a\x49\x86\x61\x39\x35\x16\x46\x49\x27\x37\x12\xd0\xb6\x41\xae\x99\x62\x10\x06\xda\xa8\x96\x26\x11\xec\x11\x48\xeb\x95\x61\x41\xcc\x5c\x68\x21\x1d\x64\xfe\x3e\x3d\x60\x25\xb8\x38\xab\x89\x36\x76\x5d\x76\xa6\x68\x7d\xcd\x56\x21\x57\xbb\xfb\x89\xa4\x7b\x29\xfc\xbe\x68\xd8\x22\x2f\xe2\x07\x55\x56\xfa\xe5\x7a\x84\xd0\x80\x10\xce\xbd\xc0\x70\x5b\xfa\xa2\xf6\x05\x18\x37\x76\x3a\xe8\x06\xe6\x07\x29\x70\xb4\x22\x55\x05\xb8\x56\xf1\x7b\x3d\xaf\x42\x79\x54\x33\x26\x6d\x72\x65\x6b\xc1\x11\x2d\xe7\x78\x52\x55\x51\xe0\xeb\x9f\x58\x84\xa7\xb3\x11\x0c\x1d\x3d\x83\x58\x84\xc4\x8d\xba\xd1\x71\x1e\x1e\x28\xc9\x5d\xa7\x1a\x69\x5b\x97\x1f\x34\xfc\x7f\xd3\xbb\x69\x04\x3e\x7b\x59\x58\x6a\xef\x03\x9d\x29\xbb\xf1\xd3\x3f\xde\xad\x17\x44\x34\x7e\xee\x4b\xed\xf7\xb9\x86\x3e\x31\x93\x0f\x78\xfa\x8f\xe6\xa0\x38\x47\x03\x1a\x16\x0c\xf8\xe3\x34\xed\xf6\xbb\xe4\xd2\x2e\xfa\xad\x26\x16\xc6\x26\xc1\xa1\x0e\x41\x9b\x98\x06\x55\x6c\xd7\xd3\x84\x53\x25\xef\x65\xd0\x90\x36\xc5\x79\x33\x60\x67\xd6\x03\xf5\x9b\x9a\x7f\x17\x9c\xf7\x77\x4c\xda\x12\xc6\x07\x0d\xc4\x0e\xc6\x91\x1f\xb8\xaa\x82\x4b\x6d\x18\x6c\xcb\xd0\x2f\x1d\x69\xd6\x5e\xdb\x87\x74\xce\x80\x78\xdf\xec\x91\xaa\x83\xa2\xc2\x35\x6d\x66\xe2\x1d\xd4\x1f\x72\x6b\x4c\x0c\xbd\x51\xb7\xe3\xf3\x0d\x52\x41\xb9\xcc\xef\xa2\xea\xa4\x93\xc1\x3c\x75\x03\x26\xda\x98\x55\xb4\x0c\x2d\x49\x23\x10\x60\x05\x18\x90\x5f\x78\xbc\x1e\x6f\x15\x47\x99\x45\xdd\x62\x55\xe6\x7b\x13\xae\xab\x8b\xc9\xd4\xbd\x35\x33\xfa\xeb\x96\xe6\xc2\xf4\xa3\x64\x7e\xd5\x87\x35\x8e\x59\xca\xc7\x1b\x3b\x49\x3f\x4e\x78\x92\xbc\xf8\x3f\x53\x68\x92\xe9\x1f\xbb\xad\xe8\xa4\x4b\x3f\x3a\xc9\xeb\x9f\x45\x4c\x99\x26\xd3\x98\xea\x8a\x84\xa4\x16\x64\x4a\xa1\x5b\x31\x9b\x9e\x7c\x8f\xf1\x99\x1e\x3d\x6c\x6b\xb0\xfd\xa0\x33\x8b\x40\x70\x88\x2e\x7e\xb1\xef\xf9\xb8\x28\xc7\x2f\x1e\x93\x58\x2f\xf6\xf2\xe5\xf6\x42\x51\x53\xfc\x3b\x1c\x16\x39\x24\x22\xf5\xad\x36\x7b\xa7\x99\xf3\x33\x20\x47\x6c\x76\xa8\x3e\x77\xbc\xcf\x76\x4f\xd3\x1f\x92\xec\xff\x43\x82\x87\xe2\xc2\x89\x23\x62\x6b\x46\xbc\x34\x0a\xf2\xa7\x8e\x1c\xba\xd1\xe2\xc6\x04\x0e\x0d\x03\xbe\x19\xce\x6e\x18\x36\xd4\xb7\xed\xe3\xb9\xe2\xf8\x3a\x9f\x63\xa2\x83\xb6\x79\x63\x24\xe5\xdf\xdf\x9d\x63\xeb\xfe\x3c\x37\x61\xd8\x9f\x3b\x08\xe6\x3f\x80\x61\xdf\x9c\xd0\x6f\x14\x4f\xf3\xa7\xa1\xef\x37\xd6\x88\xa5\xaf\x24\xb7\x32\x0c\xd0\xfc\xb8\xf4\x83\xcf\x1f\x1e\xa2\x0d\x70\x9d\xc9\x06\xfd\xf3\xd2\xb7\x6a\x6a\x65\x45\x60\xdb\x4c\x28\x17\x4b\xe1\xbd\x9f\x8d\x45\xe8\x2f\xd0\x94\x08\x1e\x19\xac\x6b\x1d\xbd\xe1\xc6\x8e\x0c\x5f\x84\x9f\x2c\x74\xe4\x53\x59\xd3\xe9\x6c\x18\x27\xbf\xbf\x7f\x3e\x7b\xbf\xdf\xa2\xc4\xb9\x61\x90\xe1\x60\x29\x1e\x99\xf6\x93\xdc\x82\x45\x66\xfd\xf7\xd3\xed\x85\x82\xa0\x6c\x38\xc0\xf0\x31\x88\x00\xa5\xc2\x36\x94\x9f\x21\x7c\xf4\xd3\xee\x98\xeb\xd6\x0f\x47\xfd\xf8\x79\x7d\x1e\xdb\x52\x26\x3e\xb9\x9f\xbf\xff\x76\xfd\x4c\x27\x60\x28\x24\x20\x18\x70\xc8\x21\x33\x6e\xe8\x61\xec\xe7\x4a\x47\xfe\xa9\xbc\x28\x9f\xcd\xc8\xb6\xa1\x63\xe6\x06\x9c\xd3\x3a\x0f\xc6\x6b\x7d\x7f\x6a\x6f\xcd\x67\xdb\xdb\x8d\x1c\x40\x5b\xdd\xd9\x5b\x78\x85\xce\xa1\xcb\x32\xb1\x91\x27\x46\xf7\x6d\x08\x7e\x5f\xb2\x55\xad\xfa\x13\xa8\xaf\xc5\x32\x64\x5b\xcb\xa8\x81\x81\xe9\x14\xee\xb7\xe9\x77\xa2\x5b\xda\x9e\xce\xff\x70\x95\x2c\x68\xad\x8b\x73\xa8\x79\x18\x27\x8c\x2a\x59\xf5\x5c\xc0\x96\xeb\xe5\x17\xdd\x62\x81\x9b\x75\xc2\x91\x04\x83\xa8\xa7\xb2\x05\x9e\xcc\x0a\x8f\xd0\x3b\xf5\xec\xb7\xfa\xa3\x9f\x02\x5f\x4c\x0a\xe0\x6e\x3f\x84\x4c\x89\x41\x0b\x07\x1d\x7b\xf3\x8c\x1f\x36\xe0\xd1\xb1\x1d\x2a\xbf\x95\x67\xa4\xc5\xb4\xe2\xe9\x5d\x94\x7b\x54\x23\x5a\x97\xf4\x9a\x96\x1d\xae\x54\x7c\x57\x5d\x42\xd1\x93\x20\x88\xc8\xc1\x78\xb8\xb0\x04\xba\x13\xce\x39\x14\x35\x28\x07\xfa\xef\xdf\x91\xd2\x3f\x4a\xfc\x08\x99\x26\xc4\xf2\x8d\x8f\x1b\x95\x92\x1f\x57\xa4\xca\x99\x58\xc2\x4e\xe7\x57\xda\xb5\xcf\xfd\x9a\xbd\x09\x2f\x0a\x5c\x11\x6f\x13\xd8\x4c\x9c\x0e\x5a\x5f\x55\xae\x92\x77\xb9\x16\x9f\x16\xb8\x12\xda\xec\x0c\x17\x29\xa3\x92\xf8\x9a\x04\x0c\x86\xa7\xdb\x4d\x28\x48\x2f\x00\x50\x4e\x31\xa7\x33\xd9\xb2\x01\x00\xe9\xb2\xc3\xe1\xea\xfc\xf6\x13\x69\xf9\x75\xc4\x8b\xc7\x7a\x98\x2f\xfc\xb9\x65\xe5\x09\xfd\x5b\x1a\x0b\xaf\x94\xe1\x4d\x23\x61\xd4\x7a\x13\x1b\x1c\x7d\x94\x9b\xde\xa8\x6d\x75\xc3\xf5\x1a\x9e\x69\xdf\xe2\xad\xe3\xa4\xaa\x36\x5f\xc2\x18\x0c\x78\x7f\xc6\x35\xcc\x69\x19\x17\x8e\x56\x90\x72\x3d\xb7\xec\xd0\xfd\x24\x28\x6e\xae\xf1\x93\xc9\x1f\x1c\xd2\xba\xcc\xcb\xa4\xcc\xfa\x97\x8b\x3d\x40\xa0\xf6\xa9\x96\x18\x31\xae\x9d\xfe\x2c\x72\xd2\xe9\x63\xd3\xf8\x2c\xa9\xbf\x33\x4b\x2f\x9d\xf3\xbe\x4b\xd6\xc4\x5c\x08\x9d\x0a\xba\xb1\x14\xac\x6e\x31\xad\xb9\xb2\x28\x43\xc2\x89\x51\x5d\x97\x58\x25\x08\x89\xb7\x99\xb6\x6d\x5c\x75\x15\x6e\x10\xee\x5a\xb6\x00\x13\xde\x4c\x15\xf8\x14\x0c\x44\x3d\x24\x2b\x59\x2d\x1b\x56\xe8\xfe\x13\xaa\x65\x3a\x57\x1e\x2c\x28\x67\x65\xbb\x93\xff\x53\x88\x51\x70\xa7\xfe\xd3\xd4\xda\x40\xed\xbc\x01\x33\x0c\x46\x05\x5e\xe2\x4b\xa8\x26\x6a\x6e\x85\x44\x70\x07\xbc\xff\xca\x2e\xe3\xd7\xd4\x6e\xc0\x43\x20\x1c\xbd\xc6\x6b\xd6\xb5\xb2\x18\x92\xfc\xdd\x60\x3f\xf5\xe2\x45\xc5\xda\xef\xe9\x82\xb6\x7c\xc2\xcd\xaf\xea\x66\xf8\x5a\x6e\xe4\xe1\x57\x1f\x93\xaf\x0a\x51\x50\x76\x30\x88\xca\x33\xae\xbc\x0e\x25\x89\xb7\x5b\xdc\xe8\x8e\xc1\x27\xd2\xd4\x38\x89\x9f\x22\x75\x39\xf8\xcc\x12\xaf\xf5\xa9\xf9\x59\x93\x8a\x92\x5c\x8e\x52\xe2\x4c\x0c\xa1\xc0\x55\xd1\x55\xc6\xb7\x00\xf5\xe9\x13\x2f\x46\xef\x2d\xd8\xb5\x8a\xde\x53\xd3\x92\x84\x69\xc8\xe2\xa4\x5c\xd0\xda\x6e\xa8\x72\x69\xca\x33\xa8\xb6\xdd\xe9\x27\x54\x93\x95\xe2\x73\x2a\xca\x86\xef\xaa\xc4\x43\x44\x6b\xde\xcd\x66\xb4\xa0\xd2\xdc\xa2\x14\x3e\x10\x15\xad\x18\x18\xa5\x23\x06\x96\xdc\x5d\x90\x45\x96\x78\x6d\x18\x6c\xcb\xb4\xb8\xe9\xbd\x8b\x6b\x47\xc2\xf4\x48\x12\x16\x74\x94\xa0\xc7\x98\xcf\xc8\xe2\x5d\x9c\x80\x0c\xaa\x53\x93\xf4\x8c\x1a\xf2\x4b\x47\x1b\xb2\x20\x75\x3b\x2c\xfd\xa6\x5c\x4a\xac\xb1\xe9\x4e\x30\x7d\x5a\x97\xe4\x03\x3a\xd8\x45\x0c\xaa\xe7\x01\x9c\x07\xf2\x53\x01\xb0\x21\x2a\x2a\x09\x5a\xd1\xa8\xe6\xf1\x29\x8a\x56\x89\x60\x17\x32\xdd\xda\xce\x52\x9e\x26\xf7\x13\xe7\x84\x48\xd1\x69\x9c\x91\x3e\x80\x02\x57\x83\xdb\x63\x3f\xd3\xf0\xeb\x2d\xf8\xc8\x75\x69\x2f\x4e\x3f\x20\x52\xb7\x0d\x25\x12\x7d\x2e\x7e\x89\x8f\xdd\x09\xab\x89\xdf\xdf\x40\xe2\xf7\x09\x7c\x08\x78\xda\xe9\x6b\x0d\x96\x50\x03\x17\x31\x8e\x4a\x59\x78\xca\x5d\x59\xac\xc8\xbd\x24\x2b\x05\x42\x61\x99\x4f\x6a\xb2\xd2\xbf\x1f\x85\x00\x06\xea\xc7\xb9\xda\xce\x8a\x90\xf7\xd5\x5a\xd0\x36\xeb\x5a\x5b\x3a\xee\x1a\x57\x5d\xf2\xe6\x1a\xc5\x2b\x63\xd1\xce\x3c\x83\xee\x26\xf5\x63\x12\x80\x4d\x6c\xbf\x46\xc4\x8f\x30\x63\x35\xba\x33\xb6\xf9\xb5\xaf\xa3\xc8\x98\xa1\x8f\x2d\xa8\x5e\x79\x40\x62\xca\x5e\xfa\x45\xd7\xa2\x25\x69\x0a\x52\xb7\xf8\x4a\xf1\x2c\x79\x2a\x65\xc8\x85\x97\xb2\x19\xdd\xcc\x0e\x8e\x4f\xbb\xf6\xb5\x81\x23\x11\xec\x7d\xb4\x99\x6f\x2b\x7c\x5b\x19\x7f\x65\x7d\x3c\xff\x9b\xa7\xe8\x70\xff\x20\x73\x8c\x4e\xfd\xd5\xe9\xf3\x74\x49\xda\x15\x21\x35\x3a\x80\xa3\x71\x78\xb7\xef\x40\x48\x3a\xf0\x87\x4c\x93\x43\x6d\xc3\x17\x69\x7d\x25\xef\x92\xd3\x5e\xaa\x30\xdc\xcd\x47\x5e\x8c\xba\xf0\x93\x0d\xa9\x25\x37\xb3\xe3\x08\x70\x2f\xed\x08\xca\xa9\x40\x5c\x30\x2e\x7c\x93\xb0\xed\xa7\x34\x71\xad\x1e\x67\xaa\xaf\x91\x36\x08\x3b\x5f\xd0\x76\xe2\x34\xbe\x83\xda\x70\xf0\xa9\x91\x28\x46\x91\x0d\xb0\xfb\x67\xc7\x12\xc8\xe4\x70\x47\x10\x0c\x7c\xf6\x54\x7f\xf6\x44\x57\x2e\x84\x8f\x35\x41\x1c\xee\xa2\x87\xbb\xe8\xd1\x2e\x7a\xbc\x8b\x58\x83\x9e\x0c\xfa\x3c\x8b\x68\xfa\xbc\xbf\xeb\x73\xc5\x70\xf9\xd4\x95\xb1\xbe\x7a\xfc\x31\x6a\xf9\x4c\x4b\x78\x37\xc6\x0d\x0f\x4a\x90\x26\x86\x7f\xa7\xdb\x3b\x6b\xcc\x0d\x11\x85\x9e\x19\xc7\xd7\x24\x9e\x59\x62\x84\x5d\xd4\xb2\x71\x93\xed\xa1\x22\x24\x64\x4e\x34\x51\x9d\x1f\x15\x35\x09\x62\x21\xb8\x98\xab\xf8\x50\xb7\x5e\xac\x12\xb7\xe5\x6b\xf0\xb8\x21\x41\x8f\xfe\x9c\x8a\xac\x8a\x02\x65\x25\xdb\x39\x41\x57\xf4\x9a\xd4\x72\xbf\x55\x89\x5c\xbc\x16\x9b\x8e\xcb\x52\xfa\x5c\x5a\x5b\xc8\x72\xdf\x1b\xf8\x5c\xe9\x16\xcb\x86\x5c\xc3\xed\x1a\x51\xb9\x60\x8f\xff\x62\x10\xe1\xb3\x2f\x1e\x37\x1d\x39\x0b\xdc\x71\x22\xfb\x72\x0a\x09\x28\x9e\x9e\xf5\x90\xee\x7a\x63\x8a\x91\xb4\xfb\xb5\x6f\x79\xe4\x43\x41\x88\xee\x87\x63\x90\xb3\x7f\x0b\x89\x7f\x5c\x0f\x53\x03\x20\x14\x65\x9e\x1c\xa1\x7b\x62\x24\xa4\x8e\xc3\x19\x05\x31\x14\x37\x6b\x70\x1f\x03\x22\xc1\x03\xfb\x44\xcb\x32\x71\x65\x52\x0b\xfd\x9d\x3e\xc2\xa6\x33\x2a\xba\xf7\x92\xc8\xfd\x92\xb5\x45\x15\x35\x08\x91\x73\x06\x75\xa2\xab\x8a\x08\xed\x58\xe2\x67\x04\xec\x87\x1b\xc0\xae\x39\xa9\x79\xc7\x47\xc3\x7e\x34\x1a\x36\xf9\x40\x0a\xa8\x8f\x30\x1a\xf6\xe3\xd1\xb0\xaf\x49\x23\x74\x7c\xbc\x11\xf8\x27\xa3\xc1\x4b\xe5\x37\x05\x78\x38\x01\x29\xcb\x17\x0f\xbf\x8a\xf9\xe2\xac\x62\x5a\x94\xb4\xb4\xbc\xb3\x09\x83\x73\x08\x3f\x60\x63\x03\xb0\x3f\xde\x49\x0a\x51\xba\xab\x28\x30\xac\xf3\x33\x59\x5c\x63\x45\xab\x0a\xc9\x60\x9b\x82\xd0\x6b\x6b\xd9\xea\xef\x6e\x64\x1a\x54\x51\x8e\x3a\x4e\x4a\x1d\x43\x04\x4f\x01\xa3\x58\x76\x35\xe5\x73\xcd\xd7\x74\x19\x8f\x25\x63\x0d\xea\x96\x2d\x5d\x10\xe4\x01\x63\x0d\x3c\x54\x32\xe4\x54\x2f\x6e\x19\x12\x2a\x2f\x97\xfc\x03\x71\x36\x6b\x57\x42\x4f\xfa\xa5\xa3\x85\x10\xa6\x65\xa8\x48\xc4\x77\x97\xb8\xc1\x0b\xd2\x92\x46\x96\x12\x2f\xed\xa1\x5e\xe0\xe5\x12\xa2\x69\x15\x0a\xbc\x57\x41\x26\xb7\x92\xd7\xae\xe2\xbc\x54\xf2\x2b\x47\x24\x33\x59\xb7\xe4\xc3\x92\x14\x2d\xf4\x45\x51\xda\xea\x1c\xb7\x3e\x4c\xc8\x91\x16\x38\xd6\xf8\xa5\x35\x6f\x09\x36\x0a\xf0\xac\xab\xb4\x27\x24\x6d\xbd\xa8\x8d\x12\x8b\x2b\x71\x5d\x71\xc8\x77\xfb\x59\x99\xb2\x05\x4b\x94\xe6\x8c\xac\x8e\x27\x36\xd2\x99\x3c\xad\xf5\xab\xfb\xa0\x7b\xa4\x8c\x7e\x32\x98\x28\x8e\x25\x82\xc9\x39\xf2\xad\x2e\xe5\xed\x7e\x08\xa2\x6d\x1c\xe3\x83\xbc\x38\x1f\x47\x2e\x85\x49\x08\xdc\x97\xa4\x68\x08\xe6\x96\x02\x95\xaa\xc4\xe7\xac\xab\xca\x84\x08\x1c\xf3\x85\xde\x8c\x42\x21\x02\x55\xd9\x32\xea\xfe\xd9\x0e\x50\x9a\x13\x7a\x32\xbb\x33\x1c\xea\xe7\xcb\x31\xd1\x68\x6a\x83\xd2\xc2\x4b\x76\xd0\xc4\xba\xc1\xc2\x53\x55\x6c\xa5\x68\xb8\x61\x2d\x2b\x58\x05\xe1\x1d\xa4\x75\x4d\xaa\xd2\x16\xe6\xb4\x21\xf7\x60\x50\x4d\xf1\x3a\x27\x5d\x9a\x65\x0b\xa5\xe5\xb2\xc6\xd4\x03\x10\xc7\x53\x95\xa2\xba\x9d\x35\x2e\x56\x6d\xd5\x14\x9f\xa1\xc3\x83\x54\x48\xcd\x12\xd7\xb4\x98\x38\x6d\xc7\xe1\x90\xab\x97\x04\x21\xb1\x19\x6a\xc4\x7c\xf7\xef\x0d\xd2\xc9\xc6\x5e\xe6\x94\x83\xb9\xce\x74\x52\x45\xc7\x6a\x56\xa9\x42\xd4\x06\x3f\xd2\x82\xe0\x57\x72\x3b\x3f\x03\x25\x43\x77\x56\x96\x50\xfa\x24\x57\x97\xed\xe3\xe5\xb2\x81\x0a\x61\x86\xff\xf7\xb4\xf0\x9b\xaa\x52\x4c\x52\x30\x84\xfe\x51\x94\x4b\x50\xc0\xcd\x9c\x90\x9f\x61\xab\x9e\x07\x55\x1c\x5d\x10\x36\x59\xcd\x69\x49\x1a\x13\x42\x84\x05\x79\x2e\x19\x27\xe5\xd4\x31\x1e\xa6\x88\xe8\x44\xad\x44\x73\x42\xb2\x52\x9f\x88\x0f\x1c\x86\xf8\x2d\x63\x55\xc4\x0e\x41\x13\x92\x77\x9a\xf3\x56\xb6\xb7\x82\x37\x56\x1c\x95\xf3\xcd\x37\x9a\xee\x4e\x81\x4b\x89\x95\x09\x16\xa2\xb1\x2d\x51\xa6\x6a\xb2\xc1\x31\xbe\x17\x70\x07\xeb\x97\xf1\xd7\x91\x73\xc8\xd0\x59\x4e\x5b\xe6\xef\x54\x1f\x87\x9a\x86\xdd\x24\x82\x33\x72\xe2\x91\xc2\xbd\xfd\x82\xd5\x05\x6e\x27\xb4\xdc\xd1\xbf\xde\xb3\x5a\x81\x2e\x88\xef\xf5\xeb\xa7\x25\xa9\x5b\xb0\x0d\x8b\x59\xdc\x4b\xc6\x99\xf9\x7f\x79\x7f\xca\xa4\x1a\x56\x13\x37\xa3\x8e\xbb\x6d\x0e\x9d\x62\x76\x60\x8a\x76\xd0\x19\x42\xa2\x2d\xaa\x89\x21\x23\xe0\x6b\x1c\xec\xde\x3a\xd0\x0b\x71\x86\x68\xf4\x9a\xa6\xe3\x02\x77\xe2\x50\xaa\x85\xfd\x53\x0e\x7d\x5e\x5f\xe3\x8a\x96\x70\x04\xfe\x89\x16\xa4\x9d\xb3\xa8\x92\xd8\xb9\xf2\x3d\xcd\xf1\x72\x49\x6a\x89\x2c\x27\x94\x3a\x32\x6d\x9b\xfc\x01\x7b\xa3\x85\x9c\x52\x41\x16\x67\x64\x81\x9b\xf7\x7e\x2a\x11\x5d\x2c\x48\x49\x71\x4b\xaa\x75\x86\x82\x62\xba\xee\xa1\x22\x9f\xdc\x86\x69\x27\x4d\x78\x61\xf4\x76\xe6\x65\xb4\x71\x50\x5e\x7f\x61\x44\x8f\xb6\x72\x71\xa2\xfa\x07\x1c\x78\x5d\xcd\xf1\x8c\xc8\xd2\x36\x27\x75\xf9\x86\xcc\xba\xba\x74\x38\x78\xd8\x9d\xd7\x40\xdf\x8c\xb2\x9d\xb1\x2e\x02\xee\xe1\x23\x3c\xcb\xb6\xb9\x76\x81\x1a\x86\xad\xd8\xae\x2c\x51\x07\x74\x29\xfb\xde\xd0\x16\x4d\x94\x21\x5d\xa8\xf9\x55\x25\x93\x51\xd5\x13\x8e\xc1\x2d\x6a\x60\x93\x9e\xe0\xa7\x64\xa5\x69\xf9\x0a\xc0\xe6\xa4\xab\x24\xb2\xf4\x4f\x96\xf1\xba\x3a\x4b\x1f\x13\x76\x81\x8d\x96\xd0\xd4\x7c\x7d\x34\xa5\xc5\xb4\x31\x5b\x2d\x8f\xbf\x74\x76\x34\x40\x90\x3c\x4a\x39\x36\xa5\x09\x2b\xce\xe4\x0b\x8a\xc1\x2c\x22\xee\x58\xee\x79\xec\x31\xb3\xeb\xf9\x23\xf0\xf3\x40\x8a\xf9\xad\x24\xa3\xb4\xac\x23\x27\x53\x9a\xd9\x0c\x97\xae\x1d\x2e\x0e\x93\xaa\x60\x19\x34\x8c\x8c\x6e\x23\x5d\xf0\x8a\x36\x71\xad\xa5\x4b\x5c\xbc\x57\x26\x37\xda\xf4\x66\xe3\xe5\x8b\x63\x7c\xf2\x72\x38\xc9\xcb\x29\xd5\x9e\x4b\x57\x20\x35\xb7\x4a\x0b\xe4\xc7\xbb\x4b\xe9\xf8\x07\x5f\x9c\x26\xac\x22\x4a\xdb\x94\xca\x80\xc9\xc7\x71\x21\x97\x94\xc3\x25\x00\x37\x9d\xea\x38\xea\x74\xf6\xd2\xd3\x09\xc1\xcd\xa1\xe4\x95\xd3\x74\xc7\xb7\x71\x8a\x05\xc0\x34\xe4\x31\xa9\xa5\x01\x51\x5e\xf5\x6a\xce\x42\x06\xad\x38\x8b\x5c\x20\xa3\x6a\x00\xfd\xf6\x5b\xb2\xb7\xd0\x88\x7b\x4d\x19\x87\x95\xd3\x36\xce\xb3\x22\xbf\x74\x18\x54\x2d\xe5\x39\xb6\xea\x53\x82\x74\x14\x40\x27\xf3\x43\x68\x52\x33\xd6\x14\xe9\xc6\xc7\x59\x92\xdb\x4e\x4d\x21\xb1\xb6\xee\x12\x08\xe2\x30\x20\x07\xad\x37\xa8\xa8\x9b\x07\x41\xb3\x34\x17\x82\x5d\x8c\x31\x33\xcd\xc4\x2f\xb8\x46\x6c\x49\x6a\x69\x03\xc6\xf5\x1a\x2d\x58\x13\x43\xb8\xc6\x8d\xa6\xae\x37\xac\x02\x5b\xfd\x29\x4c\x20\x32\x03\x67\xa5\xf7\xd3\xd4\xeb\x09\x31\x3e\x18\xea\x54\xa5\x06\x27\x47\x77\x1b\xa7\x81\xff\xe2\x6e\x4a\xba\x8a\xa0\x3d\x43\xb9\x3c\x90\x71\xa3\xf8\xd3\x39\x55\xa9\x10\x87\x03\xd2\x09\xda\xae\x25\xd3\x9f\x63\x8c\xc7\x21\x8b\x66\x72\xa9\x79\xe3\x66\xdf\x70\x09\x8d\xa2\x25\x0d\x58\x0d\x75\xe8\x52\x55\x85\x11\x05\xfa\x68\xca\xd3\x98\x2e\xd8\x6c\x8e\x20\x95\x66\x79\x60\x50\xc9\xfc\x16\x2f\x64\x41\x1b\xd6\xe2\xba\xbf\x19\x11\x7c\xe3\xf8\x73\x03\x32\x91\x8e\x32\x2e\x47\xad\x27\x19\x69\x54\x3e\x4b\x5f\xfc\xba\xf9\x23\x9f\x58\x32\xa6\x2c\x1e\xda\xe6\x7d\xac\x7f\x3e\x45\xa6\xd5\xf0\xe2\x46\xe6\x5e\xa5\x52\x74\xe1\xc6\x48\xaf\x27\xb1\xd3\x99\xda\x76\x63\x30\x31\x2a\x1d\xab\xa7\xa5\xae\xfe\xd9\x4c\xb7\x1b\x45\x47\x1b\x9a\x14\xb6\x37\x83\xb8\x16\xde\x0d\x8b\xd1\xd5\x71\x53\x81\x44\x49\xba\x90\xff\x9c\x56\x04\x37\x48\x59\x0c\xb5\xfd\xf2\x92\x48\xe7\xac\x2b\xd3\x99\xf6\x17\x65\xfa\x0e\xed\xb1\x3f\x26\xfb\xe3\x4f\x4d\xe9\x57\xe5\x1f\x43\x97\x6b\xa1\x8d\xb6\x4a\xe1\xa0\x8d\x9e\x4d\xcb\xd0\xff\x92\x86\x39\x7a\x8b\x1b\xf2\x0f\x4a\xac\xad\x5d\x1a\xa6\x9b\xc7\xee\xde\xe6\xc6\x1a\x89\xd1\xa1\x54\x74\xac\x54\x21\x24\x86\x86\x6d\x47\x90\xf8\xf9\x3b\xd9\x00\x5d\x00\xce\x1c\xde\xc9\xf5\x42\x4c\x04\xad\xc6\x5a\x16\xb0\xab\x6b\xc6\x08\x12\x58\x09\x0d\x60\xa3\x6c\x22\xa1\x55\x3b\xee\x19\xd3\x28\x5b\x45\xd2\xd8\xb5\x24\x0d\x65\x25\x5a\x09\x6d\x60\x30\x6a\x12\x22\x93\xab\x8a\xad\xa4\xbc\x1b\xd6\x63\x6b\x48\x05\x34\x64\x23\xa5\x63\xcb\x70\x2a\x5c\x37\x20\x98\x21\x59\x48\x28\xf8\x91\x00\xe4\xeb\x02\x9b\xf9\x70\xdb\xa6\x23\x81\x80\x93\x03\x17\x60\xf7\xb9\xb6\x06\x68\x14\xa8\x35\x89\x53\x69\xec\x00\xe2\xe0\x77\xb5\x67\xda\xe7\x91\xb9\x5d\x9f\x61\x7f\x60\x81\x65\xbf\xa7\x6f\x4f\x44\x73\xc2\x12\xa0\x07\x7d\x29\x9d\x55\xdb\x3c\x3d\x42\x19\x8c\x8e\x6e\xaf\x15\x1d\xc8\x39\x36\xdd\x4e\x82\x49\x1e\x85\xb3\x4e\x81\x11\x2a\x0a\x1c\x02\x56\x91\x8b\x8a\x81\xc2\xf0\xfb\x12\x11\x6c\xd3\xcd\xa8\x48\x09\xc5\xdc\x93\x8a\x55\x2a\x01\xe5\x2d\xf8\x5f\xec\xd9\xa4\x33\x44\x85\x8e\x56\x97\x01\x15\x49\x96\x6a\xa2\xc3\xdd\x60\xef\xa8\xab\x65\xaa\xaf\xb6\x90\x8f\x75\x91\x8e\xc8\xb6\xe9\xbb\x1a\x5b\x69\xbb\xcf\x49\x7f\xb1\xe0\x17\x24\x9e\x4e\xa7\x53\x0f\xe0\x6b\x1d\x0d\x10\x6d\xfe\x11\x3a\xf1\x82\x22\x04\x15\x07\x35\xbd\xf4\x1b\x1e\x44\x95\x37\xe1\x7a\x53\xc1\x7f\xa5\x22\xe3\xe3\xe5\xef\x43\x58\x82\x17\xc3\xe0\x01\x2c\xe6\xa4\x78\x6f\x3a\x33\x5b\x54\x17\xac\x69\x08\x5f\xb2\x5a\x9a\x3c\x20\xdc\x4c\x3b\xc9\xd0\xf9\x19\x24\xe2\x77\x35\xe4\x7e\x88\x8f\x49\xe3\x78\x06\xf4\xe1\x57\x5d\xd5\xb9\x2e\x5a\x38\x63\x60\xb5\x11\x90\x8b\x38\xe4\x60\xcc\x11\x1a\x36\x0a\xbb\xce\x97\xde\x9b\xf5\xef\xc1\x83\x23\xf9\x43\xc1\x96\x6b\x45\x25\x4b\xe5\xe2\x19\xe4\x10\xd3\x29\xfa\x91\xc8\x88\x2e\x1a\x28\x8a\xd1\x74\x21\x90\x5d\x8b\x5c\x82\xc5\xa6\xec\x56\xe9\xc3\x20\x65\x68\x4b\xb5\xda\xcb\xa4\xa1\x51\xf9\x0e\xef\x2e\x13\xd5\x28\xe0\xa4\x69\x76\x6f\x6e\x3a\x39\xd2\x0a\x56\x0f\x94\x79\xc5\xda\x96\xd4\x50\x7b\xb5\x86\xe3\x80\x61\x5c\x19\x30\xd3\xef\x55\x0a\x83\x01\x61\x7a\x60\x5a\xbe\x24\xd2\xcd\x4b\x22\x74\x44\x0b\x37\xf5\x2e\xa9\x91\x53\x95\x64\xc9\x65\xa5\xac\xc3\x83\x83\xf0\x25\xe9\x4c\xee\xf5\xeb\x29\x11\x40\x5a\x02\x8d\x2c\xa7\x2c\x87\x2d\x5d\x44\x3b\xc0\x66\x12\x20\xae\x34\x5b\x09\x9c\xc3\x29\xc7\x9d\x4e\x29\x10\xc7\xa7\x8e\xd6\xda\xa7\xac\x6f\xc7\xf4\xad\xa1\x41\x56\x40\x50\x5d\xca\xb7\x02\x88\x5f\x5f\x74\x95\x6d\xd3\xf3\xad\x54\xc0\xc2\xeb\x48\x43\xbc\xf2\x7a\x05\xa5\xe7\x38\xb2\xa3\x50\x6a\x72\xa3\x1a\x27\xb8\xb8\x3a\xe7\x7a\x2f\x24\xab\x40\xc7\x28\xe4\xc0\x46\xdc\xfd\xe6\x1b\x25\x8b\xa4\x14\x64\x5c\x2e\x68\xbd\xe7\xc7\x2f\x88\xa1\x39\x9a\x98\x48\xc4\xa9\x8a\xa5\x94\xbf\xaa\xd0\xc7\xa9\x1b\x4c\x18\x4f\x74\x3a\x35\xc1\xd4\x06\xf8\xc9\xcb\x33\x79\xc8\xc2\x33\x9d\x74\xa1\xfa\xa8\x40\x77\x6d\xc4\x36\xba\x7f\x1f\x4d\xee\x06\x5b\xf2\xdb\x6f\xe8\xae\x8f\x99\x9c\xbf\xd4\x91\x67\xc6\x08\xe6\xee\xcf\x27\x55\x56\x53\x03\x16\xac\x6e\x69\xdd\xc5\x18\x4a\x9b\x3b\x96\xa4\x59\x50\xce\x29\xab\x2b\x1d\x89\xa9\x77\x53\x7a\xac\x92\x1b\xf5\xf2\xd5\xdb\xe7\x47\xe8\xc4\x89\xde\x54\xe1\x79\x8e\x1c\xb3\x6c\x28\x6b\xb4\xe3\xe0\xf0\xe0\x60\xef\xc5\xf7\xaf\x7e\x8c\x13\x8e\x52\xe0\x27\x2a\xca\x3a\x20\x87\x1d\xe0\x49\x52\x24\x95\x9c\x4b\x39\xf8\x31\x6a\xc9\x62\xc9\x1a\xdc\xac\xd1\x55\x83\x0b\xa3\xec\xa8\xef\x53\x63\xc8\x21\x5a\xc8\xc3\xbc\x6a\x70\x5d\xce\x30\x94\x15\x2d\xc3\x9e\x21\x0b\xbc\x56\x17\x84\x92\x23\xc4\xa2\xc5\x48\xd1\x52\xf6\x53\xe3\x40\x1e\x16\x14\x0f\xf5\xd0\x05\x6b\x23\x14\x72\xcf\x5c\x8a\x7f\xf5\x26\x4d\xf0\x71\x7a\xca\x74\x8a\xd0\x1e\x7a\x55\x89\x53\xc2\x23\x5c\xed\xea\xde\x2f\xae\x1a\x07\x90\xc1\x56\x90\x3e\x44\x12\xe4\x4b\xb2\x92\x20\x65\x90\xbb\x55\x68\x24\x4c\x5b\x0a\xcd\x5c\x9b\x37\x3a\x9e\xc7\xfe\xf1\x0c\x4f\xa7\xf8\xc8\x3f\x9d\xdb\x3f\x9c\x9b\x9c\x95\x1e\xfb\x4d\x78\xc1\x66\xf3\xa9\x9f\x7b\x19\x0a\x3a\xa0\x1d\xfa\xf9\x90\xa6\xc5\xb4\x76\xe2\xf5\xb9\xd0\x75\x10\xbe\xc6\xb4\x12\xcc\x43\x50\x74\x22\x2a\x8c\x33\xbf\x7b\xdb\x42\x10\x5a\x2a\x93\x06\xc4\x12\x18\x55\x77\x4c\x54\x6f\xc0\x38\x1e\x4c\xa5\x80\x34\x04\x89\x63\xc1\x16\xd5\x5a\xe0\x58\x86\xd6\x1a\x51\x01\x44\x04\x29\xe0\x50\x59\xb0\xa4\xf4\x33\x1f\x5e\x3a\x5c\x41\x1f\x5b\x0b\x06\x2c\xf4\x45\xd5\x71\xa8\x70\x6f\xa3\x14\x1d\x23\x96\x2c\x61\x0f\x9e\x2d\x9d\x56\xed\x8f\x70\x52\x55\xd1\x52\x2b\x32\xb3\x66\xb8\x99\x6c\x10\xe9\x00\x40\xe4\x83\x10\xbe\xa1\x99\xee\x62\x59\xd1\x82\xb6\xee\xea\x84\x0e\x4e\x95\x46\xe6\x8b\xee\x66\x1b\x00\x5d\x32\x31\x56\x09\x93\x50\xd5\xce\xc9\xae\x30\xc9\xb1\x8e\xc2\xd5\x36\xb8\xe6\x34\x5e\x42\x24\xf1\x27\xb4\xdd\xb0\x84\x9d\xe3\x1d\x33\xde\x98\xdb\xfb\xe0\x22\xad\xa1\x27\xcf\x23\x0b\x5c\xcf\x5a\xa5\x8a\xc4\x32\xff\xf7\x60\x88\x83\x2d\xe6\xaa\x64\x5c\xd0\xc9\x2a\x69\x16\xf4\x52\x89\x36\x49\x93\xf2\x95\xa3\x71\xe9\x52\x7c\x47\xc8\x3f\xbf\x7e\x8c\x66\x41\x16\xcb\x76\xed\x3f\x6a\x51\x13\x8c\x84\x8e\xd1\xaf\x87\x47\xe8\xd7\x8f\xbb\xe8\xa1\xfc\xe7\x91\xfc\xe7\xb1\xfc\xe7\x89\xf8\x67\x30\xeb\xce\x33\x3b\x24\x86\x1f\x91\x4f\x15\xda\x54\xa0\x90\x8f\x60\x03\x36\x40\xcd\xd0\x81\x16\xb7\x93\x32\xa4\xbf\x07\x4a\x4a\x45\xc7\xc1\xe7\xef\x94\x0f\xb6\xc7\x09\x6b\x86\x53\xcf\xa2\x67\xc7\x6e\x0a\x89\xfa\x30\xcd\xeb\x65\xbc\x03\xae\x2a\xcd\x1e\x1b\x19\xb3\x6f\xf2\xde\x2d\xfb\x80\xa7\xb4\x3e\xea\x5b\xe2\x42\x7c\x58\x05\x24\xb9\xc8\x9c\x16\xa2\x7f\x6e\x71\x01\x25\xc2\xd9\x4c\x89\xed\x1c\xba\xbe\x54\xc7\x70\x92\x9f\xac\xca\xa9\xda\x41\xcf\x46\x63\x36\x87\xee\x97\x10\x73\x1a\xe3\x1b\xa4\x8b\xb2\x04\x9e\xe6\xd6\x5d\x09\x19\x72\x3a\xc9\x2c\x37\xda\xa9\xae\xab\x80\xe6\x6c\x85\x16\x5a\xd9\x07\x7b\x8b\xda\x61\x1b\xfe\x60\x46\x92\xd6\x06\x1d\x06\x91\x8c\x7f\x40\x8a\x71\xd6\xdd\x02\xb0\xf5\x96\x49\x3b\xbb\xe6\x69\xd6\x9f\x7f\x2b\x7c\xef\xc5\xf8\x1e\x8f\x6d\xd0\xd4\xcc\xfc\x4e\x4a\xa1\x80\x6e\x32\x74\xb8\xb6\xac\x3b\xf7\xbc\x2e\x85\x16\x66\xae\x67\x2a\xfe\xa6\xa6\x15\x4b\xb4\x87\xb8\x69\xf0\xda\xd8\x4e\x52\xf6\x0c\x17\xc5\x25\xa9\x88\xa0\x0a\x15\xb3\x28\x57\xa0\xf8\xa2\x5f\xa6\x69\x10\x23\xd3\x29\x7a\xe3\x8b\x20\xe1\x8c\xc7\x4c\x6a\x35\xa7\xb2\x84\x83\x87\x9d\x9e\x10\x10\xbd\x19\x72\x48\x41\xe0\x66\x23\x94\x8f\x06\x26\x35\xd9\x41\xff\x4f\xe5\x47\x8c\xd8\xa0\x34\x03\x40\x5e\x7c\x98\xac\x49\xe1\x84\x60\xed\xaa\x42\xb3\x4a\x40\xd9\x45\x6d\xb3\x46\xf8\x0a\xd3\xba\x0f\x9a\xb4\x1b\x0b\x30\x35\x6b\x77\x21\x76\x59\x7c\x90\x37\x47\xb9\x3f\xd2\xa3\x6d\x76\xf0\x9d\x41\xc2\x40\x40\xb2\xfe\xc9\xbe\x8c\xda\x26\x21\x69\xbb\x3f\xd1\x16\x1d\xc7\x1f\xa5\x82\x6c\xf4\x4f\x9a\xb2\x12\xb2\x3c\xf2\x3a\x6b\x8a\x3b\x43\x72\x6d\x65\xb5\x52\xd2\xe0\x88\x4b\x03\xf6\x8b\xd6\xde\xa2\x87\xae\x0b\x5b\x9e\x2d\xba\x3d\x5d\xba\x79\x67\x06\xf8\xe9\xd3\xdc\x3c\x39\xac\x5c\x68\xc1\x4c\x85\xed\xda\x98\x3f\x63\x4b\x97\x7a\x04\x53\x8a\x80\xd0\x8c\xdd\x6f\x76\xdd\xb8\x39\xe8\x48\x2a\x2e\x07\x21\xd9\x66\xc8\x2e\xcd\x79\x7b\x59\xb2\xc7\x27\xe3\xa5\xf4\x06\xa1\x3b\xb7\x9a\xbe\x95\xdc\x9b\x0d\x2b\x3a\x18\x71\xbb\xe5\xc0\x9b\x6c\x0d\x79\xfb\x8d\xbc\xfc\x5e\x32\xd5\xe7\x0a\xc2\x09\x08\x51\x71\x97\x70\x7c\x9d\x52\x37\x5c\x85\x64\x3a\x41\x08\x6b\xcf\x58\xab\xf5\xb1\x6d\xe1\x7a\xf4\x1d\x94\x50\xa3\xfd\xbf\x36\xf2\xdb\x6d\x29\x10\x6e\x64\x10\x9c\x79\x7d\xf3\xf8\xb7\xb0\xd8\x0c\x16\x84\x9e\xc8\xc3\x52\xaa\x20\x4b\x55\x54\xb2\xf6\x26\xdf\xb7\x85\x39\x29\xb5\x27\xc0\xad\xa6\x6d\xab\x91\x07\x91\x70\x37\xae\x71\x15\xca\xfd\xb6\x2a\xa1\x2d\x34\x79\x02\x82\xc0\x71\x00\x6f\x3f\xae\x84\x89\x5c\xb3\xba\xad\xf4\x17\xbc\x97\xad\xb5\x19\xaa\x8d\x5e\xcb\x9f\x3a\xc4\x58\x8c\xd2\x5d\x9d\xb9\xbc\xa0\x82\x81\x99\xd6\x56\x1e\x5c\xe8\x62\x93\x58\x9f\x53\x90\x20\x25\x20\x40\x68\x9e\x2a\x07\x64\xa7\xff\x1a\xd3\x52\x96\x24\x3d\xf2\x16\xbd\x0b\xf2\xea\x0b\x22\x54\xc5\x83\xfd\x83\x5d\x55\x4f\x55\xfd\x31\x23\x84\x7f\xdb\x35\xb5\xfa\x20\xdd\xf5\x5b\x46\x20\x49\x06\x50\xef\x31\x9b\x6c\x6a\x15\x66\x99\x52\x05\x6c\xa7\x7e\x00\xf5\x6a\xb8\x32\xcf\x18\x3b\x84\x93\xc6\x9b\xb4\xba\x1a\x05\x57\x9b\xa2\xe3\x54\xe6\xb4\xf0\x26\x4b\x12\xe6\x73\xa3\x3d\xa0\x89\x15\xca\x1a\xba\x3e\xa3\x40\x31\x29\xce\x08\x51\x0e\x17\xa5\xfe\x0b\x9c\xee\x5f\x91\xf6\x85\xf9\x22\x70\x57\x0a\x59\x54\x62\x3b\x28\x72\x9a\xa8\x29\x4a\x67\xee\x00\x4f\x7d\xba\x8d\x69\xc0\x03\x1b\x14\x8d\x45\x7b\x0e\xa8\x3e\xfe\x37\x9d\xa2\x6f\x6d\x5f\xbb\x19\x21\xd2\xb3\xa2\x4c\x4b\xaa\xbe\xb3\xbe\x78\x04\xa5\x84\xde\x70\xe5\x63\x71\x3b\x14\xa0\x0a\xf3\xfe\xbd\x56\xb8\x94\x85\xe6\x7a\x1c\x67\x02\xbd\xf0\xd0\x24\xae\xd3\xac\xe0\xcb\xa2\xd0\x4f\xf7\x0c\x3c\x13\x96\x29\x7d\x55\x2f\x24\xe5\xc3\x63\x26\x50\xd3\xe2\x26\xb6\x0e\xfd\x5d\x9c\x56\xbf\xdb\x12\xf8\x0c\xc2\xe2\xc3\xce\xae\xf9\x3b\x91\x8b\xb5\x84\x45\x57\x4c\xce\xeb\xef\x50\x26\xb1\xdf\x88\x24\x71\xf0\xf4\xfe\x0b\xfd\xd2\xbe\x7c\x2b\x79\x09\x39\x50\xd3\xb2\x56\xca\x69\xae\x5a\x1a\x2e\xe4\x64\x1a\x32\x23\x0d\xa9\x8b\x30\x16\x0d\xc1\x01\xb1\xd8\x8e\xbb\xeb\xf9\xe3\xef\x0b\x78\x41\x4d\x6f\x0f\x45\xfd\xad\x9a\x2d\xa2\x6d\x6d\x61\xa8\x47\x98\xba\x06\xb6\xe4\x96\x0d\xc6\x4b\x16\x07\xf7\x81\xab\x4a\xb9\xa9\x17\x53\x97\x09\x4a\x69\x97\x89\x44\x0d\x55\xb0\x3b\xc4\xb0\x87\xfe\x4c\x36\x90\x78\x22\xcc\xfa\x41\xa9\x90\xf4\x70\xce\x63\xeb\xbe\xa2\x5b\x46\xa8\xf7\xc0\x73\xc7\x4f\x60\x35\x5f\x69\x35\x63\xda\x48\xa2\x1b\x25\x83\x9d\x6f\x84\xf1\x60\x42\x19\xbd\x3a\x55\x07\x5e\x5e\xd2\xda\xc3\x9a\xa6\xbb\x51\x61\xf4\xde\xf8\x63\x7c\x47\x4e\x37\xe2\x71\x93\x48\x90\x57\xdf\xb9\x15\x57\x9d\x96\x33\xd0\x71\xee\xfe\xf1\x2f\xb9\x67\xc7\x43\xb7\x9c\x03\x31\x2b\xa9\xf9\xf2\xc0\xcd\x65\x23\xfd\x9b\x15\x90\x3c\xb6\xe5\x8b\x4a\x1e\x81\xe4\x9b\x9b\x7e\x72\xb9\xe9\x46\x32\xd3\x6d\xe4\x25\x28\x67\xca\xdb\x86\xad\x83\x6b\x72\x06\xa8\x73\x0a\x7f\x69\xe7\x1e\x5b\x10\xf0\x89\x79\x60\x4a\x05\xc3\xc5\x63\x8f\x36\x23\x2d\xb2\xdc\xab\x45\xe4\x95\xd9\x8e\x5c\xe6\x99\xc0\xe2\x0d\xab\xe7\x26\x42\xd9\xe4\x70\x99\xd8\xb7\xac\x5b\xea\xb5\x75\xce\x99\x40\x8b\x9d\xbb\x11\x6a\x75\x13\x23\xde\x2d\x8c\xce\x2f\x55\xae\x44\xb6\x91\x38\x72\x40\xcc\x32\x1d\x23\x3b\xf6\x5b\xfb\x4c\x20\x49\x89\x8d\x72\x01\x1c\x67\x84\x17\xd5\x64\x22\x81\xa0\xa0\x07\x02\xa8\x14\x6e\x03\x84\x9f\xfa\x8a\x3c\x7a\xd6\x76\x58\xb6\x2c\xa7\x2e\xbb\x3e\x74\x55\x4b\x97\x15\x95\x65\xa9\xad\x53\xda\xc3\x07\xb8\xa4\xa3\x58\x3c\x83\x18\x39\x2f\x59\xa4\x7d\x5c\xf1\xd3\xa9\x8b\x90\x54\x87\xd8\x84\x18\x72\x84\xde\x25\x40\x47\xad\x1f\xd0\x31\x7a\xf7\x53\xb2\xc7\x9b\xac\x07\xeb\x96\x8c\x82\x93\x23\xee\x9d\x39\xa9\x1c\x8f\x77\x8a\x8b\xf0\x68\x92\xbc\x5b\xa8\xc1\x7f\xd4\x10\xa4\xba\x91\x1f\xdb\x76\xde\xe0\xb6\x62\x6a\x72\xb4\xdc\xc1\x72\x06\x07\xe4\x09\xc9\xdb\xe7\x2f\x17\xaa\x1c\x7e\x7a\x2e\xa9\x5c\xbd\xec\x92\x55\xe4\xa2\x22\x9d\x10\x94\xce\xbf\x75\xd0\xa9\x6d\xf4\x1a\xa5\xd1\xa9\xae\x63\x56\x98\x3d\x4f\x39\xb6\x19\x97\xd7\xb7\x5e\xbd\x04\xfc\xcf\x13\x59\xe8\x86\x7c\x3c\xb0\x0c\xb4\xc0\xb5\xc0\x87\x2e\xb1\x55\xca\x5a\x67\x25\x9d\x81\x12\xe0\xd6\x9b\x4d\x41\x3c\x77\x7b\x83\x38\x50\xa5\x09\x90\x33\x1f\x2e\x9c\x6c\xbc\x20\x7d\x40\xad\x4e\x77\xa6\x5e\x7d\xcb\x9c\x9a\x60\xc7\x29\x04\xea\x58\xc1\x84\xab\x77\x0c\x15\x0e\x3f\x33\x58\x36\x20\x6d\x2c\xf1\x58\x5a\xcd\x9a\x85\x39\xdc\xea\x9c\x99\x7c\x78\x5b\xda\x0c\x82\x46\x74\xb4\x88\xdd\x97\x08\xbe\xdf\x34\xc5\xb4\x2c\x1e\xca\x6c\xff\x22\xe2\x87\x03\x90\xf9\x89\x98\x0b\xf0\x0f\x56\x81\xff\xfa\x38\x1e\xf7\x8b\x9e\x2d\x4b\xa2\xe6\xa4\x2c\x03\xa9\x41\x91\x87\xe4\x42\x96\xc9\x6b\xb4\x24\xcf\xab\xda\xe0\x98\xc7\x25\x3e\xfc\x12\x4d\xa2\x69\xef\xf5\xad\x33\x13\x4a\x1b\x32\xfe\xf4\xb1\x0c\x79\x7e\x50\xab\x2b\x7d\x3c\x73\x9c\xcf\xb0\x7f\x75\x74\x33\x4c\x17\xb9\xb1\xdc\x0e\xe5\xd1\xc6\x39\x85\xe6\x80\xca\xb6\x4b\xc3\x5a\xe2\x46\x89\xcb\x68\xdb\xc9\xcb\x68\x8b\x47\x78\x20\x77\x75\x38\x0c\x00\x1c\x31\x51\x67\x2a\x69\x01\xa7\xdc\xab\x2b\x0e\x05\x1d\xf3\x2e\x99\x90\x29\x3a\x45\x12\x7b\xaf\xf8\x5e\x3f\xb7\xa3\x08\x1a\x76\x30\x90\x0f\x3c\x82\x1b\x64\x46\x48\xb1\x85\xf4\x24\x36\xe3\x0d\xc8\xe7\x0f\x86\xf4\x1d\x17\x85\x65\x13\xbc\x5b\xe4\x28\x66\x2c\x4f\x48\xcf\x79\x6f\x70\xb9\x19\x5a\x55\x0e\xeb\x7e\x44\x29\xe1\xda\x44\x7c\xf6\xf8\x3f\x75\x49\x02\x5f\xa9\x79\xc0\x51\xd1\xa5\x5d\x77\x74\x16\xad\x29\x9e\xc1\x17\x1b\x54\x55\xdf\x31\x86\xcc\x41\x27\xf2\x69\xd7\xba\x84\xb7\xbd\x39\xe4\x87\x1e\x7b\x4f\xc5\xdf\x7e\xe9\x4f\x39\x3f\xc4\xe6\x84\x1f\x3f\xb2\x17\x0c\x96\x1a\x27\x1d\x30\x10\x5e\x37\xfb\x43\x9d\x8b\x1c\x2b\x91\x69\x5e\x34\x4c\xcc\xf1\x64\x72\xa6\xdf\xa4\x8d\xb3\x1f\xd7\x83\xa0\xa4\xab\x0b\x6a\xe5\x69\x1b\xac\xfd\x72\xd0\xd8\xa4\x79\x84\xd6\x47\x95\x92\x97\x38\xef\x53\x34\x71\xb5\xdc\xbd\xe1\x6b\x23\xf6\x37\xb8\x6a\xee\xeb\xaa\x73\x39\x4c\xa4\x69\x7e\x99\x9c\x5b\xa8\xf1\x4c\xa3\xac\x33\xbf\x9f\x8c\xf4\x28\xf6\xa8\x14\x9e\x21\xa2\xaf\xac\x5f\x5e\x72\x56\x25\xb2\x07\x98\xd2\x76\x15\x92\x6d\x48\xb0\xde\x16\x24\x03\x3d\xe3\x11\x8e\x75\x71\xa7\xbe\x24\x80\x11\x98\xf8\xcc\x92\x60\x50\xaf\x46\xe9\x11\x50\xed\x4d\x55\x90\x9a\xe3\x44\xa9\x24\xb7\x43\x98\x5f\xbe\xdb\x08\x30\xbe\xf7\xde\xaf\xe1\xf4\xef\x20\x20\x4e\x3f\x81\x94\xb6\x2d\xa1\x6a\x80\x40\x51\x52\x66\xf0\x29\xf5\xb3\x09\x0a\x46\x60\xfb\xdc\xd2\xc1\x0d\x06\x1e\x23\x12\x04\x2c\xc5\xf9\xe8\xa6\x97\xff\xc0\x02\xfe\x58\xd7\xfc\x49\xd0\xdc\x37\x3f\x83\x9b\xdf\xf5\x99\x85\x6e\xef\x82\x07\x43\xbb\x32\xc1\x1f\x8f\xb0\x3b\x8f\x30\xed\x7a\x76\xe9\xe4\x4c\xd3\x9d\x95\x79\xd0\x47\x6f\xe3\x50\x2b\x59\x8d\x46\x55\xaa\x52\x05\xeb\x65\x85\x02\x3f\xd0\x4a\xb0\x58\xd5\x32\xd4\xfb\xfc\xad\xc3\xcb\xdc\xc8\x0b\x9d\x22\x2c\x73\xae\xae\x1d\x5b\x5b\xae\x0a\x82\x07\x0a\xa2\x22\x65\xc9\x04\x21\xab\x3a\x75\x8a\x21\x80\x43\x4e\x5f\x87\x24\xae\xe3\x7a\x67\x02\xde\x0f\xb5\xdb\x1c\x8f\x70\x1d\xc4\x08\x71\x96\xe8\x12\x52\xf2\x25\x54\xc6\x89\xd7\x28\xdc\x94\xe8\xb2\x53\x88\x7c\x34\x6e\xa7\xc2\x51\x6d\x5d\xc6\x94\x6d\x3c\x42\xf7\x4e\x71\x0d\x81\x59\xce\xbe\xd0\x64\x99\x72\x44\x39\xe2\x2d\xad\x20\x9b\x7c\xd9\xb0\xab\x86\xf0\xfe\x1e\x21\x7f\xb8\x32\x28\x61\xf1\x85\xde\x49\xa5\x4b\xf2\x9a\x6e\xcb\xfd\x09\x4c\x61\xe5\x86\xbe\x15\xbd\x64\xa9\x62\x0d\xb4\x46\x6a\x06\x3d\x25\x1b\xde\x98\xac\xad\xde\xaa\x04\xa9\xa2\x13\x8e\xb3\x2e\x58\x53\xec\x22\x1d\x5d\x00\x38\xc2\x4e\x38\x6a\x3a\x41\x2a\xc6\xd6\x67\x74\x34\xe6\x2b\x1e\x0c\x68\x13\xdb\x2f\x7a\x60\x92\x8e\x8f\x6f\x56\x09\xc0\x44\x26\x47\x65\x61\x70\xd2\x67\x8a\x32\x95\x60\x73\xb5\x11\x7f\xfb\xcd\x4e\x31\x2d\xd7\x26\x50\xe0\x14\x4b\x90\x42\xe2\xb7\xe0\x4d\x7f\xbb\x5e\x92\x54\x15\xcf\x5b\x42\xb8\x9b\xf2\x53\x44\xeb\xc9\x87\xa8\xb8\xc3\xdc\xbe\xd6\x72\x3a\x16\x26\xa7\xdd\x7d\xf2\x2a\xc8\xa9\xc9\x78\x07\xeb\x9d\xb7\xd2\x6c\x8e\x48\xba\x72\x81\x2e\xc9\x3f\x77\x6f\x52\x4b\x7f\xc9\x1a\xa1\x39\x0a\x34\x77\xe9\xf8\xea\x9c\xe3\x8a\x72\x66\xf1\x15\x8d\x38\x72\xef\xc6\xd7\xb0\xb6\x23\x0c\xef\x5e\x3c\x9b\xb1\xe5\x32\x9d\x1a\xae\x5a\x0e\x71\xd8\x40\x5d\x9a\xda\xa1\x0b\x90\x90\xfc\xd1\x46\xed\x4d\xa2\x28\xe6\x46\x9b\xd3\x53\x68\x32\x8b\x8f\x78\xcc\x8d\xb6\x47\x20\x72\x70\x7f\xd4\x29\x1c\xde\x9c\xc4\x64\xd2\xb3\x09\x0a\x8d\xd7\x0c\x55\xac\xbe\x22\x8d\xcc\x28\xbb\xd4\x85\x19\x55\x37\xde\x5d\xa7\x58\xe3\x22\x48\xec\x67\x33\x48\x45\xb9\xee\xcb\x73\xa1\xb3\xa4\xcc\x37\xb2\xa6\xcd\x80\xc9\x29\x57\xf2\xa4\x2f\x0d\xb7\x9f\xb3\x84\x05\x1c\xf5\x4f\x5a\x39\xb4\x94\x6d\x89\x59\x76\x79\xa7\x05\x16\x22\xb9\x97\x95\x23\xf8\x8d\x92\xa6\x72\xd0\xbc\x6c\x1d\x88\x88\x50\x7d\xba\x51\xa6\xe7\x8f\xfb\xb3\x79\x35\xd5\x28\x92\x31\xd9\xaf\x23\x63\x65\x53\x4b\x31\xca\x30\x57\x55\xc3\x12\xc2\x4a\x4f\x18\x80\xae\x1b\xac\x2d\xab\xd6\x52\xf5\x60\x48\x23\xd3\x3f\x91\xe1\x2b\x39\xb3\xcf\x6c\xf8\xd2\x67\xcc\x8d\xc1\x88\x04\xa0\x9e\x66\x4e\x21\x34\x8e\xa0\xf2\x8e\x2e\xcb\xe1\x2c\xd8\x1c\x54\xaf\x10\x71\xae\x58\xb6\xbb\x64\x5c\xb4\x1d\xb6\xa5\xaa\x5e\xb0\xe6\x25\xf9\x20\x9b\x58\x27\x8c\x69\xa9\x9e\x0d\x03\x06\xb7\xbd\x11\xb5\x8b\x3f\x01\xd7\xe8\x59\x97\xe6\x18\xd2\x9c\x7c\xb0\xd3\xc7\x2a\xfe\x28\x15\xa8\x73\xf3\xd9\x56\x1d\xe8\x8c\xed\xf2\x0f\x21\x35\x0f\xe2\x2b\x5f\x8d\x5c\xb1\xde\x54\x3d\xca\xbc\xe2\x81\xb6\x51\x97\x1d\x65\x6a\xb3\xf7\x0b\xf0\x5b\xa8\xcc\x3e\x96\x72\x32\xa2\xfd\x67\xa0\xe3\xbc\x9d\xfc\xa6\x82\x7a\x66\xc7\x36\x93\xd5\x73\x3b\xb6\xed\x6a\xfa\x23\xe5\xf9\xd4\x9e\x8d\xe6\x3e\x3d\x12\xfd\xf0\x74\x36\xdd\xb5\xed\x0a\xf6\x99\xbd\xdc\x50\xb6\xef\xdf\xcc\x8d\x6b\xda\xe7\x77\x73\xac\xfc\x9f\xdf\xce\x94\x0a\x90\x39\xac\x83\x9b\x39\x5a\x01\x40\x1b\x49\xae\x56\xd0\x18\x10\x5f\xd1\x16\x44\x58\xb4\x1d\x31\x76\x20\xa7\x29\x4f\xce\xa6\xa3\x92\xd7\x20\xc8\x11\xd8\xb4\xfe\xa3\xc2\x9c\x5c\xbf\xac\xe9\x3d\xd2\xae\x97\xa3\x1b\x2e\x7c\xee\x1b\x75\x94\x44\x96\x9c\xfc\x28\xe9\x23\xcc\x98\xcd\x60\xfb\x93\x62\xfa\x0f\x81\xe5\x11\xea\x79\xa6\xaf\x88\xb6\x9d\x2b\x3c\x58\xc4\xcc\x28\xa9\x4a\x95\x8b\xa4\x62\xc3\xa1\x8b\xf7\x08\x25\x62\x8c\xb5\x24\xde\xbc\x38\x13\x19\x9a\x07\xa8\xc1\x56\x72\xac\x07\x3c\xdb\x39\x16\x99\x3c\xa6\x54\x91\xff\x18\x78\x50\x51\x44\xea\x21\x4e\xc9\xbc\x4c\xe9\xb7\x34\xbf\x48\x19\xd9\x3d\xdd\x3f\xd1\x7e\xcd\x14\x3c\x32\xbd\xcf\xd4\x26\x80\x4f\xcf\x56\x1e\xb4\xbe\xc3\x39\xe6\x88\xd4\x61\x15\x8d\xe9\x14\xbd\x25\x55\xc5\xd1\xca\xf4\x50\x23\x2b\x1d\x17\xa2\x3a\x64\xab\x74\x07\x55\x65\x9c\xac\xf4\xe7\x94\xdb\x18\x61\x39\x9a\x6c\xd8\x1c\x8d\x70\x29\xcb\x85\x42\xe8\x84\x2c\x99\x2c\xde\x95\xb5\x75\xd5\x9b\xa6\x81\xd7\x25\xd1\x50\x6c\x09\x16\x22\x0d\x38\x66\x2d\x1e\x7c\xd9\xeb\x8f\xac\x60\x0f\xdc\xd0\xac\xa4\x1f\x37\x4c\x60\xda\x75\xe3\x2c\xa4\x6b\x77\x94\xff\xd7\x2d\x96\xe1\x10\x20\x54\x71\xac\xd7\x82\xda\x1b\xa0\xfc\x42\x6a\xb8\x6e\xc5\x46\xa8\xfc\x25\x8b\xca\x22\x0c\xf8\x7c\xa9\x63\x64\x64\x45\x7d\xe5\x2b\xe6\x7a\xf1\xac\x6b\x0a\x62\xdc\x2c\x6e\xbd\x0c\x31\x02\x6f\x05\x6e\xe5\x9d\x45\x9b\xd0\xe7\x05\x60\xb5\x0b\x14\x97\x7e\x47\x52\xd3\x1c\x3b\x7b\xc1\x21\x57\x07\xed\x7b\xac\x26\xed\x8a\x35\x70\x6a\xca\xb2\x21\x9c\x8f\x81\x6d\x5f\xfa\x8e\xac\xc7\xbc\xa0\x8e\xef\xc8\xa7\x03\x71\xff\x08\xfd\xf5\x45\x57\x5f\xd1\xcb\x4a\xfa\x81\xf7\x21\x4d\x70\xe7\x08\xfd\x55\x20\x45\xc6\xea\x01\x34\x2b\xaa\xc5\x8e\xe1\x8d\x7c\xc2\xee\x36\xbb\x11\x35\x79\x07\xb1\x6a\x61\x10\x7b\x87\x1d\x06\x07\x6e\x33\x02\x3e\x31\xf4\x74\x0f\x15\x60\x66\x40\xc1\xc6\xd2\xb2\x0f\x33\xc1\x8f\xdc\x63\xa8\x74\x34\xfe\xa5\xc4\x8e\x47\x1f\xdd\x08\x1c\xec\xae\xf7\xe7\x06\x60\x5c\x0a\xb1\xbf\x6f\x00\x20\x22\x9a\xa7\x7b\xb6\x66\x82\xc4\xf5\xf3\xc5\xb2\x5d\xcb\x22\x10\x6e\x8e\x3c\x38\x89\xa5\xa1\x07\x1d\xcb\xdb\x44\xfd\x09\xb4\xf5\x46\x96\x55\x2e\xa3\x82\x92\x98\x73\xd2\xb4\x93\xf8\x2e\x1a\x5d\x4c\x3d\xa9\xd5\xee\x3a\xdb\xba\xe3\x23\x60\x41\x38\xc7\x57\xe4\x08\xdd\x7b\x9b\xea\xad\x21\xc9\x56\x35\x07\x50\x8d\xa0\x22\x63\x3b\x9a\x98\xbe\xde\xea\x93\xfd\x96\xc9\x33\x39\xd9\xb1\x7d\xbe\x77\x0c\x17\x2f\xe6\x8c\xab\x46\x3d\xb2\xdc\x96\x05\x20\xfe\x4c\xbf\xed\x76\xfe\x76\x50\xdd\xdb\xa1\xfc\xe9\xde\x5d\x7d\x3e\xdc\xe0\x1a\x1d\x81\x63\x59\xae\x3c\xf2\x88\x5d\xfe\x8b\x80\x70\xe7\x34\x11\xb5\x47\x15\xd8\x2b\x8f\xf8\xab\x7f\x1a\x2d\xb0\xa7\x7b\xce\x79\x94\x9f\xa9\xf3\xe8\x4c\xdf\x3e\x0f\xcc\x83\xbc\x24\xaa\xc0\xc8\xe4\xe9\x5e\xb0\x9b\xce\x5b\x6a\xfe\xd2\xf1\xe2\xb0\x2b\xe7\xea\x79\xa3\x18\x0e\x57\xab\xb4\x0a\x91\x50\xc9\x10\x46\x5d\x4d\x7f\xe9\x08\x3a\x3f\x33\xdb\xc2\x97\xa4\xa0\x33\x1a\xa6\x3c\x1b\x90\x32\x4c\x54\xde\x47\xd8\x01\xa8\xb1\xc6\x54\x19\xb1\xaa\x52\xd3\xb1\xad\x3e\xe4\x5c\x5e\x12\x6b\x92\x36\xaa\x90\x62\xde\x9b\xb1\x68\x03\xe6\xdf\x82\x43\xdf\x3a\xb0\x41\xf2\x05\xe4\x33\x86\x30\xdc\xd8\x69\x09\x90\x3b\xe3\xf1\x52\xed\x2e\x42\xe6\x7b\xad\x5a\x39\x03\xf0\x7b\xa9\xf3\x36\x96\xb5\x69\x53\xb5\x53\x49\xe3\x13\x73\xb7\x83\xcd\x58\x9b\x1b\xb8\xbb\x45\x26\x77\x2f\xc9\xa5\x92\x1b\xb8\x15\x07\x63\x9d\x6d\xdd\x91\x73\x33\xde\x84\x38\xdc\x7e\x41\xf6\x60\x70\x74\x49\x2a\x55\xe3\x49\xa3\x09\xb8\x58\x92\x72\xa6\x53\x44\xeb\x42\x76\x13\x08\x6c\x34\xe7\x67\xb2\x08\xa3\x69\x69\x14\x46\x8b\xa7\x82\xc2\xcf\xcf\x4e\xd5\x3b\xc7\x03\xdf\xcb\x32\x7f\x8f\x1e\x4e\x0e\xfd\xe9\x9c\x4a\xfe\x1c\x32\x48\xd5\x0e\x1d\xfa\x99\x49\x89\xda\x34\x93\x2a\x58\x0d\xfa\x7f\x6a\x62\x6e\x88\xad\x1f\x5c\xdb\x3b\x3b\xc7\x08\x74\xe4\x08\x71\xa1\xef\xce\x15\x2f\xb4\x9e\x63\x9e\x91\x0b\x19\x67\xef\xed\x9d\x4c\x0f\x7e\x7c\xb6\x1b\xde\x94\x6c\x55\x93\x91\x37\xa4\x33\x6f\xff\x8e\xb4\xd8\x13\xd7\xe4\x00\xd2\x92\x4b\x75\x2f\x56\x67\x18\x0d\xc0\xb9\x5d\xb5\xd9\x72\xcc\x1d\xeb\x40\x0a\x6f\x59\x55\xe9\x0a\xdb\x22\x57\xd2\x60\x0c\xbd\xcd\xd9\xcc\xc9\xba\xa1\x3a\x2d\x5b\x4c\x15\xde\x57\x4d\xf3\x15\x8e\x64\xdf\xfc\xe8\x2a\x88\xda\x52\x1e\xa1\xfb\xf6\xeb\x4d\x6f\xbf\x3a\x91\xa3\x13\x37\xdf\xb8\x77\xe1\x0b\x02\xe7\x67\x6e\xd1\x4f\x15\x50\x69\x17\x73\x2f\xd0\x7f\x1d\xe4\x4d\xee\x0f\x4e\x02\x73\x77\x41\xdf\xec\xdc\x1d\x89\xe2\x39\x41\xff\xd4\xa5\xf2\xfe\xa9\xaa\xcb\x79\x0a\xf2\x12\xaf\x65\xfc\xb0\x2d\xec\x93\xc7\xb8\x53\x11\xee\x08\xdd\x37\x25\xf8\xe0\x23\x79\x37\x78\xa2\x86\x2a\x34\xc7\x75\xa5\x39\xb8\xc5\x52\xf5\xd5\x62\x28\xc9\x2a\x6b\x66\x78\xdf\xf2\xdb\x53\x5b\x2d\x81\x0e\x3d\x1e\x92\xb3\x92\x27\xf4\x5e\x4c\xd1\x66\xe2\x21\xa6\x7f\x58\x96\x60\x47\xc2\xa8\xa8\x30\x5d\x90\x12\x5d\x32\x56\x11\x5c\x4b\xd9\x40\xcb\x87\x05\x5a\xe2\x16\x02\xd0\xa9\x32\x3d\x01\x1b\xb0\x62\x22\x5a\x52\x52\x10\xdd\xea\x0e\x2d\x48\x8b\x4b\xdc\x62\x30\x3b\xc9\x10\x73\x0d\x7e\xad\x84\xad\xec\xee\x74\x30\xa5\x53\xf9\xfc\x44\x8c\x2b\x0e\x02\x20\xee\x35\x6e\xe7\xbb\xe8\x67\xf4\xde\xb1\x00\x68\xc8\x32\x96\x75\x27\xd8\x31\xf5\xe5\x19\x05\x01\x4e\x66\x00\x78\x3b\xe7\x87\x27\x43\x38\xac\xde\x2e\x31\x74\x6e\x73\x54\x0f\x3b\x89\x16\x10\x2d\xcc\x08\x2e\xfa\xe9\xcc\x2c\xdc\x3f\xa8\xd1\xbc\xde\xbd\x27\xeb\x28\x60\x30\x59\xf6\x37\x7a\x55\x55\x4c\x9e\x00\x56\xde\x93\x75\xb2\x92\xab\xb7\x68\x59\x28\x36\x84\x23\x83\x8b\xed\xaa\x1d\x32\xb9\x20\xad\xa0\x11\x13\x4b\xe5\x35\xcb\x3a\x3f\xb3\xf1\x21\xda\x24\x6a\x0d\x75\x6a\x8b\xf5\x2d\x2a\xf7\x38\x63\xf6\xd4\x9c\xaf\xb7\x0d\xa0\xd8\xd6\x4a\x06\xf0\x8c\xdd\xc9\xa8\xa3\x84\x9c\x65\x10\x2b\x1d\xa1\x28\x82\xa6\x66\x97\x69\x53\xe1\x02\x0d\xf0\xf7\x37\xa2\x3a\xd9\x6a\xfc\x68\x4c\xba\x46\x63\x65\xf5\x35\x72\x87\x8b\xca\x1d\xa7\x5a\xb2\x43\x6b\xfb\x9e\xce\x95\x8b\xd8\x0e\xb1\xf9\x8d\x83\x4d\x9d\x98\xe2\xae\xbd\x60\xcb\xf5\x4d\x30\x79\x93\x45\xcb\x65\x4d\x2a\xfa\x9e\x20\xdb\xce\xc5\xd4\x0b\x93\x7d\x19\x34\xed\x19\xd0\xdf\x91\xa5\xac\xd1\x7d\x89\x8b\xf7\xaa\x08\x0d\x5b\x2c\x71\x4b\x2f\x69\x45\xdb\x75\x88\x96\x0b\xd7\x9e\x2e\x10\xf2\x4e\xae\xee\xa7\x80\xae\x6a\x93\xd1\x00\x08\xc9\x87\xc0\x07\xe8\xab\x9d\x50\xf7\xc8\x20\x5c\x96\x5c\x2b\x98\xb8\x2e\xa7\xcc\x17\xb3\x4d\xd9\x71\xdb\x29\x14\x4e\xd4\x6a\xae\xfa\x5b\xe9\xb4\x06\x10\x5b\xc0\xb6\x2f\xa4\x69\x6e\xe0\x0b\xf5\x1e\x52\x62\x9c\xec\x4e\xef\x45\xff\x95\xdc\x79\xcc\xb9\x2d\x35\x9b\xf5\x04\x4a\x29\x5b\x7f\xe3\x1e\x4b\x3a\x93\x38\xf3\xaf\xfa\x64\x89\xfd\xa0\x44\xee\x47\x5f\xd1\x8c\xbb\x7b\xf6\x1c\xf3\xad\xe4\x93\xdc\x2e\x97\xc4\x11\x9a\x6b\x59\x3e\xcf\x6c\xa6\xb3\x23\x60\x81\x71\x77\xc4\x89\xa9\x93\x5b\x6e\x00\x7a\x79\xa3\x4e\xd7\x09\xb3\x4c\x99\x61\xe2\x4e\xc0\x14\x94\xa6\xa6\xd5\x82\x66\xd7\x7a\x94\x2b\x7a\xad\xed\x6f\xe7\x67\xbb\x88\x5d\x93\x66\xd5\x50\x95\xec\x2a\x25\xf2\x52\x88\xb0\xee\x86\x42\x41\x40\x21\xfd\xb9\x31\x8a\x89\xe0\x49\xaf\xb7\xb8\xbf\xd7\x65\xf0\x5a\x12\x5c\xea\xc2\xd2\xab\x72\x7d\x27\xe0\x4e\xa1\xaa\x7b\x8a\x54\xd8\xbc\xb0\x45\x4d\xe9\xbb\xbe\xe1\x0f\x9e\x14\xcb\x74\x90\xac\x56\xd7\xd5\xab\x06\x2f\x97\xa4\x3c\xb3\xe4\xed\xe6\x66\x9e\x9f\xf5\xad\xe7\x5d\xea\xf5\xf8\x16\xf7\x16\x75\x81\xb5\x91\x81\x95\x52\xe0\xae\xdc\x1a\x8d\xb2\x3c\x0f\xa9\xdb\x66\x1d\xa0\x82\xb6\x68\x85\x39\xfa\x57\xc7\x5b\xc5\x4e\x76\xe1\x33\x5a\x55\x48\xdc\x56\x86\xfc\xa6\x5d\x6d\x60\x5b\x3e\xe3\x79\x23\xb3\x9b\x77\xec\x2f\x70\xd4\xe5\xb8\xb5\xac\x25\x94\xb8\x3f\xf0\xad\x39\xa3\x57\xed\xa8\x8f\x33\x3a\xf7\x45\xdc\x39\x38\x9f\xef\xb5\xd9\x6d\x7a\x2b\x86\xe5\x20\xc7\x34\xc5\x52\x8d\xe9\xfe\x0e\x8e\x55\xb3\xf6\xec\x73\x50\x71\x9e\xac\xaa\xb5\x63\x1a\xab\x55\x6b\x3b\x26\xbe\xad\x1f\xb4\x86\x85\x38\x81\x6c\x53\xdd\xfa\x11\x58\x8c\xea\x92\xa1\x89\xd6\x94\xda\x0a\x3b\xed\xe8\x8a\x8a\xd2\xe4\xef\xb7\xfc\x53\x10\x53\x0d\xd3\xe4\x18\x56\xcc\x91\x36\x87\x05\x5e\xba\x0d\x3d\x0d\x10\xa8\x36\x17\x51\x09\x68\xe2\xaa\x47\x60\x42\x24\x49\x0c\xca\xe9\xff\xaa\xf6\x1f\x92\x37\x43\x43\x6c\xf3\xba\x43\x1d\x41\x9b\x53\xd9\x1b\xce\xef\x2a\xf7\xd5\xe3\x91\x74\xe1\xbf\x33\xaa\xa1\x9b\x1c\x31\xa2\x08\x90\x33\x5a\xd9\x39\xfc\x9a\x96\x8e\x26\x6f\xac\xf4\xe9\xce\x74\x49\x89\x00\x97\xe5\x5b\x96\xef\xe7\xaa\xa5\x02\x81\x1e\xe8\x59\xa2\x9c\xc4\x3b\xbd\xe6\x09\xf3\x34\x7a\xa6\x0d\xd7\x87\xd0\x2c\xd3\x7e\xf1\xd4\x5a\xb4\x8f\xd0\xbd\xb7\xba\x39\x8b\x6e\x07\x7a\xb8\x8b\x1e\xee\xa2\x47\xbb\xe8\xf1\xae\x38\xde\x4f\x92\x06\x78\xe8\x28\xf8\xbb\xb6\xd8\x8b\x67\xd0\xdb\x60\x0e\x96\xee\x3a\x05\xe9\x6c\x7c\x23\x26\xe8\x37\xa7\xa4\xd5\x24\x65\xde\x75\xc7\x08\x73\x9f\x95\xad\x21\x24\x0d\x71\xba\x65\xb3\x17\x65\x3a\xb7\xa7\xd8\xf3\xdb\x01\x54\xd7\x2a\x9e\x54\x3e\x93\x8b\x70\xee\x1c\xef\xba\xcc\xe2\x27\xd7\x5e\xa8\xd7\x31\xe8\xab\xbc\x37\xe8\x36\x88\x42\x1f\x9b\x14\xde\x92\x07\x2d\xd1\xcb\x6d\xc4\x51\x1b\xd3\x3f\xd9\x3d\x6f\xa3\x8f\x5a\xea\x94\xfd\x67\x1e\x30\xc7\x23\xd5\x4f\x94\x9e\x2d\xa5\x0e\x4a\xf7\xa7\x00\xff\x41\x88\xd2\x46\x0c\x69\x65\x3b\x47\x82\xf9\x7b\x4c\x89\x39\x99\x06\xa0\xd1\x65\xd6\xb3\x2e\xef\x6a\xbb\xd9\x7e\x87\x0a\xda\xd8\xee\xa3\xbe\xfc\x28\xbb\x54\x4d\x94\x75\x31\xbc\xdb\x0d\x4f\x0b\x11\x13\xf6\x7d\x8d\x3b\xc6\xde\x18\x1b\x23\xba\x3f\xd9\x91\x93\x58\x38\x00\x24\x1c\x00\x0e\x0e\x00\x05\x07\x80\x81\x83\x08\x01\x6f\xac\xe3\x3e\x10\xa5\xa8\x09\x20\x34\x7d\x29\x63\xa3\x8c\x2d\xbb\xde\x2f\x0d\xa5\x3b\xf0\xf6\xe1\x4c\x29\x5f\x8a\x54\xe5\x1b\xfd\x1c\x64\x53\x1c\x06\xbd\xad\x92\x06\x08\x7f\xfc\x7e\xa3\xab\x4d\x93\xd3\xbc\x5b\x1c\xb0\x07\x4e\x15\x8d\x6b\x5c\x75\xc4\x2b\x9f\xb1\x2b\x9e\xe5\x6d\xd3\x15\x2d\xa2\x71\x45\x89\xa5\x6f\x59\xea\xab\xee\x31\xa6\x0e\x03\x94\x13\x63\x95\x5a\x71\xaa\xc7\xf1\x00\xf1\x78\xd0\xfc\xaa\x0e\xf1\x54\x87\x8a\x3a\x9c\xd7\x33\x96\x5e\xce\x4b\xf5\xad\x71\xf8\xa5\x9a\xa3\xd8\x85\xbc\xd3\xd0\x4c\xcc\x73\xf6\xbb\xbb\xe8\xcb\xa0\x99\xe2\xc7\xd4\xae\xdb\xf7\x03\x0b\x94\xab\x5d\xcd\x49\xf1\xde\x54\x72\x91\xa6\x13\x0e\x6c\x4c\x75\xb3\xd4\xf5\x85\xb9\xb8\x24\x2b\xb6\x22\x4d\x81\x39\x41\x73\xf2\x01\x15\x73\x2c\xe8\x43\x57\xde\x01\x2f\x8b\xaa\xd3\x4a\x6a\xde\x35\xc4\x78\x50\x6d\x03\xb0\xb2\x5b\x56\xd2\xad\xa2\xf5\x17\xef\x94\x51\xfe\x0f\x5c\x51\x65\xbf\x9c\xfc\x8c\x68\xbd\xec\x5a\xc7\x3d\x28\x38\x6b\x60\xc9\xbc\x5c\xb7\xe4\x1f\xa4\xe1\xb2\xdb\x27\xbc\xb0\xdf\xb5\xb3\xaf\xed\x36\x8b\x2d\x36\x73\x15\xbb\xec\xbe\xe2\xef\x2c\x9d\xa1\xc9\xc4\x3e\xfb\x14\x3d\xfe\x7a\x07\xfd\xf6\x1b\x72\x3e\x7b\x86\x9e\xfc\xb7\x90\x31\xdc\xa7\xfe\xf2\xdf\xf1\x53\x87\x07\x0f\x93\xa9\x8c\xda\x51\x05\xc5\x39\xd2\x7b\xf8\x31\x72\x6b\x19\xb9\xd1\xd9\x3a\x1b\x1b\x9d\xaf\xc3\xa3\x0e\x7e\xb5\x46\x44\x06\x05\x79\xd8\x8e\xe3\x85\x02\xfc\x66\xb5\x39\xf1\x5c\xc4\x95\x7c\x70\x3b\xb6\x04\x09\x4a\x99\x3b\x6a\xd5\x9d\xd6\x71\x24\x83\x3a\x6b\x0a\xf9\x2f\x1b\xb6\x64\x3d\xd1\xf4\x02\xd4\x99\xad\xbf\x14\xac\x7e\x57\x5a\xd4\x4c\xbc\xb5\xea\xad\xe8\x86\x00\x81\x25\xc0\x80\x9a\xe3\x6b\x30\x09\x78\x7d\x5b\xd1\xa5\x6c\xd8\x01\xb7\xab\xed\x2a\x8b\xab\x2b\xd6\xd0\x76\xbe\x40\x6b\x62\x6d\xf5\x27\xa6\x10\x79\xb8\x13\xa4\x2e\xf9\xae\x71\x31\x42\x32\x8f\xac\x5a\xde\xd5\x9e\x87\x89\xdb\x52\x55\x06\xaa\xdb\x5f\x5f\x76\xbc\xb4\xe5\xac\x54\xc9\x28\xf1\x55\x36\x88\x7c\xd7\xb1\x41\x50\x2e\x0d\x00\x80\x15\x5c\x14\x5d\x83\x5b\x52\xad\x51\x43\x96\x0d\xe1\x3a\x74\xc5\x89\xbe\xd6\x1d\x00\xd2\xa9\x42\xae\x3b\x46\x6d\x56\xda\xf3\x90\x71\x3d\xe4\x1a\x05\x28\x10\xde\x5b\x41\x9d\x9b\xd1\x95\x7d\x7a\xea\x45\xdd\xb8\x56\x94\x3b\xaf\xa5\xbf\xf0\xc4\xbc\x5c\x0b\x76\xd8\xde\x40\x62\x22\xd1\xc0\xf1\xf6\x61\x75\xc8\xad\xc1\xfa\xd6\x8f\x04\xf1\x83\x8a\xf2\x51\x56\x31\xb4\x2b\x2f\x82\x2b\x3d\xb7\xd1\x11\x6f\xf1\xc4\x72\x61\x5d\x49\xfc\x9c\x73\xbd\xb9\x8a\x71\x1d\xa3\xe1\x72\x48\x29\x40\x3f\x12\x7a\x35\x0f\xca\xa9\xd2\x9a\xb6\x14\x57\xf2\xab\x28\x2f\x05\x42\x32\xf6\x7c\xef\x30\xd8\xea\xd0\x44\xa6\x7b\x50\x56\x4f\x55\x9b\x3f\xf9\x6b\xcd\xc5\x9d\xc8\xa7\xd7\xa4\x01\x1e\x20\x3e\xde\x09\xc1\x6a\xdd\xd4\x00\x3e\x79\x79\xa6\xca\x8d\x76\xb3\x19\x2d\x28\xa9\x55\x85\xab\xf0\xd6\xea\x89\x97\x14\x97\x55\xb0\x6d\xf7\xef\x07\x08\x4c\xdc\x53\x01\x61\xe7\x8c\x18\xfa\x47\x97\xdd\x0c\xae\xb4\x70\x85\x4b\xd2\x2c\x28\x17\x37\x6f\xa5\xd9\xb0\x46\x9c\xe4\xcc\x11\x4e\x5e\xbe\x7a\xfb\xfc\x08\x9d\xf8\x6c\x9b\x0a\x11\x5d\xc5\xf2\x91\x12\x2d\x1b\x6a\x1d\x8c\x87\x07\x07\x7b\xd0\x7d\x50\x26\x51\x35\x32\x68\x33\xea\x01\x35\x9d\xa2\x89\x04\x14\x62\x7d\x47\x09\x2b\xad\xe1\xbd\xaa\xcc\x1f\x46\x2d\x59\x2c\x59\x23\xb4\x8b\xab\x06\x17\x60\xe8\xa5\xcc\x7c\x1f\xc2\x97\xe0\xdb\x39\xe1\x44\x3c\x5f\x97\x33\x0c\xc2\x50\xd4\x76\x69\x81\xd7\x88\x77\x97\x60\x69\x06\x36\x2b\x16\x2b\x46\x89\x96\xb0\x1f\x8e\x01\xa6\x6a\x48\x3b\xf2\x50\x04\x6b\x22\x54\x0c\xe7\x11\xd4\xab\x37\x69\x7a\x3a\x0a\xe1\xa2\x3d\xf4\xaa\x12\x04\xc8\x23\xfc\xec\x4a\x5f\xb5\x6c\x0f\xcd\x56\x52\xe2\x03\xa8\xff\x4b\x1a\x96\xa0\x4f\x09\xee\x25\x59\x49\x70\x78\x0d\x89\x72\xb5\x0f\x0f\x46\x51\x73\xbb\x54\x6c\x6a\x53\xaa\x3f\xf6\xa8\x3e\xa4\xd1\x49\x70\x0a\x54\x55\x63\x7b\x0a\x52\x2f\x39\xfc\xe1\x19\xf2\x93\xf1\x3e\xd5\x99\x89\x7f\x53\x72\x58\x00\x3e\xe9\x84\x8f\x84\x2b\xb7\x3e\xb6\x15\xb0\x00\xd1\xe4\x9a\x34\xce\x31\x0a\xef\xf4\xfe\x28\x82\xbc\x39\xa0\x36\x7d\x7a\xfa\xb5\x8d\xa8\xf0\x30\xe5\x9a\x51\xd9\xa2\x2a\x6e\xe8\xad\x2e\x99\xe9\x1e\x67\x5d\x03\xd4\x8f\xf1\x97\x15\x41\x55\xfe\x85\x14\xfd\xe0\x65\x45\x24\x07\x7e\x90\xb4\x62\x3a\x56\x09\x19\x75\x7f\xc9\x46\x71\xbe\xa5\x32\xa9\xa1\xb8\x21\xe4\xc3\x19\x33\x19\x11\xe5\xbc\x2e\x58\xd3\x90\xa2\x55\x1e\x26\x6d\x91\x9d\xd9\x72\x33\x72\xd5\xfb\xe8\xef\xea\xbc\x1e\xec\xc6\x46\xce\x38\x62\xce\xac\x08\x3d\x3b\xf6\xa6\x3a\xac\x6f\xd8\x48\x4a\x93\xc5\x84\xb0\xcc\x88\x02\xe5\x23\x19\x09\xe7\x12\x58\x98\x47\xa5\x63\xe1\xb0\x9f\x5b\xd7\xaf\x98\x5c\x91\xd6\x8f\xa1\x33\x0a\x49\x94\xa7\x45\xf4\x08\xbb\x32\xb2\x4e\x8d\x13\x99\x19\xc7\x2d\xf5\x3d\x59\x6f\xb8\xcc\xef\xc8\x5a\x4f\xd5\x89\xec\xbb\xfd\xf2\xbe\x23\xeb\x60\x65\x26\x3a\x6e\xdc\xaa\xf4\xe9\x1a\xbb\xa4\x0b\x93\x72\xb6\xc5\xf5\xd8\x3c\xb6\x11\x8b\xb1\x0e\x4e\x35\x57\xde\xe2\xb6\x03\x6f\x28\x56\x66\x9c\xae\xc2\x4d\x26\x5c\xd3\xf5\x51\x78\x31\x99\xd1\xec\xbc\x80\xcc\xe4\x22\xff\xeb\xbf\x46\xc5\x5f\xea\xc8\xd9\x6d\x87\x60\x06\x38\xce\xc4\x5b\xe6\x74\x71\xd7\xa0\x9e\x0f\x7a\x34\x91\xf0\x32\x14\x79\x8e\x39\xe2\x24\xb2\xb2\xfb\xaa\xd6\x27\x8c\xc5\x53\x03\x25\xc3\x05\x52\x0b\x72\x03\x2a\x38\x71\xda\x64\x49\xe5\xb6\x21\x65\x57\xd8\x70\x44\x50\x72\xdd\xae\xa1\xde\x95\x98\x69\x62\x97\x68\x20\xba\xc9\x72\xd5\x3b\xb9\x05\x67\x86\xcd\x11\x4c\x61\xd4\xd9\x2b\xd9\xa4\x2f\xdd\x44\xf5\x5e\xfe\x50\x79\x37\x8a\x7b\xe7\x26\x9a\x88\x36\x50\xf3\x21\x8e\x2c\x89\x6f\x38\x00\xe0\x19\xcc\x7b\x51\x95\xba\x23\xd3\xe2\x4e\x8f\xd9\xdf\xf5\x14\x65\xda\x61\x1a\x60\x82\xdd\x79\xdd\x44\xd8\x4c\x7a\x03\x4c\x51\x0b\x67\x7d\x6f\xf3\xe5\x27\xc6\x2f\xb1\xa7\x86\x45\x76\x6f\xc2\xae\x6f\xa0\xeb\xc8\x55\xbb\x06\xbf\xf4\xda\xd8\x0c\x05\xdd\x5f\x79\x32\x0c\x37\xb9\x5a\x5d\x4c\xc0\xf4\xe3\xb7\x8b\x0a\xba\xaa\x66\x3a\xf6\x6b\xf3\x87\x58\x9f\x18\x76\xb3\xaa\x1e\x29\x53\xfc\x74\x8a\xce\x18\x90\xba\x0c\x5b\x74\xcd\x7b\x29\x6d\x01\x46\x76\x95\xe3\x58\x88\xf7\x9b\xc3\xba\x7f\x7d\x79\x93\x32\x24\xe2\x97\xa0\xe3\x76\x8f\x88\xef\xf6\x51\xcd\x13\xc0\x7b\x52\xeb\xe2\x14\xca\x1b\x93\x8d\x4a\x77\xf6\xf0\x79\x50\xdb\x21\xb9\x91\x2e\x75\x86\xc5\x20\xf2\x77\x70\xd7\x7a\x6d\xd9\x82\x0c\x44\xdd\x88\x99\x82\xa6\xe8\xeb\xbe\xe1\x24\x4d\xd3\x0a\xdb\xf8\x6c\x70\x9e\x75\xa6\xed\x45\x6e\xba\xc0\x0a\xb9\xdb\x31\x11\x8e\x8f\xed\xe3\xe9\x98\x25\x1a\x52\x50\x72\x6d\x03\xab\xa4\x39\xe2\xd4\x1c\x33\x95\x52\xd9\xf1\x58\x7f\x92\x13\x79\x03\x83\x8d\x67\x09\x8d\xf3\x96\xbb\x02\x5a\xd3\x76\xf2\x33\x0a\xf7\xc4\xea\x21\x3f\xab\xd5\x9c\xfa\x1f\x16\x71\xa4\x4c\x14\xc1\xe5\x1e\x83\x38\x7f\x42\xe8\xae\x81\xb7\x3e\x30\xf5\x07\xd1\x93\x92\xad\x3c\xdd\xf3\x4c\x9f\x49\x21\x29\x6d\x2e\xcd\x4f\x25\x93\xca\xd1\x23\x42\xee\xdc\x02\x5a\x52\xc0\xde\x0e\xc0\x50\x21\x09\x51\x68\xd3\xea\x1d\x01\x14\x1d\xc7\x2e\x60\x95\x8d\x9e\x78\xf1\x75\x77\x59\xd1\x42\xbf\xb7\x84\xbf\xb2\xaf\xe9\x52\x40\x42\xbe\x1b\x18\x51\x3f\xe6\x03\x30\x71\xc1\xc3\x6f\xdb\x84\x43\x1f\x44\xea\xbe\x17\x04\xa1\xb3\xad\x8f\xd0\x13\xe8\x94\xad\x23\x7d\x8e\xd0\xc3\x27\x07\x07\x07\xce\x67\x0f\xe1\x19\xff\xb3\x47\x3b\x47\xe8\x30\x7c\xf0\xb1\xf8\xf0\xd1\x13\xef\xb3\x27\xe2\x33\xf1\x41\x40\x80\x3d\x0c\xde\xce\x4e\xcc\x26\x98\x48\x30\x87\x60\xf4\x60\xe0\x78\xd8\xa8\xc9\xf6\x71\x74\xf6\xe3\x53\x97\xe0\x82\xe8\xd8\xf2\x05\xff\x05\x97\xd3\x84\x2b\x39\xfc\xea\x6b\x7f\x2d\x4f\x0e\xbf\x0e\x56\xf3\xdf\x5f\xfb\xeb\x79\xf8\xe8\xab\x68\x45\x29\x17\x4e\xd0\x54\x22\x77\xee\x33\x99\x53\x38\x94\xfd\x93\x27\x31\x52\x24\x9c\xd7\xd2\x81\x47\x9e\x4e\x11\xf8\xab\x5c\xe1\x3b\x98\xbd\xe6\xe5\xfd\x7c\x2b\x21\xe8\xc7\x50\xd3\xf3\xca\x8a\xfe\xbe\x89\xe9\x86\x4d\x3b\x3e\x47\xb0\xbb\x37\x51\x88\xdb\xf7\x23\xa0\xf2\x91\x58\xc7\xa3\x83\xa1\xd0\x88\xf0\xb3\xc4\xd0\xe3\x62\xd0\xcc\x08\x6e\x52\x43\x18\x00\x0e\x21\x57\x63\xe7\x12\x47\x43\x27\x6e\xe9\x11\x93\xd3\xc1\x53\x1e\x8a\xb9\x89\xaa\xca\xc5\xc6\x1c\x0a\x66\x08\x48\x55\xbf\x3d\x32\xbf\x3d\x36\xbf\x3d\x51\xbf\x7d\x8c\x96\x0f\xce\x70\x19\x62\x36\x1a\xf9\x76\x52\xc1\xb2\x32\xe1\x60\xd1\x8a\x6e\x1c\xed\x93\x9c\x7d\xe1\x87\xc5\x8c\x99\xbd\x9c\x40\x7e\xf6\x41\x20\x56\x5f\x42\xaa\x29\x0c\xa0\xb2\xb2\x25\xd0\xbe\x7b\x58\x6b\xea\x1f\xef\xa0\x3b\xff\x3f\x00\x00\xff\xff\x17\x1b\xe1\x5e\x57\x74\x01\x00" +var _flowidtablestakingCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xeb\x72\xdc\x36\xb2\xf0\xef\xe3\xa7\x80\x5d\xf5\xd9\xa3\x44\x57\x5f\x72\xb2\x2a\xcb\x59\x59\xb2\xf7\xa8\x9c\x95\x5d\x96\xb3\xf9\xe1\x4a\x65\x21\x12\xa3\xc1\x9a\x43\x4c\x08\x52\xe3\x39\x89\xdf\xfd\x2b\x34\xee\x37\x92\x23\x8d\x9d\x6c\xf6\xa8\x92\xb2\x34\x43\x36\x80\x46\xa3\xd1\xf7\xde\xfb\xea\xce\x1d\x84\x10\x7a\x59\xb1\xe5\xd9\xe9\x3b\x7c\x59\x91\x8b\x16\x7f\xa0\xf5\x95\xfc\xfc\xdd\x8c\xc0\x77\xe8\xec\x14\xc1\xb7\x08\xd7\x25\x52\x8f\xa0\x82\xd5\x6d\x83\x8b\x16\xcd\x71\x8d\xaf\x08\x87\x57\x6a\x56\x12\xc4\x16\xa4\xc1\x2d\x6b\xf8\x03\x78\xa1\x24\x15\xb9\x52\x7f\xd3\x7a\xca\x9a\x39\x6e\x29\xab\xe1\x79\xf1\x3d\x0c\xd1\xb2\x0f\xa4\xe6\xa8\x9d\xe1\x16\xe1\x86\x20\xde\xe2\x0f\xa4\x44\x98\xa3\x05\x6e\x5a\xc4\xa6\xa8\xd5\xb3\x79\xd3\xb0\x96\x15\xac\xda\x95\xb3\x3c\x67\x25\xe1\x88\x77\x97\x73\xda\x8a\x87\x68\x23\x5f\x46\x2d\x83\x77\x16\xdd\x65\x45\x0b\x84\xcb\x52\x3c\x79\x56\x4f\x19\x9a\x76\x75\x61\xa6\x50\x76\x8d\x58\x8e\x78\x94\xab\xa5\xe1\x0e\xbe\x46\x8b\x19\xe6\x64\x57\x23\x83\x72\xd4\x90\x82\x35\x25\x57\xc3\x88\xc5\xc0\x0a\x0a\x36\x9f\xd3\xb6\x25\xa5\x5a\xc6\xae\x40\xdd\x0a\xe1\x8a\x33\xb4\xa4\x55\x85\xae\x48\x8b\x30\xcc\x14\x60\xbd\xbe\xfc\x17\x29\x5a\xb9\xd8\x56\x3c\x59\xe0\x1a\x75\x1c\xa6\x0c\x73\xdf\x46\x5d\xad\x7e\x11\xf0\x97\xb4\x9d\x95\x0d\x5e\xa2\x86\x2c\x71\x53\x72\x35\xa5\x17\xb8\x98\x49\x8c\xcf\x30\x47\xf3\xae\x6a\xe9\xa2\x22\x72\x0e\xe8\xb2\x2b\x3e\x90\x56\x61\x74\xc6\xaa\x52\x4d\x5a\xce\x10\xde\xbf\xc4\x9c\x94\x88\xd5\x16\x6b\x6d\xc7\x0f\xed\x6a\xb6\xd5\x2e\xe8\xd9\xd0\xfa\xca\x4c\xac\x94\x33\x93\x13\x22\xa5\x9a\xd1\xa9\xd9\x6a\x58\x12\x20\xa0\x21\x57\x94\xb7\x44\x8c\xac\x49\x81\xa0\x97\xdf\xbf\xfe\x51\x7c\x80\x7d\x8a\x19\xb5\x21\xe8\x72\x85\x3a\xae\x1f\xd1\xe0\xcf\xc9\xd2\x8c\x3e\xd9\x32\x5b\xbc\xab\x29\x79\x85\x66\xf8\x9a\x48\xa8\x78\x9e\xc4\x92\x4f\xbc\xa8\x64\xbb\xf6\x1c\x1c\x97\x73\x5a\x03\x9e\x05\x04\xdc\xb5\x33\xd6\xd0\x76\x25\xd6\xd0\x90\x39\xbb\x26\xf2\x6d\x45\x20\xdb\xf0\x5e\x43\xa6\x5d\x5d\x22\x5a\xf3\x6e\x3a\xa5\x05\x25\x75\x5b\xad\x34\x65\x8b\xc7\xf9\x36\x5a\xe0\x95\xde\xd5\x6d\x73\x22\x00\x9e\x3a\x11\x97\xa4\x5d\x12\x3b\x53\x20\x2d\x4e\x24\x59\xcd\xf0\x62\x41\x6a\xc4\xea\x82\x20\x72\x4d\x9a\x15\x22\x0b\x56\xcc\xd4\xb4\x2f\x08\x11\x54\x4f\x05\x1a\x70\x65\x70\x59\xb2\xa2\x9b\x93\xba\x85\x43\x88\x66\xa4\x21\x87\x68\xd6\xb6\x0b\x7e\xb8\xb7\x57\xb2\x82\xef\xb2\x7a\x5a\xb1\xe5\x2e\x6b\xae\xf6\xd4\x3b\x7b\x77\xee\xa0\xaf\xf6\xee\xdc\xa1\xf3\x05\x6b\x5a\xf4\xb2\xab\xaf\xe8\x65\x45\xde\x01\x0a\xa7\x0d\x9b\xa3\xfd\x8f\x2f\x7f\x38\xff\xdb\xd9\xf3\xef\x5f\xbc\x7b\xfd\xea\xc5\xf9\xf1\xe9\xe9\xdb\x17\x17\x17\xe6\x85\x8a\x2d\xfd\x87\xbf\x7f\xfd\x63\xee\xc1\x97\x84\x70\xf7\xb9\x97\x2f\x5e\x5c\x04\x8f\x9d\x34\xab\x45\xcb\xee\xdc\x59\x74\x97\x96\x0d\xc5\x5c\x0c\xfd\x2a\x11\xb1\xf7\x15\xfc\xa4\xd9\xd8\x8b\x6b\x52\xb7\x1c\xc9\x47\xf6\xe4\x0b\x02\x2e\x11\x9f\xa3\x73\xb2\x7c\x21\x50\x3a\x69\x59\x8b\xab\x0b\xd8\xba\x43\xf4\xc3\x4b\xfa\xf1\x9b\xc7\xdb\x08\x3e\x7c\x0b\xbb\xf7\x06\xaf\x58\xd7\xea\xaf\xb6\x02\x30\x00\xe3\x9d\x7d\x9a\xbf\xc1\xb4\x94\x30\x2d\x34\xb1\x66\xb1\x78\xfb\xc9\x9c\xd6\xad\x3b\xde\x94\x10\xfe\xbc\x6b\x6a\xfb\xd9\x96\x5a\xe1\xde\x1e\x70\x17\xb5\x9a\x78\x11\xe2\xcb\x93\x86\xe0\x96\x94\x13\x41\x79\x67\xa7\x87\xe8\xa2\x6d\xe0\x44\x37\xac\x22\x87\xe8\x87\xb3\xba\xfd\x76\x1b\xe1\x39\xeb\xea\xf6\x44\xb3\x80\xdc\x82\x60\x37\xb9\x79\x2c\x82\x29\xc1\xf4\xbf\x2d\xb1\xb9\xe6\xab\x62\x21\xf2\xf5\xb7\xe4\x97\x8e\xf0\x96\x94\xef\xd8\x0f\x92\x27\xdd\x68\x16\x3f\x68\xd6\x76\x8b\xb7\x6f\xb4\x8a\xb7\xc0\x36\xca\xe3\xba\x7c\x0b\x7c\x62\x6d\x20\x2e\x29\xad\xf7\xa6\x9e\xb5\x5c\xc3\x8f\xea\x76\xa9\x6f\x34\xfe\xed\x60\x9c\x93\x76\xc9\x1a\x81\xfe\xe3\xb2\x6c\x08\xe7\x3f\x2c\xca\x24\x91\xd6\x64\xa9\x9e\xd0\x9f\xa5\x70\xfa\x23\xa1\x57\xb3\xf6\x64\x86\xeb\xab\x34\x0c\xf9\x80\xa4\x76\xef\xf4\x98\xbb\x23\x7b\x84\xcc\x13\xb9\x73\x64\xe4\x1c\xf1\xa1\x18\xe0\xd1\xc3\x70\x8e\x06\xc6\xd0\xf9\x49\xc0\x1a\x42\x65\x00\x3b\x73\xba\x6e\x0f\x78\xc4\xb9\xbb\xfd\x20\xf9\x53\xb9\x29\xd8\x1b\xc6\x4d\xdf\x61\xbc\x0d\xdc\xb1\x47\xf5\xf6\x73\xdf\xc8\x08\xe6\x3c\x9d\x98\x6b\x99\x92\xaa\x44\xf2\x48\x8e\x38\x5b\x5d\xfb\x86\x34\x85\x10\x4f\xae\xc8\xa4\x26\x4b\xef\x83\x3c\x17\x59\xfe\x48\xc8\x87\x6a\x25\x6f\x61\xf1\x5e\xff\x7d\x7c\x4e\x96\xea\xfe\xff\x3b\xad\xe9\xbc\x9b\x73\xf1\x8e\xfe\xfd\x10\xfd\x0a\xb7\xa1\x7e\xfb\x53\xe2\x75\x33\x63\x1f\x8e\x03\x26\x81\x94\xff\x61\x95\x54\x1e\x10\x2d\x49\xdd\x82\xfc\x08\x02\xc9\x94\x35\x08\x57\x15\x7c\x05\x82\x21\xa2\xb5\xfc\x43\xf2\xc7\x5d\x03\xe2\xac\x2e\xaa\x4e\x3c\x20\x1f\xd3\xfa\x52\xfd\xa0\x45\xb8\x68\xe9\x35\xa9\x56\xa0\x31\xd1\x82\x2e\x70\x2b\x54\x39\xfd\xe6\x07\xb2\x42\x47\x52\x4a\x3d\x3b\x35\x9f\x5e\xe3\xaa\x23\xe8\x48\x89\xd2\x42\x78\x95\xba\x96\x12\x87\x1f\x70\xd0\x72\xb6\x95\x34\xba\x1d\x28\x74\x52\x62\x2d\x0a\xc2\xf9\x44\x0b\x62\x5b\xe8\x1a\x37\x72\x7a\x87\xe8\xaf\xbf\x4a\xf2\x39\x54\x57\x9e\x18\xe0\x93\x45\x88\x90\xac\xe7\x12\x5d\x8a\x94\x60\x74\x47\x17\x24\x42\xc7\x81\x23\xd0\xa0\x76\xb5\x90\xaa\x8e\x56\x93\x0c\x1c\x5a\x23\xd6\x94\x52\xc7\xb8\x24\x42\x26\xe4\xb4\x24\x0d\x29\xc5\xfa\x68\x69\x9e\x7b\x45\x56\xfc\xd0\xfc\x75\x80\x76\xd0\x09\xab\x2a\x52\x08\xbe\x0f\x7a\xa4\xf9\xee\x21\x7c\x57\x73\x52\xf3\x8e\x07\xdf\x3d\x42\x3b\xe8\xc5\x47\x52\x74\x20\x41\xfb\xdf\x3d\x46\x3b\xe8\x1f\xa4\xa1\x53\x5a\xe0\xc4\xd7\x4f\xd0\x0e\x3a\x06\x7c\x39\x5f\x28\x04\xe2\xa2\x10\x18\x90\xf8\x53\x58\x01\x2e\x2e\x38\x2e\x6d\x84\x30\x16\xd0\xa5\x8f\x48\x10\x27\x33\x68\x74\x54\xea\x88\xd6\x0c\x10\x36\x95\xe8\x06\x1a\x01\x64\x3b\xaa\x58\xd1\x35\x8d\xa0\x7d\xd0\x30\xb2\xd3\x86\x39\xb8\x17\xd0\xf3\x15\x48\x6c\xab\x05\xb9\xe5\xec\x17\x98\x82\x39\x40\x29\x4b\xae\xbe\x63\xe0\x14\xac\xab\x4a\x41\x00\x73\x5c\x77\xb8\xaa\x56\xa8\x90\xa2\x80\x50\x19\x41\x6f\x03\x2d\xae\x21\x9c\x75\x4d\x41\xb2\xab\x20\x52\x5c\xff\x40\x6a\x9f\x8d\xf8\x33\x6e\xc4\x06\x6b\xcb\xc4\x12\xf8\x0f\xc2\x72\x72\x96\x74\x2d\x2e\xaf\x48\xcb\x53\x87\x51\x88\xdf\xd1\x71\x2c\x49\x41\xe7\xb8\x42\x75\x37\xbf\x24\x8d\x51\x02\xf7\xe1\xfc\x1d\x20\x5a\x97\x40\x5f\x42\x35\x46\x0b\xc3\x1f\xad\x2e\xf0\xfa\xdd\x8b\x43\x74\x22\xb7\xac\x5a\x21\x2a\xf8\x45\x8b\x3a\x4e\xca\xfc\x91\x95\x98\x7d\x2b\x56\x15\xb3\x40\x7f\xe9\x76\x48\xb1\x7e\xbd\x25\x72\xd5\xb0\x2f\x9e\x2a\x8d\x04\x25\x48\x9d\xce\x40\x11\x38\xeb\x38\x69\x9c\x1d\x56\x6c\x05\x08\x8e\x21\xda\x66\xb7\x47\x00\x3f\x35\x0f\xcb\xdb\xeb\x24\xb5\x4b\x6f\x70\x3b\xe3\x40\xf0\xbc\x65\x40\xc9\x5a\x09\xd6\x24\x60\xef\xa2\x8a\x48\x11\x12\xc8\xb6\xb9\x68\x59\x83\xaf\x88\x00\x20\x6e\x40\xf3\x47\xe6\xf1\x37\x60\x63\x92\x4f\xdb\xdf\xbd\x87\xd5\x3d\x01\x76\x84\x51\xd0\x9d\x1b\x26\xf3\xb4\xab\xdc\xf6\x68\xb8\x27\x6c\xbe\x60\x9c\xb6\x04\x89\x63\x88\x4e\xc9\x94\xd6\x60\x14\xd0\x5a\xef\x57\x9e\xf2\xab\x6f\x6f\x4c\x6b\xee\xda\xeb\xe4\x46\x51\x8e\xf8\x82\x14\x82\xbf\x39\xf6\x1b\x5a\x83\xfa\x6d\xe6\xaf\xd1\xeb\x70\x7d\xad\x8c\xbb\x64\xd4\xd5\xf4\x97\x4e\x5c\x47\xfa\x14\xd5\xda\x42\xa6\x9f\xba\x20\x2d\x5a\xce\x48\x6d\xbe\x15\x13\x28\xa4\x00\x6e\x1e\xd4\x18\xa3\xa5\x96\x56\xe2\xa1\xe0\x08\xb2\x29\xc0\x38\xf4\xbe\x3d\x40\x47\xa8\x90\xb7\x80\x36\x09\xda\x4b\xe0\x08\xee\x12\xb8\x04\xbc\x6f\x1e\xa1\x23\x44\xf4\x15\xe0\x7d\xf3\x18\x1d\xa1\x6b\xe7\x02\xf0\xbe\x7c\x82\x8e\x14\x45\x7b\x93\x87\xd3\x67\xb5\xf0\x3b\xee\x97\x13\x4e\x34\xd9\x87\xba\x92\x59\xed\xc0\xe3\xaf\xc8\xaa\xff\x51\x75\x2a\xdc\xe7\x7c\x04\xbe\x3e\x7d\x7d\x88\xde\x34\x8c\x4d\x05\x0e\xdf\x30\xce\x09\xe7\x82\x26\x26\x6f\xd8\x9b\x2d\xbd\x7b\xfa\x70\x2d\x1a\x7a\x8d\x5b\x22\x98\x5c\x62\x23\x80\xcf\xbb\xdc\x9d\xd5\x95\xe0\xce\x54\xca\x34\xfa\xa2\xa9\x56\x70\xd5\x6b\x63\xa3\x60\x5f\x14\x64\x1f\xb0\x61\xf9\x12\x88\x85\x4f\xb9\x62\xa1\xf3\x8e\xb7\x08\x57\x4b\xbc\xe2\xe2\x42\xc0\x97\x4c\x19\xff\xb4\xb8\xd1\xc8\x4b\x75\x2e\xee\x34\x29\x4f\x18\xd3\x9c\xb8\x20\x8b\x82\x2c\xda\xd4\x38\x7a\xbf\x5a\xe7\x92\x3b\x44\x7f\x35\x26\xae\xdd\x7f\xe0\xae\x6a\x53\xeb\xb6\x2b\xb6\x8b\x15\x4b\x74\xad\xc7\xca\x74\x2d\x58\x96\x14\xff\x3e\xb6\xda\xa6\xe7\x02\xfc\x3b\xbb\x26\x5c\x1b\xb8\xdd\x99\x28\x33\x21\x92\x86\x65\x44\x6a\x10\xe7\x70\xed\x5c\x94\xf1\x22\x1c\x6b\xcf\x6d\xd6\xa1\x2d\xc3\xd2\x78\x07\xa6\xf7\x86\x5c\x53\xd6\xf1\x60\xf4\xcc\x0a\xb4\xaa\xd3\xbf\x86\xdd\xcc\x22\x8c\xc6\x38\xb8\x88\xe1\x05\x08\xee\x29\x6e\x24\x60\xa5\x2d\xb3\xf6\x77\xc1\x8a\xc4\x05\x27\xad\xf6\x4b\x5c\xb7\xbd\xb3\x19\xc6\xe8\x85\xb9\x8f\xe4\x15\x6a\x24\x1d\xc0\x0c\xe5\x0a\x17\x99\x51\xde\x2a\xeb\xfb\xd0\x28\x15\xe5\x20\x53\x59\x72\x56\x14\xa6\x57\xef\xd9\xdf\x91\xc3\x52\xed\x1b\x42\x96\x97\x5a\xdf\xa1\xab\x39\x3a\x02\xbd\x4b\x25\xb4\x2e\xe4\xd9\x12\x8b\x3b\x3b\x05\xc9\x43\xda\xca\x95\x33\xa0\x26\xcb\xcc\xe9\xb2\x6c\xc9\xd1\x38\x4f\xc4\xed\x4f\x1a\xad\x78\xc6\x03\xa6\x05\x47\x7f\x7f\x1b\x6d\xb9\x10\x33\x51\x9b\x9d\x38\x6a\xe9\xc9\xb4\x19\xe3\x87\x2f\x75\xe8\x29\x2d\xc1\xce\x24\xe4\xd5\x92\xb4\xa4\x99\xd3\xda\x11\x42\xe5\x54\x35\xad\x4d\x5b\x49\x4f\xa1\xb3\x23\x3d\x0d\xb8\xba\x71\xe5\xdb\xb1\xec\xd8\xe2\xeb\x89\xf9\x0b\x3e\x31\x97\xe2\xb6\xf7\xb9\x6b\xf5\xf5\xbe\xc8\x5e\x33\xb9\xc7\x9c\x6b\xc3\x7f\x24\xbe\x56\xfc\xef\x13\xdc\xc7\xf5\x2c\x28\x4a\xd6\x4f\x6f\xa1\x5f\xbd\xb7\x17\x0d\x09\x3e\x91\xcb\xdd\xad\x48\x7d\xd5\xce\xd0\xd1\x11\xfa\xe6\xf1\x21\xba\x77\x2e\x35\x5e\xa4\x3e\x86\x8b\xe1\x92\xa0\x47\x0f\xd1\xe5\xaa\x25\x1c\x4d\xbe\x79\x8c\x66\xe4\xa3\x50\x15\x84\x2c\x4c\x1a\xbe\x75\x2f\x02\x1b\x3b\x17\x76\x29\xff\x87\xd0\x2d\xc1\xa9\x78\x3a\xa1\xe5\xd6\x21\xba\xf7\x4e\x4b\x29\x67\xa7\x72\x20\xf0\x39\xc1\x05\x27\x25\x79\x0e\xbc\xa5\x62\x4b\xd2\x14\x98\x93\x60\xe0\x51\xe3\x82\xce\xf6\x9e\x96\x3f\x89\x15\xd6\xb4\x52\xc3\x9e\x9d\xa2\x02\xd7\xe2\x9a\xc4\x55\x43\x70\xb9\x42\xe4\xa3\x38\xf6\xca\x90\x20\x75\xfb\x78\x00\x41\x06\xe8\xd9\x91\x24\x84\xc9\xc1\x16\xba\x7f\x5f\x7e\xf6\x54\x7f\xf6\x44\x2f\x0c\x3e\xd6\xe8\x3b\xd8\x46\x0f\xb7\xd1\xa3\x6d\xf4\x78\x5b\xdc\x97\x4f\x62\xc8\x11\x1d\xe9\x8d\x79\x86\xf6\xc5\x28\xd9\xef\x9f\x1e\xa1\x27\x07\xfb\x1a\x9b\xe1\x53\x66\x06\x95\xf8\xa3\x9d\xe1\x5a\x3c\xdd\x8b\x44\x8f\x54\x1d\xf2\x38\x78\xf8\x6d\x34\xca\x2b\xb2\x0a\x29\x85\x7c\xc4\x85\x10\x47\xbe\x79\xac\x29\xe6\xe0\xe1\xb7\xc3\x24\x63\xa9\xdf\x1d\xf2\x2f\x0f\xd5\x90\xf6\xeb\xdc\x78\x7f\xf9\xc6\x8c\xf7\x97\x87\xc3\xe3\xdd\x4d\xd0\xca\x15\x69\x23\x0b\xfb\x49\x85\xe9\x9c\x94\x13\xac\x4f\x77\x84\xe2\xad\x2c\xee\x15\x85\x01\x55\x6b\x32\xbb\x14\x8a\x69\x21\x81\xde\x60\x56\xaf\xc8\x4a\xcf\xe8\x83\x60\x14\xde\x56\xc4\x33\x79\x25\xbd\xe5\x9b\x99\xc5\x85\xd9\x03\x6f\x0a\x76\x6b\xb6\xe2\xcd\x5a\x6f\x70\xe7\x6a\x14\x3f\xe2\x4a\x05\xbe\xff\x0a\xf4\x7f\xa9\x2a\xbe\x22\xab\x49\x34\xe3\x85\xfe\xca\x9d\xce\x6e\x49\x0a\x56\x92\xff\x21\x1f\x27\x5b\xdb\x31\xc1\xd1\xab\x1a\xb7\x5d\x43\x8e\xab\x2b\xd6\xd0\x76\x36\x3f\x44\x17\xd1\x67\xbb\xcf\xbf\xbf\xf8\xf9\xf9\xf7\x17\x07\x0f\x7f\x7e\xf4\xed\x81\x07\x64\x2b\x9e\x6c\x4d\xda\x75\xa6\xea\x9f\xb4\x4d\xcc\xf6\xc5\xc9\xe9\xc5\xf1\xcf\x6f\x1e\x3e\xf9\xa6\x6f\xaa\x46\x47\x01\xd3\xdb\x4a\x09\x9f\xec\x9a\x96\xa4\x4c\xea\x2d\x63\x34\x16\x98\x25\xa9\xa6\xbb\xb4\x44\x47\x88\x96\xf1\x17\xc0\x11\x8f\xac\x05\xc7\xfb\x32\x3e\x3d\x47\xf1\x89\xea\x7b\x4d\x22\xde\xfb\x3b\x7e\xdc\xa1\xcc\x23\x87\x52\x12\x8b\x70\x05\x07\x74\x84\xf6\xe3\x47\x1c\xf1\xf0\xe9\x0e\xfa\xf5\x53\xcf\x13\x46\x22\x03\x48\xde\x83\x89\xa3\xd6\x81\x53\x4f\x9f\xb1\x05\x18\x32\xf6\xb8\xb4\x64\xec\x45\x38\x21\x9a\x45\x6d\xc7\xf8\xda\xd6\xc7\xec\x10\xb5\x4d\x47\xb6\x36\x34\xf2\x2b\xb2\x4a\x0d\xfa\x8a\xac\x36\x3a\xa0\xdd\x1f\x3b\x9a\xfd\x2c\x1a\x2a\xc6\x7f\x20\x31\x89\x6d\x0a\x3f\xc2\xfc\x6e\xac\x0d\x64\x00\x29\x9d\xf1\xe9\x8e\x8d\xd0\xd8\x95\xc6\x95\x17\xf3\x45\xbb\x82\x77\x27\x5b\x6b\x81\x34\x6a\xd8\x67\x80\xba\xe1\xa9\x6a\xed\x69\xc3\x40\x43\x05\x41\x9c\x90\xdd\xe0\x8c\x90\x39\xcd\x86\x65\x28\x96\xa3\xe3\x32\x0c\xa3\x49\xc4\x66\xa4\x68\x62\xf7\x12\x57\xb8\x2e\x1c\x4a\x75\xee\xa0\x92\xf0\xb6\x61\xab\x49\x28\x4b\x0b\x56\x3f\xd5\x0b\x7c\x4b\xa6\xe8\x28\x45\xdb\xca\x08\xbb\x7b\xc9\x9a\x86\x2d\x9f\xde\x0f\x50\xf2\x6c\x22\x14\x7f\x87\xdc\x0d\x44\xf8\x7a\xeb\xee\xd0\xd9\xe9\x71\x1e\xbc\x37\x68\xf8\x29\x3d\xb7\x71\xef\xde\x45\x3b\x31\xfd\x6b\x8c\x79\xd3\x73\xb1\xb1\x5b\x12\x30\xa0\xaa\xf5\x3d\xdd\x89\x40\x6c\xdd\xe8\x5d\xb3\x67\x37\x7b\xdd\x1c\xb5\xdb\xbc\x7e\xd3\xc1\xf5\xe1\x89\x2f\xe2\xb7\xa4\xed\x9a\x1a\x5c\x4c\xea\x96\x75\x03\x40\xa7\x5d\x5d\xfa\xb7\x9e\x50\xc0\xcd\x13\x42\x5d\x09\xee\xa2\xdd\x0f\x64\xc5\x13\x9a\x9e\x32\x4f\x28\xeb\xf2\x91\x7c\x4d\x92\x66\x60\x9f\x98\x18\x60\x5b\x11\x94\xde\xf5\x1a\xf0\xd1\x21\xd3\x16\xa1\x89\x76\x80\xe7\x1f\xd5\xe7\xf1\x96\x63\x2b\x5a\x1d\x1c\xd8\xa7\xe9\xdb\x8e\xaa\x89\x64\x78\x5c\xf3\xe4\x86\x46\xd6\x04\x36\x3c\xb2\x79\x72\xa3\x6b\x16\x4c\x65\xe4\xa2\xc5\xa3\xe9\xb1\x03\xf1\x5f\xb1\xdf\x90\xc2\x53\x9c\x7a\x6f\x6f\x0f\xfd\xd0\xd2\x8a\xb6\x2b\xf4\x52\xc5\xb2\x4a\x9b\x56\x31\x23\xc5\x07\xae\x3c\x2f\x0f\x38\x62\xd7\xa4\x11\x87\xcd\x9a\x91\xd5\x5c\xa4\x1d\x96\xb6\x1c\xc9\x53\x41\x4a\x65\x05\x30\x83\x84\xce\xb5\x69\x57\x03\xd4\x97\x5d\x55\x19\x02\x7e\x2e\xa1\x4d\xb6\xb4\xa5\x2b\x38\x8b\x74\x8a\x26\x7d\x17\x11\xfa\x3a\xcf\x72\xb7\xd0\xd3\x81\xcb\x33\x3e\xf7\x8d\xe4\x2f\xe2\x4e\xf5\x50\x8d\x48\xc5\x7b\x9e\xbf\xe9\x14\xfd\x1b\x23\x9e\x61\xb0\xdf\x99\xad\x94\x3b\x80\x30\x6a\xc8\x94\x34\x44\xc0\x6d\x99\xf8\x8f\xd5\x24\x66\x93\xd2\x47\x6f\x5c\x6b\xd6\x7e\xd3\xbb\x73\x69\xde\xf7\x73\x32\x2e\xed\x10\xdd\x0f\x1e\x1c\x65\x5d\x0b\x08\xf7\xbd\x03\xfa\x27\x74\x57\x9a\xa3\xa2\x97\xc4\xcf\xbd\x0b\xe9\x34\x24\x4e\xf4\x08\x3a\x3b\x45\x25\x23\xd2\x35\x3d\x68\xac\xf2\xb5\x11\xb5\xa9\x93\xfb\xbd\x33\xc2\x3c\x5a\xe6\x77\x8e\x18\x12\xec\xd1\x71\x59\x22\xec\x4c\x4f\x39\x27\x9c\xb8\xee\x5e\xf4\x73\xd2\xda\x00\xf4\x64\xb0\x94\xf9\xf0\x10\xfd\x35\x98\x56\x28\x90\xf5\x2e\xeb\xe9\xce\x5d\x0b\xeb\x8e\x8f\x20\xc7\x51\x7f\xd1\x36\x5d\x01\xce\x2d\x29\xd3\x8a\xdf\xae\x48\x8b\x1a\x82\xcb\x1d\xb0\x49\xca\x04\x86\x4b\xd6\xb5\x8a\xda\x8c\x03\x97\xcb\x77\x4d\xc6\xc4\xaf\x7d\xce\xd6\xf0\x2b\xd7\x95\x19\x7e\x37\xca\x89\x19\x3c\x99\xf1\x5f\x1a\x6b\xca\xc0\x23\xbe\xa7\x4e\x59\xeb\xd3\x0f\x45\x71\xcf\x99\xe7\x1c\x67\xd3\x88\xe7\x06\xc1\x59\x3f\x4e\xca\x97\x10\x79\x6f\xd0\xd9\xe9\x8d\x1c\x38\xef\x25\x21\xfe\x94\x7f\x28\x76\xb4\xe4\x26\x9c\x75\x83\x44\x74\x32\xc2\x61\xe1\x87\x1a\xa6\x94\x93\xda\xc6\x11\x24\xc5\x7f\xc9\xfb\x6c\xb4\x81\x02\x99\xd2\xa1\xc1\x9a\x63\xe1\xed\xf6\x18\x76\x9c\xa7\xd6\xb0\xf1\xd8\x97\x6e\x62\xee\x49\xbd\x3d\x6c\xf9\x71\x5e\xeb\x33\x02\x79\x6a\xbf\xf7\xd6\xa0\x42\x94\xb4\x3f\x24\x40\x44\x97\xeb\xb0\xa5\x20\x01\x25\x12\xac\x06\x2d\x03\x59\x20\xc3\x33\x31\x86\x80\x04\x8c\x50\xb8\xec\xb5\x9a\x79\xef\x07\x1a\xcc\x48\x63\x5a\x0a\x80\xf9\x7e\x2d\xa3\x43\x62\x29\xbd\xb2\x4b\xd2\x4a\xe8\x9e\x13\xf7\xab\xdc\x1d\x7a\x4a\x1a\x7a\x4d\x4a\x19\xf5\xeb\x07\x4d\x88\x3b\x12\xb4\x74\x43\x21\x3f\xd2\x76\x66\x33\xc6\xb2\x02\xe6\x8d\xce\xbf\x3a\xea\xbe\x38\x7e\x8d\x1b\x2b\x26\x5f\x74\x73\xad\x35\xc6\xd3\x62\x5d\xeb\xce\x6c\x2d\x85\x75\x84\xae\xea\xa0\x75\x6d\x8d\x35\x58\x80\xf7\xe7\xd7\x8e\x86\x62\x40\xa4\xa5\xf9\x61\xe1\xca\x85\x9c\xda\xef\xfc\xa6\x06\xd8\xfb\xec\xfb\xaa\x26\xec\xf2\xce\xac\x16\x33\xb8\x12\xc9\x03\x7f\x17\xda\x94\xec\xca\x23\x4c\xcb\x95\xff\x48\x34\xe8\x4d\xd4\xfc\xfe\xf5\x80\x31\x62\x98\xe4\x0c\xac\xc1\x5d\x92\xa6\xbe\xb3\x5a\xcd\x35\xb7\x3f\xb1\xf2\xa7\x2e\xbf\xaf\xd3\x17\xda\xd7\xe9\x1b\x2a\xf1\x71\xf8\xb0\xbe\x28\xf2\xf2\xf8\x5b\x9b\x3c\x6c\x1c\x4f\x52\x02\xe7\x9c\x15\x14\x8b\xf1\x97\xb4\x9d\xb9\x4a\x88\x79\x59\xa5\x1f\xab\xb0\x4a\xca\x21\xa2\x95\x94\x5a\x63\x72\xe2\x2c\x99\x93\x5c\x4c\x39\xba\x24\x4e\xc0\x1c\x84\xbe\x18\x21\xdf\x80\xcb\xab\x82\x5e\xc0\x14\xe5\x0e\xcd\xf9\x91\x6b\xfd\x51\x34\x37\x8a\x35\xcb\x8e\xea\xc4\xb1\xa7\x03\xd3\xe3\x51\x47\x86\xe9\x65\x87\x4c\x46\x0e\xe1\xba\x14\x08\xae\x58\xb1\xee\x74\xd6\x8f\x55\x8b\x66\x04\x2e\x67\x9d\x7d\x2d\x93\xd0\x71\x6d\x02\xd5\x06\xf5\x8c\x35\x43\xe4\xec\xd8\x5e\x8c\xdc\x88\x21\xc7\x06\xc2\x1d\x67\xe2\xb7\xc8\x88\x9d\x70\x87\xbe\x49\xc0\x16\xe8\x20\x49\x0d\x3c\xe1\x6f\xdb\x98\xa7\xe8\xdf\xc6\xf9\xf6\x59\xfc\x64\x9f\xc9\xa3\x97\x71\xbe\x59\x9e\x1c\xba\xc2\x50\xb4\xf1\x9e\x91\x36\x20\x80\xa1\x07\x13\x37\x75\xe2\x29\xb3\x4d\x43\x0f\x46\x77\x4a\x2f\x40\xef\xee\x59\xc7\x90\x6c\x4e\xd8\x46\xac\xc9\x36\xa9\x44\x5c\xd6\x03\x52\xe8\xff\xd9\x94\xd7\xb2\x29\xa3\xb4\x85\x0f\x76\x13\xd7\xe8\x92\xa8\x99\xa9\x58\xf2\x19\x5b\x9a\x54\x2f\xcf\xd6\xe7\xcb\x17\x8e\xc1\xcf\x48\x02\x3d\x56\xbf\x8c\x65\xc8\x37\xe2\xdc\xd2\xc0\x36\xca\x5a\x37\xd6\x0a\x17\x99\xd7\xfa\xc0\x8d\x30\xd6\x8d\xbc\x51\xc6\xe4\x87\x6f\xd2\xd4\x15\x02\x2a\x03\xa9\x6e\x1d\x91\x3f\x84\x67\x2d\x67\xce\x23\x09\x6b\x16\x4c\x45\x8d\x94\x7a\x20\x36\x20\x05\xb3\x5c\xd7\x8a\x64\x6c\x59\x69\x38\xe3\x0c\x5a\xae\x29\x2a\x0d\xe7\x26\xf6\xa8\x3e\x48\x6b\x19\xa5\xd2\x80\x86\x2d\x53\x3d\x97\x62\x0e\x64\x96\x13\xfd\x49\xf4\x30\x4f\xed\xa1\x75\x4b\x9a\x29\x56\x69\x6a\x6e\x26\xdf\xb0\xbf\xc3\xd3\xeb\x14\x3c\x23\xb2\xfa\xd9\x8f\x70\x21\xb2\x4a\x27\x22\xda\x9b\x3f\xca\x94\x93\x53\x38\x4c\x4d\xc7\xbf\xcf\x4d\xde\x9c\xd1\xbb\x7a\x9d\x00\xa9\xc4\x38\x60\x51\xf6\x8b\xa4\xf8\x1b\x06\x3e\x86\x89\x1e\xa4\xaa\x38\x5a\xce\x48\x3b\x23\x8d\x9f\xa1\x67\x72\xb8\x48\x45\x21\xa2\x1f\x66\x7a\x82\xeb\x92\x96\xb8\x25\x6a\x81\x6d\x90\x55\xb7\x9c\xd1\x62\x86\xe6\x04\x6b\xf9\x9f\x82\x0a\x8b\x21\x5b\x04\x60\x2f\x67\xcc\x01\xae\xd2\x5a\xbd\x7c\x77\xa9\x42\x2b\x25\x22\x10\x8b\xc4\x18\x42\x6f\x11\x8a\x04\xa9\x59\x77\x35\xeb\x55\x61\xe1\x23\x21\xf1\x78\xc6\x7f\x25\xe6\x08\x04\x49\x11\x87\xf2\x17\x6a\x91\x2f\x59\x93\x58\xe2\xe4\x67\x87\xf1\x1e\xa2\xfb\x09\x9e\x6e\xb9\xf9\xd6\x21\x7a\xce\x58\x95\xb8\x17\xcc\x2a\xeb\xf6\x7b\xca\xdb\xf4\xe5\x70\x45\xda\x37\xf6\x39\x01\x56\x3c\x3b\x09\x62\xaf\xe8\x34\x84\xf6\xde\x73\x88\x40\x6a\x41\xdb\x74\x3d\xa2\xcf\x14\x57\x7c\x84\x41\x67\xc0\xc3\x20\xc6\xd9\xdf\xdd\x47\xf7\xef\x47\xe3\x24\x33\x2e\xfe\x06\xfa\x41\xf3\x6e\x86\x6b\x55\x65\xe1\x25\x6b\xde\xb2\x8a\x4c\xea\x6e\x2e\x59\xd1\xe1\x08\x97\x84\x8e\xad\x0b\xfc\x3b\x49\xdb\x20\xa4\xc3\xca\xea\x15\x9a\xc2\x1f\x70\xc7\x39\x89\x54\x1c\xbd\xca\x86\x25\x4b\xc4\x6a\x12\xf1\x4a\x19\x16\x1a\xc5\xe2\x0b\xd2\x88\x0b\xdb\x8c\x72\xc5\x27\xf0\xa3\x78\xcb\x8b\x5a\x7c\x08\xbc\xf8\xde\x89\x8c\x56\x97\xc3\xa7\x66\x4d\xa7\xc9\x42\x6b\x94\xd7\x0f\xc0\x1d\xbf\x68\xd8\x95\x78\x30\x95\x55\xb1\xcc\x25\x76\x84\x5f\x6c\x3c\xa3\xe3\x16\xb9\x0e\xcb\x0d\x27\x39\x7c\x8a\x02\xe0\x9e\xcb\x58\x0f\x87\x5a\x54\x61\x0d\x93\x17\xc9\x83\x12\x8a\x1b\x34\x29\xdf\x19\xa0\x91\x9b\x87\x62\xf7\xb8\x35\x9d\xc8\x65\xe0\x0b\xc1\x34\xfa\x5e\x85\x08\x77\xbd\x27\x9f\x33\x90\x7c\x99\x8b\x20\xf7\xc6\x54\x81\xb9\x03\x45\xa9\x4c\x88\xae\x7b\x78\x1d\xd2\xca\xf1\x91\xe3\xb2\x04\x0e\xa1\x4d\x5c\x32\xc0\x84\xaf\x78\x4b\xe6\x36\xf9\xd7\x29\xba\x91\x31\xa7\x42\xb8\x89\x78\xf6\x9c\x48\xb3\x88\x60\x24\xad\x62\x7f\xa9\x24\xba\xcf\xc0\x52\xe4\x5c\x6f\xc6\x3e\xfe\xc8\x67\x06\x28\x20\x57\x9e\xcb\xbb\x25\x6d\xf5\x23\x89\x7a\x1b\x79\x1d\xae\x4e\xec\xbb\xdc\x4e\x6f\xef\xe5\x6f\x45\xd2\xb8\xd4\x73\x89\x85\xf1\x8b\xf2\xfb\x78\xd4\xd7\x75\xb5\x12\x7c\x5e\x0c\x3d\x47\x58\xc8\x51\x85\x96\x4e\x94\xa4\x36\x95\x89\xcc\x25\x83\xfa\x41\x92\xd7\x85\x60\x64\xd9\x4c\x57\x9e\x72\xf2\xa3\x83\xac\xfa\x50\xca\x90\x28\x1e\x92\x8f\xec\x5a\x43\x3a\xcd\x50\x25\x2e\xcb\x77\xcc\x83\x04\x52\x4e\x66\x97\xc4\xd5\xfe\x8e\x1d\x97\x65\xcf\x85\x9f\xa0\xca\xd4\x69\x10\x57\xcc\x12\x52\xd7\xdf\x90\xba\x74\xcb\x93\x19\x96\xe0\x69\xf9\x35\xad\xb2\xcc\xe0\x42\x15\xa9\xfd\xe0\x95\xb9\x51\xfe\x9c\x64\x46\x7c\x9a\x07\xf8\x15\xc2\x26\x41\x45\xae\x3f\xf4\xc1\xdf\xe0\xb1\x95\x05\x6c\xe6\x98\xd6\x82\x6d\x4b\x67\xc2\x91\x3a\xa0\xd1\xc9\x38\x83\xc9\x0b\x02\x16\xff\xd7\x2b\x6f\x17\x80\xde\x95\x7b\xa5\x27\x5f\xdc\xf3\xf3\x6c\x87\x23\x14\x82\x11\x54\xa8\x9d\x31\x4e\xd0\x94\x36\x20\xe0\x4c\x59\x63\x31\x26\x78\x81\x71\xa6\xc8\xf1\xc3\xd3\x13\xae\xe7\xe9\xa8\xa0\x8e\xc4\xfe\x8e\x79\x6b\x1c\xec\x9d\x70\x52\x09\xfd\x20\xdc\x84\x8c\x55\x35\xb1\xc0\x67\x37\x5c\x5f\x3c\x66\xf8\xc9\xce\xda\xe1\x30\xe3\xf1\x16\xad\x2f\xa2\x37\xc9\xbb\x55\x68\xab\x9a\x98\x2e\x03\x60\x2e\x38\x45\x83\x5d\xe6\xcc\x27\xe7\x93\xbf\x14\xf2\xc1\x50\x51\x50\x7b\x80\xab\xad\x0d\x5c\x88\x21\xc8\xff\xbb\x9b\xfe\x74\x77\x93\xb1\x4f\xf6\xdd\x4d\xfa\xa1\xff\xec\xbb\xe9\x36\xc7\x36\x9f\x06\x83\x37\x76\x5a\xf1\xff\x1d\xd2\x7f\xc7\x43\xaa\x2e\x23\x7d\x91\x58\xc5\x02\xdc\x80\x50\x5c\x5a\xde\x2e\xe6\x20\x78\x05\x95\x06\xf4\x4b\x25\xfc\xd8\x42\xbc\x9f\xfd\xf0\x6a\x09\xeb\x8f\x76\x7c\x8d\xc0\xa8\x71\x82\x28\x47\x57\xd2\x12\x29\xcd\x55\xad\xa9\x6b\xa6\xea\x35\x9a\x30\x96\x10\x90\xeb\xaa\xb5\x9d\x14\x1a\x72\x4d\x1a\xff\xaa\xc7\x9c\x93\xa6\x45\x71\xb5\x85\x21\x8b\xea\xd7\xc3\x6f\xf4\x3b\xd7\xc4\xcf\x33\x2d\x3a\xa3\xaf\xc7\x08\x41\x71\x75\x87\x39\xe1\x1c\x0a\xf6\xde\x3b\x67\xad\xb6\xb5\x5b\x0a\x55\x4b\xbf\xeb\x6f\x61\x8c\xf7\x73\xbf\x23\xc3\x72\xc6\x24\x37\x71\x02\x1d\x15\x77\x91\xff\xaa\x81\x24\x75\xd3\x06\xb1\x65\x9d\x71\x05\xe8\xfd\x60\x68\x4e\x48\xeb\xb2\xa0\x6d\xf0\x20\x80\x9f\xbc\x5e\x49\x73\x03\xbd\xec\x64\xbd\x44\x38\x4e\x89\xc4\xbd\xb1\x3b\xe6\xc4\x84\xdb\x9a\x30\xfb\xe8\xb7\xdf\x36\x68\xfe\xce\xb8\x17\xce\xea\x29\x4b\x33\xb8\xad\xe1\xf8\x67\xb4\xa3\xe8\x21\x67\x39\xef\xa3\x80\xe0\x78\x5f\x92\x4a\x59\x7a\x74\x29\x3e\xea\xaa\x63\x16\x45\x43\xc4\xf1\x37\xb5\x6f\x9a\xf2\x15\x4f\x0b\xa5\x16\xeb\x2e\x4a\x5b\x5a\x04\xa7\x08\x32\xeb\xc7\xe5\x35\x0c\x30\x09\x71\xca\x0b\x36\x57\x81\x33\x4e\x53\x15\x53\x4d\xce\xff\xc2\x39\x17\x65\x78\x0d\x86\xf3\xb3\xe7\xf3\xd7\x3b\x11\xe6\xf7\xf6\xec\x10\xce\x84\x8c\x9a\x19\x8e\xcb\x29\xa4\x23\x9a\x16\x29\x62\xb3\x40\xff\x55\x97\xf5\x8a\xc4\x5a\x5e\x5e\xbd\x18\x94\x68\x7a\x92\xa8\xd3\x22\x0d\xf2\xc5\x9a\xa8\x7c\xbb\xb9\x39\x7b\xe5\x99\x6c\x2c\xcf\x66\xf6\xff\xcf\x80\x78\x5b\x8f\x20\xb1\x03\x7b\x7b\xda\x8b\xa4\x09\x5c\x47\x18\xc1\x49\xab\xc8\xb4\x65\xd7\xa4\xd1\x74\x49\x83\x50\x4d\xe7\xbe\xfb\x8c\xe6\x89\xaf\x91\x5a\x92\x61\x58\x4e\x8d\x85\x51\xd2\xc9\x8d\x04\xb4\x4d\x90\x6b\xa6\x18\x84\x81\x36\xaa\xf1\x49\x04\x7b\x04\xd2\x7a\x65\x58\x10\x33\xe7\x5a\x48\x07\x99\xbf\x4f\x0f\x58\x0a\x2e\xce\x6a\xa2\x8d\x5d\x97\x9d\xa9\x4e\x5f\xb3\x65\xc8\xd5\xee\x7e\x26\xe9\x5e\x0a\xbf\x2f\x1b\x36\xcf\x8b\xf8\x41\x95\x95\x7e\xb9\x1e\x21\x34\x20\x84\x73\x2f\x30\xdc\x96\xbe\xa8\x7d\x01\xc6\x8d\x9d\x0e\x7a\x86\xf9\x41\x0a\x1c\x2d\x49\x55\x01\xae\x55\xfc\x5e\xcf\xab\x50\x1e\xd5\x8c\x49\x9b\x5c\xd9\x5a\x70\x44\xcb\x39\x1e\x57\x55\x14\xf8\xfa\x27\x16\xe1\xe9\x74\x04\x43\x47\xcf\x20\x16\x21\x71\xa3\xae\x75\x9c\x87\x07\x4a\x72\xd7\x3d\x8d\xb4\x8d\xcb\x0f\x1a\xfe\xbf\xe9\xdd\x34\x02\x9f\xbd\x2c\x2c\xb5\xf7\x81\xce\x94\xdd\xf8\xbd\x3f\xde\xad\x17\x44\x34\x7e\xe9\x4b\xed\xf7\xb9\x86\x3e\x33\x93\x0f\x78\xfa\x8f\xe6\xa0\x38\x47\x03\x1a\x16\x0c\xf8\xe3\x34\xed\xf6\xbb\xe4\xd2\x2e\xfa\x8d\x26\x16\xc6\x26\xc1\xa1\x3e\x42\xeb\x98\x06\x55\x6c\xd7\xd3\x84\x53\x25\xef\x65\xd0\x90\xd6\xc5\x79\x33\x60\x67\xd6\x03\xf5\x9b\x9a\x7f\x17\x9c\xf7\xf7\x55\xda\x10\xc6\x07\x0d\xc4\x0e\xc6\x91\x1f\xb8\xaa\x82\x4b\x6d\x18\x6c\xcb\xd0\x2f\x1d\x69\x56\x5e\xdb\x87\x74\xce\x80\x78\xdf\xec\x91\xaa\x83\xa2\xc2\x35\x6d\x66\xe2\x1d\xd4\x1f\x72\x6b\x4c\x0c\xbd\x51\xb7\xe3\xf3\x0d\x52\x41\xb9\xcc\xef\xb5\xea\xa4\x93\xc1\x3c\x75\xa7\x25\xda\x98\x55\xb4\x0c\x2d\x48\x23\x10\x60\x05\x18\x90\x5f\x78\xbc\x1e\x6f\x15\x87\x99\x45\xdd\x62\x55\xe6\x7b\x13\xae\xab\x8b\xc9\xd4\xbd\x35\x33\xfa\xeb\x96\xe6\xc2\xf4\xa3\x64\x7e\xd5\xad\x35\x8e\x59\xca\xc7\x1b\x3b\x49\x3f\x4e\x78\x92\xbc\xf8\xbf\x50\x68\x92\xe9\x32\xbb\xa9\xe8\xa4\x4b\x3f\x3a\xc9\x6b\x94\x45\x4c\x99\x26\xd3\x81\xea\x8a\x84\xa4\x16\x64\x4a\xa1\x5b\x31\x9b\x9e\x7c\x8f\xf1\x99\x1e\x3d\x6c\x6b\xb0\x49\xa1\x33\x8b\x40\x70\x88\x2e\x7e\xb1\xef\xf9\xb8\x28\xc7\x2f\x1e\x93\x58\x2f\xf6\xf2\xe5\xf6\x42\x51\x53\xfc\x3b\x1c\x16\x39\x24\x22\xf5\xad\x36\x7b\xa7\x99\xf3\x33\x20\x47\xac\x77\xa8\xbe\x74\xbc\xcf\x66\x4f\xd3\x1f\x92\xec\xff\x43\x82\x87\xe2\xc2\x89\x23\x62\x6b\x46\xbc\x34\x0a\xf2\xe7\x8e\x1c\xba\xd1\xe2\xc6\x04\x0e\x0d\x03\xbe\x19\xce\x6e\x18\x36\xd4\xb7\xed\xe3\xb9\xe2\xf8\x3a\x9f\x63\xa2\x83\x36\x79\x63\x24\xe5\xdf\xdf\x9d\x63\xeb\xfe\x3c\x37\x61\xd8\x5f\x3a\x08\xe6\x3f\x80\x61\xdf\x9c\xd0\x6f\x14\x4f\xf3\xa7\xa1\xef\xb7\xd6\x88\xa5\xaf\x24\xb7\x32\x0c\xd0\xfc\xb8\xf4\x83\x2f\x1f\x1e\xa2\x0d\x70\x9d\xc9\x06\xfd\xf3\xd2\xb7\x6a\x6a\x65\x45\x60\xdb\x4c\x28\x17\x4b\xe1\xbd\x9f\x8d\x45\xe8\x2f\xd0\x94\x08\x1e\x19\xac\x6b\x1d\xbd\xe1\xc6\x8e\x0c\x5f\x84\x9f\x2d\x74\xe4\x73\x59\xd3\xe9\x74\x18\x27\xbf\xbf\x7f\x3e\x7b\xbf\xdf\xa2\xc4\xb9\x61\x90\xe1\x60\x29\x1e\x99\xf6\x93\xdc\x82\x45\x66\xfd\xf7\x7b\x9b\x0b\x05\x41\xd9\x70\x80\xe1\x63\x10\x01\x4a\x85\x6d\x28\x3f\x43\xf8\xe8\xe7\xdd\x31\xd7\xad\x1f\x8e\xfa\xe9\xcb\xfa\x3c\x36\xa5\x4c\x7c\x76\x3f\x7f\xff\xed\xfa\x85\x4e\xc0\x50\x48\x40\x30\xe0\x90\x43\x66\xdc\xd0\xc3\xd8\xcf\x95\x8e\xfc\x53\x79\x51\xbe\x98\x91\x6d\x4d\xc7\xcc\x0d\x38\xa7\x75\x1e\x8c\xd7\xfa\xfe\xd4\xde\x9a\x2f\xb6\xb7\x6b\x39\x80\x36\xba\xb3\xb7\xf0\x0a\x9d\x41\x97\x65\x62\x23\x4f\x8c\xee\xdb\x10\xfc\xa1\x64\xcb\x5a\xf5\x27\x50\x5f\x8b\x65\xc8\xb6\x96\x51\x03\x03\xd3\x29\xdc\x6f\xd3\xef\x44\xb7\xb4\x3d\x9d\xff\xe1\x2a\x99\xd3\x5a\x17\xe7\x50\xf3\x30\x4e\x18\x55\xb2\xea\x85\x80\x2d\xd7\xcb\x2f\xba\xf9\x1c\x37\xab\x84\x23\x09\x06\x51\x4f\x65\x0b\x3c\x99\x15\x1e\xa2\xf7\xea\xd9\xe7\xfa\xa3\x9f\x02\x5f\x4c\x0a\xe0\x76\x3f\x84\x4c\x89\x41\x0b\x07\x1d\x79\xf3\x8c\x1f\x36\xe0\xd1\x91\x1d\x2a\xbf\x95\xa7\xa4\xc5\xb4\xe2\xe9\x5d\x94\x7b\x54\x23\x5a\x97\xf4\x9a\x96\x1d\xae\x54\x7c\x57\x5d\x42\xd1\x93\x20\x88\xc8\xc1\x78\xb8\xb0\x04\xba\x13\xce\x39\x14\x35\x28\x07\xfa\xef\xdf\x91\xd2\x3f\x4a\xfc\x10\x99\x26\xc4\xf2\x8d\x4f\x6b\x95\x92\x1f\x57\xa4\xca\x99\x58\xc2\x4e\xe7\x57\xda\xb5\xcf\xfd\x9a\xbd\x09\x2f\x0a\x5c\x11\x6f\x13\xd8\x54\x9c\x0e\x5a\x5f\x55\xae\x92\x77\xb9\x12\x9f\x16\xb8\x12\xda\xec\x14\x17\x29\xa3\x92\xf8\x9a\x04\x0c\x86\xa7\xdb\x4d\x28\x48\x2f\x01\x50\x4e\x31\xa7\x53\xd9\xb2\x01\x00\xe9\xb2\xc3\xe1\xea\xfc\xf6\x13\x69\xf9\x75\xc4\x8b\x47\x7a\x98\xaf\xfc\xb9\x65\xe5\x09\xfd\x5b\x1a\x0b\xaf\x95\xe1\x4d\x23\x61\xd4\x7a\x13\x1b\x1c\x7d\x94\x9b\xde\xa8\x6d\x75\xc3\xf5\x1a\x9e\x69\xdf\xe2\xad\xe3\xb8\xaa\xd6\x5f\xc2\x18\x0c\x78\x7f\xc6\x35\xcc\x69\x19\x17\x8e\x56\x90\x72\x3d\xb7\xec\xd0\xfd\x24\x28\x6e\xae\xf1\x93\xc9\x1f\x1c\xd2\xba\xcc\xcb\xa4\xcc\xfa\x97\x8b\x3d\x40\xa0\xf6\xa9\x96\x18\x31\xae\x9d\xfe\x2c\x72\xd2\xe9\x63\xd3\xf8\x2c\xa9\xbf\x33\x4b\x2f\x9d\xf3\xbe\x4b\xd6\xc4\x5c\x08\x9d\x0a\xba\xb1\x14\xac\x6e\x31\xad\xb9\xb2\x28\x43\xc2\x89\x51\x5d\x17\x58\x25\x08\x89\xb7\x99\xb6\x6d\x5c\x75\x15\x6e\x10\xee\x5a\x36\x07\x13\xde\x54\x15\xf8\x14\x0c\x44\x3d\x24\x2b\x59\x2d\x1a\x56\xe8\xfe\x13\xaa\x65\x3a\x57\x1e\x2c\x28\x67\x65\xbb\x93\xff\x53\x88\x51\x70\xa7\xfe\xd3\xd4\xda\x40\xed\xac\x01\x33\x0c\x46\x05\x5e\xe0\x4b\xa8\x26\x6a\x6e\x85\x44\x70\x07\xbc\xff\xda\x2e\xe3\xd7\xd4\x6e\xc0\x43\x20\x1c\xbd\xc1\x2b\xd6\xb5\xb2\x18\x92\xfc\xdd\x60\x3f\xf5\xe2\x45\xc5\xda\xef\xe9\x9c\xb6\x7c\xc2\xcd\xaf\xea\x66\xf8\x56\x6e\xe4\xc1\x37\x9f\x92\xaf\x0a\x51\x50\x76\x30\x88\xca\x33\x2e\xbd\x0e\x25\x89\xb7\x5b\xdc\xe8\x8e\xc1\xc7\xd2\xd4\x38\x89\x9f\x22\x75\x39\xf8\xcc\x02\xaf\xf4\xa9\xf9\x59\x93\x8a\x92\x5c\x0e\x53\xe2\x4c\x0c\xa1\xc0\x55\xd1\x55\xc6\xb7\x00\xf5\xe9\x13\x2f\x46\xef\xcd\xd9\xb5\x8a\xde\x53\xd3\x92\x84\x69\xc8\xe2\xb8\x9c\xd3\xda\x6e\xa8\x72\x69\xca\x33\xa8\xb6\xdd\xe9\x27\x54\x93\xa5\xe2\x73\x2a\xca\x86\x6f\xab\xc4\x43\x44\x6b\xde\x4d\xa7\xb4\xa0\xd2\xdc\xa2\x14\x3e\x10\x15\xad\x18\x18\xa5\x23\x06\x96\xdc\x6d\x90\x45\x16\x78\x65\x18\x6c\xcb\xb4\xb8\xe9\xbd\x8b\x6b\x47\xc2\xf4\x48\x12\x16\x74\x98\xa0\xc7\x98\xcf\xc8\xe2\x5d\x9c\x80\x0c\xaa\x53\x93\xf4\x8c\x1a\xf2\x4b\x47\x1b\x32\x27\x75\x9b\x90\x7e\x3d\x60\x82\xc4\xf8\x03\x21\x56\x91\x8f\x62\xa6\x0d\x51\xf1\x45\xd0\x54\x46\xb5\x81\x4f\xd1\xa6\x4a\xe9\xba\x90\x89\xd3\x76\x3c\x79\x2e\xdc\x4f\x1c\x5a\x97\x42\xd0\x38\x73\x7b\x00\x05\x98\xbc\x93\x87\xf6\x24\xd3\xba\xeb\x1d\x78\xbb\x75\x91\x2e\x4e\x3f\x22\x52\xb7\x0d\x25\x12\x11\x20\x33\xba\xe8\x22\x1e\xb2\xfa\x9a\x78\x25\x14\xb6\x79\x8c\x83\x52\x96\x88\x72\x67\x1e\xab\x5c\xe7\x64\xa9\x40\x28\x2c\xf2\x49\x4d\x96\xfa\xf7\xc3\x10\x40\x3e\xf1\xfd\xe6\x94\xd0\x13\x74\xef\x5e\x3d\x99\x5d\x8e\x36\x39\x77\xff\xf4\xf4\x65\xad\x18\x2e\x9f\xca\xb7\xa2\x5e\xac\x66\x76\x3e\x9a\x06\xfb\x19\x6b\xd8\x1c\x5f\x93\x89\x3f\xc3\x6d\xd4\xb2\x31\x23\x24\x77\xeb\x34\xfd\xb4\xb3\x6b\xe1\xa6\x0d\x54\xe7\x73\x75\xc9\x25\x21\x1f\xaa\x95\xe0\x1c\xac\x6b\x6d\x61\xbe\x6b\x5c\x75\x49\xb9\x60\xd4\x4d\x14\x0b\xce\xe6\x19\x74\x37\x69\x7d\x20\x01\xd8\xc4\x91\xd4\xe8\xf8\x11\x66\xac\x46\x77\xc6\x36\xbf\xf6\xf5\x6b\x19\x33\xf4\x91\x05\x35\x82\xf6\xad\x48\x55\x74\x2d\x5a\x90\xa6\x20\x75\x8b\xaf\xd4\x8d\x20\x59\xb0\x0c\x68\xf1\x12\x62\x23\xb9\xc7\xc1\xf1\x49\xd7\xbe\x31\x70\x24\x82\xbd\x8f\xd6\xf3\x1c\x86\x6f\x2b\xd3\xba\xac\x3e\xe8\x7f\xf3\x14\x1d\xec\xee\x67\x58\xdb\x89\xbf\x3a\xcd\xe3\x2e\x49\xbb\x24\xa4\x46\xfb\x70\x01\x1d\xdc\xed\x63\x62\x92\x0e\xfc\x21\xd3\xe4\x50\xdb\xe0\x50\x5a\x5f\xc9\x9b\xfa\xa4\x97\x2a\xcc\x21\xf1\x91\x17\xa3\x2e\xfc\x64\x4d\x6a\xc9\xcd\xec\x28\x02\xdc\x4b\x3b\x82\x72\x2a\x10\xc6\x4c\x80\x84\x49\x87\xf7\x13\xc6\xb8\x36\x3e\x64\x6a\xdb\x91\x36\x08\xea\x9f\xd3\x76\xe2\xb4\x15\x84\xca\x7b\xf0\xa9\x91\xd7\x46\x91\x0d\x5c\xc1\xcf\x8e\x24\x90\xc9\xc1\x96\x20\x18\xf8\xec\xa9\xfe\xec\x89\xae\x0b\x09\x1f\x6b\x82\x38\xd8\x46\x0f\xb7\xd1\xa3\x6d\xf4\x78\x1b\xb1\x06\x3d\x19\xf4\x28\x17\xd1\xf4\x79\x7f\x4f\x6d\xe0\xdd\xae\x04\xfb\xcd\xe3\x4f\x11\x13\xa7\x25\xbc\x1b\xe3\x86\x07\x05\x5e\x13\xc3\xbf\xd7\xcd\xb3\x35\xe6\xd6\xe1\xfc\xf1\xcc\x12\x23\x04\xf7\x41\xcf\x64\x7b\xa8\x08\x09\x89\x1e\x4d\x54\x5f\x4d\x45\x4d\x82\x58\x08\x2e\x66\x2a\xfa\xd6\xad\xc6\xab\x94\x19\xf9\x1a\x3c\x6e\x48\xd0\xa3\x3f\xa7\xde\xad\xa2\x40\x59\x27\x78\x46\xd0\x15\xbd\x26\xb5\xdc\x6f\x55\x80\x18\xaf\xc4\xa6\xe3\xb2\x94\x1e\xad\xd6\x96\x09\xdd\xf5\x06\x3e\x53\x9a\xdb\xa2\x21\xd7\x20\x0f\x44\x54\x2e\xd8\xe3\xbf\x18\xc4\x4f\xed\x8a\xc7\x4d\xbf\xd3\x02\x77\x9c\xc8\xae\xa7\x42\xaa\x88\xa7\x67\xfd\xcf\xdb\xde\x98\x62\x24\xed\xdc\xee\x5b\x1e\xf9\x58\x10\xa2\xbb\x0d\x19\xe4\xec\xde\x42\x9f\x1a\xd7\x21\xd6\x00\x88\xc5\x4b\x74\x4f\x8c\x84\xd4\x71\x38\xa5\x20\xe4\xe3\x66\x05\xce\x79\x40\x24\xf8\xb7\x9f\x68\xf9\x32\xae\xfb\x6a\xa1\xbf\xd7\x47\xd8\xf4\x9d\x45\xf7\xce\x89\xdc\x2f\x59\xb9\x55\x51\x83\x10\xe3\xa6\x50\x85\xbb\xaa\x48\xd1\x2a\x89\x75\x0c\xec\x87\x6b\xc0\xae\x39\xa9\x79\xc7\x47\xc3\x7e\x34\x1a\x36\xf9\x48\x0a\xa8\x3e\x31\x1a\xf6\xe3\xd1\xb0\xaf\x49\x43\xa7\xb4\xc0\x6b\x81\x7f\x32\x1a\xbc\x34\x2d\xa4\x00\x0f\xa7\x77\x65\xf9\xe2\xc1\x37\x31\x5f\x9c\x56\x4c\x8b\xff\x96\x96\xd7\x13\x6d\xed\x32\x03\x36\x36\x00\xfb\xd3\x9d\xa4\x10\xa5\x7b\xb6\x02\xc3\x3a\x3b\x95\xa5\x4b\x96\xb4\xaa\x90\x0c\x65\x2a\x08\xbd\xb6\x76\xc3\xfe\xde\x51\xa6\xfd\x17\xe5\xa8\xe3\xa4\xd4\x11\x5a\xf0\x14\x30\x8a\x45\x57\x53\x3e\xd3\x7c\x4d\x17\x49\x59\x30\xd6\xa0\x6e\xd1\xd2\x39\x41\x1e\x30\xd6\xc0\x43\x25\x43\x4e\x6d\xe8\x96\xa1\x0a\xb7\x84\x4b\xfe\x81\x38\x9b\xb6\x4b\xa1\xbb\xfe\xd2\xd1\x42\x08\xd3\x32\x10\x27\xe2\xbb\x0b\xdc\xe0\x39\x69\x49\x23\x0b\xb5\x97\xf6\x50\xcf\xf1\x62\x01\xb1\xca\x0a\x05\xde\xab\x20\x93\x5b\xc9\x6b\x5b\x71\x5e\x2a\xf9\x95\x23\x92\x99\x9c\x66\xf2\x71\x41\x8a\x16\xba\xce\x28\x5b\xc0\x0c\xb7\x3e\x4c\xc8\x40\x17\x38\xd6\xf8\xa5\x35\x6f\x09\x36\xe6\x85\x69\x57\x69\x3f\x53\xda\x36\x54\x1b\x13\x01\xae\x40\x8d\x87\x6c\xc2\x9f\x95\xa3\x40\xb0\x44\x69\x2c\xca\xea\xdd\x62\x23\x9d\xc9\xd3\x5a\xbf\xba\x0b\xba\x47\xca\xa4\x2a\x43\xb5\xe2\x48\x2d\x98\x9c\x23\xdf\xea\x42\xe9\xee\x87\x20\xda\xc6\x11\x54\xc8\x8b\xa2\x72\xe4\x52\x98\x84\xc0\x7d\x49\x8a\x86\x60\x6e\x29\x50\xa9\x4a\x7c\xc6\xba\xaa\x4c\x88\xc0\x31\x5f\xe8\xcd\xd7\x14\x22\x50\x95\x2d\x52\xef\x9f\xed\x00\xa5\x39\xa1\x27\xb3\x3b\xc3\x81\x94\xbe\x1c\x13\x8d\xa6\x36\x28\x2d\xbc\x64\x07\x4d\xac\x1b\xec\x67\x55\xc5\x96\x8a\x86\x1b\xd6\xb2\x82\x55\x10\x3c\x43\x5a\xd7\x60\x2d\x2d\x8d\x4e\x93\x77\x0f\x06\xd5\x14\xaf\x33\xfe\xa5\xd1\xbb\x50\x5a\x2e\x6b\x4c\xb5\x05\x71\x3c\x55\xa1\xaf\xdb\xd9\x3a\x63\xd5\x56\x4d\xf1\x19\x3a\xd8\x4f\x05\x2c\x2d\x70\x4d\x8b\x89\xd3\xd4\x1d\x0e\xb9\x7a\x49\x10\x12\x9b\xa2\x46\xcc\x77\xf7\xde\x20\x9d\xac\xed\xc3\x4f\xb9\xef\xeb\x4c\x9f\x5a\x74\xa4\x66\x95\xb2\x42\x18\xfc\x48\x0b\x82\x5f\x27\xef\xec\x14\x94\x0c\xdd\xb7\x5a\x42\x19\xb2\x1b\x69\xb6\x8f\x17\x8b\x06\xea\xaf\x19\xfe\xdf\xd3\x20\xd1\x18\x0d\x81\x1d\x43\x77\x2e\xca\x25\x28\xe0\x66\x4e\x40\xd5\xb0\xcd\xd4\x83\x2a\x8e\x2e\x08\x9b\xac\xe6\xb4\x24\x8d\x09\xd0\xc2\x82\x3c\x17\x8c\x93\x72\xcf\x31\xcd\xa6\x88\xe8\x58\xad\x44\x73\x42\xb2\x54\x9f\x88\x0f\x1c\x86\xf8\x9c\xb1\x2a\x62\x87\xa0\x09\xc9\x3b\xcd\x79\x2b\xdb\xb9\xc2\x1b\x2b\x8e\x79\xfa\xee\x3b\x4d\x77\x27\xc0\xa5\xc4\xca\x04\x0b\xd1\xd8\x96\x28\x53\x15\xef\xe0\x18\xdf\x0b\xb8\x83\xf5\x7a\xf9\xeb\xc8\xb9\xbb\xe8\x34\xa7\x2d\xf3\xf7\xaa\x4b\x46\x4d\xc3\x5e\x1d\xc1\x19\x39\xf6\x48\xe1\xde\x6e\xc1\xea\x02\xb7\x13\x5a\x6e\xe9\x5f\xef\x59\xad\x40\xb7\x1b\x00\xbd\x40\xfb\x0e\x69\x49\xea\x16\x2c\xef\x62\x16\xf7\x92\x51\x7c\xfe\x5f\xde\x9f\x32\x65\x89\xd5\xc4\xcd\x57\xe4\x6e\x13\x49\xa7\x54\x20\x18\xfa\x1d\x74\x86\x90\x68\x8b\x6a\x62\xc8\x08\xf8\x1a\x07\xaf\x82\x0e\xa3\x43\x9c\x21\x1a\xbd\xa6\xe9\xb8\xc0\x9d\x38\x94\x6a\x61\xff\x94\x43\x9f\xd5\xd7\xb8\xa2\x25\x1c\x81\x7f\xa2\x39\x69\x67\x2c\xaa\xd3\x76\xa6\x3c\x7b\x33\xbc\x58\x90\x5a\x22\xcb\x09\x54\x8f\x1c\x07\x26\x3b\xc3\xde\x68\x21\xa7\x54\x90\xc5\x19\x99\xe3\xe6\x83\x9f\xa8\x45\xe7\x73\x52\x52\xdc\x92\x6a\x95\xa1\xa0\x98\xae\x7b\xa8\xc8\x27\xb7\x61\xda\x49\x13\x5e\x18\x1b\x9f\x79\x19\xad\x1d\xf2\xd8\x5f\x76\xd2\xa3\xad\x5c\x14\xae\xfe\x01\xf7\x68\x57\x73\x3c\x25\xb2\x70\xd0\x71\x5d\xbe\x25\xd3\xae\x2e\x1d\x0e\x1e\xf6\x3e\x36\xd0\xd7\xa3\x6c\x67\xac\x8b\x80\x7b\xf8\x08\xcf\xb2\x6d\xae\x1d\xcc\x86\x61\x2b\xb6\x2b\x0b\x00\x02\x5d\xca\xae\x42\xb4\x45\x13\x65\xfa\x17\x6a\x7e\x55\xc9\x54\x5f\xf5\x84\x63\x70\x8b\xda\x03\xa5\x27\xf8\x39\x59\x69\x5a\xbe\x02\xb0\x39\xe9\x2a\x89\x2c\xfd\x93\x65\xbc\xae\xce\xd2\xc7\x84\x5d\x60\xa3\x25\x34\x35\x5f\x1f\x4d\x69\x31\x6d\xcc\x56\xcb\xe3\x2f\x03\xd5\x1a\x20\x48\x1e\x25\x74\x9b\xc2\x8f\x15\x67\xf2\x05\xc5\x60\xe6\x11\x77\x2c\x77\x3c\xf6\x98\xd9\xf5\xfc\x11\xf8\x79\x20\x81\xff\x56\x92\x51\x5a\xd6\x91\x93\x29\xcd\x6c\x86\x0b\x03\x0f\x97\xde\x49\xd5\x07\x0d\xda\x71\x46\xb7\x91\x2e\x27\x46\x9b\xb8\x92\xd5\x25\x2e\x3e\x28\x93\x1b\x6d\x7a\x73\x1d\xf3\xa5\x47\x3e\x7b\xb1\xa1\xe4\xe5\x94\x6a\x7e\xa6\xeb\xbb\x9a\x5b\xa5\x05\xf2\xe3\xdd\xa5\x0c\xab\x10\x97\xb2\x21\xac\x22\x4a\x8a\x95\xca\x80\xc9\x76\x72\x21\x97\x94\xc3\x25\x00\x37\x9d\xea\xe7\xea\xf4\x4d\xd3\xd3\x09\xc1\xcd\xa0\xa0\x98\xd3\xd2\xc8\xb7\x71\x8a\x05\xc0\x34\xe4\x31\xa9\xa5\x01\x51\x5e\xf5\x6a\xce\x42\x06\xad\x38\x8b\x5c\x20\xa3\x2a\x2c\xfd\xf6\x5b\xb2\x73\xd3\x88\x7b\x4d\x19\x87\x95\x23\x3d\xce\x62\x23\xbf\x74\x18\x54\x2d\xe5\x8d\xb5\xea\x53\x82\x74\x14\x40\x27\xaf\x46\x68\x52\x53\xd6\x14\xe9\xb6\xd2\x59\x92\xdb\x4c\xc5\x26\xb1\xb6\xee\x12\x08\xe2\x20\x20\x07\xad\x37\xa8\x98\xa6\x07\x41\x2b\x3a\x17\x82\x5d\x8c\x31\x33\x4d\xc5\x2f\xb8\x46\x6c\x41\x6a\x69\x03\xc6\xf5\x0a\xcd\x59\x13\x43\xb8\xc6\x8d\xa6\xae\xb7\xac\x02\x5b\xfd\x09\x4c\x20\x32\x03\x67\xa5\xf7\x93\xd4\xeb\x09\x31\x3e\x18\xea\x44\x25\x5e\x27\x47\x77\xdb\xd2\x81\xff\xe2\x6e\x4a\xba\x8a\xa0\x3d\x43\xb9\x2c\x9b\x71\xa3\xf8\xd3\x39\x51\x89\x26\x07\x03\xd2\x09\xda\xac\x25\xd3\x9f\x63\x8c\xc7\x21\x8b\x66\x72\xa9\x79\xe3\x66\xdf\x70\x09\x8d\xa2\x25\x0d\x58\x0d\x75\x60\x58\x55\xb9\xe1\xdf\x82\x7b\xe8\xa3\x29\x4f\x63\xba\x1c\xb6\x39\x82\x54\x05\x92\x08\x06\x95\xcc\x1e\x12\xe7\xc0\xfa\x99\x69\x9d\xa9\xaa\x9c\x11\xc1\xd7\x8e\xee\x37\x20\x13\xc9\x3e\xe3\x32\x00\x7b\x52\xbd\x46\x65\x0b\xf5\x65\x07\x98\x3f\xf2\x69\x3b\x63\x8a\x0e\xa2\x4d\xde\xc7\xfa\xe7\x73\xe4\xb1\x0d\x2f\x6e\x64\x66\x5b\x2a\x01\x1a\x6e\x8c\xf4\x7a\x12\x3b\x9d\xa9\x1c\x38\x06\x13\xa3\x92\xdd\x7a\x1a\x16\xeb\x9f\xf5\x74\xbb\x51\x74\xb4\xa6\x49\x61\x73\x33\x88\x2b\x0d\xde\xb0\xd4\x5f\x1d\xb7\x6c\x48\x14\xfc\x0b\xf9\xcf\x49\x45\x70\x83\x94\xc5\x50\xdb\x2f\x2f\x89\x74\xce\xba\x32\x9d\x69\x2e\x52\xa6\xef\xd0\x1e\xfb\xe3\x7e\x4e\x23\x79\xab\x34\x12\x69\x8f\xb9\x5c\x09\x6d\xb4\x55\x0a\x07\x6d\xf4\x6c\x5a\x86\xfe\x97\x34\xcc\xd1\x5b\xdc\x84\x0a\x50\x62\x6d\x65\xd8\x30\x99\x3f\x76\xf7\x36\x37\xd6\x48\x8c\x0e\xa5\x62\x8f\xa5\x0a\x21\x31\x34\x6c\x3b\x82\xb4\xda\xdf\xc9\x06\xe8\x02\x70\xe6\xf0\x5e\xae\x17\x62\x22\x68\x35\xd6\xb2\x80\x5d\x5d\x33\x46\x90\xc0\x4a\x68\x00\x1b\x65\x13\x09\xad\xda\x71\x47\x9e\x46\xd9\x2a\x92\xc6\xae\x05\x69\x28\x2b\xd1\x52\x68\x03\xa9\x8c\x2c\xdf\x2e\xdc\x00\xdb\x63\x4b\x29\xef\x86\xd5\xee\x1a\x52\x01\x0d\xd9\x38\xf4\xd8\x32\x9c\x0a\x86\x5e\x33\x52\x51\x28\xf8\x91\x00\xe4\xeb\x02\xeb\xf9\x70\xdb\xa6\x23\x81\x80\x93\x03\x17\x60\xf7\x85\xb6\x06\x68\x14\xa8\x35\x89\x53\x69\xec\x00\xe2\xe0\x77\xb5\x67\xda\xe7\x91\xb9\x5d\x9f\x61\x7f\x60\x81\x65\xbf\x63\x72\x4f\xbc\x78\xc2\x12\xa0\x07\x3d\x97\xce\xaa\x4d\x9e\x1e\xa1\x0c\x46\x47\xb7\xd7\x8a\x0e\xe4\x1c\x9b\x6e\x27\xc1\x24\x0f\xc3\x59\xa7\xc0\x08\x15\x05\x0e\x01\xab\xc8\x45\xc5\x40\x61\xf8\x7d\x89\x08\xb6\xe9\x66\x54\xa4\x84\x62\xee\x49\xc5\x2a\x51\x83\xf2\x16\xfc\x2f\xf6\x6c\xd2\x29\xa2\x42\x47\xab\xcb\x80\x8a\x24\x4b\x35\xb1\xf7\x6e\x28\x7d\xd4\x33\x34\xd5\xb5\x5c\xc8\xc7\xba\x04\x4a\x64\xdb\xf4\x5d\x8d\xad\xb4\xdd\xe7\xa4\xbf\x58\xf0\x0b\xd2\x7a\xf7\xf6\xf6\x3c\x80\x6f\x74\x34\x40\xb4\xf9\x87\xe8\xd8\x0b\x8a\x10\x54\x1c\x54\x4c\xd3\x6f\x78\x10\x55\x56\x8a\xeb\x4d\x05\xff\x95\xca\x3b\x88\x97\xbf\x0b\x61\x09\x5e\x0c\x83\x07\xb0\x98\x91\xe2\x83\xe9\x7b\x6d\x51\x5d\xb0\xa6\x21\x7c\xc1\x6a\x69\xf2\x80\x70\x33\xed\x24\x43\x67\xa7\x50\xe6\xa0\xab\x21\xb3\x46\x7c\x4c\x1a\xc7\x33\xa0\x0f\xbf\xea\x59\xcf\x75\x49\xc8\x29\x03\xab\x8d\x80\x5c\xc4\x21\x07\x63\x8e\xd0\xb0\x51\xd8\x75\xbe\xf4\xde\xac\x7f\x0f\x1e\x1c\xc9\x1f\x0a\xb6\x58\x29\x2a\x59\x28\x17\xcf\x20\x87\xd8\xdb\x43\x3f\x12\x19\xd1\x45\x03\x45\x31\x9a\x2e\x24\x17\x68\x91\x4b\xb0\xd8\x94\xdd\x2a\x7d\x18\xa4\x0c\x6d\xa9\x56\x7b\x99\x34\x34\x2a\xdf\xe1\xdd\x65\xa2\xd6\x07\x9c\x34\xcd\xee\xcd\x4d\x27\x47\x5a\xc2\xea\x81\x32\xaf\x58\xdb\x92\x1a\x2a\xdb\xd6\x70\x1c\x30\x8c\x2b\x03\x66\xfa\xbd\x4a\x61\x30\x20\x4c\x0f\x4c\xcb\x97\x44\xba\x79\x49\x84\x8e\x68\xe1\xa6\x9a\x28\x35\x72\xaa\x92\x2c\xb9\xac\x43\x76\xb0\xbf\x1f\xbe\x24\x9d\xc9\xbd\x7e\x3d\x25\x02\x48\x4b\xa0\x91\xe5\x94\xe5\xb0\xa5\xf3\x68\x07\xd8\x54\x02\xc4\x95\x66\x2b\x81\x73\x38\xe5\xb8\xd3\xf9\x21\xe2\xf8\xd4\xd1\x5a\xfb\x94\xf5\xcd\x98\xbe\x35\x34\xc8\x0a\x08\x6a\x77\xf9\x56\x00\xf1\xeb\xcb\xae\xb2\x4d\x90\x9e\x4b\x05\x2c\xbc\x8e\x34\xc4\x2b\xaf\x13\x53\x7a\x8e\x23\xfb\x35\xa5\x26\x37\xaa\x2d\x85\x8b\xab\x33\xae\xf7\x42\xb2\x0a\x74\x84\x42\x0e\x6c\xc4\xdd\xef\xbe\x53\xb2\x48\x4a\x41\xc6\xe5\x9c\xd6\x3b\x7e\xfc\x82\x18\x9a\xa3\x89\x89\x44\xdc\x53\xb1\x94\xf2\x57\x15\xfa\xb8\xe7\x06\x13\xc6\x13\xdd\xdb\x33\xc1\xd4\x06\xf8\xf1\xf9\xa9\x3c\x64\xe1\x99\x4e\xba\x50\x7d\x54\xa0\xbb\x36\x62\x1b\xdd\xbf\x8f\x26\x77\x83\x2d\xf9\xed\x37\x74\xd7\xc7\x4c\xce\x5f\xea\xc8\x33\x63\x04\x73\xf7\xe7\xb3\x2a\xab\xa9\x01\x0b\x56\xb7\xb4\xee\x62\x0c\xa5\xcd\x1d\x0b\xd2\xcc\x29\xe7\x94\xd5\x95\x8e\xc4\xd4\xbb\x29\x3d\x56\xc9\x8d\x3a\x7f\xfd\xee\xc5\x21\x3a\x76\xa2\x37\x55\x78\x9e\x23\xc7\x2c\x1a\xca\x1a\xed\x38\x38\xd8\xdf\xdf\x79\xf9\xfd\xeb\x1f\xe3\xfc\xaf\x14\xf8\x89\x8a\xb2\x0e\xc8\x61\x0b\x78\x92\x14\x49\x25\xe7\x52\x0e\x7e\x8c\x5a\x32\x5f\xb0\x06\x37\x2b\x74\xd5\xe0\xc2\x28\x3b\xea\xfb\xd4\x18\x72\x88\x16\xb2\x5c\xaf\x1a\x5c\x97\x53\x0c\x45\x5b\xcb\xb0\x23\xcb\x1c\xaf\xd4\x05\xa1\xe4\x08\xb1\x68\x31\x52\xb4\x94\xdd\xd4\x38\x90\x1b\x07\xa5\x59\x3d\x74\xc1\xda\x08\x15\x43\x7a\x14\xff\xfa\x6d\x9a\xe0\xe3\xf4\x94\xbd\x3d\x84\x76\xd0\xeb\x4a\x9c\x12\x1e\xe1\x6a\x5b\x77\xd6\x71\xd5\x38\x80\x0c\xb6\x82\xf4\x21\x92\x20\xcf\xc9\x52\x82\x94\x41\xee\x56\xa1\x91\x30\x6d\xa1\x39\x73\x6d\xde\xe8\x78\x1e\xf9\xc7\x33\x3c\x9d\xe2\x23\xff\x74\x6e\xfe\x70\xae\x73\x56\x7a\xec\x37\xe1\x05\x9b\xcd\x56\x7f\xe1\x65\x28\xe8\x80\x76\xe8\x96\x44\x9a\x16\xd3\xda\x89\xd7\xe7\x42\xd7\x41\xf8\x1a\xd3\x4a\x30\x0f\x41\xd1\x89\xa8\x30\xce\xfc\xde\x78\x73\x41\x68\xa9\x4c\x1a\x10\x4b\x60\x54\xdd\x8f\x52\xbd\x01\xe3\x78\x30\x95\x02\xd2\x10\x24\x8e\x05\x9b\x57\x2b\x81\x63\x19\x5a\x6b\x44\x05\x10\x11\xa4\x80\x43\x65\x39\x98\xd2\xcf\x7c\x38\x77\xb8\x82\x3e\xb6\x16\x0c\x58\xe8\x8b\xaa\xe3\xd0\x3f\xc0\x46\x29\x3a\x46\x2c\xd9\x20\x00\x3c\x5b\x3a\x69\xdd\x1f\xe1\xb8\xaa\xa2\xa5\x56\x64\x6a\xcd\x70\x53\xd9\x7e\xd3\x01\x80\xc8\x47\x21\x7c\x43\xab\xe2\xf9\xa2\xa2\x05\x6d\xdd\xd5\x09\x1d\x9c\x2a\x8d\xcc\x17\xdd\xcd\x36\x00\xba\x64\xda\xb1\x12\x26\xa1\x66\xa0\x93\x5d\x61\x52\x8f\x1d\x85\xab\x6d\x70\xcd\x69\xbc\x84\x48\xe2\x4f\x68\xbb\x61\x81\x40\xc7\x3b\x66\xbc\x31\xb7\xf7\xc1\x45\x5a\x43\x4f\x9e\x47\x16\xb8\x9e\xb5\x4a\x15\x89\x65\xfe\xef\xc1\x10\x07\x5b\xcc\x55\x41\xbe\xa0\x4f\x58\xd2\x2c\xe8\xa5\x12\xad\x93\x26\xe5\x2b\x47\xe3\xd2\xa5\xf8\x96\x90\x7f\x7e\xfd\x14\xcd\x82\xcc\x17\xed\xca\x7f\xd4\xa2\x26\x18\x09\x1d\xa1\x5f\x0f\x0e\xd1\xaf\x9f\xb6\xd1\x43\xf9\xcf\x23\xf9\xcf\x63\xf9\xcf\x13\xf1\xcf\x60\xd6\x9d\x67\x76\x48\x0c\x3f\x22\x9f\x2a\xb4\xa9\x40\x99\x24\xc1\x06\x6c\x80\x9a\xa1\x03\x2d\x6e\x27\x65\x48\x7f\x0f\x94\x94\x8a\x8e\x82\xcf\xdf\x2b\x1f\x6c\x8f\x13\xd6\x0c\xa7\x9e\x45\xcf\x8e\xdc\x14\x12\xf5\x61\x9a\xd7\xcb\x78\x07\x5c\x55\x9a\x3d\x36\x32\x66\xdf\x54\x15\xb0\xec\x03\x9e\xd2\xfa\xa8\x6f\x89\x0b\xf1\x61\x15\x90\xe4\x22\x73\x5a\x88\xfe\xb9\xc5\x05\x94\x08\x67\x33\x05\xcc\x73\xe8\xfa\x5a\x1d\xc3\x49\x7e\xb2\x2a\xa7\x6a\x0b\x3d\x1b\x8d\xd9\x1c\xba\xcf\x21\xe6\x34\xc6\x37\x48\x17\x65\x09\x3c\xcd\xad\x6a\x13\x32\xe4\x74\x92\x59\x6e\xb4\x13\x5d\xb5\x02\xcd\xd8\x12\xcd\xb5\xb2\x0f\xf6\x16\xb5\xc3\x36\xfc\xc1\x8c\x24\xad\x0d\x3a\x0c\x22\x19\xff\x80\x14\xe3\xac\xbb\x39\x60\xeb\x1d\x93\x76\x76\xcd\xd3\xac\x3f\xff\x56\xf8\xde\x89\xf1\x3d\x1e\xdb\xa0\xa9\x99\xf9\x1d\x97\x42\x01\x5d\x67\xe8\x70\x6d\x59\x77\xee\x59\x5d\x0a\x2d\xcc\x5c\xcf\x54\xfc\x4d\x4d\xa3\x9b\x68\x0f\x71\xd3\xe0\x95\xb1\x9d\xa4\xec\x19\x2e\x8a\x4b\x52\x11\x41\x15\x2a\x66\x51\xae\x40\xf1\x45\xbf\x08\xd6\x20\x46\xf6\xf6\xd0\x5b\x5f\x04\x09\x67\x3c\x66\x52\xcb\x19\x95\x65\x35\x3c\xec\xf4\x84\x80\xe8\xcd\x90\x43\x0a\x02\x37\x1b\xa1\x7c\x34\x30\xa9\xc9\x16\xfa\x7f\x2a\x3f\x62\xc4\x06\xa5\x19\x00\xf2\xe2\xc3\xa0\x22\x88\x1b\x82\xb5\xad\xca\xf8\x2a\x01\x65\x1b\xb5\xcd\x0a\xe1\x2b\x4c\xeb\x3e\x68\xd2\x6e\x2c\xc0\xd4\xac\xdd\x86\xd8\x65\xf1\x41\xde\x1c\xe5\xfe\x48\x8f\xb6\xd9\xc1\xf7\x06\x09\x03\x01\xc9\xfa\x27\xfb\x32\x6a\x9b\x84\xa4\xed\xfe\x44\x5b\x74\x14\x7f\x94\x0a\xb2\xd1\x3f\x69\xca\x4a\xc8\xf2\xc8\xeb\x5b\x2a\xee\x0c\xc9\xb5\x95\xd5\x4a\x49\x83\x23\x2e\x0d\xd8\x2f\x5a\x7b\x8b\x1e\xba\x2e\x6c\xf1\xbb\xe8\xf6\x74\xe9\xe6\xbd\x19\xe0\xa7\xcf\x73\xf3\xe4\xb0\x72\xa1\x05\x33\x15\xb6\x6b\x63\xfe\x8c\x2d\x5d\xea\x11\x4c\x29\x02\x42\x33\x76\xbf\xd9\x76\xe3\xe6\xa0\xdf\xab\xb8\x1c\x84\x64\x9b\x21\xbb\x34\xe7\xed\x65\xc9\x1e\x9f\x8c\x97\xd2\x1b\x84\xee\xdc\x6a\xfa\x56\x72\x6f\x36\xac\xe8\x60\xc4\xed\x96\x03\x6f\xb2\x35\xe4\xed\x37\xf2\xf2\x3b\x67\xaa\x8b\x18\x84\x13\x10\xa2\xe2\x2e\xe1\xf8\x3a\x65\x34\xb9\x0a\xc9\x74\x82\x10\x56\x9e\xb1\x56\xeb\x63\x9b\xc2\xf5\xe8\x3b\x28\xa1\x46\xfb\x7f\xad\xe5\xb7\xdb\x50\x20\xdc\xc8\x20\x38\xf3\xfa\xfa\xf1\x6f\x61\xb1\x19\x2c\x08\x3d\x91\x87\xa5\x54\x41\x96\xaa\x57\x65\xed\x4d\xbe\x6f\x0b\x73\x52\x6a\x4f\x80\x5b\xab\xdc\xd6\x7a\x0f\x22\xe1\x6e\x5c\x41\x2c\x94\xfb\x6d\xcd\x47\x5b\xc6\xf3\x18\x04\x81\xa3\x00\xde\x6e\x5c\x67\x14\xb9\x66\x75\x5b\x47\x31\x78\x2f\x5b\xc9\x34\x54\x1b\xbd\x86\x4a\x75\x88\xb1\x18\xa5\xdb\x3a\x73\x79\x4e\x05\x03\x33\x8d\xc3\x3c\xb8\xd0\x23\x28\xb1\x3e\xa7\x20\x41\x4a\x40\x80\xd0\x3c\x55\x0e\xc8\x4e\xff\x0d\xa6\xa5\x2c\xf8\x7a\xe8\x2d\x7a\x1b\xe4\xd5\x97\x44\xa8\x8a\xfb\xbb\xfb\xdb\xaa\x5a\xad\xfa\x63\x4a\x08\x7f\xde\x35\xb5\xfa\x20\xdd\x53\x5d\x46\x20\x49\x06\x50\xef\x30\x9b\x6c\x6a\x15\x66\x99\x52\x05\x6c\xa7\x7e\x00\xf5\x6a\xb8\x32\xcf\x18\x3b\x84\x93\xc6\x9b\xb4\xba\x1a\x05\x57\x9b\xa2\xe3\x54\xe6\xb4\xf0\x26\x0b\x3e\xe6\x73\xa3\x3d\xa0\x89\x15\xca\x0a\xc5\x3e\xa3\x40\x31\x29\x4e\x09\x51\x0e\x17\xa5\xfe\x0b\x9c\xee\x5e\x91\xf6\xa5\xf9\x22\x70\x57\x0a\x59\x54\x62\x3b\x28\x21\x9b\xa8\xd8\x4a\xa7\xee\x00\x4f\x7d\xba\x8d\x69\xc0\x03\x1b\x94\xe4\x45\x3b\x0e\xa8\x3e\xfe\xb7\xb7\x87\x9e\xdb\xae\x81\x53\x42\xa4\x67\x45\x99\x96\x54\xf5\x6c\x7d\xf1\x08\x4a\x09\xbd\xe1\xca\xc7\xe2\xf6\x7f\x40\x15\xe6\xfd\x7b\xad\x70\x29\xcb\xf8\xf5\x38\xce\x04\x7a\xe1\xa1\x49\x5c\x05\x5b\xc1\x97\x25\xb7\x9f\xee\x18\x78\x26\x2c\x53\xfa\xaa\x5e\x4a\xca\x87\xc7\x4c\xa0\xa6\xc5\x4d\x6c\x1d\xfa\xbb\x38\xad\x7e\x2f\x2b\xf0\x19\x84\xa5\x9d\x9d\x5d\xf3\x77\x22\x17\x6b\x09\x8b\xae\x98\x9c\xd7\xdf\xa1\x08\x65\xbf\x11\x49\xe2\xe0\xe9\xfd\x97\xfa\xa5\x5d\xf9\x56\xf2\x12\x72\xa0\xa6\x65\xad\x94\xd3\x5c\x35\x8c\x9c\xcb\xc9\x34\x64\x4a\x1a\x52\x17\x61\x2c\x1a\x82\x03\x62\xb1\x1d\xf7\x2e\xf4\xc7\xdf\x15\xf0\x82\x8a\xe9\x1e\x8a\xfa\x1b\x61\x5b\x44\xdb\xca\xcd\x50\xed\x31\x75\x0d\x6c\xc8\x2d\x1b\x8c\x97\x2c\xbd\xee\x03\x57\x75\x88\x53\x2f\xa6\x2e\x13\x94\xd2\x2e\x13\x89\x1a\xaa\x1c\x7a\x88\x61\x0f\xfd\x99\x6c\x20\xf1\x44\x98\xf5\x83\x52\x21\xe9\xe1\x9c\xc7\x56\xd5\x45\xb7\x8c\x50\xef\x81\xe7\x8e\x9f\xc0\x6a\xbe\x8e\x6d\xc6\xb4\x91\x44\x37\x4a\x06\x3b\xdf\x08\xe3\xc1\x84\x32\x7a\x75\xaa\xca\xbe\xbc\xa4\xb5\x87\x35\x4d\x77\xa3\xc2\xe8\xbd\xf1\xc7\xf8\x8e\x9c\x5e\xcf\xe3\x26\x91\x20\xaf\xbe\x73\x2b\xae\x3a\x2d\x67\xa0\xa3\xdc\xfd\xe3\x5f\x72\xcf\x8e\x86\x6e\x39\x07\x62\x56\x52\xf3\xe5\x81\x9b\xcb\x46\xfa\x37\x2b\x20\x79\x6c\xcb\x17\x95\x3c\x02\xc9\xb7\x8e\xfd\xec\x72\xd3\x8d\x64\xa6\xdb\xc8\x4b\x50\xb0\x9f\xb7\x0d\x5b\x05\xd7\xe4\x14\x50\xe7\x14\xfe\xd2\xce\x3d\x36\x27\xe0\x13\xf3\xc0\x94\x0a\x86\x8b\xc7\x1e\x6d\x46\x5a\x64\xb9\x57\x8b\xc8\x2b\x62\x1e\xb9\xcc\x33\x81\xc5\x6b\xd6\x26\x4e\x84\xb2\xc9\xe1\x32\xb1\x6f\x59\xb7\xd4\x1b\xeb\x9c\x33\x81\x16\x5b\x77\x23\xd4\xea\x16\x51\xbc\x9b\x1b\x9d\x5f\xaa\x5c\x89\x6c\x23\x71\xe4\x80\x98\x65\x3a\x46\x76\xec\x77\xf6\x99\x40\x92\x12\x1b\xe5\x02\x38\xca\x08\x2f\xaa\x85\x47\x02\x41\x41\x87\x09\x50\x29\xdc\xf6\x12\x3f\xf5\x15\x79\xf4\xac\xed\xb0\x6c\x59\xac\x5e\xf6\xd4\xe8\xaa\x96\x2e\x2a\x2a\x8b\x7e\x5b\xa7\xb4\x87\x0f\x70\x49\x47\xb1\x78\x06\x31\x72\x5e\xb2\x04\xfe\xb8\xe2\xa7\x7b\x2e\x42\x52\xfd\x77\x13\x62\xc8\x21\x7a\x9f\x00\x1d\x35\xd6\x40\x47\xe8\xfd\x4f\xc9\x0e\x7a\xb2\x1e\xac\x5b\x32\x0a\x4e\x8e\xb8\x77\x66\xa4\x72\x3c\xde\x29\x2e\xc2\xa3\x49\xf2\x6e\xae\x06\xff\x51\x43\x90\xea\x46\x7e\x6c\xdb\xd7\x84\xdb\x8a\xa9\xc9\xd1\x72\x07\xcb\x19\x1c\x90\x27\x24\x6f\x9f\xbf\x5c\xa8\x66\x03\xe9\xb9\xa4\x72\xf5\xb2\x4b\x56\x91\x8b\x8a\x74\x42\x50\x3a\xff\xd6\x41\xa7\xb6\xd1\x6b\x94\x46\xa7\xba\x8e\x59\x61\xf6\x3c\xe5\xd8\x66\xdc\xbc\xc0\x7a\xf5\x12\xf0\xbf\x4c\x64\xa1\x1b\xf2\xf1\xc0\x32\xd0\x02\xd7\x02\x1f\xba\xc4\x56\x29\x6b\x9d\x95\x74\x0a\x4a\x80\x5b\x6f\x36\x05\xf1\xcc\xed\xbc\xe2\x40\x95\x26\x40\xce\x7c\xb8\x70\xb2\xf1\x9c\xf4\x01\xb5\x3a\xdd\xa9\x7a\xf5\x1d\x73\x6a\x82\x1d\xa5\x10\xa8\x63\x05\x13\xae\xde\x31\x54\x38\xfc\xcc\x60\xd9\x80\xb4\xb1\xc4\x63\x69\x35\x6b\xe6\xe6\x70\xab\x73\x66\xf2\xe1\x6d\x69\x33\x08\x1a\xd1\xd1\x22\x76\x5f\x22\xf8\x7e\x4b\x1a\xd3\x10\x7a\x28\xb3\xfd\xab\x88\x1f\x0e\x40\xe6\xc7\x62\x2e\xc0\x3f\x58\x05\xfe\xeb\xa3\x78\xdc\xaf\x7a\xb6\x2c\x89\x9a\xe3\xb2\x0c\xa4\x06\x45\x1e\x92\x0b\x59\x26\xaf\xd1\x92\x3c\xaf\x6a\x83\x63\x1e\x97\xf8\xf0\x6b\x34\x89\xa6\xbd\xd3\xb7\xce\x4c\x28\x6d\xc8\xf8\xd3\xc7\x32\xe4\xf9\x41\xad\xae\xf4\xf1\xcc\x71\x3e\xc3\xfe\xd5\xd1\xcd\x30\x5d\xe4\xc6\x72\x3b\x94\x47\x1b\xe7\x14\x9a\x03\x2a\x9b\x5a\x0d\x6b\x89\x6b\x25\x2e\xa3\x4d\x27\x2f\xa3\x0d\x1e\xe1\x81\xdc\xd5\xe1\x30\x00\x70\xc4\x44\x7d\xbf\xa4\x05\x9c\x72\xaf\xae\x38\x14\x74\xcc\xbb\x64\x42\xa6\xe8\x14\x49\xec\xbd\xe2\x7b\xfd\xdc\x8e\x22\x68\xd8\xc1\x40\x3e\xf0\x08\x6e\x90\x19\x21\xc5\x16\xd2\x93\x58\x8f\x37\x20\x9f\x3f\x18\xd2\x77\x5c\x14\x96\x4d\xf0\x6e\x9e\xa3\x98\xb1\x3c\x21\x3d\xe7\x9d\xc1\xe5\x66\x68\x55\x39\xac\xfb\x11\xa5\x84\x6b\x13\xf1\xd9\xe3\xff\xd4\x25\x09\x7c\xa5\xe6\x01\x47\x45\x97\x76\xdd\xd1\x69\xb4\xa6\x78\x06\x5f\xad\x51\x55\x7d\xcb\x18\x32\x07\x9d\xc8\x27\x5d\xeb\x12\xde\xe6\xe6\x90\x1f\x7a\xec\x3d\x15\x7f\xfb\xb5\x3f\xe5\xfc\x10\xeb\x13\x7e\xfc\xc8\x4e\x30\x58\x6a\x9c\x74\xc0\x40\x78\xdd\xec\x0e\xf5\x85\x72\xac\x44\xa6\x35\xd4\x30\x31\xc7\x93\xc9\x99\x7e\x93\x36\xce\x7e\x5c\x0f\x82\x92\xae\x2e\xa8\x95\xa7\x6d\xb0\xf6\xcb\x41\x63\x93\xe6\x11\x5a\x1f\x55\x4a\x5e\xe2\xbc\xef\xa1\x89\xab\xe5\xee\x0c\x5f\x1b\xb1\xbf\xc1\x55\x73\xdf\x54\x9d\xcb\x61\x22\x4d\xf3\xeb\xe4\xdc\x42\x8d\x67\x2f\xca\x3a\xf3\x7b\x55\x4a\x8f\x62\x8f\x4a\xe1\x19\x22\xfa\xca\xfa\xe5\x25\x67\x55\x22\x7b\x80\x29\x6d\x56\x21\xd9\x84\x04\xeb\x6d\x41\x32\xd0\x33\x1e\xe1\x48\x17\x77\xea\x4b\x02\x18\x81\x89\x2f\x2c\x09\x06\xf5\x6a\x94\x1e\x01\xd5\xde\x54\x05\xa9\x19\x4e\x94\x4a\x72\xfb\xaf\xf9\xe5\xbb\x8d\x00\xe3\x7b\xef\xfd\x1a\x4e\xff\x0e\x02\xe2\xde\x67\x90\xd2\x36\x25\x54\x0d\x10\x28\x4a\xca\x0c\x3e\xa5\x7e\x31\x41\xc1\x08\x6c\x5f\x5a\x3a\xb8\xc1\xc0\x63\x44\x82\x80\xa5\x38\x1f\xdd\xf4\xf2\x1f\x58\xc0\x1f\xeb\x9a\x3f\x0e\x5a\x27\xe7\x67\x70\xf3\xbb\x3e\xb3\xd0\xcd\x5d\xf0\x60\x68\x57\x26\xf8\xa3\x11\x76\xe7\x11\xa6\x5d\xcf\x2e\x9d\x9c\x69\xba\x6f\x35\x0f\xba\x14\xae\x1d\x6a\x25\xab\xd1\xa8\x4a\x55\xaa\x60\xbd\xac\x50\xe0\x07\x5a\x09\x16\xab\x1a\xb2\x7a\x9f\xbf\x73\x78\x99\x1b\x79\xa1\x53\x84\x65\xce\xd5\xb5\x63\x6b\xcb\x55\x41\xf0\x40\x41\x54\xa4\x2c\x99\x20\x64\x55\xa7\x4e\x31\x04\x70\xc8\xe9\xeb\x90\xc4\x55\x5c\xef\x4c\xc0\xfb\xa1\x76\x1b\xce\x11\xae\x83\x18\x21\xce\x12\x5d\x42\x4a\xbe\x84\xca\x38\xf1\xda\xb0\x9b\x12\x5d\x76\x0a\x91\x8f\xc6\xed\x03\x39\xaa\xad\xcb\x98\xb2\x8d\x87\xe8\xde\x09\xae\x21\x30\xcb\xd9\x17\x9a\x2c\x53\x8e\x28\x47\xbc\xa5\x15\x64\x93\x2f\x1a\x76\xd5\x10\xde\xdf\x23\xe4\x0f\x57\x06\x25\x2c\xbe\xd0\x3b\xa9\x74\x49\x5e\xd3\xcb\xba\x3f\x81\x29\xac\xdc\xd0\xb7\xa2\x73\x96\x2a\xd6\x40\x6b\xa4\x66\xd0\x53\xb2\xe1\xad\xc9\xda\xea\xad\x4a\x90\x2a\x3a\xe1\x38\xeb\x82\x35\xc5\x2e\xd2\xd1\x05\x80\x23\xec\x84\xa3\xa6\x13\xa4\x62\x6c\x7d\x41\x47\x63\xbe\xe2\xc1\x80\x36\xb1\xf9\xa2\x07\x26\xe9\xf8\xe8\x66\x95\x00\x4c\x64\x72\x54\x16\x06\x27\x7d\xa6\x28\x53\x09\x36\x57\x1b\xf1\xb7\xdf\xec\x14\xd3\x72\x6d\x02\x05\x4e\xb1\x04\x29\x24\x3e\x07\x6f\xfa\xbb\xd5\x82\xa4\xaa\x78\xde\x12\xc2\xdd\x94\x9f\x22\x5a\x4f\x3e\x44\xc5\x1d\xe6\xf6\xb5\x96\xd3\xb1\x30\x39\xed\xee\xb3\x57\x41\x4e\x4d\xc6\x3b\x58\xef\xbd\x95\x66\x73\x44\xd2\x95\x0b\x74\x49\xfe\x99\x7b\x93\x5a\xfa\x4b\xd6\x08\xcd\x51\xa0\xb9\x4b\xc7\x57\xe7\x1c\x57\x94\x33\x8b\xaf\x68\xc4\x91\x7b\x37\xbe\x86\xb5\x1d\x61\x78\xf7\xe2\xd9\x8c\x2d\x97\xe9\xd4\x70\xd5\x72\x88\xc3\x06\xea\xd2\xd4\x0e\x9d\x83\x84\xe4\x8f\x36\x6a\x6f\x12\x45\x31\xd7\xda\x9c\x9e\x42\x93\x59\x7c\xc4\x63\xae\xb5\x3d\x02\x91\x83\xfb\xa3\x4e\xe1\xf0\xe6\x24\x26\x93\x9e\x4d\x50\x68\xbc\x66\xa8\x62\xf5\x15\x69\x64\x46\xd9\xa5\x2e\xcc\xa8\xfa\x15\x6f\x3b\xc5\x1a\xe7\x41\x62\x3f\x9b\x42\x2a\xca\x75\x5f\x9e\x0b\x9d\x26\x65\xbe\x91\x35\x6d\x06\x4c\x4e\xb9\x92\x27\x7d\x69\xb8\xfd\x9c\x25\x2c\xe0\xa8\x7f\xd2\xca\xa1\xa5\x6c\x4b\xcc\xb2\x87\x3e\x2d\xb0\x10\xc9\xbd\xac\x1c\xc1\x6f\x94\x34\x95\x83\xe6\x65\xeb\x40\x44\x84\xea\x82\x8e\x32\x3d\x7f\xdc\x9f\xf5\xab\xa9\x46\x91\x8c\xc9\x7e\x1d\x19\x2b\x9b\x5a\x8a\x51\x86\xb9\xaa\x1a\x96\x10\x56\x7a\xc2\x00\x74\xdd\xe0\xb8\xfb\xf5\x83\x21\x8d\x4c\xff\x44\x86\xaf\xe4\xcc\xbe\xb0\xe1\x4b\x9f\x31\x37\x06\x23\x12\x80\x7a\x9a\x39\x05\xd0\x28\x47\x50\x79\x47\x97\xe5\x70\x16\x6c\x0e\xaa\x57\x88\x38\x57\x2c\xdb\x5d\x32\x2e\xda\x0e\xdb\x52\x55\x2f\x59\x73\x4e\x3e\xca\x26\xd6\x09\x63\x5a\xaa\x67\xc3\x80\xc1\x6d\x67\x44\xed\xe2\x1c\xd7\xe8\x9b\xdc\xd3\x8c\x64\x3d\xd8\x1c\xbd\x8f\x33\xfc\x51\x0a\x4e\xe7\xe6\xb3\xa9\xb2\xcf\x19\x53\xe5\x1f\x42\x48\x1e\xc4\x57\xbe\xf8\xb8\xe2\xb4\xa9\xf2\x93\x79\x3d\x03\x6d\xa2\x0c\x3b\xca\x94\x62\xef\x97\xd7\x37\x50\x88\x7d\x2c\xe5\x64\x24\xf9\x2f\x40\xc7\x79\xb3\xf8\x4d\xe5\xf2\xcc\x8e\xad\x27\x9a\xe7\x76\x6c\xd3\xc5\xf3\x47\x8a\xef\xa9\x3d\x1b\xcd\x7d\x7a\x04\xf8\xe1\xe9\xac\xbb\x6b\x9b\x95\xe3\x33\x7b\xb9\xa6\x28\xdf\xbf\x99\x6b\x97\xb0\xcf\xef\xe6\x58\x71\x3f\xbf\x9d\x29\x89\x3f\x73\x58\x07\x37\x73\xb4\xbc\x8f\xd6\x12\x54\xad\x5c\x31\x20\xad\xa2\x0d\x48\xac\x68\x33\x52\xeb\x40\x0a\x53\x9e\x9c\x4d\x03\x25\xaf\x1f\x90\x23\x9f\x69\x75\x47\x45\x35\xb9\x6e\x58\xd3\x6a\xa4\x5d\x2d\x46\xf7\x57\xf8\xd2\x37\xea\x28\x01\x2c\x39\xf9\x51\xd2\x47\x98\x20\x9b\xc1\xf6\x67\xc5\xf4\x1f\x02\xcb\x23\xb4\xf1\x4c\x1b\x11\x6d\x2a\x57\x78\xb0\x88\x99\x52\x52\x95\x2a\xf5\x48\x85\x82\x43\xd3\xee\x11\x3a\xc3\x18\xe3\x48\xbc\x79\x71\xe2\x31\xf4\x0a\x50\x83\x2d\xe5\x58\x0f\x78\xb6\x51\x2c\x32\x69\x4b\xa9\x9a\xfe\x31\xf0\xa0\x80\x88\x94\xec\x9d\x0a\x79\x99\x4a\x6f\x69\x7e\x91\xb2\xa9\x7b\xaa\x7e\xa2\xdb\x9a\xa9\x6f\x64\x5a\x9d\xa9\x4d\x00\x17\x9e\x2d\x34\x68\x5d\x85\x33\xcc\x11\xa9\xc3\xa2\x19\x7b\x7b\xe8\x1d\xa9\x2a\x8e\x96\xa6\x65\x1a\x59\xea\x30\x10\xd5\x10\x5b\x65\x37\xa8\xa2\xe2\x64\xa9\x3f\xa7\xdc\x86\x04\xcb\xd1\x64\x7f\xe6\x68\x84\x4b\x59\x1d\x14\x22\x25\x64\x85\x64\xf1\xae\x2c\xa5\xab\xde\x34\xfd\xba\x2e\x89\x86\x62\x2b\xae\x10\x69\xaf\x31\x6b\xf1\xe0\xcb\xd6\x7e\x64\x09\x7b\xe0\x46\x62\x25\xdd\xb6\x61\xbe\xd2\xb6\x1b\x56\x21\x3d\xb9\xa3\xdc\xbd\x6e\x6d\x0c\x87\x00\xa1\x68\x63\xbd\x12\xd4\xde\x00\xe5\x17\x52\xa1\x75\x0b\x34\x42\xa1\x2f\x59\x43\x16\x61\xc0\xe7\xb9\x0e\x89\x91\x05\xf4\x95\x6b\x98\xeb\xc5\xb3\xae\x29\x88\xf1\xaa\xb8\xe5\x31\xc4\x08\xbc\x15\xb8\x95\x77\x16\x6d\x42\x17\x17\x80\xd5\x1e\x4f\x5c\xfa\x0d\x48\x4d\x2f\xec\xec\x05\x87\x94\x91\x0a\x22\x98\xfa\x1e\xab\x49\xbb\x64\x0d\x9c\x9a\xb2\x6c\x08\xe7\x63\x60\xdb\x97\x5e\x91\xd5\x98\x17\xd4\xf1\x1d\xf9\x74\x20\xee\x1f\xa2\xbf\xbe\xec\xea\x2b\x7a\x59\x49\xb7\xef\x2e\x64\x05\x6e\x1d\xa2\xbf\x0a\xa4\xc8\xd0\x3c\x80\x66\x45\xb5\xd8\x0f\xbc\x96\x0b\xd8\xdd\x66\x37\x80\x26\xef\x0f\x56\x1d\x0b\x62\x67\xb0\xc3\xe0\xc0\x4b\x46\xc0\x05\x86\x9e\xee\xa0\x02\x6c\x91\x28\xd8\x58\x5a\xf6\x61\x26\xf8\x91\x7b\x0c\x85\x8d\xc6\xbf\x94\xd8\xf1\xe8\xa3\x1b\x81\x83\xdd\xf5\xfe\x5c\x03\x8c\x4b\x21\xf6\xf7\x35\x00\x44\x44\xf3\x74\xc7\x96\x48\x90\xb8\x7e\x31\x5f\xb4\x2b\x59\xf3\xc1\x4d\x89\x07\x9f\xb0\xb4\xdd\xa0\x23\x79\x9b\xcc\x63\x53\x4e\x19\xd5\x8f\xc4\x9c\x93\xa6\x9d\xc4\x77\xd1\xe8\xda\xe9\x49\xad\x76\xdb\xd9\xd6\x2d\x1f\x01\x73\xc2\x39\xbe\x22\x87\xe8\xde\xbb\x54\x2b\x0d\x49\xb6\xaa\x17\x80\xea\xfb\x14\xd9\xd6\xd1\xc4\xb4\xf1\x56\x9f\xec\xb6\x4c\x9e\xc9\xc9\x96\x6d\xeb\xbd\x65\xb8\x78\x31\x63\x5c\xf5\xe5\x91\xd5\xb5\x2c\x00\xf1\x67\xfa\x6d\xb7\xd1\xb7\x83\xea\xde\x86\xe4\x4f\x77\xee\xea\xf3\xe1\xc6\xd2\xe8\x80\x1b\xcb\x72\xe5\x91\x47\xec\xf2\x5f\x04\x84\x3b\xa7\x67\xa8\x3d\xaa\xc0\x5e\x79\xc4\x5f\xfd\xd3\x68\x81\x3d\xdd\x71\xce\xa3\xfc\x4c\x9d\x47\x67\xfa\xf6\x79\x60\x1e\xe4\x9c\xa8\x7a\x22\x93\xa7\x3b\xc1\x6e\x3a\x6f\xa9\xf9\x4b\x3f\x8b\xc3\xae\x9c\xab\xe7\xad\x62\x38\x5c\xad\xd2\x2a\x44\x42\x25\x43\x18\x75\x35\xfd\xa5\x23\xe8\xec\xd4\x6c\x0b\x5f\x90\x82\x4e\x69\x98\xe1\x6c\x40\xca\xa8\x50\x79\x1f\x61\x07\xa0\xc6\x1a\x53\x55\xc3\xaa\x4a\x4d\xc7\x76\xf6\x90\x73\x39\x27\xd6\x02\x6d\x54\x21\xc5\xbc\xd7\x63\xd1\x06\xcc\xbf\x05\x87\xbe\x75\x1c\x83\xe4\x0b\xc8\x67\x0c\x61\x74\xb1\xd3\x01\x20\x77\xc6\xe3\xa5\xda\x5d\x84\x44\xf7\x5a\x75\x6e\x06\xe0\xf7\x52\xe7\x2d\xc1\xda\x46\x59\xac\x7b\x79\x5c\xd6\x5c\x79\x64\xdc\x02\xeb\x70\x2d\x37\x04\x77\x83\xfc\xeb\x5e\x92\x01\x25\xf7\x66\x23\xae\xc2\x3a\xdb\x84\x23\xe7\x30\xbc\xc9\xbe\xbb\x9d\x7f\x2c\xcd\x73\x74\x49\x2a\x55\xad\x49\xa3\x09\x18\x54\x92\x28\xf6\xf6\x10\xad\x0b\xb9\xd5\x81\xf9\xe5\xec\x54\x96\x53\x34\xcd\x89\xc2\xb8\xef\x54\x78\xf7\xd9\xe9\x89\x7a\xe7\x68\xe0\x7b\x59\xb0\xef\xd1\xc3\xc9\x81\x3f\x9d\x13\xc9\x7a\x43\xde\xa7\x1a\x9b\x43\x67\x32\x29\x2c\x9b\xb6\x50\x05\xab\x41\xb5\x4f\x4d\xcc\x0d\x96\xf5\xc3\x64\x7b\x67\xe7\xd8\x77\x0e\x1d\xf9\x2c\xf4\xc2\xb9\x92\x83\x56\x61\xcc\x33\x72\x21\xe3\x4c\xb9\xbd\x93\xe9\xc1\x8f\xcf\x51\xc3\x4b\x90\x2d\x6b\x32\xf2\xf2\x73\xe6\xed\x5f\x7f\x16\x7b\xe2\x06\x1c\x40\x5a\x72\xa9\xee\x9d\xe9\x0c\xa3\x01\x38\x17\xa7\xb6\x48\x8e\xb9\x3e\x1d\x48\xe1\x05\xaa\x6a\x56\x61\x5b\xae\x4a\xda\x82\xa1\x4b\x39\x9b\x3a\xf9\x33\x54\x27\x58\x8b\xa9\xc2\xfb\xaa\xfd\xbd\xc2\x91\xec\x80\x1f\x71\xf9\xa8\xc1\xe4\x21\xba\x6f\xbf\x5e\xf7\x62\xab\x13\xd9\x36\x71\x1b\x8d\x7b\x17\xfe\x1d\x7f\x76\xea\x96\xef\x54\xa1\x91\x76\x31\xf7\x02\xd5\xd6\x41\xde\xe4\xfe\xe0\x24\x30\x77\x17\xf4\xdd\xd6\xdd\x91\x28\x9e\x11\xf4\x4f\x5d\xf4\xee\x9f\xaa\x4e\x9c\xa7\xfb\x2e\xf0\x4a\x46\x02\xdb\x12\x3d\x79\x8c\x3b\xb5\xdd\x0e\xd1\x7d\x53\x4c\x0f\x3e\x92\x77\x83\x27\x45\xa8\x92\x71\x5c\xd7\x8c\x83\x1b\x2e\x55\x29\x2d\x86\x92\xac\x97\x66\x86\xf7\x8d\xba\x3d\x55\xd2\x12\xe8\xd0\xe3\x21\x39\x2b\x79\x42\xef\xc5\x14\x6d\x26\x1e\x62\xfa\x87\x45\x09\x26\x22\x8c\x8a\x0a\xd3\x39\x29\xd1\x25\x63\x15\xc1\xb5\xbc\xf6\xb5\xe8\x57\xa0\x05\x6e\x21\x94\x9c\x2a\xab\x12\xb0\x01\x2b\x01\xa2\x05\x25\x05\xd1\x4d\xeb\xd0\x9c\xb4\xb8\xc4\x2d\x06\x8b\x92\x0c\x16\xd7\xe0\x57\x4a\x8e\xca\xee\x4e\x07\x53\x3a\x91\xcf\x4f\xc4\xb8\xe2\x20\x00\xe2\xde\xe0\x76\xb6\x8d\x7e\x46\x1f\x1c\xe5\x5e\x43\x96\x51\xa9\x5b\xc1\x8e\xa9\x2f\x4f\x29\xc8\x66\x32\x96\xdf\xdb\x39\x3f\xd0\x18\x02\x5b\xf5\x76\x89\xa1\x73\x9b\xa3\xba\xd1\x49\xb4\x80\x68\x61\x46\x70\xd1\x4f\xa7\x66\xe1\xfe\x41\x8d\xe6\xf5\xfe\x03\x59\x45\xa1\x7f\xc9\x02\xbe\xd1\xab\xaa\xf6\xf1\x04\xb0\xf2\x81\xac\x92\x35\x59\xbd\x45\xcb\x92\xaf\x21\x1c\x19\x26\x6c\x57\xed\x90\xc9\x05\x69\x05\x8d\x98\xa8\x28\xaf\xed\xd5\xd9\xa9\x8d\xf4\xd0\xd6\x4e\x6b\x83\x53\x5b\xac\x6f\x51\xb9\xc7\x19\x8b\xa6\xe6\x7c\xbd\x0d\xfd\xc4\xb6\x56\x32\x14\x67\xec\x4e\x46\xbd\x21\xe4\x2c\x83\xa8\xe7\x08\x45\x11\x34\x35\xbb\x4c\xc3\x09\x17\x68\x80\xbf\xbf\x11\xd5\x93\x56\xe3\x47\x63\xd2\xb5\x07\x2b\x83\xae\x91\x3b\x5c\x54\x6e\x39\x75\x8f\x1d\x5a\xdb\xf5\xd4\xa9\x5c\xec\x75\x88\xcd\xef\x1c\x6c\xea\x14\x13\x77\xed\x05\x5b\xac\x6e\x82\xc9\x9b\x2c\x5a\x2e\x6b\x52\xd1\x0f\x04\xd9\xc6\x2c\xa6\xf2\x97\xec\xb0\xa0\x69\xcf\x80\x7e\x45\x16\xb2\xda\xf6\x25\x2e\x3e\xa8\x72\x32\x6c\xbe\xc0\x2d\xbd\xa4\x15\x6d\x57\x21\x5a\x2e\x5c\x53\xb9\x40\xc8\x7b\xb9\xba\x9f\x02\xba\xaa\x4d\x6e\x82\x56\x60\x32\xc1\xec\x01\xfa\x6a\x27\x68\x3d\xb2\xf5\x96\x25\xd7\xba\x23\xae\xcb\x3d\xe6\x8b\xd9\xa6\x80\xb8\xed\xf9\x09\x27\x6a\x39\x53\x9d\xaa\x74\x82\x02\x88\x2d\x60\xb6\x17\xd2\x34\x37\xf0\x85\xe6\x0e\xc9\x2d\x4e\x9e\xa6\xf7\xa2\xff\x4a\xee\x3c\xe6\x3c\x92\x9a\xcd\x7a\x02\xa5\x94\xad\xbf\x73\x8f\x25\x9d\x4a\x9c\xf9\x57\x7d\xb2\x58\x7e\x50\xec\xf6\x93\xaf\x43\xc6\x7d\x3a\x7b\x8e\xf9\x46\x32\x43\x6e\x97\x15\xe2\x08\xcd\xb5\x2c\x84\x67\x36\xd3\xd9\x11\x30\xae\xb8\x3b\xe2\x44\xc7\xc9\x2d\x37\x00\xbd\x0c\x50\xa7\x7f\x84\x59\xa6\xcc\x15\x71\x27\x60\x4a\x43\x53\xd3\x34\x41\xb3\x6b\x3d\xca\x15\xbd\xd6\xa6\xb5\xb3\xd3\x6d\xc4\xae\x49\xb3\x6c\xa8\x4a\x5b\x95\x12\x79\x29\x44\x58\x77\x43\xa1\xb4\x9f\x90\xfe\xdc\x68\xc3\x44\x18\xa4\xd7\x25\xdc\xdf\xeb\x32\x78\x2d\x09\x2e\x75\x61\xe9\x55\xb9\x6e\x11\xf0\x94\x50\xd5\x07\x45\x2a\x6c\x5e\x00\xa2\xa6\xf4\x6d\xdf\xa6\x07\x4f\x8a\x65\x3a\x48\x56\xab\xeb\xea\x65\x83\x17\x0b\x52\x9e\x5a\xf2\x76\xb3\x2c\xcf\x4e\xfb\xd6\xf3\x3e\xf5\x7a\x7c\x8b\x7b\x8b\xba\xc0\xda\xc8\xc0\x4a\x29\x70\x57\x6e\xb5\x45\x59\x68\x87\xd4\x6d\xb3\x0a\x50\x41\x5b\xb4\xc4\x1c\xfd\xab\xe3\xad\x62\x27\xdb\xf0\x19\xad\x2a\x24\x6e\x2b\x43\x7e\x7b\x5d\x6d\x60\x5b\x3e\xe3\x39\x1a\xb3\x9b\x77\xe4\x2f\x70\xd4\xe5\xb8\xb1\xfc\x23\x94\xb8\x3f\xf0\xad\x39\xa3\x57\xb7\xa8\x8f\x33\x3a\xf7\x45\xdc\x03\x38\x9f\xb9\xb5\xde\x6d\x7a\x2b\x86\xe5\x20\xc7\xb4\xb7\x52\x2d\xe6\xfe\x0e\x3e\x53\xb3\xf6\xec\x73\x50\x3b\x9e\x2c\xab\x95\x63\x1a\xab\x55\x93\x3a\x26\xbe\xad\x1f\xb4\x86\x85\x38\x31\x6a\x7b\xba\x89\x23\xb0\x18\xd5\xef\x42\x13\xad\x29\x9a\x15\xf6\xcc\xd1\xb5\x11\xa5\x35\xdf\x6f\xde\xa7\x20\xa6\x5a\x9f\xc9\x31\xac\x98\x23\x6d\x0e\x73\xbc\x70\x5b\x73\x1a\x20\x50\x37\x2e\xa2\x12\xd0\xc4\x55\xb7\xbf\x84\x48\x92\x18\x94\xd3\xff\x55\x8d\x3c\x24\x6f\x86\xd6\xd6\xe6\x75\x87\x3a\x82\x86\xa5\xb2\xcb\x9b\xdf\x1f\xee\x9b\xc7\x23\xe9\xc2\x7f\x67\x54\x6b\x36\x39\x62\x44\x11\x20\x67\xb4\xb2\x07\xf8\x35\x2d\x1d\x4d\xde\x18\xe0\xd3\x3d\xe6\x92\x12\x01\x2e\xcb\x77\x2c\xdf\x99\x55\x4b\x05\x02\x3d\xd0\x7d\x44\xf9\x7f\xb7\x7a\xcd\x13\xe6\x69\xf4\x4c\xdb\xa4\x0f\xa0\xed\xa5\xfd\xe2\xa9\x35\x56\x1f\xa2\x7b\xef\x74\x9b\x15\xdd\xd8\xf3\x60\x1b\x3d\xdc\x46\x8f\xb6\xd1\xe3\x6d\x71\xbc\x9f\x24\x6d\xeb\xd0\x1b\xf0\x77\x6d\x96\x17\xcf\xa0\xb7\x55\x1c\x2c\xdd\xf5\xf7\xd1\xe9\xf8\x96\x4a\xd0\x39\x4e\x49\xab\x49\xca\xbc\xeb\x8e\x11\x66\x31\x2b\x5b\x43\x48\x1a\xe2\x74\xcb\xb6\x2d\xca\x74\x6e\x4f\xb1\xe7\x92\x03\xa8\xae\x55\x3c\xa9\x7c\x26\x17\xe1\xdc\x39\xde\x75\x99\xc5\x4f\xae\x51\x50\xaf\xcf\xcf\x57\x79\x6f\xd0\x37\x10\x85\xee\x33\x29\xbc\x25\x0f\x5a\xa2\x2b\xdb\x88\xa3\x36\xa6\x13\xb2\x7b\xde\x46\x1f\xb5\xd4\x29\xfb\xcf\x3c\x60\x4e\x95\xf6\x7e\xa2\xf4\x6c\x29\x75\x50\x84\x3f\x05\xf8\x0f\x42\x94\x36\x18\x48\x2b\xdb\x39\x12\xcc\xdf\x63\x4a\xcc\xc9\xb4\xf2\x8c\x2e\xb3\x9e\x75\x79\x57\xdb\xcd\xf6\x3b\x54\xd0\xc6\xf6\x11\xf5\xe5\x47\xd9\x6f\x6a\xa2\xac\x8b\xe1\xdd\x6e\x78\x5a\x88\x98\xb0\x83\x6b\xdc\xfb\xf5\xc6\xd8\x18\xd1\xc7\xc9\x8e\x9c\xc4\xc2\x3e\x20\x61\x1f\x70\xb0\x0f\x28\xd8\x07\x0c\xec\x47\x08\x78\x6b\x7d\xf2\x81\x28\x45\x4d\x6c\xa0\xe9\x30\x19\x1b\x65\x6c\x01\xf5\x7e\x69\x28\xdd\x4b\xb7\x0f\x67\x4a\xf9\x52\xa4\x2a\xdf\xe8\xe7\x20\xeb\xe2\x30\xe8\x52\x95\x34\x40\xf8\xe3\xf7\x1b\x5d\x6d\xc2\x9b\xe6\xdd\xe2\x80\x3d\x70\xea\x61\x5c\xe3\xaa\x23\x5e\x21\x8c\x6d\xf1\x2c\x6f\x9b\xae\x68\x11\x8d\x6b\x43\x2c\x7c\xcb\x52\x5f\x9d\x8e\x31\x15\x15\xa0\x30\x18\xab\xd4\x8a\x53\xdd\x8a\x07\x88\xc7\x83\xe6\xd7\x67\x88\xa7\x3a\x54\x9e\xe1\xac\x9e\xb2\xf4\x72\xce\xd5\xb7\xc6\xe1\x97\x6a\x73\x62\x17\xf2\x5e\x43\x33\xe1\xcc\xd9\xef\xee\xa2\xaf\x83\xb6\x88\x9f\x52\xbb\x6e\xdf\x0f\x2c\x50\xae\x76\x35\x23\xc5\x07\x53\x93\x45\x9a\x4e\x38\xb0\x31\xd5\x97\x52\x57\x0a\xe6\xe2\x92\xac\xd8\x92\x34\x05\xe6\x04\xcd\xc8\x47\x54\xcc\xb0\xa0\x0f\x5d\x43\x07\xbc\x2c\xaa\xe2\x2a\xa9\x79\xd7\x10\xe3\x41\xb5\xad\xbc\xca\x6e\x51\x49\xb7\x8a\xd6\x5f\xbc\x53\x46\xf9\x3f\x70\x45\x95\xfd\x72\xf2\x33\xa2\xf5\xa2\x6b\x1d\xf7\xa0\xe0\xac\x81\x25\xf3\x72\xd5\x92\x7f\x90\x86\xcb\xbe\x9d\xf0\xc2\x6e\xd7\x4e\xbf\xb5\xdb\x2c\xb6\xd8\xcc\x55\xec\xb2\xfb\x8a\xbf\xb3\x74\x8a\x26\x13\xfb\xec\x53\xf4\xf8\xdb\x2d\xf4\xdb\x6f\xc8\xf9\xec\x19\x7a\xf2\xdf\x42\xc6\x70\x9f\xfa\xcb\x7f\xc7\x4f\x1d\xec\x3f\xdc\x4a\x65\x29\x6a\x47\x15\x94\xd9\x48\xef\xe1\xa7\xc8\xad\x65\xe4\x46\x67\xeb\x6c\xd8\x73\xbe\xa2\x8e\x3a\xf8\xd5\x0a\x11\x19\xef\xe3\x61\x3b\x0e\x05\x0a\xf0\x9b\xd5\xe6\xc4\x73\x11\x57\xf2\xc1\x6d\xd9\x62\x22\x28\x65\xee\xa8\x55\x9f\x59\xc7\x91\x0c\xea\xac\x29\xc9\xbf\x68\xd8\x82\xf5\x04\xca\x0b\x50\xa7\xb6\x92\x52\xb0\xfa\x6d\x69\x51\x33\xa1\xd4\xaa\x4b\xa2\x1b\xdd\x03\x96\x00\x03\x6a\x86\xaf\xc1\x24\xe0\x75\x60\x45\x97\xb2\xf5\x06\xdc\xae\xb6\x3f\x2c\xae\xae\x58\x43\xdb\xd9\x1c\xad\x88\xb5\xd5\x1f\x9b\x92\xe2\xe1\x4e\x90\xba\xe4\xdb\xc6\xc5\x08\x79\x3a\xb2\xfe\x78\x57\x7b\x1e\x26\x6e\x8b\x4e\x19\xa8\x6e\xa7\x7c\xd9\xbb\xd2\x16\xa6\x52\xc5\x9f\xc4\x57\xd9\xf8\xf0\x6d\xc7\x06\x41\xb9\x34\x00\x00\x56\x70\x51\x74\x0d\x6e\x49\xb5\x42\x0d\x59\x34\x84\xeb\xd0\x15\x27\xb0\x5a\xd7\xf2\x4f\x67\x01\xb9\xee\x18\xb5\x59\x69\xcf\x43\xc6\xf5\x90\x2b\xf9\xaf\x40\x78\x6f\x05\x15\x6b\x46\xd7\xe8\xe9\xa9\xfc\x74\xe3\xaa\x4f\xee\xbc\x16\xfe\xc2\x13\xf3\x72\x2d\xd8\x61\xa3\x02\x89\x89\x44\x2b\xc6\xdb\x47\xcc\x21\xb7\x9a\xea\x3b\x3f\x12\xc4\x0f\x2a\xca\x47\x59\xc5\xd0\xae\xbc\x08\xae\xf4\xdc\x46\x87\xea\xc6\x13\xcb\x85\x75\x25\xf1\x73\xc6\xf5\xe6\x2a\xc6\x75\x84\x86\x0b\x1b\xa5\x00\xfd\x48\xe8\xd5\x2c\x28\x8c\x4a\x6b\xda\x52\x5c\xc9\xaf\xa2\x94\x13\x08\xc9\xd8\xf1\xbd\xc3\x60\xab\x43\x13\x99\xc9\x41\x59\xbd\xa7\x1a\xf6\xc9\x5f\x6b\x2e\xee\x44\xbe\x77\x4d\x1a\xe0\x01\xe2\xe3\xad\x10\xac\xd6\x4d\x0d\xe0\xe3\xf3\x53\x55\x38\xb4\x9b\x4e\x69\x41\x49\xad\x6a\x55\x85\xb7\x56\x4f\x28\xa4\xb8\xac\x82\x6d\xbb\x7f\x3f\x40\x60\xe2\x9e\x0a\x08\x3b\x67\xc4\xd0\x3f\xba\x80\x66\x70\xa5\x85\x2b\x5c\x90\x66\x4e\xb9\xb8\x79\x2b\xcd\x86\x35\xe2\x24\x67\x8e\x70\x72\xfe\xfa\xdd\x8b\x43\x74\xec\xb3\x6d\x2a\x44\x74\x15\xcb\x47\x4a\xb4\x68\xa8\x75\x30\x1e\xec\xef\xef\x40\x1f\x41\x99\x1f\xd5\xd8\x18\xcc\x10\xf4\x44\x02\x0a\xb1\xbe\xa5\x84\x95\xd6\xf0\x5e\x55\xb0\x0f\xa3\x96\xcc\x17\xac\x11\xda\xc5\x55\x83\x0b\x30\xf4\x52\x66\xbe\x0f\xe1\x4b\xf0\xed\x8c\x70\x22\x9e\xaf\xcb\x29\x06\x61\x28\x6a\xa0\x34\xc7\x2b\xc4\xbb\x4b\xb0\x34\x03\x9b\x15\x8b\x15\xa3\x44\x4b\xd8\x0d\xc7\x00\x53\x35\x64\x14\x79\x28\x82\x35\x11\x2a\x86\xf3\x08\xea\xf5\xdb\x34\x3d\x1d\x86\x70\xd1\x0e\x7a\x5d\x09\x02\xe4\x11\x7e\xb6\xa5\xaf\x5a\x36\x7a\x66\x4b\x29\xf1\x01\xd4\xff\x25\x0d\x4b\xd0\xa7\x04\x77\x4e\x96\x12\x1c\x5e\x41\x0e\x5c\xed\xc3\x83\x51\xd4\xdc\x2e\x15\x9b\x5a\x97\xea\x8f\x3c\xaa\x0f\x69\x74\x12\x9c\x02\x55\x9f\xd8\x9e\x82\xd4\x4b\x0e\x7f\x78\x86\xfc\x3c\xbb\xcf\x75\x66\xe2\xdf\x94\x1c\x16\x80\x4f\x3a\xe1\x23\xe1\xca\xad\x74\x6d\x05\x2c\x40\x34\xb9\x26\x8d\x73\x8c\xc2\x3b\xbd\x3f\x8a\x20\x6f\x0e\xa8\x4d\xc7\x9d\x7e\x6d\x23\x2a\x21\x4c\xb9\x66\x54\xb6\x3c\x8a\x1b\x7a\xab\x8b\x5f\xba\xc7\x59\x57\xf3\x4c\x84\xef\x47\x3a\xfc\xc8\x8b\x49\xf6\x72\xf3\x4d\x90\x49\xd5\xc3\xcd\x68\x19\xce\x72\xc9\xc8\x1e\x67\x75\xc1\x9a\x86\x14\xad\x72\x1d\x69\x53\xeb\xd4\x56\x84\x91\xc4\xbf\x8b\xfe\x9e\x33\x5d\xc6\x71\x70\x66\x39\x4e\x04\xf9\x85\x39\x42\xbd\x5a\x84\x45\xa2\x49\x3b\x42\x58\xa6\x30\x81\x4a\x91\x8c\x6f\x73\xc9\x26\x4c\x7c\xd2\x11\x6e\xd8\x4f\x86\xeb\x57\x37\xae\x48\xeb\x47\xc6\x19\x35\x23\x4a\xac\x22\x7a\x84\x6d\x19\x2f\xa7\xc6\x89\x8c\x87\xe3\x96\xfa\x81\xac\xd6\x5c\xe6\x2b\xb2\xd2\x53\x75\xe2\xf5\x6e\xbf\xbc\x57\x64\x15\xac\xcc\xc4\xbc\x8d\x5b\x95\x3e\x33\x63\x97\x74\x61\x72\xc4\x36\xb8\x1e\x9b\x78\x36\x62\x31\xd6\x6d\xa9\xe6\xca\x5b\xdc\x76\xe0\xe3\xc4\xca\x38\xd3\x55\xb8\xc9\x04\x61\xba\x9e\x07\x2f\xd2\x32\x9a\x9d\x17\x66\x99\x5c\xe4\x7f\xfd\xd7\xa8\xa8\x4a\x1d\x0f\xbb\xe9\xc0\xca\x00\xc7\x99\x28\xca\x9c\x86\xed\x9a\xc9\xf3\xa1\x8c\x26\xbe\x5d\x06\x18\xcf\x30\x47\x9c\x44\xb6\x73\x5f\x81\xfa\x8c\x11\x76\x6a\xa0\x64\x10\x40\x6a\x41\x6e\x98\x04\x27\x4e\x1b\x2b\xa9\xb2\x36\xa4\xec\x0a\x1b\x64\x08\xaa\xab\xdb\xd5\xd3\xbb\xe8\x32\x4d\xe6\x12\x0d\x3e\xd7\x59\xae\x7a\x27\xb7\xe0\xcc\xb0\x39\x82\x29\x8c\x92\x7a\x25\x9b\xe8\xa5\x9b\x9c\xde\xcb\x1f\x2a\xef\x3a\x71\x6f\x52\xbf\xc9\xa7\x29\xd1\x10\x47\x8b\xa4\x73\x9b\x7c\x23\x78\x2f\xa2\x52\xd7\xe3\xfa\xf3\xf5\x73\x9c\xa2\x69\x0e\xe7\x62\x99\xde\xf0\x23\xb6\x53\x3e\x19\x6d\xa2\x19\x5e\x71\x4d\x35\x56\xb4\x7b\xba\x3a\x43\x1c\xef\x93\xf7\x55\xb8\xee\xad\x4c\x37\x4e\x03\x4c\x70\x73\xaf\x99\x09\x9b\x4a\x17\x86\x29\xb2\xe1\x60\xe6\x5d\xbe\x1c\xc6\xf8\x3d\xec\xa9\xa9\x91\xdd\xca\xb0\xe9\x1c\x28\x68\x72\xd5\xae\x95\x32\xbd\x36\x36\x45\x41\xf3\x59\x9e\x8c\x1d\x4e\xae\x56\x17\x37\x48\x6c\x79\xd0\xd4\xd5\x3c\xe1\x97\xd4\xd0\x36\x1b\xb1\x3e\x31\xec\x7a\x55\x46\x52\xfe\x83\xbd\x3d\x74\xca\xe0\x24\xcb\x58\x4b\xd7\x26\x99\x52\x71\x60\x64\x57\xa3\x8f\x35\x0f\xbf\x37\xad\xfb\xd7\xd7\x37\x29\x8b\x22\x7e\x09\x1a\x7e\xf7\xe8\x25\x6e\x1b\xd7\x3c\x01\x7c\x20\xb5\x2e\x96\xa1\x5c\x48\xd9\x50\x7a\x67\x0f\x5f\x04\xb5\x26\x06\xcf\x6e\x58\x9c\x22\x2f\x62\x74\xad\xd7\x15\x2e\x48\x9b\xd4\x7d\xa0\x29\xa8\xb7\xbe\xc2\x1e\x4e\xd2\xf4\xcc\xb0\x7d\xd7\x06\xe7\x59\x67\xba\x6e\xe4\xa6\x0b\x9c\x9e\xbb\x0d\x1b\xe1\xf8\xd8\x36\xa2\x8e\x2d\xa5\x21\x05\x25\xd7\x36\x1a\x4c\xda\x50\x4e\xcc\x31\x53\x79\xa0\x1d\x8f\x95\x3e\x39\x91\xb7\x30\xd8\x78\x96\xd0\x38\x6f\xb9\x2b\xa0\x35\x6d\x27\x3f\xa3\x70\x4f\xac\x8e\xf5\xb3\x5a\xcd\x89\xff\x61\x11\x87\xf7\x44\x61\x67\xee\x31\x88\x93\x3e\x84\xc2\x1d\x84\x18\x04\xfe\x89\x20\xe4\x53\xb2\x95\xa7\x3b\x9e\xbd\x36\x29\x03\xa6\x6d\xbc\xf9\xa9\x64\xf2\x4f\x7a\x24\xe4\xad\x5b\x40\x4b\xea\x0f\x9b\x01\x18\xea\x5b\x21\x0a\x6d\x9a\xbf\x23\x5f\xa3\xa3\xd8\x6f\xad\xb2\xe3\x13\x2f\xbe\xe9\x2e\x2b\x5a\xe8\xf7\x16\xf0\x57\xf6\x35\x5d\x9a\x48\x88\xaf\x03\x23\xea\xc7\x7c\x00\xa7\xf6\x0e\x1f\x7a\xdb\x66\x49\xfa\x20\x52\x02\x8d\x20\x08\x1d\x8e\x74\x88\x1e\x3e\xd9\xdf\xdf\x87\x66\xdd\xf2\xb3\x87\x5b\x87\x08\x3e\x72\x3e\x7b\xb4\x75\x88\x0e\xc2\x07\x1f\x8b\x0f\x1f\x3d\xf1\x3e\x7b\x22\x3e\x13\x1f\xf4\x11\xdc\x93\xfd\xdd\x7d\x84\xb9\x39\x4f\xde\x76\x0e\xca\x2d\x43\x77\xbc\xbf\xba\x60\x61\xc1\x9a\x82\xd5\x04\x0b\x89\x97\x11\xf5\x08\x3f\x8a\x78\x47\x7c\x6a\x13\x5c\x14\x1d\x59\xbe\xe2\xbf\xe0\x72\xaa\x70\x25\x07\xdf\x7c\xeb\xaf\xe5\xc9\xc1\xb7\xc1\x6a\xfe\xfb\x5b\x7f\x3d\x0f\x1f\x7d\x13\xad\x28\xe5\xb7\x0a\x7a\x62\xe4\xf8\x46\x26\x5d\x0c\x87\xaa\x51\x72\xdf\x23\x3d\xcb\x79\x2d\x1d\x6d\xe5\xa9\x5c\xde\xb4\xfd\x46\x76\xc1\xec\xf5\x5d\xd0\xcf\xf7\x12\x7a\x50\x0c\x35\x3d\xaf\xac\x66\xe4\x9b\xdf\x6e\xd8\x73\xe4\x4b\x44\xf8\x7b\x13\x85\x64\x05\x3f\xec\x2b\x1f\x7e\x76\x34\x3a\x02\x0c\x8d\x88\xb9\x4b\x0c\x3d\x2e\xf0\xce\x8c\xe0\x66\x72\x84\x51\xef\x10\x67\x36\x76\x2e\x71\x08\x78\xe2\x96\x1f\x31\x39\x1d\x31\xe6\xa1\x98\x9b\x50\xb2\x5c\x40\xd0\x81\x60\xae\x80\x54\xf5\xdb\x23\xf3\xdb\x63\xf3\xdb\x13\xf5\xdb\xa7\x68\xf9\x10\x01\x20\xe3\xea\x46\x23\xdf\x4e\x2a\x58\x56\x26\x06\x2e\x5a\xd1\x8d\x43\x9c\x92\xb3\x2f\xfc\x58\xa0\x31\xb3\x97\x13\xc8\xcf\x3e\x88\x3e\xeb\xcb\xc2\x35\xd5\x10\x54\x2a\xba\x04\xda\x77\x8f\x6b\x43\xc6\xa7\x3b\xe8\xce\xff\x0f\x00\x00\xff\xff\x77\x61\xd8\xdc\x9a\x76\x01\x00" func flowidtablestakingCdcBytes() ([]byte, error) { return bindataRead( @@ -139,7 +139,7 @@ func flowidtablestakingCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowIDTableStaking.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xed, 0x71, 0xf3, 0xb7, 0xaa, 0xb, 0x25, 0x96, 0x8c, 0x75, 0x3e, 0x68, 0x19, 0xc8, 0x26, 0x5a, 0x79, 0x4a, 0x48, 0x1b, 0xb2, 0x81, 0xc6, 0xe8, 0x24, 0x1b, 0x35, 0x5b, 0x8c, 0x4d, 0x24, 0xdb}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x4f, 0xc2, 0x86, 0xe2, 0xb5, 0x92, 0xbc, 0x51, 0x88, 0x91, 0xe4, 0xa2, 0x8c, 0x58, 0x57, 0xf7, 0x7f, 0xca, 0xe2, 0x48, 0x5a, 0x9f, 0x6e, 0x51, 0x30, 0x1d, 0x70, 0xad, 0x88, 0x9b, 0xb4, 0x28}} return a, nil } diff --git a/lib/go/templates/idtable_staking_templates.go b/lib/go/templates/idtable_staking_templates.go index 0fb1b97e3..bff72e368 100644 --- a/lib/go/templates/idtable_staking_templates.go +++ b/lib/go/templates/idtable_staking_templates.go @@ -18,6 +18,7 @@ const ( moveTokensFilename = "idTableStaking/admin/move_tokens.cdc" endEpochFilename = "idTableStaking/admin/end_epoch.cdc" changeMinimumsFilename = "idTableStaking/admin/change_minimums.cdc" + changeDelegatorMinimumsFilename = "idTableStaking/admin/change_del_minimums.cdc" changeCutFilename = "idTableStaking/admin/change_cut.cdc" changePayoutFilename = "idTableStaking/admin/change_payout.cdc" endEpochChangePayoutFilename = "idTableStaking/admin/end_epoch_change_payout.cdc" @@ -71,6 +72,7 @@ const ( getNonOperationalListFilename = "idTableStaking/scripts/get_non_operational.cdc" getApprovedNodesFileName = "idTableStaking/scripts/get_approved_nodes.cdc" stakeRequirementsFilename = "idTableStaking/scripts/get_stake_requirements.cdc" + delegatorStakeRequirementsFilename = "idTableStaking/scripts/get_del_stake_requirements.cdc" totalStakedByTypeFilename = "idTableStaking/scripts/get_total_staked_by_type.cdc" totalStakedFilename = "idTableStaking/scripts/get_total_staked.cdc" rewardRatioFilename = "idTableStaking/scripts/get_node_type_ratio.cdc" @@ -170,6 +172,12 @@ func GenerateChangeMinimumsScript(env Environment) []byte { return []byte(ReplaceAddresses(code, env)) } +func GenerateChangeDelegatorMinimumsScript(env Environment) []byte { + code := assets.MustAssetString(changeDelegatorMinimumsFilename) + + return []byte(ReplaceAddresses(code, env)) +} + // GenerateChangeCutScript creates a script that changes the cut percentage func GenerateChangeCutScript(env Environment) []byte { code := assets.MustAssetString(changeCutFilename) @@ -351,6 +359,13 @@ func GenerateGetStakeRequirementsScript(env Environment) []byte { return []byte(ReplaceAddresses(code, env)) } +// GenerateGetDelegatorStakeRequirementScript returns the stake requirement for delegators +func GenerateGetDelegatorStakeRequirementScript(env Environment) []byte { + code := assets.MustAssetString(delegatorStakeRequirementsFilename) + + return []byte(ReplaceAddresses(code, env)) +} + // GenerateGetTotalTokensStakedByTypeScript returns the total tokens staked for a node type func GenerateGetTotalTokensStakedByTypeScript(env Environment) []byte { code := assets.MustAssetString(totalStakedByTypeFilename) diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 6f9d91d79..37632eb4a 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -76,6 +76,7 @@ // idTableStaking/admin/capability_end_epoch.cdc (1.301kB) // idTableStaking/admin/change_candidate_limits.cdc (706B) // idTableStaking/admin/change_cut.cdc (644B) +// idTableStaking/admin/change_del_minimums.cdc (669B) // idTableStaking/admin/change_minimums.cdc (797B) // idTableStaking/admin/change_payout.cdc (604B) // idTableStaking/admin/end_epoch.cdc (874B) @@ -133,6 +134,7 @@ // idTableStaking/scripts/get_candidate_nodes.cdc (228B) // idTableStaking/scripts/get_current_table.cdc (190B) // idTableStaking/scripts/get_cut_percentage.cdc (199B) +// idTableStaking/scripts/get_del_stake_requirements.cdc (218B) // idTableStaking/scripts/get_node_committed_tokens.cdc (257B) // idTableStaking/scripts/get_node_info.cdc (234B) // idTableStaking/scripts/get_node_info_from_address.cdc (477B) @@ -1872,7 +1874,27 @@ func idtablestakingAdminChange_cutCdc() (*asset, error) { return a, nil } -var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\xf4\x62\xb8\x0c\xec\x0e\xc6\x18\x66\x5e\xf1\xe6\x14\x0c\xdd\x18\x89\x7b\x31\x4a\x2f\x14\xe5\x38\xd6\x66\x4b\x9e\x74\xdc\x04\x42\xde\x7d\xc8\x3f\x59\xba\xb6\xe7\xc6\x58\x3a\xfa\x7e\x55\xdb\x19\xcb\xb8\x69\xcc\xae\xc8\x4b\xb1\x6e\x68\xc5\xe2\xb7\xd2\x5b\x54\xd6\xb4\xb8\xda\x17\xf9\xe2\x7b\x59\x94\x3f\xcb\xec\xcb\xed\x22\xcb\xf3\xe5\x62\xb5\x0a\x82\x38\x46\x59\x2b\x07\xb6\x42\x3b\x21\x59\x19\x0d\x59\x0b\xbd\x25\x07\xae\x09\x6e\x02\x69\x95\xee\xdb\xbe\x75\xa8\x8c\x85\x36\x1b\x82\xe9\xc8\x0a\x36\xd6\x05\xc1\xd9\xe3\x50\xd3\xee\x9b\xd2\xca\xef\x26\xb8\xbf\xbb\x51\xfb\x0f\xef\x1f\x2e\x71\x08\x02\x00\x88\x63\xdc\x1a\x29\x1a\x3c\x0a\xab\xbc\xc8\x01\x4f\xc0\x52\x45\x96\xb4\x24\xb0\x19\x78\x8b\x1c\x83\x09\x64\x9b\x56\x69\x98\xf5\x2f\x92\x3c\x40\x34\xc4\x10\xfe\x70\x49\x55\x82\x37\xcf\x0d\x47\xc3\x93\x91\xaf\xb3\xd4\x09\x4b\xa1\x90\x92\x13\x64\x3d\xd7\x99\x94\xa6\xd7\xec\x15\x61\x9a\x38\xc6\xda\x58\x6b\x76\x2f\x09\x11\xff\xf3\xfb\x71\xd4\x54\xd1\x2c\x02\x29\x3c\x7c\x34\x62\x7c\x7a\x55\xd1\xe7\xd0\x37\x91\xbc\x50\x51\x34\x7d\x87\xb5\x15\x1b\x2b\xb6\xf4\x43\x70\x7d\x79\x22\xf4\x73\x7d\x8d\x4e\x68\x25\xc3\x8b\xaf\xa6\x6f\x36\xd0\x86\x67\xdd\x4f\x54\xcf\x95\x0d\xfa\x2e\x46\x8c\xe3\x18\x07\xed\x49\xf6\x4c\x67\xde\x7d\x9a\xed\xa9\xaf\xc3\x5d\xa1\xf9\x63\x82\xb1\xb6\x23\x52\x1c\x8e\xa7\xd5\x47\x61\xa1\x12\x0c\x2b\x48\x71\x75\xba\xf0\x15\xfa\x90\x94\xc6\x59\xfb\x67\x24\x7e\x66\x92\x7b\xf5\x80\xd4\xff\x3d\xb9\x55\x48\xa1\xf0\x76\x04\x0f\xdf\xfd\x33\x3e\x09\x7f\x16\x7a\xe4\x88\x27\x26\x1f\x1e\x2d\xe9\x4f\xaf\x2c\xb5\xa4\xd9\x85\x33\xd7\xec\xfd\xf8\x37\x00\x00\xff\xff\xd6\x36\xc4\xc7\x1d\x03\x00\x00" +var _idtablestakingAdminChange_del_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x92\x41\x6f\xd3\x40\x10\x85\xef\xfe\x15\x4f\x3d\xa0\xf4\x62\x73\x40\x1c\x22\xa0\x32\x38\x95\x22\x15\x84\x12\x73\xe0\x38\x59\x8f\xe3\x25\xf6\x4e\x18\x8f\x71\x24\xd4\xff\x8e\xd6\x4e\x50\x5b\xc2\x5c\x2c\x79\x67\xdf\xfb\x66\xde\xfa\xee\x28\x6a\xb8\x6f\x65\x5c\x17\x25\xed\x5a\xde\x1a\x1d\x7c\xd8\xa3\x56\xe9\xf0\xfa\xb4\x2e\x56\x5f\xca\x75\xf9\xbd\xcc\x3f\x3e\xac\xf2\xa2\xd8\xac\xb6\xdb\x24\xc9\x32\x94\x8d\xef\x61\x4a\xa1\x27\x67\x5e\x02\x5c\x43\x61\xcf\x3d\xac\x61\xd4\xad\x8c\x30\x39\x70\x80\xf2\x48\x5a\xc1\x0d\x06\x6b\xc8\x10\xa4\x8a\x4d\x74\xe0\xd9\xa2\xe2\x96\xf7\x64\xa2\x7d\x92\x3c\x91\x5b\x04\x1e\x8b\xcb\xd1\x67\x1f\x7c\x37\x74\x4b\x7c\xbb\xf7\xa7\xb7\x6f\x6e\xf1\x3b\x49\x00\x20\xcb\xf0\x20\x8e\x5a\xfc\x22\xf5\x11\x1e\xb5\x28\x08\xca\x35\x2b\x07\xc7\x30\x99\x78\xd6\x05\xa6\xe1\x90\x57\x9d\x0f\x90\xdd\x0f\x76\x36\x49\xb4\x6c\xa0\xf8\x73\xc3\xf5\x12\xaf\xfe\x5d\x44\x3a\x5d\x99\xfd\x8e\xca\x47\x52\x5e\x90\x73\xb6\x44\x3e\x58\x93\x3b\x27\x43\xb0\x48\x84\x73\x65\x19\x76\xa2\x2a\xe3\x35\x10\x7a\xe9\x1f\xab\xe7\xb6\x4e\x2f\x10\x78\x8f\x28\x9f\xce\x1a\xef\xfe\x4b\xf4\x61\x11\xd7\xb7\xbc\x12\x5d\x7a\xfe\x4e\x6d\x5b\x13\xa5\x3d\x7f\x25\x6b\x6e\xff\x1a\xc6\xba\xbb\xc3\x91\x82\x77\x8b\x9b\x4f\x32\xb4\x15\x82\xd8\x85\xfb\x19\x75\x7f\x7e\x0f\x13\xdf\xcd\xac\xf1\x38\xaf\x83\x4f\xec\x06\xe3\x27\xb3\x3f\x9b\x24\xed\xd9\x5e\x46\x18\xd1\x78\xc3\x3f\x07\xaf\xdc\x71\xb0\x6b\x31\x5f\x3c\x1e\xff\x04\x00\x00\xff\xff\x40\xe4\x7d\xfd\x9d\x02\x00\x00" + +func idtablestakingAdminChange_del_minimumsCdcBytes() ([]byte, error) { + return bindataRead( + _idtablestakingAdminChange_del_minimumsCdc, + "idTableStaking/admin/change_del_minimums.cdc", + ) +} + +func idtablestakingAdminChange_del_minimumsCdc() (*asset, error) { + bytes, err := idtablestakingAdminChange_del_minimumsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "idTableStaking/admin/change_del_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xc7, 0x8e, 0xf0, 0x6d, 0x55, 0xc2, 0xe2, 0xb7, 0x54, 0xf0, 0x39, 0x30, 0x8f, 0x8f, 0x12, 0xf2, 0x7e, 0xcf, 0xf7, 0x67, 0x4b, 0x8, 0x13, 0x23, 0x2, 0x72, 0x73, 0xcd, 0x73, 0xe9, 0x75}} + return a, nil +} + +var _idtablestakingAdminChange_minimumsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x74\x51\xdd\x6a\xdb\x30\x14\xbe\xf7\x53\x7c\xf4\x62\xb8\x0c\xec\x15\xc6\x18\x66\x5e\xf1\xe6\x14\x0c\xdd\x18\x89\x7b\x31\x4a\x2f\x14\xe5\x38\xd6\x66\x4b\x9e\x74\xdc\x04\x42\xde\x7d\xc8\x3f\x59\xba\xb6\xe7\xc6\x58\x3a\xfa\x7e\x55\xdb\x19\xcb\xb8\x69\xcc\xae\xc8\x4b\xb1\x6e\x68\xc5\xe2\xb7\xd2\x5b\x54\xd6\xb4\x78\xb7\x2f\xf2\xc5\xf7\xb2\x28\x7f\x96\xd9\x97\xdb\x45\x96\xe7\xcb\xc5\x6a\x15\x04\x71\x8c\xb2\x56\x0e\x6c\x85\x76\x42\xb2\x32\x1a\xb2\x16\x7a\x4b\x0e\x5c\x13\xdc\x04\xd2\x2a\xdd\xb7\x7d\xeb\x50\x19\x0b\x6d\x36\x04\xd3\x91\x15\x6c\xac\x0b\x82\xb3\xc7\xa1\xa6\xdd\x37\xa5\x95\xdf\x4d\x70\x7f\x77\xa3\xf6\x1f\xde\x3f\x5c\xe2\x10\x04\x00\x10\xc7\xb8\x35\x52\x34\x78\x14\x56\x79\x91\x03\x9e\x80\xa5\x8a\x2c\x69\x49\x60\x33\xf0\x16\x39\x06\x13\xc8\x36\xad\xd2\x30\xeb\x5f\x24\x79\x80\x68\x88\x21\xfc\xe1\x92\xaa\x04\x6f\x9e\x1b\x8e\x86\x27\x23\x5f\x67\xa9\x13\x96\x42\x21\x25\x27\xc8\x7a\xae\x33\x29\x4d\xaf\xd9\x2b\xc2\x34\x71\x8c\xb5\xb1\xd6\xec\x5e\x12\x22\xfe\xe7\xf7\xe3\xa8\xa9\xa2\x59\x04\x52\x78\xf8\x68\xc4\xf8\xf4\xaa\xa2\xcf\xa1\x6f\x22\x79\xa1\xa2\x68\xfa\x0e\x6b\x2b\x36\x56\x6c\xe9\x87\xe0\xfa\xf2\x44\xe8\xe7\xfa\x1a\x9d\xd0\x4a\x86\x17\x5f\x4d\xdf\x6c\xa0\x0d\xcf\xba\x9f\xa8\x9e\x2b\x1b\xf4\x5d\x8c\x18\xc7\x31\x0e\xda\x93\xec\x99\xce\xbc\xfb\x34\xdb\x53\x5f\x87\xbb\x42\xf3\xc7\x04\x63\x6d\x47\xa4\x38\x1c\x4f\xab\x8f\xc2\x42\x25\x18\x56\x90\xe2\xea\x74\xe1\x2b\xf4\x21\x29\x8d\xb3\xf6\xcf\x48\xfc\xcc\x24\xf7\xea\x01\xa9\xff\x7b\x72\xab\x90\x42\xe1\xed\x08\x1e\x5e\xfd\x33\x3e\x09\x7f\x16\x7a\xe4\x88\x27\x26\x1f\x1e\x2d\xe9\x4f\xaf\x2c\xb5\xa4\xd9\x85\x33\xd7\xec\xfd\xf8\x37\x00\x00\xff\xff\x7a\x62\x5e\x37\x1d\x03\x00\x00" func idtablestakingAdminChange_minimumsCdcBytes() ([]byte, error) { return bindataRead( @@ -1888,7 +1910,7 @@ func idtablestakingAdminChange_minimumsCdc() (*asset, error) { } info := bindataFileInfo{name: "idTableStaking/admin/change_minimums.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x7c, 0x41, 0xb0, 0x8d, 0x23, 0x27, 0x33, 0x6c, 0xf7, 0x77, 0xb2, 0xb1, 0x34, 0xd5, 0x39, 0x26, 0x52, 0xa4, 0x2, 0xfb, 0xd6, 0xbe, 0xf9, 0xce, 0xd1, 0xc3, 0x89, 0x6c, 0x80, 0x7, 0x4c, 0xef}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xfd, 0x43, 0x5f, 0x10, 0x9, 0x12, 0xd6, 0x29, 0xcd, 0x0, 0xf9, 0x15, 0xc6, 0xbf, 0xf6, 0xbd, 0x21, 0x40, 0xc9, 0x80, 0x4, 0x22, 0x3a, 0x3c, 0x24, 0xd3, 0x7e, 0x36, 0xea, 0x6, 0x28, 0x33}} return a, nil } @@ -3012,6 +3034,26 @@ func idtablestakingScriptsGet_cut_percentageCdc() (*asset, error) { return a, nil } +var _idtablestakingScriptsGet_del_stake_requirementsCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\xce\xb1\x4a\xc6\x30\x14\xc5\xf1\x3d\x4f\x71\xc6\xef\x5b\xac\x83\x38\xb8\x55\xd2\x42\x41\x1d\xda\x38\x38\xa6\x7a\xdb\x5e\xda\x24\xf5\xe6\x06\x0b\xe2\xbb\x8b\xa8\xb8\x38\x1f\xf8\xff\x0e\x87\x3d\x89\xa2\xdd\xd2\x5b\x67\x9d\x1f\x37\x1a\xd4\xaf\x1c\x67\x4c\x92\x02\x2e\x8f\xce\x36\x0f\xae\x73\x4f\xae\xbe\xbd\x6b\x6a\x6b\xfb\x66\x18\x8c\xa9\x2a\xb8\x85\x33\xf2\xb3\xf0\xae\x10\xd2\x22\x31\x43\x17\x42\xe0\xc8\xa1\x04\x64\xf5\x2b\x41\xe8\xb5\xb0\x50\xa0\xa8\x98\x92\xe0\x85\x36\x9a\xbd\x26\xc9\xc6\xec\x65\xc4\x54\x22\x82\xe7\x78\x3a\xdf\xe0\xb1\xe5\xe3\xfa\x0a\xef\x06\xc0\x4f\xf2\x9f\x63\x17\x33\xa9\xfd\xad\xdc\x7f\x63\x5f\x13\xf5\x7f\xd4\xe9\x6c\x3e\x3e\x03\x00\x00\xff\xff\xc8\x81\xc5\x13\xda\x00\x00\x00" + +func idtablestakingScriptsGet_del_stake_requirementsCdcBytes() ([]byte, error) { + return bindataRead( + _idtablestakingScriptsGet_del_stake_requirementsCdc, + "idTableStaking/scripts/get_del_stake_requirements.cdc", + ) +} + +func idtablestakingScriptsGet_del_stake_requirementsCdc() (*asset, error) { + bytes, err := idtablestakingScriptsGet_del_stake_requirementsCdcBytes() + if err != nil { + return nil, err + } + + info := bindataFileInfo{name: "idTableStaking/scripts/get_del_stake_requirements.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xa3, 0xcb, 0xbc, 0x3f, 0x87, 0x66, 0x14, 0x66, 0x46, 0x5b, 0xef, 0xa7, 0x88, 0xb8, 0xb6, 0xbf, 0x9a, 0xbe, 0xfd, 0xbd, 0x7d, 0x8f, 0x1c, 0x9, 0xdd, 0x15, 0xb5, 0xca, 0xc4, 0x1, 0x76, 0xab}} + return a, nil +} + var _idtablestakingScriptsGet_node_committed_tokensCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x8e\x31\x6b\xc3\x30\x10\x46\x77\xfd\x8a\x6f\x6c\x96\xa4\x43\xe9\x10\xe8\x90\x56\x0e\x08\x4a\x86\x5a\x1d\x3a\xca\xf1\x39\x11\xb6\xee\x8c\x74\xa6\x81\xd2\xff\x5e\x12\x17\x4f\x99\x0e\xbe\xe3\x3d\x5e\x4c\xa3\x64\xc5\x7e\x90\x6f\x67\x7d\x68\x06\xaa\x35\xf4\x91\x4f\xe8\xb2\x24\x3c\x5e\x9c\xad\x0e\xde\xf9\x2f\xbf\x7b\x7d\xaf\x76\xd6\x7e\x54\x75\x6d\xcc\x66\x03\x7f\x8e\x05\xe5\x98\xe3\xa8\xc8\xa4\x53\xe6\x02\x3d\x13\x9a\x30\x04\x3e\x12\xa4\x43\xd1\xd0\x53\x0b\x95\x9e\xb8\x5c\x87\x00\x96\x96\x8c\x19\xa7\x06\xdd\xc4\x48\x21\xf2\xc3\x75\x72\x76\x8b\x5a\x73\xe4\xd3\x6a\x8b\xcf\x7d\xbc\x3c\x3f\xe1\xc7\x00\xc0\x40\x7a\x83\x1c\x77\x82\x97\x3b\xa1\xeb\xc3\xff\x77\x11\xcd\x77\x75\xc3\xe7\xb2\xc5\xb0\x9e\x5b\xde\x24\xa5\xa8\x4a\xad\xf9\xfd\x0b\x00\x00\xff\xff\xd7\xe0\x3c\x12\x01\x01\x00\x00" func idtablestakingScriptsGet_node_committed_tokensCdcBytes() ([]byte, error) { @@ -6179,6 +6221,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/admin/capability_end_epoch.cdc": idtablestakingAdminCapability_end_epochCdc, "idTableStaking/admin/change_candidate_limits.cdc": idtablestakingAdminChange_candidate_limitsCdc, "idTableStaking/admin/change_cut.cdc": idtablestakingAdminChange_cutCdc, + "idTableStaking/admin/change_del_minimums.cdc": idtablestakingAdminChange_del_minimumsCdc, "idTableStaking/admin/change_minimums.cdc": idtablestakingAdminChange_minimumsCdc, "idTableStaking/admin/change_payout.cdc": idtablestakingAdminChange_payoutCdc, "idTableStaking/admin/end_epoch.cdc": idtablestakingAdminEnd_epochCdc, @@ -6236,6 +6279,7 @@ var _bindata = map[string]func() (*asset, error){ "idTableStaking/scripts/get_candidate_nodes.cdc": idtablestakingScriptsGet_candidate_nodesCdc, "idTableStaking/scripts/get_current_table.cdc": idtablestakingScriptsGet_current_tableCdc, "idTableStaking/scripts/get_cut_percentage.cdc": idtablestakingScriptsGet_cut_percentageCdc, + "idTableStaking/scripts/get_del_stake_requirements.cdc": idtablestakingScriptsGet_del_stake_requirementsCdc, "idTableStaking/scripts/get_node_committed_tokens.cdc": idtablestakingScriptsGet_node_committed_tokensCdc, "idTableStaking/scripts/get_node_info.cdc": idtablestakingScriptsGet_node_infoCdc, "idTableStaking/scripts/get_node_info_from_address.cdc": idtablestakingScriptsGet_node_info_from_addressCdc, @@ -6532,6 +6576,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "capability_end_epoch.cdc": {idtablestakingAdminCapability_end_epochCdc, map[string]*bintree{}}, "change_candidate_limits.cdc": {idtablestakingAdminChange_candidate_limitsCdc, map[string]*bintree{}}, "change_cut.cdc": {idtablestakingAdminChange_cutCdc, map[string]*bintree{}}, + "change_del_minimums.cdc": {idtablestakingAdminChange_del_minimumsCdc, map[string]*bintree{}}, "change_minimums.cdc": {idtablestakingAdminChange_minimumsCdc, map[string]*bintree{}}, "change_payout.cdc": {idtablestakingAdminChange_payoutCdc, map[string]*bintree{}}, "end_epoch.cdc": {idtablestakingAdminEnd_epochCdc, map[string]*bintree{}}, @@ -6595,6 +6640,7 @@ var _bintree = &bintree{nil, map[string]*bintree{ "get_candidate_nodes.cdc": {idtablestakingScriptsGet_candidate_nodesCdc, map[string]*bintree{}}, "get_current_table.cdc": {idtablestakingScriptsGet_current_tableCdc, map[string]*bintree{}}, "get_cut_percentage.cdc": {idtablestakingScriptsGet_cut_percentageCdc, map[string]*bintree{}}, + "get_del_stake_requirements.cdc": {idtablestakingScriptsGet_del_stake_requirementsCdc, map[string]*bintree{}}, "get_node_committed_tokens.cdc": {idtablestakingScriptsGet_node_committed_tokensCdc, map[string]*bintree{}}, "get_node_info.cdc": {idtablestakingScriptsGet_node_infoCdc, map[string]*bintree{}}, "get_node_info_from_address.cdc": {idtablestakingScriptsGet_node_info_from_addressCdc, map[string]*bintree{}}, diff --git a/lib/go/test/flow_idtable_nodes_test.go b/lib/go/test/flow_idtable_nodes_test.go index 754d90bfd..d39818a8e 100644 --- a/lib/go/test/flow_idtable_nodes_test.go +++ b/lib/go/test/flow_idtable_nodes_test.go @@ -45,17 +45,9 @@ func TestManyNodesIDTable(t *testing.T) { env.IDTableAddress = idTableAddress.Hex() // Change the delegator staking minimum to zero - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeMinimumsScript(env), idTableAddress) + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeDelegatorMinimumsScript(env), idTableAddress) - delMin := CadenceUFix64("0.0") - colMin := CadenceUFix64("250000.0") - conMin := CadenceUFix64("250000.0") - exMin := CadenceUFix64("1250000.0") - verMin := CadenceUFix64("135000.0") - accMin := CadenceUFix64("0.0") - - err := tx.AddArgument(cadence.NewArray([]cadence.Value{delMin, colMin, conMin, exMin, verMin, accMin})) - require.NoError(t, err) + tx.AddArgument(CadenceUFix64("0.0")) signAndSubmit( t, b, tx, @@ -385,17 +377,9 @@ func TestUnstakeAllManyDelegatorsIDTable(t *testing.T) { env.IDTableAddress = idTableAddress.Hex() // Change the delegator staking minimum to zero - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeMinimumsScript(env), idTableAddress) - - delMin := CadenceUFix64("0.0") - colMin := CadenceUFix64("250000.0") - conMin := CadenceUFix64("250000.0") - exMin := CadenceUFix64("1250000.0") - verMin := CadenceUFix64("135000.0") - accMin := CadenceUFix64("0.0") + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeDelegatorMinimumsScript(env), idTableAddress) - err := tx.AddArgument(cadence.NewArray([]cadence.Value{delMin, colMin, conMin, exMin, verMin, accMin})) - require.NoError(t, err) + tx.AddArgument(CadenceUFix64("0.0")) signAndSubmit( t, b, tx, diff --git a/lib/go/test/flow_idtable_staking_test.go b/lib/go/test/flow_idtable_staking_test.go index 58a3bcfef..8c05c4b68 100644 --- a/lib/go/test/flow_idtable_staking_test.go +++ b/lib/go/test/flow_idtable_staking_test.go @@ -795,7 +795,7 @@ func TestIDTableApprovals(t *testing.T) { // Update the access node minimum to zero tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeMinimumsScript(env), idTableAddress) - err := tx.AddArgument(cadence.NewArray([]cadence.Value{CadenceUFix64("50.0"), CadenceUFix64("250000.0"), CadenceUFix64("250000.0"), CadenceUFix64("1250000.0"), CadenceUFix64("135000.0"), CadenceUFix64("0.0")})) + err := tx.AddArgument(cadence.NewArray([]cadence.Value{CadenceUFix64("250000.0"), CadenceUFix64("250000.0"), CadenceUFix64("1250000.0"), CadenceUFix64("135000.0"), CadenceUFix64("0.0")})) require.NoError(t, err) signAndSubmit( @@ -840,7 +840,7 @@ func TestIDTableApprovals(t *testing.T) { // Update the access node minimum to 100 tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeMinimumsScript(env), idTableAddress) - err = tx.AddArgument(cadence.NewArray([]cadence.Value{CadenceUFix64("50.0"), CadenceUFix64("250000.0"), CadenceUFix64("250000.0"), CadenceUFix64("1250000.0"), CadenceUFix64("135000.0"), CadenceUFix64("100.0")})) + err = tx.AddArgument(cadence.NewArray([]cadence.Value{CadenceUFix64("250000.0"), CadenceUFix64("250000.0"), CadenceUFix64("1250000.0"), CadenceUFix64("135000.0"), CadenceUFix64("100.0")})) require.NoError(t, err) signAndSubmit( t, b, tx, @@ -2799,14 +2799,13 @@ func TestIDTableStaking(t *testing.T) { tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeMinimumsScript(env), idTableAddress) - delMin := CadenceUFix64("50.0") colMin := CadenceUFix64("250000.0") conMin := CadenceUFix64("250000.0") exMin := CadenceUFix64("1250000.0") verMin := CadenceUFix64("135000.0") accMin := CadenceUFix64("0.0") - err := tx.AddArgument(cadence.NewArray([]cadence.Value{delMin, colMin, conMin, exMin, verMin, accMin})) + err := tx.AddArgument(cadence.NewArray([]cadence.Value{colMin, conMin, exMin, verMin, accMin})) require.NoError(t, err) signAndSubmit( @@ -3022,6 +3021,22 @@ func TestIDTableDelegatorMinimums(t *testing.T) { result = executeScriptAndCheck(t, b, templates.GenerateGetTotalTokensStakedByTypeScript(env), [][]byte{jsoncdc.MustEncode(cadence.UInt8(1))}) assertEqual(t, CadenceUFix64("250000.0"), result) + // Should be able to update the delegator minimum + tx = createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeDelegatorMinimumsScript(env), idTableAddress) + + tx.AddArgument(CadenceUFix64("25.0")) + require.NoError(t, err) + + signAndSubmit( + t, b, tx, + []flow.Address{idTableAddress}, + []crypto.Signer{IDTableSigner}, + false, + ) + + result = executeScriptAndCheck(t, b, templates.GenerateGetDelegatorStakeRequirementScript(env), nil) + assertEqual(t, CadenceUFix64("25.0"), result) + } // TestIDTableSlotSelection tests the slot selection process for nodes which do not need to be allow-listed (Access Nodes). diff --git a/lib/go/test/flow_stakingcollection_test.go b/lib/go/test/flow_stakingcollection_test.go index 6c949adb3..f86c9de36 100644 --- a/lib/go/test/flow_stakingcollection_test.go +++ b/lib/go/test/flow_stakingcollection_test.go @@ -448,17 +448,9 @@ func TestStakingCollectionRegisterNode(t *testing.T) { deployAllCollectionContracts(t, b, accountKeys, &env, adminAddress, adminSigner) // Change the delegator staking minimum to zero - tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeMinimumsScript(env), idTableAddress) + tx := createTxWithTemplateAndAuthorizer(b, templates.GenerateChangeDelegatorMinimumsScript(env), idTableAddress) - delMin := CadenceUFix64("0.0") - colMin := CadenceUFix64("250000.0") - conMin := CadenceUFix64("250000.0") - exMin := CadenceUFix64("1250000.0") - verMin := CadenceUFix64("135000.0") - accMin := CadenceUFix64("0.0") - - err := tx.AddArgument(cadence.NewArray([]cadence.Value{delMin, colMin, conMin, exMin, verMin, accMin})) - require.NoError(t, err) + tx.AddArgument(CadenceUFix64("0.0")) signAndSubmit( t, b, tx, @@ -499,7 +491,7 @@ func TestStakingCollectionRegisterNode(t *testing.T) { ids[0] = adminID approvedNodeIDs := generateCadenceNodeDictionary(ids) - err = tx.AddArgument(approvedNodeIDs) + err := tx.AddArgument(approvedNodeIDs) require.NoError(t, err) signAndSubmit( t, b, tx, diff --git a/transactions/idTableStaking/admin/change_del_minimums.cdc b/transactions/idTableStaking/admin/change_del_minimums.cdc new file mode 100644 index 000000000..862f0adf2 --- /dev/null +++ b/transactions/idTableStaking/admin/change_del_minimums.cdc @@ -0,0 +1,19 @@ +import FlowIDTableStaking from 0xIDENTITYTABLEADDRESS + +// This transaction changes the flow token reward cut that nodes take from delegators + +transaction(newDelegatorMinimum: UFix64) { + + // Local variable for a reference to the ID Table Admin object + let adminRef: &FlowIDTableStaking.Admin + + prepare(acct: AuthAccount) { + // borrow a reference to the admin object + self.adminRef = acct.borrow<&FlowIDTableStaking.Admin>(from: FlowIDTableStaking.StakingAdminStoragePath) + ?? panic("Could not borrow reference to staking admin") + } + + execute { + self.adminRef.setDelegatorMinimumStakeRequirement(newDelegatorMinimum) + } +} \ No newline at end of file diff --git a/transactions/idTableStaking/admin/change_minimums.cdc b/transactions/idTableStaking/admin/change_minimums.cdc index 60dd60fa6..752a5a7cd 100644 --- a/transactions/idTableStaking/admin/change_minimums.cdc +++ b/transactions/idTableStaking/admin/change_minimums.cdc @@ -15,7 +15,7 @@ transaction(newMinimums: [UFix64]) { execute { let minimums: {UInt8: UFix64} = {} - var i: UInt8 = 0 + var i: UInt8 = 1 for min in newMinimums { minimums[i] = min i = i + UInt8(1) diff --git a/transactions/idTableStaking/scripts/get_del_stake_requirements.cdc b/transactions/idTableStaking/scripts/get_del_stake_requirements.cdc new file mode 100644 index 000000000..1c0af16bc --- /dev/null +++ b/transactions/idTableStaking/scripts/get_del_stake_requirements.cdc @@ -0,0 +1,7 @@ +import FlowIDTableStaking from 0xIDENTITYTABLEADDRESS + +// This script returns the minimum stake requirement for delegators + +pub fun main(): UFix64 { + return FlowIDTableStaking.getDelegatorMinimumStakeRequirement() +} \ No newline at end of file