More Info
Private Name Tags
ContractCreator
TokenTracker
Latest 25 from a total of 68 transactions
Transaction Hash |
Method
|
Block
|
From
|
To
|
|||||
---|---|---|---|---|---|---|---|---|---|
Approve | 19044464 | 344 days ago | IN | 0 ETH | 0.00084191 | ||||
Approve | 16919117 | 642 days ago | IN | 0 ETH | 0.00082638 | ||||
Approve | 16919116 | 642 days ago | IN | 0 ETH | 0.0008731 | ||||
Approve | 16787183 | 661 days ago | IN | 0 ETH | 0.00070402 | ||||
Approve | 16712871 | 671 days ago | IN | 0 ETH | 0.0011366 | ||||
Approve | 16371658 | 719 days ago | IN | 0 ETH | 0.00116328 | ||||
Approve | 16358439 | 721 days ago | IN | 0 ETH | 0.0006712 | ||||
Approve | 16335585 | 724 days ago | IN | 0 ETH | 0.00097332 | ||||
Approve | 16334810 | 724 days ago | IN | 0 ETH | 0.0010518 | ||||
Approve | 16334793 | 724 days ago | IN | 0 ETH | 0.00111099 | ||||
Approve | 16334644 | 724 days ago | IN | 0 ETH | 0.00204175 | ||||
Approve | 16334581 | 724 days ago | IN | 0 ETH | 0.00147704 | ||||
Approve | 16334555 | 724 days ago | IN | 0 ETH | 0.0019927 | ||||
Approve | 16334550 | 724 days ago | IN | 0 ETH | 0.00226606 | ||||
Approve | 16334536 | 724 days ago | IN | 0 ETH | 0.00260799 | ||||
Approve | 16331442 | 725 days ago | IN | 0 ETH | 0.00076066 | ||||
Approve | 16329679 | 725 days ago | IN | 0 ETH | 0.00079766 | ||||
Approve | 16327401 | 725 days ago | IN | 0 ETH | 0.00089369 | ||||
Approve | 16327125 | 725 days ago | IN | 0 ETH | 0.0012591 | ||||
Approve | 16326903 | 725 days ago | IN | 0 ETH | 0.00114075 | ||||
Approve | 16326620 | 725 days ago | IN | 0 ETH | 0.0006863 | ||||
Approve | 16326404 | 725 days ago | IN | 0 ETH | 0.00087045 | ||||
Approve | 16326335 | 725 days ago | IN | 0 ETH | 0.00064283 | ||||
Approve | 16326309 | 725 days ago | IN | 0 ETH | 0.00082759 | ||||
Approve | 16325829 | 725 days ago | IN | 0 ETH | 0.00073151 |
Latest 25 internal transactions (View All)
Advanced mode:
Parent Transaction Hash | Block |
From
|
To
|
|||
---|---|---|---|---|---|---|
19044467 | 344 days ago | 0.00050071 ETH | ||||
19044467 | 344 days ago | 0.00050071 ETH | ||||
19044467 | 344 days ago | 0.00006378 ETH | ||||
19044467 | 344 days ago | 0.00006378 ETH | ||||
16371663 | 719 days ago | 0.0031945 ETH | ||||
16371663 | 719 days ago | 0.0031945 ETH | ||||
16371663 | 719 days ago | 0.00039975 ETH | ||||
16371663 | 719 days ago | 0.00039975 ETH | ||||
16339012 | 724 days ago | 0.00151426 ETH | ||||
16339012 | 724 days ago | 0.00151426 ETH | ||||
16339012 | 724 days ago | 0.00018934 ETH | ||||
16339012 | 724 days ago | 0.00018934 ETH | ||||
16337744 | 724 days ago | 0.00143379 ETH | ||||
16337744 | 724 days ago | 0.00143379 ETH | ||||
16337744 | 724 days ago | 0.00017927 ETH | ||||
16337744 | 724 days ago | 0.00017927 ETH | ||||
16336011 | 724 days ago | 0.00147915 ETH | ||||
16336011 | 724 days ago | 0.00147915 ETH | ||||
16336011 | 724 days ago | 0.00018494 ETH | ||||
16336011 | 724 days ago | 0.00018494 ETH | ||||
16336009 | 724 days ago | 0.00181262 ETH | ||||
16336009 | 724 days ago | 0.00181262 ETH | ||||
16336009 | 724 days ago | 0.00022667 ETH | ||||
16336009 | 724 days ago | 0.00022667 ETH | ||||
16336007 | 724 days ago | 0.00373403 ETH |
Loading...
Loading
Contract Name:
QNTM
Compiler Version
v0.8.17+commit.8df45f5f
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
//SPDX-License-Identifier: MIT import "@openzeppelin/contracts/token/ERC20/ERC20.sol"; import "@openzeppelin/contracts/access/Ownable.sol"; import "@openzeppelin/contracts/utils/math/SafeMath.sol"; import "@openzeppelin/contracts/token/ERC20/IERC20.sol"; pragma solidity ^0.8.17; interface DexFactory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface DexRouter { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns ( uint256 amountToken, uint256 amountETH, uint256 liquidity ); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } contract QNTM is ERC20, Ownable { struct Tax { uint256 marketingTax; uint256 liquidityTax; } uint256 private constant _totalSupply = 1e6 * 1e18; mapping(address => uint256) private _balances; //Router DexRouter public uniswapRouter; address public pairAddress; //Taxes Tax public buyTaxes = Tax(4, 1); Tax public sellTaxes = Tax(4, 1); uint256 public totalBuyFees = 5; uint256 public totalSellFees = 5; //Whitelisting from taxes/maxwallet/txlimit/etc mapping(address => bool) private whitelisted; //Swapping uint256 public swapTokensAtAmount = _totalSupply / 100000; //after 0.001% of total supply, swap them bool public swapAndLiquifyEnabled = true; bool public isSwapping = false; uint256 public maxWallet = (_totalSupply * 100) / 100; bool public tradingStatus = false; //Wallets address public MarketingWallet = 0x3CA1FE6CF5800F061DABD30ea9301b514D0d7F5A; address public stakingVault = 0xF45CdDe59cbB0FaADcba9c5e69C41A925b96ea63; address public stakingContract; constructor(address _stakingContract) ERC20("Quantum Finance", "QNTM") { //0x9fE46736679d2D9a65F0992F2272dE9f3c7fa6e0 test //0x10ED43C718714eb63d5aA57B78B54704E256024E Pancakeswap on mainnet //LFT swap on ETH 0x4f381d5fF61ad1D0eC355fEd2Ac4000eA1e67854 //UniswapV2 on ETHMain net 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D uniswapRouter = DexRouter(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); // do not whitelist liquidity pool, otherwise there wont be any taxes whitelisted[msg.sender] = true; whitelisted[address(uniswapRouter)] = true; whitelisted[address(this)] = true; whitelisted[stakingVault] = true; stakingContract = _stakingContract; uint256 stakingVaultportion = (_totalSupply * 20) / 100; _mint(stakingVault, stakingVaultportion); _approve(stakingVault, stakingContract, ~uint256(0)); _mint(msg.sender, _totalSupply - stakingVaultportion); } function initializePair(address _pairAddress) external onlyOwner{ pairAddress = _pairAddress; tradingStatus = true; } function setMarketingWallet(address _newMarketing) external onlyOwner { require(MarketingWallet != address(0), "new marketing wallet can not be dead address!"); MarketingWallet = _newMarketing; } function setMaxWallet(uint256 tokensCount) external onlyOwner { maxWallet = tokensCount; } function setBuyFees( uint256 _lpTax, uint256 _marketingTax ) external onlyOwner { buyTaxes.marketingTax = _marketingTax; buyTaxes.liquidityTax = _lpTax; totalBuyFees = _lpTax + _marketingTax; } function setSellFees( uint256 _lpTax, uint256 _marketingTax ) external onlyOwner { sellTaxes.marketingTax = _marketingTax; sellTaxes.liquidityTax = _lpTax; totalSellFees = _lpTax + _marketingTax; } function setSwapTokensAtAmount(uint256 _newAmount) external onlyOwner { require(_newAmount > 0, "Radiate : Minimum swap amount must be greater than 0!"); swapTokensAtAmount = _newAmount; } function toggleSwapping() external onlyOwner { swapAndLiquifyEnabled = (swapAndLiquifyEnabled == true) ? false : true; } function setWhitelistStatus(address _wallet, bool _status) external onlyOwner { whitelisted[_wallet] = _status; } function checkWhitelist(address _wallet) external view returns (bool) { return whitelisted[_wallet]; } function _takeTax( address _from, address _to, uint256 _amount ) internal returns (uint256) { if (whitelisted[_from] || whitelisted[_to]) { return _amount; } require(tradingStatus, "Trading is not enabled yet!"); uint256 totalTax = 0; if (_to == pairAddress) { totalTax = totalSellFees; } else if (_from == pairAddress) { totalTax = totalBuyFees; require(balanceOf(_to) + _amount <= maxWallet, "Can not buy more than max wallet!"); } uint256 tax = (_amount * totalTax) / 100; super._transfer(_from, address(this), tax); return (_amount - tax); } function _transfer( address _from, address _to, uint256 _amount ) internal virtual override { require(_from != address(0), "transfer from address zero"); require(_to != address(0), "transfer to address zero"); uint256 toTransfer = _takeTax(_from, _to, _amount); bool canSwap = balanceOf(address(this)) >= swapTokensAtAmount; if ( swapAndLiquifyEnabled && pairAddress == _to && canSwap && !whitelisted[_from] && !whitelisted[_to] && !isSwapping ) { isSwapping = true; manageTaxes(); isSwapping = false; } super._transfer(_from, _to, toTransfer); } function manageTaxes() internal { uint256 taxAmount = balanceOf(address(this)); //Getting total Fee Percentages And Caclculating Portinos for each tax type Tax memory bt = buyTaxes; Tax memory st = sellTaxes; uint256 totalTaxes = totalBuyFees + totalSellFees; if(totalTaxes == 0){ return; } uint256 totalMarketingTax = bt.marketingTax + st.marketingTax; uint256 totalLPTax = bt.liquidityTax + st.liquidityTax; //Calculating portions for each type of tax (marketing, burn, liquidity, rewards) uint256 lpPortion = (taxAmount * totalLPTax) / totalTaxes; uint256 marketingPortion = (taxAmount * totalMarketingTax) / totalTaxes; //Add Liquidty taxes to liqudity pool if(lpPortion > 0){ swapAndLiquify(lpPortion); } //sending to marketing wallet if(marketingPortion > 0){ swapToETH(balanceOf(address(this))); (bool success, ) = MarketingWallet.call{value : address(this).balance}(""); } } function swapAndLiquify(uint256 _amount) internal { uint256 firstHalf = _amount / 2; uint256 otherHalf = _amount - firstHalf; uint256 initialETHBalance = address(this).balance; //Swapping first half to ETH swapToETH(firstHalf); uint256 received = address(this).balance - initialETHBalance; addLiquidity(otherHalf, received); } function swapToETH(uint256 _amount) internal { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapRouter.WETH(); _approve(address(this), address(uniswapRouter), _amount); uniswapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( _amount, 0, path, address(this), block.timestamp ); } function addLiquidity(uint256 tokenAmount, uint256 ETHAmount) private { _approve(address(this), address(uniswapRouter), tokenAmount); uniswapRouter.addLiquidityETH{value: ETHAmount}( address(this), tokenAmount, 0, 0, address(this), block.timestamp ); } function updateDexRouter(address _newDex) external onlyOwner { uniswapRouter = DexRouter(_newDex); pairAddress = DexFactory(uniswapRouter.factory()).createPair( address(this), uniswapRouter.WETH() ); } function withdrawStuckETH() external onlyOwner { (bool success, ) = address(msg.sender).call{value: address(this).balance}(""); require(success, "transfering ETH failed"); } function withdrawStuckTokens(address erc20_token) external onlyOwner { bool success = IERC20(erc20_token).transfer( msg.sender, IERC20(erc20_token).balanceOf(address(this)) ); require(success, "trasfering tokens failed!"); } receive() external payable {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
// 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 // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred(address indexed previousOwner, address indexed newOwner); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require(newOwner != address(0), "Ownable: new owner is the zero address"); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_stakingContract","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","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":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[],"name":"MarketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"}],"name":"checkWhitelist","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"decimals","outputs":[{"internalType":"uint8","name":"","type":"uint8"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"subtractedValue","type":"uint256"}],"name":"decreaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_pairAddress","type":"address"}],"name":"initializePair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"isSwapping","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"pairAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTaxes","outputs":[{"internalType":"uint256","name":"marketingTax","type":"uint256"},{"internalType":"uint256","name":"liquidityTax","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setBuyFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_newMarketing","type":"address"}],"name":"setMarketingWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokensCount","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_lpTax","type":"uint256"},{"internalType":"uint256","name":"_marketingTax","type":"uint256"}],"name":"setSellFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_newAmount","type":"uint256"}],"name":"setSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_wallet","type":"address"},{"internalType":"bool","name":"_status","type":"bool"}],"name":"setWhitelistStatus","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"stakingContract","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"stakingVault","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapAndLiquifyEnabled","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"swapTokensAtAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"toggleSwapping","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"totalBuyFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSellFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStatus","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapRouter","outputs":[{"internalType":"contract DexRouter","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"_newDex","type":"address"}],"name":"updateDexRouter","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"withdrawStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"erc20_token","type":"address"}],"name":"withdrawStuckTokens","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
608060405260405180604001604052806004815260200160018152506009600082015181600001556020820151816001015550506040518060400160405280600481526020016001815250600b600082015181600001556020820151816001015550506005600d556005600e55620186a069d3c21bcecceda100000062000087919062000a34565b6010556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff02191690831515021790555060648069d3c21bcecceda1000000620000da919062000a6c565b620000e6919062000a34565b6012556000601360006101000a81548160ff021916908315150217905550733ca1fe6cf5800f061dabd30ea9301b514d0d7f5a601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073f45cdde59cbb0faadcba9c5e69c41a925b96ea63601460006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001bb57600080fd5b5060405162004988380380620049888339818101604052810190620001e1919062000b21565b6040518060400160405280600f81526020017f5175616e74756d2046696e616e636500000000000000000000000000000000008152506040518060400160405280600481526020017f514e544d0000000000000000000000000000000000000000000000000000000081525081600390816200025e919062000dc3565b50806004908162000270919062000dc3565b5050506200029362000287620005b660201b60201c565b620005be60201b60201c565b737a250d5630b4cf539739df2c5dacb4c659f2488d600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555080601560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006064601469d3c21bcecceda1000000620004ea919062000a6c565b620004f6919062000a34565b90506200052c601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16826200068460201b60201c565b62000585601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16600019620007f160201b60201c565b620005ae338269d3c21bcecceda1000000620005a2919062000eaa565b6200068460201b60201c565b505062001101565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620006f6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006ed9062000f46565b60405180910390fd5b6200070a60008383620009c260201b60201c565b80600260008282546200071e919062000f68565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620007d1919062000fb4565b60405180910390a3620007ed60008383620009c760201b60201c565b5050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160362000863576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200085a9062001047565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620008d5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cc90620010df565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051620009b5919062000fb4565b60405180910390a3505050565b505050565b505050565b6000819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000a4182620009cc565b915062000a4e83620009cc565b92508262000a615762000a60620009d6565b5b828204905092915050565b600062000a7982620009cc565b915062000a8683620009cc565b925082820262000a9681620009cc565b9150828204841483151762000ab05762000aaf62000a05565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ae98262000abc565b9050919050565b62000afb8162000adc565b811462000b0757600080fd5b50565b60008151905062000b1b8162000af0565b92915050565b60006020828403121562000b3a5762000b3962000ab7565b5b600062000b4a8482850162000b0a565b91505092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bd557607f821691505b60208210810362000beb5762000bea62000b8d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c557fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000c16565b62000c61868362000c16565b95508019841693508086168417925050509392505050565b6000819050919050565b600062000ca462000c9e62000c9884620009cc565b62000c79565b620009cc565b9050919050565b6000819050919050565b62000cc08362000c83565b62000cd862000ccf8262000cab565b84845462000c23565b825550505050565b600090565b62000cef62000ce0565b62000cfc81848462000cb5565b505050565b5b8181101562000d245762000d1860008262000ce5565b60018101905062000d02565b5050565b601f82111562000d735762000d3d8162000bf1565b62000d488462000c06565b8101602085101562000d58578190505b62000d7062000d678562000c06565b83018262000d01565b50505b505050565b600082821c905092915050565b600062000d986000198460080262000d78565b1980831691505092915050565b600062000db3838362000d85565b9150826002028217905092915050565b62000dce8262000b53565b67ffffffffffffffff81111562000dea5762000de962000b5e565b5b62000df6825462000bbc565b62000e0382828562000d28565b600060209050601f83116001811462000e3b576000841562000e26578287015190505b62000e32858262000da5565b86555062000ea2565b601f19841662000e4b8662000bf1565b60005b8281101562000e755784890151825560018201915060208501945060208101905062000e4e565b8683101562000e95578489015162000e91601f89168262000d85565b8355505b6001600288020188555050505b505050505050565b600062000eb782620009cc565b915062000ec483620009cc565b925082820390508181111562000edf5762000ede62000a05565b5b92915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f2e601f8362000ee5565b915062000f3b8262000ef6565b602082019050919050565b6000602082019050818103600083015262000f618162000f1f565b9050919050565b600062000f7582620009cc565b915062000f8283620009cc565b925082820190508082111562000f9d5762000f9c62000a05565b5b92915050565b62000fae81620009cc565b82525050565b600060208201905062000fcb600083018462000fa3565b92915050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006200102f60248362000ee5565b91506200103c8262000fd1565b604082019050919050565b60006020820190508181036000830152620010628162001020565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000620010c760228362000ee5565b9150620010d48262001069565b604082019050919050565b60006020820190508181036000830152620010fa81620010b8565b9050919050565b61387780620011116000396000f3fe60806040526004361061023f5760003560e01c806395d89b411161012e578063d0a39814116100ab578063ef586f711161006f578063ef586f7114610897578063f2fde38b146108ae578063f5648a4f146108d7578063f66895a3146108ee578063f8b45b051461091a57610246565b8063d0a39814146107ae578063d4fb9a01146107d9578063dd62ed3e14610804578063e2f4560514610841578063ee99205c1461086c57610246565b8063afa4f3b2116100f2578063afa4f3b2146106dd578063b2d8f20814610706578063b88631151461072f578063b9e937001461075a578063cb9637281461078557610246565b806395d89b41146105e45780639fd8234e1461060f578063a457c2d714610638578063a8b0898214610675578063a9059cbb146106a057610246565b806339509351116101bc578063714f75e011610180578063714f75e014610522578063715018a61461054b578063735de9f714610562578063864701a51461058d5780638da5cb5b146105b957610246565b8063395093511461042b5780634a74bb02146104685780635d0044ca146104935780635d098b38146104bc57806370a08231146104e557610246565b806323b872dd1161020357806323b872dd1461034457806324e7964a146103815780632598cdb2146103ac5780632a55fc2a146103d7578063313ce5671461040057610246565b806306fdde031461024b578063095ea7b3146102765780630c424284146102b357806318160ddd146102dc5780631950c2181461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610945565b60405161026d9190612645565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612700565b6109d7565b6040516102aa919061275b565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906127a2565b6109fa565b005b3480156102e857600080fd5b506102f1610a5d565b6040516102fe91906127f1565b60405180910390f35b34801561031357600080fd5b5061032e6004803603810190610329919061280c565b610a67565b60405161033b919061275b565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612839565b610abd565b604051610378919061275b565b60405180910390f35b34801561038d57600080fd5b50610396610aec565b6040516103a3919061289b565b60405180910390f35b3480156103b857600080fd5b506103c1610b12565b6040516103ce919061289b565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061280c565b610b38565b005b34801561040c57600080fd5b50610415610b9f565b60405161042291906128d2565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612700565b610ba8565b60405161045f919061275b565b60405180910390f35b34801561047457600080fd5b5061047d610bdf565b60405161048a919061275b565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b591906128ed565b610bf2565b005b3480156104c857600080fd5b506104e360048036038101906104de919061280c565b610c04565b005b3480156104f157600080fd5b5061050c6004803603810190610507919061280c565b610ce1565b60405161051991906127f1565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061280c565b610d29565b005b34801561055757600080fd5b50610560610f53565b005b34801561056e57600080fd5b50610577610f67565b6040516105849190612979565b60405180910390f35b34801561059957600080fd5b506105a2610f8d565b6040516105b0929190612994565b60405180910390f35b3480156105c557600080fd5b506105ce610f9f565b6040516105db919061289b565b60405180910390f35b3480156105f057600080fd5b506105f9610fc9565b6040516106069190612645565b60405180910390f35b34801561061b57600080fd5b50610636600480360381019061063191906129bd565b61105b565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612700565b61108d565b60405161066c919061275b565b60405180910390f35b34801561068157600080fd5b5061068a611104565b604051610697919061289b565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612700565b61112a565b6040516106d4919061275b565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff91906128ed565b61114d565b005b34801561071257600080fd5b5061072d600480360381019061072891906129bd565b6111a2565b005b34801561073b57600080fd5b506107446111d4565b604051610751919061275b565b60405180910390f35b34801561076657600080fd5b5061076f6111e7565b60405161077c91906127f1565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a7919061280c565b6111ed565b005b3480156107ba57600080fd5b506107c3611334565b6040516107d091906127f1565b60405180910390f35b3480156107e557600080fd5b506107ee61133a565b6040516107fb919061275b565b60405180910390f35b34801561081057600080fd5b5061082b600480360381019061082691906129fd565b61134d565b60405161083891906127f1565b60405180910390f35b34801561084d57600080fd5b506108566113d4565b60405161086391906127f1565b60405180910390f35b34801561087857600080fd5b506108816113da565b60405161088e919061289b565b60405180910390f35b3480156108a357600080fd5b506108ac611400565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061280c565b611448565b005b3480156108e357600080fd5b506108ec6114cb565b005b3480156108fa57600080fd5b50610903611582565b604051610911929190612994565b60405180910390f35b34801561092657600080fd5b5061092f611594565b60405161093c91906127f1565b60405180910390f35b60606003805461095490612a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612a6c565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b6000806109e261159a565b90506109ef8185856115a2565b600191505092915050565b610a0261176b565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610ac861159a565b9050610ad58582856117e9565b610ae0858585611875565b60019150509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b4061176b565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610bb361159a565b9050610bd4818585610bc5858961134d565b610bcf9190612acc565b6115a2565b600191505092915050565b601160009054906101000a900460ff1681565b610bfa61176b565b8060128190555050565b610c0c61176b565b600073ffffffffffffffffffffffffffffffffffffffff16601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612b72565b60405180910390fd5b80601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3161176b565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e039190612ba7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190612ba7565b6040518363ffffffff1660e01b8152600401610ecd929190612bd4565b6020604051808303816000875af1158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190612ba7565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f5b61176b565b610f656000611b01565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610fd890612a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461100490612a6c565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b61106361176b565b80600b6000018190555081600b6001018190555080826110839190612acc565b600e819055505050565b60008061109861159a565b905060006110a6828661134d565b9050838110156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290612c6f565b60405180910390fd5b6110f882868684036115a2565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061113561159a565b9050611142818585611875565b600191505092915050565b61115561176b565b60008111611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612d01565b60405180910390fd5b8060108190555050565b6111aa61176b565b806009600001819055508160096001018190555080826111ca9190612acc565b600d819055505050565b601160019054906101000a900460ff1681565b600d5481565b6111f561176b565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124d919061289b565b602060405180830381865afa15801561126a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128e9190612d36565b6040518363ffffffff1660e01b81526004016112ab929190612d63565b6020604051808303816000875af11580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190612da1565b905080611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790612e1a565b60405180910390fd5b5050565b600e5481565b601360009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61140861176b565b60011515601160009054906101000a900460ff1615151461142a57600161142d565b60005b601160006101000a81548160ff021916908315150217905550565b61145061176b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690612eac565b60405180910390fd5b6114c881611b01565b50565b6114d361176b565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114f990612efd565b60006040518083038185875af1925050503d8060008114611536576040519150601f19603f3d011682016040523d82523d6000602084013e61153b565b606091505b505090508061157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612f5e565b60405180910390fd5b50565b600b8060000154908060010154905082565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612ff0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613082565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161175e91906127f1565b60405180910390a3505050565b61177361159a565b73ffffffffffffffffffffffffffffffffffffffff16611791610f9f565b73ffffffffffffffffffffffffffffffffffffffff16146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de906130ee565b60405180910390fd5b565b60006117f5848461134d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461186f5781811015611861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118589061315a565b60405180910390fd5b61186e84848484036115a2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906131c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613232565b60405180910390fd5b6000611960848484611bc7565b9050600060105461197030610ce1565b10159050601160009054906101000a900460ff1680156119dd57508373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156119e65750805b8015611a3c5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a925750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aab5750601160019054906101000a900460ff16155b15611aef576001601160016101000a81548160ff021916908315150217905550611ad3611e1a565b6000601160016101000a81548160ff0219169083151502179055505b611afa858584611fc4565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c6a5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611c7757819050611e13565b601360009054906101000a900460ff16611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd9061329e565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d2757600e549050611ddb565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611dda57600d54905060125483611d8e86610ce1565b611d989190612acc565b1115611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090613330565b60405180910390fd5b5b5b600060648285611deb9190613350565b611df591906133c1565b9050611e02863083611fc4565b8084611e0e91906133f2565b925050505b9392505050565b6000611e2530610ce1565b9050600060096040518060400160405290816000820154815260200160018201548152505090506000600b6040518060400160405290816000820154815260200160018201548152505090506000600e54600d54611e839190612acc565b905060008103611e965750505050611fc2565b600082600001518460000151611eac9190612acc565b9050600083602001518560200151611ec49190612acc565b90506000838288611ed59190613350565b611edf91906133c1565b90506000848489611ef09190613350565b611efa91906133c1565b90506000821115611f0f57611f0e8261223a565b5b6000811115611fb957611f29611f2430610ce1565b61228a565b6000601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611f7190612efd565b60006040518083038185875af1925050503d8060008114611fae576040519150601f19603f3d011682016040523d82523d6000602084013e611fb3565b606091505b50509050505b50505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90613498565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120999061352a565b60405180910390fd5b6120ad8383836124cd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906135bc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161222191906127f1565b60405180910390a36122348484846124d2565b50505050565b600060028261224991906133c1565b90506000818361225991906133f2565b905060004790506122698361228a565b6000814761227791906133f2565b905061228383826124d7565b5050505050565b6000600267ffffffffffffffff8111156122a7576122a66135dc565b5b6040519080825280602002602001820160405280156122d55781602001602082028036833780820191505090505b50905030816000815181106122ed576122ec61360b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612394573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b89190612ba7565b816001815181106123cc576123cb61360b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061243330600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115a2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612497959493929190613733565b600060405180830381600087803b1580156124b157600080fd5b505af11580156124c5573d6000803e3d6000fd5b505050505050565b505050565b505050565b61250430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115a2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161256b9695949392919061378d565b60606040518083038185885af1158015612589573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125ae91906137ee565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125ef5780820151818401526020810190506125d4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612617826125b5565b61262181856125c0565b93506126318185602086016125d1565b61263a816125fb565b840191505092915050565b6000602082019050818103600083015261265f818461260c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126978261266c565b9050919050565b6126a78161268c565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b6000819050919050565b6126dd816126ca565b81146126e857600080fd5b50565b6000813590506126fa816126d4565b92915050565b6000806040838503121561271757612716612667565b5b6000612725858286016126b5565b9250506020612736858286016126eb565b9150509250929050565b60008115159050919050565b61275581612740565b82525050565b6000602082019050612770600083018461274c565b92915050565b61277f81612740565b811461278a57600080fd5b50565b60008135905061279c81612776565b92915050565b600080604083850312156127b9576127b8612667565b5b60006127c7858286016126b5565b92505060206127d88582860161278d565b9150509250929050565b6127eb816126ca565b82525050565b600060208201905061280660008301846127e2565b92915050565b60006020828403121561282257612821612667565b5b6000612830848285016126b5565b91505092915050565b60008060006060848603121561285257612851612667565b5b6000612860868287016126b5565b9350506020612871868287016126b5565b9250506040612882868287016126eb565b9150509250925092565b6128958161268c565b82525050565b60006020820190506128b0600083018461288c565b92915050565b600060ff82169050919050565b6128cc816128b6565b82525050565b60006020820190506128e760008301846128c3565b92915050565b60006020828403121561290357612902612667565b5b6000612911848285016126eb565b91505092915050565b6000819050919050565b600061293f61293a6129358461266c565b61291a565b61266c565b9050919050565b600061295182612924565b9050919050565b600061296382612946565b9050919050565b61297381612958565b82525050565b600060208201905061298e600083018461296a565b92915050565b60006040820190506129a960008301856127e2565b6129b660208301846127e2565b9392505050565b600080604083850312156129d4576129d3612667565b5b60006129e2858286016126eb565b92505060206129f3858286016126eb565b9150509250929050565b60008060408385031215612a1457612a13612667565b5b6000612a22858286016126b5565b9250506020612a33858286016126b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a8457607f821691505b602082108103612a9757612a96612a3d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ad7826126ca565b9150612ae2836126ca565b9250828201905080821115612afa57612af9612a9d565b5b92915050565b7f6e6577206d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b6000612b5c602d836125c0565b9150612b6782612b00565b604082019050919050565b60006020820190508181036000830152612b8b81612b4f565b9050919050565b600081519050612ba18161269e565b92915050565b600060208284031215612bbd57612bbc612667565b5b6000612bcb84828501612b92565b91505092915050565b6000604082019050612be9600083018561288c565b612bf6602083018461288c565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c596025836125c0565b9150612c6482612bfd565b604082019050919050565b60006020820190508181036000830152612c8881612c4c565b9050919050565b7f52616469617465203a204d696e696d756d207377617020616d6f756e74206d7560008201527f73742062652067726561746572207468616e2030210000000000000000000000602082015250565b6000612ceb6035836125c0565b9150612cf682612c8f565b604082019050919050565b60006020820190508181036000830152612d1a81612cde565b9050919050565b600081519050612d30816126d4565b92915050565b600060208284031215612d4c57612d4b612667565b5b6000612d5a84828501612d21565b91505092915050565b6000604082019050612d78600083018561288c565b612d8560208301846127e2565b9392505050565b600081519050612d9b81612776565b92915050565b600060208284031215612db757612db6612667565b5b6000612dc584828501612d8c565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000612e046019836125c0565b9150612e0f82612dce565b602082019050919050565b60006020820190508181036000830152612e3381612df7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e966026836125c0565b9150612ea182612e3a565b604082019050919050565b60006020820190508181036000830152612ec581612e89565b9050919050565b600081905092915050565b50565b6000612ee7600083612ecc565b9150612ef282612ed7565b600082019050919050565b6000612f0882612eda565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612f486016836125c0565b9150612f5382612f12565b602082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fda6024836125c0565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061306c6022836125c0565b915061307782613010565b604082019050919050565b6000602082019050818103600083015261309b8161305f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130d86020836125c0565b91506130e3826130a2565b602082019050919050565b60006020820190508181036000830152613107816130cb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613144601d836125c0565b915061314f8261310e565b602082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b60006131b0601a836125c0565b91506131bb8261317a565b602082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b600061321c6018836125c0565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000613288601b836125c0565b915061329382613252565b602082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e206d61782077616c6c657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061331a6021836125c0565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b600061335b826126ca565b9150613366836126ca565b9250828202613374816126ca565b9150828204841483151761338b5761338a612a9d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133cc826126ca565b91506133d7836126ca565b9250826133e7576133e6613392565b5b828204905092915050565b60006133fd826126ca565b9150613408836126ca565b92508282039050818111156134205761341f612a9d565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006134826025836125c0565b915061348d82613426565b604082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006135146023836125c0565b915061351f826134b8565b604082019050919050565b6000602082019050818103600083015261354381613507565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135a66026836125c0565b91506135b18261354a565b604082019050919050565b600060208201905081810360008301526135d581613599565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061365f61365a6136558461363a565b61291a565b6126ca565b9050919050565b61366f81613644565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136aa8161268c565b82525050565b60006136bc83836136a1565b60208301905092915050565b6000602082019050919050565b60006136e082613675565b6136ea8185613680565b93506136f583613691565b8060005b8381101561372657815161370d88826136b0565b9750613718836136c8565b9250506001810190506136f9565b5085935050505092915050565b600060a08201905061374860008301886127e2565b6137556020830187613666565b818103604083015261376781866136d5565b9050613776606083018561288c565b61378360808301846127e2565b9695505050505050565b600060c0820190506137a2600083018961288c565b6137af60208301886127e2565b6137bc6040830187613666565b6137c96060830186613666565b6137d6608083018561288c565b6137e360a08301846127e2565b979650505050505050565b60008060006060848603121561380757613806612667565b5b600061381586828701612d21565b935050602061382686828701612d21565b925050604061383786828701612d21565b915050925092509256fea2646970667358221220359209766f3820f219fb9fdcbee03f31f05c1067f68a868601711405d65c87b664736f6c63430008110033000000000000000000000000956d1c4b06d1337a80badbc3692dc1cf09bdbbcf
Deployed Bytecode
0x60806040526004361061023f5760003560e01c806395d89b411161012e578063d0a39814116100ab578063ef586f711161006f578063ef586f7114610897578063f2fde38b146108ae578063f5648a4f146108d7578063f66895a3146108ee578063f8b45b051461091a57610246565b8063d0a39814146107ae578063d4fb9a01146107d9578063dd62ed3e14610804578063e2f4560514610841578063ee99205c1461086c57610246565b8063afa4f3b2116100f2578063afa4f3b2146106dd578063b2d8f20814610706578063b88631151461072f578063b9e937001461075a578063cb9637281461078557610246565b806395d89b41146105e45780639fd8234e1461060f578063a457c2d714610638578063a8b0898214610675578063a9059cbb146106a057610246565b806339509351116101bc578063714f75e011610180578063714f75e014610522578063715018a61461054b578063735de9f714610562578063864701a51461058d5780638da5cb5b146105b957610246565b8063395093511461042b5780634a74bb02146104685780635d0044ca146104935780635d098b38146104bc57806370a08231146104e557610246565b806323b872dd1161020357806323b872dd1461034457806324e7964a146103815780632598cdb2146103ac5780632a55fc2a146103d7578063313ce5671461040057610246565b806306fdde031461024b578063095ea7b3146102765780630c424284146102b357806318160ddd146102dc5780631950c2181461030757610246565b3661024657005b600080fd5b34801561025757600080fd5b50610260610945565b60405161026d9190612645565b60405180910390f35b34801561028257600080fd5b5061029d60048036038101906102989190612700565b6109d7565b6040516102aa919061275b565b60405180910390f35b3480156102bf57600080fd5b506102da60048036038101906102d591906127a2565b6109fa565b005b3480156102e857600080fd5b506102f1610a5d565b6040516102fe91906127f1565b60405180910390f35b34801561031357600080fd5b5061032e6004803603810190610329919061280c565b610a67565b60405161033b919061275b565b60405180910390f35b34801561035057600080fd5b5061036b60048036038101906103669190612839565b610abd565b604051610378919061275b565b60405180910390f35b34801561038d57600080fd5b50610396610aec565b6040516103a3919061289b565b60405180910390f35b3480156103b857600080fd5b506103c1610b12565b6040516103ce919061289b565b60405180910390f35b3480156103e357600080fd5b506103fe60048036038101906103f9919061280c565b610b38565b005b34801561040c57600080fd5b50610415610b9f565b60405161042291906128d2565b60405180910390f35b34801561043757600080fd5b50610452600480360381019061044d9190612700565b610ba8565b60405161045f919061275b565b60405180910390f35b34801561047457600080fd5b5061047d610bdf565b60405161048a919061275b565b60405180910390f35b34801561049f57600080fd5b506104ba60048036038101906104b591906128ed565b610bf2565b005b3480156104c857600080fd5b506104e360048036038101906104de919061280c565b610c04565b005b3480156104f157600080fd5b5061050c6004803603810190610507919061280c565b610ce1565b60405161051991906127f1565b60405180910390f35b34801561052e57600080fd5b506105496004803603810190610544919061280c565b610d29565b005b34801561055757600080fd5b50610560610f53565b005b34801561056e57600080fd5b50610577610f67565b6040516105849190612979565b60405180910390f35b34801561059957600080fd5b506105a2610f8d565b6040516105b0929190612994565b60405180910390f35b3480156105c557600080fd5b506105ce610f9f565b6040516105db919061289b565b60405180910390f35b3480156105f057600080fd5b506105f9610fc9565b6040516106069190612645565b60405180910390f35b34801561061b57600080fd5b50610636600480360381019061063191906129bd565b61105b565b005b34801561064457600080fd5b5061065f600480360381019061065a9190612700565b61108d565b60405161066c919061275b565b60405180910390f35b34801561068157600080fd5b5061068a611104565b604051610697919061289b565b60405180910390f35b3480156106ac57600080fd5b506106c760048036038101906106c29190612700565b61112a565b6040516106d4919061275b565b60405180910390f35b3480156106e957600080fd5b5061070460048036038101906106ff91906128ed565b61114d565b005b34801561071257600080fd5b5061072d600480360381019061072891906129bd565b6111a2565b005b34801561073b57600080fd5b506107446111d4565b604051610751919061275b565b60405180910390f35b34801561076657600080fd5b5061076f6111e7565b60405161077c91906127f1565b60405180910390f35b34801561079157600080fd5b506107ac60048036038101906107a7919061280c565b6111ed565b005b3480156107ba57600080fd5b506107c3611334565b6040516107d091906127f1565b60405180910390f35b3480156107e557600080fd5b506107ee61133a565b6040516107fb919061275b565b60405180910390f35b34801561081057600080fd5b5061082b600480360381019061082691906129fd565b61134d565b60405161083891906127f1565b60405180910390f35b34801561084d57600080fd5b506108566113d4565b60405161086391906127f1565b60405180910390f35b34801561087857600080fd5b506108816113da565b60405161088e919061289b565b60405180910390f35b3480156108a357600080fd5b506108ac611400565b005b3480156108ba57600080fd5b506108d560048036038101906108d0919061280c565b611448565b005b3480156108e357600080fd5b506108ec6114cb565b005b3480156108fa57600080fd5b50610903611582565b604051610911929190612994565b60405180910390f35b34801561092657600080fd5b5061092f611594565b60405161093c91906127f1565b60405180910390f35b60606003805461095490612a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461098090612a6c565b80156109cd5780601f106109a2576101008083540402835291602001916109cd565b820191906000526020600020905b8154815290600101906020018083116109b057829003601f168201915b5050505050905090565b6000806109e261159a565b90506109ef8185856115a2565b600191505092915050565b610a0261176b565b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000600254905090565b6000600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff169050919050565b600080610ac861159a565b9050610ad58582856117e9565b610ae0858585611875565b60019150509392505050565b601460009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b610b4061176b565b80600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506001601360006101000a81548160ff02191690831515021790555050565b60006012905090565b600080610bb361159a565b9050610bd4818585610bc5858961134d565b610bcf9190612acc565b6115a2565b600191505092915050565b601160009054906101000a900460ff1681565b610bfa61176b565b8060128190555050565b610c0c61176b565b600073ffffffffffffffffffffffffffffffffffffffff16601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1603610c9d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c9490612b72565b60405180910390fd5b80601360016101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610d3161176b565b80600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610ddf573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e039190612ba7565b73ffffffffffffffffffffffffffffffffffffffff1663c9c6539630600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610e8c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610eb09190612ba7565b6040518363ffffffff1660e01b8152600401610ecd929190612bd4565b6020604051808303816000875af1158015610eec573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610f109190612ba7565b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b610f5b61176b565b610f656000611b01565b565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60098060000154908060010154905082565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610fd890612a6c565b80601f016020809104026020016040519081016040528092919081815260200182805461100490612a6c565b80156110515780601f1061102657610100808354040283529160200191611051565b820191906000526020600020905b81548152906001019060200180831161103457829003601f168201915b5050505050905090565b61106361176b565b80600b6000018190555081600b6001018190555080826110839190612acc565b600e819055505050565b60008061109861159a565b905060006110a6828661134d565b9050838110156110eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e290612c6f565b60405180910390fd5b6110f882868684036115a2565b60019250505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60008061113561159a565b9050611142818585611875565b600191505092915050565b61115561176b565b60008111611198576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161118f90612d01565b60405180910390fd5b8060108190555050565b6111aa61176b565b806009600001819055508160096001018190555080826111ca9190612acc565b600d819055505050565b601160019054906101000a900460ff1681565b600d5481565b6111f561176b565b60008173ffffffffffffffffffffffffffffffffffffffff1663a9059cbb338473ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b815260040161124d919061289b565b602060405180830381865afa15801561126a573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061128e9190612d36565b6040518363ffffffff1660e01b81526004016112ab929190612d63565b6020604051808303816000875af11580156112ca573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906112ee9190612da1565b905080611330576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161132790612e1a565b60405180910390fd5b5050565b600e5481565b601360009054906101000a900460ff1681565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b60105481565b601560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61140861176b565b60011515601160009054906101000a900460ff1615151461142a57600161142d565b60005b601160006101000a81548160ff021916908315150217905550565b61145061176b565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036114bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114b690612eac565b60405180910390fd5b6114c881611b01565b50565b6114d361176b565b60003373ffffffffffffffffffffffffffffffffffffffff16476040516114f990612efd565b60006040518083038185875af1925050503d8060008114611536576040519150601f19603f3d011682016040523d82523d6000602084013e61153b565b606091505b505090508061157f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157690612f5e565b60405180910390fd5b50565b600b8060000154908060010154905082565b60125481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611611576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161160890612ff0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611680576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161167790613082565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161175e91906127f1565b60405180910390a3505050565b61177361159a565b73ffffffffffffffffffffffffffffffffffffffff16611791610f9f565b73ffffffffffffffffffffffffffffffffffffffff16146117e7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117de906130ee565b60405180910390fd5b565b60006117f5848461134d565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff811461186f5781811015611861576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118589061315a565b60405180910390fd5b61186e84848484036115a2565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036118e4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016118db906131c6565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611953576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161194a90613232565b60405180910390fd5b6000611960848484611bc7565b9050600060105461197030610ce1565b10159050601160009054906101000a900460ff1680156119dd57508373ffffffffffffffffffffffffffffffffffffffff16600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16145b80156119e65750805b8015611a3c5750600f60008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611a925750600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b8015611aab5750601160019054906101000a900460ff16155b15611aef576001601160016101000a81548160ff021916908315150217905550611ad3611e1a565b6000601160016101000a81548160ff0219169083151502179055505b611afa858584611fc4565b5050505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611c6a5750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b15611c7757819050611e13565b601360009054906101000a900460ff16611cc6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cbd9061329e565b60405180910390fd5b6000600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff1603611d2757600e549050611ddb565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff1603611dda57600d54905060125483611d8e86610ce1565b611d989190612acc565b1115611dd9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dd090613330565b60405180910390fd5b5b5b600060648285611deb9190613350565b611df591906133c1565b9050611e02863083611fc4565b8084611e0e91906133f2565b925050505b9392505050565b6000611e2530610ce1565b9050600060096040518060400160405290816000820154815260200160018201548152505090506000600b6040518060400160405290816000820154815260200160018201548152505090506000600e54600d54611e839190612acc565b905060008103611e965750505050611fc2565b600082600001518460000151611eac9190612acc565b9050600083602001518560200151611ec49190612acc565b90506000838288611ed59190613350565b611edf91906133c1565b90506000848489611ef09190613350565b611efa91906133c1565b90506000821115611f0f57611f0e8261223a565b5b6000811115611fb957611f29611f2430610ce1565b61228a565b6000601360019054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1647604051611f7190612efd565b60006040518083038185875af1925050503d8060008114611fae576040519150601f19603f3d011682016040523d82523d6000602084013e611fb3565b606091505b50509050505b50505050505050505b565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612033576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202a90613498565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036120a2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120999061352a565b60405180910390fd5b6120ad8383836124cd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612133576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161212a906135bc565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8460405161222191906127f1565b60405180910390a36122348484846124d2565b50505050565b600060028261224991906133c1565b90506000818361225991906133f2565b905060004790506122698361228a565b6000814761227791906133f2565b905061228383826124d7565b5050505050565b6000600267ffffffffffffffff8111156122a7576122a66135dc565b5b6040519080825280602002602001820160405280156122d55781602001602082028036833780820191505090505b50905030816000815181106122ed576122ec61360b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612394573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906123b89190612ba7565b816001815181106123cc576123cb61360b565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff168152505061243330600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115a2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663791ac9478360008430426040518663ffffffff1660e01b8152600401612497959493929190613733565b600060405180830381600087803b1580156124b157600080fd5b505af11580156124c5573d6000803e3d6000fd5b505050505050565b505050565b505050565b61250430600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16846115a2565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1663f305d71982308560008030426040518863ffffffff1660e01b815260040161256b9695949392919061378d565b60606040518083038185885af1158015612589573d6000803e3d6000fd5b50505050506040513d601f19601f820116820180604052508101906125ae91906137ee565b5050505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156125ef5780820151818401526020810190506125d4565b60008484015250505050565b6000601f19601f8301169050919050565b6000612617826125b5565b61262181856125c0565b93506126318185602086016125d1565b61263a816125fb565b840191505092915050565b6000602082019050818103600083015261265f818461260c565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006126978261266c565b9050919050565b6126a78161268c565b81146126b257600080fd5b50565b6000813590506126c48161269e565b92915050565b6000819050919050565b6126dd816126ca565b81146126e857600080fd5b50565b6000813590506126fa816126d4565b92915050565b6000806040838503121561271757612716612667565b5b6000612725858286016126b5565b9250506020612736858286016126eb565b9150509250929050565b60008115159050919050565b61275581612740565b82525050565b6000602082019050612770600083018461274c565b92915050565b61277f81612740565b811461278a57600080fd5b50565b60008135905061279c81612776565b92915050565b600080604083850312156127b9576127b8612667565b5b60006127c7858286016126b5565b92505060206127d88582860161278d565b9150509250929050565b6127eb816126ca565b82525050565b600060208201905061280660008301846127e2565b92915050565b60006020828403121561282257612821612667565b5b6000612830848285016126b5565b91505092915050565b60008060006060848603121561285257612851612667565b5b6000612860868287016126b5565b9350506020612871868287016126b5565b9250506040612882868287016126eb565b9150509250925092565b6128958161268c565b82525050565b60006020820190506128b0600083018461288c565b92915050565b600060ff82169050919050565b6128cc816128b6565b82525050565b60006020820190506128e760008301846128c3565b92915050565b60006020828403121561290357612902612667565b5b6000612911848285016126eb565b91505092915050565b6000819050919050565b600061293f61293a6129358461266c565b61291a565b61266c565b9050919050565b600061295182612924565b9050919050565b600061296382612946565b9050919050565b61297381612958565b82525050565b600060208201905061298e600083018461296a565b92915050565b60006040820190506129a960008301856127e2565b6129b660208301846127e2565b9392505050565b600080604083850312156129d4576129d3612667565b5b60006129e2858286016126eb565b92505060206129f3858286016126eb565b9150509250929050565b60008060408385031215612a1457612a13612667565b5b6000612a22858286016126b5565b9250506020612a33858286016126b5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680612a8457607f821691505b602082108103612a9757612a96612a3d565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000612ad7826126ca565b9150612ae2836126ca565b9250828201905080821115612afa57612af9612a9d565b5b92915050565b7f6e6577206d61726b6574696e672077616c6c65742063616e206e6f742062652060008201527f6465616420616464726573732100000000000000000000000000000000000000602082015250565b6000612b5c602d836125c0565b9150612b6782612b00565b604082019050919050565b60006020820190508181036000830152612b8b81612b4f565b9050919050565b600081519050612ba18161269e565b92915050565b600060208284031215612bbd57612bbc612667565b5b6000612bcb84828501612b92565b91505092915050565b6000604082019050612be9600083018561288c565b612bf6602083018461288c565b9392505050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612c596025836125c0565b9150612c6482612bfd565b604082019050919050565b60006020820190508181036000830152612c8881612c4c565b9050919050565b7f52616469617465203a204d696e696d756d207377617020616d6f756e74206d7560008201527f73742062652067726561746572207468616e2030210000000000000000000000602082015250565b6000612ceb6035836125c0565b9150612cf682612c8f565b604082019050919050565b60006020820190508181036000830152612d1a81612cde565b9050919050565b600081519050612d30816126d4565b92915050565b600060208284031215612d4c57612d4b612667565b5b6000612d5a84828501612d21565b91505092915050565b6000604082019050612d78600083018561288c565b612d8560208301846127e2565b9392505050565b600081519050612d9b81612776565b92915050565b600060208284031215612db757612db6612667565b5b6000612dc584828501612d8c565b91505092915050565b7f74726173666572696e6720746f6b656e73206661696c65642100000000000000600082015250565b6000612e046019836125c0565b9150612e0f82612dce565b602082019050919050565b60006020820190508181036000830152612e3381612df7565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612e966026836125c0565b9150612ea182612e3a565b604082019050919050565b60006020820190508181036000830152612ec581612e89565b9050919050565b600081905092915050565b50565b6000612ee7600083612ecc565b9150612ef282612ed7565b600082019050919050565b6000612f0882612eda565b9150819050919050565b7f7472616e73666572696e6720455448206661696c656400000000000000000000600082015250565b6000612f486016836125c0565b9150612f5382612f12565b602082019050919050565b60006020820190508181036000830152612f7781612f3b565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612fda6024836125c0565b9150612fe582612f7e565b604082019050919050565b6000602082019050818103600083015261300981612fcd565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b600061306c6022836125c0565b915061307782613010565b604082019050919050565b6000602082019050818103600083015261309b8161305f565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006130d86020836125c0565b91506130e3826130a2565b602082019050919050565b60006020820190508181036000830152613107816130cb565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000613144601d836125c0565b915061314f8261310e565b602082019050919050565b6000602082019050818103600083015261317381613137565b9050919050565b7f7472616e736665722066726f6d2061646472657373207a65726f000000000000600082015250565b60006131b0601a836125c0565b91506131bb8261317a565b602082019050919050565b600060208201905081810360008301526131df816131a3565b9050919050565b7f7472616e7366657220746f2061646472657373207a65726f0000000000000000600082015250565b600061321c6018836125c0565b9150613227826131e6565b602082019050919050565b6000602082019050818103600083015261324b8161320f565b9050919050565b7f54726164696e67206973206e6f7420656e61626c656420796574210000000000600082015250565b6000613288601b836125c0565b915061329382613252565b602082019050919050565b600060208201905081810360008301526132b78161327b565b9050919050565b7f43616e206e6f7420627579206d6f7265207468616e206d61782077616c6c657460008201527f2100000000000000000000000000000000000000000000000000000000000000602082015250565b600061331a6021836125c0565b9150613325826132be565b604082019050919050565b600060208201905081810360008301526133498161330d565b9050919050565b600061335b826126ca565b9150613366836126ca565b9250828202613374816126ca565b9150828204841483151761338b5761338a612a9d565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b60006133cc826126ca565b91506133d7836126ca565b9250826133e7576133e6613392565b5b828204905092915050565b60006133fd826126ca565b9150613408836126ca565b92508282039050818111156134205761341f612a9d565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006134826025836125c0565b915061348d82613426565b604082019050919050565b600060208201905081810360008301526134b181613475565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006135146023836125c0565b915061351f826134b8565b604082019050919050565b6000602082019050818103600083015261354381613507565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006135a66026836125c0565b91506135b18261354a565b604082019050919050565b600060208201905081810360008301526135d581613599565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b6000819050919050565b600061365f61365a6136558461363a565b61291a565b6126ca565b9050919050565b61366f81613644565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b6136aa8161268c565b82525050565b60006136bc83836136a1565b60208301905092915050565b6000602082019050919050565b60006136e082613675565b6136ea8185613680565b93506136f583613691565b8060005b8381101561372657815161370d88826136b0565b9750613718836136c8565b9250506001810190506136f9565b5085935050505092915050565b600060a08201905061374860008301886127e2565b6137556020830187613666565b818103604083015261376781866136d5565b9050613776606083018561288c565b61378360808301846127e2565b9695505050505050565b600060c0820190506137a2600083018961288c565b6137af60208301886127e2565b6137bc6040830187613666565b6137c96060830186613666565b6137d6608083018561288c565b6137e360a08301846127e2565b979650505050505050565b60008060006060848603121561380757613806612667565b5b600061381586828701612d21565b935050602061382686828701612d21565b925050604061383786828701612d21565b915050925092509256fea2646970667358221220359209766f3820f219fb9fdcbee03f31f05c1067f68a868601711405d65c87b664736f6c63430008110033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
000000000000000000000000956d1c4b06d1337a80badbc3692dc1cf09bdbbcf
-----Decoded View---------------
Arg [0] : _stakingContract (address): 0x956d1c4B06d1337a80bADbc3692dC1CF09bdbBcF
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 000000000000000000000000956d1c4b06d1337a80badbc3692dc1cf09bdbbcf
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.