ERC-20
Overview
Max Total Supply
1,000,000 METH
Holders
29
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
10,276.940052835241112288 METHValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
Blackout
Compiler Version
v0.8.15+commit.e14f2714
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// blackouterc.com // SPDX-License-Identifier: MIT pragma solidity ^0.8.10; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@uniswap/v2-periphery/contracts/interfaces/IUniswapV2Router02.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Factory.sol'; import '@uniswap/v2-core/contracts/interfaces/IUniswapV2Pair.sol'; interface ImETHAsset { function tokenAllocationCalc() external; function getRewards() external view returns ( uint256); } /** * @title Roles * @dev Library for managing addresses assigned to a Role. */ library Roles { struct Role { mapping (address => bool) bearer; } /** * @dev Give an account access to this role. */ function add(Role storage role, address account) internal { require(!has(role, account), "Roles: account already has role"); role.bearer[account] = true; } /** * @dev Remove an account's access to this role. */ function remove(Role storage role, address account) internal { require(has(role, account), "Roles: account does not have role"); role.bearer[account] = false; } /** * @dev Check if an account has this role. * @return bool */ function has(Role storage role, address account) internal view returns (bool) { require(account != address(0), "Roles: account is the zero address"); return role.bearer[account]; } } contract AdminRole is Context { using Roles for Roles.Role; event AdminAdded(address indexed account); event AdminRemoved(address indexed account); Roles.Role private _admins; constructor() public { _addAdmin(_msgSender()); } modifier onlyAdmin() { require(isAdmin(_msgSender()), 'AdminRole: caller does not have the Minter role'); _; } function isAdmin(address account) public view returns (bool) { return _admins.has(account); } function addAdmin(address account) public virtual onlyAdmin { _addAdmin(account); } function renounceAdmin() public { _removeAdmin(_msgSender()); } function _addAdmin(address account) internal { _admins.add(account); emit AdminAdded(account); } function _removeAdmin(address account) internal { _admins.remove(account); emit AdminRemoved(account); } } contract Blackout is ERC20, AdminRole { address public mETHAsset; address public deadAddress = address(0xdead); IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping(address => bool) public automatedMarketMakerPairs; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; uint256 public buyTax = 3; uint256 public sellTax = 6; bool private swapping; mapping(address => bool) public _isExcludedMaxTransactionAmount; mapping(address => bool) private _isExcludedFromFees; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event ExcludeFromFees(address indexed account, bool isExcluded); constructor() ERC20('Blackout', 'METH') { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); uint256 _totalSupply = 1_000_000 * 1e18; maxTransactionAmount = _totalSupply * 2 / 100; maxWallet = _totalSupply * 3 / 100; swapTokensAtAmount = _totalSupply * 5 / 1000; _mint(msg.sender, _totalSupply); excludeFromFees(msg.sender, true); excludeFromFees(mETHAsset, true); excludeFromFees(address(this), true); excludeFromFees(deadAddress, true); excludeFromMaxTransaction(msg.sender, true); excludeFromMaxTransaction(mETHAsset, true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(deadAddress, true); } receive() external payable {} function enableTrading() external onlyAdmin { tradingActive = true; swapEnabled = true; } function getCirculatingSupply() public view returns (uint256) { return totalSupply() - balanceOf(deadAddress); } function excludeFromMaxTransaction(address updAds, bool isEx) public onlyAdmin { _isExcludedMaxTransactionAmount[updAds] = isEx; } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit SetAutomatedMarketMakerPair(pair, value); } function excludeFromFees(address account, bool excluded) public onlyAdmin { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function updateMethAsset(address _mETHAsset, address _pETH) external onlyAdmin { _isExcludedFromFees[_mETHAsset] = true; _isExcludedMaxTransactionAmount[_mETHAsset] = true; addAdmin(_mETHAsset); _approve(_pETH, _mETHAsset, totalSupply()); mETHAsset = _mETHAsset; } // remove limits after token is stable function removeLimits() external onlyAdmin returns (bool) { limitsInEffect = false; return true; } function updateMaxTxnAmount(uint256 newNum) external onlyAdmin { require( newNum >= ((totalSupply() * 1) / 1000) / 1e18, "Cannot set maxTransactionAmount lower than 0.1%" ); maxTransactionAmount = newNum * (10**18); } function updateBuyTax (uint _buyTax) external onlyAdmin { require(_buyTax <= 3, "buyTax must not be greater than 2% !"); buyTax = _buyTax; } function updateSellTax (uint _sellTax) external onlyAdmin { require(_sellTax <= 6, "sellTax must not be greater than 4% !"); sellTax = _sellTax; } function updateMaxWalletAmount(uint256 newNum) external onlyAdmin { require( newNum >= ((totalSupply() * 5) / 1000) / 1e18, "Cannot set maxWallet lower than 0.5%" ); maxWallet = newNum * (10**18); } function updateSwapEnabled(bool enabled) external onlyAdmin { swapEnabled = enabled; } function updateSwapTokensAtAmount(uint256 _amount) external onlyAdmin { swapTokensAtAmount = _amount; } function setAutomatedMarketMakerPair(address pair, bool value) public onlyAdmin { require( pair != uniswapV2Pair, "The pair cannot be removed from automatedMarketMakerPairs" ); _setAutomatedMarketMakerPair(pair, value); } function _transfer( address from, address to, uint256 amount ) internal override { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); if (amount == 0) { super._transfer(from, to, 0); return; } if (limitsInEffect) { if ( !isAdmin(from) && !isAdmin(to) && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } } if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); require( amount <= ImETHAsset(mETHAsset).getRewards(), "mETHAsset rewards must be smaller than max wallet amount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= swapTokensAtAmount; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(); swapping = false; } bool takeFee = !swapping; // if any account belongs to _isExcludedFromFee account then remove the fee if (_isExcludedFromFees[from] || _isExcludedFromFees[to]) { takeFee = false; } uint256 fees = 0; if (takeFee) { if (automatedMarketMakerPairs[to] && sellTax > 0) { fees = amount * sellTax / 100; } // on buy else if (automatedMarketMakerPairs[from] && buyTax > 0) { fees = amount * buyTax / 100; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } function swapBack() private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance == 0) { return; } if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } swapTokensForEth(contractBalance); } function swapTokensForEth(uint256 tokenAmount) private { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, mETHAsset, block.timestamp ); } }
pragma solidity >=0.5.0; interface IUniswapV2Pair { event Approval(address indexed owner, address indexed spender, uint value); event Transfer(address indexed from, address indexed to, uint value); function name() external pure returns (string memory); function symbol() external pure returns (string memory); function decimals() external pure returns (uint8); function totalSupply() external view returns (uint); function balanceOf(address owner) external view returns (uint); function allowance(address owner, address spender) external view returns (uint); function approve(address spender, uint value) external returns (bool); function transfer(address to, uint value) external returns (bool); function transferFrom(address from, address to, uint value) external returns (bool); function DOMAIN_SEPARATOR() external view returns (bytes32); function PERMIT_TYPEHASH() external pure returns (bytes32); function nonces(address owner) external view returns (uint); function permit(address owner, address spender, uint value, uint deadline, uint8 v, bytes32 r, bytes32 s) external; event Mint(address indexed sender, uint amount0, uint amount1); event Burn(address indexed sender, uint amount0, uint amount1, address indexed to); event Swap( address indexed sender, uint amount0In, uint amount1In, uint amount0Out, uint amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint); function factory() external view returns (address); function token0() external view returns (address); function token1() external view returns (address); function getReserves() external view returns (uint112 reserve0, uint112 reserve1, uint32 blockTimestampLast); function price0CumulativeLast() external view returns (uint); function price1CumulativeLast() external view returns (uint); function kLast() external view returns (uint); function mint(address to) external returns (uint liquidity); function burn(address to) external returns (uint amount0, uint amount1); function swap(uint amount0Out, uint amount1Out, address to, bytes calldata data) external; function skim(address to) external; function sync() external; function initialize(address, address) external; }
pragma solidity >=0.5.0; interface IUniswapV2Factory { event PairCreated(address indexed token0, address indexed token1, address pair, uint); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function getPair(address tokenA, address tokenB) external view returns (address pair); function allPairs(uint) external view returns (address pair); function allPairsLength() external view returns (uint); function createPair(address tokenA, address tokenB) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; }
pragma solidity >=0.6.2; import './IUniswapV2Router01.sol'; interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountETH); function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function swapExactETHForTokensSupportingFeeOnTransferTokens( uint amountOutMin, address[] calldata path, address to, uint deadline ) external payable; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.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.zeppelin.solutions/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; } _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; _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; } _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 {} }
pragma solidity >=0.6.2; interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint amountADesired, uint amountBDesired, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB, uint liquidity); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); function removeLiquidity( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline ) external returns (uint amountA, uint amountB); function removeLiquidityETH( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external returns (uint amountToken, uint amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint liquidity, uint amountAMin, uint amountBMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountA, uint amountB); function removeLiquidityETHWithPermit( address token, uint liquidity, uint amountTokenMin, uint amountETHMin, address to, uint deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint amountToken, uint amountETH); function swapExactTokensForTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapTokensForExactTokens( uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline ) external returns (uint[] memory amounts); function swapExactETHForTokens(uint amountOutMin, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function swapTokensForExactETH(uint amountOut, uint amountInMax, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapExactTokensForETH(uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline) external returns (uint[] memory amounts); function swapETHForExactTokens(uint amountOut, address[] calldata path, address to, uint deadline) external payable returns (uint[] memory amounts); function quote(uint amountA, uint reserveA, uint reserveB) external pure returns (uint amountB); function getAmountOut(uint amountIn, uint reserveIn, uint reserveOut) external pure returns (uint amountOut); function getAmountIn(uint amountOut, uint reserveIn, uint reserveOut) external pure returns (uint amountIn); function getAmountsOut(uint amountIn, address[] calldata path) external view returns (uint[] memory amounts); function getAmountsIn(uint amountOut, address[] calldata path) external view returns (uint[] memory amounts); }
// 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); }
// 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); }
{ "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":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminAdded","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"account","type":"address"}],"name":"AdminRemoved","type":"event"},{"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":"account","type":"address"},{"indexed":false,"internalType":"bool","name":"isExcluded","type":"bool"}],"name":"ExcludeFromFees","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","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":[{"internalType":"address","name":"","type":"address"}],"name":"_isExcludedMaxTransactionAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"addAdmin","outputs":[],"stateMutability":"nonpayable","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":"","type":"address"}],"name":"automatedMarketMakerPairs","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"deadAddress","outputs":[{"internalType":"address","name":"","type":"address"}],"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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"bool","name":"excluded","type":"bool"}],"name":"excludeFromFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"updAds","type":"address"},{"internalType":"bool","name":"isEx","type":"bool"}],"name":"excludeFromMaxTransaction","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"getCirculatingSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"account","type":"address"}],"name":"isAdmin","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"mETHAsset","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTransactionAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceAdmin","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellTax","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"pair","type":"address"},{"internalType":"bool","name":"value","type":"bool"}],"name":"setAutomatedMarketMakerPair","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"swapEnabled","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","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":[],"name":"uniswapV2Pair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"uniswapV2Router","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_buyTax","type":"uint256"}],"name":"updateBuyTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxTxnAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"newNum","type":"uint256"}],"name":"updateMaxWalletAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"_mETHAsset","type":"address"},{"internalType":"address","name":"_pETH","type":"address"}],"name":"updateMethAsset","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_sellTax","type":"uint256"}],"name":"updateSellTax","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bool","name":"enabled","type":"bool"}],"name":"updateSwapEnabled","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_amount","type":"uint256"}],"name":"updateSwapTokensAtAmount","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c060405261dead600760006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506003600c556006600d556001601160006101000a81548160ff0219169083151502179055506000601160016101000a81548160ff0219169083151502179055506000601160026101000a81548160ff021916908315150217905550348015620000af57600080fd5b506040518060400160405280600881526020017f426c61636b6f75740000000000000000000000000000000000000000000000008152506040518060400160405280600481526020017f4d4554480000000000000000000000000000000000000000000000000000000081525081600390816200012d919062000da8565b5080600490816200013f919062000da8565b50505062000162620001566200053760201b60201c565b6200053f60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506200018e816001620005a060201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200020e573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000234919062000ef9565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200029c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620002c2919062000ef9565b6040518363ffffffff1660e01b8152600401620002e192919062000f3c565b6020604051808303816000875af115801562000301573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000327919062000ef9565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250506200036f60a0516001620005a060201b60201c565b6200038460a05160016200065d60201b60201c565b600069d3c21bcecceda100000090506064600282620003a4919062000f98565b620003b0919062001028565b6009819055506064600382620003c7919062000f98565b620003d3919062001028565b600b819055506103e8600582620003eb919062000f98565b620003f7919062001028565b600a819055506200040f3382620006fe60201b60201c565b620004223360016200087660201b60201c565b62000457600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087660201b60201c565b6200046a3060016200087660201b60201c565b6200049f600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1660016200087660201b60201c565b620004b2336001620005a060201b60201c565b620004e7600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005a060201b60201c565b620004fa306001620005a060201b60201c565b6200052f600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff166001620005a060201b60201c565b50506200134a565b600033905090565b6200055a8160056200098360201b6200177a1790919060201c565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b620005c0620005b46200053760201b60201c565b62000a3660201b60201c565b62000602576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005f990620010e7565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000770576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007679062001159565b60405180910390fd5b620007846000838362000a5a60201b60201c565b80600260008282546200079891906200117b565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620007ef91906200117b565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008569190620011e9565b60405180910390a3620008726000838362000a5f60201b60201c565b5050565b620008966200088a6200053760201b60201c565b62000a3660201b60201c565b620008d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008cf90620010e7565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405162000977919062001223565b60405180910390a25050565b62000995828262000a6460201b60201c565b15620009d8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620009cf9062001290565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b600062000a5382600562000a6460201b620018221790919060201c565b9050919050565b505050565b505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000ad7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040162000ace9062001328565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168062000bb057607f821691505b60208210810362000bc65762000bc562000b68565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000c307fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000bf1565b62000c3c868362000bf1565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000c8962000c8362000c7d8462000c54565b62000c5e565b62000c54565b9050919050565b6000819050919050565b62000ca58362000c68565b62000cbd62000cb48262000c90565b84845462000bfe565b825550505050565b600090565b62000cd462000cc5565b62000ce181848462000c9a565b505050565b5b8181101562000d095762000cfd60008262000cca565b60018101905062000ce7565b5050565b601f82111562000d585762000d228162000bcc565b62000d2d8462000be1565b8101602085101562000d3d578190505b62000d5562000d4c8562000be1565b83018262000ce6565b50505b505050565b600082821c905092915050565b600062000d7d6000198460080262000d5d565b1980831691505092915050565b600062000d98838362000d6a565b9150826002028217905092915050565b62000db38262000b2e565b67ffffffffffffffff81111562000dcf5762000dce62000b39565b5b62000ddb825462000b97565b62000de882828562000d0d565b600060209050601f83116001811462000e20576000841562000e0b578287015190505b62000e17858262000d8a565b86555062000e87565b601f19841662000e308662000bcc565b60005b8281101562000e5a5784890151825560018201915060208501945060208101905062000e33565b8683101562000e7a578489015162000e76601f89168262000d6a565b8355505b6001600288020188555050505b505050505050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ec18262000e94565b9050919050565b62000ed38162000eb4565b811462000edf57600080fd5b50565b60008151905062000ef38162000ec8565b92915050565b60006020828403121562000f125762000f1162000e8f565b5b600062000f228482850162000ee2565b91505092915050565b62000f368162000eb4565b82525050565b600060408201905062000f53600083018562000f2b565b62000f62602083018462000f2b565b9392505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000fa58262000c54565b915062000fb28362000c54565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000fee5762000fed62000f69565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000620010358262000c54565b9150620010428362000c54565b92508262001055576200105462000ff9565b5b828204905092915050565b600082825260208201905092915050565b7f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060008201527f746865204d696e74657220726f6c650000000000000000000000000000000000602082015250565b6000620010cf602f8362001060565b9150620010dc8262001071565b604082019050919050565b600060208201905081810360008301526200110281620010c0565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062001141601f8362001060565b91506200114e8262001109565b602082019050919050565b60006020820190508181036000830152620011748162001132565b9050919050565b6000620011888262000c54565b9150620011958362000c54565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115620011cd57620011cc62000f69565b5b828201905092915050565b620011e38162000c54565b82525050565b6000602082019050620012006000830184620011d8565b92915050565b60008115159050919050565b6200121d8162001206565b82525050565b60006020820190506200123a600083018462001212565b92915050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b600062001278601f8362001060565b9150620012858262001240565b602082019050919050565b60006020820190508181036000830152620012ab8162001269565b9050919050565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006200131060228362001060565b91506200131d82620012b2565b604082019050919050565b60006020820190508181036000830152620013438162001301565b9050919050565b60805160a0516140696200138c60003960008181610dc601526111e2015260008181610b2301528181612ab401528181612b950152612bbc01526140696000f3fe60806040526004361061024a5760003560e01c806370a0823111610139578063a9059cbb116100b6578063c8c8ebe41161007a578063c8c8ebe41461089d578063cc1776d3146108c8578063d257b34f146108f3578063dd62ed3e1461091c578063e2f4560514610959578063f8b45b051461098457610251565b8063a9059cbb146107a6578063b62496f5146107e3578063bbc0c74214610820578063c02466681461084b578063c18bc1951461087457610251565b8063924de9b7116100fd578063924de9b7146106c357806395d89b41146106ec5780639a7a23d6146107175780639b809a5f14610740578063a457c2d71461076957610251565b806370a0823114610604578063751039fc146106415780637571336a1461066c5780638a8c523c146106955780638bad0c0a146106ac57610251565b80632b112e49116101c75780634a62bb651161018b5780634a62bb651461052f5780634f7041a51461055a5780636b58fb26146105855780636ddd1713146105b057806370480275146105db57610251565b80632b112e4914610448578063313ce56714610473578063395093511461049e578063436d3340146104db57806349bd5a5e1461050457610251565b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461037a57806323b872dd146103a357806324d7806c146103e057806327c8f8351461041d57610251565b806306fdde0314610256578063095ea7b31461028157806310d5de53146102be57806312185a39146102fb5780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b6109af565b6040516102789190612d0d565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a39190612dc8565b610a41565b6040516102b59190612e23565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612e3e565b610a64565b6040516102f29190612e23565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612e6b565b610a84565b005b34801561033057600080fd5b50610339610b21565b6040516103469190612ef7565b60405180910390f35b34801561035b57600080fd5b50610364610b45565b6040516103719190612f21565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e6b565b610b4f565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612f3c565b610c31565b6040516103d79190612e23565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612e3e565b610c60565b6040516104149190612e23565b60405180910390f35b34801561042957600080fd5b50610432610c7d565b60405161043f9190612f9e565b60405180910390f35b34801561045457600080fd5b5061045d610ca3565b60405161046a9190612f21565b60405180910390f35b34801561047f57600080fd5b50610488610ce7565b6040516104959190612fd5565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612dc8565b610cf0565b6040516104d29190612e23565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612e6b565b610d27565b005b34801561051057600080fd5b50610519610dc4565b6040516105269190612f9e565b60405180910390f35b34801561053b57600080fd5b50610544610de8565b6040516105519190612e23565b60405180910390f35b34801561056657600080fd5b5061056f610dfb565b60405161057c9190612f21565b60405180910390f35b34801561059157600080fd5b5061059a610e01565b6040516105a79190612f9e565b60405180910390f35b3480156105bc57600080fd5b506105c5610e27565b6040516105d29190612e23565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612e3e565b610e3a565b005b34801561061057600080fd5b5061062b60048036038101906106269190612e3e565b610e95565b6040516106389190612f21565b60405180910390f35b34801561064d57600080fd5b50610656610edd565b6040516106639190612e23565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e919061301c565b610f50565b005b3480156106a157600080fd5b506106aa610ffa565b005b3480156106b857600080fd5b506106c1611081565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061305c565b611093565b005b3480156106f857600080fd5b506107016110ff565b60405161070e9190612d0d565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061301c565b611191565b005b34801561074c57600080fd5b5061076760048036038101906107629190613089565b61127c565b005b34801561077557600080fd5b50610790600480360381019061078b9190612dc8565b6113db565b60405161079d9190612e23565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190612dc8565b611452565b6040516107da9190612e23565b60405180910390f35b3480156107ef57600080fd5b5061080a60048036038101906108059190612e3e565b611475565b6040516108179190612e23565b60405180910390f35b34801561082c57600080fd5b50610835611495565b6040516108429190612e23565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d919061301c565b6114a8565b005b34801561088057600080fd5b5061089b60048036038101906108969190612e6b565b6115a0565b005b3480156108a957600080fd5b506108b2611682565b6040516108bf9190612f21565b60405180910390f35b3480156108d457600080fd5b506108dd611688565b6040516108ea9190612f21565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190612e6b565b61168e565b005b34801561092857600080fd5b50610943600480360381019061093e9190613089565b6116e7565b6040516109509190612f21565b60405180910390f35b34801561096557600080fd5b5061096e61176e565b60405161097b9190612f21565b60405180910390f35b34801561099057600080fd5b50610999611774565b6040516109a69190612f21565b60405180910390f35b6060600380546109be906130f8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea906130f8565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b5050505050905090565b600080610a4c6118e9565b9050610a598185856118f1565b600191505092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610a94610a8f6118e9565b610c60565b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca9061319b565b60405180910390fd5b6006811115610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061322d565b60405180910390fd5b80600d8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b610b5f610b5a6118e9565b610c60565b610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b959061319b565b60405180910390fd5b670de0b6b3a76400006103e86001610bb4610b45565b610bbe919061327c565b610bc89190613305565b610bd29190613305565b811015610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906133a8565b60405180910390fd5b670de0b6b3a764000081610c28919061327c565b60098190555050565b600080610c3c6118e9565b9050610c49858285611aba565b610c54858585611b46565b60019150509392505050565b6000610c7682600561182290919063ffffffff16565b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610cd0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e95565b610cd8610b45565b610ce291906133c8565b905090565b60006012905090565b600080610cfb6118e9565b9050610d1c818585610d0d85896116e7565b610d1791906133fc565b6118f1565b600191505092915050565b610d37610d326118e9565b610c60565b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061319b565b60405180910390fd5b6003811115610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db1906134c4565b60405180910390fd5b80600c8190555050565b7f000000000000000000000000000000000000000000000000000000000000000081565b601160009054906101000a900460ff1681565b600c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160029054906101000a900460ff1681565b610e4a610e456118e9565b610c60565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e809061319b565b60405180910390fd5b610e9281612540565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610eef610eea6118e9565b610c60565b610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061319b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b610f60610f5b6118e9565b610c60565b610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061319b565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61100a6110056118e9565b610c60565b611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061319b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff021916908315150217905550565b61109161108c6118e9565b61259a565b565b6110a361109e6118e9565b610c60565b6110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d99061319b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461110e906130f8565b80601f016020809104026020016040519081016040528092919081815260200182805461113a906130f8565b80156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b5050505050905090565b6111a161119c6118e9565b610c60565b6111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d79061319b565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613556565b60405180910390fd5b61127882826125f4565b5050565b61128c6112876118e9565b610c60565b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c29061319b565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061138482610e3a565b6113968183611391610b45565b6118f1565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000806113e66118e9565b905060006113f482866116e7565b905083811015611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906135e8565b60405180910390fd5b61144682868684036118f1565b60019250505092915050565b60008061145d6118e9565b905061146a818585611b46565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6114b86114b36118e9565b610c60565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061319b565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115949190612e23565b60405180910390a25050565b6115b06115ab6118e9565b610c60565b6115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e69061319b565b60405180910390fd5b670de0b6b3a76400006103e86005611605610b45565b61160f919061327c565b6116199190613305565b6116239190613305565b811015611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c9061367a565b60405180910390fd5b670de0b6b3a764000081611679919061327c565b600b8190555050565b60095481565b600d5481565b61169e6116996118e9565b610c60565b6116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d49061319b565b60405180910390fd5b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600b5481565b6117848282611822565b156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906136e6565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613778565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061380a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c69061389c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611aad9190612f21565b60405180910390a3505050565b6000611ac684846116e7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b405781811015611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613908565b60405180910390fd5b611b3f84848484036118f1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac9061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613a2c565b60405180910390fd5b60008103611c3d57611c3883836000612695565b61253b565b601160009054906101000a900460ff16156121b157611c5b83610c60565b158015611c6e5750611c6c82610c60565b155b8015611ca75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ce1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cfa5750600e60009054906101000a900460ff16155b15611df557601160019054906101000a900460ff16611df457601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611db45750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90613a98565b60405180910390fd5b5b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e985750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f3f57600954811115611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613b2a565b60405180910390fd5b600b54611eee83610e95565b82611ef991906133fc565b1115611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3190613b96565b60405180910390fd5b6121b0565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fe25750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121045760095481111561202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390613c28565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630572b0cc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bd9190613c5d565b8111156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690613cfc565b60405180910390fd5b6121af565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121ae57600b5461216183610e95565b8261216c91906133fc565b11156121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490613b96565b60405180910390fd5b5b5b5b5b60006121bc30610e95565b90506000600a5482101590508080156121e15750601160029054906101000a900460ff165b80156121fa5750600e60009054906101000a900460ff16155b80156122505750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122a65750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122fc5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612340576001600e60006101000a81548160ff021916908315150217905550612324612914565b6000600e60006101000a81548160ff0219169083151502179055505b6000600e60009054906101000a900460ff16159050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f65750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561240057600090505b6000811561252b57600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561246357506000600d54115b15612489576064600d5486612478919061327c565b6124829190613305565b9050612507565b600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124e457506000600c54115b15612506576064600c54866124f9919061327c565b6125039190613305565b90505b5b600081111561251c5761251b873083612695565b5b808561252891906133c8565b94505b612536878787612695565b505050505b505050565b61255481600561177a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b6125ae81600561296490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb9061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613a2c565b60405180910390fd5b61277e838383612a0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90613d8e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289791906133fc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128fb9190612f21565b60405180910390a361290e848484612a10565b50505050565b600061291f30610e95565b90506000810361292f5750612962565b6014600a5461293e919061327c565b811115612957576014600a54612954919061327c565b90505b61296081612a15565b505b565b61296e8282611822565b6129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490613e20565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b6000600267ffffffffffffffff811115612a3257612a31613e40565b5b604051908082528060200260200182016040528015612a605781602001602082028036833780820191505090505b5090503081600081518110612a7857612a77613e6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b419190613eb3565b81600181518110612b5557612b54613e6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bba307f0000000000000000000000000000000000000000000000000000000000000000846118f1565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612c3e959493929190613fd9565b600060405180830381600087803b158015612c5857600080fd5b505af1158015612c6c573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cae578082015181840152602081019050612c93565b83811115612cbd576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cdf82612c74565b612ce98185612c7f565b9350612cf9818560208601612c90565b612d0281612cc3565b840191505092915050565b60006020820190508181036000830152612d278184612cd4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5f82612d34565b9050919050565b612d6f81612d54565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b6000819050919050565b612da581612d92565b8114612db057600080fd5b50565b600081359050612dc281612d9c565b92915050565b60008060408385031215612ddf57612dde612d2f565b5b6000612ded85828601612d7d565b9250506020612dfe85828601612db3565b9150509250929050565b60008115159050919050565b612e1d81612e08565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612d2f565b5b6000612e6284828501612d7d565b91505092915050565b600060208284031215612e8157612e80612d2f565b5b6000612e8f84828501612db3565b91505092915050565b6000819050919050565b6000612ebd612eb8612eb384612d34565b612e98565b612d34565b9050919050565b6000612ecf82612ea2565b9050919050565b6000612ee182612ec4565b9050919050565b612ef181612ed6565b82525050565b6000602082019050612f0c6000830184612ee8565b92915050565b612f1b81612d92565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600080600060608486031215612f5557612f54612d2f565b5b6000612f6386828701612d7d565b9350506020612f7486828701612d7d565b9250506040612f8586828701612db3565b9150509250925092565b612f9881612d54565b82525050565b6000602082019050612fb36000830184612f8f565b92915050565b600060ff82169050919050565b612fcf81612fb9565b82525050565b6000602082019050612fea6000830184612fc6565b92915050565b612ff981612e08565b811461300457600080fd5b50565b60008135905061301681612ff0565b92915050565b6000806040838503121561303357613032612d2f565b5b600061304185828601612d7d565b925050602061305285828601613007565b9150509250929050565b60006020828403121561307257613071612d2f565b5b600061308084828501613007565b91505092915050565b600080604083850312156130a05761309f612d2f565b5b60006130ae85828601612d7d565b92505060206130bf85828601612d7d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311057607f821691505b602082108103613123576131226130c9565b5b50919050565b7f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060008201527f746865204d696e74657220726f6c650000000000000000000000000000000000602082015250565b6000613185602f83612c7f565b915061319082613129565b604082019050919050565b600060208201905081810360008301526131b481613178565b9050919050565b7f73656c6c546178206d757374206e6f742062652067726561746572207468616e60008201527f2034252021000000000000000000000000000000000000000000000000000000602082015250565b6000613217602583612c7f565b9150613222826131bb565b604082019050919050565b600060208201905081810360008301526132468161320a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328782612d92565b915061329283612d92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132cb576132ca61324d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061331082612d92565b915061331b83612d92565b92508261332b5761332a6132d6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613392602f83612c7f565b915061339d82613336565b604082019050919050565b600060208201905081810360008301526133c181613385565b9050919050565b60006133d382612d92565b91506133de83612d92565b9250828210156133f1576133f061324d565b5b828203905092915050565b600061340782612d92565b915061341283612d92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134475761344661324d565b5b828201905092915050565b7f627579546178206d757374206e6f742062652067726561746572207468616e2060008201527f3225202100000000000000000000000000000000000000000000000000000000602082015250565b60006134ae602483612c7f565b91506134b982613452565b604082019050919050565b600060208201905081810360008301526134dd816134a1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613540603983612c7f565b915061354b826134e4565b604082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135d2602583612c7f565b91506135dd82613576565b604082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613664602483612c7f565b915061366f82613608565b604082019050919050565b6000602082019050818103600083015261369381613657565b9050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b60006136d0601f83612c7f565b91506136db8261369a565b602082019050919050565b600060208201905081810360008301526136ff816136c3565b9050919050565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613762602283612c7f565b915061376d82613706565b604082019050919050565b6000602082019050818103600083015261379181613755565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137f4602483612c7f565b91506137ff82613798565b604082019050919050565b60006020820190508181036000830152613823816137e7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613886602283612c7f565b91506138918261382a565b604082019050919050565b600060208201905081810360008301526138b581613879565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006138f2601d83612c7f565b91506138fd826138bc565b602082019050919050565b60006020820190508181036000830152613921816138e5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613984602583612c7f565b915061398f82613928565b604082019050919050565b600060208201905081810360008301526139b381613977565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a16602383612c7f565b9150613a21826139ba565b604082019050919050565b60006020820190508181036000830152613a4581613a09565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a82601683612c7f565b9150613a8d82613a4c565b602082019050919050565b60006020820190508181036000830152613ab181613a75565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613b14603583612c7f565b9150613b1f82613ab8565b604082019050919050565b60006020820190508181036000830152613b4381613b07565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b80601383612c7f565b9150613b8b82613b4a565b602082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613c12603683612c7f565b9150613c1d82613bb6565b604082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b600081519050613c5781612d9c565b92915050565b600060208284031215613c7357613c72612d2f565b5b6000613c8184828501613c48565b91505092915050565b7f6d45544841737365742072657761726473206d75737420626520736d616c6c6560008201527f72207468616e206d61782077616c6c657420616d6f756e742e00000000000000602082015250565b6000613ce6603983612c7f565b9150613cf182613c8a565b604082019050919050565b60006020820190508181036000830152613d1581613cd9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d78602683612c7f565b9150613d8382613d1c565b604082019050919050565b60006020820190508181036000830152613da781613d6b565b9050919050565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e0a602183612c7f565b9150613e1582613dae565b604082019050919050565b60006020820190508181036000830152613e3981613dfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613ead81612d66565b92915050565b600060208284031215613ec957613ec8612d2f565b5b6000613ed784828501613e9e565b91505092915050565b6000819050919050565b6000613f05613f00613efb84613ee0565b612e98565b612d92565b9050919050565b613f1581613eea565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f5081612d54565b82525050565b6000613f628383613f47565b60208301905092915050565b6000602082019050919050565b6000613f8682613f1b565b613f908185613f26565b9350613f9b83613f37565b8060005b83811015613fcc578151613fb38882613f56565b9750613fbe83613f6e565b925050600181019050613f9f565b5085935050505092915050565b600060a082019050613fee6000830188612f12565b613ffb6020830187613f0c565b818103604083015261400d8186613f7b565b905061401c6060830185612f8f565b6140296080830184612f12565b969550505050505056fea2646970667358221220c991d97a1d96a8ee99c08b7e81da3d178b1c19332d211889c42ac77704952b1864736f6c634300080f0033
Deployed Bytecode
0x60806040526004361061024a5760003560e01c806370a0823111610139578063a9059cbb116100b6578063c8c8ebe41161007a578063c8c8ebe41461089d578063cc1776d3146108c8578063d257b34f146108f3578063dd62ed3e1461091c578063e2f4560514610959578063f8b45b051461098457610251565b8063a9059cbb146107a6578063b62496f5146107e3578063bbc0c74214610820578063c02466681461084b578063c18bc1951461087457610251565b8063924de9b7116100fd578063924de9b7146106c357806395d89b41146106ec5780639a7a23d6146107175780639b809a5f14610740578063a457c2d71461076957610251565b806370a0823114610604578063751039fc146106415780637571336a1461066c5780638a8c523c146106955780638bad0c0a146106ac57610251565b80632b112e49116101c75780634a62bb651161018b5780634a62bb651461052f5780634f7041a51461055a5780636b58fb26146105855780636ddd1713146105b057806370480275146105db57610251565b80632b112e4914610448578063313ce56714610473578063395093511461049e578063436d3340146104db57806349bd5a5e1461050457610251565b806318160ddd1161020e57806318160ddd1461034f578063203e727e1461037a57806323b872dd146103a357806324d7806c146103e057806327c8f8351461041d57610251565b806306fdde0314610256578063095ea7b31461028157806310d5de53146102be57806312185a39146102fb5780631694505e1461032457610251565b3661025157005b600080fd5b34801561026257600080fd5b5061026b6109af565b6040516102789190612d0d565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a39190612dc8565b610a41565b6040516102b59190612e23565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190612e3e565b610a64565b6040516102f29190612e23565b60405180910390f35b34801561030757600080fd5b50610322600480360381019061031d9190612e6b565b610a84565b005b34801561033057600080fd5b50610339610b21565b6040516103469190612ef7565b60405180910390f35b34801561035b57600080fd5b50610364610b45565b6040516103719190612f21565b60405180910390f35b34801561038657600080fd5b506103a1600480360381019061039c9190612e6b565b610b4f565b005b3480156103af57600080fd5b506103ca60048036038101906103c59190612f3c565b610c31565b6040516103d79190612e23565b60405180910390f35b3480156103ec57600080fd5b5061040760048036038101906104029190612e3e565b610c60565b6040516104149190612e23565b60405180910390f35b34801561042957600080fd5b50610432610c7d565b60405161043f9190612f9e565b60405180910390f35b34801561045457600080fd5b5061045d610ca3565b60405161046a9190612f21565b60405180910390f35b34801561047f57600080fd5b50610488610ce7565b6040516104959190612fd5565b60405180910390f35b3480156104aa57600080fd5b506104c560048036038101906104c09190612dc8565b610cf0565b6040516104d29190612e23565b60405180910390f35b3480156104e757600080fd5b5061050260048036038101906104fd9190612e6b565b610d27565b005b34801561051057600080fd5b50610519610dc4565b6040516105269190612f9e565b60405180910390f35b34801561053b57600080fd5b50610544610de8565b6040516105519190612e23565b60405180910390f35b34801561056657600080fd5b5061056f610dfb565b60405161057c9190612f21565b60405180910390f35b34801561059157600080fd5b5061059a610e01565b6040516105a79190612f9e565b60405180910390f35b3480156105bc57600080fd5b506105c5610e27565b6040516105d29190612e23565b60405180910390f35b3480156105e757600080fd5b5061060260048036038101906105fd9190612e3e565b610e3a565b005b34801561061057600080fd5b5061062b60048036038101906106269190612e3e565b610e95565b6040516106389190612f21565b60405180910390f35b34801561064d57600080fd5b50610656610edd565b6040516106639190612e23565b60405180910390f35b34801561067857600080fd5b50610693600480360381019061068e919061301c565b610f50565b005b3480156106a157600080fd5b506106aa610ffa565b005b3480156106b857600080fd5b506106c1611081565b005b3480156106cf57600080fd5b506106ea60048036038101906106e5919061305c565b611093565b005b3480156106f857600080fd5b506107016110ff565b60405161070e9190612d0d565b60405180910390f35b34801561072357600080fd5b5061073e6004803603810190610739919061301c565b611191565b005b34801561074c57600080fd5b5061076760048036038101906107629190613089565b61127c565b005b34801561077557600080fd5b50610790600480360381019061078b9190612dc8565b6113db565b60405161079d9190612e23565b60405180910390f35b3480156107b257600080fd5b506107cd60048036038101906107c89190612dc8565b611452565b6040516107da9190612e23565b60405180910390f35b3480156107ef57600080fd5b5061080a60048036038101906108059190612e3e565b611475565b6040516108179190612e23565b60405180910390f35b34801561082c57600080fd5b50610835611495565b6040516108429190612e23565b60405180910390f35b34801561085757600080fd5b50610872600480360381019061086d919061301c565b6114a8565b005b34801561088057600080fd5b5061089b60048036038101906108969190612e6b565b6115a0565b005b3480156108a957600080fd5b506108b2611682565b6040516108bf9190612f21565b60405180910390f35b3480156108d457600080fd5b506108dd611688565b6040516108ea9190612f21565b60405180910390f35b3480156108ff57600080fd5b5061091a60048036038101906109159190612e6b565b61168e565b005b34801561092857600080fd5b50610943600480360381019061093e9190613089565b6116e7565b6040516109509190612f21565b60405180910390f35b34801561096557600080fd5b5061096e61176e565b60405161097b9190612f21565b60405180910390f35b34801561099057600080fd5b50610999611774565b6040516109a69190612f21565b60405180910390f35b6060600380546109be906130f8565b80601f01602080910402602001604051908101604052809291908181526020018280546109ea906130f8565b8015610a375780601f10610a0c57610100808354040283529160200191610a37565b820191906000526020600020905b815481529060010190602001808311610a1a57829003601f168201915b5050505050905090565b600080610a4c6118e9565b9050610a598185856118f1565b600191505092915050565b600f6020528060005260406000206000915054906101000a900460ff1681565b610a94610a8f6118e9565b610c60565b610ad3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aca9061319b565b60405180910390fd5b6006811115610b17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b0e9061322d565b60405180910390fd5b80600d8190555050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b610b5f610b5a6118e9565b610c60565b610b9e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b959061319b565b60405180910390fd5b670de0b6b3a76400006103e86001610bb4610b45565b610bbe919061327c565b610bc89190613305565b610bd29190613305565b811015610c14576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c0b906133a8565b60405180910390fd5b670de0b6b3a764000081610c28919061327c565b60098190555050565b600080610c3c6118e9565b9050610c49858285611aba565b610c54858585611b46565b60019150509392505050565b6000610c7682600561182290919063ffffffff16565b9050919050565b600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610cd0600760009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610e95565b610cd8610b45565b610ce291906133c8565b905090565b60006012905090565b600080610cfb6118e9565b9050610d1c818585610d0d85896116e7565b610d1791906133fc565b6118f1565b600191505092915050565b610d37610d326118e9565b610c60565b610d76576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d6d9061319b565b60405180910390fd5b6003811115610dba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db1906134c4565b60405180910390fd5b80600c8190555050565b7f000000000000000000000000e008b17f96f0794904823a9a66483e44ed08c63681565b601160009054906101000a900460ff1681565b600c5481565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b601160029054906101000a900460ff1681565b610e4a610e456118e9565b610c60565b610e89576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e809061319b565b60405180910390fd5b610e9281612540565b50565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6000610eef610eea6118e9565b610c60565b610f2e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f259061319b565b60405180910390fd5b6000601160006101000a81548160ff0219169083151502179055506001905090565b610f60610f5b6118e9565b610c60565b610f9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f969061319b565b60405180910390fd5b80600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b61100a6110056118e9565b610c60565b611049576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110409061319b565b60405180910390fd5b6001601160016101000a81548160ff0219169083151502179055506001601160026101000a81548160ff021916908315150217905550565b61109161108c6118e9565b61259a565b565b6110a361109e6118e9565b610c60565b6110e2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110d99061319b565b60405180910390fd5b80601160026101000a81548160ff02191690831515021790555050565b60606004805461110e906130f8565b80601f016020809104026020016040519081016040528092919081815260200182805461113a906130f8565b80156111875780601f1061115c57610100808354040283529160200191611187565b820191906000526020600020905b81548152906001019060200180831161116a57829003601f168201915b5050505050905090565b6111a161119c6118e9565b610c60565b6111e0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111d79061319b565b60405180910390fd5b7f000000000000000000000000e008b17f96f0794904823a9a66483e44ed08c63673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361126e576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161126590613556565b60405180910390fd5b61127882826125f4565b5050565b61128c6112876118e9565b610c60565b6112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c29061319b565b60405180910390fd5b6001601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555061138482610e3a565b6113968183611391610b45565b6118f1565b81600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055505050565b6000806113e66118e9565b905060006113f482866116e7565b905083811015611439576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611430906135e8565b60405180910390fd5b61144682868684036118f1565b60019250505092915050565b60008061145d6118e9565b905061146a818585611b46565b600191505092915050565b60086020528060005260406000206000915054906101000a900460ff1681565b601160019054906101000a900460ff1681565b6114b86114b36118e9565b610c60565b6114f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114ee9061319b565b60405180910390fd5b80601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516115949190612e23565b60405180910390a25050565b6115b06115ab6118e9565b610c60565b6115ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115e69061319b565b60405180910390fd5b670de0b6b3a76400006103e86005611605610b45565b61160f919061327c565b6116199190613305565b6116239190613305565b811015611665576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161165c9061367a565b60405180910390fd5b670de0b6b3a764000081611679919061327c565b600b8190555050565b60095481565b600d5481565b61169e6116996118e9565b610c60565b6116dd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116d49061319b565b60405180910390fd5b80600a8190555050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b600a5481565b600b5481565b6117848282611822565b156117c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117bb906136e6565b60405180910390fd5b60018260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611892576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161188990613778565b60405180910390fd5b8260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16905092915050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611960576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119579061380a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036119cf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016119c69061389c565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611aad9190612f21565b60405180910390a3505050565b6000611ac684846116e7565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114611b405781811015611b32576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b2990613908565b60405180910390fd5b611b3f84848484036118f1565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611bb5576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bac9061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c24576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c1b90613a2c565b60405180910390fd5b60008103611c3d57611c3883836000612695565b61253b565b601160009054906101000a900460ff16156121b157611c5b83610c60565b158015611c6e5750611c6c82610c60565b155b8015611ca75750600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611ce1575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611cfa5750600e60009054906101000a900460ff16155b15611df557601160019054906101000a900460ff16611df457601060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680611db45750601060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b611df3576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611dea90613a98565b60405180910390fd5b5b5b600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611e985750600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611f3f57600954811115611ee2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ed990613b2a565b60405180910390fd5b600b54611eee83610e95565b82611ef991906133fc565b1115611f3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f3190613b96565b60405180910390fd5b6121b0565b600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168015611fe25750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156121045760095481111561202c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202390613c28565b60405180910390fd5b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16630572b0cc6040518163ffffffff1660e01b8152600401602060405180830381865afa158015612099573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906120bd9190613c5d565b8111156120ff576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016120f690613cfc565b60405180910390fd5b6121af565b600f60008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166121ae57600b5461216183610e95565b8261216c91906133fc565b11156121ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016121a490613b96565b60405180910390fd5b5b5b5b5b60006121bc30610e95565b90506000600a5482101590508080156121e15750601160029054906101000a900460ff165b80156121fa5750600e60009054906101000a900460ff16155b80156122505750600860008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122a65750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156122fc5750601060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15612340576001600e60006101000a81548160ff021916908315150217905550612324612914565b6000600e60006101000a81548160ff0219169083151502179055505b6000600e60009054906101000a900460ff16159050601060008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806123f65750601060008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b1561240057600090505b6000811561252b57600860008773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16801561246357506000600d54115b15612489576064600d5486612478919061327c565b6124829190613305565b9050612507565b600860008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1680156124e457506000600c54115b15612506576064600c54866124f9919061327c565b6125039190613305565b90505b5b600081111561251c5761251b873083612695565b5b808561252891906133c8565b94505b612536878787612695565b505050505b505050565b61255481600561177a90919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167f44d6d25963f097ad14f29f06854a01f575648a1ef82f30e562ccd3889717e33960405160405180910390a250565b6125ae81600561296490919063ffffffff16565b8073ffffffffffffffffffffffffffffffffffffffff167fa3b62bc36326052d97ea62d63c3d60308ed4c3ea8ac079dd8499f1e9c4f80c0f60405160405180910390a250565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603612704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016126fb9061399a565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612773576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161276a90613a2c565b60405180910390fd5b61277e838383612a0b565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015612804576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016127fb90613d8e565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461289791906133fc565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516128fb9190612f21565b60405180910390a361290e848484612a10565b50505050565b600061291f30610e95565b90506000810361292f5750612962565b6014600a5461293e919061327c565b811115612957576014600a54612954919061327c565b90505b61296081612a15565b505b565b61296e8282611822565b6129ad576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016129a490613e20565b60405180910390fd5b60008260000160008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b505050565b505050565b6000600267ffffffffffffffff811115612a3257612a31613e40565b5b604051908082528060200260200182016040528015612a605781602001602082028036833780820191505090505b5090503081600081518110612a7857612a77613e6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612b1d573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190612b419190613eb3565b81600181518110612b5557612b54613e6f565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612bba307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d846118f1565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac94783600084600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518663ffffffff1660e01b8152600401612c3e959493929190613fd9565b600060405180830381600087803b158015612c5857600080fd5b505af1158015612c6c573d6000803e3d6000fd5b505050505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015612cae578082015181840152602081019050612c93565b83811115612cbd576000848401525b50505050565b6000601f19601f8301169050919050565b6000612cdf82612c74565b612ce98185612c7f565b9350612cf9818560208601612c90565b612d0281612cc3565b840191505092915050565b60006020820190508181036000830152612d278184612cd4565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000612d5f82612d34565b9050919050565b612d6f81612d54565b8114612d7a57600080fd5b50565b600081359050612d8c81612d66565b92915050565b6000819050919050565b612da581612d92565b8114612db057600080fd5b50565b600081359050612dc281612d9c565b92915050565b60008060408385031215612ddf57612dde612d2f565b5b6000612ded85828601612d7d565b9250506020612dfe85828601612db3565b9150509250929050565b60008115159050919050565b612e1d81612e08565b82525050565b6000602082019050612e386000830184612e14565b92915050565b600060208284031215612e5457612e53612d2f565b5b6000612e6284828501612d7d565b91505092915050565b600060208284031215612e8157612e80612d2f565b5b6000612e8f84828501612db3565b91505092915050565b6000819050919050565b6000612ebd612eb8612eb384612d34565b612e98565b612d34565b9050919050565b6000612ecf82612ea2565b9050919050565b6000612ee182612ec4565b9050919050565b612ef181612ed6565b82525050565b6000602082019050612f0c6000830184612ee8565b92915050565b612f1b81612d92565b82525050565b6000602082019050612f366000830184612f12565b92915050565b600080600060608486031215612f5557612f54612d2f565b5b6000612f6386828701612d7d565b9350506020612f7486828701612d7d565b9250506040612f8586828701612db3565b9150509250925092565b612f9881612d54565b82525050565b6000602082019050612fb36000830184612f8f565b92915050565b600060ff82169050919050565b612fcf81612fb9565b82525050565b6000602082019050612fea6000830184612fc6565b92915050565b612ff981612e08565b811461300457600080fd5b50565b60008135905061301681612ff0565b92915050565b6000806040838503121561303357613032612d2f565b5b600061304185828601612d7d565b925050602061305285828601613007565b9150509250929050565b60006020828403121561307257613071612d2f565b5b600061308084828501613007565b91505092915050565b600080604083850312156130a05761309f612d2f565b5b60006130ae85828601612d7d565b92505060206130bf85828601612d7d565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061311057607f821691505b602082108103613123576131226130c9565b5b50919050565b7f41646d696e526f6c653a2063616c6c657220646f6573206e6f7420686176652060008201527f746865204d696e74657220726f6c650000000000000000000000000000000000602082015250565b6000613185602f83612c7f565b915061319082613129565b604082019050919050565b600060208201905081810360008301526131b481613178565b9050919050565b7f73656c6c546178206d757374206e6f742062652067726561746572207468616e60008201527f2034252021000000000000000000000000000000000000000000000000000000602082015250565b6000613217602583612c7f565b9150613222826131bb565b604082019050919050565b600060208201905081810360008301526132468161320a565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061328782612d92565b915061329283612d92565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156132cb576132ca61324d565b5b828202905092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061331082612d92565b915061331b83612d92565b92508261332b5761332a6132d6565b5b828204905092915050565b7f43616e6e6f7420736574206d61785472616e73616374696f6e416d6f756e742060008201527f6c6f776572207468616e20302e31250000000000000000000000000000000000602082015250565b6000613392602f83612c7f565b915061339d82613336565b604082019050919050565b600060208201905081810360008301526133c181613385565b9050919050565b60006133d382612d92565b91506133de83612d92565b9250828210156133f1576133f061324d565b5b828203905092915050565b600061340782612d92565b915061341283612d92565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff038211156134475761344661324d565b5b828201905092915050565b7f627579546178206d757374206e6f742062652067726561746572207468616e2060008201527f3225202100000000000000000000000000000000000000000000000000000000602082015250565b60006134ae602483612c7f565b91506134b982613452565b604082019050919050565b600060208201905081810360008301526134dd816134a1565b9050919050565b7f54686520706169722063616e6e6f742062652072656d6f7665642066726f6d2060008201527f6175746f6d617465644d61726b65744d616b6572506169727300000000000000602082015250565b6000613540603983612c7f565b915061354b826134e4565b604082019050919050565b6000602082019050818103600083015261356f81613533565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b60006135d2602583612c7f565b91506135dd82613576565b604082019050919050565b60006020820190508181036000830152613601816135c5565b9050919050565b7f43616e6e6f7420736574206d617857616c6c6574206c6f776572207468616e2060008201527f302e352500000000000000000000000000000000000000000000000000000000602082015250565b6000613664602483612c7f565b915061366f82613608565b604082019050919050565b6000602082019050818103600083015261369381613657565b9050919050565b7f526f6c65733a206163636f756e7420616c72656164792068617320726f6c6500600082015250565b60006136d0601f83612c7f565b91506136db8261369a565b602082019050919050565b600060208201905081810360008301526136ff816136c3565b9050919050565b7f526f6c65733a206163636f756e7420697320746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613762602283612c7f565b915061376d82613706565b604082019050919050565b6000602082019050818103600083015261379181613755565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b60006137f4602483612c7f565b91506137ff82613798565b604082019050919050565b60006020820190508181036000830152613823816137e7565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000613886602283612c7f565b91506138918261382a565b604082019050919050565b600060208201905081810360008301526138b581613879565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b60006138f2601d83612c7f565b91506138fd826138bc565b602082019050919050565b60006020820190508181036000830152613921816138e5565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000613984602583612c7f565b915061398f82613928565b604082019050919050565b600060208201905081810360008301526139b381613977565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000613a16602383612c7f565b9150613a21826139ba565b604082019050919050565b60006020820190508181036000830152613a4581613a09565b9050919050565b7f54726164696e67206973206e6f74206163746976652e00000000000000000000600082015250565b6000613a82601683612c7f565b9150613a8d82613a4c565b602082019050919050565b60006020820190508181036000830152613ab181613a75565b9050919050565b7f427579207472616e7366657220616d6f756e742065786365656473207468652060008201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b6000613b14603583612c7f565b9150613b1f82613ab8565b604082019050919050565b60006020820190508181036000830152613b4381613b07565b9050919050565b7f4d61782077616c6c657420657863656564656400000000000000000000000000600082015250565b6000613b80601383612c7f565b9150613b8b82613b4a565b602082019050919050565b60006020820190508181036000830152613baf81613b73565b9050919050565b7f53656c6c207472616e7366657220616d6f756e7420657863656564732074686560008201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b6000613c12603683612c7f565b9150613c1d82613bb6565b604082019050919050565b60006020820190508181036000830152613c4181613c05565b9050919050565b600081519050613c5781612d9c565b92915050565b600060208284031215613c7357613c72612d2f565b5b6000613c8184828501613c48565b91505092915050565b7f6d45544841737365742072657761726473206d75737420626520736d616c6c6560008201527f72207468616e206d61782077616c6c657420616d6f756e742e00000000000000602082015250565b6000613ce6603983612c7f565b9150613cf182613c8a565b604082019050919050565b60006020820190508181036000830152613d1581613cd9565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000613d78602683612c7f565b9150613d8382613d1c565b604082019050919050565b60006020820190508181036000830152613da781613d6b565b9050919050565b7f526f6c65733a206163636f756e7420646f6573206e6f74206861766520726f6c60008201527f6500000000000000000000000000000000000000000000000000000000000000602082015250565b6000613e0a602183612c7f565b9150613e1582613dae565b604082019050919050565b60006020820190508181036000830152613e3981613dfd565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050613ead81612d66565b92915050565b600060208284031215613ec957613ec8612d2f565b5b6000613ed784828501613e9e565b91505092915050565b6000819050919050565b6000613f05613f00613efb84613ee0565b612e98565b612d92565b9050919050565b613f1581613eea565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b613f5081612d54565b82525050565b6000613f628383613f47565b60208301905092915050565b6000602082019050919050565b6000613f8682613f1b565b613f908185613f26565b9350613f9b83613f37565b8060005b83811015613fcc578151613fb38882613f56565b9750613fbe83613f6e565b925050600181019050613f9f565b5085935050505092915050565b600060a082019050613fee6000830188612f12565b613ffb6020830187613f0c565b818103604083015261400d8186613f7b565b905061401c6060830185612f8f565b6140296080830184612f12565b969550505050505056fea2646970667358221220c991d97a1d96a8ee99c08b7e81da3d178b1c19332d211889c42ac77704952b1864736f6c634300080f0033
Loading...
Loading
Loading...
Loading
[ Download: CSV Export ]
[ Download: CSV Export ]
A token is a representation of an on-chain or off-chain asset. The token page shows information such as price, total supply, holders, transfers and social links. Learn more about this page in our Knowledge Base.