Feature Tip: Add private address tag to any address under My Name Tag !
Overview
ETH Balance
0 ETH
Eth Value
$0.00More Info
Private Name Tags
ContractCreator
Latest 25 from a total of 394 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Claim Tokens | 17374582 | 608 days ago | IN | 0 ETH | 0.00257731 | ||||
Claim Tokens | 17374575 | 608 days ago | IN | 0 ETH | 0.0025233 | ||||
Claim Tokens | 17372828 | 608 days ago | IN | 0 ETH | 0.00324733 | ||||
Buy Tokens | 17372784 | 608 days ago | IN | 0.1 ETH | 0.0026528 | ||||
Claim Tokens | 17372084 | 608 days ago | IN | 0 ETH | 0.00261612 | ||||
Claim Tokens | 17371621 | 608 days ago | IN | 0 ETH | 0.00216452 | ||||
Claim Tokens | 17371492 | 608 days ago | IN | 0 ETH | 0.00198079 | ||||
Claim Tokens | 17371452 | 608 days ago | IN | 0 ETH | 0.0019738 | ||||
Claim Tokens | 17371118 | 608 days ago | IN | 0 ETH | 0.00187345 | ||||
Claim Tokens | 17370782 | 608 days ago | IN | 0 ETH | 0.00243798 | ||||
Claim Tokens | 17370778 | 608 days ago | IN | 0 ETH | 0.00238638 | ||||
Claim Tokens | 17370777 | 608 days ago | IN | 0 ETH | 0.00245564 | ||||
Claim Tokens | 17370745 | 608 days ago | IN | 0 ETH | 0.00240231 | ||||
Claim Tokens | 17370745 | 608 days ago | IN | 0 ETH | 0.00240231 | ||||
Claim Tokens | 17370549 | 608 days ago | IN | 0 ETH | 0.00306736 | ||||
Claim Tokens | 17370480 | 608 days ago | IN | 0 ETH | 0.00243461 | ||||
Claim Tokens | 17370459 | 608 days ago | IN | 0 ETH | 0.00317727 | ||||
Claim Tokens | 17370149 | 608 days ago | IN | 0 ETH | 0.00247516 | ||||
Claim Tokens | 17370127 | 608 days ago | IN | 0 ETH | 0.00248387 | ||||
Claim Tokens | 17370065 | 608 days ago | IN | 0 ETH | 0.0026275 | ||||
Claim Tokens | 17370043 | 608 days ago | IN | 0 ETH | 0.00233942 | ||||
Claim Tokens | 17370030 | 608 days ago | IN | 0 ETH | 0.00270457 | ||||
Claim Tokens | 17369921 | 608 days ago | IN | 0 ETH | 0.00313267 | ||||
Claim Tokens | 17369659 | 608 days ago | IN | 0 ETH | 0.00276304 | ||||
Claim Tokens | 17369626 | 608 days ago | IN | 0 ETH | 0.00271891 |
Loading...
Loading
Contract Source Code Verified (Exact Match)
Contract Name:
SimulationPresale
Compiler Version
v0.8.4+commit.c7e474f2
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "./Ownable.sol"; interface IERC20 { function totalSupply() external view returns (uint256); function balanceOf(address account) external view returns (uint256); function transfer(address recipient, uint256 amount) external returns (bool); function allowance(address owner, address spender) external view returns (uint256); function approve(address spender, uint256 amount) external returns (bool); function transferFrom(address sender, address recipient, uint256 amount) external returns (bool); event Transfer(address indexed from, address indexed to, uint256 value); event Approval(address indexed owner, address indexed spender, uint256 value); } interface IUniswapV2Factory { function getPair(address tokenA, address tokenB) external view returns (address pair); } interface IUniswapV2Router02 { function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns ( uint amountToken, uint amountETH, uint liquidity ); } contract SimulationPresale is Ownable { using SafeMath for uint256; bool public isInit; bool public isDeposit; bool public isRefund; bool public isFinish; bool public burnTokens = true; address public creatorWallet; address public weth; uint8 public tokenDecimals = 18; uint256 public ethRaised; uint256 public percentageRaised; uint256 public tokensSold; struct Pool { uint64 startTime; uint64 endTime; uint256 tokenDeposit; uint256 tokensForSale; uint256 tokensForLiquidity; uint8 liquidityPortion; uint256 hardCap; uint256 softCap; uint256 maxBuy; uint256 minBuy; } IERC20 public tokenInstance; IUniswapV2Factory public UniswapV2Factory; IUniswapV2Router02 public UniswapV2Router02; Pool public pool; mapping(address => uint256) public ethContribution; modifier onlyActive { require(block.timestamp >= pool.startTime, "Sale must be active."); require(block.timestamp <= pool.endTime, "Sale must be active."); _; } modifier onlyInactive { require( block.timestamp < pool.startTime || block.timestamp > pool.endTime || ethRaised >= pool.softCap, "Sale must be inactive." ); _; } modifier onlyRefund { require( isRefund == true || (block.timestamp > pool.endTime && ethRaised < pool.softCap), "Refund unavailable." ); _; } constructor( IERC20 _tokenInstance, address _uniswapv2Router, address _uniswapv2Factory, address _weth ) { require(_uniswapv2Router != address(0), "Invalid router address"); require(_uniswapv2Factory != address(0), "Invalid factory address"); isInit = false; isDeposit = false; isFinish = false; isRefund = false; ethRaised = 0; weth = _weth; tokenInstance = _tokenInstance; creatorWallet = address(payable(msg.sender)); UniswapV2Router02 = IUniswapV2Router02(_uniswapv2Router); UniswapV2Factory = IUniswapV2Factory(_uniswapv2Factory); require(UniswapV2Factory.getPair(address(tokenInstance), weth) == address(0), "IUniswap: Pool exists."); tokenInstance.approve(_uniswapv2Router, tokenInstance.totalSupply()); } event Liquified( address indexed _token, address indexed _router, address indexed _pair ); event Canceled( address indexed _inititator, address indexed _token, address indexed _presale ); event Bought(address indexed _buyer, uint256 _tokenAmount); event Refunded(address indexed _refunder, uint256 _tokenAmount); event Deposited(address indexed _initiator, uint256 _totalDeposit); event Claimed(address indexed _participent, uint256 _tokenAmount); event RefundedRemainder(address indexed _initiator, uint256 _amount); event BurntRemainder(address indexed _initiator, uint256 _amount); event Withdraw(address indexed _creator, uint256 _amount); /* * Reverts ethers sent to this address whenever requirements are not met */ receive() external payable { if(block.timestamp >= pool.startTime && block.timestamp <= pool.endTime){ buyTokens(_msgSender()); } else { revert("Presale is closed"); } } /* * Initiates the arguments of the sale @dev arguments must be pa ssed in wei (amount*10**18) */ function initSale( uint64 _startTime, uint64 _endTime, uint256 _tokenDeposit, uint256 _tokensForSale, uint256 _tokensForLiquidity, uint8 _liquidityPortion, uint256 _hardCap, uint256 _softCap, uint256 _maxBuy, uint256 _minBuy ) external onlyOwner onlyInactive { require(isInit == false, "Sale no initialized"); require(_startTime >= block.timestamp, "Invalid start time."); require(_endTime > block.timestamp, "Invalid end time."); require(_tokenDeposit > 0, "Invalid token deposit."); require(_tokensForSale < _tokenDeposit, "Invalid tokens for sale."); require(_tokensForLiquidity < _tokenDeposit, "Invalid tokens for liquidity."); require(_softCap >= _hardCap / 2, "SC must be >= HC/2."); require(_liquidityPortion >= 50, "Liquidity must be >=50."); require(_liquidityPortion <= 100, "Invalid liquidity."); require(_minBuy < _maxBuy, "Min buy must greater than max."); require(_minBuy > 0, "Min buy must exceed 0."); Pool memory newPool = Pool( _startTime, _endTime, _tokenDeposit, _tokensForSale, _tokensForLiquidity, _liquidityPortion, _hardCap, _softCap, _maxBuy, _minBuy ); pool = newPool; isInit = true; } /* * Once called the owner deposits tokens into pool */ function deposit() external onlyOwner { require(!isDeposit, "Tokens already deposited."); require(isInit, "Not initialized yet."); uint256 totalDeposit = _getTokenDeposit(); isDeposit = true; require(tokenInstance.transferFrom(msg.sender, address(this), totalDeposit), "Deposit failed."); emit Deposited(msg.sender, totalDeposit); } /* * Finish the sale - Create Uniswap v2 pair, add liquidity, take fees, withrdawal funds, burn/refund unused tokens */ function finishSale() external onlyOwner onlyInactive { require(ethRaised >= pool.softCap, "Soft Cap is not met."); require(block.timestamp > pool.startTime, "Can not finish before start"); require(!isFinish, "Sale already launched."); require(!isRefund, "Refund process."); percentageRaised = _getPercentageFromValue(ethRaised, pool.hardCap); tokensSold = _getValueFromPercentage(percentageRaised, pool.tokensForSale); uint256 tokensForLiquidity = _getValueFromPercentage(percentageRaised, pool.tokensForLiquidity); isFinish = true; //add liquidity (uint amountToken, uint amountETH, ) = UniswapV2Router02.addLiquidityETH{value : _getLiquidityEth()}( address(tokenInstance), tokensForLiquidity, tokensForLiquidity, _getLiquidityEth(), owner(), block.timestamp + 600 ); require(amountToken == tokensForLiquidity && amountETH == _getLiquidityEth(), "Providing liquidity failed."); emit Liquified( address(tokenInstance), address(UniswapV2Router02), UniswapV2Factory.getPair(address(tokenInstance), weth) ); //withrawal eth uint256 ownerShareEth = _getOwnerEth(); if (ownerShareEth > 0) { payable(creatorWallet).transfer(ownerShareEth); } //If HC is not reached, burn or refund the remainder if (ethRaised < pool.hardCap) { uint256 remainder = _getUserTokens(pool.hardCap - ethRaised) + (pool.tokensForLiquidity - tokensForLiquidity); if(burnTokens == true){ require(tokenInstance.transfer( 0x000000000000000000000000000000000000dEaD, remainder), "Unable to burn." ); emit BurntRemainder(msg.sender, remainder); } else { require(tokenInstance.transfer(creatorWallet, remainder), "Refund failed."); emit RefundedRemainder(msg.sender, remainder); } } } /* * The owner can decide to close the sale if it is still active NOTE: Creator may call this function even if the Hard Cap is reached, to prevent it use: require(ethRaised < pool.hardCap) */ function cancelSale() external onlyOwner onlyActive { require(!isFinish, "Sale finished."); pool.endTime = 0; isRefund = true; if (tokenInstance.balanceOf(address(this)) > 0) { uint256 tokenDeposit = _getTokenDeposit(); tokenInstance.transfer(msg.sender, tokenDeposit); emit Withdraw(msg.sender, tokenDeposit); } emit Canceled(msg.sender, address(tokenInstance), address(this)); } /* * Allows participents to claim the tokens they purchased */ function claimTokens() external onlyInactive { require(isFinish, "Sale is still active."); require(!isRefund, "Refund process."); uint256 tokensAmount = _getUserTokens(ethContribution[msg.sender]); ethContribution[msg.sender] = 0; require(tokenInstance.transfer(msg.sender, tokensAmount), "Claim failed."); emit Claimed(msg.sender, tokensAmount); } /* * Refunds the Eth to participents */ function refund() external onlyInactive onlyRefund { uint256 refundAmount = ethContribution[msg.sender]; require(refundAmount > 0, "No refund amount"); require(address(this).balance >= refundAmount, "No amount available"); ethContribution[msg.sender] = 0; address payable refunder = payable(msg.sender); refunder.transfer(refundAmount); emit Refunded(refunder, refundAmount); } /* * Withdrawal tokens on refund */ function withrawTokens() external onlyOwner onlyInactive onlyRefund { if (tokenInstance.balanceOf(address(this)) > 0) { uint256 tokenDeposit = _getTokenDeposit(); require(tokenInstance.transfer(msg.sender, tokenDeposit), "Withdraw failed."); emit Withdraw(msg.sender, tokenDeposit); } } /* * If requirements are passed, updates user"s token balance based on their eth contribution */ function buyTokens(address _contributor) public payable onlyActive { require(!isFinish, "Sale finished."); require(isDeposit, "Tokens not deposited."); require(_contributor != address(0), "Transfer to 0 address."); require(msg.value != 0, "Wei Amount is 0"); if (ethRaised > pool.hardCap - pool.minBuy) { require(msg.value == pool.hardCap - ethRaised, "Value must be the remainder."); } else { require(msg.value >= pool.minBuy, "Min buy is not met."); } require(msg.value + ethContribution[_contributor] <= pool.maxBuy, "Max buy limit exceeded."); require(ethRaised + msg.value <= pool.hardCap, "HC Reached."); ethRaised += msg.value; ethContribution[msg.sender] += msg.value; } /* * Internal functions, called when calculating balances */ function _getUserTokens(uint256 _amount) internal view returns (uint256) { return _amount.mul(tokensSold).div(ethRaised); } function _getLiquidityEth() internal view returns (uint256) { return _getValueFromPercentage(pool.liquidityPortion, ethRaised); } function _getOwnerEth() internal view returns (uint256) { uint256 liquidityEthFee = _getLiquidityEth(); return ethRaised - liquidityEthFee; } function _getTokenDeposit() internal view returns (uint256){ return pool.tokenDeposit; } function _getPercentageFromValue(uint256 currentValue, uint256 maxValue) private pure returns (uint256) { require(currentValue <= maxValue, "Number too high"); return currentValue.mul(100).div(maxValue); } function _getValueFromPercentage(uint256 currentPercentage, uint256 maxValue) private pure returns (uint256) { require(currentPercentage <= 100, "Number too high"); return maxValue.mul(currentPercentage).div(100); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (utils/math/SafeMath.sol) pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is generally not needed starting with Solidity 0.8, since the compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the subtraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } } abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); constructor() { _transferOwnership(_msgSender()); } function owner() public view virtual returns (address) { return _owner; } modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"contract IERC20","name":"_tokenInstance","type":"address"},{"internalType":"address","name":"_uniswapv2Router","type":"address"},{"internalType":"address","name":"_uniswapv2Factory","type":"address"},{"internalType":"address","name":"_weth","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_buyer","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"Bought","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"BurntRemainder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_inititator","type":"address"},{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_presale","type":"address"}],"name":"Canceled","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_participent","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"Claimed","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_totalDeposit","type":"uint256"}],"name":"Deposited","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_token","type":"address"},{"indexed":true,"internalType":"address","name":"_router","type":"address"},{"indexed":true,"internalType":"address","name":"_pair","type":"address"}],"name":"Liquified","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_refunder","type":"address"},{"indexed":false,"internalType":"uint256","name":"_tokenAmount","type":"uint256"}],"name":"Refunded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_initiator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"RefundedRemainder","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"_creator","type":"address"},{"indexed":false,"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"Withdraw","type":"event"},{"inputs":[],"name":"UniswapV2Factory","outputs":[{"internalType":"contract IUniswapV2Factory","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UniswapV2Router02","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"burnTokens","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_contributor","type":"address"}],"name":"buyTokens","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"cancelSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"claimTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"creatorWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deposit","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"","type":"address"}],"name":"ethContribution","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"ethRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"finishSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint64","name":"_startTime","type":"uint64"},{"internalType":"uint64","name":"_endTime","type":"uint64"},{"internalType":"uint256","name":"_tokenDeposit","type":"uint256"},{"internalType":"uint256","name":"_tokensForSale","type":"uint256"},{"internalType":"uint256","name":"_tokensForLiquidity","type":"uint256"},{"internalType":"uint8","name":"_liquidityPortion","type":"uint8"},{"internalType":"uint256","name":"_hardCap","type":"uint256"},{"internalType":"uint256","name":"_softCap","type":"uint256"},{"internalType":"uint256","name":"_maxBuy","type":"uint256"},{"internalType":"uint256","name":"_minBuy","type":"uint256"}],"name":"initSale","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isDeposit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isFinish","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isInit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"isRefund","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"percentageRaised","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pool","outputs":[{"internalType":"uint64","name":"startTime","type":"uint64"},{"internalType":"uint64","name":"endTime","type":"uint64"},{"internalType":"uint256","name":"tokenDeposit","type":"uint256"},{"internalType":"uint256","name":"tokensForSale","type":"uint256"},{"internalType":"uint256","name":"tokensForLiquidity","type":"uint256"},{"internalType":"uint8","name":"liquidityPortion","type":"uint8"},{"internalType":"uint256","name":"hardCap","type":"uint256"},{"internalType":"uint256","name":"softCap","type":"uint256"},{"internalType":"uint256","name":"maxBuy","type":"uint256"},{"internalType":"uint256","name":"minBuy","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"refund","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"tokenDecimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokenInstance","outputs":[{"internalType":"contract IERC20","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensSold","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"weth","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"withrawTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526001600060186101000a81548160ff0219169083151502179055506012600260146101000a81548160ff021916908360ff1602179055503480156200004857600080fd5b50604051620054153803806200541583398181016040528101906200006e919062000774565b6200008e62000082620005f460201b60201c565b620005fc60201b60201c565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16141562000101576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620000f8906200091f565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141562000174576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200016b90620008fd565b60405180910390fd5b60008060146101000a81548160ff02191690831515021790555060008060156101000a81548160ff02191690831515021790555060008060176101000a81548160ff02191690831515021790555060008060166101000a81548160ff021916908315150217905550600060038190555080600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555083600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555033600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555082600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555081600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600073ffffffffffffffffffffffffffffffffffffffff16600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a43905600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b8152600401620003e4929190620008a3565b60206040518083038186803b158015620003fd57600080fd5b505afa15801562000412573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200043891906200071c565b73ffffffffffffffffffffffffffffffffffffffff161462000491576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004889062000941565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663095ea7b384600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166318160ddd6040518163ffffffff1660e01b815260040160206040518083038186803b1580156200053957600080fd5b505afa1580156200054e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005749190620007e0565b6040518363ffffffff1660e01b815260040162000593929190620008d0565b602060405180830381600087803b158015620005ae57600080fd5b505af1158015620005c3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620005e9919062000748565b505050505062000ab5565b600033905090565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081519050620006d18162000a4d565b92915050565b600081519050620006e88162000a67565b92915050565b600081519050620006ff8162000a81565b92915050565b600081519050620007168162000a9b565b92915050565b6000602082840312156200072f57600080fd5b60006200073f84828501620006c0565b91505092915050565b6000602082840312156200075b57600080fd5b60006200076b84828501620006d7565b91505092915050565b600080600080608085870312156200078b57600080fd5b60006200079b87828801620006ee565b9450506020620007ae87828801620006c0565b9350506040620007c187828801620006c0565b9250506060620007d487828801620006c0565b91505092959194509250565b600060208284031215620007f357600080fd5b6000620008038482850162000705565b91505092915050565b620008178162000974565b82525050565b60006200082c60178362000963565b91506200083982620009d2565b602082019050919050565b60006200085360168362000963565b91506200086082620009fb565b602082019050919050565b60006200087a60168362000963565b9150620008878262000a24565b602082019050919050565b6200089d81620009c8565b82525050565b6000604082019050620008ba60008301856200080c565b620008c960208301846200080c565b9392505050565b6000604082019050620008e760008301856200080c565b620008f6602083018462000892565b9392505050565b6000602082019050818103600083015262000918816200081d565b9050919050565b600060208201905081810360008301526200093a8162000844565b9050919050565b600060208201905081810360008301526200095c816200086b565b9050919050565b600082825260208201905092915050565b60006200098182620009a8565b9050919050565b60008115159050919050565b6000620009a18262000974565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b7f496e76616c696420666163746f72792061646472657373000000000000000000600082015250565b7f496e76616c696420726f75746572206164647265737300000000000000000000600082015250565b7f49556e69737761703a20506f6f6c206578697374732e00000000000000000000600082015250565b62000a588162000974565b811462000a6457600080fd5b50565b62000a728162000988565b811462000a7e57600080fd5b50565b62000a8c8162000994565b811462000a9857600080fd5b50565b62000aa681620009c8565b811462000ab257600080fd5b50565b6149508062000ac56000396000f3fe6080604052600436106101a05760003560e01c80637bc3b5ff116100ec578063d64428e31161008a578063ec8ac4d811610064578063ec8ac4d8146105d5578063f2fde38b146105f1578063fddf0fc01461061a578063ffa324dc1461064557610252565b8063d64428e314610568578063d921eb7814610593578063e7e10490146105be57610252565b80638f86f5ea116100c65780638f86f5ea146104e6578063b145a5b8146104fd578063ca62089e14610528578063d0e30db01461055157610252565b80637bc3b5ff146104655780637cdc65f2146104905780638da5cb5b146104bb57610252565b806348c54b9d11610159578063590e1ae311610133578063590e1ae3146103e1578063658030b3146103f8578063715018a61461042357806378cc70b21461043a57610252565b806348c54b9d14610374578063518ab2a81461038b57806355cb2666146103b657610252565b806308003f781461025757806316f0115b146102825780632c8ca0ea146102b65780633b97e856146102e15780633fc8cef31461030c5780634034175e1461033757610252565b3661025257600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1642101580156101fb5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff164211155b156102155761021061020b61065c565b610664565b610250565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161024790613ac5565b60405180910390fd5b005b600080fd5b34801561026357600080fd5b5061026c610a9d565b6040516102799190613939565b60405180910390f35b34801561028e57600080fd5b50610297610ab0565b6040516102ad9a99989796959493929190613ee0565b60405180910390f35b3480156102c257600080fd5b506102cb610b27565b6040516102d89190613939565b60405180910390f35b3480156102ed57600080fd5b506102f6610b3a565b6040516103039190613f7c565b60405180910390f35b34801561031857600080fd5b50610321610b4d565b60405161032e9190613834565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190613053565b610b73565b60405161036b9190613ec5565b60405180910390f35b34801561038057600080fd5b50610389610b8b565b005b34801561039757600080fd5b506103a0610e9e565b6040516103ad9190613ec5565b60405180910390f35b3480156103c257600080fd5b506103cb610ea4565b6040516103d8919061398a565b60405180910390f35b3480156103ed57600080fd5b506103f6610eca565b005b34801561040457600080fd5b5061040d6111b0565b60405161041a9190613954565b60405180910390f35b34801561042f57600080fd5b506104386111d6565b005b34801561044657600080fd5b5061044f61125e565b60405161045c919061396f565b60405180910390f35b34801561047157600080fd5b5061047a611284565b6040516104879190613939565b60405180910390f35b34801561049c57600080fd5b506104a5611297565b6040516104b29190613834565b60405180910390f35b3480156104c757600080fd5b506104d06112bd565b6040516104dd9190613834565b60405180910390f35b3480156104f257600080fd5b506104fb6112e6565b005b34801561050957600080fd5b50610512611c3e565b60405161051f9190613939565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613146565b611c51565b005b34801561055d57600080fd5b506105666121df565b005b34801561057457600080fd5b5061057d612462565b60405161058a9190613ec5565b60405180910390f35b34801561059f57600080fd5b506105a8612468565b6040516105b59190613939565b60405180910390f35b3480156105ca57600080fd5b506105d361247b565b005b6105ef60048036038101906105ea9190613053565b610664565b005b3480156105fd57600080fd5b5061061860048036038101906106139190613053565b6128af565b005b34801561062657600080fd5b5061062f6129a7565b60405161063c9190613ec5565b60405180910390f35b34801561065157600080fd5b5061065a6129ad565b005b600033905090565b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210156106ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c190613dc5565b60405180910390fd5b600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff16421115610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790613dc5565b60405180910390fd5b600060179054906101000a900460ff1615610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790613c65565b60405180910390fd5b600060159054906101000a900460ff166107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c690613c45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613be5565b60405180910390fd5b6000341415610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90613c85565b60405180910390fd5b6009600801546009600501546108999190614089565b60035411156108fb576003546009600501546108b59190614089565b34146108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613d05565b60405180910390fd5b610944565b600960080154341015610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90613e45565b60405180910390fd5b5b600960070154601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054346109959190613fa8565b11156109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90613bc5565b60405180910390fd5b600960050154346003546109ea9190613fa8565b1115610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290613a65565b60405180910390fd5b3460036000828254610a3d9190613fa8565b9250508190555034601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a939190613fa8565b9250508190555050565b600060189054906101000a900460ff1681565b60098060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900467ffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900460ff1690806005015490806006015490806007015490806008015490508a565b600060179054906101000a900460ff1681565b600260149054906101000a900460ff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60126020528060005260406000206000915090505481565b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080610bde5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80610bf0575060096006015460035410155b610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613e05565b60405180910390fd5b600060179054906101000a900460ff16610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613b45565b60405180910390fd5b600060169054906101000a900460ff1615610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613c25565b60405180910390fd5b6000610d18601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d61565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610dbc9291906138af565b602060405180830381600087803b158015610dd657600080fd5b505af1158015610dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0e91906130a5565b610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e44906139a5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a82604051610e939190613ec5565b60405180910390a250565b60055481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080610f1d5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80610f2f575060096006015460035410155b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613e05565b60405180910390fd5b60011515600060169054906101000a900460ff1615151480610fc45750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642118015610fc35750600960060154600354105b5b611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613c05565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811161108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613a85565b60405180910390fd5b804710156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490613a25565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060003390508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561115d573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff167fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d0651836040516111a49190613ec5565b60405180910390a25050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111de61065c565b73ffffffffffffffffffffffffffffffffffffffff166111fc6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990613d25565b60405180910390fd5b61125c6000612d93565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060159054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112ee61065c565b73ffffffffffffffffffffffffffffffffffffffff1661130c6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210806113b55750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b806113c7575060096006015460035410155b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613e05565b60405180910390fd5b6009600601546003541015611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906139c5565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1642116114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613ca5565b60405180910390fd5b600060179054906101000a900460ff1615611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613aa5565b60405180910390fd5b600060169054906101000a900460ff1615611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613c25565b60405180910390fd5b611566600354600960050154612e57565b60048190555061157d600454600960020154612eca565b6005819055506000611596600454600960030154612eca565b90506001600060176101000a81548160ff021916908315150217905550600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7196115fc612f3e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168687611629612f3e565b6116316112bd565b6102584261163f9190613fa8565b6040518863ffffffff1660e01b8152600401611660969594939291906138d8565b6060604051808303818588803b15801561167957600080fd5b505af115801561168d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116b291906130f7565b509150915082821480156116cc57506116c9612f3e565b81145b61170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613d45565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a43905600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016117ac92919061384f565b60206040518083038186803b1580156117c457600080fd5b505afa1580156117d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fc919061307c565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f855e21f045401bd18ad033c48b74263dc6e037024f082f3118fa5b79b8c63cf860405160405180910390a460006118ba612f66565b9050600081111561192f57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561192d573d6000803e3d6000fd5b505b6009600501546003541015611c38576000846009600301546119519190614089565b61196c6003546009600501546119679190614089565b612d61565b6119769190613fa8565b905060011515600060189054906101000a900460ff1615151415611ad757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016119f39291906138af565b602060405180830381600087803b158015611a0d57600080fd5b505af1158015611a21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4591906130a5565b611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b90613d65565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff64f45e6447f41665c556373a7683d2b9537f22f7498825a215561a075d3419582604051611aca9190613ec5565b60405180910390a2611c36565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611b569291906138af565b602060405180830381600087803b158015611b7057600080fd5b505af1158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba891906130a5565b611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613ae5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fb2a2a849a821dbd9c9ae4fad722faef4e72c7edbbadaeeaabfdba3c1b17aa86a82604051611c2d9190613ec5565b60405180910390a25b505b50505050565b600060149054906101000a900460ff1681565b611c5961065c565b73ffffffffffffffffffffffffffffffffffffffff16611c776112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080611d205750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80611d32575060096006015460035410155b611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613e05565b60405180910390fd5b60001515600060149054906101000a900460ff16151514611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90613a05565b60405180910390fd5b428a67ffffffffffffffff161015611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613b05565b60405180910390fd5b428967ffffffffffffffff1611611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5790613e25565b60405180910390fd5b60008811611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613b25565b60405180910390fd5b878710611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613b65565b60405180910390fd5b878610611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613ce5565b60405180910390fd5b600284611f349190613ffe565b831015611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90613d85565b60405180910390fd5b60328560ff161015611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb4906139e5565b60405180910390fd5b60648560ff161115612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb90613ea5565b60405180910390fd5b818110612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613da5565b60405180910390fd5b60008111612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613e85565b60405180910390fd5b60006040518061014001604052808c67ffffffffffffffff1681526020018b67ffffffffffffffff1681526020018a81526020018981526020018881526020018760ff16815260200186815260200185815260200184815260200183815250905080600960008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160010155606082015181600201556080820151816003015560a08201518160040160006101000a81548160ff021916908360ff16021790555060c0820151816005015560e08201518160060155610100820151816007015561012082015181600801559050506001600060146101000a81548160ff0219169083151502179055505050505050505050505050565b6121e761065c565b73ffffffffffffffffffffffffffffffffffffffff166122056112bd565b73ffffffffffffffffffffffffffffffffffffffff161461225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613d25565b60405180910390fd5b600060159054906101000a900460ff16156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613cc5565b60405180910390fd5b600060149054906101000a900460ff166122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613b85565b60405180910390fd5b6000612304612f87565b90506001600060156101000a81548160ff021916908315150217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161238093929190613878565b602060405180830381600087803b15801561239a57600080fd5b505af11580156123ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d291906130a5565b612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890613e65565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516124579190613ec5565b60405180910390a250565b60045481565b600060169054906101000a900460ff1681565b61248361065c565b73ffffffffffffffffffffffffffffffffffffffff166124a16112bd565b73ffffffffffffffffffffffffffffffffffffffff16146124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1642101561255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490613dc5565b60405180910390fd5b600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff164211156125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba90613dc5565b60405180910390fd5b600060179054906101000a900460ff1615612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90613c65565b60405180910390fd5b6000600960000160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600060166101000a81548160ff0219169083151502179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126b89190613834565b60206040518083038186803b1580156126d057600080fd5b505afa1580156126e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270891906130ce565b111561281a576000612718612f87565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016127779291906138af565b602060405180830381600087803b15801561279157600080fd5b505af11580156127a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c991906130a5565b503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040516128109190613ec5565b60405180910390a2505b3073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f72452f1a219141fd5d3814b0d1d79e431ceb617f33a3a07bdd18a1a64ed0a6e860405160405180910390a4565b6128b761065c565b73ffffffffffffffffffffffffffffffffffffffff166128d56112bd565b73ffffffffffffffffffffffffffffffffffffffff161461292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290613d25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290613a45565b60405180910390fd5b6129a481612d93565b50565b60035481565b6129b561065c565b73ffffffffffffffffffffffffffffffffffffffff166129d36112bd565b73ffffffffffffffffffffffffffffffffffffffff1614612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080612a7c5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80612a8e575060096006015460035410155b612acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac490613e05565b60405180910390fd5b60011515600060169054906101000a900460ff1615151480612b235750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642118015612b225750600960060154600354105b5b612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990613c05565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bbf9190613834565b60206040518083038186803b158015612bd757600080fd5b505afa158015612beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c0f91906130ce565b1115612d5f576000612c1f612f87565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401612c7e9291906138af565b602060405180830381600087803b158015612c9857600080fd5b505af1158015612cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd091906130a5565b612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690613ba5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436482604051612d559190613ec5565b60405180910390a2505b565b6000612d8c600354612d7e60055485612f9490919063ffffffff16565b612faa90919063ffffffff16565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081831115612e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9390613de5565b60405180910390fd5b612ec282612eb4606486612f9490919063ffffffff16565b612faa90919063ffffffff16565b905092915050565b60006064831115612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0790613de5565b60405180910390fd5b612f366064612f288585612f9490919063ffffffff16565b612faa90919063ffffffff16565b905092915050565b6000612f61600960040160009054906101000a900460ff1660ff16600354612eca565b905090565b600080612f71612f3e565b905080600354612f819190614089565b91505090565b6000600960010154905090565b60008183612fa2919061402f565b905092915050565b60008183612fb89190613ffe565b905092915050565b600081359050612fcf816148a7565b92915050565b600081519050612fe4816148a7565b92915050565b600081519050612ff9816148be565b92915050565b60008135905061300e816148d5565b92915050565b600081519050613023816148d5565b92915050565b600081359050613038816148ec565b92915050565b60008135905061304d81614903565b92915050565b60006020828403121561306557600080fd5b600061307384828501612fc0565b91505092915050565b60006020828403121561308e57600080fd5b600061309c84828501612fd5565b91505092915050565b6000602082840312156130b757600080fd5b60006130c584828501612fea565b91505092915050565b6000602082840312156130e057600080fd5b60006130ee84828501613014565b91505092915050565b60008060006060848603121561310c57600080fd5b600061311a86828701613014565b935050602061312b86828701613014565b925050604061313c86828701613014565b9150509250925092565b6000806000806000806000806000806101408b8d03121561316657600080fd5b60006131748d828e01613029565b9a505060206131858d828e01613029565b99505060406131968d828e01612fff565b98505060606131a78d828e01612fff565b97505060806131b88d828e01612fff565b96505060a06131c98d828e0161303e565b95505060c06131da8d828e01612fff565b94505060e06131eb8d828e01612fff565b9350506101006131fd8d828e01612fff565b92505061012061320f8d828e01612fff565b9150509295989b9194979a5092959850565b61322a816140bd565b82525050565b613239816140cf565b82525050565b61324881614126565b82525050565b6132578161414a565b82525050565b6132668161416e565b82525050565b6000613279600d83613f97565b9150613284826141f0565b602082019050919050565b600061329c601483613f97565b91506132a782614219565b602082019050919050565b60006132bf601783613f97565b91506132ca82614242565b602082019050919050565b60006132e2601383613f97565b91506132ed8261426b565b602082019050919050565b6000613305601383613f97565b915061331082614294565b602082019050919050565b6000613328602683613f97565b9150613333826142bd565b604082019050919050565b600061334b600b83613f97565b91506133568261430c565b602082019050919050565b600061336e601083613f97565b915061337982614335565b602082019050919050565b6000613391601683613f97565b915061339c8261435e565b602082019050919050565b60006133b4601183613f97565b91506133bf82614387565b602082019050919050565b60006133d7600e83613f97565b91506133e2826143b0565b602082019050919050565b60006133fa601383613f97565b9150613405826143d9565b602082019050919050565b600061341d601683613f97565b915061342882614402565b602082019050919050565b6000613440601583613f97565b915061344b8261442b565b602082019050919050565b6000613463601883613f97565b915061346e82614454565b602082019050919050565b6000613486601483613f97565b91506134918261447d565b602082019050919050565b60006134a9601083613f97565b91506134b4826144a6565b602082019050919050565b60006134cc601783613f97565b91506134d7826144cf565b602082019050919050565b60006134ef601683613f97565b91506134fa826144f8565b602082019050919050565b6000613512601383613f97565b915061351d82614521565b602082019050919050565b6000613535600f83613f97565b91506135408261454a565b602082019050919050565b6000613558601583613f97565b915061356382614573565b602082019050919050565b600061357b600e83613f97565b91506135868261459c565b602082019050919050565b600061359e600f83613f97565b91506135a9826145c5565b602082019050919050565b60006135c1601b83613f97565b91506135cc826145ee565b602082019050919050565b60006135e4601983613f97565b91506135ef82614617565b602082019050919050565b6000613607601d83613f97565b915061361282614640565b602082019050919050565b600061362a601c83613f97565b915061363582614669565b602082019050919050565b600061364d602083613f97565b915061365882614692565b602082019050919050565b6000613670601b83613f97565b915061367b826146bb565b602082019050919050565b6000613693600f83613f97565b915061369e826146e4565b602082019050919050565b60006136b6601383613f97565b91506136c18261470d565b602082019050919050565b60006136d9601e83613f97565b91506136e482614736565b602082019050919050565b60006136fc601483613f97565b91506137078261475f565b602082019050919050565b600061371f600f83613f97565b915061372a82614788565b602082019050919050565b6000613742601683613f97565b915061374d826147b1565b602082019050919050565b6000613765601183613f97565b9150613770826147da565b602082019050919050565b6000613788601383613f97565b915061379382614803565b602082019050919050565b60006137ab600f83613f97565b91506137b68261482c565b602082019050919050565b60006137ce601683613f97565b91506137d982614855565b602082019050919050565b60006137f1601283613f97565b91506137fc8261487e565b602082019050919050565b613810816140fb565b82525050565b61381f81614105565b82525050565b61382e81614119565b82525050565b60006020820190506138496000830184613221565b92915050565b60006040820190506138646000830185613221565b6138716020830184613221565b9392505050565b600060608201905061388d6000830186613221565b61389a6020830185613221565b6138a76040830184613807565b949350505050565b60006040820190506138c46000830185613221565b6138d16020830184613807565b9392505050565b600060c0820190506138ed6000830189613221565b6138fa6020830188613807565b6139076040830187613807565b6139146060830186613807565b6139216080830185613221565b61392e60a0830184613807565b979650505050505050565b600060208201905061394e6000830184613230565b92915050565b6000602082019050613969600083018461323f565b92915050565b6000602082019050613984600083018461324e565b92915050565b600060208201905061399f600083018461325d565b92915050565b600060208201905081810360008301526139be8161326c565b9050919050565b600060208201905081810360008301526139de8161328f565b9050919050565b600060208201905081810360008301526139fe816132b2565b9050919050565b60006020820190508181036000830152613a1e816132d5565b9050919050565b60006020820190508181036000830152613a3e816132f8565b9050919050565b60006020820190508181036000830152613a5e8161331b565b9050919050565b60006020820190508181036000830152613a7e8161333e565b9050919050565b60006020820190508181036000830152613a9e81613361565b9050919050565b60006020820190508181036000830152613abe81613384565b9050919050565b60006020820190508181036000830152613ade816133a7565b9050919050565b60006020820190508181036000830152613afe816133ca565b9050919050565b60006020820190508181036000830152613b1e816133ed565b9050919050565b60006020820190508181036000830152613b3e81613410565b9050919050565b60006020820190508181036000830152613b5e81613433565b9050919050565b60006020820190508181036000830152613b7e81613456565b9050919050565b60006020820190508181036000830152613b9e81613479565b9050919050565b60006020820190508181036000830152613bbe8161349c565b9050919050565b60006020820190508181036000830152613bde816134bf565b9050919050565b60006020820190508181036000830152613bfe816134e2565b9050919050565b60006020820190508181036000830152613c1e81613505565b9050919050565b60006020820190508181036000830152613c3e81613528565b9050919050565b60006020820190508181036000830152613c5e8161354b565b9050919050565b60006020820190508181036000830152613c7e8161356e565b9050919050565b60006020820190508181036000830152613c9e81613591565b9050919050565b60006020820190508181036000830152613cbe816135b4565b9050919050565b60006020820190508181036000830152613cde816135d7565b9050919050565b60006020820190508181036000830152613cfe816135fa565b9050919050565b60006020820190508181036000830152613d1e8161361d565b9050919050565b60006020820190508181036000830152613d3e81613640565b9050919050565b60006020820190508181036000830152613d5e81613663565b9050919050565b60006020820190508181036000830152613d7e81613686565b9050919050565b60006020820190508181036000830152613d9e816136a9565b9050919050565b60006020820190508181036000830152613dbe816136cc565b9050919050565b60006020820190508181036000830152613dde816136ef565b9050919050565b60006020820190508181036000830152613dfe81613712565b9050919050565b60006020820190508181036000830152613e1e81613735565b9050919050565b60006020820190508181036000830152613e3e81613758565b9050919050565b60006020820190508181036000830152613e5e8161377b565b9050919050565b60006020820190508181036000830152613e7e8161379e565b9050919050565b60006020820190508181036000830152613e9e816137c1565b9050919050565b60006020820190508181036000830152613ebe816137e4565b9050919050565b6000602082019050613eda6000830184613807565b92915050565b600061014082019050613ef6600083018d613816565b613f03602083018c613816565b613f10604083018b613807565b613f1d606083018a613807565b613f2a6080830189613807565b613f3760a0830188613825565b613f4460c0830187613807565b613f5160e0830186613807565b613f5f610100830185613807565b613f6d610120830184613807565b9b9a5050505050505050505050565b6000602082019050613f916000830184613825565b92915050565b600082825260208201905092915050565b6000613fb3826140fb565b9150613fbe836140fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ff357613ff2614192565b5b828201905092915050565b6000614009826140fb565b9150614014836140fb565b925082614024576140236141c1565b5b828204905092915050565b600061403a826140fb565b9150614045836140fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407e5761407d614192565b5b828202905092915050565b6000614094826140fb565b915061409f836140fb565b9250828210156140b2576140b1614192565b5b828203905092915050565b60006140c8826140db565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061413182614138565b9050919050565b6000614143826140db565b9050919050565b60006141558261415c565b9050919050565b6000614167826140db565b9050919050565b600061417982614180565b9050919050565b600061418b826140db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f436c61696d206661696c65642e00000000000000000000000000000000000000600082015250565b7f536f667420436170206973206e6f74206d65742e000000000000000000000000600082015250565b7f4c6971756964697479206d757374206265203e3d35302e000000000000000000600082015250565b7f53616c65206e6f20696e697469616c697a656400000000000000000000000000600082015250565b7f4e6f20616d6f756e7420617661696c61626c6500000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f484320526561636865642e000000000000000000000000000000000000000000600082015250565b7f4e6f20726566756e6420616d6f756e7400000000000000000000000000000000600082015250565b7f53616c6520616c7265616479206c61756e636865642e00000000000000000000600082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f526566756e64206661696c65642e000000000000000000000000000000000000600082015250565b7f496e76616c69642073746172742074696d652e00000000000000000000000000600082015250565b7f496e76616c696420746f6b656e206465706f7369742e00000000000000000000600082015250565b7f53616c65206973207374696c6c206163746976652e0000000000000000000000600082015250565b7f496e76616c696420746f6b656e7320666f722073616c652e0000000000000000600082015250565b7f4e6f7420696e697469616c697a6564207965742e000000000000000000000000600082015250565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b7f4d617820627579206c696d69742065786365656465642e000000000000000000600082015250565b7f5472616e7366657220746f203020616464726573732e00000000000000000000600082015250565b7f526566756e6420756e617661696c61626c652e00000000000000000000000000600082015250565b7f526566756e642070726f636573732e0000000000000000000000000000000000600082015250565b7f546f6b656e73206e6f74206465706f73697465642e0000000000000000000000600082015250565b7f53616c652066696e69736865642e000000000000000000000000000000000000600082015250565b7f57656920416d6f756e7420697320300000000000000000000000000000000000600082015250565b7f43616e206e6f742066696e697368206265666f72652073746172740000000000600082015250565b7f546f6b656e7320616c7265616479206465706f73697465642e00000000000000600082015250565b7f496e76616c696420746f6b656e7320666f72206c69717569646974792e000000600082015250565b7f56616c7565206d757374206265207468652072656d61696e6465722e00000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50726f766964696e67206c6971756964697479206661696c65642e0000000000600082015250565b7f556e61626c6520746f206275726e2e0000000000000000000000000000000000600082015250565b7f5343206d757374206265203e3d2048432f322e00000000000000000000000000600082015250565b7f4d696e20627579206d7573742067726561746572207468616e206d61782e0000600082015250565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b7f4e756d62657220746f6f20686967680000000000000000000000000000000000600082015250565b7f53616c65206d75737420626520696e6163746976652e00000000000000000000600082015250565b7f496e76616c696420656e642074696d652e000000000000000000000000000000600082015250565b7f4d696e20627579206973206e6f74206d65742e00000000000000000000000000600082015250565b7f4465706f736974206661696c65642e0000000000000000000000000000000000600082015250565b7f4d696e20627579206d7573742065786365656420302e00000000000000000000600082015250565b7f496e76616c6964206c69717569646974792e0000000000000000000000000000600082015250565b6148b0816140bd565b81146148bb57600080fd5b50565b6148c7816140cf565b81146148d257600080fd5b50565b6148de816140fb565b81146148e957600080fd5b50565b6148f581614105565b811461490057600080fd5b50565b61490c81614119565b811461491757600080fd5b5056fea2646970667358221220255e615cc5981d6f61bb72e23838f2ec97dbf81063d4ee20bf5a6018d93641c164736f6c63430008040033000000000000000000000000d6ea1d2949b1f5e84578e3dfbe69ea0972b48e840000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Deployed Bytecode
0x6080604052600436106101a05760003560e01c80637bc3b5ff116100ec578063d64428e31161008a578063ec8ac4d811610064578063ec8ac4d8146105d5578063f2fde38b146105f1578063fddf0fc01461061a578063ffa324dc1461064557610252565b8063d64428e314610568578063d921eb7814610593578063e7e10490146105be57610252565b80638f86f5ea116100c65780638f86f5ea146104e6578063b145a5b8146104fd578063ca62089e14610528578063d0e30db01461055157610252565b80637bc3b5ff146104655780637cdc65f2146104905780638da5cb5b146104bb57610252565b806348c54b9d11610159578063590e1ae311610133578063590e1ae3146103e1578063658030b3146103f8578063715018a61461042357806378cc70b21461043a57610252565b806348c54b9d14610374578063518ab2a81461038b57806355cb2666146103b657610252565b806308003f781461025757806316f0115b146102825780632c8ca0ea146102b65780633b97e856146102e15780633fc8cef31461030c5780634034175e1461033757610252565b3661025257600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1642101580156101fb5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff164211155b156102155761021061020b61065c565b610664565b610250565b6040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161024790613ac5565b60405180910390fd5b005b600080fd5b34801561026357600080fd5b5061026c610a9d565b6040516102799190613939565b60405180910390f35b34801561028e57600080fd5b50610297610ab0565b6040516102ad9a99989796959493929190613ee0565b60405180910390f35b3480156102c257600080fd5b506102cb610b27565b6040516102d89190613939565b60405180910390f35b3480156102ed57600080fd5b506102f6610b3a565b6040516103039190613f7c565b60405180910390f35b34801561031857600080fd5b50610321610b4d565b60405161032e9190613834565b60405180910390f35b34801561034357600080fd5b5061035e60048036038101906103599190613053565b610b73565b60405161036b9190613ec5565b60405180910390f35b34801561038057600080fd5b50610389610b8b565b005b34801561039757600080fd5b506103a0610e9e565b6040516103ad9190613ec5565b60405180910390f35b3480156103c257600080fd5b506103cb610ea4565b6040516103d8919061398a565b60405180910390f35b3480156103ed57600080fd5b506103f6610eca565b005b34801561040457600080fd5b5061040d6111b0565b60405161041a9190613954565b60405180910390f35b34801561042f57600080fd5b506104386111d6565b005b34801561044657600080fd5b5061044f61125e565b60405161045c919061396f565b60405180910390f35b34801561047157600080fd5b5061047a611284565b6040516104879190613939565b60405180910390f35b34801561049c57600080fd5b506104a5611297565b6040516104b29190613834565b60405180910390f35b3480156104c757600080fd5b506104d06112bd565b6040516104dd9190613834565b60405180910390f35b3480156104f257600080fd5b506104fb6112e6565b005b34801561050957600080fd5b50610512611c3e565b60405161051f9190613939565b60405180910390f35b34801561053457600080fd5b5061054f600480360381019061054a9190613146565b611c51565b005b34801561055d57600080fd5b506105666121df565b005b34801561057457600080fd5b5061057d612462565b60405161058a9190613ec5565b60405180910390f35b34801561059f57600080fd5b506105a8612468565b6040516105b59190613939565b60405180910390f35b3480156105ca57600080fd5b506105d361247b565b005b6105ef60048036038101906105ea9190613053565b610664565b005b3480156105fd57600080fd5b5061061860048036038101906106139190613053565b6128af565b005b34801561062657600080fd5b5061062f6129a7565b60405161063c9190613ec5565b60405180910390f35b34801561065157600080fd5b5061065a6129ad565b005b600033905090565b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210156106ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106c190613dc5565b60405180910390fd5b600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff16421115610730576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161072790613dc5565b60405180910390fd5b600060179054906101000a900460ff1615610780576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077790613c65565b60405180910390fd5b600060159054906101000a900460ff166107cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107c690613c45565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561083f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161083690613be5565b60405180910390fd5b6000341415610883576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161087a90613c85565b60405180910390fd5b6009600801546009600501546108999190614089565b60035411156108fb576003546009600501546108b59190614089565b34146108f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016108ed90613d05565b60405180910390fd5b610944565b600960080154341015610943576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093a90613e45565b60405180910390fd5b5b600960070154601260008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054346109959190613fa8565b11156109d6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cd90613bc5565b60405180910390fd5b600960050154346003546109ea9190613fa8565b1115610a2b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a2290613a65565b60405180910390fd5b3460036000828254610a3d9190613fa8565b9250508190555034601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254610a939190613fa8565b9250508190555050565b600060189054906101000a900460ff1681565b60098060000160009054906101000a900467ffffffffffffffff16908060000160089054906101000a900467ffffffffffffffff16908060010154908060020154908060030154908060040160009054906101000a900460ff1690806005015490806006015490806007015490806008015490508a565b600060179054906101000a900460ff1681565b600260149054906101000a900460ff1681565b600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60126020528060005260406000206000915090505481565b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080610bde5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80610bf0575060096006015460035410155b610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690613e05565b60405180910390fd5b600060179054906101000a900460ff16610c7e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c7590613b45565b60405180910390fd5b600060169054906101000a900460ff1615610cce576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cc590613c25565b60405180910390fd5b6000610d18601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054612d61565b90506000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401610dbc9291906138af565b602060405180830381600087803b158015610dd657600080fd5b505af1158015610dea573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e0e91906130a5565b610e4d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e44906139a5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fd8138f8a3f377c5259ca548e70e4c2de94f129f5a11036a15b69513cba2b426a82604051610e939190613ec5565b60405180910390a250565b60055481565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080610f1d5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80610f2f575060096006015460035410155b610f6e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f6590613e05565b60405180910390fd5b60011515600060169054906101000a900460ff1615151480610fc45750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642118015610fc35750600960060154600354105b5b611003576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ffa90613c05565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490506000811161108a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161108190613a85565b60405180910390fd5b804710156110cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110c490613a25565b60405180910390fd5b6000601260003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555060003390508073ffffffffffffffffffffffffffffffffffffffff166108fc839081150290604051600060405180830381858888f1935050505015801561115d573d6000803e3d6000fd5b508073ffffffffffffffffffffffffffffffffffffffff167fd7dee2702d63ad89917b6a4da9981c90c4d24f8c2bdfd64c604ecae57d8d0651836040516111a49190613ec5565b60405180910390a25050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6111de61065c565b73ffffffffffffffffffffffffffffffffffffffff166111fc6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611252576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161124990613d25565b60405180910390fd5b61125c6000612d93565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600060159054906101000a900460ff1681565b600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6112ee61065c565b73ffffffffffffffffffffffffffffffffffffffff1661130c6112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611362576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161135990613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff164210806113b55750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b806113c7575060096006015460035410155b611406576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113fd90613e05565b60405180910390fd5b6009600601546003541015611450576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611447906139c5565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1642116114b5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ac90613ca5565b60405180910390fd5b600060179054906101000a900460ff1615611505576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114fc90613aa5565b60405180910390fd5b600060169054906101000a900460ff1615611555576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161154c90613c25565b60405180910390fd5b611566600354600960050154612e57565b60048190555061157d600454600960020154612eca565b6005819055506000611596600454600960030154612eca565b90506001600060176101000a81548160ff021916908315150217905550600080600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d7196115fc612f3e565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff168687611629612f3e565b6116316112bd565b6102584261163f9190613fa8565b6040518863ffffffff1660e01b8152600401611660969594939291906138d8565b6060604051808303818588803b15801561167957600080fd5b505af115801561168d573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906116b291906130f7565b509150915082821480156116cc57506116c9612f3e565b81145b61170b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161170290613d45565b60405180910390fd5b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663e6a43905600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166040518363ffffffff1660e01b81526004016117ac92919061384f565b60206040518083038186803b1580156117c457600080fd5b505afa1580156117d8573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906117fc919061307c565b73ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f855e21f045401bd18ad033c48b74263dc6e037024f082f3118fa5b79b8c63cf860405160405180910390a460006118ba612f66565b9050600081111561192f57600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc829081150290604051600060405180830381858888f1935050505015801561192d573d6000803e3d6000fd5b505b6009600501546003541015611c38576000846009600301546119519190614089565b61196c6003546009600501546119679190614089565b612d61565b6119769190613fa8565b905060011515600060189054906101000a900460ff1615151415611ad757600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61dead836040518363ffffffff1660e01b81526004016119f39291906138af565b602060405180830381600087803b158015611a0d57600080fd5b505af1158015611a21573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611a4591906130a5565b611a84576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611a7b90613d65565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167ff64f45e6447f41665c556373a7683d2b9537f22f7498825a215561a075d3419582604051611aca9190613ec5565b60405180910390a2611c36565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16836040518363ffffffff1660e01b8152600401611b569291906138af565b602060405180830381600087803b158015611b7057600080fd5b505af1158015611b84573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611ba891906130a5565b611be7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bde90613ae5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167fb2a2a849a821dbd9c9ae4fad722faef4e72c7edbbadaeeaabfdba3c1b17aa86a82604051611c2d9190613ec5565b60405180910390a25b505b50505050565b600060149054906101000a900460ff1681565b611c5961065c565b73ffffffffffffffffffffffffffffffffffffffff16611c776112bd565b73ffffffffffffffffffffffffffffffffffffffff1614611ccd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cc490613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080611d205750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80611d32575060096006015460035410155b611d71576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d6890613e05565b60405180910390fd5b60001515600060149054906101000a900460ff16151514611dc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dbe90613a05565b60405180910390fd5b428a67ffffffffffffffff161015611e14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e0b90613b05565b60405180910390fd5b428967ffffffffffffffff1611611e60576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e5790613e25565b60405180910390fd5b60008811611ea3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9a90613b25565b60405180910390fd5b878710611ee5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611edc90613b65565b60405180910390fd5b878610611f27576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f1e90613ce5565b60405180910390fd5b600284611f349190613ffe565b831015611f76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f6d90613d85565b60405180910390fd5b60328560ff161015611fbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611fb4906139e5565b60405180910390fd5b60648560ff161115612004576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ffb90613ea5565b60405180910390fd5b818110612046576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161203d90613da5565b60405180910390fd5b60008111612089576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161208090613e85565b60405180910390fd5b60006040518061014001604052808c67ffffffffffffffff1681526020018b67ffffffffffffffff1681526020018a81526020018981526020018881526020018760ff16815260200186815260200185815260200184815260200183815250905080600960008201518160000160006101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060208201518160000160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff16021790555060408201518160010155606082015181600201556080820151816003015560a08201518160040160006101000a81548160ff021916908360ff16021790555060c0820151816005015560e08201518160060155610100820151816007015561012082015181600801559050506001600060146101000a81548160ff0219169083151502179055505050505050505050505050565b6121e761065c565b73ffffffffffffffffffffffffffffffffffffffff166122056112bd565b73ffffffffffffffffffffffffffffffffffffffff161461225b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161225290613d25565b60405180910390fd5b600060159054906101000a900460ff16156122ab576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122a290613cc5565b60405180910390fd5b600060149054906101000a900460ff166122fa576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016122f190613b85565b60405180910390fd5b6000612304612f87565b90506001600060156101000a81548160ff021916908315150217905550600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166323b872dd3330846040518463ffffffff1660e01b815260040161238093929190613878565b602060405180830381600087803b15801561239a57600080fd5b505af11580156123ae573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123d291906130a5565b612411576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161240890613e65565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f2da466a7b24304f47e87fa2e1e5a81b9831ce54fec19055ce277ca2f39ba42c4826040516124579190613ec5565b60405180910390a250565b60045481565b600060169054906101000a900460ff1681565b61248361065c565b73ffffffffffffffffffffffffffffffffffffffff166124a16112bd565b73ffffffffffffffffffffffffffffffffffffffff16146124f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016124ee90613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff1642101561255d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161255490613dc5565b60405180910390fd5b600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff164211156125c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016125ba90613dc5565b60405180910390fd5b600060179054906101000a900460ff1615612613576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161260a90613c65565b60405180910390fd5b6000600960000160086101000a81548167ffffffffffffffff021916908367ffffffffffffffff1602179055506001600060166101000a81548160ff0219169083151502179055506000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016126b89190613834565b60206040518083038186803b1580156126d057600080fd5b505afa1580156126e4573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061270891906130ce565b111561281a576000612718612f87565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b81526004016127779291906138af565b602060405180830381600087803b15801561279157600080fd5b505af11580156127a5573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906127c991906130a5565b503373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a9424364826040516128109190613ec5565b60405180910390a2505b3073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff167f72452f1a219141fd5d3814b0d1d79e431ceb617f33a3a07bdd18a1a64ed0a6e860405160405180910390a4565b6128b761065c565b73ffffffffffffffffffffffffffffffffffffffff166128d56112bd565b73ffffffffffffffffffffffffffffffffffffffff161461292b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161292290613d25565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16141561299b576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161299290613a45565b60405180910390fd5b6129a481612d93565b50565b60035481565b6129b561065c565b73ffffffffffffffffffffffffffffffffffffffff166129d36112bd565b73ffffffffffffffffffffffffffffffffffffffff1614612a29576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612a2090613d25565b60405180910390fd5b600960000160009054906101000a900467ffffffffffffffff1667ffffffffffffffff16421080612a7c5750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642115b80612a8e575060096006015460035410155b612acd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612ac490613e05565b60405180910390fd5b60011515600060169054906101000a900460ff1615151480612b235750600960000160089054906101000a900467ffffffffffffffff1667ffffffffffffffff1642118015612b225750600960060154600354105b5b612b62576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612b5990613c05565b60405180910390fd5b6000600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b8152600401612bbf9190613834565b60206040518083038186803b158015612bd757600080fd5b505afa158015612beb573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612c0f91906130ce565b1115612d5f576000612c1f612f87565b9050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663a9059cbb33836040518363ffffffff1660e01b8152600401612c7e9291906138af565b602060405180830381600087803b158015612c9857600080fd5b505af1158015612cac573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612cd091906130a5565b612d0f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612d0690613ba5565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff167f884edad9ce6fa2440d8a54cc123490eb96d2768479d49ff9c7366125a942436482604051612d559190613ec5565b60405180910390a2505b565b6000612d8c600354612d7e60055485612f9490919063ffffffff16565b612faa90919063ffffffff16565b9050919050565b60008060009054906101000a900473ffffffffffffffffffffffffffffffffffffffff169050816000806101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600081831115612e9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612e9390613de5565b60405180910390fd5b612ec282612eb4606486612f9490919063ffffffff16565b612faa90919063ffffffff16565b905092915050565b60006064831115612f10576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612f0790613de5565b60405180910390fd5b612f366064612f288585612f9490919063ffffffff16565b612faa90919063ffffffff16565b905092915050565b6000612f61600960040160009054906101000a900460ff1660ff16600354612eca565b905090565b600080612f71612f3e565b905080600354612f819190614089565b91505090565b6000600960010154905090565b60008183612fa2919061402f565b905092915050565b60008183612fb89190613ffe565b905092915050565b600081359050612fcf816148a7565b92915050565b600081519050612fe4816148a7565b92915050565b600081519050612ff9816148be565b92915050565b60008135905061300e816148d5565b92915050565b600081519050613023816148d5565b92915050565b600081359050613038816148ec565b92915050565b60008135905061304d81614903565b92915050565b60006020828403121561306557600080fd5b600061307384828501612fc0565b91505092915050565b60006020828403121561308e57600080fd5b600061309c84828501612fd5565b91505092915050565b6000602082840312156130b757600080fd5b60006130c584828501612fea565b91505092915050565b6000602082840312156130e057600080fd5b60006130ee84828501613014565b91505092915050565b60008060006060848603121561310c57600080fd5b600061311a86828701613014565b935050602061312b86828701613014565b925050604061313c86828701613014565b9150509250925092565b6000806000806000806000806000806101408b8d03121561316657600080fd5b60006131748d828e01613029565b9a505060206131858d828e01613029565b99505060406131968d828e01612fff565b98505060606131a78d828e01612fff565b97505060806131b88d828e01612fff565b96505060a06131c98d828e0161303e565b95505060c06131da8d828e01612fff565b94505060e06131eb8d828e01612fff565b9350506101006131fd8d828e01612fff565b92505061012061320f8d828e01612fff565b9150509295989b9194979a5092959850565b61322a816140bd565b82525050565b613239816140cf565b82525050565b61324881614126565b82525050565b6132578161414a565b82525050565b6132668161416e565b82525050565b6000613279600d83613f97565b9150613284826141f0565b602082019050919050565b600061329c601483613f97565b91506132a782614219565b602082019050919050565b60006132bf601783613f97565b91506132ca82614242565b602082019050919050565b60006132e2601383613f97565b91506132ed8261426b565b602082019050919050565b6000613305601383613f97565b915061331082614294565b602082019050919050565b6000613328602683613f97565b9150613333826142bd565b604082019050919050565b600061334b600b83613f97565b91506133568261430c565b602082019050919050565b600061336e601083613f97565b915061337982614335565b602082019050919050565b6000613391601683613f97565b915061339c8261435e565b602082019050919050565b60006133b4601183613f97565b91506133bf82614387565b602082019050919050565b60006133d7600e83613f97565b91506133e2826143b0565b602082019050919050565b60006133fa601383613f97565b9150613405826143d9565b602082019050919050565b600061341d601683613f97565b915061342882614402565b602082019050919050565b6000613440601583613f97565b915061344b8261442b565b602082019050919050565b6000613463601883613f97565b915061346e82614454565b602082019050919050565b6000613486601483613f97565b91506134918261447d565b602082019050919050565b60006134a9601083613f97565b91506134b4826144a6565b602082019050919050565b60006134cc601783613f97565b91506134d7826144cf565b602082019050919050565b60006134ef601683613f97565b91506134fa826144f8565b602082019050919050565b6000613512601383613f97565b915061351d82614521565b602082019050919050565b6000613535600f83613f97565b91506135408261454a565b602082019050919050565b6000613558601583613f97565b915061356382614573565b602082019050919050565b600061357b600e83613f97565b91506135868261459c565b602082019050919050565b600061359e600f83613f97565b91506135a9826145c5565b602082019050919050565b60006135c1601b83613f97565b91506135cc826145ee565b602082019050919050565b60006135e4601983613f97565b91506135ef82614617565b602082019050919050565b6000613607601d83613f97565b915061361282614640565b602082019050919050565b600061362a601c83613f97565b915061363582614669565b602082019050919050565b600061364d602083613f97565b915061365882614692565b602082019050919050565b6000613670601b83613f97565b915061367b826146bb565b602082019050919050565b6000613693600f83613f97565b915061369e826146e4565b602082019050919050565b60006136b6601383613f97565b91506136c18261470d565b602082019050919050565b60006136d9601e83613f97565b91506136e482614736565b602082019050919050565b60006136fc601483613f97565b91506137078261475f565b602082019050919050565b600061371f600f83613f97565b915061372a82614788565b602082019050919050565b6000613742601683613f97565b915061374d826147b1565b602082019050919050565b6000613765601183613f97565b9150613770826147da565b602082019050919050565b6000613788601383613f97565b915061379382614803565b602082019050919050565b60006137ab600f83613f97565b91506137b68261482c565b602082019050919050565b60006137ce601683613f97565b91506137d982614855565b602082019050919050565b60006137f1601283613f97565b91506137fc8261487e565b602082019050919050565b613810816140fb565b82525050565b61381f81614105565b82525050565b61382e81614119565b82525050565b60006020820190506138496000830184613221565b92915050565b60006040820190506138646000830185613221565b6138716020830184613221565b9392505050565b600060608201905061388d6000830186613221565b61389a6020830185613221565b6138a76040830184613807565b949350505050565b60006040820190506138c46000830185613221565b6138d16020830184613807565b9392505050565b600060c0820190506138ed6000830189613221565b6138fa6020830188613807565b6139076040830187613807565b6139146060830186613807565b6139216080830185613221565b61392e60a0830184613807565b979650505050505050565b600060208201905061394e6000830184613230565b92915050565b6000602082019050613969600083018461323f565b92915050565b6000602082019050613984600083018461324e565b92915050565b600060208201905061399f600083018461325d565b92915050565b600060208201905081810360008301526139be8161326c565b9050919050565b600060208201905081810360008301526139de8161328f565b9050919050565b600060208201905081810360008301526139fe816132b2565b9050919050565b60006020820190508181036000830152613a1e816132d5565b9050919050565b60006020820190508181036000830152613a3e816132f8565b9050919050565b60006020820190508181036000830152613a5e8161331b565b9050919050565b60006020820190508181036000830152613a7e8161333e565b9050919050565b60006020820190508181036000830152613a9e81613361565b9050919050565b60006020820190508181036000830152613abe81613384565b9050919050565b60006020820190508181036000830152613ade816133a7565b9050919050565b60006020820190508181036000830152613afe816133ca565b9050919050565b60006020820190508181036000830152613b1e816133ed565b9050919050565b60006020820190508181036000830152613b3e81613410565b9050919050565b60006020820190508181036000830152613b5e81613433565b9050919050565b60006020820190508181036000830152613b7e81613456565b9050919050565b60006020820190508181036000830152613b9e81613479565b9050919050565b60006020820190508181036000830152613bbe8161349c565b9050919050565b60006020820190508181036000830152613bde816134bf565b9050919050565b60006020820190508181036000830152613bfe816134e2565b9050919050565b60006020820190508181036000830152613c1e81613505565b9050919050565b60006020820190508181036000830152613c3e81613528565b9050919050565b60006020820190508181036000830152613c5e8161354b565b9050919050565b60006020820190508181036000830152613c7e8161356e565b9050919050565b60006020820190508181036000830152613c9e81613591565b9050919050565b60006020820190508181036000830152613cbe816135b4565b9050919050565b60006020820190508181036000830152613cde816135d7565b9050919050565b60006020820190508181036000830152613cfe816135fa565b9050919050565b60006020820190508181036000830152613d1e8161361d565b9050919050565b60006020820190508181036000830152613d3e81613640565b9050919050565b60006020820190508181036000830152613d5e81613663565b9050919050565b60006020820190508181036000830152613d7e81613686565b9050919050565b60006020820190508181036000830152613d9e816136a9565b9050919050565b60006020820190508181036000830152613dbe816136cc565b9050919050565b60006020820190508181036000830152613dde816136ef565b9050919050565b60006020820190508181036000830152613dfe81613712565b9050919050565b60006020820190508181036000830152613e1e81613735565b9050919050565b60006020820190508181036000830152613e3e81613758565b9050919050565b60006020820190508181036000830152613e5e8161377b565b9050919050565b60006020820190508181036000830152613e7e8161379e565b9050919050565b60006020820190508181036000830152613e9e816137c1565b9050919050565b60006020820190508181036000830152613ebe816137e4565b9050919050565b6000602082019050613eda6000830184613807565b92915050565b600061014082019050613ef6600083018d613816565b613f03602083018c613816565b613f10604083018b613807565b613f1d606083018a613807565b613f2a6080830189613807565b613f3760a0830188613825565b613f4460c0830187613807565b613f5160e0830186613807565b613f5f610100830185613807565b613f6d610120830184613807565b9b9a5050505050505050505050565b6000602082019050613f916000830184613825565b92915050565b600082825260208201905092915050565b6000613fb3826140fb565b9150613fbe836140fb565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115613ff357613ff2614192565b5b828201905092915050565b6000614009826140fb565b9150614014836140fb565b925082614024576140236141c1565b5b828204905092915050565b600061403a826140fb565b9150614045836140fb565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161561407e5761407d614192565b5b828202905092915050565b6000614094826140fb565b915061409f836140fb565b9250828210156140b2576140b1614192565b5b828203905092915050565b60006140c8826140db565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600067ffffffffffffffff82169050919050565b600060ff82169050919050565b600061413182614138565b9050919050565b6000614143826140db565b9050919050565b60006141558261415c565b9050919050565b6000614167826140db565b9050919050565b600061417982614180565b9050919050565b600061418b826140db565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f436c61696d206661696c65642e00000000000000000000000000000000000000600082015250565b7f536f667420436170206973206e6f74206d65742e000000000000000000000000600082015250565b7f4c6971756964697479206d757374206265203e3d35302e000000000000000000600082015250565b7f53616c65206e6f20696e697469616c697a656400000000000000000000000000600082015250565b7f4e6f20616d6f756e7420617661696c61626c6500000000000000000000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f484320526561636865642e000000000000000000000000000000000000000000600082015250565b7f4e6f20726566756e6420616d6f756e7400000000000000000000000000000000600082015250565b7f53616c6520616c7265616479206c61756e636865642e00000000000000000000600082015250565b7f50726573616c6520697320636c6f736564000000000000000000000000000000600082015250565b7f526566756e64206661696c65642e000000000000000000000000000000000000600082015250565b7f496e76616c69642073746172742074696d652e00000000000000000000000000600082015250565b7f496e76616c696420746f6b656e206465706f7369742e00000000000000000000600082015250565b7f53616c65206973207374696c6c206163746976652e0000000000000000000000600082015250565b7f496e76616c696420746f6b656e7320666f722073616c652e0000000000000000600082015250565b7f4e6f7420696e697469616c697a6564207965742e000000000000000000000000600082015250565b7f5769746864726177206661696c65642e00000000000000000000000000000000600082015250565b7f4d617820627579206c696d69742065786365656465642e000000000000000000600082015250565b7f5472616e7366657220746f203020616464726573732e00000000000000000000600082015250565b7f526566756e6420756e617661696c61626c652e00000000000000000000000000600082015250565b7f526566756e642070726f636573732e0000000000000000000000000000000000600082015250565b7f546f6b656e73206e6f74206465706f73697465642e0000000000000000000000600082015250565b7f53616c652066696e69736865642e000000000000000000000000000000000000600082015250565b7f57656920416d6f756e7420697320300000000000000000000000000000000000600082015250565b7f43616e206e6f742066696e697368206265666f72652073746172740000000000600082015250565b7f546f6b656e7320616c7265616479206465706f73697465642e00000000000000600082015250565b7f496e76616c696420746f6b656e7320666f72206c69717569646974792e000000600082015250565b7f56616c7565206d757374206265207468652072656d61696e6465722e00000000600082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f50726f766964696e67206c6971756964697479206661696c65642e0000000000600082015250565b7f556e61626c6520746f206275726e2e0000000000000000000000000000000000600082015250565b7f5343206d757374206265203e3d2048432f322e00000000000000000000000000600082015250565b7f4d696e20627579206d7573742067726561746572207468616e206d61782e0000600082015250565b7f53616c65206d757374206265206163746976652e000000000000000000000000600082015250565b7f4e756d62657220746f6f20686967680000000000000000000000000000000000600082015250565b7f53616c65206d75737420626520696e6163746976652e00000000000000000000600082015250565b7f496e76616c696420656e642074696d652e000000000000000000000000000000600082015250565b7f4d696e20627579206973206e6f74206d65742e00000000000000000000000000600082015250565b7f4465706f736974206661696c65642e0000000000000000000000000000000000600082015250565b7f4d696e20627579206d7573742065786365656420302e00000000000000000000600082015250565b7f496e76616c6964206c69717569646974792e0000000000000000000000000000600082015250565b6148b0816140bd565b81146148bb57600080fd5b50565b6148c7816140cf565b81146148d257600080fd5b50565b6148de816140fb565b81146148e957600080fd5b50565b6148f581614105565b811461490057600080fd5b50565b61490c81614119565b811461491757600080fd5b5056fea2646970667358221220255e615cc5981d6f61bb72e23838f2ec97dbf81063d4ee20bf5a6018d93641c164736f6c63430008040033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000d6ea1d2949b1f5e84578e3dfbe69ea0972b48e840000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
-----Decoded View---------------
Arg [0] : _tokenInstance (address): 0xD6eA1D2949B1f5e84578e3DFBE69eA0972b48E84
Arg [1] : _uniswapv2Router (address): 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D
Arg [2] : _uniswapv2Factory (address): 0x5C69bEe701ef814a2B6a3EDD4B1652CB9cc5aA6f
Arg [3] : _weth (address): 0xC02aaA39b223FE8D0A0e5C4F27eAD9083C756Cc2
-----Encoded View---------------
4 Constructor Arguments found :
Arg [0] : 000000000000000000000000d6ea1d2949b1f5e84578e3dfbe69ea0972b48e84
Arg [1] : 0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d
Arg [2] : 0000000000000000000000005c69bee701ef814a2b6a3edd4b1652cb9cc5aa6f
Arg [3] : 000000000000000000000000c02aaa39b223fe8d0a0e5c4f27ead9083c756cc2
Loading...
Loading
Loading...
Loading
Multichain Portfolio | 30 Chains
Chain | Token | Portfolio % | Price | Amount | Value |
---|
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A contract address hosts a smart contract, which is a set of code stored on the blockchain that runs when predetermined conditions are met. Learn more about addresses in our Knowledge Base.