Address Details
contract
token
0xeC17fB85529A6A48cB6ed7e3c1d1a7cc57D742C1
- Token
- Revo FP Token (RFP)
- Creator
- 0xff0944–49a35b at 0xf94284–67d9a6
- Balance
- 0.000010140123233031 CELO ( )
- Locked CELO Balance
- 0.00 CELO
- Voting CELO Balance
- 0.00 CELO
- Pending Unlocked Gold
- 0.00 CELO
- Tokens
-
Fetching tokens...
- Transactions
- 52,914 Transactions
- Transfers
- 742,181 Transfers
- Gas Used
- 59,920,304,898
- Last Balance Update
- 28936212
Transactions
Token Transfers
Tokens
Internal Transactions
Coin Balance History
Logs
Code
Read Contract
Write Contract
This contract has been verified via Sourcify.
View contract in Sourcify repository
- Contract name:
- UbeswapFarmBot
- Optimization enabled
- false
- Compiler version
- v0.8.4+commit.c7e474f2
- EVM Version
- istanbul
- Verified at
- 2022-07-18T04:51:58.035325Z
UbeswapFarmBot.sol
//SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "hardhat/console.sol"; import "./IMoolaStakingRewards.sol"; import "./ubeswap/contracts/uniswapv2/interfaces/IUniswapV2Router02.sol"; import "./ubeswap/contracts/uniswapv2/interfaces/IUbeswapRouter.sol"; import "./ubeswap/contracts/uniswapv2/interfaces/IUniswapV2Pair.sol"; import "./IRevoFees.sol"; import "./openzeppelin-solidity/contracts/ERC20.sol"; import "./openzeppelin-solidity/contracts/AccessControl.sol"; import "./openzeppelin-solidity/contracts/SafeERC20.sol"; import "./openzeppelin-solidity/contracts/Pausable.sol"; contract UbeswapFarmBot is ERC20, AccessControl, Pausable { using SafeERC20 for IERC20; event FeesUpdated(address indexed by, address indexed to); event LiquidityRouterUpdated( address indexed by, address indexed routerAddress ); event SwapRouterUpdated(address indexed by, address indexed routerAddress); event ReserveUpdated(address indexed by, address indexed reserveAddress); event SlippageUpdated( address indexed by, uint256 numerator, uint256 denominator ); event Deposit(address indexed by, uint256 lpAmount); event Withdraw(address indexed by, uint256 lpAmount, uint256 fee); event Compound( address indexed by, uint256 lpStaked, uint256 newLPTotalBalance, uint256 compounderFeeAmount, uint256 reserveFeeAmount ); event GrantRole( address indexed by, address indexed newRoleRecipient, bytes32 role ); bytes32 public constant COMPOUNDER_ROLE = keccak256("COMPOUNDER_ROLE"); uint256 public lpTotalBalance; // total number of LP tokens owned by Farm Bot // fractional increase of LP balance last time compound was called. Used to calculate withdrawal fee. uint256 public interestEarnedNumerator; uint256 public interestEarnedDenominator = 10000; IMoolaStakingRewards public stakingRewards; // List of rewards tokens. The first token in this list is assumed to be the primary token; // the rest correspond to the staking reward contract's external reward tokens. The order of these tokens // is very important; the first must correspond to the MoolaStakingRewards contract's "native" reward token, // and the rest must correspond to its "external" tokens, in the same order as they appear in the contract. IERC20[] public rewardsTokens; IUniswapV2Pair public stakingToken; // LP that's being staked IERC20 public stakingToken0; // LP token0 IERC20 public stakingToken1; // LP token1 // The router that handles swaps may not be capable of also minting liquidity; in this case, we need // dedicated routers for each function. In particular, this is true when swapping Moola mTokens using // Ubeswap's Moola router. IUbeswapRouter public swapRouter; // address to use for router that handles swaps IUniswapV2Router02 public liquidityRouter; // address to use for router that handles minting liquidity // Acceptable slippage when minting LP; can be updated by admin uint256 public slippageNumerator = 99; uint256 public slippageDenominator = 100; // Configurable fees contract. Determines: // - "compounder fee" for calling compound on behalf of farm investors. // - "reserve fee" sent to reserve // - "compounder bonus" (paid by reserve) for calling compound // - "withdrawal fee" for withdrawing (necessary for security, guaranteed <= 0.25%) // Note that compounder fees + reserve fees are "performance fees", meaning they are charged only on earnings. // Performance fees are guaranteed to be at most 4%, the current standard, and should be much less. IRevoFees public revoFees; uint256 public constant maxPerformanceFeeNumerator = 40; uint256 public constant maxPerformanceFeeDenominator = 1000; uint256 public constant maxWithdrawalFeeNumerator = 25; uint256 public constant maxWithdrawalFeeDenominator = 10000; address public reserveAddress; modifier ensure(uint256 deadline) { require(deadline >= block.timestamp, "FarmBot: EXPIRED"); _; } constructor( address _owner, address _reserveAddress, address _stakingRewards, address _stakingToken, address _revoFees, address _swapRouter, address _liquidityRouter, address[] memory _rewardsTokens, string memory _symbol ) ERC20("Revo FP Token", _symbol) { stakingRewards = IMoolaStakingRewards(_stakingRewards); for (uint256 i = 0; i < _rewardsTokens.length; i++) { rewardsTokens.push(IERC20(_rewardsTokens[i])); } revoFees = IRevoFees(_revoFees); stakingToken = IUniswapV2Pair(_stakingToken); stakingToken0 = IERC20(stakingToken.token0()); stakingToken1 = IERC20(stakingToken.token1()); reserveAddress = _reserveAddress; swapRouter = IUbeswapRouter(_swapRouter); liquidityRouter = IUniswapV2Router02(_liquidityRouter); _setupRole(DEFAULT_ADMIN_ROLE, _owner); emit GrantRole(msg.sender, _owner, DEFAULT_ADMIN_ROLE); } function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { super.grantRole(role, account); emit GrantRole(msg.sender, account, role); } function updateLiquidityRouterAddress(address _liquidityRouter) external onlyRole(DEFAULT_ADMIN_ROLE) { liquidityRouter = IUniswapV2Router02(_liquidityRouter); emit LiquidityRouterUpdated(msg.sender, _liquidityRouter); } function updateSwapRouterAddress(address _swapRouter) external onlyRole(DEFAULT_ADMIN_ROLE) { swapRouter = IUbeswapRouter(_swapRouter); emit SwapRouterUpdated(msg.sender, _swapRouter); } function updateReserveAddress(address _reserveAddress) external onlyRole(DEFAULT_ADMIN_ROLE) { require( _reserveAddress != address(0), "Cannot set reserve address to 0" ); reserveAddress = _reserveAddress; emit ReserveUpdated(msg.sender, _reserveAddress); } function updateFees(address _revoFees) external onlyRole(DEFAULT_ADMIN_ROLE) { revoFees = IRevoFees(_revoFees); emit FeesUpdated(msg.sender, _revoFees); } function updateSlippage( uint256 _slippageNumerator, uint256 _slippageDenominator ) external onlyRole(DEFAULT_ADMIN_ROLE) { slippageNumerator = _slippageNumerator; slippageDenominator = _slippageDenominator; emit SlippageUpdated( msg.sender, _slippageNumerator, _slippageDenominator ); } function getFpAmount(uint256 _lpAmount) public view returns (uint256) { if (lpTotalBalance == 0) { return _lpAmount; } else { return (_lpAmount * totalSupply()) / lpTotalBalance; } } function getLpAmount(uint256 _fpAmount) public view returns (uint256) { if (totalSupply() == 0) { return 0; } else { return (_fpAmount * lpTotalBalance) / totalSupply(); } } function deposit(uint256 _lpAmount) external whenNotPaused { bool transferSuccess = stakingToken.transferFrom( msg.sender, address(this), _lpAmount ); require(transferSuccess, "Transfer failed, aborting deposit"); uint256 _fpAmount = this.getFpAmount(_lpAmount); _mint(msg.sender, _fpAmount); lpTotalBalance += _lpAmount; _investInFarm(_lpAmount); emit Deposit(msg.sender, _lpAmount); } function withdrawAll() external { require(balanceOf(msg.sender) > 0, "Cannot withdraw zero balance"); uint256 _lpAmount = getLpAmount(balanceOf(msg.sender)); withdraw(_lpAmount); } function withdraw(uint256 _lpAmount) public { uint256 _fpAmount = this.getFpAmount(_lpAmount); require( balanceOf(msg.sender) >= _fpAmount, "Cannot withdraw more than the total balance of the owner" ); uint256 tokenBalance = stakingToken.balanceOf(address(this)); if (_lpAmount > tokenBalance) { stakingRewards.withdraw(_lpAmount - tokenBalance); } // fee (uint256 feeNumerator, uint256 feeDenominator) = revoFees.withdrawalFee( interestEarnedNumerator, interestEarnedDenominator ); uint256 _withdrawalFee = (feeNumerator * _lpAmount) / feeDenominator; uint256 _maxWithdrawalFee = (maxPerformanceFeeNumerator * _lpAmount) / maxPerformanceFeeDenominator; if (_withdrawalFee > _maxWithdrawalFee) { // guarantee the max fee _withdrawalFee = _maxWithdrawalFee; } bool feeSuccess = stakingToken.transfer(reserveAddress, _withdrawalFee); require(feeSuccess, "Fee failed, aborting withdrawal"); bool transferSuccess = stakingToken.transfer( msg.sender, _lpAmount - _withdrawalFee ); require(transferSuccess, "Transfer failed, aborting withdrawal"); _burn(msg.sender, _fpAmount); lpTotalBalance -= _lpAmount; emit Withdraw(msg.sender, _lpAmount, _withdrawalFee); } function _investInFarm(uint256 _lpAmount) private { require(_lpAmount > 0, "Cannot invest in farm because _lpAmount is 0"); stakingToken.approve(address(stakingRewards), _lpAmount); stakingRewards.stake(_lpAmount); } /** * Swap a rewards token for a token in the liquidity pool. * * @param _swapPath: path for the swap. Must start with _startToken and end with the desired token * @param _startTokenBudget: amount of _startToken to swap * @param _startToken: token to spend * @param _minAmountOut: minimum amount of the desired token (revert if the swap yields less) * @param _deadline: deadline for the swap */ function _swapForTokenInPool( address[] memory _swapPath, uint256 _startTokenBudget, IERC20 _startToken, uint256 _minAmountOut, uint256 _deadline ) private returns (uint256) { if (_swapPath.length >= 2 && _startTokenBudget > 0) { _startToken.safeIncreaseAllowance( address(swapRouter), _startTokenBudget ); uint256[] memory _swapResultAmounts = swapRouter .swapExactTokensForTokens( _startTokenBudget, _minAmountOut, _swapPath, address(this), _deadline ); return _swapResultAmounts[_swapResultAmounts.length - 1]; } else { return _startTokenBudget; } } function _addLiquidity( uint256[] memory _tokenBalances, address[][2][] memory _paths, uint256[2][] memory _minAmountsOut, uint256 _deadline ) private { uint256 _totalAmountToken0 = 0; uint256 _totalAmountToken1 = 0; for (uint256 i = 0; i < _tokenBalances.length; i++) { uint256 _halfTokens = _tokenBalances[i] / 2; _totalAmountToken0 += _swapForTokenInPool( _paths[i][0], _halfTokens, rewardsTokens[i], _minAmountsOut[i][0], _deadline ); _totalAmountToken1 += _swapForTokenInPool( _paths[i][1], _halfTokens, rewardsTokens[i], _minAmountsOut[i][1], _deadline ); } // Approve the liquidity router to spend the bot's token0/token1 stakingToken0.approve(address(liquidityRouter), _totalAmountToken0); stakingToken1.approve(address(liquidityRouter), _totalAmountToken1); // Actually add liquidity liquidityRouter.addLiquidity( address(stakingToken0), address(stakingToken1), _totalAmountToken0, _totalAmountToken1, (_totalAmountToken0 * slippageNumerator) / slippageDenominator, (_totalAmountToken1 * slippageNumerator) / slippageDenominator, address(this), _deadline ); } /** * The _paths parameter represents a list of paths to use when swapping each rewards token to token0/token1 of the LP. * Each top-level entry represents a pair of paths for each rewardsToken. * * Example: * // string token names used in place of addresses for readability * rewardsTokens = ['cUSD', 'Celo', 'UBE'] * stakingTokens = ['cEUR', 'MOO'] * paths = [ * [ // paths from cUSD to staking tokens * ['cUSD', 'cEUR'], // order matters here (need first staking token first) * ['cUSD', 'mcUSD', 'MOO'] * ], * [ // paths from Celo to staking tokens * ... * ], * [ // paths from UBE to staking tokens * ... * ] * ] * * The _minAmountsOut parameter represents a list of minimum amounts for token0/token1 we expect to receive when swapping * each rewardsToken. If we do not receive at least this much of token0/token1 for some swap, the transaction will revert. * If a path corresponding to some swap has length < 2, the minimum amount specified for that swap will be ignored. */ function compound( address[][2][] memory _paths, uint256[2][] memory _minAmountsOut, uint256 _deadline ) external ensure(_deadline) onlyRole(COMPOUNDER_ROLE) whenNotPaused { require( _paths.length == rewardsTokens.length, "Parameter _paths must have length equal to rewardsTokens" ); require( _minAmountsOut.length == rewardsTokens.length, "Parameter _minAmountsOut must have length equal to rewardsTokens" ); stakingRewards.getReward(); uint256[] memory _tokenBalances = new uint256[](rewardsTokens.length); for (uint256 i = 0; i < rewardsTokens.length; i++) { _tokenBalances[i] = rewardsTokens[i].balanceOf(address(this)); } // Perform swaps and add liquidity _addLiquidity(_tokenBalances, _paths, _minAmountsOut, _deadline); // send fees to compounder and reserve uint256 lpBalance = stakingToken.balanceOf(address(this)); uint256 compounderFee = revoFees.compounderFee(lpBalance); uint256 reserveFee = revoFees.reserveFee(lpBalance); require( compounderFee + reserveFee <= (lpBalance * maxPerformanceFeeNumerator) / maxPerformanceFeeDenominator, "Performance fee too high" ); bool compounderFeeSuccess = stakingToken.transfer( msg.sender, compounderFee ); bool reserveFeeSuccess = stakingToken.transfer( reserveAddress, reserveFee ); require( compounderFeeSuccess && reserveFeeSuccess, "Sending fees failed" ); // reinvest LPs and adjust FP weight uint256 lpEarnings = lpBalance - compounderFee - reserveFee; _investInFarm(lpEarnings); lpTotalBalance += lpEarnings; // update interest rate interestEarnedNumerator = (lpEarnings * interestEarnedDenominator) / lpTotalBalance; revoFees.issueCompounderBonus(msg.sender); emit Compound( msg.sender, lpEarnings, lpTotalBalance, compounderFee, reserveFee ); } function pause() external onlyRole(DEFAULT_ADMIN_ROLE) { _pause(); } function unpause() external onlyRole(DEFAULT_ADMIN_ROLE) { _unpause(); uint256 lpBalance = stakingToken.balanceOf(address(this)); if (lpBalance > 0) { _investInFarm(lpBalance); } } }
/IMoolaStakingRewards.sol
// SPDX-License-Identifier: MIT pragma solidity >=0.4.24; interface IMoolaStakingRewards { // Views function lastTimeRewardApplicable() external view returns (uint256); function rewardPerToken() external view returns (uint256); function earned(address account) external view returns (uint256); function earnedExternal(address account) external returns (uint256[] calldata); function getRewardForDuration() external view returns (uint256); function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); // Mutative function stake(uint256 amount) external; function withdraw(uint256 amount) external; function getReward() external; function exit() external; }
/IRevoFees.sol
//SPDX-License-Identifier: MIT pragma solidity 0.8.4; import "./openzeppelin-solidity/contracts/IERC20.sol"; struct TokenAmount { IERC20 token; uint256 amount; } interface IRevoFees { function compounderFee(uint256 _interestAccrued) external view returns (uint256); function compounderBonus(TokenAmount calldata interestAccrued) external view returns (TokenAmount[] memory); function reserveFee(uint256 _interestAccrued) external view returns (uint256); function withdrawalFee( uint256 interestEarnedNumerator, uint256 interestEarnedDenominator ) external view returns (uint256 feeNumerator, uint256 feeDenominator); function issueCompounderBonus(address recipient) external; }
/hardhat/console.sol
// SPDX-License-Identifier: MIT pragma solidity >= 0.4.22 <0.9.0; library console { address constant CONSOLE_ADDRESS = address(0x000000000000000000636F6e736F6c652e6c6f67); function _sendLogPayload(bytes memory payload) private view { uint256 payloadLength = payload.length; address consoleAddress = CONSOLE_ADDRESS; assembly { let payloadStart := add(payload, 32) let r := staticcall(gas(), consoleAddress, payloadStart, payloadLength, 0, 0) } } function log() internal view { _sendLogPayload(abi.encodeWithSignature("log()")); } function logInt(int p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(int)", p0)); } function logUint(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function logString(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function logBool(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function logAddress(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function logBytes(bytes memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes)", p0)); } function logBytes1(bytes1 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes1)", p0)); } function logBytes2(bytes2 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes2)", p0)); } function logBytes3(bytes3 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes3)", p0)); } function logBytes4(bytes4 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes4)", p0)); } function logBytes5(bytes5 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes5)", p0)); } function logBytes6(bytes6 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes6)", p0)); } function logBytes7(bytes7 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes7)", p0)); } function logBytes8(bytes8 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes8)", p0)); } function logBytes9(bytes9 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes9)", p0)); } function logBytes10(bytes10 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes10)", p0)); } function logBytes11(bytes11 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes11)", p0)); } function logBytes12(bytes12 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes12)", p0)); } function logBytes13(bytes13 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes13)", p0)); } function logBytes14(bytes14 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes14)", p0)); } function logBytes15(bytes15 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes15)", p0)); } function logBytes16(bytes16 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes16)", p0)); } function logBytes17(bytes17 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes17)", p0)); } function logBytes18(bytes18 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes18)", p0)); } function logBytes19(bytes19 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes19)", p0)); } function logBytes20(bytes20 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes20)", p0)); } function logBytes21(bytes21 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes21)", p0)); } function logBytes22(bytes22 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes22)", p0)); } function logBytes23(bytes23 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes23)", p0)); } function logBytes24(bytes24 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes24)", p0)); } function logBytes25(bytes25 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes25)", p0)); } function logBytes26(bytes26 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes26)", p0)); } function logBytes27(bytes27 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes27)", p0)); } function logBytes28(bytes28 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes28)", p0)); } function logBytes29(bytes29 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes29)", p0)); } function logBytes30(bytes30 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes30)", p0)); } function logBytes31(bytes31 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes31)", p0)); } function logBytes32(bytes32 p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bytes32)", p0)); } function log(uint p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint)", p0)); } function log(string memory p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(string)", p0)); } function log(bool p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool)", p0)); } function log(address p0) internal view { _sendLogPayload(abi.encodeWithSignature("log(address)", p0)); } function log(uint p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint)", p0, p1)); } function log(uint p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string)", p0, p1)); } function log(uint p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool)", p0, p1)); } function log(uint p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address)", p0, p1)); } function log(string memory p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint)", p0, p1)); } function log(string memory p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string)", p0, p1)); } function log(string memory p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool)", p0, p1)); } function log(string memory p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address)", p0, p1)); } function log(bool p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint)", p0, p1)); } function log(bool p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string)", p0, p1)); } function log(bool p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool)", p0, p1)); } function log(bool p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address)", p0, p1)); } function log(address p0, uint p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint)", p0, p1)); } function log(address p0, string memory p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string)", p0, p1)); } function log(address p0, bool p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool)", p0, p1)); } function log(address p0, address p1) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address)", p0, p1)); } function log(uint p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint)", p0, p1, p2)); } function log(uint p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string)", p0, p1, p2)); } function log(uint p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool)", p0, p1, p2)); } function log(uint p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address)", p0, p1, p2)); } function log(uint p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint)", p0, p1, p2)); } function log(uint p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string)", p0, p1, p2)); } function log(uint p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool)", p0, p1, p2)); } function log(uint p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address)", p0, p1, p2)); } function log(uint p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint)", p0, p1, p2)); } function log(uint p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string)", p0, p1, p2)); } function log(uint p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool)", p0, p1, p2)); } function log(uint p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address)", p0, p1, p2)); } function log(uint p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint)", p0, p1, p2)); } function log(uint p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string)", p0, p1, p2)); } function log(uint p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool)", p0, p1, p2)); } function log(uint p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address)", p0, p1, p2)); } function log(string memory p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint)", p0, p1, p2)); } function log(string memory p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string)", p0, p1, p2)); } function log(string memory p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool)", p0, p1, p2)); } function log(string memory p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address)", p0, p1, p2)); } function log(string memory p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint)", p0, p1, p2)); } function log(string memory p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string)", p0, p1, p2)); } function log(string memory p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool)", p0, p1, p2)); } function log(string memory p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address)", p0, p1, p2)); } function log(string memory p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint)", p0, p1, p2)); } function log(string memory p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string)", p0, p1, p2)); } function log(string memory p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool)", p0, p1, p2)); } function log(string memory p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address)", p0, p1, p2)); } function log(string memory p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint)", p0, p1, p2)); } function log(string memory p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string)", p0, p1, p2)); } function log(string memory p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool)", p0, p1, p2)); } function log(string memory p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address)", p0, p1, p2)); } function log(bool p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint)", p0, p1, p2)); } function log(bool p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string)", p0, p1, p2)); } function log(bool p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool)", p0, p1, p2)); } function log(bool p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address)", p0, p1, p2)); } function log(bool p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint)", p0, p1, p2)); } function log(bool p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string)", p0, p1, p2)); } function log(bool p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool)", p0, p1, p2)); } function log(bool p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address)", p0, p1, p2)); } function log(bool p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint)", p0, p1, p2)); } function log(bool p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string)", p0, p1, p2)); } function log(bool p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool)", p0, p1, p2)); } function log(bool p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address)", p0, p1, p2)); } function log(bool p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint)", p0, p1, p2)); } function log(bool p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string)", p0, p1, p2)); } function log(bool p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool)", p0, p1, p2)); } function log(bool p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address)", p0, p1, p2)); } function log(address p0, uint p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint)", p0, p1, p2)); } function log(address p0, uint p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string)", p0, p1, p2)); } function log(address p0, uint p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool)", p0, p1, p2)); } function log(address p0, uint p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address)", p0, p1, p2)); } function log(address p0, string memory p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint)", p0, p1, p2)); } function log(address p0, string memory p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string)", p0, p1, p2)); } function log(address p0, string memory p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool)", p0, p1, p2)); } function log(address p0, string memory p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address)", p0, p1, p2)); } function log(address p0, bool p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint)", p0, p1, p2)); } function log(address p0, bool p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string)", p0, p1, p2)); } function log(address p0, bool p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool)", p0, p1, p2)); } function log(address p0, bool p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address)", p0, p1, p2)); } function log(address p0, address p1, uint p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint)", p0, p1, p2)); } function log(address p0, address p1, string memory p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string)", p0, p1, p2)); } function log(address p0, address p1, bool p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool)", p0, p1, p2)); } function log(address p0, address p1, address p2) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address)", p0, p1, p2)); } function log(uint p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,uint,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,string,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,bool,address)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,uint)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,string)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,bool)", p0, p1, p2, p3)); } function log(uint p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,uint,address,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,uint,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,string,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,bool,address)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,uint)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,string)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,bool)", p0, p1, p2, p3)); } function log(uint p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,string,address,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,uint,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,string,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,bool,address)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,uint)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,string)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,bool)", p0, p1, p2, p3)); } function log(uint p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,bool,address,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,uint,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,string,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,bool,address)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,uint)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,string)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,bool)", p0, p1, p2, p3)); } function log(uint p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(uint,address,address,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,string,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,string)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,uint,address,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,string,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,string)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,string,address,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,string,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,string)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,bool,address,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,uint,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,string,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,bool,address)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,uint)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,string)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,bool)", p0, p1, p2, p3)); } function log(string memory p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(string,address,address,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,uint,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,string,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,bool,address)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,uint)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,string)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,bool)", p0, p1, p2, p3)); } function log(bool p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,uint,address,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,uint,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,string,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,bool,address)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,uint)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,string)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,bool)", p0, p1, p2, p3)); } function log(bool p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,string,address,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,uint,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,string,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,bool,address)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,uint)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,string)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,bool)", p0, p1, p2, p3)); } function log(bool p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,bool,address,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,uint,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,string,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,bool,address)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,uint)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,string)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,bool)", p0, p1, p2, p3)); } function log(bool p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(bool,address,address,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,uint,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,string,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,bool,address)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,uint)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,string)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,bool)", p0, p1, p2, p3)); } function log(address p0, uint p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,uint,address,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,uint,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,string,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,bool,address)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,uint)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,string)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,bool)", p0, p1, p2, p3)); } function log(address p0, string memory p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,string,address,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,uint,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,string,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,bool,address)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,uint)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,string)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,bool)", p0, p1, p2, p3)); } function log(address p0, bool p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,bool,address,address)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,string)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, uint p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,uint,address)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,string)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, string memory p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,string,address)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,string)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, bool p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,bool,address)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, uint p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,uint)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, string memory p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,string)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, bool p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,bool)", p0, p1, p2, p3)); } function log(address p0, address p1, address p2, address p3) internal view { _sendLogPayload(abi.encodeWithSignature("log(address,address,address,address)", p0, p1, p2, p3)); } }
/openzeppelin-solidity/contracts/AccessControl.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.5.0) (access/AccessControl.sol) pragma solidity ^0.8.0; import "./IAccessControl.sol"; import "./Context.sol"; import "../utils/Strings.sol"; import "../utils/introspection/ERC165.sol"; /** * @dev Contract module that allows children to implement role-based access * control mechanisms. This is a lightweight version that doesn't allow enumerating role * members except through off-chain means by accessing the contract event logs. Some * applications may benefit from on-chain enumerability, for those cases see * {AccessControlEnumerable}. * * Roles are referred to by their `bytes32` identifier. These should be exposed * in the external API and be unique. The best way to achieve this is by * using `public constant` hash digests: * * ``` * bytes32 public constant MY_ROLE = keccak256("MY_ROLE"); * ``` * * Roles can be used to represent a set of permissions. To restrict access to a * function call, use {hasRole}: * * ``` * function foo() public { * require(hasRole(MY_ROLE, msg.sender)); * ... * } * ``` * * Roles can be granted and revoked dynamically via the {grantRole} and * {revokeRole} functions. Each role has an associated admin role, and only * accounts that have a role's admin role can call {grantRole} and {revokeRole}. * * By default, the admin role for all roles is `DEFAULT_ADMIN_ROLE`, which means * that only accounts with this role will be able to grant or revoke other * roles. More complex role relationships can be created by using * {_setRoleAdmin}. * * WARNING: The `DEFAULT_ADMIN_ROLE` is also its own admin: it has permission to * grant and revoke this role. Extra precautions should be taken to secure * accounts that have been granted it. */ abstract contract AccessControl is Context, IAccessControl, ERC165 { struct RoleData { mapping(address => bool) members; bytes32 adminRole; } mapping(bytes32 => RoleData) private _roles; bytes32 public constant DEFAULT_ADMIN_ROLE = 0x00; /** * @dev Modifier that checks that an account has a specific role. Reverts * with a standardized message including the required role. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ * * _Available since v4.1._ */ modifier onlyRole(bytes32 role) { _checkRole(role); _; } /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IAccessControl).interfaceId || super.supportsInterface(interfaceId); } /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) public view virtual override returns (bool) { return _roles[role].members[account]; } /** * @dev Revert with a standard message if `_msgSender()` is missing `role`. * Overriding this function changes the behavior of the {onlyRole} modifier. * * Format of the revert message is described in {_checkRole}. * * _Available since v4.6._ */ function _checkRole(bytes32 role) internal view virtual { _checkRole(role, _msgSender()); } /** * @dev Revert with a standard message if `account` is missing `role`. * * The format of the revert reason is given by the following regular expression: * * /^AccessControl: account (0x[0-9a-f]{40}) is missing role (0x[0-9a-f]{64})$/ */ function _checkRole(bytes32 role, address account) internal view virtual { if (!hasRole(role, account)) { revert( string( abi.encodePacked( "AccessControl: account ", Strings.toHexString(uint160(account), 20), " is missing role ", Strings.toHexString(uint256(role), 32) ) ) ); } } /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) public view virtual override returns (bytes32) { return _roles[role].adminRole; } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _grantRole(role, account); } /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) public virtual override onlyRole(getRoleAdmin(role)) { _revokeRole(role, account); } /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been revoked `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) public virtual override { require(account == _msgSender(), "AccessControl: can only renounce roles for self"); _revokeRole(role, account); } /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. Note that unlike {grantRole}, this function doesn't perform any * checks on the calling account. * * [WARNING] * ==== * This function should only be called from the constructor when setting * up the initial roles for the system. * * Using this function in any other way is effectively circumventing the admin * system imposed by {AccessControl}. * ==== * * NOTE: This function is deprecated in favor of {_grantRole}. */ function _setupRole(bytes32 role, address account) internal virtual { _grantRole(role, account); } /** * @dev Sets `adminRole` as ``role``'s admin role. * * Emits a {RoleAdminChanged} event. */ function _setRoleAdmin(bytes32 role, bytes32 adminRole) internal virtual { bytes32 previousAdminRole = getRoleAdmin(role); _roles[role].adminRole = adminRole; emit RoleAdminChanged(role, previousAdminRole, adminRole); } /** * @dev Grants `role` to `account`. * * Internal function without access restriction. */ function _grantRole(bytes32 role, address account) internal virtual { if (!hasRole(role, account)) { _roles[role].members[account] = true; emit RoleGranted(role, account, _msgSender()); } } /** * @dev Revokes `role` from `account`. * * Internal function without access restriction. */ function _revokeRole(bytes32 role, address account) internal virtual { if (hasRole(role, account)) { _roles[role].members[account] = false; emit RoleRevoked(role, account, _msgSender()); } } }
/openzeppelin-solidity/contracts/Address.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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); } } } }
/openzeppelin-solidity/contracts/Context.sol
// SPDX-License-Identifier: MIT pragma solidity ^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 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) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } }
/openzeppelin-solidity/contracts/ERC20.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.sol"; import "./Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of returning `false` on failure. This behavior is nonetheless conventional * and does not conflict with the expectations of ERC20 applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20 { mapping (address => uint256) private _balances; mapping (address => mapping (address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The defaut value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All three of these values are immutable: they can only be set once during * construction. */ constructor (string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5,05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overloaded; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom(address sender, address recipient, uint256 amount) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); _approve(sender, _msgSender(), currentAllowance - amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { _approve(_msgSender(), spender, _allowances[_msgSender()][spender] + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); _approve(_msgSender(), spender, currentAllowance - subtractedValue); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer(address sender, address recipient, uint256 amount) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); _balances[sender] = senderBalance - amount; _balances[recipient] += amount; emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `to` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _balances[account] += amount; emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); _balances[account] = accountBalance - amount; _totalSupply -= amount; emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve(address owner, address spender, uint256 amount) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer(address from, address to, uint256 amount) internal virtual { } }
/openzeppelin-solidity/contracts/IAccessControl.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (access/IAccessControl.sol) pragma solidity ^0.8.0; /** * @dev External interface of AccessControl declared to support ERC165 detection. */ interface IAccessControl { /** * @dev Emitted when `newAdminRole` is set as ``role``'s admin role, replacing `previousAdminRole` * * `DEFAULT_ADMIN_ROLE` is the starting admin for all roles, despite * {RoleAdminChanged} not being emitted signaling this. * * _Available since v3.1._ */ event RoleAdminChanged(bytes32 indexed role, bytes32 indexed previousAdminRole, bytes32 indexed newAdminRole); /** * @dev Emitted when `account` is granted `role`. * * `sender` is the account that originated the contract call, an admin role * bearer except when using {AccessControl-_setupRole}. */ event RoleGranted(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Emitted when `account` is revoked `role`. * * `sender` is the account that originated the contract call: * - if using `revokeRole`, it is the admin role bearer * - if using `renounceRole`, it is the role bearer (i.e. `account`) */ event RoleRevoked(bytes32 indexed role, address indexed account, address indexed sender); /** * @dev Returns `true` if `account` has been granted `role`. */ function hasRole(bytes32 role, address account) external view returns (bool); /** * @dev Returns the admin role that controls `role`. See {grantRole} and * {revokeRole}. * * To change a role's admin, use {AccessControl-_setRoleAdmin}. */ function getRoleAdmin(bytes32 role) external view returns (bytes32); /** * @dev Grants `role` to `account`. * * If `account` had not been already granted `role`, emits a {RoleGranted} * event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function grantRole(bytes32 role, address account) external; /** * @dev Revokes `role` from `account`. * * If `account` had been granted `role`, emits a {RoleRevoked} event. * * Requirements: * * - the caller must have ``role``'s admin role. */ function revokeRole(bytes32 role, address account) external; /** * @dev Revokes `role` from the calling account. * * Roles are often managed via {grantRole} and {revokeRole}: this function's * purpose is to provide a mechanism for accounts to lose their privileges * if they are compromised (such as when a trusted device is misplaced). * * If the calling account had been granted `role`, emits a {RoleRevoked} * event. * * Requirements: * * - the caller must be `account`. */ function renounceRole(bytes32 role, address account) external; }
/openzeppelin-solidity/contracts/IERC20.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.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 ); }
/openzeppelin-solidity/contracts/Pausable.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (security/Pausable.sol) pragma solidity ^0.8.0; import "./Context.sol"; /** * @dev Contract module which allows children to implement an emergency stop * mechanism that can be triggered by an authorized account. * * This module is used through inheritance. It will make available the * modifiers `whenNotPaused` and `whenPaused`, which can be applied to * the functions of your contract. Note that they will not be pausable by * simply including this module, only once the modifiers are put in place. */ abstract contract Pausable is Context { /** * @dev Emitted when the pause is triggered by `account`. */ event Paused(address account); /** * @dev Emitted when the pause is lifted by `account`. */ event Unpaused(address account); bool private _paused; /** * @dev Initializes the contract in unpaused state. */ constructor() { _paused = false; } /** * @dev Returns true if the contract is paused, and false otherwise. */ function paused() public view virtual returns (bool) { return _paused; } /** * @dev Modifier to make a function callable only when the contract is not paused. * * Requirements: * * - The contract must not be paused. */ modifier whenNotPaused() { require(!paused(), "Pausable: paused"); _; } /** * @dev Modifier to make a function callable only when the contract is paused. * * Requirements: * * - The contract must be paused. */ modifier whenPaused() { require(paused(), "Pausable: not paused"); _; } /** * @dev Triggers stopped state. * * Requirements: * * - The contract must not be paused. */ function _pause() internal virtual whenNotPaused { _paused = true; emit Paused(_msgSender()); } /** * @dev Returns to normal state. * * Requirements: * * - The contract must be paused. */ function _unpause() internal virtual whenPaused { _paused = false; emit Unpaused(_msgSender()); } }
/openzeppelin-solidity/contracts/SafeERC20.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; import "./IERC20.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 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) + value; _callOptionalReturn( token, abi.encodeWithSelector( token.approve.selector, spender, newAllowance ) ); } function safeDecreaseAllowance( IERC20 token, address spender, uint256 value ) internal { unchecked { uint256 oldAllowance = token.allowance(address(this), spender); require( oldAllowance >= value, "SafeERC20: decreased allowance below zero" ); uint256 newAllowance = oldAllowance - value; _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" ); } } }
/openzeppelin-solidity/utils/Strings.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Strings.sol) pragma solidity ^0.8.0; /** * @dev String operations. */ library Strings { bytes16 private constant _HEX_SYMBOLS = "0123456789abcdef"; /** * @dev Converts a `uint256` to its ASCII `string` decimal 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); while (value != 0) { digits -= 1; buffer[digits] = bytes1(uint8(48 + uint256(value % 10))); value /= 10; } return string(buffer); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation. */ function toHexString(uint256 value) internal pure returns (string memory) { if (value == 0) { return "0x00"; } uint256 temp = value; uint256 length = 0; while (temp != 0) { length++; temp >>= 8; } return toHexString(value, length); } /** * @dev Converts a `uint256` to its ASCII `string` hexadecimal representation with fixed length. */ 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] = _HEX_SYMBOLS[value & 0xf]; value >>= 4; } require(value == 0, "Strings: hex length insufficient"); return string(buffer); } }
/openzeppelin-solidity/utils/introspection/ERC165.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/ERC165.sol) pragma solidity ^0.8.0; import "./IERC165.sol"; /** * @dev Implementation of the {IERC165} interface. * * Contracts that want to implement ERC165 should inherit from this contract and override {supportsInterface} to check * for the additional interface id that will be supported. For example: * * ```solidity * function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { * return interfaceId == type(MyInterface).interfaceId || super.supportsInterface(interfaceId); * } * ``` * * Alternatively, {ERC165Storage} provides an easier to use but more expensive implementation. */ abstract contract ERC165 is IERC165 { /** * @dev See {IERC165-supportsInterface}. */ function supportsInterface(bytes4 interfaceId) public view virtual override returns (bool) { return interfaceId == type(IERC165).interfaceId; } }
/openzeppelin-solidity/utils/introspection/IERC165.sol
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/introspection/IERC165.sol) pragma solidity ^0.8.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); }
/ubeswap/contracts/uniswapv2/interfaces/IUbeswapRouter.sol
// SPDX-License-Identifier: MIT pragma solidity ^0.8.3; /// @notice Swaps tokens interface IUbeswapRouter { function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function getAmountsOut(uint256 amountIn, address[] memory path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] memory path) external view returns (uint256[] memory amounts); }
/ubeswap/contracts/uniswapv2/interfaces/IUniswapV2Pair.sol
// SPDX-License-Identifier: MIT pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
/ubeswap/contracts/uniswapv2/interfaces/IUniswapV2Router01.sol
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
/ubeswap/contracts/uniswapv2/interfaces/IUniswapV2Router02.sol
// SPDX-License-Identifier: MIT pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function pairFor(address tokenA, address tokenB) external view returns (address); }
Contract ABI
[{"type":"constructor","stateMutability":"nonpayable","inputs":[{"type":"address","name":"_owner","internalType":"address"},{"type":"address","name":"_reserveAddress","internalType":"address"},{"type":"address","name":"_stakingRewards","internalType":"address"},{"type":"address","name":"_stakingToken","internalType":"address"},{"type":"address","name":"_revoFees","internalType":"address"},{"type":"address","name":"_swapRouter","internalType":"address"},{"type":"address","name":"_liquidityRouter","internalType":"address"},{"type":"address[]","name":"_rewardsTokens","internalType":"address[]"},{"type":"string","name":"_symbol","internalType":"string"}]},{"type":"event","name":"Approval","inputs":[{"type":"address","name":"owner","internalType":"address","indexed":true},{"type":"address","name":"spender","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Compound","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"uint256","name":"lpStaked","internalType":"uint256","indexed":false},{"type":"uint256","name":"newLPTotalBalance","internalType":"uint256","indexed":false},{"type":"uint256","name":"compounderFeeAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"reserveFeeAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Deposit","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"uint256","name":"lpAmount","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"FeesUpdated","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"GrantRole","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"address","name":"newRoleRecipient","internalType":"address","indexed":true},{"type":"bytes32","name":"role","internalType":"bytes32","indexed":false}],"anonymous":false},{"type":"event","name":"LiquidityRouterUpdated","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"address","name":"routerAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Paused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"ReserveUpdated","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"address","name":"reserveAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleAdminChanged","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"previousAdminRole","internalType":"bytes32","indexed":true},{"type":"bytes32","name":"newAdminRole","internalType":"bytes32","indexed":true}],"anonymous":false},{"type":"event","name":"RoleGranted","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"RoleRevoked","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32","indexed":true},{"type":"address","name":"account","internalType":"address","indexed":true},{"type":"address","name":"sender","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"SlippageUpdated","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"uint256","name":"numerator","internalType":"uint256","indexed":false},{"type":"uint256","name":"denominator","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"SwapRouterUpdated","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"address","name":"routerAddress","internalType":"address","indexed":true}],"anonymous":false},{"type":"event","name":"Transfer","inputs":[{"type":"address","name":"from","internalType":"address","indexed":true},{"type":"address","name":"to","internalType":"address","indexed":true},{"type":"uint256","name":"value","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"event","name":"Unpaused","inputs":[{"type":"address","name":"account","internalType":"address","indexed":false}],"anonymous":false},{"type":"event","name":"Withdraw","inputs":[{"type":"address","name":"by","internalType":"address","indexed":true},{"type":"uint256","name":"lpAmount","internalType":"uint256","indexed":false},{"type":"uint256","name":"fee","internalType":"uint256","indexed":false}],"anonymous":false},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"COMPOUNDER_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"DEFAULT_ADMIN_ROLE","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"allowance","inputs":[{"type":"address","name":"owner","internalType":"address"},{"type":"address","name":"spender","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"approve","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"balanceOf","inputs":[{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"compound","inputs":[{"type":"address[][2][]","name":"_paths","internalType":"address[][2][]"},{"type":"uint256[2][]","name":"_minAmountsOut","internalType":"uint256[2][]"},{"type":"uint256","name":"_deadline","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint8","name":"","internalType":"uint8"}],"name":"decimals","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"decreaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"subtractedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"deposit","inputs":[{"type":"uint256","name":"_lpAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getFpAmount","inputs":[{"type":"uint256","name":"_lpAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"getLpAmount","inputs":[{"type":"uint256","name":"_fpAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bytes32","name":"","internalType":"bytes32"}],"name":"getRoleAdmin","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"grantRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"hasRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"increaseAllowance","inputs":[{"type":"address","name":"spender","internalType":"address"},{"type":"uint256","name":"addedValue","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"interestEarnedDenominator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"interestEarnedNumerator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Router02"}],"name":"liquidityRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"lpTotalBalance","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxPerformanceFeeDenominator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxPerformanceFeeNumerator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxWithdrawalFeeDenominator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"maxWithdrawalFeeNumerator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"name","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"pause","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"paused","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"renounceRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"address"}],"name":"reserveAddress","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IRevoFees"}],"name":"revoFees","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"revokeRole","inputs":[{"type":"bytes32","name":"role","internalType":"bytes32"},{"type":"address","name":"account","internalType":"address"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"rewardsTokens","inputs":[{"type":"uint256","name":"","internalType":"uint256"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"slippageDenominator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"slippageNumerator","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IMoolaStakingRewards"}],"name":"stakingRewards","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUniswapV2Pair"}],"name":"stakingToken","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"stakingToken0","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IERC20"}],"name":"stakingToken1","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"supportsInterface","inputs":[{"type":"bytes4","name":"interfaceId","internalType":"bytes4"}]},{"type":"function","stateMutability":"view","outputs":[{"type":"address","name":"","internalType":"contract IUbeswapRouter"}],"name":"swapRouter","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"string","name":"","internalType":"string"}],"name":"symbol","inputs":[]},{"type":"function","stateMutability":"view","outputs":[{"type":"uint256","name":"","internalType":"uint256"}],"name":"totalSupply","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transfer","inputs":[{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[{"type":"bool","name":"","internalType":"bool"}],"name":"transferFrom","inputs":[{"type":"address","name":"sender","internalType":"address"},{"type":"address","name":"recipient","internalType":"address"},{"type":"uint256","name":"amount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"unpause","inputs":[]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateFees","inputs":[{"type":"address","name":"_revoFees","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateLiquidityRouterAddress","inputs":[{"type":"address","name":"_liquidityRouter","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateReserveAddress","inputs":[{"type":"address","name":"_reserveAddress","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSlippage","inputs":[{"type":"uint256","name":"_slippageNumerator","internalType":"uint256"},{"type":"uint256","name":"_slippageDenominator","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"updateSwapRouterAddress","inputs":[{"type":"address","name":"_swapRouter","internalType":"address"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdraw","inputs":[{"type":"uint256","name":"_lpAmount","internalType":"uint256"}]},{"type":"function","stateMutability":"nonpayable","outputs":[],"name":"withdrawAll","inputs":[]}]
Contract Creation Code
0x6080604052612710600955606360115560646012553480156200002157600080fd5b5060405162007478380380620074788339818101604052810190620000479190620008f3565b6040518060400160405280600d81526020017f5265766f20465020546f6b656e0000000000000000000000000000000000000081525081816003908051906020019062000096929190620006ec565b508060049080519060200190620000af929190620006ec565b5050506000600660006101000a81548160ff02191690831515021790555086600a60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060005b8251811015620001d557600b83828151811062000157577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101519080600181540180825580915050600190039060005260206000200160009091909190916101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508080620001cc9062000ba4565b91505062000111565b5084601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555085600c60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630dfe16816040518163ffffffff1660e01b815260040160206040518083038186803b158015620002c157600080fd5b505afa158015620002d6573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002fc9190620008c7565b600d60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663d21220a76040518163ffffffff1660e01b815260040160206040518083038186803b158015620003a557600080fd5b505afa158015620003ba573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620003e09190620008c7565b600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555087601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550620004f86000801b8a6200057160201b60201c565b8873ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe7442843a65013dba5eebc77d5a00f5fafa588af0da4bf39250936d4783bb5536000801b6040516200055a919062000a0f565b60405180910390a350505050505050505062000caa565b6200058382826200058760201b60201c565b5050565b6200059982826200067960201b60201c565b620006755760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506200061a620006e460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b828054620006fa9062000b38565b90600052602060002090601f0160209004810192826200071e57600085556200076a565b82601f106200073957805160ff19168380011785556200076a565b828001600101855582156200076a579182015b82811115620007695782518255916020019190600101906200074c565b5b5090506200077991906200077d565b5090565b5b80821115620007985760008160009055506001016200077e565b5090565b6000620007b3620007ad8462000a55565b62000a2c565b90508083825260208201905082856020860282011115620007d357600080fd5b60005b85811015620008075781620007ec888262000856565b845260208401935060208301925050600181019050620007d6565b5050509392505050565b600062000828620008228462000a84565b62000a2c565b9050828152602081018484840111156200084157600080fd5b6200084e84828562000b02565b509392505050565b600081519050620008678162000c90565b92915050565b600082601f8301126200087f57600080fd5b8151620008918482602086016200079c565b91505092915050565b600082601f830112620008ac57600080fd5b8151620008be84826020860162000811565b91505092915050565b600060208284031215620008da57600080fd5b6000620008ea8482850162000856565b91505092915050565b60008060008060008060008060006101208a8c0312156200091357600080fd5b6000620009238c828d0162000856565b9950506020620009368c828d0162000856565b9850506040620009498c828d0162000856565b97505060606200095c8c828d0162000856565b96505060806200096f8c828d0162000856565b95505060a0620009828c828d0162000856565b94505060c0620009958c828d0162000856565b93505060e08a015167ffffffffffffffff811115620009b357600080fd5b620009c18c828d016200086d565b9250506101008a015167ffffffffffffffff811115620009e057600080fd5b620009ee8c828d016200089a565b9150509295985092959850929598565b62000a098162000ace565b82525050565b600060208201905062000a266000830184620009fe565b92915050565b600062000a3862000a4b565b905062000a46828262000b6e565b919050565b6000604051905090565b600067ffffffffffffffff82111562000a735762000a7262000c50565b5b602082029050602081019050919050565b600067ffffffffffffffff82111562000aa25762000aa162000c50565b5b62000aad8262000c7f565b9050602081019050919050565b600062000ac78262000ad8565b9050919050565b6000819050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b60005b8381101562000b2257808201518184015260208101905062000b05565b8381111562000b32576000848401525b50505050565b6000600282049050600182168062000b5157607f821691505b6020821081141562000b685762000b6762000c21565b5b50919050565b62000b798262000c7f565b810181811067ffffffffffffffff8211171562000b9b5762000b9a62000c50565b5b80604052505050565b600062000bb18262000af8565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82141562000be75762000be662000bf2565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b62000c9b8162000aba565b811462000ca757600080fd5b50565b6167be8062000cba6000396000f3fe608060405234801561001057600080fd5b50600436106102f15760003560e01c806370a082311161019d578063b6d0dcd8116100e9578063d4840641116100a2578063dd62ed3e1161007c578063dd62ed3e14610900578063f79ed94b14610930578063f84afd481461094e578063fd3865e11461096a576102f1565b8063d4840641146108a8578063d547741f146108c6578063dbae9b0f146108e2576102f1565b8063b6d0dcd8146107d2578063bac385c414610802578063c31c9c071461081e578063c7493abb1461083c578063c838b0741461085a578063c9ce0e8c14610878576102f1565b806391d1485411610156578063a457c2d711610130578063a457c2d71461073a578063a9059cbb1461076a578063abfe2bdb1461079a578063b6b55f25146107b6576102f1565b806391d14854146106ce57806395d89b41146106fe578063a217fddf1461071c576102f1565b806370a082311461063257806372f702f3146106625780637aca573c146106805780638456cb591461069e578063853828b6146106a85780638c00ca9d146106b2576102f1565b80632f2ff15d1161025c5780634a1510b4116102155780635f8e9e91116101ef5780635f8e9e91146105aa57806364b87a70146105da578063684cb274146105f85780636cf3f8df14610616576102f1565b80634a1510b4146105525780635a3746ca146105705780635c975abb1461058c576102f1565b80632f2ff15d146104a4578063313ce567146104c057806336568abe146104de5780633902cbff146104fa57806339509351146105185780633f4ba83a14610548576102f1565b806323b872dd116102ae57806323b872dd146103ce57806324702944146103fe578063248a9ca31461041c57806327b74a5d1461044c5780632e1a7d4d1461046a5780632e5bd7ab14610486576102f1565b806301ffc9a7146102f657806306fdde0314610326578063095ea7b3146103445780630ab8985b14610374578063147bd3af1461039257806318160ddd146103b0575b600080fd5b610310600480360381019061030b9190614b3e565b610988565b60405161031d91906153f5565b60405180910390f35b61032e610a02565b60405161033b91906154cd565b60405180910390f35b61035e600480360381019061035991906149b4565b610a94565b60405161036b91906153f5565b60405180910390f35b61037c610ab2565b604051610389919061542b565b60405180910390f35b61039a610ad8565b6040516103a7919061588f565b60405180910390f35b6103b8610ade565b6040516103c5919061588f565b60405180910390f35b6103e860048036038101906103e39190614965565b610ae8565b6040516103f591906153f5565b60405180910390f35b610406610be9565b60405161041391906154b2565b60405180910390f35b61043660048036038101906104319190614ad9565b610c0f565b6040516104439190615410565b60405180910390f35b610454610c2f565b604051610461919061588f565b60405180910390f35b610484600480360381019061047f9190614b67565b610c35565b005b61048e6111ea565b60405161049b919061588f565b60405180910390f35b6104be60048036038101906104b99190614b02565b6111f0565b005b6104c8611276565b6040516104d59190615972565b60405180910390f35b6104f860048036038101906104f39190614b02565b61127f565b005b610502611302565b60405161050f919061588f565b60405180910390f35b610532600480360381019061052d91906149b4565b611308565b60405161053f91906153f5565b60405180910390f35b6105506113b4565b005b61055a61148f565b604051610567919061588f565b60405180910390f35b61058a600480360381019061058591906149f0565b611495565b005b610594611dcb565b6040516105a191906153f5565b60405180910390f35b6105c460048036038101906105bf9190614b67565b611de2565b6040516105d1919061588f565b60405180910390f35b6105e2611e24565b6040516105ef9190615446565b60405180910390f35b610600611e4a565b60405161060d9190615410565b60405180910390f35b610630600480360381019061062b9190614900565b611e6e565b005b61064c60048036038101906106479190614900565b611f1a565b604051610659919061588f565b60405180910390f35b61066a611f62565b6040516106779190615497565b60405180910390f35b610688611f88565b6040516106959190615461565b60405180910390f35b6106a6611fae565b005b6106b0611fc6565b005b6106cc60048036038101906106c79190614bb9565b612032565b005b6106e860048036038101906106e39190614b02565b6120a2565b6040516106f591906153f5565b60405180910390f35b61070661210d565b60405161071391906154cd565b60405180910390f35b61072461219f565b6040516107319190615410565b60405180910390f35b610754600480360381019061074f91906149b4565b6121a6565b60405161076191906153f5565b60405180910390f35b610784600480360381019061077f91906149b4565b61229a565b60405161079191906153f5565b60405180910390f35b6107b460048036038101906107af9190614900565b6122b8565b005b6107d060048036038101906107cb9190614b67565b612364565b005b6107ec60048036038101906107e79190614b67565b6125ad565b6040516107f9919061542b565b60405180910390f35b61081c60048036038101906108179190614900565b6125ec565b005b610826612698565b604051610833919061547c565b60405180910390f35b6108446126be565b604051610851919061588f565b60405180910390f35b6108626126c3565b60405161086f919061588f565b60405180910390f35b610892600480360381019061088d9190614b67565b6126c9565b60405161089f919061588f565b60405180910390f35b6108b0612705565b6040516108bd919061588f565b60405180910390f35b6108e060048036038101906108db9190614b02565b61270b565b005b6108ea61272c565b6040516108f7919061588f565b60405180910390f35b61091a60048036038101906109159190614929565b612731565b604051610927919061588f565b60405180910390f35b6109386127b8565b60405161094591906152d3565b60405180910390f35b61096860048036038101906109639190614900565b6127de565b005b6109726128fa565b60405161097f919061542b565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fb57506109fa82612920565b5b9050919050565b606060038054610a1190615df9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90615df9565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b6000610aa8610aa161298a565b8484612992565b6001905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600254905090565b6000610af5848484612b5d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b4061298a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906156cf565b60405180910390fd5b610bdd85610bcc61298a565b8584610bd89190615c05565b612992565b60019150509392505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060056000838152602001908152602001600020600101549050919050565b60075481565b60003073ffffffffffffffffffffffffffffffffffffffff1663c9ce0e8c836040518263ffffffff1660e01b8152600401610c70919061588f565b60206040518083038186803b158015610c8857600080fd5b505afa158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc09190614b90565b905080610ccc33611f1a565b1015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d049061578f565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d6a91906152d3565b60206040518083038186803b158015610d8257600080fd5b505afa158015610d96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dba9190614b90565b905080831115610e5d57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d8285610e0e9190615c05565b6040518263ffffffff1660e01b8152600401610e2a919061588f565b600060405180830381600087803b158015610e4457600080fd5b505af1158015610e58573d6000803e3d6000fd5b505050505b600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ae2859c6008546009546040518363ffffffff1660e01b8152600401610ec19291906158aa565b604080518083038186803b158015610ed857600080fd5b505afa158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190614bf5565b915091506000818684610f239190615bab565b610f2d9190615b7a565b905060006103e8876028610f419190615bab565b610f4b9190615b7a565b905080821115610f59578091505b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610fda9291906153cc565b602060405180830381600087803b158015610ff457600080fd5b505af1158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c9190614ab0565b90508061106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611065906157ef565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33868c6110bb9190615c05565b6040518363ffffffff1660e01b81526004016110d89291906153cc565b602060405180830381600087803b1580156110f257600080fd5b505af1158015611106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112a9190614ab0565b90508061116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061570f565b60405180910390fd5b6111763389612ddc565b88600760008282546111889190615c05565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688a866040516111d79291906158aa565b60405180910390a2505050505050505050565b61271081565b6111f982610c0f565b61120281612fb0565b61120c8383612fc4565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe7442843a65013dba5eebc77d5a00f5fafa588af0da4bf39250936d4783bb553856040516112699190615410565b60405180910390a3505050565b60006012905090565b61128761298a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb9061584f565b60405180910390fd5b6112fe8282612fe5565b5050565b60095481565b60006113aa61131561298a565b84846001600061132361298a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a59190615b24565b612992565b6001905092915050565b6000801b6113c181612fb0565b6113c96130c7565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161142691906152d3565b60206040518083038186803b15801561143e57600080fd5b505afa158015611452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114769190614b90565b9050600081111561148b5761148a81613169565b5b5050565b6103e881565b80428110156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d09061560f565b60405180910390fd5b7f29944e936a0f6e1cbaa227df218d7d6025c2a2785db840e42a3425f24e9e68ac61150381612fb0565b61150b611dcb565b1561154b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115429061566f565b60405180910390fd5b600b80549050855114611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a9061574f565b60405180910390fd5b600b805490508451146115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061564f565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633d18b9126040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561164557600080fd5b505af1158015611659573d6000803e3d6000fd5b505050506000600b8054905067ffffffffffffffff8111156116a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116d25781602001602082028036833780820191505090505b50905060005b600b8054905081101561182a57600b818154811061171f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161178291906152d3565b60206040518083038186803b15801561179a57600080fd5b505afa1580156117ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d29190614b90565b82828151811061180b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061182290615e5c565b9150506116d8565b506118378187878761330e565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161189491906152d3565b60206040518083038186803b1580156118ac57600080fd5b505afa1580156118c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e49190614b90565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392ce27f8836040518263ffffffff1660e01b8152600401611943919061588f565b60206040518083038186803b15801561195b57600080fd5b505afa15801561196f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119939190614b90565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631deae18c846040518263ffffffff1660e01b81526004016119f2919061588f565b60206040518083038186803b158015611a0a57600080fd5b505afa158015611a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a429190614b90565b90506103e8602884611a549190615bab565b611a5e9190615b7a565b8183611a6a9190615b24565b1115611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa2906155ef565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401611b0a9291906153cc565b602060405180830381600087803b158015611b2457600080fd5b505af1158015611b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5c9190614ab0565b90506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401611bdf9291906153cc565b602060405180830381600087803b158015611bf957600080fd5b505af1158015611c0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c319190614ab0565b9050818015611c3d5750805b611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c73906156af565b60405180910390fd5b6000838587611c8b9190615c05565b611c959190615c05565b9050611ca081613169565b8060076000828254611cb29190615b24565b9250508190555060075460095482611cca9190615bab565b611cd49190615b7a565b600881905550601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632a564992336040518263ffffffff1660e01b8152600401611d3591906152d3565b600060405180830381600087803b158015611d4f57600080fd5b505af1158015611d63573d6000803e3d6000fd5b505050503373ffffffffffffffffffffffffffffffffffffffff167f36c54fe3f6742709ba65ab76880ce98cbacfc0e2f273d55f4e4d50d8830c2600826007548888604051611db5949392919061592d565b60405180910390a2505050505050505050505050565b6000600660009054906101000a900460ff16905090565b600080611ded610ade565b1415611dfc5760009050611e1f565b611e04610ade565b60075483611e129190615bab565b611e1c9190615b7a565b90505b919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f29944e936a0f6e1cbaa227df218d7d6025c2a2785db840e42a3425f24e9e68ac81565b6000801b611e7b81612fb0565b81600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fca394f95d8dbf1e8b2e76b9a8da90cacce1da85181a65508dab13212dc1df53b60405160405180910390a35050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000801b611fbb81612fb0565b611fc3613959565b50565b6000611fd133611f1a565b11612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061568f565b60405180910390fd5b600061202461201f33611f1a565b611de2565b905061202f81610c35565b50565b6000801b61203f81612fb0565b82601181905550816012819055503373ffffffffffffffffffffffffffffffffffffffff167fe8a0df875bece805d1b6bd1bf60bdf2abc88b51be72ed2bb5cd590532bc446a884846040516120959291906158aa565b60405180910390a2505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461211c90615df9565b80601f016020809104026020016040519081016040528092919081815260200182805461214890615df9565b80156121955780601f1061216a57610100808354040283529160200191612195565b820191906000526020600020905b81548152906001019060200180831161217857829003601f168201915b5050505050905090565b6000801b81565b600080600160006121b561298a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122699061582f565b60405180910390fd5b61228f61227d61298a565b85858461228a9190615c05565b612992565b600191505092915050565b60006122ae6122a761298a565b8484612b5d565b6001905092915050565b6000801b6122c581612fb0565b81601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f5b1c29a1dba062a69b78ce73a2eefee7c106ae78ccd32338a741b3dc6fdcd32d60405160405180910390a35050565b61236c611dcb565b156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a39061566f565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161240d93929190615317565b602060405180830381600087803b15801561242757600080fd5b505af115801561243b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245f9190614ab0565b9050806124a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612498906156ef565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff1663c9ce0e8c846040518263ffffffff1660e01b81526004016124dc919061588f565b60206040518083038186803b1580156124f457600080fd5b505afa158015612508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252c9190614b90565b905061253833826139fc565b826007600082825461254a9190615b24565b9250508190555061255a83613169565b3373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c846040516125a0919061588f565b60405180910390a2505050565b600b81815481106125bd57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000801b6125f981612fb0565b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167ff76e779f769943b728cc826f493098475a7601f9ca3c1fa2696bc810f505056360405160405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601981565b60085481565b60008060075414156126dd57819050612700565b6007546126e8610ade565b836126f39190615bab565b6126fd9190615b7a565b90505b919050565b60125481565b61271482610c0f565b61271d81612fb0565b6127278383612fe5565b505050565b602881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000801b6127eb81612fb0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612852906155af565b60405180910390fd5b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fbd45c5f5d28e3962d234f9fa4e443f6f92e4525b10556e441307306fab9f9e0360405160405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f9906157af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a699061558f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b50919061588f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc49061576f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c349061550f565b60405180910390fd5b612c48838383613b50565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc5906155cf565b60405180910390fd5b8181612cda9190615c05565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6a9190615b24565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612dce919061588f565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e439061572f565b60405180910390fd5b612e5882600083613b50565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed59061556f565b60405180910390fd5b8181612eea9190615c05565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612f3e9190615c05565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612fa3919061588f565b60405180910390a3505050565b612fc181612fbc61298a565b613b55565b50565b612fcd82610c0f565b612fd681612fb0565b612fe08383613bf2565b505050565b612fef82826120a2565b156130c35760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061306861298a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6130cf611dcb565b61310e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131059061552f565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61315261298a565b60405161315f91906152d3565b60405180910390a1565b600081116131ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a39061554f565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161322b9291906153cc565b602060405180830381600087803b15801561324557600080fd5b505af1158015613259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061327d9190614ab0565b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a694fc3a826040518263ffffffff1660e01b81526004016132d9919061588f565b600060405180830381600087803b1580156132f357600080fd5b505af1158015613307573d6000803e3d6000fd5b5050505050565b60008060005b8651811015613676576000600288838151811061335a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161336c9190615b7a565b90506134db8783815181106133aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000600281106133eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600b858154811061342b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1689868151811061348f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000600281106134d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189613cd3565b846134e69190615b24565b9350613655878381518110613524577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600160028110613565577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600b85815481106135a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16898681518110613609577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016002811061364a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189613cd3565b836136609190615b24565b925050808061366e90615e5c565b915050613314565b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016136f69291906153cc565b602060405180830381600087803b15801561371057600080fd5b505af1158015613724573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137489190614ab0565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016137c89291906153cc565b602060405180830381600087803b1580156137e257600080fd5b505af11580156137f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061381a9190614ab0565b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585601254601154896138b29190615bab565b6138bc9190615b7a565b601254601154896138cd9190615bab565b6138d79190615b7a565b308b6040518963ffffffff1660e01b81526004016138fc98979695949392919061534e565b606060405180830381600087803b15801561391657600080fd5b505af115801561392a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061394e9190614c31565b505050505050505050565b613961611dcb565b156139a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139989061566f565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586139e561298a565b6040516139f291906152d3565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a639061586f565b60405180910390fd5b613a7860008383613b50565b8060026000828254613a8a9190615b24565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613adf9190615b24565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613b44919061588f565b60405180910390a35050565b505050565b613b5f82826120a2565b613bee57613b848173ffffffffffffffffffffffffffffffffffffffff166014613e5a565b613b928360001c6020613e5a565b604051602001613ba3929190615299565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be591906154cd565b60405180910390fd5b5050565b613bfc82826120a2565b613ccf5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613c7461298a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006002865110158015613ce75750600085115b15613e4d57613d39600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16868673ffffffffffffffffffffffffffffffffffffffff166141549092919063ffffffff16565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed173987868a30886040518663ffffffff1660e01b8152600401613d9e9594939291906158d3565b600060405180830381600087803b158015613db857600080fd5b505af1158015613dcc573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190613df59190614a6f565b90508060018251613e069190615c05565b81518110613e3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151915050613e51565b8490505b95945050505050565b606060006002836002613e6d9190615bab565b613e779190615b24565b67ffffffffffffffff811115613eb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613ee85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613f46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613fd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026140109190615bab565b61401a9190615b24565b90505b6001811115614106577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110614082577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106140bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806140ff90615dcf565b905061401d565b506000841461414a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614141906154ef565b60405180910390fd5b8091505092915050565b6000818473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30866040518363ffffffff1660e01b81526004016141929291906152ee565b60206040518083038186803b1580156141aa57600080fd5b505afa1580156141be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141e29190614b90565b6141ec9190615b24565b905061426f8463095ea7b360e01b858460405160240161420d9291906153cc565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614275565b50505050565b60006142d7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661433c9092919063ffffffff16565b905060008151111561433757808060200190518101906142f79190614ab0565b614336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161432d9061580f565b60405180910390fd5b5b505050565b606061434b8484600085614354565b90509392505050565b606082471015614399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143909061562f565b60405180910390fd5b6143a285614468565b6143e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143d8906157cf565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161440a9190615282565b60006040518083038185875af1925050503d8060008114614447576040519150601f19603f3d011682016040523d82523d6000602084013e61444c565b606091505b509150915061445c82828661447b565b92505050949350505050565b600080823b905060008111915050919050565b6060831561448b578290506144db565b60008351111561449e5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016144d291906154cd565b60405180910390fd5b9392505050565b60006144f56144f0846159b2565b61598d565b9050808382526020820190508285602086028201111561451457600080fd5b60005b85811015614544578161452a888261478c565b845260208401935060208301925050600181019050614517565b5050509392505050565b600061456161455c846159de565b61598d565b9050808285602086028201111561457757600080fd5b60005b858110156145c157813567ffffffffffffffff81111561459957600080fd5b8086016145a689826147a1565b8552602085019450602084019350505060018101905061457a565b5050509392505050565b60006145de6145d984615a04565b61598d565b905080838252602082019050828560208602820111156145fd57600080fd5b60005b8581101561464757813567ffffffffffffffff81111561461f57600080fd5b80860161462c89826147cb565b85526020850194506020840193505050600181019050614600565b5050509392505050565b600061466461465f84615a30565b61598d565b9050808382526020820190508285604086028201111561468357600080fd5b60005b858110156146b357816146998882614846565b845260208401935060408301925050600181019050614686565b5050509392505050565b60006146d06146cb84615a5c565b61598d565b905080828560208602820111156146e657600080fd5b60005b8581101561471657816146fc88826148d6565b8452602084019350602083019250506001810190506146e9565b5050509392505050565b600061473361472e84615a82565b61598d565b9050808382526020820190508285602086028201111561475257600080fd5b60005b85811015614782578161476888826148eb565b845260208401935060208301925050600181019050614755565b5050509392505050565b60008135905061479b81616715565b92915050565b600082601f8301126147b257600080fd5b81356147c28482602086016144e2565b91505092915050565b600082601f8301126147dc57600080fd5b60026147e984828561454e565b91505092915050565b600082601f83011261480357600080fd5b81356148138482602086016145cb565b91505092915050565b600082601f83011261482d57600080fd5b813561483d848260208601614651565b91505092915050565b600082601f83011261485757600080fd5b60026148648482856146bd565b91505092915050565b600082601f83011261487e57600080fd5b815161488e848260208601614720565b91505092915050565b6000815190506148a68161672c565b92915050565b6000813590506148bb81616743565b92915050565b6000813590506148d08161675a565b92915050565b6000813590506148e581616771565b92915050565b6000815190506148fa81616771565b92915050565b60006020828403121561491257600080fd5b60006149208482850161478c565b91505092915050565b6000806040838503121561493c57600080fd5b600061494a8582860161478c565b925050602061495b8582860161478c565b9150509250929050565b60008060006060848603121561497a57600080fd5b60006149888682870161478c565b93505060206149998682870161478c565b92505060406149aa868287016148d6565b9150509250925092565b600080604083850312156149c757600080fd5b60006149d58582860161478c565b92505060206149e6858286016148d6565b9150509250929050565b600080600060608486031215614a0557600080fd5b600084013567ffffffffffffffff811115614a1f57600080fd5b614a2b868287016147f2565b935050602084013567ffffffffffffffff811115614a4857600080fd5b614a548682870161481c565b9250506040614a65868287016148d6565b9150509250925092565b600060208284031215614a8157600080fd5b600082015167ffffffffffffffff811115614a9b57600080fd5b614aa78482850161486d565b91505092915050565b600060208284031215614ac257600080fd5b6000614ad084828501614897565b91505092915050565b600060208284031215614aeb57600080fd5b6000614af9848285016148ac565b91505092915050565b60008060408385031215614b1557600080fd5b6000614b23858286016148ac565b9250506020614b348582860161478c565b9150509250929050565b600060208284031215614b5057600080fd5b6000614b5e848285016148c1565b91505092915050565b600060208284031215614b7957600080fd5b6000614b87848285016148d6565b91505092915050565b600060208284031215614ba257600080fd5b6000614bb0848285016148eb565b91505092915050565b60008060408385031215614bcc57600080fd5b6000614bda858286016148d6565b9250506020614beb858286016148d6565b9150509250929050565b60008060408385031215614c0857600080fd5b6000614c16858286016148eb565b9250506020614c27858286016148eb565b9150509250929050565b600080600060608486031215614c4657600080fd5b6000614c54868287016148eb565b9350506020614c65868287016148eb565b9250506040614c76868287016148eb565b9150509250925092565b6000614c8c8383614c98565b60208301905092915050565b614ca181615c39565b82525050565b614cb081615c39565b82525050565b6000614cc182615abe565b614ccb8185615aec565b9350614cd683615aae565b8060005b83811015614d07578151614cee8882614c80565b9750614cf983615adf565b925050600181019050614cda565b5085935050505092915050565b614d1d81615c4b565b82525050565b614d2c81615c57565b82525050565b6000614d3d82615ac9565b614d478185615afd565b9350614d57818560208601615d9c565b80840191505092915050565b614d6c81615cc4565b82525050565b614d7b81615ce8565b82525050565b614d8a81615d0c565b82525050565b614d9981615d30565b82525050565b614da881615d54565b82525050565b614db781615d78565b82525050565b6000614dc882615ad4565b614dd28185615b08565b9350614de2818560208601615d9c565b614deb81615f61565b840191505092915050565b6000614e0182615ad4565b614e0b8185615b19565b9350614e1b818560208601615d9c565b80840191505092915050565b6000614e34602083615b08565b9150614e3f82615f72565b602082019050919050565b6000614e57602383615b08565b9150614e6282615f9b565b604082019050919050565b6000614e7a601483615b08565b9150614e8582615fea565b602082019050919050565b6000614e9d602c83615b08565b9150614ea882616013565b604082019050919050565b6000614ec0602283615b08565b9150614ecb82616062565b604082019050919050565b6000614ee3602283615b08565b9150614eee826160b1565b604082019050919050565b6000614f06601f83615b08565b9150614f1182616100565b602082019050919050565b6000614f29602683615b08565b9150614f3482616129565b604082019050919050565b6000614f4c601883615b08565b9150614f5782616178565b602082019050919050565b6000614f6f601083615b08565b9150614f7a826161a1565b602082019050919050565b6000614f92602683615b08565b9150614f9d826161ca565b604082019050919050565b6000614fb5604083615b08565b9150614fc082616219565b604082019050919050565b6000614fd8601083615b08565b9150614fe382616268565b602082019050919050565b6000614ffb601c83615b08565b915061500682616291565b602082019050919050565b600061501e601383615b08565b9150615029826162ba565b602082019050919050565b6000615041602883615b08565b915061504c826162e3565b604082019050919050565b6000615064602183615b08565b915061506f82616332565b604082019050919050565b6000615087602483615b08565b915061509282616381565b604082019050919050565b60006150aa602183615b08565b91506150b5826163d0565b604082019050919050565b60006150cd603883615b08565b91506150d88261641f565b604082019050919050565b60006150f0602583615b08565b91506150fb8261646e565b604082019050919050565b6000615113603883615b08565b915061511e826164bd565b604082019050919050565b6000615136602483615b08565b91506151418261650c565b604082019050919050565b6000615159601d83615b08565b91506151648261655b565b602082019050919050565b600061517c601f83615b08565b915061518782616584565b602082019050919050565b600061519f601783615b19565b91506151aa826165ad565b601782019050919050565b60006151c2602a83615b08565b91506151cd826165d6565b604082019050919050565b60006151e5602583615b08565b91506151f082616625565b604082019050919050565b6000615208601183615b19565b915061521382616674565b601182019050919050565b600061522b602f83615b08565b91506152368261669d565b604082019050919050565b600061524e601f83615b08565b9150615259826166ec565b602082019050919050565b61526d81615cad565b82525050565b61527c81615cb7565b82525050565b600061528e8284614d32565b915081905092915050565b60006152a482615192565b91506152b08285614df6565b91506152bb826151fb565b91506152c78284614df6565b91508190509392505050565b60006020820190506152e86000830184614ca7565b92915050565b60006040820190506153036000830185614ca7565b6153106020830184614ca7565b9392505050565b600060608201905061532c6000830186614ca7565b6153396020830185614ca7565b6153466040830184615264565b949350505050565b600061010082019050615364600083018b614ca7565b615371602083018a614ca7565b61537e6040830189615264565b61538b6060830188615264565b6153986080830187615264565b6153a560a0830186615264565b6153b260c0830185614ca7565b6153bf60e0830184615264565b9998505050505050505050565b60006040820190506153e16000830185614ca7565b6153ee6020830184615264565b9392505050565b600060208201905061540a6000830184614d14565b92915050565b60006020820190506154256000830184614d23565b92915050565b60006020820190506154406000830184614d63565b92915050565b600060208201905061545b6000830184614d72565b92915050565b60006020820190506154766000830184614d81565b92915050565b60006020820190506154916000830184614d90565b92915050565b60006020820190506154ac6000830184614d9f565b92915050565b60006020820190506154c76000830184614dae565b92915050565b600060208201905081810360008301526154e78184614dbd565b905092915050565b6000602082019050818103600083015261550881614e27565b9050919050565b6000602082019050818103600083015261552881614e4a565b9050919050565b6000602082019050818103600083015261554881614e6d565b9050919050565b6000602082019050818103600083015261556881614e90565b9050919050565b6000602082019050818103600083015261558881614eb3565b9050919050565b600060208201905081810360008301526155a881614ed6565b9050919050565b600060208201905081810360008301526155c881614ef9565b9050919050565b600060208201905081810360008301526155e881614f1c565b9050919050565b6000602082019050818103600083015261560881614f3f565b9050919050565b6000602082019050818103600083015261562881614f62565b9050919050565b6000602082019050818103600083015261564881614f85565b9050919050565b6000602082019050818103600083015261566881614fa8565b9050919050565b6000602082019050818103600083015261568881614fcb565b9050919050565b600060208201905081810360008301526156a881614fee565b9050919050565b600060208201905081810360008301526156c881615011565b9050919050565b600060208201905081810360008301526156e881615034565b9050919050565b6000602082019050818103600083015261570881615057565b9050919050565b600060208201905081810360008301526157288161507a565b9050919050565b600060208201905081810360008301526157488161509d565b9050919050565b60006020820190508181036000830152615768816150c0565b9050919050565b60006020820190508181036000830152615788816150e3565b9050919050565b600060208201905081810360008301526157a881615106565b9050919050565b600060208201905081810360008301526157c881615129565b9050919050565b600060208201905081810360008301526157e88161514c565b9050919050565b600060208201905081810360008301526158088161516f565b9050919050565b60006020820190508181036000830152615828816151b5565b9050919050565b60006020820190508181036000830152615848816151d8565b9050919050565b600060208201905081810360008301526158688161521e565b9050919050565b6000602082019050818103600083015261588881615241565b9050919050565b60006020820190506158a46000830184615264565b92915050565b60006040820190506158bf6000830185615264565b6158cc6020830184615264565b9392505050565b600060a0820190506158e86000830188615264565b6158f56020830187615264565b81810360408301526159078186614cb6565b90506159166060830185614ca7565b6159236080830184615264565b9695505050505050565b60006080820190506159426000830187615264565b61594f6020830186615264565b61595c6040830185615264565b6159696060830184615264565b95945050505050565b60006020820190506159876000830184615273565b92915050565b60006159976159a8565b90506159a38282615e2b565b919050565b6000604051905090565b600067ffffffffffffffff8211156159cd576159cc615f32565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156159f9576159f8615f32565b5b602082029050919050565b600067ffffffffffffffff821115615a1f57615a1e615f32565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615a4b57615a4a615f32565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615a7757615a76615f32565b5b602082029050919050565b600067ffffffffffffffff821115615a9d57615a9c615f32565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b2f82615cad565b9150615b3a83615cad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b6f57615b6e615ea5565b5b828201905092915050565b6000615b8582615cad565b9150615b9083615cad565b925082615ba057615b9f615ed4565b5b828204905092915050565b6000615bb682615cad565b9150615bc183615cad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bfa57615bf9615ea5565b5b828202905092915050565b6000615c1082615cad565b9150615c1b83615cad565b925082821015615c2e57615c2d615ea5565b5b828203905092915050565b6000615c4482615c8d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615ccf82615cd6565b9050919050565b6000615ce182615c8d565b9050919050565b6000615cf382615cfa565b9050919050565b6000615d0582615c8d565b9050919050565b6000615d1782615d1e565b9050919050565b6000615d2982615c8d565b9050919050565b6000615d3b82615d42565b9050919050565b6000615d4d82615c8d565b9050919050565b6000615d5f82615d66565b9050919050565b6000615d7182615c8d565b9050919050565b6000615d8382615d8a565b9050919050565b6000615d9582615c8d565b9050919050565b60005b83811015615dba578082015181840152602081019050615d9f565b83811115615dc9576000848401525b50505050565b6000615dda82615cad565b91506000821415615dee57615ded615ea5565b5b600182039050919050565b60006002820490506001821680615e1157607f821691505b60208210811415615e2557615e24615f03565b5b50919050565b615e3482615f61565b810181811067ffffffffffffffff82111715615e5357615e52615f32565b5b80604052505050565b6000615e6782615cad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615e9a57615e99615ea5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f43616e6e6f7420696e7665737420696e206661726d2062656361757365205f6c60008201527f70416d6f756e7420697320300000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207365742072657365727665206164647265737320746f203000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f506572666f726d616e63652066656520746f6f20686967680000000000000000600082015250565b7f4661726d426f743a204558504952454400000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f506172616d65746572205f6d696e416d6f756e74734f7574206d75737420686160008201527f7665206c656e67746820657175616c20746f2072657761726473546f6b656e73602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f43616e6e6f74207769746864726177207a65726f2062616c616e636500000000600082015250565b7f53656e64696e672066656573206661696c656400000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65642c2061626f7274696e67206465706f736960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65642c2061626f7274696e672077697468647260008201527f6177616c00000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f506172616d65746572205f7061746873206d7573742068617665206c656e677460008201527f6820657175616c20746f2072657761726473546f6b656e730000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207769746864726177206d6f7265207468616e2074686520746f60008201527f74616c2062616c616e6365206f6620746865206f776e65720000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f466565206661696c65642c2061626f7274696e67207769746864726177616c00600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61671e81615c39565b811461672957600080fd5b50565b61673581615c4b565b811461674057600080fd5b50565b61674c81615c57565b811461675757600080fd5b50565b61676381615c61565b811461676e57600080fd5b50565b61677a81615cad565b811461678557600080fd5b5056fea26469706673582212203623f5a23c15952c52b486e56a68c7fa7c884cca84d794fc54f8b22d8a956c9864736f6c634300080400330000000000000000000000001ce0269266a3d50ca0a1a00c205b3afad296e54600000000000000000000000099649af776ff1b024f12e8fe9dfa59a6c0b4bd9c0000000000000000000000006f11b6ea70dee4f167b1a4ed1f01c903f678196000000000000000000000000039ac98447f28612d3583e46e57cb106337fcae3f0000000000000000000000003b9ffc0ebb0164daf0c94f88df29a6e46e984d120000000000000000000000007d28570135a2b1930f331c507f65039d4937f66c000000000000000000000000e3d8bd6aed4f159bc8000a9cd47cffdb95f96121000000000000000000000000000000000000000000000000000000000000012000000000000000000000000000000000000000000000000000000000000001a0000000000000000000000000000000000000000000000000000000000000000300000000000000000000000046c9757c5497c5b1f2eb73ae79b6b67d119b0b58000000000000000000000000471ece3750da237f93b8e339c536989b8978a43800000000000000000000000000be915b9dcf56a3cbe739d9b9c202ca692409ec00000000000000000000000000000000000000000000000000000000000000035246500000000000000000000000000000000000000000000000000000000000
Deployed ByteCode
0x608060405234801561001057600080fd5b50600436106102f15760003560e01c806370a082311161019d578063b6d0dcd8116100e9578063d4840641116100a2578063dd62ed3e1161007c578063dd62ed3e14610900578063f79ed94b14610930578063f84afd481461094e578063fd3865e11461096a576102f1565b8063d4840641146108a8578063d547741f146108c6578063dbae9b0f146108e2576102f1565b8063b6d0dcd8146107d2578063bac385c414610802578063c31c9c071461081e578063c7493abb1461083c578063c838b0741461085a578063c9ce0e8c14610878576102f1565b806391d1485411610156578063a457c2d711610130578063a457c2d71461073a578063a9059cbb1461076a578063abfe2bdb1461079a578063b6b55f25146107b6576102f1565b806391d14854146106ce57806395d89b41146106fe578063a217fddf1461071c576102f1565b806370a082311461063257806372f702f3146106625780637aca573c146106805780638456cb591461069e578063853828b6146106a85780638c00ca9d146106b2576102f1565b80632f2ff15d1161025c5780634a1510b4116102155780635f8e9e91116101ef5780635f8e9e91146105aa57806364b87a70146105da578063684cb274146105f85780636cf3f8df14610616576102f1565b80634a1510b4146105525780635a3746ca146105705780635c975abb1461058c576102f1565b80632f2ff15d146104a4578063313ce567146104c057806336568abe146104de5780633902cbff146104fa57806339509351146105185780633f4ba83a14610548576102f1565b806323b872dd116102ae57806323b872dd146103ce57806324702944146103fe578063248a9ca31461041c57806327b74a5d1461044c5780632e1a7d4d1461046a5780632e5bd7ab14610486576102f1565b806301ffc9a7146102f657806306fdde0314610326578063095ea7b3146103445780630ab8985b14610374578063147bd3af1461039257806318160ddd146103b0575b600080fd5b610310600480360381019061030b9190614b3e565b610988565b60405161031d91906153f5565b60405180910390f35b61032e610a02565b60405161033b91906154cd565b60405180910390f35b61035e600480360381019061035991906149b4565b610a94565b60405161036b91906153f5565b60405180910390f35b61037c610ab2565b604051610389919061542b565b60405180910390f35b61039a610ad8565b6040516103a7919061588f565b60405180910390f35b6103b8610ade565b6040516103c5919061588f565b60405180910390f35b6103e860048036038101906103e39190614965565b610ae8565b6040516103f591906153f5565b60405180910390f35b610406610be9565b60405161041391906154b2565b60405180910390f35b61043660048036038101906104319190614ad9565b610c0f565b6040516104439190615410565b60405180910390f35b610454610c2f565b604051610461919061588f565b60405180910390f35b610484600480360381019061047f9190614b67565b610c35565b005b61048e6111ea565b60405161049b919061588f565b60405180910390f35b6104be60048036038101906104b99190614b02565b6111f0565b005b6104c8611276565b6040516104d59190615972565b60405180910390f35b6104f860048036038101906104f39190614b02565b61127f565b005b610502611302565b60405161050f919061588f565b60405180910390f35b610532600480360381019061052d91906149b4565b611308565b60405161053f91906153f5565b60405180910390f35b6105506113b4565b005b61055a61148f565b604051610567919061588f565b60405180910390f35b61058a600480360381019061058591906149f0565b611495565b005b610594611dcb565b6040516105a191906153f5565b60405180910390f35b6105c460048036038101906105bf9190614b67565b611de2565b6040516105d1919061588f565b60405180910390f35b6105e2611e24565b6040516105ef9190615446565b60405180910390f35b610600611e4a565b60405161060d9190615410565b60405180910390f35b610630600480360381019061062b9190614900565b611e6e565b005b61064c60048036038101906106479190614900565b611f1a565b604051610659919061588f565b60405180910390f35b61066a611f62565b6040516106779190615497565b60405180910390f35b610688611f88565b6040516106959190615461565b60405180910390f35b6106a6611fae565b005b6106b0611fc6565b005b6106cc60048036038101906106c79190614bb9565b612032565b005b6106e860048036038101906106e39190614b02565b6120a2565b6040516106f591906153f5565b60405180910390f35b61070661210d565b60405161071391906154cd565b60405180910390f35b61072461219f565b6040516107319190615410565b60405180910390f35b610754600480360381019061074f91906149b4565b6121a6565b60405161076191906153f5565b60405180910390f35b610784600480360381019061077f91906149b4565b61229a565b60405161079191906153f5565b60405180910390f35b6107b460048036038101906107af9190614900565b6122b8565b005b6107d060048036038101906107cb9190614b67565b612364565b005b6107ec60048036038101906107e79190614b67565b6125ad565b6040516107f9919061542b565b60405180910390f35b61081c60048036038101906108179190614900565b6125ec565b005b610826612698565b604051610833919061547c565b60405180910390f35b6108446126be565b604051610851919061588f565b60405180910390f35b6108626126c3565b60405161086f919061588f565b60405180910390f35b610892600480360381019061088d9190614b67565b6126c9565b60405161089f919061588f565b60405180910390f35b6108b0612705565b6040516108bd919061588f565b60405180910390f35b6108e060048036038101906108db9190614b02565b61270b565b005b6108ea61272c565b6040516108f7919061588f565b60405180910390f35b61091a60048036038101906109159190614929565b612731565b604051610927919061588f565b60405180910390f35b6109386127b8565b60405161094591906152d3565b60405180910390f35b61096860048036038101906109639190614900565b6127de565b005b6109726128fa565b60405161097f919061542b565b60405180910390f35b60007f7965db0b000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff191614806109fb57506109fa82612920565b5b9050919050565b606060038054610a1190615df9565b80601f0160208091040260200160405190810160405280929190818152602001828054610a3d90615df9565b8015610a8a5780601f10610a5f57610100808354040283529160200191610a8a565b820191906000526020600020905b815481529060010190602001808311610a6d57829003601f168201915b5050505050905090565b6000610aa8610aa161298a565b8484612992565b6001905092915050565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b6000600254905090565b6000610af5848484612b5d565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000610b4061298a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610bc0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bb7906156cf565b60405180910390fd5b610bdd85610bcc61298a565b8584610bd89190615c05565b612992565b60019150509392505050565b601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060056000838152602001908152602001600020600101549050919050565b60075481565b60003073ffffffffffffffffffffffffffffffffffffffff1663c9ce0e8c836040518263ffffffff1660e01b8152600401610c70919061588f565b60206040518083038186803b158015610c8857600080fd5b505afa158015610c9c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610cc09190614b90565b905080610ccc33611f1a565b1015610d0d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d049061578f565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401610d6a91906152d3565b60206040518083038186803b158015610d8257600080fd5b505afa158015610d96573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610dba9190614b90565b905080831115610e5d57600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632e1a7d4d8285610e0e9190615c05565b6040518263ffffffff1660e01b8152600401610e2a919061588f565b600060405180830381600087803b158015610e4457600080fd5b505af1158015610e58573d6000803e3d6000fd5b505050505b600080601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16634ae2859c6008546009546040518363ffffffff1660e01b8152600401610ec19291906158aa565b604080518083038186803b158015610ed857600080fd5b505afa158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190614bf5565b915091506000818684610f239190615bab565b610f2d9190615b7a565b905060006103e8876028610f419190615bab565b610f4b9190615b7a565b905080821115610f59578091505b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401610fda9291906153cc565b602060405180830381600087803b158015610ff457600080fd5b505af1158015611008573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061102c9190614ab0565b90508061106e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611065906157ef565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33868c6110bb9190615c05565b6040518363ffffffff1660e01b81526004016110d89291906153cc565b602060405180830381600087803b1580156110f257600080fd5b505af1158015611106573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061112a9190614ab0565b90508061116c576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111639061570f565b60405180910390fd5b6111763389612ddc565b88600760008282546111889190615c05565b925050819055503373ffffffffffffffffffffffffffffffffffffffff167ff279e6a1f5e320cca91135676d9cb6e44ca8a08c0b88342bcdb1144f6511b5688a866040516111d79291906158aa565b60405180910390a2505050505050505050565b61271081565b6111f982610c0f565b61120281612fb0565b61120c8383612fc4565b8173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fe7442843a65013dba5eebc77d5a00f5fafa588af0da4bf39250936d4783bb553856040516112699190615410565b60405180910390a3505050565b60006012905090565b61128761298a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16146112f4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112eb9061584f565b60405180910390fd5b6112fe8282612fe5565b5050565b60095481565b60006113aa61131561298a565b84846001600061132361298a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546113a59190615b24565b612992565b6001905092915050565b6000801b6113c181612fb0565b6113c96130c7565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161142691906152d3565b60206040518083038186803b15801561143e57600080fd5b505afa158015611452573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906114769190614b90565b9050600081111561148b5761148a81613169565b5b5050565b6103e881565b80428110156114d9576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114d09061560f565b60405180910390fd5b7f29944e936a0f6e1cbaa227df218d7d6025c2a2785db840e42a3425f24e9e68ac61150381612fb0565b61150b611dcb565b1561154b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115429061566f565b60405180910390fd5b600b80549050855114611593576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161158a9061574f565b60405180910390fd5b600b805490508451146115db576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115d29061564f565b60405180910390fd5b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16633d18b9126040518163ffffffff1660e01b8152600401600060405180830381600087803b15801561164557600080fd5b505af1158015611659573d6000803e3d6000fd5b505050506000600b8054905067ffffffffffffffff8111156116a4577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280602002602001820160405280156116d25781602001602082028036833780820191505090505b50905060005b600b8054905081101561182a57600b818154811061171f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161178291906152d3565b60206040518083038186803b15801561179a57600080fd5b505afa1580156117ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117d29190614b90565b82828151811061180b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001018181525050808061182290615e5c565b9150506116d8565b506118378187878761330e565b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161189491906152d3565b60206040518083038186803b1580156118ac57600080fd5b505afa1580156118c0573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906118e49190614b90565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166392ce27f8836040518263ffffffff1660e01b8152600401611943919061588f565b60206040518083038186803b15801561195b57600080fd5b505afa15801561196f573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906119939190614b90565b90506000601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16631deae18c846040518263ffffffff1660e01b81526004016119f2919061588f565b60206040518083038186803b158015611a0a57600080fd5b505afa158015611a1e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a429190614b90565b90506103e8602884611a549190615bab565b611a5e9190615b7a565b8183611a6a9190615b24565b1115611aab576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611aa2906155ef565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33856040518363ffffffff1660e01b8152600401611b0a9291906153cc565b602060405180830381600087803b158015611b2457600080fd5b505af1158015611b38573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611b5c9190614ab0565b90506000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16856040518363ffffffff1660e01b8152600401611bdf9291906153cc565b602060405180830381600087803b158015611bf957600080fd5b505af1158015611c0d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611c319190614ab0565b9050818015611c3d5750805b611c7c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c73906156af565b60405180910390fd5b6000838587611c8b9190615c05565b611c959190615c05565b9050611ca081613169565b8060076000828254611cb29190615b24565b9250508190555060075460095482611cca9190615bab565b611cd49190615b7a565b600881905550601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16632a564992336040518263ffffffff1660e01b8152600401611d3591906152d3565b600060405180830381600087803b158015611d4f57600080fd5b505af1158015611d63573d6000803e3d6000fd5b505050503373ffffffffffffffffffffffffffffffffffffffff167f36c54fe3f6742709ba65ab76880ce98cbacfc0e2f273d55f4e4d50d8830c2600826007548888604051611db5949392919061592d565b60405180910390a2505050505050505050505050565b6000600660009054906101000a900460ff16905090565b600080611ded610ade565b1415611dfc5760009050611e1f565b611e04610ade565b60075483611e129190615bab565b611e1c9190615b7a565b90505b919050565b600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b7f29944e936a0f6e1cbaa227df218d7d6025c2a2785db840e42a3425f24e9e68ac81565b6000801b611e7b81612fb0565b81600f60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fca394f95d8dbf1e8b2e76b9a8da90cacce1da85181a65508dab13212dc1df53b60405160405180910390a35050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000801b611fbb81612fb0565b611fc3613959565b50565b6000611fd133611f1a565b11612011576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120089061568f565b60405180910390fd5b600061202461201f33611f1a565b611de2565b905061202f81610c35565b50565b6000801b61203f81612fb0565b82601181905550816012819055503373ffffffffffffffffffffffffffffffffffffffff167fe8a0df875bece805d1b6bd1bf60bdf2abc88b51be72ed2bb5cd590532bc446a884846040516120959291906158aa565b60405180910390a2505050565b60006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b60606004805461211c90615df9565b80601f016020809104026020016040519081016040528092919081815260200182805461214890615df9565b80156121955780601f1061216a57610100808354040283529160200191612195565b820191906000526020600020905b81548152906001019060200180831161217857829003601f168201915b5050505050905090565b6000801b81565b600080600160006121b561298a565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015612272576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122699061582f565b60405180910390fd5b61228f61227d61298a565b85858461228a9190615c05565b612992565b600191505092915050565b60006122ae6122a761298a565b8484612b5d565b6001905092915050565b6000801b6122c581612fb0565b81601060006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f5b1c29a1dba062a69b78ce73a2eefee7c106ae78ccd32338a741b3dc6fdcd32d60405160405180910390a35050565b61236c611dcb565b156123ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016123a39061566f565b60405180910390fd5b6000600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330856040518463ffffffff1660e01b815260040161240d93929190615317565b602060405180830381600087803b15801561242757600080fd5b505af115801561243b573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061245f9190614ab0565b9050806124a1576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612498906156ef565b60405180910390fd5b60003073ffffffffffffffffffffffffffffffffffffffff1663c9ce0e8c846040518263ffffffff1660e01b81526004016124dc919061588f565b60206040518083038186803b1580156124f457600080fd5b505afa158015612508573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061252c9190614b90565b905061253833826139fc565b826007600082825461254a9190615b24565b9250508190555061255a83613169565b3373ffffffffffffffffffffffffffffffffffffffff167fe1fffcc4923d04b559f4d29a8bfc6cda04eb5b0d3c460751c2402c5c5cc9109c846040516125a0919061588f565b60405180910390a2505050565b600b81815481106125bd57600080fd5b906000526020600020016000915054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000801b6125f981612fb0565b81601360006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167ff76e779f769943b728cc826f493098475a7601f9ca3c1fa2696bc810f505056360405160405180910390a35050565b600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601981565b60085481565b60008060075414156126dd57819050612700565b6007546126e8610ade565b836126f39190615bab565b6126fd9190615b7a565b90505b919050565b60125481565b61271482610c0f565b61271d81612fb0565b6127278383612fe5565b505050565b602881565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000801b6127eb81612fb0565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561285b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612852906155af565b60405180910390fd5b81601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167fbd45c5f5d28e3962d234f9fa4e443f6f92e4525b10556e441307306fab9f9e0360405160405180910390a35050565b600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60007f01ffc9a7000000000000000000000000000000000000000000000000000000007bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916827bffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916149050919050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612a02576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129f9906157af565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612a72576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a699061558f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051612b50919061588f565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415612bcd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612bc49061576f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612c3d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c349061550f565b60405180910390fd5b612c48838383613b50565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612cc5906155cf565b60405180910390fd5b8181612cda9190615c05565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254612d6a9190615b24565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612dce919061588f565b60405180910390a350505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415612e4c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e439061572f565b60405180910390fd5b612e5882600083613b50565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612ede576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ed59061556f565b60405180910390fd5b8181612eea9190615c05565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508160026000828254612f3e9190615c05565b92505081905550600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051612fa3919061588f565b60405180910390a3505050565b612fc181612fbc61298a565b613b55565b50565b612fcd82610c0f565b612fd681612fb0565b612fe08383613bf2565b505050565b612fef82826120a2565b156130c35760006005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061306861298a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837ff6391f5c32d9c69d2a47ea670b442974b53935d1edc7fd64eb21e047a839171b60405160405180910390a45b5050565b6130cf611dcb565b61310e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131059061552f565b60405180910390fd5b6000600660006101000a81548160ff0219169083151502179055507f5db9ee0a495bf2e6ff9c91a7834c1ba4fdd244a5e8aa4e537bd38aeae4b073aa61315261298a565b60405161315f91906152d3565b60405180910390a1565b600081116131ac576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016131a39061554f565b60405180910390fd5b600c60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b815260040161322b9291906153cc565b602060405180830381600087803b15801561324557600080fd5b505af1158015613259573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061327d9190614ab0565b50600a60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a694fc3a826040518263ffffffff1660e01b81526004016132d9919061588f565b600060405180830381600087803b1580156132f357600080fd5b505af1158015613307573d6000803e3d6000fd5b5050505050565b60008060005b8651811015613676576000600288838151811061335a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015161336c9190615b7a565b90506134db8783815181106133aa577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000600281106133eb577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600b858154811061342b577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1689868151811061348f577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200260200101516000600281106134d0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189613cd3565b846134e69190615b24565b9350613655878381518110613524577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151600160028110613565577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015182600b85815481106135a5577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b9060005260206000200160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16898681518110613609577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002602001015160016002811061364a577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b602002015189613cd3565b836136609190615b24565b925050808061366e90615e5c565b915050613314565b50600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846040518363ffffffff1660e01b81526004016136f69291906153cc565b602060405180830381600087803b15801561371057600080fd5b505af1158015613724573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906137489190614ab0565b50600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b3601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b81526004016137c89291906153cc565b602060405180830381600087803b1580156137e257600080fd5b505af11580156137f6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061381a9190614ab0565b50601060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e8e33700600d60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168585601254601154896138b29190615bab565b6138bc9190615b7a565b601254601154896138cd9190615bab565b6138d79190615b7a565b308b6040518963ffffffff1660e01b81526004016138fc98979695949392919061534e565b606060405180830381600087803b15801561391657600080fd5b505af115801561392a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061394e9190614c31565b505050505050505050565b613961611dcb565b156139a1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016139989061566f565b60405180910390fd5b6001600660006101000a81548160ff0219169083151502179055507f62e78cea01bee320cd4e420270b5ea74000d11b0c9f74754ebdbfc544b05a2586139e561298a565b6040516139f291906152d3565b60405180910390a1565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff161415613a6c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613a639061586f565b60405180910390fd5b613a7860008383613b50565b8060026000828254613a8a9190615b24565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254613adf9190615b24565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051613b44919061588f565b60405180910390a35050565b505050565b613b5f82826120a2565b613bee57613b848173ffffffffffffffffffffffffffffffffffffffff166014613e5a565b613b928360001c6020613e5a565b604051602001613ba3929190615299565b6040516020818303038152906040526040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401613be591906154cd565b60405180910390fd5b5050565b613bfc82826120a2565b613ccf5760016005600084815260200190815260200160002060000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550613c7461298a565b73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16837f2f8788117e7eff1d82e926ec794901d17c78024a50270940304540a733656f0d60405160405180910390a45b5050565b60006002865110158015613ce75750600085115b15613e4d57613d39600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16868673ffffffffffffffffffffffffffffffffffffffff166141549092919063ffffffff16565b6000600f60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166338ed173987868a30886040518663ffffffff1660e01b8152600401613d9e9594939291906158d3565b600060405180830381600087803b158015613db857600080fd5b505af1158015613dcc573d6000803e3d6000fd5b505050506040513d6000823e3d601f19601f82011682018060405250810190613df59190614a6f565b90508060018251613e069190615c05565b81518110613e3d577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6020026020010151915050613e51565b8490505b95945050505050565b606060006002836002613e6d9190615bab565b613e779190615b24565b67ffffffffffffffff811115613eb6577f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6040519080825280601f01601f191660200182016040528015613ee85781602001600182028036833780820191505090505b5090507f300000000000000000000000000000000000000000000000000000000000000081600081518110613f46577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a9053507f780000000000000000000000000000000000000000000000000000000000000081600181518110613fd0577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600060018460026140109190615bab565b61401a9190615b24565b90505b6001811115614106577f3031323334353637383961626364656600000000000000000000000000000000600f861660108110614082577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b1a60f81b8282815181106140bf577f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60200101907effffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff1916908160001a905350600485901c9450806140ff90615dcf565b905061401d565b506000841461414a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401614141906154ef565b60405180910390fd5b8091505092915050565b6000818473ffffffffffffffffffffffffffffffffffffffff1663dd62ed3e30866040518363ffffffff1660e01b81526004016141929291906152ee565b60206040518083038186803b1580156141aa57600080fd5b505afa1580156141be573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906141e29190614b90565b6141ec9190615b24565b905061426f8463095ea7b360e01b858460405160240161420d9291906153cc565b604051602081830303815290604052907bffffffffffffffffffffffffffffffffffffffffffffffffffffffff19166020820180517bffffffffffffffffffffffffffffffffffffffffffffffffffffffff8381831617835250505050614275565b50505050565b60006142d7826040518060400160405280602081526020017f5361666545524332303a206c6f772d6c6576656c2063616c6c206661696c65648152508573ffffffffffffffffffffffffffffffffffffffff1661433c9092919063ffffffff16565b905060008151111561433757808060200190518101906142f79190614ab0565b614336576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161432d9061580f565b60405180910390fd5b5b505050565b606061434b8484600085614354565b90509392505050565b606082471015614399576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143909061562f565b60405180910390fd5b6143a285614468565b6143e1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016143d8906157cf565b60405180910390fd5b6000808673ffffffffffffffffffffffffffffffffffffffff16858760405161440a9190615282565b60006040518083038185875af1925050503d8060008114614447576040519150601f19603f3d011682016040523d82523d6000602084013e61444c565b606091505b509150915061445c82828661447b565b92505050949350505050565b600080823b905060008111915050919050565b6060831561448b578290506144db565b60008351111561449e5782518084602001fd5b816040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016144d291906154cd565b60405180910390fd5b9392505050565b60006144f56144f0846159b2565b61598d565b9050808382526020820190508285602086028201111561451457600080fd5b60005b85811015614544578161452a888261478c565b845260208401935060208301925050600181019050614517565b5050509392505050565b600061456161455c846159de565b61598d565b9050808285602086028201111561457757600080fd5b60005b858110156145c157813567ffffffffffffffff81111561459957600080fd5b8086016145a689826147a1565b8552602085019450602084019350505060018101905061457a565b5050509392505050565b60006145de6145d984615a04565b61598d565b905080838252602082019050828560208602820111156145fd57600080fd5b60005b8581101561464757813567ffffffffffffffff81111561461f57600080fd5b80860161462c89826147cb565b85526020850194506020840193505050600181019050614600565b5050509392505050565b600061466461465f84615a30565b61598d565b9050808382526020820190508285604086028201111561468357600080fd5b60005b858110156146b357816146998882614846565b845260208401935060408301925050600181019050614686565b5050509392505050565b60006146d06146cb84615a5c565b61598d565b905080828560208602820111156146e657600080fd5b60005b8581101561471657816146fc88826148d6565b8452602084019350602083019250506001810190506146e9565b5050509392505050565b600061473361472e84615a82565b61598d565b9050808382526020820190508285602086028201111561475257600080fd5b60005b85811015614782578161476888826148eb565b845260208401935060208301925050600181019050614755565b5050509392505050565b60008135905061479b81616715565b92915050565b600082601f8301126147b257600080fd5b81356147c28482602086016144e2565b91505092915050565b600082601f8301126147dc57600080fd5b60026147e984828561454e565b91505092915050565b600082601f83011261480357600080fd5b81356148138482602086016145cb565b91505092915050565b600082601f83011261482d57600080fd5b813561483d848260208601614651565b91505092915050565b600082601f83011261485757600080fd5b60026148648482856146bd565b91505092915050565b600082601f83011261487e57600080fd5b815161488e848260208601614720565b91505092915050565b6000815190506148a68161672c565b92915050565b6000813590506148bb81616743565b92915050565b6000813590506148d08161675a565b92915050565b6000813590506148e581616771565b92915050565b6000815190506148fa81616771565b92915050565b60006020828403121561491257600080fd5b60006149208482850161478c565b91505092915050565b6000806040838503121561493c57600080fd5b600061494a8582860161478c565b925050602061495b8582860161478c565b9150509250929050565b60008060006060848603121561497a57600080fd5b60006149888682870161478c565b93505060206149998682870161478c565b92505060406149aa868287016148d6565b9150509250925092565b600080604083850312156149c757600080fd5b60006149d58582860161478c565b92505060206149e6858286016148d6565b9150509250929050565b600080600060608486031215614a0557600080fd5b600084013567ffffffffffffffff811115614a1f57600080fd5b614a2b868287016147f2565b935050602084013567ffffffffffffffff811115614a4857600080fd5b614a548682870161481c565b9250506040614a65868287016148d6565b9150509250925092565b600060208284031215614a8157600080fd5b600082015167ffffffffffffffff811115614a9b57600080fd5b614aa78482850161486d565b91505092915050565b600060208284031215614ac257600080fd5b6000614ad084828501614897565b91505092915050565b600060208284031215614aeb57600080fd5b6000614af9848285016148ac565b91505092915050565b60008060408385031215614b1557600080fd5b6000614b23858286016148ac565b9250506020614b348582860161478c565b9150509250929050565b600060208284031215614b5057600080fd5b6000614b5e848285016148c1565b91505092915050565b600060208284031215614b7957600080fd5b6000614b87848285016148d6565b91505092915050565b600060208284031215614ba257600080fd5b6000614bb0848285016148eb565b91505092915050565b60008060408385031215614bcc57600080fd5b6000614bda858286016148d6565b9250506020614beb858286016148d6565b9150509250929050565b60008060408385031215614c0857600080fd5b6000614c16858286016148eb565b9250506020614c27858286016148eb565b9150509250929050565b600080600060608486031215614c4657600080fd5b6000614c54868287016148eb565b9350506020614c65868287016148eb565b9250506040614c76868287016148eb565b9150509250925092565b6000614c8c8383614c98565b60208301905092915050565b614ca181615c39565b82525050565b614cb081615c39565b82525050565b6000614cc182615abe565b614ccb8185615aec565b9350614cd683615aae565b8060005b83811015614d07578151614cee8882614c80565b9750614cf983615adf565b925050600181019050614cda565b5085935050505092915050565b614d1d81615c4b565b82525050565b614d2c81615c57565b82525050565b6000614d3d82615ac9565b614d478185615afd565b9350614d57818560208601615d9c565b80840191505092915050565b614d6c81615cc4565b82525050565b614d7b81615ce8565b82525050565b614d8a81615d0c565b82525050565b614d9981615d30565b82525050565b614da881615d54565b82525050565b614db781615d78565b82525050565b6000614dc882615ad4565b614dd28185615b08565b9350614de2818560208601615d9c565b614deb81615f61565b840191505092915050565b6000614e0182615ad4565b614e0b8185615b19565b9350614e1b818560208601615d9c565b80840191505092915050565b6000614e34602083615b08565b9150614e3f82615f72565b602082019050919050565b6000614e57602383615b08565b9150614e6282615f9b565b604082019050919050565b6000614e7a601483615b08565b9150614e8582615fea565b602082019050919050565b6000614e9d602c83615b08565b9150614ea882616013565b604082019050919050565b6000614ec0602283615b08565b9150614ecb82616062565b604082019050919050565b6000614ee3602283615b08565b9150614eee826160b1565b604082019050919050565b6000614f06601f83615b08565b9150614f1182616100565b602082019050919050565b6000614f29602683615b08565b9150614f3482616129565b604082019050919050565b6000614f4c601883615b08565b9150614f5782616178565b602082019050919050565b6000614f6f601083615b08565b9150614f7a826161a1565b602082019050919050565b6000614f92602683615b08565b9150614f9d826161ca565b604082019050919050565b6000614fb5604083615b08565b9150614fc082616219565b604082019050919050565b6000614fd8601083615b08565b9150614fe382616268565b602082019050919050565b6000614ffb601c83615b08565b915061500682616291565b602082019050919050565b600061501e601383615b08565b9150615029826162ba565b602082019050919050565b6000615041602883615b08565b915061504c826162e3565b604082019050919050565b6000615064602183615b08565b915061506f82616332565b604082019050919050565b6000615087602483615b08565b915061509282616381565b604082019050919050565b60006150aa602183615b08565b91506150b5826163d0565b604082019050919050565b60006150cd603883615b08565b91506150d88261641f565b604082019050919050565b60006150f0602583615b08565b91506150fb8261646e565b604082019050919050565b6000615113603883615b08565b915061511e826164bd565b604082019050919050565b6000615136602483615b08565b91506151418261650c565b604082019050919050565b6000615159601d83615b08565b91506151648261655b565b602082019050919050565b600061517c601f83615b08565b915061518782616584565b602082019050919050565b600061519f601783615b19565b91506151aa826165ad565b601782019050919050565b60006151c2602a83615b08565b91506151cd826165d6565b604082019050919050565b60006151e5602583615b08565b91506151f082616625565b604082019050919050565b6000615208601183615b19565b915061521382616674565b601182019050919050565b600061522b602f83615b08565b91506152368261669d565b604082019050919050565b600061524e601f83615b08565b9150615259826166ec565b602082019050919050565b61526d81615cad565b82525050565b61527c81615cb7565b82525050565b600061528e8284614d32565b915081905092915050565b60006152a482615192565b91506152b08285614df6565b91506152bb826151fb565b91506152c78284614df6565b91508190509392505050565b60006020820190506152e86000830184614ca7565b92915050565b60006040820190506153036000830185614ca7565b6153106020830184614ca7565b9392505050565b600060608201905061532c6000830186614ca7565b6153396020830185614ca7565b6153466040830184615264565b949350505050565b600061010082019050615364600083018b614ca7565b615371602083018a614ca7565b61537e6040830189615264565b61538b6060830188615264565b6153986080830187615264565b6153a560a0830186615264565b6153b260c0830185614ca7565b6153bf60e0830184615264565b9998505050505050505050565b60006040820190506153e16000830185614ca7565b6153ee6020830184615264565b9392505050565b600060208201905061540a6000830184614d14565b92915050565b60006020820190506154256000830184614d23565b92915050565b60006020820190506154406000830184614d63565b92915050565b600060208201905061545b6000830184614d72565b92915050565b60006020820190506154766000830184614d81565b92915050565b60006020820190506154916000830184614d90565b92915050565b60006020820190506154ac6000830184614d9f565b92915050565b60006020820190506154c76000830184614dae565b92915050565b600060208201905081810360008301526154e78184614dbd565b905092915050565b6000602082019050818103600083015261550881614e27565b9050919050565b6000602082019050818103600083015261552881614e4a565b9050919050565b6000602082019050818103600083015261554881614e6d565b9050919050565b6000602082019050818103600083015261556881614e90565b9050919050565b6000602082019050818103600083015261558881614eb3565b9050919050565b600060208201905081810360008301526155a881614ed6565b9050919050565b600060208201905081810360008301526155c881614ef9565b9050919050565b600060208201905081810360008301526155e881614f1c565b9050919050565b6000602082019050818103600083015261560881614f3f565b9050919050565b6000602082019050818103600083015261562881614f62565b9050919050565b6000602082019050818103600083015261564881614f85565b9050919050565b6000602082019050818103600083015261566881614fa8565b9050919050565b6000602082019050818103600083015261568881614fcb565b9050919050565b600060208201905081810360008301526156a881614fee565b9050919050565b600060208201905081810360008301526156c881615011565b9050919050565b600060208201905081810360008301526156e881615034565b9050919050565b6000602082019050818103600083015261570881615057565b9050919050565b600060208201905081810360008301526157288161507a565b9050919050565b600060208201905081810360008301526157488161509d565b9050919050565b60006020820190508181036000830152615768816150c0565b9050919050565b60006020820190508181036000830152615788816150e3565b9050919050565b600060208201905081810360008301526157a881615106565b9050919050565b600060208201905081810360008301526157c881615129565b9050919050565b600060208201905081810360008301526157e88161514c565b9050919050565b600060208201905081810360008301526158088161516f565b9050919050565b60006020820190508181036000830152615828816151b5565b9050919050565b60006020820190508181036000830152615848816151d8565b9050919050565b600060208201905081810360008301526158688161521e565b9050919050565b6000602082019050818103600083015261588881615241565b9050919050565b60006020820190506158a46000830184615264565b92915050565b60006040820190506158bf6000830185615264565b6158cc6020830184615264565b9392505050565b600060a0820190506158e86000830188615264565b6158f56020830187615264565b81810360408301526159078186614cb6565b90506159166060830185614ca7565b6159236080830184615264565b9695505050505050565b60006080820190506159426000830187615264565b61594f6020830186615264565b61595c6040830185615264565b6159696060830184615264565b95945050505050565b60006020820190506159876000830184615273565b92915050565b60006159976159a8565b90506159a38282615e2b565b919050565b6000604051905090565b600067ffffffffffffffff8211156159cd576159cc615f32565b5b602082029050602081019050919050565b600067ffffffffffffffff8211156159f9576159f8615f32565b5b602082029050919050565b600067ffffffffffffffff821115615a1f57615a1e615f32565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615a4b57615a4a615f32565b5b602082029050602081019050919050565b600067ffffffffffffffff821115615a7757615a76615f32565b5b602082029050919050565b600067ffffffffffffffff821115615a9d57615a9c615f32565b5b602082029050602081019050919050565b6000819050602082019050919050565b600081519050919050565b600081519050919050565b600081519050919050565b6000602082019050919050565b600082825260208201905092915050565b600081905092915050565b600082825260208201905092915050565b600081905092915050565b6000615b2f82615cad565b9150615b3a83615cad565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115615b6f57615b6e615ea5565b5b828201905092915050565b6000615b8582615cad565b9150615b9083615cad565b925082615ba057615b9f615ed4565b5b828204905092915050565b6000615bb682615cad565b9150615bc183615cad565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0483118215151615615bfa57615bf9615ea5565b5b828202905092915050565b6000615c1082615cad565b9150615c1b83615cad565b925082821015615c2e57615c2d615ea5565b5b828203905092915050565b6000615c4482615c8d565b9050919050565b60008115159050919050565b6000819050919050565b60007fffffffff0000000000000000000000000000000000000000000000000000000082169050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000615ccf82615cd6565b9050919050565b6000615ce182615c8d565b9050919050565b6000615cf382615cfa565b9050919050565b6000615d0582615c8d565b9050919050565b6000615d1782615d1e565b9050919050565b6000615d2982615c8d565b9050919050565b6000615d3b82615d42565b9050919050565b6000615d4d82615c8d565b9050919050565b6000615d5f82615d66565b9050919050565b6000615d7182615c8d565b9050919050565b6000615d8382615d8a565b9050919050565b6000615d9582615c8d565b9050919050565b60005b83811015615dba578082015181840152602081019050615d9f565b83811115615dc9576000848401525b50505050565b6000615dda82615cad565b91506000821415615dee57615ded615ea5565b5b600182039050919050565b60006002820490506001821680615e1157607f821691505b60208210811415615e2557615e24615f03565b5b50919050565b615e3482615f61565b810181811067ffffffffffffffff82111715615e5357615e52615f32565b5b80604052505050565b6000615e6782615cad565b91507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff821415615e9a57615e99615ea5565b5b600182019050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b6000601f19601f8301169050919050565b7f537472696e67733a20686578206c656e67746820696e73756666696369656e74600082015250565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f5061757361626c653a206e6f7420706175736564000000000000000000000000600082015250565b7f43616e6e6f7420696e7665737420696e206661726d2062656361757365205f6c60008201527f70416d6f756e7420697320300000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e20616d6f756e7420657863656564732062616c616e60008201527f6365000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207365742072657365727665206164647265737320746f203000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f506572666f726d616e63652066656520746f6f20686967680000000000000000600082015250565b7f4661726d426f743a204558504952454400000000000000000000000000000000600082015250565b7f416464726573733a20696e73756666696369656e742062616c616e636520666f60008201527f722063616c6c0000000000000000000000000000000000000000000000000000602082015250565b7f506172616d65746572205f6d696e416d6f756e74734f7574206d75737420686160008201527f7665206c656e67746820657175616c20746f2072657761726473546f6b656e73602082015250565b7f5061757361626c653a2070617573656400000000000000000000000000000000600082015250565b7f43616e6e6f74207769746864726177207a65726f2062616c616e636500000000600082015250565b7f53656e64696e672066656573206661696c656400000000000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65642c2061626f7274696e67206465706f736960008201527f7400000000000000000000000000000000000000000000000000000000000000602082015250565b7f5472616e73666572206661696c65642c2061626f7274696e672077697468647260008201527f6177616c00000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a206275726e2066726f6d20746865207a65726f2061646472657360008201527f7300000000000000000000000000000000000000000000000000000000000000602082015250565b7f506172616d65746572205f7061746873206d7573742068617665206c656e677460008201527f6820657175616c20746f2072657761726473546f6b656e730000000000000000602082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f43616e6e6f74207769746864726177206d6f7265207468616e2074686520746f60008201527f74616c2062616c616e6365206f6620746865206f776e65720000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f416464726573733a2063616c6c20746f206e6f6e2d636f6e7472616374000000600082015250565b7f466565206661696c65642c2061626f7274696e67207769746864726177616c00600082015250565b7f416363657373436f6e74726f6c3a206163636f756e7420000000000000000000600082015250565b7f5361666545524332303a204552433230206f7065726174696f6e20646964206e60008201527f6f74207375636365656400000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b7f206973206d697373696e6720726f6c6520000000000000000000000000000000600082015250565b7f416363657373436f6e74726f6c3a2063616e206f6e6c792072656e6f756e636560008201527f20726f6c657320666f722073656c660000000000000000000000000000000000602082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b61671e81615c39565b811461672957600080fd5b50565b61673581615c4b565b811461674057600080fd5b50565b61674c81615c57565b811461675757600080fd5b50565b61676381615c61565b811461676e57600080fd5b50565b61677a81615cad565b811461678557600080fd5b5056fea26469706673582212203623f5a23c15952c52b486e56a68c7fa7c884cca84d794fc54f8b22d8a956c9864736f6c63430008040033