diff --git a/contracts/FlowCallbackScheduler.cdc b/contracts/FlowCallbackScheduler.cdc index 8795f85a..91c6aff9 100644 --- a/contracts/FlowCallbackScheduler.cdc +++ b/contracts/FlowCallbackScheduler.cdc @@ -21,7 +21,7 @@ access(all) contract FlowCallbackScheduler { /// and route all callback functionality access(self) var sharedScheduler: Capability - access(all) let schedulerStoragePath: Path + access(all) let storagePath: StoragePath /// Enums access(all) enum Priority: UInt8 { @@ -83,6 +83,7 @@ access(all) contract FlowCallbackScheduler { /// Entitlements access(all) entitlement Execute + access(all) entitlement Process access(all) entitlement Cancel access(all) entitlement UpdateConfig @@ -207,15 +208,15 @@ access(all) contract FlowCallbackScheduler { self.status = newStatus } - /// payAndWithdrawFees withdraws fees from the callback based on the refund multiplier. + /// payAndRefundFees withdraws fees from the callback based on the refund multiplier. /// This action is only allowed for canceled callbacks, otherwise it panics. /// It deposits any leftover fees to the FlowFees vault to be used to pay node operator rewards - access(contract) fun payAndWithdrawFees(multiplierToWithdraw: UFix64): @FlowToken.Vault { - if multiplierToWithdraw == 0.0 { + access(contract) fun payAndRefundFees(refundMultiplier: UFix64): @FlowToken.Vault { + if refundMultiplier == 0.0 { FlowFees.deposit(from: <-self.fees.withdraw(amount: self.fees.balance)) return <-FlowToken.createEmptyVault(vaultType: Type<@FlowToken.Vault>()) } else { - let amount = self.fees.balance * multiplierToWithdraw + let amount = self.fees.balance * refundMultiplier let feesToReturn <- self.fees.withdraw(amount: amount) as! @FlowToken.Vault FlowFees.deposit(from: <-self.fees.withdraw(amount: self.fees.balance)) return <-feesToReturn @@ -388,7 +389,7 @@ access(all) contract FlowCallbackScheduler { } /// Get all timestamps that are in the past (less than or equal to current timestamp) - access(all) fun past(current: UFix64): [UFix64] { + access(all) fun getBefore(current: UFix64): [UFix64] { let pastTimestamps: [UFix64] = [] for timestamp in self.timestamps { if timestamp <= current { @@ -402,7 +403,7 @@ access(all) contract FlowCallbackScheduler { /// Check if there are any timestamps that need processing /// Returns true if processing is needed, false for early exit - access(all) fun check(current: UFix64): Bool { + access(all) fun hasTimestampsBefore(current: UFix64): Bool { return self.timestamps.length > 0 && self.timestamps[0] <= current } } @@ -590,13 +591,11 @@ access(all) contract FlowCallbackScheduler { executionEffort: UInt64, fees: @FlowToken.Vault ): ScheduledCallback { - // Remove fractional values from the timestamp - let sanitizedTimestamp = UFix64(UInt64(timestamp)) // Use the estimate function to validate inputs let estimate = self.estimate( data: data, - timestamp: sanitizedTimestamp, + timestamp: timestamp, priority: priority, executionEffort: executionEffort ) @@ -613,6 +612,9 @@ access(all) contract FlowCallbackScheduler { message: "Insufficient fees: The Fee balance of \(fees.balance) is not sufficient to pay the required amount of \(estimate.flowFee!) for execution of the callback." ) + // Remove fractional values from the timestamp + let sanitizedTimestamp = UFix64(UInt64(timestamp)) + let callbackID = self.getNextIDAndIncrement() let callback <- create CallbackData( id: callbackID, @@ -824,12 +826,13 @@ access(all) contract FlowCallbackScheduler { /// garbage collection of any resources that can be released after processing. /// This includes clearing historic statuses that are older than the limit. access(contract) fun garbageCollect(currentTimestamp: UFix64) { - // note: historic statuses might be present longer than the limit, which is fine. - let historicCallbacks = self.historicCanceledCallbacks.keys - for id in historicCallbacks { - let historicTimestamp = self.historicCanceledCallbacks[id]! - if historicTimestamp < currentTimestamp - self.configurationDetails.historicStatusLimit { - self.historicCanceledCallbacks.remove(key: id) + for id in self.historicCallbacks.keys { + let historicCallback = self.historicCallbacks[id]! + if historicCallback.timestamp < currentTimestamp - self.configurationDetails.historicStatusAgeLimit { + self.historicCallbacks.remove(key: id) + if id > self.earliestHistoricID { + self.earliestHistoricID = id + } } } } @@ -840,19 +843,19 @@ access(all) contract FlowCallbackScheduler { /// eligible for execution. It also emits an event for each callback that is processed. /// /// This function is only called by the FVM to process callbacks. - access(contract) fun process() { + access(Process) fun process() { let lowPriorityTimestamp = self.lowPriorityScheduledTimestamp let lowPriorityCallbacks = self.slotQueue[lowPriorityTimestamp] ?? {} let currentTimestamp = getCurrentBlock().timestamp // Early exit if no timestamps need processing - if !self.sortedTimestamps.check(current: currentTimestamp) { + if !self.sortedTimestamps.hasTimestampsBefore(current: currentTimestamp) { return } // Collect past timestamps efficiently from sorted array - let pastTimestamps = self.sortedTimestamps.past(current: currentTimestamp) + let pastTimestamps = self.sortedTimestamps.getBefore(current: currentTimestamp) // process all callbacks from timestamps in the past // and add low priority callbacks to the timestamp if there is space @@ -888,12 +891,14 @@ access(all) contract FlowCallbackScheduler { let callbackEffort = lowPriorityCallbacks[lowCallbackID]! if callbackEffort <= lowPriorityEffortAvailable { lowPriorityEffortAvailable = lowPriorityEffortAvailable - callbackEffort + lowPriorityCallbacks.remove(key: lowCallbackID) sortedCallbackIDs.append(lowCallbackID) } } } for id in sortedCallbackIDs { + // Ensure the callback still exists and is scheduled if let callback = self.borrowCallback(id: id) { if callback.status == Status.Scheduled { @@ -905,7 +910,7 @@ access(all) contract FlowCallbackScheduler { callbackOwner: callback.handler.address ) } else { - panic("Invalid Status: \(id) wrong status \(callback.status.rawValue)") // critical bug + panic("Invalid Status: \(callback.status.rawValue) for callback id \(id)") // critical bug } } else { panic("Invalid ID: \(id) callback not found during processing") // critical bug @@ -936,13 +941,13 @@ access(all) contract FlowCallbackScheduler { } let totalFees = callback.fees.balance - let refundedFees <- callback.payAndWithdrawFees(multiplierToWithdraw: self.configurationDetails.refundMultiplier) + let refundedFees <- callback.payAndRefundFees(refundMultiplier: self.configurationDetails.refundMultiplier) emit Canceled( id: callback.id, priority: callback.priority.rawValue, feesReturned: refundedFees.balance, - feesDeducted: refundedFees.balance >= totalFees ? 0.0 : totalFees - refundedFees.balance, + feesDeducted: totalFees - refundedFees.balance, callbackOwner: callback.handler.address ) @@ -961,7 +966,7 @@ access(all) contract FlowCallbackScheduler { /// The callback must be found and in correct state or the function panics and this is a fatal error /// /// This function is only called by the FVM to execute callbacks. - access(contract) fun executeCallback(id: UInt64) { + access(Execute) fun executeCallback(id: UInt64) { let callback = self.borrowCallback(id: id) ?? panic("Invalid ID: Callback with id \(id) not found") @@ -982,7 +987,7 @@ access(all) contract FlowCallbackScheduler { ) // Deposit all the fees into the FlowFees vault - destroy callback.payAndWithdrawFees(multiplierToWithdraw: 0.0) + destroy callback.payAndRefundFees(refundMultiplier: 0.0) self.finalizeCallback(callback: callback, status: Status.Succeeded) @@ -1006,7 +1011,7 @@ access(all) contract FlowCallbackScheduler { ) // Deposit all the fees into the FlowFees vault - destroy callback.payAndWithdrawFees(multiplierToWithdraw: 0.0) + destroy callback.payAndRefundFees(refundMultiplier: 0.0) emit Executed( id: callback.id, @@ -1135,11 +1140,11 @@ access(all) contract FlowCallbackScheduler { } access(all) init() { - self.schedulerStoragePath = /storage/sharedScheduler + self.storagePath = /storage/sharedScheduler let scheduler <- create SharedScheduler() - self.account.storage.save(<-scheduler, to: storagePath) + self.account.storage.save(<-scheduler, to: self.storagePath) self.sharedScheduler = self.account.capabilities.storage - .issue(storagePath) + .issue(self.storagePath) } } \ No newline at end of file diff --git a/lib/go/contracts/internal/assets/assets.go b/lib/go/contracts/internal/assets/assets.go index 9496b569..483af3a7 100644 --- a/lib/go/contracts/internal/assets/assets.go +++ b/lib/go/contracts/internal/assets/assets.go @@ -1,6 +1,7 @@ // Code generated by go-bindata. DO NOT EDIT. // sources: // Crypto.cdc (4.588kB) +// FlowCallbackScheduler.cdc (53.242kB) // FlowExecutionParameters.cdc (1.073kB) // FlowFees.cdc (9.579kB) // FlowIDTableStaking.cdc (103.916kB) @@ -106,6 +107,8 @@ func cryptoCdc() (*asset, error) { return a, nil } +var _flowcallbackschedulerCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\xec\x7d\xdb\x92\x5b\x37\x92\xe0\xbb\xbe\x02\xd2\x83\x4c\xb6\x4a\xac\x52\xbb\xdd\xb1\xc1\xa8\x92\x5a\x96\xac\x71\xc5\xda\x6d\xaf\x4a\xee\x7d\x90\x1d\x63\xd4\x39\x20\x89\xa8\xc3\x03\x36\x80\x53\x14\xdb\x52\xc4\xc6\x3c\xef\xc3\x3c\xf4\xc3\x7e\xdf\x7c\xc9\x06\x12\xf7\xdb\x21\x59\x96\x2f\x11\xd3\x8a\x89\x69\x17\x0f\x2e\x99\x89\x44\x22\x91\x37\xd0\xf5\x86\x71\x89\x1e\xbc\xea\xd8\xf6\x0d\xbb\x21\xfd\x83\x7b\xe1\x4f\xaf\x08\x11\xf1\x2f\x57\x92\x71\xbc\x24\xfa\xc3\xbd\xd3\xd3\x53\xa4\x7e\x7d\x81\xbb\xee\x1a\x37\x37\x57\xcd\x8a\xb4\x43\x47\x38\x22\x3d\xbe\xee\x88\x40\x62\x8d\xb9\x44\x0d\xeb\x25\xc7\x8d\x14\x48\x32\x24\x4c\x23\x84\x07\xc9\x7a\xb6\x66\x83\x40\xe4\x1d\x69\x06\x49\x59\x8f\x68\x8f\xe4\x8a\xa0\xc5\x20\x07\x4e\x66\x6a\x06\x98\xe5\xcd\x8a\x0a\x37\x0c\xa2\xeb\x4d\x47\xd6\xa4\x97\x02\xbd\xfa\xea\xf2\x5b\xf4\xe9\xa7\x67\x9f\x08\x37\x70\x8b\x1a\x03\x0f\x12\x3b\x21\xc9\xfa\x04\xe1\xae\x63\x5b\xda\x2f\x63\x48\x1e\x6c\xf1\x0d\x41\xc3\xe6\x01\xc2\x7d\x6b\x60\x20\x30\x5d\xc7\x96\xb4\x41\x58\xa2\x0d\x27\x2d\x59\xd0\x9e\xb4\x48\xd2\x35\x11\x68\x4b\xe5\x8a\x0d\x12\x91\x77\x92\xf0\x1e\x77\x48\x72\xba\x5c\x12\x2e\x66\xc8\x01\x6b\xc9\x21\x10\xe6\x04\x6d\x38\x65\x9c\x4a\xfa\x0f\xd2\xa2\xc9\x97\x74\xb9\x3a\xfd\x9a\xb4\x74\x58\x9f\x7e\xc5\xb6\x53\x18\x0f\xb5\x74\xb1\x20\x9c\xf4\x32\x20\xc4\x72\xc0\x1c\xf7\x92\x10\x01\xd0\x2d\x08\x41\xeb\xa1\x93\x74\xd3\x51\xc2\xc5\x1c\x66\x43\x08\x3d\x46\x6a\x48\x3b\xc9\x2e\xec\xb6\xa0\x5c\xc8\xc7\xd7\x1d\x6b\x6e\xfc\xb8\x27\xae\x9f\x86\xc2\xf7\xdc\x70\x76\x4b\x5b\x22\xd0\x35\x11\xf2\x31\x59\x2c\xd4\xa2\x1b\x9a\xd2\x7e\xe9\x3b\x7e\xc5\xb6\xbe\x97\xa1\x9a\x40\x6c\xa3\xb8\x64\xe8\xa9\x90\x54\xd1\x7f\x87\xb6\x2b\xd2\xa3\x06\x6f\x70\xa3\x1a\xc2\x12\x84\x54\x7a\xb3\x22\x66\x7d\xd0\x20\x88\x00\xfa\x22\xd1\x31\xa9\x89\x1c\x90\xc2\xc0\xd2\xd1\x35\xd5\x0b\xb7\xc6\x3d\x5e\x12\xd4\x13\xb9\x65\xfc\x06\x71\x22\xd8\xc0\x1b\x22\x34\x8c\xa4\x17\x03\x57\x8b\xad\x16\x8f\x36\x52\x71\x22\xda\x10\xbe\x60\x7c\x8d\xfb\x86\xa0\xed\x8a\x76\x44\xb3\xa8\x6a\xd6\xb3\x5b\xd2\x85\xdc\x08\x24\x6b\x56\x98\xf6\x68\x83\xa5\x5a\x67\x81\x3a\x7a\x43\x10\x27\xcd\xc0\xd5\xd0\x30\xcf\x06\xef\x80\x07\x4f\xa0\xef\x1a\x4b\xd2\x22\xcc\xaf\xa9\x54\x3b\xe4\x04\x56\x4d\xe1\xf4\xf8\x1a\x0b\xc5\x93\x96\x79\x81\xb7\x66\xf7\x70\xd3\x10\x21\x26\xb8\xeb\xa6\xfe\x5b\x79\x33\xfd\x74\xef\x1e\x42\x08\xa9\x39\x05\xed\x97\x1d\x91\xb0\x51\x84\x04\x6c\x06\x35\xba\xda\x57\x92\x71\xa2\xc8\xec\xd9\xbf\xc5\x12\xbb\xae\x0a\x1e\xce\x06\x99\xb4\x59\x0c\x7d\xa3\xa8\x8c\x3b\x2a\x77\xd0\xd8\x40\x26\x48\xb7\x98\xa2\x5b\xcc\x91\x58\x61\x4e\x5a\x07\xcf\x1c\xbd\xc0\x1b\x7c\x4d\x55\x87\x73\x3c\xc8\xd5\xe4\x85\x02\xa4\x9b\xa2\x87\x57\x71\xcb\xa7\xf7\xc2\x01\x01\xd5\x8e\x48\x80\x14\x2f\xc9\xb7\x58\xae\xe6\xe8\xca\xff\xe1\xd1\xfc\xa2\x1f\xd6\x22\xeb\x4b\xfa\x61\x8d\xbe\x35\x9c\x37\x47\xdf\x5d\xf6\xf2\x7f\xa0\x9f\xa0\x59\xda\xb4\xc1\x82\xc0\xce\xa8\x7f\xd5\xfc\x5f\xff\xfe\x15\xdb\xc2\xc7\x0f\x39\x12\x00\xc8\x95\xc4\x72\x10\x39\x18\x0a\xfe\xa1\xbf\xe9\xd9\xb6\x47\x02\xda\x10\x2d\x08\x60\xa1\x16\x8c\xa3\x15\xee\x5b\xe0\xbc\x15\x55\xa4\xa0\x8d\x5b\x0d\xc3\xfa\xfd\xd0\x75\xae\x6f\x1d\xc2\xef\xf4\x2c\xd1\xcc\xeb\x41\xf3\xfb\xfe\xde\x76\x95\xda\x7a\x93\x6f\x39\x53\xbf\x04\x4d\xd4\x14\x0b\xaa\x98\x45\x89\xb3\x03\x26\x19\x9a\x86\x90\x76\x6c\x92\x57\x98\x8e\x02\xa1\x99\xcb\xb4\xf8\x10\xf0\xc8\xad\xda\x7c\xf9\xda\xa8\x9f\x3d\x72\x13\x37\x30\x6d\xf5\x5a\xfd\xf9\x4f\x27\xee\xb7\x4d\xcc\x4c\xfe\x03\x08\x7b\x89\xd7\x9b\x39\xfa\xee\x15\x7d\x17\xf6\x71\x72\xe9\x0b\x10\x4b\xf9\xa0\x0b\x42\x44\xde\xcd\x2e\xf1\x37\xdb\x5e\x6d\xa1\xe7\x6d\xcb\x89\xd0\xe0\x4f\x0b\x1c\x06\x58\x38\xfa\xdf\x11\x8b\xbd\xa0\xde\x05\xa8\x2f\xb4\xc4\xff\xc5\x60\x3a\x86\x7c\xfe\xbb\x08\x77\xe3\x38\x02\x96\xa1\xee\x88\x80\x82\xef\x35\x91\x03\xef\x49\x9b\xc3\xa9\xbe\xbe\x24\xed\xd0\xc8\xd2\xd7\xfd\xf4\x56\x8c\xbd\xa6\x52\x9d\x25\x70\x7e\xb2\x9e\x20\xc6\xd1\x5a\xc9\x76\xb6\x00\xdd\xa8\x61\xfd\x82\x2e\x07\x8e\xe1\x70\x6c\x89\xc4\xb4\x53\xa7\x3d\xe9\x5a\x23\x68\x36\xad\x3a\x8c\xdc\x78\x80\x75\x47\x85\x24\x3d\xe1\x02\x35\xb8\x37\x7f\xa9\x63\x43\x2a\xcd\x4a\x9d\x0d\x7f\x1f\x08\xdf\xc1\x04\x3d\xd9\xc6\x93\xd8\x91\x28\x00\xb0\x43\x3d\x81\x23\xa7\x46\x5f\xe8\xfa\x9d\x06\x62\x32\x0d\xa5\xba\xa4\xd2\x28\x6e\x05\x99\xea\x3e\x5a\x16\x1b\x6d\x63\xf6\xc6\x68\x1b\xbd\xd2\xa3\x4d\x34\x98\x1a\x64\x0f\xe9\x65\x2f\x09\x5f\xe0\x86\x08\xff\x9b\xd2\x57\xdc\xa9\x09\x22\x9c\x70\x04\xb4\x43\xd4\x36\x47\x72\x85\x25\xd2\x1a\xa3\x40\xd8\x1c\xd7\x68\x4d\xe4\x8a\x39\x0d\xd3\x1e\xf0\xba\xb1\x1b\x7f\x3d\x08\x89\xae\x89\x57\x6e\x49\x8b\xae\xf5\x82\x58\x05\x47\xf7\xd8\xb2\xa1\x6b\xb5\x42\x12\xaa\xd3\x32\x80\x6f\x86\xca\x60\x2f\x89\xb4\xca\xb6\x1f\x5d\x38\x45\xc3\xe9\x21\xd7\x3b\xe8\xa3\xce\x28\xd5\x42\x1d\xf2\x8c\x83\xc8\xf7\x47\xbf\x9f\x42\x43\x85\x85\x55\x21\x0d\xeb\x3a\x7d\x7c\x96\xad\x80\x43\xc8\x53\xce\x52\xe5\x4b\x43\xd9\xf8\x40\xfd\xc2\xaa\x99\x0a\x9c\x90\x42\x0e\x35\x50\xab\xc2\x3e\x51\xff\xbf\x6c\x30\xc7\x6b\xd8\xe8\x8a\x20\xb4\xb5\x9b\xa9\x70\x69\x98\xc0\x96\x50\xbb\xe4\x1a\x0e\xed\xc5\xd0\xc1\xb1\x8d\xfb\x9d\x86\x57\xab\xfd\xb8\xb9\xa1\xfd\x72\x5a\x9a\x46\xe9\x5d\x7a\x22\xf5\x5f\x01\x7d\xb0\x12\xe6\x9a\x3a\xe1\x72\xc1\x47\xc6\xe9\x52\x9d\xac\xdd\xce\x03\x95\x9e\x8a\x86\x0c\x53\xa5\xb5\xa5\xec\x34\x09\xa4\x98\x81\xe0\x79\xbf\xbb\x92\x7c\x68\xe4\xb3\x69\x7a\x7a\xea\xdf\x03\xf6\x76\x27\xa6\x63\x4f\xc5\x0d\x98\xf6\x8a\x8f\x0d\x03\x4b\x86\x9a\x15\x01\xce\x0d\x80\xd7\xa2\x17\x64\x88\x21\x9a\xc1\x53\x7d\xf5\x4c\xc2\x6a\xcc\xa6\x46\x85\x8d\x1a\x0f\x4b\x17\x88\x4a\xb4\xc2\x02\xf5\x4c\xa2\x1d\x51\x9b\x83\x38\xac\xdb\x80\xc5\x2f\x25\x4c\xcc\xfa\x6e\xa7\x66\x6f\x38\xc1\xe3\xec\x2d\x99\xba\x1b\x80\xb0\x12\x1b\xc6\x16\xb4\x5f\xe6\x3c\x2a\x80\x42\x05\xba\x64\x1a\xa7\xd6\x94\x41\xb3\xbd\x8b\x8e\x9c\x8c\xe6\xd4\x64\xbf\x9e\xd5\x26\x99\x9a\x72\xaf\xd8\xf4\x96\x92\x2d\xb0\x8c\x5e\xaa\xc9\x74\x6e\xb4\xd7\x67\x01\x32\xea\x1f\x87\x73\x0d\x29\x84\x66\x0e\x97\xd9\x35\xe3\x9c\x6d\x27\xd3\xfb\xb3\x25\x91\xba\x23\x30\x1b\x34\xa3\xad\xdf\x02\x1f\xb2\xe9\x2d\xc9\xa7\x88\xf6\x54\x4e\xa2\xc9\xee\x42\xac\x93\x68\x84\x90\xe3\xa3\x0f\x39\x5d\xec\x97\x69\x82\xf1\x86\x93\xe4\x97\x08\xb4\x19\xf0\xfb\x64\x3a\xcf\x9a\xa8\x7f\x0f\x2e\xfb\x5b\xdc\xd1\x16\xf9\xbb\x5a\x20\x1f\x63\x69\xa8\xf0\xa7\x4a\x6f\x56\x42\x35\x67\x2a\xd0\xfb\x69\x8b\xbe\x9f\xd0\x76\xfa\x20\x9a\xed\x43\x4c\xb5\x68\x6d\xd0\x85\x87\x35\x6f\x46\x5b\x74\x81\x68\x9b\x7f\x70\xf4\x41\x17\x9e\x56\xf7\xe2\x09\x43\x55\x5b\x48\xaa\xef\xb7\x4d\x26\x1c\x40\xc2\x29\xf1\x48\x74\x23\xb0\xb2\x38\xd1\xe0\xcc\x07\xd5\xfd\xe5\xc6\x2e\xec\x2f\xb8\x6d\x68\x3b\x94\x3a\x69\xd5\x6e\x26\x0e\x94\x85\xfa\xb1\x87\x2b\x33\xcc\x1f\x09\x0f\xc9\x94\x24\xa8\xca\x51\xb7\x81\xcc\xe8\x96\x4d\x9e\x45\x53\x7b\x2a\x51\x11\x4c\xec\x8f\x0c\xdf\x20\x03\x40\x49\xfc\x15\x6d\x56\x4a\x86\x6d\x69\xd7\x29\x70\x48\xa0\xd6\x94\x80\xc9\xb8\x36\x06\x87\x70\xce\xac\xc6\xc1\x36\xfa\xce\x6e\x7e\x5c\x13\x21\xf0\x92\x18\x05\x2d\x58\x25\xdc\x2b\xe1\x79\x10\x29\x60\x24\x25\x18\x38\xed\x97\xcf\x46\x76\x32\x48\x13\xd8\xce\x29\xf5\x4e\x0a\x28\x9c\x24\x03\xa7\x1b\x10\xf8\xd1\x2e\xf2\x85\x5d\x90\x63\x59\xd6\x35\xd3\xf4\xb8\xd0\x93\xd6\x39\xfa\x45\x68\x22\x09\xb5\x38\x45\x53\x4e\x36\x9c\x08\xd2\x4b\xad\x61\xb3\x85\xd2\xe4\x72\x3d\x41\xaf\xaf\x3f\x25\xbb\xce\x98\x2e\x03\x83\x0a\x0a\xcf\x3f\x3b\xc6\x89\x12\x0d\x8a\xa8\xa1\xdd\x11\x11\xac\x46\x8b\x15\xb8\xa2\xce\x64\x61\x7f\xa9\x40\x2f\x9b\x3f\x0e\x3c\x3e\xfc\x1d\xc7\x5a\x55\xea\xdc\x51\xbe\xb6\x95\x8f\x1b\xcc\xdd\x7d\x4c\x1f\x17\xf7\x22\x46\x56\x8a\x91\x5f\x4e\xa7\x1d\x71\xf2\xf7\x81\x08\x69\x8c\x24\x46\x09\xd3\xa8\x46\xdd\xbf\xc6\x70\xcc\x7b\xa3\xa9\x5c\x61\xad\x4f\xe1\x46\x0e\xb8\xab\x6e\x50\x25\x29\x1e\xa2\x75\x62\xf7\x74\xb6\x97\x2a\xee\x56\x33\x7b\x53\x3f\x6d\x2d\x5a\x06\x82\x04\xbb\x58\xaf\x09\x2d\xd5\x8b\x80\x49\x33\x12\xda\x56\x7b\xe6\x0d\x8e\x1c\xa3\x64\x69\xf3\x75\x3e\x35\x08\xa2\x8a\x14\xf2\xfb\x5b\xa1\x6c\xee\x37\xf9\xc9\xec\x34\xd0\x87\x3f\x25\x1a\xfb\x87\xa7\x31\x58\xdf\x58\x11\xe5\x75\xe0\x58\x3d\x34\xc0\x9a\xa9\xc6\xe1\x49\xf5\xd9\x78\xaa\x57\x84\x80\x5d\x78\x83\x77\x99\x24\x1e\x1f\x57\x1b\x1b\xfe\xe2\xfc\x1f\xb3\xbf\xe1\xa1\x93\x47\xa9\x31\x25\xe3\x81\xfa\x77\x27\x12\xc6\x43\xa4\x58\xc7\x5f\xab\x6c\x79\x92\x68\x38\xe9\x26\x8f\xbf\xef\x35\xc8\x20\x67\x94\x49\xe9\x74\x52\xd4\xe7\x0a\xfc\x6a\x9b\x14\x85\x7f\x55\x4b\xb1\x97\xec\x8b\x8c\x47\x5c\x13\xe0\xad\x0b\x6f\xe8\x8e\x3e\x66\x04\x42\x17\x39\xd1\xf2\x6e\x4e\x32\x5c\x38\xda\x15\xce\x99\x98\x6a\xea\xc4\x89\x7f\x29\x1c\x72\x8a\x4b\xcf\x1f\x03\x2d\x0b\x2a\x9d\xbe\x45\x5d\x18\x89\x39\xcb\xcd\xb3\x28\xd5\xfe\xda\x10\xb1\xfc\xc7\x92\x5a\x0e\x3e\x04\xab\xc4\x1b\x43\x91\x56\xac\xcc\xfc\x2c\xd6\x20\x66\x51\xcf\x4b\x89\x36\xb8\xa7\x8d\xc8\x14\x0d\xd3\x5b\x1d\xa4\x1d\x27\xb8\xdd\x79\x2b\xf1\xac\xbe\x99\xe0\x4a\xe2\xae\x14\x3d\xd9\x5e\x45\xa7\xc6\x81\xba\x7a\x40\xbd\xfb\x9e\x7c\xd6\xf0\x8c\x1e\x3e\xac\x34\xd1\x86\xe7\xfa\x77\x6b\x27\xdc\xa3\xfb\xdb\x93\xae\xa0\xca\xdb\x0b\x52\x91\x2e\x0f\xb2\x61\x1d\x01\xd0\x45\x01\x8f\x67\x31\x9f\xb8\x16\xce\x48\x8c\xe6\x48\xf2\x81\x7c\x04\x70\xbd\xda\xb8\xc6\xfc\x86\xb4\x08\x0b\x6f\xc9\x47\x43\x2f\x69\x87\xf0\x42\x12\xae\xb4\x5b\x2a\xbc\x9d\xfa\x30\x9c\x0c\xe1\x7f\x63\x84\x0c\x14\x3f\x1b\x1b\x0f\x6e\x0d\x21\xb7\x95\x3f\x2a\x42\xce\xde\x21\x88\x54\xf8\x78\x38\xb4\xe5\x84\x0a\x7f\xcd\x4c\x2f\x94\x23\xe2\xc7\xa1\x58\x13\x1f\x1b\xbc\x7b\xde\xb7\xaf\xc9\x62\xe8\x5b\x38\x78\x15\x78\x2d\xc7\x5b\x01\x92\x0d\x2d\x38\x5b\xc7\xc2\x41\x3b\x40\x59\x6f\x6c\x99\xaa\x63\xe0\xcb\x9e\x25\x4a\x94\xda\x2b\x8d\x8e\x05\x10\x1a\x47\x70\x1d\x1b\xb5\xb0\x31\x9b\xd2\xab\x6d\x27\x88\xc9\x15\xe1\x5b\x2a\x88\x42\x5b\x0b\xa8\x4c\x6e\xb5\x64\xc3\x04\x95\x02\xac\x78\x1d\x59\x48\x76\x4b\xb8\x06\xd8\xe8\x21\x36\xe0\x01\xdd\xaa\xa3\xcd\xdc\x20\xad\x73\x55\x69\x16\x3d\x6b\x09\x62\x1b\xc2\xb1\x64\x1c\x71\xb2\xc5\xbc\xcd\x94\xc6\x58\xb8\xa5\xb4\x9a\x68\xec\xbf\x76\xc8\xdb\x13\x72\x9a\x1f\xae\x89\xa8\xa3\x0b\x94\x76\x56\x2c\x76\x36\x3b\x2b\xc8\x44\x8b\xcb\xcc\xa0\x3d\x51\x8b\x32\x47\xe7\x8f\xdd\x41\x34\xb3\xab\x36\xc1\x6b\x36\xf4\x72\xee\xcf\xa8\xd9\x35\xee\x14\x95\xa7\xd3\x6c\x5c\x63\x1f\x3a\x7f\xec\x61\xd5\xd6\xb6\x2f\xd6\x1b\xb9\x03\xb0\x27\x40\xbe\x37\xbb\x0d\x99\x23\xf5\xff\xcf\x53\xbc\x9e\x4e\x92\x81\x3f\x20\xd2\x89\x92\x64\x57\x0a\x9a\x86\x4e\x9d\x6f\x29\x78\xe8\x0f\x19\x41\x8a\x23\xa8\x3e\x6f\xd8\x6b\x0b\x39\x1a\x21\x81\xfe\xdf\x29\xc2\xe2\x7e\xae\x13\xfe\xea\x34\x0e\x01\xaf\x18\x84\x92\xad\xb9\x24\x12\x2e\x85\x0d\xdb\x50\x13\x37\xa2\x47\xd3\x47\xbc\x36\xd5\x50\xd2\x95\x8d\x00\xce\x4a\x68\x86\x99\x4c\x43\xdd\x73\xc4\x52\x18\x69\x5f\xb9\x0d\x30\x1e\x5c\x32\x6d\x08\xd0\x46\x48\x88\xd3\x28\x8e\xfc\xc0\xdb\xe3\x95\x86\xed\x65\xdf\x89\x13\x90\xe6\x37\xfd\xe7\x8c\xe3\xed\xdf\x70\x37\x90\x69\x64\x85\xb0\x6d\x32\xed\x68\x7a\x12\x68\xc6\xa6\x95\xfd\x21\x1c\x2b\x53\x8f\x4d\xdb\xe4\xf7\xe9\x49\xea\xdc\x33\xed\x8c\xea\x3a\xc3\xda\xd7\x37\x0d\x8c\x7b\x99\x55\x42\x93\x3a\x70\x8a\x38\x4b\x84\x22\x93\x35\x30\x28\x71\x5a\x71\x02\x9a\xe8\xa9\xab\xcc\xe4\x1d\xfb\x6a\xa8\xf0\xc1\x08\x4b\x25\x08\x7b\xeb\xe9\xd9\x70\x26\x59\xc3\xba\xc0\x7d\x44\x45\xee\xe5\x62\x5a\x26\xfb\xcb\x56\x11\x1a\x23\x42\xb5\x23\x30\x8e\xec\xaa\x59\x03\xfd\x1c\x0e\x07\xed\x9b\x4b\xac\x82\xa2\x63\x4a\x44\x4b\xdc\x45\xd1\x41\xd6\x4a\xb8\xc6\xef\xe8\x7a\x58\xdb\x6f\xe1\xe5\x33\x1a\xa6\x19\xd6\x43\x87\x25\xbd\x25\xe6\x98\x69\x00\x54\xc9\xc0\xef\x0a\x6c\xa4\x26\xba\x86\x8f\x2e\x92\xab\x12\xf0\x00\x77\xf6\x8e\xc9\x37\x0a\x2c\xcd\x15\x5f\x29\xa0\x9c\xad\x24\xc7\x40\x47\xd6\x1c\x82\x42\x6c\x98\x0c\xf0\x89\xa0\x5e\xd1\xe5\x0a\xb6\x7d\x6a\xe4\x88\xb1\x76\xd1\x26\x0d\x5b\x5f\x43\x70\x9b\xd6\x7f\xe4\x8a\x50\x8e\xc8\xbb\xa6\x1b\x04\xbd\x25\x76\x6e\xc5\x82\xfc\x96\x08\xb4\xc2\xb7\x44\x7b\x61\x16\xb4\xab\xd9\x12\x2d\x19\xb4\xe9\x7e\x2f\x1d\x7c\x24\x59\x34\x99\x25\x83\x91\xff\x6c\x11\xad\x25\x15\x31\x46\xa6\x53\xeb\x61\xef\xb4\x25\x00\x8c\x6a\xd9\x2d\x2e\x05\xd7\x36\xd0\xc0\xbe\xd6\x83\xcd\xd1\x4f\x71\xac\xd1\x9f\xff\x94\x6a\x42\x09\xe8\x63\xeb\xb7\x21\x7e\x1a\xb5\x15\xb0\xe3\xae\x03\xa1\x32\x24\xdc\x07\xd3\x9a\xf6\x7a\xda\x34\x7a\xce\x82\x65\xbf\xef\xd9\x19\x4e\x3e\x28\x7d\x69\x2f\x01\xcd\xa8\x5f\x54\x8c\x84\x65\xaa\x25\x21\x8d\x10\xba\x70\xab\xa4\xae\x40\x5b\xd0\xbc\xb4\x67\xb0\x6b\xd4\x16\xd5\xfe\x6d\xdc\xaa\x0b\x48\x32\x1c\xa8\xbd\x4a\x80\xa9\x01\x8f\x5f\xf4\x57\x84\x7c\x1d\x06\x56\x86\x14\x06\xdd\x2c\xa1\x70\xa6\xc0\x5a\xd2\x6e\x18\xb7\xf6\x62\x10\x74\xa0\x5b\x2a\xfa\x2a\xc4\x74\x2f\xeb\x0c\xc2\x91\x39\x50\xeb\xb4\x63\xfb\xa9\xa6\x36\xc6\x90\xb9\x70\x32\xeb\x91\x5d\x92\x32\x4f\x82\xab\xa0\x0f\xac\x94\x82\x34\xac\x0f\x94\x59\x35\x1a\x98\xbd\x83\x08\xb5\x44\xef\xb6\x93\x48\x86\x6e\x08\xd9\xa0\x6b\xb2\x60\x9c\x28\xdd\x41\xea\xd8\xcb\xa1\x1f\x41\xc8\x8e\xab\xaf\x1a\xcf\x97\xc4\x4a\x88\x11\x2f\x66\xc1\x83\x38\x26\x66\xca\x56\xb0\xbd\x5b\x7c\xac\x5b\x75\x0f\xc6\x9d\xc6\x77\x43\x79\x82\xfd\x5c\x78\x92\x68\x49\x65\x8e\x48\x6c\x90\xe3\x64\xb6\xcd\x0e\x33\xb4\x64\xd7\x8f\xa7\xfa\xfa\xf1\xf0\x61\xfe\xe9\xfc\x02\x3d\x99\x9d\xed\xb9\xe8\x66\x3b\x49\xc7\x4c\x04\x3b\xcb\xc6\xc4\x5c\x13\xb9\x55\xc7\x8e\x9a\x4e\x1d\x6f\x4f\x66\x67\xe8\x7a\x90\x68\xc9\x24\xfa\x3e\xbb\x54\x4d\xf3\x8b\x7b\x99\x10\x0a\x83\x27\x1a\x83\x4a\x83\x73\xc5\xd0\x2f\x06\xce\x49\x2f\x3f\xef\x58\x73\x33\x99\x7a\x4f\xd4\x1e\xf4\xd2\xed\xd8\x69\xda\xeb\x81\x2d\x66\x4b\xb8\x3e\x71\xed\xc3\x78\x62\xd0\xeb\x88\x10\xde\xab\xd1\xe8\xe9\x83\xed\xea\x51\x2f\x83\x5d\x20\x40\x99\xcf\xde\x5a\x2e\x9b\x7d\xc5\xb6\x3f\xdc\x37\xf4\xd8\x83\x57\x45\x80\xcf\xe3\xc0\xf0\xc2\x2a\x46\xb8\x2a\x39\xfd\x77\xf0\x95\xb0\x64\x39\x0f\x02\xf5\x0e\x28\xea\x80\x5f\x85\xe5\x61\xd4\xb8\x2b\x19\xd2\xc0\xfa\x63\x28\x71\x28\xf6\x47\x90\xcb\xa2\x7d\x07\x8a\x7d\x49\x97\xab\x83\xe8\x65\xe7\xb8\x2b\xc9\xe2\x1c\x86\x8f\x4b\x30\x87\xff\x11\x34\xd3\x88\x8f\x50\x2c\x38\x0f\x72\x72\x5d\x94\x4f\x9b\xb4\xe1\xa1\xc4\x0a\xb5\xcb\x94\x54\x91\xe6\xb9\x97\x58\xfa\x86\x57\xd6\xb7\xd9\x22\xa0\xcb\x28\xdc\xc7\x92\xc5\xef\xbb\xbd\x84\x39\x96\x8f\x62\xd2\xa4\x1b\xef\xd7\x25\xce\x01\xfb\xac\x48\x1e\x27\x79\xf7\x8c\x7f\x94\x4c\x8a\x09\x13\x67\xec\xfc\xaa\x54\x29\x09\xeb\x0f\x75\x0b\xc8\x0b\xd6\x37\x9c\xc8\x20\xc6\x13\x87\x3a\x75\x6a\x14\x70\xe6\x82\xd8\x5e\x61\x8d\x09\x22\x49\x8e\xa9\x9b\x2a\xc6\x0d\x27\x05\x43\x85\x06\x60\x3e\x62\xa6\x38\xca\x34\x30\xd6\xa9\x7e\x91\xae\xf5\x3a\xfc\x3e\x7b\xd8\x08\xf5\xbb\x67\xad\xff\x9e\x0b\xe1\xbe\x69\x0f\xb8\x93\xd5\x86\xa8\x5e\x95\x6a\x1d\xfe\x75\x15\x49\x26\xf8\x5d\x5d\x45\xb4\xf5\xb6\xb0\x75\xd0\x45\x99\xe6\xe8\xd1\x61\xa7\xef\xfe\x76\x56\xa0\x97\xe1\xc9\x27\xae\x00\x54\x0f\x30\x88\xe6\x45\x95\x03\x60\x5f\x77\x3b\x77\xe1\xd7\xbc\x6b\x99\x1d\xd0\x45\x85\x4f\xea\x73\xc7\x3c\x12\x4c\x1f\x7f\xc8\x07\xc8\x7d\x58\xe3\x5e\x1c\x6d\x43\x2f\x5f\xce\x2e\x2a\x4c\x55\x3f\x5e\xbe\x34\xed\x5f\x04\xd6\x17\x6c\x45\xba\xb6\x85\xd9\x70\x3e\x19\x05\xa9\xa9\x5b\x99\x8f\x90\xc0\x71\x74\x91\x33\xc9\xae\xb0\xb0\xe6\x51\x9b\x22\xa7\x3a\xc2\x89\xc4\xb8\xb7\x81\xaf\x12\x30\x04\x5a\xe3\x4d\xed\xa4\xc9\x60\xae\x87\xfc\xd5\xc3\x9e\xf3\x14\xcc\x72\x78\x5e\x39\xde\x29\xcf\x86\x4b\x06\x38\x30\x52\x23\x75\x8c\xdb\x08\x0b\xf4\xfe\x7d\xfe\x51\xfb\xe7\x0f\xf4\x95\x7f\x99\x67\x52\x86\x2e\x72\x37\x11\xe3\xc6\xef\xbf\xdf\x23\x7e\x60\xc0\xa9\x73\x9c\x8b\xd4\x6b\x9e\xf0\xde\x15\xe3\x32\xf0\x3f\xa9\x35\xa7\x2e\xc1\x42\xc0\x47\x84\x39\xc7\x3b\x50\x76\x7c\x33\xb0\x68\x2e\x16\xb4\xa1\xa4\x97\x81\xb9\xd3\x0d\x7c\x29\x11\xe9\x1b\xbc\x11\x60\x27\xd5\x81\xa8\xda\x4d\x4d\x59\x2f\x10\x27\x9d\x75\x0f\xd8\x19\xc1\x9b\x64\x53\xbe\xd4\x1f\x66\x7a\x3f\x6b\x8d\x19\x33\x24\x62\xb7\xcc\xa5\x0d\xa1\xad\xe3\x93\xb2\x9a\x4f\x33\xf6\x6d\xe6\xe8\xad\xe6\xb3\x1f\xca\xad\x15\x07\x77\x6c\x6b\x25\xf5\xd5\x01\x81\x92\xd9\xe9\x5d\x3c\x68\x02\xb2\x5f\xa0\xb7\x3f\xe4\x0d\x46\x67\x45\x60\x0f\xab\x39\x67\x9f\xb7\xad\xb5\xfa\xeb\xc8\x50\x93\x10\x13\x52\x2a\x5c\x20\xf3\x81\xf1\x36\x0f\x8e\x04\x34\x16\x43\x8f\x70\xdb\xe6\xbb\x33\x45\x8d\x06\xf4\x57\x1b\xec\x00\x4c\x4a\xd6\xbf\x82\x1f\x3a\xfa\x53\xad\x21\xed\x05\xe1\xf2\xb2\x6f\xc9\x3b\x45\x8d\xe8\xbb\x62\x64\x7a\x82\x24\x68\xdb\x29\xb9\xf3\x09\x23\xa8\xcf\x55\xb7\xbc\x0d\xb4\x8b\xa6\xa4\xc5\x36\xd7\x9c\xe0\x9b\xec\xcb\x87\x7c\xce\x78\x2c\xf4\x08\x3d\xa9\xdc\x5c\x50\xce\x32\x33\xdd\x7b\x82\xe5\x3c\x1c\x28\x70\x47\x17\x33\x65\x14\x6f\xbc\x26\x6b\x76\x4b\x22\xf6\x70\x61\x34\x21\x83\x54\xf9\x80\xc3\x00\xbf\x1b\x56\x80\xf8\x73\x43\xc5\x94\x4a\x50\x96\x02\x28\x33\x61\x8b\x79\x89\x38\x06\x50\x3d\xc0\xfd\x0b\xd4\xd3\xae\x16\xf7\x17\x8c\x6b\x48\xa0\xa9\xdf\x92\x77\xf7\xa7\xd5\x4b\x67\x44\xfb\x7f\x23\x52\xbb\xd6\x3d\x33\x3a\xaf\x8d\x39\xaf\x37\x58\x48\x34\xf1\x56\xd9\xf0\x82\x9c\x59\x67\xa7\xd5\x45\x5a\x12\xf9\x39\x78\x49\x26\xa6\x53\x10\xfd\x63\x05\x5e\x82\x28\x44\xe9\x63\x21\xdf\x14\x64\x63\x2e\xa2\xc0\x1d\xef\x93\x56\x8e\xdf\x65\x17\x0e\x9d\xf2\x5e\x8b\x41\x99\xe1\xcd\x86\xf4\x81\x00\xca\x83\x59\xaa\xb1\x3d\xc8\xee\x4a\x48\x2c\xfe\x2b\xb3\x39\xc5\x26\xc1\x70\x31\x70\xb9\x22\x1c\x09\xda\x37\xc4\x08\x47\xa5\x46\xc1\x5e\xd8\xb3\x91\x3f\x24\xb7\x13\x08\x27\x89\x21\xaf\xf1\xc2\x0b\x98\x5c\x07\xb7\x72\x02\x2c\x80\xfb\x5d\xc6\x1a\x00\x6b\x72\x12\x23\xb7\x95\x4d\xc0\x0d\x1f\x20\x1f\x27\xf0\x4f\x52\x01\x3d\x49\x7b\x82\x16\x58\x91\x45\x3b\x2b\x79\xb7\x43\xe4\x1d\x2d\x3b\x82\x15\xdf\xac\xb0\xf0\xa0\x57\x39\xe8\x73\xc6\xd2\x6d\x12\x06\xe9\x04\x3b\xa5\x23\xfd\x52\xae\xd0\x53\x74\xe6\x82\x5f\xfd\xd7\xb7\x67\x3f\x04\x7c\x50\x57\x67\x5e\xdb\xa2\x2b\x81\x86\xa3\xa3\x19\x7c\x72\x1a\x68\xd7\x71\xf2\xb2\xb5\xc9\x60\x9f\x1e\x2d\x7d\xd9\x9f\x42\xae\x26\xa4\x95\x5a\xa5\xdc\x4d\x55\x4e\xb6\xd9\x9b\x63\xe3\xb5\x43\x2c\xd0\x96\x74\x9d\xfa\x5f\x48\x29\x76\x8a\x8b\xc4\x92\x8c\x65\xdf\x24\x19\x89\x89\x02\xd4\x93\x77\xf2\xf2\x65\x7c\x8b\x50\xbf\x79\xb7\xe9\xe5\x4b\x13\x17\x83\x85\xa0\xcb\x82\x8f\x34\x48\xb4\xc2\xdc\x0c\x58\xf6\xa4\x7b\x6c\x80\xd0\x6b\xbc\x51\xaa\x56\x30\x93\x30\x1e\xf4\xa4\x1a\x4c\x75\x32\x37\xe0\x1c\xfd\xe5\x27\x3d\xe3\x3c\x4a\x37\xfa\x50\x06\xc0\x2a\xef\x6b\xbc\x11\x79\x51\x13\x0b\x88\x8e\x2e\xa9\xd5\x0c\x89\x21\xc9\x6e\x48\x73\xe4\x00\x4a\x2f\x44\x69\x78\x7b\xc7\xa4\xd2\x6c\x07\x12\x91\x25\xdc\xc3\x2c\x86\x0d\x2a\xf5\x98\xd0\x97\x38\x6a\x62\x0f\x94\x6a\xaa\xff\xa5\x66\x52\xd0\xc1\x3e\x0c\xc0\x34\xf6\x98\x12\x74\xb0\x03\x7c\x5c\x46\x09\x46\xf3\x8b\x0f\x39\x02\x28\xa3\xa1\x0c\x88\xc9\xd5\xd3\x05\x6e\xb8\x0b\x6c\x21\xc6\x24\x47\xe3\x3b\x61\x8d\x16\x21\x2e\x99\x75\x29\xc1\xa6\x0b\x0d\xcb\x9e\x1d\x5b\xd6\x7f\x22\xd5\x71\xe7\x98\x3c\x54\x6d\x4e\x62\x34\x04\x73\xe1\x1e\x60\xbb\xdd\x90\x86\xe2\x4e\x47\x82\xd4\xe1\xbe\xc3\x15\x40\x4f\x96\x5c\x74\x4c\x2d\x29\x3e\x7e\xcd\x72\x24\x7f\xd7\x74\x43\x4b\xc4\xf8\xd4\x7b\xa8\x9d\x5c\xa1\xe6\xd9\xa5\xca\xf5\x8f\xe6\x76\x0b\xeb\x6e\x6d\x89\x83\x99\xa8\xf3\xd1\xa4\xd3\x11\xb3\x06\x10\xb1\x15\x15\x87\x12\x2e\x8e\xff\xb0\x9d\xa8\xce\x27\x4a\x84\xb4\xbb\xae\x26\x8c\xae\x4a\x46\x14\x2b\xa6\x2b\x25\x4b\xd2\xa4\x59\x2f\xfe\xa3\x38\x44\xe4\x12\xdd\xfa\x30\xa0\xd0\xe4\xf7\xb3\x6d\x4f\x78\x50\x1b\xc5\x9b\xed\xeb\x72\x2e\x04\xe7\xa5\x86\x66\x8e\x7e\x4a\x6c\xf9\x95\x48\xd6\xfa\xed\xd1\x08\xff\x8b\xe4\xd2\x70\xf4\xc5\xd1\x75\xca\x69\x9f\x5d\xaa\xf2\x4e\x7e\x1b\x9e\x3f\x46\x3f\x15\x6e\x2c\xb9\xf5\xe9\xa2\xd8\x2e\x16\x0b\xaa\x51\x59\x07\xdf\xb3\x0d\xcb\xba\x5f\x64\x8d\x9d\xa3\xb3\x93\xf1\x56\xda\x16\xbb\xbf\xdd\x57\x6c\x3b\x4f\x28\x84\xf6\x28\x88\x0e\x57\x90\xe4\x77\x47\x73\xff\x1c\xa9\xed\xe4\x22\xdb\xf9\x93\x69\x7d\x71\x4f\xff\x80\x5e\x92\x05\x64\x06\xc0\x21\x62\xc5\x3f\x04\x8c\xe8\xd2\x78\x1d\x63\x37\xa6\x30\xcc\x8a\x8a\xf9\xbd\x0c\x11\xcf\x71\x57\x6a\x88\xc9\xa7\x9f\xdd\x10\x92\x6b\xed\xff\xf5\xcf\xff\xfb\x5f\xff\xfc\x3f\x1f\xef\xff\xfe\xb3\x30\xc3\x7f\x1c\x35\xcb\x7f\x46\x3d\x2b\xc3\xfd\x87\x76\x8e\x7f\xd3\x77\x3b\xf3\x5b\xf8\x5d\x33\xda\xa7\x67\x37\x04\x02\xe1\xaa\x63\x20\xf4\x47\x68\x83\x0a\x63\x4c\xfe\x78\x16\x84\xc7\x3e\x42\x4f\xce\x4c\x08\x6f\x89\x86\x6a\xb8\x7f\x1e\x8c\xe1\xff\x0b\x7b\x66\xa3\xbd\xbf\xc3\x9a\x58\x9a\xbd\x2f\xc2\xf6\x1e\x59\x7d\xfd\x5b\x75\x71\x08\x50\xcd\xdb\xbf\xd7\xc8\x2b\x0a\x3e\xd2\x3b\x71\x7a\x40\x7b\xf5\xef\x49\x81\x94\xe5\xf6\x87\x53\x2a\xa6\x57\x19\xbb\xbb\xf3\x96\x95\x34\x4f\x3e\x33\x8c\x82\xea\xec\x66\x02\x0e\x80\xe1\x32\x56\xf9\xec\x38\x4e\x51\xbd\x3f\xb3\xc4\x4a\x47\xfb\x85\xb9\xeb\x58\x8a\xd5\x29\xa9\x46\x02\x19\xfc\xd9\xbe\x6d\xf6\x15\xdb\xa2\x09\x5d\x20\xb1\xc1\x0d\x81\x8c\xac\xa9\xfb\x36\xf1\x7a\x38\x54\x05\x65\x7d\xb7\x1b\xa3\x1b\x8a\x68\x17\x7c\xfb\xd9\x74\xab\xd3\xb3\x3c\xfa\xcf\x1f\x39\x9a\x25\x9a\xe1\x0f\xa7\xb9\x91\x4d\xd4\x5c\xce\x4a\x0b\x39\xfb\xf7\xb3\xb3\xb3\xac\xcb\x8a\x2e\x57\xdf\x96\x5d\xd0\xae\xeb\x1f\xcb\x5d\x75\x56\xc1\xbe\xce\x9f\x41\xdf\x82\x62\x52\xd0\xba\xd0\x85\x89\xa4\x98\xe4\x87\x6e\xd9\xa3\x9e\x61\x9c\x6b\x04\x35\x07\xfb\x21\x8a\x48\x95\x3a\x07\x2a\x28\x23\x24\xba\xa3\xea\xb2\x0f\x3f\x1b\x09\xf0\xb3\xb0\x43\x8f\x0e\x21\xec\xb1\x18\xdf\x61\x54\x2d\x3c\x32\xee\xab\x50\xa2\x16\xde\xf0\x59\x9d\x68\x59\x74\xc3\x21\x74\x7b\x72\x36\x3b\x54\x43\xfd\x6c\x6f\x4b\x40\xf1\x8f\xb3\x83\x10\xcc\x63\x2b\xce\x66\x05\xe4\x6a\xc1\x15\x9f\x9e\xcd\xce\xd0\x1f\xd0\x1f\xff\x04\xff\xf3\xe7\x33\xff\x3f\xa7\xa7\xe8\xd3\x33\xd4\xe2\x5d\xec\xa3\xaf\x7a\x28\xfe\x8d\xc8\xc0\x55\x6e\x2e\x78\x61\x56\x5a\xf1\x8a\x17\x0d\x91\xc6\x70\x39\x9b\xda\x98\xc1\xfc\x45\x41\x68\x4c\xa6\x85\xcb\xda\x88\xe9\xb3\x24\x78\x6a\x78\x0a\xc0\xf3\xa0\x6b\xeb\x7e\x44\xc2\xe2\x92\xae\xda\x41\x11\xa3\x9e\x6c\x6d\x44\x59\x86\x59\xf1\xae\x59\x11\xa6\x6e\x9c\xa8\x07\x59\xd3\xbc\x2c\x67\x85\x00\x9f\x43\xb1\x37\x6d\xb8\x85\xfa\x3a\x3a\xdf\x0f\xac\xb3\x1b\xd2\xd0\x05\x0d\x92\x40\x46\xae\xd9\x36\xdf\x53\x17\x8f\x2b\x14\x29\x9c\xce\xd1\xc3\xd0\xb6\x58\xc9\x30\x7d\x18\x5f\x6a\xdf\xd2\xf6\x87\x1a\xe8\x3e\x57\x68\x41\x08\xd4\xb0\x64\xfd\x2d\xe1\x90\x8f\x92\xe5\x43\x49\x86\x70\x54\x43\x4c\xb2\x1b\xd2\x8b\xac\x5a\x85\x63\x46\x37\xfa\x2b\x42\x26\xb5\xa2\x29\xa5\x6a\x2b\x79\x31\x46\x6b\x9b\x4a\x30\x3e\x3d\x45\xdf\x09\x1d\xa5\xc8\xc0\x12\x85\x3b\x9f\x95\x6e\xa7\xb7\xe5\x58\xed\x3f\x75\x2e\x5f\x63\x41\x74\xf9\x2c\x97\x94\xdc\xb0\xf5\x66\x00\x58\xc5\x84\xf6\xa0\x87\x7a\x60\x9f\xcc\xce\x0a\x89\xad\x1a\xa6\x14\xb5\xe9\xd8\x95\xf4\x14\x5d\x35\xd8\xd4\x1e\xf5\x14\x36\xd4\x97\x71\x2e\x87\xdd\x36\xc5\x9a\x2a\xba\x78\x22\xee\x48\xeb\x64\xb9\x46\xc8\xa2\xf6\x87\x3a\xdb\x57\x82\x92\xde\xda\x9f\x7f\xb8\x7f\x2f\x85\xfa\x45\x94\x55\xf6\xea\xab\x6f\xfe\x37\x54\x9f\xa2\xdc\x67\xfb\x2b\x70\x4d\xa1\xf2\xb4\x28\x4a\x5e\x6e\x26\xa8\x6a\xee\xd7\x21\x78\x2b\x61\x66\x3e\xbe\x30\xd5\xf0\xdf\x30\xd5\x60\x52\x2c\xf7\x0e\x45\x16\xe9\x3f\xc8\x37\x0b\x48\xc2\x56\x73\x8d\xad\x81\x15\x74\x39\xf1\x1e\x05\x20\xd5\xb6\xcc\x92\xc8\xbf\x82\xd5\xea\x79\xdf\x5e\xf6\x0d\xd7\x45\x71\xc3\xa4\x71\xf0\x5e\x5c\xbe\xd4\x81\x4c\xb6\x85\xfe\x04\x8e\x8e\xa1\x97\x79\x7c\x82\x0e\xd3\x30\x22\x3c\x9f\x40\x09\x70\xa3\x2e\xe6\xee\x4e\x67\x45\x0b\x6c\x6a\x23\xb6\xb6\xf0\xaf\xd4\x5d\x6f\x68\x93\x8c\x91\x93\x20\x29\x7e\x93\xd7\x7a\x3b\xc9\x0a\xde\x50\x5d\x96\x74\xc1\x86\xbe\x05\x07\x35\x15\x66\xba\x42\xc5\x9b\x2c\xbd\x3e\x28\xa2\xe9\x84\xa1\xaf\xc8\x19\xe1\x40\x17\x40\x15\x37\xb1\xc1\xb8\x20\x56\x69\x9b\x9e\x14\x01\x0d\x5c\x41\x9f\x24\x4c\x09\xe5\xce\x7b\x57\xe8\xb9\x82\x2d\x8d\x8b\xd7\x82\xaf\xe2\x04\x6d\xc9\x48\x6d\xd8\x35\xd6\x15\xd8\x12\x8b\x75\x09\x51\xd7\xe4\xa2\x62\xad\x54\x27\x40\x1d\x4f\xdb\xbc\x88\xa7\x76\x46\xd3\x05\xa2\x2d\x7a\x5a\x35\xb1\x56\xc7\x4e\x4b\xf2\x8c\x11\x31\xee\x92\x56\xea\x4f\x95\x0e\x5b\xc3\xd9\x66\x92\x72\xba\xc6\x7c\x87\x48\x2f\xf9\x0e\x6d\x18\xed\xa5\x96\x47\xae\x9c\x26\xc2\xba\x4a\x77\x58\x22\xa6\xea\x43\x9d\xc5\x8e\x84\xcb\x45\x38\x50\x69\x9d\x37\x4c\x08\x7a\xdd\x11\x44\x28\x78\xe1\xdb\x01\x74\x00\x6a\x82\xee\x30\x5f\x0e\x5a\x0a\x30\xf7\x2d\x76\x55\xf4\xf8\x16\xd3\x4e\x3f\x44\xd0\x31\x29\x4e\x22\x67\xad\xad\xd1\x12\x76\x8a\xfa\xbf\x09\xd0\xf0\xbd\xd4\x66\xda\x18\xd1\xb3\x60\xf6\x45\x17\x07\xcc\x3c\x1a\x42\x57\x62\x9e\x3b\xd4\xe6\xe8\x39\xbc\x45\xe2\x0b\xe5\xe1\xb0\x0a\xb5\x13\xf5\xda\x49\xed\xdf\x97\x91\xa5\xaa\xdf\xd1\x4c\x10\x36\x64\xd2\x10\x66\x3a\xff\xc0\xb6\xb3\x85\x3f\x69\x7f\xcb\xa0\xea\x50\xf8\xc0\x0b\x58\x36\x94\x54\x85\x56\x9c\x34\x84\xde\x92\x44\xcf\x82\x8a\x1d\x1b\xbc\xeb\x18\x6e\x67\x45\xfc\x82\x88\x9f\x2b\xd3\xcd\x14\x4a\x35\x8c\xad\x5f\x33\x09\x43\x59\x6d\x65\xd2\x74\xe5\x49\x47\x97\xb0\xea\xe0\x0a\x73\x70\xa6\xc8\x4e\x16\x1c\x1b\x9f\xbb\xcd\x1b\xb6\x69\xdb\x10\x32\xb3\xec\x19\x27\xed\x74\x86\x2e\x7d\x7a\x89\x80\x78\xa0\xe8\x65\x9f\x12\x32\x5e\x79\x7a\xde\xeb\x47\x36\x60\x60\x34\xf9\x51\x5d\x5c\x7f\x3c\x41\x3f\xea\xcb\xe6\x8f\x27\x8a\xf3\x7e\xec\xd8\xf6\xc7\xa9\x59\xb1\x7e\xd1\x0d\x4a\x57\x15\xe1\x1e\x50\xfc\x71\x4d\x56\xf8\x96\x42\x22\x7b\xab\x54\x78\xc2\xd7\x50\x9c\x3d\x45\x6b\xc5\xb6\x48\x30\xc5\x66\xb6\x14\x42\x54\xc5\x31\xad\xa2\xe8\xcb\xb9\x56\x16\x26\x53\xaf\x5e\x9a\xaa\xf0\x61\x22\xb6\xd6\xd2\xb0\xa1\xa6\x7b\xc7\x26\x2e\xea\x10\x17\x76\xd7\x05\x92\x3a\xc1\xc6\x90\x31\xf9\xe7\xa8\x59\x61\xbe\x24\xed\x0c\x7d\xd7\x6b\x9f\x73\xa1\x2a\x80\xda\xf0\x36\x3b\xbd\x8c\x8a\x2e\xfe\xf7\x1c\xe9\xb2\x44\x6e\xd7\x04\x97\x40\x31\x38\xcf\xa9\x1a\x48\xbb\xd8\xa1\xc2\x92\x2e\xf9\x64\x54\xab\x74\xfa\x7d\xa5\xe1\x8c\x08\x88\x6d\x43\x7e\x47\xff\x52\x85\x15\x47\x1e\xff\x40\xbf\x6c\x41\x45\xd7\x64\x3a\x2f\x16\x1e\xaf\x5d\x17\x6c\x71\x62\x2f\x2c\x25\x43\x20\xac\xd5\x8f\xb4\xdf\x0c\x52\x64\x8a\x96\xeb\x64\x4e\x5a\xfb\x77\x6e\x8a\xd3\xe4\x52\xff\x3f\x37\x3d\x04\xc4\xf2\x1e\xfe\xaa\xf5\xc5\xef\xf1\xbc\x4d\x46\xb7\xb1\x8a\x8a\xd3\x8c\x16\xb6\x90\xb4\xd3\x5e\x71\x6f\xaa\x23\xdb\xda\xaf\x23\x25\x5f\xcd\x18\x22\x8d\x43\x73\x35\x54\x5d\xf1\x65\xb5\x89\xd3\x6e\xd7\xa4\xc1\x83\x20\xb5\x70\x08\xac\x5d\xef\x50\xc3\x8c\x7a\xb6\x4e\xb5\x1f\x4b\x7f\x53\xc3\xd8\x04\x3e\x3e\x7c\xe8\x3f\x44\xa1\x9b\xe5\xa8\x48\x38\x5a\x27\xf1\x50\x59\x24\x64\xf4\x27\x16\x82\x70\x89\xf2\x55\x8f\x8a\x6d\x3d\xbd\xf0\x60\x98\x1a\xcd\xf7\x0b\xf6\x38\x5d\x87\x7a\x8e\x1e\x5c\xf6\xa1\x4c\x00\x66\x57\xa7\xba\xba\x97\xd8\x21\x21\x7d\x30\x2a\x86\x65\xc5\x51\xd0\xd5\xdc\xc6\x22\x31\xe2\x6b\xc2\x7c\x3f\xc9\x80\x9a\x26\xc7\x57\x5a\xd0\xf2\xc1\x1e\x36\x32\xa1\xb8\xc1\x21\x67\x0e\x37\x17\x90\x5b\x4e\x06\x80\x2b\x20\xee\xf5\x43\x6f\xa1\x67\xdf\x5c\xab\xb5\x10\x08\x62\x25\xa7\xb9\x35\xdf\x02\xe9\x2f\x36\x95\xeb\x53\xb5\x27\x3a\x7f\x6c\xde\x3f\x88\xe2\xb6\xf2\xc5\x55\x17\x06\x3f\x5d\xc1\xa2\x68\xab\xd7\xba\x2b\xd0\x51\x52\xa1\x50\x9b\x36\x27\xce\x2f\x23\x26\xf2\x1e\x9a\xfd\x4c\xe5\xd5\xfc\x73\xa9\x6e\x6d\xbe\xe5\xee\x57\xec\xa4\xc8\xde\x48\x71\xeb\x24\xf5\x44\x29\xbd\xc5\x41\x4e\x82\xe3\xeb\xfc\xb1\xfd\xef\xfd\xd7\xfb\xec\x30\x28\xf8\x4b\xfc\x73\x0a\x65\xbb\x42\xf2\x8c\xdb\x49\xee\xd7\x4c\x98\x22\x6f\x20\xef\x42\xa1\x0f\x79\x99\xec\xfc\xbc\x72\xd6\x35\x11\xef\xf5\xd0\x42\xa7\x23\x39\x37\xa4\x91\x91\x2e\x01\x8a\xb4\xda\xf4\xd1\x34\xb8\x54\x7f\xd2\x87\xa0\x39\xfe\x0a\xe2\x43\x03\xc5\xa4\x7a\x35\xb9\x5c\xd8\x3a\x69\xfa\x6d\x07\x7f\x17\xd2\xf1\xe2\xfa\x86\x94\x06\x36\x15\xea\xf0\xa3\x09\x99\x2d\x67\x27\xc5\xfb\x13\x0d\x85\x67\xa0\x23\x5a\xad\x8d\xf1\xe8\x8a\xe5\x5f\x4e\x9c\x56\xb4\x01\x7b\x24\xfe\xd8\xd3\xee\xc7\x59\xaa\x2d\xa2\x34\xd4\x4c\x5f\x62\x48\xb7\x11\xa8\x25\xb7\xa4\x63\x1b\xc2\x85\x7e\x57\x91\xa4\xba\x9e\xcd\x25\xda\x70\x02\x16\x0e\x6d\x0a\x34\x8b\x14\xe8\xe1\x5b\xda\xb7\x6c\x7b\x92\xd6\xed\x6a\x87\xc6\xde\x42\x39\x15\x37\x4a\x5c\x0f\x7d\x4f\x94\x36\xa8\x6e\xc0\xa6\x34\x92\x4e\x65\xda\xa3\x2e\x96\xf5\x97\xdf\x42\xd5\x0b\xd5\xb8\xb1\xf7\x2d\xd0\x6f\x7b\xe4\xd0\x45\xa9\xfb\xf9\xc5\x58\xcd\x9b\xba\x75\x24\x43\xd4\x3f\x0f\xd1\xd3\x2e\x2a\xca\x08\x7f\x9b\x67\x21\x5c\x2a\x5f\x5c\xb4\x31\x83\x0b\x94\x83\x20\x1f\xe3\x24\xcf\xbc\x50\x1d\x47\x40\x9f\x3e\x18\xd5\x83\x94\x06\x96\xe4\xc5\x3e\x3d\xc0\xe8\x1c\xd6\x74\xf0\x16\xe7\x5f\x8e\x4c\xa9\xa8\x52\x48\xa7\x26\x7b\x45\xaa\xa8\xa2\x43\x68\x77\xff\x44\x20\x2f\x3a\xac\x40\x59\xd8\x72\x95\x77\xc0\xf5\x78\xba\x9e\x8f\xd0\xb5\x92\xa2\xfc\x9b\xd3\x33\xae\xc9\x54\x2d\xb3\xb7\x87\x92\x65\xec\xf6\x50\xd0\x54\xb1\xb5\x3a\xe1\xb8\x23\x2a\xd5\x86\x4a\x3a\x55\xa0\xba\x15\xb4\xd0\x72\x79\xf9\x68\xe6\x3c\x00\x32\xd7\x47\xe4\xa8\xea\x97\xeb\x16\x25\x38\x3f\xea\x1d\x91\x2e\x8a\xa8\xd5\x6e\x52\xfb\xf9\x6b\x41\xc8\x6f\xb4\x5f\xad\x2f\xcd\x3f\x99\xe2\xc0\x98\xed\xdd\x8d\xfe\x7d\x83\x8b\x28\x28\xe1\xa3\xd0\x20\xa7\x70\x4e\x12\x9f\x55\xf0\x42\xeb\x45\x5e\x61\x61\x1c\x02\xc3\xbe\xcd\x2e\xd1\x33\xa5\x37\xee\x02\x8b\x2a\x04\xe2\xfb\xaa\xb2\x94\x3b\x53\x27\x94\x4b\x0f\x0c\xd0\x1b\xdc\x90\x3d\x54\xf9\xa8\x78\xf6\xb4\xab\x2a\xbf\x23\x3b\x28\x55\x81\x0b\x16\xdb\x40\xa7\x4d\x46\xed\x23\xdd\x12\x6c\xaf\x12\xdf\x10\x75\x62\x4a\xa6\xd4\x25\xb8\x31\x47\xc5\x7c\x52\xa7\x66\x96\x5f\x12\x3b\x75\x53\x8b\x9d\x6a\xf1\xd8\xaa\xc3\xa1\x19\x39\x34\x82\x9c\x20\x1a\x7b\x13\xc7\xc3\xe0\x53\xc5\x54\x27\x89\x85\x09\x21\x07\xcc\xbf\x0a\x0b\x64\x65\x00\x04\xe9\x91\x36\xcb\x8f\x2a\xd5\x96\x0d\xcb\x55\x36\xbf\x8e\x4d\x64\x5c\x3b\xf8\x82\xf6\x3d\x0b\xe2\x16\x0f\x80\x29\x2d\xc7\x6b\x32\x8e\x0a\x83\x29\x78\x17\xb4\x6f\x85\x76\xbc\x66\x14\x89\x94\x7e\xbd\xe1\xeb\x5a\xb1\x73\x39\x1e\x2c\xb8\x0b\x95\x1e\xf6\x29\xc4\xe8\x58\x8d\xd8\x3c\x0c\x96\x67\x26\x1f\x2f\x98\xf6\x07\xe6\xef\x3b\x57\xc1\x2c\x7e\x51\x4a\x78\x78\xeb\x68\xf1\x43\xc1\x3d\xda\x33\xb9\x32\x39\x9d\xfe\x4a\x07\xb6\x42\x2a\xc2\x7b\xe6\x96\xc0\xee\x74\xde\x2c\x2c\xfd\xdd\xb1\xac\xd5\xd3\x85\x01\xca\x1c\x4c\xf9\x21\x68\x90\x2f\x77\xff\x50\xb7\x25\x40\x3d\x7d\xc7\x40\xde\xc2\x74\xd5\x31\xf9\xdc\xfe\xae\x91\x9f\x14\xcd\xba\x85\x33\x7a\x5a\xa0\x0d\x70\xb6\xdb\x54\xc0\xdb\x77\x24\x44\xa6\x38\x5e\x04\x08\x54\xb9\xa2\x42\x18\xe7\xfd\x2d\xf2\x19\xa4\x0e\xe4\x43\x42\x59\xdd\xb0\xe2\x5e\x4b\xd6\x58\x6d\xcf\xd0\x17\x2b\x11\x79\x07\xef\x8a\x3a\xe1\xc2\x38\x5a\x60\xda\x85\xf9\x63\x09\x90\x3d\xed\xc6\x78\x33\xa0\x64\x2e\x23\x16\xf0\xe4\x5f\x2c\x52\xb6\x04\x09\x82\x79\xb3\x82\xaf\x20\x3c\x0a\xc2\x22\x9d\x43\xb2\x96\xcd\x8d\xad\x7b\xc5\xb6\xe8\x9a\x7a\x8f\xb0\x90\xc6\x74\x81\x96\xdc\x58\x5f\xe8\x02\xe6\x59\xc1\x0b\xc4\xf8\x96\x41\x11\xd7\x66\xe0\x22\x8d\x4a\x8a\xc2\xef\xee\xa8\x35\x7a\x6a\x3e\xd2\x11\x4b\xbf\x8a\xca\x58\x58\x0f\x97\xb7\x99\xe9\x61\xe1\xc9\x52\xad\x54\xee\x7b\x41\x3d\x6d\xb4\xa4\xb7\xa4\x4f\x6a\x0b\xb9\x97\x07\x52\x61\x9e\x87\x8e\x8c\x6f\x56\x2b\xb5\x73\x41\x1d\xc6\xdc\xfc\x5e\x2c\x10\xa6\xfc\x82\x75\x89\x0e\x50\x9c\x3a\x78\xed\x05\x87\x35\xd3\x95\xc6\x07\xce\x46\xb0\x63\x66\x70\xd8\x96\xae\x18\xd7\x1d\xaf\xb3\x75\xf9\xa9\xcd\x7f\x56\xf2\xbb\x8c\xdb\xa6\xc3\x74\x1d\x24\xdd\x16\x94\xf2\x93\x74\x1c\x2b\xa9\xc0\x21\xde\x75\x86\x79\x52\xf1\x77\xbf\x70\x2c\xcd\x6c\x72\xe5\xff\x24\xbb\xa2\x99\xa4\x2a\x16\x23\x02\xed\x91\x3d\x7e\x55\x36\x1b\x85\x2c\x5b\x80\x78\x58\x0f\xcd\xca\xb2\x77\x94\x71\x9c\xf6\xcf\xca\xb0\xc7\x29\xc9\x65\x46\xea\x98\x8c\xc3\xc8\xc5\x77\xf5\xd3\x39\x47\xbd\x10\xe7\x67\xd1\xf0\x99\x38\xee\x2d\x83\x7a\xa1\x78\x14\x24\x4a\xf8\xe2\x6c\x87\xb2\x53\xa5\xdc\x5c\x36\xba\x96\xdf\x1f\x61\x7c\x57\xa6\xae\x84\xfc\xe8\xa2\x1d\x48\x03\xbb\x08\xe5\xe5\x49\x10\x45\xcf\x9e\xa1\x5a\xe2\xc8\xa1\x03\x19\x8c\xf4\x50\x85\x1d\xa8\x0b\xda\xc7\xf7\x0c\xc3\xe3\xdb\x15\x96\xe4\x96\xf0\x20\xbe\x81\x93\xb5\x8e\x52\x48\x47\x1a\xfa\x96\x70\xf4\x59\x9a\x6a\x70\x9c\x22\xea\x32\x6a\xba\x41\x7c\x1d\x62\xe9\x28\xf7\x28\xc0\xbe\xa4\x5e\xd8\x97\xc8\x01\x1c\x75\xdf\x2c\xce\x21\x7d\xf9\xc3\xd7\x16\xa1\x51\xae\x29\xd5\x4c\x9c\x09\x2c\xa1\x59\xbf\xbc\x1a\xae\xe1\x92\x30\xc9\x81\xaf\x3e\x49\x54\x84\xe1\x3c\x11\xbc\xcf\xca\xcd\xe6\xa3\xe2\x27\xfc\x6b\x94\x8d\xe3\x07\x53\x8e\xe1\xe6\xd3\x53\xf4\x85\x76\x60\x68\x19\x2d\x86\x4e\x5a\xd7\xfc\x16\xef\x04\xfa\x07\xe1\x4c\xe9\x6d\xf0\x98\x13\x4d\x0a\x2f\xda\x65\xd6\x09\x49\x8a\x4a\x41\xc2\x93\x5d\xea\x1a\x79\xcd\x96\xcd\xbd\xb6\x9a\x31\x8a\x63\x7a\x9e\x29\x8d\x1a\x09\x8f\xfa\x99\x2a\x57\x84\x71\x22\x69\x03\xa5\x8a\x24\xee\x2c\xfd\x8c\xae\x62\xcb\xea\x17\x1e\xb6\x89\xf8\xce\x24\x8a\x5e\xa0\x11\xcb\xe6\x31\xfc\x66\x01\x9f\xfe\x0c\xdc\xbc\xba\x15\xf3\x84\xf1\x0a\x74\x3b\xaf\x77\x15\x57\xd2\xf3\xbc\xa7\xbf\x59\xcb\xe0\x87\x47\xd9\x1a\xa5\xf0\x8c\x6f\x5f\x9f\xa3\xf7\x3c\xb8\x78\x05\x44\xdd\xbf\x25\xfd\xd4\x39\x31\xe0\x52\x65\x43\xd9\xbd\x9e\x79\xbd\xf3\xe9\x02\xea\x7e\xe2\x6d\x61\x11\xa9\x22\x8b\x8f\x19\x11\xb7\xc6\xa3\xb7\x43\x83\x8e\x19\x8b\x4e\x4c\xd0\x69\xab\xa7\x05\xbf\xf3\x69\x56\x51\xbf\xc2\x1b\x7a\xe5\xd4\x70\x3d\xcb\x27\x8f\x46\x22\x4f\x52\x34\xa0\x96\xc8\x3f\x64\x32\x30\xbb\x38\x27\x2b\xfa\x28\x9e\xa6\x2e\xce\x8c\x20\xcd\x39\x33\xb9\x6d\xe0\xb6\x8d\xde\xb2\x57\x0c\xaf\x4b\xda\xa8\x35\xb3\xcf\xb6\xda\x34\xa5\xb8\x78\x51\x58\xda\x08\x12\x7f\x70\x8f\x80\x45\xd3\xab\x85\x0f\xd2\xcf\x43\x17\xec\x35\xc2\x47\x2b\xfc\x25\x8c\x27\x99\x16\xee\x10\x97\x91\x51\xc4\xd8\x65\x35\xd0\xee\x3d\x6f\x35\xf8\x09\x54\xd0\xa0\x50\x1f\x55\x07\x6b\x86\x05\x6a\x90\x31\xd4\x47\x45\x19\xde\xaa\xff\xfa\xa1\x6e\xaa\x2f\xb7\x46\x3f\x7d\xc8\x2b\x20\xb8\x27\x26\x3b\xc1\xd0\x9a\xe0\x5e\xf8\x18\xaf\xb0\x2c\x0f\x27\x0d\xe3\x6d\x0c\x39\x9c\x37\xda\x8f\x4f\xfa\x00\x8b\xfc\x58\x2f\x2a\xac\x16\xaa\xac\x35\xfa\x0d\xea\x61\x54\x40\x4e\xea\x51\xcc\x92\xfa\x92\x0a\x87\x51\x43\xba\xa9\x73\x19\x3d\xde\x8e\xa8\x0b\x63\xcd\x96\xda\xea\xfd\xb6\xf6\x46\x69\x25\x93\x02\xcc\xee\xa3\x0b\xe9\xa2\xad\xa2\xab\xfb\x73\xef\x43\xcc\x39\xa7\xb8\x5f\x46\x35\x11\x8d\x59\x6e\x14\xcf\xdf\xab\xb7\xf8\xea\x43\xd7\x5e\x7d\xd4\x2c\x9f\x88\x91\x04\xa8\x8e\x49\x23\xda\x6a\x97\x9e\x32\x3d\x4c\x27\x4f\x11\x2f\x14\x2f\xf6\x34\xb8\x8f\x1e\x1d\x49\xb9\x02\x4b\x07\x53\xc4\xec\x00\xf2\xc7\x99\x7d\xc6\xa3\xd0\x66\xb4\x1d\x0b\x08\xcb\x40\x77\x8f\x34\x8e\xc6\xa4\x82\xc4\xd9\x6f\x13\xaa\x91\xa0\x16\x4c\xe6\xda\x87\xf1\x8b\x79\xe3\xe4\x49\x48\xd7\x2b\x79\x14\x72\xcc\x6b\x99\xa4\x3f\x46\x4c\x7f\xfe\xf8\x7e\x9e\x8a\x99\xa6\x37\x61\x7e\x8d\x97\x04\x35\xac\xeb\x48\x63\x43\x22\xd5\xf9\xee\xc3\xcd\xc3\x57\xe0\x38\xe9\x08\xc4\x4b\xe9\x38\x78\x5f\x08\xab\xf0\x4e\xaf\xf1\xc2\x09\xd4\x74\x04\xf3\x72\x49\x2a\x57\x4b\x93\x75\x6d\xe8\xde\x84\x92\x35\x7b\x22\x7a\x0c\xec\x2f\x34\xe8\xb6\xe6\x61\x56\xe2\x2b\xb5\x79\x40\xa1\xd9\xd6\xd5\xbf\xcc\x32\x88\x66\x37\x64\x57\xaa\x85\x19\xa6\x1f\xbd\x48\xf2\xad\x8a\x69\x48\xf7\x73\x86\x5e\x64\x23\xcc\xc2\x2a\xb6\x29\x0a\xe8\xf1\x88\xaa\x54\x29\x7b\x5e\x3e\x40\x2a\xa8\x9a\xaa\xa8\x37\x64\x07\x09\x62\xc5\xae\xc7\x27\x44\x45\x93\x16\xab\x54\xd1\xfc\x50\x44\xc5\x92\xbb\xb5\xb2\x49\xea\xbf\x22\x8e\xb3\xf5\x1c\xf3\xec\x3c\x61\x03\xd0\x36\x58\x5f\xef\xd6\x71\x0c\x70\x9c\xff\x14\x0d\x7a\x29\x11\x95\x84\x83\x3a\x05\xf9\x0a\x50\xea\x35\x28\x0f\x17\xe9\x31\x7a\x1a\xfd\xcc\xb6\x48\x92\xe0\x1c\x9f\x47\xe3\x97\x73\x6a\xc0\x3f\x0b\x1a\x08\x59\xeb\x37\xa9\xb5\x86\xe6\xaf\xb0\xfe\x20\x31\x46\x64\x3b\x6d\x9c\xa2\x91\x6f\x49\x17\xf2\x67\x1f\xcf\x56\x23\xf9\x62\x69\xaf\xfe\xf6\x35\x84\x54\x1b\x5a\x7a\xf7\x7a\xba\x11\xcd\x6b\xe2\xe6\x19\x6b\xfd\xc7\x24\x53\xfb\x92\x2a\x7c\x59\xc0\xc8\xe1\xae\xb9\x64\xa4\xb0\x36\x59\x72\x66\x97\xe6\x03\xe5\x3f\xa9\xc0\x05\x61\xd1\xe9\x76\x1b\x8d\x6d\x1b\x3d\xfc\xbf\x70\x75\x5a\xb5\xfb\x2f\x64\x92\x5a\x3d\x58\x14\x99\x71\x53\xdd\x6a\xb4\xac\x6b\x0a\x79\xdd\xae\x7b\x84\x29\xc5\x08\xd2\x8c\xc9\x5d\xdd\xc3\x6e\xa7\x2d\xfe\xc5\x9a\xd3\xa8\x58\x8f\xd8\x2d\x50\x8a\x5e\xa1\xda\x71\x86\xd4\x28\xb4\xae\x80\x6b\xd7\x05\xfb\x4c\x7b\x24\xb2\x0d\xaa\x80\xca\xee\xb2\x7d\x0b\x37\xa9\x4a\x5a\x86\xd5\xd1\x8a\x11\x01\xe0\x6d\xcb\x4e\x95\xa8\xb8\x72\x42\x87\xf2\x79\xe2\xc3\xa9\x0b\xac\x2c\x53\xfe\xcd\x86\xf0\x05\x23\x5f\xf8\x81\xe6\xe8\xad\xbe\xc7\x16\x4a\x40\xa3\x42\x95\x9f\x03\xbb\xc4\x85\x5c\x0a\x9d\x72\x5d\xc8\x1d\xb4\x01\x9a\xb5\xd3\x35\xa5\xc8\x78\x26\xf3\xfd\x7c\x36\xa4\x77\x53\x92\xc9\x1c\xbc\x18\xf1\xad\x95\x91\xfb\x4e\xac\x05\xa6\x5d\x3a\x61\xb5\x87\x52\x49\x68\x9f\x5c\x0d\xec\xbf\xc2\x92\xa5\x60\x1e\xe3\x6d\xb6\xff\x92\xd5\xb3\x85\xb6\x6b\x60\x7a\xd7\xf6\xf8\xac\xa6\x5e\x59\x7d\xde\x8c\x05\xf6\xce\xbc\xe7\x3c\x57\xff\x32\xfe\x35\x66\xb6\x70\x9a\x86\xf5\x0d\xb6\xb6\xbf\xe0\xc3\xb4\x78\x83\x7f\xbe\x77\x53\x77\x54\x48\x34\xf4\x92\x76\x36\xec\x28\x77\xde\xda\x52\xd4\xc3\xa6\x34\x87\xf6\x8c\xc3\x99\xda\x80\xbb\x7b\x09\x3e\x46\x22\xd5\x74\x4c\x28\x51\x19\xd7\x09\x47\x1d\x03\x73\xe4\x01\x99\x66\x66\x8a\x50\xb7\x98\xa1\x57\x4a\xff\x23\x88\x0d\xda\xdc\x2d\x19\x5a\x33\x4e\x22\xd9\xbc\x54\xc8\x71\x88\xaa\xb0\x58\x1d\x30\x93\x92\x21\xc1\xa1\xa9\x2f\x36\xcf\x3f\x52\x1c\x48\x68\x69\xc8\x59\x84\x2e\xc6\x66\x7e\x8a\xce\x2a\xbc\x68\x32\xf6\x3c\xcf\x28\x5a\x95\xd4\x83\x31\x61\x83\x12\x81\xe3\xea\x98\x96\x06\x7a\x1b\x4d\x57\xd0\xec\x03\x94\x92\x01\xcf\x2f\xc6\x90\xac\xc3\x06\xf0\x8d\xad\xcb\xc8\xc7\xc7\x09\x10\x87\x4e\x52\xbe\x18\x44\xb8\xd7\x25\x21\x2a\x6d\x66\x2b\x21\x0e\x1c\x23\x17\x0f\xe5\x5f\x0b\x82\x35\xb8\xd6\x65\x12\xe5\xa7\xb2\x1c\x8e\x9d\x3e\x41\x55\x0a\xda\x75\x4a\x97\x13\xa6\x7e\x6a\x18\xc5\x55\x13\xe8\x3f\xab\x0a\x47\x30\x4e\xfd\xfc\x72\x2a\xf2\x1e\xa6\xf1\x23\xb8\x4a\x22\x3d\xd9\x5e\x45\x2f\x32\xf9\xc3\x70\x7c\x3d\xc1\x42\xe3\xda\xe6\x16\x9a\x0c\x01\x40\xb1\x6c\x75\x0c\xff\xdd\xcd\x70\x93\x41\x77\x77\x3b\x4d\xfa\xef\x2e\xa6\x98\xf4\xdf\x08\x5b\x8f\xbd\x73\x61\xff\xe9\xdc\x5c\x17\x06\x6d\x17\xec\xfb\x49\xc2\x12\x8e\x40\x3a\x97\x35\xb4\xa3\x7e\xaf\x4e\xe2\x07\x53\xc5\xd8\x0d\xa7\xda\xb3\x77\x3d\xe4\x41\x66\x0e\xae\x31\x7d\xa1\x0e\x6d\x02\xe9\xe5\xcb\xb9\x9e\xd9\xc3\xe2\xcb\xc1\xb4\x03\xd7\x0f\xbe\xdb\xeb\xcf\x81\xe0\xed\x37\x05\xe4\x76\xb0\xbd\x06\xa1\xfa\x0d\x23\x0b\xc4\xee\x1b\xd2\x15\x8c\x09\x20\x0f\xac\x9f\xa6\xfe\xa6\xff\x56\x9d\xfb\x1b\x4c\xf3\x62\x3f\xfa\xad\x31\x5b\x33\x4c\xfd\x77\x5c\xe7\x27\xcd\xf9\x2f\x94\x40\x3a\x50\xcc\x3c\x7b\x56\x08\x89\x3b\x7c\xe5\x1e\x54\x93\x9f\x33\xf3\x3d\x5c\xba\xa8\x14\x47\x1b\xf0\x3d\x67\x67\xd7\xff\xaa\x5d\x5f\x9b\xf3\xd3\xf8\xc8\x23\x06\x3e\xd8\xa0\x6f\x5d\x7e\x87\x5a\xf5\xfd\x9b\x4c\x23\x96\xfc\xd3\xd3\xd2\x7b\xbb\xf6\x51\x04\x13\x88\xcf\xb6\x98\xb7\x08\xdb\x81\xd2\xb9\xd3\x01\xf5\x1b\x09\x7a\x04\x5b\xa0\x40\x58\xe0\x71\xbf\xd3\x6e\x37\xe3\x67\x58\xa7\xf6\x87\xfc\x52\x70\xff\xa0\xb8\x96\xfd\xfe\x88\xc3\x97\x17\x7d\x04\x57\x45\xc9\x59\x5b\x3b\x10\x72\x51\x7d\x2c\xfc\x89\x5f\x23\x1c\xaa\x10\x47\x0e\x9e\x1e\x28\xd4\x77\x51\x76\x0e\x64\x3d\x6c\xcd\x15\xe8\x74\xfe\x38\x58\x25\xbc\x7b\xde\xb7\xaf\xe1\x33\xd4\xef\xcb\x8b\x80\xd6\x6d\xc6\x69\xdb\x69\xc1\x21\x63\x5f\x43\xfc\xd5\xfc\x31\x8a\x0e\xaf\x4d\x71\xb4\x79\x84\x78\xdd\x75\xa2\xfa\xbc\x24\xed\xd0\x48\xd5\xc7\x93\xf7\xf1\x81\xfd\x3f\x82\xeb\xe5\xf4\x14\xdd\x10\xb2\x29\x38\x35\xd4\x4e\xd3\x85\x8c\xe0\x35\x0e\x78\x9e\x05\xdc\x25\xb9\xb7\x25\x17\x62\xb9\x2b\x21\xf1\x64\xa6\x0f\xdc\x8c\x46\x49\x8f\xb0\x70\xa1\xd4\x41\xac\x23\x5a\x46\x48\x88\x10\xfe\x95\x83\x6f\xdf\x36\x75\xd0\xf9\x18\x01\x5f\x2e\xaf\x32\xd1\xfe\x42\x07\xe7\x8f\xc3\xe5\xad\x9d\xde\xe9\x7b\x4e\xe6\x1d\xd7\x9d\x90\x64\x1d\xd4\xc0\x31\xb6\x73\x6f\x02\x37\xe6\x6f\xdb\x3d\xac\x11\xb0\x43\x97\x2f\x53\x17\x57\x30\x81\xad\x64\xa5\x75\x1e\x5d\x0c\x11\x35\x8c\x73\xd2\x48\x13\x77\x61\xbc\xbc\x49\x95\x33\x93\xeb\x43\xcd\x23\x4d\x0b\x2c\x71\xa7\x33\xc5\x3e\x86\x21\x3f\x7b\xd8\x2a\x53\x47\x5c\x51\x24\x48\x91\xd7\x7f\x94\xaa\xb1\xfe\xe2\x6a\x88\xf3\xa8\x41\x7e\x9e\xd5\x65\xeb\xea\x48\xb5\x2e\xcd\x01\x06\xc0\xf1\xca\x34\x21\x4c\x3a\xff\x30\x65\xa7\x18\x44\x5b\xde\x87\x26\x11\x20\xce\x27\x83\x76\x44\xa6\x75\x65\xaa\x8c\x9e\x49\x22\x4d\xd6\xc9\xf4\xfe\xac\xb4\x3c\xb4\xb5\xe9\xba\xae\xe3\x92\x48\x28\xea\x92\x46\xd3\x83\x70\x37\xeb\xfd\xeb\x09\xf7\xdf\x99\x2f\x7d\xaf\xd0\x73\xe5\x1b\x1d\x4e\x7b\xce\x80\x97\x04\x42\x42\xfd\x9b\x73\xc4\xe6\x55\xc2\x46\xb4\x05\x7a\x6f\xa3\x02\x5e\xea\x5f\x4b\x84\xe4\x6c\x77\xd4\xc9\x7e\x36\x3b\x4b\x20\xf8\x38\x12\xd8\x61\x5d\xbd\x11\x2d\x30\xed\x02\x55\x57\xfd\x85\xbd\x65\xe0\xf7\x21\x29\x8b\x51\x02\x99\x35\xff\x5f\x12\x2d\x59\xcc\x8f\x20\xce\xfe\x7b\x29\x46\xfa\x8d\xf0\xdf\xb7\x5c\xf8\x97\xb4\x3f\x44\xda\xeb\x95\x3c\x48\xd4\xdf\x59\xb6\xea\x39\xea\x82\xd5\x0c\x99\x14\x93\xbd\xde\x21\x41\xa4\xb4\xd5\x8f\xcc\xd6\xf7\x3a\x1d\x54\x91\x6a\x8c\xe2\x1c\xcb\x5b\x1b\x3d\xd2\x32\x22\x2a\x01\x5e\xd1\x54\xae\x64\xa7\xc9\x3b\xd7\xd1\xac\x6b\x0c\x2e\x6f\x9d\x4d\x43\xd6\x9b\x30\xfb\xf0\xe3\x49\xf5\x42\xd8\x98\x6b\x01\xd5\x1c\x4c\xfa\xc5\x35\x49\x34\xdc\xc5\xed\x3a\x4a\x98\x0c\x2a\x78\x9f\x7a\xe7\x99\xc0\x6b\x62\xea\x3e\x68\x41\x43\xe3\x70\x19\x24\x98\xfa\x69\xeb\x5e\xa4\xf4\x5f\xe4\x96\xe6\x4f\x36\x24\x47\x4b\x9d\x1b\xa2\xb7\x0b\x52\x96\x48\xcf\x9e\x0d\x2f\x59\x5b\x73\x07\x80\x7b\x9b\xf1\xfd\xfb\xfc\xab\x66\xb3\xe2\x27\x7b\xbf\x9a\xe7\xe7\x96\xfa\xe7\x4e\x08\x0b\xe5\x9b\xb0\x84\x99\xe7\xbc\x14\x5d\xb7\xea\x0e\xb0\x13\xa4\xa1\x80\x02\xbc\x76\xd6\x07\x63\xc6\x91\x71\x67\x85\x9e\x7b\x5f\x29\xc4\x40\x8e\x15\x8d\x8f\x61\x93\x5c\xda\x67\x82\x5b\xbb\xbe\xf2\xed\x51\x05\xe2\xb5\xb6\xd0\xc4\xa1\x98\x91\x07\xad\xa9\xb8\xbe\x52\x51\xff\x3a\x49\xb1\x49\x41\x4b\x36\xb3\xae\xea\x86\x52\x83\x5e\x08\xdb\x58\xe4\x74\xc9\x2d\x16\xf5\x7b\xeb\xe1\x2e\xd9\x5c\x51\x3d\x62\x3a\x1a\xa6\xe8\xa4\x37\x35\xe4\x61\x7d\x20\x83\x7d\xab\x85\x8c\x25\x3f\x95\xde\x9e\xba\xc6\x9b\xdc\xf3\x12\x58\x2e\x61\x16\xf0\xf5\xda\xc7\xab\x2f\x2e\xaa\xce\xe3\x18\xe2\x68\x99\xf2\xf8\xf5\xac\x53\x90\x69\x9b\xf7\x1c\xe9\x9a\x86\x3f\xe5\x2f\xf2\x97\x27\x1f\x8b\x7f\x74\x9b\x29\x7d\x8b\x24\xaf\x8c\xec\x05\xd3\xdd\xaa\x22\xd7\xcb\xe4\x8d\x94\xc8\x1b\x2b\x8f\xb7\xb7\x0a\xf2\x48\x05\xe4\x4a\xf5\x63\xdb\x33\x2c\x2e\x90\x14\xb5\x0c\x2e\xd3\xfb\xaa\x47\xfb\xe3\x3c\xde\xb1\xbe\xaa\x69\xfc\xa1\x1c\x09\x91\x88\xf9\x3d\xf5\x08\xf6\x57\xeb\x8a\x9a\xdb\xc2\xa5\x8b\xd0\x14\x36\x1d\x63\x8c\xbc\x06\xe2\xaf\xb5\xb0\x76\xe1\xc6\xea\x1d\x1e\xb4\x70\x11\x05\x0e\x2b\x4a\x3d\x5a\xa8\xb4\xb6\x58\x07\x2d\xd8\x41\x8b\x56\xb0\xfc\x54\x96\xc7\xf8\x03\x3d\x13\x66\x6c\x3e\xee\x20\x74\x46\xd2\x3d\xbc\x1f\xf8\x1d\x83\xb3\xb3\x0a\xda\xe1\x4f\x93\x1c\xb5\x92\xb3\x78\xb8\x43\x01\xf8\x18\x05\x2e\x8e\x87\xf3\x67\xd7\xc0\xa9\x2c\xb9\x1a\x3b\x7e\xd0\xeb\xb8\xc7\xcc\x0e\xc6\xa0\x3c\xb8\x01\x0d\x59\x5d\xc3\xbc\x78\xe3\x1f\x18\x32\x75\xc2\xbc\x29\xfc\x13\xe1\xdf\x37\x82\x5c\x44\x53\xe1\x16\x94\x7e\x78\x47\x5c\x80\x92\xdd\x47\x0f\x6e\xdb\x1a\x63\x9f\x08\xfb\x94\xc6\x89\x9f\x10\xea\xcb\x40\xe9\x0e\xf3\xca\x06\xc4\xdd\x5d\x43\x74\xb0\x8e\xd2\xd5\x6f\x2e\x30\x24\x08\x81\xe8\xb7\x0e\xf3\xa5\x0e\xda\x81\x27\x30\x74\x42\xe1\xd7\x9f\xbb\x11\x2f\x17\xee\x83\xae\xf2\xb8\x2a\x54\xbb\xb5\x6f\x6a\x97\x96\xc4\x3f\xb0\xf4\xef\x07\xbd\xcf\x45\xcd\x84\xc5\x1c\x44\xb3\x46\xe1\x1b\xde\xc5\x10\x0b\x70\x14\xee\x36\x4a\x5d\x53\x83\xc1\xb2\xbd\xd9\x6d\x48\x52\xd0\x5b\x69\x4e\xbb\x0d\x99\x51\x71\x35\x5c\xab\xff\x9a\xb0\xc5\x1c\xa9\x86\xe7\x7f\x1d\xd6\xd7\x84\x3f\x9d\x4c\xa7\xb1\x9c\x7a\xff\xbe\xda\xe5\x73\xc6\xba\xa3\x3a\x7c\x8b\xe5\x4a\x75\x38\xb4\xfd\x73\x7d\x15\x3f\xa6\xcb\x8b\x15\x56\x4c\xa3\x31\x39\xb8\x93\x53\x6c\x72\x74\xaa\x45\x4f\xd2\x77\xd5\x53\x05\x0b\xc5\xaf\x77\x29\xdc\xd1\x05\x3a\x35\x7f\x9e\xaa\x65\x7a\x43\x82\xd4\x80\xa0\xad\xd2\x14\x75\x84\xbb\x55\xbf\xcd\x1e\xb0\xaf\x7d\xcd\xa2\xca\x28\xc5\x16\x02\xdf\x12\x78\xe2\xeb\xfe\x09\x92\x6c\x1e\x82\x31\xad\xcd\xf9\x1c\x36\xcb\x9d\xa7\xec\x18\x6e\xcf\x1d\xb3\x3f\x9d\x28\x25\x3c\x99\x38\x15\x3e\xe9\x6b\x66\xe6\x5d\x3d\x2d\x6d\xcd\x87\xcf\x77\x92\x88\x37\x4c\x6f\x9c\xaf\xc9\x12\x5f\xab\x1f\x26\x29\xdc\x25\x1f\x7e\x46\xcf\x69\x55\xa2\x66\x8f\xef\x6b\xb9\x58\x5e\xbc\x44\x5c\xc6\xf4\x74\xaf\x24\xf9\x8a\xf9\x57\x71\xfb\x60\x57\xd6\xd7\xee\xfc\xb1\xf0\x05\xd5\x61\x05\x13\x80\xfc\x20\x09\xcc\xf1\x64\xe9\x7a\xba\xb7\x8a\xa8\x7f\x3d\x2e\xd6\x8c\xa8\x10\x03\xd1\x2a\xbe\x0d\x39\x7a\x98\x60\xf0\x74\x52\x86\xe6\xc3\xbd\x0f\xff\x3f\x00\x00\xff\xff\x28\x82\x8d\xc7\xfa\xcf\x00\x00" + func flowcallbackschedulerCdcBytes() ([]byte, error) { return bindataRead( _flowcallbackschedulerCdc, @@ -120,6 +123,7 @@ func flowcallbackschedulerCdc() (*asset, error) { } info := bindataFileInfo{name: "FlowCallbackScheduler.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x22, 0xe9, 0xc0, 0xb, 0xef, 0x4e, 0x35, 0x6e, 0xaa, 0x99, 0x66, 0x3a, 0x68, 0x3d, 0x39, 0x5a, 0x93, 0x98, 0x8c, 0xea, 0x5a, 0xab, 0xf6, 0xab, 0xb6, 0xfe, 0xef, 0x75, 0xef, 0xa6, 0x8, 0xb3}} return a, nil } diff --git a/lib/go/templates/internal/assets/assets.go b/lib/go/templates/internal/assets/assets.go index 661c3416..ee3264b3 100644 --- a/lib/go/templates/internal/assets/assets.go +++ b/lib/go/templates/internal/assets/assets.go @@ -22,6 +22,9 @@ // accounts/add_key.cdc (1.407kB) // accounts/create_new_account.cdc (1.248kB) // accounts/revoke_key.cdc (364B) +// callbackScheduler/admin/execute_callback.cdc (552B) +// callbackScheduler/admin/process_callback.cdc (588B) +// callbackScheduler/admin/set_config_details.cdc (4.359kB) // callbackScheduler/cancel_callback.cdc (548B) // callbackScheduler/schedule_callback.cdc (2.87kB) // callbackScheduler/scripts/get_config.cdc (168B) @@ -814,7 +817,7 @@ func accountsRevoke_keyCdc() (*asset, error) { return a, nil } -var _callbackschedulerAdminExecute_callbackCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x4f\x6b\xe3\x30\x10\xc5\xef\xfe\x14\x0f\x1f\x82\x7d\x71\x2e\xcb\x1e\xc2\xee\x86\x6d\xda\x42\x0e\x85\x42\xda\xdc\xc7\xd2\xb4\x16\x55\x24\x33\x1e\x37\x2d\x25\xdf\xbd\xc4\x7f\x04\x05\xcf\x49\x62\xde\xfb\xcd\xcc\x73\xa7\x36\x8a\x22\xbf\xf7\xf1\xbc\x23\xef\x6b\x32\x6f\x07\xd3\xb0\xed\x3d\x4b\x9e\x65\xeb\x35\xee\x3e\xd8\xf4\xca\x20\x74\x53\xc3\xc2\x4c\x52\xd4\x9f\xd0\x86\xb1\x68\x87\x89\x41\x85\x8c\x56\x57\xcc\x53\xe3\x3a\x9c\x9d\xf7\xa8\x79\xf0\xb3\x4d\xee\xe3\x03\x28\xd8\xe1\x9d\xc8\xb3\x94\xc7\xf1\xb3\xd8\x09\xf6\xb7\x55\xa6\x42\xa1\x23\xa3\x2e\x86\xc2\xd9\x0d\x9e\xf7\x41\x7f\xff\x2a\xf1\x95\x01\x40\x2b\xdc\x92\x70\xd1\xb1\xbc\x3b\xc3\xff\x8d\x89\x7d\xd0\x0d\xa8\xd7\xa6\xb8\x89\x22\xf1\x7c\x24\xdf\x73\x89\xd5\xd4\x9b\x9d\xd7\xf2\xac\xe9\x54\xc1\x5f\xfc\xa4\x54\x9d\x46\xa1\x57\xae\xea\x81\xf3\x67\xb5\x78\x7b\x75\x68\x48\xd8\xa6\xff\xbf\xe2\x45\xe2\x69\xb3\x1c\x54\x95\xa6\x1d\x46\xf6\x23\x69\x53\xa6\x7d\xae\xb5\xdd\xa2\xa5\xe0\x4c\x91\xef\x62\xef\x2d\x42\x54\x8c\x0b\x2c\x23\xf3\x32\x4b\xfe\x44\xaf\xa6\x2c\x67\xf5\x90\x9c\xb3\xe3\xa4\x4b\x76\xf9\x0e\x00\x00\xff\xff\x16\x28\x1e\xa4\x0d\x02\x00\x00" +var _callbackschedulerAdminExecute_callbackCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x4b\xfb\x40\x10\xc5\xef\xf9\x14\x8f\x1c\x4a\x72\x49\x2f\x7f\xfe\x87\xa2\x16\xad\x0a\x3d\x08\x42\xb5\xf7\xc9\xee\x68\x16\xb7\xbb\x61\x32\xb1\x8a\xf4\xbb\x4b\xd3\x64\x41\xc8\x9c\x76\x99\xf7\x7e\x33\xf3\xdc\xa1\x8d\xa2\xc8\x1f\x7d\x3c\x6e\xc8\xfb\x9a\xcc\xc7\xce\x34\x6c\x7b\xcf\x92\x67\xd9\x72\x89\x87\x2f\x36\xbd\x32\x08\xdd\xd8\xb0\x30\xa3\x14\xf5\x37\xb4\x61\xcc\xda\x61\x62\x50\x21\xa3\xd5\x19\xf3\xd2\xb8\x0e\x47\xe7\x3d\x6a\x1e\xfc\x6c\x93\x7b\xff\x04\x0a\x76\x78\x27\xf2\x24\xe5\xcb\xf8\x49\xec\x04\xdb\xfb\x2a\x53\xa1\xd0\x91\x51\x17\x43\xe1\xec\x0a\xaf\xdb\xa0\xff\xff\x95\xf8\xc9\x00\xa0\x15\x6e\x49\xb8\xe8\x58\x3e\x9d\xe1\x5b\x63\x62\x1f\x74\x05\xea\xb5\x29\xee\xa2\x48\x3c\xee\xc9\xf7\x5c\x62\x31\xf6\x26\xe7\xb9\x3c\x6b\x3a\x55\x70\x8d\xbf\x94\xaa\xd3\x28\xf4\xce\x55\x3d\x70\xae\x06\xe6\xec\xfd\xd5\x98\x5c\x89\xc5\x7c\x7f\xd7\x90\xb0\x4d\xff\x9b\xe2\x4d\xe2\x61\x35\x1f\xe6\x34\xf6\x99\xb4\x29\xd3\xaa\xe7\x5a\xaf\xd1\x52\x70\xa6\xc8\x37\xb1\xf7\x16\x21\x2a\x2e\xbb\xcd\x93\xf2\x32\x4b\xfe\x74\x66\x35\xc6\x3c\xa9\x87\x50\x9d\xbd\x4c\x3a\x65\xa7\xdf\x00\x00\x00\xff\xff\xea\xaa\x04\xf7\x28\x02\x00\x00" func callbackschedulerAdminExecute_callbackCdcBytes() ([]byte, error) { return bindataRead( @@ -830,11 +833,11 @@ func callbackschedulerAdminExecute_callbackCdc() (*asset, error) { } info := bindataFileInfo{name: "callbackScheduler/admin/execute_callback.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x49, 0x68, 0x4, 0x54, 0x31, 0x97, 0x7c, 0x15, 0x8a, 0xc7, 0xa9, 0x22, 0xf7, 0x0, 0x5f, 0x79, 0xfe, 0x82, 0x3d, 0x21, 0xd6, 0xb6, 0x46, 0x67, 0x48, 0x43, 0xc8, 0x1a, 0xe3, 0xbd, 0xd9, 0xa0}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x82, 0xe2, 0xc7, 0xc, 0xac, 0xf2, 0x1d, 0x2d, 0x93, 0x39, 0x4, 0x19, 0xb9, 0x10, 0x14, 0xcf, 0xfb, 0x39, 0x3c, 0x12, 0x6d, 0xcd, 0xa1, 0x74, 0xf1, 0xb4, 0xfd, 0x70, 0xc4, 0xf, 0x5a, 0xd4}} return a, nil } -var _callbackschedulerAdminProcess_callbackCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x8b\xdb\x30\x10\x85\xef\xfe\x15\x0f\x1f\x82\x7d\x51\xee\xa1\x6d\x48\x03\xbd\x15\x02\x29\xb9\x8f\xa5\x49\x65\x56\x91\xcc\x68\x9c\xec\xb2\xe4\xbf\x2f\x8e\x8d\x60\xc1\x73\xb3\x35\xdf\x37\x8f\xd7\xdf\x86\x24\x8a\xfa\x4f\x48\x8f\x23\x85\xd0\x91\x7d\x3b\x5b\xcf\x6e\x0c\x2c\x75\x55\x6d\xb7\x38\x49\xb2\x9c\x33\xf2\xf2\xdb\xc1\x2e\x8b\x19\xdd\x07\xd4\x33\x56\x69\xd8\x14\x55\xc8\xaa\x99\x2c\xff\x7c\x9f\xf1\xe8\x43\x40\xc7\x2f\x01\xbb\x42\x5f\xfe\x82\xa2\x03\x85\xb0\x7a\x44\x3d\x29\xb2\x4f\x63\x70\x13\x3c\xd9\xf8\x9d\xed\xa8\xec\x8a\x71\x98\x43\xb2\x33\x38\x44\xf0\x9d\xa3\xe2\x9a\x04\x4c\xd6\x97\x25\xbe\xf5\xaa\xec\x4c\xa5\x42\x31\x93\xd5\x3e\x45\x7c\x56\x00\x30\x08\x0f\x24\xdc\x64\x96\x7b\x6f\xf9\x60\x6d\x1a\xa3\xee\x40\xa3\xfa\xe6\x77\x12\x49\x8f\x0b\x85\x91\x5b\x6c\x96\xb7\x76\x21\xa7\x09\xac\x25\xb9\xe0\x27\xbe\x5b\x4c\xd6\x24\xf4\x9f\x4d\xf7\xf2\xfc\xd8\xac\xd6\x65\xce\x9e\x84\x5d\xf9\xfe\xd5\x5c\x25\xdd\x76\xeb\xdd\x9a\x72\xed\x3c\xbb\x4f\xa4\xbe\x2d\x79\xa6\xd9\xef\x31\x50\xec\x6d\x53\x1f\x5f\xcd\xc5\xa4\x98\x03\xac\x2b\xeb\xb6\x2a\x7c\xb1\x9b\xa5\xd7\x66\x76\x3f\xab\xe7\x57\x00\x00\x00\xff\xff\x1b\xce\x54\x14\x31\x02\x00\x00" +var _callbackschedulerAdminProcess_callbackCdc = "\x1f\x8b\x08\x00\x00\x00\x00\x00\x00\xff\x6c\x90\x41\x6b\xfb\x30\x0c\xc5\xef\xf9\x14\x8f\x1c\x4a\x72\x49\xef\xe5\xff\x5f\xe9\x0a\xbb\x0d\x0a\x1d\xbd\x2b\xb6\x3a\x87\xb9\x76\x90\x95\x76\x63\xf4\xbb\x8f\xa4\x99\x61\x10\xdd\x6c\xe9\xfd\xf4\xf4\xba\x4b\x1f\x45\x51\xbe\xf8\x78\xdb\x93\xf7\x2d\x99\x8f\xa3\x71\x6c\x07\xcf\x52\x16\xc5\x7a\x8d\x83\x44\xc3\x29\x21\xcd\xdf\x16\x66\x1e\x4c\x68\xbf\xa0\x8e\xb1\xa8\x86\x89\x41\x85\x8c\x36\x23\xe5\xcd\x75\x09\xb7\xce\x7b\xb4\x3c\x01\xd8\x66\xf5\xe9\x15\x14\x2c\xc8\xfb\xc5\x25\xea\x48\x91\x5c\x1c\xbc\x1d\xc5\x23\x8d\x3f\xd9\x0c\xca\x36\x13\xfb\x87\x49\xb6\x0d\x76\x01\x7c\xe5\xa0\x38\x47\x01\x93\x71\x79\x88\x2f\x9d\x2a\xdb\xa6\x50\xa1\x90\xc8\x68\x17\x03\xbe\x0b\x00\xe8\x85\x7b\x12\xae\x12\xcb\xb5\x33\xbc\x33\x26\x0e\x41\x37\xa0\x41\x5d\xf5\x1c\x45\xe2\xed\x44\x7e\xe0\x1a\xab\xb9\x57\xcf\xca\xb1\x3c\x6b\x76\x2e\xf8\x8f\xbf\x94\x26\x69\x14\x7a\xe7\xa6\x9d\x38\xff\x26\xe6\x62\x64\xcd\x9c\x75\x8d\xd5\x72\xff\xe8\x48\xd8\xe6\xf7\x53\x75\x96\x78\xd9\x2c\xe7\xff\xbb\xf6\x40\xea\xea\x6c\x75\xac\xed\x16\x3d\x85\xce\x54\xe5\x7e\x0a\x35\x44\xc5\xc3\xdb\x32\xa9\xac\x8b\xac\xcf\x67\x36\x73\xe4\xd5\x83\x7d\x2f\xee\x3f\x01\x00\x00\xff\xff\x82\x2b\x65\x5e\x4c\x02\x00\x00" func callbackschedulerAdminProcess_callbackCdcBytes() ([]byte, error) { return bindataRead( @@ -850,7 +853,7 @@ func callbackschedulerAdminProcess_callbackCdc() (*asset, error) { } info := bindataFileInfo{name: "callbackScheduler/admin/process_callback.cdc", size: 0, mode: os.FileMode(0), modTime: time.Unix(0, 0)} - a := &asset{bytes: bytes, info: info, digest: [32]uint8{0xcc, 0xb9, 0x36, 0x84, 0x16, 0xc, 0x14, 0x6f, 0x94, 0x11, 0x7, 0xa1, 0xd9, 0xda, 0xd7, 0x31, 0xee, 0x9d, 0x5c, 0x7a, 0xea, 0x6d, 0x9, 0xb7, 0x37, 0x2b, 0xa0, 0x3e, 0x1d, 0xa4, 0xf5, 0x51}} + a := &asset{bytes: bytes, info: info, digest: [32]uint8{0x77, 0xde, 0xb8, 0xf5, 0x39, 0xb4, 0xd6, 0xc3, 0xfd, 0xa5, 0x45, 0x4, 0xca, 0x36, 0xe4, 0x18, 0xa3, 0x38, 0x3f, 0x6e, 0x8c, 0xfb, 0xb, 0x42, 0x47, 0x44, 0xf, 0xdd, 0xc2, 0x94, 0xe4, 0xf0}} return a, nil } diff --git a/tests/CallbackScheduler_test.cdc b/tests/CallbackScheduler_test.cdc index 82f32805..b2878310 100644 --- a/tests/CallbackScheduler_test.cdc +++ b/tests/CallbackScheduler_test.cdc @@ -333,6 +333,7 @@ access(all) fun testCallbackExecution() { var scheduledIDs = TestFlowCallbackHandler.scheduledCallbacks.keys + log("process 1") // Simulate FVM process - should not yet process since timestamp is in the future processCallbacks() @@ -348,6 +349,7 @@ access(all) fun testCallbackExecution() { Test.moveTime(by: Fix64(1.0)) } + log("process 2") // Simulate FVM process - should process since timestamp is in the past processCallbacks() @@ -433,6 +435,7 @@ access(all) fun testCallbackExecution() { Test.moveTime(by: Fix64(5.0)) // Process the two remaining callbacks + log("process 3") processCallbacks() // Check that the failed callback is marked as Failed @@ -444,27 +447,6 @@ access(all) fun testCallbackExecution() { executeCallback(id: UInt64(6), failWithErr: nil) } -access(all) fun testCallbackGarbageCollection() { - - // move time to after the garbage collection limit - Test.moveTime(by: Fix64(historicGarbageCollectionLimit+futureDelta*20.0)) - - Test.assert(timeAfterGarbageCollection < getTimestamp()) - - // process the callbacks to make sure the garbage collection is triggered - processCallbacks() - - // Check that the canceled callback status is unknown - var status = getStatus(id: callbackToCancel) - Test.assertEqual(statusUnknown, status) - - // Check that the failed callback status is unknown - status = getStatus(id: callbackToFail) - Test.assertEqual(statusUnknown, status) - -} - - /** --------------------------------------------------------------------------------- Callback scheduler estimate() tests --------------------------------------------------------------------------------- */ @@ -880,7 +862,7 @@ access(all) fun processCallbacks(): Test.TransactionResult { let processCallbackCode = Test.readFile("../transactions/callbackScheduler/admin/process_callback.cdc") let processTx = Test.Transaction( code: processCallbackCode, - authorizers: [], + authorizers: [serviceAccount.address], signers: [serviceAccount], arguments: [] ) @@ -893,7 +875,7 @@ access(all) fun executeCallback(id: UInt64, failWithErr: String?) { let executeCallbackCode = Test.readFile("../transactions/callbackScheduler/admin/execute_callback.cdc") let executeTx = Test.Transaction( code: executeCallbackCode, - authorizers: [], + authorizers: [serviceAccount.address], signers: [serviceAccount], arguments: [id] ) @@ -1056,11 +1038,11 @@ access(all) fun testSortedTimestampsInit() { let sortedTimestamps = FlowCallbackScheduler.SortedTimestamps() // Test that it initializes with empty timestamps - let pastTimestamps = sortedTimestamps.past(current: 100.0) + let pastTimestamps = sortedTimestamps.getBefore(current: 100.0) Test.assertEqual(0, pastTimestamps.length) // Test that check returns false for empty timestamps - Test.assertEqual(false, sortedTimestamps.check(current: 100.0)) + Test.assertEqual(false, sortedTimestamps.hasTimestampsBefore(current: 100.0)) } access(all) fun testSortedTimestampsAdd() { @@ -1106,7 +1088,7 @@ access(all) fun testSortedTimestampsAdd() { } // Verify result - let result = sortedTimestamps.past(current: 100.0) + let result = sortedTimestamps.getBefore(current: 100.0) Test.assertEqual(testCase.expectedLength, result.length) if let expectedOrder = testCase.expectedOrder { @@ -1175,7 +1157,7 @@ access(all) fun testSortedTimestampsRemove() { sortedTimestamps.remove(timestamp: testCase.timestampToRemove) // Verify result - let result = sortedTimestamps.past(current: 100.0) + let result = sortedTimestamps.getBefore(current: 100.0) Test.assertEqual(testCase.expectedLength, result.length) for i, expected in testCase.expectedRemaining { @@ -1233,7 +1215,7 @@ access(all) fun testSortedTimestampsPast() { } // Get past timestamps - let result = sortedTimestamps.past(current: testCase.current) + let result = sortedTimestamps.getBefore(current: testCase.current) // Verify result Test.assertEqual(testCase.expectedPast.length, result.length) @@ -1299,7 +1281,7 @@ access(all) fun testSortedTimestampsCheck() { } // Check result - let result = sortedTimestamps.check(current: testCase.current) + let result = sortedTimestamps.hasTimestampsBefore(current: testCase.current) Test.assertEqual(testCase.expected, result) } } @@ -1311,7 +1293,7 @@ access(all) fun testSortedTimestampsEdgeCases() { sortedTimestamps.add(timestamp: 0.1) // Just above lowPriorityScheduledTimestamp sortedTimestamps.add(timestamp: UFix64.max - 1.0) // Near max value - let allTimestamps = sortedTimestamps.past(current: UFix64.max) + let allTimestamps = sortedTimestamps.getBefore(current: UFix64.max) Test.assertEqual(2, allTimestamps.length) Test.assertEqual(0.1, allTimestamps[0]) Test.assertEqual(UFix64.max - 1.0, allTimestamps[1]) @@ -1324,7 +1306,7 @@ access(all) fun testSortedTimestampsEdgeCases() { i = i - 1 } - let sortedResult = manyTimestamps.past(current: 200.0) + let sortedResult = manyTimestamps.getBefore(current: 200.0) Test.assertEqual(100, sortedResult.length) // Verify first few are sorted correctly diff --git a/transactions/callbackScheduler/admin/execute_callback.cdc b/transactions/callbackScheduler/admin/execute_callback.cdc index f3d9798d..e15de525 100644 --- a/transactions/callbackScheduler/admin/execute_callback.cdc +++ b/transactions/callbackScheduler/admin/execute_callback.cdc @@ -4,7 +4,7 @@ import "FlowCallbackScheduler" // This will be called by the FVM and the callback will be executed by their ID. transaction(id: UInt64) { prepare(serviceAccount: auth(BorrowValue) &Account) { - let scheduler = serviceAccount.storage.borrow<&FlowCallbackScheduler.SharedScheduler>(from: FlowCallbackScheduler.schedulerStoragePath) + let scheduler = serviceAccount.storage.borrow(from: FlowCallbackScheduler.storagePath) ?? panic("Could not borrow FlowCallbackScheduler") scheduler.executeCallback(id: id) diff --git a/transactions/callbackScheduler/admin/process_callback.cdc b/transactions/callbackScheduler/admin/process_callback.cdc index 9f33d565..60e7bf08 100644 --- a/transactions/callbackScheduler/admin/process_callback.cdc +++ b/transactions/callbackScheduler/admin/process_callback.cdc @@ -5,7 +5,7 @@ import "FlowCallbackScheduler" // executed will be processed. An event for each will be emitted. transaction { prepare(serviceAccount: auth(BorrowValue) &Account) { - let scheduler = serviceAccount.storage.borrow<&FlowCallbackScheduler.SharedScheduler>(from: FlowCallbackScheduler.schedulerStoragePath) + let scheduler = serviceAccount.storage.borrow(from: FlowCallbackScheduler.storagePath) ?? panic("Could not borrow FlowCallbackScheduler") scheduler.process()