More Info
Private Name Tags
ContractCreator
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Latest 1 internal transaction
Parent Transaction Hash | Block | From | To | |||
---|---|---|---|---|---|---|
3469256 | 9 days ago | Contract Creation | 0 SOPH |
Loading...
Loading
This contract may be a proxy contract. Click on More Options and select Is this a proxy? to confirm and enable the "Read as Proxy" & "Write as Proxy" tabs.
Contract Name:
SyncSwapRangePool
Compiler Version
v0.7.6+commit.7338295f
ZkSolc Version
v1.5.7
Optimization Enabled:
Yes with Mode 3
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/external/IERC20Minimal.sol"; import "./interfaces/callback/ICLMintCallback.sol"; import "./interfaces/callback/ICLSwapCallback.sol"; import "./interfaces/callback/ICLFlashCallback.sol"; import "./interfaces/callback/ISyncSwapBaseCallback.sol"; import "./interfaces/IFeeRecipient.sol"; import "./interfaces/ISyncSwapRangePoolFactory.sol"; import "./interfaces/ISyncSwapRangePool.sol"; import "./interfaces/IPoolMaster.sol"; import "./libraries/external/LowGasSafeMath.sol"; import "./libraries/external/SafeCast.sol"; import "./libraries/external/FullMath.sol"; import "./libraries/external/FixedPoint128.sol"; import "./libraries/external/TransferHelper.sol"; import "./libraries/TickMath.sol"; import "./libraries/Tick.sol"; import "./libraries/TickBitmap.sol"; import "./libraries/Position.sol"; import "./libraries/Oracle.sol"; import "./libraries/LiquidityMath.sol"; import "./libraries/SqrtPriceMath.sol"; import "./libraries/SwapMath.sol"; contract SyncSwapRangePool is ISyncSwapRangePool { using LowGasSafeMath for uint256; using LowGasSafeMath for int256; using SafeCast for uint256; using SafeCast for int256; using Tick for mapping(int24 => Tick.Info); using TickBitmap for mapping(int16 => uint256); using Position for mapping(bytes32 => Position.Info); using Position for Position.Info; using Oracle for Oracle.Observation[65535]; /// @dev Pool type `4` for concentrated pools. uint16 public constant poolType = 4; /// @dev Protocol version 3. uint public constant poolVersion = 3; /// @inheritdoc ICLPoolConstants address public override master; /// @inheritdoc ICLPoolConstants address public override factory; /// @inheritdoc ICLPoolConstants address public override token0; /// @inheritdoc ICLPoolConstants address public override token1; /// @inheritdoc ICLPoolConstants address public override gauge; /// @inheritdoc ICLPoolConstants address public override nft; struct Slot0 { // the current price uint160 sqrtPriceX96; // the current tick int24 tick; // the most-recently updated index of the observations array uint16 observationIndex; // the current maximum number of observations that are being stored uint16 observationCardinality; // the next maximum number of observations to store, triggered in observations.write uint16 observationCardinalityNext; // whether the pool is locked bool unlocked; } /// @inheritdoc ICLPoolState Slot0 public override slot0; /// @inheritdoc ICLPoolState uint256 public override feeGrowthGlobal0X128; /// @inheritdoc ICLPoolState uint256 public override feeGrowthGlobal1X128; /// @inheritdoc ICLPoolState uint256 public override rewardGrowthGlobalX128; // accumulated gauge fees in token0/token1 units struct GaugeFees { uint128 token0; uint128 token1; } /// @inheritdoc ICLPoolState GaugeFees public override gaugeFees; /// @inheritdoc ICLPoolState uint256 public override rewardRate; /// @inheritdoc ICLPoolState uint256 public override rewardReserve; /// @inheritdoc ICLPoolState uint256 public override periodFinish; /// @inheritdoc ICLPoolState uint256 public override rollover; /// @inheritdoc ICLPoolState uint128 public override stakedLiquidity; /// @inheritdoc ICLPoolState uint32 public override lastUpdated; /// @inheritdoc ICLPoolConstants int24 public override tickSpacing; /// @inheritdoc ICLPoolState uint128 public override liquidity; /// @inheritdoc ICLPoolConstants uint128 public override maxLiquidityPerTick; /// @inheritdoc ICLPoolState mapping(int24 => Tick.Info) public override ticks; /// @inheritdoc ICLPoolState mapping(int16 => uint256) public override tickBitmap; /// @inheritdoc ICLPoolState mapping(bytes32 => Position.Info) public override positions; /// @inheritdoc ICLPoolState Oracle.Observation[65535] public override observations; /// @dev Mutually exclusive reentrancy protection into the pool to/from a method. This method also prevents entrance /// to a function before the pool is initialized. The reentrancy guard is required throughout the contract because /// we use balance checks to determine the payment status of interactions such as mint, swap and flash. modifier lock() { require(slot0.unlocked, "K"); slot0.unlocked = false; _; slot0.unlocked = true; } modifier onlyGauge() { require(msg.sender == gauge); _; } modifier onlyNFTManager() { require(msg.sender == nft); _; } /// @inheritdoc ICLPoolActions function initialize( address _factory, address _token0, address _token1, int24 _tickSpacing, uint160 _sqrtPriceX96 ) external override { require(factory == address(0)); factory = _factory; master = ISyncSwapRangePoolFactory(_factory).master(); token0 = _token0; token1 = _token1; tickSpacing = _tickSpacing; maxLiquidityPerTick = Tick.tickSpacingToMaxLiquidityPerTick(_tickSpacing); int24 tick = TickMath.getTickAtSqrtRatio(_sqrtPriceX96); (uint16 cardinality, uint16 cardinalityNext) = observations.initialize(_blockTimestamp()); slot0 = Slot0({ sqrtPriceX96: _sqrtPriceX96, tick: tick, observationIndex: 0, observationCardinality: cardinality, observationCardinalityNext: cardinalityNext, unlocked: true }); emit Initialize(_sqrtPriceX96, tick); } /* function fee() public view override returns (uint24) { return ISyncSwapRangePoolFactory(factory).getSwapFee(address(this)); } */ function getProtocolFee() public view override returns (uint24) { try ISyncSwapRangePoolFactory(factory).getProtocolFee(address(this)) returns (uint24 _protocolFee) { return _protocolFee; } catch { return 30000; // 30% } } /// @dev Common checks for valid tick inputs. function checkTicks(int24 tickLower, int24 tickUpper) private pure { require(tickLower < tickUpper, "U"); require(tickLower >= TickMath.MIN_TICK); require(tickUpper <= TickMath.MAX_TICK); } /// @dev Returns the block timestamp truncated to 32 bits, i.e. mod 2**32. This method is overridden in tests. function _blockTimestamp() private view returns (uint32) { return uint32(block.timestamp); // truncation is desired } /// @dev Get the pool's balance of token0 /// @dev This function is gas optimized to avoid a redundant extcodesize check in addition to the returndatasize /// check function balance0() private view returns (uint256) { return _getBalance(token0); } /// @dev Get the pool's balance of token1 /// @dev This function is gas optimized to avoid a redundant extcodesize check in addition to the returndatasize /// check function balance1() private view returns (uint256) { return _getBalance(token1); } function _getBalance(address _token) private view returns (uint256) { (bool success, bytes memory data) = _token.staticcall(abi.encodeWithSelector(IERC20Minimal.balanceOf.selector, address(this))); require(success && data.length >= 32); return abi.decode(data, (uint256)); } /// @inheritdoc ICLPoolDerivedState function snapshotCumulativesInside(int24 tickLower, int24 tickUpper) external view override returns (int56 tickCumulativeInside, uint160 secondsPerLiquidityInsideX128, uint32 secondsInside) { checkTicks(tickLower, tickUpper); int56 tickCumulativeLower; int56 tickCumulativeUpper; uint160 secondsPerLiquidityOutsideLowerX128; uint160 secondsPerLiquidityOutsideUpperX128; uint32 secondsOutsideLower; uint32 secondsOutsideUpper; { Tick.Info storage lower = ticks[tickLower]; Tick.Info storage upper = ticks[tickUpper]; bool initializedLower; (tickCumulativeLower, secondsPerLiquidityOutsideLowerX128, secondsOutsideLower, initializedLower) = ( lower.tickCumulativeOutside, lower.secondsPerLiquidityOutsideX128, lower.secondsOutside, lower.initialized ); require(initializedLower); bool initializedUpper; (tickCumulativeUpper, secondsPerLiquidityOutsideUpperX128, secondsOutsideUpper, initializedUpper) = ( upper.tickCumulativeOutside, upper.secondsPerLiquidityOutsideX128, upper.secondsOutside, upper.initialized ); require(initializedUpper); } Slot0 memory _slot0 = slot0; if (_slot0.tick < tickLower) { return ( tickCumulativeLower - tickCumulativeUpper, secondsPerLiquidityOutsideLowerX128 - secondsPerLiquidityOutsideUpperX128, secondsOutsideLower - secondsOutsideUpper ); } else if (_slot0.tick < tickUpper) { uint32 time = _blockTimestamp(); (int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128) = observations.observeSingle( time, 0, _slot0.tick, _slot0.observationIndex, liquidity, _slot0.observationCardinality ); return ( tickCumulative - tickCumulativeLower - tickCumulativeUpper, secondsPerLiquidityCumulativeX128 - secondsPerLiquidityOutsideLowerX128 - secondsPerLiquidityOutsideUpperX128, time - secondsOutsideLower - secondsOutsideUpper ); } else { return ( tickCumulativeUpper - tickCumulativeLower, secondsPerLiquidityOutsideUpperX128 - secondsPerLiquidityOutsideLowerX128, secondsOutsideUpper - secondsOutsideLower ); } } /// @inheritdoc ICLPoolDerivedState function observe(uint32[] calldata secondsAgos) external view override returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s) { return observations.observe( _blockTimestamp(), secondsAgos, slot0.tick, slot0.observationIndex, liquidity, slot0.observationCardinality ); } /// @inheritdoc ICLPoolActions function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external override lock { uint16 observationCardinalityNextOld = slot0.observationCardinalityNext; // for the event uint16 observationCardinalityNextNew = observations.grow(observationCardinalityNextOld, observationCardinalityNext); slot0.observationCardinalityNext = observationCardinalityNextNew; if (observationCardinalityNextOld != observationCardinalityNextNew) { emit IncreaseObservationCardinalityNext(observationCardinalityNextOld, observationCardinalityNextNew); } } struct ModifyPositionParams { // the address that owns the position address owner; // the lower and upper tick of the position int24 tickLower; int24 tickUpper; // any change in liquidity int128 liquidityDelta; } /// @dev Effect some changes to a position /// @param params the position details and the change to the position's liquidity to effect /// @return position a storage pointer referencing the position with the given owner and tick range /// @return amount0 the amount of token0 owed to the pool, negative if the pool should pay the recipient /// @return amount1 the amount of token1 owed to the pool, negative if the pool should pay the recipient function _modifyPosition(ModifyPositionParams memory params) private returns (Position.Info storage position, int256 amount0, int256 amount1) { checkTicks(params.tickLower, params.tickUpper); Slot0 memory _slot0 = slot0; // SLOAD for gas optimization position = _updatePosition(params.owner, params.tickLower, params.tickUpper, params.liquidityDelta, _slot0.tick); if (params.liquidityDelta != 0) { if (_slot0.tick < params.tickLower) { // current tick is below the passed range; liquidity can only become in range by crossing from left to // right, when we'll need _more_ token0 (it's becoming more valuable) so user must provide it amount0 = SqrtPriceMath.getAmount0Delta( TickMath.getSqrtRatioAtTick(params.tickLower), TickMath.getSqrtRatioAtTick(params.tickUpper), params.liquidityDelta ); } else if (_slot0.tick < params.tickUpper) { // current tick is inside the passed range uint128 liquidityBefore = liquidity; // SLOAD for gas optimization // write an oracle entry (slot0.observationIndex, slot0.observationCardinality) = observations.write( _slot0.observationIndex, _blockTimestamp(), _slot0.tick, liquidityBefore, _slot0.observationCardinality, _slot0.observationCardinalityNext ); amount0 = SqrtPriceMath.getAmount0Delta( _slot0.sqrtPriceX96, TickMath.getSqrtRatioAtTick(params.tickUpper), params.liquidityDelta ); amount1 = SqrtPriceMath.getAmount1Delta( TickMath.getSqrtRatioAtTick(params.tickLower), _slot0.sqrtPriceX96, params.liquidityDelta ); liquidity = LiquidityMath.addDelta(liquidityBefore, params.liquidityDelta); } else { // current tick is above the passed range; liquidity can only become in range by crossing from right to // left, when we'll need _more_ token1 (it's becoming more valuable) so user must provide it amount1 = SqrtPriceMath.getAmount1Delta( TickMath.getSqrtRatioAtTick(params.tickLower), TickMath.getSqrtRatioAtTick(params.tickUpper), params.liquidityDelta ); } } } /// @dev Gets and updates a position with the given liquidity delta /// @param owner the owner of the position /// @param tickLower the lower tick of the position's tick range /// @param tickUpper the upper tick of the position's tick range /// @param tick the current tick, passed to avoid sloads function _updatePosition(address owner, int24 tickLower, int24 tickUpper, int128 liquidityDelta, int24 tick) private returns (Position.Info storage position) { position = positions.get(owner, tickLower, tickUpper); uint256 _feeGrowthGlobal0X128 = feeGrowthGlobal0X128; // SLOAD for gas optimization uint256 _feeGrowthGlobal1X128 = feeGrowthGlobal1X128; // SLOAD for gas optimization uint256 _rewardGrowthGlobalX128 = rewardGrowthGlobalX128; // SLOAD for gas optimization // if we need to update the ticks, do it bool flippedLower; bool flippedUpper; if (liquidityDelta != 0) { uint32 time = _blockTimestamp(); (int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128) = observations.observeSingle( time, 0, slot0.tick, slot0.observationIndex, liquidity, slot0.observationCardinality ); flippedLower = ticks.update( tickLower, tick, liquidityDelta, _feeGrowthGlobal0X128, _feeGrowthGlobal1X128, _rewardGrowthGlobalX128, secondsPerLiquidityCumulativeX128, tickCumulative, time, false, maxLiquidityPerTick ); flippedUpper = ticks.update( tickUpper, tick, liquidityDelta, _feeGrowthGlobal0X128, _feeGrowthGlobal1X128, _rewardGrowthGlobalX128, secondsPerLiquidityCumulativeX128, tickCumulative, time, true, maxLiquidityPerTick ); if (flippedLower) { tickBitmap.flipTick(tickLower, tickSpacing); } if (flippedUpper) { tickBitmap.flipTick(tickUpper, tickSpacing); } } (uint256 feeGrowthInside0X128, uint256 feeGrowthInside1X128) = ticks.getFeeGrowthInside(tickLower, tickUpper, tick, _feeGrowthGlobal0X128, _feeGrowthGlobal1X128); bool staked = (owner == gauge) && (owner != address(0)); position.update(liquidityDelta, feeGrowthInside0X128, feeGrowthInside1X128, staked); // clear any tick data that is no longer needed if (liquidityDelta < 0) { if (flippedLower) { ticks.clear(tickLower); } if (flippedUpper) { ticks.clear(tickUpper); } } } /// @inheritdoc ICLPoolActions function mint(address recipient, int24 tickLower, int24 tickUpper, uint128 amount, bytes calldata data) external override lock returns (uint256 amount0, uint256 amount1) { require(amount != 0); (, int256 amount0Int, int256 amount1Int) = _modifyPosition( ModifyPositionParams({ owner: recipient, tickLower: tickLower, tickUpper: tickUpper, liquidityDelta: int256(amount).toInt128() }) ); amount0 = uint256(amount0Int); amount1 = uint256(amount1Int); uint256 balance0Before; uint256 balance1Before; if (amount0 != 0) { balance0Before = balance0(); } if (amount1 != 0) { balance1Before = balance1(); } ICLMintCallback(msg.sender).uniswapV3MintCallback(amount0, amount1, data); if (amount0 != 0) { require(balance0Before.add(amount0) <= balance0(), "0"); } if (amount1 != 0) { require(balance1Before.add(amount1) <= balance1(), "1"); } emit Mint(msg.sender, recipient, tickLower, tickUpper, amount, amount0, amount1); } /// @inheritdoc ICLPoolActions function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested ) external override returns (uint128 amount0, uint128 amount1) { (amount0, amount1) = _collect({ recipient: recipient, tickLower: tickLower, tickUpper: tickUpper, amount0Requested: amount0Requested, amount1Requested: amount1Requested, owner: msg.sender }); } /// @inheritdoc ICLPoolActions function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested, address owner ) external override onlyNFTManager returns (uint128 amount0, uint128 amount1) { (amount0, amount1) = _collect({ recipient: recipient, tickLower: tickLower, tickUpper: tickUpper, amount0Requested: amount0Requested, amount1Requested: amount1Requested, owner: owner }); } function _collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested, address owner ) private lock returns (uint128 amount0, uint128 amount1) { // we don't need to checkTicks here, because invalid positions will never have non-zero tokensOwed{0,1} Position.Info storage position = positions.get(owner, tickLower, tickUpper); amount0 = amount0Requested > position.tokensOwed0 ? position.tokensOwed0 : amount0Requested; amount1 = amount1Requested > position.tokensOwed1 ? position.tokensOwed1 : amount1Requested; if (amount0 != 0) { position.tokensOwed0 -= amount0; TransferHelper.safeTransfer(token0, recipient, amount0); } if (amount1 != 0) { position.tokensOwed1 -= amount1; TransferHelper.safeTransfer(token1, recipient, amount1); } emit Collect(owner, recipient, tickLower, tickUpper, amount0, amount1); } /// @inheritdoc ICLPoolActions function burn(int24 tickLower, int24 tickUpper, uint128 amount) external override lock returns (uint256 amount0, uint256 amount1) { (amount0, amount1) = _burn({tickLower: tickLower, tickUpper: tickUpper, amount: amount, owner: msg.sender}); } /// @inheritdoc ICLPoolActions function burn(int24 tickLower, int24 tickUpper, uint128 amount, address owner) external override lock onlyNFTManager returns (uint256 amount0, uint256 amount1) { (amount0, amount1) = _burn({tickLower: tickLower, tickUpper: tickUpper, amount: amount, owner: owner}); } function _burn(int24 tickLower, int24 tickUpper, uint128 amount, address owner) private returns (uint256 amount0, uint256 amount1) { (Position.Info storage position, int256 amount0Int, int256 amount1Int) = _modifyPosition( ModifyPositionParams({ owner: owner, tickLower: tickLower, tickUpper: tickUpper, liquidityDelta: -int256(amount).toInt128() }) ); amount0 = uint256(-amount0Int); amount1 = uint256(-amount1Int); if (amount0 != 0 || amount1 != 0) { (position.tokensOwed0, position.tokensOwed1) = (position.tokensOwed0 + uint128(amount0), position.tokensOwed1 + uint128(amount1)); } emit Burn(owner, tickLower, tickUpper, amount, amount0, amount1); } /// @inheritdoc ICLPoolActions function stake(int128 stakedLiquidityDelta, int24 tickLower, int24 tickUpper, bool positionUpdate) external override lock onlyGauge { int24 tick = slot0.tick; // Increase staked liquidity in the current tick if (tick >= tickLower && tick < tickUpper) { _updateRewardsGrowthGlobal(); stakedLiquidity = LiquidityMath.addDelta(stakedLiquidity, stakedLiquidityDelta); } if (positionUpdate) { Position.Info storage nftPosition = positions.get(nft, tickLower, tickUpper); Position.Info storage gaugePosition = positions.get(gauge, tickLower, tickUpper); (uint256 feeGrowthInside0X128, uint256 feeGrowthInside1X128) = ticks.getFeeGrowthInside(tickLower, tickUpper, tick, feeGrowthGlobal0X128, feeGrowthGlobal1X128); // Assign the staked positions virtually to the gauge nftPosition.update(-stakedLiquidityDelta, feeGrowthInside0X128, feeGrowthInside1X128, false); gaugePosition.update(stakedLiquidityDelta, feeGrowthInside0X128, feeGrowthInside1X128, true); } // Update tick locations where staked liquidity needs to be added or subtracted // Only update ticks if current tick is initialized if (ticks[tickLower].initialized) { ticks.updateStake(tickLower, stakedLiquidityDelta, false); } if (ticks[tickUpper].initialized) { ticks.updateStake(tickUpper, stakedLiquidityDelta, true); } } struct SwapCache { // liquidity at the beginning of the swap uint128 liquidityStart; // staked liquidity at the beginning of the swap uint128 stakedLiquidityStart; // the timestamp of the current block uint32 blockTimestamp; // the current value of the tick accumulator, computed only if we cross an initialized tick int56 tickCumulative; // the current value of seconds per liquidity accumulator, computed only if we cross an initialized tick uint160 secondsPerLiquidityCumulativeX128; // whether we've computed and cached the above two accumulators bool computedLatestObservation; } // the top level state of the swap, the results of which are recorded in storage at the end struct SwapState { // the amount remaining to be swapped in/out of the input/output asset int256 amountSpecifiedRemaining; // the amount already swapped out/in of the output/input asset int256 amountCalculated; // current sqrt(price) uint160 sqrtPriceX96; // the tick associated with the current price int24 tick; // the fee associated with the pool uint24 fee; // wether we've updated the fees in the current swap bool hasUpdatedFees; // the global fee growth of the input token uint256 feeGrowthGlobalX128; // amount of input token paid as gauge fee uint128 gaugeFee; // the current liquidity in range uint128 liquidity; // the current staked liquidity in range uint128 stakedLiquidity; // whether the swap is using exact input bool exactInput; // how much fee is being paid in total uint256 totalFeeAmount; // balance of token0 before swap transfers uint256 balance0Before; // balance of token1 before swap transfers uint256 balance1Before; // balance of swap input token after swap transfers uint256 balanceAfter; } struct StepComputations { // the price at the beginning of the step uint160 sqrtPriceStartX96; // the next tick to swap to from the current tick in the swap direction int24 tickNext; // whether tickNext is initialized or not bool initialized; // sqrt(price) for the next tick (1/0) uint160 sqrtPriceNextX96; // how much is being swapped in in this step uint256 amountIn; // how much is being swapped out uint256 amountOut; // how much fee is being paid in uint256 feeAmount; } struct SwapParams { address recipient; bool zeroForOne; int256 amountSpecified; uint160 sqrtPriceLimitX96; address sender; bytes data; address callback; bytes callbackData; } /// @inheritdoc ICLPoolActions function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data ) external override returns (int256 amount0, int256 amount1) { (amount0, amount1) = swap(SwapParams({ recipient: recipient, zeroForOne: zeroForOne, amountSpecified: amountSpecified, sqrtPriceLimitX96: sqrtPriceLimitX96, sender: msg.sender, data: data, callback: address(0), callbackData: "" })); } function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data, address sender, address callback, bytes calldata callbackData ) external override returns (int256 amount0, int256 amount1) { (amount0, amount1) = swap( SwapParams({ recipient: recipient, zeroForOne: zeroForOne, amountSpecified: amountSpecified, sqrtPriceLimitX96: sqrtPriceLimitX96, sender: sender, data: data, callback: callback, callbackData: callbackData }) ); } function swap(SwapParams memory params) public returns (int256 amount0, int256 amount1) { require(params.amountSpecified != 0); Slot0 memory slot0Start = slot0; require(slot0Start.unlocked, "K"); require( params.zeroForOne ? params.sqrtPriceLimitX96 < slot0Start.sqrtPriceX96 && params.sqrtPriceLimitX96 > TickMath.MIN_SQRT_RATIO : params.sqrtPriceLimitX96 > slot0Start.sqrtPriceX96 && params.sqrtPriceLimitX96 < TickMath.MAX_SQRT_RATIO, "P" ); slot0.unlocked = false; SwapCache memory cache = SwapCache({ liquidityStart: liquidity, stakedLiquidityStart: stakedLiquidity, blockTimestamp: _blockTimestamp(), secondsPerLiquidityCumulativeX128: 0, tickCumulative: 0, computedLatestObservation: false }); //bool exactInput = amountSpecified > 0; params.sender = _getVerifiedSender(params.sender); SwapState memory state = SwapState({ amountSpecifiedRemaining: params.amountSpecified, amountCalculated: 0, sqrtPriceX96: slot0Start.sqrtPriceX96, tick: slot0Start.tick, //fee: fee(), fee: params.zeroForOne ? _getSwapFee(params.sender, token0, token1) : _getSwapFee(params.sender, token1, token0), hasUpdatedFees: false, feeGrowthGlobalX128: params.zeroForOne ? feeGrowthGlobal0X128 : feeGrowthGlobal1X128, gaugeFee: 0, liquidity: cache.liquidityStart, stakedLiquidity: cache.stakedLiquidityStart, exactInput: params.amountSpecified > 0, totalFeeAmount: 0, balance0Before: 0, balance1Before: 0, balanceAfter: 0 }); // continue swapping as long as we haven't used the entire input/output and haven't reached the price limit while (state.amountSpecifiedRemaining != 0 && state.sqrtPriceX96 != params.sqrtPriceLimitX96) { StepComputations memory step; step.sqrtPriceStartX96 = state.sqrtPriceX96; (step.tickNext, step.initialized) = tickBitmap.nextInitializedTickWithinOneWord(state.tick, tickSpacing, params.zeroForOne); // ensure that we do not overshoot the min/max tick, as the tick bitmap is not aware of these bounds if (step.tickNext < TickMath.MIN_TICK) { step.tickNext = TickMath.MIN_TICK; } else if (step.tickNext > TickMath.MAX_TICK) { step.tickNext = TickMath.MAX_TICK; } // get the price for the next tick step.sqrtPriceNextX96 = TickMath.getSqrtRatioAtTick(step.tickNext); // compute values to swap to the target tick, price limit, or point where input/output amount is exhausted (state.sqrtPriceX96, step.amountIn, step.amountOut, step.feeAmount) = SwapMath.computeSwapStep( state.sqrtPriceX96, (params.zeroForOne ? step.sqrtPriceNextX96 < params.sqrtPriceLimitX96 : step.sqrtPriceNextX96 > params.sqrtPriceLimitX96) ? params.sqrtPriceLimitX96 : step.sqrtPriceNextX96, state.liquidity, state.amountSpecifiedRemaining, state.fee ); if (state.exactInput) { state.amountSpecifiedRemaining -= (step.amountIn + step.feeAmount).toInt256(); state.amountCalculated = state.amountCalculated.sub(step.amountOut.toInt256()); } else { state.amountSpecifiedRemaining += step.amountOut.toInt256(); state.amountCalculated = state.amountCalculated.add((step.amountIn + step.feeAmount).toInt256()); } // update global fee tracker and gauge fee if (state.liquidity != 0) { (uint256 _feeGrowthGlobalX128, uint256 _protocolFeeAmount) = _calculateFees(step.feeAmount, state.liquidity); state.feeGrowthGlobalX128 += _feeGrowthGlobalX128; state.gaugeFee += uint128(_protocolFeeAmount); state.totalFeeAmount += step.feeAmount; } // shift tick if we reached the next price if (state.sqrtPriceX96 == step.sqrtPriceNextX96) { // if the tick is initialized, run the tick transition if (step.initialized) { // check for the placeholder value, which we replace with the actual value the first time the swap // crosses an initialized tick if (!cache.computedLatestObservation) { (cache.tickCumulative, cache.secondsPerLiquidityCumulativeX128) = observations.observeSingle( cache.blockTimestamp, 0, slot0Start.tick, slot0Start.observationIndex, cache.liquidityStart, slot0Start.observationCardinality ); cache.computedLatestObservation = true; } if (!state.hasUpdatedFees) { _updateRewardsGrowthGlobal(); state.hasUpdatedFees = true; } Tick.LiquidityNets memory nets = ticks.cross( step.tickNext, (params.zeroForOne ? state.feeGrowthGlobalX128 : feeGrowthGlobal0X128), (params.zeroForOne ? feeGrowthGlobal1X128 : state.feeGrowthGlobalX128), cache.secondsPerLiquidityCumulativeX128, cache.tickCumulative, cache.blockTimestamp, rewardGrowthGlobalX128 ); // if we're moving leftward, we interpret liquidityNet & stakedLiquidityNet as the opposite sign // safe because liquidityNet & stakedLiquidityNet cannot be type(int128).min if (params.zeroForOne) { nets.liquidityNet = -nets.liquidityNet; nets.stakedLiquidityNet = -nets.stakedLiquidityNet; } state.liquidity = LiquidityMath.addDelta(state.liquidity, nets.liquidityNet); state.stakedLiquidity = LiquidityMath.addDelta(state.stakedLiquidity, nets.stakedLiquidityNet); } state.tick = params.zeroForOne ? step.tickNext - 1 : step.tickNext; } else if (state.sqrtPriceX96 != step.sqrtPriceStartX96) { // recompute unless we're on a lower tick boundary (i.e. already transitioned ticks), and haven't moved state.tick = TickMath.getTickAtSqrtRatio(state.sqrtPriceX96); } } // update tick and write an oracle entry if the tick change if (state.tick != slot0Start.tick) { (uint16 observationIndex, uint16 observationCardinality) = observations.write( slot0Start.observationIndex, cache.blockTimestamp, slot0Start.tick, cache.liquidityStart, slot0Start.observationCardinality, slot0Start.observationCardinalityNext ); (slot0.sqrtPriceX96, slot0.tick, slot0.observationIndex, slot0.observationCardinality) = (state.sqrtPriceX96, state.tick, observationIndex, observationCardinality); } else { // otherwise just update the price slot0.sqrtPriceX96 = state.sqrtPriceX96; } // update liquidity and stakedLiquidity if it changed if (cache.liquidityStart != state.liquidity) liquidity = state.liquidity; if (cache.stakedLiquidityStart != state.stakedLiquidity) stakedLiquidity = state.stakedLiquidity; // update fee growth global and, if necessary, gauge fees // overflow is acceptable, protocol has to withdraw before it hits type(uint128).max fees if (params.zeroForOne) { feeGrowthGlobal0X128 = state.feeGrowthGlobalX128; if (state.gaugeFee != 0) { gaugeFees.token0 += state.gaugeFee; } _notifyFeeAmount(token0, state.fee, state.totalFeeAmount, state.gaugeFee); // notify fee amount } else { feeGrowthGlobal1X128 = state.feeGrowthGlobalX128; if (state.gaugeFee != 0) { gaugeFees.token1 += state.gaugeFee; } _notifyFeeAmount(token1, state.fee, state.totalFeeAmount, state.gaugeFee); // notify fee amount } (amount0, amount1) = params.zeroForOne == state.exactInput ? (params.amountSpecified - state.amountSpecifiedRemaining, state.amountCalculated) : (state.amountCalculated, params.amountSpecified - state.amountSpecifiedRemaining); // do the transfers and collect payment if (params.zeroForOne) { if (amount1 < 0) { TransferHelper.safeTransfer(token1, params.recipient, uint256(-amount1)); } if (params.callback != address(0)) { state.balance1Before = balance1(); } state.balance0Before = balance0(); ICLSwapCallback(msg.sender).uniswapV3SwapCallback(amount0, amount1, params.data); state.balanceAfter = balance0(); require(state.balance0Before.add(uint256(amount0)) <= state.balanceAfter, "I"); } else { if (amount0 < 0) { TransferHelper.safeTransfer(token0, params.recipient, uint256(-amount0)); } if (params.callback != address(0)) { state.balance0Before = balance0(); } state.balance1Before = balance1(); ICLSwapCallback(msg.sender).uniswapV3SwapCallback(amount0, amount1, params.data); state.balanceAfter = balance1(); require(state.balance1Before.add(uint256(amount1)) <= state.balanceAfter, "I"); } // execute callback if (params.callback != address(0)) { ISyncSwapBaseCallback(params.callback).syncSwapBaseSwapCallback( ISyncSwapBaseCallback.BaseSwapCallbackParams({ sender: params.sender, to: params.recipient, tokenIn: params.zeroForOne ? token0 : token1, tokenOut: params.zeroForOne ? token1 : token0, reserve0: state.balance0Before, reserve1: state.balance1Before, balance0: params.zeroForOne ? state.balanceAfter : balance0(), balance1: params.zeroForOne ? balance1() : state.balanceAfter, amountIn: params.amountSpecified > 0 ? uint256(params.amountSpecified) : 0, amountOut: params.zeroForOne ? uint256(-amount1) : uint256(-amount0), feeIn: state.totalFeeAmount, swapFee: state.fee, withdrawMode: 3, callbackData: params.callbackData }) ); } emit Swap(msg.sender, params.recipient, amount0, amount1, state.sqrtPriceX96, state.liquidity, state.tick); slot0.unlocked = true; } /// @inheritdoc ICLPoolActions function flash( address recipient, uint256 amount0, uint256 amount1, bytes calldata data ) external override lock { uint128 _liquidity = liquidity; require(_liquidity != 0); uint24 feeRate0 = getSwapFee(msg.sender, token1, token0, abi.encode(msg.sender, amount0)); uint24 feeRate1 = getSwapFee(msg.sender, token0, token1, abi.encode(msg.sender, amount1)); uint256 fee0 = FullMath.mulDivRoundingUp(amount0, feeRate0, 1e6); uint256 fee1 = FullMath.mulDivRoundingUp(amount1, feeRate1, 1e6); uint256 balance0Before = balance0(); uint256 balance1Before = balance1(); if (amount0 != 0) { TransferHelper.safeTransfer(token0, recipient, amount0); } if (amount1 != 0) { TransferHelper.safeTransfer(token1, recipient, amount1); } ICLFlashCallback(msg.sender).uniswapV3FlashCallback(fee0, fee1, data); uint256 paid0; uint256 paid1; { uint256 balance0After = balance0(); uint256 balance1After = balance1(); require(balance0Before.add(fee0) <= balance0After, "0"); require(balance1Before.add(fee1) <= balance1After, "1"); // sub is safe because we know balanceAfter is gt balanceBefore by at least fee paid0 = balance0After - balance0Before; paid1 = balance1After - balance1Before; } if (paid0 != 0) { (uint256 _feeGrowthGlobalX128, uint256 _protocolFeeAmount) = _calculateFees(paid0, _liquidity); if (_feeGrowthGlobalX128 != 0) { feeGrowthGlobal0X128 += _feeGrowthGlobalX128; } if (uint128(_protocolFeeAmount) != 0) { gaugeFees.token0 += uint128(_protocolFeeAmount); } _notifyFeeAmount(token0, feeRate0, fee0, _protocolFeeAmount); // notify fee amount } if (paid1 != 0) { (uint256 _feeGrowthGlobalX128, uint256 _protocolFeeAmount) = _calculateFees(paid1, _liquidity); if (_feeGrowthGlobalX128 != 0) { feeGrowthGlobal1X128 += _feeGrowthGlobalX128; } if (uint128(_protocolFeeAmount) != 0) { gaugeFees.token1 += uint128(_protocolFeeAmount); } _notifyFeeAmount(token1, feeRate1, fee1, _protocolFeeAmount); // notify fee amount } emit Flash(msg.sender, recipient, amount0, amount1, paid0, paid1); } /// @inheritdoc ICLPoolState function getRewardGrowthInside(int24 tickLower, int24 tickUpper, uint256 _rewardGrowthGlobalX128) external view override returns (uint256 rewardGrowthInside) { checkTicks(tickLower, tickUpper); if (_rewardGrowthGlobalX128 == 0) { _rewardGrowthGlobalX128 = rewardGrowthGlobalX128; } return ticks.getRewardGrowthInside(tickLower, tickUpper, slot0.tick, _rewardGrowthGlobalX128); } /// @inheritdoc ICLPoolActions function updateRewardsGrowthGlobal() external override lock onlyGauge { _updateRewardsGrowthGlobal(); } /// @dev timeDelta != 0 handles case when function is called twice in the same block. /// @dev stakedLiquidity > 0 handles case when depositing staked liquidity and there is no liquidity staked yet, /// @dev or when notifying rewards when there is no liquidity stake function _updateRewardsGrowthGlobal() internal { uint32 timestamp = _blockTimestamp(); uint256 _lastUpdated = lastUpdated; uint256 timeDelta = timestamp - _lastUpdated; // skip if second call in same block if (timeDelta != 0) { uint256 _rewardReserve = rewardReserve; if (_rewardReserve != 0) { uint256 reward = rewardRate * timeDelta; if (reward > _rewardReserve) { reward = _rewardReserve; rewardReserve = 0; } else { rewardReserve -= reward; } uint128 _stakedLiquidity = stakedLiquidity; if (_stakedLiquidity != 0) { rewardGrowthGlobalX128 += FullMath.mulDiv(reward, FixedPoint128.Q128, _stakedLiquidity); } else { rollover += reward; } } lastUpdated = timestamp; } } /// @inheritdoc ICLPoolActions function syncReward( uint256 _rewardRate, uint256 _rewardReserve, uint256 _periodFinish ) external override lock onlyGauge { rewardRate = _rewardRate; rewardReserve = _rewardReserve; periodFinish = _periodFinish; delete rollover; } /* /// @notice Calculates the fees owed to staked liquidity, then calculates fee levied on unstaked liquidity /// @param feeAmount Total fees /// @param _liquidity Current liquidity in active tick /// @param _stakedLiquidity Current staked liquidity in active tick /// @return unstakedFeeAmount Fee amount for unstaked LPs after accounting for staked liquidity contribution and unstaked fee /// @return stakedFeeAmount Fee amount for staked LPs consisting of staked liquidity contribution and unstaked fee function splitFees(uint256 feeAmount, uint128 _liquidity, uint128 _stakedLiquidity) internal view returns (uint256 unstakedFeeAmount, uint256 stakedFeeAmount) { stakedFeeAmount = FullMath.mulDivRoundingUp(feeAmount, _stakedLiquidity, _liquidity); (unstakedFeeAmount, stakedFeeAmount) = applyUnstakedFees(feeAmount - stakedFeeAmount, stakedFeeAmount); } */ /* /// @notice Calculates fee for levied on unstaked liquidity only /// @param _unstakedFeeAmount Fee amount for unstaked LPs net of staked liquidity contribution /// @param _stakedFeeAmount Fee amount for staked LPs consisting of staked liquidity contribution /// @return unstakedFeeAmount Fee amount for unstaked LPs after accounting for staked liquidity contribution and unstaked fee /// @return stakedFeeAmount Fee amount for staked LPs consisting of staked liquidity contribution and unstaked fee function applyUnstakedFees(uint256 _unstakedFeeAmount, uint256 _stakedFeeAmount) internal view returns (uint256 unstakedFeeAmount, uint256 stakedFeeAmount) { uint256 _stakedFee = FullMath.mulDivRoundingUp(_unstakedFeeAmount, unstakedFee(), 1e6); unstakedFeeAmount = _unstakedFeeAmount - _stakedFee; stakedFeeAmount = _stakedFeeAmount + _stakedFee; } */ // calculates the protocol fee amount and fee growths function _calculateFees( uint256 _feeAmount, uint128 _liquidity/*, uint128 _stakedLiquidity*/ ) private view returns (uint256 _feeGrowthGlobalX128, uint256 _protocolFeeAmount) { // amount of protocol fees _protocolFeeAmount = FullMath.mulDivRoundingUp(_feeAmount, getProtocolFee(), 1e5); // amount of position accrued fees uint256 _positionFeeAmount = _feeAmount.sub(_protocolFeeAmount); // calculate fee growth _feeGrowthGlobalX128 = FullMath.mulDiv(_positionFeeAmount, FixedPoint128.Q128, _liquidity); /* // if there is only staked liquidity if (_liquidity == _stakedLiquidity) { stakedFeeAmount = _feeAmount; } // if there is only unstaked liquidity else if (_stakedLiquidity == 0) { (uint256 unstakedFeeAmount, uint256 _stakedFeeAmount) = applyUnstakedFees(_feeAmount, 0); feeGrowthGlobalX128 = FullMath.mulDiv(unstakedFeeAmount, FixedPoint128.Q128, _liquidity); stakedFeeAmount = _stakedFeeAmount; } // if there are staked and unstaked liquidities else { (uint256 unstakedFeeAmount, uint256 _stakedFeeAmount) = splitFees(_feeAmount, _liquidity, _stakedLiquidity); feeGrowthGlobalX128 = FullMath.mulDiv(unstakedFeeAmount, FixedPoint128.Q128, _liquidity - _stakedLiquidity); stakedFeeAmount = _stakedFeeAmount; } */ } /// @inheritdoc ICLPoolOwnerActions function collectFee(bool isTokenZero) external override lock returns (uint128 amount) { require(msg.sender == gauge || msg.sender == ISyncSwapRangePoolFactory(factory).feeCollector()); amount = isTokenZero ? gaugeFees.token0 : gaugeFees.token1; if (amount > 1) { // ensure that the slot is not cleared, for gas savings if (isTokenZero) { gaugeFees.token0 = 1; } else { gaugeFees.token1 = 1; } TransferHelper.safeTransfer(isTokenZero ? token0 : token1, msg.sender, --amount); } emit CollectFees(msg.sender, isTokenZero ? amount : 0, isTokenZero ? 0 : amount); } /// @inheritdoc ICLPoolActions function setGaugeAndPositionManager(address _gauge, address _nft) external override lock { require(gauge == address(0)); // ensures not initialized require(msg.sender == ISyncSwapRangePoolFactory(factory).gaugeFactory()); // only gauge factory gauge = _gauge; nft = _nft; } /// @dev Returns the verified sender address otherwise `address(0)`. function _getVerifiedSender(address _sender) private view returns (address) { if (_sender != msg.sender) { // The sender from non-forwarder is invalid. try IPoolMaster(master).isForwarder(msg.sender) returns (bool _isTrustedForwarder) { return _isTrustedForwarder ? _sender : msg.sender; } catch {} } return msg.sender; } function _getSwapFee(address _sender, address _tokenIn, address _tokenOut) private view returns (uint24 _swapFee) { _swapFee = getSwapFee(_sender, _tokenIn, _tokenOut, abi.encode(msg.sender)); } /// @dev This function doesn't check the forwarder. function getSwapFee(address _sender, address _tokenIn, address _tokenOut, bytes memory _data) public view override returns (uint24) { try ISyncSwapRangePoolFactory(factory).getSwapFee( address(this), _sender, _tokenIn, _tokenOut, _data ) returns (uint24 _swapFee) { return _swapFee; } catch { return 1000; // 0.1% } } /// @dev Compatibility function. Directional fee and sender forwarder is not supported. Use `getSwapFee()` instead. function fee() external view override returns (uint24) { return _getSwapFee(msg.sender, token0, token1); } function _notifyFeeAmount(address token, uint24 feeRate, uint256 tokenAmount, uint256 protocolFeeAmount) private { address _feeRecipient = _getFeeRecipient(); if (_feeRecipient != address(0)) { try IFeeRecipient(_feeRecipient).notifyFees(4, token, tokenAmount, feeRate, abi.encode(4)) {} catch {} emit FeeAmount(token, feeRate, tokenAmount, protocolFeeAmount); } } function _getFeeRecipient() private view returns (address) { try IPoolMaster(master).getFeeRecipient() returns (address _feeRecipient) { return _feeRecipient; } catch { return address(0); } } }
// SPDX-License-Identifier: BUSL-1.1 pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/external/IERC20.sol"; import "./interfaces/ICLGauge.sol"; import "./interfaces/ICLGaugeFactory.sol"; import "./interfaces/IVoter.sol"; import "./interfaces/ISyncSwapRangePool.sol"; import "./interfaces/INonfungiblePositionManager.sol"; import "./interfaces/IReward.sol"; import "./libraries/external/ERC721Holder.sol"; import "./libraries/external/SafeERC20.sol"; import "./libraries/external/ReentrancyGuard.sol"; import "./libraries/external/EnumerableSet.sol"; import "./libraries/external/SafeCast128.sol"; import "./libraries/external/FullMath.sol"; import "./libraries/external/FixedPoint128.sol"; import "./libraries/Epoch.sol"; contract CLGauge is ICLGauge, ERC721Holder, ReentrancyGuard { using EnumerableSet for EnumerableSet.UintSet; using SafeERC20 for IERC20; using SafeCast128 for uint128; /// @inheritdoc ICLGauge INonfungiblePositionManager public override nft; /// @inheritdoc ICLGauge IVoter public override voter; /// @inheritdoc ICLGauge ISyncSwapRangePool public override pool; /// @inheritdoc ICLGauge ICLGaugeFactory public override gaugeFactory; /// @inheritdoc ICLGauge address public override feesVotingReward; /// @inheritdoc ICLGauge address public override rewardToken; /// @inheritdoc ICLGauge uint256 public override periodFinish; /// @inheritdoc ICLGauge uint256 public override rewardRate; mapping(uint256 => uint256) public override rewardRateByEpoch; // epochStart => rewardRate /// @dev The set of all staked nfts for a given address mapping(address => EnumerableSet.UintSet) internal _stakes; /// @inheritdoc ICLGauge mapping(uint256 => uint256) public override rewardGrowthInside; /// @inheritdoc ICLGauge mapping(uint256 => uint256) public override rewards; /// @inheritdoc ICLGauge mapping(uint256 => uint256) public override lastUpdateTime; /// @inheritdoc ICLGauge uint256 public override fees0; /// @inheritdoc ICLGauge uint256 public override fees1; /// @inheritdoc ICLGauge address public override token0; /// @inheritdoc ICLGauge address public override token1; /// @inheritdoc ICLGauge int24 public override tickSpacing; /// @inheritdoc ICLGauge bool public override isPool; /// @inheritdoc ICLGauge function initialize( address _pool, address _feesVotingReward, address _rewardToken, address _voter, address _nft, address _token0, address _token1, int24 _tickSpacing, bool _isPool ) external override { require(address(pool) == address(0), "AI"); gaugeFactory = ICLGaugeFactory(msg.sender); pool = ISyncSwapRangePool(_pool); feesVotingReward = _feesVotingReward; rewardToken = _rewardToken; voter = IVoter(_voter); nft = INonfungiblePositionManager(_nft); token0 = _token0; token1 = _token1; tickSpacing = _tickSpacing; isPool = _isPool; } // updates the claimable rewards and lastUpdateTime for tokenId function _updateRewards(uint256 tokenId, int24 tickLower, int24 tickUpper) internal { if (lastUpdateTime[tokenId] == block.timestamp) return; pool.updateRewardsGrowthGlobal(); lastUpdateTime[tokenId] = block.timestamp; rewards[tokenId] += _earned(tokenId); rewardGrowthInside[tokenId] = pool.getRewardGrowthInside(tickLower, tickUpper, 0); } /// @inheritdoc ICLGauge function earned(address account, uint256 tokenId) external view override returns (uint256) { require(_stakes[account].contains(tokenId), "NA"); return _earned(tokenId); } function _earned(uint256 tokenId) internal view returns (uint256) { uint256 lastUpdated = pool.lastUpdated(); uint256 timeDelta = block.timestamp - lastUpdated; uint256 rewardGrowthGlobalX128 = pool.rewardGrowthGlobalX128(); uint256 rewardReserve = pool.rewardReserve(); if (timeDelta != 0 && rewardReserve > 0 && pool.stakedLiquidity() > 0) { uint256 reward = rewardRate * timeDelta; if (reward > rewardReserve) reward = rewardReserve; rewardGrowthGlobalX128 += FullMath.mulDiv(reward, FixedPoint128.Q128, pool.stakedLiquidity()); } (,,,,, int24 tickLower, int24 tickUpper, uint128 liquidity,,,,) = nft.positions(tokenId); uint256 rewardPerTokenInsideInitialX128 = rewardGrowthInside[tokenId]; uint256 rewardPerTokenInsideX128 = pool.getRewardGrowthInside(tickLower, tickUpper, rewardGrowthGlobalX128); uint256 claimable = FullMath.mulDiv(rewardPerTokenInsideX128 - rewardPerTokenInsideInitialX128, liquidity, FixedPoint128.Q128); return claimable; } /// @inheritdoc ICLGauge function getReward(address account) external override nonReentrant { require(msg.sender == address(voter), "NV"); uint256[] memory tokenIds = _stakes[account].values(); uint256 length = tokenIds.length; uint256 tokenId; int24 tickLower; int24 tickUpper; for (uint256 i = 0; i < length; i++) { tokenId = tokenIds[i]; (,,,,, tickLower, tickUpper,,,,,) = nft.positions(tokenId); _getReward(tickLower, tickUpper, tokenId, account); } } /// @inheritdoc ICLGauge function getReward(uint256 tokenId) external override nonReentrant { require(_stakes[msg.sender].contains(tokenId), "NA"); (,,,,, int24 tickLower, int24 tickUpper,,,,,) = nft.positions(tokenId); _getReward(tickLower, tickUpper, tokenId, msg.sender); } function _getReward(int24 tickLower, int24 tickUpper, uint256 tokenId, address owner) internal { _updateRewards(tokenId, tickLower, tickUpper); uint256 reward = rewards[tokenId]; if (reward > 0) { delete rewards[tokenId]; IERC20(rewardToken).safeTransfer(owner, reward); emit ClaimRewards(owner, reward); } } /// @inheritdoc ICLGauge function deposit(uint256 tokenId) external override nonReentrant { require(nft.ownerOf(tokenId) == msg.sender, "NA"); require(voter.isAlive(address(this)), "GK"); (,, address _token0, address _token1, int24 _tickSpacing, int24 tickLower, int24 tickUpper,,,,,) = nft.positions(tokenId); require(token0 == _token0 && token1 == _token1 && tickSpacing == _tickSpacing, "PM"); // trigger update on staked position so NFT will be in sync with the pool nft.collect( INonfungiblePositionManager.CollectParams({ tokenId: tokenId, recipient: msg.sender, amount0Max: type(uint128).max, amount1Max: type(uint128).max }) ); nft.safeTransferFrom(msg.sender, address(this), tokenId); _stakes[msg.sender].add(tokenId); (,,,,,,, uint128 liquidityToStake,,,,) = nft.positions(tokenId); pool.stake(liquidityToStake.toInt128(), tickLower, tickUpper, true); uint256 rewardGrowth = pool.getRewardGrowthInside(tickLower, tickUpper, 0); rewardGrowthInside[tokenId] = rewardGrowth; lastUpdateTime[tokenId] = block.timestamp; emit Deposit(msg.sender, tokenId, liquidityToStake); } /// @inheritdoc ICLGauge function withdraw(uint256 tokenId) external override nonReentrant { require(_stakes[msg.sender].contains(tokenId), "NA"); // trigger update on staked position so NFT will be in sync with the pool nft.collect( INonfungiblePositionManager.CollectParams({ tokenId: tokenId, recipient: msg.sender, amount0Max: type(uint128).max, amount1Max: type(uint128).max }) ); (,,,,, int24 tickLower, int24 tickUpper, uint128 liquidityToStake,,,,) = nft.positions(tokenId); _getReward(tickLower, tickUpper, tokenId, msg.sender); // update virtual liquidity in pool only if token has existing liquidity // i.e. not all removed already via decreaseStakedLiquidity if (liquidityToStake != 0) { pool.stake(-liquidityToStake.toInt128(), tickLower, tickUpper, true); } _stakes[msg.sender].remove(tokenId); nft.safeTransferFrom(address(this), msg.sender, tokenId); emit Withdraw(msg.sender, tokenId, liquidityToStake); } /// @inheritdoc ICLGauge function stakedValues(address depositor) external view override returns (uint256[] memory staked) { uint256 length = _stakes[depositor].length(); staked = new uint256[](length); for (uint256 i = 0; i < length; i++) { staked[i] = _stakes[depositor].at(i); } } /// @inheritdoc ICLGauge function stakedByIndex(address depositor, uint256 index) external view override returns (uint256) { return _stakes[depositor].at(index); } /// @inheritdoc ICLGauge function stakedContains(address depositor, uint256 tokenId) external view override returns (bool) { return _stakes[depositor].contains(tokenId); } /// @inheritdoc ICLGauge function stakedLength(address depositor) external view override returns (uint256) { return _stakes[depositor].length(); } function left() external view override returns (uint256) { if (block.timestamp >= periodFinish) return 0; uint256 _remaining = periodFinish - block.timestamp; return _remaining * rewardRate; } /// @inheritdoc ICLGauge function notifyRewardAmount(uint256 _amount) external override nonReentrant { address sender = msg.sender; require(sender == address(voter), "NV"); require(_amount != 0, "ZR"); _claimFees(); _notifyRewardAmount(sender, _amount); } /// @inheritdoc ICLGauge function notifyRewardWithoutClaim(uint256 _amount) external override nonReentrant { address sender = msg.sender; require(sender == gaugeFactory.notifyAdmin(), "NA"); require(_amount != 0, "ZR"); _notifyRewardAmount(sender, _amount); } function _notifyRewardAmount(address _sender, uint256 _amount) internal { uint256 timestamp = block.timestamp; uint256 timeUntilNext = Epoch.epochNext(timestamp) - timestamp; pool.updateRewardsGrowthGlobal(); uint256 nextPeriodFinish = timestamp + timeUntilNext; IERC20(rewardToken).safeTransferFrom(_sender, address(this), _amount); // rolling over stuck rewards from previous epoch (if any) _amount += pool.rollover(); if (timestamp >= periodFinish) { rewardRate = _amount / timeUntilNext; pool.syncReward({rewardRate: rewardRate, rewardReserve: _amount, periodFinish: nextPeriodFinish}); } else { uint256 _leftover = timeUntilNext * rewardRate; rewardRate = (_amount + _leftover) / timeUntilNext; pool.syncReward({rewardRate: rewardRate, rewardReserve: _amount + _leftover, periodFinish: nextPeriodFinish}); } rewardRateByEpoch[Epoch.epochStart(timestamp)] = rewardRate; require(rewardRate != 0, "ZRR"); // Ensure the provided reward amount is not more than the balance in the contract. // This keeps the reward rate in the right range uint256 balance = IERC20(rewardToken).balanceOf(address(this)); require(rewardRate <= balance / timeUntilNext, "RRH"); periodFinish = nextPeriodFinish; emit NotifyReward(_sender, _amount); } function _claimFees() internal { if (!isPool) { return; } uint256 _claimed0; uint256 _claimed1; address _feesVotingReward = feesVotingReward; try pool.collectFee(true) returns (uint128 claimed0) { if (claimed0 != 0) { uint256 _fees0 = fees0 + claimed0; address _token0 = token0; if (_fees0 > Epoch.WEEK) { fees0 = 0; IERC20(_token0).safeIncreaseAllowance(_feesVotingReward, _fees0); IReward(_feesVotingReward).notifyRewardAmount(_token0, _fees0); } else { fees0 = _fees0; } _claimed0 = claimed0; } } catch {} try pool.collectFee(false) returns (uint128 claimed1) { if (claimed1 != 0) { uint256 _fees1 = fees1 + claimed1; address _token1 = token1; if (_fees1 > Epoch.WEEK) { fees1 = 0; IERC20(_token1).safeIncreaseAllowance(_feesVotingReward, _fees1); IReward(_feesVotingReward).notifyRewardAmount(_token1, _fees1); } else { fees1 = _fees1; } _claimed1 = claimed1; } } catch {} emit ClaimFees(msg.sender, _claimed0, _claimed1); } }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.7.6; pragma abicoder v2; import "./interfaces/IBasePoolMinimal.sol"; import "./interfaces/IFeeManagerV3.sol"; import "./interfaces/ISwapFeeHook.sol"; import "./libraries/external/Ownable.sol"; /// @notice The fee manager manages swap fees for pools and protocol fee. contract FeeManagerV3 is IFeeManagerV3, Ownable { uint24 private constant MAX_PROTOCOL_FEE = 1e5; /// @dev 100%. uint24 private constant MAX_SWAP_FEE = 2e5; /// @dev 20% uint24 private constant ZERO_FEE_MAGIC_VALUE = type(uint24).max; /// @dev The protocol fee of swap fee by pool type. mapping(uint16 => uint24) public defaultProtocolFee; /// @dev `300000` for 30%. /// @dev The custom protocol fee by pool address, use `ZERO_FEE_MAGIC_VALUE` for zero fee. mapping(address => uint24) public poolProtocolFee; /// @dev The recipient of protocol fees. address public feeRecipient; mapping(uint16 => FeeData) public defaultSwapFeeData; address public swapFeeHook; function defaultSwapFee(uint16 poolType) external view returns (uint24) { // v1 compatible interface return defaultSwapFeeData[poolType].maxFee; } mapping(address => mapping(address => FeeData)) public poolSwapFeeData; // Events event SetDefaultSwapFeeData(uint16 indexed poolType, uint64 gamma, uint24 minFee, uint24 maxFee); event SetPoolSwapFeeData(address indexed pool, address indexed tokenIn, uint64 gamma, uint24 minFee, uint24 maxFee); event SetDefaultProtocolFee(uint16 indexed poolType, uint24 fee); event SetPoolProtocolFee(address indexed pool, uint24 fee); event SetFeeRecipient(address indexed previousFeeRecipient, address indexed newFeeRecipient); event SetSwapFeeHook(address indexed previousSwapFeeHook, address indexed newSwapFeeHook); event SetDefaultSwapFee(uint16 indexed poolType, uint24 fee); // compatible interface event SetTokenSwapFee(address indexed tokenIn, address indexed tokenOut, uint24 fee); // compatible interface constructor(address _feeRecipient) { feeRecipient = _feeRecipient; // CL Pool _setDefaultSwapFeeData(4, 0, 3000, 3000); // 0.3% _setDefaultProtocolFee(4, 30000); // 30% } // Getters function getFeeRecipient() external view returns (address) { return feeRecipient; } function getSwapFeeData( address pool, address sender, address tokenIn, address tokenOut, bytes calldata data ) public view returns (FeeData memory) { uint16 poolType = IBasePoolMinimal(pool).poolType(); FeeData memory feeData = poolSwapFeeData[pool][tokenIn]; if (feeData.maxFee == 0) { // not set, use default fee of the pool type. feeData = defaultSwapFeeData[poolType]; } else { // has a pool swap fee. if (feeData.minFee == ZERO_FEE_MAGIC_VALUE) { feeData.minFee = 0; } if (feeData.maxFee == ZERO_FEE_MAGIC_VALUE) { feeData.maxFee = 0; } } address _swapFeeHook = swapFeeHook; if (_swapFeeHook != address(0)) { try ISwapFeeHook(_swapFeeHook).getSwapFeeData( pool, sender, tokenIn, tokenOut, data, feeData ) returns ( FeeData memory _feeData ) { return _feeData; } catch { // do not delegate if failed } } return feeData; } // v1 compatible interface function getSwapFee( address pool, address sender, address tokenIn, address tokenOut, bytes calldata data ) external view override returns (uint24 fee) { fee = getSwapFeeData(pool, sender, tokenIn, tokenOut, data).maxFee; } function getProtocolFee(address pool) external view override returns (uint24 fee) { fee = poolProtocolFee[pool]; if (fee == 0) { // not set, use default fee of the pool type. fee = defaultProtocolFee[IBasePoolMinimal(pool).poolType()]; } else { // has a pool protocol fee. if (fee == ZERO_FEE_MAGIC_VALUE) { fee = 0; } } } function getSwapFeeHook() external view returns (address) { return swapFeeHook; } // Setters function _setDefaultSwapFeeData(uint16 poolType, uint64 gamma, uint24 minFee, uint24 maxFee) private { require(minFee <= maxFee && maxFee <= MAX_SWAP_FEE, "Invalid fee"); require(gamma <= 1e18, "Invalid fee gamma"); defaultSwapFeeData[poolType] = FeeData(gamma, minFee, maxFee); emit SetDefaultSwapFeeData(poolType, gamma, minFee, maxFee); // emit compatible event emit SetDefaultSwapFee(poolType, maxFee); } function setDefaultSwapFeeData(uint16 poolType, uint64 gamma, uint24 minFee, uint24 maxFee) external onlyOwner { _setDefaultSwapFeeData(poolType, gamma, minFee, maxFee); } function setPoolSwapFeeData(address pool, address tokenIn, uint64 gamma, uint24 minFee, uint24 maxFee) external onlyOwner { require(minFee <= maxFee && (maxFee == ZERO_FEE_MAGIC_VALUE || maxFee <= MAX_SWAP_FEE), "Invalid fee"); require(gamma <= 1e18, "Invalid fee gamma"); poolSwapFeeData[pool][tokenIn] = FeeData(gamma, minFee, maxFee); emit SetPoolSwapFeeData(pool, tokenIn, gamma, minFee, maxFee); // emit compatible event address token0 = IBasePoolMinimal(pool).token0(); address tokenOut = token0 == tokenIn ? IBasePoolMinimal(pool).token1() : token0; emit SetTokenSwapFee(tokenIn, tokenOut, maxFee); } function _setDefaultProtocolFee(uint16 poolType, uint24 fee) private { require(fee <= MAX_PROTOCOL_FEE, "Invalid fee"); defaultProtocolFee[poolType] = fee; emit SetDefaultProtocolFee(poolType, fee); } function setDefaultProtocolFee(uint16 poolType, uint24 fee) external onlyOwner { _setDefaultProtocolFee(poolType, fee); } function setPoolProtocolFee(address pool, uint24 fee) external onlyOwner { require(fee <= MAX_PROTOCOL_FEE, "Invalid fee"); poolProtocolFee[pool] = fee; emit SetPoolProtocolFee(pool, fee); } function setFeeRecipient(address _feeRecipient) external onlyOwner { emit SetFeeRecipient(feeRecipient, _feeRecipient); feeRecipient = _feeRecipient; } function setSwapFeeHook(address _swapFeeHook) external onlyOwner { emit SetSwapFeeHook(swapFeeHook, _swapFeeHook); swapFeeHook = _swapFeeHook; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; import "./interfaces/IFeeProvider.sol"; import "./interfaces/IPoolMaster.sol"; contract FeeProvider is IFeeProvider { /// @dev Returns swap fee for the pool function getSwapFee( address master, address pool, address sender, address tokenIn, address tokenOut, bytes memory data ) external view override returns (uint24) { uint24 _fee = IPoolMaster(master).getSwapFee( pool, sender, tokenIn, tokenOut, data ); return _fee <= 1e5 ? _fee * 10 : _fee; // precision: 1e5 -> 1e6 } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for ICLPoolActions#flash /// @notice Any contract that calls ICLPoolActions#flash must implement this interface interface ICLFlashCallback { /// @notice Called to `msg.sender` after transferring to the recipient from ICLPool#flash. /// @dev In the implementation you must repay the pool the tokens sent by flash plus the computed fee amounts. /// The caller of this method must be checked to be a CLPool deployed by the canonical SyncSwapRangePoolFactory. /// @param fee0 The fee amount in token0 due to the pool by the end of the flash /// @param fee1 The fee amount in token1 due to the pool by the end of the flash /// @param data Any data passed through by the caller via the ICLPoolActions#flash call function uniswapV3FlashCallback(uint256 fee0, uint256 fee1, bytes calldata data) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for ICLPoolActions#mint /// @notice Any contract that calls ICLPoolActions#mint must implement this interface interface ICLMintCallback { /// @notice Called to `msg.sender` after minting liquidity to a position from ICLPool#mint. /// @dev In the implementation you must pay the pool tokens owed for the minted liquidity. /// The caller of this method must be checked to be a CLPool deployed by the canonical SyncSwapRangePoolFactory. /// @param amount0Owed The amount of token0 due to the pool for the minted liquidity /// @param amount1Owed The amount of token1 due to the pool for the minted liquidity /// @param data Any data passed through by the caller via the ICLPoolActions#mint call function uniswapV3MintCallback(uint256 amount0Owed, uint256 amount1Owed, bytes calldata data) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Callback for ICLPoolActions#swap /// @notice Any contract that calls ICLPoolActions#swap must implement this interface interface ICLSwapCallback { /// @notice Called to `msg.sender` after executing a swap via ICLPool#swap. /// @dev In the implementation you must pay the pool tokens owed for the swap. /// The caller of this method must be checked to be a CLPool deployed by the canonical SyncSwapRangePoolFactory. /// amount0Delta and amount1Delta can both be 0 if no tokens were swapped. /// @param amount0Delta The amount of token0 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token0 to the pool. /// @param amount1Delta The amount of token1 that was sent (negative) or must be received (positive) by the pool by /// the end of the swap. If positive, the callback must send that amount of token1 to the pool. /// @param data Any data passed through by the caller via the ICLPoolActions#swap call function uniswapV3SwapCallback(int256 amount0Delta, int256 amount1Delta, bytes calldata data) external; }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; pragma abicoder v2; /// @dev The callback interface for SyncSwap base pool operations. /// Note additional checks will be required for some callbacks, see below for more information. /// Visit the documentation https://syncswap.gitbook.io/api-documentation/ for more details. interface ISyncSwapBaseCallback { struct BaseSwapCallbackParams { address sender; address to; address tokenIn; address tokenOut; uint reserve0; uint reserve1; uint balance0; uint balance1; uint amountIn; uint amountOut; uint feeIn; uint24 swapFee; uint8 withdrawMode; bytes callbackData; } function syncSwapBaseSwapCallback(BaseSwapCallbackParams calldata params) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Interface for verifying contract-based account signatures /// @notice Interface that verifies provided signature for the data /// @dev Interface defined by EIP-1271 interface IERC1271 { /// @notice Returns whether the provided signature is valid for the provided data /// @dev MUST return the bytes4 magic value 0x1626ba7e when function passes. /// MUST NOT modify state (using STATICCALL for solc < 0.5, view modifier for solc > 0.5). /// MUST allow external calls. /// @param hash Hash of the data to be signed /// @param signature Signature byte array associated with _data /// @return magicValue The bytes4 magic value 0x1626ba7e function isValidSignature(bytes32 hash, bytes memory signature) external view returns (bytes4 magicValue); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Interface of the ERC165 standard, as defined in the * https://eips.ethereum.org/EIPS/eip-165[EIP]. * * Implementers can declare support of contract interfaces, which can then be * queried by others ({ERC165Checker}). * * For an implementation, see {ERC165}. */ interface IERC165 { /** * @dev Returns true if this contract implements the interface defined by * `interfaceId`. See the corresponding * https://eips.ethereum.org/EIPS/eip-165#how-interfaces-are-identified[EIP section] * to learn more about how these ids are created. * * This function call must use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) external view returns (bool); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity ^0.7.0; import "./IERC20.sol"; /// @title IERC20Metadata /// @title Interface for ERC20 Metadata /// @notice Extension to IERC20 that includes token metadata interface IERC20Metadata is IERC20 { /// @return The name of the token function name() external view returns (string memory); /// @return The symbol of the token function symbol() external view returns (string memory); /// @return The number of decimal places the token has function decimals() external view returns (uint8); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Minimal ERC20 interface for CL /// @notice Contains a subset of the full ERC20 interface that is used in CL interface IERC20Minimal { /// @notice Returns the balance of a token /// @param account The account for which to look up the number of tokens it has, i.e. its balance /// @return The number of tokens held by the account function balanceOf(address account) external view returns (uint256); /// @notice Transfers the amount of token from the `msg.sender` to the recipient /// @param recipient The account that will receive the amount transferred /// @param amount The number of tokens to send from the sender to the recipient /// @return Returns true for a successful transfer, false for an unsuccessful transfer function transfer(address recipient, uint256 amount) external returns (bool); /// @notice Returns the current allowance given to a spender by an owner /// @param owner The account of the token owner /// @param spender The account of the token spender /// @return The current allowance granted by `owner` to `spender` function allowance(address owner, address spender) external view returns (uint256); /// @notice Sets the allowance of a spender from the `msg.sender` to the value `amount` /// @param spender The account which will be allowed to spend a given amount of the owners tokens /// @param amount The amount of tokens allowed to be used by `spender` /// @return Returns true for a successful approval, false for unsuccessful function approve(address spender, uint256 amount) external returns (bool); /// @notice Transfers `amount` tokens from `sender` to `recipient` up to the allowance given to the `msg.sender` /// @param sender The account from which the transfer will be initiated /// @param recipient The recipient of the transfer /// @param amount The amount of the transfer /// @return Returns true for a successful transfer, false for unsuccessful function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); /// @notice Event emitted when tokens are transferred from one address to another, either via `#transfer` or `#transferFrom`. /// @param from The account from which the tokens were sent, i.e. the balance decreased /// @param to The account to which the tokens were sent, i.e. the balance increased /// @param value The amount of tokens that were transferred event Transfer(address indexed from, address indexed to, uint256 value); /// @notice Event emitted when the approval amount for the spender of a given owner's tokens changes. /// @param owner The account that approved spending of its tokens /// @param spender The account for which the spending allowance was modified /// @param value The new allowance from the owner to the spender event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev Interface of the ERC20 Permit extension allowing approvals to be made via signatures, as defined in * https://eips.ethereum.org/EIPS/eip-2612[EIP-2612]. * * Adds the {permit} method, which can be used to change an account's ERC20 allowance (see {IERC20-allowance}) by * presenting a message signed by the account. By not relying on `{IERC20-approve}`, the token holder account doesn't * need to send a transaction, and thus is not required to hold Ether at all. */ interface IERC20Permit { /** * @dev Sets `value` as the allowance of `spender` over `owner`'s tokens, * given `owner`'s signed approval. * * IMPORTANT: The same issues {IERC20-approve} has related to transaction * ordering also apply here. * * Emits an {Approval} event. * * Requirements: * * - `spender` cannot be the zero address. * - `deadline` must be a timestamp in the future. * - `v`, `r` and `s` must be a valid `secp256k1` signature from `owner` * over the EIP712-formatted function arguments. * - the signature must use ``owner``'s current nonce (see {nonces}). * * For more information on the signature format, see the * https://eips.ethereum.org/EIPS/eip-2612#specification[relevant EIP * section]. */ function permit(address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external; /** * @dev Returns the current nonce for `owner`. This value must be * included whenever a signature is generated for {permit}. * * Every successful call to {permit} increases ``owner``'s nonce by one. This * prevents a signature from being used multiple times. */ function nonces(address owner) external view returns (uint256); /** * @dev Returns the domain separator used in the encoding of the signature for `permit`, as defined by {EIP712}. */ // solhint-disable-next-line func-name-mixedcase function DOMAIN_SEPARATOR() external view returns (bytes32); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Interface for permit /// @notice Interface used by DAI/CHAI for permit interface IERC20PermitAllowed { /// @notice Approve the spender to spend some tokens via the holder signature /// @dev This is the permit interface used by DAI and CHAI /// @param holder The address of the token holder, the token owner /// @param spender The address of the token spender /// @param nonce The holder's nonce, increases at each call to permit /// @param expiry The timestamp at which the permit is no longer valid /// @param allowed Boolean that sets approval amount, true for type(uint256).max and false for 0 /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function permit( address holder, address spender, uint256 nonce, uint256 expiry, bool allowed, uint8 v, bytes32 r, bytes32 s ) external; }
// SPDX-License-Identifier: MIT pragma solidity >=0.7.5; /// @title EIP-721 Metadata Update Extension interface IERC4906 { /// @dev This event emits when the metadata of a token is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFT. event MetadataUpdate(uint256 _tokenId); /// @dev This event emits when the metadata of a range of tokens is changed. /// So that the third-party platforms such as NFT market could /// timely update the images and related attributes of the NFTs. event BatchMetadataUpdate(uint256 _fromTokenId, uint256 _toTokenId); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC165.sol"; /** * @dev Required interface of an ERC721 compliant contract. */ interface IERC721 is IERC165 { /** * @dev Emitted when `tokenId` token is transferred from `from` to `to`. */ event Transfer(address indexed from, address indexed to, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables `approved` to manage the `tokenId` token. */ event Approval(address indexed owner, address indexed approved, uint256 indexed tokenId); /** * @dev Emitted when `owner` enables or disables (`approved`) `operator` to manage all of its assets. */ event ApprovalForAll(address indexed owner, address indexed operator, bool approved); /** * @dev Returns the number of tokens in ``owner``'s account. */ function balanceOf(address owner) external view returns (uint256 balance); /** * @dev Returns the owner of the `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function ownerOf(uint256 tokenId) external view returns (address owner); /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be have been allowed to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId) external; /** * @dev Transfers `tokenId` token from `from` to `to`. * * WARNING: Usage of this method is discouraged, use {safeTransferFrom} whenever possible. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * * Emits a {Transfer} event. */ function transferFrom(address from, address to, uint256 tokenId) external; /** * @dev Gives permission to `to` to transfer `tokenId` token to another account. * The approval is cleared when the token is transferred. * * Only a single account can be approved at a time, so approving the zero address clears previous approvals. * * Requirements: * * - The caller must own the token or be an approved operator. * - `tokenId` must exist. * * Emits an {Approval} event. */ function approve(address to, uint256 tokenId) external; /** * @dev Returns the account approved for `tokenId` token. * * Requirements: * * - `tokenId` must exist. */ function getApproved(uint256 tokenId) external view returns (address operator); /** * @dev Approve or remove `operator` as an operator for the caller. * Operators can call {transferFrom} or {safeTransferFrom} for any token owned by the caller. * * Requirements: * * - The `operator` cannot be the caller. * * Emits an {ApprovalForAll} event. */ function setApprovalForAll(address operator, bool _approved) external; /** * @dev Returns if the `operator` is allowed to manage all of the assets of `owner`. * * See {setApprovalForAll} */ function isApprovedForAll(address owner, address operator) external view returns (bool); /** * @dev Safely transfers `tokenId` token from `from` to `to`. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If the caller is not `from`, it must be approved to move this token by either {approve} or {setApprovalForAll}. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes calldata data) external; }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional enumeration extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Enumerable is IERC721 { /** * @dev Returns the total amount of tokens stored by the contract. */ function totalSupply() external view returns (uint256); /** * @dev Returns a token ID owned by `owner` at a given `index` of its token list. * Use along with {balanceOf} to enumerate all of ``owner``'s tokens. */ function tokenOfOwnerByIndex(address owner, uint256 index) external view returns (uint256 tokenId); /** * @dev Returns a token ID at a given `index` of all the tokens stored by the contract. * Use along with {totalSupply} to enumerate all tokens. */ function tokenByIndex(uint256 index) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "./IERC721.sol"; /** * @title ERC-721 Non-Fungible Token Standard, optional metadata extension * @dev See https://eips.ethereum.org/EIPS/eip-721 */ interface IERC721Metadata is IERC721 { /** * @dev Returns the token collection name. */ function name() external view returns (string memory); /** * @dev Returns the token collection symbol. */ function symbol() external view returns (string memory); /** * @dev Returns the Uniform Resource Identifier (URI) for `tokenId` token. */ function tokenURI(uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; import "./IERC721.sol"; /// @title ERC721 with permit /// @notice Extension to ERC721 that includes a permit function for signature based approvals interface IERC721Permit is IERC721 { /// @notice The permit typehash used in the permit signature /// @return The typehash for the permit function PERMIT_TYPEHASH() external pure returns (bytes32); /// @notice The domain separator used in the permit signature /// @return The domain seperator used in encoding of permit signature function DOMAIN_SEPARATOR() external view returns (bytes32); /// @notice Approve of a specific token ID for spending by spender via signature /// @param spender The account that is being approved /// @param tokenId The ID of the token that is being approved for spending /// @param deadline The deadline timestamp by which the call must be mined for the approve to work /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function permit(address spender, uint256 tokenId, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external payable; }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @title ERC721 token receiver interface * @dev Interface for any contract that wants to support safeTransfers * from ERC721 asset contracts. */ interface IERC721Receiver { /** * @dev Whenever an {IERC721} `tokenId` token is transferred to this contract via {IERC721-safeTransferFrom} * by `operator` from `from`, this function is called. * * It must return its Solidity selector to confirm the token transfer. * If any other value is returned or the interface is not implemented by the recipient, the transfer will be reverted. * * The selector can be obtained in Solidity with `IERC721.onERC721Received.selector`. */ function onERC721Received(address operator, address from, uint256 tokenId, bytes calldata data) external returns (bytes4); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; /// @title Multicall interface /// @notice Enables calling multiple methods in a single call to the contract interface IMulticall { /// @notice Call multiple functions in the current contract and return the data from all of them if they all succeed /// @dev The `msg.value` should not be trusted for any method callable from multicall. /// @param data The encoded function data for each of the calls to make to this contract /// @return results The results from each of the calls passed in via data function multicall(bytes[] calldata data) external payable returns (bytes[] memory results); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; /// @title Self Permit /// @notice Functionality to call permit on any EIP-2612-compliant token for use in the route interface ISelfPermit { /// @notice Permits this contract to spend a given token from `msg.sender` /// @dev The `owner` is always msg.sender and the `spender` is always address(this). /// @param token The address of the token spent /// @param value The amount that can be spent of token /// @param deadline A timestamp, the current blocktime must be less than or equal to this timestamp /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function selfPermit(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external payable; /// @notice Permits this contract to spend a given token from `msg.sender` /// @dev The `owner` is always msg.sender and the `spender` is always address(this). /// Can be used instead of #selfPermit to prevent calls from failing due to a frontrun of a call to #selfPermit /// @param token The address of the token spent /// @param value The amount that can be spent of token /// @param deadline A timestamp, the current blocktime must be less than or equal to this timestamp /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function selfPermitIfNecessary(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external payable; /// @notice Permits this contract to spend the sender's tokens for permit signatures that have the `allowed` parameter /// @dev The `owner` is always msg.sender and the `spender` is always address(this) /// @param token The address of the token spent /// @param nonce The current nonce of the owner /// @param expiry The timestamp at which the permit is no longer valid /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function selfPermitAllowed(address token, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external payable; /// @notice Permits this contract to spend the sender's tokens for permit signatures that have the `allowed` parameter /// @dev The `owner` is always msg.sender and the `spender` is always address(this) /// Can be used instead of #selfPermitAllowed to prevent calls from failing due to a frontrun of a call to #selfPermitAllowed. /// @param token The address of the token spent /// @param nonce The current nonce of the owner /// @param expiry The timestamp at which the permit is no longer valid /// @param v Must produce valid secp256k1 signature from the holder along with `r` and `s` /// @param r Must produce valid secp256k1 signature from the holder along with `v` and `s` /// @param s Must produce valid secp256k1 signature from the holder along with `r` and `v` function selfPermitAllowedIfNecessary(address token, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external payable; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; import "./IERC20.sol"; /// @title Interface for WETH9 interface IWETH9 is IERC20 { /// @notice Deposit ether to get wrapped ether function deposit() external payable; /// @notice Withdraw wrapped ether to get ether function withdraw(uint256) external; }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; interface IBasePoolMinimal { function token0() external view returns (address); function token1() external view returns (address); function poolType() external view returns (uint16); }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; import "./INonfungiblePositionManager.sol"; import "./IVoter.sol"; import "./ISyncSwapRangePool.sol"; import "./ICLGaugeFactory.sol"; interface ICLGauge { event NotifyReward(address indexed from, uint256 amount); event Deposit(address indexed user, uint256 indexed tokenId, uint128 indexed liquidityToStake); event Withdraw(address indexed user, uint256 indexed tokenId, uint128 indexed liquidityToStake); event ClaimFees(address indexed from, uint256 claimed0, uint256 claimed1); event ClaimRewards(address indexed from, uint256 amount); /// @notice NonfungiblePositionManager used to create nfts this gauge accepts function nft() external view returns (INonfungiblePositionManager); /// @notice Voter contract gauge receives emissions from function voter() external view returns (IVoter); /// @notice Address of the CL pool linked to the gauge function pool() external view returns (ISyncSwapRangePool); /// @notice Address of the factory that created this gauge function gaugeFactory() external view returns (ICLGaugeFactory); /// @notice Address of the FeesVotingReward contract linked to the gauge function feesVotingReward() external view returns (address); /// @notice Timestamp end of current rewards period function periodFinish() external view returns (uint256); /// @notice Current reward rate of rewardToken to distribute per second function rewardRate() external view returns (uint256); /// @notice Claimable rewards by tokenId function rewards(uint256 tokenId) external view returns (uint256); /// @notice Most recent timestamp tokenId called updateRewards function lastUpdateTime(uint256 tokenId) external view returns (uint256); /// @notice View to see the rewardRate given the timestamp of the start of the epoch function rewardRateByEpoch(uint256) external view returns (uint256); /// @notice Cached amount of fees generated from the Pool linked to the Gauge of token0 function fees0() external view returns (uint256); /// @notice Cached amount of fees generated from the Pool linked to the Gauge of token1 function fees1() external view returns (uint256); /// @notice Cached address of token0, corresponding to token0 of the pool function token0() external view returns (address); /// @notice Cached address of token1, corresponding to token1 of the pool function token1() external view returns (address); /// @notice Cached tick spacing of the pool. function tickSpacing() external view returns (int24); /// @notice Total amount of rewardToken to distribute for the current rewards period function left() external view returns (uint256 _left); /// @notice Address of the emissions token function rewardToken() external view returns (address); /// @notice To provide compatibility support with the old voter function isPool() external view returns (bool); /// @notice Returns the rewardGrowthInside of the position at the last user action (deposit, withdraw, getReward) /// @param tokenId The tokenId of the position /// @return The rewardGrowthInside for the position function rewardGrowthInside(uint256 tokenId) external view returns (uint256); /// @notice Called on gauge creation by CLGaugeFactory /// @param _pool The address of the pool /// @param _feesVotingReward The address of the feesVotingReward contract /// @param _rewardToken The address of the reward token /// @param _voter The address of the voter contract /// @param _nft The address of the nft position manager contract /// @param _token0 The address of token0 of the pool /// @param _token1 The address of token1 of the pool /// @param _tickSpacing The tick spacing of the pool /// @param _isPool Whether the attached pool is a real pool or not function initialize( address _pool, address _feesVotingReward, address _rewardToken, address _voter, address _nft, address _token0, address _token1, int24 _tickSpacing, bool _isPool ) external; /// @notice Returns the claimable rewards for a given account and tokenId /// @dev Throws if account is not the position owner /// @dev pool.updateRewardsGrowthGlobal() needs to be called first, to return the correct claimable rewards /// @param account The address of the user /// @param tokenId The tokenId of the position /// @return The amount of claimable reward function earned(address account, uint256 tokenId) external view returns (uint256); /// @notice Retrieve rewards for all tokens owned by an account /// @dev Throws if not called by the voter /// @param account The account of the user function getReward(address account) external; /// @notice Retrieve rewards for a tokenId /// @dev Throws if not called by the position owner /// @param tokenId The tokenId of the position function getReward(uint256 tokenId) external; /// @notice Notifies gauge of gauge rewards. /// @param amount Amount of gauge rewards (emissions) to notify. Must be greater than 604_800. function notifyRewardAmount(uint256 amount) external; /// @dev Notifies gauge of gauge rewards without distributing its fees. /// Assumes gauge reward tokens is 18 decimals. /// If not 18 decimals, rewardRate may have rounding issues. /// @param amount Amount of gauge rewards (emissions) to notify. Must be greater than 604_800. function notifyRewardWithoutClaim(uint256 amount) external; /// @notice Used to deposit a CL position into the gauge /// @notice Allows the user to receive emissions instead of fees /// @param tokenId The tokenId of the position function deposit(uint256 tokenId) external; /// @notice Used to withdraw a CL position from the gauge /// @notice Allows the user to receive fees instead of emissions /// @notice Outstanding emissions will be collected on withdrawal /// @param tokenId The tokenId of the position function withdraw(uint256 tokenId) external; /// @notice Fetch all tokenIds staked by a given account /// @param depositor The address of the user /// @return The tokenIds of the staked positions function stakedValues(address depositor) external view returns (uint256[] memory); /// @notice Fetch a staked tokenId by index /// @param depositor The address of the user /// @param index The index of the staked tokenId /// @return The tokenId of the staked position function stakedByIndex(address depositor, uint256 index) external view returns (uint256); /// @notice Check whether a position is staked in the gauge by a certain user /// @param depositor The address of the user /// @param tokenId The tokenId of the position /// @return Whether the position is staked in the gauge function stakedContains(address depositor, uint256 tokenId) external view returns (bool); /// @notice The amount of positions staked in the gauge by a certain user /// @param depositor The address of the user /// @return The amount of positions staked in the gauge function stakedLength(address depositor) external view returns (uint256); }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; interface ICLGaugeFactory { event SetNotifyAdmin(address indexed notifyAdmin); /// @notice Address of the voter contract function voter() external view returns (address); /// @notice Address of the gauge implementation contract function implementation() external view returns (address); /// @notice Address of the NonfungiblePositionManager used to create nfts that gauges will accept function nft() external view returns (address); /// @notice Administrator that can call `notifyRewardWithoutClaim` on gauges function notifyAdmin() external view returns (address); /// @notice Set Nonfungible Position Manager /// @dev Callable once only on initialize /// @param _nft The nonfungible position manager that will manage positions for this Factory function setNonfungiblePositionManager(address _nft) external; /// @notice Set notifyAdmin value on gauge factory /// @param _admin New administrator that will be able to call `notifyRewardWithoutClaim` on gauges. function setNotifyAdmin(address _admin) external; /// @notice Called by the voter contract via factory.createPool /// @param _forwarder The address of the forwarder contract /// @param _pool The address of the pool /// @param _feesVotingReward The address of the feesVotingReward contract /// @param _rewardToken The address of the reward token /// @param _isPool Whether the attached pool is a real pool or not /// @return The address of the created gauge function createGauge( address _forwarder, address _pool, address _feesVotingReward, address _rewardToken, bool _isPool ) external returns (address); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Permissionless pool actions /// @notice Contains pool methods that can be called by anyone interface ICLPoolActions { /// @notice Initialize function used in proxy deployment /// @dev Can be called once only /// Price is represented as a sqrt(amountToken1/amountToken0) Q64.96 value /// @dev not locked because it initializes unlocked /// @param _factory The CL factory contract address /// @param _token0 The first token of the pool by address sort order /// @param _token1 The second token of the pool by address sort order /// @param _tickSpacing The pool tick spacing /// @param _sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 function initialize( address _factory, address _token0, address _token1, int24 _tickSpacing, uint160 _sqrtPriceX96 ) external; /// @notice Initialize gauge and nft manager /// @dev Callable only once, by the gauge factory /// @param _gauge The gauge corresponding to this pool /// @param _nft The position manager used for position management function setGaugeAndPositionManager(address _gauge, address _nft) external; /// @notice Adds liquidity for the given recipient/tickLower/tickUpper position /// @dev The caller of this method receives a callback in the form of ICLMintCallback#uniswapV3MintCallback /// in which they must pay any token0 or token1 owed for the liquidity. The amount of token0/token1 due depends /// on tickLower, tickUpper, the amount of liquidity, and the current price. /// @param recipient The address for which the liquidity will be created /// @param tickLower The lower tick of the position in which to add liquidity /// @param tickUpper The upper tick of the position in which to add liquidity /// @param amount The amount of liquidity to mint /// @param data Any data that should be passed through to the callback /// @return amount0 The amount of token0 that was paid to mint the given amount of liquidity. Matches the value in the callback /// @return amount1 The amount of token1 that was paid to mint the given amount of liquidity. Matches the value in the callback function mint(address recipient, int24 tickLower, int24 tickUpper, uint128 amount, bytes calldata data) external returns (uint256 amount0, uint256 amount1); /// @notice Collects tokens owed to a position /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. /// @param recipient The address which should receive the fees collected /// @param tickLower The lower tick of the position for which to collect fees /// @param tickUpper The upper tick of the position for which to collect fees /// @param amount0Requested How much token0 should be withdrawn from the fees owed /// @param amount1Requested How much token1 should be withdrawn from the fees owed /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested ) external returns (uint128 amount0, uint128 amount1); /// @notice Collects tokens owed to a position /// @dev Does not recompute fees earned, which must be done either via mint or burn of any amount of liquidity. /// Collect must be called by the position owner. To withdraw only token0 or only token1, amount0Requested or /// amount1Requested may be set to zero. To withdraw all tokens owed, caller may pass any value greater than the /// actual tokens owed, e.g. type(uint128).max. Tokens owed may be from accumulated swap fees or burned liquidity. /// @param recipient The address which should receive the fees collected /// @param tickLower The lower tick of the position for which to collect fees /// @param tickUpper The upper tick of the position for which to collect fees /// @param amount0Requested How much token0 should be withdrawn from the fees owed /// @param amount1Requested How much token1 should be withdrawn from the fees owed /// @param owner Owner of the position in the pool (nft manager or gauge) /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect( address recipient, int24 tickLower, int24 tickUpper, uint128 amount0Requested, uint128 amount1Requested, address owner ) external returns (uint128 amount0, uint128 amount1); /// @notice Burn liquidity from the sender and account tokens owed for the liquidity to the position /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0 /// @dev Fees must be collected separately via a call to #collect /// @param tickLower The lower tick of the position for which to burn liquidity /// @param tickUpper The upper tick of the position for which to burn liquidity /// @param amount How much liquidity to burn /// @return amount0 The amount of token0 sent to the recipient /// @return amount1 The amount of token1 sent to the recipient function burn(int24 tickLower, int24 tickUpper, uint128 amount) external returns (uint256 amount0, uint256 amount1); /// @notice Burn liquidity from the supplied owner and account tokens owed for the liquidity to the position /// @dev Can be used to trigger a recalculation of fees owed to a position by calling with an amount of 0 /// @dev Fees must be collected separately via a call to #collect /// @param tickLower The lower tick of the position for which to burn liquidity /// @param tickUpper The upper tick of the position for which to burn liquidity /// @param amount How much liquidity to burn /// @param owner Owner of the position in the pool (nft manager or gauge) /// @return amount0 The amount of token0 sent to the recipient /// @return amount1 The amount of token1 sent to the recipient function burn(int24 tickLower, int24 tickUpper, uint128 amount, address owner) external returns (uint256 amount0, uint256 amount1); /// @notice Convert existing liquidity into staked liquidity /// @notice Only callable by the gauge associated with this pool /// @param stakedLiquidityDelta The amount by which to increase or decrease the staked liquidity /// @param tickLower The lower tick of the position for which to stake liquidity /// @param tickUpper The upper tick of the position for which to stake liquidity /// @param positionUpdate If the nft and gauge position should be updated function stake(int128 stakedLiquidityDelta, int24 tickLower, int24 tickUpper, bool positionUpdate) external; /// @notice Swap token0 for token1, or token1 for token0 /// @dev The caller of this method receives a callback in the form of ICLSwapCallback#uniswapV3SwapCallback /// @param recipient The address to receive the output of the swap /// @param zeroForOne The direction of the swap, true for token0 to token1, false for token1 to token0 /// @param amountSpecified The amount of the swap, which implicitly configures the swap as exact input (positive), or exact output (negative) /// @param sqrtPriceLimitX96 The Q64.96 sqrt price limit. If zero for one, the price cannot be less than this /// value after the swap. If one for zero, the price cannot be greater than this value after the swap /// @param data Any data to be passed through to the callback /// @return amount0 The delta of the balance of token0 of the pool, exact when negative, minimum when positive /// @return amount1 The delta of the balance of token1 of the pool, exact when negative, minimum when positive function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data ) external returns (int256 amount0, int256 amount1); function swap( address recipient, bool zeroForOne, int256 amountSpecified, uint160 sqrtPriceLimitX96, bytes calldata data, address sender, address callback, bytes calldata callbackData ) external returns (int256 amount0, int256 amount1); /// @notice Receive token0 and/or token1 and pay it back, plus a fee, in the callback /// @dev The caller of this method receives a callback in the form of ICLFlashCallback#uniswapV3FlashCallback /// @dev Can be used to donate underlying tokens pro-rata to currently in-range liquidity providers by calling /// with 0 amount{0,1} and sending the donation amount(s) from the callback /// @param recipient The address which will receive the token0 and token1 amounts /// @param amount0 The amount of token0 to send /// @param amount1 The amount of token1 to send /// @param data Any data to be passed through to the callback function flash(address recipient, uint256 amount0, uint256 amount1, bytes calldata data) external; /// @notice Increase the maximum number of price and liquidity observations that this pool will store /// @dev This method is no-op if the pool already has an observationCardinalityNext greater than or equal to /// the input observationCardinalityNext. /// @param observationCardinalityNext The desired minimum number of observations for the pool to store function increaseObservationCardinalityNext(uint16 observationCardinalityNext) external; /// @notice Updates rewardGrowthGlobalX128 every time when any tick is crossed, /// or when any position is staked/unstaked from the gauge function updateRewardsGrowthGlobal() external; /// @notice Syncs rewards with gauge /// @param rewardRate the rate rewards being distributed during the epoch /// @param rewardReserve the available rewards to be distributed during the epoch /// @param periodFinish the end of the current period of rewards, updated once per epoch function syncReward(uint256 rewardRate, uint256 rewardReserve, uint256 periodFinish) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that never changes /// @notice These parameters are not defined as immutable (due to proxy pattern) but are effectively immutable. /// @notice i.e., the methods will always return the same values interface ICLPoolConstants { function factory() external view returns (address); function master() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function gauge() external view returns (address); function nft() external view returns (address); /// @notice The pool tick spacing /// @dev Ticks can only be used at multiples of this value, minimum of 1 and always positive /// e.g.: a tickSpacing of 3 means ticks can be initialized every 3rd tick, i.e., ..., -6, -3, 0, 3, 6, ... /// This value is an int24 to avoid casting even though it is always positive. /// @return The tick spacing function tickSpacing() external view returns (int24); /// @notice The maximum amount of position liquidity that can use any tick in the range /// @dev This parameter is enforced per tick to prevent liquidity from overflowing a uint128 at any point, and /// also prevents out-of-range liquidity from being used to prevent adding in-range liquidity to a pool /// @return The max amount of liquidity per tick function maxLiquidityPerTick() external view returns (uint128); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that is not stored /// @notice Contains view functions to provide information about the pool that is computed rather than stored on the /// blockchain. The functions here may have variable gas costs. interface ICLPoolDerivedState { /// @notice Returns the cumulative tick and liquidity as of each timestamp `secondsAgo` from the current block timestamp /// @dev To get a time weighted average tick or liquidity-in-range, you must call this with two values, one representing /// the beginning of the period and another for the end of the period. E.g., to get the last hour time-weighted average tick, /// you must call it with secondsAgos = [3600, 0]. /// @dev The time weighted average tick represents the geometric time weighted average price of the pool, in /// log base sqrt(1.0001) of token1 / token0. The TickMath library can be used to go from a tick value to a ratio. /// @param secondsAgos From how long ago each cumulative tick and liquidity value should be returned /// @return tickCumulatives Cumulative tick values as of each `secondsAgos` from the current block timestamp /// @return secondsPerLiquidityCumulativeX128s Cumulative seconds per liquidity-in-range value as of each `secondsAgos` from the current block /// timestamp function observe(uint32[] calldata secondsAgos) external view returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s); /// @notice Returns a snapshot of the tick cumulative, seconds per liquidity and seconds inside a tick range /// @dev Snapshots must only be compared to other snapshots, taken over a period for which a position existed. /// I.e., snapshots cannot be compared if a position is not held for the entire period between when the first /// snapshot is taken and the second snapshot is taken. /// @param tickLower The lower tick of the range /// @param tickUpper The upper tick of the range /// @return tickCumulativeInside The snapshot of the tick accumulator for the range /// @return secondsPerLiquidityInsideX128 The snapshot of seconds per liquidity for the range /// @return secondsInside The snapshot of seconds per liquidity for the range function snapshotCumulativesInside(int24 tickLower, int24 tickUpper) external view returns (int56 tickCumulativeInside, uint160 secondsPerLiquidityInsideX128, uint32 secondsInside); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Events emitted by a pool /// @notice Contains all events emitted by the pool interface ICLPoolEvents { /// @notice Emitted exactly once by a pool when #initialize is first called on the pool /// @dev Mint/Burn/Swap cannot be emitted by the pool before Initialize /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 /// @param tick The initial tick of the pool, i.e. log base 1.0001 of the starting price of the pool event Initialize(uint160 sqrtPriceX96, int24 tick); /// @notice Emitted when liquidity is minted for a given position /// @param sender The address that minted the liquidity /// @param owner The owner of the position and recipient of any minted liquidity /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount The amount of liquidity minted to the position range /// @param amount0 How much token0 was required for the minted liquidity /// @param amount1 How much token1 was required for the minted liquidity event Mint( address sender, address indexed owner, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount, uint256 amount0, uint256 amount1 ); /// @notice Emitted when fees are collected by the owner of a position /// @dev Collect events may be emitted with zero amount0 and amount1 when the caller chooses not to collect fees /// @param owner The owner of the position for which fees are collected /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount0 The amount of token0 fees collected /// @param amount1 The amount of token1 fees collected event Collect( address indexed owner, address recipient, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount0, uint128 amount1 ); /// @notice Emitted when a position's liquidity is removed /// @dev Does not withdraw any fees earned by the liquidity position, which must be withdrawn via #collect /// @param owner The owner of the position for which liquidity is removed /// @param tickLower The lower tick of the position /// @param tickUpper The upper tick of the position /// @param amount The amount of liquidity to remove /// @param amount0 The amount of token0 withdrawn /// @param amount1 The amount of token1 withdrawn event Burn( address indexed owner, int24 indexed tickLower, int24 indexed tickUpper, uint128 amount, uint256 amount0, uint256 amount1 ); /// @notice Emitted by the pool for any swaps between token0 and token1 /// @param sender The address that initiated the swap call, and that received the callback /// @param recipient The address that received the output of the swap /// @param amount0 The delta of the token0 balance of the pool /// @param amount1 The delta of the token1 balance of the pool /// @param sqrtPriceX96 The sqrt(price) of the pool after the swap, as a Q64.96 /// @param liquidity The liquidity of the pool after the swap /// @param tick The log base 1.0001 of price of the pool after the swap event Swap( address indexed sender, address indexed recipient, int256 amount0, int256 amount1, uint160 sqrtPriceX96, uint128 liquidity, int24 tick ); /// @notice Emitted by the pool for any flashes of token0/token1 /// @param sender The address that initiated the swap call, and that received the callback /// @param recipient The address that received the tokens from flash /// @param amount0 The amount of token0 that was flashed /// @param amount1 The amount of token1 that was flashed /// @param paid0 The amount of token0 paid for the flash, which can exceed the amount0 plus the fee /// @param paid1 The amount of token1 paid for the flash, which can exceed the amount1 plus the fee event Flash( address indexed sender, address indexed recipient, uint256 amount0, uint256 amount1, uint256 paid0, uint256 paid1 ); /// @notice Emitted by the pool for increases to the number of observations that can be stored /// @dev observationCardinalityNext is not the observation cardinality until an observation is written at the index /// just before a mint/swap/burn. /// @param observationCardinalityNextOld The previous value of the next observation cardinality /// @param observationCardinalityNextNew The updated value of the next observation cardinality event IncreaseObservationCardinalityNext( uint16 observationCardinalityNextOld, uint16 observationCardinalityNextNew ); /// @notice Emitted when the protocol fee is changed by the pool /// @param feeProtocol0Old The previous value of the token0 protocol fee /// @param feeProtocol1Old The previous value of the token1 protocol fee /// @param feeProtocol0New The updated value of the token0 protocol fee /// @param feeProtocol1New The updated value of the token1 protocol fee event SetFeeProtocol(uint8 feeProtocol0Old, uint8 feeProtocol1Old, uint8 feeProtocol0New, uint8 feeProtocol1New); /// @notice Emitted when the collected protocol fees are withdrawn by the gauge /// @param recipient The address that receives the collected protocol fees /// @param amount0 The amount of token0 protocol fees that is withdrawn /// @param amount0 The amount of token1 protocol fees that is withdrawn event CollectFees(address indexed recipient, uint128 amount0, uint128 amount1); event FeeAmount(address indexed token, uint24 indexed feeRate, uint256 totalFeeAmount, uint256 protocolFeeAmount); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Permissioned pool actions /// @notice Contains pool methods that may only be called by the factory owner interface ICLPoolOwnerActions { /// @notice Collect the gauge fee accrued to the pool /// @return amount The gauge fee collected in token function collectFee(bool isTokenZero) external returns (uint128 amount); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Pool state that can change /// @notice These methods compose the pool's state, and can change with any frequency including multiple times /// per transaction interface ICLPoolState { /// @notice The 0th storage slot in the pool stores many values, and is exposed as a single method to save gas /// when accessed externally. /// @return sqrtPriceX96 The current price of the pool as a sqrt(token1/token0) Q64.96 value /// tick The current tick of the pool, i.e. according to the last tick transition that was run. /// This value may not always be equal to SqrtTickMath.getTickAtSqrtRatio(sqrtPriceX96) if the price is on a tick /// boundary. /// observationIndex The index of the last oracle observation that was written, /// observationCardinality The current maximum number of observations stored in the pool, /// observationCardinalityNext The next maximum number of observations, to be updated when the observation. /// unlocked Whether the pool is currently locked to reentrancy function slot0() external view returns ( uint160 sqrtPriceX96, int24 tick, uint16 observationIndex, uint16 observationCardinality, uint16 observationCardinalityNext, bool unlocked ); /// @notice The pool's swap & flash fee in pips, i.e. 1e-6 /// @dev Can be modified in PoolFactory on a pool basis or upgraded to be dynamic. /// @return The swap & flash fee function getSwapFee(address sender, address tokenIn, address tokenOut, bytes memory data) external view returns (uint24); function fee() external view returns (uint24); /// @notice The pool's unstaked fee in pips, i.e. 1e-6 /// @dev Can be modified in PoolFactory on a pool basis or upgraded to be dynamic. /// @return The unstaked fee function getProtocolFee() external view returns (uint24); /// @notice The fee growth as a Q128.128 fees of token0 collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function feeGrowthGlobal0X128() external view returns (uint256); /// @notice The fee growth as a Q128.128 fees of token1 collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function feeGrowthGlobal1X128() external view returns (uint256); /// @notice The reward growth as a Q128.128 rewards of emission collected per unit of liquidity for the entire life of the pool /// @dev This value can overflow the uint256 function rewardGrowthGlobalX128() external view returns (uint256); /// @notice The amounts of token0 and token1 that are owed to the gauge /// @dev Gauge fees will never exceed uint128 max in either token function gaugeFees() external view returns (uint128 token0, uint128 token1); /// @notice the emission rate of time-based farming function rewardRate() external view returns (uint256); /// @notice acts as a virtual reserve that holds information on how many rewards are yet to be distributed function rewardReserve() external view returns (uint256); /// @notice timestamp of the end of the current epoch's rewards function periodFinish() external view returns (uint256); /// @notice last time the rewardReserve and rewardRate were updated function lastUpdated() external view returns (uint32); /// @notice tracks total rewards distributed when no staked liquidity in active tick for epoch ending at periodFinish /// @notice this amount is rolled over on the next call to notifyRewardAmount /// @dev rollover will always be smaller than the rewards distributed that epoch function rollover() external view returns (uint256); /// @notice The currently in range liquidity available to the pool /// @dev This value has no relationship to the total liquidity across all ticks /// @dev This value includes staked liquidity function liquidity() external view returns (uint128); /// @notice The currently in range staked liquidity available to the pool /// @dev This value has no relationship to the total staked liquidity across all ticks function stakedLiquidity() external view returns (uint128); /// @notice Look up information about a specific tick in the pool /// @param tick The tick to look up /// @return liquidityGross the total amount of position liquidity that uses the pool either as tick lower or /// tick upper, /// liquidityNet how much liquidity changes when the pool price crosses the tick, /// stakedLiquidityNet how much staked liquidity changes when the pool price crosses the tick, /// feeGrowthOutside0X128 the fee growth on the other side of the tick from the current tick in token0, /// feeGrowthOutside1X128 the fee growth on the other side of the tick from the current tick in token1, /// rewardGrowthOutsideX128 the reward growth on the other side of the tick from the current tick in emission token /// tickCumulativeOutside the cumulative tick value on the other side of the tick from the current tick /// secondsPerLiquidityOutsideX128 the seconds spent per liquidity on the other side of the tick from the current tick, /// secondsOutside the seconds spent on the other side of the tick from the current tick, /// initialized Set to true if the tick is initialized, i.e. liquidityGross is greater than 0, otherwise equal to false. /// Outside values can only be used if the tick is initialized, i.e. if liquidityGross is greater than 0. /// In addition, these values are only relative and must be used only in comparison to previous snapshots for /// a specific position. function ticks(int24 tick) external view returns ( uint128 liquidityGross, int128 liquidityNet, int128 stakedLiquidityNet, uint256 feeGrowthOutside0X128, uint256 feeGrowthOutside1X128, uint256 rewardGrowthOutsideX128, int56 tickCumulativeOutside, uint160 secondsPerLiquidityOutsideX128, uint32 secondsOutside, bool initialized ); /// @notice Returns 256 packed tick initialized boolean values. See TickBitmap for more information function tickBitmap(int16 wordPosition) external view returns (uint256); /// @notice Returns the information about a position by the position's key /// @param key The position's key is a hash of a preimage composed by the owner, tickLower and tickUpper /// @return _liquidity The amount of liquidity in the position, /// Returns feeGrowthInside0LastX128 fee growth of token0 inside the tick range as of the last mint/burn/poke, /// Returns feeGrowthInside1LastX128 fee growth of token1 inside the tick range as of the last mint/burn/poke, /// Returns tokensOwed0 the computed amount of token0 owed to the position as of the last mint/burn/poke, /// Returns tokensOwed1 the computed amount of token1 owed to the position as of the last mint/burn/poke function positions(bytes32 key) external view returns ( uint128 _liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint128 tokensOwed0, uint128 tokensOwed1 ); /// @notice Returns data about a specific observation index /// @param index The element of the observations array to fetch /// @dev You most likely want to use #observe() instead of this method to get an observation as of some amount of time /// ago, rather than at a specific index in the array. /// @return blockTimestamp The timestamp of the observation, /// Returns tickCumulative the tick multiplied by seconds elapsed for the life of the pool as of the observation timestamp, /// Returns secondsPerLiquidityCumulativeX128 the seconds per in range liquidity for the life of the pool as of the observation timestamp, /// Returns initialized whether the observation has been initialized and the values are safe to use function observations(uint256 index) external view returns ( uint32 blockTimestamp, int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128, bool initialized ); /// @notice Returns data about reward growth within a tick range. /// RewardGrowthGlobalX128 can be supplied as a parameter for claimable reward calculations. /// @dev Used in gauge reward/earned calculations /// @param tickLower The lower tick of the range /// @param tickUpper The upper tick of the range /// @param _rewardGrowthGlobalX128 a calculated rewardGrowthGlobalX128 or 0 (in case of 0 it means we use the rewardGrowthGlobalX128 from state) /// @return rewardGrowthInsideX128 The reward growth in the range function getRewardGrowthInside(int24 tickLower, int24 tickUpper, uint256 _rewardGrowthGlobalX128) external view returns (uint256 rewardGrowthInsideX128); }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; /// @notice The manager contract to control fees. /// Management functions are omitted. interface IFeeManager { function getSwapFee( address pool, address sender, address tokenIn, address tokenOut, bytes calldata data ) external view returns (uint24); function getProtocolFee(address pool) external view returns (uint24); function getFeeRecipient() external view returns (address); }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; /// @notice The manager contract to control fees. /// Management functions are omitted. interface IFeeManagerV3 { struct FeeData { uint64 gamma; uint24 minFee; uint24 maxFee; } function getSwapFee( address pool, address sender, address tokenIn, address tokenOut, bytes calldata data ) external view returns (uint24); function getProtocolFee(address pool) external view returns (uint24); }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; interface IFeeProvider { /// @dev Returns swap fee for the pool function getSwapFee( address master, address pool, address sender, address tokenIn, address tokenOut, bytes memory data ) external view returns (uint24); }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; interface IFeeRecipient { /// @dev Notifies the fee recipient after sent fees. function notifyFees( uint16 feeType, address token, uint amount, uint feeRate, bytes calldata data ) external; }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; interface IForwarderRegistry { function isForwarder(address forwarder) external view returns (bool); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; pragma abicoder v2; import "./external/IERC721Metadata.sol"; import "./external/IERC721Enumerable.sol"; import "./external/IERC721Permit.sol"; import "./external/IERC4906.sol"; import "./IPeripheryPayments.sol"; import "./IPeripheryImmutableState.sol"; import "../libraries/PoolAddress.sol"; /// @title Non-fungible token for positions /// @notice Wraps CL positions in a non-fungible token interface which allows for them to be transferred /// and authorized. interface INonfungiblePositionManager is IPeripheryPayments, IPeripheryImmutableState, IERC721Metadata, IERC721Enumerable, IERC721Permit, IERC4906 { /// @notice Emitted when liquidity is increased for a position NFT /// @dev Also emitted when a token is minted /// @param tokenId The ID of the token for which liquidity was increased /// @param liquidity The amount by which liquidity for the NFT position was increased /// @param amount0 The amount of token0 that was paid for the increase in liquidity /// @param amount1 The amount of token1 that was paid for the increase in liquidity event IncreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1); /// @notice Emitted when liquidity is decreased for a position NFT /// @param tokenId The ID of the token for which liquidity was decreased /// @param liquidity The amount by which liquidity for the NFT position was decreased /// @param amount0 The amount of token0 that was accounted for the decrease in liquidity /// @param amount1 The amount of token1 that was accounted for the decrease in liquidity event DecreaseLiquidity(uint256 indexed tokenId, uint128 liquidity, uint256 amount0, uint256 amount1); /// @notice Emitted when tokens are collected for a position NFT /// @dev The amounts reported may not be exactly equivalent to the amounts transferred, due to rounding behavior /// @param tokenId The ID of the token for which underlying tokens were collected /// @param recipient The address of the account that received the collected tokens /// @param amount0 The amount of token0 owed to the position that was collected /// @param amount1 The amount of token1 owed to the position that was collected event Collect(uint256 indexed tokenId, address recipient, uint256 amount0, uint256 amount1); /// @notice Emitted when a new Token Descriptor is set /// @param tokenDescriptor Address of the new Token Descriptor event TokenDescriptorChanged(address indexed tokenDescriptor); /// @notice Emitted when a new Owner is set /// @param owner Address of the new Owner event TransferOwnership(address indexed owner); /// @notice Returns the position information associated with a given token ID. /// @dev Throws if the token ID is not valid. /// @param tokenId The ID of the token that represents the position /// @return nonce The nonce for permits /// @return operator The address that is approved for spending /// @return token0 The address of the token0 for a specific pool /// @return token1 The address of the token1 for a specific pool /// @return tickSpacing The tick spacing associated with the pool /// @return tickLower The lower end of the tick range for the position /// @return tickUpper The higher end of the tick range for the position /// @return liquidity The liquidity of the position /// @return feeGrowthInside0LastX128 The fee growth of token0 as of the last action on the individual position /// @return feeGrowthInside1LastX128 The fee growth of token1 as of the last action on the individual position /// @return tokensOwed0 The uncollected amount of token0 owed to the position as of the last computation /// @return tokensOwed1 The uncollected amount of token1 owed to the position as of the last computation function positions(uint256 tokenId) external view returns ( uint96 nonce, address operator, address token0, address token1, int24 tickSpacing, int24 tickLower, int24 tickUpper, uint128 liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint128 tokensOwed0, uint128 tokensOwed1 ); /// @notice Returns the address of the Token Descriptor, that handles generating token URIs for Positions function tokenDescriptor() external view returns (address); struct MintParams { address token0; address token1; int24 tickSpacing; int24 tickLower; int24 tickUpper; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; address recipient; uint256 deadline; uint160 sqrtPriceX96; } /// @notice Creates a new position wrapped in a NFT /// @dev Call this when the pool does exist and is initialized. Note that if the pool is created but not initialized /// a method does not exist, i.e. the pool is assumed to be initialized. /// @param params The params necessary to mint a position, encoded as `MintParams` in calldata /// @return tokenId The ID of the token that represents the minted position /// @return liquidity The amount of liquidity for this position /// @return amount0 The amount of token0 /// @return amount1 The amount of token1 function mint(MintParams calldata params) external payable returns (uint256 tokenId, uint128 liquidity, uint256 amount0, uint256 amount1); struct IncreaseLiquidityParams { uint256 tokenId; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; uint256 deadline; } /// @notice Increases the amount of liquidity in a position, with tokens paid by the `msg.sender` /// @param params tokenId The ID of the token for which liquidity is being increased, /// amount0Desired The desired amount of token0 to be spent, /// amount1Desired The desired amount of token1 to be spent, /// amount0Min The minimum amount of token0 to spend, which serves as a slippage check, /// amount1Min The minimum amount of token1 to spend, which serves as a slippage check, /// deadline The time by which the transaction must be included to effect the change /// @return liquidity The new liquidity amount as a result of the increase /// @return amount0 The amount of token0 to acheive resulting liquidity /// @return amount1 The amount of token1 to acheive resulting liquidity function increaseLiquidity(IncreaseLiquidityParams calldata params) external payable returns (uint128 liquidity, uint256 amount0, uint256 amount1); struct DecreaseLiquidityParams { uint256 tokenId; uint128 liquidity; uint256 amount0Min; uint256 amount1Min; uint256 deadline; } /// @notice Decreases the amount of liquidity in a position and accounts it to the position /// @param params tokenId The ID of the token for which liquidity is being decreased, /// amount The amount by which liquidity will be decreased, /// amount0Min The minimum amount of token0 that should be accounted for the burned liquidity, /// amount1Min The minimum amount of token1 that should be accounted for the burned liquidity, /// deadline The time by which the transaction must be included to effect the change /// @return amount0 The amount of token0 accounted to the position's tokens owed /// @return amount1 The amount of token1 accounted to the position's tokens owed /// @dev The use of this function can cause a loss to users of the NonfungiblePositionManager /// @dev for tokens that have very high decimals. /// @dev The amount of tokens necessary for the loss is: 3.4028237e+38. /// @dev This is equivalent to 1e20 value with 18 decimals. function decreaseLiquidity(DecreaseLiquidityParams calldata params) external payable returns (uint256 amount0, uint256 amount1); struct CollectParams { uint256 tokenId; address recipient; uint128 amount0Max; uint128 amount1Max; } /// @notice Collects up to a maximum amount of fees owed to a specific position to the recipient /// @notice Used to update staked positions before deposit and withdraw /// @param params tokenId The ID of the NFT for which tokens are being collected, /// recipient The account that should receive the tokens, /// amount0Max The maximum amount of token0 to collect, /// amount1Max The maximum amount of token1 to collect /// @return amount0 The amount of fees collected in token0 /// @return amount1 The amount of fees collected in token1 function collect(CollectParams calldata params) external payable returns (uint256 amount0, uint256 amount1); /// @notice Burns a token ID, which deletes it from the NFT contract. The token must have 0 liquidity and all tokens /// must be collected first. /// @param tokenId The ID of the token that is being burned function burn(uint256 tokenId) external payable; /// @notice Sets a new Token Descriptor /// @param _tokenDescriptor Address of the new Token Descriptor to be chosen function setTokenDescriptor(address _tokenDescriptor) external; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./INonfungiblePositionManager.sol"; /// @title Describes position NFT tokens via URI interface INonfungibleTokenPositionDescriptor { /// @notice Produces the URI describing a particular token ID for a position manager /// @dev Note this URI may be a data: URI with the JSON contents directly inlined /// @param positionManager The position manager for which to describe the token /// @param tokenId The ID of the token for which to produce a description, which may not be valid /// @return The URI of the ERC721-compliant metadata function tokenURI(INonfungiblePositionManager positionManager, uint256 tokenId) external view returns (string memory); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Immutable state /// @notice Functions that return immutable state of the router interface IPeripheryImmutableState { /// @return Returns the address of the CL factory function factory() external view returns (address); /// @return Returns the address of WETH9 function WETH9() external view returns (address); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; /// @title Periphery Payments /// @notice Functions to ease deposits and withdrawals of ETH interface IPeripheryPayments { /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH. /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users. /// @param amountMinimum The minimum amount of WETH9 to unwrap /// @param recipient The address receiving ETH function unwrapWETH9(uint256 amountMinimum, address recipient) external payable; /// @notice Refunds any ETH balance held by this contract to the `msg.sender` /// @dev Useful for bundling with mint or increase liquidity that uses ether, or exact output swaps /// that use ether for the input amount function refundETH() external payable; /// @notice Transfers the full amount of a token held by this contract to recipient /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users /// @param token The contract address of the token which will be transferred to `recipient` /// @param amountMinimum The minimum amount of token required for a transfer /// @param recipient The destination address of the token function sweepToken(address token, uint256 amountMinimum, address recipient) external payable; }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; interface IPoolFactory { function master() external view returns (address); function createPool(bytes calldata data) external returns (address pool); }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; import "./IFeeManager.sol"; import "./IForwarderRegistry.sol"; /// @dev The master contract to create pools and manage whitelisted factories. /// Inheriting the fee manager interface to support fee queries. interface IPoolMaster is IFeeManager, IForwarderRegistry { event SetFactoryWhitelisted(address indexed factory, bool whitelisted); event RegisterPool( address indexed factory, address indexed pool, uint16 indexed poolType, bytes data ); event UpdateForwarderRegistry(address indexed newForwarderRegistry); event UpdateFeeManager(address indexed newFeeManager); function wETH() external view returns (address); function feeManager() external view returns (address); function pools(uint) external view returns (address); function poolsLength() external view returns (uint); // Forwarder Registry function setForwarderRegistry(address) external; // Fees function setFeeManager(address) external; // Factories function isFactoryWhitelisted(address) external view returns (bool); function setFactoryWhitelisted(address factory, bool whitelisted) external; // Pools function isPool(address) external view returns (bool); function getPool(bytes32) external view returns (address); function createPool(address factory, bytes calldata data) external returns (address pool); function registerPool(address pool, uint16 poolType, bytes calldata data, address token0, address token1) external; }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; interface IReward { event NotifyReward(address indexed from, address indexed reward, uint256 amount); /// @notice Add rewards for stakers to earn /// @param token Address of token to reward /// @param amount Amount of token to transfer to rewards function notifyRewardAmount(address token, uint256 amount) external; /// @notice Calculate how much in rewards are earned for a specific token and veNFT /// @param token Address of token to fetch rewards of /// @param tokenId Unique identifier of the veNFT /// @return Amount of token earned in rewards function earned(address token, uint256 tokenId) external view returns (uint256); /// @notice Claim the rewards earned by a veNFT staker /// @param tokenId Unique identifier of the veNFT /// @param tokens Array of tokens to claim rewards of function getReward(uint256 tokenId, address[] memory tokens) external; }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity >=0.5.0; pragma abicoder v2; import "./IFeeManagerV3.sol"; interface ISwapFeeHook { function getSwapFeeData( address pool, address sender, address tokenIn, address tokenOut, bytes calldata data, IFeeManagerV3.FeeData calldata feeData ) external view returns (IFeeManagerV3.FeeData memory); }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./ICLPoolConstants.sol"; import "./ICLPoolState.sol"; import "./ICLPoolDerivedState.sol"; import "./ICLPoolActions.sol"; import "./ICLPoolOwnerActions.sol"; import "./ICLPoolEvents.sol"; /// @title The interface for a CL Pool /// @notice A CL pool facilitates swapping and automated market making between any two assets that strictly conform /// to the ERC20 specification /// @dev The pool interface is broken up into many smaller pieces interface ISyncSwapRangePool is ICLPoolConstants, ICLPoolState, ICLPoolDerivedState, ICLPoolActions, ICLPoolEvents, ICLPoolOwnerActions {}
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./IVoter.sol"; /// @title The interface for the CL Factory /// @notice The CL Factory facilitates creation of CL pools and control over the protocol fees interface ISyncSwapRangePoolFactory { /// @notice Emitted when a pool is created /// @param token0 The first token of the pool by address sort order /// @param token1 The second token of the pool by address sort order /// @param tickSpacing The minimum number of ticks between initialized ticks /// @param pool The address of the created pool event PoolCreated( address indexed token0, address indexed token1, int24 indexed tickSpacing, address pool ); /// @notice Emitted when a new tick spacing is enabled for pool creation via the factory /// @param tickSpacing The minimum number of ticks between initialized ticks for pools /// @param fee The default fee for a pool created with a given tickSpacing event TickSpacingEnabled( int24 indexed tickSpacing, uint24 indexed fee ); function master() external view returns (address); /// @notice The address of the pool implementation contract used to deploy proxies / clones /// @return The address of the pool implementation contract function poolImplementation() external view returns (address); //function feeProvider() external view returns (address); function feeManager() external view returns (address); function feeCollector() external view returns (address); function poolCreator() external view returns (address); function gaugeFactory() external view returns (address); /// @notice Returns a default fee for a tick spacing. /// @dev Use getFee for the most up to date fee for a given pool. /// A tick spacing can never be removed, so this value should be hard coded or cached in the calling context /// @param tickSpacing The enabled tick spacing. Returns 0 if not enabled /// @return fee The default fee for the given tick spacing function defaultSwapFeeByTickSpacing(int24 tickSpacing) external view returns (uint24 fee); /// @notice Returns the pool address for a given pair of tokens and a tick spacing, or address 0 if it does not exist /// @dev tokenA and tokenB may be passed in either token0/token1 or token1/token0 order /// @param tokenA The contract address of either token0 or token1 /// @param tokenB The contract address of the other token /// @param tickSpacing The tick spacing of the pool /// @return pool The pool address function getPool(address tokenA, address tokenB, int24 tickSpacing) external view returns (address pool); /// @notice Returns a list of enabled tick spacings. Used to iterate through pools created by the factory /// @dev Tick spacings cannot be removed. Tick spacings are not ordered /// @return List of enabled tick spacings function tickSpacings() external view returns (int24[] memory); /// @notice Return address of pool created by this factory given its `index` /// @param index Index of the pool /// @return The pool address in the given index function allPools(uint256 index) external view returns (address); /// @notice Returns the number of pools created from this factory /// @return Number of pools created from this factory function allPoolsLength() external view returns (uint256); function isPool(address pool) external view returns (bool); /// @notice Used in VotingEscrow to determine if a contract is a valid pool of the factory /// @param pool The address of the pool to check /// @return Whether the pool is a valid pool of the factory function isPair(address pool) external view returns (bool); /// @notice Get swap & flash fee for a given pool. Accounts for default and dynamic fees /// @dev Swap & flash fee is denominated in pips. i.e. 1e-6 /// @param pool The pool to get the swap & flash fee for /// @return The swap & flash fee for the given pool function getSwapFee( address pool, address sender, address tokenIn, address tokenOut, bytes memory data ) external view returns (uint24); function getProtocolFee(address pool) external view returns (uint24); /// @notice Creates a pool for the given two tokens and fee /// @param tokenA One of the two tokens in the desired pool /// @param tokenB The other of the two tokens in the desired pool /// @param tickSpacing The desired tick spacing for the pool /// @param sqrtPriceX96 The initial sqrt price of the pool, as a Q64.96 /// @dev tokenA and tokenB may be passed in either order: token0/token1 or token1/token0. The call will /// revert if the pool already exists, the tick spacing is invalid, or the token arguments are invalid /// @return pool The address of the newly created pool function createPool( address tokenA, address tokenB, int24 tickSpacing, uint160 sqrtPriceX96 ) external returns (address pool); }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; pragma abicoder v2; import "./IVotingEscrow.sol"; interface IVoter { function ve() external view returns (IVotingEscrow); function vote(uint256 _tokenId, address[] calldata _poolVote, uint256[] calldata _weights) external; function gauges(address _pool) external view returns (address); function gaugeToFees(address _gauge) external view returns (address); function gaugeToBribes(address _gauge) external view returns (address); function createGauge(address _poolFactory, address _pool) external returns (address); function distribute(address gauge) external; function factoryRegistry() external view returns (address); /// @dev Utility to distribute to gauges of pools in array. /// @param _gauges Array of gauges to distribute to. function distribute(address[] memory _gauges) external; function isAlive(address _gauge) external view returns (bool); function killGauge(address _gauge) external; function emergencyCouncil() external view returns (address); /// @notice Claim emissions from gauges. /// @param _gauges Array of gauges to collect emissions from. function claimRewards(address[] memory _gauges) external; /// @notice Claim fees for a given NFT. /// @dev Utility to help batch fee claims. /// @param _fees Array of FeesVotingReward contracts to collect from. /// @param _tokens Array of tokens that are used as fees. /// @param _tokenId Id of veNFT that you wish to claim fees for. function claimFees(address[] memory _fees, address[][] memory _tokens, uint256 _tokenId) external; }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; interface IVotingEscrow { function team() external returns (address); /// @notice Deposit `_value` tokens for `msg.sender` and lock for `_lockDuration` /// @param _value Amount to deposit /// @param _lockDuration Number of seconds to lock tokens for (rounded down to nearest week) /// @return TokenId of created veNFT function createLock(uint256 _value, uint256 _lockDuration) external returns (uint256); }
// SPDX-License-Identifier: GPL-2.0-or-later /* * @title Solidity Bytes Arrays Utils * @author Gonçalo Sá <[email protected]> * * @dev Bytes tightly packed arrays utility library for ethereum contracts written in Solidity. * The library lets you concatenate, slice and type cast bytes arrays both in memory and storage. */ pragma solidity >=0.5.0 <0.8.0; library BytesLib { function slice(bytes memory _bytes, uint256 _start, uint256 _length) internal pure returns (bytes memory) { require(_length + 31 >= _length, "SO"); // slice overflow require(_start + _length >= _start, "SO"); // slice overflow require(_bytes.length >= _start + _length, "SOB"); // slice out of bounds bytes memory tempBytes; assembly { switch iszero(_length) case 0 { // Get a location of some free memory and store it in tempBytes as // Solidity does for memory variables. tempBytes := mload(0x40) // The first word of the slice result is potentially a partial // word read from the original array. To read it, we calculate // the length of that partial word and start copying that many // bytes into the array. The first word we copy will start with // data we don't care about, but the last `lengthmod` bytes will // land at the beginning of the contents of the new array. When // we're done copying, we overwrite the full first word with // the actual length of the slice. let lengthmod := and(_length, 31) // The multiplication in the next line is necessary // because when slicing multiples of 32 bytes (lengthmod == 0) // the following copy loop was copying the origin's length // and then ending prematurely not copying everything it should. let mc := add(add(tempBytes, lengthmod), mul(0x20, iszero(lengthmod))) let end := add(mc, _length) for { // The multiplication in the next line has the same exact purpose // as the one above. let cc := add(add(add(_bytes, lengthmod), mul(0x20, iszero(lengthmod))), _start) } lt(mc, end) { mc := add(mc, 0x20) cc := add(cc, 0x20) } { mstore(mc, mload(cc)) } mstore(tempBytes, _length) //update free-memory pointer //allocating the array padded to 32 bytes like the compiler does now mstore(0x40, and(add(mc, 31), not(31))) } //if we want a zero-length slice let's just return a zero-length array default { tempBytes := mload(0x40) //zero out the 32 bytes slice we are about to return //we need to do it because Solidity does not garbage collect mstore(tempBytes, 0) mstore(0x40, add(tempBytes, 0x20)) } } return tempBytes; } function toAddress(bytes memory _bytes, uint256 _start) internal pure returns (address) { require(_start + 20 >= _start, "AO"); // to address overflow require(_bytes.length >= _start + 20, "AOB"); // to address out of bounds address tempAddress; assembly { tempAddress := div(mload(add(add(_bytes, 0x20), _start)), 0x1000000000000000000000000) } return tempAddress; } function toInt24(bytes memory _bytes, uint256 _start) internal pure returns (int24) { require(_start + 3 >= _start, "UO"); // uint24 overflow require(_bytes.length >= _start + 3, "UOB"); // uint24 out of bounds uint24 tempUint; assembly { tempUint := mload(add(add(_bytes, 0x3), _start)) } require(tempUint <= uint24(type(int24).max), "IO"); // int24 overflow return int24(tempUint); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; import "../interfaces/ISyncSwapRangePool.sol"; import "./PoolAddress.sol"; /// @notice Provides validation for callbacks from CL Pools library CallbackValidation { /// @notice Returns the address of a valid CL Pool /// @param factory The contract address of the CL factory /// @param tokenA The contract address of either token0 or token1 /// @param tokenB The contract address of the other token /// @param tickSpacing The tick spacing for the pool /// @return pool The V3 pool contract address function verifyCallback(address factory, address tokenA, address tokenB, int24 tickSpacing) internal view returns (ISyncSwapRangePool pool) { return verifyCallback(factory, PoolAddress.getPoolKey(tokenA, tokenB, tickSpacing)); } /// @notice Returns the address of a valid CL Pool /// @param factory The contract address of the CL factory /// @param poolKey The identifying key of the V3 pool /// @return pool The V3 pool contract address function verifyCallback(address factory, PoolAddress.PoolKey memory poolKey) internal view returns (ISyncSwapRangePool pool) { pool = ISyncSwapRangePool(PoolAddress.computeAddress(factory, poolKey)); require(msg.sender == address(pool)); } }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; library Epoch { uint256 internal constant WEEK = 7 days; /// @dev Returns start of epoch based on current timestamp function epochStart(uint256 timestamp) internal pure returns (uint256) { return timestamp - (timestamp % WEEK); } /// @dev Returns start of next epoch / end of current epoch function epochNext(uint256 timestamp) internal pure returns (uint256) { return timestamp - (timestamp % WEEK) + WEEK; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Collection of functions related to the address type */ library Address { /** * @dev Returns true if `account` is a contract. * * [IMPORTANT] * ==== * It is unsafe to assume that an address for which this function returns * false is an externally-owned account (EOA) and not a contract. * * Among others, `isContract` will return false for the following * types of addresses: * * - an externally-owned account * - a contract in construction * - an address where a contract will be created * - an address where a contract lived, but was destroyed * ==== */ function isContract(address account) internal view returns (bool) { // This method relies on extcodesize, which returns 0 for contracts in // construction, since the code is only stored at the end of the // constructor execution. uint256 size; // solhint-disable-next-line no-inline-assembly assembly { size := extcodesize(account) } return size > 0; } /** * @dev Replacement for Solidity's `transfer`: sends `amount` wei to * `recipient`, forwarding all available gas and reverting on errors. * * https://eips.ethereum.org/EIPS/eip-1884[EIP1884] increases the gas cost * of certain opcodes, possibly making contracts go over the 2300 gas limit * imposed by `transfer`, making them unable to receive funds via * `transfer`. {sendValue} removes this limitation. * * https://diligence.consensys.net/posts/2019/09/stop-using-soliditys-transfer-now/[Learn more]. * * IMPORTANT: because control is transferred to `recipient`, care must be * taken to not create reentrancy vulnerabilities. Consider using * {ReentrancyGuard} or the * https://solidity.readthedocs.io/en/v0.5.11/security-considerations.html#use-the-checks-effects-interactions-pattern[checks-effects-interactions pattern]. */ function sendValue(address payable recipient, uint256 amount) internal { require(address(this).balance >= amount, "Address: insufficient balance"); // solhint-disable-next-line avoid-low-level-calls, avoid-call-value (bool success, ) = recipient.call{ value: amount }(""); require(success, "Address: unable to send value, recipient may have reverted"); } /** * @dev Performs a Solidity function call using a low level `call`. A * plain`call` is an unsafe replacement for a function call: use this * function instead. * * If `target` reverts with a revert reason, it is bubbled up by this * function (like regular Solidity function calls). * * Returns the raw returned data. To convert to the expected return value, * use https://solidity.readthedocs.io/en/latest/units-and-global-variables.html?highlight=abi.decode#abi-encoding-and-decoding-functions[`abi.decode`]. * * Requirements: * * - `target` must be a contract. * - calling `target` with `data` must not revert. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data) internal returns (bytes memory) { return functionCall(target, data, "Address: low-level call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], but with * `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { return functionCallWithValue(target, data, 0, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but also transferring `value` wei to `target`. * * Requirements: * * - the calling contract must have an ETH balance of at least `value`. * - the called Solidity function must be `payable`. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value) internal returns (bytes memory) { return functionCallWithValue(target, data, value, "Address: low-level call with value failed"); } /** * @dev Same as {xref-Address-functionCallWithValue-address-bytes-uint256-}[`functionCallWithValue`], but * with `errorMessage` as a fallback revert reason when `target` reverts. * * _Available since v3.1._ */ function functionCallWithValue(address target, bytes memory data, uint256 value, string memory errorMessage) internal returns (bytes memory) { require(address(this).balance >= value, "Address: insufficient balance for call"); require(isContract(target), "Address: call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.call{ value: value }(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data) internal view returns (bytes memory) { return functionStaticCall(target, data, "Address: low-level static call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a static call. * * _Available since v3.3._ */ function functionStaticCall(address target, bytes memory data, string memory errorMessage) internal view returns (bytes memory) { require(isContract(target), "Address: static call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.staticcall(data); return _verifyCallResult(success, returndata, errorMessage); } /** * @dev Same as {xref-Address-functionCall-address-bytes-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data) internal returns (bytes memory) { return functionDelegateCall(target, data, "Address: low-level delegate call failed"); } /** * @dev Same as {xref-Address-functionCall-address-bytes-string-}[`functionCall`], * but performing a delegate call. * * _Available since v3.4._ */ function functionDelegateCall(address target, bytes memory data, string memory errorMessage) internal returns (bytes memory) { require(isContract(target), "Address: delegate call to non-contract"); // solhint-disable-next-line avoid-low-level-calls (bool success, bytes memory returndata) = target.delegatecall(data); return _verifyCallResult(success, returndata, errorMessage); } function _verifyCallResult(bool success, bytes memory returndata, string memory errorMessage) private pure returns(bytes memory) { if (success) { return returndata; } else { // Look for revert reason and bubble it up if present if (returndata.length > 0) { // The easiest way to bubble the revert reason is using memory via assembly // solhint-disable-next-line no-inline-assembly assembly { let returndata_size := mload(returndata) revert(add(32, returndata), returndata_size) } } else { revert(errorMessage); } } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.5.0; library AddressStringUtil { // converts an address to the uppercase hex string, extracting only len bytes (up to 20, multiple of 2) function toAsciiString(address addr, uint256 len) internal pure returns (string memory) { require(len % 2 == 0 && len > 0 && len <= 40, 'AddressStringUtil: INVALID_LEN'); bytes memory s = new bytes(len); uint256 addrNum = uint256(addr); for (uint256 i = 0; i < len / 2; i++) { // shift right and truncate all but the least significant byte to extract the byte at position 19-i uint8 b = uint8(addrNum >> (8 * (19 - i))); // first hex character is the most significant 4 bits uint8 hi = b >> 4; // second hex character is the least significant 4 bits uint8 lo = b - (hi << 4); s[2 * i] = char(hi); s[2 * i + 1] = char(lo); } return string(s); } // hi and lo are only 4 bits and between 0 and 16 // this method converts those values to the unicode/ascii code point for the hex representation // uses upper case for the characters function char(uint8 b) private pure returns (bytes1 c) { if (b < 10) { return bytes1(b + 0x30); } else { return bytes1(b + 0x37); } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0; /// @title Base64 /// @author Brecht Devos - <[email protected]> /// @notice Provides functions for encoding/decoding base64 library Base64 { string internal constant TABLE_ENCODE = 'ABCDEFGHIJKLMNOPQRSTUVWXYZabcdefghijklmnopqrstuvwxyz0123456789+/'; bytes internal constant TABLE_DECODE = hex"0000000000000000000000000000000000000000000000000000000000000000" hex"00000000000000000000003e0000003f3435363738393a3b3c3d000000000000" hex"00000102030405060708090a0b0c0d0e0f101112131415161718190000000000" hex"001a1b1c1d1e1f202122232425262728292a2b2c2d2e2f303132330000000000"; function encode(bytes memory data) internal pure returns (string memory) { if (data.length == 0) return ''; // load the table into memory string memory table = TABLE_ENCODE; // multiply by 4/3 rounded up uint256 encodedLen = 4 * ((data.length + 2) / 3); // add some extra buffer at the end required for the writing string memory result = new string(encodedLen + 32); assembly { // set the actual output length mstore(result, encodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 3 bytes at a time for {} lt(dataPtr, endPtr) {} { // read 3 bytes dataPtr := add(dataPtr, 3) let input := mload(dataPtr) // write 4 characters mstore8(resultPtr, mload(add(tablePtr, and(shr(18, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr(12, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and(shr( 6, input), 0x3F)))) resultPtr := add(resultPtr, 1) mstore8(resultPtr, mload(add(tablePtr, and( input, 0x3F)))) resultPtr := add(resultPtr, 1) } // padding with '=' switch mod(mload(data), 3) case 1 { mstore(sub(resultPtr, 2), shl(240, 0x3d3d)) } case 2 { mstore(sub(resultPtr, 1), shl(248, 0x3d)) } } return result; } function decode(string memory _data) internal pure returns (bytes memory) { bytes memory data = bytes(_data); if (data.length == 0) return new bytes(0); require(data.length % 4 == 0, "invalid base64 decoder input"); // load the table into memory bytes memory table = TABLE_DECODE; // every 4 characters represent 3 bytes uint256 decodedLen = (data.length / 4) * 3; // add some extra buffer at the end required for the writing bytes memory result = new bytes(decodedLen + 32); assembly { // padding with '=' let lastBytes := mload(add(data, mload(data))) if eq(and(lastBytes, 0xFF), 0x3d) { decodedLen := sub(decodedLen, 1) if eq(and(lastBytes, 0xFFFF), 0x3d3d) { decodedLen := sub(decodedLen, 1) } } // set the actual output length mstore(result, decodedLen) // prepare the lookup table let tablePtr := add(table, 1) // input ptr let dataPtr := data let endPtr := add(dataPtr, mload(data)) // result ptr, jump over length let resultPtr := add(result, 32) // run over the input, 4 characters at a time for {} lt(dataPtr, endPtr) {} { // read 4 characters dataPtr := add(dataPtr, 4) let input := mload(dataPtr) // write 3 bytes let output := add( add( shl(18, and(mload(add(tablePtr, and(shr(24, input), 0xFF))), 0xFF)), shl(12, and(mload(add(tablePtr, and(shr(16, input), 0xFF))), 0xFF))), add( shl( 6, and(mload(add(tablePtr, and(shr( 8, input), 0xFF))), 0xFF)), and(mload(add(tablePtr, and( input , 0xFF))), 0xFF) ) ) mstore(resultPtr, shl(232, output)) resultPtr := add(resultPtr, 3) } } return result; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title BitMath /// @dev This library provides functionality for computing bit properties of an unsigned integer library BitMath { /// @notice Returns the index of the most significant bit of the number, /// where the least significant bit is at index 0 and the most significant bit is at index 255 /// @dev The function satisfies the property: /// x >= 2**mostSignificantBit(x) and x < 2**(mostSignificantBit(x)+1) /// @param x the value for which to compute the most significant bit, must be greater than 0 /// @return r the index of the most significant bit function mostSignificantBit(uint256 x) internal pure returns (uint8 r) { require(x > 0); if (x >= 0x100000000000000000000000000000000) { x >>= 128; r += 128; } if (x >= 0x10000000000000000) { x >>= 64; r += 64; } if (x >= 0x100000000) { x >>= 32; r += 32; } if (x >= 0x10000) { x >>= 16; r += 16; } if (x >= 0x100) { x >>= 8; r += 8; } if (x >= 0x10) { x >>= 4; r += 4; } if (x >= 0x4) { x >>= 2; r += 2; } if (x >= 0x2) r += 1; } /// @notice Returns the index of the least significant bit of the number, /// where the least significant bit is at index 0 and the most significant bit is at index 255 /// @dev The function satisfies the property: /// (x & 2**leastSignificantBit(x)) != 0 and (x & (2**(leastSignificantBit(x)) - 1)) == 0) /// @param x the value for which to compute the least significant bit, must be greater than 0 /// @return r the index of the least significant bit function leastSignificantBit(uint256 x) internal pure returns (uint8 r) { require(x > 0); r = 255; if (x & type(uint128).max > 0) { r -= 128; } else { x >>= 128; } if (x & type(uint64).max > 0) { r -= 64; } else { x >>= 64; } if (x & type(uint32).max > 0) { r -= 32; } else { x >>= 32; } if (x & type(uint16).max > 0) { r -= 16; } else { x >>= 16; } if (x & type(uint8).max > 0) { r -= 8; } else { x >>= 8; } if (x & 0xf > 0) { r -= 4; } else { x >>= 4; } if (x & 0x3 > 0) { r -= 2; } else { x >>= 2; } if (x & 0x1 > 0) r -= 1; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.0; /// @title Function for getting the current chain ID library ChainId { /// @dev Gets the current chain ID /// @return chainId The current chain ID function get() internal pure returns (uint256 chainId) { assembly { chainId := chainid() } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /** * @dev https://eips.ethereum.org/EIPS/eip-1167[EIP 1167] is a standard for * deploying minimal proxy contracts, also known as "clones". * * > To simply and cheaply clone contract functionality in an immutable way, this standard specifies * > a minimal bytecode implementation that delegates all calls to a known, fixed address. * * The library includes functions to deploy a proxy using either `create` (traditional deployment) or `create2` * (salted deterministic deployment). It also includes functions to predict the addresses of clones deployed using the * deterministic method. * * _Available since v3.4._ */ library Clones { /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `master`. * * This function uses the create opcode, which should never revert. */ function clone(address master) internal returns (address instance) { // solhint-disable-next-line no-inline-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, master)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create(0, ptr, 0x37) } require(instance != address(0), "ERC1167: create failed"); } /** * @dev Deploys and returns the address of a clone that mimics the behaviour of `master`. * * This function uses the create2 opcode and a `salt` to deterministically deploy * the clone. Using the same `master` and `salt` multiple time will revert, since * the clones cannot be deployed twice at the same address. */ function cloneDeterministic(address master, bytes32 salt) internal returns (address instance) { // solhint-disable-next-line no-inline-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, master)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf30000000000000000000000000000000000) instance := create2(0, ptr, 0x37, salt) } require(instance != address(0), "ERC1167: create2 failed"); } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address master, bytes32 salt, address deployer) internal pure returns (address predicted) { // solhint-disable-next-line no-inline-assembly assembly { let ptr := mload(0x40) mstore(ptr, 0x3d602d80600a3d3981f3363d3d373d3d3d363d73000000000000000000000000) mstore(add(ptr, 0x14), shl(0x60, master)) mstore(add(ptr, 0x28), 0x5af43d82803e903d91602b57fd5bf3ff00000000000000000000000000000000) mstore(add(ptr, 0x38), shl(0x60, deployer)) mstore(add(ptr, 0x4c), salt) mstore(add(ptr, 0x6c), keccak256(ptr, 0x37)) predicted := keccak256(add(ptr, 0x37), 0x55) } } /** * @dev Computes the address of a clone deployed using {Clones-cloneDeterministic}. */ function predictDeterministicAddress(address master, bytes32 salt) internal view returns (address predicted) { return predictDeterministicAddress(master, salt, address(this)); } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; /* * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with GSN meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address payable) { return msg.sender; } function _msgData() internal view virtual returns (bytes memory) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Library for managing an enumerable variant of Solidity's * https://solidity.readthedocs.io/en/latest/types.html#mapping-types[`mapping`] * type. * * Maps have the following properties: * * - Entries are added, removed, and checked for existence in constant time * (O(1)). * - Entries are enumerated in O(n). No guarantees are made on the ordering. * * ``` * contract Example { * // Add the library methods * using EnumerableMap for EnumerableMap.UintToAddressMap; * * // Declare a set state variable * EnumerableMap.UintToAddressMap private myMap; * } * ``` * * As of v3.0.0, only maps of type `uint256 -> address` (`UintToAddressMap`) are * supported. */ library EnumerableMap { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Map type with // bytes32 keys and values. // The Map implementation uses private functions, and user-facing // implementations (such as Uint256ToAddressMap) are just wrappers around // the underlying Map. // This means that we can only create new EnumerableMaps for types that fit // in bytes32. struct MapEntry { bytes32 _key; bytes32 _value; } struct Map { // Storage of map keys and values MapEntry[] _entries; // Position of the entry defined by a key in the `entries` array, plus 1 // because index 0 means a key is not in the map. mapping (bytes32 => uint256) _indexes; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function _set(Map storage map, bytes32 key, bytes32 value) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) { // Equivalent to !contains(map, key) map._entries.push(MapEntry({ _key: key, _value: value })); // The entry is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value map._indexes[key] = map._entries.length; return true; } else { map._entries[keyIndex - 1]._value = value; return false; } } /** * @dev Removes a key-value pair from a map. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function _remove(Map storage map, bytes32 key) private returns (bool) { // We read and store the key's index to prevent multiple reads from the same storage slot uint256 keyIndex = map._indexes[key]; if (keyIndex != 0) { // Equivalent to contains(map, key) // To delete a key-value pair from the _entries array in O(1), we swap the entry to delete with the last one // in the array, and then remove the last entry (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = keyIndex - 1; uint256 lastIndex = map._entries.length - 1; // When the entry to delete is the last one, the swap operation is unnecessary. However, since this occurs // so rarely, we still do the swap anyway to avoid the gas cost of adding an 'if' statement. MapEntry storage lastEntry = map._entries[lastIndex]; // Move the last entry to the index where the entry to delete is map._entries[toDeleteIndex] = lastEntry; // Update the index for the moved entry map._indexes[lastEntry._key] = toDeleteIndex + 1; // All indexes are 1-based // Delete the slot where the moved entry was stored map._entries.pop(); // Delete the index for the deleted slot delete map._indexes[key]; return true; } else { return false; } } /** * @dev Returns true if the key is in the map. O(1). */ function _contains(Map storage map, bytes32 key) private view returns (bool) { return map._indexes[key] != 0; } /** * @dev Returns the number of key-value pairs in the map. O(1). */ function _length(Map storage map) private view returns (uint256) { return map._entries.length; } /** * @dev Returns the key-value pair stored at position `index` in the map. O(1). * * Note that there are no guarantees on the ordering of entries inside the * array, and it may change when more entries are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Map storage map, uint256 index) private view returns (bytes32, bytes32) { require(map._entries.length > index, "EnumerableMap: index out of bounds"); MapEntry storage entry = map._entries[index]; return (entry._key, entry._value); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. */ function _tryGet(Map storage map, bytes32 key) private view returns (bool, bytes32) { uint256 keyIndex = map._indexes[key]; if (keyIndex == 0) return (false, 0); // Equivalent to contains(map, key) return (true, map._entries[keyIndex - 1]._value); // All indexes are 1-based } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function _get(Map storage map, bytes32 key) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, "EnumerableMap: nonexistent key"); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } /** * @dev Same as {_get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {_tryGet}. */ function _get(Map storage map, bytes32 key, string memory errorMessage) private view returns (bytes32) { uint256 keyIndex = map._indexes[key]; require(keyIndex != 0, errorMessage); // Equivalent to contains(map, key) return map._entries[keyIndex - 1]._value; // All indexes are 1-based } // UintToAddressMap struct UintToAddressMap { Map _inner; } /** * @dev Adds a key-value pair to a map, or updates the value for an existing * key. O(1). * * Returns true if the key was added to the map, that is if it was not * already present. */ function set(UintToAddressMap storage map, uint256 key, address value) internal returns (bool) { return _set(map._inner, bytes32(key), bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the key was removed from the map, that is if it was present. */ function remove(UintToAddressMap storage map, uint256 key) internal returns (bool) { return _remove(map._inner, bytes32(key)); } /** * @dev Returns true if the key is in the map. O(1). */ function contains(UintToAddressMap storage map, uint256 key) internal view returns (bool) { return _contains(map._inner, bytes32(key)); } /** * @dev Returns the number of elements in the map. O(1). */ function length(UintToAddressMap storage map) internal view returns (uint256) { return _length(map._inner); } /** * @dev Returns the element stored at position `index` in the set. O(1). * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintToAddressMap storage map, uint256 index) internal view returns (uint256, address) { (bytes32 key, bytes32 value) = _at(map._inner, index); return (uint256(key), address(uint160(uint256(value)))); } /** * @dev Tries to returns the value associated with `key`. O(1). * Does not revert if `key` is not in the map. * * _Available since v3.4._ */ function tryGet(UintToAddressMap storage map, uint256 key) internal view returns (bool, address) { (bool success, bytes32 value) = _tryGet(map._inner, bytes32(key)); return (success, address(uint160(uint256(value)))); } /** * @dev Returns the value associated with `key`. O(1). * * Requirements: * * - `key` must be in the map. */ function get(UintToAddressMap storage map, uint256 key) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key))))); } /** * @dev Same as {get}, with a custom error message when `key` is not in the map. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryGet}. */ function get(UintToAddressMap storage map, uint256 key, string memory errorMessage) internal view returns (address) { return address(uint160(uint256(_get(map._inner, bytes32(key), errorMessage)))); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (utils/structs/EnumerableSet.sol) // This file was procedurally generated from scripts/generate/templates/EnumerableSet.js. pragma solidity ^0.7.0; /** * @dev Library for managing * https://en.wikipedia.org/wiki/Set_(abstract_data_type)[sets] of primitive * types. * * Sets have the following properties: * * - Elements are added, removed, and checked for existence in constant time * (O(1)). * - Elements are enumerated in O(n). No guarantees are made on the ordering. * * ```solidity * contract Example { * // Add the library methods * using EnumerableSet for EnumerableSet.AddressSet; * * // Declare a set state variable * EnumerableSet.AddressSet private mySet; * } * ``` * * As of v3.3.0, sets of type `bytes32` (`Bytes32Set`), `address` (`AddressSet`) * and `uint256` (`UintSet`) are supported. * * [WARNING] * ==== * Trying to delete such a structure from storage will likely result in data corruption, rendering the structure * unusable. * See https://github.com/ethereum/solidity/pull/11843[ethereum/solidity#11843] for more info. * * In order to clean an EnumerableSet, you can either remove all elements one by one or create a fresh instance using an * array of EnumerableSet. * ==== */ library EnumerableSet { // To implement this library for multiple types with as little code // repetition as possible, we write it in terms of a generic Set type with // bytes32 values. // The Set implementation uses private functions, and user-facing // implementations (such as AddressSet) are just wrappers around the // underlying Set. // This means that we can only create new EnumerableSets for types that fit // in bytes32. struct Set { // Storage of set values bytes32[] _values; // Position of the value in the `values` array, plus 1 because index 0 // means a value is not in the set. mapping(bytes32 => uint256) _indexes; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function _add(Set storage set, bytes32 value) private returns (bool) { if (!_contains(set, value)) { set._values.push(value); // The value is stored at length-1, but we add 1 to all indexes // and use 0 as a sentinel value set._indexes[value] = set._values.length; return true; } else { return false; } } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function _remove(Set storage set, bytes32 value) private returns (bool) { // We read and store the value's index to prevent multiple reads from the same storage slot uint256 valueIndex = set._indexes[value]; if (valueIndex != 0) { // Equivalent to contains(set, value) // To delete an element from the _values array in O(1), we swap the element to delete with the last one in // the array, and then remove the last element (sometimes called as 'swap and pop'). // This modifies the order of the array, as noted in {at}. uint256 toDeleteIndex = valueIndex - 1; uint256 lastIndex = set._values.length - 1; if (lastIndex != toDeleteIndex) { bytes32 lastValue = set._values[lastIndex]; // Move the last value to the index where the value to delete is set._values[toDeleteIndex] = lastValue; // Update the index for the moved value set._indexes[lastValue] = valueIndex; // Replace lastValue's index to valueIndex } // Delete the slot where the moved value was stored set._values.pop(); // Delete the index for the deleted slot delete set._indexes[value]; return true; } else { return false; } } /** * @dev Returns true if the value is in the set. O(1). */ function _contains(Set storage set, bytes32 value) private view returns (bool) { return set._indexes[value] != 0; } /** * @dev Returns the number of values on the set. O(1). */ function _length(Set storage set) private view returns (uint256) { return set._values.length; } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function _at(Set storage set, uint256 index) private view returns (bytes32) { return set._values[index]; } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function _values(Set storage set) private view returns (bytes32[] memory) { return set._values; } // AddressSet struct AddressSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(AddressSet storage set, address value) internal returns (bool) { return _add(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(AddressSet storage set, address value) internal returns (bool) { return _remove(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(AddressSet storage set, address value) internal view returns (bool) { return _contains(set._inner, bytes32(uint256(uint160(value)))); } /** * @dev Returns the number of values in the set. O(1). */ function length(AddressSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(AddressSet storage set, uint256 index) internal view returns (address) { return address(uint160(uint256(_at(set._inner, index)))); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(AddressSet storage set) internal view returns (address[] memory) { bytes32[] memory store = _values(set._inner); address[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } // UintSet struct UintSet { Set _inner; } /** * @dev Add a value to a set. O(1). * * Returns true if the value was added to the set, that is if it was not * already present. */ function add(UintSet storage set, uint256 value) internal returns (bool) { return _add(set._inner, bytes32(value)); } /** * @dev Removes a value from a set. O(1). * * Returns true if the value was removed from the set, that is if it was * present. */ function remove(UintSet storage set, uint256 value) internal returns (bool) { return _remove(set._inner, bytes32(value)); } /** * @dev Returns true if the value is in the set. O(1). */ function contains(UintSet storage set, uint256 value) internal view returns (bool) { return _contains(set._inner, bytes32(value)); } /** * @dev Returns the number of values in the set. O(1). */ function length(UintSet storage set) internal view returns (uint256) { return _length(set._inner); } /** * @dev Returns the value stored at position `index` in the set. O(1). * * Note that there are no guarantees on the ordering of values inside the * array, and it may change when more values are added or removed. * * Requirements: * * - `index` must be strictly less than {length}. */ function at(UintSet storage set, uint256 index) internal view returns (uint256) { return uint256(_at(set._inner, index)); } /** * @dev Return the entire set in an array * * WARNING: This operation will copy the entire storage to memory, which can be quite expensive. This is designed * to mostly be used by view accessors that are queried without any gas fees. Developers should keep in mind that * this function has an unbounded cost, and using it as part of a state-changing function may render the function * uncallable if the set grows to a point where copying to memory consumes too much gas to fit in a block. */ function values(UintSet storage set) internal view returns (uint256[] memory) { bytes32[] memory store = _values(set._inner); uint256[] memory result; /// @solidity memory-safe-assembly assembly { result := store } return result; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../../interfaces/external/IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts may inherit from this and call {_registerInterface} to declare * their support of an interface. */ abstract contract ERC165 is IERC165 { /* * bytes4(keccak256('supportsInterface(bytes4)')) == 0x01ffc9a7 */ bytes4 private constant _INTERFACE_ID_ERC165 = 0x01ffc9a7; /** * @dev Mapping of interface ids to whether or not it's supported. */ mapping(bytes4 => bool) private _supportedInterfaces; constructor () { // Derived contracts need only register support for their own interfaces, // we register support for ERC165 itself here _registerInterface(_INTERFACE_ID_ERC165); } /** * @dev See {IERC165-supportsInterface}. * * Time complexity O(1), guaranteed to always use less than 30 000 gas. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return _supportedInterfaces[interfaceId]; } /** * @dev Registers the contract as an implementer of the interface defined by * `interfaceId`. Support of the actual ERC165 interface is automatic and * registering its interface id is not required. * * See {IERC165-supportsInterface}. * * Requirements: * * - `interfaceId` cannot be the ERC165 invalid interface (`0xffffffff`). */ function _registerInterface(bytes4 interfaceId) internal virtual { require(interfaceId != 0xffffffff, "ERC165: invalid interface id"); _supportedInterfaces[interfaceId] = true; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../../interfaces/external/IERC721.sol"; import "../../interfaces/external/IERC721Metadata.sol"; import "../../interfaces/external/IERC721Enumerable.sol"; import "../../interfaces/external/IERC721Receiver.sol"; import "./ERC165.sol"; import "./SafeMath.sol"; import "./Address.sol"; import "./EnumerableSet.sol"; import "./EnumerableMap.sol"; import "./Strings.sol"; import "./Context.sol"; /** * @title ERC721 Non-Fungible Token Standard basic implementation * @dev see https://eips.ethereum.org/EIPS/eip-721 */ contract ERC721 is Context, ERC165, IERC721, IERC721Metadata, IERC721Enumerable { using SafeMath for uint256; using Address for address; using EnumerableSet for EnumerableSet.UintSet; using EnumerableMap for EnumerableMap.UintToAddressMap; using Strings for uint256; // Equals to `bytes4(keccak256("onERC721Received(address,address,uint256,bytes)"))` // which can be also obtained as `IERC721Receiver(0).onERC721Received.selector` bytes4 private constant _ERC721_RECEIVED = 0x150b7a02; // Mapping from holder address to their (enumerable) set of owned tokens mapping (address => EnumerableSet.UintSet) private _holderTokens; // Enumerable mapping from token ids to their owners EnumerableMap.UintToAddressMap private _tokenOwners; // Mapping from token ID to approved address mapping (uint256 => address) private _tokenApprovals; // Mapping from owner to operator approvals mapping (address => mapping (address => bool)) private _operatorApprovals; // Token name string private _name; // Token symbol string private _symbol; // Optional mapping for token URIs mapping (uint256 => string) private _tokenURIs; // Base URI string private _baseURI; /* * bytes4(keccak256('balanceOf(address)')) == 0x70a08231 * bytes4(keccak256('ownerOf(uint256)')) == 0x6352211e * bytes4(keccak256('approve(address,uint256)')) == 0x095ea7b3 * bytes4(keccak256('getApproved(uint256)')) == 0x081812fc * bytes4(keccak256('setApprovalForAll(address,bool)')) == 0xa22cb465 * bytes4(keccak256('isApprovedForAll(address,address)')) == 0xe985e9c5 * bytes4(keccak256('transferFrom(address,address,uint256)')) == 0x23b872dd * bytes4(keccak256('safeTransferFrom(address,address,uint256)')) == 0x42842e0e * bytes4(keccak256('safeTransferFrom(address,address,uint256,bytes)')) == 0xb88d4fde * * => 0x70a08231 ^ 0x6352211e ^ 0x095ea7b3 ^ 0x081812fc ^ * 0xa22cb465 ^ 0xe985e9c5 ^ 0x23b872dd ^ 0x42842e0e ^ 0xb88d4fde == 0x80ac58cd */ bytes4 private constant _INTERFACE_ID_ERC721 = 0x80ac58cd; /* * bytes4(keccak256('name()')) == 0x06fdde03 * bytes4(keccak256('symbol()')) == 0x95d89b41 * bytes4(keccak256('tokenURI(uint256)')) == 0xc87b56dd * * => 0x06fdde03 ^ 0x95d89b41 ^ 0xc87b56dd == 0x5b5e139f */ bytes4 private constant _INTERFACE_ID_ERC721_METADATA = 0x5b5e139f; /* * bytes4(keccak256('totalSupply()')) == 0x18160ddd * bytes4(keccak256('tokenOfOwnerByIndex(address,uint256)')) == 0x2f745c59 * bytes4(keccak256('tokenByIndex(uint256)')) == 0x4f6ccce7 * * => 0x18160ddd ^ 0x2f745c59 ^ 0x4f6ccce7 == 0x780e9d63 */ bytes4 private constant _INTERFACE_ID_ERC721_ENUMERABLE = 0x780e9d63; /** * @dev Initializes the contract by setting a `name` and a `symbol` to the token collection. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; // register the supported interfaces to conform to ERC721 via ERC165 _registerInterface(_INTERFACE_ID_ERC721); _registerInterface(_INTERFACE_ID_ERC721_METADATA); _registerInterface(_INTERFACE_ID_ERC721_ENUMERABLE); } /** * @dev See {IERC721-balanceOf}. */ function balanceOf(address owner) public view virtual override returns (uint256) { require(owner != address(0), "ERC721: balance query for the zero address"); return _holderTokens[owner].length(); } /** * @dev See {IERC721-ownerOf}. */ function ownerOf(uint256 tokenId) public view virtual override returns (address) { return _tokenOwners.get(tokenId, "ERC721: owner query for nonexistent token"); } /** * @dev See {IERC721Metadata-name}. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev See {IERC721Metadata-symbol}. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev See {IERC721Metadata-tokenURI}. */ function tokenURI(uint256 tokenId) public view virtual override returns (string memory) { require(_exists(tokenId), "ERC721Metadata: URI query for nonexistent token"); string memory _tokenURI = _tokenURIs[tokenId]; string memory base = baseURI(); // If there is no base URI, return the token URI. if (bytes(base).length == 0) { return _tokenURI; } // If both are set, concatenate the baseURI and tokenURI (via abi.encodePacked). if (bytes(_tokenURI).length > 0) { return string(abi.encodePacked(base, _tokenURI)); } // If there is a baseURI but no tokenURI, concatenate the tokenID to the baseURI. return string(abi.encodePacked(base, tokenId.toString())); } /** * @dev Returns the base URI set via {_setBaseURI}. This will be * automatically added as a prefix in {tokenURI} to each token's URI, or * to the token ID if no specific URI is set for that token ID. */ function baseURI() public view virtual returns (string memory) { return _baseURI; } /** * @dev See {IERC721Enumerable-tokenOfOwnerByIndex}. */ function tokenOfOwnerByIndex(address owner, uint256 index) public view virtual override returns (uint256) { return _holderTokens[owner].at(index); } /** * @dev See {IERC721Enumerable-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { // _tokenOwners are indexed by tokenIds, so .length() returns the number of tokenIds return _tokenOwners.length(); } /** * @dev See {IERC721Enumerable-tokenByIndex}. */ function tokenByIndex(uint256 index) public view virtual override returns (uint256) { (uint256 tokenId, ) = _tokenOwners.at(index); return tokenId; } /** * @dev See {IERC721-approve}. */ function approve(address to, uint256 tokenId) public virtual override { address owner = ERC721.ownerOf(tokenId); require(to != owner, "ERC721: approval to current owner"); require(_msgSender() == owner || ERC721.isApprovedForAll(owner, _msgSender()), "ERC721: approve caller is not owner nor approved for all" ); _approve(to, tokenId); } /** * @dev See {IERC721-getApproved}. */ function getApproved(uint256 tokenId) public view virtual override returns (address) { require(_exists(tokenId), "ERC721: approved query for nonexistent token"); return _tokenApprovals[tokenId]; } /** * @dev See {IERC721-setApprovalForAll}. */ function setApprovalForAll(address operator, bool approved) public virtual override { require(operator != _msgSender(), "ERC721: approve to caller"); _operatorApprovals[_msgSender()][operator] = approved; emit ApprovalForAll(_msgSender(), operator, approved); } /** * @dev See {IERC721-isApprovedForAll}. */ function isApprovedForAll(address owner, address operator) public view virtual override returns (bool) { return _operatorApprovals[owner][operator]; } /** * @dev See {IERC721-transferFrom}. */ function transferFrom(address from, address to, uint256 tokenId) public virtual override { //solhint-disable-next-line max-line-length require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _transfer(from, to, tokenId); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId) public virtual override { safeTransferFrom(from, to, tokenId, ""); } /** * @dev See {IERC721-safeTransferFrom}. */ function safeTransferFrom(address from, address to, uint256 tokenId, bytes memory _data) public virtual override { require(_isApprovedOrOwner(_msgSender(), tokenId), "ERC721: transfer caller is not owner nor approved"); _safeTransfer(from, to, tokenId, _data); } /** * @dev Safely transfers `tokenId` token from `from` to `to`, checking first that contract recipients * are aware of the ERC721 protocol to prevent tokens from being forever locked. * * `_data` is additional data, it has no specified format and it is sent in call to `to`. * * This internal function is equivalent to {safeTransferFrom}, and can be used to e.g. * implement alternative mechanisms to perform token transfer, such as signature-based. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `tokenId` token must exist and be owned by `from`. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeTransfer(address from, address to, uint256 tokenId, bytes memory _data) internal virtual { _transfer(from, to, tokenId); require(_checkOnERC721Received(from, to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Returns whether `tokenId` exists. * * Tokens can be managed by their owner or approved accounts via {approve} or {setApprovalForAll}. * * Tokens start existing when they are minted (`_mint`), * and stop existing when they are burned (`_burn`). */ function _exists(uint256 tokenId) internal view virtual returns (bool) { return _tokenOwners.contains(tokenId); } /** * @dev Returns whether `spender` is allowed to manage `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _isApprovedOrOwner(address spender, uint256 tokenId) internal view virtual returns (bool) { require(_exists(tokenId), "ERC721: operator query for nonexistent token"); address owner = ERC721.ownerOf(tokenId); return (spender == owner || getApproved(tokenId) == spender || ERC721.isApprovedForAll(owner, spender)); } /** * @dev Safely mints `tokenId` and transfers it to `to`. * * Requirements: d* * - `tokenId` must not exist. * - If `to` refers to a smart contract, it must implement {IERC721Receiver-onERC721Received}, which is called upon a safe transfer. * * Emits a {Transfer} event. */ function _safeMint(address to, uint256 tokenId) internal virtual { _safeMint(to, tokenId, ""); } /** * @dev Same as {xref-ERC721-_safeMint-address-uint256-}[`_safeMint`], with an additional `data` parameter which is * forwarded in {IERC721Receiver-onERC721Received} to contract recipients. */ function _safeMint(address to, uint256 tokenId, bytes memory _data) internal virtual { _mint(to, tokenId); require(_checkOnERC721Received(address(0), to, tokenId, _data), "ERC721: transfer to non ERC721Receiver implementer"); } /** * @dev Mints `tokenId` and transfers it to `to`. * * WARNING: Usage of this method is discouraged, use {_safeMint} whenever possible * * Requirements: * * - `tokenId` must not exist. * - `to` cannot be the zero address. * * Emits a {Transfer} event. */ function _mint(address to, uint256 tokenId) internal virtual { require(to != address(0), "ERC721: mint to the zero address"); require(!_exists(tokenId), "ERC721: token already minted"); _beforeTokenTransfer(address(0), to, tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(address(0), to, tokenId); } /** * @dev Destroys `tokenId`. * The approval is cleared when the token is burned. * * Requirements: * * - `tokenId` must exist. * * Emits a {Transfer} event. */ function _burn(uint256 tokenId) internal virtual { address owner = ERC721.ownerOf(tokenId); // internal owner _beforeTokenTransfer(owner, address(0), tokenId); // Clear approvals _approve(address(0), tokenId); // Clear metadata (if any) if (bytes(_tokenURIs[tokenId]).length != 0) { delete _tokenURIs[tokenId]; } _holderTokens[owner].remove(tokenId); _tokenOwners.remove(tokenId); emit Transfer(owner, address(0), tokenId); } /** * @dev Transfers `tokenId` from `from` to `to`. * As opposed to {transferFrom}, this imposes no restrictions on msg.sender. * * Requirements: * * - `to` cannot be the zero address. * - `tokenId` token must be owned by `from`. * * Emits a {Transfer} event. */ function _transfer(address from, address to, uint256 tokenId) internal virtual { require(ERC721.ownerOf(tokenId) == from, "ERC721: transfer of token that is not own"); // internal owner require(to != address(0), "ERC721: transfer to the zero address"); _beforeTokenTransfer(from, to, tokenId); // Clear approvals from the previous owner _approve(address(0), tokenId); _holderTokens[from].remove(tokenId); _holderTokens[to].add(tokenId); _tokenOwners.set(tokenId, to); emit Transfer(from, to, tokenId); } /** * @dev Sets `_tokenURI` as the tokenURI of `tokenId`. * * Requirements: * * - `tokenId` must exist. */ function _setTokenURI(uint256 tokenId, string memory _tokenURI) internal virtual { require(_exists(tokenId), "ERC721Metadata: URI set of nonexistent token"); _tokenURIs[tokenId] = _tokenURI; } /** * @dev Internal function to set the base URI for all token IDs. It is * automatically added as a prefix to the value returned in {tokenURI}, * or to the token ID if {tokenURI} is empty. */ function _setBaseURI(string memory baseURI_) internal virtual { _baseURI = baseURI_; } /** * @dev Internal function to invoke {IERC721Receiver-onERC721Received} on a target address. * The call is not executed if the target address is not a contract. * * @param from address representing the previous owner of the given token ID * @param to target address that will receive the tokens * @param tokenId uint256 ID of the token to be transferred * @param _data bytes optional data to send along with the call * @return bool whether the call correctly returned the expected magic value */ function _checkOnERC721Received(address from, address to, uint256 tokenId, bytes memory _data) private returns (bool) { if (!to.isContract()) { return true; } bytes memory returndata = to.functionCall(abi.encodeWithSelector( IERC721Receiver(to).onERC721Received.selector, _msgSender(), from, tokenId, _data ), "ERC721: transfer to non ERC721Receiver implementer"); bytes4 retval = abi.decode(returndata, (bytes4)); return (retval == _ERC721_RECEIVED); } /** * @dev Approve `to` to operate on `tokenId` * * Emits an {Approval} event. */ function _approve(address to, uint256 tokenId) internal virtual { _tokenApprovals[tokenId] = to; emit Approval(ERC721.ownerOf(tokenId), to, tokenId); // internal owner } /** * @dev Hook that is called before any token transfer. This includes minting * and burning. * * Calling conditions: * * - When `from` and `to` are both non-zero, ``from``'s `tokenId` will be * transferred to `to`. * - When `from` is zero, `tokenId` will be minted for `to`. * - When `to` is zero, ``from``'s `tokenId` will be burned. * - `from` cannot be the zero address. * - `to` cannot be the zero address. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 tokenId) internal virtual { } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../../interfaces/external/IERC721Receiver.sol"; /** * @dev Implementation of the {IERC721Receiver} interface. * * Accepts all token transfers. * Make sure the contract is able to use its token with {IERC721-safeTransferFrom}, {IERC721-approve} or {IERC721-setApprovalForAll}. */ contract ERC721Holder is IERC721Receiver { /** * @dev See {IERC721Receiver-onERC721Received}. * * Always returns `IERC721Receiver.onERC721Received.selector`. */ function onERC721Received(address, address, uint256, bytes memory) public virtual override returns (bytes4) { return this.onERC721Received.selector; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; import "../../interfaces/external/IERC1271.sol"; import "../../interfaces/external/IERC721Permit.sol"; import "./Address.sol"; import "./ChainId.sol"; import "./ERC721.sol"; import "./Ownable.sol"; /// @title ERC721 with permit /// @notice Nonfungible tokens that support an approve via signature, i.e. permit abstract contract ERC721Permit is ERC721, IERC721Permit, Ownable { /// @dev Gets the current nonce for a token ID and then increments it, returning the original value function _getAndIncrementNonce(uint256 tokenId) internal virtual returns (uint256); /// @dev The hash of the name used in the permit signature verification bytes32 private immutable nameHash; /// @dev The hash of the version string used in the permit signature verification bytes32 private immutable versionHash; bool public isPermitAllowed; /// @notice Computes the nameHash and versionHash constructor(string memory name_, string memory symbol_, string memory version_) ERC721(name_, symbol_) { nameHash = keccak256(bytes(name_)); versionHash = keccak256(bytes(version_)); } function setPermitAllowed(bool _allowed) external onlyOwner { isPermitAllowed = _allowed; } /// @inheritdoc IERC721Permit function DOMAIN_SEPARATOR() public view override returns (bytes32) { return keccak256( abi.encode( // keccak256('EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)') 0x8b73c3c69bb8fe3d512ecc4cf759cc79239f7b179b0ffacaa9a75d522b39400f, nameHash, versionHash, ChainId.get(), address(this) ) ); } /// @inheritdoc IERC721Permit /// @dev Value is equal to keccak256("Permit(address spender,uint256 tokenId,uint256 nonce,uint256 deadline)"); bytes32 public constant override PERMIT_TYPEHASH = 0x49ecf333e5b8c95c40fdafc95c1ad136e8914a8fb55e9dc8bb01eaa83a2df9ad; /// @inheritdoc IERC721Permit function permit(address spender, uint256 tokenId, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external payable override { require(isPermitAllowed, "PA"); require(block.timestamp <= deadline, "PE"); // permit expired bytes32 digest = keccak256( abi.encodePacked( "\x19\x01", DOMAIN_SEPARATOR(), keccak256(abi.encode(PERMIT_TYPEHASH, spender, tokenId, _getAndIncrementNonce(tokenId), deadline)) ) ); address owner = ownerOf(tokenId); require(spender != owner, "ACO"); // approval to current owner if (Address.isContract(owner)) { require(IERC1271(owner).isValidSignature(digest, abi.encodePacked(r, s, v)) == 0x1626ba7e, "UA"); // unauthorized } else { address recoveredAddress = ecrecover(digest, v, r, s); require(recoveredAddress != address(0), "IS"); // invalid signature require(recoveredAddress == owner, "UA"); // unauthorized } _approve(spender, tokenId); } }
// SPDX-License-Identifier: MIT OR Apache-2.0 pragma solidity >=0.7.6; library ExcessivelySafeCall { uint256 constant LOW_28_MASK = 0x00000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffff; /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _value The value in wei to send to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeCall( address _target, uint256 _gas, uint256 _value, uint16 _maxCopy, bytes memory _calldata ) internal returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := call( _gas, // gas _target, // recipient _value, // ether value add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /// @notice Use when you _really_ really _really_ don't trust the called /// contract. This prevents the called contract from causing reversion of /// the caller in as many ways as we can. /// @dev The main difference between this and a solidity low-level call is /// that we limit the number of bytes that the callee can cause to be /// copied to caller memory. This prevents stupid things like malicious /// contracts returning 10,000,000 bytes causing a local OOG when copying /// to memory. /// @param _target The address to call /// @param _gas The amount of gas to forward to the remote contract /// @param _maxCopy The maximum number of bytes of returndata to copy /// to memory. /// @param _calldata The data to send to the remote contract /// @return success and returndata, as `.call()`. Returndata is capped to /// `_maxCopy` bytes. function excessivelySafeStaticCall( address _target, uint256 _gas, uint16 _maxCopy, bytes memory _calldata ) internal view returns (bool, bytes memory) { // set up for assembly call uint256 _toCopy; bool _success; bytes memory _returnData = new bytes(_maxCopy); // dispatch message to recipient // by assembly calling "handle" function // we call via assembly to avoid memcopying a very large returndata // returned by a malicious contract assembly { _success := staticcall( _gas, // gas _target, // recipient add(_calldata, 0x20), // inloc mload(_calldata), // inlen 0, // outloc 0 // outlen ) // limit our copy to 256 bytes _toCopy := returndatasize() if gt(_toCopy, _maxCopy) { _toCopy := _maxCopy } // Store the length of the copied bytes mstore(_returnData, _toCopy) // copy the bytes from returndata[0:_toCopy] returndatacopy(add(_returnData, 0x20), 0, _toCopy) } return (_success, _returnData); } /** * @notice Swaps function selectors in encoded contract calls * @dev Allows reuse of encoded calldata for functions with identical * argument types but different names. It simply swaps out the first 4 bytes * for the new selector. This function modifies memory in place, and should * only be used with caution. * @param _newSelector The new 4-byte selector * @param _buf The encoded contract args */ function swapSelector(bytes4 _newSelector, bytes memory _buf) internal pure { require(_buf.length >= 4); uint256 _mask = LOW_28_MASK; assembly { // load the first word of let _word := mload(add(_buf, 0x20)) // mask out the top 4 bytes // /x _word := and(_word, _mask) _word := or(_newSelector, _word) mstore(add(_buf, 0x20), _word) } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.4.0; /// @title FixedPoint128 /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format) library FixedPoint128 { uint256 internal constant Q128 = 0x100000000000000000000000000000000; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.4.0; /// @title FixedPoint96 /// @notice A library for handling binary fixed point numbers, see https://en.wikipedia.org/wiki/Q_(number_format) /// @dev Used in SqrtPriceMath.sol library FixedPoint96 { uint8 internal constant RESOLUTION = 96; uint256 internal constant Q96 = 0x1000000000000000000000000; }
// SPDX-License-Identifier: MIT pragma solidity >=0.4.0 <0.8.0; /// @title Contains 512-bit math functions /// @notice Facilitates multiplication and division that can have overflow of an intermediate value without any loss of precision /// @dev Handles "phantom overflow" i.e., allows multiplication and division where an intermediate value overflows 256 bits library FullMath { /// @notice Calculates floor(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result /// @dev Credit to Remco Bloemen under MIT license https://xn--2-umb.com/21/muldiv function mulDiv(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) { // 512-bit multiply [prod1 prod0] = a * b // Compute the product mod 2**256 and mod 2**256 - 1 // then use the Chinese Remainder Theorem to reconstruct // the 512 bit result. The result is stored in two 256 // variables such that product = prod1 * 2**256 + prod0 uint256 prod0; // Least significant 256 bits of the product uint256 prod1; // Most significant 256 bits of the product assembly { let mm := mulmod(a, b, not(0)) prod0 := mul(a, b) prod1 := sub(sub(mm, prod0), lt(mm, prod0)) } // Handle non-overflow cases, 256 by 256 division if (prod1 == 0) { require(denominator > 0); assembly { result := div(prod0, denominator) } return result; } // Make sure the result is less than 2**256. // Also prevents denominator == 0 require(denominator > prod1); /////////////////////////////////////////////// // 512 by 256 division. /////////////////////////////////////////////// // Make division exact by subtracting the remainder from [prod1 prod0] // Compute remainder using mulmod uint256 remainder; assembly { remainder := mulmod(a, b, denominator) } // Subtract 256 bit number from 512 bit number assembly { prod1 := sub(prod1, gt(remainder, prod0)) prod0 := sub(prod0, remainder) } // Factor powers of two out of denominator // Compute largest power of two divisor of denominator. // Always >= 1. uint256 twos = -denominator & denominator; // Divide denominator by power of two assembly { denominator := div(denominator, twos) } // Divide [prod1 prod0] by the factors of two assembly { prod0 := div(prod0, twos) } // Shift in bits from prod1 into prod0. For this we need // to flip `twos` such that it is 2**256 / twos. // If twos is zero, then it becomes one assembly { twos := add(div(sub(0, twos), twos), 1) } prod0 |= prod1 * twos; // Invert denominator mod 2**256 // Now that denominator is an odd number, it has an inverse // modulo 2**256 such that denominator * inv = 1 mod 2**256. // Compute the inverse by starting with a seed that is correct // correct for four bits. That is, denominator * inv = 1 mod 2**4 uint256 inv = (3 * denominator) ^ 2; // Now use Newton-Raphson iteration to improve the precision. // Thanks to Hensel's lifting lemma, this also works in modular // arithmetic, doubling the correct bits in each step. inv *= 2 - denominator * inv; // inverse mod 2**8 inv *= 2 - denominator * inv; // inverse mod 2**16 inv *= 2 - denominator * inv; // inverse mod 2**32 inv *= 2 - denominator * inv; // inverse mod 2**64 inv *= 2 - denominator * inv; // inverse mod 2**128 inv *= 2 - denominator * inv; // inverse mod 2**256 // Because the division is now exact we can divide by multiplying // with the modular inverse of denominator. This will give us the // correct result modulo 2**256. Since the precoditions guarantee // that the outcome is less than 2**256, this is the final result. // We don't need to compute the high bits of the result and prod1 // is no longer required. result = prod0 * inv; return result; } /// @notice Calculates ceil(a×b÷denominator) with full precision. Throws if result overflows a uint256 or denominator == 0 /// @param a The multiplicand /// @param b The multiplier /// @param denominator The divisor /// @return result The 256-bit result function mulDivRoundingUp(uint256 a, uint256 b, uint256 denominator) internal pure returns (uint256 result) { result = mulDiv(a, b, denominator); if (mulmod(a, b, denominator) > 0) { require(result < type(uint256).max); result++; } } }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; library HexStrings { bytes16 internal constant ALPHABET = "0123456789abcdef"; /// @notice Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. /// @dev Credit to Open Zeppelin under MIT license https://github.com/OpenZeppelin/openzeppelin-contracts/blob/243adff49ce1700e0ecb99fe522fb16cff1d1ddc/contracts/utils/Strings.sol#L55 function toHexString(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length + 2); buffer[0] = "0"; buffer[1] = "x"; for (uint256 i = 2 * length + 1; i > 1; --i) { buffer[i] = ALPHABET[value & 0xf]; value >>= 4; } require(value == 0, "HLI"); // hex length insufficient return string(buffer); } function toHexStringNoPrefix(uint256 value, uint256 length) internal pure returns (string memory) { bytes memory buffer = new bytes(2 * length); for (uint256 i = buffer.length; i > 0; i--) { buffer[i - 1] = ALPHABET[value & 0xf]; value >>= 4; } return string(buffer); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.0; /// @title Optimized overflow and underflow safe math operations /// @notice Contains methods for doing math operations that revert on overflow or underflow for minimal gas cost library LowGasSafeMath { /// @notice Returns x + y, reverts if sum overflows uint256 /// @param x The augend /// @param y The addend /// @return z The sum of x and y function add(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x + y) >= x); } /// @notice Returns x - y, reverts if underflows /// @param x The minuend /// @param y The subtrahend /// @return z The difference of x and y function sub(uint256 x, uint256 y) internal pure returns (uint256 z) { require((z = x - y) <= x); } /// @notice Returns x * y, reverts if overflows /// @param x The multiplicand /// @param y The multiplier /// @return z The product of x and y function mul(uint256 x, uint256 y) internal pure returns (uint256 z) { require(x == 0 || (z = x * y) / x == y); } /// @notice Returns x + y, reverts if overflows or underflows /// @param x The augend /// @param y The addend /// @return z The sum of x and y function add(int256 x, int256 y) internal pure returns (int256 z) { require((z = x + y) >= x == (y >= 0)); } /// @notice Returns x - y, reverts if overflows or underflows /// @param x The minuend /// @param y The subtrahend /// @return z The difference of x and y function sub(int256 x, int256 y) internal pure returns (int256 z) { require((z = x - y) <= x == (y >= 0)); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "../../interfaces/external/IMulticall.sol"; /// @title Multicall /// @notice Enables calling multiple methods in a single call to the contract abstract contract Multicall is IMulticall { /// @inheritdoc IMulticall function multicall(bytes[] calldata data) public payable override returns (bytes[] memory results) { results = new bytes[](data.length); for (uint256 i = 0; i < data.length; i++) { (bool success, bytes memory result) = address(this).delegatecall(data[i]); if (!success) { // Next 5 lines from https://ethereum.stackexchange.com/a/83577 if (result.length < 68) revert(); assembly { result := add(result, 0x04) } revert(abi.decode(result, (string))); } results[i] = result; } } }
// SPDX-License-Identifier: MIT pragma solidity >=0.6.0 <0.8.0; import "./Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor () { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Contract module that helps prevent reentrant calls to a function. * * Inheriting from `ReentrancyGuard` will make the {nonReentrant} modifier * available, which can be applied to functions to make sure there are no nested * (reentrant) calls to them. * * Note that because there is a single `nonReentrant` guard, functions marked as * `nonReentrant` may not call one another. This can be worked around by making * those functions `private`, and then adding `external` `nonReentrant` entry * points to them. * * TIP: If you would like to learn more about reentrancy and alternative ways * to protect against it, check out our blog post * https://blog.openzeppelin.com/reentrancy-after-istanbul/[Reentrancy After Istanbul]. */ abstract contract ReentrancyGuard { // Booleans are more expensive than uint256 or any type that takes up a full // word because each write operation emits an extra SLOAD to first read the // slot's contents, replace the bits taken up by the boolean, and then write // back. This is the compiler's defense against contract upgrades and // pointer aliasing, and it cannot be disabled. // The values being non-zero value makes deployment a bit more expensive, // but in exchange the refund on every call to nonReentrant will be lower in // amount. Since refunds are capped to a percentage of the total // transaction's gas, it is best to keep them low in cases like this one, to // increase the likelihood of the full refund coming into effect. uint256 private constant _NOT_ENTERED = 1; uint256 private constant _ENTERED = 2; uint256 public _status; constructor () { _status = _NOT_ENTERED; } /** * @dev Prevents a contract from calling itself, directly or indirectly. * Calling a `nonReentrant` function from another `nonReentrant` * function is not supported. It is possible to prevent this from happening * by making the `nonReentrant` function external, and make it call a * `private` function that does the actual work. */ modifier nonReentrant() { // On the first call to nonReentrant, _notEntered will be true require(_status != _ENTERED, "ReentrancyGuard: reentrant call"); // Any calls to nonReentrant after this point will fail _status = _ENTERED; _; // By storing the original value once again, a refund is triggered (see // https://eips.ethereum.org/EIPS/eip-2200) _status = _NOT_ENTERED; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Safe casting methods /// @notice Contains methods for safely casting between types library SafeCast { /// @notice Cast a uint256 to a uint160, revert on overflow /// @param y The uint256 to be downcasted /// @return z The downcasted integer, now type uint160 function toUint160(uint256 y) internal pure returns (uint160 z) { require((z = uint160(y)) == y); } /// @notice Cast a int256 to a int128, revert on overflow or underflow /// @param y The int256 to be downcasted /// @return z The downcasted integer, now type int128 function toInt128(int256 y) internal pure returns (int128 z) { require((z = int128(y)) == y); } /// @notice Cast a uint256 to a int256, revert on overflow /// @param y The uint256 to be casted /// @return z The casted integer, now type int256 function toInt256(uint256 y) internal pure returns (int256 z) { require(y < 2 ** 255); z = int256(y); } /// @notice Cast a uint128 to an int128, revert on overflow /// @param y The uint128 to be cast /// @return z The cast integer, now type int128 function toInt128(uint128 y) internal pure returns (int128 z) { require(y < 2 ** 127); z = int128(y); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Safe casting methods /// @notice Contains methods for safely casting between types library SafeCast128 { /// @notice Cast a uint128 to an int128, revert on overflow /// @param y The uint128 to be cast /// @return z The cast integer, now type int128 function toInt128(uint128 y) internal pure returns (int128 z) { require(y < 2 ** 127); z = int128(y); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; import "../../interfaces/external/IERC20.sol"; import "./SafeMath.sol"; import "./Address.sol"; /** * @title SafeERC20 * @dev Wrappers around ERC20 operations that throw on failure (when the token * contract returns false). Tokens that return no value (and instead revert or * throw on failure) are also supported, non-reverting calls are assumed to be * successful. * To use this library you can add a `using SafeERC20 for IERC20;` statement to your contract, * which allows you to call the safe operations as `token.safeTransfer(...)`, etc. */ library SafeERC20 { using SafeMath for uint256; using Address for address; function safeTransfer(IERC20 token, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transfer.selector, to, value)); } function safeTransferFrom(IERC20 token, address from, address to, uint256 value) internal { _callOptionalReturn(token, abi.encodeWithSelector(token.transferFrom.selector, from, to, value)); } /** * @dev Deprecated. This function has issues similar to the ones found in * {IERC20-approve}, and its usage is discouraged. * * Whenever possible, use {safeIncreaseAllowance} and * {safeDecreaseAllowance} instead. */ function safeApprove(IERC20 token, address spender, uint256 value) internal { // safeApprove should only be called when setting an initial allowance, // or when resetting it to zero. To increase and decrease it, use // 'safeIncreaseAllowance' and 'safeDecreaseAllowance' // solhint-disable-next-line max-line-length require((value == 0) || (token.allowance(address(this), spender) == 0), "SafeERC20: approve from non-zero to non-zero allowance" ); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, value)); } function safeIncreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).add(value); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } function safeDecreaseAllowance(IERC20 token, address spender, uint256 value) internal { uint256 newAllowance = token.allowance(address(this), spender).sub(value, "SafeERC20: decreased allowance below zero"); _callOptionalReturn(token, abi.encodeWithSelector(token.approve.selector, spender, newAllowance)); } /** * @dev Imitates a Solidity high-level call (i.e. a regular function call to a contract), relaxing the requirement * on the return value: the return value is optional (but if data is returned, it must not be false). * @param token The token targeted by the call. * @param data The call data (encoded using abi.encode or one of its variants). */ function _callOptionalReturn(IERC20 token, bytes memory data) private { // We need to perform a low level call here, to bypass Solidity's return data size checking mechanism, since // we're implementing it ourselves. We use {Address.functionCall} to perform this call, which verifies that // the target address contains contract code and also asserts for success in the low-level call. bytes memory returndata = address(token).functionCall(data, "SafeERC20: low-level call failed"); if (returndata.length > 0) { // Return data is optional // solhint-disable-next-line max-line-length require(abi.decode(returndata, (bool)), "SafeERC20: ERC20 operation did not succeed"); } } }
// SPDX-License-Identifier: GPL-3.0-or-later pragma solidity >=0.5.0; import './AddressStringUtil.sol'; // produces token descriptors from inconsistent or absent ERC20 symbol implementations that can return string or bytes32 // this library will always produce a string symbol to represent the token library SafeERC20Namer { function bytes32ToString(bytes32 x) private pure returns (string memory) { bytes memory bytesString = new bytes(32); uint256 charCount = 0; for (uint256 j = 0; j < 32; j++) { bytes1 char = x[j]; if (char != 0) { bytesString[charCount] = char; charCount++; } } bytes memory bytesStringTrimmed = new bytes(charCount); for (uint256 j = 0; j < charCount; j++) { bytesStringTrimmed[j] = bytesString[j]; } return string(bytesStringTrimmed); } // assumes the data is in position 2 function parseStringData(bytes memory b) private pure returns (string memory) { uint256 charCount = 0; // first parse the charCount out of the data for (uint256 i = 32; i < 64; i++) { charCount <<= 8; charCount += uint8(b[i]); } bytes memory bytesStringTrimmed = new bytes(charCount); for (uint256 i = 0; i < charCount; i++) { bytesStringTrimmed[i] = b[i + 64]; } return string(bytesStringTrimmed); } // uses a heuristic to produce a token name from the address // the heuristic returns the full hex of the address string in upper case function addressToName(address token) private pure returns (string memory) { return AddressStringUtil.toAsciiString(token, 40); } // uses a heuristic to produce a token symbol from the address // the heuristic returns the first 6 hex of the address string in upper case function addressToSymbol(address token) private pure returns (string memory) { return AddressStringUtil.toAsciiString(token, 6); } // calls an external view token contract method that returns a symbol or name, and parses the output into a string function callAndParseStringReturn(address token, bytes4 selector) private view returns (string memory) { (bool success, bytes memory data) = token.staticcall(abi.encodeWithSelector(selector)); // if not implemented, or returns empty data, return empty string if (!success || data.length == 0) { return ''; } // bytes32 data always has length 32 if (data.length == 32) { bytes32 decoded = abi.decode(data, (bytes32)); return bytes32ToString(decoded); } else if (data.length > 64) { return abi.decode(data, (string)); } return ''; } // attempts to extract the token symbol. if it does not implement symbol, returns a symbol derived from the address function tokenSymbol(address token) internal view returns (string memory) { // 0x95d89b41 = bytes4(keccak256("symbol()")) string memory symbol = callAndParseStringReturn(token, 0x95d89b41); if (bytes(symbol).length == 0) { // fallback to 6 uppercase hex of address return addressToSymbol(token); } return symbol; } // attempts to extract the token name. if it does not implement name, returns a name derived from the address function tokenName(address token) internal view returns (string memory) { // 0x06fdde03 = bytes4(keccak256("name()")) string memory name = callAndParseStringReturn(token, 0x06fdde03); if (bytes(name).length == 0) { // fallback to full hex of address return addressToName(token); } return name; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev Wrappers over Solidity's arithmetic operations with added overflow * checks. * * Arithmetic operations in Solidity wrap on overflow. This can easily result * in bugs, because programmers usually assume that an overflow raises an * error, which is the standard behavior in high level programming languages. * `SafeMath` restores this intuition by reverting the transaction when an * operation overflows. * * Using this library instead of the unchecked operations eliminates an entire * class of bugs, so it's recommended to use it always. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b > a) return (false, 0); return (true, a - b); } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a / b); } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { if (b == 0) return (false, 0); return (true, a % b); } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { require(b <= a, "SafeMath: subtraction overflow"); return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { if (a == 0) return 0; uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: division by zero"); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { require(b > 0, "SafeMath: modulo by zero"); return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b <= a, errorMessage); return a - b; } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryDiv}. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b, string memory errorMessage) internal pure returns (uint256) { require(b > 0, errorMessage); return a % b; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "../../interfaces/external/IERC20.sol"; import "../../interfaces/external/IERC20Permit.sol"; import "../../interfaces/external/ISelfPermit.sol"; import "../../interfaces/external/IERC20PermitAllowed.sol"; /// @title Self Permit /// @notice Functionality to call permit on any EIP-2612-compliant token for use in the route /// @dev These functions are expected to be embedded in multicalls to allow EOAs to approve a contract and call a function /// that requires an approval in a single transaction. abstract contract SelfPermit is ISelfPermit { /// @inheritdoc ISelfPermit function selfPermit(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) public payable override { IERC20Permit(token).permit(msg.sender, address(this), value, deadline, v, r, s); } /// @inheritdoc ISelfPermit function selfPermitIfNecessary(address token, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s) external payable override { if (IERC20(token).allowance(msg.sender, address(this)) < value) selfPermit(token, value, deadline, v, r, s); } /// @inheritdoc ISelfPermit function selfPermitAllowed(address token, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) public payable override { IERC20PermitAllowed(token).permit(msg.sender, address(this), nonce, expiry, true, v, r, s); } /// @inheritdoc ISelfPermit function selfPermitAllowedIfNecessary(address token, uint256 nonce, uint256 expiry, uint8 v, bytes32 r, bytes32 s) external payable override { if (IERC20(token).allowance(msg.sender, address(this)) < type(uint256).max) { selfPermitAllowed(token, nonce, expiry, v, r, s); } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @title SignedSafeMath * @dev Signed math operations with safety checks that revert on error. */ library SignedSafeMath { int256 constant private _INT256_MIN = -2**255; /** * @dev Returns the multiplication of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } require(!(a == -1 && b == _INT256_MIN), "SignedSafeMath: multiplication overflow"); int256 c = a * b; require(c / a == b, "SignedSafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two signed integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(int256 a, int256 b) internal pure returns (int256) { require(b != 0, "SignedSafeMath: division by zero"); require(!(b == -1 && a == _INT256_MIN), "SignedSafeMath: division overflow"); int256 c = a / b; return c; } /** * @dev Returns the subtraction of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a), "SignedSafeMath: subtraction overflow"); return c; } /** * @dev Returns the addition of two signed integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a), "SignedSafeMath: addition overflow"); return c; } }
// SPDX-License-Identifier: MIT pragma solidity ^0.7.0; /** * @dev String operations. */ library Strings { /** * @dev Converts a `uint256` to its ASCII `string` representation. */ function toString(uint256 value) internal pure returns (string memory) { // Inspired by OraclizeAPI's implementation - MIT licence // https://github.com/oraclize/ethereum-api/blob/b42146b063c7d6ee1358846c198246239e9360e8/oraclizeAPI_0.4.25.sol if (value == 0) { return "0"; } uint256 temp = value; uint256 digits; while (temp != 0) { digits++; temp /= 10; } bytes memory buffer = new bytes(digits); uint256 index = digits - 1; temp = value; while (temp != 0) { buffer[index--] = bytes1(uint8(48 + temp % 10)); temp /= 10; } return string(buffer); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.6.0; import "../../interfaces/external/IERC20Minimal.sol"; /// @title TransferHelper /// @notice Contains helper methods for interacting with ERC20 tokens that do not consistently return true/false library TransferHelper { /// @notice Transfers tokens from msg.sender to a recipient /// @dev Calls transfer on token contract, errors with TF if transfer fails /// @param token The contract address of the token which will be transferred /// @param to The recipient of the transfer /// @param value The value of the transfer function safeTransfer(address token, address to, uint256 value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20Minimal.transfer.selector, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "TF"); } /// @notice Transfers tokens from the targeted address to the given destination /// @notice Errors with 'STF' if transfer fails /// @param token The contract address of the token to be transferred /// @param from The originating address from which the tokens will be transferred /// @param to The destination address of the transfer /// @param value The amount to be transferred function safeTransferFrom(address token, address from, address to, uint256 value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20Minimal.transferFrom.selector, from, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "STF"); } /// @notice Approves the stipulated contract to spend the given allowance in the given token /// @dev Errors with 'SA' if transfer fails /// @param token The contract address of the token to be approved /// @param to The target of the approval /// @param value The amount of the given token the target will be allowed to spend function safeApprove(address token, address to, uint256 value) internal { (bool success, bytes memory data) = token.call(abi.encodeWithSelector(IERC20Minimal.approve.selector, to, value)); require(success && (data.length == 0 || abi.decode(data, (bool))), "SA"); } /// @notice Transfers ETH to the recipient address /// @dev Fails with `STE` /// @param to The destination of the transfer /// @param value The value to be transferred function safeTransferETH(address to, uint256 value) internal { (bool success,) = to.call{value: value}(""); require(success, "STE"); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Math functions that do not check inputs or outputs /// @notice Contains methods that perform common math functions but do not do any overflow or underflow checks library UnsafeMath { /// @notice Returns ceil(x / y) /// @dev division by 0 has unspecified behavior, and must be checked externally /// @param x The dividend /// @param y The divisor /// @return z The quotient, ceil(x / y) function divRoundingUp(uint256 x, uint256 y) internal pure returns (uint256 z) { assembly { z := add(div(x, y), gt(mod(x, y), 0)) } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./external/FullMath.sol"; import "./external/FixedPoint96.sol"; /// @title Liquidity amount functions /// @notice Provides functions for computing liquidity amounts from token amounts and prices library LiquidityAmounts { /// @notice Downcasts uint256 to uint128 /// @param x The uint258 to be downcasted /// @return y The passed value, downcasted to uint128 function toUint128(uint256 x) private pure returns (uint128 y) { require((y = uint128(x)) == x); } /// @notice Computes the amount of liquidity received for a given amount of token0 and price range /// @dev Calculates amount0 * (sqrt(upper) * sqrt(lower)) / (sqrt(upper) - sqrt(lower)) /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param amount0 The amount0 being sent in /// @return liquidity The amount of returned liquidity function getLiquidityForAmount0(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount0) internal pure returns (uint128 liquidity) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); uint256 intermediate = FullMath.mulDiv(sqrtRatioAX96, sqrtRatioBX96, FixedPoint96.Q96); return toUint128(FullMath.mulDiv(amount0, intermediate, sqrtRatioBX96 - sqrtRatioAX96)); } /// @notice Computes the amount of liquidity received for a given amount of token1 and price range /// @dev Calculates amount1 / (sqrt(upper) - sqrt(lower)). /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param amount1 The amount1 being sent in /// @return liquidity The amount of returned liquidity function getLiquidityForAmount1(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount1) internal pure returns (uint128 liquidity) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return toUint128(FullMath.mulDiv(amount1, FixedPoint96.Q96, sqrtRatioBX96 - sqrtRatioAX96)); } /// @notice Computes the maximum amount of liquidity received for a given amount of token0, token1, the current /// pool prices and the prices at the tick boundaries /// @param sqrtRatioX96 A sqrt price representing the current pool prices /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param amount0 The amount of token0 being sent in /// @param amount1 The amount of token1 being sent in /// @return liquidity The maximum amount of liquidity received function getLiquidityForAmounts( uint160 sqrtRatioX96, uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint256 amount0, uint256 amount1 ) internal pure returns (uint128 liquidity) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); if (sqrtRatioX96 <= sqrtRatioAX96) { liquidity = getLiquidityForAmount0(sqrtRatioAX96, sqrtRatioBX96, amount0); } else if (sqrtRatioX96 < sqrtRatioBX96) { uint128 liquidity0 = getLiquidityForAmount0(sqrtRatioX96, sqrtRatioBX96, amount0); uint128 liquidity1 = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioX96, amount1); liquidity = liquidity0 < liquidity1 ? liquidity0 : liquidity1; } else { liquidity = getLiquidityForAmount1(sqrtRatioAX96, sqrtRatioBX96, amount1); } } /// @notice Computes the amount of token0 for a given amount of liquidity and a price range /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param liquidity The liquidity being valued /// @return amount0 The amount of token0 function getAmount0ForLiquidity(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity) internal pure returns (uint256 amount0) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return FullMath.mulDiv( uint256(liquidity) << FixedPoint96.RESOLUTION, sqrtRatioBX96 - sqrtRatioAX96, sqrtRatioBX96 ) / sqrtRatioAX96; } /// @notice Computes the amount of token1 for a given amount of liquidity and a price range /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param liquidity The liquidity being valued /// @return amount1 The amount of token1 function getAmount1ForLiquidity(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity) internal pure returns (uint256 amount1) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return FullMath.mulDiv(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96); } /// @notice Computes the token0 and token1 value for a given amount of liquidity, the current /// pool prices and the prices at the tick boundaries /// @param sqrtRatioX96 A sqrt price representing the current pool prices /// @param sqrtRatioAX96 A sqrt price representing the first tick boundary /// @param sqrtRatioBX96 A sqrt price representing the second tick boundary /// @param liquidity The liquidity being valued /// @return amount0 The amount of token0 /// @return amount1 The amount of token1 function getAmountsForLiquidity( uint160 sqrtRatioX96, uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity ) internal pure returns (uint256 amount0, uint256 amount1) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); if (sqrtRatioX96 <= sqrtRatioAX96) { amount0 = getAmount0ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity); } else if (sqrtRatioX96 < sqrtRatioBX96) { amount0 = getAmount0ForLiquidity(sqrtRatioX96, sqrtRatioBX96, liquidity); amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioX96, liquidity); } else { amount1 = getAmount1ForLiquidity(sqrtRatioAX96, sqrtRatioBX96, liquidity); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; /// @title Math library for liquidity library LiquidityMath { /// @notice Add a signed liquidity delta to liquidity and revert if it overflows or underflows /// @param x The liquidity before change /// @param y The delta by which liquidity should be changed /// @return z The liquidity delta function addDelta(uint128 x, int128 y) internal pure returns (uint128 z) { if (y < 0) { require((z = x - uint128(-y)) < x, "S"); } else { require((z = x + uint128(y)) >= x, "A"); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.0; pragma abicoder v2; import "./external/BitMath.sol"; import "./external/FullMath.sol"; import "./external/HexStrings.sol"; import "./external/Strings.sol"; import "./external/SafeMath.sol"; import "./external/SignedSafeMath.sol"; import "./TickMath.sol"; library NFTDescriptor { using TickMath for int24; using Strings for uint256; using SafeMath for uint256; using SafeMath for uint160; using SafeMath for uint8; using SignedSafeMath for int256; using HexStrings for uint256; uint256 constant sqrt10X128 = 1076067327063303206878105757264492625226; struct ConstructTokenURIParams { uint256 tokenId; address quoteTokenAddress; address baseTokenAddress; string quoteTokenSymbol; string baseTokenSymbol; uint8 quoteTokenDecimals; uint8 baseTokenDecimals; bool flipRatio; int24 tickLower; int24 tickUpper; int24 tickCurrent; int24 tickSpacing; address poolAddress; } function constructTokenURI(ConstructTokenURIParams memory params) internal pure returns (string memory) { string memory name = generateName(params); string memory descriptionPartOne = generateDescriptionPartOne( escapeQuotes(params.quoteTokenSymbol), escapeQuotes(params.baseTokenSymbol), addressToString(params.poolAddress) ); string memory descriptionPartTwo = generateDescriptionPartTwo( params.tokenId.toString(), escapeQuotes(params.baseTokenSymbol), addressToString(params.quoteTokenAddress), addressToString(params.baseTokenAddress), (uint256(params.tickSpacing)).toString() ); return string( abi.encodePacked('"name":"', name, '", "description":"', descriptionPartOne, descriptionPartTwo, '"') ); } function escapeQuotes(string memory symbol) internal pure returns (string memory) { bytes memory symbolBytes = bytes(symbol); uint8 quotesCount = 0; for (uint8 i = 0; i < symbolBytes.length; i++) { if (symbolBytes[i] == '"') { quotesCount++; } } if (quotesCount > 0) { bytes memory escapedBytes = new bytes(symbolBytes.length + (quotesCount)); uint256 index; for (uint8 i = 0; i < symbolBytes.length; i++) { if (symbolBytes[i] == '"') { escapedBytes[index++] = "\\"; } escapedBytes[index++] = symbolBytes[i]; } return string(escapedBytes); } return symbol; } function generateDescriptionPartOne( string memory quoteTokenSymbol, string memory baseTokenSymbol, string memory poolAddress ) private pure returns (string memory) { return string( abi.encodePacked( "This NFT represents a liquidity position in a SyncSwap ", quoteTokenSymbol, "-", baseTokenSymbol, " pool. ", "The owner of this NFT can modify or redeem the position.\\n", "\\nPool Address: ", poolAddress, "\\n", quoteTokenSymbol ) ); } function generateDescriptionPartTwo( string memory tokenId, string memory baseTokenSymbol, string memory quoteTokenAddress, string memory baseTokenAddress, string memory tickSpacing ) private pure returns (string memory) { return string( abi.encodePacked( " Address: ", quoteTokenAddress, "\\n", baseTokenSymbol, " Address: ", baseTokenAddress, "\\nTick Spacing: ", tickSpacing, "\\nToken ID: ", tokenId, "\\n\\n", unicode"⚠️ DISCLAIMER: Due diligence is imperative when assessing this NFT. Make sure token addresses match the expected tokens, as token symbols may be imitated." ) ); } function generateName(ConstructTokenURIParams memory params) private pure returns (string memory) { return string( abi.encodePacked( "CL - ", escapeQuotes(params.quoteTokenSymbol), "/", escapeQuotes(params.baseTokenSymbol), " - ", tickToDecimalString( !params.flipRatio ? params.tickLower : params.tickUpper, params.tickSpacing, params.baseTokenDecimals, params.quoteTokenDecimals, params.flipRatio ), "<>", tickToDecimalString( !params.flipRatio ? params.tickUpper : params.tickLower, params.tickSpacing, params.baseTokenDecimals, params.quoteTokenDecimals, params.flipRatio ) ) ); } struct DecimalStringParams { // significant figures of decimal uint256 sigfigs; // length of decimal string uint8 bufferLength; // ending index for significant figures (funtion works backwards when copying sigfigs) uint8 sigfigIndex; // index of decimal place (0 if no decimal) uint8 decimalIndex; // start index for trailing/leading 0's for very small/large numbers uint8 zerosStartIndex; // end index for trailing/leading 0's for very small/large numbers uint8 zerosEndIndex; // true if decimal number is less than one bool isLessThanOne; // true if string should include "%" bool isPercent; } function generateDecimalString(DecimalStringParams memory params) private pure returns (string memory) { bytes memory buffer = new bytes(params.bufferLength); if (params.isPercent) { buffer[buffer.length - 1] = "%"; } if (params.isLessThanOne) { buffer[0] = "0"; buffer[1] = "."; } // add leading/trailing 0's for (uint256 zerosCursor = params.zerosStartIndex; zerosCursor < params.zerosEndIndex.add(1); zerosCursor++) { buffer[zerosCursor] = bytes1(uint8(48)); } // add sigfigs while (params.sigfigs > 0) { if (params.decimalIndex > 0 && params.sigfigIndex == params.decimalIndex) { buffer[params.sigfigIndex--] = "."; } buffer[params.sigfigIndex--] = bytes1(uint8(uint256(48).add(params.sigfigs % 10))); params.sigfigs /= 10; } return string(buffer); } function tickToDecimalString( int24 tick, int24 tickSpacing, uint8 baseTokenDecimals, uint8 quoteTokenDecimals, bool flipRatio ) internal pure returns (string memory) { if (tick == (TickMath.MIN_TICK / tickSpacing) * tickSpacing) { return !flipRatio ? "MIN" : "MAX"; } else if (tick == (TickMath.MAX_TICK / tickSpacing) * tickSpacing) { return !flipRatio ? "MAX" : "MIN"; } else { uint160 sqrtRatioX96 = TickMath.getSqrtRatioAtTick(tick); if (flipRatio) { sqrtRatioX96 = uint160(uint256(1 << 192).div(sqrtRatioX96)); } return fixedPointToDecimalString(sqrtRatioX96, baseTokenDecimals, quoteTokenDecimals); } } function sigfigsRounded(uint256 value, uint8 digits) private pure returns (uint256, bool) { bool extraDigit; if (digits > 5) { value = value.div((10 ** (digits - 5))); } bool roundUp = value % 10 > 4; value = value.div(10); if (roundUp) { value = value + 1; } // 99999 -> 100000 gives an extra sigfig if (value == 100000) { value /= 10; extraDigit = true; } return (value, extraDigit); } function adjustForDecimalPrecision(uint160 sqrtRatioX96, uint8 baseTokenDecimals, uint8 quoteTokenDecimals) private pure returns (uint256 adjustedSqrtRatioX96) { uint256 difference = abs(int256(baseTokenDecimals).sub(int256(quoteTokenDecimals))); if (difference > 0 && difference <= 18) { if (baseTokenDecimals > quoteTokenDecimals) { adjustedSqrtRatioX96 = sqrtRatioX96.mul(10 ** (difference.div(2))); if (difference % 2 == 1) { adjustedSqrtRatioX96 = FullMath.mulDiv(adjustedSqrtRatioX96, sqrt10X128, 1 << 128); } } else { adjustedSqrtRatioX96 = sqrtRatioX96.div(10 ** (difference.div(2))); if (difference % 2 == 1) { adjustedSqrtRatioX96 = FullMath.mulDiv(adjustedSqrtRatioX96, 1 << 128, sqrt10X128); } } } else { adjustedSqrtRatioX96 = uint256(sqrtRatioX96); } } function abs(int256 x) private pure returns (uint256) { return uint256(x >= 0 ? x : -x); } // @notice Returns string that includes first 5 significant figures of a decimal number // @param sqrtRatioX96 a sqrt price function fixedPointToDecimalString(uint160 sqrtRatioX96, uint8 baseTokenDecimals, uint8 quoteTokenDecimals) internal pure returns (string memory) { uint256 adjustedSqrtRatioX96 = adjustForDecimalPrecision(sqrtRatioX96, baseTokenDecimals, quoteTokenDecimals); uint256 value = FullMath.mulDiv(adjustedSqrtRatioX96, adjustedSqrtRatioX96, 1 << 64); bool priceBelow1 = adjustedSqrtRatioX96 < 2 ** 96; if (priceBelow1) { // 10 ** 43 is precision needed to retreive 5 sigfigs of smallest possible price + 1 for rounding value = FullMath.mulDiv(value, 10 ** 44, 1 << 128); } else { // leave precision for 4 decimal places + 1 place for rounding value = FullMath.mulDiv(value, 10 ** 5, 1 << 128); } // get digit count uint256 temp = value; uint8 digits; while (temp != 0) { digits++; temp /= 10; } // don't count extra digit kept for rounding digits = digits - 1; // address rounding (uint256 sigfigs, bool extraDigit) = sigfigsRounded(value, digits); if (extraDigit) { digits++; } DecimalStringParams memory params; if (priceBelow1) { // 7 bytes ( "0." and 5 sigfigs) + leading 0's bytes params.bufferLength = uint8(uint8(7).add(uint8(43).sub(digits))); params.zerosStartIndex = 2; params.zerosEndIndex = uint8(uint256(43).sub(digits).add(1)); params.sigfigIndex = uint8(params.bufferLength.sub(1)); } else if (digits >= 9) { // no decimal in price string params.bufferLength = uint8(digits.sub(4)); params.zerosStartIndex = 5; params.zerosEndIndex = uint8(params.bufferLength.sub(1)); params.sigfigIndex = 4; } else { // 5 sigfigs surround decimal params.bufferLength = 6; params.sigfigIndex = 5; params.decimalIndex = uint8(digits.sub(5).add(1)); } params.sigfigs = sigfigs; params.isLessThanOne = priceBelow1; params.isPercent = false; return generateDecimalString(params); } // @notice Returns string as decimal percentage of fee amount. // @param fee fee amount function feeToPercentString(uint24 fee) internal pure returns (string memory) { if (fee == 0) { return "0%"; } uint24 temp = fee; uint256 digits; uint8 numSigfigs; while (temp != 0) { if (numSigfigs > 0) { // count all digits preceding least significant figure numSigfigs++; } else if (temp % 10 != 0) { numSigfigs++; } digits++; temp /= 10; } DecimalStringParams memory params; uint256 nZeros; if (digits >= 5) { // if decimal > 1 (5th digit is the ones place) uint256 decimalPlace = digits.sub(numSigfigs) >= 4 ? 0 : 1; nZeros = digits.sub(5) < (numSigfigs.sub(1)) ? 0 : digits.sub(5).sub(numSigfigs.sub(1)); params.zerosStartIndex = numSigfigs; params.zerosEndIndex = uint8(params.zerosStartIndex.add(nZeros).sub(1)); params.sigfigIndex = uint8(params.zerosStartIndex.sub(1).add(decimalPlace)); params.bufferLength = uint8(nZeros.add(numSigfigs.add(1)).add(decimalPlace)); } else { // else if decimal < 1 nZeros = uint256(5).sub(digits); params.zerosStartIndex = 2; params.zerosEndIndex = uint8(nZeros.add(params.zerosStartIndex).sub(1)); params.bufferLength = uint8(nZeros.add(numSigfigs.add(2))); params.sigfigIndex = uint8((params.bufferLength).sub(2)); params.isLessThanOne = true; } params.sigfigs = uint256(fee).div(10 ** (digits.sub(numSigfigs))); params.isPercent = true; params.decimalIndex = digits > 4 ? uint8(digits.sub(4)) : 0; return generateDecimalString(params); } function addressToString(address addr) internal pure returns (string memory) { return (uint256(addr)).toHexString(20); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.6; import "./external/Strings.sol"; import "./external/SafeMath.sol"; import "./external/Base64.sol"; import "./external/HexStrings.sol"; import "./TickMath.sol"; /// @title NFTSVG /// @notice Provides a function for generating an SVG associated with a CL NFT library NFTSVG { using Strings for uint256; using SafeMath for uint256; using HexStrings for uint256; string constant curve1 = 'M1 1C41 41 105 105 145 145'; string constant curve2 = 'M1 1C33 49 97 113 145 145'; string constant curve3 = 'M1 1C33 57 89 113 145 145'; string constant curve4 = 'M1 1C25 65 81 121 145 145'; string constant curve5 = 'M1 1C17 73 73 129 145 145'; string constant curve6 = 'M1 1C9 81 65 137 145 145'; string constant curve7 = 'M1 1C1 89 57.5 145 145 145'; string constant curve8 = 'M1 1C1 97 49 145 145 145'; struct DefParams { string color0; string color1; string color2; string color3; string x1; string x2; string x3; string y1; string y2; string y3; } function generateSVGDefs(DefParams memory params) private pure returns (string memory svg) { svg = string( abi.encodePacked( '<svg width="290" height="500" viewBox="0 0 290 500" xmlns="http://www.w3.org/2000/svg"', " xmlns:xlink='http://www.w3.org/1999/xlink'>", '<defs>', '<filter id="f1"><feImage result="p0" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><rect width='290px' height='500px' fill='#", params.color0, "'/></svg>" ) ) ), '"/><feImage result="p1" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><circle cx='", params.x1, "' cy='", params.y1, "' r='120px' fill='#", params.color1, "'/></svg>" ) ) ), '"/><feImage result="p2" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><circle cx='", params.x2, "' cy='", params.y2, "' r='120px' fill='#", params.color2, "'/></svg>" ) ) ), '" />', '<feImage result="p3" xlink:href="data:image/svg+xml;base64,', Base64.encode( bytes( abi.encodePacked( "<svg width='290' height='500' viewBox='0 0 290 500' xmlns='http://www.w3.org/2000/svg'><circle cx='", params.x3, "' cy='", params.y3, "' r='100px' fill='#", params.color3, "'/></svg>" ) ) ), '" /><feBlend mode="overlay" in="p0" in2="p1" /><feBlend mode="exclusion" in2="p2" /><feBlend mode="overlay" in2="p3" result="blendOut" /><feGaussianBlur ', 'in="blendOut" stdDeviation="42" /></filter> <clipPath id="corners"><rect width="290" height="500" rx="42" ry="42" /></clipPath>', '<path id="text-path-a" d="M40 12 H250 A28 28 0 0 1 278 40 V460 A28 28 0 0 1 250 488 H40 A28 28 0 0 1 12 460 V40 A28 28 0 0 1 40 12 z" />', '<path id="minimap" d="M234 444C234 457.949 242.21 463 253 463" />', '<filter id="top-region-blur"><feGaussianBlur in="SourceGraphic" stdDeviation="24" /></filter>', '<linearGradient id="grad-up" x1="1" x2="0" y1="1" y2="0"><stop offset="0.0" stop-color="white" stop-opacity="1" />', '<stop offset=".9" stop-color="white" stop-opacity="0" /></linearGradient>', '<linearGradient id="grad-down" x1="0" x2="1" y1="0" y2="1"><stop offset="0.0" stop-color="white" stop-opacity="1" /><stop offset="0.9" stop-color="white" stop-opacity="0" /></linearGradient>', '<mask id="fade-up" maskContentUnits="objectBoundingBox"><rect width="1" height="1" fill="url(#grad-up)" /></mask>', '<mask id="fade-down" maskContentUnits="objectBoundingBox"><rect width="1" height="1" fill="url(#grad-down)" /></mask>', '<mask id="none" maskContentUnits="objectBoundingBox"><rect width="1" height="1" fill="white" /></mask>', '<linearGradient id="grad-symbol"><stop offset="0.7" stop-color="white" stop-opacity="1" /><stop offset=".95" stop-color="white" stop-opacity="0" /></linearGradient>', '<mask id="fade-symbol" maskContentUnits="userSpaceOnUse"><rect width="290px" height="200px" fill="url(#grad-symbol)" /></mask></defs>', '<g clip-path="url(#corners)">', '<rect fill="', params.color0, '" x="0px" y="0px" width="290px" height="500px" />', '<rect style="filter: url(#f1)" x="0px" y="0px" width="290px" height="500px" />', ' <g style="filter:url(#top-region-blur); transform:scale(1.5); transform-origin:center top;">', '<rect fill="none" x="0px" y="0px" width="290px" height="500px" />', '<ellipse cx="50%" cy="0px" rx="180px" ry="120px" fill="#000" opacity="0.85" /></g>', '<rect x="0" y="0" width="290" height="500" rx="42" ry="42" fill="rgba(0,0,0,0)" stroke="rgba(255,255,255,0.2)" /></g>' ) ); } function generateSVGCardMantle( string memory quoteTokenSymbol, string memory baseTokenSymbol, string memory tickSpacing ) private pure returns (string memory svg) { svg = string( abi.encodePacked( '<g mask="url(#fade-symbol)"><rect fill="none" x="0px" y="0px" width="290px" height="200px" /> <text y="70px" x="32px" fill="white" font-family="\'Arial\', monospace" font-weight="200" font-size="36px">', quoteTokenSymbol, '/', baseTokenSymbol, '</text><text y="115px" x="32px" fill="white" font-family="\'Arial\', monospace" font-weight="200" font-size="36px">CL-', tickSpacing, '</text></g>', '<rect x="16" y="16" width="258" height="468" rx="26" ry="26" fill="rgba(0,0,0,0)" stroke="rgba(255,255,255,0.2)" />' ) ); } function generageSvgCurve( int24 tickLower, int24 tickUpper, int24 tickSpacing, int8 overRange ) private pure returns (string memory svg) { string memory fade = overRange == 1 ? '#fade-up' : overRange == -1 ? '#fade-down' : '#none'; string memory curve = getCurve(tickLower, tickUpper, tickSpacing); svg = string( abi.encodePacked( '<g mask="url(', fade, ')"', ' style="transform:translate(72px,189px)">' '<rect x="-16px" y="-16px" width="180px" height="180px" fill="none" />' '<path d="', curve, '" stroke="rgba(0,0,0,0.3)" stroke-width="32px" fill="none" stroke-linecap="round" />', '</g><g mask="url(', fade, ')"', ' style="transform:translate(72px,189px)">', '<rect x="-16px" y="-16px" width="180px" height="180px" fill="none" />', '<path d="', curve, '" stroke="rgba(255,255,255,1)" fill="none" stroke-linecap="round" /></g>', generateSVGCurveCircle(overRange) ) ); } function getCurve( int24 tickLower, int24 tickUpper, int24 tickSpacing ) internal pure returns (string memory curve) { int24 tickRange = (tickUpper - tickLower) / tickSpacing; if (tickRange <= 4) { curve = curve1; } else if (tickRange <= 8) { curve = curve2; } else if (tickRange <= 16) { curve = curve3; } else if (tickRange <= 32) { curve = curve4; } else if (tickRange <= 64) { curve = curve5; } else if (tickRange <= 128) { curve = curve6; } else if (tickRange <= 256) { curve = curve7; } else { curve = curve8; } } function generateSVGCurveCircle(int8 overRange) internal pure returns (string memory svg) { string memory curvex1 = '73'; string memory curvey1 = '190'; string memory curvex2 = '217'; string memory curvey2 = '334'; if (overRange == 1 || overRange == -1) { svg = string( abi.encodePacked( '<circle cx="', overRange == -1 ? curvex1 : curvex2, 'px" cy="', overRange == -1 ? curvey1 : curvey2, 'px" r="4px" fill="white" /><circle cx="', overRange == -1 ? curvex1 : curvex2, 'px" cy="', overRange == -1 ? curvey1 : curvey2, 'px" r="24px" fill="none" stroke="white" />' ) ); } else { svg = string( abi.encodePacked( '<circle cx="', curvex1, 'px" cy="', curvey1, 'px" r="4px" fill="white" />', '<circle cx="', curvex2, 'px" cy="', curvey2, 'px" r="4px" fill="white" />' ) ); } } function generateSVGPositionDataAndLocationCurve( string memory tokenId, int24 tickLower, int24 tickUpper ) private pure returns (string memory svg) { string memory tickLowerStr = tickToString(tickLower); string memory tickUpperStr = tickToString(tickUpper); uint256 str1length = bytes(tokenId).length + 4; uint256 str2length = bytes(tickLowerStr).length + 10; uint256 str3length = bytes(tickUpperStr).length + 10; (string memory xCoord, string memory yCoord) = rangeLocation(tickLower, tickUpper); svg = string( abi.encodePacked( ' <g style="transform:translate(29px, 384px)">', '<rect width="', uint256(7 * (str1length + 4)).toString(), 'px" height="26px" rx="8px" ry="8px" fill="rgba(0,0,0,0.6)" />', '<text x="12px" y="17px" font-family="\'Arial\', monospace" font-size="12px" fill="white"><tspan fill="rgba(255,255,255,0.6)">ID: </tspan>', tokenId, '</text></g>', ' <g style="transform:translate(29px, 414px)">', '<rect width="', uint256(7 * (str2length + 4)).toString(), 'px" height="26px" rx="8px" ry="8px" fill="rgba(0,0,0,0.6)" />', '<text x="12px" y="17px" font-family="\'Arial\', monospace" font-size="12px" fill="white"><tspan fill="rgba(255,255,255,0.6)">Min Tick: </tspan>', tickLowerStr, '</text></g>', ' <g style="transform:translate(29px, 444px)">', '<rect width="', uint256(7 * (str3length + 4)).toString(), 'px" height="26px" rx="8px" ry="8px" fill="rgba(0,0,0,0.6)" />', '<text x="12px" y="17px" font-family="\'Arial\', monospace" font-size="12px" fill="white"><tspan fill="rgba(255,255,255,0.6)">Max Tick: </tspan>', tickUpperStr, '</text></g>' '<g style="transform:translate(226px, 433px)">', '<rect width="36px" height="36px" rx="8px" ry="8px" fill="none" stroke="rgba(255,255,255,0.2)" />', '<path stroke-linecap="round" d="M8 9C8.00004 22.9494 16.2099 28 27 28" fill="none" stroke="white" />', '<circle style="transform:translate3d(', xCoord, 'px, ', yCoord, 'px, 0px)" cx="0px" cy="0px" r="4px" fill="white"/></g>' ) ); } function rangeLocation(int24 tickLower, int24 tickUpper) internal pure returns (string memory, string memory) { int24 midPoint = (tickLower + tickUpper) / 2; if (midPoint < -125_000) { return ('8', '7'); } else if (midPoint < -75_000) { return ('8', '10.5'); } else if (midPoint < -25_000) { return ('8', '14.25'); } else if (midPoint < -5_000) { return ('10', '18'); } else if (midPoint < 0) { return ('11', '21'); } else if (midPoint < 5_000) { return ('13', '23'); } else if (midPoint < 25_000) { return ('15', '25'); } else if (midPoint < 75_000) { return ('18', '26'); } else if (midPoint < 125_000) { return ('21', '27'); } else { return ('24', '27'); } } function generateSVGRareSparkle() private pure returns (string memory svg) { svg = string( abi.encodePacked( '<g style="transform:translate(226px, 392px)"><rect width="36px" height="36px" rx="8px" ry="8px" fill="none" stroke="rgba(255,255,255,0.2)" />', '<g><path style="transform:translate(6px,6px)" d="M12 0L12.6522 9.56587L18 1.6077L13.7819 10.2181L22.3923 6L14.4341 ', '11.3478L24 12L14.4341 12.6522L22.3923 18L13.7819 13.7819L18 22.3923L12.6522 14.4341L12 24L11.3478 14.4341L6 22.39', '23L10.2181 13.7819L1.6077 18L9.56587 12.6522L0 12L9.56587 11.3478L1.6077 6L10.2181 10.2181L6 1.6077L11.3478 9.56587L12 0Z" fill="white" />', '<animateTransform attributeName="transform" type="rotate" from="0 18 18" to="360 18 18" dur="10s" repeatCount="indefinite"/></g></g>' ) ); } function generateSVG( address quoteTokenAddress, address baseTokenAddress, string memory quoteTokenSymbol, string memory baseTokenSymbol, uint256 tokenId, int24 tickLower, int24 tickUpper, int24 tickCurrent, int24 tickSpacing ) internal pure returns (string memory svg) { return string( abi.encodePacked( generateSVGDefs(DefParams({ color0: tokenToColorHex(uint256(quoteTokenAddress), 68), color1: tokenToColorHex(uint256(baseTokenAddress), 136), color2: tokenToColorHex(uint256(quoteTokenAddress), 0), color3: tokenToColorHex(uint256(baseTokenAddress), 34), x1: scale(getCircleCoord(uint256(quoteTokenAddress), 16, tokenId), 0, 255, 16, 274), x2: scale(getCircleCoord(uint256(baseTokenAddress), 16, tokenId), 0, 255, 100, 484), x3: scale(getCircleCoord(uint256(quoteTokenAddress), 32, tokenId), 0, 255, 16, 274), y1: scale(getCircleCoord(uint256(baseTokenAddress), 32, tokenId), 0, 255, 100, 484), y2: scale(getCircleCoord(uint256(quoteTokenAddress), 48, tokenId), 0, 255, 16, 274), y3: scale(getCircleCoord(uint256(baseTokenAddress), 48, tokenId), 0, 255, 100, 484) })), generateSVGCardMantle( quoteTokenSymbol, baseTokenSymbol, (uint256(tickSpacing)).toString() ), generageSvgCurve( tickLower, tickUpper, tickSpacing, overRange(tickLower, tickUpper, tickCurrent) ), generateSVGPositionDataAndLocationCurve( tokenId.toString(), tickLower, tickUpper ), generateSVGRareSparkle(), '</svg>' ) ); } function overRange( int24 tickLower, int24 tickUpper, int24 tickCurrent ) private pure returns (int8) { if (tickCurrent < tickLower) { return -1; } else if (tickCurrent > tickUpper) { return 1; } else { return 0; } } function tokenToColorHex(uint256 token, uint256 offset) internal pure returns (string memory str) { return string((token >> offset).toHexStringNoPrefix(3)); } function tickToString(int24 tick) private pure returns (string memory) { string memory sign = ""; if (tick < 0) { tick = tick * -1; sign = "-"; } return string(abi.encodePacked(sign, uint256(tick).toString())); } function scale( uint256 n, uint256 inMn, uint256 inMx, uint256 outMn, uint256 outMx ) private pure returns (string memory) { return (n.sub(inMn).mul(outMx.sub(outMn)).div(inMx.sub(inMn)).add(outMn)).toString(); } function getCircleCoord( uint256 tokenAddress, uint256 offset, uint256 tokenId ) internal pure returns (uint256) { return (sliceTokenHex(tokenAddress, offset) * tokenId) % 255; } function sliceTokenHex(uint256 token, uint256 offset) internal pure returns (uint256) { return uint256(uint8(token >> offset)); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0 <0.8.0; /// @title Oracle /// @notice Provides price and liquidity data useful for a wide variety of system designs /// @dev Instances of stored oracle data, "observations", are collected in the oracle array /// Every pool is initialized with an oracle array length of 1. Anyone can pay the SSTOREs to increase the /// maximum length of the oracle array. New slots will be added when the array is fully populated. /// Observations are overwritten when the full length of the oracle array is populated. /// The most recent observation is available, independent of the length of the oracle array, by passing 0 to observe() library Oracle { struct Observation { // the block timestamp of the observation uint32 blockTimestamp; // the tick accumulator, i.e. tick * time elapsed since the pool was first initialized int56 tickCumulative; // the seconds per liquidity, i.e. seconds elapsed / max(1, liquidity) since the pool was first initialized uint160 secondsPerLiquidityCumulativeX128; // whether or not the observation is initialized bool initialized; } /// @notice Transforms a previous observation into a new observation, given the passage of time and the current tick and liquidity values /// @dev blockTimestamp _must_ be chronologically equal to or greater than last.blockTimestamp, safe for 0 or 1 overflows /// @param last The specified observation to be transformed /// @param blockTimestamp The timestamp of the new observation /// @param tick The active tick at the time of the new observation /// @param liquidity The total in-range liquidity at the time of the new observation /// @return Observation The newly populated observation function transform(Observation memory last, uint32 blockTimestamp, int24 tick, uint128 liquidity) private pure returns (Observation memory) { uint32 delta = blockTimestamp - last.blockTimestamp; return Observation({ blockTimestamp: blockTimestamp, tickCumulative: last.tickCumulative + int56(tick) * delta, secondsPerLiquidityCumulativeX128: last.secondsPerLiquidityCumulativeX128 + ((uint160(delta) << 128) / (liquidity > 0 ? liquidity : 1)), initialized: true }); } /// @notice Initialize the oracle array by writing the first slot. Called once for the lifecycle of the observations array /// @param self The stored oracle array /// @param time The time of the oracle initialization, via block.timestamp truncated to uint32 /// @return cardinality The number of populated elements in the oracle array /// @return cardinalityNext The new length of the oracle array, independent of population function initialize(Observation[65535] storage self, uint32 time) internal returns (uint16 cardinality, uint16 cardinalityNext) { self[0] = Observation({ blockTimestamp: time, tickCumulative: 0, secondsPerLiquidityCumulativeX128: 0, initialized: true }); return (1, 1); } /// @notice Writes an oracle observation to the array /// @dev Writable at most once per block. Index represents the most recently written element. cardinality and index must be tracked externally. /// If the index is at the end of the allowable array length (according to cardinality), and the next cardinality /// is greater than the current one, cardinality may be increased. This restriction is created to preserve ordering. /// @param self The stored oracle array /// @param index The index of the observation that was most recently written to the observations array /// @param blockTimestamp The timestamp of the new observation /// @param tick The active tick at the time of the new observation /// @param liquidity The total in-range liquidity at the time of the new observation /// @param cardinality The number of populated elements in the oracle array /// @param cardinalityNext The new length of the oracle array, independent of population /// @return indexUpdated The new index of the most recently written element in the oracle array /// @return cardinalityUpdated The new cardinality of the oracle array function write( Observation[65535] storage self, uint16 index, uint32 blockTimestamp, int24 tick, uint128 liquidity, uint16 cardinality, uint16 cardinalityNext ) internal returns (uint16 indexUpdated, uint16 cardinalityUpdated) { Observation memory last = self[index]; // early return if we've already written an observation this block if (last.blockTimestamp == blockTimestamp) return (index, cardinality); // if the conditions are right, we can bump the cardinality if (cardinalityNext > cardinality && index == (cardinality - 1)) { cardinalityUpdated = cardinalityNext; } else { cardinalityUpdated = cardinality; } indexUpdated = (index + 1) % cardinalityUpdated; self[indexUpdated] = transform(last, blockTimestamp, tick, liquidity); } /// @notice Prepares the oracle array to store up to `next` observations /// @param self The stored oracle array /// @param current The current next cardinality of the oracle array /// @param next The proposed next cardinality which will be populated in the oracle array /// @return next The next cardinality which will be populated in the oracle array function grow(Observation[65535] storage self, uint16 current, uint16 next) internal returns (uint16) { require(current != 0); // no-op if the passed next value isn't greater than the current next value if (next <= current) return current; // store in each slot to prevent fresh SSTOREs in swaps // this data will not be used because the initialized boolean is still false for (uint16 i = current; i < next; i++) { self[i].blockTimestamp = 1; } return next; } /// @notice comparator for 32-bit timestamps /// @dev safe for 0 or 1 overflows, a and b _must_ be chronologically before or equal to time /// @param time A timestamp truncated to 32 bits /// @param a A comparison timestamp from which to determine the relative position of `time` /// @param b From which to determine the relative position of `time` /// @return bool Whether `a` is chronologically <= `b` function lte(uint32 time, uint32 a, uint32 b) private pure returns (bool) { // if there hasn't been overflow, no need to adjust if (a <= time && b <= time) return a <= b; uint256 aAdjusted = a > time ? a : a + 2 ** 32; uint256 bAdjusted = b > time ? b : b + 2 ** 32; return aAdjusted <= bAdjusted; } /// @notice Fetches the observations beforeOrAt and atOrAfter a target, i.e. where [beforeOrAt, atOrAfter] is satisfied. /// The result may be the same observation, or adjacent observations. /// @dev The answer must be contained in the array, used when the target is located within the stored observation /// boundaries: older than the most recent observation and younger, or the same age as, the oldest observation /// @param self The stored oracle array /// @param time The current block.timestamp /// @param target The timestamp at which the reserved observation should be for /// @param index The index of the observation that was most recently written to the observations array /// @param cardinality The number of populated elements in the oracle array /// @return beforeOrAt The observation recorded before, or at, the target /// @return atOrAfter The observation recorded at, or after, the target function binarySearch(Observation[65535] storage self, uint32 time, uint32 target, uint16 index, uint16 cardinality) private view returns (Observation memory beforeOrAt, Observation memory atOrAfter) { uint256 l = (index + 1) % cardinality; // oldest observation uint256 r = l + cardinality - 1; // newest observation uint256 i; while (true) { i = (l + r) / 2; beforeOrAt = self[i % cardinality]; // we've landed on an uninitialized tick, keep searching higher (more recently) if (!beforeOrAt.initialized) { l = i + 1; continue; } atOrAfter = self[(i + 1) % cardinality]; bool targetAtOrAfter = lte(time, beforeOrAt.blockTimestamp, target); // check if we've found the answer! if (targetAtOrAfter && lte(time, target, atOrAfter.blockTimestamp)) break; if (!targetAtOrAfter) r = i - 1; else l = i + 1; } } /// @notice Fetches the observations beforeOrAt and atOrAfter a given target, i.e. where [beforeOrAt, atOrAfter] is satisfied /// @dev Assumes there is at least 1 initialized observation. /// Used by observeSingle() to compute the counterfactual accumulator values as of a given block timestamp. /// @param self The stored oracle array /// @param time The current block.timestamp /// @param target The timestamp at which the reserved observation should be for /// @param tick The active tick at the time of the returned or simulated observation /// @param index The index of the observation that was most recently written to the observations array /// @param liquidity The total pool liquidity at the time of the call /// @param cardinality The number of populated elements in the oracle array /// @return beforeOrAt The observation which occurred at, or before, the given timestamp /// @return atOrAfter The observation which occurred at, or after, the given timestamp function getSurroundingObservations( Observation[65535] storage self, uint32 time, uint32 target, int24 tick, uint16 index, uint128 liquidity, uint16 cardinality ) private view returns (Observation memory beforeOrAt, Observation memory atOrAfter) { // optimistically set before to the newest observation beforeOrAt = self[index]; // if the target is chronologically at or after the newest observation, we can early return if (lte(time, beforeOrAt.blockTimestamp, target)) { if (beforeOrAt.blockTimestamp == target) { // if newest observation equals target, we're in the same block, so we can ignore atOrAfter return (beforeOrAt, atOrAfter); } else { // otherwise, we need to transform return (beforeOrAt, transform(beforeOrAt, target, tick, liquidity)); } } // now, set before to the oldest observation beforeOrAt = self[(index + 1) % cardinality]; if (!beforeOrAt.initialized) beforeOrAt = self[0]; // ensure that the target is chronologically at or after the oldest observation require(lte(time, beforeOrAt.blockTimestamp, target), "O"); // if we've reached this point, we have to binary search return binarySearch(self, time, target, index, cardinality); } /// @dev Reverts if an observation at or before the desired observation timestamp does not exist. /// 0 may be passed as `secondsAgo' to return the current cumulative values. /// If called with a timestamp falling between two observations, returns the counterfactual accumulator values /// at exactly the timestamp between the two observations. /// @param self The stored oracle array /// @param time The current block timestamp /// @param secondsAgo The amount of time to look back, in seconds, at which point to return an observation /// @param tick The current tick /// @param index The index of the observation that was most recently written to the observations array /// @param liquidity The current in-range pool liquidity /// @param cardinality The number of populated elements in the oracle array /// @return tickCumulative The tick * time elapsed since the pool was first initialized, as of `secondsAgo` /// @return secondsPerLiquidityCumulativeX128 The time elapsed / max(1, liquidity) since the pool was first initialized, as of `secondsAgo` function observeSingle( Observation[65535] storage self, uint32 time, uint32 secondsAgo, int24 tick, uint16 index, uint128 liquidity, uint16 cardinality ) internal view returns (int56 tickCumulative, uint160 secondsPerLiquidityCumulativeX128) { if (secondsAgo == 0) { Observation memory last = self[index]; if (last.blockTimestamp != time) last = transform(last, time, tick, liquidity); return (last.tickCumulative, last.secondsPerLiquidityCumulativeX128); } uint32 target = time - secondsAgo; (Observation memory beforeOrAt, Observation memory atOrAfter) = getSurroundingObservations(self, time, target, tick, index, liquidity, cardinality); if (target == beforeOrAt.blockTimestamp) { // we're at the left boundary return (beforeOrAt.tickCumulative, beforeOrAt.secondsPerLiquidityCumulativeX128); } else if (target == atOrAfter.blockTimestamp) { // we're at the right boundary return (atOrAfter.tickCumulative, atOrAfter.secondsPerLiquidityCumulativeX128); } else { // we're in the middle uint32 observationTimeDelta = atOrAfter.blockTimestamp - beforeOrAt.blockTimestamp; uint32 targetDelta = target - beforeOrAt.blockTimestamp; return ( beforeOrAt.tickCumulative + ((atOrAfter.tickCumulative - beforeOrAt.tickCumulative) / observationTimeDelta) * targetDelta, beforeOrAt.secondsPerLiquidityCumulativeX128 + uint160( ( uint256( atOrAfter.secondsPerLiquidityCumulativeX128 - beforeOrAt.secondsPerLiquidityCumulativeX128 ) * targetDelta ) / observationTimeDelta ) ); } } /// @notice Returns the accumulator values as of each time seconds ago from the given time in the array of `secondsAgos` /// @dev Reverts if `secondsAgos` > oldest observation /// @param self The stored oracle array /// @param time The current block.timestamp /// @param secondsAgos Each amount of time to look back, in seconds, at which point to return an observation /// @param tick The current tick /// @param index The index of the observation that was most recently written to the observations array /// @param liquidity The current in-range pool liquidity /// @param cardinality The number of populated elements in the oracle array /// @return tickCumulatives The tick * time elapsed since the pool was first initialized, as of each `secondsAgo` /// @return secondsPerLiquidityCumulativeX128s The cumulative seconds / max(1, liquidity) since the pool was first initialized, as of each `secondsAgo` function observe( Observation[65535] storage self, uint32 time, uint32[] memory secondsAgos, int24 tick, uint16 index, uint128 liquidity, uint16 cardinality ) internal view returns (int56[] memory tickCumulatives, uint160[] memory secondsPerLiquidityCumulativeX128s) { require(cardinality != 0); tickCumulatives = new int56[](secondsAgos.length); secondsPerLiquidityCumulativeX128s = new uint160[](secondsAgos.length); for (uint256 i = 0; i < secondsAgos.length; i++) { (tickCumulatives[i], secondsPerLiquidityCumulativeX128s[i]) = observeSingle(self, time, secondsAgos[i], tick, index, liquidity, cardinality); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.6.0; import './BytesLib.sol'; /// @title Functions for manipulating path data for multihop swaps library Path { using BytesLib for bytes; /// @dev The length of the bytes encoded address uint256 private constant ADDR_SIZE = 20; /// @dev The length of the bytes encoded fee uint256 private constant FEE_SIZE = 3; /// @dev The offset of a single token address and pool fee uint256 private constant NEXT_OFFSET = ADDR_SIZE + FEE_SIZE; /// @dev The offset of an encoded pool key uint256 private constant POP_OFFSET = NEXT_OFFSET + ADDR_SIZE; /// @dev The minimum length of an encoding that contains 2 or more pools uint256 private constant MULTIPLE_POOLS_MIN_LENGTH = POP_OFFSET + NEXT_OFFSET; /// @notice Returns true iff the path contains two or more pools /// @param path The encoded swap path /// @return True if path contains two or more pools, otherwise false function hasMultiplePools(bytes memory path) internal pure returns (bool) { return path.length >= MULTIPLE_POOLS_MIN_LENGTH; } /// @notice Returns the number of pools in the path /// @param path The encoded swap path /// @return The number of pools in the path function numPools(bytes memory path) internal pure returns (uint256) { // Ignore the first token address. From then on every tick spacing and token offset indicates a pool. return ((path.length - ADDR_SIZE) / NEXT_OFFSET); } /// @notice Decodes the first pool in path /// @param path The bytes encoded swap path /// @return tokenA The first token of the given pool /// @return tokenB The second token of the given pool /// @return tickSpacing The tick spacing of the pool function decodeFirstPool(bytes memory path) internal pure returns (address tokenA, address tokenB, int24 tickSpacing) { tokenA = path.toAddress(0); tickSpacing = path.toInt24(ADDR_SIZE); tokenB = path.toAddress(NEXT_OFFSET); } /// @notice Gets the segment corresponding to the first pool in the path /// @param path The bytes encoded swap path /// @return The segment containing all data necessary to target the first pool in the path function getFirstPool(bytes memory path) internal pure returns (bytes memory) { return path.slice(0, POP_OFFSET); } /// @notice Skips a token + fee element from the buffer and returns the remainder /// @param path The swap path /// @return The remaining token + fee elements in the path function skipToken(bytes memory path) internal pure returns (bytes memory) { return path.slice(NEXT_OFFSET, path.length - NEXT_OFFSET); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "../interfaces/ISyncSwapRangePoolFactory.sol"; /// @title Provides functions for deriving a pool address from the factory, tokens, and the fee library PoolAddress { /// @notice The identifying key of the pool struct PoolKey { address token0; address token1; int24 tickSpacing; } /// @notice Returns PoolKey: the ordered tokens with the matched fee levels /// @param tokenA The first token of a pool, unsorted /// @param tokenB The second token of a pool, unsorted /// @param tickSpacing The tick spacing of the pool /// @return Poolkey The pool details with ordered token0 and token1 assignments function getPoolKey(address tokenA, address tokenB, int24 tickSpacing) internal pure returns (PoolKey memory) { if (tokenA > tokenB) (tokenA, tokenB) = (tokenB, tokenA); return PoolKey({token0: tokenA, token1: tokenB, tickSpacing: tickSpacing}); } /// @notice Deterministically computes the pool address given the factory and PoolKey /// @param factory The CL factory contract address /// @param key The PoolKey /// @return pool The contract address of the V3 pool function computeAddress(address factory, PoolKey memory key) internal view returns (address pool) { /* require(key.token0 < key.token1); pool = Clones.predictDeterministicAddress({ master: ISyncSwapRangePoolFactory(factory).poolImplementation(), salt: keccak256(abi.encode(key.token0, key.token1, key.tickSpacing)), deployer: factory }); */ pool = ISyncSwapRangePoolFactory(factory).getPool(key.token0, key.token1, key.tickSpacing); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.6.0; import '../interfaces/ISyncSwapRangePool.sol'; library PoolTicksCounter { /// @dev This function counts the number of initialized ticks that would incur a gas cost between tickBefore and tickAfter. /// When tickBefore and/or tickAfter themselves are initialized, the logic over whether we should count them depends on the /// direction of the swap. If we are swapping upwards (tickAfter > tickBefore) we don't want to count tickBefore but we do /// want to count tickAfter. The opposite is true if we are swapping downwards. function countInitializedTicksCrossed( ISyncSwapRangePool self, int24 tickBefore, int24 tickAfter ) internal view returns (uint32 initializedTicksCrossed) { int16 wordPosLower; int16 wordPosHigher; uint8 bitPosLower; uint8 bitPosHigher; bool tickBeforeInitialized; bool tickAfterInitialized; { // Get the key and offset in the tick bitmap of the active tick before and after the swap. int16 wordPos = int16((tickBefore / self.tickSpacing()) >> 8); uint8 bitPos = uint8((tickBefore / self.tickSpacing()) % 256); int16 wordPosAfter = int16((tickAfter / self.tickSpacing()) >> 8); uint8 bitPosAfter = uint8((tickAfter / self.tickSpacing()) % 256); // In the case where tickAfter is initialized, we only want to count it if we are swapping downwards. // If the initializable tick after the swap is initialized, our original tickAfter is a // multiple of tick spacing, and we are swapping downwards we know that tickAfter is initialized // and we shouldn't count it. tickAfterInitialized = ((self.tickBitmap(wordPosAfter) & (1 << bitPosAfter)) > 0) && ((tickAfter % self.tickSpacing()) == 0) && (tickBefore > tickAfter); // In the case where tickBefore is initialized, we only want to count it if we are swapping upwards. // Use the same logic as above to decide whether we should count tickBefore or not. tickBeforeInitialized = ((self.tickBitmap(wordPos) & (1 << bitPos)) > 0) && ((tickBefore % self.tickSpacing()) == 0) && (tickBefore < tickAfter); if (wordPos < wordPosAfter || (wordPos == wordPosAfter && bitPos <= bitPosAfter)) { wordPosLower = wordPos; bitPosLower = bitPos; wordPosHigher = wordPosAfter; bitPosHigher = bitPosAfter; } else { wordPosLower = wordPosAfter; bitPosLower = bitPosAfter; wordPosHigher = wordPos; bitPosHigher = bitPos; } } // Count the number of initialized ticks crossed by iterating through the tick bitmap. // Our first mask should include the lower tick and everything to its left. uint256 mask = type(uint256).max << bitPosLower; while (wordPosLower <= wordPosHigher) { // If we're on the final tick bitmap page, ensure we only count up to our // ending tick. if (wordPosLower == wordPosHigher) { mask = mask & (type(uint256).max >> (255 - bitPosHigher)); } uint256 masked = self.tickBitmap(wordPosLower) & mask; initializedTicksCrossed += countOneBits(masked); wordPosLower++; // Reset our mask so we consider all bits on the next iteration. mask = type(uint256).max; } if (tickAfterInitialized) { initializedTicksCrossed -= 1; } if (tickBeforeInitialized) { initializedTicksCrossed -= 1; } return initializedTicksCrossed; } function countOneBits(uint256 x) private pure returns (uint16) { uint16 bits = 0; while (x != 0) { bits++; x &= (x - 1); } return bits; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0 <0.8.0; import "./external/FullMath.sol"; import "./external/FixedPoint128.sol"; import "./LiquidityMath.sol"; /// @title Position /// @notice Positions represent an owner address' liquidity between a lower and upper tick boundary /// @dev Positions store additional state for tracking fees owed to the position library Position { // info stored for each user's position struct Info { // the amount of liquidity owned by this position uint128 liquidity; // fee growth per unit of liquidity as of the last update to liquidity or fees owed uint256 feeGrowthInside0LastX128; uint256 feeGrowthInside1LastX128; // the fees owed to the position owner in token0/token1 uint128 tokensOwed0; uint128 tokensOwed1; } /// @notice Returns the Info struct of a position, given an owner and position boundaries /// @param self The mapping containing all user positions /// @param owner The address of the position owner /// @param tickLower The lower tick boundary of the position /// @param tickUpper The upper tick boundary of the position /// @return position The position info struct of the given owners' position function get(mapping(bytes32 => Info) storage self, address owner, int24 tickLower, int24 tickUpper) internal view returns (Position.Info storage position) { position = self[keccak256(abi.encodePacked(owner, tickLower, tickUpper))]; } /// @notice Credits accumulated fees to a user's position /// @param self The individual position to update /// @param liquidityDelta The change in pool liquidity as a result of the position update /// @param feeGrowthInside0X128 The all-time fee growth in token0, per unit of liquidity, inside the position's tick boundaries /// @param feeGrowthInside1X128 The all-time fee growth in token1, per unit of liquidity, inside the position's tick boundaries /// @param staked Signifies if the position is staked in the gauge or not function update( Info storage self, int128 liquidityDelta, uint256 feeGrowthInside0X128, uint256 feeGrowthInside1X128, bool staked ) internal { Info memory _self = self; uint128 liquidityNext; if (liquidityDelta == 0) { require(_self.liquidity != 0); // disallow pokes for 0 liquidity positions liquidityNext = _self.liquidity; } else { liquidityNext = LiquidityMath.addDelta(_self.liquidity, liquidityDelta); } uint128 tokensOwed0; uint128 tokensOwed1; if (!staked) { // calculate accumulated fees tokensOwed0 = uint128( FullMath.mulDiv( feeGrowthInside0X128 - _self.feeGrowthInside0LastX128, _self.liquidity, FixedPoint128.Q128 ) ); tokensOwed1 = uint128( FullMath.mulDiv( feeGrowthInside1X128 - _self.feeGrowthInside1LastX128, _self.liquidity, FixedPoint128.Q128 ) ); } // update the position if (liquidityDelta != 0) self.liquidity = liquidityNext; self.feeGrowthInside0LastX128 = feeGrowthInside0X128; self.feeGrowthInside1LastX128 = feeGrowthInside1X128; if (tokensOwed0 > 0 || tokensOwed1 > 0) { // overflow is acceptable, have to withdraw before you hit type(uint128).max fees self.tokensOwed0 += tokensOwed0; self.tokensOwed1 += tokensOwed1; } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; library PositionKey { /// @dev Returns the key of the position in the core library function compute(address owner, int24 tickLower, int24 tickUpper) internal pure returns (bytes32) { return keccak256(abi.encodePacked(owner, tickLower, tickUpper)); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./external/LowGasSafeMath.sol"; import "./external/SafeCast.sol"; import "./external/FullMath.sol"; import "./external/UnsafeMath.sol"; import "./external/FixedPoint96.sol"; /// @title Functions based on Q64.96 sqrt price and liquidity /// @notice Contains the math that uses square root of price as a Q64.96 and liquidity to compute deltas library SqrtPriceMath { using LowGasSafeMath for uint256; using SafeCast for uint256; /// @notice Gets the next sqrt price given a delta of token0 /// @dev Always rounds up, because in the exact output case (increasing price) we need to move the price at least /// far enough to get the desired output amount, and in the exact input case (decreasing price) we need to move the /// price less in order to not send too much output. /// The most precise formula for this is liquidity * sqrtPX96 / (liquidity +- amount * sqrtPX96), /// if this is impossible because of overflow, we calculate liquidity / (liquidity / sqrtPX96 +- amount). /// @param sqrtPX96 The starting price, i.e. before accounting for the token0 delta /// @param liquidity The amount of usable liquidity /// @param amount How much of token0 to add or remove from virtual reserves /// @param add Whether to add or remove the amount of token0 /// @return The price after adding or removing amount, depending on add function getNextSqrtPriceFromAmount0RoundingUp(uint160 sqrtPX96, uint128 liquidity, uint256 amount, bool add) internal pure returns (uint160) { // we short circuit amount == 0 because the result is otherwise not guaranteed to equal the input price if (amount == 0) return sqrtPX96; uint256 numerator1 = uint256(liquidity) << FixedPoint96.RESOLUTION; if (add) { uint256 product; if ((product = amount * sqrtPX96) / amount == sqrtPX96) { uint256 denominator = numerator1 + product; if (denominator >= numerator1) { // always fits in 160 bits return uint160(FullMath.mulDivRoundingUp(numerator1, sqrtPX96, denominator)); } } return uint160(UnsafeMath.divRoundingUp(numerator1, (numerator1 / sqrtPX96).add(amount))); } else { uint256 product; // if the product overflows, we know the denominator underflows // in addition, we must check that the denominator does not underflow require((product = amount * sqrtPX96) / amount == sqrtPX96 && numerator1 > product); uint256 denominator = numerator1 - product; return FullMath.mulDivRoundingUp(numerator1, sqrtPX96, denominator).toUint160(); } } /// @notice Gets the next sqrt price given a delta of token1 /// @dev Always rounds down, because in the exact output case (decreasing price) we need to move the price at least /// far enough to get the desired output amount, and in the exact input case (increasing price) we need to move the /// price less in order to not send too much output. /// The formula we compute is within <1 wei of the lossless version: sqrtPX96 +- amount / liquidity /// @param sqrtPX96 The starting price, i.e., before accounting for the token1 delta /// @param liquidity The amount of usable liquidity /// @param amount How much of token1 to add, or remove, from virtual reserves /// @param add Whether to add, or remove, the amount of token1 /// @return The price after adding or removing `amount` function getNextSqrtPriceFromAmount1RoundingDown(uint160 sqrtPX96, uint128 liquidity, uint256 amount, bool add) internal pure returns (uint160) { // if we're adding (subtracting), rounding down requires rounding the quotient down (up) // in both cases, avoid a mulDiv for most inputs if (add) { uint256 quotient = ( amount <= type(uint160).max ? (amount << FixedPoint96.RESOLUTION) / liquidity : FullMath.mulDiv(amount, FixedPoint96.Q96, liquidity) ); return uint256(sqrtPX96).add(quotient).toUint160(); } else { uint256 quotient = ( amount <= type(uint160).max ? UnsafeMath.divRoundingUp(amount << FixedPoint96.RESOLUTION, liquidity) : FullMath.mulDivRoundingUp(amount, FixedPoint96.Q96, liquidity) ); require(sqrtPX96 > quotient); // always fits 160 bits return uint160(sqrtPX96 - quotient); } } /// @notice Gets the next sqrt price given an input amount of token0 or token1 /// @dev Throws if price or liquidity are 0, or if the next price is out of bounds /// @param sqrtPX96 The starting price, i.e., before accounting for the input amount /// @param liquidity The amount of usable liquidity /// @param amountIn How much of token0, or token1, is being swapped in /// @param zeroForOne Whether the amount in is token0 or token1 /// @return sqrtQX96 The price after adding the input amount to token0 or token1 function getNextSqrtPriceFromInput(uint160 sqrtPX96, uint128 liquidity, uint256 amountIn, bool zeroForOne) internal pure returns (uint160 sqrtQX96) { require(sqrtPX96 > 0); require(liquidity > 0); // round to make sure that we don't pass the target price return zeroForOne ? getNextSqrtPriceFromAmount0RoundingUp(sqrtPX96, liquidity, amountIn, true) : getNextSqrtPriceFromAmount1RoundingDown(sqrtPX96, liquidity, amountIn, true); } /// @notice Gets the next sqrt price given an output amount of token0 or token1 /// @dev Throws if price or liquidity are 0 or the next price is out of bounds /// @param sqrtPX96 The starting price before accounting for the output amount /// @param liquidity The amount of usable liquidity /// @param amountOut How much of token0, or token1, is being swapped out /// @param zeroForOne Whether the amount out is token0 or token1 /// @return sqrtQX96 The price after removing the output amount of token0 or token1 function getNextSqrtPriceFromOutput(uint160 sqrtPX96, uint128 liquidity, uint256 amountOut, bool zeroForOne) internal pure returns (uint160 sqrtQX96) { require(sqrtPX96 > 0); require(liquidity > 0); // round to make sure that we pass the target price return zeroForOne ? getNextSqrtPriceFromAmount1RoundingDown(sqrtPX96, liquidity, amountOut, false) : getNextSqrtPriceFromAmount0RoundingUp(sqrtPX96, liquidity, amountOut, false); } /// @notice Gets the amount0 delta between two prices /// @dev Calculates liquidity / sqrt(lower) - liquidity / sqrt(upper), /// i.e. liquidity * (sqrt(upper) - sqrt(lower)) / (sqrt(upper) * sqrt(lower)) /// @param sqrtRatioAX96 A sqrt price /// @param sqrtRatioBX96 Another sqrt price /// @param liquidity The amount of usable liquidity /// @param roundUp Whether to round the amount up or down /// @return amount0 Amount of token0 required to cover a position of size liquidity between the two passed prices function getAmount0Delta(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity, bool roundUp) internal pure returns (uint256 amount0) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); uint256 numerator1 = uint256(liquidity) << FixedPoint96.RESOLUTION; uint256 numerator2 = sqrtRatioBX96 - sqrtRatioAX96; require(sqrtRatioAX96 > 0); return roundUp ? UnsafeMath.divRoundingUp(FullMath.mulDivRoundingUp(numerator1, numerator2, sqrtRatioBX96), sqrtRatioAX96) : FullMath.mulDiv(numerator1, numerator2, sqrtRatioBX96) / sqrtRatioAX96; } /// @notice Gets the amount1 delta between two prices /// @dev Calculates liquidity * (sqrt(upper) - sqrt(lower)) /// @param sqrtRatioAX96 A sqrt price /// @param sqrtRatioBX96 Another sqrt price /// @param liquidity The amount of usable liquidity /// @param roundUp Whether to round the amount up, or down /// @return amount1 Amount of token1 required to cover a position of size liquidity between the two passed prices function getAmount1Delta(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, uint128 liquidity, bool roundUp) internal pure returns (uint256 amount1) { if (sqrtRatioAX96 > sqrtRatioBX96) (sqrtRatioAX96, sqrtRatioBX96) = (sqrtRatioBX96, sqrtRatioAX96); return roundUp ? FullMath.mulDivRoundingUp(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96) : FullMath.mulDiv(liquidity, sqrtRatioBX96 - sqrtRatioAX96, FixedPoint96.Q96); } /// @notice Helper that gets signed token0 delta /// @param sqrtRatioAX96 A sqrt price /// @param sqrtRatioBX96 Another sqrt price /// @param liquidity The change in liquidity for which to compute the amount0 delta /// @return amount0 Amount of token0 corresponding to the passed liquidityDelta between the two prices function getAmount0Delta(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, int128 liquidity) internal pure returns (int256 amount0) { return liquidity < 0 ? -getAmount0Delta(sqrtRatioAX96, sqrtRatioBX96, uint128(-liquidity), false).toInt256() : getAmount0Delta(sqrtRatioAX96, sqrtRatioBX96, uint128(liquidity), true).toInt256(); } /// @notice Helper that gets signed token1 delta /// @param sqrtRatioAX96 A sqrt price /// @param sqrtRatioBX96 Another sqrt price /// @param liquidity The change in liquidity for which to compute the amount1 delta /// @return amount1 Amount of token1 corresponding to the passed liquidityDelta between the two prices function getAmount1Delta(uint160 sqrtRatioAX96, uint160 sqrtRatioBX96, int128 liquidity) internal pure returns (int256 amount1) { return liquidity < 0 ? -getAmount1Delta(sqrtRatioAX96, sqrtRatioBX96, uint128(-liquidity), false).toInt256() : getAmount1Delta(sqrtRatioAX96, sqrtRatioBX96, uint128(liquidity), true).toInt256(); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./external/FullMath.sol"; import "./SqrtPriceMath.sol"; /// @title Computes the result of a swap within ticks /// @notice Contains methods for computing the result of a swap within a single tick price range, i.e., a single tick. library SwapMath { /// @notice Computes the result of swapping some amount in, or amount out, given the parameters of the swap /// @dev The fee, plus the amount in, will never exceed the amount remaining if the swap's `amountSpecified` is positive /// @param sqrtRatioCurrentX96 The current sqrt price of the pool /// @param sqrtRatioTargetX96 The price that cannot be exceeded, from which the direction of the swap is inferred /// @param liquidity The usable liquidity /// @param amountRemaining How much input or output amount is remaining to be swapped in/out /// @param feePips The fee taken from the input amount, expressed in pips /// @return sqrtRatioNextX96 The price after swapping the amount in/out, not to exceed the price target /// @return amountIn The amount to be swapped in, of either token0 or token1, based on the direction of the swap /// @return amountOut The amount to be received, of either token0 or token1, based on the direction of the swap /// @return feeAmount The amount of input that will be taken as a fee function computeSwapStep( uint160 sqrtRatioCurrentX96, uint160 sqrtRatioTargetX96, uint128 liquidity, int256 amountRemaining, uint24 feePips ) internal pure returns (uint160 sqrtRatioNextX96, uint256 amountIn, uint256 amountOut, uint256 feeAmount) { bool zeroForOne = sqrtRatioCurrentX96 >= sqrtRatioTargetX96; bool exactIn = amountRemaining >= 0; if (exactIn) { uint256 amountRemainingLessFee = FullMath.mulDiv(uint256(amountRemaining), 1e6 - feePips, 1e6); amountIn = zeroForOne ? SqrtPriceMath.getAmount0Delta(sqrtRatioTargetX96, sqrtRatioCurrentX96, liquidity, true) : SqrtPriceMath.getAmount1Delta(sqrtRatioCurrentX96, sqrtRatioTargetX96, liquidity, true); if (amountRemainingLessFee >= amountIn) { sqrtRatioNextX96 = sqrtRatioTargetX96; } else { sqrtRatioNextX96 = SqrtPriceMath.getNextSqrtPriceFromInput( sqrtRatioCurrentX96, liquidity, amountRemainingLessFee, zeroForOne ); } } else { amountOut = zeroForOne ? SqrtPriceMath.getAmount1Delta(sqrtRatioTargetX96, sqrtRatioCurrentX96, liquidity, false) : SqrtPriceMath.getAmount0Delta(sqrtRatioCurrentX96, sqrtRatioTargetX96, liquidity, false); if (uint256(-amountRemaining) >= amountOut) { sqrtRatioNextX96 = sqrtRatioTargetX96; } else { sqrtRatioNextX96 = SqrtPriceMath.getNextSqrtPriceFromOutput( sqrtRatioCurrentX96, liquidity, uint256(-amountRemaining), zeroForOne ); } } bool max = sqrtRatioTargetX96 == sqrtRatioNextX96; // get the input/output amounts if (zeroForOne) { amountIn = max && exactIn ? amountIn : SqrtPriceMath.getAmount0Delta(sqrtRatioNextX96, sqrtRatioCurrentX96, liquidity, true); amountOut = max && !exactIn ? amountOut : SqrtPriceMath.getAmount1Delta(sqrtRatioNextX96, sqrtRatioCurrentX96, liquidity, false); } else { amountIn = max && exactIn ? amountIn : SqrtPriceMath.getAmount1Delta(sqrtRatioCurrentX96, sqrtRatioNextX96, liquidity, true); amountOut = max && !exactIn ? amountOut : SqrtPriceMath.getAmount0Delta(sqrtRatioCurrentX96, sqrtRatioNextX96, liquidity, false); } // cap the output amount to not exceed the remaining output amount if (!exactIn && amountOut > uint256(-amountRemaining)) { amountOut = uint256(-amountRemaining); } if (exactIn && sqrtRatioNextX96 != sqrtRatioTargetX96) { // we didn't reach the target, so take the remainder of the maximum input as fee feeAmount = uint256(amountRemaining) - amountIn; } else { feeAmount = FullMath.mulDivRoundingUp(amountIn, feePips, 1e6 - feePips); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0 <0.8.0; import "./external/LowGasSafeMath.sol"; import "./external/SafeCast.sol"; import "./TickMath.sol"; import "./LiquidityMath.sol"; /// @title Tick /// @notice Contains functions for managing tick processes and relevant calculations library Tick { using LowGasSafeMath for int256; using SafeCast for int256; // info stored for each initialized individual tick struct Info { // the total position liquidity that references this tick // includes both staked and unstaked liquidity uint128 liquidityGross; // amount of net liquidity added (subtracted) when tick is crossed from left to right (right to left) // includes both staked and unstaked liquidity int128 liquidityNet; // amount of net staked liquidity added (subtracted) when tick is crossed from left to right (right to left) int128 stakedLiquidityNet; // fee growth per unit of liquidity on the _other_ side of this tick (relative to the current tick) // only has relative meaning, not absolute — the value depends on when the tick is initialized uint256 feeGrowthOutside0X128; uint256 feeGrowthOutside1X128; // reward growth per unit of liquidity on the _other_ side of this tick (relative to the current tick) // only has relative meaning, not absolute — the value depends on when the tick is initialized uint256 rewardGrowthOutsideX128; // the cumulative tick value on the other side of the tick int56 tickCumulativeOutside; // the seconds per unit of liquidity on the _other_ side of this tick (relative to the current tick) // only has relative meaning, not absolute — the value depends on when the tick is initialized uint160 secondsPerLiquidityOutsideX128; // the seconds spent on the other side of the tick (relative to the current tick) // only has relative meaning, not absolute — the value depends on when the tick is initialized uint32 secondsOutside; // true iff the tick is initialized, i.e. the value is exactly equivalent to the expression liquidityGross != 0 // these 8 bits are set to prevent fresh sstores when crossing newly initialized ticks bool initialized; } struct LiquidityNets { int128 liquidityNet; int128 stakedLiquidityNet; } /// @notice Derives max liquidity per tick from given tick spacing /// @dev Executed within the pool constructor /// @param tickSpacing The amount of required tick separation, realized in multiples of `tickSpacing` /// e.g., a tickSpacing of 3 requires ticks to be initialized every 3rd tick i.e., ..., -6, -3, 0, 3, 6, ... /// @return The max liquidity per tick function tickSpacingToMaxLiquidityPerTick(int24 tickSpacing) internal pure returns (uint128) { int24 minTick = (TickMath.MIN_TICK / tickSpacing) * tickSpacing; int24 maxTick = (TickMath.MAX_TICK / tickSpacing) * tickSpacing; uint24 numTicks = uint24((maxTick - minTick) / tickSpacing) + 1; return type(uint128).max / numTicks; } /// @notice Retrieves fee growth data /// @param self The mapping containing all tick information for initialized ticks /// @param tickLower The lower tick boundary of the position /// @param tickUpper The upper tick boundary of the position /// @param tickCurrent The current tick /// @param feeGrowthGlobal0X128 The all-time global fee growth, per unit of liquidity, in token0 /// @param feeGrowthGlobal1X128 The all-time global fee growth, per unit of liquidity, in token1 /// @return feeGrowthInside0X128 The all-time fee growth in token0, per unit of liquidity, inside the position's tick boundaries /// @return feeGrowthInside1X128 The all-time fee growth in token1, per unit of liquidity, inside the position's tick boundaries function getFeeGrowthInside( mapping(int24 => Tick.Info) storage self, int24 tickLower, int24 tickUpper, int24 tickCurrent, uint256 feeGrowthGlobal0X128, uint256 feeGrowthGlobal1X128 ) internal view returns (uint256 feeGrowthInside0X128, uint256 feeGrowthInside1X128) { Info storage lower = self[tickLower]; Info storage upper = self[tickUpper]; // calculate fee growth below uint256 feeGrowthBelow0X128; uint256 feeGrowthBelow1X128; if (tickCurrent >= tickLower) { feeGrowthBelow0X128 = lower.feeGrowthOutside0X128; feeGrowthBelow1X128 = lower.feeGrowthOutside1X128; } else { feeGrowthBelow0X128 = feeGrowthGlobal0X128 - lower.feeGrowthOutside0X128; feeGrowthBelow1X128 = feeGrowthGlobal1X128 - lower.feeGrowthOutside1X128; } // calculate fee growth above uint256 feeGrowthAbove0X128; uint256 feeGrowthAbove1X128; if (tickCurrent < tickUpper) { feeGrowthAbove0X128 = upper.feeGrowthOutside0X128; feeGrowthAbove1X128 = upper.feeGrowthOutside1X128; } else { feeGrowthAbove0X128 = feeGrowthGlobal0X128 - upper.feeGrowthOutside0X128; feeGrowthAbove1X128 = feeGrowthGlobal1X128 - upper.feeGrowthOutside1X128; } feeGrowthInside0X128 = feeGrowthGlobal0X128 - feeGrowthBelow0X128 - feeGrowthAbove0X128; feeGrowthInside1X128 = feeGrowthGlobal1X128 - feeGrowthBelow1X128 - feeGrowthAbove1X128; } function getRewardGrowthInside( mapping(int24 => Tick.Info) storage self, int24 tickLower, int24 tickUpper, int24 tickCurrent, uint256 rewardGrowthGlobalX128 ) internal view returns (uint256 rewardGrowthInsideX128) { Info storage lower = self[tickLower]; Info storage upper = self[tickUpper]; // calculate reward growth below uint256 rewardGrowthBelowX128; if (tickCurrent >= tickLower) { rewardGrowthBelowX128 = lower.rewardGrowthOutsideX128; } else { rewardGrowthBelowX128 = rewardGrowthGlobalX128 - lower.rewardGrowthOutsideX128; } // calculate reward growth above uint256 rewardGrowthAboveX128; if (tickCurrent < tickUpper) { rewardGrowthAboveX128 = upper.rewardGrowthOutsideX128; } else { rewardGrowthAboveX128 = rewardGrowthGlobalX128 - upper.rewardGrowthOutsideX128; } rewardGrowthInsideX128 = rewardGrowthGlobalX128 - rewardGrowthBelowX128 - rewardGrowthAboveX128; } /// @notice Updates a tick and returns true if the tick was flipped from initialized to uninitialized, or vice versa /// @param self The mapping containing all tick information for initialized ticks /// @param tick The tick that will be updated /// @param tickCurrent The current tick /// @param liquidityDelta A new amount of liquidity to be added (subtracted) when tick is crossed from left to right (right to left) /// @param feeGrowthGlobal0X128 The all-time global fee growth, per unit of liquidity, in token0 /// @param feeGrowthGlobal1X128 The all-time global fee growth, per unit of liquidity, in token1 /// @param rewardGrowthGlobalX128 The all-time global reward growth, per unit of liquidity /// @param secondsPerLiquidityCumulativeX128 The all-time seconds per max(1, liquidity) of the pool /// @param tickCumulative The tick * time elapsed since the pool was first initialized /// @param time The current block timestamp cast to a uint32 /// @param upper true for updating a position's upper tick, or false for updating a position's lower tick /// @param maxLiquidity The maximum liquidity allocation for a single tick /// @return flipped Whether the tick was flipped from initialized to uninitialized, or vice versa function update( mapping(int24 => Tick.Info) storage self, int24 tick, int24 tickCurrent, int128 liquidityDelta, uint256 feeGrowthGlobal0X128, uint256 feeGrowthGlobal1X128, uint256 rewardGrowthGlobalX128, uint160 secondsPerLiquidityCumulativeX128, int56 tickCumulative, uint32 time, bool upper, uint128 maxLiquidity ) internal returns (bool flipped) { Tick.Info storage info = self[tick]; uint128 liquidityGrossBefore = info.liquidityGross; uint128 liquidityGrossAfter = LiquidityMath.addDelta(liquidityGrossBefore, liquidityDelta); require(liquidityGrossAfter <= maxLiquidity, "G"); flipped = (liquidityGrossAfter == 0) != (liquidityGrossBefore == 0); if (liquidityGrossBefore == 0) { // by convention, we assume that all growth before a tick was initialized happened _below_ the tick if (tick <= tickCurrent) { info.feeGrowthOutside0X128 = feeGrowthGlobal0X128; info.feeGrowthOutside1X128 = feeGrowthGlobal1X128; info.rewardGrowthOutsideX128 = rewardGrowthGlobalX128; info.secondsPerLiquidityOutsideX128 = secondsPerLiquidityCumulativeX128; info.tickCumulativeOutside = tickCumulative; info.secondsOutside = time; } info.initialized = true; } info.liquidityGross = liquidityGrossAfter; // when the lower (upper) tick is crossed left to right (right to left), liquidity must be added (removed) info.liquidityNet = upper ? int256(info.liquidityNet).sub(liquidityDelta).toInt128() : int256(info.liquidityNet).add(liquidityDelta).toInt128(); } /// @notice Updates the staked liquidity component of a tick. Assumes tick is already initialized with an existing position. /// @notice We reuse existing liquidity for staking, so there is no change in liquidity /// @param self The mapping containing all tick information for initialized ticks /// @param tick The tick that will be updated /// @param stakedLiquidityDelta The amount of staked liquidity to be added (subtracted) when tick is crossed from left to right (right to left) /// @param upper true for updating a position's upper tick, or false for updating a position's lower tick function updateStake(mapping(int24 => Tick.Info) storage self, int24 tick, int128 stakedLiquidityDelta, bool upper) internal { Tick.Info storage info = self[tick]; // when the lower (upper) tick is crossed left to right (right to left), staked liquidity must be added (removed) info.stakedLiquidityNet = upper ? int256(info.stakedLiquidityNet).sub(stakedLiquidityDelta).toInt128() : int256(info.stakedLiquidityNet).add(stakedLiquidityDelta).toInt128(); } /// @notice Clears tick data /// @param self The mapping containing all initialized tick information for initialized ticks /// @param tick The tick that will be cleared function clear(mapping(int24 => Tick.Info) storage self, int24 tick) internal { delete self[tick]; } /// @notice Transitions to next tick as needed by price movement /// @param self The mapping containing all tick information for initialized ticks /// @param tick The destination tick of the transition /// @param feeGrowthGlobal0X128 The all-time global fee growth, per unit of liquidity, in token0 /// @param feeGrowthGlobal1X128 The all-time global fee growth, per unit of liquidity, in token1 /// @param secondsPerLiquidityCumulativeX128 The current seconds per liquidity /// @param tickCumulative The tick * time elapsed since the pool was first initialized /// @param time The current block.timestamp /// @param rewardGrowthGlobalX128 The all-time global reward growth, per unit of liquidity /// @return nets The amount of liquidity and staked liquidity added (subtracted) when tick is crossed from left to right (right to left) function cross( mapping(int24 => Tick.Info) storage self, int24 tick, uint256 feeGrowthGlobal0X128, uint256 feeGrowthGlobal1X128, uint160 secondsPerLiquidityCumulativeX128, int56 tickCumulative, uint32 time, uint256 rewardGrowthGlobalX128 ) internal returns (LiquidityNets memory nets) { Tick.Info storage info = self[tick]; info.feeGrowthOutside0X128 = feeGrowthGlobal0X128 - info.feeGrowthOutside0X128; info.feeGrowthOutside1X128 = feeGrowthGlobal1X128 - info.feeGrowthOutside1X128; info.rewardGrowthOutsideX128 = rewardGrowthGlobalX128 - info.rewardGrowthOutsideX128; info.secondsPerLiquidityOutsideX128 = secondsPerLiquidityCumulativeX128 - info.secondsPerLiquidityOutsideX128; info.tickCumulativeOutside = tickCumulative - info.tickCumulativeOutside; info.secondsOutside = time - info.secondsOutside; nets.liquidityNet = info.liquidityNet; nets.stakedLiquidityNet = info.stakedLiquidityNet; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0; import "./external/BitMath.sol"; /// @title Packed tick initialized state library /// @notice Stores a packed mapping of tick index to its initialized state /// @dev The mapping uses int16 for keys since ticks are represented as int24 and there are 256 (2^8) values per word. library TickBitmap { /// @notice Computes the position in the mapping where the initialized bit for a tick lives /// @param tick The tick for which to compute the position /// @return wordPos The key in the mapping containing the word in which the bit is stored /// @return bitPos The bit position in the word where the flag is stored function position(int24 tick) private pure returns (int16 wordPos, uint8 bitPos) { wordPos = int16(tick >> 8); bitPos = uint8(tick % 256); } /// @notice Flips the initialized state for a given tick from false to true, or vice versa /// @param self The mapping in which to flip the tick /// @param tick The tick to flip /// @param tickSpacing The spacing between usable ticks function flipTick(mapping(int16 => uint256) storage self, int24 tick, int24 tickSpacing) internal { require(tick % tickSpacing == 0); // ensure that the tick is spaced (int16 wordPos, uint8 bitPos) = position(tick / tickSpacing); uint256 mask = 1 << bitPos; self[wordPos] ^= mask; } /// @notice Returns the next initialized tick contained in the same word (or adjacent word) as the tick that is either /// to the left (less than or equal to) or right (greater than) of the given tick /// @param self The mapping in which to compute the next initialized tick /// @param tick The starting tick /// @param tickSpacing The spacing between usable ticks /// @param lte Whether to search for the next initialized tick to the left (less than or equal to the starting tick) /// @return next The next initialized or uninitialized tick up to 256 ticks away from the current tick /// @return initialized Whether the next tick is initialized, as the function only searches within up to 256 ticks function nextInitializedTickWithinOneWord( mapping(int16 => uint256) storage self, int24 tick, int24 tickSpacing, bool lte ) internal view returns (int24 next, bool initialized) { int24 compressed = tick / tickSpacing; if (tick < 0 && tick % tickSpacing != 0) compressed--; // round towards negative infinity if (lte) { (int16 wordPos, uint8 bitPos) = position(compressed); // all the 1s at or to the right of the current bitPos uint256 mask = (1 << bitPos) - 1 + (1 << bitPos); uint256 masked = self[wordPos] & mask; // if there are no initialized ticks to the right of or at the current tick, return rightmost in the word initialized = masked != 0; // overflow/underflow is possible, but prevented externally by limiting both tickSpacing and tick next = initialized ? (compressed - int24(bitPos - BitMath.mostSignificantBit(masked))) * tickSpacing : (compressed - int24(bitPos)) * tickSpacing; } else { // start from the word of the next tick, since the current tick state doesn't matter (int16 wordPos, uint8 bitPos) = position(compressed + 1); // all the 1s at or to the left of the bitPos uint256 mask = ~((1 << bitPos) - 1); uint256 masked = self[wordPos] & mask; // if there are no initialized ticks to the left of the current tick, return leftmost in the word initialized = masked != 0; // overflow/underflow is possible, but prevented externally by limiting both tickSpacing and tick next = initialized ? (compressed + 1 + int24(BitMath.leastSignificantBit(masked) - bitPos)) * tickSpacing : (compressed + 1 + int24(type(uint8).max - bitPos)) * tickSpacing; } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.5.0 <0.8.0; /// @title Math library for computing sqrt prices from ticks and vice versa /// @notice Computes sqrt price for ticks of size 1.0001, i.e. sqrt(1.0001^tick) as fixed point Q64.96 numbers. Supports /// prices between 2**-128 and 2**128 library TickMath { /// @dev The minimum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**-128 int24 internal constant MIN_TICK = -887272; /// @dev The maximum tick that may be passed to #getSqrtRatioAtTick computed from log base 1.0001 of 2**128 int24 internal constant MAX_TICK = -MIN_TICK; /// @dev The minimum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MIN_TICK) uint160 internal constant MIN_SQRT_RATIO = 4295128739; /// @dev The maximum value that can be returned from #getSqrtRatioAtTick. Equivalent to getSqrtRatioAtTick(MAX_TICK) uint160 internal constant MAX_SQRT_RATIO = 1461446703485210103287273052203988822378723970342; /// @notice Calculates sqrt(1.0001^tick) * 2^96 /// @dev Throws if |tick| > max tick /// @param tick The input tick for the above formula /// @return sqrtPriceX96 A Fixed point Q64.96 number representing the sqrt of the ratio of the two assets (token1/token0) /// at the given tick function getSqrtRatioAtTick(int24 tick) internal pure returns (uint160 sqrtPriceX96) { uint256 absTick = tick < 0 ? uint256(-int256(tick)) : uint256(int256(tick)); require(absTick <= uint256(MAX_TICK), "T"); uint256 ratio = absTick & 0x1 != 0 ? 0xfffcb933bd6fad37aa2d162d1a594001 : 0x100000000000000000000000000000000; if (absTick & 0x2 != 0) ratio = (ratio * 0xfff97272373d413259a46990580e213a) >> 128; if (absTick & 0x4 != 0) ratio = (ratio * 0xfff2e50f5f656932ef12357cf3c7fdcc) >> 128; if (absTick & 0x8 != 0) ratio = (ratio * 0xffe5caca7e10e4e61c3624eaa0941cd0) >> 128; if (absTick & 0x10 != 0) ratio = (ratio * 0xffcb9843d60f6159c9db58835c926644) >> 128; if (absTick & 0x20 != 0) ratio = (ratio * 0xff973b41fa98c081472e6896dfb254c0) >> 128; if (absTick & 0x40 != 0) ratio = (ratio * 0xff2ea16466c96a3843ec78b326b52861) >> 128; if (absTick & 0x80 != 0) ratio = (ratio * 0xfe5dee046a99a2a811c461f1969c3053) >> 128; if (absTick & 0x100 != 0) ratio = (ratio * 0xfcbe86c7900a88aedcffc83b479aa3a4) >> 128; if (absTick & 0x200 != 0) ratio = (ratio * 0xf987a7253ac413176f2b074cf7815e54) >> 128; if (absTick & 0x400 != 0) ratio = (ratio * 0xf3392b0822b70005940c7a398e4b70f3) >> 128; if (absTick & 0x800 != 0) ratio = (ratio * 0xe7159475a2c29b7443b29c7fa6e889d9) >> 128; if (absTick & 0x1000 != 0) ratio = (ratio * 0xd097f3bdfd2022b8845ad8f792aa5825) >> 128; if (absTick & 0x2000 != 0) ratio = (ratio * 0xa9f746462d870fdf8a65dc1f90e061e5) >> 128; if (absTick & 0x4000 != 0) ratio = (ratio * 0x70d869a156d2a1b890bb3df62baf32f7) >> 128; if (absTick & 0x8000 != 0) ratio = (ratio * 0x31be135f97d08fd981231505542fcfa6) >> 128; if (absTick & 0x10000 != 0) ratio = (ratio * 0x9aa508b5b7a84e1c677de54f3e99bc9) >> 128; if (absTick & 0x20000 != 0) ratio = (ratio * 0x5d6af8dedb81196699c329225ee604) >> 128; if (absTick & 0x40000 != 0) ratio = (ratio * 0x2216e584f5fa1ea926041bedfe98) >> 128; if (absTick & 0x80000 != 0) ratio = (ratio * 0x48a170391f7dc42444e8fa2) >> 128; if (tick > 0) ratio = type(uint256).max / ratio; // this divides by 1<<32 rounding up to go from a Q128.128 to a Q128.96. // we then downcast because we know the result always fits within 160 bits due to our tick input constraint // we round up in the division so getTickAtSqrtRatio of the output price is always consistent sqrtPriceX96 = uint160((ratio >> 32) + (ratio % (1 << 32) == 0 ? 0 : 1)); } /// @notice Calculates the greatest tick value such that getRatioAtTick(tick) <= ratio /// @dev Throws in case sqrtPriceX96 < MIN_SQRT_RATIO, as MIN_SQRT_RATIO is the lowest value getRatioAtTick may /// ever return. /// @param sqrtPriceX96 The sqrt ratio for which to compute the tick as a Q64.96 /// @return tick The greatest tick for which the ratio is less than or equal to the input ratio function getTickAtSqrtRatio(uint160 sqrtPriceX96) internal pure returns (int24 tick) { // second inequality must be < because the price can never reach the price at the max tick require(sqrtPriceX96 >= MIN_SQRT_RATIO && sqrtPriceX96 < MAX_SQRT_RATIO, "R"); uint256 ratio = uint256(sqrtPriceX96) << 32; uint256 r = ratio; uint256 msb = 0; assembly { let f := shl(7, gt(r, 0xFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(6, gt(r, 0xFFFFFFFFFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(5, gt(r, 0xFFFFFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(4, gt(r, 0xFFFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(3, gt(r, 0xFF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(2, gt(r, 0xF)) msb := or(msb, f) r := shr(f, r) } assembly { let f := shl(1, gt(r, 0x3)) msb := or(msb, f) r := shr(f, r) } assembly { let f := gt(r, 0x1) msb := or(msb, f) } if (msb >= 128) r = ratio >> (msb - 127); else r = ratio << (127 - msb); int256 log_2 = (int256(msb) - 128) << 64; assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(63, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(62, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(61, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(60, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(59, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(58, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(57, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(56, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(55, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(54, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(53, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(52, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(51, f)) r := shr(f, r) } assembly { r := shr(127, mul(r, r)) let f := shr(128, r) log_2 := or(log_2, shl(50, f)) } int256 log_sqrt10001 = log_2 * 255738958999603826347141; // 128.128 number int24 tickLow = int24((log_sqrt10001 - 3402992956809132418596140100660247210) >> 128); int24 tickHi = int24((log_sqrt10001 + 291339464771989622907027621153398088495) >> 128); tick = tickLow == tickHi ? tickLow : getSqrtRatioAtTick(tickHi) <= sqrtPriceX96 ? tickHi : tickLow; } }
// SPDX-License-Identifier: MIT pragma solidity =0.7.6; library TokenRatioSortOrder { int256 constant NUMERATOR_MOST = 300; int256 constant NUMERATOR_MORE = 200; int256 constant NUMERATOR = 100; int256 constant DENOMINATOR_MOST = -300; int256 constant DENOMINATOR_MORE = -200; int256 constant DENOMINATOR = -100; }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/ISyncSwapRangePoolFactory.sol"; import "./interfaces/callback/ICLMintCallback.sol"; import "./libraries/TickMath.sol"; import "./libraries/PoolAddress.sol"; import "./libraries/CallbackValidation.sol"; import "./libraries/LiquidityAmounts.sol"; import "./PeripheryPayments.sol"; import "./PeripheryImmutableState.sol"; /// @title Liquidity management functions /// @notice Internal functions for safely managing liquidity in CL abstract contract LiquidityManagement is ICLMintCallback, PeripheryImmutableState, PeripheryPayments { struct MintCallbackData { PoolAddress.PoolKey poolKey; address payer; } /// @inheritdoc ICLMintCallback function uniswapV3MintCallback(uint256 amount0Owed, uint256 amount1Owed, bytes calldata data) external override { MintCallbackData memory decoded = abi.decode(data, (MintCallbackData)); CallbackValidation.verifyCallback(factory, decoded.poolKey); if (amount0Owed != 0) { pay(decoded.poolKey.token0, decoded.payer, msg.sender, amount0Owed); } if (amount1Owed != 0) { pay(decoded.poolKey.token1, decoded.payer, msg.sender, amount1Owed); } } struct AddLiquidityParams { address poolAddress; PoolAddress.PoolKey poolKey; address recipient; int24 tickLower; int24 tickUpper; uint256 amount0Desired; uint256 amount1Desired; uint256 amount0Min; uint256 amount1Min; } /// @notice Add liquidity to an initialized pool function addLiquidity(AddLiquidityParams memory params) internal returns (uint128 liquidity, uint256 amount0, uint256 amount1) { ISyncSwapRangePool pool = ISyncSwapRangePool(params.poolAddress); // compute the liquidity amount { (uint160 sqrtPriceX96,,,,,) = pool.slot0(); uint160 sqrtRatioAX96 = TickMath.getSqrtRatioAtTick(params.tickLower); uint160 sqrtRatioBX96 = TickMath.getSqrtRatioAtTick(params.tickUpper); liquidity = LiquidityAmounts.getLiquidityForAmounts( sqrtPriceX96, sqrtRatioAX96, sqrtRatioBX96, params.amount0Desired, params.amount1Desired ); } (amount0, amount1) = pool.mint( params.recipient, params.tickLower, params.tickUpper, liquidity, abi.encode(MintCallbackData({poolKey: params.poolKey, payer: msg.sender})) ); require(amount0 >= params.amount0Min && amount1 >= params.amount1Min, "PSC"); // price slippage check } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/ISyncSwapRangePool.sol"; import "./libraries/external/SafeERC20Namer.sol"; import "./libraries/external/Base64.sol"; import "./libraries/external/ChainId.sol"; import "./interfaces/INonfungiblePositionManager.sol"; import "./interfaces/INonfungibleTokenPositionDescriptor.sol"; import "./interfaces/external/IERC20Metadata.sol"; import "./libraries/PoolAddress.sol"; import "./libraries/NFTDescriptor.sol"; import "./libraries/TokenRatioSortOrder.sol"; import "./libraries/NFTSVG.sol"; /// @title Describes NFT token positions /// @notice Produces a string containing the data URI for a JSON metadata string contract NFTPositionDescriptorZKSync is INonfungibleTokenPositionDescriptor { address private constant USDCE = 0x3355df6D4c9C3035724Fd0e3914dE96A5a83aaf4; // USDC.e address private constant USDC = 0x1d17CBcF0D6D143135aE902365D2E5e2A16538D4; // USDC Native address private constant USDT = 0x493257fD37EDB34451f62EDf8D2a0C418852bA4C; address private constant WBTC = 0xBBeB516fb02a01611cBBE0453Fe3c580D7281011; address public immutable WETH9 = 0x5AEa5775959fBC2557Cc8789bC1bf90A239D9a91; /// @notice Returns the native currency label as a string function nativeCurrencyLabel() public pure returns (string memory) { return "ETH"; } /// @inheritdoc INonfungibleTokenPositionDescriptor function tokenURI(INonfungiblePositionManager positionManager, uint256 tokenId) external view override returns (string memory) { (,, address token0, address token1, int24 tickSpacing, int24 tickLower, int24 tickUpper,,,,,) = positionManager.positions(tokenId); ISyncSwapRangePool pool = ISyncSwapRangePool( PoolAddress.computeAddress( positionManager.factory(), PoolAddress.PoolKey({token0: token0, token1: token1, tickSpacing: tickSpacing}) ) ); NFTDescriptor.ConstructTokenURIParams memory params; { bool _flipRatio = flipRatio(token0, token1, 0); address quoteTokenAddress = !_flipRatio ? token1 : token0; address baseTokenAddress = !_flipRatio ? token0 : token1; (, int24 tick, , , , ) = pool.slot0(); params = NFTDescriptor.ConstructTokenURIParams({ tokenId: tokenId, quoteTokenAddress: quoteTokenAddress, baseTokenAddress: baseTokenAddress, quoteTokenSymbol: quoteTokenAddress == WETH9 ? nativeCurrencyLabel() : SafeERC20Namer.tokenSymbol(quoteTokenAddress), baseTokenSymbol: baseTokenAddress == WETH9 ? nativeCurrencyLabel() : SafeERC20Namer.tokenSymbol(baseTokenAddress), quoteTokenDecimals: IERC20Metadata(quoteTokenAddress).decimals(), baseTokenDecimals: IERC20Metadata(baseTokenAddress).decimals(), flipRatio: _flipRatio, tickLower: tickLower, tickUpper: tickUpper, tickCurrent: tick, tickSpacing: tickSpacing, poolAddress: address(pool) }); } string memory image = Base64.encode(bytes(generateSVG(params))); string memory nameAndDescription = NFTDescriptor.constructTokenURI(params); return string( abi.encodePacked( "data:application/json;base64,", Base64.encode( bytes( abi.encodePacked( "{", nameAndDescription, ', "image": "', "data:image/svg+xml;base64,", image, '"}' ) ) ) ) ); } function generateSVG( NFTDescriptor.ConstructTokenURIParams memory params ) internal pure returns (string memory) { return NFTSVG.generateSVG({ quoteTokenAddress: params.quoteTokenAddress, baseTokenAddress: params.baseTokenAddress, quoteTokenSymbol: params.quoteTokenSymbol, baseTokenSymbol: params.baseTokenSymbol, tokenId: params.tokenId, tickLower: params.tickLower, tickUpper: params.tickUpper, tickCurrent: params.tickCurrent, tickSpacing: params.tickSpacing }); } function tokensOwed(INonfungiblePositionManager positionManager, uint256 tokenId, bool _flipRatio) internal view returns (uint256 quoteTokensOwed, uint256 baseTokensOwed) { (,,,,,,,,,, uint256 tokensOwed0, uint256 tokensOwed1) = positionManager.positions(tokenId); quoteTokensOwed = _flipRatio ? tokensOwed1 : tokensOwed0; baseTokensOwed = _flipRatio ? tokensOwed0 : tokensOwed1; } function flipRatio(address token0, address token1, uint256 chainId) public view returns (bool) { return tokenRatioPriority(token0, chainId) > tokenRatioPriority(token1, chainId); } function tokenRatioPriority(address token, uint256) public view returns (int256) { if (token == WETH9) { return TokenRatioSortOrder.DENOMINATOR; } if (token == USDCE || token == USDC) { return TokenRatioSortOrder.NUMERATOR_MOST; } else if (token == USDT) { return TokenRatioSortOrder.NUMERATOR_MORE; } else if (token == WBTC) { return TokenRatioSortOrder.DENOMINATOR_MOST; } return 0; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/ISyncSwapRangePool.sol"; import "./interfaces/INonfungiblePositionManager.sol"; import "./interfaces/INonfungibleTokenPositionDescriptor.sol"; import "./libraries/external/FixedPoint128.sol"; import "./libraries/external/FullMath.sol"; import "./libraries/external/Multicall.sol"; import "./libraries/external/ERC721Permit.sol"; import "./libraries/external/SelfPermit.sol"; import "./libraries/PositionKey.sol"; import "./libraries/PoolAddress.sol"; import "./LiquidityManagement.sol"; import "./PeripheryImmutableState.sol"; /// @title NFT positions /// @notice Wraps CL positions in the ERC721 non-fungible token interface contract NonfungiblePositionManager is INonfungiblePositionManager, Multicall, ERC721Permit, PeripheryImmutableState, LiquidityManagement, SelfPermit { // details about the cl position struct Position { // the nonce for permits uint96 nonce; // the address that is approved for spending this token address operator; // the ID of the pool with which this token is connected uint80 poolId; // the tick range of the position int24 tickLower; int24 tickUpper; // the liquidity of the position uint128 liquidity; // the fee growth of the aggregate position as of the last action on the individual position uint256 feeGrowthInside0LastX128; uint256 feeGrowthInside1LastX128; // how many uncollected tokens are owed to the position, as of the last computation uint128 tokensOwed0; uint128 tokensOwed1; } /// @dev Revert String Annotations: /// NE - ERC721: approved query for nonexistent token /// PS - Price slippage check /// ID - Invalid token ID /// ZA - Zero Address /// NA - Not approved /// NC - Not cleared /// NO - Not Owner /// @dev IDs of pools assigned by this contract mapping(address => uint80) private _poolIds; /// @dev Pool keys by pool ID, to save on SSTOREs for position data mapping(uint80 => PoolAddress.PoolKey) private _poolIdToPoolKey; /// @dev The token ID position data mapping(uint256 => Position) private _positions; /// @dev The ID of the next token that will be minted. Skips 0 uint176 private _nextId = 1; /// @dev The ID of the next pool that is used for the first time. Skips 0 uint80 private _nextPoolId = 1; /// @inheritdoc INonfungiblePositionManager address public override tokenDescriptor; modifier checkDeadline(uint256 deadline) { require(block.timestamp <= deadline); _; } constructor(address _factory, address _WETH9, address _tokenDescriptor) ERC721Permit("SyncSwap V3 Position NFT", "SSLP", "1") PeripheryImmutableState(_factory, _WETH9) { tokenDescriptor = _tokenDescriptor; } /// @inheritdoc INonfungiblePositionManager function positions(uint256 tokenId) external view override returns ( uint96 nonce, address operator, address token0, address token1, int24 tickSpacing, int24 tickLower, int24 tickUpper, uint128 liquidity, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128, uint128 tokensOwed0, uint128 tokensOwed1 ) { Position memory position = _positions[tokenId]; require(position.poolId != 0, "ID"); PoolAddress.PoolKey memory poolKey = _poolIdToPoolKey[position.poolId]; return ( position.nonce, position.operator, poolKey.token0, poolKey.token1, poolKey.tickSpacing, position.tickLower, position.tickUpper, position.liquidity, position.feeGrowthInside0LastX128, position.feeGrowthInside1LastX128, position.tokensOwed0, position.tokensOwed1 ); } /// @dev Caches a pool key function cachePoolKey(address pool, PoolAddress.PoolKey memory poolKey) private returns (uint80 poolId) { poolId = _poolIds[pool]; if (poolId == 0) { _poolIds[pool] = (poolId = _nextPoolId++); _poolIdToPoolKey[poolId] = poolKey; } } /// @inheritdoc INonfungiblePositionManager function mint(MintParams calldata params) external payable override checkDeadline(params.deadline) returns (uint256 tokenId, uint128 liquidity, uint256 amount0, uint256 amount1) { if (params.sqrtPriceX96 != 0) { ISyncSwapRangePoolFactory(factory).createPool({ tokenA: params.token0, tokenB: params.token1, tickSpacing: params.tickSpacing, sqrtPriceX96: params.sqrtPriceX96 }); } PoolAddress.PoolKey memory poolKey = PoolAddress.PoolKey({token0: params.token0, token1: params.token1, tickSpacing: params.tickSpacing}); ISyncSwapRangePool pool = ISyncSwapRangePool(PoolAddress.computeAddress(factory, poolKey)); (liquidity, amount0, amount1) = addLiquidity( AddLiquidityParams({ poolAddress: address(pool), poolKey: poolKey, recipient: address(this), tickLower: params.tickLower, tickUpper: params.tickUpper, amount0Desired: params.amount0Desired, amount1Desired: params.amount1Desired, amount0Min: params.amount0Min, amount1Min: params.amount1Min }) ); _mint(params.recipient, (tokenId = _nextId++)); bytes32 positionKey = PositionKey.compute(address(this), params.tickLower, params.tickUpper); (, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128,,) = pool.positions(positionKey); // idempotent set uint80 poolId = cachePoolKey(address(pool), poolKey); _positions[tokenId] = Position({ nonce: 0, operator: address(0), poolId: poolId, tickLower: params.tickLower, tickUpper: params.tickUpper, liquidity: liquidity, feeGrowthInside0LastX128: feeGrowthInside0LastX128, feeGrowthInside1LastX128: feeGrowthInside1LastX128, tokensOwed0: 0, tokensOwed1: 0 }); refundETH(); emit IncreaseLiquidity(tokenId, liquidity, amount0, amount1); } modifier isAuthorizedForToken(uint256 tokenId) { require(_isApprovedOrOwner(msg.sender, tokenId)); _; } function tokenURI(uint256 tokenId) public view override(ERC721, IERC721Metadata) returns (string memory) { require(_exists(tokenId)); return INonfungibleTokenPositionDescriptor(tokenDescriptor).tokenURI(this, tokenId); } // save bytecode by removing implementation of unused method function baseURI() public pure override returns (string memory) {} /// @inheritdoc INonfungiblePositionManager function increaseLiquidity(IncreaseLiquidityParams calldata params) external payable override checkDeadline(params.deadline) returns (uint128 liquidity, uint256 amount0, uint256 amount1) { Position storage position = _positions[params.tokenId]; PoolAddress.PoolKey memory poolKey = _poolIdToPoolKey[position.poolId]; ISyncSwapRangePool pool = ISyncSwapRangePool(PoolAddress.computeAddress(factory, poolKey)); address gauge = pool.gauge(); bool isStaked = ownerOf(params.tokenId) == gauge; if (isStaked) require(msg.sender == gauge, "NG"); (liquidity, amount0, amount1) = addLiquidity( AddLiquidityParams({ poolAddress: address(pool), poolKey: poolKey, tickLower: position.tickLower, tickUpper: position.tickUpper, amount0Desired: params.amount0Desired, amount1Desired: params.amount1Desired, amount0Min: params.amount0Min, amount1Min: params.amount1Min, recipient: isStaked ? gauge : address(this) }) ); bytes32 positionKey = PositionKey.compute(isStaked ? gauge : address(this), position.tickLower, position.tickUpper); // this is now updated to the current transaction (, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128,,) = pool.positions(positionKey); if (!isStaked) { position.tokensOwed0 += uint128( FullMath.mulDiv( feeGrowthInside0LastX128 - position.feeGrowthInside0LastX128, position.liquidity, FixedPoint128.Q128 ) ); position.tokensOwed1 += uint128( FullMath.mulDiv( feeGrowthInside1LastX128 - position.feeGrowthInside1LastX128, position.liquidity, FixedPoint128.Q128 ) ); } position.feeGrowthInside0LastX128 = feeGrowthInside0LastX128; position.feeGrowthInside1LastX128 = feeGrowthInside1LastX128; position.liquidity += liquidity; refundETH(); emit MetadataUpdate(params.tokenId); emit IncreaseLiquidity(params.tokenId, liquidity, amount0, amount1); } /// @inheritdoc INonfungiblePositionManager function decreaseLiquidity(DecreaseLiquidityParams calldata params) external payable override isAuthorizedForToken(params.tokenId) checkDeadline(params.deadline) returns (uint256 amount0, uint256 amount1) { require(params.liquidity > 0); Position storage position = _positions[params.tokenId]; uint128 positionLiquidity = position.liquidity; require(positionLiquidity >= params.liquidity); PoolAddress.PoolKey memory poolKey = _poolIdToPoolKey[position.poolId]; ISyncSwapRangePool pool = ISyncSwapRangePool(PoolAddress.computeAddress(factory, poolKey)); address gauge = pool.gauge(); bool isStaked = ownerOf(params.tokenId) == gauge; if (!isStaked) { (amount0, amount1) = pool.burn(position.tickLower, position.tickUpper, params.liquidity); } else { (amount0, amount1) = pool.burn(position.tickLower, position.tickUpper, params.liquidity, gauge); } require(amount0 >= params.amount0Min && amount1 >= params.amount1Min, "PS"); bytes32 positionKey = PositionKey.compute(isStaked ? gauge : address(this), position.tickLower, position.tickUpper); // this is now updated to the current transaction (, uint256 feeGrowthInside0LastX128, uint256 feeGrowthInside1LastX128,,) = pool.positions(positionKey); /// @dev Casting to u128 and the sum of tokensOwed overflow can cause a loss to users. /// @dev This is more probable for tokens that have very high decimals. /// @dev The amount of tokens necessary for the loss is: 3.4028237e+38. position.tokensOwed0 += uint128(amount0); position.tokensOwed1 += uint128(amount1); if (!isStaked) { position.tokensOwed0 += uint128( FullMath.mulDiv( feeGrowthInside0LastX128 - position.feeGrowthInside0LastX128, positionLiquidity, FixedPoint128.Q128 ) ); position.tokensOwed1 += uint128( FullMath.mulDiv( feeGrowthInside1LastX128 - position.feeGrowthInside1LastX128, positionLiquidity, FixedPoint128.Q128 ) ); } position.feeGrowthInside0LastX128 = feeGrowthInside0LastX128; position.feeGrowthInside1LastX128 = feeGrowthInside1LastX128; // subtraction is safe because we checked positionLiquidity is gte params.liquidity position.liquidity = positionLiquidity - params.liquidity; emit MetadataUpdate(params.tokenId); emit DecreaseLiquidity(params.tokenId, params.liquidity, amount0, amount1); } /// @inheritdoc INonfungiblePositionManager function collect(CollectParams calldata params) external payable override isAuthorizedForToken(params.tokenId) returns (uint256 amount0, uint256 amount1) { require(params.amount0Max > 0 || params.amount1Max > 0); // allow collecting to the nft position manager address with address 0 address recipient = params.recipient == address(0) ? address(this) : params.recipient; Position storage position = _positions[params.tokenId]; PoolAddress.PoolKey memory poolKey = _poolIdToPoolKey[position.poolId]; ISyncSwapRangePool pool = ISyncSwapRangePool(PoolAddress.computeAddress(factory, poolKey)); (uint128 tokensOwed0, uint128 tokensOwed1) = (position.tokensOwed0, position.tokensOwed1); address gauge = pool.gauge(); bool isStaked = ownerOf(params.tokenId) == gauge; // trigger an update of the position fees owed and fee growth snapshots if it has any liquidity if (position.liquidity > 0) { uint256 feeGrowthInside0LastX128; uint256 feeGrowthInside1LastX128; if (!isStaked) { pool.burn(position.tickLower, position.tickUpper, 0); (, feeGrowthInside0LastX128, feeGrowthInside1LastX128,,) = pool.positions(PositionKey.compute(address(this), position.tickLower, position.tickUpper)); tokensOwed0 += uint128( FullMath.mulDiv( feeGrowthInside0LastX128 - position.feeGrowthInside0LastX128, position.liquidity, FixedPoint128.Q128 ) ); tokensOwed1 += uint128( FullMath.mulDiv( feeGrowthInside1LastX128 - position.feeGrowthInside1LastX128, position.liquidity, FixedPoint128.Q128 ) ); } else { pool.burn(position.tickLower, position.tickUpper, 0, gauge); (, feeGrowthInside0LastX128, feeGrowthInside1LastX128,,) = pool.positions(PositionKey.compute(gauge, position.tickLower, position.tickUpper)); } position.feeGrowthInside0LastX128 = feeGrowthInside0LastX128; position.feeGrowthInside1LastX128 = feeGrowthInside1LastX128; } // compute the arguments to give to the pool#collect method (uint128 amount0Collect, uint128 amount1Collect) = ( params.amount0Max > tokensOwed0 ? tokensOwed0 : params.amount0Max, params.amount1Max > tokensOwed1 ? tokensOwed1 : params.amount1Max ); // the actual amounts collected are returned if (!isStaked) { (amount0, amount1) = pool.collect(recipient, position.tickLower, position.tickUpper, amount0Collect, amount1Collect); } else { (amount0, amount1) = pool.collect(recipient, position.tickLower, position.tickUpper, amount0Collect, amount1Collect, gauge); } // sometimes there will be a few less wei than expected due to rounding down in core, but we just subtract the full amount expected // instead of the actual amount so we can burn the token (position.tokensOwed0, position.tokensOwed1) = (tokensOwed0 - amount0Collect, tokensOwed1 - amount1Collect); emit MetadataUpdate(params.tokenId); emit Collect(params.tokenId, recipient, amount0Collect, amount1Collect); } /// @inheritdoc INonfungiblePositionManager function burn(uint256 tokenId) external payable override isAuthorizedForToken(tokenId) { Position storage position = _positions[tokenId]; require(position.liquidity == 0 && position.tokensOwed0 == 0 && position.tokensOwed1 == 0, "NC"); delete _positions[tokenId]; _burn(tokenId); } function _getAndIncrementNonce(uint256 tokenId) internal override returns (uint256) { return uint256(_positions[tokenId].nonce++); } /// @inheritdoc IERC721 function getApproved(uint256 tokenId) public view override(ERC721, IERC721) returns (address) { require(_exists(tokenId), "NE"); return _positions[tokenId].operator; } /// @dev Overrides _approve to use the operator in the position, which is packed with the position permit nonce function _approve(address to, uint256 tokenId) internal override(ERC721) { _positions[tokenId].operator = to; emit Approval(ownerOf(tokenId), to, tokenId); } /// @inheritdoc INonfungiblePositionManager function setTokenDescriptor(address _tokenDescriptor) external override onlyOwner { require(_tokenDescriptor != address(0)); tokenDescriptor = _tokenDescriptor; emit BatchMetadataUpdate(0, type(uint256).max); emit TokenDescriptorChanged(_tokenDescriptor); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; import "./interfaces/IPeripheryImmutableState.sol"; /// @title Immutable state /// @notice Immutable state used by periphery contracts abstract contract PeripheryImmutableState is IPeripheryImmutableState { /// @inheritdoc IPeripheryImmutableState address public immutable override factory; /// @inheritdoc IPeripheryImmutableState address public immutable override WETH9; constructor(address _factory, address _WETH9) { factory = _factory; WETH9 = _WETH9; } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity >=0.7.5; import "./interfaces/external/IERC20.sol"; import "./interfaces/IPeripheryPayments.sol"; import "./interfaces/external/IWETH9.sol"; import "./libraries/external/TransferHelper.sol"; import "./libraries/external/ReentrancyGuard.sol"; import "./PeripheryImmutableState.sol"; abstract contract PeripheryPayments is IPeripheryPayments, PeripheryImmutableState, ReentrancyGuard { receive() external payable { require(msg.sender == WETH9, "NW9"); } /// @inheritdoc IPeripheryPayments function unwrapWETH9(uint256 amountMinimum, address recipient) public payable override nonReentrant { uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this)); require(balanceWETH9 >= amountMinimum, "IW"); // insufficient weth if (balanceWETH9 > 0) { IWETH9(WETH9).withdraw(balanceWETH9); TransferHelper.safeTransferETH(recipient, balanceWETH9); } } /// @inheritdoc IPeripheryPayments function sweepToken(address token, uint256 amountMinimum, address recipient) public payable override nonReentrant { uint256 balanceToken = IERC20(token).balanceOf(address(this)); require(balanceToken >= amountMinimum, "IT"); // insufficient token if (balanceToken > 0) { TransferHelper.safeTransfer(token, recipient, balanceToken); } } /// @inheritdoc IPeripheryPayments function refundETH() public payable override nonReentrant { if (address(this).balance > 0) { TransferHelper.safeTransferETH(msg.sender, address(this).balance); } } /// @param token The token to pay /// @param payer The entity that must pay /// @param recipient The entity that will receive payment /// @param value The amount to pay function pay(address token, address payer, address recipient, uint256 value) internal { if (token == WETH9 && address(this).balance >= value) { // pay with WETH9 IWETH9(WETH9).deposit{value: value}(); // wrap only what is needed to pay IWETH9(WETH9).transfer(recipient, value); } else if (payer == address(this)) { // pay with tokens already in the contract (for the exact input multihop case) TransferHelper.safeTransfer(token, recipient, value); } else { // pull payment TransferHelper.safeTransferFrom(token, payer, recipient, value); } } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import './interfaces/ISyncSwapRangePool.sol'; import './interfaces/callback/ICLSwapCallback.sol'; import './libraries/external/SafeCast.sol'; import './libraries/TickMath.sol'; import './libraries/TickBitmap.sol'; import './libraries/Path.sol'; import './libraries/PoolAddress.sol'; import './libraries/CallbackValidation.sol'; import './libraries/PoolTicksCounter.sol'; /// @title QuoterV2 Interface /// @notice Supports quoting the calculated amounts from exact input or exact output swaps. /// @notice For each pool also tells you the number of initialized ticks crossed and the sqrt price of the pool after the swap. /// @dev These functions are not marked view because they rely on calling non-view functions and reverting /// to compute the result. They are also not gas efficient and should not be called on-chain. interface IQuoterV2 { /// @notice Returns the amount out received for a given exact input swap without executing the swap /// @param path The path of the swap, i.e. each token pair and the pool tickSpacing /// @param amountIn The amount of the first token to swap /// @return amountOut The amount of the last token that would be received /// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path /// @return initializedTicksCrossedList List of the initialized ticks that the swap crossed for each pool in the path /// @return gasEstimate The estimate of the gas that the swap consumes function quoteExactInput(address factory, bytes memory path, uint256 amountIn) external returns ( uint256 amountOut, uint160[] memory sqrtPriceX96AfterList, uint32[] memory initializedTicksCrossedList, uint256 gasEstimate ); struct QuoteExactInputSingleParams { address factory; address tokenIn; address tokenOut; uint256 amountIn; int24 tickSpacing; uint160 sqrtPriceLimitX96; } /// @notice Returns the amount out received for a given exact input but for a swap of a single pool /// @param params The params for the quote, encoded as `QuoteExactInputSingleParams` /// tokenIn The token being swapped in /// tokenOut The token being swapped out /// tickSpacing The tickSpacing of the token pool to consider for the pair /// amountIn The desired input amount /// sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap /// @return amountOut The amount of `tokenOut` that would be received /// @return sqrtPriceX96After The sqrt price of the pool after the swap /// @return initializedTicksCrossed The number of initialized ticks that the swap crossed /// @return gasEstimate The estimate of the gas that the swap consumes function quoteExactInputSingle(QuoteExactInputSingleParams memory params) external returns ( uint256 amountOut, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 gasEstimate ); /// @notice Returns the amount in required for a given exact output swap without executing the swap /// @param path The path of the swap, i.e. each token pair and the pool tickSpacing. Path must be provided in reverse order /// @param amountOut The amount of the last token to receive /// @return amountIn The amount of first token required to be paid /// @return sqrtPriceX96AfterList List of the sqrt price after the swap for each pool in the path /// @return initializedTicksCrossedList List of the initialized ticks that the swap crossed for each pool in the path /// @return gasEstimate The estimate of the gas that the swap consumes function quoteExactOutput(address factory, bytes memory path, uint256 amountOut) external returns ( uint256 amountIn, uint160[] memory sqrtPriceX96AfterList, uint32[] memory initializedTicksCrossedList, uint256 gasEstimate ); struct QuoteExactOutputSingleParams { address factory; address tokenIn; address tokenOut; uint256 amount; int24 tickSpacing; uint160 sqrtPriceLimitX96; } /// @notice Returns the amount in required to receive the given exact output amount but for a swap of a single pool /// @param params The params for the quote, encoded as `QuoteExactOutputSingleParams` /// tokenIn The token being swapped in /// tokenOut The token being swapped out /// tickSpacing The tickSpacing of the token pool to consider for the pair /// amountOut The desired output amount /// sqrtPriceLimitX96 The price limit of the pool that cannot be exceeded by the swap /// @return amountIn The amount required as the input for the swap in order to receive `amountOut` /// @return sqrtPriceX96After The sqrt price of the pool after the swap /// @return initializedTicksCrossed The number of initialized ticks that the swap crossed /// @return gasEstimate The estimate of the gas that the swap consumes function quoteExactOutputSingle(QuoteExactOutputSingleParams memory params) external returns ( uint256 amountIn, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 gasEstimate ); } /// @title Provides quotes for swaps /// @notice Allows getting the expected amount out or amount in for a given swap without executing the swap /// @dev These functions are not gas efficient and should _not_ be called on chain. Instead, optimistically execute /// the swap and check the amounts in the callback. contract QuoterV2 is IQuoterV2, ICLSwapCallback { using Path for bytes; using SafeCast for uint256; using PoolTicksCounter for ISyncSwapRangePool; /// @dev Transient storage variable used to check a safety condition in exact output swaps. uint256 private amountOutCached; constructor() {} function getPool( address factory, address tokenA, address tokenB, int24 tickSpacing ) private view returns (ISyncSwapRangePool) { return ISyncSwapRangePool(PoolAddress.computeAddress(factory, PoolAddress.getPoolKey(tokenA, tokenB, tickSpacing))); } /// @inheritdoc ICLSwapCallback function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes memory path ) external view override { require(amount0Delta > 0 || amount1Delta > 0); // swaps entirely within 0-liquidity regions are not supported (address tokenIn, address tokenOut, int24 tickSpacing) = path.decodeFirstPool(); address factory = ISyncSwapRangePool(msg.sender).factory(); CallbackValidation.verifyCallback(factory, tokenIn, tokenOut, tickSpacing); (bool isExactInput, uint256 amountToPay, uint256 amountReceived) = amount0Delta > 0 ? (tokenIn < tokenOut, uint256(amount0Delta), uint256(-amount1Delta)) : (tokenOut < tokenIn, uint256(amount1Delta), uint256(-amount0Delta)); ISyncSwapRangePool pool = getPool(factory, tokenIn, tokenOut, tickSpacing); (uint160 sqrtPriceX96After, int24 tickAfter, , , , ) = pool.slot0(); if (isExactInput) { assembly { let ptr := mload(0x40) mstore(ptr, amountReceived) mstore(add(ptr, 0x20), sqrtPriceX96After) mstore(add(ptr, 0x40), tickAfter) revert(ptr, 96) } } else { // if the cache has been populated, ensure that the full output amount has been received if (amountOutCached != 0) require(amountReceived == amountOutCached); assembly { let ptr := mload(0x40) mstore(ptr, amountToPay) mstore(add(ptr, 0x20), sqrtPriceX96After) mstore(add(ptr, 0x40), tickAfter) revert(ptr, 96) } } } /// @dev Parses a revert reason that should contain the numeric quote function parseRevertReason(bytes memory reason) private pure returns ( uint256 amount, uint160 sqrtPriceX96After, int24 tickAfter ) { if (reason.length != 96) { if (reason.length < 68) revert('Unexpected error'); assembly { reason := add(reason, 0x04) } revert(abi.decode(reason, (string))); } return abi.decode(reason, (uint256, uint160, int24)); } function handleRevert( bytes memory reason, ISyncSwapRangePool pool, uint256 gasEstimate ) private view returns ( uint256 amount, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 ) { int24 tickBefore; int24 tickAfter; (, tickBefore, , , , ) = pool.slot0(); (amount, sqrtPriceX96After, tickAfter) = parseRevertReason(reason); initializedTicksCrossed = pool.countInitializedTicksCrossed(tickBefore, tickAfter); return (amount, sqrtPriceX96After, initializedTicksCrossed, gasEstimate); } function quoteExactInputSingle(QuoteExactInputSingleParams memory params) public override returns ( uint256 amountOut, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 gasEstimate ) { bool zeroForOne = params.tokenIn < params.tokenOut; ISyncSwapRangePool pool = getPool(params.factory, params.tokenIn, params.tokenOut, params.tickSpacing); uint256 gasBefore = gasleft(); try pool.swap( address(this), // address(0) might cause issues with some tokens zeroForOne, params.amountIn.toInt256(), params.sqrtPriceLimitX96 == 0 ? (zeroForOne ? TickMath.MIN_SQRT_RATIO + 1 : TickMath.MAX_SQRT_RATIO - 1) : params.sqrtPriceLimitX96, abi.encodePacked(params.tokenIn, params.tickSpacing, params.tokenOut) ) {} catch (bytes memory reason) { gasEstimate = gasBefore - gasleft(); return handleRevert(reason, pool, gasEstimate); } } struct QuoteExactInputParams { uint i; uint amountOut; uint160 sqrtPriceX96After; uint32 initializedTicksCrossed; uint256 gasEstimate; } function quoteExactInput(address factory, bytes memory path, uint256 amountIn) public override returns ( uint256 amountOut, uint160[] memory sqrtPriceX96AfterList, uint32[] memory initializedTicksCrossedList, uint256 gasEstimate ) { sqrtPriceX96AfterList = new uint160[](path.numPools()); initializedTicksCrossedList = new uint32[](path.numPools()); QuoteExactInputParams memory it; it.i = 0; while (true) { (address tokenIn, address tokenOut, int24 tickSpacing) = path.decodeFirstPool(); // the outputs of prior swaps become the inputs to subsequent ones (it.amountOut, it.sqrtPriceX96After, it.initializedTicksCrossed, it.gasEstimate) = quoteExactInputSingle( QuoteExactInputSingleParams({ factory: factory, tokenIn: tokenIn, tokenOut: tokenOut, tickSpacing: tickSpacing, amountIn: amountIn, sqrtPriceLimitX96: 0 }) ); sqrtPriceX96AfterList[it.i] = it.sqrtPriceX96After; initializedTicksCrossedList[it.i] = it.initializedTicksCrossed; amountIn = it.amountOut; gasEstimate += it.gasEstimate; it.i++; // decide whether to continue or terminate if (path.hasMultiplePools()) { path = path.skipToken(); } else { return (amountIn, sqrtPriceX96AfterList, initializedTicksCrossedList, gasEstimate); } } } function quoteExactOutputSingle(QuoteExactOutputSingleParams memory params) public override returns ( uint256 amountIn, uint160 sqrtPriceX96After, uint32 initializedTicksCrossed, uint256 gasEstimate ) { bool zeroForOne = params.tokenIn < params.tokenOut; ISyncSwapRangePool pool = getPool(params.factory, params.tokenIn, params.tokenOut, params.tickSpacing); // if no price limit has been specified, cache the output amount for comparison in the swap callback if (params.sqrtPriceLimitX96 == 0) amountOutCached = params.amount; uint256 gasBefore = gasleft(); try pool.swap( address(this), // address(0) might cause issues with some tokens zeroForOne, -params.amount.toInt256(), params.sqrtPriceLimitX96 == 0 ? (zeroForOne ? TickMath.MIN_SQRT_RATIO + 1 : TickMath.MAX_SQRT_RATIO - 1) : params.sqrtPriceLimitX96, abi.encodePacked(params.tokenOut, params.tickSpacing, params.tokenIn) ) {} catch (bytes memory reason) { gasEstimate = gasBefore - gasleft(); if (params.sqrtPriceLimitX96 == 0) delete amountOutCached; // clear cache return handleRevert(reason, pool, gasEstimate); } } struct QuoteExactOutputParams { uint i; uint amountIn; uint160 sqrtPriceX96After; uint32 initializedTicksCrossed; uint256 gasEstimate; } function quoteExactOutput(address factory, bytes memory path, uint256 amountOut) public override returns ( uint256 amountIn, uint160[] memory sqrtPriceX96AfterList, uint32[] memory initializedTicksCrossedList, uint256 gasEstimate ) { sqrtPriceX96AfterList = new uint160[](path.numPools()); initializedTicksCrossedList = new uint32[](path.numPools()); QuoteExactOutputParams memory it; it.i = 0; while (true) { { { (address tokenOut, address tokenIn, int24 tickSpacing) = path.decodeFirstPool(); // the inputs of prior swaps become the outputs of subsequent ones (it.amountIn, it.sqrtPriceX96After, it.initializedTicksCrossed, it.gasEstimate) = quoteExactOutputSingle( QuoteExactOutputSingleParams({ factory: factory, tokenIn: tokenIn, tokenOut: tokenOut, amount: amountOut, tickSpacing: tickSpacing, sqrtPriceLimitX96: 0 }) ); } sqrtPriceX96AfterList[it.i] = it.sqrtPriceX96After; initializedTicksCrossedList[it.i] = it.initializedTicksCrossed; amountOut = it.amountIn; gasEstimate += it.gasEstimate; } it.i++; // decide whether to continue or terminate if (path.hasMultiplePools()) { path = path.skipToken(); } else { return (amountOut, sqrtPriceX96AfterList, initializedTicksCrossedList, gasEstimate); } } } }
// SPDX-License-Identifier: AGPL-3.0-or-later pragma solidity ^0.7.6; pragma abicoder v2; import "./interfaces/IPoolMaster.sol"; import "./interfaces/IPoolFactory.sol"; import "./libraries/external/Ownable.sol"; /// @notice The pool master manages swap fees for pools, whitelist for factories, /// protocol fee and pool registry. /// /// It accepts pool registers from whitelisted factories, with the pool data on pool /// creation, to enable querying of the existence or fees of a pool by address or config. /// /// This contract provides a unified interface to query and manage fees across /// different pool types, and a unique registry for all pools. /// contract SyncSwapPoolMaster is IPoolMaster, Ownable { address public override wETH; /// @dev The registry of forwarder. address public forwarderRegistry; /// @dev The fee manager. address public override feeManager; /// @dev Whether an address is a factory. mapping(address => bool) public override isFactoryWhitelisted; /// @dev Whether an address is a pool. mapping(address => bool) public override isPool; /// @dev Pools by hash of its config. mapping(bytes32 => address) public override getPool; struct PoolInfo { address pool; uint16 poolType; } mapping(address => mapping(address => PoolInfo[])) public pairPools; address[] public override pools; constructor(address _wETH, address _forwarderRegistry, address _feeManager) { wETH = _wETH; forwarderRegistry = _forwarderRegistry; feeManager = _feeManager; } function poolsLength() external view override returns (uint) { return pools.length; } function _hashPoolConfig(uint16 poolType, address token0, address token1) private pure returns (bytes32 hash) { hash = keccak256(abi.encode(poolType, token0, token1)); } function _sortTokens(address tokenA, address tokenB) private pure returns (address token0, address token1) { if (tokenA < tokenB) { (token0, token1) = (tokenA, tokenB); } else { (token0, token1) = (tokenB, tokenA); } } function getPoolByTokens(uint16 poolType, address tokenA, address tokenB) external view returns (address) { (tokenA, tokenB) = _sortTokens(tokenA, tokenB); return getPool[_hashPoolConfig(poolType, tokenA, tokenB)]; } function pairPoolsLength(address tokenA, address tokenB) external view returns (uint) { (tokenA, tokenB) = _sortTokens(tokenA, tokenB); return pairPools[tokenA][tokenB].length; } function getPairPools(address tokenA, address tokenB) external view returns (PoolInfo[] memory) { (tokenA, tokenB) = _sortTokens(tokenA, tokenB); return pairPools[tokenA][tokenB]; } function isForwarder(address forwarder) external view override returns (bool) { return IForwarderRegistry(forwarderRegistry).isForwarder(forwarder); } function setForwarderRegistry(address newForwarderRegistry) external override onlyOwner { forwarderRegistry = newForwarderRegistry; emit UpdateForwarderRegistry(newForwarderRegistry); } function getSwapFee( address pool, address sender, address tokenIn, address tokenOut, bytes calldata data ) external view override returns (uint24 fee) { fee = IFeeManager(feeManager).getSwapFee(pool, sender, tokenIn, tokenOut, data); } function getProtocolFee(address pool) external view override returns (uint24 fee) { fee = IFeeManager(feeManager).getProtocolFee(pool); } function getFeeRecipient() external view override returns (address recipient) { recipient = IFeeManager(feeManager).getFeeRecipient(); } function setFeeManager(address newFeeManager) external override onlyOwner { feeManager = newFeeManager; emit UpdateFeeManager(newFeeManager); } function setFactoryWhitelisted(address factory, bool whitelisted) external override onlyOwner { require(factory != address(0), "Invalid factory"); isFactoryWhitelisted[factory] = whitelisted; emit SetFactoryWhitelisted(factory, whitelisted); } /// @dev Create a pool with deployment data and, register it via the factory. function createPool(address factory, bytes calldata data) external override returns (address pool) { // The factory have to call `registerPool` to register the pool. // The pool whitelist is checked in `registerPool`. pool = IPoolFactory(factory).createPool(data); } /// @dev Register a pool to the mapping by its config. Can only be called by factories. function registerPool(address pool, uint16 poolType, bytes calldata data, address token0, address token1) external override { require(isFactoryWhitelisted[msg.sender], "Not whitelisted"); require(pool != address(0)); // Double check to prevent duplicated pools. require(!isPool[pool], "Pool exists"); // Encode and hash pool config to get the mapping key. bytes32 hash = keccak256(abi.encode(poolType, data)); // Double check to prevent duplicated pools. require(getPool[hash] == address(0), "Pool hash exists"); // Set to mappings. getPool[hash] = pool; isPool[pool] = true; pools.push(pool); pairPools[token0][token1].push(PoolInfo({ pool: pool, poolType: poolType })); emit RegisterPool(msg.sender, pool, poolType, data); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/ISyncSwapRangePoolFactory.sol"; import "./interfaces/IVoter.sol"; import "./interfaces/IFeeProvider.sol"; import "./interfaces/IFeeManagerV3.sol"; import "./libraries/external/Clones.sol"; import "./libraries/external/Ownable.sol"; import "./libraries/external/ExcessivelySafeCall.sol"; import "./SyncSwapRangePool.sol"; /// @title Canonical CL factory /// @notice Deploys CL pools and manages ownership and control over pool protocol fees contract SyncSwapRangePoolFactory is ISyncSwapRangePoolFactory, Ownable { using ExcessivelySafeCall for address; /// @dev the pool master address public immutable override master; /// @dev the pool implementation address public immutable override poolImplementation; /// @dev the fee manager address public override feeManager; /// @dev the fee collector address public override feeCollector; /// @dev the pool creator address public override poolCreator; /// @dev the gauge factory address public override gaugeFactory; /// @inheritdoc ISyncSwapRangePoolFactory mapping(int24 => uint24) public override defaultSwapFeeByTickSpacing; /// @inheritdoc ISyncSwapRangePoolFactory mapping(address => mapping(address => mapping(int24 => address))) public override getPool; struct PoolInfo { address pool; int24 tickSpacing; } mapping(address => mapping(address => PoolInfo[])) public pairPools; /// @dev Returns if an address is a pool created by the factory mapping(address => bool) public override isPool; /// @inheritdoc ISyncSwapRangePoolFactory address[] public override allPools; int24[] public _tickSpacings; event SetFeeCollector(address indexed previousValue, address indexed newValue); event SetPoolCreator(address indexed previousValue, address indexed newValue); event SetGaugeFactory(address indexed previousValue, address indexed newValue); //event SetFeeProvider(address indexed previousValue, address indexed newValue); event SetFeeManager(address indexed previousValue, address indexed newValue); event SetTickSpacingDefaultSwapFee(int24 indexed tickSpacing, uint24 indexed fee); constructor(address _master, address _poolImplementation, address _feeManager) { require(_master != address(0) && _poolImplementation != address(0), "Invalid address"); master = _master; poolImplementation = _poolImplementation; feeCollector = msg.sender; poolCreator = msg.sender; // set fee manager _setFeeManager(_feeManager); // enable default tick spacings // 1 - 0.01% _enableTickSpacing(1, 100); // 50 - 0.05% _enableTickSpacing(50, 500); // 100 - 0.05% _enableTickSpacing(100, 500); // 200 - 0.3% _enableTickSpacing(200, 3000); // 2000 - 0.1% _enableTickSpacing(2000, 10000); } function tickSpacings() external view override returns (int24[] memory) { return _tickSpacings; } function tickSpacingsLength() external view returns (uint) { return _tickSpacings.length; } function allPoolsLength() external view override returns (uint) { return allPools.length; } function getPairPools(address tokenA, address tokenB) external view returns (PoolInfo[] memory) { return pairPools[tokenA][tokenB]; } function pairPoolsLength(address tokenA, address tokenB) external view returns (uint) { return pairPools[tokenA][tokenB].length; } function isPair(address pool) external view override returns (bool) { return isPool[pool]; } function createPool( bytes calldata data ) external returns (address pool) { (address tokenA, address tokenB, int24 tickSpacing, uint160 sqrtPriceX96) = abi.decode(data, (address, address, int24, uint160)); pool = createPool(tokenA, tokenB, tickSpacing, sqrtPriceX96); } /// @dev Creates a pool function createPool( address tokenA, address tokenB, int24 tickSpacing, uint160 sqrtPriceX96 ) public override returns (address pool) { // check creator require(msg.sender == poolCreator, "Not pool creator"); // check tokens require(tokenA != tokenB, "Identical token"); (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), "Invalid token"); // check tick spacing require(defaultSwapFeeByTickSpacing[tickSpacing] != 0, "Tick spacing not enabled"); // check pool require(getPool[token0][token1][tickSpacing] == address(0)); // create pool contract via clone pool = Clones.cloneDeterministic({ master: poolImplementation, salt: keccak256(abi.encode(token0, token1, tickSpacing)) }); // initialize pool SyncSwapRangePool(pool).initialize({ _factory: address(this), _token0: token0, _token1: token1, _tickSpacing: tickSpacing, _sqrtPriceX96: sqrtPriceX96 }); // add to all pools list allPools.push(pool); // update mappings isPool[pool] = true; getPool[token0][token1][tickSpacing] = pool; getPool[token1][token0][tickSpacing] = pool; // populate mapping in the reverse direction PoolInfo memory info = PoolInfo(pool, tickSpacing); pairPools[token0][token1].push(info); pairPools[token1][token0].push(info); // populate mapping in the reverse direction // register with pool master IPoolMaster(master).registerPool( pool, 4, // pool type abi.encode(token0, token1, tickSpacing), token0, token1 ); emit PoolCreated(token0, token1, tickSpacing, pool); } function getProtocolFee(address _pool) external view override returns (uint24) { return IFeeManagerV3(feeManager).getProtocolFee(_pool); } /// @dev Returns swap fee for a pool function getSwapFee( address _pool, address _sender, address _tokenIn, address _tokenOut, bytes memory _data ) external view override returns (uint24) { address _feeManager = feeManager; if (_feeManager != address(0)) { try IFeeManagerV3(_feeManager).getSwapFee( _pool, _sender, _tokenIn, _tokenOut, _data ) returns (uint24 _fee) { return _fee; } catch {} } // use default fee of tick spacing int24 poolTickSpacing = SyncSwapRangePool(_pool).tickSpacing(); return defaultSwapFeeByTickSpacing[poolTickSpacing]; } /// @dev Updates fee collector function setFeeCollector(address _feeCollector) external onlyOwner { address _previous = feeCollector; feeCollector = _feeCollector; emit SetFeeCollector(_previous, _feeCollector); } /// @dev Updates pool creator function setPoolCreator(address _poolCreator) external onlyOwner { address _previous = poolCreator; poolCreator = _poolCreator; emit SetPoolCreator(_previous, _poolCreator); } /// @dev Updates fee manager function setFeeManager(address _feeManager) external onlyOwner { _setFeeManager(_feeManager); } function _setFeeManager(address _feeManager) private { address _previous = _feeManager; feeManager = _feeManager; emit SetFeeManager(_previous, _feeManager); } /// @dev Enables a tick spacing function enableTickSpacing(int24 _tickSpacing, uint24 _fee) public onlyOwner { _enableTickSpacing(_tickSpacing, _fee); } function _enableTickSpacing(int24 _tickSpacing, uint24 _fee) private { // tick spacing is capped at 16384 to prevent the situation where tickSpacing is so large that // TickBitmap#nextInitializedTickWithinOneWord overflows int24 container from a valid tick // 16384 ticks represents a >5x price change with ticks of 1 bips require(_tickSpacing > 0 && _tickSpacing < 16384, "Invalid tick spacing"); require(defaultSwapFeeByTickSpacing[_tickSpacing] == 0, "Already enabled"); _tickSpacings.push(_tickSpacing); _setDefaultSwapFeeForTickSpacing(_tickSpacing, _fee); emit TickSpacingEnabled(_tickSpacing, _fee); } /// @dev Updates default swap fee for a tick spacing function setDefaultSwapFeeForTickSpacing(int24 _tickSpacing, uint24 _fee) external onlyOwner { require(defaultSwapFeeByTickSpacing[_tickSpacing] != 0, "Tick spacing not enabled"); _setDefaultSwapFeeForTickSpacing(_tickSpacing, _fee); } function _setDefaultSwapFeeForTickSpacing(int24 _tickSpacing, uint24 _fee) private { require(_fee > 0 && _fee <= 100000, "Invalid fee"); defaultSwapFeeByTickSpacing[_tickSpacing] = _fee; emit SetTickSpacingDefaultSwapFee(_tickSpacing, _fee); } /// @dev Updates gauge factory function setGaugeFactory(address _gaugeFactory) external onlyOwner { address _previous = gaugeFactory; gaugeFactory = _gaugeFactory; emit SetGaugeFactory(_previous, _gaugeFactory); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import "./interfaces/ISyncSwapRangePoolFactory.sol"; import "./interfaces/IVoter.sol"; import "./interfaces/IFeeProvider.sol"; import "./interfaces/IFeeManagerV3.sol"; import "./libraries/external/Clones.sol"; import "./libraries/external/Ownable.sol"; import "./libraries/external/ExcessivelySafeCall.sol"; import "./SyncSwapRangePool.sol"; /// @title Canonical CL factory /// @notice Deploys CL pools and manages ownership and control over pool protocol fees contract SyncSwapRangePoolFactoryZKSync is ISyncSwapRangePoolFactory, Ownable { using ExcessivelySafeCall for address; /// @dev the pool master address public immutable override master; /// @dev the pool implementation address public immutable override poolImplementation; /// @dev the fee manager address public override feeManager; /// @dev the fee collector address public override feeCollector; /// @dev the pool creatorl address public override poolCreator; /// @dev the gauge factory address public override gaugeFactory; /// @inheritdoc ISyncSwapRangePoolFactory mapping(int24 => uint24) public override defaultSwapFeeByTickSpacing; /// @inheritdoc ISyncSwapRangePoolFactory mapping(address => mapping(address => mapping(int24 => address))) public override getPool; struct PoolInfo { address pool; int24 tickSpacing; } mapping(address => mapping(address => PoolInfo[])) public pairPools; /// @dev Returns if an address is a pool created by the factory mapping(address => bool) public override isPool; /// @inheritdoc ISyncSwapRangePoolFactory address[] public override allPools; int24[] public _tickSpacings; event SetFeeCollector(address indexed previousValue, address indexed newValue); event SetPoolCreator(address indexed previousValue, address indexed newValue); event SetGaugeFactory(address indexed previousValue, address indexed newValue); //event SetFeeProvider(address indexed previousValue, address indexed newValue); event SetFeeManager(address indexed previousValue, address indexed newValue); event SetTickSpacingDefaultSwapFee(int24 indexed tickSpacing, uint24 indexed fee); constructor(address _master, address _poolImplementation, address _feeManager) { require(_master != address(0) && _poolImplementation != address(0), "Invalid address"); master = _master; poolImplementation = _poolImplementation; feeCollector = msg.sender; poolCreator = msg.sender; // set fee manager _setFeeManager(_feeManager); // enable default tick spacings // 1 - 0.01% _enableTickSpacing(1, 100); // 50 - 0.05% _enableTickSpacing(50, 500); // 100 - 0.05% _enableTickSpacing(100, 500); // 200 - 0.3% _enableTickSpacing(200, 3000); // 2000 - 0.1% _enableTickSpacing(2000, 10000); } function tickSpacings() external view override returns (int24[] memory) { return _tickSpacings; } function tickSpacingsLength() external view returns (uint) { return _tickSpacings.length; } function allPoolsLength() external view override returns (uint) { return allPools.length; } function getPairPools(address tokenA, address tokenB) external view returns (PoolInfo[] memory) { return pairPools[tokenA][tokenB]; } function pairPoolsLength(address tokenA, address tokenB) external view returns (uint) { return pairPools[tokenA][tokenB].length; } function isPair(address pool) external view override returns (bool) { return isPool[pool]; } function createPool( bytes calldata data ) external returns (address pool) { (address tokenA, address tokenB, int24 tickSpacing, uint160 sqrtPriceX96) = abi.decode(data, (address, address, int24, uint160)); pool = createPool(tokenA, tokenB, tickSpacing, sqrtPriceX96); } /// @dev Creates a pool function createPool( address tokenA, address tokenB, int24 tickSpacing, uint160 sqrtPriceX96 ) public override returns (address pool) { // check creator require(msg.sender == poolCreator, "Not pool creator"); // check tokens require(tokenA != tokenB, "Identical token"); (address token0, address token1) = tokenA < tokenB ? (tokenA, tokenB) : (tokenB, tokenA); require(token0 != address(0), "Invalid token"); // check tick spacing require(defaultSwapFeeByTickSpacing[tickSpacing] != 0, "Tick spacing not enabled"); // check pool require(getPool[token0][token1][tickSpacing] == address(0)); // create pool contract via clone /* pool = Clones.cloneDeterministic({ master: poolImplementation, salt: keccak256(abi.encode(token0, token1, tickSpacing)) }); */ bytes32 salt = keccak256(abi.encode(token0, token1, tickSpacing)); pool = address(new SyncSwapRangePool{salt: salt}()); // initialize pool SyncSwapRangePool(pool).initialize({ _factory: address(this), _token0: token0, _token1: token1, _tickSpacing: tickSpacing, _sqrtPriceX96: sqrtPriceX96 }); // add to all pools list allPools.push(pool); // update mappings isPool[pool] = true; getPool[token0][token1][tickSpacing] = pool; getPool[token1][token0][tickSpacing] = pool; // populate mapping in the reverse direction PoolInfo memory info = PoolInfo(pool, tickSpacing); pairPools[token0][token1].push(info); pairPools[token1][token0].push(info); // populate mapping in the reverse direction // register with pool master IPoolMaster(master).registerPool( pool, 4, // pool type abi.encode(token0, token1, tickSpacing), token0, token1 ); emit PoolCreated(token0, token1, tickSpacing, pool); } function getProtocolFee(address _pool) external view override returns (uint24) { return IFeeManagerV3(feeManager).getProtocolFee(_pool); } /// @dev Returns swap fee for a pool function getSwapFee( address _pool, address _sender, address _tokenIn, address _tokenOut, bytes memory _data ) external view override returns (uint24) { address _feeManager = feeManager; if (_feeManager != address(0)) { try IFeeManagerV3(_feeManager).getSwapFee( _pool, _sender, _tokenIn, _tokenOut, _data ) returns (uint24 _fee) { return _fee; } catch {} } // use default fee of tick spacing int24 poolTickSpacing = SyncSwapRangePool(_pool).tickSpacing(); return defaultSwapFeeByTickSpacing[poolTickSpacing]; } /// @dev Updates fee collector function setFeeCollector(address _feeCollector) external onlyOwner { address _previous = feeCollector; feeCollector = _feeCollector; emit SetFeeCollector(_previous, _feeCollector); } /// @dev Updates pool creator function setPoolCreator(address _poolCreator) external onlyOwner { address _previous = poolCreator; poolCreator = _poolCreator; emit SetPoolCreator(_previous, _poolCreator); } /// @dev Updates fee manager function setFeeManager(address _feeManager) external onlyOwner { _setFeeManager(_feeManager); } function _setFeeManager(address _feeManager) private { address _previous = _feeManager; feeManager = _feeManager; emit SetFeeManager(_previous, _feeManager); } /// @dev Enables a tick spacing function enableTickSpacing(int24 _tickSpacing, uint24 _fee) public onlyOwner { _enableTickSpacing(_tickSpacing, _fee); } function _enableTickSpacing(int24 _tickSpacing, uint24 _fee) private { // tick spacing is capped at 16384 to prevent the situation where tickSpacing is so large that // TickBitmap#nextInitializedTickWithinOneWord overflows int24 container from a valid tick // 16384 ticks represents a >5x price change with ticks of 1 bips require(_tickSpacing > 0 && _tickSpacing < 16384, "Invalid tick spacing"); require(defaultSwapFeeByTickSpacing[_tickSpacing] == 0, "Already enabled"); _tickSpacings.push(_tickSpacing); _setDefaultSwapFeeForTickSpacing(_tickSpacing, _fee); emit TickSpacingEnabled(_tickSpacing, _fee); } /// @dev Updates default swap fee for a tick spacing function setDefaultSwapFeeForTickSpacing(int24 _tickSpacing, uint24 _fee) external onlyOwner { require(defaultSwapFeeByTickSpacing[_tickSpacing] != 0, "Tick spacing not enabled"); _setDefaultSwapFeeForTickSpacing(_tickSpacing, _fee); } function _setDefaultSwapFeeForTickSpacing(int24 _tickSpacing, uint24 _fee) private { require(_fee > 0 && _fee <= 100000, "Invalid fee"); defaultSwapFeeByTickSpacing[_tickSpacing] = _fee; emit SetTickSpacingDefaultSwapFee(_tickSpacing, _fee); } /// @dev Updates gauge factory function setGaugeFactory(address _gaugeFactory) external onlyOwner { address _previous = gaugeFactory; gaugeFactory = _gaugeFactory; emit SetGaugeFactory(_previous, _gaugeFactory); } }
// SPDX-License-Identifier: GPL-2.0-or-later pragma solidity =0.7.6; pragma abicoder v2; import './libraries/Path.sol'; import './libraries/TickMath.sol'; import './libraries/PoolAddress.sol'; import './libraries/CallbackValidation.sol'; import './libraries/external/SafeCast.sol'; import './libraries/external/Multicall.sol'; import './libraries/external/SelfPermit.sol'; import './libraries/external/LowGasSafeMath.sol'; import './interfaces/ISyncSwapRangePool.sol'; import './interfaces/IPeripheryPayments.sol'; import './interfaces/external/IWETH9.sol'; import './interfaces/callback/ICLSwapCallback.sol'; import './PeripheryImmutableState.sol'; import './PeripheryPayments.sol'; /// @title Router token swapping functionality /// @notice Functions for swapping tokens via Uniswap V3 interface ISwapRouter is ICLSwapCallback { struct ExactInputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; uint160 sqrtPriceLimitX96; } /// @notice Swaps `amountIn` of one token for as much as possible of another token /// @param params The parameters necessary for the swap, encoded as `ExactInputSingleParams` in calldata /// @return amountOut The amount of the received token function exactInputSingle(ExactInputSingleParams calldata params) external payable returns (uint256 amountOut); struct ExactInputParams { bytes path; address recipient; uint256 deadline; uint256 amountIn; uint256 amountOutMinimum; } /// @notice Swaps `amountIn` of one token for as much as possible of another along the specified path /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactInputParams` in calldata /// @return amountOut The amount of the received token function exactInput(ExactInputParams calldata params) external payable returns (uint256 amountOut); struct ExactOutputSingleParams { address tokenIn; address tokenOut; uint24 fee; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; uint160 sqrtPriceLimitX96; } /// @notice Swaps as little as possible of one token for `amountOut` of another token /// @param params The parameters necessary for the swap, encoded as `ExactOutputSingleParams` in calldata /// @return amountIn The amount of the input token function exactOutputSingle(ExactOutputSingleParams calldata params) external payable returns (uint256 amountIn); struct ExactOutputParams { bytes path; address recipient; uint256 deadline; uint256 amountOut; uint256 amountInMaximum; } /// @notice Swaps as little as possible of one token for `amountOut` of another along the specified path (reversed) /// @param params The parameters necessary for the multi-hop swap, encoded as `ExactOutputParams` in calldata /// @return amountIn The amount of the input token function exactOutput(ExactOutputParams calldata params) external payable returns (uint256 amountIn); } /// @title Periphery Payments /// @notice Functions to ease deposits and withdrawals of ETH interface IPeripheryPaymentsWithFee is IPeripheryPayments { /// @notice Unwraps the contract's WETH9 balance and sends it to recipient as ETH, with a percentage between /// 0 (exclusive), and 1 (inclusive) going to feeRecipient /// @dev The amountMinimum parameter prevents malicious contracts from stealing WETH9 from users. function unwrapWETH9WithFee( uint256 amountMinimum, address recipient, uint256 feeBips, address feeRecipient ) external payable; /// @notice Transfers the full amount of a token held by this contract to recipient, with a percentage between /// 0 (exclusive) and 1 (inclusive) going to feeRecipient /// @dev The amountMinimum parameter prevents malicious contracts from stealing the token from users function sweepTokenWithFee( address token, uint256 amountMinimum, address recipient, uint256 feeBips, address feeRecipient ) external payable; } abstract contract PeripheryPaymentsWithFee is PeripheryPayments, IPeripheryPaymentsWithFee { using LowGasSafeMath for uint256; /// @inheritdoc IPeripheryPaymentsWithFee function unwrapWETH9WithFee( uint256 amountMinimum, address recipient, uint256 feeBips, address feeRecipient ) public payable override { require(feeBips != 0 && feeBips <= 100); uint256 balanceWETH9 = IWETH9(WETH9).balanceOf(address(this)); require(balanceWETH9 >= amountMinimum, 'Insufficient WETH9'); if (balanceWETH9 != 0) { IWETH9(WETH9).withdraw(balanceWETH9); uint256 feeAmount = balanceWETH9.mul(feeBips) / 10_000; if (feeAmount != 0) TransferHelper.safeTransferETH(feeRecipient, feeAmount); TransferHelper.safeTransferETH(recipient, balanceWETH9 - feeAmount); } } /// @inheritdoc IPeripheryPaymentsWithFee function sweepTokenWithFee( address token, uint256 amountMinimum, address recipient, uint256 feeBips, address feeRecipient ) public payable override { require(feeBips != 0 && feeBips <= 100); uint256 balanceToken = IERC20(token).balanceOf(address(this)); require(balanceToken >= amountMinimum, 'Insufficient token'); if (balanceToken != 0) { uint256 feeAmount = balanceToken.mul(feeBips) / 10_000; if (feeAmount != 0) TransferHelper.safeTransfer(token, feeRecipient, feeAmount); TransferHelper.safeTransfer(token, recipient, balanceToken - feeAmount); } } } /// @title SyncSwap V3 Swap Router for Uniswap V3's Router interface /// @notice Router for stateless execution of swaps against SyncSwap V3 contract UniswapV3SwapRouter is ISwapRouter, PeripheryImmutableState, PeripheryPaymentsWithFee, Multicall, SelfPermit { using Path for bytes; using SafeCast for uint256; /// @dev Used as the placeholder value for amountInCached, because the computed amount in for an exact output swap /// can never actually be this value uint256 private constant DEFAULT_AMOUNT_IN_CACHED = type(uint256).max; /// @dev Transient storage variable used for returning the computed amount in for an exact output swap. uint256 private amountInCached = DEFAULT_AMOUNT_IN_CACHED; constructor(address _factory, address _WETH9) PeripheryImmutableState(_factory, _WETH9) {} modifier checkDeadline(uint256 deadline) { require(block.timestamp <= deadline); _; } /// @dev Returns the pool for the given token pair and fee. The pool contract may or may not exist. function getPool( address tokenA, address tokenB, int24 tickSpacing ) private view returns (ISyncSwapRangePool) { return ISyncSwapRangePool(PoolAddress.computeAddress(factory, PoolAddress.getPoolKey(tokenA, tokenB, tickSpacing))); } struct SwapCallbackData { bytes path; address payer; } function uniswapV3SwapCallback( int256 amount0Delta, int256 amount1Delta, bytes calldata _data ) external override { require(amount0Delta > 0 || amount1Delta > 0); // swaps entirely within 0-liquidity regions are not supported SwapCallbackData memory data = abi.decode(_data, (SwapCallbackData)); (address tokenIn, address tokenOut, int24 tickSpacing) = data.path.decodeFirstPool(); CallbackValidation.verifyCallback(factory, tokenIn, tokenOut, tickSpacing); (bool isExactInput, uint256 amountToPay) = amount0Delta > 0 ? (tokenIn < tokenOut, uint256(amount0Delta)) : (tokenOut < tokenIn, uint256(amount1Delta)); if (isExactInput) { pay(tokenIn, data.payer, msg.sender, amountToPay); } else { // either initiate the next swap or pay if (data.path.hasMultiplePools()) { data.path = data.path.skipToken(); exactOutputInternal(amountToPay, msg.sender, 0, data); } else { amountInCached = amountToPay; tokenIn = tokenOut; // swap in/out because exact output swaps are reversed pay(tokenIn, data.payer, msg.sender, amountToPay); } } } /// @dev Performs a single exact input swap function exactInputInternal( uint256 amountIn, address recipient, uint160 sqrtPriceLimitX96, SwapCallbackData memory data ) private returns (uint256 amountOut) { // allow swapping to the router address with address 0 if (recipient == address(0)) recipient = address(this); (address tokenIn, address tokenOut, int24 tickSpacing) = data.path.decodeFirstPool(); bool zeroForOne = tokenIn < tokenOut; (int256 amount0, int256 amount1) = getPool(tokenIn, tokenOut, tickSpacing).swap( recipient, zeroForOne, amountIn.toInt256(), sqrtPriceLimitX96 == 0 ? (zeroForOne ? TickMath.MIN_SQRT_RATIO + 1 : TickMath.MAX_SQRT_RATIO - 1) : sqrtPriceLimitX96, abi.encode(data) ); return uint256(-(zeroForOne ? amount1 : amount0)); } /// @inheritdoc ISwapRouter function exactInputSingle(ExactInputSingleParams calldata params) external payable override checkDeadline(params.deadline) returns (uint256 amountOut) { amountOut = exactInputInternal( params.amountIn, params.recipient, params.sqrtPriceLimitX96, SwapCallbackData({path: abi.encodePacked(params.tokenIn, params.fee, params.tokenOut), payer: msg.sender}) ); require(amountOut >= params.amountOutMinimum, 'Too little received'); } /// @inheritdoc ISwapRouter function exactInput(ExactInputParams memory params) external payable override checkDeadline(params.deadline) returns (uint256 amountOut) { address payer = msg.sender; // msg.sender pays for the first hop while (true) { bool hasMultiplePools = params.path.hasMultiplePools(); // the outputs of prior swaps become the inputs to subsequent ones params.amountIn = exactInputInternal( params.amountIn, hasMultiplePools ? address(this) : params.recipient, // for intermediate swaps, this contract custodies 0, SwapCallbackData({ path: params.path.getFirstPool(), // only the first pool in the path is necessary payer: payer }) ); // decide whether to continue or terminate if (hasMultiplePools) { payer = address(this); // at this point, the caller has paid params.path = params.path.skipToken(); } else { amountOut = params.amountIn; break; } } require(amountOut >= params.amountOutMinimum, 'Too little received'); } /// @dev Performs a single exact output swap function exactOutputInternal( uint256 amountOut, address recipient, uint160 sqrtPriceLimitX96, SwapCallbackData memory data ) private returns (uint256 amountIn) { // allow swapping to the router address with address 0 if (recipient == address(0)) recipient = address(this); (address tokenOut, address tokenIn, int24 tickSpacing) = data.path.decodeFirstPool(); bool zeroForOne = tokenIn < tokenOut; (int256 amount0Delta, int256 amount1Delta) = getPool(tokenIn, tokenOut, tickSpacing).swap( recipient, zeroForOne, -amountOut.toInt256(), sqrtPriceLimitX96 == 0 ? (zeroForOne ? TickMath.MIN_SQRT_RATIO + 1 : TickMath.MAX_SQRT_RATIO - 1) : sqrtPriceLimitX96, abi.encode(data) ); uint256 amountOutReceived; (amountIn, amountOutReceived) = zeroForOne ? (uint256(amount0Delta), uint256(-amount1Delta)) : (uint256(amount1Delta), uint256(-amount0Delta)); // it's technically possible to not receive the full output amount, // so if no price limit has been specified, require this possibility away if (sqrtPriceLimitX96 == 0) require(amountOutReceived == amountOut); } /// @inheritdoc ISwapRouter function exactOutputSingle(ExactOutputSingleParams calldata params) external payable override checkDeadline(params.deadline) returns (uint256 amountIn) { // avoid an SLOAD by using the swap return data amountIn = exactOutputInternal( params.amountOut, params.recipient, params.sqrtPriceLimitX96, SwapCallbackData({path: abi.encodePacked(params.tokenOut, params.fee, params.tokenIn), payer: msg.sender}) ); require(amountIn <= params.amountInMaximum, 'Too much requested'); // has to be reset even though we don't use it in the single hop case amountInCached = DEFAULT_AMOUNT_IN_CACHED; } /// @inheritdoc ISwapRouter function exactOutput(ExactOutputParams calldata params) external payable override checkDeadline(params.deadline) returns (uint256 amountIn) { // it's okay that the payer is fixed to msg.sender here, as they're only paying for the "final" exact output // swap, which happens first, and subsequent swaps are paid for within nested callback frames exactOutputInternal( params.amountOut, params.recipient, 0, SwapCallbackData({path: params.path, payer: msg.sender}) ); amountIn = amountInCached; require(amountIn <= params.amountInMaximum, 'Too much requested'); amountInCached = DEFAULT_AMOUNT_IN_CACHED; } }
{ "viaIR": false, "optimizer": { "enabled": true, "mode": "3" }, "outputSelection": { "*": { "*": [ "abi", "metadata" ], "": [ "ast" ] } }, "isSystem": false, "forceEvmla": false }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Burn","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":false,"internalType":"address","name":"recipient","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount0","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"amount1","type":"uint128"}],"name":"Collect","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint128","name":"amount0","type":"uint128"},{"indexed":false,"internalType":"uint128","name":"amount1","type":"uint128"}],"name":"CollectFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"token","type":"address"},{"indexed":true,"internalType":"uint24","name":"feeRate","type":"uint24"},{"indexed":false,"internalType":"uint256","name":"totalFeeAmount","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"protocolFeeAmount","type":"uint256"}],"name":"FeeAmount","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"paid1","type":"uint256"}],"name":"Flash","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint16","name":"observationCardinalityNextOld","type":"uint16"},{"indexed":false,"internalType":"uint16","name":"observationCardinalityNextNew","type":"uint16"}],"name":"IncreaseObservationCardinalityNext","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"indexed":false,"internalType":"int24","name":"tick","type":"int24"}],"name":"Initialize","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"int24","name":"tickLower","type":"int24"},{"indexed":true,"internalType":"int24","name":"tickUpper","type":"int24"},{"indexed":false,"internalType":"uint128","name":"amount","type":"uint128"},{"indexed":false,"internalType":"uint256","name":"amount0","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"amount1","type":"uint256"}],"name":"Mint","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint8","name":"feeProtocol0Old","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol1Old","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol0New","type":"uint8"},{"indexed":false,"internalType":"uint8","name":"feeProtocol1New","type":"uint8"}],"name":"SetFeeProtocol","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"sender","type":"address"},{"indexed":true,"internalType":"address","name":"recipient","type":"address"},{"indexed":false,"internalType":"int256","name":"amount0","type":"int256"},{"indexed":false,"internalType":"int256","name":"amount1","type":"int256"},{"indexed":false,"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"indexed":false,"internalType":"uint128","name":"liquidity","type":"uint128"},{"indexed":false,"internalType":"int24","name":"tick","type":"int24"}],"name":"Swap","type":"event"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"address","name":"owner","type":"address"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"}],"name":"burn","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount0Requested","type":"uint128"},{"internalType":"uint128","name":"amount1Requested","type":"uint128"},{"internalType":"address","name":"owner","type":"address"}],"name":"collect","outputs":[{"internalType":"uint128","name":"amount0","type":"uint128"},{"internalType":"uint128","name":"amount1","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount0Requested","type":"uint128"},{"internalType":"uint128","name":"amount1Requested","type":"uint128"}],"name":"collect","outputs":[{"internalType":"uint128","name":"amount0","type":"uint128"},{"internalType":"uint128","name":"amount1","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"isTokenZero","type":"bool"}],"name":"collectFee","outputs":[{"internalType":"uint128","name":"amount","type":"uint128"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"factory","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"fee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeGrowthGlobal0X128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"feeGrowthGlobal1X128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"flash","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"gauge","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"gaugeFees","outputs":[{"internalType":"uint128","name":"token0","type":"uint128"},{"internalType":"uint128","name":"token1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"getProtocolFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint256","name":"_rewardGrowthGlobalX128","type":"uint256"}],"name":"getRewardGrowthInside","outputs":[{"internalType":"uint256","name":"rewardGrowthInside","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_sender","type":"address"},{"internalType":"address","name":"_tokenIn","type":"address"},{"internalType":"address","name":"_tokenOut","type":"address"},{"internalType":"bytes","name":"_data","type":"bytes"}],"name":"getSwapFee","outputs":[{"internalType":"uint24","name":"","type":"uint24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"}],"name":"increaseObservationCardinalityNext","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_factory","type":"address"},{"internalType":"address","name":"_token0","type":"address"},{"internalType":"address","name":"_token1","type":"address"},{"internalType":"int24","name":"_tickSpacing","type":"int24"},{"internalType":"uint160","name":"_sqrtPriceX96","type":"uint160"}],"name":"initialize","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"lastUpdated","outputs":[{"internalType":"uint32","name":"","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"liquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"master","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxLiquidityPerTick","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"uint128","name":"amount","type":"uint128"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"mint","outputs":[{"internalType":"uint256","name":"amount0","type":"uint256"},{"internalType":"uint256","name":"amount1","type":"uint256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"nft","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"","type":"uint256"}],"name":"observations","outputs":[{"internalType":"uint32","name":"blockTimestamp","type":"uint32"},{"internalType":"int56","name":"tickCumulative","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityCumulativeX128","type":"uint160"},{"internalType":"bool","name":"initialized","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint32[]","name":"secondsAgos","type":"uint32[]"}],"name":"observe","outputs":[{"internalType":"int56[]","name":"tickCumulatives","type":"int56[]"},{"internalType":"uint160[]","name":"secondsPerLiquidityCumulativeX128s","type":"uint160[]"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"periodFinish","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolType","outputs":[{"internalType":"uint16","name":"","type":"uint16"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"poolVersion","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"bytes32","name":"","type":"bytes32"}],"name":"positions","outputs":[{"internalType":"uint128","name":"liquidity","type":"uint128"},{"internalType":"uint256","name":"feeGrowthInside0LastX128","type":"uint256"},{"internalType":"uint256","name":"feeGrowthInside1LastX128","type":"uint256"},{"internalType":"uint128","name":"tokensOwed0","type":"uint128"},{"internalType":"uint128","name":"tokensOwed1","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardGrowthGlobalX128","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardRate","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rewardReserve","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"rollover","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_gauge","type":"address"},{"internalType":"address","name":"_nft","type":"address"}],"name":"setGaugeAndPositionManager","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"slot0","outputs":[{"internalType":"uint160","name":"sqrtPriceX96","type":"uint160"},{"internalType":"int24","name":"tick","type":"int24"},{"internalType":"uint16","name":"observationIndex","type":"uint16"},{"internalType":"uint16","name":"observationCardinality","type":"uint16"},{"internalType":"uint16","name":"observationCardinalityNext","type":"uint16"},{"internalType":"bool","name":"unlocked","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"}],"name":"snapshotCumulativesInside","outputs":[{"internalType":"int56","name":"tickCumulativeInside","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityInsideX128","type":"uint160"},{"internalType":"uint32","name":"secondsInside","type":"uint32"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int128","name":"stakedLiquidityDelta","type":"int128"},{"internalType":"int24","name":"tickLower","type":"int24"},{"internalType":"int24","name":"tickUpper","type":"int24"},{"internalType":"bool","name":"positionUpdate","type":"bool"}],"name":"stake","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakedLiquidity","outputs":[{"internalType":"uint128","name":"","type":"uint128"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"amountSpecified","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"callback","type":"address"},{"internalType":"bytes","name":"callbackData","type":"bytes"}],"name":"swap","outputs":[{"internalType":"int256","name":"amount0","type":"int256"},{"internalType":"int256","name":"amount1","type":"int256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"amountSpecified","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"},{"internalType":"bytes","name":"data","type":"bytes"}],"name":"swap","outputs":[{"internalType":"int256","name":"amount0","type":"int256"},{"internalType":"int256","name":"amount1","type":"int256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"components":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"bool","name":"zeroForOne","type":"bool"},{"internalType":"int256","name":"amountSpecified","type":"int256"},{"internalType":"uint160","name":"sqrtPriceLimitX96","type":"uint160"},{"internalType":"address","name":"sender","type":"address"},{"internalType":"bytes","name":"data","type":"bytes"},{"internalType":"address","name":"callback","type":"address"},{"internalType":"bytes","name":"callbackData","type":"bytes"}],"internalType":"struct SyncSwapRangePool.SwapParams","name":"params","type":"tuple"}],"name":"swap","outputs":[{"internalType":"int256","name":"amount0","type":"int256"},{"internalType":"int256","name":"amount1","type":"int256"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_rewardRate","type":"uint256"},{"internalType":"uint256","name":"_rewardReserve","type":"uint256"},{"internalType":"uint256","name":"_periodFinish","type":"uint256"}],"name":"syncReward","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"int16","name":"","type":"int16"}],"name":"tickBitmap","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tickSpacing","outputs":[{"internalType":"int24","name":"","type":"int24"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"int24","name":"","type":"int24"}],"name":"ticks","outputs":[{"internalType":"uint128","name":"liquidityGross","type":"uint128"},{"internalType":"int128","name":"liquidityNet","type":"int128"},{"internalType":"int128","name":"stakedLiquidityNet","type":"int128"},{"internalType":"uint256","name":"feeGrowthOutside0X128","type":"uint256"},{"internalType":"uint256","name":"feeGrowthOutside1X128","type":"uint256"},{"internalType":"uint256","name":"rewardGrowthOutsideX128","type":"uint256"},{"internalType":"int56","name":"tickCumulativeOutside","type":"int56"},{"internalType":"uint160","name":"secondsPerLiquidityOutsideX128","type":"uint160"},{"internalType":"uint32","name":"secondsOutside","type":"uint32"},{"internalType":"bool","name":"initialized","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token0","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"token1","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"updateRewardsGrowthGlobal","outputs":[],"stateMutability":"nonpayable","type":"function"}]
Contract Creation Code
13b8683f000000000000000000000000000000000000000000000000000000000000002000000000000000000000000000000000000000000000000000000000000000800000000000000000000000006386da73545ae4e2b2e0393688fa8b65bb9a7169000000000000000000000000c1aa99c3881b26901af70738a7c217dc32536d36000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000f4240000000000000000000000000
Deployed Bytecode
0x00040000000000020000006003100270000023140430019700030000004103550002000000010355000023140030019d00000001002001900000000a0000c13d00000000010000198c4b00160000040f0000008001000039000000400010043f0000000001000416000000000001004b000000140000c13d000000200100003900000100001004430000012000000443000023150100004100008c4c0001042e000000000100001900008c4d00010430002d0000000000020000008004000039000000400040043f0000000002000416000000000001004b000000230000613d000000000002004b000000280000c13d000000200100003900000100001004430000012000000443000023150100004100008c4c0001042e000000000002004b000000280000c13d0000000002000031000000030020008c0000002a0000213d000000000100001900008c4d000104300000000201000367000000000501043b000000e003500270000023160050009c000000c60000813d000023ad0050009c000000d40000813d000023e70050009c000001bc0000813d000023f70030009c000002ca0000213d000023fb0030009c000004d60000613d000023fc0030009c00000a0b0000613d000023fd0030009c000000280000c13d000023200020009c000000280000213d000000a30020008c000000280000a13d0000000403100370000000000403043b000023460040009c000000280000813d0000002403100370000000000503043b000000000005004b0000000003000039000000010300c039000000000035004b000000280000c13d0000004403100370000000000603043b0000006403100370000000000703043b0000232b0070009c000000280000213d0000008403100370000000000903043b000023560090009c000000280000213d0000002303900039000000000023004b000000280000813d0000000408900039000000000381034f000000000303043b000023c70030009c000000280000813d00000000093900190000002409900039000000000029004b000000280000213d0000232b024001970000232b04700197000000800020043f000000a00050043f000000c00060043f000000e00040043f0000000002000411000001000020043f0000001f02300039000023ff02200197000001a002200039000000400020043f0000002002800039000000000221034f000001800030043f00002404043001980000001f0530018f000001a001400039000000790000613d000001a006000039000000000702034f000000007807043c0000000006860436000000000016004b000000750000c13d000000000005004b000000860000613d000000000242034f0000000304500210000000000501043300000000054501cf000000000545022f000000000202043b0000010004400089000000000242022f00000000024201cf000000000252019f0000000000210435000001a00130003900000000000104350000018001000039000001200010043f000001400000043f000000400100043d0000002002100039000000400020043f0000000000010435000001600010043f000000c00100043d000000000001004b000000280000613d000000400600043d000000c001600039000000400010043f0000000601000039000000000101041a000000a0026000390000238b041001980000000003000039000000010300c0390000000000320435000000a00210027000002323022001970000233a0010019800002322030000410000000003006019000000000223019f000000d8031002700000ffff0330018f0000008005600039000700000005001d0000000000350435000000c8031002700000ffff0330018f0000006005600039000600000005001d0000000000350435000000b8031002700000ffff0330018f0000004005600039000c00000005001d00000000003504350000002003600039000d00000003001d0000000000230435000023ac020000410000232b03100197002d00000006001d0000000000360435000000000004004b000038db0000613d000000e00200043d0000232b04200197000000a00200043d000000000002004b000013e00000c13d000023d602000041000000000034004b000038db0000a13d000023d70040009c000013e50000a13d000038db0000013d000023170050009c000001b00000813d0000233c0050009c000002510000813d000023a00030009c000003030000213d000023a40030009c000005980000613d000023a50030009c00000a0d0000613d000023a60030009c000000280000c13d0000000b0100003900000ca00000013d000023ae0050009c0000029c0000813d000023be0030009c0000039c0000213d000023c20030009c000005d30000613d000023c30030009c00000a140000613d000023c40030009c000000280000c13d000023200020009c000000280000213d000000230020008c000000280000a13d0000000403100370000000000303043b000023560030009c000000280000213d00000004033000390000000004320049000023200040009c000000280000213d000000ff0040008c000000280000a13d0000018004000039000000400040043f000000000531034f000000000505043b000023460050009c000000280000813d000000800050043f0000002005300039000000000651034f000000000606043b000000000006004b0000000007000039000000010700c039000000000076004b000000280000c13d000000a00060043f0000002006500039000000000661034f000000000606043b000000c00060043f0000004005500039000000000651034f000000000606043b0000232b0060009c000000280000213d000000e00060043f0000002005500039000000000651034f000000000606043b0000232b0060009c000000280000213d000001000060043f0000002005500039000000000651034f000000000606043b000023c70060009c000000280000813d00000000073600190000001f06700039000000000026004b000000280000813d000000000671034f000000000606043b000023d50060009c000015df0000813d0000001f086000390000240408800197000001a008800039000000400080043f000001800060043f00000020077000390000000008670019000000000028004b000000280000213d000000000871034f00002404096001980000001f0a60018f000001a0079000390000012d0000613d000001a00b000039000000000c08034f00000000cd0c043c000000000bdb043600000000007b004b000001290000c13d00000000000a004b0000013a0000613d000000000898034f0000000309a00210000000000a070433000000000a9a01cf000000000a9a022f000000000808043b0000010009900089000000000898022f00000000089801cf0000000008a8019f0000000000870435000001a0066000390000000000060435000001200040043f0000002004500039000000000541034f000000000505043b000023460050009c000000280000813d000001400050043f0000002004400039000000000441034f000000000404043b000023c70040009c000000280000813d00000000063400190000001f03600039000000000023004b000000280000813d000000000361034f000000000303043b000023c70030009c000015df0000813d0000001f043000390000240407400197000000400400043d00000020054000390000000007750019000023560070009c000015df0000213d000000000047004b000015df0000413d000000400070043f000000000034043500000020066000390000000007360019000000000027004b000000280000213d000000000261034f00002404063001980000001f0730018f00000000016500190000016a0000613d000000000802034f0000000009050019000000008a08043c0000000009a90436000000000019004b000001660000c13d000000000007004b000001770000613d000000000262034f0000000306700210000000000701043300000000076701cf000000000767022f000000000202043b0000010006600089000000000262022f00000000026201cf000000000272019f000000000021043500000000013500190000000000010435000001600040043f000000c00100043d000000000001004b000000280000613d000000400600043d000000c001600039000000400010043f0000000601000039000000000101041a000000a0026000390000238b041001980000000003000039000000010300c0390000000000320435000000a00210027000002323022001970000233a0010019800002322030000410000000003006019000000000223019f000000d8031002700000ffff0330018f0000008005600039000700000005001d0000000000350435000000c8031002700000ffff0330018f0000006005600039000600000005001d0000000000350435000000b8031002700000ffff0330018f0000004005600039000c00000005001d00000000003504350000002003600039000d00000003001d0000000000230435000023ac020000410000232b03100197002c00000006001d0000000000360435000000000004004b000038db0000613d000000e00200043d0000232b04200197000000a00200043d000000000002004b000038100000c13d000023d602000041000000000034004b000038db0000a13d000023d70040009c000038150000a13d000038db0000013d000023180050009c000002c00000813d000023330030009c000004270000213d000023370030009c0000070c0000613d000023380030009c00000a160000613d000023390030009c000000280000c13d0000000c0100003900000ca00000013d000023e80030009c0000042f0000213d000023ec0030009c000007100000613d000023ed0030009c00000a180000613d000023ee0030009c000000280000c13d000023200020009c000000280000213d000000c30020008c000000280000a13d0000000402100370000000000202043b002d00000002001d000023460020009c000000280000813d0000002402100370000000000402043b0000232100400198000023220200004100000000020060190000232303400197000000000232019f002c00000004001d000000000024004b000000280000c13d0000004402100370000000000402043b0000232100400198000023220200004100000000020060190000232303400197000000000232019f002b00000004001d000000000024004b000000280000c13d0000006402100370000000000202043b002a00000002001d000023240020009c000000280000213d0000008402100370000000000202043b002900000002001d000023240020009c000000280000213d000000a401100370000000000101043b002800000001001d000023460010009c000000280000813d0000000501000039000000000101041a0000232b011001970000000002000411000000000012004b000000280000c13d0000000601000039000000000201041a0000238b0020019800000c950000613d0000238e02200197000000000021041b00000028010000290000006001100210000000a00010043f0000002c01000029000000e801100210000000b40010043f0000002b01000029000000e801100210000000b70010043f0000001a01000039000000800010043f000000ba01000039000000400010043f0000000001000414000023140010009c0000231401008041000000c001100210000023bc011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002d020000290027232b0020019b0000002a05000029000023240250019700000029060000290000232403600197000000000101043b0000000301100039002600000001001d000000000101041a0000008004100270000000000043004b000000000406a019002900000004001d0000232403100197000000000032004b000000000305a019002a00000003001d000000000003004b000016a10000c13d0000002901000029002d23240010019c000017110000c13d00000028010000290000232b05100197000000400100043d00000040021000390000002d03000029000000000032043500000020021000390000002a03000029000000000032043500000027020000290000000000210435000000400200043d00000000012100490000006001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f000008d90000013d0000233d0030009c000004370000213d000023410030009c0000072c0000613d000023420030009c00000a200000613d000023430030009c000000280000c13d000023200020009c000000280000213d000000a30020008c000000280000a13d0000000402100370000000000202043b000023460020009c000000280000813d0000002403100370000000000303043b002d00000003001d0000232b0030009c000000280000213d0000004403100370000000000303043b002c00000003001d0000232b0030009c000000280000213d0000006403100370000000000503043b0000232100500198000023220300004100000000030060190000232304500197000000000343019f002b00000005001d000000000035004b000000280000c13d0000008401100370000000000101043b002a00000001001d000023460010009c000000280000813d0000000101000039002900000001001d000000000101041a0000232b00100198000000280000c13d0000232b032001970000234701100197000000000131019f0000000102000039000000000012041b0000234801000041000000800010043f0000232f010000410000000000100443002800000003001d00000004003004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002802000029000000040020008c000011e50000c13d00000001030000310000120b0000013d000023af0030009c0000043f0000213d000023b30030009c000008580000613d000023b40030009c00000ad40000613d000023b50030009c000000280000c13d000023200020009c000000280000213d000000230020008c000000280000a13d0000000401100370000000000101043b0000800000100190000080000200008a000000000200601900007fff0310018f000000000232019f000000000021004b000000280000c13d0000001202000039000000200020043f000000000010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000400400043d000000000101043b00000ca00000013d000023190030009c0000048e0000213d0000231d0030009c000008ed0000613d0000231e0030009c00000af10000613d0000231f0030009c000000280000c13d0000000d0100003900000ca00000013d000023f80030009c000008ef0000613d000023f90030009c00000b230000613d000023fa0030009c000000280000c13d000023200020009c000000280000213d000000430020008c000000280000a13d0000000402100370000000000202043b002d00000002001d000023460020009c000000280000813d0000002401100370000000000101043b002c00000001001d0000232b0010009c000000280000213d0000000602000039000000000102041a0000238b0010019800000c950000613d0000238e01100197000000000012041b0000000401000039000000000101041a0000232b00100198000000280000c13d0000000101000039000000000101041a000023fe02000041000000800020043f0000232f0200004100000000002004430000232b01100197002b00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002b02000029000000040020008c00000f570000c13d000000010300003100000f7d0000013d000023a10030009c000008f20000613d000023a20030009c00000b550000613d000023a30030009c000000280000c13d000023200020009c000000280000213d000000630020008c000000280000a13d0000000402100370000000000502043b0000232100500198000023220300004100000000030060190000232302500197000000000423019f002d00000005001d000000000045004b000000280000c13d0000002404100370000000000504043b0000232100500198000023220600004100000000060060190000232304500197002b00000004001d002a00000006001d000000000446019f002c00000005001d000000000045004b000000280000c13d0000002d070000290000002c09000029000000000097004b00000000040000190000234d040040410000234d0a9001970000234d087001970000000005a8013f0000000000a8004b00000000060000190000234d060020410000234d0050009c000000000604c0190000004401100370000000000101043b000000000006004b00000cf10000613d00270000000a001d002900000001001d0000234f0070009c00000000010000190000234d010040410000234d04800167002800000008001d0000234d0080009c00000000050000190000234d050020410000234d0040009c000000000501c019000023690090009c00000000010000390000000101004039000023200090009c00000000040000390000000104002039000000000005004b000000280000c13d000000000114019f0000000100100190000000280000613d000000290000006b000003500000c13d0000000901000039000000000101041a002900000001001d000023210030019800002322010000410000000001006019000000000121019f0000000602000039000000000202041a002600000002001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002a020000290000232100200198000023220200004100000000020060190000002b022001af000000000101043b002b00000001001d000000000020043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002603000029000000a00230027000002323022001970000233a0030019800002322030000410000000003006019000000000223019f0000002c0020006c00000000030000190000234d030040410000234d04200197000000270540014f000000270040006c00000000060000190000234d060020410000234d0050009c000000000603c019000000000101043b0000000401100039000000000101041a000000000006004b000000290500002900000000011560490000002d0020006c00000000020000190000234d02004041000000280340014f000000280040006c00000000040000190000234d040020410000234d0030009c000000000402c0190000002b020000290000000402200039000000000202041a000000000004004b000000000225c0490000000001120019000000000115004900000cfc0000013d000023bf0030009c000009880000613d000023c00030009c00000bf90000613d000023c10030009c000000280000c13d000023200020009c000000280000213d000000830020008c000000280000a13d0000000402100370000000000402043b0000232700400198000023250200004100000000020060190000232603400197000000000232019f002d00000004001d000000000024004b000000280000c13d0000002402100370000000000302043b0000232100300198000023220400004100000000040060190000232302300197002b00000002001d002a00000004001d000000000224019f002c00000003001d000000000023004b000000280000c13d0000004402100370000000000402043b0000232100400198000023220300004100000000030060190000232302400197002800000002001d002700000003001d000000000223019f002900000004001d000000000024004b000000280000c13d0000006401100370000000000201043b000000000002004b0000000001000039000000010100c039002600000002001d000000000012004b000000280000c13d0000000602000039000000000102041a0000238b0010019800000c950000613d0000238e03100197000000000032041b0000000402000039000000000202041a0000232b022001970000000003000411000000000023004b000000280000c13d000000a00210027000002323022001970000233a0010019800002322010000410000000001006019000000000321019f0000234d013001970000002c020000290000234d05200197000000000451013f002500000001001d002200000005001d000000000051004b00000000010000190000234d01002041002400000003001d000000000023004b00000000020000190000234d02004041002300000004001d0000234d0040009c000000000102c019000000000001004b00001b920000c13d0000002902000029000000240020006b00000000010000190000234d010040410000234d02200197000000250320014f000000250020006b00000000020000190000234d020020410000234d0030009c000000000201c019000000000002004b00001b920000613d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314031001970000000f01000039000000000201041a00000080042002700000231404400197000000000643004b00001b810000613d0000000c05000039000000000405041a000000000004004b00001b7d0000613d0000000b07000039000000000707041a00000000066700a9000000000764004b0000000007004019000000000075041b000000000046004b00000000060480190000232405200198000016db0000c13d0000000e04000039000000000504041a0000000005650019000000000054041b00001b7d0000013d000023340030009c0000098a0000613d000023350030009c00000c5c0000613d000023360030009c000000280000c13d000000030100003900000c820000013d000023e90030009c000009910000613d000023ea0030009c00000c670000613d000023eb0030009c000000280000c13d0000000f01000039000008f00000013d0000233e0030009c000009c40000613d0000233f0030009c00000c810000613d000023400030009c000000280000c13d0000000e0100003900000ca00000013d000023b00030009c00000a070000613d000023b10030009c00000c870000613d000023b20030009c000000280000c13d000023200020009c000000280000213d000000230020008c000000280000a13d0000000401100370000000000201043b000000000002004b0000000001000039000000010100c039002d00000002001d000000000012004b000000280000c13d0000000602000039000000000102041a0000238b0010019800000c950000613d0000238e01100197000000000012041b0000000401000039000000000101041a0000232b011001970000000002000411000000000012004b00000d0d0000c13d00000080010000390000000a02000039000000000402041a000023240540019700000080034002700000002d0000006b000000000305c019000000010530008c00000d280000213d00002324043001970000002d0000006b00000000010000190000000001046019000000400200043d00000020032000390000000000130435002d00000004001d000000000104001900000000010060190000000000120435000000400100043d00000000021200490000004002200039000023140020009c00002314020080410000006002200210000023140010009c00002314010080410000004001100210000000000112019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000203000039000023b90400004100000000050004118c4b8c410000040f0000000100200190000000280000613d0000000602000039000000000102041a0000238e01100197000023ba011001c7000000000012041b00000cfd0000013d0000231a0030009c00000a090000613d0000231b0030009c00000c9f0000613d0000231c0030009c000000280000c13d000023200020009c000000280000213d000000230020008c000000280000a13d0000000401100370000000000101043b0000232100100198000023220200004100000000020060190000232303100197000000000232019f000000000021004b000000280000c13d0000001102000039000000200020043f000000000010043f000000400200003900000000010000198c4b8c2c0000040f0000000502100039000000000202041a0000000403100039000000000303041a0000000304100039000000000404041a0000000205100039000000000505041a0000000106100039000000000606041a000000000101041a0000232407100197000000800070043f000023200010009c0000000007000019000023250700204100000080011002700000232601100197000000000117019f000000a00010043f0000232601600197000023270060019800002325060000410000000006006019000000000116019f000000c00010043f000000e00050043f000001000040043f000001200030043f0000232800200198000023290100004100000000010060190000232a03200197000000000131019f000001400010043f00000038012002700000232b01100197000001600010043f000000d8012002700000231401100197000001800010043f0000232c0020009c00000000010000390000000101002039000001a00010043f0000232d0100004100008c4c0001042e000023200020009c000000280000213d000001030020008c000000280000a13d0000000403100370000000000503043b000023460050009c000000280000813d0000002403100370000000000603043b000000000006004b0000000003000039000000010300c039000000000036004b000000280000c13d0000004403100370000000000803043b0000006403100370000000000903043b0000232b0090009c000000280000213d0000008403100370000000000303043b000023560030009c000000280000213d0000002304300039000000000024004b000000280000813d000000040b3000390000000004b1034f000000000404043b000023c70040009c000000280000813d00000000034300190000002403300039000000000023004b000000280000213d000000a403100370000000000c03043b0000234600c0009c000000280000813d000000c403100370000000000a03043b0000232b00a0009c000000280000213d000000e403100370000000000d03043b0000235600d0009c000000280000213d0000002303d00039000000000023004b000000280000813d0000000407d00039000000000371034f000000000303043b000023c70030009c000000280000813d000000000d3d0019000000240dd0003900000000002d004b000000280000213d0000232b025001970000232b059001970000232b09c00197000000800020043f000000a00060043f000000c00080043f000000e00050043f000001000090043f0000001f02400039000023ff02200197000001a002200039000000400020043f0000002002b00039000000000521034f000001800040043f00002404064001980000001f0840018f000001a0026000390000052c0000613d000001a009000039000000000b05034f00000000bc0b043c0000000009c90436000000000029004b000005280000c13d0000232b09a00197000000000008004b0000053a0000613d000000000565034f0000000306800210000000000802043300000000086801cf000000000868022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000585019f0000000000520435000001a00240003900000000000204350000018002000039000001200020043f000001400090043f0000001f02300039000023ff05200197000000400200043d00000020042000390000000005540019000000400050043f0000002005700039000000000551034f000024040630019800000000003204350000001f0730018f0000000001640019000005520000613d000000000805034f0000000009040019000000008a08043c0000000009a90436000000000019004b0000054e0000c13d000000000007004b0000055f0000613d000000000565034f0000000306700210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f000000000051043500000000013400190000000000010435000001600020043f000000c00100043d000000000001004b000000280000613d000000400600043d000000c001600039000000400010043f0000000601000039000000000101041a000000a0026000390000238b041001980000000003000039000000010300c0390000000000320435000000a00210027000002323022001970000233a0010019800002322030000410000000003006019000000000223019f000000d8031002700000ffff0330018f0000008005600039000700000005001d0000000000350435000000c8031002700000ffff0330018f0000006005600039000600000005001d0000000000350435000000b8031002700000ffff0330018f0000004005600039000c00000005001d00000000003504350000002003600039000d00000003001d0000000000230435000023ac020000410000232b03100197002d00000006001d0000000000360435000000000004004b000038db0000613d000000e00200043d0000232b04200197000000a00200043d000000000002004b000019f30000c13d000023d602000041000000000034004b000038db0000a13d000023d70040009c000019f80000a13d000038db0000013d000023200020009c000000280000213d000000830020008c000000280000a13d0000000402100370000000000302043b0000232100300198000023220400004100000000040060190000232302300197002d00000002001d002b00000004001d000000000224019f002c00000003001d000000000023004b000000280000c13d0000002402100370000000000302043b0000232100300198000023220400004100000000040060190000232302300197002900000002001d002800000004001d000000000224019f002a00000003001d000000000023004b000000280000c13d0000004402100370000000000202043b000023240020009c000000280000213d0000006401100370000000000301043b000023460030009c000000280000813d0000000601000039000000000101041a0000238b0010019800000dbd0000c13d0000235401000041000000800010043f0000002001000039000000840010043f0000000101000039000000a40010043f000023ac01000041000000c40010043f000000e40200003900000080010000390000000002120049000023140020009c00002314020080410000006002200210000023140010009c00002314010080410000004001100210000000000112019f00008c4d00010430000023200020009c000000280000213d000000a30020008c000000280000a13d0000000403100370000000000303043b000023460030009c000000280000813d0000002404100370000000000504043b0000232100500198000023220600004100000000060060190000232304500197002d00000004001d002b00000006001d000000000446019f002c00000005001d000000000045004b000000280000c13d0000004404100370000000000504043b0000232100500198000023220600004100000000060060190000232304500197002900000004001d002800000006001d000000000446019f002a00000005001d000000000045004b000000280000c13d0000006404100370000000000404043b002700000004001d000023240040009c000000280000213d0000008404100370000000000404043b000023560040009c000000280000213d0000002305400039000000000025004b000000280000813d0000000405400039000000000151034f000000000101043b002600000001001d000023c70010009c000000280000813d0000002404400039002500000004001d0000002601400029000000000021004b000000280000213d0000000601000039000000000101041a0000238b0010019800000c950000613d0000002702000029002423240020019c0000238e021001970000000604000039000000000024041b000000280000613d0000232b033001970000010002000039000000400020043f002300000003001d000000800030043f0000002c02000029000000a00020043f0000002a02000029000000c00020043f00000027030000290000232602300197000023270030019800002325030000410000000003006019000000000323019f002200000003001d000000240030006b000000280000c13d0000002c030000290000002a04000029000000000043004b00000000020000190000234d020040410000234d044001970000234d05300197000000000345013f002000000004001d002100000005001d000000000045004b00000000040000190000234d040020410000234d0030009c000000000402c0190000002402000029000000e00020043f000000000004004b00000ee00000613d0000002c020000290000234f0020009c00000000020000190000234d0200404100000021040000290000234d034001670000234d0040009c00000000040000190000234d040020410000234d0030009c000000000402c0190000002a03000029000023690030009c00000000020000390000000102004039000023200030009c00000000030000390000000103002039000000000004004b000000280000c13d000000000223019f0000000100200190000000280000613d0000232b02100197000001000020043f000000a00210027000002323022001970000233a0010019800002322030000410000000003006019001f00000002001d001e00000003001d000000000223019f000001200020043f000000b8021002700000ffff0220018f000001400020043f000000c8021002700000ffff0220018f000001600020043f000000d8011002700000ffff0110018f000001800010043f00000023010000290000006001100210000001a00000043f000001e00010043f0000002c01000029000000e801100210000001f40010043f0000002a01000029000000e801100210000001f70010043f0000001a01000039000001c00010043f000001fa01000039000000400010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238f011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000000902000039000000000202041a001a00000002001d0000000802000039000000000202041a001d00000002001d0000000702000039000000000202041a001c00000002001d000000000101043b001b00000001001d000000220000006b00002bd90000c13d001a00010000003d0000002b01000029002b23210010019b002700000000001d0000002b0000006b000023220100004100000000010060190000002d011001af002d00000001001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000280200002900002321002001980000232202000041000000000200601900000029022001af000000000101043b002b00000001001d002900000002001d000000000020043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001e020000290000232100200198000023220200004100000000020060190000001f032001af0000234d02300197000000210420014f000000210020006c00000000050000190000234d050020410000002c0030006c00000000060000190000234d060040410000234d0040009c000000000506c019000000000101043b0000002b060000290000000304600039000000000704041a0000000204600039000000000804041a000000000005004b000006d50000613d0000001d077000690000001c088000690000002a0030006c00000000030000190000234d03004041000000200420014f000000200020006c00000000020000190000234d020020410000234d0040009c000000000203c0190000000303100039000000000b03041a0000000201100039000000000c01041a000000000002004b000006e60000c13d0000001d0bb000690000001c0cc000690000000401000039000000000601041a000000400e00043d000000a001e00039000000400010043f0000001b03000029000000000403041a000023240940019700000000019e04360000000102300039000000000d02041a0000000000d104350000004001e000390000000205300039000000000a05041a0000000000a104350000000301300039000000800fe00039002b00000001001d000000000301041a000000800130027000000000001f04350000006001e00039000023240e3001970000000000e104350000232b01600197000000230010006c000000000e000039000000010e00c039000000230000006b000000000f000039000000010f006039000000220000006b000036660000c13d000000000009004b0000000006090019000037f50000c13d000000280000013d0000000401000039000000800010043f0000233b0100004100008c4c0001042e000023200020009c000000280000213d000000230020008c000000280000a13d0000000401100370000000000101043b0000ffff0010008c000000280000813d0000001401100039000000000101041a0000231402100197000000800020043f00000020021002700000232a022001970000238c0010019800002329030000410000000003006019000000000223019f000000a00020043f00000058021002700000232b02200197000000c00020043f0000232c0010009c00000000010000390000000101002039000000e00010043f000023f60100004100008c4c0001042e000023200020009c000000280000213d000000630020008c000000280000a13d0000000402100370000000000302043b0000232100300198000023220400004100000000040060190000232302300197002d00000002001d002b00000004001d000000000224019f002c00000003001d000000000023004b000000280000c13d0000002402100370000000000302043b0000232100300198000023220400004100000000040060190000232302300197002900000002001d002800000004001d000000000224019f002a00000003001d000000000023004b000000280000c13d0000004401100370000000000201043b000023240020009c000000280000213d0000000605000039000000000105041a0000238b0010019800000c950000613d00002324042001970000238e03100197000000000035041b0000010003000039000000400030043f00000000030004110000232b03300197002600000003001d000000800030043f0000002c03000029000000a00030043f0000002a03000029000000c00030043f0000232603200197000023270020019800002325020000410000000002006019000000000232019f002700000004001d000000000024004b000000280000c13d0000002c030000290000002a04000029000000000043004b00000000020000190000234d020040410000234d044001970000234d05300197000000000345013f002100000004001d002500000005001d000000000045004b00000000040000190000234d040020410000234d0030009c000000000402c019000000270200002900000000022000890000232603200197000023270020019800002325020000410000000002006019002400000003001d002300000002001d000000000232019f002200000002001d000000e00020043f000000000004004b00000ee00000613d0000002c020000290000234f0020009c00000000020000190000234d0200404100000025040000290000234d034001670000234d0040009c00000000040000190000234d040020410000234d0030009c000000000402c0190000002a03000029000023690030009c00000000020000390000000102004039000023200030009c00000000030000390000000103002039000000000004004b000000280000c13d000000000223019f0000000100200190000000280000613d0000232b02100197000001000020043f000000a00210027000002323022001970000233a0010019800002322030000410000000003006019002000000002001d001f00000003001d000000000223019f000001200020043f000000b8021002700000ffff0220018f000001400020043f000000c8021002700000ffff0220018f000001600020043f000000d8011002700000ffff0110018f000001800010043f00000026010000290000006001100210000001a00000043f000001e00010043f0000002c01000029000000e801100210000001f40010043f0000002a01000029000000e801100210000001f70010043f0000001a01000039000001c00010043f000001fa01000039000000400010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238f011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000230200002900002327002001980000232502000041000000000200601900240024002001b40000000902000039000000000202041a001c00000002001d0000000802000039000000000202041a002300000002001d0000000702000039000000000202041a001e00000002001d000000000101043b001d00000001001d000015cc0000c13d001b00010000003d0000002b01000029002b23210010019b001c00000000001d0000002b0000006b000023220100004100000000010060190000002d011001af002d00000001001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000280200002900002321002001980000232202000041000000000200601900000029022001af000000000101043b002b00000001001d002900000002001d000000000020043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001f0200002900002321002001980000232202000041000000000200601900000020032001af0000234d02300197000000250420014f000000250020006c00000000050000190000234d050020410000002c0030006c00000000060000190000234d060040410000234d0040009c000000000506c019000000000101043b0000002b070000290000000304700039000000000604041a0000000204700039000000000704041a000000000005004b000008210000613d00000023066000690000001e077000690000002a0030006c00000000030000190000234d03004041000000210420014f000000210020006c00000000020000190000234d020020410000234d0040009c000000000203c0190000000303100039000000000a03041a0000000201100039000000000b01041a000000000002004b000008320000c13d000000230aa000690000001e0bb000690000000401000039000000000501041a000000400d00043d000000a001d00039000000400010043f0000001d0e00002900000000030e041a000023240830019700000000028d04360000000101e00039000000000c01041a0000000000c204350000004002d000390000000204e00039000000000904041a00000000009204350000000302e00039000000800ed00039002b00000002001d000000000202041a000000800f2002700000000000fe0435000000600dd00039000023240e2001970000000000ed04350000232b05500197000000260050006c000000000d000039000000010d00c039000000260000006b000000000e000039000000010e006039000000240000006b000019700000c13d000000000008004b0000000005080019000019d80000c13d000000280000013d000023200020009c000000280000213d000000a30020008c000000280000a13d0000000402100370000000000202043b002d00000002001d000023460020009c000000280000813d0000002402100370000000000402043b0000232100400198000023220200004100000000020060190000232303400197000000000232019f002c00000004001d000000000024004b000000280000c13d0000004402100370000000000402043b0000232100400198000023220200004100000000020060190000232303400197000000000232019f002b00000004001d000000000024004b000000280000c13d0000006402100370000000000202043b002a00000002001d000023240020009c000000280000213d0000008401100370000000000101043b002900000001001d000023240010009c000000280000213d0000000601000039000000000201041a0000238b0020019800000c950000613d00000000030004110000238e02200197000000000021041b0000006001300210000000a00010043f0000002c01000029000000e801100210000000b40010043f0000002b01000029000000e801100210000000b70010043f0000001a01000039000000800010043f000000ba01000039000000400010043f0000000001000414000023140010009c0000231401008041000000c001100210000023bc011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002d020000290028232b0020019b0000002a05000029000023240250019700000029060000290000232403600197000000000101043b0000000301100039002700000001001d000000000101041a0000008004100270000000000043004b000000000406a019002900000004001d0000232403100197000000000032004b000000000305a019002a00000003001d000000000003004b000011ab0000c13d0000002901000029002d23240010019c0000154e0000c13d000000400100043d00000040021000390000002d03000029000000000032043500000020021000390000002a03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000006001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00000000020004110000232b0520019700002388011001c70000800d020000390000000403000039000023bd040000410000002c060000290000002b070000298c4b8c410000040f0000000100200190000000280000613d0000000601000039000000000201041a0000238e02200197000023ba022001c7000000000021041b0000002a010000290000232401100197000000400200043d0000000003120436000000400100003900000d000000013d000000030100003900000ca10000013d0000001001000039000000000101041a00000a100000013d000023200020009c000000280000213d000000230020008c000000280000a13d0000000403100370000000000303043b000023560030009c000000280000213d0000002304300039000000000024004b000000280000813d002c00040030003d0000002c01100360000000000101043b002d00000001001d000023560010009c000000280000213d0000002d01000029002b0005001002180000002b013000290000002401100039000000000021004b000000280000213d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000400300043d0000002b0500002900000000023500190000002002200039000000000101043b002500000001001d000000400020043f002300000003001d0000002d0100002900000000041304360000001f0350018f00000000025400190000000201000367000000000005004b0000092a0000613d0000002c050000290000002005500039000000000551034f000000005605043c0000000004640436000000000024004b000009260000c13d000000000003004b00000000000204350000000602000039000000000202041a000000c8032002700000ffff05300190000000280000613d00000023030000290000000007030433000023560070009c000000280000213d0000001003000039000000000403041a000000400300043d002200000003001d000000000373043600000005087002100000000006830019000000400060043f000000000007004b000009460000613d000000000008004b000009460000613d0000000007100368000000007807043c0000000003830436000000000063004b000009420000c13d00000023030000290000000006030433000023560060009c000000280000213d000000400300043d002100000003001d00000000036304360000000507600210002800000003001d0000000003730019000000400030043f000000000006004b0000095b0000613d000000000007004b0000095b0000613d00000000011003680000002806000029000000001701043c0000000006760436000000000036004b000009570000c13d000000230a00002900000000010a0433000000000001004b000000220e000029000000210f00002900000fb10000c13d000000400100043d0000004002000039000000000221043600000000030e0433000000400410003900000000003404350000006004100039000000000003004b000009770000613d00000000050000190000002208000029000000200880003900000000060804330000232a07600197000023280060019800002329060000410000000006006019000000000676019f00000000046404360000000105500039000000000035004b0000096c0000413d00000000011400490000000000120435000000210100002900000000020104330000000001240436000000000002004b00000d030000613d00000000030000190000002105000029000000200550003900000000040504330000232b0440019700000000014104360000000103300039000000000023004b000009800000413d00000d030000013d000000050100003900000c820000013d0000000f01000039000000000101041a00000080011002700000231401100197000000800010043f0000233b0100004100008c4c0001042e000023200020009c000000280000213d000000230020008c000000280000a13d0000000401100370000000000201043b0000237c0020009c000000280000813d0000000604000039000000000304041a0000238b0030019800000c950000613d0000238e01300197000000000014041b000000d8013002700000ffff01100190000000280000613d0000ffff0220018f000000000012004b00000d650000a13d000000000401001900000000030100190000001404400039000000000504041a000023f10550019700000001055001bf000000000054041b00000001033000390000ffff0430018f000000000024004b000009a70000413d0000000605000039000000000305041a000023f203300197000000d804200210000000000343019f000000000035041b000000800010043f000000a00020043f0000000001000414000023140010009c0000231401008041000000c001100210000023f3011001c70000800d020000390000000103000039000023f4040000418c4b8c410000040f00000001002001900000118b0000c13d000000280000013d0000000101000039000000000101041a0000234402000041000000800020043f00000000020004100000232b02200197000000840020043f0000232f0200004100000000002004430000232b01100197002d00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c00000b210000613d000023140010009c0000231401008041000000c00110021000002345011001c78c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000009f40000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000009f00000c13d000000000005004b00000a010000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000000ce30000c13d000075300100003900000cfc0000013d000000090100003900000ca00000013d000000000100001900000c820000013d000000020100003900000c820000013d0000001001000039000000000101041a00000080011002700000232401100197000000800010043f0000233b0100004100008c4c0001042e000000080100003900000ca00000013d000000010100003900000c820000013d0000000a01000039000000000101041a0000232402100197000000800020043f0000008001100270000000a00010043f000023f50100004100008c4c0001042e000023200020009c000000280000213d000000430020008c000000280000a13d0000000402100370000000000502043b0000232100500198000023220300004100000000030060190000232302500197000000000423019f002d00000005001d000000000045004b000000280000c13d0000002401100370000000000401043b0000232100400198000023220500004100000000050060190000232301400197002b00000001001d002a00000005001d000000000115019f002c00000004001d000000000014004b000000280000c13d0000002c060000290000002d07000029000000000067004b00000000010000190000234d010040410000234d086001970000234d09700197000000000489013f000000000089004b00000000050000190000234d050020410000234d0040009c000000000501c019000000000005004b00000cf10000613d002800000008001d0000234f0070009c00000000010000190000234d010040410000234d04900167002900000009001d0000234d0090009c00000000050000190000234d050020410000234d0040009c000000000501c019000023690060009c00000000010000390000000101004039000023200060009c00000000040000390000000104002039000000000005004b000000280000c13d000000000114019f0000000100100190000000280000613d000023210030019800002322010000410000000001006019000000000121019f000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002a020000290000232100200198000023220200004100000000020060190000002b022001af000000000101043b002b00000001001d000000000020043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002b020000290000000502200039000000000202041a000023280020019800002329030000410000000003006019000023850020009c000000280000413d000000000101043b0000000501100039000000000101041a000023280010019800002329040000410000000004006019000023850010009c000000280000413d0000232a05200197002b0000005301a3000000d803200270002a23140030019b00000038022002700025232b0020019b0000232a0210019700270000002401a3000000d802100270002623140020019b00000038011002700024232b0010019b000000400100043d000000c002100039000000400020043f0000000602000039000000000202041a0000238b002001980000000003000039000000010300c039000000a0041000390000000000340435000000d8032002700000ffff0330018f00000080041000390000000000340435000000c8032002700000ffff0330018f00000060041000390000000000340435000000a00320027000002323053001970000233a0020019800002322060000410000000006006019000023210060019800002322030000410000000003006019000000000453019f0000234d03400197000000290730014f000000290030006c00000000080000190000234d080020410000002d0040006c00000000090000190000234d090040410000234d0070009c000000000809c0190000232b072001970000000007710436000000b8022002700000ffff0220018f0000004001100039002900000001001d0000000000210435000000000156019f002d00000007001d0000000000170435000000000008004b000014aa0000613d0000002402000029000000250220006900000027030000290000002b0430006900000026030000290000002a01000029000016000000013d000023200020009c000000280000213d000000230020008c000000280000a13d0000000401100370000000000101043b0000001302000039000000200020043f000000000010043f000000400200003900000000010000198c4b8c2c0000040f0000000302100039000000000202041a0000000203100039000000000303041a0000000104100039000000000404041a000000000101041a0000232401100197000000800010043f000000a00040043f000000c00030043f0000232401200197000000e00010043f0000008001200270000001000010043f000023bb0100004100008c4c0001042e0000000301000039000000000101041a0000000202000039000000000202041a00000000030004110000232b03300197000000a00030043f0000002004000039000000800040043f000000c005000039000000400050043f0000000105000039000000000505041a0000232e06000041000000c00060043f00000000060004100000232b06600197000000c40060043f000000e40030043f0000232b02200197000001040020043f0000232b01100197000001240010043f000000a001000039000001440010043f000001640040043f000001840030043f0000232f0100004100000000001004430000232b01500197002d00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c00000cbe0000c13d000000010300003100000ce30000013d0000000601000039000000000201041a0000238b0020019800000c950000613d0000238e02200197000000000021041b0000000401000039000000000101041a0000232b011001970000000002000411000000000012004b000000280000c13d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314021001970000000f01000039000000000301041a00000080043002700000231404400197000000000542004b0000118b0000613d0000000c07000039000000000407041a000000000004004b000011870000613d0000000b06000039000000000606041a00000000065600a9000000000564004b0000000005004019000000000057041b000000000046004b0000000006048019000023240530019800000ecb0000c13d0000000e04000039000000000504041a0000000005650019000000000054041b000011870000013d000023200020009c000000280000213d000000830020008c000000280000a13d0000000403100370000000000303043b000023460030009c000000280000813d0000002404100370000000000404043b0000232b0040009c000000280000213d0000004405100370000000000505043b0000232b0050009c000000280000213d0000006406100370000000000706043b000023560070009c000000280000213d0000002306700039000000000026004b000000280000813d0000000408700039000000000681034f000000000606043b000023a90060009c000015df0000813d0000001f096000390000240409900197000000a009900039000000400090043f000000800060043f00000000076700190000002407700039000000000027004b000000280000213d0000002002800039000000000721034f00002404086001980000001f0960018f000000a00180003900000b860000613d000000a002000039000000000a07034f00000000ab0a043c0000000002b20436000000000012004b00000b820000c13d0000232b023001970000232b034001970000232b04500197000000000009004b00000b960000613d000000000587034f0000000307900210000000000801043300000000087801cf000000000878022f000000000505043b0000010007700089000000000575022f00000000057501cf000000000585019f0000000000510435000000a00160003900000000000104350000000101000039000000000101041a000000400500043d0000008406500039000000a00700003900000000007604350000006406500039000000000046043500000044045000390000000000340435000000240350003900000000002304350000232e02000041000000000025043500000000020004100000232b0220019700000004035000390000000000230435000000a402500039000000800300043d0000000000320435002b00c40050003d002d232b0010019b002c00000003001d000000000003004b00000bc00000613d00000000010000190000002c040000290000002b050000290000000002510019000000a003100039000000000303043300000000003204350000002001100039000000000041004b00000bb50000413d00000bc00000a13d0000002b020000290000002c012000290000000000010435000000400100043d002a00000001001d0000232f0100004100000000001004430000002d0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c00000b210000613d0000002c020000290000001f0220003900002404022001970000002b022000290000002a030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002d020000298c4b8c460000040f0000002a0900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900000cd20000613d000000000701034f000000007807043c0000000009890436000000000049004b00000bf40000c13d00000cd20000013d000023200020009c000000280000213d000000830020008c000000280000a13d0000000403100370000000000303043b002d00000003001d000023460030009c000000280000813d0000006403100370000000000303043b0000004404100370000000000404043b002b00000004001d0000002404100370000000000404043b002c00000004001d000023560030009c000000280000213d0000002304300039000000000024004b000000280000813d0000000404300039000000000141034f000000000101043b002a00000001001d000023c70010009c000000280000813d0000002403300039002900000003001d0000002a01300029000000000021004b000000280000213d0000000601000039000000000201041a0000238b0020019800000c950000613d0000238e02200197000000000021041b0000001001000039000000000101041a002823240010019c000000280000613d0000000201000039000000000101041a0000000302000039000000000202041a00000000030004110000232b07300197000000a00070043f0000002c06000029000000c00060043f0000004003000039000000800030043f000000e004000039000000400040043f0000000104000039002400000004001d000000000404041a0000232e05000041000000e00050043f00000000050004100000232b05500197002600000005001d000000e40050043f0000232b02200197000001040070043f000001240020043f0000232b01100197000001440010043f000000a001000039000001640010043f000001840030043f002500000007001d000001a40070043f000001c40060043f0000232f0100004100000000001004430000232b01400197002700000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002702000029000000040020008c0000151a0000c13d0000000103000031000015400000013d0000000f01000039000000000101041a000000a00210027000002323022001970000233a0010019800002322010000410000000001006019000000000121019f000000800010043f0000233b0100004100008c4c0001042e0000000601000039000000000101041a0000232b02100197000000800020043f000000a00210027000002323022001970000233a0010019800002322030000410000000003006019000000000223019f000000a00020043f000000b8021002700000ffff0220018f000000c00020043f000000c8021002700000ffff0220018f000000e00020043f000000d8021002700000ffff0220018f000001000020043f0000238b001001980000000001000039000000010100c039000001200010043f000023ef0100004100008c4c0001042e0000000401000039000000000101041a0000232b01100197000000800010043f0000233b0100004100008c4c0001042e000023200020009c000000280000213d000000630020008c000000280000a13d0000004402100370000000000202043b0000002403100370000000000303043b0000000401100370000000000401043b0000000605000039000000000105041a0000238b0010019800000cad0000c13d0000235401000041000000800010043f0000002001000039000000840010043f0000000101000039000000a40010043f000023ac01000041000000c40010043f000023a80100004100008c4d000104300000000701000039000000000101041a0000000000140435000000400100043d00000000021400490000002002200039000023140020009c00002314020080410000006002200210000023140010009c00002314010080410000004001100210000000000112019f00008c4c0001042e0000238e01100197000000000015041b0000000405000039000000000505041a0000232b055001970000000006000411000000000056004b000000280000c13d0000000b05000039000000000045041b0000000c04000039000000000034041b0000000d03000039000000000023041b0000000e02000039000000000002041b0000118e0000013d000023140010009c0000231401008041000000c00110021000002331011001c78c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000c0046001bf000000c00900003900000cd20000613d000000000701034f000000007807043c0000000009890436000000000049004b00000cce0000c13d000000000005004b00000cdf0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000000cfb0000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433002d00000001001d000023320010009c000000280000813d00000cfd0000013d0000235401000041000000800010043f0000002001000039000000840010043f0000000101000039000000a40010043f000023a701000041000000c40010043f000023a80100004100008c4d00010430000003e801000039002d00000001001d0000002001000039000000400300043d00000000020300190000002d0400002900000000004304350000000001120019000000400200043d0000000001210049000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f00008c4c0001042e0000000101000039000000000101041a000023b602000041000000800020043f0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00000f210000c13d000000010300003100000f470000013d0000002d0000006b0000232403000041000023930300c041000000000334016f0000236a04000041000000010400c039000000000343019f000000000032041b00000002020000390000000302006039000000000202041a00000000030004110000232b03300197000000240410003900000000003404350000004403100039002c00000005001d0000000000530435000000400400043d000000000343004900000000053404360000006401100039000000400010043f0000232b022001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003040433000000200030008c0000000006030019000000000401001900000d520000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00000d4c0000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c00000d690000c13d0000000102000039000000010400003100000d7c0000013d000000d801100210000023f002300197000000000112019f0000118d0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b00000d810000c13d0000006003000039000000800100003900000d9f0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f0000000004510019000000030700036700000d920000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00000d8e0000c13d000000000006004b00000d9f0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000db80000c13d000000400100043d00000044021000390000240303000041000000000032043500000024021000390000000203000039000000000032043500002354020000410000000000210435000000040210003900000020030000390000000000320435000000400200043d00000000012100490000006401100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f00008c4d000104300000000002030433000000000002004b00000eea0000c13d0000002c03000029000004660000013d0000238e041001970000000605000039000000000045041b0000000504000039000000000404041a0000232b044001970000000005000411000000000045004b000000280000c13d00002324052001970000232b043001970000010003000039000000400030043f002600000004001d000000800040043f0000002c03000029000000a00030043f0000002a03000029000000c00030043f0000232603200197000023270020019800002325020000410000000002006019000000000232019f002700000005001d000000000025004b000000280000c13d0000002c030000290000002a04000029000000000043004b00000000020000190000234d020040410000234d044001970000234d05300197000000000345013f002100000004001d002500000005001d000000000045004b00000000040000190000234d040020410000234d0030009c000000000402c019000000270200002900000000022000890000232603200197000023270020019800002325020000410000000002006019002400000003001d002300000002001d000000000232019f002200000002001d000000e00020043f000000000004004b00000ee00000613d0000002c020000290000234f0020009c00000000020000190000234d0200404100000025040000290000234d034001670000234d0040009c00000000040000190000234d040020410000234d0030009c000000000402c0190000002a03000029000023690030009c00000000020000390000000102004039000023200030009c00000000030000390000000103002039000000000004004b000000280000c13d000000000223019f0000000100200190000000280000613d0000232b02100197000001000020043f000000a00210027000002323022001970000233a0010019800002322030000410000000003006019002000000002001d001f00000003001d000000000223019f000001200020043f000000b8021002700000ffff0220018f000001400020043f000000c8021002700000ffff0220018f000001600020043f000000d8011002700000ffff0110018f000001800010043f00000026010000290000006001100210000001a00000043f000001e00010043f0000002c01000029000000e801100210000001f40010043f0000002a01000029000000e801100210000001f70010043f0000001a01000039000001c00010043f000001fa01000039000000400010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238f011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000230200002900002327002001980000232502000041000000000200601900240024002001b40000000902000039000000000202041a001c00000002001d0000000802000039000000000202041a002300000002001d0000000702000039000000000202041a001e00000002001d000000000101043b001d00000001001d000017810000c13d001b00010000003d0000002b01000029002b23210010019b001c00000000001d0000002b0000006b000023220100004100000000010060190000002d011001af002d00000001001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000280200002900002321002001980000232202000041000000000200601900000029022001af000000000101043b002b00000001001d002900000002001d000000000020043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001f0200002900002321002001980000232202000041000000000200601900000020032001af0000234d02300197000000250420014f000000250020006c00000000050000190000234d050020410000002c0030006c00000000060000190000234d060040410000234d0040009c000000000506c019000000000101043b0000002b070000290000000304700039000000000604041a0000000204700039000000000704041a000000000005004b00000e940000613d00000023066000690000001e077000690000002a0030006c00000000030000190000234d03004041000000210420014f000000210020006c00000000020000190000234d020020410000234d0040009c000000000203c0190000000303100039000000000a03041a0000000201100039000000000b01041a000000000002004b00000ea50000c13d000000230aa000690000001e0bb000690000000401000039000000000501041a000000400d00043d000000a001d00039000000400010043f0000001d0e00002900000000030e041a000023240830019700000000028d04360000000101e00039000000000c01041a0000000000c204350000004002d000390000000204e00039000000000904041a00000000009204350000000302e00039000000800ed00039002b00000002001d000000000202041a000000800f2002700000000000fe0435000000600dd00039000023240e2001970000000000ed04350000232b05500197000000260050006c000000000d000039000000010d00c039000000260000006b000000000e000039000000010e006039000000240000006b00002b9e0000c13d000000000008004b0000000005080019000030960000c13d000000280000013d000024050060009c00000000040600190000000004006019000023930740009c00000000070440190000239e0070009c00000000070000390000000107002039000023930040009c00000000080000390000000108008039000000000778016f0000000004740019000023248740012a000023940040009c00000ef10000213d000000800880021000002324097000d1000000000089004b000000010770208a00000ef20000013d0000235401000041000001000010043f0000002001000039000001040010043f0000000101000039000001240010043f000023a701000041000001440010043f000023e30100004100008c4d000104300000001f0020008c000000280000a13d0000000001010433000000000001004b0000002c03000029000004660000c13d00000da10000013d000000010770008a00000080044002100000232407700197000000000447019f0000008007600210000000000474004b00000000080000390000000108004039000000000484004b00000efd0000c13d00000000045700d9000011830000013d000000000045004b000000280000a13d00000000605600d90000236a8050012900000000066800a900000000905600d9000000000650008900000000066501700000000008000019000000000865c0d9000000000597004b00000003078000c9000000020770015f00000000098700a9000000020990008900000000077900a900000000098700a9000000020990008900000000077900a9000000010440408a00000000098700a9000000020990008900000000077900a900000000098700a9000000020990008900000000077900a900000000098700a9000000020990008900000000077900a900000000088700a9000000020880008900000000077800a9000000000006004b0000117c0000c13d0000000005000019000011810000013d000023140010009c0000231401008041000000c00110021000002349011001c70000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf00000f360000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b00000f320000c13d000000000005004b00000f430000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000000f990000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d00000000020204330000232b0020009c000000280000213d0000000003000411000000000023004b0000045e0000613d000000280000013d000023140010009c0000231401008041000000c00110021000002349011001c70000002b020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf00000f6c0000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b00000f680000c13d000000000005004b00000f790000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000011930000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023460010009c000000280000813d0000000002000411000000000012004b000000280000c13d0000002d010000290000232b011001970000002c020000290000232b022001970000000404000039000000000304041a0000234703300197000000000113019f000000000014041b0000000501000039000000000301041a0000234703300197000011890000013d0000001f0430018f0000234a0230019800000fa20000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b00000f9e0000c13d000000000004004b00000faf0000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000008c4d00010430000000b801200270000000a00320027000002324044001970000ffff0610018f00002323033001970000233a0020019800002322020000410000000002006019001f0000003201a3001d000100500092000000010040008c000000010400a039002000000004001d0000002502000029000023140c200197002700000006001d002600140060003d0000000101100039001effff0010019300000000060000190000000501600210002900000001001d002a00200010003d0000002a01a0002900000000010104330000231400100198002b00000006001d0000102d0000613d000000400200043d0000008003200039000000400030043f0000006003200039000000000003043500000040032000390000000000030435000000200320003900000000000304350000000000020435000000400800043d0000008002800039000000400020043f00000060028000390000000000020435000000400d80003900000000000d04350000000002080436000000000002043500000027030000290000ffff0030008c000015df0000613d000000250a100069000000400600043d0000008001600039000000400010043f0000002601000029000000000301041a00000060016000390000232c0030009c00000000040000390000000104002039000000000041043500000020013002700000232a011001970000238c0030019800002329040000410000000004006019000000000414019f00000058013002700000232b011001970000004009600039000000000019043500000020016000390000000000410435000023140b3001970000000000b604350000231407a001970000000000cb004b00240000000a001d0000106f0000213d0000000000c7004b0000106f0000213d00000000007b004b000010770000213d00000000007b004b000011300000613d000000400200043d0000008003200039000000400030043f00000060032000390000000000030435000000400320003900000000000304350000002003200039000000000003043500000000000204350000000003060433000000400800043d0000008002800039000000400020043f000000000278043600000000033a004900002314043001970000001f044000b9000000000a01043300000000044a00190000232a0a4001970000232800400198000023290400004100000000040060190000000004a4019f00000000004204350000000004090433000000600a800039000000010b0000390000000000ba043500000080033002100000238d0330019700000020033000fa00000000033400190000232b03300197000000400d80003900000000003d0435000000000b060433000011300000013d00000027010000290000ffff0010008c000015df0000613d000000400200043d0000008001200039000000400010043f0000002601000029000000000301041a00000060012000390000232c0030009c00000000040000390000000104002039000000000041043500000020013002700000232a011001970000238c0030019800002329040000410000000004006019000000000114019f00000058043002700000232b044001970000004006200039000000000046043500002314073001970000000003720436000000000013043500000000007c004b000011650000613d000000400100043d0000008004100039000000400040043f00000060041000390000000000040435000000400410003900000000000404350000002004100039000000000004043500000000000104350000000001020433000000400200043d0000008004200039000000400040043f0000000004c20436000000250710006900002314017001970000001f011000b9000000000303043300000000011300190000232a03100197000023280010019800002329010000410000000001006019000000000131019f0000000000140435000000000306043300000060042000390000000106000039000000000064043500000080047002100000238d0440019700000020044000fa000000000343001900000040022000390000232b043001970000000000420435000011650000013d0000000000c7004b0000000003070019000023aa0330a1c70000000000cb004b00000000040b0019000023aa0440a1c7000000000034004b000010040000a13d000000400200043d0000008001200039000000400010043f0000001e605000f90000001401600039000000000301041a0000232c0030009c000000000100003900000001010020390000006004200039000000000014043500000058013002700000232b011001970000004004200039000000000014043500000020013002700000232a011001970000238c0030019800002329040000410000000004006019000000000114019f0000002004200039000000000014043500002314013001970000000000120435000023850030009c000010aa0000813d000000400200043d0000008001200039000000400010043f0000001401000039000000000101041a00000060032000390000232c0010009c00000000040000390000000104002039000000000043043500000058031002700000232b033001970000004004200039000000000034043500000020031002700000232a033001970000238c0010019800002329040000410000000004006019000000000334019f00000020042000390000000000340435000023140110019700000000001204350000000000c1004b000010b10000213d0000000000c7004b000010b10000213d000000000071004b000010b80000a13d0000174e0000013d0000000000c7004b0000000002070019000023aa0220a1c70000000000c1004b000023aa0110a1c7000000000021004b0000174e0000213d0000000000c7004b0000000001070019000023aa0110a1c7002c00000001001d000000400100043d0000008002100039000000400020043f0000006002100039000000000002043500000040021000390000000000020435000000200210003900000000000204350000000000010435000000400100043d0000008002100039000000400020043f00000060021000390000000000020435000000400210003900000000000204350000002002100039000000000002043500000000000104350000001d0a600029000010d40000013d000000010a40008a00000000060f001900000000026a0019000000000f060019000000400b00043d0000008001b00039000000400010043f000000010420027000000000105400d90000001401100039000000000301041a0000232c0030009c000000000100003900000001010020390000006002b00039000000000012043500000020013002700000232a011001970000238c0030019800002329020000410000000002006019000000000212019f000023140130019700000000011b043600000058063002700000232b066001970000004009b0003900000000006904350000000000210435000000010640003900000000026a0019000023850030009c000010d50000413d000000400800043d0000008002800039000000400020043f00000000205600d90000001402200039000000000302041a0000232c0030009c00000000020000390000000102002039000000600d80003900000000002d043500000020023002700000232a022001970000238c00300198000023290d000041000000000d006019000000000e2d019f00000058023002700000232b02200197000000400d80003900000000002d043500000020028000390000000000e2043500002314033001970000000000380435000000000b0b0433000023140eb001970000000000ce004b000011150000213d0000000000c7004b000011150000213d00000000007e004b000010d20000213d000011250000013d0000000000ce004b000023aa0ee0a1c7002d00000008001d00000000080b0019000000000b02001900000000020d0019000000000d07001900000000070c00190000002c00e0006c000000000c07001900000000070d0019000000000d02001900000000020b0019000000000b0800190000002d08000029000010d20000213d0000000000c7004b0000112c0000213d0000000000c3004b0000112c0000213d000000000037004b000010d40000213d000011300000013d0000000000c3004b000023aa0330a1c70000002c0030006b000010d40000213d0000231403b00197000000000037004b000011390000c13d00000000040904330000000001010433000000230a000029000000220e000029000000210f000029000011650000013d00000000030804330000231404300197000000000074004b000000230a000029000000220e000029000000210f000029000011430000c13d00000000040d04330000000001020433000011650000013d0000000003b300490000231403300198000015df0000613d0000000001010433000000000202043300000000021200490000232a04200197000023280020019800002329020000410000000002006019000000000242019f0000234d4220012c0000234d0440c0990000234d7630012c000000000262013f0000234d0770c0990000002406b0006900000000077400d90000231406600197000000000409043300000000080d043300000000084800490000232b0880019700000000086800a900000000033800d9000000ff022002120000000008720049000000000228019f00000000020760190000000004430019000000000007004b000000000702c01900000000026700a9000000000112001900000000020e04330000002b06000029000000000026004b000015df0000813d00000000020f0433000000000026004b000015df0000813d000000290300002900000028023000290000232b0340019700000000003204350000002a02e000290000232a03100197000023280010019800002329010000410000000001006019000000000131019f0000000000120435000000010660003900000000010a0433000000000016004b00000fc50000413d000009610000013d00000000056500d9000000000860008900000000066800d9000000010660003900000000044600a9000000000445019f00000000044700a90000000905000039000000000605041a0000000004460019000000000045041b0000008002200210000023c603300197000000000223019f000000000021041b0000000601000039000000000101041a0000238e01100197000023ba011001c70000000602000039000000000012041b000000000100001900008c4c0001042e0000001f0430018f0000234a023001980000119c0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000011980000c13d000000000004004b000011a90000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000008c4d000104300000002a04000029000000000241004900002324022001970000239301100197000000000112019f0000002702000029000000000012041b0000000201000039000000000101041a000000400200043d00000024032000390000002805000029000000000053043500000044032000390000000000430435000000400400043d000000000343004900000000053404360000006402200039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003040433000000200030008c00000000060300190000000004010019000011d20000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c000011cc0000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c0000158b0000c13d000000010200003900000001040000310000159e0000013d000023140010009c0000231401008041000000c00110021000002349011001c700000028020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000080046001bf000011fa0000613d0000008007000039000000000801034f000000008908043c0000000007970436000000000047004b000011f60000c13d000000000005004b000012070000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000015e20000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023460010009c000000280000813d0000002d030000290000232b033001970000002c040000290000232b04400197000000000500041a0000234705500197000000000115019f000000000010041b0000000201000039000000000501041a0000234705500197000000000335019f000000000031041b0000000301000039000000000301041a0000234703300197000000000343019f000000000031041b0000002b05000029000000a0015002100000234b011001970000000f03000039000000000403041a0000234c04400197000000000114019f000000000013041b000000000005004b000015df0000613d0000234d010000410000234e6310012b0000234d0660c0990000002b0b0000290000234d54b0012c000000000743013f0000234d035000990000000008050019000000000803c0190000234f9110012b000000000141013f0000234d0990c09900000000098900d9000000ff01100212000000000a91004900000000011a019f0000000001096019000000000009004b000000000901c01900000000018600d9000000ff067002120000000007160049000000000667019f0000000006016019000000000001004b000000000106c01900000000019100490000000001b100a90000232306100197000023210010019800002322010000410000000001006019000000000661019f000000010100008a00000000001b004b000012590000c13d0000234d0060009c000012680000613d000000000004004b00000000030560190000234d6560012c000000000445013f0000234d0660c09900000000033600d9000000ff044002120000000005340049000000000445019f0000000004036019000000000003004b000000000304c0190000000103300039002923500030019c000015df0000613d0000002a030000290000232b063001970000001003000039000000000403041a0000232404400197000000290500002900002324055001290000008005500210000000000445019f000000000043041b002d00000006001d000023510360009a000023520030009c000019610000813d0000002a0200002900000020022002100000235502200197000023240020009c00000000030000390000008003002039000000000432022f000023560040009c00000000050000390000004005002039000000000454022f000023140040009c00000000060000390000002006002039000000000464022f0000ffff0040008c00000000070000390000001007002039000000000474022f000000ff0040008c00000000080000390000000808002039000000000484022f0000000f0040008c00000000090000390000000409002039000000000494022f000000030040008c000000000a000039000000020a0020390000000004a4022f000000010040008c00000001033021bf000000000353019f000000000363019f000000000373019f000000000383019f000000000393019f0000000003a3019f0000007f0430008c000000000442022f0000007f0530008900000000025201cf000000000204201900000000022200a9000000ff042002700000007f05200270000000000445022f00000000044400a9000000ff054002700000007f06400270000000000556022f00000000055500a9000000ff065002700000007f07500270000000000667022f000000c00220027000002357022001970000004003300210000000000223019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c1044002700000235804400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c2055002700000235905500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c3033002700000235a03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c4044002700000235b04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c5055002700000235c055001970000235d0220009a000000000225019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c6033002700000235e03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c7044002700000235f04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c8055002700000232805500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c9033002700000236003300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000ca044002700000236104400197000000000242019f000000cb045002700000236204400197000000000242019f000000cc033002700000236303300197000000000232019f00000000036600a9000000cd033002700000236403300197000000000232019f00002365022000d1000023660320009a0000234d043001970000234d0040009c00000000040000190000000004016019000023670520009a0000234d025001970000234d0020009c0000000002000019000000000201601900000080022002100000008006500270000000000726019f00000080024002100000008004300270000000000224019f000000800000008b00000000020360190000236800300198000023220300004100000000030060190000232306200197000000000363019f000000800000008b0000000007056019000023680050019800002322040000410000000004006019002c00000007001d0000232305700197000000000454019f000000000034004b0000138d0000613d0000234d043001970000234d0040009c000000000400001900000000040160190000000104400210000000ff05300270000000000445019f000000ff0000008b0000000004036019000000000543013f0000000005450049000023690050009c00007f960000813d00000001005001900000236b040000410000236a040060410000236c064000d100000080066002700000000200500190000000000406c0190000236d064000d100000080066002700000000400500190000000000406c0190000236e064000d100000080066002700000000800500190000000000406c0190000236f064000d100000080066002700000001000500190000000000406c01900002370064000d100000080066002700000002000500190000000000406c01900002371064000d100000080066002700000004000500190000000000406c01900002372064000d100000080066002700000008000500190000000000406c01900002373064000d100000080066002700000010000500190000000000406c01900002374064000d100000080066002700000020000500190000000000406c01900002375064000d100000080066002700000040000500190000000000406c01900002376064000d100000080066002700000080000500190000000000406c01900002377064000d100000080066002700000100000500190000000000406c01900002378064000d100000080066002700000200000500190000000000406c01900002379064000d100000080066002700000400000500190000000000406c0190000237a064000d100000080066002700000800000500190000000000406c0190000237b064000d100000080066002700000237c00500198000000000406c0190000237d064000d100000080066002700000237e00500198000000000406c0190000237f064000d100000080066002700000238000500198000000000406c019000023810050019800002382054000d1000000800450c270000023200030009c000013850000213d000000000003004b000013850000613d00000000044100d900000020014002700000231400400198000000010110c0390000232b011001970000002d0010006c00000000010200190000002c01002029002c00000001001d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000400200043d0000008003200039000000400030043f0000006004200039000000010300003900000000003404350000004004200039000000000004043500002314011001970000000002120436000000000002043500002385011001c70000001402000039000000000012041b000000400100043d000000c002100039000000400020043f000000a002100039000000000032043500000080021000390000000000320435000000600210003900000000003204350000002c040000290000232302400197000023210040019800002322040000410000000004006019000000000524019f000000200610003900000000005604350000002d060000290000000000610435000000400110003900000000000104350000232101400197000000000121019f000000a0011002100000000602000039000000000402041a0000238604400197000000000114019f000000000161019f00002387011001c7000000000012041b000000400100043d000000200210003900000000005204350000000000610435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d0200003900002389040000418c4b8c410000040f0000000100200190000011910000c13d000000280000013d000023d602000041000000000034004b000038db0000813d000023510040009c000038db0000a13d0000238e011001970000000602000039000000000012041b000000400200043d000000c001200039000000400010043f0000001001000039000000000101041a0000232401100197000b00000002001d00000000021204360000000f01000039000000000101041a0000232401100197000500000002001d0000000000120435000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314011001970000000b020000290000004003200039001300000003001d0000000000130435000000a001200039001200000001001d00000000000104350000008001200039001100000001001d00000000000104350000006001200039001000000001001d0000000000010435000000400100043d002600000001001d000001000100043d002c00000001001d0000232b011001970000000002000411000000000021004b000016f00000c13d0000000001000411002c00000001001d0000002c010000290000232b01100197000001000010043f0000002603000029000001e001300039000000400010043f000000c00100043d0000000001130436002000000001001d00000000000104350000002d0100002900000000010104330000232b011001970000004002300039002b00000002001d00000000001204350000000d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000121019f0000006002300039001f00000002001d000000000012043500000000010004110000232b011001970000000302000039000000000302041a0000000202000039000000000402041a0000000102000039000400000002001d000000000502041a000000400800043d0000002006800039000000a00900043d000001000700043d0000000000160435000000400200043d000000000126004900000000011204360000004006800039000000400060043f0000232e0a0000410000000000a604350000232b067001970000006407800039000000000067043500000000060004100000232b076001970000004406800039001900000007001d0000000000760435002d232b0050019b0000232b054001970000232b06300197002c01040080003d000000e403800039000000c404800039000000a4078000390000008408800039000000000009004b000017520000c13d00000000006804350000000000570435000000a005000039000000000054043500000000020204330000000000230435002a00000002001d000000000002004b000014710000613d00000000020000190000002c050000290000002a0600002900000000035200190000000004210019000000000404043300000000004304350000002002200039000000000062004b000014660000413d000014710000a13d0000002a020000290000002c012000290000000000010435000000400100043d002900000001001d0000232f0100004100000000001004430000002d0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c0000177f0000613d0000002a020000290000001f0220003900002404022001970000002c0220002900000029030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002d020000298c4b8c460000040f000000290900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900001d4f0000613d000000000701034f000000007807043c0000000009890436000000000049004b000014a50000c13d00001d4f0000013d0000002c0040006c00000000010000190000234d01004041000000280230014f000000280030006c00000000030000190000234d030020410000234d0020009c000000000301c019000000000003004b000015fa0000613d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d0000002d020000290000000002020433000000000101043b000000290300002900000000030304330000ffff0330018f0000ffff0030008c000015df0000613d0000001004000039000000000604041a000000400500043d0000008004500039000000400040043f0000001403300039000000000703041a00000060035000390000232c0070009c00000000040000390000000104002039000000000043043500000020037002700000232a033001970000238c0070019800002329040000410000000004006019000000000434019f00000058037002700000232b0930019700000040035000390000000000930435000023140a7001970000000007a50436000000000047043500002314081001970000000000a8004b000015110000613d0000232406600197000000400400043d0000008009400039000000400090043f00000060094000390000000000090435000000400940003900000000000904350000002009400039000000000009043500000000000404350000000004050433000000400500043d0000008009500039000000400090043f00000000088504360000232309200197000023210020019800002322020000410000000002006019000000000292019f0000000009410049000023140490019700000000022400a9000000000407043300000000022400190000232a04200197000023280020019800002329020000410000000002006019000000000442019f0000000000480435000000000203043300000060035000390000000107000039000000000073043500000080039002100000238d03300197000000010060008c000000010600a03900000000036300d9000000000232001900000040035000390000232b09200197000000000093043500000026030000290000002a0330002900000024050000290000002502500029000000000229004900000027060000290000002b056000290000000004540049000016000000013d000023140010009c0000231401008041000000c001100210000023c8011001c700000027020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000e004600039000000e0090000390000152f0000613d000000000701034f000000007807043c0000000009890436000000000049004b0000152b0000c13d000000000005004b0000153c0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000160f0000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002100000002001d000023320020009c000016110000413d000000280000013d000000290100002900000080011002100000002703000029000000000203041a000000000112004900002393011001970000232402200197000000000121019f000000000013041b0000000301000039000000000101041a000000400200043d00000024032000390000002804000029000000000043043500000044032000390000002d040000290000000000430435000000400400043d000000000343004900000000053404360000006402200039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003040433000000200030008c00000000060300190000000004010019000015780000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c000015720000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000016600000c13d00000001020000390000000104000031000016730000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000015a30000c13d00000060030000390000008001000039000015c10000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000015b40000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000015b00000c13d000000000006004b000015c10000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b000008bc0000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b000008bc0000c13d00000da10000013d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b001b00000001001d0000000601000039000000000101041a000000b8021002700000ffff0220018f0000ffff0020008c000018010000c13d000000010100008a000000000001043500000000000004310000001f0430018f0000234a02300198000015eb0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000026004b000015e70000c13d000000000004004b000015f80000613d000000000121034f0000000304400210000000000502043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000120435000000600130021000008c4d000104300000002402000029000000250220006a00000027030000290000002b0430006a0000002a0300002900000026010000290000232b05200197000000400200043d000000200620003900000000005604350000232a05400197000023280040019800002329040000410000000004006019000000000454019f0000000000420435000000000431004900000060010000390000004003200039002d23140040019b00000d000000013d002103e80000003d000000400100043d0000000202000039000000000302041a0000000302000039000000000402041a00000040021000390000002b050000290000000000520435000000200510003900000025090000290000000000950435000000400500043d000000000252004900000000022504360000006006100039000000400060043f0000000107000039000000000707041a0000232e080000410000000000860435000000e406100039000000a00800003900000000008604350000232b04400197000000c40610003900000000004604350000232b03300197000000a404100039000000000034043500000084031000390000000000930435000000640310003900000026040000290000000000430435000001040310003900000000040504330000000000430435002201240010003d0027232b0070019b002300000004001d000000000004004b000016480000613d00000000010000190000002305000029000000220600002900000000036100190000000004120019000000000404043300000000004304350000002001100039000000000051004b0000163d0000413d000016480000a13d000000220200002900000023012000290000000000010435000000400100043d002000000001001d0000232f010000410000000000100443000000270100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002702000029000000040020008c000018df0000c13d0000000103000031000019120000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000016780000c13d00000060030000390000008001000039000016960000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000016890000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000016850000c13d000000000006004b000016960000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b000008bf0000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b000008bf0000c13d00000da10000013d0000002a04000029000000000241004900002324022001970000239301100197000000000112019f0000002602000029000000000012041b0000000201000039000000000101041a000000400200043d00000024032000390000002705000029000000000053043500000044032000390000000000430435000000400400043d000000000343004900000000053404360000006402200039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003040433000000200030008c00000000060300190000000004010019000016c80000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c000016c20000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c0000186e0000c13d00000001020000390000000104000031000018810000013d000024050060009c00000000040600190000000004006019000023930740009c00000000070440190000239e0070009c00000000070000390000000107002039000023930040009c00000000080000390000000108008039000000000778016f0000000004740019000023248740012a000023940040009c000018af0000213d000000800880021000002324097000d1000000000089004b000000010770208a000018b00000013d000000000100041a000023d8020000410000002603000029000000000023043500000000020004110000232b0220019700000004033000390000000000230435000000400200043d002a00000002001d0000232f0200004100000000002004430000232b01100197002b00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002b02000029000000040020008c00001b2c0000c13d000000010300003100001b5c0000013d000000290100002900000080011002100000002603000029000000000203041a000000000112004900002393011001970000232402200197000000000121019f000000000013041b0000000301000039000000000101041a000000400200043d00000024032000390000002704000029000000000043043500000044032000390000002d040000290000000000430435000000400400043d000000000343004900000000053404360000006402200039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003040433000000200030008c000000000603001900000000040100190000173b0000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c000017350000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000019200000c13d00000001020000390000000104000031000019330000013d000000400100043d0000004402100039000023ab03000041000083f40000013d00000000005804350000000000670435000000a005000039000000000054043500000000020204330000000000230435002a00000002001d000000000002004b000017690000613d00000000020000190000002c050000290000002a0600002900000000035200190000000004210019000000000404043300000000004304350000002002200039000000000062004b0000175e0000413d000017690000a13d0000002a020000290000002c012000290000000000010435000000400100043d002900000001001d0000232f0100004100000000001004430000002d0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c00001d2d0000c13d000000010300003100001d600000013d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b001b00000001001d0000000601000039000000000101041a000000b8021002700000ffff0220018f0000ffff0020008c000015df0000613d0000001003000039000000000303041a001a00000003001d000000400300043d0000008004300039000000400040043f0000001402200039000000000402041a00000060023000390000232c0040009c00000000050000390000000105002039000000000052043500000020024002700000232a022001970000238c0040019800002329050000410000000005006019000000000625019f00000058024002700000232b052001970000004002300039001800000005001d000000000052043500002314044001970000000005430436001900000006001d00000000006504350000001b060000290000231406600197000000000046004b000017e50000613d0000001a040000290000232404400197000000a0071002700000232307700197000000400800043d0000008009800039000000400090043f00000060098000390000000000090435000000400980003900000000000904350000002009800039000000000009043500000000000804350000000003030433000000400800043d0000008009800039000000400090043f00000000066804360000233a0010019800002322010000410000000001006019000000000171019f0000001b03300069000023140730019700000000011700a9000000000505043300000000011500190000232a05100197000023280010019800002329010000410000000001006019000000000151019f001900000001001d0000000000160435000000000102043300000060028000390000000105000039000000000052043500000080023002100000238d02200197000000010040008c000000010400a03900000000024200d9000000000121001900000040028000390000232b01100197001800000001001d00000000001204350000002b01000029002b23210010019c000023220100004100000000010060190000002d011001af000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000301041a00000022023000290000232404300197000023240220019700000024050000290000234d0050009c000030b10000813d000000000042004b00001b890000413d000030b30000013d0000001003000039000000000303041a001a00000003001d000000400300043d0000008004300039000000400040043f0000001402200039000000000402041a00000060023000390000232c0040009c00000000050000390000000105002039000000000052043500000020024002700000232a022001970000238c0040019800002329050000410000000005006019000000000625019f00000058024002700000232b052001970000004002300039001800000005001d000000000052043500002314044001970000000005430436001900000006001d00000000006504350000001b060000290000231406600197000000000046004b000018520000613d0000001a040000290000232404400197000000a0071002700000232307700197000000400800043d0000008009800039000000400090043f00000060098000390000000000090435000000400980003900000000000904350000002009800039000000000009043500000000000804350000000003030433000000400800043d0000008009800039000000400090043f00000000066804360000233a0010019800002322010000410000000001006019000000000171019f0000001b03300069000023140730019700000000011700a9000000000505043300000000011500190000232a05100197000023280010019800002329010000410000000001006019000000000151019f001900000001001d0000000000160435000000000102043300000060028000390000000105000039000000000052043500000080023002100000238d02200197000000010040008c000000010400a03900000000024200d9000000000121001900000040028000390000232b01100197001800000001001d00000000001204350000002b01000029002b23210010019c000023220100004100000000010060190000002d011001af000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000301041a00000022023000290000232404300197000023240220019700000024050000290000234d0050009c00001abd0000813d000000000042004b00001abf0000813d00001b890000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000018860000c13d00000060030000390000008001000039000018a40000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000018970000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000018930000c13d000000000006004b000018a40000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b000002330000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b000002330000c13d00000da10000013d000000010770008a00000080044002100000232407700197000000000447019f0000008007600210000000000474004b00000000080000390000000108004039000000000484004b000018bb0000c13d00000000045700d900001b790000013d000000000045004b000000280000a13d00000000605600d90000236a8050012900000000066800a900000000905600d9000000000650008900000000066501700000000008000019000000000865c0d9000000000597004b00000003078000c9000000020770015f00000000098700a9000000020990008900000000077900a900000000098700a9000000020990008900000000077900a9000000010440408a00000000098700a9000000020990008900000000077900a900000000098700a9000000020990008900000000077900a900000000098700a9000000020990008900000000077900a900000000088700a9000000020880008900000000077800a9000000000006004b00001b720000c13d000000000500001900001b770000013d00000023020000290000001f022000390000240402200197000000220220002900000020030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000027020000298c4b8c460000040f000000200900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000004690019000019010000613d000000000701034f000000007807043c0000000009890436000000000049004b000018fd0000c13d000000000005004b0000190e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000019780000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433002700000001001d000023320010009c000019790000413d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000019380000c13d00000060030000390000008001000039000019560000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000019490000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000019450000c13d000000000006004b000019560000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b000002360000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b000002360000c13d00000da10000013d00000044012000390000235303000041000000000031043500000024012000390000000103000039000000000031043500002354010000410000000000120435000000040120003900000020030000390000000000310435000000400100043d00000000021200490000006402200039000005cb0000013d00000022058000290000232405500197000000240f0000290000234d00f0009c000019d60000813d000000000085004b000019d80000813d00001b890000013d002703e80000003d000000010200008a0000002c0020006b0000002c01000029000000000100601900000021151000b9000023242410012a00002324064000d100000080022002100000008007500270000000000272019f000000000026004b000000010440208a0000008001100210000000000171019f00002324024001970000000004210019000023241240012a0000232405500197000023940040009c000019930000213d0000008001100210000000000151019f00002324062000d1000000000016004b000000010220208a000019940000013d000000010220008a00000021060000290000002c016000b90000008004400210000000000454019f00002324022001970000000002240019000000000212004b00000000040000390000000104004039000000000442004b000019a80000c13d0000002c02000029000023c92020012a00000021040000290000231404400197000023c94040012a00000000024200a9002323c900100132000023c92020012a000019b70000013d000023c90040009c000000280000813d0000002c02000029000023c92020012a00000021050000290000231405500197000023c95050012a00000000025200a9000023c92020012a000000000121004b000000010440408a0000000601100270000000fa04400210000000000114019f002323ca001000d50000235600200198000019bc0000613d0000002301000029002300010010003e000000280000613d000000010200008a0000002b0020006b0000002b01000029000000000100601900000027151000b9000023242410012a00002324064000d100000080022002100000008007500270000000000272019f000000000026004b000000010440208a0000008001100210000000000171019f00002324024001970000000004210019000023241240012a0000232405500197000023940040009c00001cc20000213d0000008001100210000000000151019f00002324062000d1000000000016004b000000010220208a00001cc30000013d000000000085004b000083f10000813d0000000007b700190000000006a6001900000023066000690000001e07700069000000000ade019f0000000100a00190000000000a000019000000000b00001900002ccd0000613d000000000cc700490000240500c0009c000000000b0c0019000000000b00601900000000bd8b00a9000000800ed00270000000800bb00210000000000feb019f00002324bef0012a0000239400f0009c00002ba60000213d000023240fd00197000000800bb00210000000000bfb019f000023240fe000d10000000000bf004b000000010ee0208a00002ba70000013d000023d602000041000000000034004b000038db0000813d000023510040009c000038db0000a13d0000238e011001970000000602000039000000000012041b000000400200043d000000c001200039000000400010043f0000001001000039000000000101041a0000232401100197000b00000002001d00000000021204360000000f01000039000000000101041a0000232401100197000500000002001d0000000000120435000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314011001970000000b020000290000004003200039001300000003001d0000000000130435000000a001200039001200000001001d00000000000104350000008001200039001100000001001d00000000000104350000006001200039001000000001001d0000000000010435000000400100043d002600000001001d000001000100043d002c00000001001d0000232b011001970000000002000411000000000021004b000031200000c13d0000000001000411002c00000001001d0000002c010000290000232b01100197000001000010043f0000002603000029000001e001300039000000400010043f000000c00100043d0000000001130436001e00000001001d00000000000104350000002d0100002900000000010104330000232b011001970000004002300039002a00000002001d00000000001204350000000d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000121019f0000006002300039001d00000002001d000000000012043500000000010004110000232b011001970000000302000039000000000302041a0000000202000039000000000402041a0000000102000039000400000002001d000000000502041a000000400800043d0000002006800039000000a00900043d000001000700043d0000000000160435000000400200043d000000000126004900000000011204360000004006800039000000400060043f0000232e0a0000410000000000a604350000232b067001970000006407800039000000000067043500000000060004100000232b076001970000004406800039001800000007001d0000000000760435002d232b0050019b0000232b054001970000232b06300197002c01040080003d000000e403800039000000c404800039000000a4078000390000008408800039000000000009004b000032ab0000c13d00000000006804350000000000570435000000a005000039000000000054043500000000020204330000000000230435002b00000002001d000000000002004b00001a840000613d00000000020000190000002c050000290000002b0600002900000000035200190000000004210019000000000404043300000000004304350000002002200039000000000062004b00001a790000413d00001a840000a13d0000002b020000290000002c012000290000000000010435000000400100043d002900000001001d0000232f0100004100000000001004430000002d0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c000032d80000613d0000002b020000290000001f0220003900002404022001970000002c0220002900000029030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002d020000298c4b8c460000040f000000290900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900003ac60000613d000000000701034f000000007807043c0000000009890436000000000049004b00001ab80000c13d00003ac60000013d000000000042004b000083f10000813d0000001a050000290000008005500270000000000052004b000049950000213d000000000002004b00000000050000390000000105006039001a00000005001d000000000004004b00000000040000390000000104006039001700000004001d00001af80000c13d0000001f0400002900002321004001980000232204000041000000000400601900000020044001af0000002c0040006b00000000050000190000234d050020410000234d04400197000000250640014f000000250040006b00000000070000190000234d070040410000234d0060009c000000000705c0190000000504100039000000000007004b00001af40000c13d00000002051000390000001e06000029000000000065041b00000003051000390000002306000029000000000065041b00000004051000390000001c06000029000000000065041b000000190500002900002390055001970000001b06000029000000d8066002100000239106600197000000000565019f00000018060000290000003806600210000000000565019f000000000604041a0000239206600197000000000565019f000000000054041b000000000504041a0000232c0550019700002385055001c7000000000054041b0000239304300197000000000424019f000000000041041b000023200030009c0000000004000019000023250400204100000080033002700000232603300197000000000334019f00000024033000290000232700300198000023250400004100000000040060190000232605300197000000000454019f000000000043004b000000280000c13d0000008003300210000000000223019f000000000021041b000000280100002900002321001001980000232201000041000000000100601900000029011001af0000001002000039000000000202041a001500000002001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000201041a0000002203200029001423240020019b001623240030019b00000024030000290000234d0030009c0000366e0000813d0000001604000029000000140040006c00001b890000413d000036710000013d0000002a0300002900000026023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002b020000298c4b8c460000040f0000002a0900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900001b4b0000613d000000000701034f000000007807043c0000000009890436000000000049004b00001b470000c13d000000000005004b00001b580000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000002c590000613d0000001f013000390000240402100197000000400100043d0000000002120019002600000002001d000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000280000c13d000000000001004b00000000010004110000002c020000290000000002016019002c00000002001d000014190000013d00000000056500d9000000000860008900000000066800d9000000010660003900000000044600a9000000000445019f00000000044700a90000000905000039000000000605041a0000000004460019000000000045041b0000008003300210000023c602200197000000000232019f000000000021041b00002324042001970000002d05000029000000000352001900002324033001970000234d0050009c00001b8d0000813d000000000043004b00001b8f0000813d000000400100043d00000044021000390000240203000041000083f40000013d000000000043004b000083f10000813d0000239302200197000000000223019f000000000021041b000000260000006b00001c700000613d0000000501000039000000000101041a0000006001100210000000400200043d000000200320003900000000001304350000002c01000029000000e8031002100000003401200039002600000003001d00000000003104350000002901000029000000e8031002100000003701200039002100000003001d0000000000310435000000400100043d00000000031200490000001a0330003900000000033104360000003a02200039000000400020043f000023140030009c000023140300804100000040023002100000000001010433000023140010009c00002314010080410000006001100210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000112019f00002388011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b002000000001001d0000000401000039000000000101041a0000006001100210000000400200043d00000020032000390000000000130435000000340120003900000026030000290000000000310435000000370120003900000021030000290000000000310435000000400100043d00000000031200490000001a0330003900000000033104360000003a02200039000000400020043f000023140030009c000023140300804100000040023002100000000001010433000023140010009c00002314010080410000006001100210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000112019f00002388011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000010043f0000001301000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000002a02000029002a23210020019c000023220200004100000000020060190000002b022001af0000000803000039000000000303041a002100000003001d0000000703000039000000000303041a002600000003001d000000000101043b001f00000001001d000000000020043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000270200002900002321002001980000232202000041000000000200601900000028022001af000000000101043b001e00000001001d000000000020043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d00000024030000290000002c0030006c00000000020000190000234d020080410000002204000029000000250040006b00000000030000190000234d0300404100000023040000290000234d0040009c000000000302c019000000000201043b0000001e040000290000000301400039000000000901041a0000000201400039000000000101041a000000000003004b00001c3b0000c13d000000210990006900000026011000690000002904000029000000240040006b00000000030000190000234d030040410000234d04400197000000250540014f000000250040006b00000000040000190000234d040020410000234d0050009c000000000403c0190000000303200039000000000c03041a0000000202200039000000000b02041a000000000004004b00001c4e0000c13d000000210cc00069000000260bb00069000000400700043d000000a002700039000000400020043f0000002003000029000000000503041a000023240a5001970000000002a704360000000104300039000000000e04041a0000000000e2043500000040027000390000000206300039000000000d06041a0000000000d2043500000003023000390000008008700039000000000302041a000000800f3002700000000000f804350000006007700039000023240830019700000000008704350000002d070000290000000007700089000023260870019700002327007001980000232507000041000000000700601900000000078701a000001d260000c13d00000000000a004b002c0000000a001d00002e5a0000c13d000000280000013d0000002a01000029002a23210010019b0000002a0000006b000023220100004100000000010060190000002b011001af000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b0000000502100039000000000202041a0000232c0020009c00001c9a0000a13d0000000101100039000000000201041a0000232700200198000023250300004100000000030060190000232604200197000000000343019f0000002d033000290000232700300198000023250400004100000000040060190000232605300197000000000454019f000000000043004b000000280000c13d00002393022001970000232403300197000000000223019f000000000021041b000000270100002900002321001001980000232201000041000000000100601900000028011001af000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b0000000502100039000000000202041a000023850020009c0000118b0000413d0000000101100039000000000201041a0000232700200198000023250300004100000000030060190000232604200197000000000343019f0000002d0330006a0000232700300198000023250400004100000000040060190000232605300197000000000454019f000000000043004b000000280000c13d00002393022001970000232403300197000011890000013d000000010220008a00000027060000290000002b016000b90000008004400210000000000454019f00002324022001970000000002240019000000000212004b00000000040000390000000104004039000000000442004b00001cd70000c13d0000002b02000029000023c92020012a00000027040000290000231404400197000023c94040012a00000000024200a9002223c900100132000023c92020012a00001ce60000013d000023c90040009c000000280000813d0000002b02000029000023c92020012a00000027050000290000231405500197000023c95050012a00000000025200a9000023c92020012a000000000121004b000000010440408a0000000601100270000000fa04400210000000000114019f002223ca001000d5000023560020019800001ceb0000613d0000002201000029002200010010003e000000280000613d0000000201000039000000000101041a000000400200043d000000240420003900000026050000290000000000540435000000400600043d000000000464004900000000054604360000004402200039000000400020043f0000000002050433000023b702200197000023cb022001c700000000002504350000232b02100197000000400100043d0000000004060433000000000004004b00001d0a0000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000046004b00001d000000413d00001d0a0000a13d00000000051400190000000000050435000000400600043d0000000005000414000000040020008c00001d210000613d00000000011400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f002400010020019300030000000103550000006001100270000123140010019d0000231403100197000000000003004b00002c5c0000c13d0000006002000039000000800100003900002c7a0000013d0000002d08a0006a002c23240080019b0000234d0070009c00002e580000813d0000002c00a0006b00001b890000413d00002e5a0000013d0000002a020000290000001f0220003900002404022001970000002c0220002900000029030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002d020000298c4b8c460000040f000000290900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900001d4f0000613d000000000701034f000000007807043c0000000009890436000000000049004b00001d4b0000c13d000000000005004b00001d5c0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000001d6d0000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000000280000813d00001d6e0000013d000003e80100003900000026030000290000008002300039001c00000002001d0000000000120435000000a001300039000f00000001001d0000000000010435000000a00100043d000000000001004b00000007010000390000000801006039000000000101041a000000c002300039001a00000002001d0000000000120435000000e001300039001700000001001d00000000000104350000000b01000029000000000101043300002324011001970000010002300039002400000002001d00000000001204350000000501000029000000000101043300002324011001970000012002300039001600000002001d0000000000120435000000c00100043d000000000001004b0000000002000039000000010200c0390000234d0010009c00000000010000390000000101004039000000000121016f0000014002300039001b00000002001d0000000000120435000001c001300039000100000001001d0000000000010435000001a001300039000300000001001d00000000000104350000018001300039000200000001001d00000000000104350000016001300039001800000001001d00000000000104350000000001030433000000000001004b0000002b0600002900001dca0000c13d0000000d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000321019f0000001f0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000121019f000000000031004b00002fc50000c13d0000002b0100002900000000010104330000232b011001970000000602000039000000000202041a0000234702200197000000000112019f000030400000013d0000002b06000029000023210020019800002322010000410000000001006019000000000151019f0000001f02000029000000000012043500000026010000290000000001010433000000000001004b00001da70000613d0000000001060433000000e00200043d000000000121013f0000232b0010019800001da70000613d000000400700043d000000e001700039000000400010043f000000c0057000390000000000050435000000a0087000390000000000080435000000800970003900000000000904350000006001700039002500000001001d00000000000104350000004001700039002200000001001d00000000000104350000002001700039002800000001001d0000000000010435000000000007043500000000010604330000232b0110019700000000001704350000001f0100002900000000010104330000232100100198000023220200004100000000020060190000000f03000039000000000303041a0000233a0030019800002322060000410000000006006019000023210060019800002322040000410000000004006019000000a003300270000023230a3001970000000003a401a0002900000005001d002d00000006001d000015df0000613d0000232301100197000000000212019f000000a00100043d0000234d0020009c00001e020000c13d000024050030009c00001e020000c13d0000234d04000041000000000300001900001e160000013d0000234d4330012c0000234d0440c0990000234d6520012c000000000535013f0000234d0660c09900000000364600d9000000ff045002120000000005640049000000000445019f00000000040660190000234d002001980000000005030019000000000550c089000000000003004b000000000305c019000000000006004b000000000604c01900000000040600190000234d0020009c00001e1d0000413d000023230230019700002321003001980000232203000041000000000300601900000000002301a000001e1d0000613d000000010440008a002c0000000a001d002100000009001d002300000008001d001d00000007001d000000000001004b00001e6f0000613d000023210040019800002322010000410000000001006019002a00000001001d0000232100100198000080000100008a0000000001006019000000080240027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c70000801002000039002700000004001d8c4b8c460000040f00000027030000290000000007030019000000ff0330018f0000002a043001af0000234d3040012c0000234d0330c0990000234d05000041000001005050011b0000234d0550c09900000000305300d90000234d004001980000000004030019000000000440c089000000000003004b000000000304c0190000000100200190000000280000613d000000000101043b000000000101041a000000ff0430018f000000020240020f000000010220008a00000000022101700000000001000039000000010100c0390000002d0600002900001e6d0000613d0000236a0020009c000000800220827000000080040000390000000004004039000023c70020009c00000040044081bf0000004002208270000023aa0020009c00000020044081bf00000020022082700000237c0020009c00000010044081bf0000001002208270000001000020008c00000008044080390000000802208270000000100020008c00000004044080390000000402208270000000040020008c000000020440803900000002022082700000000003430049000000010020008c000000010330208a000000ff0430018f000000000247004900001ebd0000013d0000000102400039002700000002001d000023210020019800002322010000410000000001006019002a00000001001d0000232100100198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f00000027030000290000000007030019000000ff0330018f0000002a043001af0000234d3040012c0000234d0330c0990000234d05000041000001005050011b0000234d0550c09900000000305300d90000234d004001980000000004030019000000000440c089000000000003004b000000000304c0190000000100200190000000280000613d000000ff0230018f000000000101043b000000000101041a000000000121022f00000000022101d10000000001000039000000010100c039000000ff040000390000002d0600002900001eba0000613d0000232404200198000000800220627000002356052001980000004002206270000000000004004b0000007f04000039000000ff04006039000000000005004b000000400440c08a00002314002001980000002002206270000000200440c08a0000ffff002001900000001002206270000000100440c08a000000ff002001900000000802206270000000080440c08a0000000f002001900000000402206270000000040440c08a00000003002001900000000202206270000000020440c08a000000010220018f00000000042400490000000002340049000000ff0220018f0000000002720019000000010a00008a0000002c036001af000000010110018f0000002204000029000000000014043500000000013200a90000232303100197000023210010019800002322010000410000000001006019000023210010019800002322020000410000000002006019000000000232019f0000234d042001970000234d054001670000234d0040009c00000000040000190000234d04004041000023d90020009c00000000060000190000234d060020410000234d0050009c000000000406c019000000000131019f000000280300002900000000001304350000234f03000041000000000004004b00001ee00000613d000023200020009c00001ee30000213d0000234e03000041000023690020009c00001ee30000413d0000002801000029000000000031043500000000010300190000232302100197000023210010019800002322010000410000000001006019000000000121019f0000234d021001970000234d0020009c000000000200001900000000020a60190000000102200210000000ff03100270000000000223019f000000ff0000008b0000000002016019000000000321013f0000000003230049000023690030009c00007f960000813d00000001003001900000236b020000410000236a020060410000236c042000d100000080044002700000000200300190000000000204c0190000236d042000d100000080044002700000000400300190000000000204c0190000236e042000d100000080044002700000000800300190000000000204c0190000236f042000d100000080044002700000001000300190000000000204c01900002370042000d100000080044002700000002000300190000000000204c01900002371042000d100000080044002700000004000300190000000000204c01900002372042000d100000080044002700000008000300190000000000204c01900002373042000d100000080044002700000010000300190000000000204c01900002374042000d100000080044002700000020000300190000000000204c01900002375042000d100000080044002700000040000300190000000000204c01900002376042000d100000080044002700000080000300190000000000204c01900002377042000d100000080044002700000100000300190000000000204c01900002378042000d100000080044002700000200000300190000000000204c01900002379042000d100000080044002700000400000300190000000000204c0190000237a042000d100000080044002700000800000300190000000000204c0190000237b042000d100000080044002700000237c00300198000000000204c0190000237d042000d100000080044002700000237e00300198000000000204c0190000237f042000d100000080044002700000238000300198000000000204c019000023810030019800002382032000d1000000800230c270000023200010009c00001f490000213d000000000001004b0000002b0400002900000000022ac0d900001f4a0000013d0000002b0400002900000020012002700000231400200198000000010110c0390000232b0110019700000025050000290000000000150435000000e00200043d0000232b02200197000000000021004b0000000001000039000000010100403900000000020000390000000102002039000000a00300043d000000000003004b000000000201c019000000000002004b0000000001050019000000e00100c03900000024020000290000000002020433002d00000002001d0000000002040433002700000002001d0000232b0c2001970000001c02000029000000000202043300000000070104330000232b067001970000002601000029000000000b0104330000232000b0009c002a0000000b001d002c0000000c001d001e00000002001d00001f870000a13d00000000006c004b00001faa0000813d00000000000c004b000000280000613d000000270170006a0000232b011001970000002d0200002900000060022002100000239c0320019700000000281300a9000000010400008a000000000042004b0000002a0b0000290000002c0c0000290000204d0000613d00002324a420012a0000008009800270000023940020009c000020390000213d0000008005a00210000000000595019f000023240a4000d100000000005a004b000000010440208a0000203a0000013d000023c90120009900002350021001970000000031b200a900000080041002700000008003300210000000000343019f000023243430012a00000080033002100000232405100197000000000353019f00002324054000d1000000000035004b000000010440208a00002324034001970000000004130019000000000014004b00000000040000390000000104004039000000000343004b00001fbc0000613d000023c90030009c000000280000813d000023c92020012a0000002a04000029000023c94040012a00000000022400a9000023c92020012a000000000121004b000000010330408a0000000601100270000000fa02300210000000000112019f000023ca081000d10000002c0c00002900001fbd0000013d00000027037000690000002d0100002900002324011001970000232b0230019700000000211200a90000000000a2004b00000000040a001900001ffb0000613d000023249420012a0000008008100270000023940020009c00001fe70000213d0000008005900210000000000585019f00002324094000d1000000000059004b000000010440208a00001fe80000013d000023c90810012a00000000006c004b00001fd10000813d000000270170006a0000002d0200002900002324022001970000232b0310019700000000292300a90000000000a2004b00000000030a0019000020220000613d00002324a320012a0000008004900270000023940020009c0000200e0000213d0000008005a00210000000000545019f000023240a3000d100000000005a004b000000010330208a0000200f0000013d000000000006004b000000280000613d00000027017000690000232b0a1001970000002d0100002900000060011002100000239c011001970000000029a100a9000000010300008a000000000032004b0000002c0f000029000020710000613d00002324b320012a0000008004900270000023940020009c0000205d0000213d0000008005b00210000000000545019f000023240b3000d100000000005b004b000000010330208a0000205e0000013d000000010440008a0000008002200210000000000282019f00002324044001970000000004420019000023249240012a0000232408100197000023940040009c00001ff60000213d0000008005900210000000000585019f00002324092000d1000000000059004b000000010220208a00001ff70000013d000000010220008a0000008004400210000000000484019f00002324022001970000000004240019000000000214004b00000000040000390000000104004039000000000242004b0000200c0000613d000023960020009c000000280000813d0000002d033000b90000239703300197000000000131004b000000010220408a0000006001100270000000a002200210000000000812019f0000002a0b0000290000002c0c0000290000215c0000013d00000060081002700000215c0000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324a230012a0000232404900197000023940030009c0000201d0000213d0000008005a00210000000000545019f000023240a2000d100000000005a004b000000010220208a0000201e0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000293004b00000000030000390000000103004039000000000232004b000020310000613d000023960020009c000000280000813d0000002d011000b90000239701100197000000000319004b000000010220408a0000006003300270000000a002200210000000000932019f000020340000013d0000002d011000b900000060099002700000239701100197000000000001004b0000221d0000613d000000010990003a0000221d0000c13d000000280000013d000000010440008a0000008002200210000000000292019f0000232404400197000000000442001900002324a240012a0000232409800197000023940040009c000020480000213d0000008005a00210000000000595019f000023240a2000d100000000005a004b000000010220208a000020490000013d000000010220008a0000008004400210000000000494019f00002324022001970000000004240019000000000284004b00000000040000390000000104004039000000000942004b0000205b0000613d000000000096004b000000280000a13d00000000106100d900000000206300d9000023240060009c000020840000213d00000000012100a900000000206100d9000020d30000013d00000000016800d90000215b0000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324b230012a0000232404900197000023940030009c0000206c0000213d0000008005b00210000000000545019f000023240b2000d100000000005b004b000000010220208a0000206d0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000293004b00000000030000390000000103004039000000000c32004b000020800000613d0000000000cf004b000000280000a13d0000002c0f00002900000000a0fa00d900000000b0f100d90000232400f0009c000020e30000213d0000000001ba00a90000000020f100d9000021360000013d00000000a0fa00d900000000b0f100d90000000009f900d9000021c50000013d000000003a2100a9000000000036004b000000010200008a0000002a0b0000290000002c0c000029000020d50000a13d0000239d0060009c00000090010000390000008001004039000000000116022f00000070020000390000008002004039000001000010008c000000080220808a0000000801108270000000100010008c00000000040100190000000404408270000000040040008c00000000050400190000000205508270000000000b500089000000020050008c000000020b00808a000000100010008c000000040220808a000000040040008c000000020220808a00000000012b0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104a00270000000000334022f000000000c32019f00000000031601cf000000800430027000000000e24c00d9000000000b1a01cf000000800db00270000023240a300197000020b30000013d000000000e4e0019000000010220008a0000232400e0009c000020ba0000813d0000239e0020009c000020af0000213d0000000005a200a9000000800fe00210000000000fdf019f0000000000f5004b000020af0000213d000023240220019700000000023200a90000008005c002100000000005d5019f000000000c25004900000000d24c00d9000023240bb00197000020c60000013d000000000d4d0019000000010220008a0000232400d0009c000020cd0000813d0000239e0020009c000020c20000213d0000000005a200a9000000800ed00210000000000ebe019f0000000000e5004b000020c20000213d000023240220019700000000023200a90000008003c002100000000003b3019f0000000002230049000000000212022f0000002a0b0000290000002c0c00002900000000016000890000000003160170000000000136c0d90000000001006019000000000228004b000000010990408a000000000003004b000021440000613d00000000023200d9000000000430008900000000033400d9000000010330003900000000099300a9000021450000013d000000003dba00a900000000003f004b000000010200008a000021360000a13d0000239d00f0009c0000009001000039000000800100403900000000011f022f00000070020000390000008002004039000001000010008c000000080220808a0000000801108270000000100010008c00000000040100190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100010008c000000040220808a000000040040008c000000020220808a00000000012e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031f01cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270001500000003001d000023240d300197000021120000013d000000000f4f0019000000010220008a0000232400f0009c000021190000813d0000239e0020009c0000210e0000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b0000210e0000213d000023240220019700000015022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f300197000021270000013d000000000e4e0019000000010220008a0000232400e0009c0000212e0000813d0000239e0020009c000021230000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b000021230000213d000023240220019700000015022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f0000002c0f0000290000000001f0008900000000041f017000000000014fc0d90000000001006019000000000229004b000000010cc0408a000000000004004b000021ae0000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000cc200a9000021af0000013d000000000200001900000003031000c9000000020330015f00000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000011300a9000000020110008900000000013100a9000000000292019f00000000012100a90000000008c100d90000000001b00089000000000018004b0000217f0000a13d00000000000c004b000000280000613d0000002d020000290000232404200198000000280000613d0000002c03000029000000000063004b000021810000813d00000000021300a900000000011200d9000000000031004b000000280000c13d0000002d0100002900000060011002100000239c01100197000000000921004b000000280000a13d0000002c0b0000290000000027b100a9000000010300008a000000000032004b000022830000613d00002324a320012a0000008004700270000023940020009c0000226f0000213d0000008005a00210000000000545019f000023240a3000d100000000005a004b000000010330208a000022700000013d0000000009000019000024d20000013d0000006007100210000023460010009c000021880000813d00000000124700d9000000000001004b000000010220c0390000239b0000013d0000002002100270000023db022001970000008003700270000000000232019f000023242320012a0000008002200210000023dc05700197000000000252019f00002324053000d1000000000025004b000000010330208a00002405027001670000232403300197000000000023004b00000000020000390000000102002039000000000323004b000023780000613d000000000034004b000000280000a13d00000000104100d9000023962040012900000000012100a900000000104100d900000000024000890000000009240170000000000494c0d90000000004006019000000000217004b000000010330408a000000000009004b000023800000613d00000000029200d9000000000590008900000000059500d9000000010550003900000000033500a9000023810000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002c3019f00000000092100a90000232400f0009c000021ca0000213d0000000001ba00a90000000010f100d9000022160000013d0000000014ba00a900000000001f004b000022180000a13d0000239d00f0009c0000009002000039000000800200403900000000022f022f00000070030000390000008003004039000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000c21019f0000000001af01cf000000800310027000000000e23c00d9000000000ba401cf000000800db002700000232404100197000021f60000013d000000000e3e0019000000010220008a0000232400e0009c000021fd0000813d0000239e0020009c000021f20000213d00000000054200a9000000800fe00210000000000fdf019f0000000000f5004b000021f20000213d000023240220019700000000021200a90000008005c002100000000005d5019f000000000c25004900000000d23c00d9000023240bb00197000022090000013d000000000d3d0019000000010220008a0000232400d0009c000022100000813d0000239e0020009c000022050000213d00000000054200a9000000800ed00210000000000ebe019f0000000000e5004b000022050000213d000023240220019700000000011200a90000008002c002100000000002b2019f00000000011200490000000001a1022f000000000001004b0000221a0000613d000000010990003a000000280000613d00000000196900d9000000000001004b000000010990c039000000000098004b000024d10000813d0000002c0000006b000000280000613d0000002d010000290000232403100198000000280000613d0000002c05000029000000000065004b0000222c0000813d0000006004800210000023460080009c000022450000813d00000000013400d9000023c30000013d000000000008004b0000226b0000613d00000000015800a900000000028100d90000002d0300002900000060033002100000239c0b300197000000000052004b000022950000c13d0000000000b1001a000022950000413d00000000275b00a9000000010300008a000000000032004b000023e40000613d000023248320012a0000008004700270000023940020009c000023d00000213d0000008005800210000000000545019f00002324083000d1000000000058004b000000010330208a000023d10000013d0000002001800270000023db011001970000008002400270000000000121019f000023241210012a0000008001100210000023dc05400197000000000151019f00002324052000d1000000000015004b000000010220208a00002405014001670000232402200197000000000012004b00000000010000390000000101002039000000000112004b0000237e0000613d000000000013004b000000280000a13d00000000203800d9000023965030012900000000025200a900000000203200d900000000053000890000000007530170000000000373c0d90000000003006019000000000224004b000000010110408a000000000007004b000023ab0000613d00000000027200d9000000000470008900000000047400d9000000010440003900000000011400a9000023ac0000013d000000270700002900000000080000190000002a0b000029000023a60000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324a230012a0000232404700197000023940030009c0000227e0000213d0000008005a00210000000000545019f000023240a2000d100000000005a004b000000010220208a0000227f0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000273004b00000000030000390000000103004039000000000c32004b000022910000613d0000000000c9004b000000280000a13d0000002ca09000f900000000b09100d9000023240090009c0000229c0000213d0000000001ba00a900000000209100d9000022f40000013d00000000a09b00d900000000b09100d900000000079700d9000023190000013d00000000015b00d9000000000081001a000000280000413d000000000181001a0000239f0000613d00000000171b00d9000023a10000013d000000003dba00a9000000000039004b000000010200008a000022f40000a13d000023da0090009c000000c0010000390000008001004039000000000219022f00000040010000390000008001004039000023aa0020009c000000200110808a00000020022082700000237c0020009c000000100110808a0000001002208270000001000020008c000000080110808a0000000802208270000000100020008c00000000040200190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100020008c000000040110808a000000040040008c000000020110808a00000000011e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031901cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270001500000003001d000023240d300197000022d10000013d000000000f4f0019000000010220008a0000232400f0009c000022d80000813d0000239e0020009c000022cd0000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b000022cd0000213d000023240220019700000015022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f300197000022e60000013d000000000e4e0019000000010220008a0000232400e0009c000022ed0000813d0000239e0020009c000022e20000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b000022e20000213d000023240220019700000015022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f00000000019000890000000003190170000000000139c0d90000000001006019000000000227004b000000010cc0408a000000000003004b000023020000613d00000000023200d9000000000430008900000000033400d90000000103300039000000000cc300a9000023030000013d000000000200001900000003031000c9000000020330015f00000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000011300a9000000020110008900000000013100a90000000002c2019f00000000072100a90000236a0090009c0000231e0000813d0000000001ba00a900000000109100d9000023700000013d0000000014ba00a9000000000019004b000023720000a13d000023da0090009c000000c0020000390000008002004039000000000229022f00000040030000390000008003004039000023aa0020009c000000200330808a00000020022082700000237c0020009c000000100330808a0000001002208270000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000b21019f0000000001a901cf000000800310027000000000d23b00d90000000009a401cf000000800c9002700000232404100197000023500000013d000000000d3d0019000000010220008a0000232400d0009c000023570000813d0000239e0020009c0000234c0000213d00000000054200a9000000800ed00210000000000ece019f0000000000e5004b0000234c0000213d000023240220019700000000021200a90000008005b002100000000005c5019f000000000b25004900000000c23b00d90000232409900197000023630000013d000000000c3c0019000000010220008a0000232400c0009c0000236a0000813d0000239e0020009c0000235f0000213d00000000054200a9000000800dc00210000000000d9d019f0000000000d5004b0000235f0000213d000023240220019700000000011200a90000008002b00210000000000292019f00000000011200490000000001a1022f000000000001004b000023740000613d000000010770003a000000280000613d000023460070009c0000000009000019000024d20000413d000000280000013d00000000104100d9000023962040012900000000012100a900000000024700d900000000104100d9000023970000013d00000000013400d9000023c20000013d000000000200001900000003054000c9000000020550015f00000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000044500a9000000020440008900000000045400a9000000000232019f00000000022400a9000000000001004b0000239b0000613d000000010220003a000000280000613d0000002c0720006b000000280000a13d0000000009000019000023a40000013d00000000070000190000000001000019000000000001004b000000010770c03900000000080000190000002a0b0000290000002c050000290000232b0a7001970000000000a6004b000000000c000039000000010c006039000024f50000013d000000000200001900000003043000c9000000020440015f00000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000033400a9000000020330008900000000034300a9000000000112019f00000000011300a90000002c05000029000000000a51001900000000005a004b000000280000413d0000234600a0009c000000280000813d0000000000a6004b000000000c000039000000010c006039000000000800001900000000070a00190000002a0b0000290000002c05000029000024da0000013d000000010330008a0000008002200210000000000242019f00002324033001970000000003320019000023248230012a0000232404700197000023940030009c000023df0000213d0000008005800210000000000545019f00002324082000d1000000000058004b000000010220208a000023e00000013d000000010220008a0000008003300210000000000343019f000023240220019700000000032300190000000008b10019000000000173004b00000000020000390000000102004039000000000c21004b000023f30000613d0000000000c8004b000000280000a13d0000002ca08000f900000000b08b00d9000023240080009c000023f90000213d0000000001ba00a900000000208100d9000024510000013d000000000008004b000000280000613d0000002ca08000f900000000b08b00d900000000078700d9000024760000013d000000003dba00a9000000000038004b000000010200008a000024510000a13d000023da0080009c000000c0010000390000008001004039000000000218022f00000040010000390000008001004039000023aa0020009c000000200110808a00000020022082700000237c0020009c000000100110808a0000001002208270000001000020008c000000080110808a0000000802208270000000100020008c00000000040200190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100020008c000000040110808a000000040040008c000000020110808a00000000011e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031801cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270001500000003001d000023240d3001970000242e0000013d000000000f4f0019000000010220008a0000232400f0009c000024350000813d0000239e0020009c0000242a0000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b0000242a0000213d000023240220019700000015022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f300197000024430000013d000000000e4e0019000000010220008a0000232400e0009c0000244a0000813d0000239e0020009c0000243f0000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b0000243f0000213d000023240220019700000015022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f00000000018000890000000004180170000000000148c0d90000000001006019000000000227004b000000010cc0408a000000000004004b0000245f0000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000cc200a9000024600000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002c3019f00000000072100a9000023240080009c0000247b0000213d0000000001ba00a900000000108100d9000024cd0000013d0000000014ba00a9000000000018004b000024cf0000a13d000023da0080009c000000c0020000390000008002004039000000000228022f00000040030000390000008003004039000023aa0020009c000000200330808a00000020022082700000237c0020009c000000100330808a0000001002208270000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000b21019f0000000001a801cf000000800310027000000000d23b00d90000000008a401cf000000800c8002700000232404100197000024ad0000013d000000000d3d0019000000010220008a0000232400d0009c000024b40000813d0000239e0020009c000024a90000213d00000000054200a9000000800ed00210000000000ece019f0000000000e5004b000024a90000213d000023240220019700000000021200a90000008005b002100000000005c5019f000000000b25004900000000c23b00d90000232408800197000024c00000013d000000000c3c0019000000010220008a0000232400c0009c000024c70000813d0000239e0020009c000024bc0000213d00000000054200a9000000800dc00210000000000d8d019f0000000000d5004b000024bc0000213d000023240220019700000000011200a90000008002b00210000000000282019f00000000011200490000000001a1022f000000000001004b000024d10000613d000000010770003a000000280000613d00000000080000190000232b0a7001970000000000a6004b000000000c000039000000010c0060390000002c05000029000000000065004b0000002a0b000029000024f50000813d0000232000b0009c000024de0000213d0000000100c001900000260b0000c13d0000000000a5004b000000270100002900000000010720190000000002070019000000270200202900000000011200490000002d0200002900002324022001970000232b0310019700000000262300a9000000010300008a000000000032004b000025ee0000613d000023249320012a0000008004600270000023940020009c000025da0000213d0000008005900210000000000545019f00002324093000d1000000000059004b000000010330208a000025db0000013d0000232000b0009c0000250f0000213d0000000100c001900000250f0000613d00000000005a004b00000000010700190000002701002029000000270700a02900000000031700490000002d0100002900002324011001970000232b0230019700000000211200a9000000010400008a000000000042004b0000253e0000613d000023246420012a0000008005100270000023940020009c0000252a0000213d0000008006600210000000000656019f00002324074000d1000000000067004b000000010440208a0000252b0000013d00150000000c001d00000000005a004b00000027030000290000000003072019000000000207001900000027020020290014232b0020019c000000280000613d0000002d0100002900000060011002100000239c0110019700000000022300490000232b0d200197000000002c1d00a9000000010400008a000000000042004b000025640000613d000023249420012a0000008006c00270000023940020009c000025500000213d0000008005900210000000000565019f00002324094000d1000000000059004b000000010440208a000025510000013d000000010440008a0000008002200210000000000252019f00002324044001970000000004420019000023246240012a0000232405100197000023940040009c000025390000213d0000008006600210000000000656019f00002324072000d1000000000067004b000000010220208a0000253a0000013d000000010220008a0000008004400210000000000454019f00002324022001970000000004240019000000000214004b00000000040000390000000104004039000000000242004b0000254e0000613d000023960020009c000000280000813d0000002d033000b90000239703300197000000000131004b000000010220408a0000006001100270000000a002200210000000000812019f0000002a0b000029000026c80000013d0000006008100270000026c80000013d000000010440008a0000008002200210000000000262019f00002324044001970000000004420019000023249240012a0000232406c00197000023940040009c0000255f0000213d0000008005900210000000000565019f00002324092000d1000000000059004b000000010220208a000025600000013d000000010220008a0000008004400210000000000464019f000023240220019700000000042400190000232b093001970000000002c4004b00000000030000390000000103004039000000000f32004b000025730000613d0000000000f9004b000000280000a13d00000000d09d00d900000000e09100d9000023240090009c000025790000213d0000000001ed00a900000000209100d9000025cc0000013d000000000009004b000000280000613d00000000d09d00d900000000e09100d9000000000c9c00d9000026ee0000013d0000000013ed00a9000000000019004b000000010200008a000025cc0000a13d0000239d0090009c00000090020000390000008002004039000000000229022f00000070040000390000008004004039000001000020008c000000080440808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c00000000060500190000000206608270000000000b600089000000020060008c000000020b00808a000000100020008c000000040440808a000000040050008c000000020440808a00000000054b0019000000ff0250018f00000000012101cf0000240502500167000000ff0220018f0000000104300270000000000224022f00080000002101a3000000000b5901cf0000008004b0027000000008624000f9000a00000005001d00000000015301cf000900000001001d0000008001100270000e0000000b001d0000232403b00197000025a90000013d0000000006460019000000010220008a000023240060009c000025b00000813d0000239e0020009c000025a50000213d00000000053200a9000000800b600210000000000b1b019f0000000000b5004b000025a50000213d00002324022001970000000e022000b900000008050000290000008005500210000000000115019f000800000021005100000008624000f900000009010000290000232401100197000025be0000013d0000000006460019000000010220008a000023240060009c000025c50000813d0000239e0020009c000025ba0000213d00000000053200a9000000800b600210000000000b1b019f0000000000b5004b000025ba0000213d00002324022001970000000e022000b900000008030000290000008003300210000000000113019f00000000012100490000000a0210025000000000019000890000000004190170000000000149c0d9000000000100601900000000022c004b000000010ff0408a000000000004004b000026d70000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000ff200a9000026d80000013d000000010330008a0000008002200210000000000242019f00002324033001970000000003320019000023249230012a0000232404600197000023940030009c000025e90000213d0000008005900210000000000545019f00002324092000d1000000000059004b000000010220208a000025ea0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000263004b00000000030000390000000103004039000000000232004b000025fd0000613d000023960020009c000000280000813d0000002d011000b90000239701100197000000000316004b000000010220408a0000006003300270000000a002200210000000000932019f000026000000013d0000002d011000b900000060096002700000239701100197000000000001004b000026040000613d000000010990003a000000280000613d0000002a0b0000290000234d00b0009c0000260a0000413d0000000101c0015f00000001001001900000274d0000613d0000002c050000290000000000a5004b00000000050700190000002705002029000000270700a029002c232b0070019c000000280000613d00000000040c00190000002d0100002900000060011002100000239c0110019700000000027500490000232b0720019700000000231700a9000000010800008a000000000082004b000026390000613d00002324c620012a0000008008300270000023940020009c000026250000213d000000800bc00210000000000b8b019f000023240c6000d10000000000bc004b000000010660208a000026260000013d000000010660008a0000008002200210000000000282019f0000232406600197000000000662001900002324c260012a0000232408300197000023940060009c000026340000213d000000800bc00210000000000b8b019f000023240c2000d10000000000bc004b000000010220208a000026350000013d000000010220008a0000008006600210000000000686019f000023240220019700000000082600190000232b06500197000000000238004b00000000050000390000000105004039000000000552004b000026480000613d000000000056004b000000280000a13d00000000206700d900000000106100d9000023240060009c0000264f0000213d00000000011200a900000000206100d9000026a00000013d000000000006004b000000280000613d00000000016300d90000002c081000fa0000002a0b000029000000000c040019000026c80000013d000000001c1200a9000000000016004b000000010200008a000026a00000a13d0000239d0060009c00000090020000390000008002004039000000000226022f00000070070000390000008007004039000001000020008c000000080770808a0000000802208270000000100020008c00000000080200190000000408808270000000040080008c000000000b080019000000020bb08270000000000db000890000000200b0008c000000020d00808a000000100020008c000000040770808a000000040080008c000000020770808a00000000077d0019000000ff0270018f00000000012101cf0000240502700167000000ff0220018f0000000108c00270000000000228022f00270000002101a300000000017601cf000000800810027000000027d28000f9000000000b7c01cf002d0000000b001d000000800fb00270000023240c1001970000267d0000013d000000000d8d0019000000010220008a0000232400d0009c000026840000813d0000239e0020009c000026790000213d000000000bc200a9000000800ed00210000000000efe019f0000000000eb004b000026790000213d000023240220019700000000021200a9000000270b000029000000800bb00210000000000bfb019f00270000002b005100000027f28000f90000002d0b000029000023240db00197000026920000013d000000000f8f0019000000010220008a0000232400f0009c000026990000813d0000239e0020009c0000268e0000213d000000000bc200a9000000800ef00210000000000ede019f0000000000eb004b0000268e0000213d000023240220019700000000011200a9000000270200002900000080022002100000000002d2019f0000000001120049000000000271022f00000000016000890000000007160170000000000176c0d900000000010060190000002a0b000029000000000c040019000000000223004b000000010550408a000000000007004b000026b00000613d00000000027200d9000000000370008900000000037300d9000000010330003900000000055300a9000026b10000013d000000000200001900000003031000c9000000020330015f00000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000011300a9000000020110008900000000013100a9000000000252019f00000000012100a90000002c081000fa0000234d00b0009c000000000100003900000001010040390000000002b00089000000000028004b0000000003000039000000010300a03900000000003101a000000000080260190000000100c00190000027560000c13d0000232000b0009c000027560000213d00000000019b0049000027a70000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002f3019f000000000c2100a9000023240090009c000026f30000213d0000000001ed00a900000000109100d90000273f0000013d0000000014ed00a9000000000019004b000027410000a13d0000239d0090009c00000090020000390000008002004039000000000229022f00000070030000390000008003004039000001000020008c000000080330808a0000000802208270000000100020008c00000000060200190000000406608270000000040060008c000000000d060019000000020dd08270000000000ed000890000000200d0008c000000020e00808a000000100020008c000000040330808a000000040060008c000000020330808a000000000d3e0019000000ff02d0018f00000000012101cf0000240502d00167000000ff0220018f0000000103400270000000000223022f000000000e21019f0000000001d901cf000000800310027000000000623e00d90000000009d401cf000000800f90027000002324041001970000271f0000013d0000000006360019000000010220008a000023240060009c000027260000813d0000239e0020009c0000271b0000213d000000000b4200a900000080056002100000000005f5019f00000000005b004b0000271b0000213d000023240220019700000000021200a90000008005e002100000000005f5019f000000000e25004900000000623e00d90000232409900197000027320000013d0000000006360019000000010220008a000023240060009c000027390000813d0000239e0020009c0000272e0000213d00000000054200a9000000800b600210000000000b9b019f0000000000b5004b0000272e0000213d000023240220019700000000011200a90000008002e00210000000000292019f00000000011200490000000001d1022f000000000001004b000027430000613d000000010cc0003a000000280000613d0000001419c000fa000000000001004b000000010990c0390000002a0b0000290000234d00b0009c00002ab80000413d000000150c0000290000000101c0015f000000010010019000002ab60000c13d0000234d00b0009c000000000100003900000001010040390000000002b00089000000000028004b0000000003000039000000010300a03900000000003101a00000000008026019000024050090009c000000000109001900000000010060190000001e06000029000023500260019700000000312100a900000080041002700000008003300210000000000343019f0000232404100197000023243530012a0000008003300210000000000343019f00002324045000d1000000000034004b000000010550208a0000232403500197000000000113001900000000042900a9000000000141004b00000000030000390000000103004039000000000131004b000023c9036000990000235003300197000027840000613d000000000013004b000000280000a13d00000000203200d900000000503900d900000000022500a900000000203200d900000000053000890000000005530170000000000353c0d90000000003006019000000000424004b000000010110408a000000000005004b0000278c0000613d00000000045400d9000000000650008900000000055600d9000000010550003900000000011500a90000278d0000013d000000000003004b000000280000613d00000000103200d900000000203900d900000000011200a900000000203100d900000000013400d9000027a30000013d000000000400001900000003053000c9000000020550015f00000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000033500a9000000020330008900000000035300a9000000000114019f00000000011300a90000235600200198000027a70000613d000000010110003a000000280000613d0000002902000029000000000012043500000023030000290000000000830435000000210400002900000000009404350000002b010000290000000000a104350000001b010000290000000001010433000000000001004b000027cd0000613d0000000001020433000000000204043300000000011200190000234d0010009c000000280000813d000000260300002900000000020304330000000001120049000000000013043500000023010000290000000001010433000023200010009c000000280000213d0000002002000029000000000202043300000000011200490000234d031001970000234d04200197000000000543013f000000000043004b00000000030000190000234d03004041000000000021004b00000000020000190000234d02002041000027e70000013d00000000010304330000234d0010009c000000280000813d000000260300002900000000020304330000000001120019000000000013043500000029010000290000000001010433000000210200002900000000020204330000000001120019000023200010009c000000280000213d0000002002000029000000000202043300000000011200190000234d031001970000234d04200197000000000543013f000000000043004b00000000030000190000234d03002041000000000021004b00000000020000190000234d020040410000234d0050009c000000000302c019000000000003004b000000280000c13d00000020020000290000000000120435000000240100002900000000010104330000232401100198000028f20000613d002c00000001001d00000029010000290000000001010433002d00000001001d0000000101000039000000000101041a000000400300043d00002344020000410000000000230435002300000003001d000000040230003900000019030000290000000000320435000000400200043d002a00000002001d0000232f0200004100000000002004430000232b01100197002700000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002702000029000000040020008c000028170000c13d0000000103000031000028470000013d0000002a0500002900000023035000690000002404300039000023140050009c000023140300004100000000030540190000004003300210000023140040009c00002314040080410000006004400210000000000334019f000023140010009c0000231401008041000000c001100210000000000131019f8c4b8c460000040f0000002a0900002900000060031002700000231403300197000000200030008c0000002006000039000000000603401900000020056001900000000004590019000028350000613d000000000701034f000000007807043c0000000009890436000000000049004b000028310000c13d0000001f06600190000028420000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000753001000039000028530000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000000280000813d0000002d08000029000024050080009c0000000002080019000000000200601900000000252100a9000023243420012a00002324064000d100000080033002100000008007500270000000000373019f000000000036004b000000010440208a0000008002200210000000000272019f00002324034001970000000004320019000023242340012a0000232405500197000023940040009c0000286d0000213d0000008002200210000000000252019f00002324063000d1000000000026004b000000010330208a0000286e0000013d000000010330008a00000000028100a90000008004400210000000000454019f00002324033001970000000003340019000000000323004b00000000040000390000000104004039000000000443004b000028870000613d000023cf0040009c000000280000813d0000002d03000029000023cf3030012a0000231401100197000023cf1010012a00000000011300a9000023cf3010012a000000000132004b000000010440408a0000000501100270000000fb02400210000000000112019f000023d0011000d10000288d0000013d000023cf3080012a0000231401100197000023cf1010012a00000000031300a9000023cf0120012a000023cf3030012a0000235600300198000028910000613d000000010110003a000000280000613d0000002d0310006b000000280000413d000024050030009c00000000020300190000000002006019000023930420009c00000000040240190000239e0040009c00000000040000390000000104002039000023930020009c00000000050000390000000105008039000000000445016f0000000002420019000023245420012a000023940020009c000028a80000213d000000800550021000002324064000d1000000000056004b000000010440208a000028a90000013d000000010440008a0000002c0600002900000080022002100000232404400197000000000224019f0000008004300210000000000242004b00000000050000390000000105004039000000000252004b000028c80000613d000000000026004b000000280000a13d0000002c0700002900000000307300d90000236a5070012900000000033500a900000000607300d900000000037000890000000005370170000000000357c0d90000000003006019000000000464004b000000010220408a000000000005004b000028ca0000613d00000000045400d9000000000650008900000000055600d9000000010550003900000000022500a9000028cb0000013d00000000026400d9000028e10000013d000000000400001900000003053000c9000000020550015f00000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000033500a9000000020330008900000000035300a9000000000224019f00000000022300a90000001a04000029000000000304043300000000022300190000000000240435000000170300002900000000020304330000000001120019000023240110019700000000001304350000002901000029000000000101043300000018030000290000000002030433000000000112001900000000001304350000002b01000029000000000a0104330000232b01a00197000000250200002900000000020204330000232b02200197000000000012004b0000002b06000029000029990000c13d00000022010000290000000001010433000000000001004b00002b970000613d00000012010000290000000001010433000000000001004b0000295e0000c13d0000000c0100002900000000010104330000ffff0310018f0000ffff0030008c000015df0000613d0000000b0100002900000000010104330000000d02000029000000000402043300000013020000290000000002020433000000400600043d0000008005600039000000400050043f0000001403300039000000000803041a00000060036000390000232c0080009c00000000050000390000000105002039000000000053043500000058038002700000232b093001970000004003600039000000000093043500000020058002700000232a055001970000238c0080019800002329070000410000000007006019000000000757019f000023140b8001970000000008b604360000000000780435000023140a2001970000000000ba004b000029530000613d000000400500043d0000008007500039000000400070043f00000060075000390000000000070435000000400750003900000000000704350000002007500039000000000007043500000000000504350000000005060433000000400600043d0000008007600039000000400070043f0000000009a604360000232307400197000023210040019800002322040000410000000004006019000000000474019f0000000002520049000023140520019700000000044500a9000000000508043300000000044500190000232a05400197000023280040019800002329040000410000000004006019000000000754019f0000000000790435000000000303043300000060046000390000000108000039000000000084043500000080022002100000238d022001970000232401100197000000010010008c000000010100a03900000000011200d9000000000113001900000040026000390000232b09100197000000000092043500000011010000290000000000910435000023280070019800002329010000410000000001006019000000000151019f000000100200002900000000001204350000000101000039000000120200002900000000001204350000000f010000290000000001010433000000000001004b00002b020000c13d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314011001970000000f02000039000000000202041a00000080032002700000231403300197000000000431004b00002aff0000613d0000000c03000039000000000303041a000000000003004b00002afa0000613d0000000b05000039000000000505041a00000000044500a9000000000543004b00000000050040190000000c06000039000000000056041b000000000034004b0000000004038019000023240520019800002abb0000613d000024050040009c00000000030400190000000003006019000023930630009c00000000060340190000239e0060009c00000000060000390000000106002039000023930030009c00000000070000390000000107008039000000000667016f0000000003630019000023247630012a000023940030009c00002abf0000213d000000800770021000002324086000d1000000000078004b000000010660208a00002ac00000013d0000001d0200002900000000020204330000232b02200197000000000012004b00001dc60000613d000023510210009a000023520020009c00006a690000813d0000002002a002100000235502200197000023240020009c00000000030000390000008003002039000000000432022f000023560040009c00000000050000390000004005002039000000000454022f000023140040009c00000000060000390000002006002039000000000464022f0000ffff0040008c00000000070000390000001007002039000000000474022f000000ff0040008c00000000080000390000000808002039000000000484022f0000000f0040008c00000000090000390000000409002039000000000494022f000000030040008c000000000a000039000000020a0020390000000004a4022f000000010040008c00000001033021bf000000000353019f000000000363019f000000000373019f000000000383019f000000000393019f0000000003a3019f0000007f0430008c000000000442022f0000007f0530008900000000025201cf000000000204201900000000022200a9000000ff042002700000007f05200270000000000445022f00000000044400a9000000ff054002700000007f06400270000000000556022f00000000055500a9000000ff065002700000007f07500270000000000667022f000000c00220027000002357022001970000004003300210000000000223019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c1044002700000235804400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c2055002700000235905500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c3033002700000235a03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c4044002700000235b04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c5055002700000235c055001970000235d0220009a000000000225019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c6033002700000235e03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c7044002700000235f04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c8055002700000232805500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c9033002700000236003300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000ca044002700000236104400197000000000242019f000000cb045002700000236204400197000000000242019f000000cc033002700000236303300197000000000232019f00000000036600a9000000cd033002700000236403300197000000000232019f00002365022000d1000023660420009a0000234d034001970000234d0030009c000000010800008a00000000030000190000000003086019000023670620009a0000234d026001970000234d0020009c0000000002000019000000000208601900000080022002100000008005600270000000000225019f00000080033002100000008005400270000000000335019f000000800000008b00000000030460190000236800400198000023220400004100000000040060190000232305300197000000000454019f000000800000008b00000000020660190000232305200197000023680060019800002322060000410000000006006019000000000656019f000000000046004b00001dbf0000613d0000234d054001970000234d0050009c000000000500001900000000050860190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000000000654013f0000000006560049000023690060009c00007f960000813d00000001006001900000236b050000410000236a050060410000236c075000d100000080077002700000000200600190000000000507c0190000236d075000d100000080077002700000000400600190000000000507c0190000236e075000d100000080077002700000000800600190000000000507c0190000236f075000d100000080077002700000001000600190000000000507c01900002370075000d100000080077002700000002000600190000000000507c01900002371075000d100000080077002700000004000600190000000000507c01900002372075000d100000080077002700000008000600190000000000507c01900002373075000d100000080077002700000010000600190000000000507c01900002374075000d100000080077002700000020000600190000000000507c01900002375075000d100000080077002700000040000600190000000000507c01900002376075000d100000080077002700000080000600190000000000507c01900002377075000d100000080077002700000100000600190000000000507c01900002378075000d100000080077002700000200000600190000000000507c01900002379075000d100000080077002700000400000600190000000000507c0190000237a075000d100000080077002700000800000600190000000000507c0190000237b075000d100000080077002700000237c00600198000000000507c0190000237d075000d100000080077002700000237e00600198000000000507c0190000237f075000d100000080077002700000238000600198000000000507c019000023810060019800002382065000d1000000800560c270000023200040009c00002aae0000213d000000000004004b000000000558c0d90000002b0600002900000020045002700000231400500198000000010440c0390000232b04400197000000000014004b000000000203a01900002b9c0000013d0000002c05000029000024f90000013d0000002c05000029000000150c000029000024f90000013d0000000e05000039000000000305041a000000000343001900002af90000013d000000010660008a00000080033002100000232406600197000000000336019f0000008006400210000000000363004b00000000070000390000000107004039000000000373004b00002add0000613d000000000035004b000000280000a13d00000000405400d90000236a7050012900000000044700a900000000805400d900000000045000890000000007450170000000000475c0d90000000004006019000000000586004b000000010330408a000000000007004b00002adf0000613d00000000057500d9000000000670008900000000067600d9000000010660003900000000033600a900002ae00000013d00000000035600d900002af60000013d000000000500001900000003064000c9000000020660015f00000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000044600a9000000020440008900000000046400a9000000000335019f00000000033400a90000000905000039000000000405041a0000000003340019000000000035041b000023c6022001970000008001100210000000000121019f0000000f02000039000000000012041b00000001010000390000000f0200002900000000001204350000001a01000029000000000201043300000028010000290000000001010433000000a00300043d000000000003004b00002b0e0000613d0000000803000039000000000303041a002700000003001d002300000002001d00002b120000013d0000000703000039000000000303041a002300000003001d002700000002001d0000000902000039000000000202041a002200000002001d00000013020000290000000002020433002a00000002001d00000010020000290000000002020433002500000002001d00000011020000290000000002020433002900000002001d000000400300043d0000004002300039000000400020043f0000232302100197000023210010019800002322010000410000000001006019000000000121019f0000002002300039002d00000002001d0000000000020435002c00000003001d0000000000030435000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b0000000202100039000000000302041a0000002303300069000000000032041b0000000302100039000000000302041a0000002703300069000000000032041b0000000402100039000000000302041a0000002203300069000000000032041b0000000502100039000000000302041a000000250430006900002390044001970000239205300197000000000454019f000000380530027000000029055000690000003805500210000023dd05500197000000000454019f000000d8033002700000002a03300069000000d8033002100000239103300197000000000334019f000000000032041b000000000201041a000023200020009c0000000003000019000023250300204100000080022002700000232602200197000000000223019f0000002c0500002900000000002504350000000101100039000000000101041a0000232603100197000023270010019800002325010000410000000001006019000000000131019f0000002d040000290000000000140435000000a00300043d000000000003004b00002b780000613d00000000022000890000232603200197000023270020019800002325020000410000000002006019000000000232019f000000000025043500000000011000890000232603100197000023270010019800002325010000410000000001006019000000000131019f000000000014043500000024010000290000000001010433000023240310019700000000011200190000232401100197000023270020019800002b820000c13d000000000031004b00002b840000813d00001b890000013d000000000031004b000083f10000813d000000240200002900000000001204350000001601000029000000000101043300002324021001970000002d03000029000000000303043300000000011300190000232401100197000023270030019800002b920000c13d000000000021004b00002b940000813d00001b890000013d000000000021004b000083f10000813d000000160200002900000000001204350000002b06000029000000a00100043d000000000001004b00000028010000290000000002010433000000010220c08a000023230520019700001dc00000013d00000022058000290000232405500197000000240f0000290000234d00f0009c000030940000813d000000000085004b00001b890000413d000030960000013d000000010ee0008a000000000bc800a9000023240ee00197000000000dde0019000000000dbd004b000000000e000039000000010e004039000000000ded004b00002bc70000613d0000236a00d0009c000000280000813d000023240cc00197000000000cc800a9000000010dc00270000023950dd001970000007f0ec00210000000800ce00270000000000ccd019f000023270de00197000023260fc001970000007f0ec002700000232400e0009c00002bc10000413d0000232600f0009c000023250ff0009a000000010ee0008a00002bbb0000413d000000800cc00210000000000cdc019f000000ff0de00210000000000cdc00190000007f0cc00270000000000bcb0049000000000c9600490000240500c0009c00000000090c00190000000009006019000000009d8900a9000000800ad002700000008009900210000000000aa9019f000023249ea0012a0000239400a0009c00002ca80000213d000023240ad0019700000080099002100000000009a9019f000023240ae000d100000000009a004b000000010ee0208a00002ca90000013d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b001900000001001d0000000601000039000000000101041a000000b8021002700000ffff0220018f0000ffff0020008c000015df0000613d0000001003000039000000000303041a001800000003001d000000400300043d0000008004300039000000400040043f0000001402200039000000000402041a00000060023000390000232c0040009c00000000050000390000000105002039000000000052043500000020024002700000232a022001970000238c0040019800002329050000410000000005006019000000000625019f00000058024002700000232b052001970000004002300039001600000005001d000000000052043500002314044001970000000005430436001700000006001d000000000065043500000019060000290000231406600197000000000046004b00002c3d0000613d00000018040000290000232404400197000000a0071002700000232307700197000000400800043d0000008009800039000000400090043f00000060098000390000000000090435000000400980003900000000000904350000002009800039000000000009043500000000000804350000000003030433000000400800043d0000008009800039000000400090043f00000000066804360000233a0010019800002322010000410000000001006019000000000171019f0000001903300069000023140730019700000000011700a9000000000505043300000000011500190000232a05100197000023280010019800002329010000410000000001006019000000000151019f001700000001001d0000000000160435000000000102043300000060028000390000000105000039000000000052043500000080023002100000238d02200197000000010040008c000000010400a03900000000024200d9000000000121001900000040028000390000232b01100197001600000001001d00000000001204350000002b01000029002b23210010019c000023220100004100000000010060190000002d011001af000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000301041a00000027023000290000232404300197000023240220019700000022050000290000234d0050009c000038df0000813d000000000042004b00001b890000413d000038e10000013d000000400100043d002600000001001d000014170000013d0000003f013000390000240401100197000000400200043d0000000001120019000000400010043f000000000132043600002404053001980000001f0630018f0000000004510019000000030700036700002c6d0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b00002c690000c13d000000000006004b00002c7a0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000240000006b000000280000613d0000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d0000000001010433002400000001001d0000000301000039000000000101041a000000400200043d000000240420003900000026050000290000000000540435000000400600043d000000000464004900000000054604360000004402200039000000400020043f0000000002050433000023b702200197000023cb022001c700000000002504350000232b02100197000000400100043d0000000004060433000000000004004b00002ca20000613d000000000600001900000000071600190000000008560019000000000808043300000000008704350000002006600039000000000046004b00002c980000413d00002ca20000a13d00000000051400190000000000050435000000400600043d0000000005000414000000040020008c0000330d0000c13d0000000102000039000033200000013d000000010ee0008a000000800ab0027000000000098c00a9000023240be00197000000000bdb0019000000000b9b004b000000000d000039000000010d004039000000000bdb004b00002cb40000c13d000000800b90027000002ccd0000013d0000236a00b0009c000000280000813d000023240bc0019700000000088b00a9000000010b800270000023950bb001970000007f0c8002100000008008c0027000000000088b019f000023270bc00197000023260d8001970000007f0c8002700000232400c0009c00002cc60000413d0000232600d0009c000023250dd0009a000000010cc0008a00002cc00000413d00000080088002100000000008b8019f000000ff0bc002100000000008b800190000007f088002700000000008890049000000800b800270000000240000006b00002cd30000613d0000239303300197000000000353019f0000001d05000029000000000035041b000000000071041b000000000064041b0000000000ba01a000002cdf0000613d0000008001b0021000000000011200190000000002a2001900002324022001970000239301100197000000000121019f0000002b02000029000000000012041b00000024010000290000234d0010009c00002d1d0000413d0000001c01000029000000010010019000002d000000613d0000002d01000029000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000001041b0000000102100039000000000302041a0000239303300197000000000032041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000501100039000000000001041b0000001b0000006b00002d1d0000c13d0000002901000029000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000001041b0000000102100039000000000302041a0000239303300197000000000032041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000501100039000000000001041b000000e00200043d000023270020019800002325010000410000000001006019000023260320019700000000033101a00000000007000019000000000400001900002d560000c13d002d00000040009100000000004701a0002900000070009100002d330000613d0000002b05000029000000000105041a00000000027100490000008003400210000000000131004900002393011001970000232402200197000000000112019f000000000015041b000000400100043d00000040021000390000002d03000029000000000032043500000020021000390000002903000029000000000032043500000027020000290000000000210435000000400200043d00000000012100490000006001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d0200003900000004030000390000239f0400004100000026050000290000002c060000290000002a070000298c4b8c410000040f0000000100200190000034300000c13d000000280000013d000001200100043d0000232304100197000023210010019800002322010000410000000001006019000000000141019f000000a00400043d0000232305400197000023210040019800002322040000410000000004006019000000000554019f0000234d075001970000234d08100197000000000478013f000000000078004b00000000060000190000234d06004041000000000051004b00000000090000190000234d090080410000234d0040009c000000000609c019000000000006004b00002ea30000c13d000000010400008a0000234d0070009c000000000100001900000000010460190000000101100210000000ff06500270000000000616019f000000ff0000008b0000000006056019000000000765013f0000000007670049000023690070009c00007f960000813d00000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200050009c00002dce0000213d000000000005004b000000000664c0d9000000c00500043d0000232307500197000023210050019800002322050000410000000005006019000000000575019f0000234d075001970000234d0070009c000000000700001900000000070460190000000107700210000000ff08500270000000000778019f000000ff0000008b000000000705601900002314006001980000000001000039000000010100c039000000000875013f0000000007780049000023690070009c00007f960000813d0000002006600270000000000116001900000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200050009c00002e380000213d000000000005004b000000000664c0d900000020056002700000231400600198000000010550c0390000232b065001970000232b07100197000000000067004b00000000060500190000000006012019000000000501a01900000000075600490000232b015001970000232b05700197000023200030009c000037030000a13d000000000001004b000000280000613d0000239c022000d10000239c0720019700000000327500a9000000010800008a000000000083004b000051660000613d000023249430012a0000008008200270000023940030009c000050380000213d0000008009900210000000000989019f000023240a4000d100000000009a004b000000010440208a000050390000013d0000002c00a0006b000083f10000813d0000000001b100190029002600100071000000290fe000690000240500f0009c00000000010f0019000000000100601900000000b1a100a9000000800e100270000000800bb002100000000008eb019f00002324be80012a000023940080009c00002e6e0000213d0000232408100197000000800bb0021000000000088b019f000023240be000d100000000008b004b000000010ee0208a00002e6f0000013d000000010ee0008a000000000bfa00a90000232408e0019700000000011800190000000001b1004b00000000080000390000000108004039000000000181004b00002e8f0000613d0000236a0010009c000000280000813d0000232401f0019700000000011a00a9000000010e100270000023950ee001970000007f01100210000000800f100270000000000ffe019f0000232708100197000023260ef001970000007f01f00270000023240010009c00002e890000413d0000232600e0009c000023250ee0009a000000010110008a00002e830000413d000000800ef00210000000000e8e019f000000ff0110021000000000011e00190000007f01100270000000000b1b00490000000001c900190000002109100069000000000dd900490000240500d0009c00000000010d00190000000001006019000000001ea100a9000000800ce002700000008001100210000000000fc1019f00002324c1f0012a0000239400f0009c000031410000213d000023240fe00197000000800cc00210000000000cfc019f000023240f1000d10000000000cf004b000000010110208a000031420000013d000000c00400043d0000232306400197000023210040019800002322040000410000000004006019000000000464019f0000234d06400197000000000968013f000000000068004b00000000080000190000234d08002041000000000041004b00000000010000190000234d010040410000234d0090009c000000000801c019000000000008004b000031cc0000613d0000001001000039000000000101041a002900000001001d000001400100043d002d00000001001d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000001800800043d000001600200043d000001200500043d000000000401043b0000002d010000290000ffff0a10018f0000ffff00a0008c000015df0000613d00000029010000290000232401100197000000400700043d0000008003700039000000400030043f0000001403a00039000000000303041a00000060067000390000232c0030009c00000000090000390000000109002039000000000096043500000020063002700000232a066001970000238c0030019800002329090000410000000009006019000000000b69019f00000058063002700000232b096001970000004006700039000000000096043500000020097000390000000000b90435000023140b3001970000000000b7043500002314034001970000000000b3004b00002f320000613d0000ffff0b20018f0000ffff0c80018f0000000000bc004b000000000b000039000000010b00a039000000010c20008a0000ffff0cc0018f0000000000ca004b000000000a000039000000010a00c0390000000000ab01a000000000020860190000ffff08200190000015df0000613d000000400a00043d000000800ba000390000004000b0043f000000600ba0003900000000000b0435000000400ba0003900000000000b0435000000200ba0003900000000000b043500000000000a0435000000000a070433000000400700043d000000800b7000390000004000b0043f000023230b5001970000232100500198000023220500004100000000050060190000000005b5019f0000000004a40049000023140a40019700000000055a00a9000000000a370436000000000909043300000000055900190000232a09500197000023280050019800002329050000410000000005006019000000000595019f00000000005a043500000000060604330000006009700039000000010a0000390000000000a9043500000080044002100000238d04400197000000010010008c0000000109000039000000000901201900000000049400d90000002d0900002900000001099000390000ffff0990018f00000000808900d9000000000446001900000040067000390000232b044001970000000000460435000000200550021000002398055001970000005804400210000000000445019f000000000334019f00002385033001c7002d00000008001d0000001404800039000000000034041b0000002d03000029000000b80330021000002399033001970000000605000039000000000405041a0000239a04400197000000000334019f000000c8022002100000239b02200197000000000223019f000000000025041b000000c00200043d0000232303200197000023210020019800002322020000410000000002006019000000000232019f000000010900008a0000234d032001970000234d0030009c000000000300001900000000030960190000000103300210000000ff04200270000000000334019f000000ff0000008b0000000003026019000000000532013f0000000006350049000023690060009c00007f960000813d000001000300043d00000001006001900000236b050000410000236a050060410000236c075000d100000080077002700000000200600190000000000507c0190000236d075000d100000080077002700000000400600190000000000507c0190000236e075000d100000080077002700000000800600190000000000507c0190000236f075000d100000080077002700000001000600190000000000507c01900002370075000d100000080077002700000002000600190000000000507c01900002371075000d100000080077002700000004000600190000000000507c01900002372075000d100000080077002700000008000600190000000000507c01900002373075000d100000080077002700000010000600190000000000507c01900002374075000d100000080077002700000020000600190000000000507c01900002375075000d100000080077002700000040000600190000000000507c01900002376075000d100000080077002700000080000600190000000000507c01900002377075000d100000080077002700000100000600190000000000507c01900002378075000d100000080077002700000200000600190000000000507c01900002379075000d100000080077002700000400000600190000000000507c0190000237a075000d100000080077002700000800000600190000000000507c0190000237b075000d100000080077002700000237c00600198000000000507c0190000237d075000d100000080077002700000237e00600198000000000507c0190000237f075000d100000080077002700000238000600198000000000507c019000023810060019800002382065000d1000000800560c270000023200020009c00002fa40000213d000000000002004b000000000559c0d900000020025002700000231400500198000000010220c0390000232b062001970000232b05300197000000000065004b000000000b020019000000000b032019000000000203a01900000000062b00490000232b072001970000232b0a600197000000e00200043d002d23270020019c00004ff50000c13d000000000007004b000000280000613d00000060042002100000239c0d4001970000000069da00a9000000010c00008a0000000000c6004b000059ee0000613d00002324e860012a000000800c900270000023940060009c000059cb0000213d0000008004e002100000000004c4019f000023240e8000d100000000004e004b000000010880208a000059cc0000013d0000000c0100002900000000010104330000ffff0a10018f0000ffff00a0008c000015df0000613d0000000702000029000000000b020433000000060200002900000000020204330000000b04000029000000000404043300000013050000290000000006050433000000400700043d0000008005700039000000400050043f0000001405a00039000000000505041a00000060087000390000232c0050009c00000000090000390000000109002039000000000098043500000020085002700000232a088001970000238c0050019800002329090000410000000009006019000000000c89019f00000058085002700000232b098001970000004008700039000000000098043500000020097000390000000000c90435000023140c5001970000000000c7043500002314056001970000000000c5004b0000302e0000613d0000ffff0c20018f0000ffff0db0018f0000000000cd004b000000000c000039000000010c00a039000000010d20008a0000ffff0dd0018f0000000000da004b000000000a000039000000010a00c0390000000000ac01a000000000020b60190000ffff0a200190000015df0000613d000000400b00043d000000800cb000390000004000c0043f000000600cb0003900000000000c0435000000400cb0003900000000000c0435000000200cb0003900000000000c043500000000000b04350000000007070433000000400b00043d000000800cb000390000004000c0043f0000000006760049000023140760019700000000033700a900000000075b0436000000000909043300000000033900190000232a09300197000023280030019800002329030000410000000003006019000000000393019f000000000037043500000000070804330000006008b000390000000109000039000000000098043500000080066002100000238d066001970000232404400197000000010040008c000000010400a03900000000044600d900000001011000390000ffff0110018f0000000010a100d900000000044700190000004006b000390000232b044001970000000000460435000000200330021000002398033001970000005804400210000000000343019f000000000353019f00002385033001c70000001404100039000000000034041b000000b8011002100000239901100197000000c8022002100000239b02200197000000000112019f0000002b0200002900000000020204330000232b02200197000000000121019f0000000602000039000000000202041a000023de02200197000000000121019f0000001f020000290000000002020433000000a0022002100000234b02200197000000000121019f0000000602000039000000000012041b0000002401000029000000000101043300002324011001970000000b0200002900000000020204330000232402200197000000000021004b0000304f0000613d0000001003000039000000000203041a0000239302200197000000000112019f000000000013041b000000160100002900000000010104330000232401100197000000050200002900000000020204330000232402200197000000000021004b0000305c0000613d0000000f03000039000000000203041a0000239302200197000000000112019f000000000013041b0000001a01000029000000000201043300000017010000290000000001010433002d23240010019b000000a00300043d000000000003004b000031920000c13d0000000803000039000000000023041b0000002d0000006b0000306d0000613d00000080011002100000000a02000039000000000302041a0000000001130019000000000012041b00000018010000290000000001010433002800000001001d0000001c010000290000000001010433002700000001001d0000000301000039000000000101041a002500000001001d000000000100041a000000400300043d000023d102000041002900000003001d0000000000230435000000400200043d002a00000002001d0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c000039940000c13d0000000103000031000039c40000013d000000000085004b000083f10000813d0000000007b700190000000006a6001900000023066000690000001e07700069000000000ade019f0000000100a00190000000000a000019000000000b000019000033a80000613d000000000cc700490000240500c0009c000000000b0c0019000000000b00601900000000bd8b00a9000000800ed00270000000800bb00210000000000feb019f00002324bef0012a0000239400f0009c000032da0000213d000023240fd00197000000800bb00210000000000bfb019f000023240fe000d10000000000bf004b000000010ee0208a000032db0000013d000000000042004b000083f10000813d0000001a050000290000008005500270000000000052004b000049950000213d000000000002004b00000000050000390000000105006039001a00000005001d000000000004004b00000000040000390000000104006039001700000004001d000030ec0000c13d0000001f0400002900002321004001980000232204000041000000000400601900000020044001af0000002c0040006b00000000050000190000234d050020410000234d04400197000000250640014f000000250040006b00000000070000190000234d070040410000234d0060009c000000000705c0190000000504100039000000000007004b000030e80000c13d00000002051000390000001e06000029000000000065041b00000003051000390000002306000029000000000065041b00000004051000390000001c06000029000000000065041b000000190500002900002390055001970000001b06000029000000d8066002100000239106600197000000000565019f00000018060000290000003806600210000000000565019f000000000604041a0000239206600197000000000565019f000000000054041b000000000504041a0000232c0550019700002385055001c7000000000054041b0000239304300197000000000424019f000000000041041b000023200030009c0000000004000019000023250400204100000080033002700000232603300197000000000334019f00000024033000290000232700300198000023250400004100000000040060190000232605300197000000000454019f000000000043004b000000280000c13d0000008003300210000000000223019f000000000021041b000000280100002900002321001001980000232201000041000000000100601900000029011001af0000001002000039000000000202041a001500000002001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000201041a0000002203200029001423240020019b001623240030019b00000024030000290000234d0030009c0000498e0000813d0000001604000029000000140040006c00001b890000413d000049910000013d000000000100041a000023d8020000410000002603000029000000000023043500000000020004110000232b0220019700000004033000390000000000230435000000400200043d002a00000002001d0000232f0200004100000000002004430000232b01100197002b00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002b02000029000000040020008c0000394e0000c13d00000001030000310000397e0000013d000000010110008a000000000cad00a900002324011001970000000001e100190000000001c1004b000000000e000039000000010e0040390000000001e1004b000031620000613d0000236a0010009c000000280000813d0000232401d001970000000001a100a9000000010a100270000023950aa001970000007f01100210000000800d100270000000000ada019f000023270d100197000023260ea001970000007f01a00270000023240010009c0000315c0000413d0000232600e0009c000023250ee0009a000000010110008a000031560000413d000000800aa00210000000000ada019f000000ff0110021000000000011a00190000007f01100270000000000c1c0049000000000007004b000031680000613d00002393015001970000002c011001af0000002005000029000000000015041b0000002901000029000000000014041b000000000096041b0000232400b0009c0000316f0000213d0000232400c0009c000031770000a13d0000008001b002700000239304c001970000000004430019000000000113001900002324011001970000239303400197000000000113019f000000000012041b000000400100043d000000a002100039000000400020043f0000001f08000029000000000408041a000023240540019700000000035104360000000102800039000000000602041a000000000063043500000040061000390000000203800039000000000703041a00000000007604350000000306800039000000000606041a0000008007100039000000800860027000000000008704350000006001100039000023240660019700000000006104350000002d0000006b000031c40000c13d000000000005004b000035400000c13d000000280000013d0000000703000039000000000023041b0000002d0000006b0000319d0000613d0000000a02000039000000000302041a000000000113001900002324011001970000239303300197000000000131019f000000000012041b00000018010000290000000001010433002800000001001d0000001c010000290000000001010433002700000001001d0000000201000039000000000101041a002500000001001d000000000100041a000000400300043d000023d102000041002900000003001d0000000000230435000000400200043d002a00000002001d0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00003a420000c13d000000010300003100003a720000013d0000002d06000029000000000164001900002324011001970000234d0060009c0000353a0000813d000000000051004b00001b890000413d0000353c0000013d000000010100008a0000234d0070009c000000000700001900000000070160190000000107700210000000ff08500270000000000878019f000000ff0000008b0000000008056019000000000985013f0000000009890049000023690090009c00007f960000813d00000001009001900000236b080000410000236a080060410000236c0a8000d1000000800aa00270000000020090019000000000080ac0190000236d0a8000d1000000800aa00270000000040090019000000000080ac0190000236e0a8000d1000000800aa00270000000080090019000000000080ac0190000236f0a8000d1000000800aa00270000000100090019000000000080ac019000023700a8000d1000000800aa00270000000200090019000000000080ac019000023710a8000d1000000800aa00270000000400090019000000000080ac019000023720a8000d1000000800aa00270000000800090019000000000080ac019000023730a8000d1000000800aa00270000001000090019000000000080ac019000023740a8000d1000000800aa00270000002000090019000000000080ac019000023750a8000d1000000800aa00270000004000090019000000000080ac019000023760a8000d1000000800aa00270000008000090019000000000080ac019000023770a8000d1000000800aa00270000010000090019000000000080ac019000023780a8000d1000000800aa00270000020000090019000000000080ac019000023790a8000d1000000800aa00270000040000090019000000000080ac0190000237a0a8000d1000000800aa00270000080000090019000000000080ac0190000237b0a8000d1000000800aa002700000237c0090019800000000080ac0190000237d0a8000d1000000800aa002700000237e0090019800000000080ac0190000237f0a8000d1000000800aa00270000023800090019800000000080ac019000023810090019800002382098000d1000000800890c270000023200050009c0000322b0000213d000000000005004b000000000881c0d90000234d0060009c000000000500001900000000050160190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000000000654013f000000000756004900002314008001980000000005000039000000010500c039000023690070009c00007f960000813d0000002006800270000000000556001900000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200040009c0000328e0000213d000000000004004b000000000661c0d900000020046002700000231400600198000000010440c0390000232b064001970000232b07500197000000000067004b00000000060500190000000006042019000000000504a01900000000046500490000232b05400197000023200030009c00003a960000a13d0000000002200089000023240120019700000000311500a9000000010500008a000000000053004b0000517e0000613d000023247530012a0000008006100270000023940030009c000050470000213d0000008007700210000000000767019f00002324085000d1000000000078004b000000010550208a000050480000013d00000000005804350000000000670435000000a005000039000000000054043500000000020204330000000000230435002b00000002001d000000000002004b000032c20000613d00000000020000190000002c050000290000002b0600002900000000035200190000000004210019000000000404043300000000004304350000002002200039000000000062004b000032b70000413d000032c20000a13d0000002b020000290000002c012000290000000000010435000000400100043d002900000001001d0000232f0100004100000000001004430000002d0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002d02000029000000040020008c00003aa40000c13d000000010300003100003ad70000013d000000010ee0008a000000000bc800a9000023240ee00197000000000dde0019000000000dbd004b000000000e000039000000010e004039000000000ded004b000032fb0000613d0000236a00d0009c000000280000813d000023240cc00197000000000cc800a9000000010dc00270000023950dd001970000007f0ec00210000000800ce00270000000000ccd019f000023270de00197000023260fc001970000007f0ec002700000232400e0009c000032f50000413d0000232600f0009c000023250ff0009a000000010ee0008a000032ef0000413d000000800cc00210000000000cdc019f000000ff0de00210000000000cdc00190000007f0cc00270000000000bcb0049000000000c9600490000240500c0009c00000000090c00190000000009006019000000009d8900a9000000800ad002700000008009900210000000000aa9019f000023249ea0012a0000239400a0009c000033830000213d000023240ad0019700000080099002100000000009a9019f000023240ae000d100000000009a004b000000010ee0208a000033840000013d00000000011400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231403100197000000000003004b000033250000c13d00000060040000390000008001000039000033430000013d0000003f013000390000240401100197000000400400043d0000000001140019000000400010043f000000000134043600002404063001980000001f0730018f00000000056100190000000308000367000033360000613d000000000908034f000000000a010019000000009b09043c000000000aba043600000000005a004b000033320000c13d000000000007004b000033430000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000002004b000000280000613d0000000002040433000023200020009c000000280000213d0000001f0020008c000000280000a13d0000002d020000290020232b0020019b0000000001010433001f00000001001d0000002c0000006b000049dc0000613d0000000201000039000000000101041a000000400200043d00000024042000390000002005000029000000000054043500000044042000390000002c050000290000000000540435000000400500043d000000000454004900000000064504360000006402200039000000400020043f0000232b021001970000000001060433000023b701100197000023b8081001c70000000000860435000000400100043d0000000004050433000000200040008c00000000070400190000000005010019000033710000413d0000000005010019000000000704001900000000680604340000000005850436000000200770008a000000200070008c0000336b0000813d000000000806043300000003067002100000010006600089000000010660020f000000000007004b00000000060060190000000007600089000000000778016f000000010660008a0000000008050433000000000668016f000000000676019f0000000000650435000000400600043d0000000005000414000000040020008c0000499c0000c13d0000000102000039000049af0000013d000000010ee0008a000000800ab0027000000000098c00a9000023240be00197000000000bdb0019000000000b9b004b000000000d000039000000010d004039000000000bdb004b0000338f0000c13d000000800b900270000033a80000013d0000236a00b0009c000000280000813d000023240bc0019700000000088b00a9000000010b800270000023950bb001970000007f0c8002100000008008c0027000000000088b019f000023270bc00197000023260d8001970000007f0c8002700000232400c0009c000033a10000413d0000232600d0009c000023250dd0009a000000010cc0008a0000339b0000413d00000080088002100000000008b8019f000000ff0bc002100000000008b800190000007f088002700000000008890049000000800b800270000000240000006b000033ae0000613d0000239303300197000000000353019f0000001d05000029000000000035041b000000000071041b000000000064041b0000000000ba01a0000033ba0000613d0000008001b0021000000000011200190000000002a2001900002324022001970000239301100197000000000121019f0000002b02000029000000000012041b00000024010000290000234d0010009c000033f80000413d0000001c010000290000000100100190000033db0000613d0000002d01000029000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000001041b0000000102100039000000000302041a0000239303300197000000000032041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000501100039000000000001041b0000001b0000006b000033f80000c13d0000002901000029000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000001041b0000000102100039000000000302041a0000239303300197000000000032041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000501100039000000000001041b000000e00200043d000023270020019800002325010000410000000001006019000023260320019700000000033101a000000000070000190000000004000019000034380000c13d002d00000040009100000000004701a000290000007000910000340e0000613d0000002b05000029000000000105041a00000000027100490000008003400210000000000131004900002393011001970000232402200197000000000112019f000000000015041b000000400100043d00000040021000390000002d03000029000000000032043500000020021000390000002903000029000000000032043500000027020000290000000000210435000000400200043d00000000012100490000006001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d0200003900000004030000390000239f0400004100000026050000290000002c060000290000002a070000298c4b8c410000040f0000000100200190000000280000613d0000000601000039000000000201041a0000238e02200197000023ba022001c7000000000021041b000000400200043d0000002901000029000008ea0000013d000001200100043d0000232304100197000023210010019800002322010000410000000001006019000000000141019f000000a00400043d0000232305400197000023210040019800002322040000410000000004006019000000000554019f0000234d075001970000234d08100197000000000478013f000000000078004b00000000060000190000234d06004041000000000051004b00000000090000190000234d090080410000234d0040009c000000000609c019000000000006004b000035440000c13d000000010400008a0000234d0070009c000000000100001900000000010460190000000101100210000000ff06500270000000000616019f000000ff0000008b0000000006056019000000000765013f0000000007670049000023690070009c00007f960000813d00000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200050009c000034b00000213d000000000005004b000000000664c0d9000000c00500043d0000232307500197000023210050019800002322050000410000000005006019000000000575019f0000234d075001970000234d0070009c000000000700001900000000070460190000000107700210000000ff08500270000000000778019f000000ff0000008b000000000705601900002314006001980000000001000039000000010100c039000000000875013f0000000007780049000023690070009c00007f960000813d0000002006600270000000000116001900000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200050009c0000351a0000213d000000000005004b000000000664c0d900000020056002700000231400600198000000010550c0390000232b065001970000232b07100197000000000067004b00000000060500190000000006012019000000000501a01900000000075600490000232b015001970000232b05700197000023200030009c00004cd80000a13d000000000001004b000000280000613d0000239c022000d10000239c0720019700000000327500a9000000010800008a000000000083004b000058710000613d000023249430012a0000008008200270000023940030009c000057700000213d0000008009900210000000000989019f000023240a4000d100000000009a004b000000010440208a000057710000013d000000000051004b000083f10000813d0000239304400197000000000114019f0000001f04000029000000000014041b0000002901000029000000000012041b000000000093041b00001c720000013d000000c00400043d0000232306400197000023210040019800002322040000410000000004006019000000000464019f0000234d06400197000000000968013f000000000068004b00000000080000190000234d08002041000000000041004b00000000010000190000234d010040410000234d0090009c000000000801c019000000000008004b000037140000613d0000001001000039000000000101041a002900000001001d000001400100043d002d00000001001d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000001800800043d000001600200043d000001200500043d000000000401043b0000002d010000290000ffff0a10018f0000ffff00a0008c000015df0000613d00000029010000290000232401100197000000400700043d0000008003700039000000400030043f0000001403a00039000000000303041a00000060067000390000232c0030009c00000000090000390000000109002039000000000096043500000020063002700000232a066001970000238c0030019800002329090000410000000009006019000000000b69019f00000058063002700000232b096001970000004006700039000000000096043500000020097000390000000000b90435000023140b3001970000000000b7043500002314034001970000000000b3004b000035d30000613d0000ffff0b20018f0000ffff0c80018f0000000000bc004b000000000b000039000000010b00a039000000010c20008a0000ffff0cc0018f0000000000ca004b000000000a000039000000010a00c0390000000000ab01a000000000020860190000ffff08200190000015df0000613d000000400a00043d000000800ba000390000004000b0043f000000600ba0003900000000000b0435000000400ba0003900000000000b0435000000200ba0003900000000000b043500000000000a0435000000000a070433000000400700043d000000800b7000390000004000b0043f000023230b5001970000232100500198000023220500004100000000050060190000000005b5019f0000000004a40049000023140a40019700000000055a00a9000000000a370436000000000909043300000000055900190000232a09500197000023280050019800002329050000410000000005006019000000000595019f00000000005a043500000000060604330000006009700039000000010a0000390000000000a9043500000080044002100000238d04400197000000010010008c0000000109000039000000000901201900000000049400d90000002d0900002900000001099000390000ffff0990018f00000000808900d9000000000446001900000040067000390000232b044001970000000000460435000000200550021000002398055001970000005804400210000000000445019f000000000334019f00002385033001c7002d00000008001d0000001404800039000000000034041b0000002d03000029000000b80330021000002399033001970000000605000039000000000405041a0000239a04400197000000000334019f000000c8022002100000239b02200197000000000223019f000000000025041b000000c00200043d0000232303200197000023210020019800002322020000410000000002006019000000000232019f000000010900008a0000234d032001970000234d0030009c000000000300001900000000030960190000000103300210000000ff04200270000000000334019f000000ff0000008b0000000003026019000000000532013f0000000006350049000023690060009c00007f960000813d000001000300043d00000001006001900000236b050000410000236a050060410000236c075000d100000080077002700000000200600190000000000507c0190000236d075000d100000080077002700000000400600190000000000507c0190000236e075000d100000080077002700000000800600190000000000507c0190000236f075000d100000080077002700000001000600190000000000507c01900002370075000d100000080077002700000002000600190000000000507c01900002371075000d100000080077002700000004000600190000000000507c01900002372075000d100000080077002700000008000600190000000000507c01900002373075000d100000080077002700000010000600190000000000507c01900002374075000d100000080077002700000020000600190000000000507c01900002375075000d100000080077002700000040000600190000000000507c01900002376075000d100000080077002700000080000600190000000000507c01900002377075000d100000080077002700000100000600190000000000507c01900002378075000d100000080077002700000200000600190000000000507c01900002379075000d100000080077002700000400000600190000000000507c0190000237a075000d100000080077002700000800000600190000000000507c0190000237b075000d100000080077002700000237c00600198000000000507c0190000237d075000d100000080077002700000237e00600198000000000507c0190000237f075000d100000080077002700000238000600198000000000507c019000023810060019800002382065000d1000000800560c270000023200020009c000036450000213d000000000002004b000000000559c0d900000020025002700000231400500198000000010220c0390000232b062001970000232b05300197000000000065004b000000000b020019000000000b032019000000000203a01900000000062b00490000232b072001970000232b0a600197000000e00200043d002d23270020019c0000572d0000c13d000000000007004b000000280000613d00000060042002100000239c0d4001970000000069da00a9000000010c00008a0000000000c6004b00006f350000613d00002324e860012a000000800c900270000023940060009c00006dbf0000213d0000008004e002100000000004c4019f000023240e8000d100000000004e004b000000010880208a00006dc00000013d0000002401900029000023240610019700000022010000290000234d0010009c000037f30000813d000000000096004b00001b890000413d000037f50000013d0000001604000029000000140040006c000083f10000813d00000015030000290000008003300270000000160030006b000049950000213d000000140000006b000036a30000c13d0000001f0300002900002321003001980000232203000041000000000300601900000020033001af0000002a0030006b00000000040000190000234d040020410000234d03300197000000210530014f000000210030006b00000000060000190000234d060040410000234d0050009c000000000604c0190000000503100039000000000006004b0000369f0000c13d00000002041000390000001e05000029000000000054041b00000003041000390000002305000029000000000054041b00000004041000390000001c05000029000000000054041b000000190400002900002390044001970000001b05000029000000d8055002100000239105500197000000000454019f00000018050000290000003805500210000000000454019f000000000503041a0000239205500197000000000454019f000000000043041b000000000403041a0000232c0440019700002385044001c7000000000043041b000023930320019700000016033001af000000000031041b000023200020009c0000000003000019000023250300204100000080022002700000232602200197000000000223019f000000240220006a0000232700200198000023250300004100000000030060190000232604200197000000000343019f000000000032004b000000280000c13d00000017040000290000001a0340014f000000800220021000000016022001af000000000021041b001c00000003001d0000000100300190000036f80000613d0000000f01000039000000000101041a000000a00210027000002323022001970000233a001001980000232201000041000000000100601900000000012101a0000015df0000613d0000234d2110012c0000234d0220c0990000002c030000290000234d4330012c000000000113013f0000234d0440c09900000000252400d9000000250000006b0000000003020019000000000330c089000000ff011002120000000004510049000000000114019f0000000001056019000000000005004b000000000501c019001b00000005001d000000000002004b000000000203c019000023230120019700002321002001980000232202000041000000000200601900000000001201a0000000280000c13d0000001b020000290000232100200198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001b02000029000000ff0220018f000000010220020f000000000101043b000000000301041a000000000223013f000000000021041b000000160000006b0000000001000039000000010100c039000000140000006b00000000020000390000000102006039000000000112013f0000000100100190000051cc0000613d001b00010000003d000007e50000013d000000000001004b000000280000613d00000060022002100000239c0720019700000000237500a9000000000042004b000051980000613d000023249420012a0000008008300270000023940020009c000050560000213d0000008009900210000000000989019f000023240a4000d100000000009a004b000000010440208a000050570000013d000000010100008a0000234d0070009c000000000700001900000000070160190000000107700210000000ff08500270000000000878019f000000ff0000008b0000000008056019000000000985013f0000000009890049000023690090009c00007f960000813d00000001009001900000236b080000410000236a080060410000236c0a8000d1000000800aa00270000000020090019000000000080ac0190000236d0a8000d1000000800aa00270000000040090019000000000080ac0190000236e0a8000d1000000800aa00270000000080090019000000000080ac0190000236f0a8000d1000000800aa00270000000100090019000000000080ac019000023700a8000d1000000800aa00270000000200090019000000000080ac019000023710a8000d1000000800aa00270000000400090019000000000080ac019000023720a8000d1000000800aa00270000000800090019000000000080ac019000023730a8000d1000000800aa00270000001000090019000000000080ac019000023740a8000d1000000800aa00270000002000090019000000000080ac019000023750a8000d1000000800aa00270000004000090019000000000080ac019000023760a8000d1000000800aa00270000008000090019000000000080ac019000023770a8000d1000000800aa00270000010000090019000000000080ac019000023780a8000d1000000800aa00270000020000090019000000000080ac019000023790a8000d1000000800aa00270000040000090019000000000080ac0190000237a0a8000d1000000800aa00270000080000090019000000000080ac0190000237b0a8000d1000000800aa002700000237c0090019800000000080ac0190000237d0a8000d1000000800aa002700000237e0090019800000000080ac0190000237f0a8000d1000000800aa00270000023800090019800000000080ac019000023810090019800002382098000d1000000800890c270000023200050009c000037730000213d000000000005004b000000000881c0d90000234d0060009c000000000500001900000000050160190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000000000654013f000000000756004900002314008001980000000005000039000000010500c039000023690070009c00007f960000813d0000002006800270000000000556001900000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200040009c000037d60000213d000000000004004b000000000661c0d900000020046002700000231400600198000000010440c0390000232b064001970000232b07500197000000000067004b00000000060500190000000006042019000000000504a01900000000046500490000232b05400197000023200030009c000050650000a13d0000000002200089000023240120019700000000311500a9000000010500008a000000000053004b000058890000613d000023247530012a0000008006100270000023940030009c0000577f0000213d0000008007700210000000000767019f00002324085000d1000000000078004b000000010550208a000057800000013d000000000096004b000083f10000813d0000000001c800190000000007b700190000001d077000690000001c081000690000000001ef019f0000000100100190000000000b000019000000000c00001900004ab70000613d000000000dd800490000240500d0009c00000000010d00190000000001006019000000001e9100a9000000800ce0027000000080011002100000000001c1019f00002324cf10012a000023940010009c0000495b0000213d0000232401e00197000000800cc0021000000000011c019f000023240cf000d100000000001c004b000000010ff0208a0000495c0000013d000023d602000041000000000034004b000038db0000813d000023510040009c000038db0000a13d0000238e011001970000000602000039000000000012041b000000400200043d000000c001200039000000400010043f0000001001000039000000000101041a0000232401100197000b00000002001d00000000021204360000000f01000039000000000101041a0000232401100197000500000002001d0000000000120435000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314011001970000000b020000290000004003200039001300000003001d0000000000130435000000a001200039001200000001001d00000000000104350000008001200039001100000001001d00000000000104350000006001200039001000000001001d0000000000010435000000400100043d002600000001001d000001000100043d002b00000001001d0000232b011001970000000002000411000000000021004b00004f460000c13d0000000001000411002b00000001001d0000002b010000290000232b01100197000001000010043f0000002603000029000001e001300039000000400010043f000000c00100043d0000000001130436001e00000001001d00000000000104350000002c0100002900000000010104330000232b011001970000004002300039002a00000002001d00000000001204350000000d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000121019f0000006002300039001d00000002001d000000000012043500000000010004110000232b011001970000000302000039000000000302041a0000000202000039000000000402041a0000000102000039000400000002001d000000000502041a000000400800043d0000002006800039000000a00900043d000001000700043d0000000000160435000000400200043d000000000126004900000000011204360000004006800039000000400060043f0000232e0a0000410000000000a604350000232b067001970000006407800039000000000067043500000000060004100000232b076001970000004406800039001800000007001d0000000000760435002c232b0050019b0000232b054001970000232b06300197002b01040080003d000000e403800039000000c404800039000000a4078000390000008408800039000000000009004b0000520a0000c13d00000000006804350000000000570435000000a005000039000000000054043500000000020204330000000000230435002900000002001d000000000002004b000038a10000613d00000000020000190000002b05000029000000290600002900000000035200190000000004210019000000000404043300000000004304350000002002200039000000000062004b000038960000413d000038a10000a13d00000029020000290000002b012000290000000000010435000000400100043d002d00000001001d0000232f0100004100000000001004430000002c0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c000052370000613d00000029020000290000001f0220003900002404022001970000002b022000290000002d030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d0460002900005c460000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000038d40000c13d00005c460000013d000000400100043d00000044031000390000000000230435000083f50000013d000000000042004b000083f10000813d00000018050000290000008005500270000000000052004b000049950000213d000000000002004b00000000050000390000000105006039001800000005001d000000000004004b00000000040000390000000104006039001500000004001d0000391a0000c13d0000001e040000290000232100400198000023220400004100000000040060190000001f044001af0000002c0040006b00000000050000190000234d050020410000234d04400197000000210640014f000000210040006b00000000070000190000234d070040410000234d0060009c000000000705c0190000000504100039000000000007004b000039160000c13d00000002051000390000001c06000029000000000065041b00000003051000390000001d06000029000000000065041b00000004051000390000001a06000029000000000065041b000000170500002900002390055001970000001906000029000000d8066002100000239106600197000000000565019f00000016060000290000003806600210000000000565019f000000000604041a0000239206600197000000000565019f000000000054041b000000000504041a0000232c0550019700002385055001c7000000000054041b0000239304300197000000000424019f000000000041041b000023200030009c0000000004000019000023250400204100000080033002700000232603300197000000000334019f00000022033000290000232700300198000023250400004100000000040060190000232605300197000000000454019f000000000043004b000000280000c13d0000008003300210000000000223019f000000000021041b000000280100002900002321001001980000232201000041000000000100601900000029011001af0000001002000039000000000202041a001300000002001d000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000201041a0000002703200029001223240020019b001423240030019b00000022030000290000234d0030009c000056720000813d0000001404000029000000120040006c00001b890000413d000056750000013d0000002a0300002900000026023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002b020000298c4b8c460000040f0000002a0900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f000000200640019000000000046900190000396d0000613d000000000701034f000000007807043c0000000009890436000000000049004b000039690000c13d000000000005004b0000397a0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000049990000613d0000001f013000390000240402100197000000400100043d0000000002120019002600000002001d000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000280000c13d000000000001004b00000000010004110000002c020000290000000002016019002c00000002001d00001a2c0000013d0000002a0300002900000029023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f0000002a0900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000000004690019000039b30000613d000000000701034f000000007807043c0000000009890436000000000049004b000039af0000c13d000000000005004b000039c00000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003a810000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002c00000002001d000023460020009c000000280000813d0000002c0000006b00003a810000613d00000025020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a00600003900000000006504350000008405100039000000280600002900000000006504350000006405100039002500000007001d00000000007504350000004405100039000000000035043500000027030000290000235005300197000000a403100039002700000005001d0000000000530435000000e40310003900000000040404330000000000430435002901040010003d002a00000004001d000000000004004b00003a040000613d00000000010000190000002a05000029000000290600002900000000036100190000000004120019000000000404043300000000004304350000002001100039000000000051004b000039f90000413d00003a040000a13d00000029020000290000002a012000290000000000010435000000400100043d002300000001001d0000232f0100004100000000001004430000002c0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00003a300000613d0000002a020000290000001f022000390000240402200197000000290220002900000023030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002d03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000052a70000013d0000002a0300002900000029023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f0000002a0900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900003a610000613d000000000701034f000000007807043c0000000009890436000000000049004b00003a5d0000c13d000000000005004b00003a6e0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003a810000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002c00000002001d000023460020009c000000280000813d0000002c0000006b000052390000c13d00000026010000290000000001010433000000c00200043d002d0000001200510000001b010000290000000001010433000000000001004b0000000002000039000000010200c039000000a00100043d000000000001004b00000000030000390000000103006039000000000332013f000000200200002900000000020204330000000100300190000049000000613d0029002d0000002d002d00000002001d000049010000013d000023240320019700000000533500a9000000000015004b000051b20000613d000023247150012a0000008006300270000023940050009c000050730000213d0000008007700210000000000767019f00002324081000d1000000000078004b000000010110208a000050740000013d0000002b020000290000001f0220003900002404022001970000002c0220002900000029030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002d020000298c4b8c460000040f000000290900002900000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f0000002006400190000000000469001900003ac60000613d000000000701034f000000007807043c0000000009890436000000000049004b00003ac20000c13d000000000005004b00003ad30000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000003ae40000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000000280000813d00003ae50000013d000003e80100003900000026030000290000008002300039001b00000002001d0000000000120435000000a001300039000f00000001001d0000000000010435000000a00100043d000000000001004b00000007010000390000000801006039000000000101041a000000c002300039001900000002001d0000000000120435000000e001300039001600000001001d00000000000104350000000b01000029000000000101043300002324011001970000010002300039002100000002001d00000000001204350000000501000029000000000101043300002324011001970000012002300039001500000002001d0000000000120435000000c00100043d000000000001004b0000000002000039000000010200c0390000234d0010009c00000000010000390000000101004039000000000121016f0000014002300039001a00000002001d0000000000120435000001c001300039000100000001001d0000000000010435000001a001300039000300000001001d00000000000104350000018001300039000200000001001d00000000000104350000016001300039001700000001001d0000000000010435000000000103043300003b2e0000013d000000000021004b000083f10000813d00000015020000290000000000120435000000a00100043d000000000001004b00000028010000290000000002010433000000010220c08a0000232305200197000023210020019800002322010000410000000001006019000000000151019f0000001d02000029000000000012043500000026010000290000000001010433000000000001004b000048e80000613d0000002a010000290000000001010433000000e00200043d000000000121013f0000232b00100198000048e80000613d000000400200043d000000e001200039000000400010043f000000c001200039002900000001001d0000000000010435000000a001200039002400000001001d00000000000104350000008001200039002300000001001d00000000000104350000006001200039002500000001001d00000000000104350000004001200039002000000001001d00000000000104350000002001200039002800000001001d000000000001043500000000000204350000002a0100002900000000010104330000232b01100197001c00000002001d00000000001204350000001d0100002900000000010104330000232100100198000023220200004100000000020060190000000f03000039000000000303041a0000233a0030019800002322040000410000000004006019002c00000004001d000023210040019800002322040000410000000004006019000000a003300270002b23230030019b0000002b034001b0000015df0000613d0000232301100197000000000212019f000000a00100043d0000234d0020009c00003b6d0000c13d000024050030009c00003b6d0000c13d002d234d00000045000000000300001900003b810000013d0000234d4330012c0000234d0440c0990000234d6520012c000000000535013f0000234d0660c09900000000364600d9000000ff045002120000000005640049000000000445019f00000000040660190000234d002001980000000005030019000000000550c089000000000003004b000000000305c019000000000006004b000000000604c019002d00000006001d0000234d0020009c00003b890000413d000023230230019700002321003001980000232203000041000000000300601900000000002301a000003b890000613d0000002d02000029002d000100200092000000000001004b00003bd60000613d0000002d02000029002d00000002001d000023210020019800002322010000410000000001006019002700000001001d0000232100100198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000002d03000029000000ff0330018f00000027043001af0000234d3040012c0000234d0330c0990000234d05000041000001005050011b0000234d0550c09900000000305300d90000234d004001980000000004030019000000000440c089000000000003004b000000000304c0190000000100200190000000280000613d000000000101043b000000000101041a000000ff0430018f000000020240020f000000010220008a00000000022101700000000001000039000000010100c03900003bd40000613d0000236a0020009c000000800220827000000080040000390000000004004039000023c70020009c00000040044081bf0000004002208270000023aa0020009c00000020044081bf00000020022082700000237c0020009c00000010044081bf0000001002208270000001000020008c00000008044080390000000802208270000000100020008c00000004044080390000000402208270000000040020008c000000020440803900000002022082700000000003430049000000010020008c000000010330208a000000ff0430018f0000002d0240006900003c240000013d0000002d010000290000000102100039002700000002001d000023210020019800002322010000410000000001006019002d00000001001d0000232100100198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f00000027030000290000000006030019000000ff0330018f0000002d043001af0000234d3040012c0000234d0330c0990000234d05000041000001005050011b0000234d0550c09900000000305300d90000234d004001980000000004030019000000000440c089000000000003004b000000000304c0190000000100200190000000280000613d000000ff0230018f000000000101043b000000000101041a000000000121022f00000000022101d10000000001000039000000010100c039000000ff0400003900003c210000613d0000232404200198000000800220627000002356052001980000004002206270000000000004004b0000007f04000039000000ff04006039000000000005004b000000400440c08a00002314002001980000002002206270000000200440c08a0000ffff002001900000001002206270000000100440c08a000000ff002001900000000802206270000000080440c08a0000000f002001900000000402206270000000040440c08a00000003002001900000000202206270000000020440c08a000000010220018f00000000042400490000000002340049000000ff0220018f00000000026200190000002b040000290000002c034001af000000010110018f0000002004000029000000000014043500000000013200a90000232303100197000023210010019800002322010000410000000001006019000023210010019800002322020000410000000002006019000000000232019f0000234d042001970000234d054001670000234d0040009c00000000040000190000234d04004041000023d90020009c00000000060000190000234d060020410000234d0050009c000000000406c019000000000131019f000000280300002900000000001304350000234f03000041000000000004004b00003c470000613d000023200020009c00003c4a0000213d0000234e03000041000023690020009c00003c4a0000413d0000002801000029000000000031043500000000010300190000232302100197000023210010019800002322010000410000000001006019000000000121019f0000234d021001970000234d0020009c000000010200008a000000000200c0190000000102200210000000ff03100270000000000223019f000000ff0000008b0000000002016019000000000321013f0000000003230049000023690030009c00007f960000813d00000001003001900000236b020000410000236a020060410000236c042000d100000080044002700000000200300190000000000204c0190000236d042000d100000080044002700000000400300190000000000204c0190000236e042000d100000080044002700000000800300190000000000204c0190000236f042000d100000080044002700000001000300190000000000204c01900002370042000d100000080044002700000002000300190000000000204c01900002371042000d100000080044002700000004000300190000000000204c01900002372042000d100000080044002700000008000300190000000000204c01900002373042000d100000080044002700000010000300190000000000204c01900002374042000d100000080044002700000020000300190000000000204c01900002375042000d100000080044002700000040000300190000000000204c01900002376042000d100000080044002700000080000300190000000000204c01900002377042000d100000080044002700000100000300190000000000204c01900002378042000d100000080044002700000200000300190000000000204c01900002379042000d100000080044002700000400000300190000000000204c0190000237a042000d100000080044002700000800000300190000000000204c0190000237b042000d100000080044002700000237c00300198000000000204c0190000237d042000d100000080044002700000237e00300198000000000204c0190000237f042000d100000080044002700000238000300198000000000204c019000023810030019800002382032000d1000000800230c270000023200010009c00003caf0000213d000000000001004b000000010100c08a000000000221c0d900000020012002700000231400200198000000010110c0390000232b0110019700000025040000290000000000140435000000e00200043d0000232b02200197000000000021004b0000000001000039000000010100403900000000020000390000000102002039000000a00300043d000000000003004b000000000201c019000000000002004b0000000001040019000000e00100c03900000021020000290000000002020433002b00000002001d0000002a020000290000000002020433002700000002001d002d232b0020019b0000001b020000290000000002020433001f00000002001d00000000070104330000232b0670019700000026010000290000000001010433002c00000001001d000023200010009c00003cea0000a13d0000002d0060006b00003d0d0000813d0000002d0000006b000000280000613d000000270170006a0000232b011001970000002b0200002900000060022002100000239c0320019700000000281300a9000000010400008a000000000042004b00003dad0000613d00002324a420012a0000008009800270000023940020009c00003d990000213d0000008005a00210000000000595019f000023240a4000d100000000005a004b000000010440208a00003d9a0000013d0000001f01000029000023c90110009900002350021001970000002c312000b900000080041002700000008003300210000000000343019f000023243430012a00000080033002100000232405100197000000000353019f00002324054000d1000000000035004b000000010440208a00002324034001970000000004130019000000000014004b00000000040000390000000104004039000000000343004b00003d1f0000613d000023c90030009c000000280000813d000023c92020012a0000002c04000029000023c94040012a00000000022400a9000023c92020012a000000000121004b000000010330408a0000000601100270000000fa02300210000000000112019f000023ca081000d100003d200000013d00000027037000690000002b0100002900002324011001970000232b0230019700000000211200a9000000010400008a000000000042004b00003d5d0000613d000023249420012a0000008008100270000023940020009c00003d490000213d0000008005900210000000000585019f00002324094000d1000000000059004b000000010440208a00003d4a0000013d000023c90810012a0000002d0060006b00003d340000813d000000270170006a0000002b0200002900002324022001970000232b0310019700000000292300a9000000010300008a000000000032004b00003d820000613d00002324a320012a0000008004900270000023940020009c00003d6e0000213d0000008005a00210000000000545019f000023240a3000d100000000005a004b000000010330208a00003d6f0000013d000000000006004b000000280000613d00000027017000690000232b0a1001970000002b0100002900000060011002100000239c011001970000000029a100a9000000010300008a000000000032004b00003dd10000613d00002324b320012a0000008004900270000023940020009c00003dbd0000213d0000008005b00210000000000545019f000023240b3000d100000000005b004b000000010330208a00003dbe0000013d000000010440008a0000008002200210000000000282019f00002324044001970000000004420019000023249240012a0000232408100197000023940040009c00003d580000213d0000008005900210000000000585019f00002324092000d1000000000059004b000000010220208a00003d590000013d000000010220008a0000008004400210000000000484019f00002324022001970000000004240019000000000214004b00000000040000390000000104004039000000000242004b00003d6c0000613d000023960020009c000000280000813d0000002b033000b90000239703300197000000000131004b000000010220408a0000006001100270000000a002200210000000000812019f00003eba0000013d000000600810027000003eba0000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324a230012a0000232404900197000023940030009c00003d7d0000213d0000008005a00210000000000545019f000023240a2000d100000000005a004b000000010220208a00003d7e0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000293004b00000000030000390000000103004039000000000232004b00003d910000613d000023960020009c000000280000813d0000002b011000b90000239701100197000000000319004b000000010220408a0000006003300270000000a002200210000000000932019f00003d940000013d0000002b011000b900000060099002700000239701100197000000000001004b00003f7c0000613d000000010990003a00003f7c0000c13d000000280000013d000000010440008a0000008002200210000000000292019f0000232404400197000000000442001900002324a240012a0000232409800197000023940040009c00003da80000213d0000008005a00210000000000595019f000023240a2000d100000000005a004b000000010220208a00003da90000013d000000010220008a0000008004400210000000000494019f00002324022001970000000004240019000000000284004b00000000040000390000000104004039000000000942004b00003dbb0000613d000000000096004b000000280000a13d00000000106100d900000000206300d9000023240060009c00003de40000213d00000000012100a900000000206100d900003e310000013d00000000016800d900003eb90000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324b230012a0000232404900197000023940030009c00003dcc0000213d0000008005b00210000000000545019f000023240b2000d100000000005b004b000000010220208a00003dcd0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000293004b00000000030000390000000103004039000000000c32004b00003de00000613d0000002d00c0006b000000280000a13d0000002d0200002900000000a02a00d900000000b02100d9000023240020009c00003e3f0000213d0000000001ba00a90000002d201000fa00003e920000013d0000002da0a000fa0000002db01000fa0000002d099000fa00003f220000013d000000003a2100a9000000000036004b000000010200008a00003e310000a13d0000239d0060009c00000090010000390000008001004039000000000116022f00000070020000390000008002004039000001000010008c000000080220808a0000000801108270000000100010008c00000000040100190000000404408270000000040040008c00000000050400190000000205508270000000000b500089000000020050008c000000020b00808a000000100010008c000000040220808a000000040040008c000000020220808a00000000012b0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104a00270000000000334022f000000000c32019f00000000031601cf000000800430027000000000e24c00d9000000000b1a01cf000000800db00270000023240a30019700003e110000013d000000000e4e0019000000010220008a0000232400e0009c00003e180000813d0000239e0020009c00003e0d0000213d0000000005a200a9000000800fe00210000000000fdf019f0000000000f5004b00003e0d0000213d000023240220019700000000023200a90000008005c002100000000005d5019f000000000c25004900000000d24c00d9000023240bb0019700003e240000013d000000000d4d0019000000010220008a0000232400d0009c00003e2b0000813d0000239e0020009c00003e200000213d0000000005a200a9000000800ed00210000000000ebe019f0000000000e5004b00003e200000213d000023240220019700000000023200a90000008003c002100000000003b3019f0000000002230049000000000212022f00000000016000890000000003160170000000000136c0d90000000001006019000000000228004b000000010990408a000000000003004b00003ea20000613d00000000023200d9000000000430008900000000033400d9000000010330003900000000099300a900003ea30000013d000000003dba00a90000002d0030006b000000010200008a00003e920000a13d0000002d0f0000290000239d00f0009c0000009001000039000000800100403900000000011f022f00000070020000390000008002004039000001000010008c000000080220808a0000000801108270000000100010008c00000000040100190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100010008c000000040220808a000000040040008c000000020220808a00000000012e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031f01cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270002200000003001d000023240d30019700003e6f0000013d000000000f4f0019000000010220008a0000232400f0009c00003e760000813d0000239e0020009c00003e6b0000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b00003e6b0000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f30019700003e840000013d000000000e4e0019000000010220008a0000232400e0009c00003e8b0000813d0000239e0020009c00003e800000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b00003e800000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f0000002d03000029000000000130008900000000041301700000002d0100c029000000000141c0d90000000001006019000000000229004b000000010cc0408a000000000004004b00003f0b0000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000cc200a900003f0c0000013d000000000200001900000003031000c9000000020330015f00000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000011300a9000000020110008900000000013100a9000000000292019f00000000012100a90000002d081000fa0000002c010000290000000001100089000000000018004b00003edc0000a13d0000002d0000006b000000280000613d0000002b020000290000232404200198000000280000613d0000002d0060006b00003ede0000813d0000002d021000b900000000011200d90000002d0010006c000000280000c13d0000002b0100002900000060011002100000239c01100197000000000921004b000000280000a13d0000002d271000b9000000010300008a000000000032004b00003fdf0000613d00002324a320012a0000008004700270000023940020009c00003fcb0000213d0000008005a00210000000000545019f000023240a3000d100000000005a004b000000010330208a00003fcc0000013d0000000009000019000042290000013d0000006007100210000023460010009c00003ee50000813d00000000124700d9000000000001004b000000010220c039000040f50000013d0000002002100270000023db022001970000008003700270000000000232019f000023242320012a0000008002200210000023dc05700197000000000252019f00002324053000d1000000000025004b000000010330208a00002405027001670000232403300197000000000023004b00000000020000390000000102002039000000000323004b000040d40000613d000000000034004b000000280000a13d00000000104100d9000023962040012900000000012100a900000000104100d900000000024000890000000009240170000000000494c0d90000000004006019000000000217004b000000010330408a000000000009004b000040da0000613d00000000029200d9000000000590008900000000059500d9000000010550003900000000033500a9000040db0000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002c3019f00000000092100a90000002d01000029000023240010009c00003f280000213d0000000001ba00a90000002d101000fa00003f750000013d0000000014ba00a90000002d0010006b00003f770000a13d0000002d0d0000290000239d00d0009c0000009002000039000000800200403900000000022d022f00000070030000390000008003004039000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000c21019f0000000001ad01cf000000800310027000000000e23c00d9000000000ba401cf000000800db00270000023240410019700003f550000013d000000000e3e0019000000010220008a0000232400e0009c00003f5c0000813d0000239e0020009c00003f510000213d00000000054200a9000000800fe00210000000000fdf019f0000000000f5004b00003f510000213d000023240220019700000000021200a90000008005c002100000000005d5019f000000000c25004900000000d23c00d9000023240bb0019700003f680000013d000000000d3d0019000000010220008a0000232400d0009c00003f6f0000813d0000239e0020009c00003f640000213d00000000054200a9000000800ed00210000000000ebe019f0000000000e5004b00003f640000213d000023240220019700000000011200a90000008002c002100000000002b2019f00000000011200490000000001a1022f000000000001004b00003f790000613d000000010990003a000000280000613d00000000196900d9000000000001004b000000010990c039000000000098004b000042280000813d0000002d0000006b000000280000613d0000002b010000290000232403100198000000280000613d0000002d0060006b00003fae0000813d0000006004800210000023460080009c00003fc70000413d0000002001800270000023db011001970000008002400270000000000121019f000023241210012a0000008001100210000023dc05400197000000000151019f00002324052000d1000000000015004b000000010220208a00002405014001670000232402200197000000000012004b00000000010000390000000101002039000000000112004b00003fc70000613d000000000013004b000000280000a13d00000000203800d9000023965030012900000000025200a900000000203200d900000000053000890000000007530170000000000373c0d90000000003006019000000000224004b000000010110408a000000000007004b000041040000613d00000000027200d9000000000470008900000000047400d9000000010440003900000000011400a9000041050000013d000000000008004b00003fc90000613d0000002d018000b900000000028100d90000002b0300002900000060033002100000239c0b3001970000002d0020006c00003ff10000c13d0000000000b1001a00003ff10000413d0000002d27b000b9000000010300008a000000000032004b0000413b0000613d000023248320012a0000008004700270000023940020009c000041270000213d0000008005800210000000000545019f00002324083000d1000000000058004b000000010330208a000041280000013d00000000013400d90000411b0000013d0000002707000029000040fd0000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324a230012a0000232404700197000023940030009c00003fda0000213d0000008005a00210000000000545019f000023240a2000d100000000005a004b000000010220208a00003fdb0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000273004b00000000030000390000000103004039000000000c32004b00003fed0000613d0000000000c9004b000000280000a13d0000002da09000f900000000b09100d9000023240090009c00003ff80000213d0000000001ba00a900000000209100d9000040500000013d0000002da09000f900000000b09100d900000000079700d9000040750000013d0000002d01b000fa000000000081001a000000280000413d000000000181001a000040f90000613d00000000171b00d9000040fb0000013d000000003dba00a9000000000039004b000000010200008a000040500000a13d000023da0090009c000000c0010000390000008001004039000000000219022f00000040010000390000008001004039000023aa0020009c000000200110808a00000020022082700000237c0020009c000000100110808a0000001002208270000001000020008c000000080110808a0000000802208270000000100020008c00000000040200190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100020008c000000040110808a000000040040008c000000020110808a00000000011e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031901cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270002200000003001d000023240d3001970000402d0000013d000000000f4f0019000000010220008a0000232400f0009c000040340000813d0000239e0020009c000040290000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b000040290000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f300197000040420000013d000000000e4e0019000000010220008a0000232400e0009c000040490000813d0000239e0020009c0000403e0000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b0000403e0000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f00000000019000890000000003190170000000000139c0d90000000001006019000000000227004b000000010cc0408a000000000003004b0000405e0000613d00000000023200d9000000000430008900000000033400d90000000103300039000000000cc300a90000405f0000013d000000000200001900000003031000c9000000020330015f00000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000011300a9000000020110008900000000013100a90000000002c2019f00000000072100a90000236a0090009c0000407a0000813d0000000001ba00a900000000109100d9000040cc0000013d0000000014ba00a9000000000019004b000040ce0000a13d000023da0090009c000000c0020000390000008002004039000000000229022f00000040030000390000008003004039000023aa0020009c000000200330808a00000020022082700000237c0020009c000000100330808a0000001002208270000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000b21019f0000000001a901cf000000800310027000000000d23b00d90000000009a401cf000000800c9002700000232404100197000040ac0000013d000000000d3d0019000000010220008a0000232400d0009c000040b30000813d0000239e0020009c000040a80000213d00000000054200a9000000800ed00210000000000ece019f0000000000e5004b000040a80000213d000023240220019700000000021200a90000008005b002100000000005c5019f000000000b25004900000000c23b00d90000232409900197000040bf0000013d000000000c3c0019000000010220008a0000232400c0009c000040c60000813d0000239e0020009c000040bb0000213d00000000054200a9000000800dc00210000000000d9d019f0000000000d5004b000040bb0000213d000023240220019700000000011200a90000008002b00210000000000292019f00000000011200490000000001a1022f000000000001004b000040d00000613d000000010770003a000000280000613d000023460070009c0000000009000019000042290000413d000000280000013d00000000104100d9000023962040012900000000012100a900000000024700d900000000104100d9000040f10000013d000000000200001900000003054000c9000000020550015f00000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000044500a9000000020440008900000000045400a9000000000232019f00000000022400a9000000000001004b000040f50000613d000000010220003a000000280000613d0000002d0720006b000000280000a13d0000000009000019000040fe0000013d00000000070000190000000001000019000000000001004b000000010770c03900000000080000190000232b0a7001970000000000a6004b00000000010000390000000101006039002200000001001d0000424f0000013d000000000200001900000003043000c9000000020440015f00000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000033400a9000000020330008900000000034300a9000000000112019f00000000011300a90000002d0a1000290000002d00a0006c000000280000413d0000234600a0009c000000280000813d0000000000a6004b00000000010000390000000101006039002200000001001d000000000800001900000000070a0019000042300000013d000000010330008a0000008002200210000000000242019f00002324033001970000000003320019000023248230012a0000232404700197000023940030009c000041360000213d0000008005800210000000000545019f00002324082000d1000000000058004b000000010220208a000041370000013d000000010220008a0000008003300210000000000343019f000023240220019700000000032300190000000008b10019000000000173004b00000000020000390000000102004039000000000c21004b0000414a0000613d0000000000c8004b000000280000a13d0000002da08000f900000000b08b00d9000023240080009c000041500000213d0000000001ba00a900000000208100d9000041a80000013d000000000008004b000000280000613d0000002da08000f900000000b08b00d900000000078700d9000041cd0000013d000000003dba00a9000000000038004b000000010200008a000041a80000a13d000023da0080009c000000c0010000390000008001004039000000000218022f00000040010000390000008001004039000023aa0020009c000000200110808a00000020022082700000237c0020009c000000100110808a0000001002208270000001000020008c000000080110808a0000000802208270000000100020008c00000000040200190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100020008c000000040110808a000000040040008c000000020110808a00000000011e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031801cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270002200000003001d000023240d300197000041850000013d000000000f4f0019000000010220008a0000232400f0009c0000418c0000813d0000239e0020009c000041810000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b000041810000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f3001970000419a0000013d000000000e4e0019000000010220008a0000232400e0009c000041a10000813d0000239e0020009c000041960000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b000041960000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f00000000018000890000000004180170000000000148c0d90000000001006019000000000227004b000000010cc0408a000000000004004b000041b60000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000cc200a9000041b70000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002c3019f00000000072100a9000023240080009c000041d20000213d0000000001ba00a900000000108100d9000042240000013d0000000014ba00a9000000000018004b000042260000a13d000023da0080009c000000c0020000390000008002004039000000000228022f00000040030000390000008003004039000023aa0020009c000000200330808a00000020022082700000237c0020009c000000100330808a0000001002208270000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000b21019f0000000001a801cf000000800310027000000000d23b00d90000000008a401cf000000800c8002700000232404100197000042040000013d000000000d3d0019000000010220008a0000232400d0009c0000420b0000813d0000239e0020009c000042000000213d00000000054200a9000000800ed00210000000000ece019f0000000000e5004b000042000000213d000023240220019700000000021200a90000008005b002100000000005c5019f000000000b25004900000000c23b00d90000232408800197000042170000013d000000000c3c0019000000010220008a0000232400c0009c0000421e0000813d0000239e0020009c000042130000213d00000000054200a9000000800dc00210000000000d8d019f0000000000d5004b000042130000213d000023240220019700000000011200a90000008002b00210000000000282019f00000000011200490000000001a1022f000000000001004b000042280000613d000000010770003a000000280000613d00000000080000190000232b0a7001970000000000a6004b00000000010000390000000101006039002200000001001d0000002d0060006b0000424f0000813d0000002c01000029000023200010009c000042850000213d00000022010000290000000100100190000042850000613d0000002d00a0006b00000000050700190000002705002029000000270700a0290000232b04700198000000280000613d0000002b0100002900000060011002100000239c0110019700000000027500490000232b0720019700000000231700a9000000010800008a000000000082004b000042d50000613d00002324c620012a0000008008300270000023940020009c000042c10000213d000000800bc00210000000000b8b019f000023240c6000d10000000000bc004b000000010660208a000042c20000013d0000002c01000029000023200010009c0000426b0000213d000000220100002900000001001001900000426b0000613d0000002d00a0006c00000000010700190000002701002029000000270700a02900000000031700490000002b0100002900002324011001970000232b0230019700000000211200a9000000010400008a000000000042004b000042b00000613d000023246420012a0000008005100270000023940020009c0000429c0000213d0000008006600210000000000656019f00002324074000d1000000000067004b000000010440208a0000429d0000013d0000002d00a0006c00000027030000290000000003072019000000000207001900000027020020290014232b0020019c000000280000613d0000002b0100002900000060011002100000239c0110019700000000022300490000232b0d200197000000002c1d00a9000000010400008a000000000042004b0000435b0000613d000023249420012a0000008006c00270000023940020009c000043470000213d0000008005900210000000000565019f00002324094000d1000000000059004b000000010440208a000043480000013d0000002d00a0006b000000270100002900000000010720190000000002070019000000270200202900000000011200490000002b0200002900002324022001970000232b0310019700000000262300a9000000010300008a000000000032004b0000440f0000613d000023249320012a0000008004600270000023940020009c000043fb0000213d0000008005900210000000000545019f00002324093000d1000000000059004b000000010330208a000043fc0000013d000000010440008a0000008002200210000000000252019f00002324044001970000000004420019000023246240012a0000232405100197000023940040009c000042ab0000213d0000008006600210000000000656019f00002324072000d1000000000067004b000000010220208a000042ac0000013d000000010220008a0000008004400210000000000454019f00002324022001970000000004240019000000000214004b00000000040000390000000104004039000000000242004b000042bf0000613d000023960020009c000000280000813d0000002b033000b90000239703300197000000000131004b000000010220408a0000006001100270000000a002200210000000000812019f000043e90000013d0000006008100270000043e90000013d000000010660008a0000008002200210000000000282019f0000232406600197000000000662001900002324c260012a0000232408300197000023940060009c000042d00000213d000000800bc00210000000000b8b019f000023240c2000d10000000000bc004b000000010220208a000042d10000013d000000010220008a0000008006600210000000000686019f000023240220019700000000082600190000232b06500197000000000238004b00000000050000390000000105004039000000000552004b000042e40000613d000000000056004b000000280000a13d00000000206700d900000000106100d9000023240060009c000042e80000213d00000000011200a900000000206100d9000043390000013d000000000006004b000000280000613d00000000016300d9000043e80000013d000000001c1200a9000000000016004b000000010200008a000043390000a13d0000239d0060009c00000090020000390000008002004039000000000226022f00000070070000390000008007004039000001000020008c000000080770808a0000000802208270000000100020008c00000000080200190000000408808270000000040080008c000000000b080019000000020bb08270000000000db000890000000200b0008c000000020d00808a000000100020008c000000040770808a000000040080008c000000020770808a00000000077d0019000000ff0270018f00000000012101cf0000240502700167000000ff0220018f0000000108c00270000000000228022f002b0000002101a300000000017601cf00000080081002700000002bd28000f9000000000b7c01cf002d0000000b001d000000800fb00270000023240c100197000043160000013d000000000d8d0019000000010220008a0000232400d0009c0000431d0000813d0000239e0020009c000043120000213d000000000bc200a9000000800ed00210000000000efe019f0000000000eb004b000043120000213d000023240220019700000000021200a90000002b0b000029000000800bb00210000000000bfb019f002b0000002b00510000002bf28000f90000002d0b000029000023240db001970000432b0000013d000000000f8f0019000000010220008a0000232400f0009c000043320000813d0000239e0020009c000043270000213d000000000bc200a9000000800ef00210000000000ede019f0000000000eb004b000043270000213d000023240220019700000000011200a90000002b0200002900000080022002100000000002d2019f0000000001120049000000000271022f00000000016000890000000007160170000000000176c0d90000000001006019000000000223004b000000010550408a000000000007004b000043d10000613d00000000027200d9000000000370008900000000037300d9000000010330003900000000055300a9000043d20000013d000000010440008a0000008002200210000000000262019f00002324044001970000000004420019000023249240012a0000232406c00197000023940040009c000043560000213d0000008005900210000000000565019f00002324092000d1000000000059004b000000010220208a000043570000013d000000010220008a0000008004400210000000000464019f000023240220019700000000042400190000232b093001970000000002c4004b00000000030000390000000103004039000000000f32004b0000436a0000613d0000000000f9004b000000280000a13d00000000d09d00d900000000e09100d9000023240090009c000043700000213d0000000001ed00a900000000209100d9000043c30000013d000000000009004b000000280000613d00000000d09d00d900000000e09100d9000000000c9c00d9000044440000013d0000000013ed00a9000000000019004b000000010200008a000043c30000a13d0000239d0090009c00000090020000390000008002004039000000000229022f00000070040000390000008004004039000001000020008c000000080440808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c00000000060500190000000206608270000000000b600089000000020060008c000000020b00808a000000100020008c000000040440808a000000040050008c000000020440808a00000000054b0019000000ff0250018f00000000012101cf0000240502500167000000ff0220018f0000000104300270000000000224022f00080000002101a3000000000b5901cf0000008004b0027000000008624000f9000a00000005001d00000000015301cf000900000001001d0000008001100270000e0000000b001d0000232403b00197000043a00000013d0000000006460019000000010220008a000023240060009c000043a70000813d0000239e0020009c0000439c0000213d00000000053200a9000000800b600210000000000b1b019f0000000000b5004b0000439c0000213d00002324022001970000000e022000b900000008050000290000008005500210000000000115019f000800000021005100000008624000f900000009010000290000232401100197000043b50000013d0000000006460019000000010220008a000023240060009c000043bc0000813d0000239e0020009c000043b10000213d00000000053200a9000000800b600210000000000b1b019f0000000000b5004b000043b10000213d00002324022001970000000e022000b900000008030000290000008003300210000000000113019f00000000012100490000000a0210025000000000019000890000000004190170000000000149c0d9000000000100601900000000022c004b000000010ff0408a000000000004004b0000442d0000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000ff200a90000442e0000013d000000000200001900000003031000c9000000020330015f00000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000011300a9000000020110008900000000013100a9000000000252019f00000000012100a900000000084100d90000002c020000290000234d0020009c000000000100003900000001010040390000000002200089000000000028004b0000000003000039000000010300a03900000000003101a0000000000802601900000022010000290000000100100190000044ad0000c13d0000002c01000029000023200010009c000044ad0000213d0000002c01900069000044fe0000013d000000010330008a0000008002200210000000000242019f00002324033001970000000003320019000023249230012a0000232404600197000023940030009c0000440a0000213d0000008005900210000000000545019f00002324092000d1000000000059004b000000010220208a0000440b0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000263004b00000000030000390000000103004039000000000232004b0000441e0000613d000023960020009c000000280000813d0000002b011000b90000239701100197000000000316004b000000010220408a0000006003300270000000a002200210000000000932019f000044210000013d0000002b011000b900000060096002700000239701100197000000000001004b000044250000613d000000010990003a000000280000613d0000002c010000290000234d0010009c000042360000413d0000002201000029000000010110015f0000000100100190000044a30000613d000042360000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002f3019f000000000c2100a9000023240090009c000044490000213d0000000001ed00a900000000109100d9000044950000013d0000000014ed00a9000000000019004b000044970000a13d0000239d0090009c00000090020000390000008002004039000000000229022f00000070030000390000008003004039000001000020008c000000080330808a0000000802208270000000100020008c00000000060200190000000406608270000000040060008c000000000d060019000000020dd08270000000000ed000890000000200d0008c000000020e00808a000000100020008c000000040330808a000000040060008c000000020330808a000000000d3e0019000000ff02d0018f00000000012101cf0000240502d00167000000ff0220018f0000000103400270000000000223022f000000000e21019f0000000001d901cf000000800310027000000000623e00d90000000009d401cf000000800f9002700000232404100197000044750000013d0000000006360019000000010220008a000023240060009c0000447c0000813d0000239e0020009c000044710000213d000000000b4200a900000080056002100000000005f5019f00000000005b004b000044710000213d000023240220019700000000021200a90000008005e002100000000005f5019f000000000e25004900000000623e00d90000232409900197000044880000013d0000000006360019000000010220008a000023240060009c0000448f0000813d0000239e0020009c000044840000213d00000000054200a9000000800b600210000000000b9b019f0000000000b5004b000044840000213d000023240220019700000000011200a90000008002e00210000000000292019f00000000011200490000000001d1022f000000000001004b000044990000613d000000010cc0003a000000280000613d0000001419c000fa000000000001004b000000010990c0390000002c010000290000234d0010009c000042550000413d0000002201000029000000010110015f0000000100100190000042550000c13d0000002c020000290000234d0020009c000000000100003900000001010040390000000002200089000000000028004b0000000003000039000000010300a03900000000003101a00000000008026019000024050090009c000000000109001900000000010060190000001f06000029000023500260019700000000312100a900000080041002700000008003300210000000000343019f0000232404100197000023243530012a0000008003300210000000000343019f00002324045000d1000000000034004b000000010550208a0000232403500197000000000113001900000000042900a9000000000141004b00000000030000390000000103004039000000000131004b000023c9036000990000235003300197000044db0000613d000000000013004b000000280000a13d00000000203200d900000000503900d900000000022500a900000000203200d900000000053000890000000005530170000000000353c0d90000000003006019000000000424004b000000010110408a000000000005004b000044e30000613d00000000045400d9000000000650008900000000055600d9000000010550003900000000011500a9000044e40000013d000000000003004b000000280000613d00000000103200d900000000203900d900000000011200a900000000203100d900000000013400d9000044fa0000013d000000000400001900000003053000c9000000020550015f00000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000033500a9000000020330008900000000035300a9000000000114019f00000000011300a90000235600200198000044fe0000613d000000010110003a000000280000613d0000002902000029000000000012043500000024010000290000000000810435000000230100002900000000009104350000002a010000290000000000a104350000001a010000290000000001010433000000000001004b000045260000613d000000290100002900000000010104330000002302000029000000000202043300000000011200190000234d0010009c000000280000813d000000260300002900000000020304330000000001120049000000000013043500000024010000290000000001010433000023200010009c000000280000213d0000001e02000029000000000202043300000000011200490000234d031001970000234d04200197000000000543013f000000000043004b00000000030000190000234d03004041000000000021004b00000000020000190000234d02002041000045410000013d000000240100002900000000010104330000234d0010009c000000280000813d000000260300002900000000020304330000000001120019000000000013043500000029010000290000000001010433000000230200002900000000020204330000000001120019000023200010009c000000280000213d0000001e02000029000000000202043300000000011200190000234d031001970000234d04200197000000000543013f000000000043004b00000000030000190000234d03002041000000000021004b00000000020000190000234d020040410000234d0050009c000000000302c019000000000003004b000000280000c13d0000001e02000029000000000012043500000021010000290000000001010433002c23240010019c0000464c0000613d00000029010000290000000001010433002d00000001001d0000000101000039000000000101041a000000400300043d00002344020000410000000000230435002400000003001d000000040230003900000018030000290000000000320435000000400200043d002700000002001d0000232f0200004100000000002004430000232b01100197002b00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002b02000029000000040020008c000045700000c13d0000000103000031000045a00000013d000000270300002900000024023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002b020000298c4b8c460000040f000000270900002900000060031002700000231403300197000000200030008c00000020060000390000000006034019000000200560019000000000045900190000458e0000613d000000000701034f000000007807043c0000000009890436000000000049004b0000458a0000c13d0000001f066001900000459b0000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000753001000039000045ac0000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000000280000813d000000010200008a0000002d0020006b0000002d02000029000000000200601900000000252100a9000023243420012a00002324064000d100000080033002100000008007500270000000000373019f000000000036004b000000010440208a0000008002200210000000000272019f00002324034001970000000004320019000023242340012a0000232405500197000023940040009c000045c60000213d0000008002200210000000000252019f00002324063000d1000000000026004b000000010330208a000045c70000013d000000010330008a0000002d021000b90000008004400210000000000454019f00002324033001970000000003340019000000000323004b00000000040000390000000104004039000000000443004b000045e00000613d000023cf0040009c000000280000813d0000002d03000029000023cf3030012a0000231401100197000023cf1010012a00000000011300a9000023cf3010012a000000000132004b000000010440408a0000000501100270000000fb02400210000000000112019f000023d0011000d1000045e70000013d0000002d03000029000023cf3030012a0000231401100197000023cf1010012a00000000031300a9000023cf0120012a000023cf3030012a0000235600300198000045eb0000613d000000010110003a000000280000613d0000002d0310006b000000280000413d000024050030009c00000000020300190000000002006019000023930420009c00000000040240190000239e0040009c00000000040000390000000104002039000023930020009c00000000050000390000000105008039000000000445016f0000000002420019000023245420012a000023940020009c000046020000213d000000800550021000002324064000d1000000000056004b000000010440208a000046030000013d000000010440008a00000080022002100000232404400197000000000224019f0000008004300210000000000242004b00000000050000390000000105004039000000000252004b000046220000613d0000002c0020006b000000280000a13d0000002c0700002900000000307300d90000236a5070012900000000033500a900000000607300d9000000000370008900000000053701700000002c0300c029000000000353c0d90000000003006019000000000464004b000000010220408a000000000005004b000046240000613d00000000045400d9000000000650008900000000055600d9000000010550003900000000022500a9000046250000013d0000002c024000fa0000463b0000013d000000000400001900000003053000c9000000020550015f00000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000033500a9000000020330008900000000035300a9000000000224019f00000000022300a90000001904000029000000000304043300000000022300190000000000240435000000160300002900000000020304330000000001120019000023240110019700000000001304350000002901000029000000000101043300000017030000290000000002030433000000000112001900000000001304350000002a01000029000000000a0104330000232b01a00197000000250200002900000000020204330000232b02200197000000000012004b000046f20000c13d00000020010000290000000001010433000000000001004b00003b200000613d00000012010000290000000001010433000000000001004b000046b70000c13d0000000c0100002900000000010104330000ffff0310018f0000ffff0030008c000015df0000613d0000000b0100002900000000010104330000000d02000029000000000402043300000013020000290000000002020433000000400600043d0000008005600039000000400050043f0000001403300039000000000803041a00000060036000390000232c0080009c00000000050000390000000105002039000000000053043500000058038002700000232b093001970000004003600039000000000093043500000020058002700000232a055001970000238c0080019800002329070000410000000007006019000000000757019f000023140b8001970000000008b604360000000000780435000023140a2001970000000000ba004b000046ac0000613d000000400500043d0000008007500039000000400070043f00000060075000390000000000070435000000400750003900000000000704350000002007500039000000000007043500000000000504350000000005060433000000400600043d0000008007600039000000400070043f0000000009a604360000232307400197000023210040019800002322040000410000000004006019000000000474019f0000000002520049000023140520019700000000044500a9000000000508043300000000044500190000232a05400197000023280040019800002329040000410000000004006019000000000754019f0000000000790435000000000303043300000060046000390000000108000039000000000084043500000080022002100000238d022001970000232401100197000000010010008c000000010100a03900000000011200d9000000000113001900000040026000390000232b09100197000000000092043500000011010000290000000000910435000023280070019800002329010000410000000001006019000000000151019f000000100200002900000000001204350000000101000039000000120200002900000000001204350000000f010000290000000001010433000000000001004b000048560000c13d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314011001970000000f02000039000000000202041a00000080032002700000231403300197000000000431004b000048530000613d0000000c03000039000000000303041a000000000003004b0000484e0000613d0000000b05000039000000000505041a00000000044500a9000000000543004b00000000050040190000000c06000039000000000056041b000000000034004b000000000403801900002324052001980000480f0000613d000024050040009c00000000030400190000000003006019000023930630009c00000000060340190000239e0060009c00000000060000390000000106002039000023930030009c00000000070000390000000107008039000000000667016f0000000003630019000023247630012a000023940030009c000048130000213d000000800770021000002324086000d1000000000078004b000000010660208a000048140000013d0000001c0200002900000000020204330000232b02200197000000000012004b00003b2c0000613d000023510210009a000023520020009c00006a690000813d0000002002a002100000235502200197000023240020009c00000000030000390000008003002039000000000432022f000023560040009c00000000050000390000004005002039000000000454022f000023140040009c00000000060000390000002006002039000000000464022f0000ffff0040008c00000000070000390000001007002039000000000474022f000000ff0040008c00000000080000390000000808002039000000000484022f0000000f0040008c00000000090000390000000409002039000000000494022f000000030040008c000000000a000039000000020a0020390000000004a4022f000000010040008c00000001033021bf000000000353019f000000000363019f000000000373019f000000000383019f000000000393019f0000000003a3019f0000007f0430008c000000000442022f0000007f0530008900000000025201cf000000000204201900000000022200a9000000ff042002700000007f05200270000000000445022f00000000044400a9000000ff054002700000007f06400270000000000556022f00000000055500a9000000ff065002700000007f07500270000000000667022f000000c00220027000002357022001970000004003300210000000000223019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c1044002700000235804400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c2055002700000235905500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c3033002700000235a03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c4044002700000235b04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c5055002700000235c055001970000235d0220009a000000000225019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c6033002700000235e03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c7044002700000235f04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c8055002700000232805500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c9033002700000236003300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000ca044002700000236104400197000000000242019f000000cb045002700000236204400197000000000242019f000000cc033002700000236303300197000000000232019f00000000036600a9000000cd033002700000236403300197000000000232019f00002365022000d1000023660420009a0000234d034001970000234d0030009c000000010500008a00000000030000190000000003056019000023670620009a0000234d026001970000234d0020009c0000000002000019000000000205601900000080022002100000008005600270000000000225019f00000080033002100000008005400270000000000335019f000000800000008b00000000030460190000236800400198000023220400004100000000040060190000232305300197000000000454019f000000800000008b00000000020660190000232305200197000023680060019800002322060000410000000006006019000000000656019f000000000046004b00003b260000613d0000234d054001970000234d0050009c000000010500008a000000000500c0190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000000000654013f0000000006560049000023690060009c00007f960000813d00000001006001900000236b050000410000236a050060410000236c075000d100000080077002700000000200600190000000000507c0190000236d075000d100000080077002700000000400600190000000000507c0190000236e075000d100000080077002700000000800600190000000000507c0190000236f075000d100000080077002700000001000600190000000000507c01900002370075000d100000080077002700000002000600190000000000507c01900002371075000d100000080077002700000004000600190000000000507c01900002372075000d100000080077002700000008000600190000000000507c01900002373075000d100000080077002700000010000600190000000000507c01900002374075000d100000080077002700000020000600190000000000507c01900002375075000d100000080077002700000040000600190000000000507c01900002376075000d100000080077002700000080000600190000000000507c01900002377075000d100000080077002700000100000600190000000000507c01900002378075000d100000080077002700000200000600190000000000507c01900002379075000d100000080077002700000400000600190000000000507c0190000237a075000d100000080077002700000800000600190000000000507c0190000237b075000d100000080077002700000237c00600198000000000507c0190000237d075000d100000080077002700000237e00600198000000000507c0190000237f075000d100000080077002700000238000600198000000000507c019000023810060019800002382065000d1000000800560c270000023200040009c000048080000213d000000000004004b000000010400c08a000000000554c0d900000020045002700000231400500198000000010440c0390000232b04400197000000000014004b000000000203a01900003b250000013d0000000e05000039000000000305041a00000000034300190000484d0000013d000000010660008a00000080033002100000232406600197000000000336019f0000008006400210000000000363004b00000000070000390000000107004039000000000373004b000048310000613d000000000035004b000000280000a13d00000000405400d90000236a7050012900000000044700a900000000805400d900000000045000890000000007450170000000000475c0d90000000004006019000000000586004b000000010330408a000000000007004b000048330000613d00000000057500d9000000000670008900000000067600d9000000010660003900000000033600a9000048340000013d00000000035600d90000484a0000013d000000000500001900000003064000c9000000020660015f00000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000044600a9000000020440008900000000046400a9000000000335019f00000000033400a90000000905000039000000000405041a0000000003340019000000000035041b000023c6022001970000008001100210000000000121019f0000000f02000039000000000012041b00000001010000390000000f0200002900000000001204350000001901000029000000000201043300000028010000290000000001010433000000a00300043d000000000003004b000048620000613d0000000803000039000000000303041a002700000003001d002400000002001d000048660000013d0000000703000039000000000303041a002400000003001d002700000002001d0000000902000039000000000202041a002300000002001d00000013020000290000000002020433002b00000002001d00000010020000290000000002020433002500000002001d00000011020000290000000002020433002900000002001d000000400300043d0000004002300039000000400020043f0000232302100197000023210010019800002322010000410000000001006019000000000121019f0000002002300039002d00000002001d0000000000020435002c00000003001d0000000000030435000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b0000000202100039000000000302041a0000002403300069000000000032041b0000000302100039000000000302041a0000002703300069000000000032041b0000000402100039000000000302041a0000002303300069000000000032041b0000000502100039000000000302041a000000250430006900002390044001970000239205300197000000000454019f000000380530027000000029055000690000003805500210000023dd05500197000000000454019f000000d8033002700000002b03300069000000d8033002100000239103300197000000000334019f000000000032041b000000000201041a000023200020009c0000000003000019000023250300204100000080022002700000232602200197000000000223019f0000002c0300002900000000002304350000000101100039000000000101041a0000232603100197000023270010019800002325010000410000000001006019000000000131019f0000002d030000290000000000130435000000a00300043d000000000003004b000048ce0000613d00000000022000890000232603200197000023270020019800002325020000410000000002006019000000000232019f0000002c03000029000000000023043500000000011000890000232603100197000023270010019800002325010000410000000001006019000000000131019f0000002d030000290000000000130435000000210100002900000000010104330000232403100197000000000112001900002324011001970000232700200198000048d80000c13d000000000031004b000048da0000813d00001b890000013d000000000031004b000083f10000813d000000210200002900000000001204350000001501000029000000000101043300002324021001970000002d03000029000000000303043300000000011300190000232401100197000023270030019800003b1c0000c13d000000000021004b00003b1e0000813d00001b890000013d0000000d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000321019f0000001d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000121019f000000000031004b00004e0b0000c13d0000002a0100002900000000010104330000232b011001970000000602000039000000000202041a0000234702200197000000000112019f00004e870000013d002900000002001d000000000001004b0000492f0000c13d00000029010000290000234d0010009c00004edb0000813d000000400100043d000001400200043d0000232b00200198000053900000613d0000000202000039000000000202041a000000240310003900000019040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000049280000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000491e0000413d000049280000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000053370000c13d000000010200003900000001040000310000534a0000013d0000002d010000290000234d0010009c00004f110000813d000000400100043d000001400200043d0000232b00200198000054930000613d0000000302000039000000000202041a000000240310003900000019040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000049540000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000494a0000413d000049540000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c0000534f0000c13d00000001020000390000000104000031000053620000013d000000010ff0008a000000000cd900a90000232401f001970000000001e100190000000001c1004b000000000e000039000000010e004039000000000ee1004b0000497c0000613d0000236a00e0009c000000280000813d0000232401d0019700000000011900a9000000010d100270000023950dd001970000007f01100210000000800e100270000000000ded019f002823270010019b000023260ed001970000007f0fd002700000232400f0009c000049760000413d0000232600e0009c000023250ee0009a000000010ff0008a000049700000413d0000008001d0021000000028011001af000000ff0df002100000000001d100190000007f01100270000000000c1c0049000000000da700490000240500d0009c00000000010d00190000000001006019000000001e9100a9000000800ae0027000000080011002100000000001a1019f00002324af10012a000023940010009c00004a920000213d0000232401e00197000000800aa0021000000000011a019f000023240af000d100000000001a004b000000010ff0208a00004a930000013d0000001604000029000000140040006c000083f10000813d00000015030000290000008003300270000000160030006b00004f670000a13d000000400100043d0000004402100039000023e403000041000083f40000013d000000400100043d002600000001001d00001a2a0000013d00000000011400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231403100197000000000003004b000049b40000c13d00000060040000390000008001000039000049d20000013d0000003f013000390000240401100197000000400400043d0000000001140019000000400010043f000000000134043600002404063001980000001f0730018f00000000056100190000000308000367000049c50000613d000000000908034f000000000a010019000000009b09043c000000000aba043600000000005a004b000049c10000c13d000000000007004b000049d20000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000002004b00000da10000613d0000000002040433000000000002004b000049dc0000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d0000002b0000006b00004a5f0000c13d000000400100043d00000044021000390000006003000039001e00000003001d0000000000320435000000240210003900000022030000290000000000320435000023cc02000041000000000021043500000004021000390000002303000029000000000032043500000064021000390000002a03000029000000000032043500002404023001980000001f0330018f002d00840010003d0000002d0120002900000029040000290000000204400367000049fb0000613d000000000504034f0000002d06000029000000005705043c0000000006760436000000000016004b000049f70000c13d000000000003004b00004a080000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000002d020000290000002a012000290000000000010435000000400100043d002900000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c00004a390000613d0000002a020000290000001f0220003900002404022001970000002d0220002900000029030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d000300000001035500000001002001900000573e0000613d0000000201000039000000000101041a000000400200043d000000240320003900000026040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b00004a580000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b00004a4e0000413d00004a580000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c0000556d0000c13d00000001020000390000000101000031000055800000013d0000000301000039000000000101041a000000400200043d00000024042000390000002005000029000000000054043500000044042000390000002b050000290000000000540435000000400500043d000000000454004900000000064504360000006402200039000000400020043f0000232b021001970000000001060433000023b701100197000023b8081001c70000000000860435000000400100043d0000000004050433000000200040008c0000000007040019000000000501001900004a800000413d0000000005010019000000000704001900000000680604340000000005850436000000200770008a000000200070008c00004a7a0000813d000000000806043300000003067002100000010006600089000000010660020f000000000007004b00000000060060190000000007600089000000000778016f000000010660008a0000000008050433000000000668016f000000000676019f0000000000650435000000400600043d0000000005000414000000040020008c00004c970000c13d000000010200003900004caa0000013d000000010ff0008a000000800bc00270000000000a9d00a90000232401f001970000000001e100190000000001a1004b000000000c000039000000010c004039000000000cc1004b00004a9e0000c13d000000800ca0027000004ab70000013d0000236a00c0009c000000280000813d0000232401d0019700000000019100a9000000010910027000002395099001970000007f01100210000000800c1002700000000009c9019f000023270c100197000023260e9001970000007f0d9002700000232400d0009c00004ab00000413d0000232600e0009c000023250ee0009a000000010dd0008a00004aaa0000413d00000080019002100000000001c1019f000000ff09d0021000000000019100190000007f0110027000000000011a0049000000800c100270000000220000006b00004abd0000613d0000239301400197000000000161019f0000001b04000029000000000014041b000000000082041b000000000075041b0000000000cb01a000004ac90000613d0000008001c0021000000000011300190000000002b3001900002324022001970000239301100197000000000121019f0000002b02000029000000000012041b00000022010000290000234d0010009c00004b070000413d0000002701000029000000010010019000004aea0000613d0000002d01000029000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000001041b0000000102100039000000000302041a0000239303300197000000000032041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000501100039000000000001041b0000001a0000006b00004b070000c13d0000002901000029000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b000000000001041b0000000102100039000000000302041a0000239303300197000000000032041b0000000202100039000000000002041b0000000302100039000000000002041b0000000402100039000000000002041b0000000501100039000000000001041b000000e00200043d000023270020019800002325010000410000000001006019000023260320019700000000033101a0002800010000003d00004b950000c13d002100000000001d002900000000001d002d00000000001d002700010000003d002000000000001d000000400100043d00000044021000390000006003000039002200000003001d000000000032043500000024021000390000002d030000290000000000320435000023e502000041000000000021043500000004021000390000002903000029000000000032043500000064021000390000002603000029000000000032043500002404023001980000001f0330018f002b00840010003d0000002b012000290000002504000029000000020440036700004b310000613d000000000504034f0000002b06000029000000005705043c0000000006760436000000000016004b00004b2d0000c13d000000000003004b00004b3e0000613d000000000224034f0000000303300210000000000401043300000000043401cf000000000434022f000000000202043b0000010003300089000000000232022f00000000023201cf000000000242019f00000000002104350000002b0200002900000026012000290000000000010435000000400100043d002500000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c00004b6f0000613d00000026020000290000001f0220003900002404022001970000002b0220002900000025030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000057570000613d000000400100043d000000270000006b000057070000613d000000280000006b000059150000613d00000060021000390000002d03000029000000000032043500000040021000390000002903000029000000000032043500000020021000390000002403000029000000000032043500000000020004110000232b022001970000000000210435000000400200043d00000000012100490000008001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000403000039000023e60400004100000023050000290000342b0000013d000001200100043d0000232304100197000023210010019800002322010000410000000001006019000000000141019f000000a00400043d0000232305400197000023210040019800002322040000410000000004006019000000000554019f0000234d075001970000234d08100197000000000478013f000000000078004b00000000060000190000234d06004041000000000051004b00000000090000190000234d090080410000234d0040009c000000000609c019000000000006004b00004ce90000c13d000000010400008a0000234d0070009c000000000100001900000000010460190000000101100210000000ff06500270000000000616019f000000ff0000008b0000000006056019000000000765013f0000000007670049000023690070009c00007f960000813d00000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200050009c00004c0d0000213d000000000005004b000000000664c0d9000000c00500043d0000232307500197000023210050019800002322050000410000000005006019000000000575019f0000234d075001970000234d0070009c000000000700001900000000070460190000000107700210000000ff08500270000000000778019f000000ff0000008b000000000705601900002314006001980000000001000039000000010100c039000000000875013f0000000007780049000023690070009c00007f960000813d0000002006600270000000000116001900000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200050009c00004c770000213d000000000005004b000000000664c0d900000020056002700000231400600198000000010550c0390000232b065001970000232b07100197000000000067004b00000000060500190000000006012019000000000501a01900000000075600490000232b015001970000232b05700197000023200030009c0000578e0000a13d000000000001004b000000280000613d0000239c022000d10000239c0720019700000000327500a9000000010800008a000000000083004b0000706e0000613d000023249430012a0000008008200270000023940030009c0000702d0000213d0000008009900210000000000989019f000023240a4000d100000000009a004b000000010440208a0000702e0000013d00000000011400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231403100197000000000003004b00004caf0000c13d0000006004000039000000800100003900004ccd0000013d0000003f013000390000240401100197000000400400043d0000000001140019000000400010043f000000000134043600002404053001980000001f0630018f0000000003510019000000030700036700004cc00000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000039004b00004cbc0000c13d000000000006004b00004ccd0000613d000000000557034f0000000306600210000000000703043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000530435000000000002004b00000da10000613d0000000002040433000000000002004b000049de0000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d000049de0000013d000000000001004b000000280000613d00000060022002100000239c0720019700000000237500a9000000000042004b000058a30000613d000023249420012a0000008008300270000023940020009c0000579f0000213d0000008009900210000000000989019f000023240a4000d100000000009a004b000000010440208a000057a00000013d000000c00400043d0000232306400197000023210040019800002322040000410000000004006019000000000464019f0000234d06400197000000000968013f000000000068004b00000000080000190000234d08002041000000000041004b00000000010000190000234d010040410000234d0090009c000000000801c019000000000008004b000050820000613d0000001001000039000000000101041a002b00000001001d000001400100043d002d00000001001d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000001800800043d000001600200043d000001200500043d000000000401043b0000002d010000290000ffff0a10018f0000ffff00a0008c000015df0000613d0000002b010000290000232401100197000000400700043d0000008003700039000000400030043f0000001403a00039000000000303041a00000060067000390000232c0030009c00000000090000390000000109002039000000000096043500000020063002700000232a066001970000238c0030019800002329090000410000000009006019000000000b69019f00000058063002700000232b096001970000004006700039000000000096043500000020097000390000000000b90435000023140b3001970000000000b7043500002314034001970000000000b3004b00004d780000613d0000ffff0b20018f0000ffff0c80018f0000000000bc004b000000000b000039000000010b00a039000000010c20008a0000ffff0cc0018f0000000000ca004b000000000a000039000000010a00c0390000000000ab01a000000000020860190000ffff08200190000015df0000613d000000400a00043d000000800ba000390000004000b0043f000000600ba0003900000000000b0435000000400ba0003900000000000b0435000000200ba0003900000000000b043500000000000a0435000000000a070433000000400700043d000000800b7000390000004000b0043f000023230b5001970000232100500198000023220500004100000000050060190000000005b5019f0000000004a40049000023140a40019700000000055a00a9000000000a370436000000000909043300000000055900190000232a09500197000023280050019800002329050000410000000005006019000000000595019f00000000005a043500000000060604330000006009700039000000010a0000390000000000a9043500000080044002100000238d04400197000000010010008c0000000109000039000000000901201900000000049400d90000002d0900002900000001099000390000ffff0990018f00000000808900d9000000000446001900000040067000390000232b044001970000000000460435000000200550021000002398055001970000005804400210000000000445019f000000000334019f00002385033001c7002d00000008001d0000001404800039000000000034041b0000002d03000029000000b80330021000002399033001970000000605000039000000000405041a0000239a04400197000000000334019f000000c8022002100000239b02200197000000000223019f000000000025041b000000c00200043d0000232303200197000023210020019800002322020000410000000002006019000000000232019f000000010900008a0000234d032001970000234d0030009c000000000300001900000000030960190000000103300210000000ff04200270000000000334019f000000ff0000008b0000000003026019000000000532013f0000000006350049000023690060009c00007f960000813d000001000300043d00000001006001900000236b050000410000236a050060410000236c075000d100000080077002700000000200600190000000000507c0190000236d075000d100000080077002700000000400600190000000000507c0190000236e075000d100000080077002700000000800600190000000000507c0190000236f075000d100000080077002700000001000600190000000000507c01900002370075000d100000080077002700000002000600190000000000507c01900002371075000d100000080077002700000004000600190000000000507c01900002372075000d100000080077002700000008000600190000000000507c01900002373075000d100000080077002700000010000600190000000000507c01900002374075000d100000080077002700000020000600190000000000507c01900002375075000d100000080077002700000040000600190000000000507c01900002376075000d100000080077002700000080000600190000000000507c01900002377075000d100000080077002700000100000600190000000000507c01900002378075000d100000080077002700000200000600190000000000507c01900002379075000d100000080077002700000400000600190000000000507c0190000237a075000d100000080077002700000800000600190000000000507c0190000237b075000d100000080077002700000237c00600198000000000507c0190000237d075000d100000080077002700000237e00600198000000000507c0190000237f075000d100000080077002700000238000600198000000000507c019000023810060019800002382065000d1000000800560c270000023200020009c00004dea0000213d000000000002004b000000000559c0d900000020025002700000231400500198000000010220c0390000232b062001970000232b05300197000000000065004b000000000b020019000000000b032019000000000203a01900000000062b00490000232b072001970000232b0a600197000000e00200043d002d23270020019c00006dce0000c13d000000000007004b000000280000613d00000060042002100000239c0d4001970000000069da00a9000000010c00008a0000000000c6004b000079e50000613d00002324e860012a000000800c900270000023940060009c000079c20000213d0000008004e002100000000004c4019f000023240e8000d100000000004e004b000000010880208a000079c30000013d0000000c0100002900000000010104330000ffff0a10018f0000ffff00a0008c000015df0000613d0000000702000029000000000b020433000000060200002900000000020204330000000b04000029000000000404043300000013050000290000000006050433000000400700043d0000008005700039000000400050043f0000001405a00039000000000505041a00000060087000390000232c0050009c00000000090000390000000109002039000000000098043500000020085002700000232a088001970000238c0050019800002329090000410000000009006019000000000c89019f00000058085002700000232b098001970000004008700039000000000098043500000020097000390000000000c90435000023140c5001970000000000c7043500002314056001970000000000c5004b00004e750000613d0000ffff0c20018f0000ffff0db0018f0000000000cd004b000000000c000039000000010c00a039000000010d20008a0000ffff0dd0018f0000000000da004b000000000a000039000000010a00c0390000000000ac01a000000000020b60190000ffff0a200190000015df0000613d000000400b00043d000000800cb000390000004000c0043f000000600cb0003900000000000c0435000000400cb0003900000000000c0435000000200cb0003900000000000c043500000000000b04350000000007070433000000400b00043d000000800cb000390000004000c0043f0000000006760049000023140760019700000000033700a900000000075b0436000000000909043300000000033900190000232a09300197000023280030019800002329030000410000000003006019000000000c93019f0000000000c7043500000000070804330000006008b00039000000010c0000390000000000c8043500000080066002100000238d066001970000232404400197000000010040008c000000010400a03900000000044600d900000001011000390000ffff0110018f0000000010a100d900000000044700190000004006b000390000232b0440019700000000004604350000232803300197000000000393019f00000020033002100000005804400210000000000334019f000000000353019f00002385033001c70000001404100039000000000034041b000000b8011002100000239901100197000000c8022002100000239b02200197000000000112019f0000002a0200002900000000020204330000232b02200197000000000121019f0000000602000039000000000202041a000023de02200197000000000121019f0000001d020000290000000002020433000000a0022002100000234b02200197000000000121019f0000000602000039000000000012041b0000002101000029000000000101043300002324011001970000000b0200002900000000020204330000232402200197000000000021004b00004e960000613d0000001003000039000000000203041a0000239302200197000000000112019f000000000013041b000000150100002900000000010104330000232401100197000000050200002900000000020204330000232402200197000000000021004b00004ea30000613d0000000f03000039000000000203041a0000239302200197000000000112019f000000000013041b0000001901000029000000000201043300000016010000290000000001010433002b23240010019b000000a00300043d000000000003004b000050060000c13d0000000803000039000000000023041b0000002b0000006b00004eb40000613d00000080011002100000000a02000039000000000302041a0000000001130019000000000012041b00000017010000290000000001010433002800000001001d0000001b010000290000000001010433002700000001001d0000000301000039000000000101041a002500000001001d000000000100041a000000400300043d000023d102000041002900000003001d0000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00005a200000c13d000000010300003100005a510000013d0000000201000039000000000101041a000000800200043d0000232b02200197000000400300043d000000240430003900000000002404350000002902000029000000000220008900000044043000390000000000240435000000400600043d000000000264004900000000052604360000006402300039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003060433000000200030008c0000000006030019000000000401001900004efe0000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00004ef80000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000052b50000c13d00000001020000390000000104000031000052c80000013d0000000301000039000000000101041a000000800200043d0000232b02200197000000400300043d000000240430003900000000002404350000002d02000029000000000220008900000044043000390000000000240435000000400600043d000000000264004900000000052604360000006402300039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003060433000000200030008c0000000006030019000000000401001900004f340000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00004f2e0000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000052cd0000c13d0000000103000031000052e00000013d000000000100041a000023d8020000410000002603000029000000000023043500000000020004110000232b0220019700000004033000390000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002a00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002a02000029000000040020008c0000593b0000c13d00000001030000310000596c0000013d000000140000006b00004f950000c13d0000001f0300002900002321003001980000232203000041000000000300601900000020033001af0000002a0030006b00000000040000190000234d040020410000234d03300197000000210530014f000000210030006b00000000060000190000234d060040410000234d0050009c000000000604c0190000000503100039000000000006004b00004f910000c13d00000002041000390000001e05000029000000000054041b00000003041000390000002305000029000000000054041b00000004041000390000001c05000029000000000054041b000000190400002900002390044001970000001b05000029000000d8055002100000239105500197000000000454019f00000018050000290000003805500210000000000454019f000000000503041a0000239205500197000000000454019f000000000043041b000000000403041a0000232c0440019700002385044001c7000000000043041b000023930320019700000016033001af000000000031041b000023200020009c0000000003000019000023250300204100000080022002700000232602200197000000000223019f000000240220006a0000232700200198000023250300004100000000030060190000232604200197000000000343019f000000000032004b000000280000c13d00000017040000290000001a0340014f000000800220021000000016022001af000000000021041b001c00000003001d000000010030019000004fea0000613d0000000f01000039000000000101041a000000a00210027000002323022001970000233a001001980000232201000041000000000100601900000000012101a0000015df0000613d0000234d2110012c0000234d0220c0990000002c030000290000234d4330012c000000000113013f0000234d0440c09900000000252400d9000000250000006b0000000003020019000000000330c089000000ff011002120000000004510049000000000114019f0000000001056019000000000005004b000000000501c019001b00000005001d000000000002004b000000000203c019000023230120019700002321002001980000232202000041000000000200601900000000001201a0000000280000c13d0000001b020000290000232100200198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001b02000029000000ff0220018f000000010220020f000000000101043b000000000301041a000000000223013f000000000021041b000000160000006b0000000001000039000000010100c039000000140000006b00000000020000390000000102006039000000000112013f0000000100100190000058d70000613d001b00010000003d00000e580000013d000000000007004b000000280000613d0000239c042000d10000239c0c4001970000000068ca00a9000000000096004b00005a0d0000613d00002324e960012a000000800d800270000023940060009c000059da0000213d0000008004e002100000000004d4019f000023240e9000d100000000004e004b000000010990208a000059db0000013d0000000703000039000000000023041b0000002b0000006b000050110000613d0000000a02000039000000000302041a000000000113001900002324011001970000239303300197000000000131019f000000000012041b00000017010000290000000001010433002800000001001d0000001b010000290000000001010433002700000001001d0000000201000039000000000101041a002500000001001d000000000100041a000000400300043d000023d102000041002900000003001d0000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00005acd0000c13d000000010300003100005afe0000013d000000010440008a0000008003300210000000000383019f00002324044001970000000004430019000023249340012a0000232408200197000023940040009c000051610000213d0000008009900210000000000989019f000023240a3000d100000000009a004b000000010330208a000051620000013d000000010550008a0000008003300210000000000363019f00002324055001970000000005530019000023247350012a0000232406100197000023940050009c000051790000213d0000008007700210000000000767019f00002324083000d1000000000078004b000000010330208a0000517a0000013d000000010440008a0000008002200210000000000282019f00002324044001970000000004420019000023249240012a0000232408300197000023940040009c000051930000213d0000008009900210000000000989019f000023240a2000d100000000009a004b000000010220208a000051940000013d000023240320019700000000533500a9000000000015004b000058bd0000613d000023247150012a0000008006300270000023940050009c000057ae0000213d0000008007700210000000000767019f00002324081000d1000000000078004b000000010110208a000057af0000013d000000010110008a0000008005500210000000000565019f00002324011001970000000005150019000023247150012a0000232406300197000023940050009c000051ad0000213d0000008007700210000000000767019f00002324081000d1000000000078004b000000010110208a000051ae0000013d000000010100008a0000234d0070009c000000000700001900000000070160190000000107700210000000ff08500270000000000878019f000000ff0000008b0000000008056019000000000985013f0000000009890049000023690090009c00007f960000813d00000001009001900000236b080000410000236a080060410000236c0a8000d1000000800aa00270000000020090019000000000080ac0190000236d0a8000d1000000800aa00270000000040090019000000000080ac0190000236e0a8000d1000000800aa00270000000080090019000000000080ac0190000236f0a8000d1000000800aa00270000000100090019000000000080ac019000023700a8000d1000000800aa00270000000200090019000000000080ac019000023710a8000d1000000800aa00270000000400090019000000000080ac019000023720a8000d1000000800aa00270000000800090019000000000080ac019000023730a8000d1000000800aa00270000001000090019000000000080ac019000023740a8000d1000000800aa00270000002000090019000000000080ac019000023750a8000d1000000800aa00270000004000090019000000000080ac019000023760a8000d1000000800aa00270000008000090019000000000080ac019000023770a8000d1000000800aa00270000010000090019000000000080ac019000023780a8000d1000000800aa00270000020000090019000000000080ac019000023790a8000d1000000800aa00270000040000090019000000000080ac0190000237a0a8000d1000000800aa00270000080000090019000000000080ac0190000237b0a8000d1000000800aa002700000237c0090019800000000080ac0190000237d0a8000d1000000800aa002700000237e0090019800000000080ac0190000237f0a8000d1000000800aa00270000023800090019800000000080ac019000023810090019800002382098000d1000000800890c270000023200050009c000050e10000213d000000000005004b000000000881c0d90000234d0060009c000000000500001900000000050160190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000000000654013f000000000756004900002314008001980000000005000039000000010500c039000023690070009c00007f960000813d0000002006800270000000000556001900000001007001900000236b060000410000236a060060410000236c086000d100000080088002700000000200700190000000000608c0190000236d086000d100000080088002700000000400700190000000000608c0190000236e086000d100000080088002700000000800700190000000000608c0190000236f086000d100000080088002700000001000700190000000000608c01900002370086000d100000080088002700000002000700190000000000608c01900002371086000d100000080088002700000004000700190000000000608c01900002372086000d100000080088002700000008000700190000000000608c01900002373086000d100000080088002700000010000700190000000000608c01900002374086000d100000080088002700000020000700190000000000608c01900002375086000d100000080088002700000040000700190000000000608c01900002376086000d100000080088002700000080000700190000000000608c01900002377086000d100000080088002700000100000700190000000000608c01900002378086000d100000080088002700000200000700190000000000608c01900002379086000d100000080088002700000400000700190000000000608c0190000237a086000d100000080088002700000800000700190000000000608c0190000237b086000d100000080088002700000237c00700198000000000608c0190000237d086000d100000080088002700000237e00700198000000000608c0190000237f086000d100000080088002700000238000700198000000000608c019000023810070019800002382076000d1000000800670c270000023200040009c000051440000213d000000000004004b000000000661c0d900000020046002700000231400600198000000010440c0390000232b064001970000232b07500197000000000067004b00000000060500190000000006042019000000000504a01900000000046500490000232b05400197000023200030009c00005b750000a13d0000000002200089000023240120019700000000311500a9000000010500008a000000000053004b000070860000613d000023247530012a0000008006100270000023940030009c0000703c0000213d0000008007700210000000000767019f00002324085000d1000000000078004b000000010550208a0000703d0000013d000000010330008a0000008004400210000000000484019f000023240330019700000000083400190000232b04600197000000000328004b00000000060000390000000106004039000000000363004b000051700000c13d000000000004004b000000280000613d00000000024200d9000057e30000013d000000000034004b000000280000a13d00000000504500d900000000604700d9000023240040009c000055d20000213d00000000056500a900000000704500d9000057be0000013d000000010330008a0000008005500210000000000565019f00002324033001970000000005350019000000000315004b00000000050000390000000105004039000000000353004b000051850000c13d0000006001100270000051900000013d000023960030009c000000280000813d00000000022400a90000239702200197000000000121004b000000010330408a0000006001100270000000a002300210000000000112019f0000234d0010009c000000280000813d0000000004100089000000000700001900002d260000013d000000010220008a0000008004400210000000000484019f000023240220019700000000042400190000232b02600197000000000434004b00000000060000390000000106004039000000000664004b000051a40000c13d000000000002004b000000280000613d00000000402500d900000000502700d900000000032300d90000580f0000013d000000000062004b000000280000a13d00000000402500d900000000502700d9000023240020009c000056200000213d00000000075400a900000000902700d9000057ea0000013d000000010110008a0000008005500210000000000565019f00002324011001970000000001150019000000000131004b00000000050000390000000105004039000000000551004b000051bb0000c13d00000000012400a900000060043002700000239701100197000051c40000013d000023960050009c000000280000813d00000000012400a90000239701100197000000000213004b000000010550408a0000006002200270000000a003500210000000000423019f000000000001004b000051c80000613d000000010440003a000000280000613d0000234d0040009c000000000700001900002d260000413d000000280000013d0000000f01000039000000000101041a000000a00210027000002323022001970000233a001001980000232201000041000000000100601900000000012101a0000015df0000613d0000234d2110012c0000234d0220c0990000002a030000290000234d4330012c000000000113013f0000234d0440c09900000000252400d9000000210000006b0000000003020019000000000330c089000000ff011002120000000004510049000000000114019f0000000001056019000000000005004b000000000501c019001b00000005001d000000000002004b000000000203c019000023230120019700002321002001980000232202000041000000000200601900000000001201a0000000280000c13d0000001b020000290000232100200198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001b02000029000000ff0220018f000000010220020f000000000101043b000000000301041a000000000223013f000000000021041b001b00000000001d000007e50000013d00000000005804350000000000670435000000a005000039000000000054043500000000020204330000000000230435002900000002001d000000000002004b000052210000613d00000000020000190000002b05000029000000290600002900000000035200190000000004210019000000000404043300000000004304350000002002200039000000000062004b000052160000413d000052210000a13d00000029020000290000002b012000290000000000010435000000400100043d002d00000001001d0000232f0100004100000000001004430000002c0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00005c230000c13d000000010300003100005c570000013d00000025020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a00600003900000000006504350000008405100039000000280600002900000000006504350000006405100039002500000007001d00000000007504350000004405100039000000000035043500000027030000290000235005300197000000a403100039002700000005001d0000000000530435000000e40310003900000000040404330000000000430435002901040010003d002a00000004001d000000000004004b0000526a0000613d00000000010000190000002a05000029000000290600002900000000036100190000000004120019000000000404043300000000004304350000002001100039000000000051004b0000525f0000413d0000526a0000a13d00000029020000290000002a012000290000000000010435000000400100043d002300000001001d0000232f0100004100000000001004430000002c0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c000052960000613d0000002a020000290000001f022000390000240402200197000000290220002900000023030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002d03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000303000039000023d304000041000000250500002900000027060000298c4b8c410000040f000000010020019000003a810000c13d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000052e50000c13d00000060030000390000008001000039000053030000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000400010020019300030000000103550000006001100270000123140010019d0000231403100197000000000003004b0000530e0000c13d000000600200003900000080010000390000532c0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000052f60000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000052f20000c13d000000000006004b000053030000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b000049060000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d000049060000013d0000003f013000390000240401100197000000400200043d0000000001120019000000400010043f000000000132043600002404043001980000001f0530018f000000000341001900000003060003670000531f0000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b0000531b0000c13d000000000005004b0000532c0000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000040000006b00000da10000613d0000000002020433000000000002004b000049320000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d000049320000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000053670000c13d00000060030000390000008001000039000053850000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b0000546a0000c13d00000060030000390000008001000039000054880000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000053780000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000053740000c13d000000000006004b000053850000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000002020000290000000000120435000000400100043d0000000302000039000000000202041a000000240310003900000019040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000053ae0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000053a40000413d000053ae0000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000053b50000c13d00000001020000390000000104000031000053c80000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000053cd0000c13d00000060030000390000008001000039000053eb0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000053de0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000053da0000c13d000000000006004b000053eb0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000003020000290000000000120435000000400200043d0000004401200039000001200300043d0000006004000039002800000004001d000000000041043500000024012000390000002d040000290000000000410435000023df010000410000000000120435000000040120003900000029040000290000000000410435000000640420003900000000130304340000000000340435002a00840020003d002c00000003001d000000000003004b000054160000613d00000000020000190000002a0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c0000540b0000413d000054160000a13d0000002a020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c000054440000613d0000002c020000290000001f0220003900002404022001970000002a0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000072ba0000613d0000000301000039000000000101041a000000400200043d000000240320003900000019040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b000054630000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000054590000413d000054630000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c00006f990000c13d0000000102000039000000010100003100006fac0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f000000000451001900000003070003670000547b0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000054770000c13d000000000006004b000054880000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000003020000290000000000120435000000400100043d0000000202000039000000000202041a000000240310003900000019040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000054b10000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000054a70000413d000054b10000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000054b80000c13d00000001020000390000000104000031000054cb0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000054d00000c13d00000060030000390000008001000039000054ee0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000054e10000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000054dd0000c13d000000000006004b000054ee0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000002020000290000000000120435000000400200043d0000004401200039000001200300043d0000006004000039002800000004001d000000000041043500000024012000390000002d040000290000000000410435000023df010000410000000000120435000000040120003900000029040000290000000000410435000000640420003900000000130304340000000000340435002a00840020003d002c00000003001d000000000003004b000055190000613d00000000020000190000002a0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c0000550e0000413d000055190000a13d0000002a020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c000055470000613d0000002c020000290000001f0220003900002404022001970000002a0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000072d30000613d0000000201000039000000000101041a000000400200043d000000240320003900000019040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b000055660000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000555c0000413d000055660000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c00006fb00000c13d0000000102000039000000010100003100006fc30000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000055840000c13d0000008003000039000055a30000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f001e00000005001d000000000315043600002404051001980000001f0610018f00000000045300190000000307000367000055960000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000055920000c13d000000000006004b000055a30000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000001e020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d0000000002030433002d00000002001d0000000302000039000000000202041a000000400300043d000000240430003900000026050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b000055cc0000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b000055c20000413d000055cc0000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c00005b220000c13d000000010300003900005b350000013d00000000686500a9000000000064004b000057bd0000a13d0000239d0040009c00000090050000390000008005004039000000000554022f00000070070000390000008007004039000001000050008c000000080770808a0000000805508270000000100050008c00000000090500190000000409908270000000040090008c000000000a090019000000020aa08270000000020b00008a000000000ca000890000000200a0008c000000000c0b8019000000100050008c000000040770808a000000040090008c000000020770808a00000000057c0019000000ff0750018f00000000067601cf0000240507500167000000ff0770018f0000000109800270000000000779022f000000000a76019f00000000065401cf000000800760027000000000dc7a00d900000000095801cf000000800b9002700000232408600197000055ff0000013d000000000d7d0019000000010cc0008a0000232400d0009c000056060000813d0000239e00c0009c000055fb0000213d000000000e8c00a9000000800fd00210000000000fbf019f0000000000fe004b000055fb0000213d000023240cc00197000000000c6c00a9000000800aa00210000000000aba019f000000000aca004900000000cb7a00d90000232409900197000056120000013d000000000c7c0019000000010bb0008a0000232400c0009c000056190000813d0000239e00b0009c0000560e0000213d000000000d8b00a9000000800ec00210000000000e9e019f0000000000ed004b0000560e0000213d0000232407b0019700000000066700a90000008007a00210000000000797019f0000000006670049000000000756022f000057be0000013d000000008a5400a9000000000082004b000057e90000a13d0000239d0020009c00000090070000390000008007004039000000000772022f00000070090000390000008009004039000001000070008c000000080990808a0000000807708270000000100070008c000000000b070019000000040bb082700000000400b0008c000000000c0b0019000000020cc08270000000020d00008a000000000ec000890000000200c0008c000000000e0d8019000000100070008c000000040990808a0000000400b0008c000000020990808a00000000079e0019000000ff0970018f00000000089801cf0000240509700167000000ff0990018f000000010ba0027000000000099b022f00290000009801a300000000087201cf000000800980027000000029fe9000f9000000000a7a01cf002d0000000a001d000000800da00270000023240a8001970000564e0000013d000000000f9f0019000000010ee0008a0000232400f0009c000056550000813d0000239e00e0009c0000564a0000213d000000000bae00a9000000800cf00210000000000cdc019f0000000000cb004b0000564a0000213d000023240be00197000000000b8b00a9000000290c000029000000800cc00210000000000cdc019f0029000000bc005100000029ed9000f90000002d0b000029000023240bb00197000056630000013d000000000e9e0019000000010dd0008a0000232400e0009c0000566a0000813d0000239e00d0009c0000565f0000213d000000000fad00a9000000800ce00210000000000cbc019f0000000000cf004b0000565f0000213d0000232409d0019700000000088900a9000000290900002900000080099002100000000009b9019f0000000008890049000000000978022f000057ea0000013d0000001404000029000000120040006c000083f10000813d00000013030000290000008003300270000000140030006b000049950000213d000000120000006b000056a70000c13d0000001e030000290000232100300198000023220300004100000000030060190000001f033001af0000002a0030006b00000000040000190000234d040020410000234d03300197000000200530014f000000200030006b00000000060000190000234d060040410000234d0050009c000000000604c0190000000503100039000000000006004b000056a30000c13d00000002041000390000001c05000029000000000054041b00000003041000390000001d05000029000000000054041b00000004041000390000001a05000029000000000054041b000000170400002900002390044001970000001905000029000000d8055002100000239105500197000000000454019f00000016050000290000003805500210000000000454019f000000000503041a0000239205500197000000000454019f000000000043041b000000000403041a0000232c0440019700002385044001c7000000000043041b000023930320019700000014033001af000000000031041b000023200020009c0000000003000019000023250300204100000080022002700000232602200197000000000223019f000000220220006a0000232700200198000023250300004100000000030060190000232604200197000000000343019f000000000032004b000000280000c13d0000001504000029000000180340014f000000800220021000000014022001af000000000021041b002700000003001d0000000100300190000056fc0000613d0000000f01000039000000000101041a000000a00210027000002323022001970000233a001001980000232201000041000000000100601900000000012101a0000015df0000613d0000234d2110012c0000234d0220c0990000002c030000290000234d4330012c000000000113013f0000234d0440c09900000000252400d9000000210000006b0000000003020019000000000330c089000000ff011002120000000004510049000000000114019f0000000001056019000000000005004b000000000501c019001a00000005001d000000000002004b000000000203c019000023230120019700002321002001980000232202000041000000000200601900000000001201a0000000280000c13d0000001a020000290000232100200198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001a02000029000000ff0220018f000000010220020f000000000101043b000000000301041a000000000223013f000000000021041b000000140000006b0000000001000039000000010100c039000000120000006b00000000020000390000000102006039000000000112013f0000000100100190000070d50000613d001a00010000003d000006990000013d0000000202000039000000000202041a00000000030004100000232b0330019700000024041000390000000000340435000000400300043d000000000434004900000000044304360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003030433000000000003004b000057260000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000571c0000413d000057260000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000059820000c13d00000001020000390000000101000031000059950000013d000000000007004b000000280000613d0000239c042000d10000239c0c4001970000000068ca00a9000000000096004b00006f540000613d00002324e960012a000000800d800270000023940060009c00006ddf0000213d0000008004e002100000000004d4019f000023240e9000d100000000004e004b000000010990208a00006de00000013d00002314023001970000001f0420018f0000234a03200198000057480000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000057440000c13d000000000004004b000057550000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d0001043000002314023001970000001f0420018f0000234a03200198000057610000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b0000575d0000c13d000000000004004b0000576e0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d00010430000000010440008a0000008003300210000000000383019f00002324044001970000000004430019000023249340012a0000232408200197000023940040009c0000586c0000213d0000008009900210000000000989019f000023240a3000d100000000009a004b000000010330208a0000586d0000013d000000010550008a0000008003300210000000000363019f00002324055001970000000005530019000023247350012a0000232406100197000023940050009c000058840000213d0000008007700210000000000767019f00002324083000d1000000000078004b000000010330208a000058850000013d000000000001004b000000280000613d00000060022002100000239c0720019700000000237500a9000000000042004b000070a00000613d000023249420012a0000008008300270000023940020009c0000704b0000213d0000008009900210000000000989019f000023240a4000d100000000009a004b000000010440208a0000704c0000013d000000010440008a0000008002200210000000000282019f00002324044001970000000004420019000023249240012a0000232408300197000023940040009c0000589e0000213d0000008009900210000000000989019f000023240a2000d100000000009a004b000000010220208a0000589f0000013d000000010110008a0000008005500210000000000565019f00002324011001970000000005150019000023247150012a0000232406300197000023940050009c000058b80000213d0000008007700210000000000767019f00002324081000d1000000000078004b000000010110208a000058b90000013d000000010700008a000000000540008900000000055401700000000006000019000000000654c0d9000000000272004b00000003046000c9000000020440015f00000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a9000000010330408a00000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a900000000066400a9000000020660008900000000044600a9000000000005004b000057dc0000c13d0000000002000019000057e10000013d00000000025200d9000000000650008900000000055600d9000000010550003900000000033500a9000000000232019f00000000022400a900000000011200d90000234d0010009c000000280000813d0000000007100089000000000400001900002d260000013d000000010900008a000000000720008900000000077201700000000008000019000000000872c0d9000000000393004b00000003098000c9000000020990015f000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a9000000010660408a000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a900000000088900a9000000020880008900000000089800a9000000000007004b000058080000c13d00000000030000190000580d0000013d00000000037300d9000000000970008900000000077900d9000000010770003900000000066700a9000000000363019f00000000033800a9000023240020009c000058140000213d00000000045400a900000000202400d9000058610000013d00000000565400a9000000000052004b000058630000a13d0000239d0020009c00000090040000390000008004004039000000000442022f00000070070000390000008007004039000001000040008c000000080770808a0000000804408270000000100040008c00000000080400190000000408808270000000040080008c00000000090800190000000209908270000000020a00008a000000000b900089000000020090008c000000000b0a8019000000100040008c000000040770808a000000040080008c000000020770808a00000000047b0019000000ff0740018f00000000057501cf0000240507400167000000ff0770018f0000000108600270000000000778022f000000000875019f00000000024201cf000000800520027000000000ba5800d900000000074601cf00000080097002700000232406200197000058410000013d000000000b5b0019000000010aa0008a0000232400b0009c000058480000813d0000239e00a0009c0000583d0000213d000000000c6a00a9000000800db00210000000000d9d019f0000000000dc004b0000583d0000213d000023240aa00197000000000a2a00a90000008008800210000000000898019f0000000008a8004900000000a95800d90000232407700197000058540000013d000000000a5a0019000000010990008a0000232400a0009c0000585b0000813d0000239e0090009c000058500000213d000000000b6900a9000000800ca00210000000000c7c019f0000000000cb004b000058500000213d000023240590019700000000022500a90000008005800210000000000575019f0000000002250049000000000242022f000000000002004b000058650000613d000000010330003a000000280000613d00000000171300d9000000000001004b000000010770c0390000234d0070009c000000000400001900002d260000413d000000280000013d000000010330008a0000008004400210000000000484019f000023240330019700000000083400190000232b04600197000000000328004b00000000060000390000000106004039000000000363004b0000587b0000c13d000000000004004b000000280000613d00000000024200d900006bfc0000013d000000000034004b000000280000a13d00000000504500d900000000604700d9000023240040009c00005b830000213d00000000056500a900000000704500d900006bd70000013d000000010330008a0000008005500210000000000565019f00002324033001970000000005350019000000000315004b00000000050000390000000105004039000000000353004b000058900000c13d00000060011002700000589b0000013d000023960030009c000000280000813d00000000022400a90000239702200197000000000121004b000000010330408a0000006001100270000000a002300210000000000112019f0000234d0010009c000000280000813d00000000041000890000000007000019000034010000013d000000010220008a0000008004400210000000000484019f000023240220019700000000042400190000232b02600197000000000434004b00000000060000390000000106004039000000000664004b000058af0000c13d000000000002004b000000280000613d00000000402500d900000000502700d900000000032300d900006c280000013d000000000062004b000000280000a13d00000000402500d900000000502700d9000023240020009c00005bd10000213d00000000075400a900000000902700d900006c030000013d000000010110008a0000008005500210000000000565019f00002324011001970000000001150019000000000131004b00000000050000390000000105004039000000000551004b000058c60000c13d00000000012400a900000060043002700000239701100197000058cf0000013d000023960050009c000000280000813d00000000012400a90000239701100197000000000213004b000000010550408a0000006002200270000000a003500210000000000423019f000000000001004b000058d30000613d000000010440003a000000280000613d0000234d0040009c0000000007000019000034010000413d000000280000013d0000000f01000039000000000101041a000000a00210027000002323022001970000233a001001980000232201000041000000000100601900000000012101a0000015df0000613d0000234d2110012c0000234d0220c0990000002a030000290000234d4330012c000000000113013f0000234d0440c09900000000252400d9000000210000006b0000000003020019000000000330c089000000ff011002120000000004510049000000000114019f0000000001056019000000000005004b000000000501c019001b00000005001d000000000002004b000000000203c019000023230120019700002321002001980000232202000041000000000200601900000000001201a0000000280000c13d0000001b020000290000232100200198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001b02000029000000ff0220018f000000010220020f000000000101043b000000000301041a000000000223013f000000000021041b001b00000000001d00000e580000013d0000000302000039000000000202041a00000000030004100000232b0330019700000024041000390000000000340435000000400300043d000000000434004900000000044304360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003030433000000000003004b000059340000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000592a0000413d000059340000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c00006a850000c13d0000000102000039000000010400003100006a980000013d0000002d0300002900000026023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002a020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d046000290000595b0000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000059550000c13d000000000005004b000059680000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000006b280000613d0000001f013000390000240402100197000000400100043d0000000002120019002600000002001d000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000000000001004b0000000002000039000000010200c039000000000021004b000000280000c13d000000000001004b00000000010004110000002b020000290000000002016019002b00000002001d000038490000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000059990000c13d0000008003000039000059b80000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002200000005001d000000000315043600002404041001980000001f0510018f00000000014300190000000306000367000059ab0000613d000000000706034f0000000008030019000000007907043c0000000008980436000000000018004b000059a70000c13d000000000005004b000059b80000613d000000000446034f0000000305500210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000000000002004b000000280000613d00000022010000290000000001010433000023200010009c000000280000213d0000001f0010008c000000280000a13d0000002102000029000000290020002a000000280000413d00000021020000290000002904200029000023cd02000041000000400100043d0000000003030433000000000034004b00004b720000a13d000038dc0000013d000000010880008a00000080046002100000000004c4019f0000232406800197000000000864001900002324e680012a000023240c900197000023940080009c000059e90000213d0000008004e002100000000004c4019f000023240e6000d100000000004e004b000000010660208a000059ea0000013d000000010990008a00000080046002100000000004d4019f0000232406900197000000000964001900002324e690012a000023240d800197000023940090009c00005a080000213d0000008004e002100000000004d4019f000023240e6000d100000000004e004b000000010660208a00005a090000013d000000010660008a00000080048002100000000004c4019f0000232406600197000000000c6400190000232b08b0019700000000049c004b00000000060000390000000106004039000000000c64004b000059fc0000c13d000000000008004b000000280000613d00000000408a00d9002800000004001d00000000408d00d9002500000004001d00000000098900d900006e140000013d0000000000c8004b000000280000a13d00000000408a00d9002800000004001d00000000408d00d9002500000004001d000023240080009c00006b2b0000213d000000250600002900000028046000b900000000608400d900006def0000013d000000010660008a00000080049002100000000004d4019f000023240660019700000000096400190000232b0bb00197000000000489004b00000000060000390000000106004039000000000964004b00005a170000c13d00000000000b004b000000280000613d0000000006b800d900006e9c0000013d00000000009b004b000000280000a13d0000000060ba00d900000000a0bc00d90000232400b0009c00006b810000213d0000000006a600a90000000060b600d900006e770000013d0000002d0300002900000029023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d0460002900005a400000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b00005a3a0000c13d000000000005004b00005a4d0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000005b0d0000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002900000002001d000023460020009c000000280000813d000000290000006b00005b0d0000613d00000025020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a00600003900000000006504350000008405100039000000280600002900000000006504350000006405100039002500000007001d00000000007504350000004405100039000000000035043500000027030000290000235005300197000000a403100039002700000005001d0000000000530435000000e40310003900000000040404330000000000430435002c01040010003d002d00000004001d000000000004004b00005a8f0000613d00000000010000190000002c0310002900000000041200190000000004040433000000000043043500000020011000390000002d0010006c00005a840000413d00005a8f0000a13d0000002c020000290000002d012000290000000000010435000000400100043d002400000001001d0000232f010000410000000000100443000000290100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002902000029000000040020008c00005abb0000613d0000002d020000290000001f0220003900002404022001970000002c0220002900000024030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000029020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002b03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f00000000020004140000717f0000013d0000002d0300002900000029023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d0460002900005aed0000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b00005ae70000c13d000000000005004b00005afa0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000005b0d0000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002900000002001d000023460020009c000000280000813d000000290000006b000071130000c13d00000026010000290000000001010433000000c00200043d002d0000001200510000001a010000290000000001010433000000000001004b0000000002000039000000010200c039000000a00100043d000000000001004b00000000030000390000000103006039000000000332013f0000001e020000290000000002020433000000010030019000006acd0000613d0029002d0000002d002d00000002001d00006ace0000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010320018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00005b3a0000c13d0000006004000039000000800200003900005b580000013d0000003f021000390000240402200197000000400400043d0000000002240019000000400020043f000000000214043600002404051001980000001f0610018f0000000001520019000000030700036700005b4b0000613d000000000807034f0000000009020019000000008a08043c0000000009a90436000000000019004b00005b470000c13d000000000006004b00005b580000613d000000000557034f0000000306600210000000000701043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000510435000000000003004b000000280000613d0000000001040433000023200010009c000000280000213d0000001f0010008c000000280000a13d0000002403000029000000230030002a000000280000413d00000024030000290000002303300029000023cd010000410000002d0030006c00005b710000213d0000001f03000029000000220030002a000000280000413d00000000030204330000001f020000290000002202200029000023ce01000041002900000003001d000000000032004b000075ba0000a13d000000400200043d00000044032000390000000000130435000019640000013d000023240320019700000000533500a9000000000015004b000070ba0000613d000023247150012a0000008006300270000023940050009c0000705a0000213d0000008007700210000000000767019f00002324081000d1000000000078004b000000010110208a0000705b0000013d00000000686500a9000000000064004b00006bd60000a13d0000239d0040009c00000090050000390000008005004039000000000554022f00000070070000390000008007004039000001000050008c000000080770808a0000000805508270000000100050008c00000000090500190000000409908270000000040090008c000000000a090019000000020aa08270000000020b00008a000000000ca000890000000200a0008c000000000c0b8019000000100050008c000000040770808a000000040090008c000000020770808a00000000057c0019000000ff0750018f00000000067601cf0000240507500167000000ff0770018f0000000109800270000000000779022f000000000a76019f00000000065401cf000000800760027000000000dc7a00d900000000095801cf000000800b900270000023240860019700005bb00000013d000000000d7d0019000000010cc0008a0000232400d0009c00005bb70000813d0000239e00c0009c00005bac0000213d000000000e8c00a9000000800fd00210000000000fbf019f0000000000fe004b00005bac0000213d000023240cc00197000000000c6c00a9000000800aa00210000000000aba019f000000000aca004900000000cb7a00d9000023240990019700005bc30000013d000000000c7c0019000000010bb0008a0000232400c0009c00005bca0000813d0000239e00b0009c00005bbf0000213d000000000d8b00a9000000800ec00210000000000e9e019f0000000000ed004b00005bbf0000213d0000232407b0019700000000066700a90000008007a00210000000000797019f0000000006670049000000000756022f00006bd70000013d000000008a5400a9000000000082004b00006c020000a13d0000239d0020009c00000090070000390000008007004039000000000772022f00000070090000390000008009004039000001000070008c000000080990808a0000000807708270000000100070008c000000000b070019000000040bb082700000000400b0008c000000000c0b0019000000020cc08270000000020d00008a000000000ec000890000000200c0008c000000000e0d8019000000100070008c000000040990808a0000000400b0008c000000020990808a00000000079e0019000000ff0970018f00000000089801cf0000240509700167000000ff0990018f000000010ba0027000000000099b022f00290000009801a300000000087201cf000000800980027000000029fe9000f9000000000a7a01cf002d0000000a001d000000800da00270000023240a80019700005bff0000013d000000000f9f0019000000010ee0008a0000232400f0009c00005c060000813d0000239e00e0009c00005bfb0000213d000000000bae00a9000000800cf00210000000000cdc019f0000000000cb004b00005bfb0000213d000023240be00197000000000b8b00a9000000290c000029000000800cc00210000000000cdc019f0029000000bc005100000029ed9000f90000002d0b000029000023240bb0019700005c140000013d000000000e9e0019000000010dd0008a0000232400e0009c00005c1b0000813d0000239e00d0009c00005c100000213d000000000fad00a9000000800ce00210000000000cbc019f0000000000cf004b00005c100000213d0000232409d0019700000000088900a9000000290900002900000080099002100000000009b9019f0000000008890049000000000978022f00006c030000013d00000029020000290000001f0220003900002404022001970000002b022000290000002d030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d0460002900005c460000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b00005c400000c13d000000000005004b00005c530000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000005c640000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000000280000813d00005c650000013d000003e80100003900000026030000290000008002300039001b00000002001d0000000000120435000000a001300039000f00000001001d0000000000010435000000a00100043d000000000001004b00000007010000390000000801006039000000000101041a000000c002300039001900000002001d0000000000120435000000e001300039001600000001001d00000000000104350000000b01000029000000000101043300002324011001970000010002300039002100000002001d00000000001204350000000501000029000000000101043300002324011001970000012002300039001500000002001d0000000000120435000000c00100043d000000000001004b0000000002000039000000010200c0390000234d0010009c00000000010000390000000101004039000000000121016f0000014002300039001a00000002001d0000000000120435000001c001300039000100000001001d0000000000010435000001a001300039000300000001001d00000000000104350000018001300039000200000001001d00000000000104350000016001300039001700000001001d0000000000010435000000000103043300005cae0000013d000000000021004b00001b890000413d00000015020000290000000000120435000000a00100043d000000000001004b00000028010000290000000002010433000000010220c08a0000232305200197000023210020019800002322010000410000000001006019000000000151019f0000001d02000029000000000012043500000026010000290000000001010433000000000001004b00006a6d0000613d0000002a010000290000000001010433000000e00200043d000000000121013f0000232b0010019800006a6d0000613d000000400200043d000000e001200039000000400010043f000000c001200039002900000001001d0000000000010435000000a001200039002400000001001d00000000000104350000008001200039002300000001001d00000000000104350000006001200039002500000001001d00000000000104350000004001200039002000000001001d00000000000104350000002001200039002800000001001d000000000001043500000000000204350000002a0100002900000000010104330000232b01100197001c00000002001d00000000001204350000001d0100002900000000010104330000232100100198000023220200004100000000020060190000000f03000039000000000303041a0000233a0030019800002322040000410000000004006019002c00000004001d000023210040019800002322040000410000000004006019000000a003300270002b23230030019b0000002b034001b0000015df0000613d0000232301100197000000000212019f000000a00100043d0000234d0020009c00005ced0000c13d000024050030009c00005ced0000c13d002d234d00000045000000000300001900005d010000013d0000234d4330012c0000234d0440c0990000234d6520012c000000000535013f0000234d0660c09900000000364600d9000000ff045002120000000005640049000000000445019f00000000040660190000234d002001980000000005030019000000000550c089000000000003004b000000000305c019000000000006004b000000000604c019002d00000006001d0000234d0020009c00005d090000413d000023230230019700002321003001980000232203000041000000000300601900000000002301a000005d090000613d0000002d02000029002d000100200092000000000001004b00005d560000613d0000002d02000029002d00000002001d000023210020019800002322010000410000000001006019002700000001001d0000232100100198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000002d03000029000000ff0330018f00000027043001af0000234d3040012c0000234d0330c0990000234d05000041000001005050011b0000234d0550c09900000000305300d90000234d004001980000000004030019000000000440c089000000000003004b000000000304c0190000000100200190000000280000613d000000000101043b000000000101041a000000ff0430018f000000020240020f000000010220008a00000000022101700000000001000039000000010100c03900005d540000613d0000236a0020009c000000800220827000000080040000390000000004004039000023c70020009c00000040044081bf0000004002208270000023aa0020009c00000020044081bf00000020022082700000237c0020009c00000010044081bf0000001002208270000001000020008c00000008044080390000000802208270000000100020008c00000004044080390000000402208270000000040020008c000000020440803900000002022082700000000003430049000000010020008c000000010330208a000000ff0430018f0000002d0240006900005da40000013d0000002d010000290000000102100039002700000002001d000023210020019800002322010000410000000001006019002d00000001001d0000232100100198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f00000027030000290000000006030019000000ff0330018f0000002d043001af0000234d3040012c0000234d0330c0990000234d05000041000001005050011b0000234d0550c09900000000305300d90000234d004001980000000004030019000000000440c089000000000003004b000000000304c0190000000100200190000000280000613d000000ff0230018f000000000101043b000000000101041a000000000121022f00000000022101d10000000001000039000000010100c039000000ff0400003900005da10000613d0000232404200198000000800220627000002356052001980000004002206270000000000004004b0000007f04000039000000ff04006039000000000005004b000000400440c08a00002314002001980000002002206270000000200440c08a0000ffff002001900000001002206270000000100440c08a000000ff002001900000000802206270000000080440c08a0000000f002001900000000402206270000000040440c08a00000003002001900000000202206270000000020440c08a000000010220018f00000000042400490000000002340049000000ff0220018f00000000026200190000002b040000290000002c034001af000000010110018f0000002004000029000000000014043500000000013200a90000232303100197000023210010019800002322010000410000000001006019000023210010019800002322020000410000000002006019000000000232019f0000234d042001970000234d054001670000234d0040009c00000000040000190000234d04004041000023d90020009c00000000060000190000234d060020410000234d0050009c000000000406c019000000000131019f000000280300002900000000001304350000234f03000041000000000004004b00005dc70000613d000023200020009c00005dca0000213d0000234e03000041000023690020009c00005dca0000413d0000002801000029000000000031043500000000010300190000232302100197000023210010019800002322010000410000000001006019000000000121019f0000234d021001970000234d0020009c000000010200008a000000000200c0190000000102200210000000ff03100270000000000223019f000000ff0000008b0000000002016019000000000321013f0000000003230049000023690030009c00007f960000813d00000001003001900000236b020000410000236a020060410000236c042000d100000080044002700000000200300190000000000204c0190000236d042000d100000080044002700000000400300190000000000204c0190000236e042000d100000080044002700000000800300190000000000204c0190000236f042000d100000080044002700000001000300190000000000204c01900002370042000d100000080044002700000002000300190000000000204c01900002371042000d100000080044002700000004000300190000000000204c01900002372042000d100000080044002700000008000300190000000000204c01900002373042000d100000080044002700000010000300190000000000204c01900002374042000d100000080044002700000020000300190000000000204c01900002375042000d100000080044002700000040000300190000000000204c01900002376042000d100000080044002700000080000300190000000000204c01900002377042000d100000080044002700000100000300190000000000204c01900002378042000d100000080044002700000200000300190000000000204c01900002379042000d100000080044002700000400000300190000000000204c0190000237a042000d100000080044002700000800000300190000000000204c0190000237b042000d100000080044002700000237c00300198000000000204c0190000237d042000d100000080044002700000237e00300198000000000204c0190000237f042000d100000080044002700000238000300198000000000204c019000023810030019800002382032000d1000000800230c270000023200010009c00005e2f0000213d000000000001004b000000010100c08a000000000221c0d900000020012002700000231400200198000000010110c0390000232b0110019700000025040000290000000000140435000000e00200043d0000232b02200197000000000021004b0000000001000039000000010100403900000000020000390000000102002039000000a00300043d000000000003004b000000000201c019000000000002004b0000000001040019000000e00100c03900000021020000290000000002020433002b00000002001d0000002a020000290000000002020433002700000002001d002d232b0020019b0000001b020000290000000002020433001f00000002001d00000000070104330000232b0670019700000026010000290000000001010433002c00000001001d000023200010009c00005e6a0000a13d0000002d0060006b00005e8d0000813d0000002d0000006b000000280000613d000000270170006a0000232b011001970000002b0200002900000060022002100000239c0320019700000000281300a9000000010400008a000000000042004b00005f2d0000613d00002324a420012a0000008009800270000023940020009c00005f190000213d0000008005a00210000000000595019f000023240a4000d100000000005a004b000000010440208a00005f1a0000013d0000001f01000029000023c90110009900002350021001970000002c312000b900000080041002700000008003300210000000000343019f000023243430012a00000080033002100000232405100197000000000353019f00002324054000d1000000000035004b000000010440208a00002324034001970000000004130019000000000014004b00000000040000390000000104004039000000000343004b00005e9f0000613d000023c90030009c000000280000813d000023c92020012a0000002c04000029000023c94040012a00000000022400a9000023c92020012a000000000121004b000000010330408a0000000601100270000000fa02300210000000000112019f000023ca081000d100005ea00000013d00000027037000690000002b0100002900002324011001970000232b0230019700000000211200a9000000010400008a000000000042004b00005edd0000613d000023249420012a0000008008100270000023940020009c00005ec90000213d0000008005900210000000000585019f00002324094000d1000000000059004b000000010440208a00005eca0000013d000023c90810012a0000002d0060006b00005eb40000813d000000270170006a0000002b0200002900002324022001970000232b0310019700000000292300a9000000010300008a000000000032004b00005f020000613d00002324a320012a0000008004900270000023940020009c00005eee0000213d0000008005a00210000000000545019f000023240a3000d100000000005a004b000000010330208a00005eef0000013d000000000006004b000000280000613d00000027017000690000232b0a1001970000002b0100002900000060011002100000239c011001970000000029a100a9000000010300008a000000000032004b00005f510000613d00002324b320012a0000008004900270000023940020009c00005f3d0000213d0000008005b00210000000000545019f000023240b3000d100000000005b004b000000010330208a00005f3e0000013d000000010440008a0000008002200210000000000282019f00002324044001970000000004420019000023249240012a0000232408100197000023940040009c00005ed80000213d0000008005900210000000000585019f00002324092000d1000000000059004b000000010220208a00005ed90000013d000000010220008a0000008004400210000000000484019f00002324022001970000000004240019000000000214004b00000000040000390000000104004039000000000242004b00005eec0000613d000023960020009c000000280000813d0000002b033000b90000239703300197000000000131004b000000010220408a0000006001100270000000a002200210000000000812019f0000603a0000013d00000060081002700000603a0000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324a230012a0000232404900197000023940030009c00005efd0000213d0000008005a00210000000000545019f000023240a2000d100000000005a004b000000010220208a00005efe0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000293004b00000000030000390000000103004039000000000232004b00005f110000613d000023960020009c000000280000813d0000002b011000b90000239701100197000000000319004b000000010220408a0000006003300270000000a002200210000000000932019f00005f140000013d0000002b011000b900000060099002700000239701100197000000000001004b000060fc0000613d000000010990003a000060fc0000c13d000000280000013d000000010440008a0000008002200210000000000292019f0000232404400197000000000442001900002324a240012a0000232409800197000023940040009c00005f280000213d0000008005a00210000000000595019f000023240a2000d100000000005a004b000000010220208a00005f290000013d000000010220008a0000008004400210000000000494019f00002324022001970000000004240019000000000284004b00000000040000390000000104004039000000000942004b00005f3b0000613d000000000096004b000000280000a13d00000000106100d900000000206300d9000023240060009c00005f640000213d00000000012100a900000000206100d900005fb10000013d00000000016800d9000060390000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324b230012a0000232404900197000023940030009c00005f4c0000213d0000008005b00210000000000545019f000023240b2000d100000000005b004b000000010220208a00005f4d0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000293004b00000000030000390000000103004039000000000c32004b00005f600000613d0000002d00c0006b000000280000a13d0000002d0200002900000000a02a00d900000000b02100d9000023240020009c00005fbf0000213d0000000001ba00a90000002d201000fa000060120000013d0000002da0a000fa0000002db01000fa0000002d099000fa000060a20000013d000000003a2100a9000000000036004b000000010200008a00005fb10000a13d0000239d0060009c00000090010000390000008001004039000000000116022f00000070020000390000008002004039000001000010008c000000080220808a0000000801108270000000100010008c00000000040100190000000404408270000000040040008c00000000050400190000000205508270000000000b500089000000020050008c000000020b00808a000000100010008c000000040220808a000000040040008c000000020220808a00000000012b0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104a00270000000000334022f000000000c32019f00000000031601cf000000800430027000000000e24c00d9000000000b1a01cf000000800db00270000023240a30019700005f910000013d000000000e4e0019000000010220008a0000232400e0009c00005f980000813d0000239e0020009c00005f8d0000213d0000000005a200a9000000800fe00210000000000fdf019f0000000000f5004b00005f8d0000213d000023240220019700000000023200a90000008005c002100000000005d5019f000000000c25004900000000d24c00d9000023240bb0019700005fa40000013d000000000d4d0019000000010220008a0000232400d0009c00005fab0000813d0000239e0020009c00005fa00000213d0000000005a200a9000000800ed00210000000000ebe019f0000000000e5004b00005fa00000213d000023240220019700000000023200a90000008003c002100000000003b3019f0000000002230049000000000212022f00000000016000890000000003160170000000000136c0d90000000001006019000000000228004b000000010990408a000000000003004b000060220000613d00000000023200d9000000000430008900000000033400d9000000010330003900000000099300a9000060230000013d000000003dba00a90000002d0030006b000000010200008a000060120000a13d0000002d0f0000290000239d00f0009c0000009001000039000000800100403900000000011f022f00000070020000390000008002004039000001000010008c000000080220808a0000000801108270000000100010008c00000000040100190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100010008c000000040220808a000000040040008c000000020220808a00000000012e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031f01cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270002200000003001d000023240d30019700005fef0000013d000000000f4f0019000000010220008a0000232400f0009c00005ff60000813d0000239e0020009c00005feb0000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b00005feb0000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f300197000060040000013d000000000e4e0019000000010220008a0000232400e0009c0000600b0000813d0000239e0020009c000060000000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b000060000000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f0000002d03000029000000000130008900000000041301700000002d0100c029000000000141c0d90000000001006019000000000229004b000000010cc0408a000000000004004b0000608b0000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000cc200a90000608c0000013d000000000200001900000003031000c9000000020330015f00000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000011300a9000000020110008900000000013100a9000000000292019f00000000012100a90000002d081000fa0000002c010000290000000001100089000000000018004b0000605c0000a13d0000002d0000006b000000280000613d0000002b020000290000232404200198000000280000613d0000002d0060006b0000605e0000813d0000002d021000b900000000011200d90000002d0010006c000000280000c13d0000002b0100002900000060011002100000239c01100197000000000921004b000000280000a13d0000002d271000b9000000010300008a000000000032004b0000615f0000613d00002324a320012a0000008004700270000023940020009c0000614b0000213d0000008005a00210000000000545019f000023240a3000d100000000005a004b000000010330208a0000614c0000013d0000000009000019000063a90000013d0000006007100210000023460010009c000060650000813d00000000124700d9000000000001004b000000010220c039000062750000013d0000002002100270000023db022001970000008003700270000000000232019f000023242320012a0000008002200210000023dc05700197000000000252019f00002324053000d1000000000025004b000000010330208a00002405027001670000232403300197000000000023004b00000000020000390000000102002039000000000323004b000062540000613d000000000034004b000000280000a13d00000000104100d9000023962040012900000000012100a900000000104100d900000000024000890000000009240170000000000494c0d90000000004006019000000000217004b000000010330408a000000000009004b0000625a0000613d00000000029200d9000000000590008900000000059500d9000000010550003900000000033500a90000625b0000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002c3019f00000000092100a90000002d01000029000023240010009c000060a80000213d0000000001ba00a90000002d101000fa000060f50000013d0000000014ba00a90000002d0010006b000060f70000a13d0000002d0d0000290000239d00d0009c0000009002000039000000800200403900000000022d022f00000070030000390000008003004039000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000c21019f0000000001ad01cf000000800310027000000000e23c00d9000000000ba401cf000000800db002700000232404100197000060d50000013d000000000e3e0019000000010220008a0000232400e0009c000060dc0000813d0000239e0020009c000060d10000213d00000000054200a9000000800fe00210000000000fdf019f0000000000f5004b000060d10000213d000023240220019700000000021200a90000008005c002100000000005d5019f000000000c25004900000000d23c00d9000023240bb00197000060e80000013d000000000d3d0019000000010220008a0000232400d0009c000060ef0000813d0000239e0020009c000060e40000213d00000000054200a9000000800ed00210000000000ebe019f0000000000e5004b000060e40000213d000023240220019700000000011200a90000008002c002100000000002b2019f00000000011200490000000001a1022f000000000001004b000060f90000613d000000010990003a000000280000613d00000000196900d9000000000001004b000000010990c039000000000098004b000063a80000813d0000002d0000006b000000280000613d0000002b010000290000232403100198000000280000613d0000002d0060006b0000612e0000813d0000006004800210000023460080009c000061470000413d0000002001800270000023db011001970000008002400270000000000121019f000023241210012a0000008001100210000023dc05400197000000000151019f00002324052000d1000000000015004b000000010220208a00002405014001670000232402200197000000000012004b00000000010000390000000101002039000000000112004b000061470000613d000000000013004b000000280000a13d00000000203800d9000023965030012900000000025200a900000000203200d900000000053000890000000007530170000000000373c0d90000000003006019000000000224004b000000010110408a000000000007004b000062840000613d00000000027200d9000000000470008900000000047400d9000000010440003900000000011400a9000062850000013d000000000008004b000061490000613d0000002d018000b900000000028100d90000002b0300002900000060033002100000239c0b3001970000002d0020006c000061710000c13d0000000000b1001a000061710000413d0000002d27b000b9000000010300008a000000000032004b000062bb0000613d000023248320012a0000008004700270000023940020009c000062a70000213d0000008005800210000000000545019f00002324083000d1000000000058004b000000010330208a000062a80000013d00000000013400d90000629b0000013d00000027070000290000627d0000013d000000010330008a0000008002200210000000000242019f0000232403300197000000000332001900002324a230012a0000232404700197000023940030009c0000615a0000213d0000008005a00210000000000545019f000023240a2000d100000000005a004b000000010220208a0000615b0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000273004b00000000030000390000000103004039000000000c32004b0000616d0000613d0000000000c9004b000000280000a13d0000002da09000f900000000b09100d9000023240090009c000061780000213d0000000001ba00a900000000209100d9000061d00000013d0000002da09000f900000000b09100d900000000079700d9000061f50000013d0000002d01b000fa000000000081001a000000280000413d000000000181001a000062790000613d00000000171b00d90000627b0000013d000000003dba00a9000000000039004b000000010200008a000061d00000a13d000023da0090009c000000c0010000390000008001004039000000000219022f00000040010000390000008001004039000023aa0020009c000000200110808a00000020022082700000237c0020009c000000100110808a0000001002208270000001000020008c000000080110808a0000000802208270000000100020008c00000000040200190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100020008c000000040110808a000000040040008c000000020110808a00000000011e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031901cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270002200000003001d000023240d300197000061ad0000013d000000000f4f0019000000010220008a0000232400f0009c000061b40000813d0000239e0020009c000061a90000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b000061a90000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f300197000061c20000013d000000000e4e0019000000010220008a0000232400e0009c000061c90000813d0000239e0020009c000061be0000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b000061be0000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f00000000019000890000000003190170000000000139c0d90000000001006019000000000227004b000000010cc0408a000000000003004b000061de0000613d00000000023200d9000000000430008900000000033400d90000000103300039000000000cc300a9000061df0000013d000000000200001900000003031000c9000000020330015f00000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000041300a9000000020440008900000000033400a900000000011300a9000000020110008900000000013100a90000000002c2019f00000000072100a90000236a0090009c000061fa0000813d0000000001ba00a900000000109100d90000624c0000013d0000000014ba00a9000000000019004b0000624e0000a13d000023da0090009c000000c0020000390000008002004039000000000229022f00000040030000390000008003004039000023aa0020009c000000200330808a00000020022082700000237c0020009c000000100330808a0000001002208270000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000b21019f0000000001a901cf000000800310027000000000d23b00d90000000009a401cf000000800c90027000002324041001970000622c0000013d000000000d3d0019000000010220008a0000232400d0009c000062330000813d0000239e0020009c000062280000213d00000000054200a9000000800ed00210000000000ece019f0000000000e5004b000062280000213d000023240220019700000000021200a90000008005b002100000000005c5019f000000000b25004900000000c23b00d900002324099001970000623f0000013d000000000c3c0019000000010220008a0000232400c0009c000062460000813d0000239e0020009c0000623b0000213d00000000054200a9000000800dc00210000000000d9d019f0000000000d5004b0000623b0000213d000023240220019700000000011200a90000008002b00210000000000292019f00000000011200490000000001a1022f000000000001004b000062500000613d000000010770003a000000280000613d000023460070009c0000000009000019000063a90000413d000000280000013d00000000104100d9000023962040012900000000012100a900000000024700d900000000104100d9000062710000013d000000000200001900000003054000c9000000020550015f00000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000074500a9000000020770008900000000055700a900000000044500a9000000020440008900000000045400a9000000000232019f00000000022400a9000000000001004b000062750000613d000000010220003a000000280000613d0000002d0720006b000000280000a13d00000000090000190000627e0000013d00000000070000190000000001000019000000000001004b000000010770c03900000000080000190000232b0a7001970000000000a6004b00000000010000390000000101006039002200000001001d000063cf0000013d000000000200001900000003043000c9000000020440015f00000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000053400a9000000020550008900000000044500a900000000033400a9000000020330008900000000034300a9000000000112019f00000000011300a90000002d0a1000290000002d00a0006c000000280000413d0000234600a0009c000000280000813d0000000000a6004b00000000010000390000000101006039002200000001001d000000000800001900000000070a0019000063b00000013d000000010330008a0000008002200210000000000242019f00002324033001970000000003320019000023248230012a0000232404700197000023940030009c000062b60000213d0000008005800210000000000545019f00002324082000d1000000000058004b000000010220208a000062b70000013d000000010220008a0000008003300210000000000343019f000023240220019700000000032300190000000008b10019000000000173004b00000000020000390000000102004039000000000c21004b000062ca0000613d0000000000c8004b000000280000a13d0000002da08000f900000000b08b00d9000023240080009c000062d00000213d0000000001ba00a900000000208100d9000063280000013d000000000008004b000000280000613d0000002da08000f900000000b08b00d900000000078700d90000634d0000013d000000003dba00a9000000000038004b000000010200008a000063280000a13d000023da0080009c000000c0010000390000008001004039000000000218022f00000040010000390000008001004039000023aa0020009c000000200110808a00000020022082700000237c0020009c000000100110808a0000001002208270000001000020008c000000080110808a0000000802208270000000100020008c00000000040200190000000404408270000000040040008c00000000050400190000000205508270000000000e500089000000020050008c000000020e00808a000000100020008c000000040110808a000000040040008c000000020110808a00000000011e0019000000ff0210018f00000000022301cf0000240503100167000000ff0330018f0000000104d00270000000000334022f000e0000003201a300000000031801cf00000080043002700000000ef24000f900000000051d01cf001400000005001d000000800e500270002200000003001d000023240d300197000063050000013d000000000f4f0019000000010220008a0000232400f0009c0000630c0000813d0000239e0020009c000063010000213d0000000005d200a90000008003f002100000000003e3019f000000000035004b000063010000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003e3019f000e0000002300510000000ee24000f90000001403000029000023240f3001970000631a0000013d000000000e4e0019000000010220008a0000232400e0009c000063210000813d0000239e0020009c000063160000213d0000000003d200a90000008005e002100000000005f5019f000000000053004b000063160000213d000023240220019700000022022000b90000000e0300002900000080033002100000000003f3019f0000000002230049000000000212022f00000000018000890000000004180170000000000148c0d90000000001006019000000000227004b000000010cc0408a000000000004004b000063360000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000cc200a9000063370000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002c3019f00000000072100a9000023240080009c000063520000213d0000000001ba00a900000000108100d9000063a40000013d0000000014ba00a9000000000018004b000063a60000a13d000023da0080009c000000c0020000390000008002004039000000000228022f00000040030000390000008003004039000023aa0020009c000000200330808a00000020022082700000237c0020009c000000100330808a0000001002208270000001000020008c000000080330808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c000000000a050019000000020aa08270000000000ba000890000000200a0008c000000020b00808a000000100020008c000000040330808a000000040050008c000000020330808a000000000a3b0019000000ff02a0018f00000000012101cf0000240502a00167000000ff0220018f0000000103400270000000000223022f000000000b21019f0000000001a801cf000000800310027000000000d23b00d90000000008a401cf000000800c8002700000232404100197000063840000013d000000000d3d0019000000010220008a0000232400d0009c0000638b0000813d0000239e0020009c000063800000213d00000000054200a9000000800ed00210000000000ece019f0000000000e5004b000063800000213d000023240220019700000000021200a90000008005b002100000000005c5019f000000000b25004900000000c23b00d90000232408800197000063970000013d000000000c3c0019000000010220008a0000232400c0009c0000639e0000813d0000239e0020009c000063930000213d00000000054200a9000000800dc00210000000000d8d019f0000000000d5004b000063930000213d000023240220019700000000011200a90000008002b00210000000000282019f00000000011200490000000001a1022f000000000001004b000063a80000613d000000010770003a000000280000613d00000000080000190000232b0a7001970000000000a6004b00000000010000390000000101006039002200000001001d0000002d0060006b000063cf0000813d0000002c01000029000023200010009c000064050000213d00000022010000290000000100100190000064050000613d0000002d00a0006b00000000050700190000002705002029000000270700a0290000232b04700198000000280000613d0000002b0100002900000060011002100000239c0110019700000000027500490000232b0720019700000000231700a9000000010800008a000000000082004b000064550000613d00002324c620012a0000008008300270000023940020009c000064410000213d000000800bc00210000000000b8b019f000023240c6000d10000000000bc004b000000010660208a000064420000013d0000002c01000029000023200010009c000063eb0000213d00000022010000290000000100100190000063eb0000613d0000002d00a0006c00000000010700190000002701002029000000270700a02900000000031700490000002b0100002900002324011001970000232b0230019700000000211200a9000000010400008a000000000042004b000064300000613d000023246420012a0000008005100270000023940020009c0000641c0000213d0000008006600210000000000656019f00002324074000d1000000000067004b000000010440208a0000641d0000013d0000002d00a0006c00000027030000290000000003072019000000000207001900000027020020290014232b0020019c000000280000613d0000002b0100002900000060011002100000239c0110019700000000022300490000232b0d200197000000002c1d00a9000000010400008a000000000042004b000064db0000613d000023249420012a0000008006c00270000023940020009c000064c70000213d0000008005900210000000000565019f00002324094000d1000000000059004b000000010440208a000064c80000013d0000002d00a0006b000000270100002900000000010720190000000002070019000000270200202900000000011200490000002b0200002900002324022001970000232b0310019700000000262300a9000000010300008a000000000032004b0000658f0000613d000023249320012a0000008004600270000023940020009c0000657b0000213d0000008005900210000000000545019f00002324093000d1000000000059004b000000010330208a0000657c0000013d000000010440008a0000008002200210000000000252019f00002324044001970000000004420019000023246240012a0000232405100197000023940040009c0000642b0000213d0000008006600210000000000656019f00002324072000d1000000000067004b000000010220208a0000642c0000013d000000010220008a0000008004400210000000000454019f00002324022001970000000004240019000000000214004b00000000040000390000000104004039000000000242004b0000643f0000613d000023960020009c000000280000813d0000002b033000b90000239703300197000000000131004b000000010220408a0000006001100270000000a002200210000000000812019f000065690000013d0000006008100270000065690000013d000000010660008a0000008002200210000000000282019f0000232406600197000000000662001900002324c260012a0000232408300197000023940060009c000064500000213d000000800bc00210000000000b8b019f000023240c2000d10000000000bc004b000000010220208a000064510000013d000000010220008a0000008006600210000000000686019f000023240220019700000000082600190000232b06500197000000000238004b00000000050000390000000105004039000000000552004b000064640000613d000000000056004b000000280000a13d00000000206700d900000000106100d9000023240060009c000064680000213d00000000011200a900000000206100d9000064b90000013d000000000006004b000000280000613d00000000016300d9000065680000013d000000001c1200a9000000000016004b000000010200008a000064b90000a13d0000239d0060009c00000090020000390000008002004039000000000226022f00000070070000390000008007004039000001000020008c000000080770808a0000000802208270000000100020008c00000000080200190000000408808270000000040080008c000000000b080019000000020bb08270000000000db000890000000200b0008c000000020d00808a000000100020008c000000040770808a000000040080008c000000020770808a00000000077d0019000000ff0270018f00000000012101cf0000240502700167000000ff0220018f0000000108c00270000000000228022f002b0000002101a300000000017601cf00000080081002700000002bd28000f9000000000b7c01cf002d0000000b001d000000800fb00270000023240c100197000064960000013d000000000d8d0019000000010220008a0000232400d0009c0000649d0000813d0000239e0020009c000064920000213d000000000bc200a9000000800ed00210000000000efe019f0000000000eb004b000064920000213d000023240220019700000000021200a90000002b0b000029000000800bb00210000000000bfb019f002b0000002b00510000002bf28000f90000002d0b000029000023240db00197000064ab0000013d000000000f8f0019000000010220008a0000232400f0009c000064b20000813d0000239e0020009c000064a70000213d000000000bc200a9000000800ef00210000000000ede019f0000000000eb004b000064a70000213d000023240220019700000000011200a90000002b0200002900000080022002100000000002d2019f0000000001120049000000000271022f00000000016000890000000007160170000000000176c0d90000000001006019000000000223004b000000010550408a000000000007004b000065510000613d00000000027200d9000000000370008900000000037300d9000000010330003900000000055300a9000065520000013d000000010440008a0000008002200210000000000262019f00002324044001970000000004420019000023249240012a0000232406c00197000023940040009c000064d60000213d0000008005900210000000000565019f00002324092000d1000000000059004b000000010220208a000064d70000013d000000010220008a0000008004400210000000000464019f000023240220019700000000042400190000232b093001970000000002c4004b00000000030000390000000103004039000000000f32004b000064ea0000613d0000000000f9004b000000280000a13d00000000d09d00d900000000e09100d9000023240090009c000064f00000213d0000000001ed00a900000000209100d9000065430000013d000000000009004b000000280000613d00000000d09d00d900000000e09100d9000000000c9c00d9000065c40000013d0000000013ed00a9000000000019004b000000010200008a000065430000a13d0000239d0090009c00000090020000390000008002004039000000000229022f00000070040000390000008004004039000001000020008c000000080440808a0000000802208270000000100020008c00000000050200190000000405508270000000040050008c00000000060500190000000206608270000000000b600089000000020060008c000000020b00808a000000100020008c000000040440808a000000040050008c000000020440808a00000000054b0019000000ff0250018f00000000012101cf0000240502500167000000ff0220018f0000000104300270000000000224022f00080000002101a3000000000b5901cf0000008004b0027000000008624000f9000a00000005001d00000000015301cf000900000001001d0000008001100270000e0000000b001d0000232403b00197000065200000013d0000000006460019000000010220008a000023240060009c000065270000813d0000239e0020009c0000651c0000213d00000000053200a9000000800b600210000000000b1b019f0000000000b5004b0000651c0000213d00002324022001970000000e022000b900000008050000290000008005500210000000000115019f000800000021005100000008624000f900000009010000290000232401100197000065350000013d0000000006460019000000010220008a000023240060009c0000653c0000813d0000239e0020009c000065310000213d00000000053200a9000000800b600210000000000b1b019f0000000000b5004b000065310000213d00002324022001970000000e022000b900000008030000290000008003300210000000000113019f00000000012100490000000a0210025000000000019000890000000004190170000000000149c0d9000000000100601900000000022c004b000000010ff0408a000000000004004b000065ad0000613d00000000034200d9000000000240008900000000024200d90000000102200039000000000ff200a9000065ae0000013d000000000200001900000003031000c9000000020330015f00000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000061300a9000000020660008900000000033600a900000000011300a9000000020110008900000000013100a9000000000252019f00000000012100a900000000084100d90000002c020000290000234d0020009c000000000100003900000001010040390000000002200089000000000028004b0000000003000039000000010300a03900000000003101a00000000008026019000000220100002900000001001001900000662d0000c13d0000002c01000029000023200010009c0000662d0000213d0000002c019000690000667e0000013d000000010330008a0000008002200210000000000242019f00002324033001970000000003320019000023249230012a0000232404600197000023940030009c0000658a0000213d0000008005900210000000000545019f00002324092000d1000000000059004b000000010220208a0000658b0000013d000000010220008a0000008003300210000000000343019f00002324022001970000000003230019000000000263004b00000000030000390000000103004039000000000232004b0000659e0000613d000023960020009c000000280000813d0000002b011000b90000239701100197000000000316004b000000010220408a0000006003300270000000a002200210000000000932019f000065a10000013d0000002b011000b900000060096002700000239701100197000000000001004b000065a50000613d000000010990003a000000280000613d0000002c010000290000234d0010009c000063b60000413d0000002201000029000000010110015f0000000100100190000066230000613d000063b60000013d000000000300001900000003021000c9000000020220015f00000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000041200a9000000020440008900000000022400a900000000011200a9000000020110008900000000012100a90000000002f3019f000000000c2100a9000023240090009c000065c90000213d0000000001ed00a900000000109100d9000066150000013d0000000014ed00a9000000000019004b000066170000a13d0000239d0090009c00000090020000390000008002004039000000000229022f00000070030000390000008003004039000001000020008c000000080330808a0000000802208270000000100020008c00000000060200190000000406608270000000040060008c000000000d060019000000020dd08270000000000ed000890000000200d0008c000000020e00808a000000100020008c000000040330808a000000040060008c000000020330808a000000000d3e0019000000ff02d0018f00000000012101cf0000240502d00167000000ff0220018f0000000103400270000000000223022f000000000e21019f0000000001d901cf000000800310027000000000623e00d90000000009d401cf000000800f9002700000232404100197000065f50000013d0000000006360019000000010220008a000023240060009c000065fc0000813d0000239e0020009c000065f10000213d000000000b4200a900000080056002100000000005f5019f00000000005b004b000065f10000213d000023240220019700000000021200a90000008005e002100000000005f5019f000000000e25004900000000623e00d90000232409900197000066080000013d0000000006360019000000010220008a000023240060009c0000660f0000813d0000239e0020009c000066040000213d00000000054200a9000000800b600210000000000b9b019f0000000000b5004b000066040000213d000023240220019700000000011200a90000008002e00210000000000292019f00000000011200490000000001d1022f000000000001004b000066190000613d000000010cc0003a000000280000613d0000001419c000fa000000000001004b000000010990c0390000002c010000290000234d0010009c000063d50000413d0000002201000029000000010110015f0000000100100190000063d50000c13d0000002c020000290000234d0020009c000000000100003900000001010040390000000002200089000000000028004b0000000003000039000000010300a03900000000003101a00000000008026019000024050090009c000000000109001900000000010060190000001f06000029000023500260019700000000312100a900000080041002700000008003300210000000000343019f0000232404100197000023243530012a0000008003300210000000000343019f00002324045000d1000000000034004b000000010550208a0000232403500197000000000113001900000000042900a9000000000141004b00000000030000390000000103004039000000000131004b000023c90360009900002350033001970000665b0000613d000000000013004b000000280000a13d00000000203200d900000000503900d900000000022500a900000000203200d900000000053000890000000005530170000000000353c0d90000000003006019000000000424004b000000010110408a000000000005004b000066630000613d00000000045400d9000000000650008900000000055600d9000000010550003900000000011500a9000066640000013d000000000003004b000000280000613d00000000103200d900000000203900d900000000011200a900000000203100d900000000013400d90000667a0000013d000000000400001900000003053000c9000000020550015f00000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000033500a9000000020330008900000000035300a9000000000114019f00000000011300a900002356002001980000667e0000613d000000010110003a000000280000613d0000002902000029000000000012043500000024010000290000000000810435000000230100002900000000009104350000002a010000290000000000a104350000001a010000290000000001010433000000000001004b000066a60000613d000000290100002900000000010104330000002302000029000000000202043300000000011200190000234d0010009c000000280000813d000000260300002900000000020304330000000001120049000000000013043500000024010000290000000001010433000023200010009c000000280000213d0000001e02000029000000000202043300000000011200490000234d031001970000234d04200197000000000543013f000000000043004b00000000030000190000234d03004041000000000021004b00000000020000190000234d02002041000066c10000013d000000240100002900000000010104330000234d0010009c000000280000813d000000260300002900000000020304330000000001120019000000000013043500000029010000290000000001010433000000230200002900000000020204330000000001120019000023200010009c000000280000213d0000001e02000029000000000202043300000000011200190000234d031001970000234d04200197000000000543013f000000000043004b00000000030000190000234d03002041000000000021004b00000000020000190000234d020040410000234d0050009c000000000302c019000000000003004b000000280000c13d0000001e02000029000000000012043500000021010000290000000001010433002b23240010019c000067cd0000613d00000029010000290000000001010433002c00000001001d0000000101000039000000000101041a000000400300043d00002344020000410000000000230435002400000003001d000000040230003900000018030000290000000000320435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002700000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002702000029000000040020008c000066f00000c13d0000000103000031000067210000013d0000002d0300002900000024023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000027020000298c4b8c460000040f00000060031002700000231403300197000000200030008c0000002006000039000000000603401900000020056001900000002d045000290000670f0000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000067090000c13d0000001f066001900000671c0000613d000000000551034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000007530010000390000672d0000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000000280000813d000000010200008a0000002c0020006b0000002c02000029000000000200601900000000252100a9000023243420012a00002324064000d100000080033002100000008007500270000000000373019f000000000036004b000000010440208a0000008002200210000000000272019f00002324034001970000000004320019000023242340012a0000232405500197000023940040009c000067470000213d0000008002200210000000000252019f00002324063000d1000000000026004b000000010330208a000067480000013d000000010330008a0000002c021000b90000008004400210000000000454019f00002324033001970000000003340019000000000323004b00000000040000390000000104004039000000000443004b000067610000613d000023cf0040009c000000280000813d0000002c03000029000023cf3030012a0000231401100197000023cf1010012a00000000011300a9000023cf3010012a000000000132004b000000010440408a0000000501100270000000fb02400210000000000112019f000023d0011000d1000067680000013d0000002c03000029000023cf3030012a0000231401100197000023cf1010012a00000000031300a9000023cf0120012a000023cf3030012a00002356003001980000676c0000613d000000010110003a000000280000613d0000002c0310006b000000280000413d000024050030009c00000000020300190000000002006019000023930420009c00000000040240190000239e0040009c00000000040000390000000104002039000023930020009c00000000050000390000000105008039000000000445016f0000000002420019000023245420012a000023940020009c000067830000213d000000800550021000002324064000d1000000000056004b000000010440208a000067840000013d000000010440008a00000080022002100000232404400197000000000224019f0000008004300210000000000242004b00000000050000390000000105004039000000000252004b000067a30000613d0000002b0020006b000000280000a13d0000002b0700002900000000307300d90000236a5070012900000000033500a900000000607300d9000000000370008900000000053701700000002b0300c029000000000353c0d90000000003006019000000000464004b000000010220408a000000000005004b000067a50000613d00000000045400d9000000000650008900000000055600d9000000010550003900000000022500a9000067a60000013d0000002b024000fa000067bc0000013d000000000400001900000003053000c9000000020550015f00000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000063500a9000000020660008900000000055600a900000000033500a9000000020330008900000000035300a9000000000224019f00000000022300a90000001904000029000000000304043300000000022300190000000000240435000000160300002900000000020304330000000001120019000023240110019700000000001304350000002901000029000000000101043300000017030000290000000002030433000000000112001900000000001304350000002a01000029000000000a0104330000232b01a00197000000250200002900000000020204330000232b02200197000000000012004b000068730000c13d00000020010000290000000001010433000000000001004b00005ca00000613d00000012010000290000000001010433000000000001004b000068380000c13d0000000c0100002900000000010104330000ffff0310018f0000ffff0030008c000015df0000613d0000000b0100002900000000010104330000000d02000029000000000402043300000013020000290000000002020433000000400600043d0000008005600039000000400050043f0000001403300039000000000803041a00000060036000390000232c0080009c00000000050000390000000105002039000000000053043500000058038002700000232b093001970000004003600039000000000093043500000020058002700000232a055001970000238c0080019800002329070000410000000007006019000000000757019f000023140b8001970000000008b604360000000000780435000023140a2001970000000000ba004b0000682d0000613d000000400500043d0000008007500039000000400070043f00000060075000390000000000070435000000400750003900000000000704350000002007500039000000000007043500000000000504350000000005060433000000400600043d0000008007600039000000400070043f0000000009a604360000232307400197000023210040019800002322040000410000000004006019000000000474019f0000000002520049000023140520019700000000044500a9000000000508043300000000044500190000232a05400197000023280040019800002329040000410000000004006019000000000754019f0000000000790435000000000303043300000060046000390000000108000039000000000084043500000080022002100000238d022001970000232401100197000000010010008c000000010100a03900000000011200d9000000000113001900000040026000390000232b09100197000000000092043500000011010000290000000000910435000023280070019800002329010000410000000001006019000000000151019f000000100200002900000000001204350000000101000039000000120200002900000000001204350000000f010000290000000001010433000000000001004b000069d70000c13d000023830100004100000000001004430000000001000414000023140010009c0000231401008041000000c00110021000002384011001c70000800b020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b00002314021001970000000f01000039000000000101041a00000080031002700000231403300197000000000432004b000069d40000613d0000000c03000039000000000303041a000000000003004b000069cf0000613d0000000b05000039000000000505041a00000000044500a9000000000543004b00000000050040190000000c06000039000000000056041b000000000034004b00000000040380190000232405100198000069900000613d000024050040009c00000000030400190000000003006019000023930630009c00000000060340190000239e0060009c00000000060000390000000106002039000023930030009c00000000070000390000000107008039000000000667016f0000000003630019000023247630012a000023940030009c000069940000213d000000800770021000002324086000d1000000000078004b000000010660208a000069950000013d0000001c0200002900000000020204330000232b02200197000000000012004b00005cac0000613d000023510210009a000023520020009c00006a690000813d0000002002a002100000235502200197000023240020009c00000000030000390000008003002039000000000432022f000023560040009c00000000050000390000004005002039000000000454022f000023140040009c00000000060000390000002006002039000000000464022f0000ffff0040008c00000000070000390000001007002039000000000474022f000000ff0040008c00000000080000390000000808002039000000000484022f0000000f0040008c00000000090000390000000409002039000000000494022f000000030040008c000000000a000039000000020a0020390000000004a4022f000000010040008c00000001033021bf000000000353019f000000000363019f000000000373019f000000000383019f000000000393019f0000000003a3019f0000007f0430008c000000000442022f0000007f0530008900000000025201cf000000000204201900000000022200a9000000ff042002700000007f05200270000000000445022f00000000044400a9000000ff054002700000007f06400270000000000556022f00000000055500a9000000ff065002700000007f07500270000000000667022f000000c00220027000002357022001970000004003300210000000000223019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c1044002700000235804400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c2055002700000235905500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c3033002700000235a03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c4044002700000235b04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c5055002700000235c055001970000235d0220009a000000000225019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c6033002700000235e03300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000c7044002700000235f04400197000000000242019f00000000046600a9000000ff064002700000007f07400270000000000667022f000000c8055002700000232805500197000000000252019f00000000056600a9000000ff065002700000007f07500270000000000667022f000000c9033002700000236003300197000000000232019f00000000036600a9000000ff063002700000007f07300270000000000667022f000000ca044002700000236104400197000000000242019f000000cb045002700000236204400197000000000242019f000000cc033002700000236303300197000000000232019f00000000036600a9000000cd033002700000236403300197000000000232019f00002365022000d1000023660420009a0000234d034001970000234d0030009c000000010500008a00000000030000190000000003056019000023670620009a0000234d026001970000234d0020009c0000000002000019000000000205601900000080022002100000008005600270000000000225019f00000080033002100000008005400270000000000335019f000000800000008b00000000030460190000236800400198000023220400004100000000040060190000232305300197000000000454019f000000800000008b00000000020660190000232305200197000023680060019800002322060000410000000006006019000000000656019f000000000046004b00005ca60000613d0000234d054001970000234d0050009c000000010500008a000000000500c0190000000105500210000000ff06400270000000000556019f000000ff0000008b0000000005046019000000000654013f0000000006560049000023690060009c00007f960000813d00000001006001900000236b050000410000236a050060410000236c075000d100000080077002700000000200600190000000000507c0190000236d075000d100000080077002700000000400600190000000000507c0190000236e075000d100000080077002700000000800600190000000000507c0190000236f075000d100000080077002700000001000600190000000000507c01900002370075000d100000080077002700000002000600190000000000507c01900002371075000d100000080077002700000004000600190000000000507c01900002372075000d100000080077002700000008000600190000000000507c01900002373075000d100000080077002700000010000600190000000000507c01900002374075000d100000080077002700000020000600190000000000507c01900002375075000d100000080077002700000040000600190000000000507c01900002376075000d100000080077002700000080000600190000000000507c01900002377075000d100000080077002700000100000600190000000000507c01900002378075000d100000080077002700000200000600190000000000507c01900002379075000d100000080077002700000400000600190000000000507c0190000237a075000d100000080077002700000800000600190000000000507c0190000237b075000d100000080077002700000237c00600198000000000507c0190000237d075000d100000080077002700000237e00600198000000000507c0190000237f075000d100000080077002700000238000600198000000000507c019000023810060019800002382065000d1000000800560c270000023200040009c000069890000213d000000000004004b000000010400c08a000000000554c0d900000020045002700000231400500198000000010440c0390000232b04400197000000000014004b000000000203a01900005ca50000013d0000000e05000039000000000305041a0000000003430019000069ce0000013d000000010660008a00000080033002100000232406600197000000000336019f0000008006400210000000000363004b00000000070000390000000107004039000000000373004b000069b20000613d000000000035004b000000280000a13d00000000405400d90000236a7050012900000000044700a900000000805400d900000000045000890000000007450170000000000475c0d90000000004006019000000000586004b000000010330408a000000000007004b000069b40000613d00000000057500d9000000000670008900000000067600d9000000010660003900000000033600a9000069b50000013d00000000035600d9000069cb0000013d000000000500001900000003064000c9000000020660015f00000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000074600a9000000020770008900000000066700a900000000044600a9000000020440008900000000046400a9000000000335019f00000000033400a90000000905000039000000000405041a0000000003340019000000000035041b0000008002200210000023c601100197000000000121019f0000000f02000039000000000012041b00000001010000390000000f0200002900000000001204350000001901000029000000000201043300000028010000290000000001010433000000a00300043d000000000003004b000069e30000613d0000000803000039000000000303041a002700000003001d002400000002001d000069e70000013d0000000703000039000000000303041a002400000003001d002700000002001d0000000902000039000000000202041a002300000002001d00000013020000290000000002020433002b00000002001d00000010020000290000000002020433002500000002001d00000011020000290000000002020433002900000002001d000000400300043d0000004002300039000000400020043f0000232302100197000023210010019800002322010000410000000001006019000000000121019f0000002002300039002d00000002001d0000000000020435002c00000003001d0000000000030435000000000010043f0000001101000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d000000000101043b0000000202100039000000000302041a0000002403300069000000000032041b0000000302100039000000000302041a0000002703300069000000000032041b0000000402100039000000000302041a0000002303300069000000000032041b0000000502100039000000000302041a000000250430006900002390044001970000239205300197000000000454019f000000380530027000000029055000690000003805500210000023dd05500197000000000454019f000000d8033002700000002b03300069000000d8033002100000239103300197000000000334019f000000000032041b000000000201041a000023200020009c0000000003000019000023250300204100000080022002700000232602200197000000000223019f0000002c0300002900000000002304350000000101100039000000000101041a0000232603100197000023270010019800002325010000410000000001006019000000000131019f0000002d030000290000000000130435000000a00300043d000000000003004b00006a4f0000613d00000000022000890000232603200197000023270020019800002325020000410000000002006019000000000232019f0000002c03000029000000000023043500000000011000890000232603100197000023270010019800002325010000410000000001006019000000000131019f0000002d03000029000000000013043500000021010000290000000001010433000023240310019700000000011200190000232401100197000023270020019800006a590000c13d000000000031004b00006a5b0000813d00001b890000013d000000000031004b000083f10000813d000000210200002900000000001204350000001501000029000000000101043300002324021001970000002d03000029000000000303043300000000011300190000232401100197000023270030019800005c9c0000613d000000000021004b00005c9e0000413d000083f10000013d000000400100043d00000044021000390000235303000041000083f40000013d0000000d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000321019f0000001d0100002900000000010104330000232302100197000023210010019800002322010000410000000001006019000000000121019f000000000031004b00006c850000c13d0000002a0100002900000000010104330000232b011001970000000602000039000000000202041a0000234702200197000000000112019f00006d000000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b00006a9d0000c13d0000006001000039000000800300003900006abb0000013d0000003f014000390000240403100197000000400100043d0000000003310019000000400030043f000000000341043600002404054001980000001f0640018f0000000004530019000000030700036700006aae0000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00006aaa0000c13d000000000006004b00006abb0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000001010433000023200010009c000000280000213d0000001f0010008c000000280000a13d00000020020000290000002d0020002a000000280000413d00000020020000290000002d04200029000023ce02000041000000400100043d0000000003030433000000000034004b00004b740000a13d000038dc0000013d002900000002001d000000000001004b00006afc0000c13d00000029010000290000234d0010009c00006d540000813d000000400100043d000001400200043d0000232b00200198000073a70000613d0000000202000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b00006af50000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b00006aeb0000413d00006af50000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c0000734e0000c13d00000001020000390000000104000031000073610000013d0000002d010000290000234d0010009c00006d8a0000813d000000400100043d000001400200043d0000232b00200198000074aa0000613d0000000302000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b00006b210000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b00006b170000413d00006b210000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000073660000c13d00000001020000390000000104000031000073790000013d000000400100043d002600000001001d000038470000013d000000250600002900240028d06000bd0000000000d8004b00006dee0000a13d0000239d0080009c00000090040000390000008004004039000000000448022f00000070060000390000008006004039000001000040008c000000080660808a0000000804408270000000100040008c000000000a040019000000040aa082700000000400a0008c000000000f0a0019000000020ff08270000000020b00008a000000000ef000890000000200f0008c000000000e0b8019000000100040008c000000040660808a0000000400a0008c000000020660808a000000000b6e0019000000ff04b0018f00000000044d01cf0000240506b00167000000ff0660018f000000240d000029000000010ad0027000000000066a022f00210000006401a30000000004b801cf000000800f40027000000021a6f000f900230000000b001d000000000bbd01cf00220000000b001d000000800db00270002400000004001d000023240e40019700006b5d0000013d000000000afa0019000000010660008a0000232400a0009c00006b640000813d0000239e0060009c00006b590000213d0000000004e600a9000000800ba00210000000000bdb019f0000000000b4004b00006b590000213d000023240460019700000024044000b9000000210600002900000080066002100000000006d6019f002100000046005100000021a6f000f90000002204000029000023240d40019700006b720000013d000000000afa0019000000010660008a0000232400a0009c00006b790000813d0000239e0060009c00006b6e0000213d0000000004e600a9000000800ba00210000000000bdb019f0000000000b4004b00006b6e0000213d000023240460019700000024044000b9000000210600002900000080066002100000000006d6019f0000000004460049000000230640025000006def0000013d00280000c0a600ad0000000000cb004b00006e760000a13d0000239d00b0009c0000009006000039000000800600403900000000066b022f000000700a000039000000800a004039000001000060008c000000080aa0808a0000000806608270000000100060008c000000000d060019000000040dd082700000000400d0008c000000000f0d0019000000020ff08270000000020400008a000000000ef000890000000200f0008c000000000e048019000000100060008c000000040aa0808a0000000400d0008c000000020aa0808a0000000004ae0019000000ff0640018f00000000066c01cf000024050c400167000000ff0cc0018f000000280e000029000000010de00270000000000ccd022f0023000000c601a3000000000a4b01cf000000800da0027000000023c6d000f9002500000004001d00000000044e01cf002400000004001d000000800f40027000280000000a001d000023240ea0019700006bb20000013d000000000cdc0019000000010660008a0000232400c0009c00006bb90000813d0000239e0060009c00006bae0000213d000000000ae600a90000008004c002100000000004f4019f00000000004a004b00006bae0000213d000023240460019700000028044000b9000000230600002900000080066002100000000006f6019f002300000046005100000023c6d000f90000002404000029000023240f40019700006bc70000013d000000000cdc0019000000010660008a0000232400c0009c00006bce0000813d0000239e0060009c00006bc30000213d0000000004e600a9000000800ac00210000000000afa019f0000000000a4004b00006bc30000213d000023240460019700000028044000b9000000230600002900000080066002100000000006f6019f0000000004460049000000250640025000006e770000013d000000010700008a000000000540008900000000055401700000000006000019000000000654c0d9000000000272004b00000003046000c9000000020440015f00000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a9000000010330408a00000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a900000000066400a9000000020660008900000000044600a9000000000005004b00006bf50000c13d000000000200001900006bfa0000013d00000000025200d9000000000650008900000000055600d9000000010550003900000000033500a9000000000232019f00000000022400a900000000011200d90000234d0010009c000000280000813d00000000071000890000000004000019000034010000013d000000010900008a000000000720008900000000077201700000000008000019000000000872c0d9000000000393004b00000003098000c9000000020990015f000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a9000000010660408a000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a900000000088900a9000000020880008900000000089800a9000000000007004b00006c210000c13d000000000300001900006c260000013d00000000037300d9000000000970008900000000077900d9000000010770003900000000066700a9000000000363019f00000000033800a9000023240020009c00006c2d0000213d00000000045400a900000000202400d900006c7a0000013d00000000565400a9000000000052004b00006c7c0000a13d0000239d0020009c00000090040000390000008004004039000000000442022f00000070070000390000008007004039000001000040008c000000080770808a0000000804408270000000100040008c00000000080400190000000408808270000000040080008c00000000090800190000000209908270000000020a00008a000000000b900089000000020090008c000000000b0a8019000000100040008c000000040770808a000000040080008c000000020770808a00000000047b0019000000ff0740018f00000000057501cf0000240507400167000000ff0770018f0000000108600270000000000778022f000000000875019f00000000024201cf000000800520027000000000ba5800d900000000074601cf0000008009700270000023240620019700006c5a0000013d000000000b5b0019000000010aa0008a0000232400b0009c00006c610000813d0000239e00a0009c00006c560000213d000000000c6a00a9000000800db00210000000000d9d019f0000000000dc004b00006c560000213d000023240aa00197000000000a2a00a90000008008800210000000000898019f0000000008a8004900000000a95800d9000023240770019700006c6d0000013d000000000a5a0019000000010990008a0000232400a0009c00006c740000813d0000239e0090009c00006c690000213d000000000b6900a9000000800ca00210000000000c7c019f0000000000cb004b00006c690000213d000023240590019700000000022500a90000008005800210000000000575019f0000000002250049000000000242022f000000000002004b00006c7e0000613d000000010330003a000000280000613d00000000171300d9000000000001004b000000010770c0390000234d0070009c0000000004000019000034010000413d000000280000013d0000000c0100002900000000010104330000ffff0a10018f0000ffff00a0008c000015df0000613d0000000702000029000000000b020433000000060200002900000000020204330000000b04000029000000000404043300000013050000290000000006050433000000400700043d0000008005700039000000400050043f0000001405a00039000000000505041a00000060087000390000232c0050009c00000000090000390000000109002039000000000098043500000020085002700000232a088001970000238c0050019800002329090000410000000009006019000000000c89019f00000058085002700000232b098001970000004008700039000000000098043500000020097000390000000000c90435000023140c5001970000000000c7043500002314056001970000000000c5004b00006cee0000613d0000ffff0c20018f0000ffff0db0018f0000000000cd004b000000000c000039000000010c00a039000000010d20008a0000ffff0dd0018f0000000000da004b000000000a000039000000010a00c0390000000000ac01a000000000020b60190000ffff0a200190000015df0000613d000000400b00043d000000800cb000390000004000c0043f000000600cb0003900000000000c0435000000400cb0003900000000000c0435000000200cb0003900000000000c043500000000000b04350000000007070433000000400b00043d000000800cb000390000004000c0043f0000000006760049000023140760019700000000033700a900000000075b0436000000000909043300000000033900190000232a09300197000023280030019800002329030000410000000003006019000000000393019f000000000037043500000000070804330000006008b000390000000109000039000000000098043500000080066002100000238d066001970000232404400197000000010040008c000000010400a03900000000044600d900000001011000390000ffff0110018f0000000010a100d900000000044700190000004006b000390000232b044001970000000000460435000000200330021000002398033001970000005804400210000000000343019f000000000353019f00002385033001c70000001404100039000000000034041b000000b8011002100000239901100197000000c8022002100000239b02200197000000000112019f0000002a0200002900000000020204330000232b02200197000000000121019f0000000602000039000000000202041a000023de02200197000000000121019f0000001d020000290000000002020433000000a0022002100000234b02200197000000000121019f0000000602000039000000000012041b0000002101000029000000000101043300002324011001970000000b0200002900000000020204330000232402200197000000000021004b00006d0f0000613d0000001003000039000000000203041a0000239302200197000000000112019f000000000013041b000000150100002900000000010104330000232401100197000000050200002900000000020204330000232402200197000000000021004b00006d1c0000613d0000000f03000039000000000203041a0000239302200197000000000112019f000000000013041b0000001901000029000000000201043300000016010000290000000001010433002b23240010019b000000a00300043d000000000003004b00006f670000c13d0000000803000039000000000023041b0000002b0000006b00006d2d0000613d00000080011002100000000a02000039000000000302041a0000000001130019000000000012041b00000017010000290000000001010433002800000001001d0000001b010000290000000001010433002700000001001d0000000301000039000000000101041a002500000001001d000000000100041a000000400300043d000023d102000041002900000003001d0000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00007a790000c13d000000010300003100007aaa0000013d0000000201000039000000000101041a000000800200043d0000232b02200197000000400300043d000000240430003900000000002404350000002902000029000000000220008900000044043000390000000000240435000000400600043d000000000264004900000000052604360000006402300039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003060433000000200030008c0000000006030019000000000401001900006d770000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00006d710000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c0000718d0000c13d00000001020000390000000104000031000071a00000013d0000000301000039000000000101041a000000800200043d0000232b02200197000000400300043d000000240430003900000000002404350000002d02000029000000000220008900000044043000390000000000240435000000400600043d000000000264004900000000052604360000006402300039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003060433000000200030008c0000000006030019000000000401001900006dad0000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00006da70000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000071a50000c13d0000000103000031000071b80000013d000000010880008a00000080046002100000000004c4019f0000232406800197000000000864001900002324e680012a000023240c900197000023940080009c00006f300000213d0000008004e002100000000004c4019f000023240e6000d100000000004e004b000000010660208a00006f310000013d000000000007004b000000280000613d0000239c042000d10000239c0c4001970000000068ca00a9000000000096004b00007a040000613d00002324e960012a000000800d800270000023940060009c000079d10000213d0000008004e002100000000004d4019f000023240e9000d100000000004e004b000000010990208a000079d20000013d000000010990008a00000080046002100000000004d4019f0000232406900197000000000964001900002324e690012a000023240d800197000023940090009c00006f4f0000213d0000008004e002100000000004d4019f000023240e6000d100000000004e004b000000010660208a00006f500000013d000000010600008a0000000004800089000000000d480170000000000a000019000000000ad8c0d9000000000669004b0000000304a000c9000000020440015f0000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a9000000010cc0408a0000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000094900a900000000000d004b00006e0d0000c13d000000000600001900006e120000013d0000000006d600d90000000004d000890000000004d400d90000000104400039000000000cc400a90000000006c6019f00000000096900a9000023240080009c00006e1a0000213d000000250600002900000028066000b900000000608600d900006e6c0000013d000000250600002900000028bf6000b90000000000b8004b00006e6e0000a13d0000239d0080009c00000090060000390000008006004039000000000668022f000000700a000039000000800a004039000001000060008c000000080aa0808a0000000806608270000000100060008c000000000d060019000000040dd082700000000400d0008c000000000e0d0019000000020ee08270000000020400008a000000000ce000890000000200e0008c000000000c048019000000100060008c000000040aa0808a0000000400d0008c000000020aa0808a000000000aac0019000000ff06a0018f00000000066b01cf000024050ba00167000000ff0bb0018f000000010cf00270000000000bbc022f0025000000b601a30000000004a801cf000000800b40027000000025d6b000f90000000008af01cf002800000008001d000000800f800270000023240c40019700006e490000013d000000000dbd0019000000010660008a0000232400d0009c00006e500000813d0000239e0060009c00006e450000213d000000000ec600a90000008008d002100000000008f8019f00000000008e004b00006e450000213d000023240660019700000000064600a9000000250800002900000080088002100000000008f8019f002500000068005100000025f6b000f90000002808000029000023240d80019700006e5e0000013d000000000fbf0019000000010660008a0000232400f0009c00006e650000813d0000239e0060009c00006e5a0000213d0000000008c600a9000000800ef00210000000000ede019f0000000000e8004b00006e5a0000213d000023240660019700000000064600a9000000250400002900000080084002100000000008d8019f00000000066800490000000006a6022f000000000006004b00006e700000613d000000010990003a000000280000613d00000000477900d9000000000004004b000000010770c0390000234d0070009c00006ea00000413d000000280000013d000000010600008a0000000004b00089000000000a4b0170000000000c000019000000000cabc0d9000000000668004b0000000304c000c9000000020440015f0000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a9000000010990408a0000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000084800a900000000000a004b00006e950000c13d000000000600001900006e9a0000013d0000000006a600d90000000004a000890000000004a400d9000000010440003900000000099400a9000000000496019f00000000064800a900000000067600d90000234d0060009c000000280000813d0000000007600089000000a00600043d0000232308600197000023210060019800002322060000410000000006006019000000000986019f0000234d06900197000000010800008a0000234d0060009c000000000600001900000000060860190000000106600210000000ff0a90027000000000066a019f000000ff0000008b0000000006096019000000000469013f000000000a6400490000236900a0009c00007f960000813d0000000100a001900000236b040000410000236a040060410000236c064000d100000080066002700000000200a00190000000000406c0190000236d064000d100000080066002700000000400a00190000000000406c0190000236e064000d100000080066002700000000800a00190000000000406c0190000236f064000d100000080066002700000001000a00190000000000406c01900002370064000d100000080066002700000002000a00190000000000406c01900002371064000d100000080066002700000004000a00190000000000406c01900002372064000d100000080066002700000008000a00190000000000406c01900002373064000d100000080066002700000010000a00190000000000406c01900002374064000d100000080066002700000020000a00190000000000406c01900002375064000d100000080066002700000040000a00190000000000406c01900002376064000d100000080066002700000080000a00190000000000406c01900002377064000d100000080066002700000100000a00190000000000406c01900002378064000d100000080066002700000200000a00190000000000406c01900002379064000d100000080066002700000400000a00190000000000406c0190000237a064000d100000080066002700000800000a00190000000000406c0190000237b064000d100000080066002700000237c00a00198000000000406c0190000237d064000d100000080066002700000237e00a00198000000000406c0190000237f064000d100000080066002700000238000a00198000000000406c0190000238100a0019800002382064000d1000000800460c270000023200090009c00006f060000213d000000000009004b000000000448c0d900000020064002700000231400400198000000010660c0390000232b04600197000000000054004b00000000040600190000000004032019000000000603a01900000000034600490000232b043001970000002d0000006b00006f210000c13d000023240520019700000000545400a9000000010600008a000000000065004b0000730f0000613d000023249650012a0000008008400270000023940050009c000072ec0000213d0000008009900210000000000989019f000023240a6000d100000000009a004b000000010660208a000072ed0000013d0000000005200089000023240650019700000000646400a9000000000086004b000073310000613d00002324a860012a0000008009400270000023940060009c000072fb0000213d000000800aa00210000000000a9a019f000023240b8000d10000000000ab004b000000010880208a000072fc0000013d000000010660008a00000080048002100000000004c4019f0000232406600197000000000c6400190000232b08b0019700000000049c004b00000000060000390000000106004039000000000c64004b00006f430000c13d000000000008004b000000280000613d00000000408a00d9002800000004001d00000000408d00d9002500000004001d00000000098900d9000076ab0000013d0000000000c8004b000000280000a13d00000000408a00d9002800000004001d00000000408d00d9002500000004001d000023240080009c0000720f0000213d000000250600002900000028046000b900000000608400d9000076860000013d000000010660008a00000080049002100000000004d4019f000023240660019700000000096400190000232b0bb00197000000000489004b00000000060000390000000106004039000000000964004b00006f5e0000c13d00000000000b004b000000280000613d0000000006b800d9000077330000013d00000000009b004b000000280000a13d0000000060ba00d900000000a0bc00d90000232400b0009c000072650000213d0000000006a600a90000000060b600d90000770e0000013d0000000703000039000000000023041b0000002b0000006b00006f720000613d0000000a02000039000000000302041a000000000113001900002324011001970000239303300197000000000131019f000000000012041b00000017010000290000000001010433002800000001001d0000001b010000290000000001010433002700000001001d0000000201000039000000000101041a002500000001001d000000000100041a000000400300043d000023d102000041002900000003001d0000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002c00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002c02000029000000040020008c00007b260000c13d000000010300003100007b570000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00006fc70000c13d000000800300003900006fe60000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00006ff70000c13d0000008003000039000070160000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002800000005001d000000000315043600002404051001980000001f0610018f0000000004530019000000030700036700006fd90000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b00006fd50000c13d000000000006004b00006fe60000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d00000028020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000203043300000001030000290000000000230435000000030300002900000000030304330000002d0030002a000000280000413d0000002d04000029000070260000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002800000005001d000000000315043600002404051001980000001f0610018f00000000045300190000000307000367000070090000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000070050000c13d000000000006004b000070160000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d00000028020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d00000000020304330000000103000029000000000023043500000002030000290000000003030433000000290030002a000000280000413d00000029040000290000000003430019000000000023004b000075840000a13d000000400100043d0000004402100039000023e203000041000083f40000013d000000010440008a0000008003300210000000000383019f00002324044001970000000004430019000023249340012a0000232408200197000023940040009c000070690000213d0000008009900210000000000989019f000023240a3000d100000000009a004b000000010330208a0000706a0000013d000000010550008a0000008003300210000000000363019f00002324055001970000000005530019000023247350012a0000232406100197000023940050009c000070810000213d0000008007700210000000000767019f00002324083000d1000000000078004b000000010330208a000070820000013d000000010440008a0000008002200210000000000282019f00002324044001970000000004420019000023249240012a0000232408300197000023940040009c0000709b0000213d0000008009900210000000000989019f000023240a2000d100000000009a004b000000010220208a0000709c0000013d000000010110008a0000008005500210000000000565019f00002324011001970000000005150019000023247150012a0000232406300197000023940050009c000070b50000213d0000008007700210000000000767019f00002324081000d1000000000078004b000000010110208a000070b60000013d000000010330008a0000008004400210000000000484019f000023240330019700000000083400190000232b04600197000000000328004b00000000060000390000000106004039000000000363004b000070780000c13d000000000004004b000000280000613d00000000024200d90000785e0000013d000000000034004b000000280000a13d00000000504500d900000000604700d9000023240040009c000075e50000213d00000000056500a900000000704500d9000078390000013d000000010330008a0000008005500210000000000565019f00002324033001970000000005350019000000000315004b00000000050000390000000105004039000000000353004b0000708d0000c13d0000006001100270000070980000013d000023960030009c000000280000813d00000000022400a90000239702200197000000000121004b000000010330408a0000006001100270000000a002300210000000000112019f0000234d0010009c000000280000813d002700010000003d002d000000100091000079bc0000013d000000010220008a0000008004400210000000000484019f000023240220019700000000042400190000232b02600197000000000434004b00000000060000390000000106004039000000000664004b000070ac0000c13d000000000002004b000000280000613d00000000402500d900000000502700d900000000032300d90000795c0000013d000000000062004b000000280000a13d00000000402500d900000000502700d9000023240020009c000076330000213d00000000075400a900000000902700d9000079370000013d000000010110008a0000008005500210000000000565019f00002324011001970000000001150019000000000131004b00000000050000390000000105004039000000000551004b000070c30000c13d00000000012400a9002d0060003002780000239701100197000070cc0000013d000023960050009c000000280000813d00000000012400a90000239701100197000000000213004b000000010550408a0000006002200270000000a003500210002d0000002301a3000000000001004b000070d10000613d0000002d01000029002d00010010003e000000280000613d0000002d010000290000234d0010009c000079bb0000413d000000280000013d0000000f01000039000000000101041a000000a00210027000002323022001970000233a001001980000232201000041000000000100601900000000012101a0000015df0000613d0000234d2110012c0000234d0220c0990000002a030000290000234d4330012c000000000113013f0000234d0440c09900000000252400d9000000200000006b0000000003020019000000000330c089000000ff011002120000000004510049000000000114019f0000000001056019000000000005004b000000000501c019001a00000005001d000000000002004b000000000203c019000023230120019700002321002001980000232202000041000000000200601900000000001201a0000000280000c13d0000001a020000290000232100200198000080000100008a0000000001006019000000080220027000007fff0220018f000000000121019f000000000010043f0000001201000039000000200010043f0000000001000414000023140010009c0000231401008041000000c0011002100000238a011001c700008010020000398c4b8c460000040f0000000100200190000000280000613d0000001a02000029000000ff0220018f000000010220020f000000000101043b000000000301041a000000000223013f000000000021041b001a00000000001d000006990000013d00000025020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a00600003900000000006504350000008405100039000000280600002900000000006504350000006405100039002500000007001d00000000007504350000004405100039000000000035043500000027030000290000235005300197000000a403100039002700000005001d0000000000530435000000e40310003900000000040404330000000000430435002c01040010003d002d00000004001d000000000004004b000071420000613d00000000010000190000002c0310002900000000041200190000000004040433000000000043043500000020011000390000002d0010006c000071370000413d000071420000a13d0000002c020000290000002d012000290000000000010435000000400100043d002400000001001d0000232f010000410000000000100443000000290100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002902000029000000040020008c0000716e0000613d0000002d020000290000001f0220003900002404022001970000002c0220002900000024030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000029020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002b03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000303000039000023d304000041000000250500002900000027060000298c4b8c410000040f000000010020019000005b0d0000c13d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000071bd0000c13d00000060030000390000008001000039000071db0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000400010020019300030000000103550000006001100270000123140010019d0000231403100197000000000003004b000071e60000c13d00000060020000390000008001000039000072040000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000071ce0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000071ca0000c13d000000000006004b000071db0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b00006ad30000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d00006ad30000013d0000003f013000390000240401100197000000400200043d0000000001120019000000400010043f000000000132043600002404043001980000001f0530018f00000000034100190000000306000367000071f70000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000071f30000c13d000000000005004b000072040000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000040000006b00000da10000613d0000000002020433000000000002004b00006aff0000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d00006aff0000013d000000250600002900240028d06000bd0000000000d8004b000076850000a13d0000239d0080009c00000090040000390000008004004039000000000448022f00000070060000390000008006004039000001000040008c000000080660808a0000000804408270000000100040008c000000000a040019000000040aa082700000000400a0008c000000000f0a0019000000020ff08270000000020b00008a000000000ef000890000000200f0008c000000000e0b8019000000100040008c000000040660808a0000000400a0008c000000020660808a000000000b6e0019000000ff04b0018f00000000044d01cf0000240506b00167000000ff0660018f000000240d000029000000010ad0027000000000066a022f00210000006401a30000000004b801cf000000800f40027000000021a6f000f900230000000b001d000000000bbd01cf00220000000b001d000000800db00270002400000004001d000023240e400197000072410000013d000000000afa0019000000010660008a0000232400a0009c000072480000813d0000239e0060009c0000723d0000213d0000000004e600a9000000800ba00210000000000bdb019f0000000000b4004b0000723d0000213d000023240460019700000024044000b9000000210600002900000080066002100000000006d6019f002100000046005100000021a6f000f90000002204000029000023240d400197000072560000013d000000000afa0019000000010660008a0000232400a0009c0000725d0000813d0000239e0060009c000072520000213d0000000004e600a9000000800ba00210000000000bdb019f0000000000b4004b000072520000213d000023240460019700000024044000b9000000210600002900000080066002100000000006d6019f00000000044600490000002306400250000076860000013d00280000c0a600ad0000000000cb004b0000770d0000a13d0000239d00b0009c0000009006000039000000800600403900000000066b022f000000700a000039000000800a004039000001000060008c000000080aa0808a0000000806608270000000100060008c000000000d060019000000040dd082700000000400d0008c000000000f0d0019000000020ff08270000000020400008a000000000ef000890000000200f0008c000000000e048019000000100060008c000000040aa0808a0000000400d0008c000000020aa0808a0000000004ae0019000000ff0640018f00000000066c01cf000024050c400167000000ff0cc0018f000000280e000029000000010de00270000000000ccd022f0023000000c601a3000000000a4b01cf000000800da0027000000023c6d000f9002500000004001d00000000044e01cf002400000004001d000000800f40027000280000000a001d000023240ea00197000072960000013d000000000cdc0019000000010660008a0000232400c0009c0000729d0000813d0000239e0060009c000072920000213d000000000ae600a90000008004c002100000000004f4019f00000000004a004b000072920000213d000023240460019700000028044000b9000000230600002900000080066002100000000006f6019f002300000046005100000023c6d000f90000002404000029000023240f400197000072ab0000013d000000000cdc0019000000010660008a0000232400c0009c000072b20000813d0000239e0060009c000072a70000213d0000000004e600a9000000800ac00210000000000afa019f0000000000a4004b000072a70000213d000023240460019700000028044000b9000000230600002900000080066002100000000006f6019f000000000446004900000025064002500000770e0000013d00002314023001970000001f0420018f0000234a03200198000072c40000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000072c00000c13d000000000004004b000072d10000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d0001043000002314023001970000001f0420018f0000234a03200198000072dd0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000072d90000c13d000000000004004b000072ea0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d00010430000000010660008a0000008005500210000000000585019f00002324066001970000000006650019000023249560012a0000232408400197000023940060009c0000730a0000213d0000008009900210000000000989019f000023240a5000d100000000009a004b000000010550208a0000730b0000013d000000010880008a0000008006600210000000000696019f0000232408800197000000000886001900002324a680012a0000232409400197000023940080009c0000732c0000213d000000800aa00210000000000a9a019f000023240b6000d10000000000ab004b000000010660208a0000732d0000013d000000010550008a0000008006600210000000000686019f00002324055001970000000006560019000000000546004b00000000060000390000000106004039000000000565004b000073180000c13d00000000032300a900000060044002700000239703300197000073210000013d000023960050009c000000280000813d00000000032300a90000239703300197000000000434004b000000010550408a0000006004400270000000a005500210000000000445019f000000000003004b000073250000613d000000010440003a000000280000613d0000234d0040009c000000280000813d00000029022000290000232402200197000000000012004b00001b890000413d0000733c0000013d000000010660008a0000008008800210000000000898019f00002324066001970000000008680019000000000648004b00000000080000390000000108004039000000000686004b000073420000c13d000000600340027000000029022000290000232402200197000000000012004b000083f10000813d00000000043000890000001003000039000000000103041a0000239301100197000000000121019f000000000013041b00002d260000013d000023960060009c000000280000813d00000000035300a90000239703300197000000000334004b000000010660408a0000006003300270000000a004600210000000000334019f0000234d0030009c000073370000413d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b0000737e0000c13d000000600300003900000080010000390000739c0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000074810000c13d000000600300003900000080010000390000749f0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f000000000451001900000003070003670000738f0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000738b0000c13d000000000006004b0000739c0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000002020000290000000000120435000000400100043d0000000302000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000073c50000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000073bb0000413d000073c50000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000073cc0000c13d00000001020000390000000104000031000073df0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000073e40000c13d00000060030000390000008001000039000074020000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000073f50000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000073f10000c13d000000000006004b000074020000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000003020000290000000000120435000000400200043d0000004401200039000001200300043d0000006004000039002800000004001d000000000041043500000024012000390000002d040000290000000000410435000023df010000410000000000120435000000040120003900000029040000290000000000410435000000640420003900000000130304340000000000340435002b00840020003d002c00000003001d000000000003004b0000742d0000613d00000000020000190000002b0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c000074220000413d0000742d0000a13d0000002b020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c0000745b0000613d0000002c020000290000001f0220003900002404022001970000002b0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000081fb0000613d0000000301000039000000000101041a000000400200043d000000240320003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b0000747a0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000074700000413d0000747a0000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c00007fe80000c13d0000000102000039000000010100003100007ffb0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000074920000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000748e0000c13d000000000006004b0000749f0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000003020000290000000000120435000000400100043d0000000202000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000074c80000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000074be0000413d000074c80000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000074cf0000c13d00000001020000390000000104000031000074e20000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000074e70000c13d00000060030000390000008001000039000075050000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000074f80000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000074f40000c13d000000000006004b000075050000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000002020000290000000000120435000000400200043d0000004401200039000001200300043d0000006004000039002800000004001d000000000041043500000024012000390000002d040000290000000000410435000023df010000410000000000120435000000040120003900000029040000290000000000410435000000640420003900000000130304340000000000340435002b00840020003d002c00000003001d000000000003004b000075300000613d00000000020000190000002b0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c000075250000413d000075300000a13d0000002b020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c0000755e0000613d0000002c020000290000001f0220003900002404022001970000002b0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000082140000613d0000000201000039000000000101041a000000400200043d000000240320003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b0000757d0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000075730000413d0000757d0000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c00007fff0000c13d00000001020000390000000101000031000080120000013d000001400200043d0028232b0020019c000077c70000c13d0000001f0100002900000000020104330000002b01000029000000000301043300000024010000290000000004010433000000400500043d0000002006500039000000800100043d0000002d0700002900000000007604350000232404400197000000600650003900000000004604350000232b03300197000000400450003900000000003404350000232303200197000023210020019800002322020000410000000002006019000000000232019f0000008003500039000000000023043500000029020000290000000000250435000000400200043d0000000003250049000000a003300039000023140030009c00002314030080410000006003300210000023140020009c00002314020080410000004002200210000000000223019f0000000003000414000023140030009c0000231403008041000000c003300210000000000232019f0000232b0610019700002388012001c70000800d020000390000000303000039000023e10400004100000000050004118c4b8c410000040f0000000100200190000000280000613d000034300000013d0000002d020000290024002400200074000078160000c13d00000029020000290029001f0020007400007cbe0000c13d000000400100043d00000060021000390000002903000029000000000032043500000040021000390000002403000029000000000032043500000020021000390000002b0300002900000000003204350000002c020000290000000000210435000000400200043d00000000012100490000008001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000303000039000023d404000041000000250500002900000020060000298c4b8c410000040f00000001002001900000118b0000c13d000000280000013d00000000686500a9000000000064004b000078380000a13d0000239d0040009c00000090050000390000008005004039000000000554022f00000070070000390000008007004039000001000050008c000000080770808a0000000805508270000000100050008c00000000090500190000000409908270000000040090008c000000000a090019000000020aa08270000000020b00008a000000000ca000890000000200a0008c000000000c0b8019000000100050008c000000040770808a000000040090008c000000020770808a00000000057c0019000000ff0750018f00000000067601cf0000240507500167000000ff0770018f0000000109800270000000000779022f000000000a76019f00000000065401cf000000800760027000000000dc7a00d900000000095801cf000000800b9002700000232408600197000076120000013d000000000d7d0019000000010cc0008a0000232400d0009c000076190000813d0000239e00c0009c0000760e0000213d000000000e8c00a9000000800fd00210000000000fbf019f0000000000fe004b0000760e0000213d000023240cc00197000000000c6c00a9000000800aa00210000000000aba019f000000000aca004900000000cb7a00d90000232409900197000076250000013d000000000c7c0019000000010bb0008a0000232400c0009c0000762c0000813d0000239e00b0009c000076210000213d000000000d8b00a9000000800ec00210000000000e9e019f0000000000ed004b000076210000213d0000232407b0019700000000066700a90000008007a00210000000000797019f0000000006670049000000000756022f000078390000013d000000008a5400a9000000000082004b000079360000a13d0000239d0020009c00000090070000390000008007004039000000000772022f00000070090000390000008009004039000001000070008c000000080990808a0000000807708270000000100070008c000000000b070019000000040bb082700000000400b0008c000000000c0b0019000000020cc08270000000020d00008a000000000ec000890000000200c0008c000000000e0d8019000000100070008c000000040990808a0000000400b0008c000000020990808a00000000079e0019000000ff0970018f00000000089801cf0000240509700167000000ff0990018f000000010ba0027000000000099b022f002b0000009801a300000000087201cf00000080098002700000002bfe9000f9000000000a7a01cf002d0000000a001d000000800da00270000023240a800197000076610000013d000000000f9f0019000000010ee0008a0000232400f0009c000076680000813d0000239e00e0009c0000765d0000213d000000000bae00a9000000800cf00210000000000cdc019f0000000000cb004b0000765d0000213d000023240be00197000000000b8b00a90000002b0c000029000000800cc00210000000000cdc019f002b000000bc00510000002bed9000f90000002d0b000029000023240bb00197000076760000013d000000000e9e0019000000010dd0008a0000232400e0009c0000767d0000813d0000239e00d0009c000076720000213d000000000fad00a9000000800ce00210000000000cbc019f0000000000cf004b000076720000213d0000232409d0019700000000088900a90000002b0900002900000080099002100000000009b9019f0000000008890049000000000978022f000079370000013d000000010600008a0000000004800089000000000d480170000000000a000019000000000ad8c0d9000000000669004b0000000304a000c9000000020440015f0000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a9000000010cc0408a0000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000094900a900000000000d004b000076a40000c13d0000000006000019000076a90000013d0000000006d600d90000000004d000890000000004d400d90000000104400039000000000cc400a90000000006c6019f00000000096900a9000023240080009c000076b10000213d000000250600002900000028066000b900000000608600d9000077030000013d000000250600002900000028bf6000b90000000000b8004b000077050000a13d0000239d0080009c00000090060000390000008006004039000000000668022f000000700a000039000000800a004039000001000060008c000000080aa0808a0000000806608270000000100060008c000000000d060019000000040dd082700000000400d0008c000000000e0d0019000000020ee08270000000020400008a000000000ce000890000000200e0008c000000000c048019000000100060008c000000040aa0808a0000000400d0008c000000020aa0808a000000000aac0019000000ff06a0018f00000000066b01cf000024050ba00167000000ff0bb0018f000000010cf00270000000000bbc022f0025000000b601a30000000004a801cf000000800b40027000000025d6b000f90000000008af01cf002800000008001d000000800f800270000023240c400197000076e00000013d000000000dbd0019000000010660008a0000232400d0009c000076e70000813d0000239e0060009c000076dc0000213d000000000ec600a90000008008d002100000000008f8019f00000000008e004b000076dc0000213d000023240660019700000000064600a9000000250800002900000080088002100000000008f8019f002500000068005100000025f6b000f90000002808000029000023240d800197000076f50000013d000000000fbf0019000000010660008a0000232400f0009c000076fc0000813d0000239e0060009c000076f10000213d0000000008c600a9000000800ef00210000000000ede019f0000000000e8004b000076f10000213d000023240660019700000000064600a9000000250400002900000080084002100000000008d8019f00000000066800490000000006a6022f000000000006004b000077070000613d000000010990003a000000280000613d00000000477900d9000000000004004b000000010770c0390000234d0070009c000077370000413d000000280000013d000000010600008a0000000004b00089000000000a4b0170000000000c000019000000000cabc0d9000000000668004b0000000304c000c9000000020440015f0000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a9000000010990408a0000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000084800a900000000000a004b0000772c0000c13d0000000006000019000077310000013d0000000006a600d90000000004a000890000000004a400d9000000010440003900000000099400a9000000000496019f00000000064800a900000000067600d90000234d0060009c000000280000813d0000000007600089000000a00600043d0000232308600197000023210060019800002322060000410000000006006019000000000986019f0000234d06900197000000010800008a0000234d0060009c000000000600001900000000060860190000000106600210000000ff0a90027000000000066a019f000000ff0000008b0000000006096019000000000469013f000000000a6400490000236900a0009c00007f960000813d0000000100a001900000236b040000410000236a040060410000236c064000d100000080066002700000000200a00190000000000406c0190000236d064000d100000080066002700000000400a00190000000000406c0190000236e064000d100000080066002700000000800a00190000000000406c0190000236f064000d100000080066002700000001000a00190000000000406c01900002370064000d100000080066002700000002000a00190000000000406c01900002371064000d100000080066002700000004000a00190000000000406c01900002372064000d100000080066002700000008000a00190000000000406c01900002373064000d100000080066002700000010000a00190000000000406c01900002374064000d100000080066002700000020000a00190000000000406c01900002375064000d100000080066002700000040000a00190000000000406c01900002376064000d100000080066002700000080000a00190000000000406c01900002377064000d100000080066002700000100000a00190000000000406c01900002378064000d100000080066002700000200000a00190000000000406c01900002379064000d100000080066002700000400000a00190000000000406c0190000237a064000d100000080066002700000800000a00190000000000406c0190000237b064000d100000080066002700000237c00a00198000000000406c0190000237d064000d100000080066002700000237e00a00198000000000406c0190000237f064000d100000080066002700000238000a00198000000000406c0190000238100a0019800002382064000d1000000800460c270000023200090009c0000779d0000213d000000000009004b000000000448c0d900000020064002700000231400400198000000010660c0390000232b04600197000000000054004b00000000040600190000000004032019000000000603a01900000000034600490000232b043001970000002d0000006b000077b80000c13d000023240520019700000000545400a9000000010600008a000000000065004b00007a3a0000613d000023249650012a0000008008400270000023940050009c00007a170000213d0000008009900210000000000989019f000023240a6000d100000000009a004b000000010660208a00007a180000013d0000000005200089000023240650019700000000646400a9000000000086004b00007a5c0000613d00002324a860012a0000008009400270000023940060009c00007a260000213d000000800aa00210000000000a9a019f000023240b8000d10000000000ab004b000000010880208a00007a270000013d000000400300043d000001c002300039000000400020043f000001000200043d0000232b022001970000000004230436000000800200043d0000232b02200197002a00000004001d0000000000240435000000a00200043d000000000002004b00000002020000390000000302006039000000000202041a0000232b022001970000004004300039002700000004001d0000000000240435000000a00200043d000000000002004b00000003020000390000000202006039000000000202041a0000232b022001970000006004300039002300000004001d0000000000240435000000020200002900000000020204330000008004300039002600000004001d000000000024043500000003020000290000000002020433002c00000003001d000000a003300039002500000003001d0000000000230435000000a00200043d000000000002004b00007bf40000c13d0000000202000039000000000202041a000000400300043d000000240430003900000019050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b000078100000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b000078060000413d000078100000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c00007e240000c13d000000010200003900007e370000013d0000000101000039000000000101041a000000400300043d00002344020000410000000000230435001e00000003001d000000040230003900000026030000290000000000320435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002a00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002a02000029000000040020008c000080a10000c13d0000000103000031000080d20000013d000000010700008a000000000540008900000000055401700000000006000019000000000654c0d9000000000272004b00000003046000c9000000020440015f00000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a9000000010330408a00000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a900000000076400a9000000020770008900000000044700a900000000066400a9000000020660008900000000044600a9000000000005004b000078570000c13d00000000020000190000785c0000013d00000000025200d9000000000650008900000000055600d9000000010550003900000000033500a9000000000232019f00000000022400a900000000011200d90000234d0010009c000000280000813d0029000000100091002d00000000001d000000290000006b000079bb0000613d0000000201000039000000000101041a00000000020004100000232b02200197000000400300043d00000024043000390000000000240435000000400500043d000000000254004900000000042504360000004402300039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b000078850000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000787b0000413d000078850000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c0000788c0000c13d000000010200003900000001040000310000789f0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000078a40000c13d00000060030000390000008001000039000078c20000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000078b50000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000078b10000c13d000000000006004b000078c20000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d0000000001010433002100000001001d002700000000001d0000002d0000006b000079c00000613d0000000301000039000000000101041a00000000020004100000232b02200197000000400300043d00000024043000390000000000240435000000400500043d000000000254004900000000042504360000004402300039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b000078ee0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000078e40000413d000078ee0000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000078f50000c13d00000001020000390000000104000031000079080000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b0000790d0000c13d000000600300003900000080010000390000792b0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f000000000451001900000003070003670000791e0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000791a0000c13d000000000006004b0000792b0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d0000000001010433002000000001001d002800000000001d00004b140000013d000000010900008a000000000720008900000000077201700000000008000019000000000872c0d9000000000393004b00000003098000c9000000020990015f000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a9000000010660408a000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a9000000000a8900a9000000020aa0008900000000099a00a900000000088900a9000000020880008900000000089800a9000000000007004b000079550000c13d00000000030000190000795a0000013d00000000037300d9000000000970008900000000077900d9000000010770003900000000066700a9000000000363019f00000000033800a9000023240020009c000079610000213d00000000045400a900000000202400d9000079ae0000013d00000000565400a9000000000052004b000079b00000a13d0000239d0020009c00000090040000390000008004004039000000000442022f00000070070000390000008007004039000001000040008c000000080770808a0000000804408270000000100040008c00000000080400190000000408808270000000040080008c00000000090800190000000209908270000000020a00008a000000000b900089000000020090008c000000000b0a8019000000100040008c000000040770808a000000040080008c000000020770808a00000000047b0019000000ff0740018f00000000057501cf0000240507400167000000ff0770018f0000000108600270000000000778022f000000000875019f00000000024201cf000000800520027000000000ba5800d900000000074601cf000000800970027000002324062001970000798e0000013d000000000b5b0019000000010aa0008a0000232400b0009c000079950000813d0000239e00a0009c0000798a0000213d000000000c6a00a9000000800db00210000000000d9d019f0000000000dc004b0000798a0000213d000023240aa00197000000000a2a00a90000008008800210000000000898019f0000000008a8004900000000a95800d90000232407700197000079a10000013d000000000a5a0019000000010990008a0000232400a0009c000079a80000813d0000239e0090009c0000799d0000213d000000000b6900a9000000800ca00210000000000c7c019f0000000000cb004b0000799d0000213d000023240590019700000000022500a90000008005800210000000000575019f0000000002250049000000000242022f000000000002004b000079b20000613d000000010330003a000000280000613d00000000121300d9000000000001004b000000010220c039002900000002001d0000234d0020009c002d00000000001d000000280000813d000000290000006b000078650000c13d002700010000003d002900000000001d002100000000001d0000002d0000006b000078ce0000c13d002d00000000001d00004b130000013d000000010880008a00000080046002100000000004c4019f0000232406800197000000000864001900002324e680012a000023240c900197000023940080009c000079e00000213d0000008004e002100000000004c4019f000023240e6000d100000000004e004b000000010660208a000079e10000013d000000010990008a00000080046002100000000004d4019f0000232406900197000000000964001900002324e690012a000023240d800197000023940090009c000079ff0000213d0000008004e002100000000004d4019f000023240e6000d100000000004e004b000000010660208a00007a000000013d000000010660008a00000080048002100000000004c4019f0000232406600197000000000c6400190000232b08b0019700000000049c004b00000000060000390000000106004039000000000c64004b000079f30000c13d000000000008004b000000280000613d00000000408a00d9002900000004001d00000000408d00d9002700000004001d00000000098900d900007e880000013d0000000000c8004b000000280000a13d00000000408a00d9002900000004001d00000000408d00d9002700000004001d000023240080009c00007d540000213d000000270600002900000029046000b900000000608400d900007e630000013d000000010660008a00000080049002100000000004d4019f000023240660019700000000096400190000232b0bb00197000000000489004b00000000060000390000000106004039000000000964004b00007a0e0000c13d00000000000b004b000000280000613d0000000006b800d900007f110000013d00000000009b004b000000280000a13d0000000060ba00d900000000a0bc00d90000232400b0009c00007daa0000213d0000000006a600a90000000060b600d900007eec0000013d000000010660008a0000008005500210000000000585019f00002324066001970000000006650019000023249560012a0000232408400197000023940060009c00007a350000213d0000008009900210000000000989019f000023240a5000d100000000009a004b000000010550208a00007a360000013d000000010880008a0000008006600210000000000696019f0000232408800197000000000886001900002324a680012a0000232409400197000023940080009c00007a570000213d000000800aa00210000000000a9a019f000023240b6000d10000000000ab004b000000010660208a00007a580000013d000000010550008a0000008006600210000000000686019f00002324055001970000000006560019000000000546004b00000000060000390000000106004039000000000565004b00007a430000c13d00000000032300a90000006004400270000023970330019700007a4c0000013d000023960050009c000000280000813d00000000032300a90000239703300197000000000434004b000000010550408a0000006004400270000000a005500210000000000445019f000000000003004b00007a500000613d000000010440003a000000280000613d0000234d0040009c000000280000813d00000029022000290000232402200197000000000012004b00001b890000413d00007a670000013d000000010660008a0000008008800210000000000898019f00002324066001970000000008680019000000000648004b00000000080000390000000108004039000000000686004b00007a6d0000c13d000000600340027000000029022000290000232402200197000000000012004b000083f10000813d00000000043000890000001003000039000000000103041a0000239301100197000000000121019f000000000013041b000034010000013d000023960060009c000000280000813d00000000035300a90000239703300197000000000334004b000000010660408a0000006003300270000000a004600210000000000334019f0000234d0030009c00007a620000413d000000280000013d0000002d0300002900000029023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d0460002900007a990000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b00007a930000c13d000000000005004b00007aa60000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000007bdf0000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002900000002001d000023460020009c000000280000813d000000290000006b00007bdf0000613d00000025020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a00600003900000000006504350000008405100039000000280600002900000000006504350000006405100039002500000007001d00000000007504350000004405100039000000000035043500000027030000290000235005300197000000a403100039002700000005001d0000000000530435000000e40310003900000000040404330000000000430435002c01040010003d002d00000004001d000000000004004b00007ae80000613d00000000010000190000002c0310002900000000041200190000000004040433000000000043043500000020011000390000002d0010006c00007add0000413d00007ae80000a13d0000002c020000290000002d012000290000000000010435000000400100043d002400000001001d0000232f010000410000000000100443000000290100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002902000029000000040020008c00007b140000613d0000002d020000290000001f0220003900002404022001970000002c0220002900000024030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000029020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002b03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f000000000200041400007bd20000013d0000002d0300002900000029023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002c020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d0460002900007b460000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b00007b400000c13d000000000005004b00007b530000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f0003000000010355000000010020019000007bdf0000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002900000002001d000023460020009c000000280000813d000000290000006b00007bdf0000613d00000025020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a00600003900000000006504350000008405100039000000280600002900000000006504350000006405100039002500000007001d00000000007504350000004405100039000000000035043500000027030000290000235005300197000000a403100039002700000005001d0000000000530435000000e40310003900000000040404330000000000430435002c01040010003d002d00000004001d000000000004004b00007b950000613d00000000010000190000002c0310002900000000041200190000000004040433000000000043043500000020011000390000002d0010006c00007b8a0000413d00007b950000a13d0000002c020000290000002d012000290000000000010435000000400100043d002400000001001d0000232f010000410000000000100443000000290100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002902000029000000040020008c00007bc10000613d0000002d020000290000001f0220003900002404022001970000002c0220002900000024030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000029020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002b03000029000000000032043500000028020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000303000039000023d304000041000000250500002900000027060000298c4b8c410000040f0000000100200190000000280000613d00000026010000290000000001010433000000c00200043d002d0000001200510000001a010000290000000001010433000000000001004b0000000002000039000000010200c039000000a00100043d000000000001004b00000000030000390000000103006039000000000332013f0000001e020000290000000002020433000000010030019000007ce00000613d0029002d0000002d002d00000002001d00007ce10000013d00000001030000290000002c02000029000000c0042000390000000002030433002200000004001d0000000000240435000000a00200043d000000000002004b00007dff0000c13d0000002c0b000029000000e001b00039000000010200002900000000020204330000000000210435000000c00200043d000000000002004b00000000030000190000234d030020410000234d04200197000000000004004b00000000050000190000234d050040410000234d0040009c000000000503c019000000000005004b00000000020060190000010004b000390000000000240435000000a00200043d000000000002004b00000029030000290000002d02000029000000000203601900000000022000890000012006b000390000000000260435000000180200002900000000020204330000014007b0003900000000002704350000001c0200002900000000020204330000018003b000390000000305000039000000000053043500002350022001970000016008b000390000000000280435000001a005b00039000001600200043d0000000000250435000023e009000041000000400200043d00000000009204350000002009000039000000040a20003900000000009a043500000000090b04330000232b09900197000000240a20003900000000009a04350000002a0900002900000000090904330000232b09900197000000440a20003900000000009a0435000000270900002900000000090904330000232b09900197000000640a20003900000000009a0435000000230900002900000000090904330000232b09900197000000840a20003900000000009a043500000026090000290000000009090433000000a40a20003900000000009a043500000025090000290000000009090433000000c40a20003900000000009a043500000022090000290000000009090433000000e40a20003900000000009a043500000000010104330000010409200039000000000019043500000000010404330000012404200039000000000014043500000000010604330000014404200039000000000014043500000000010704330000016404200039000000000014043500000000010804330000235001100197000001840420003900000000001404350000000001030433000000ff0110018f000001a40320003900000000001304350000000001050433000001c003000039000001c4042000390000000000340435000001e40320003900000000140104340000000000430435002a02040020003d002c00000004001d000000000004004b00007c770000613d00000000020000190000002a0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c00007c6c0000413d00007c770000a13d0000002a020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000280100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002802000029000000040020008c000075870000613d0000002c020000290000001f0220003900002404022001970000002a0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000028020000298c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000075870000c13d00002314023001970000001f0420018f0000234a0320019800007caf0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00007cab0000c13d000000000004004b00007cbc0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d000104300000000101000039000000000101041a000000400300043d00002344020000410000000000230435002300000003001d000000040230003900000026030000290000000000320435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002a00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002a02000029000000040020008c000084880000c13d0000000103000031000084b90000013d002900000002001d000000000001004b00007d1c0000c13d00000029010000290000234d0010009c000081370000413d0000000201000039000000000101041a000000800200043d0000232b02200197000000400300043d000000240430003900000000002404350000002902000029000000000220008900000044043000390000000000240435000000400600043d000000000264004900000000052604360000006402300039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003060433000000200030008c0000000006030019000000000401001900007d090000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00007d030000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000080df0000c13d00000001020000390000000104000031000080f20000013d0000002d010000290000234d0010009c000081ad0000413d0000000301000039000000000101041a000000800200043d0000232b02200197000000400300043d000000240430003900000000002404350000002d02000029000000000220008900000044043000390000000000240435000000400600043d000000000264004900000000052604360000006402300039000000400020043f0000232b021001970000000001050433000023b701100197000023b8071001c70000000000750435000000400100043d0000000003060433000000200030008c0000000006030019000000000401001900007d420000413d0000000004010019000000000603001900000000570504340000000004740436000000200660008a000000200060008c00007d3c0000813d000000000705043300000003056002100000010005500089000000010550020f000000000006004b00000000050060190000000006500089000000000667016f000000010550008a0000000007040433000000000557016f000000000565019f0000000000540435000000400500043d0000000004000414000000040020008c000080f70000c13d00000001030000310000810a0000013d000000270600002900220029d06000bd0000000000d8004b00007e620000a13d0000239d0080009c00000090040000390000008004004039000000000448022f00000070060000390000008006004039000001000040008c000000080660808a0000000804408270000000100040008c000000000a040019000000040aa082700000000400a0008c000000000f0a0019000000020ff08270000000020b00008a000000000ef000890000000200f0008c000000000e0b8019000000100040008c000000040660808a0000000400a0008c000000020660808a000000000b6e0019000000ff04b0018f00000000044d01cf0000240506b00167000000ff0660018f000000220d000029000000010ad0027000000000066a022f001f0000006401a30000000004b801cf000000800f4002700000001fa6f000f900210000000b001d000000000bbd01cf00200000000b001d000000800db00270002200000004001d000023240e40019700007d860000013d000000000afa0019000000010660008a0000232400a0009c00007d8d0000813d0000239e0060009c00007d820000213d0000000004e600a9000000800ba00210000000000bdb019f0000000000b4004b00007d820000213d000023240460019700000022044000b90000001f0600002900000080066002100000000006d6019f001f0000004600510000001fa6f000f90000002004000029000023240d40019700007d9b0000013d000000000afa0019000000010660008a0000232400a0009c00007da20000813d0000239e0060009c00007d970000213d0000000004e600a9000000800ba00210000000000bdb019f0000000000b4004b00007d970000213d000023240460019700000022044000b90000001f0600002900000080066002100000000006d6019f0000000004460049000000210640025000007e630000013d00290000c0a600ad0000000000cb004b00007eeb0000a13d0000239d00b0009c0000009006000039000000800600403900000000066b022f000000700a000039000000800a004039000001000060008c000000080aa0808a0000000806608270000000100060008c000000000d060019000000040dd082700000000400d0008c000000000f0d0019000000020ff08270000000020400008a000000000ef000890000000200f0008c000000000e048019000000100060008c000000040aa0808a0000000400d0008c000000020aa0808a0000000004ae0019000000ff0640018f00000000066c01cf000024050c400167000000ff0cc0018f000000290e000029000000010de00270000000000ccd022f0021000000c601a3000000000a4b01cf000000800da0027000000021c6d000f9002700000004001d00000000044e01cf002200000004001d000000800f40027000290000000a001d000023240ea0019700007ddb0000013d000000000cdc0019000000010660008a0000232400c0009c00007de20000813d0000239e0060009c00007dd70000213d000000000ae600a90000008004c002100000000004f4019f00000000004a004b00007dd70000213d000023240460019700000029044000b9000000210600002900000080066002100000000006f6019f002100000046005100000021c6d000f90000002204000029000023240f40019700007df00000013d000000000cdc0019000000010660008a0000232400c0009c00007df70000813d0000239e0060009c00007dec0000213d0000000004e600a9000000800ac00210000000000afa019f0000000000a4004b00007dec0000213d000023240460019700000029044000b9000000210600002900000080066002100000000006f6019f0000000004460049000000270640025000007eec0000013d0000000302000039000000000202041a000000400300043d000000240430003900000019050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b00007e1e0000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b00007e140000413d00007e1e0000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c00007fa90000c13d000000010200003900007fbc0000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00007e3c0000c13d0000006004000039000000800300003900007e5a0000013d0000003f031000390000240403300197000000400400043d0000000003340019000000400030043f000000000314043600002404061001980000001f0710018f0000000005630019000000030800036700007e4d0000613d000000000908034f000000000a030019000000009b09043c000000000aba043600000000005a004b00007e490000c13d000000000007004b00007e5a0000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000002004b000000280000613d0000000002040433000023200020009c000000280000213d0000001f0020008c00007bf50000213d000000280000013d000000010600008a0000000004800089000000000d480170000000000a000019000000000ad8c0d9000000000669004b0000000304a000c9000000020440015f0000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a9000000010cc0408a0000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000044900a90000000009a400a9000000020990008900000000094900a900000000000d004b00007e810000c13d000000000600001900007e860000013d0000000006d600d90000000004d000890000000004d400d90000000104400039000000000cc400a90000000006c6019f00000000096900a9000023240080009c00007e8e0000213d000000270600002900000029066000b900000000608600d900007ee00000013d000000270600002900000029bf6000b90000000000b8004b00007ee20000a13d0000239d0080009c00000090060000390000008006004039000000000668022f000000700a000039000000800a004039000001000060008c000000080aa0808a0000000806608270000000100060008c000000000d060019000000040dd082700000000400d0008c000000000e0d0019000000020ee08270000000020400008a000000000ce000890000000200e0008c000000000c048019000000100060008c000000040aa0808a0000000400d0008c000000020aa0808a000000000aac0019000000ff06a0018f00000000066b01cf000024050ba00167000000ff0bb0018f000000010cf00270000000000bbc022f0027000000b601a30000000004a801cf000000800b40027000000027d6b000f90000000008af01cf002900000008001d000000800f800270000023240c40019700007ebd0000013d000000000dbd0019000000010660008a0000232400d0009c00007ec40000813d0000239e0060009c00007eb90000213d000000000ec600a90000008008d002100000000008f8019f00000000008e004b00007eb90000213d000023240660019700000000064600a9000000270800002900000080088002100000000008f8019f002700000068005100000027f6b000f90000002908000029000023240d80019700007ed20000013d000000000fbf0019000000010660008a0000232400f0009c00007ed90000813d0000239e0060009c00007ece0000213d0000000008c600a9000000800ef00210000000000ede019f0000000000e8004b00007ece0000213d000023240660019700000000064600a9000000270400002900000080084002100000000008d8019f00000000066800490000000006a6022f000000000006004b00007ee40000613d000000010990003a000000280000613d00000000467900d9000000000004004b000000010660c039002900000006001d0000234d0060009c00007f150000413d000000280000013d000000010600008a0000000004b00089000000000a4b0170000000000c000019000000000cabc0d9000000000668004b0000000304c000c9000000020440015f0000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a9000000010990408a0000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000044800a90000000008c400a9000000020880008900000000084800a900000000000a004b00007f0a0000c13d000000000600001900007f0f0000013d0000000006a600d90000000004a000890000000004a400d9000000010440003900000000099400a9000000000496019f00000000064800a900000000067600d90000234d0060009c000000280000813d0029000000600091000000a00600043d0000232307600197000023210060019800002322060000410000000006006019000000000876019f0000234d06800197000000010700008a0000234d0060009c000000000600001900000000060760190000000106600210000000ff09800270000000000669019f000000ff0000008b0000000006086019000000000468013f0000000009640049000023690090009c00007f960000813d00000001009001900000236b040000410000236a040060410000236c064000d100000080066002700000000200900190000000000406c0190000236d064000d100000080066002700000000400900190000000000406c0190000236e064000d100000080066002700000000800900190000000000406c0190000236f064000d100000080066002700000001000900190000000000406c01900002370064000d100000080066002700000002000900190000000000406c01900002371064000d100000080066002700000004000900190000000000406c01900002372064000d100000080066002700000008000900190000000000406c01900002373064000d100000080066002700000010000900190000000000406c01900002374064000d100000080066002700000020000900190000000000406c01900002375064000d100000080066002700000040000900190000000000406c01900002376064000d100000080066002700000080000900190000000000406c01900002377064000d100000080066002700000100000900190000000000406c01900002378064000d100000080066002700000200000900190000000000406c01900002379064000d100000080066002700000400000900190000000000406c0190000237a064000d100000080066002700000800000900190000000000406c0190000237b064000d100000080066002700000237c00900198000000000406c0190000237d064000d100000080066002700000237e00900198000000000406c0190000237f064000d100000080066002700000238000900198000000000406c019000023810090019800002382064000d1000000800460c270000023200080009c00007f7b0000213d000000000008004b000000000447c0d900000020064002700000231400400198000000010660c0390000232b04600197000000000054004b00000000040600190000000004032019000000000603a01900000000034600490000232b043001970000002d0000006b00007f9a0000c13d000023240520019700000000545400a9000000010600008a000000000065004b000083ba0000613d000023248650012a0000008007400270000023940050009c000083970000213d0000008008800210000000000878019f00002324096000d1000000000089004b000000010660208a000083980000013d000000400100043d00000044021000390000240003000041000083f40000013d0000000005200089000023240650019700000000646400a9000000000076004b000083de0000613d000023249760012a0000008008400270000023940060009c000083a60000213d0000008009900210000000000989019f000023240a7000d100000000009a004b000000010770208a000083a70000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00007fc10000c13d0000006003000039000100800000003d00007fe00000013d0000003f031000390000240404300197000000400300043d0000000004430019000000400040043f000000000613043600002404041001980000001f0510018f000100000006001d0000000001460019000000030600036700007fd30000613d000000000706034f0000000108000029000000007907043c0000000008980436000000000018004b00007fcf0000c13d000000000005004b00007fe00000613d000000000446034f0000000305500210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000000000002004b000000280000613d0000000001030433000023200010009c000000280000213d0000001f0010008c00007bfd0000213d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000080160000c13d0000008003000039000080350000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000080460000c13d0000008003000039000080650000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002800000005001d000000000315043600002404051001980000001f0610018f00000000045300190000000307000367000080280000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000080240000c13d000000000006004b000080350000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d00000028020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000203043300000001030000290000000000230435000000030300002900000000030304330000002d0030002a000000280000413d0000002d04000029000080750000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002800000005001d000000000315043600002404051001980000001f0610018f00000000045300190000000307000367000080580000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000080540000c13d000000000006004b000080650000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d00000028020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d00000000020304330000000103000029000000000023043500000002030000290000000003030433000000290030002a000000280000413d00000029040000290000000003430019000000000023004b000070290000213d000001400200043d0028232b0020019c0000851f0000c13d0000001d0100002900000000020104330000002a01000029000000000301043300000021010000290000000004010433000000400500043d0000002006500039000000800100043d0000002d0700002900000000007604350000232404400197000000600650003900000000004604350000232b03300197000000400450003900000000003404350000232303200197000023210020019800002322020000410000000002006019000000000232019f0000008003500039000000000023043500000029020000290000000000250435000000400200043d0000000003250049000000a003300039000023140030009c00002314030080410000006003300210000023140020009c00002314020080410000004002200210000000000223019f0000000003000414000075ac0000013d0000002d030000290000001e023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002a020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d04600029000080c10000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000080bb0000c13d000000000005004b000080ce0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000084c60000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c000084c70000413d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b0000810f0000c13d000000600300003900000080010000390000812d0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c410000040f000400010020019300030000000103550000006001100270000123140010019d0000231403100197000000000003004b000081850000c13d00000060020000390000008001000039000081a30000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000081200000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000811c0000c13d000000000006004b0000812d0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b00000da10000613d0000000002030433000000000002004b000081370000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d000000400100043d000001400200043d0000232b00200198000081600000c13d0000000302000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000081590000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b0000814f0000413d000081590000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c0000822d0000c13d00000001020000390000000104000031000082400000013d0000000202000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b0000817e0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000081740000413d0000817e0000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000084040000c13d00000001020000390000000104000031000084170000013d0000003f013000390000240401100197000000400200043d0000000001120019000000400010043f000000000132043600002404043001980000001f0530018f00000000034100190000000306000367000081960000613d000000000706034f0000000008010019000000007907043c0000000008980436000000000038004b000081920000c13d000000000005004b000081a30000613d000000000446034f0000000305500210000000000603043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000430435000000040000006b00000da10000613d0000000002020433000000000002004b000081ad0000613d0000001f0020008c000000280000a13d0000000001010433000000000001004b00000da10000613d000000400100043d000001400200043d0000232b00200198000081d60000c13d0000000202000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000081cf0000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000081c50000413d000081cf0000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000082450000c13d00000001020000390000000104000031000082580000013d0000000302000039000000000202041a000000240310003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004401100039000000400010043f0000000001040433000023b701100197000023cb011001c700000000001404350000232b02200197000000400100043d0000000003050433000000000003004b000081f40000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000081ea0000413d000081f40000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c0000841c0000c13d000000010200003900000001040000310000842f0000013d00002314023001970000001f0420018f0000234a03200198000082050000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000082010000c13d000000000004004b000082120000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d0001043000002314023001970000001f0420018f0000234a032001980000821e0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b0000821a0000c13d000000000004004b0000822b0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d0001043000000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b0000825d0000c13d000000600300003900000080010000390000827b0000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000082fa0000c13d00000060030000390000008001000039000083180000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f000000000451001900000003070003670000826e0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000826a0000c13d000000000006004b0000827b0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000003020000290000000000120435000000400200043d0000004401200039000001200300043d0000006004000039002800000004001d000000000041043500000024012000390000002d040000290000000000410435000023df010000410000000000120435000000040120003900000029040000290000000000410435000000640420003900000000130304340000000000340435002b00840020003d002c00000003001d000000000003004b000082a60000613d00000000020000190000002b0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c0000829b0000413d000082a60000a13d0000002b020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c000082d40000613d0000002c020000290000001f0220003900002404022001970000002b0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d00030000000103550000000100200190000089250000613d0000000301000039000000000101041a000000400200043d000000240320003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b000082f30000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000082e90000413d000082f30000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000087960000c13d00000001020000390000000101000031000087a90000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f000000000451001900000003070003670000830b0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000083070000c13d000000000006004b000083180000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000002020000290000000000120435000000400200043d0000004401200039000001200300043d0000006004000039002800000004001d000000000041043500000024012000390000002d040000290000000000410435000023df010000410000000000120435000000040120003900000029040000290000000000410435000000640420003900000000130304340000000000340435002b00840020003d002c00000003001d000000000003004b000083430000613d00000000020000190000002b0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c000083380000413d000083430000a13d0000002b020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000000100041100000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000000002000411000000040020008c000083710000613d0000002c020000290000001f0220003900002404022001970000002b0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000000020004118c4b8c410000040f0000006003100270000123140030019d000300000001035500000001002001900000893e0000613d0000000201000039000000000101041a000000400200043d000000240320003900000018040000290000000000430435000000400500043d000000000353004900000000043504360000004402200039000000400020043f0000000002040433000023b702200197000023cb022001c700000000002404350000232b02100197000000400100043d0000000003050433000000000003004b000083900000613d000000000500001900000000061500190000000007450019000000000707043300000000007604350000002005500039000000000035004b000083860000413d000083900000a13d00000000041300190000000000040435000000400500043d0000000004000414000000040020008c000087ad0000c13d00000001020000390000000101000031000087c00000013d000000010660008a0000008005500210000000000575019f00002324066001970000000006650019000023248560012a0000232407400197000023940060009c000083b50000213d0000008008800210000000000878019f00002324095000d1000000000089004b000000010550208a000083b60000013d000000010770008a0000008006600210000000000686019f00002324077001970000000007760019000023249670012a0000232408400197000023940070009c000083d90000213d0000008009900210000000000989019f000023240a6000d100000000009a004b000000010660208a000083da0000013d000000010550008a0000008006600210000000000676019f00002324055001970000000006560019000000000546004b00000000060000390000000106004039000000000565004b000083c30000c13d00000000032300a9002d0060004002780000239703300197000083cc0000013d000023960050009c000000280000813d00000000032300a90000239703300197000000000434004b000000010550408a0000006004400270000000a005500210002d0000004501a3000000000003004b000083d10000613d0000002d03000029002d00010030003e000000280000613d0000002d030000290000234d0030009c000000280000813d0000002b022000290000232402200197000000000012004b00001b890000413d000083e90000013d000000010660008a0000008007700210000000000787019f00002324066001970000000007670019000000000647004b00000000070000390000000107004039000000000676004b000083f80000c13d00000060034002700000002b022000290000232402200197000000000012004b000083f10000813d002d0000003000910000001003000039000000000103041a0000239301100197000000000121019f000000000013041b000000290000006b000079bb0000613d000078650000013d000000400100043d0000004402100039000024010300004100000000003204350000002402100039000000010300003900000da70000013d000023960060009c000000280000813d00000000035300a90000239703300197000000000334004b000000010660408a0000006003300270000000a004600210000000000334019f0000234d0030009c000083e40000413d000000280000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b000084340000c13d00000060030000390000008001000039000084520000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231404100197000000000004004b0000845e0000c13d000000600300003900000080010000390000847c0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f00000000045100190000000307000367000084450000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b000084410000c13d000000000006004b000084520000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000002020000290000000000120435000000400100043d0000813b0000013d0000003f014000390000240401100197000000400300043d0000000001130019000000400010043f000000000143043600002404054001980000001f0640018f000000000451001900000003070003670000846f0000613d000000000807034f0000000009010019000000008a08043c0000000009a90436000000000049004b0000846b0000c13d000000000006004b0000847c0000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d0000000002030433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000101043300000003020000290000000000120435000000400100043d000081b10000013d0000002d0300002900000023023000690000002402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002a020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d04600029000084a80000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000084a20000c13d000000000005004b000084b50000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f000300000001035500000001002001900000856e0000613d0000001f013000390000240402100197000000400100043d0000000002120019000000400020043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000001010433000023320010009c0000856f0000413d000000280000013d0000753001000039000000010200008a000000240020006b0000002402000029000000000200601900000000252100a9000023243420012a00002324064000d100000080033002100000008007500270000000000373019f000000000036004b000000010440208a0000008002200210000000000272019f00002324034001970000000004320019000023242340012a0000232405500197000023940040009c000084e10000213d0000008002200210000000000252019f00002324063000d1000000000026004b000000010330208a000084e20000013d000000010330008a00000024021000b90000008004400210000000000454019f00002324033001970000000003340019000000000323004b00000000040000390000000104004039000000000343004b000084f40000c13d0000002403000029000023cf3030012a0000231401100197000023cf1010012a00000000011300a9001e23cf00200132000023cf1010012a000085020000013d000023cf0030009c000000280000813d0000002404000029000023cf4040012a0000231401100197000023cf1010012a00000000011400a9000023cf1010012a000000000212004b000000010330408a0000000502200270000000fb03300210000000000223019f001e23d0002000d50000235600100198000085070000613d0000001e01000029001e00010010003e000000280000613d0000001e02000029000000240220006b000000280000413d000024050020009c00000000010200190000000001006019000023930310009c00000000030140190000239e0030009c00000000030000390000000103002039000023930010009c00000000040000390000000104008039000000000334016f0000000001310019000023244310012a000023940010009c000085c90000213d000000800440021000002324053000d1000000000045004b000000010330208a000085ca0000013d000000400300043d000001c002300039000000400020043f000001000200043d0000232b022001970000000004230436000000800200043d0000232b02200197002b00000004001d0000000000240435000000a00200043d000000000002004b00000002020000390000000302006039000000000202041a0000232b022001970000004004300039002700000004001d0000000000240435000000a00200043d000000000002004b00000003020000390000000202006039000000000202041a0000232b022001970000006004300039002400000004001d0000000000240435000000020200002900000000020204330000008004300039002600000004001d000000000024043500000003020000290000000002020433002c00000003001d000000a003300039002500000003001d0000000000230435000000a00200043d000000000002004b000085c70000c13d0000000202000039000000000202041a000000400300043d000000240430003900000018050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b000085680000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b0000855e0000413d000085680000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c000085fb0000c13d00000001020000390000860e0000013d0000753001000039000000010200008a000000290020006b0000002902000029000000000200601900000000252100a9000023243420012a00002324064000d100000080033002100000008007500270000000000373019f000000000036004b000000010440208a0000008002200210000000000272019f00002324034001970000000004320019000023242340012a0000232405500197000023940040009c000085890000213d0000008002200210000000000252019f00002324063000d1000000000026004b000000010330208a0000858a0000013d000000010330008a00000029021000b90000008004400210000000000454019f00002324033001970000000003340019000000000323004b00000000040000390000000104004039000000000343004b0000859c0000c13d0000002903000029000023cf3030012a0000231401100197000023cf1010012a00000000011300a9002623cf00200132000023cf1010012a000085aa0000013d000023cf0030009c000000280000813d0000002904000029000023cf4040012a0000231401100197000023cf1010012a00000000011400a9000023cf1010012a000000000212004b000000010330408a0000000502200270000000fb03300210000000000223019f002623d0002000d50000235600100198000085af0000613d0000002601000029002600010010003e000000280000613d0000002602000029000000290220006b000000280000413d000024050020009c00000000010200190000000001006019000023930310009c00000000030140190000239e0030009c00000000030000390000000103002039000023930010009c00000000040000390000000104008039000000000334016f0000000001310019000023244310012a000023940010009c000086650000213d000000800440021000002324053000d1000000000045004b000000010330208a000086660000013d0000000103000029000086380000013d000000010330008a00000080011002100000232403300197000000000113019f0000008003200210000000000131004b00000000040000390000000104004039000000000141004b000085d50000c13d00000028013000fa0000883c0000013d000000280010006b000000280000a13d000000280600002900000000206200d90000236a4060012900000000022400a900000000506200d9000000000260008900000000022601700000000004000019000000280400c029000000000424c0d9000000000353004b00000003054000c9000000020550015f00000000064500a9000000020660008900000000055600a900000000064500a9000000020660008900000000055600a9000000010110408a00000000064500a9000000020660008900000000055600a900000000064500a9000000020660008900000000055600a900000000064500a9000000020660008900000000055600a900000000044500a9000000020440008900000000045400a9000000000002004b000088350000c13d00000000030000190000883a0000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000086130000c13d00000060040000390000008003000039000086310000013d0000003f031000390000240403300197000000400400043d0000000003340019000000400030043f000000000314043600002404061001980000001f0710018f00000000056300190000000308000367000086240000613d000000000908034f000000000a030019000000009b09043c000000000aba043600000000005a004b000086200000c13d000000000007004b000086310000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000002004b000000280000613d0000000002040433000023200020009c000000280000213d0000001f0020008c000000280000a13d0000002c02000029000000c0042000390000000002030433002300000004001d0000000000240435000000a00200043d000000000002004b000086d50000613d0000000302000039000000000202041a000000400300043d000000240430003900000018050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b0000865f0000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b000086550000413d0000865f0000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c000086970000c13d0000000102000039000086aa0000013d000000010330008a00000080011002100000232403300197000000000113019f0000008003200210000000000131004b00000000040000390000000104004039000000000141004b000086710000c13d00000028013000fa000089870000013d000000280010006b000000280000a13d000000280600002900000000206200d90000236a4060012900000000022400a900000000506200d9000000000260008900000000022601700000000004000019000000280400c029000000000424c0d9000000000353004b00000003054000c9000000020550015f00000000064500a9000000020660008900000000055600a900000000064500a9000000020660008900000000055600a9000000010110408a00000000064500a9000000020660008900000000055600a900000000064500a9000000020660008900000000055600a900000000064500a9000000020660008900000000055600a900000000044500a9000000020440008900000000045400a9000000000002004b000089800000c13d0000000003000019000089850000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000086af0000c13d0000006003000039000100800000003d000086ce0000013d0000003f031000390000240404300197000000400300043d0000000004430019000000400040043f000000000613043600002404041001980000001f0510018f000100000006001d00000000014600190000000306000367000086c10000613d000000000706034f0000000108000029000000007907043c0000000008980436000000000018004b000086bd0000c13d000000000005004b000086ce0000613d000000000446034f0000000305500210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000000000002004b000000280000613d0000000001030433000023200010009c000000280000213d0000001f0010008c000000280000a13d0000002c0b000029000000e001b00039000000010200002900000000020204330000000000210435000000c00200043d000000000002004b00000000030000190000234d030020410000234d04200197000000000004004b00000000050000190000234d050040410000234d0040009c000000000503c019000000000005004b00000000020060190000010004b000390000000000240435000000a00200043d000000000002004b00000029030000290000002d02000029000000000203601900000000022000890000012006b000390000000000260435000000170200002900000000020204330000014007b0003900000000002704350000001b0200002900000000020204330000018003b000390000000305000039000000000053043500002350022001970000016008b000390000000000280435000001a005b00039000001600200043d0000000000250435000023e009000041000000400200043d00000000009204350000002009000039000000040a20003900000000009a043500000000090b04330000232b09900197000000240a20003900000000009a04350000002b0900002900000000090904330000232b09900197000000440a20003900000000009a0435000000270900002900000000090904330000232b09900197000000640a20003900000000009a0435000000240900002900000000090904330000232b09900197000000840a20003900000000009a043500000026090000290000000009090433000000a40a20003900000000009a043500000025090000290000000009090433000000c40a20003900000000009a043500000023090000290000000009090433000000e40a20003900000000009a043500000000010104330000010409200039000000000019043500000000010404330000012404200039000000000014043500000000010604330000014404200039000000000014043500000000010704330000016404200039000000000014043500000000010804330000235001100197000001840420003900000000001404350000000001030433000000ff0110018f000001a40320003900000000001304350000000001050433000001c003000039000001c4042000390000000000340435000001e40320003900000000140104340000000000430435002b02040020003d002c00000004001d000000000004004b0000874f0000613d00000000020000190000002b0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c000087440000413d0000874f0000a13d0000002b020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000280100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002802000029000000040020008c0000807b0000613d0000002c020000290000001f0220003900002404022001970000002b0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000028020000298c4b8c410000040f0000006003100270000123140030019d000300000001035500000001002001900000807b0000c13d00002314023001970000001f0420018f0000234a03200198000087870000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000087830000c13d000000000004004b000087940000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d0001043000000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000087c40000c13d0000008003000039000087e30000013d00000000011300190000000001510049000023140010009c00002314010080410000006001100210000023140050009c00002314050080410000004003500210000000000131019f000023140040009c0000231404008041000000c003400210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b000087f40000c13d0000008003000039000088130000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002800000005001d000000000315043600002404051001980000001f0610018f00000000045300190000000307000367000087d60000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000087d20000c13d000000000006004b000087e30000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d00000028020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d000000000203043300000001030000290000000000230435000000030300002900000000030304330000002d0030002a000000280000413d0000002d04000029000088230000013d0000003f031000390000240403300197000000400500043d0000000003350019000000400030043f002800000005001d000000000315043600002404051001980000001f0610018f00000000045300190000000307000367000088060000613d000000000807034f0000000009030019000000008a08043c0000000009a90436000000000049004b000088020000c13d000000000006004b000088130000613d000000000557034f0000000306600210000000000704043300000000076701cf000000000767022f000000000505043b0000010006600089000000000565022f00000000056501cf000000000575019f0000000000540435000000000002004b000000280000613d00000028020000290000000002020433000023200020009c000000280000213d0000001f0020008c000000280000a13d00000000020304330000000103000029000000000023043500000002030000290000000003030433000000290030002a000000280000413d00000029040000290000000003430019000000000023004b000089570000a13d000000400100043d0000004402100039000023e2030000410000000000320435000000240210003900000001030000390000000000320435000023540200004100000000002104350000000402100039000000200300003900000000003204350000006402100039000000400100043d000005ca0000013d00000000032300d9000000000520008900000000022500d9000000010220003900000000011200a9000000000113019f00000000011400a9000000000001004b000088420000613d0000000702000039000000000302041a0000000001130019000000000012041b0000001e0100002900002324001001980000884c0000613d0000000a01000039000000000201041a0000001e0320002900002324033001970000239302200197000000000223019f000000000021041b0000000201000039000000000101041a001c00000001001d000000000100041a000000400300043d000023d102000041001d00000003001d0000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002a00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002a02000029000000040020008c0000886d0000c13d00000001030000310000889e0000013d0000002d030000290000001d023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002a020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d046000290000888d0000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000088870000c13d000000000005004b0000889a0000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000075bd0000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433001d00000002001d000023460020009c000000280000813d0000001d0000006b000075bd0000613d0000001c020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a0060000390000000000650435000000a405100039000000210600002900000000006504350000008405100039000000230600002900000000006504350000006405100039001c00000007001d000000000075043500000044051000390000000000350435000000e40310003900000000040404330000000000430435002a01040010003d002d00000004001d000000000004004b000088da0000613d00000000010000190000002a0310002900000000041200190000000004040433000000000043043500000020011000390000002d0010006c000088cf0000413d000088da0000a13d0000002a020000290000002d012000290000000000010435000000400100043d001b00000001001d0000232f0100004100000000001004430000001d0100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000001d02000029000000040020008c000089060000613d0000002d020000290000001f0220003900002404022001970000002a022000290000001b030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000001d020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000001e03000029000000000032043500000023020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000303000039000023d3040000410000001c0500002900000021060000298c4b8c410000040f0000000100200190000075bd0000c13d000000280000013d00002314023001970000001f0420018f0000234a032001980000892f0000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b0000892b0000c13d000000000004004b0000893c0000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d0001043000002314023001970000001f0420018f0000234a03200198000089480000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b000089440000c13d000000000004004b000089550000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d00010430000001400200043d0028232b0020019c00008a6f0000c13d0000001d0100002900000000020104330000002a01000029000000000301043300000021010000290000000004010433000000400500043d0000002006500039000000800100043d0000002d0700002900000000007604350000232404400197000000600650003900000000004604350000232b03300197000000400450003900000000003404350000232303200197000023210020019800002322020000410000000002006019000000000232019f0000008003500039000000000023043500000029020000290000000000250435000000400200043d0000000003250049000000a003300039000023140030009c00002314030080410000006003300210000023140020009c00002314020080410000004002200210000000000223019f0000000003000414000075ac0000013d00000000032300d9000000000520008900000000022500d9000000010220003900000000011200a9000000000113019f00000000011400a9000000000001004b0000898d0000613d0000000802000039000000000302041a0000000001130019000000000012041b00000026010000290000232400100198000089960000613d000000260100002900000080011002100000000a02000039000000000302041a0000000001130019000000000012041b0000000301000039000000000101041a002300000001001d000000000100041a000000400300043d000023d102000041002800000003001d0000000000230435000000400200043d002d00000002001d0000232f0200004100000000002004430000232b01100197002a00000001001d00000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002a02000029000000040020008c000089b70000c13d0000000103000031000089e80000013d0000002d0300002900000028023000690000000402200039000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f0000002a020000298c4b8c460000040f00000060031002700000231403300197000000200030008c000000200400003900000000040340190000001f0540018f00000020064001900000002d04600029000089d70000613d000000000701034f000000007807043c0000002d090000290000000009890436002d00000009001d000000000049004b000089d10000c13d000000000005004b000089e40000613d000000000661034f0000000305500210000000000704043300000000075701cf000000000757022f000000000606043b0000010005500089000000000656022f00000000055601cf000000000575019f0000000000540435000100000003001f00030000000103550000000100200190000075c00000613d0000001f013000390000240401100197000000400200043d0000000001210019000000400010043f000023200030009c000000280000213d0000001f0030008c000000280000a13d0000000002020433002800000002001d000023460020009c000000280000813d000000280000006b000075c00000613d00000023020000290000232b07200197000000200210003900000004030000390000000000320435000000400400043d000000000242004900000000022404360000004005100039000000400050043f000023d2060000410000000000650435000000c405100039000000a0060000390000000000650435000000a405100039000000270600002900000000006504350000008405100039000000220600002900000000006504350000006405100039002300000007001d000000000075043500000044051000390000000000350435000000e40310003900000000040404330000000000430435002a01040010003d002d00000004001d000000000004004b00008a240000613d00000000010000190000002a0310002900000000041200190000000004040433000000000043043500000020011000390000002d0010006c00008a190000413d00008a240000a13d0000002a020000290000002d012000290000000000010435000000400100043d002100000001001d0000232f010000410000000000100443000000280100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002802000029000000040020008c00008a500000613d0000002d020000290000001f0220003900002404022001970000002a0220002900000021030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000028020000298c4b8c410000040f0000006002100270000123140020019d0003000000010355000000400100043d00000020021000390000002603000029000000000032043500000022020000290000000000210435000000400200043d00000000012100490000004001100039000023140010009c00002314010080410000006001100210000023140020009c00002314020080410000004002200210000000000121019f0000000002000414000023140020009c0000231402008041000000c002200210000000000121019f00002388011001c70000800d020000390000000303000039000023d304000041000000230500002900000027060000298c4b8c410000040f0000000100200190000075c00000c13d000000280000013d000000400300043d000001c002300039000000400020043f000001000200043d0000232b022001970000000004230436000000800200043d0000232b02200197002b00000004001d0000000000240435000000a00200043d000000000002004b00000002020000390000000302006039000000000202041a0000232b022001970000004004300039002700000004001d0000000000240435000000a00200043d000000000002004b00000003020000390000000202006039000000000202041a0000232b022001970000006004300039002400000004001d0000000000240435000000020200002900000000020204330000008004300039002600000004001d000000000024043500000003020000290000000002020433002c00000003001d000000a003300039002500000003001d0000000000230435000000a00200043d000000000002004b00008abe0000c13d0000000202000039000000000202041a000000400300043d000000240430003900000018050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b00008ab80000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b00008aae0000413d00008ab80000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c00008bae0000c13d000000010200003900008bc10000013d00000001030000290000002c02000029000000c0042000390000000002030433002300000004001d0000000000240435000000a00200043d000000000002004b00008b890000c13d0000002c0b000029000000e001b00039000000010200002900000000020204330000000000210435000000c00200043d000000000002004b00000000030000190000234d030020410000234d04200197000000000004004b00000000050000190000234d050040410000234d0040009c000000000503c019000000000005004b00000000020060190000010004b000390000000000240435000000a00200043d000000000002004b00000029030000290000002d02000029000000000203601900000000022000890000012006b000390000000000260435000000170200002900000000020204330000014007b0003900000000002704350000001b0200002900000000020204330000018003b000390000000305000039000000000053043500002350022001970000016008b000390000000000280435000001a005b00039000001600200043d0000000000250435000023e009000041000000400200043d00000000009204350000002009000039000000040a20003900000000009a043500000000090b04330000232b09900197000000240a20003900000000009a04350000002b0900002900000000090904330000232b09900197000000440a20003900000000009a0435000000270900002900000000090904330000232b09900197000000640a20003900000000009a0435000000240900002900000000090904330000232b09900197000000840a20003900000000009a043500000026090000290000000009090433000000a40a20003900000000009a043500000025090000290000000009090433000000c40a20003900000000009a043500000023090000290000000009090433000000e40a20003900000000009a043500000000010104330000010409200039000000000019043500000000010404330000012404200039000000000014043500000000010604330000014404200039000000000014043500000000010704330000016404200039000000000014043500000000010804330000235001100197000001840420003900000000001404350000000001030433000000ff0110018f000001a40320003900000000001304350000000001050433000001c003000039000001c4042000390000000000340435000001e40320003900000000140104340000000000430435002b02040020003d002c00000004001d000000000004004b00008b410000613d00000000020000190000002b0320002900000000042100190000000004040433000000000043043500000020022000390000002c0020006c00008b360000413d00008b410000a13d0000002b020000290000002c012000290000000000010435000000400100043d002700000001001d0000232f010000410000000000100443000000280100002900000004001004430000000001000414000023140010009c0000231401008041000000c00110021000002330011001c700008002020000398c4b8c460000040f000000010020019000008b880000613d000000000101043b000000000001004b000000280000613d00000000010004140000002802000029000000040020008c0000895a0000613d0000002c020000290000001f0220003900002404022001970000002b0220002900000027030000290000000002320049000023140030009c00002314030080410000004003300210000023140020009c00002314020080410000006002200210000000000232019f000023140010009c0000231401008041000000c001100210000000000121019f00000028020000298c4b8c410000040f0000006003100270000123140030019d000300000001035500000001002001900000895a0000c13d00002314023001970000001f0420018f0000234a0320019800008b790000613d000000000501034f0000000006000019000000005705043c0000000006760436000000000036004b00008b750000c13d000000000004004b00008b860000613d000000000131034f0000000304400210000000000503043300000000054501cf000000000545022f000000000101043b0000010004400089000000000141022f00000000014101cf000000000151019f0000000000130435000000600120021000008c4d00010430000000000001042f0000000302000039000000000202041a000000400300043d000000240430003900000018050000290000000000540435000000400600043d000000000464004900000000054604360000004403300039000000400030043f0000000003050433000023b703300197000023cb033001c700000000003504350000232b02200197000000400300043d0000000004060433000000000004004b00008ba80000613d000000000600001900000000073600190000000008560019000000000808043300000000008704350000002006600039000000000046004b00008b9e0000413d00008ba80000a13d00000000053400190000000000050435000000400600043d0000000005000414000000040020008c00008bec0000c13d000000010200003900008bff0000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00008bc60000c13d0000006004000039000000800300003900008be40000013d0000003f031000390000240403300197000000400400043d0000000003340019000000400030043f000000000314043600002404061001980000001f0710018f0000000005630019000000030800036700008bd70000613d000000000908034f000000000a030019000000009b09043c000000000aba043600000000005a004b00008bd30000c13d000000000007004b00008be40000613d000000000668034f0000000307700210000000000805043300000000087801cf000000000878022f000000000606043b0000010007700089000000000676022f00000000067601cf000000000686019f0000000000650435000000000002004b000000280000613d0000000002040433000023200020009c000000280000213d0000001f0020008c00008abf0000213d000000280000013d00000000013400190000000001610049000023140010009c00002314010080410000006001100210000023140060009c00002314060080410000004003600210000000000131019f000023140050009c0000231405008041000000c003500210000000000131019f8c4b8c460000040f000000010220018f00030000000103550000006001100270000123140010019d0000231401100197000000000001004b00008c040000c13d0000006003000039000100800000003d00008c230000013d0000003f031000390000240404300197000000400300043d0000000004430019000000400040043f000000000613043600002404041001980000001f0510018f000100000006001d0000000001460019000000030600036700008c160000613d000000000706034f0000000108000029000000007907043c0000000008980436000000000018004b00008c120000c13d000000000005004b00008c230000613d000000000446034f0000000305500210000000000601043300000000065601cf000000000656022f000000000404043b0000010005500089000000000454022f00000000045401cf000000000464019f0000000000410435000000000002004b000000280000613d0000000001030433000023200010009c000000280000213d0000001f0010008c00008ac70000213d000000280000013d000000000001042f000023140010009c00002314010080410000004001100210000023140020009c00002314020080410000006002200210000000000112019f0000000002000414000023140020009c0000231402008041000000c002200210000000000112019f00002388011001c700008010020000398c4b8c460000040f000000010020019000008c3f0000613d000000000101043b000000000001042d000000000100001900008c4d0001043000008c44002104210000000102000039000000000001042d0000000002000019000000000001042d00008c49002104230000000102000039000000000001042d0000000002000019000000000001042d00008c4b0000043200008c4c0001042e00008c4d000104300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffff00000002000000000000000000000000000000400000010000000000000000006f89244c00000000000000000000000000000000000000000000000000000000b1dd61b600000000000000000000000000000000000000000000000000000000da8157310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ee97f7f200000000000000000000000000000000000000000000000000000000ee97f7f300000000000000000000000000000000000000000000000000000000f305839900000000000000000000000000000000000000000000000000000000f30dba9300000000000000000000000000000000000000000000000000000000da81573100000000000000000000000000000000000000000000000000000000ddca3f4300000000000000000000000000000000000000000000000000000000ebe2b12b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000800000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffff00000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffffffffffffffffffffff00000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000000000000000000000080000000000000ffffffffffffffffffffffffffffffffffffffffffffffffff80000000000000000000000000000000000000000000000000000000000000007fffffffffffff000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000001400000008000000000000000004625a94d000000000000000000000000000000000000000000000000000000001806aa1896bbf26568e884a7374b41e002500962caba6a15023a8d90e8508b83020000020000000000000000000000000000002400000000000000000000000000000000000000000000000000000000000000e4000000c00000000000000000000000000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000d0b06f5c00000000000000000000000000000000000000000000000000000000d0b06f5d00000000000000000000000000000000000000000000000000000000d0c93a7c00000000000000000000000000000000000000000000000000000000d21220a700000000000000000000000000000000000000000000000000000000b1dd61b600000000000000000000000000000000000000000000000000000000c45a015500000000000000000000000000000000000000000000000000000000cab64bcd00000000000000000080000000000000000000000000000000000000000000000000000000000000000000000000000000000020000000800000000000000000a34123a70000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a5a4103000000000000000000000000000000000000000000000000000000000a5a4103100000000000000000000000000000000000000000000000000000000a6f19c8400000000000000000000000000000000000000000000000000000000b056b49a00000000000000000000000000000000000000000000000000000000a34123a700000000000000000000000000000000000000000000000000000000a38807f200000000000000000000000000000000000000000000000000000000a514fe770a992e0c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000240000008000000000000000000000000000000000000000010000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000ee97f7f300000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000400000080000000000000000000000000000000000000000000000000000000000000000000000000ffffffe0000000000000000000ffffff0000000000000000000000000000000000000000ffffffffffffffffff000000ffffffffffffffffffffffffffffffffffffffff800000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d89e8fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff276180000000000000000000000000000000000000000000000000000000000ffffff00000000000000000000000000000000000000000000000000000001000276a3000000000000000000000000fffd8963efd1fc6a506488495d951d5163961683520000000000000000000000000000000000000000000000000000000000000008c379a0000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000000000000ffffffffffffffff00000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000000000000000000000040000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000400000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000000000000000000000000000000080000000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000003627a301d71055774c85ffffffffffffffffffffffffffffffff24d20f617e6a657ebaa1d9f8665f9cd100000000000000000000000000000000028f6481ab7f045a5af012a19d003aaa000000000000000000000000008000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000d89e9000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000fffcb933bd6fad37aa2d162d1a59400100000000000000000000000000000000fff97272373d413259a46990580e213a00000000000000000000000000000000fff2e50f5f656932ef12357cf3c7fdcc00000000000000000000000000000000ffe5caca7e10e4e61c3624eaa0941cd000000000000000000000000000000000ffcb9843d60f6159c9db58835c92664400000000000000000000000000000000ff973b41fa98c081472e6896dfb254c000000000000000000000000000000000ff2ea16466c96a3843ec78b326b5286100000000000000000000000000000000fe5dee046a99a2a811c461f1969c305300000000000000000000000000000000fcbe86c7900a88aedcffc83b479aa3a400000000000000000000000000000000f987a7253ac413176f2b074cf7815e5400000000000000000000000000000000f3392b0822b70005940c7a398e4b70f300000000000000000000000000000000e7159475a2c29b7443b29c7fa6e889d900000000000000000000000000000000d097f3bdfd2022b8845ad8f792aa582500000000000000000000000000000000a9f746462d870fdf8a65dc1f90e061e50000000000000000000000000000000070d869a156d2a1b890bb3df62baf32f70000000000000000000000000000000031be135f97d08fd981231505542fcfa60000000000000000000000000000000009aa508b5b7a84e1c677de54f3e99bc9000000000000000000000000000000000000000000000000000000000001000000000000000000000000000000000000005d6af8dedb81196699c329225ee60400000000000000000000000000000000000000000000000000000000000200000000000000000000000000000000000000002216e584f5fa1ea926041bedfe98000000000000000000000000000000000000000000000000000000000004000000000000000000000000000000000000000000000000000000000000000800000000000000000000000000000000000000000000048a170391f7dc42444e8fa2796b89b91644bc98cd93958e4c9038275d622183e25ac5af08cc6b5d9553913202000002000000000000000000000000000000040000000000000000000000000100000000000000000000000000000000000000000000000000000000000000ffff0000000000000000000000000000000000000000000000000000000000000000010001000100000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000098636036cb66a9c19a37435efc1e90142190214e8abeb821bdba3f2990dd4c9502000000000000000000000000000000000000400000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000008000000000000000000000000000000000000000000000ffffffff00000000000000000000000000000000ffff00ffffffffffffffffffffffffffffffffffffffffffffffffffffffffff020000000000000000000000000000000000001a000001e0000000000000000000000000000000000000000000000000000000000000000000ffffffffffffff00ffffffff000000000000000000000000000000000000000000000000000000ff00000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000fffffffffffffffffffffffffffffffe000000000000000000000000000000007fffffffffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000000000010000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff000000000000000000000000000000000000000000ffffffffffffff0000000000000000000000ffff0000000000000000000000000000000000000000000000ffffffffff00000000ffffffffffffffffffffffffffffffffffffffffffffff0000000000ffff0000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffff000000000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffe0c396cd989a39f4459b5fa1aed6a9a8dcdbc45908acfd67e028cd568da98982c00000000000000000000000000000000000000000000000000000000883bdbfc00000000000000000000000000000000000000000000000000000000883bdbfd000000000000000000000000000000000000000000000000000000008b4c547000000000000000000000000000000000000000000000000000000000a16368c9000000000000000000000000000000000000000000000000000000006f89244c0000000000000000000000000000000000000000000000000000000070cf754a000000000000000000000000000000000000000000000000000000007b0a47ee55000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000064000000800000000000000000000000000000000000000000000000000000000000000000ffffffffffffff4100000000000000000000000000000000000000000000000000000001000000004f000000000000000000000000000000000000000000000000000000000000004b000000000000000000000000000000000000000000000000000000000000003c8a7d8d000000000000000000000000000000000000000000000000000000004f1eb3d8000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000057806ad90000000000000000000000000000000000000000000000000000000057806ada0000000000000000000000000000000000000000000000000000000060a73f9b000000000000000000000000000000000000000000000000000000006236010a000000000000000000000000000000000000000000000000000000004f1eb3d800000000000000000000000000000000000000000000000000000000514ea4bf000000000000000000000000000000000000000000000000000000005339c296c415b95c0000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffa9059cbb00000000000000000000000000000000000000000000000000000000205860e66845f2bbc0966bfab80db9bf93fca93862ea2b9fcf6945748352b4a3000001000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000a0000000800000000000000000020000000000000000000000000000000000001a000000a0000000000000000070935338e69775456a85ddef226c395fb668b63fa0115f5f20610b388e6ca9c00000000000000000000000000000000000000000000000000000000047ccca010000000000000000000000000000000000000000000000000000000047ccca0200000000000000000000000000000000000000000000000000000000490e6cbc000000000000000000000000000000000000000000000000000000004ed6210f000000000000000000000000000000000000000000000000000000003c8a7d8d000000000000000000000000000000000000000000000000000000004614131900000000000000000000000000000000000000000000000000000000470df7d3fffffffffffffffffffffffffffffffeffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffffffffffffffffffffffffffffff00000000000000000000000000000000000000000000000100000000000000000000000000000000000000000000000000000104000000e0000000000000000000000000000000000000000000000000000000000000000000000000000f4240de8f6cefed634549b62c77574f722e1ac57e23f24d8fd5cb790fb65668c2613970a0823100000000000000000000000000000000000000000000000000000000e9cbafb0000000000000000000000000000000000000000000000000000000003000000000000000000000000000000000000000000000000000000000000000310000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000186a058cd20afa2f05a708ede54b48d3ae685db76b3bb83cf2cf95d4e8fb00bcbe61d4ccb20c000000000000000000000000000000000000000000000000000000000843e821800000000000000000000000000000000000000000000000000000000ede782a607d7432896e772fcfe1bfe8d319b589cc594a1160ffdad68365e6502bdbdb71d7860376ba52b25a5028beea23581364a40522f6bcfb86bb1f2dca633000000000000000000000000000000000000000000000000fffffffffffffe415000000000000000000000000000000000000000000000000000000000000000000000000000000000000000fffd8963efd1fc6a506488495d951d5263988d25abcef55400000000000000000000000000000000000000000000000000000000fffffffffffffffffffffffffffffffffffffffffffffffffffffffffff27617000000000000000100000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffff0000000000000000000000000000000000000000000000000000000000000000ffffffff0000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffff00000000000000ffffffffff000000000000000000000000000000000000000000000000000000fa461e3300000000000000000000000000000000000000000000000000000000608dbcbb00000000000000000000000000000000000000000000000000000000c42079f94a6350d7e6235f29174924f928cc2ac818eb64fed8004e115fbcca67490000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000640000010000000000000000004700000000000000000000000000000000000000000000000000000000000000d3487997000000000000000000000000000000000000000000000000000000007a53080ba414158be7ec69b987b5fb7d07dee101fe85488f0853ae16239d0bde252c09d7000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000000032148f660000000000000000000000000000000000000000000000000000000032148f67000000000000000000000000000000000000000000000000000000003850c7bd000000000000000000000000000000000000000000000000000000003ab04b2000000000000000000000000000000000000000000000000000000000252c09d700000000000000000000000000000000000000000000000000000000293833ba000000000000000000000000000000000000000000000000000000003133837400000000000000000000000000000000000000c0000000800000000000000000ffff000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff00000000ffffff0000ffffffffffffffffffffffffffffffffffffffffffffffffffffff0200000000000000000000000000000000000040000000800000000000000000ac49e518f90a358f652e4400164f05a5d8f7e35e7747279bc3a93dbf584e125a00000000000000000000000000000000000000400000008000000000000000000000000000000000000000000000000000000080000000800000000000000000000000000000000000000000000000000000000000000000000000001a686501000000000000000000000000000000000000000000000000000000001a686502000000000000000000000000000000000000000000000000000000001b410960000000000000000000000000000000000000000000000000000000001f7c35680000000000000000000000000000000000000000000000000000000007898164000000000000000000000000000000000000000000000000000000000dfe168100000000000000000000000000000000000000000000000000000000128acb080d52333c0000000000000000000000000000000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffe05400000000000000000000000000000000000000000000000000000000000000530000000000000000000000000000000000000000000000000000000000000041000000000000000000000000000000000000000000000000000000000000005446000000000000000000000000000000000000000000000000000000000000ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffe0ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1d523ad6caf37653fcde2d725335176db3d4921fc38367372bb01cfe1aefbea1
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|---|---|---|---|---|
SOPHON | 100.00% | $1 | 100,637.7264 | $100,738.36 |
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.