ERC-20
Overview
Max Total Supply
100,000,000 😂
Holders
57
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 9 Decimals)
Balance
0.000000002 😂Value
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
ElonWithTearsOfJoy
Compiler Version
v0.8.19+commit.7dd6d404
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT /** Telegram: https://t.me/ElonwithTearsofJoy X: https://twitter.com/Elonwtearsofjoy Web: https://elonwithtearsofjoy.io BOT: https://t.me/elon_tweet_betting_bot **/ pragma solidity ^0.8.16; interface IUniswapV2Factory { event PairCreated( address indexed token0, address indexed token1, address pair, uint256 ); function feeTo() external view returns (address); function feeToSetter() external view returns (address); function allPairsLength() external view returns (uint256); function getPair( address tokenA, address tokenB ) external view returns (address pair); function allPairs(uint256) external view returns (address pair); function createPair( address tokenA, address tokenB ) external returns (address pair); function setFeeTo(address) external; function setFeeToSetter(address) external; } interface IUniswapV2Pair { event Approval( address indexed owner, address indexed spender, uint256 value ); event Transfer(address indexed from, address indexed to, uint256 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 (uint256); function balanceOf(address owner) external view returns (uint256); function allowance( address owner, address spender ) external view returns (uint256); function approve(address spender, uint256 value) external returns (bool); function transfer(address to, uint256 value) external returns (bool); function transferFrom( address from, address to, uint256 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 (uint256); function permit( address owner, address spender, uint256 value, uint256 deadline, uint8 v, bytes32 r, bytes32 s ) external; event Mint(address indexed sender, uint256 amount0, uint256 amount1); event Burn( address indexed sender, uint256 amount0, uint256 amount1, address indexed to ); event Swap( address indexed sender, uint256 amount0In, uint256 amount1In, uint256 amount0Out, uint256 amount1Out, address indexed to ); event Sync(uint112 reserve0, uint112 reserve1); function MINIMUM_LIQUIDITY() external pure returns (uint256); 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 (uint256); function price1CumulativeLast() external view returns (uint256); function kLast() external view returns (uint256); function mint(address to) external returns (uint256 liquidity); function burn( address to ) external returns (uint256 amount0, uint256 amount1); function swap( uint256 amount0Out, uint256 amount1Out, address to, bytes calldata data ) external; function skim(address to) external; function sync() external; function initialize(address, address) external; } interface IUniswapV2Router01 { function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidity( address tokenA, address tokenB, uint256 amountADesired, uint256 amountBDesired, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB, uint256 liquidity); function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); function removeLiquidity( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline ) external returns (uint256 amountA, uint256 amountB); function removeLiquidityETH( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountToken, uint256 amountETH); function removeLiquidityWithPermit( address tokenA, address tokenB, uint256 liquidity, uint256 amountAMin, uint256 amountBMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountA, uint256 amountB); function swapExactTokensForTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapTokensForExactTokens( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactETHForTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); function swapTokensForExactETH( uint256 amountOut, uint256 amountInMax, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapExactTokensForETH( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external returns (uint256[] memory amounts); function swapETHForExactTokens( uint256 amountOut, address[] calldata path, address to, uint256 deadline ) external payable returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function swapExactETHForTokensSupportingFeeOnTransferTokens( uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external payable; function swapExactTokensForTokensSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; } /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval( address indexed owner, address indexed spender, uint256 value ); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance( address owner, address spender ) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); } /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); } abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } /** * @dev Contract module which provides a basic access control mechanism, where * there is an account (an owner) that can be granted exclusive access to * specific functions. * * By default, the owner account will be the one that deploys the contract. This * can later be changed with {transferOwnership}. * * This module is used through inheritance. It will make available the modifier * `onlyOwner`, which can be applied to your functions to restrict their use to * the owner. */ abstract contract Ownable is Context { address private _owner; event OwnershipTransferred( address indexed previousOwner, address indexed newOwner ); /** * @dev Initializes the contract setting the deployer as the initial owner. */ constructor() { _transferOwnership(_msgSender()); } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { _checkOwner(); _; } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if the sender is not the owner. */ function _checkOwner() internal view virtual { require(owner() == _msgSender(), "Ownable: caller is not the owner"); } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _transferOwnership(address(0)); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Can only be called by the current owner. */ function transferOwnership(address newOwner) public virtual onlyOwner { require( newOwner != address(0), "Ownable: new owner is the zero address" ); _transferOwnership(newOwner); } /** * @dev Transfers ownership of the contract to a new account (`newOwner`). * Internal function without access restriction. */ function _transferOwnership(address newOwner) internal virtual { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } } contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() external view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the name of the token. */ function name() external view virtual override returns (string memory) { return _name; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf( address account ) public view virtual override returns (uint256) { return _balances[account]; } /** * @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() external view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-allowance}. */ function allowance( address owner, address spender ) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer( address to, uint256 amount ) external virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve( address spender, uint256 amount ) external virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) external virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); 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 ) external virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require( currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero" ); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev 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 ) external virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** @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"); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); } /** * @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"); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require( currentAllowance >= amount, "ERC20: insufficient allowance" ); unchecked { _approve(owner, spender, currentAllowance - amount); } } } function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); uint256 fromBalance = _balances[from]; require( fromBalance >= amount, "ERC20: transfer amount exceeds balance" ); unchecked { _balances[from] = fromBalance - amount; // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by // decrementing then incrementing. _balances[to] += amount; } emit Transfer(from, to, amount); } } contract ElonWithTearsOfJoy is ERC20, Ownable { // TOKENOMICS START ==========================================================> string private _name = unicode"Elon with Tears of Joy"; string private _symbol = unicode"😂"; uint8 private _decimals = 9; uint256 private _supply = 100_000_000; uint256 public taxBuyForMarketing = 30; uint256 public taxSellForMarketing = 50; uint256 public maxTxAmount = 1_000_000 * 10 ** _decimals; uint256 public maxWalletAmount = 2_000_000 * 10 ** _decimals; address public marketingWallet = 0xa9142CA2d05E6cA3A2370b4FE265A913F12f4a37; // TOKENOMICS END ============================================================> IUniswapV2Router02 public immutable uniswapV2Router; address public immutable uniswapV2Pair; mapping(address => bool) private _isExcludedFromFee; uint256 private _marketingReserves = 0; uint256 private _numTokensSellToAddToETH = 20_000 * 10 ** _decimals; bool inSwapAndLiquify; event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } constructor(address _add) ERC20(_name, _symbol) { _mint(msg.sender, (_supply * 10 ** _decimals)); IUniswapV2Router02 _uniswapV2Router = IUniswapV2Router02( 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D ); uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()) .createPair(address(this), _uniswapV2Router.WETH()); uniswapV2Router = _uniswapV2Router; _isExcludedFromFee[_add] = true; _isExcludedFromFee[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = true; } 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"); require( balanceOf(from) >= amount, "ERC20: transfer amount exceeds balance" ); if ( (from == uniswapV2Pair || to == uniswapV2Pair) && !inSwapAndLiquify ) { if (from != uniswapV2Pair) { uint256 contractLiquidityBalance = balanceOf(address(this)); if ((_marketingReserves) >= _numTokensSellToAddToETH) { _swapTokensForEth(contractLiquidityBalance); _marketingReserves = 0; bool sent = payable(marketingWallet).send( address(this).balance ); require(sent, "Failed to send ETH"); } } uint256 transferAmount; if (_isExcludedFromFee[from] || _isExcludedFromFee[to]) { transferAmount = amount; } else { require( amount <= maxTxAmount, "ERC20: transfer amount exceeds the max transaction amount" ); if (from == uniswapV2Pair) { require( (amount + balanceOf(to)) <= maxWalletAmount, "ERC20: balance amount exceeded max wallet amount limit" ); } uint256 marketingShare = 0; if (from == uniswapV2Pair) { marketingShare = ((amount * taxBuyForMarketing) / 100); } else { marketingShare = ((amount * taxSellForMarketing) / 100); } transferAmount = amount - (marketingShare); _marketingReserves += marketingShare; super._transfer(from, address(this), (marketingShare)); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function _swapAndLiquify(uint256 contractTokenBalance) private lockTheSwap { uint256 half = (contractTokenBalance / 2); uint256 otherHalf = (contractTokenBalance - half); uint256 initialBalance = address(this).balance; _swapTokensForEth(half); uint256 newBalance = (address(this).balance - initialBalance); _addLiquidity(otherHalf, newBalance); emit SwapAndLiquify(half, newBalance, otherHalf); } function _swapTokensForEth(uint256 tokenAmount) private lockTheSwap { address[] memory path = new address[](2); path[0] = address(this); path[1] = uniswapV2Router.WETH(); _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), (block.timestamp + 300) ); } function _addLiquidity( uint256 tokenAmount, uint256 ethAmount ) private lockTheSwap { _approve(address(this), address(uniswapV2Router), tokenAmount); uniswapV2Router.addLiquidityETH{value: ethAmount}( address(this), tokenAmount, 0, 0, owner(), block.timestamp ); } function changeMarketingWallet( address newWallet ) public onlyOwner returns (bool) { marketingWallet = newWallet; return true; } function changeTaxForMarketing( uint256 _taxBuyForMarketing, uint256 _taxSellForMarketing ) public onlyOwner returns (bool) { require( (_taxBuyForMarketing) <= 70, "ERC20: total tax must not be greater than 70" ); require( (_taxSellForMarketing) <= 70, "ERC20: total tax must not be greater than 70" ); taxBuyForMarketing = _taxBuyForMarketing; taxSellForMarketing = _taxSellForMarketing; return true; } function changeLimit( uint256 _maxTxAmount, uint256 _maxWalletAmount ) public onlyOwner returns (bool) { maxWalletAmount = _maxWalletAmount; maxTxAmount = _maxTxAmount; return true; } receive() external payable {} }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } }, "libraries": {} }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[{"internalType":"address","name":"_add","type":"address"}],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":false,"internalType":"uint256","name":"tokensSwapped","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"ethReceived","type":"uint256"},{"indexed":false,"internalType":"uint256","name":"tokensIntoLiqudity","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":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"},{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeLimit","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxBuyForMarketing","type":"uint256"},{"internalType":"uint256","name":"_taxSellForMarketing","type":"uint256"}],"name":"changeTaxForMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":[{"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":"marketingWallet","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxTxAmount","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWalletAmount","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":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxBuyForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxSellForMarketing","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"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
60c06040526040518060400160405280601681526020017f456c6f6e2077697468205465617273206f66204a6f7900000000000000000000815250600690816200004a919062000b87565b506040518060400160405280600481526020017ff09f9882000000000000000000000000000000000000000000000000000000008152506007908162000091919062000b87565b506009600860006101000a81548160ff021916908360ff1602179055506305f5e100600955601e600a556032600b55600860009054906101000a900460ff16600a620000de919062000dfe565b620f4240620000ee919062000e4f565b600c55600860009054906101000a900460ff16600a6200010f919062000dfe565b621e84806200011f919062000e4f565b600d5573a9142ca2d05e6ca3a2370b4fe265a913f12f4a37600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055506000601055600860009054906101000a900460ff16600a6200019a919062000dfe565b614e20620001a9919062000e4f565b601155348015620001b957600080fd5b50604051620038e1380380620038e18339818101604052810190620001df919062000f04565b60068054620001ee9062000976565b80601f01602080910402602001604051908101604052809291908181526020018280546200021c9062000976565b80156200026d5780601f1062000241576101008083540402835291602001916200026d565b820191906000526020600020905b8154815290600101906020018083116200024f57829003601f168201915b505050505060078054620002819062000976565b80601f0160208091040260200160405190810160405280929190818152602001828054620002af9062000976565b8015620003005780601f10620002d45761010080835404028352916020019162000300565b820191906000526020600020905b815481529060010190602001808311620002e257829003601f168201915b5050505050816003908162000316919062000b87565b50806004908162000328919062000b87565b5050506200034b6200033f620006fa60201b60201c565b6200070260201b60201c565b6200038933600860009054906101000a900460ff16600a6200036e919062000dfe565b6009546200037d919062000e4f565b620007c860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003ee573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000414919062000f04565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200047c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004a2919062000f04565b6040518363ffffffff1660e01b8152600401620004c192919062000f47565b6020604051808303816000875af1158015620004e1573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000507919062000f04565b73ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250506001600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f600060805173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f60003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600f6000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550505062001060565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200083a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620008319062000fd5565b60405180910390fd5b80600260008282546200084e919062000ff7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000901919062001043565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200098f57607f821691505b602082108103620009a557620009a462000947565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b60006008830262000a0f7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620009d0565b62000a1b8683620009d0565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a6862000a6262000a5c8462000a33565b62000a3d565b62000a33565b9050919050565b6000819050919050565b62000a848362000a47565b62000a9c62000a938262000a6f565b848454620009dd565b825550505050565b600090565b62000ab362000aa4565b62000ac081848462000a79565b505050565b5b8181101562000ae85762000adc60008262000aa9565b60018101905062000ac6565b5050565b601f82111562000b375762000b0181620009ab565b62000b0c84620009c0565b8101602085101562000b1c578190505b62000b3462000b2b85620009c0565b83018262000ac5565b50505b505050565b600082821c905092915050565b600062000b5c6000198460080262000b3c565b1980831691505092915050565b600062000b77838362000b49565b9150826002028217905092915050565b62000b92826200090d565b67ffffffffffffffff81111562000bae5762000bad62000918565b5b62000bba825462000976565b62000bc782828562000aec565b600060209050601f83116001811462000bff576000841562000bea578287015190505b62000bf6858262000b69565b86555062000c66565b601f19841662000c0f86620009ab565b60005b8281101562000c395784890151825560018201915060208501945060208101905062000c12565b8683101562000c59578489015162000c55601f89168262000b49565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cfc5780860481111562000cd45762000cd362000c6e565b5b600185161562000ce45780820291505b808102905062000cf48562000c9d565b945062000cb4565b94509492505050565b60008262000d17576001905062000dea565b8162000d27576000905062000dea565b816001811462000d40576002811462000d4b5762000d81565b600191505062000dea565b60ff84111562000d605762000d5f62000c6e565b5b8360020a91508482111562000d7a5762000d7962000c6e565b5b5062000dea565b5060208310610133831016604e8410600b841016171562000dbb5782820a90508381111562000db55762000db462000c6e565b5b62000dea565b62000dca848484600162000caa565b9250905081840481111562000de45762000de362000c6e565b5b81810290505b9392505050565b600060ff82169050919050565b600062000e0b8262000a33565b915062000e188362000df1565b925062000e477fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000d05565b905092915050565b600062000e5c8262000a33565b915062000e698362000a33565b925082820262000e798162000a33565b9150828204841483151762000e935762000e9262000c6e565b5b5092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000ecc8262000e9f565b9050919050565b62000ede8162000ebf565b811462000eea57600080fd5b50565b60008151905062000efe8162000ed3565b92915050565b60006020828403121562000f1d5762000f1c62000e9a565b5b600062000f2d8482850162000eed565b91505092915050565b62000f418162000ebf565b82525050565b600060408201905062000f5e600083018562000f36565b62000f6d602083018462000f36565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000fbd601f8362000f74565b915062000fca8262000f85565b602082019050919050565b6000602082019050818103600083015262000ff08162000fae565b9050919050565b6000620010048262000a33565b9150620010118362000a33565b92508282019050808211156200102c576200102b62000c6e565b5b92915050565b6200103d8162000a33565b82525050565b60006020820190506200105a600083018462001032565b92915050565b60805160a051612823620010be600039600081816107ff01528181610f1901528181610f6e01528181610fdc015281816111ec015261129a0152600081816106b80152818161157d0152818161165e015261168501526128236000f3fe60806040526004361061014f5760003560e01c80638c0b5e22116100b6578063b60c30f91161006f578063b60c30f9146104cb578063bb85c6d1146104f6578063d0e1d26214610533578063d48684d81461055e578063dd62ed3e1461059b578063f2fde38b146105d857610156565b80638c0b5e22146103a55780638da5cb5b146103d057806395d89b41146103fb578063a457c2d714610426578063a9059cbb14610463578063aa4bde28146104a057610156565b80633441f06f116101085780633441f06f1461028157806339509351146102be57806349bd5a5e146102fb57806370a0823114610326578063715018a61461036357806375f0a8741461037a57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806323b872dd14610219578063313ce5671461025657610156565b3661015657005b600080fd5b34801561016757600080fd5b50610170610601565b60405161017d9190611a33565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611aee565b610693565b6040516101ba9190611b49565b60405180910390f35b3480156101cf57600080fd5b506101d86106b6565b6040516101e59190611bc3565b60405180910390f35b3480156101fa57600080fd5b506102036106da565b6040516102109190611bed565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190611c08565b6106e4565b60405161024d9190611b49565b60405180910390f35b34801561026257600080fd5b5061026b610713565b6040516102789190611c77565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a39190611c92565b61071c565b6040516102b59190611b49565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190611aee565b6107c6565b6040516102f29190611b49565b60405180910390f35b34801561030757600080fd5b506103106107fd565b60405161031d9190611ce1565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190611cfc565b610821565b60405161035a9190611bed565b60405180910390f35b34801561036f57600080fd5b50610378610869565b005b34801561038657600080fd5b5061038f61087d565b60405161039c9190611ce1565b60405180910390f35b3480156103b157600080fd5b506103ba6108a3565b6040516103c79190611bed565b60405180910390f35b3480156103dc57600080fd5b506103e56108a9565b6040516103f29190611ce1565b60405180910390f35b34801561040757600080fd5b506104106108d3565b60405161041d9190611a33565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190611aee565b610965565b60405161045a9190611b49565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190611aee565b6109dc565b6040516104979190611b49565b60405180910390f35b3480156104ac57600080fd5b506104b56109ff565b6040516104c29190611bed565b60405180910390f35b3480156104d757600080fd5b506104e0610a05565b6040516104ed9190611bed565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190611cfc565b610a0b565b60405161052a9190611b49565b60405180910390f35b34801561053f57600080fd5b50610548610a5f565b6040516105559190611bed565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190611c92565b610a65565b6040516105929190611b49565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190611d29565b610a87565b6040516105cf9190611bed565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190611cfc565b610b0e565b005b60606003805461061090611d98565b80601f016020809104026020016040519081016040528092919081815260200182805461063c90611d98565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b60008061069e610b91565b90506106ab818585610b99565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806106ef610b91565b90506106fc858285610d62565b610707858585610dee565b60019150509392505050565b60006009905090565b600061072661137f565b604683111561076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190611e3b565b60405180910390fd5b60468211156107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611e3b565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000806107d1610b91565b90506107f28185856107e38589610a87565b6107ed9190611e8a565b610b99565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61087161137f565b61087b60006113fd565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108e290611d98565b80601f016020809104026020016040519081016040528092919081815260200182805461090e90611d98565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b600080610970610b91565b9050600061097e8286610a87565b9050838110156109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611f30565b60405180910390fd5b6109d08286868403610b99565b60019250505092915050565b6000806109e7610b91565b90506109f4818585610dee565b600191505092915050565b600d5481565b600a5481565b6000610a1561137f565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600b5481565b6000610a6f61137f565b81600d8190555082600c819055506001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1661137f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90611fc2565b60405180910390fd5b610b8e816113fd565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612054565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906120e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d559190611bed565b60405180910390a3505050565b6000610d6e8484610a87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de85781811015610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612152565b60405180910390fd5b610de78484848403610b99565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906121e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390612276565b60405180910390fd5b80610ed684610821565b1015610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90612308565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fbc57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610fd55750601260009054906101000a900460ff16155b1561136e577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110f557600061103830610821565b9050601154601054106110f35761104e816114c3565b60006010819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612374565b60405180910390fd5b505b505b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111985750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111a55781905061135d565b600c548211156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612406565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361129657600d5461124984610821565b836112549190611e8a565b1115611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90612498565b60405180910390fd5b5b60007f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361130c576064600a54846112fb91906124b8565b6113059190612529565b9050611329565b6064600b548461131c91906124b8565b6113269190612529565b90505b8083611335919061255a565b915080601060008282546113499190611e8a565b9250508190555061135b853083611743565b505b611368848483611743565b5061137a565b611379838383611743565b5b505050565b611387610b91565b73ffffffffffffffffffffffffffffffffffffffff166113a56108a9565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906125da565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601260006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156114fb576114fa6125fa565b5b6040519080825280602002602001820160405280156115295781602001602082028036833780820191505090505b509050308160008151811061154157611540612629565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160a919061266d565b8160018151811061161e5761161d612629565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611683307f000000000000000000000000000000000000000000000000000000000000000084610b99565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426116d29190611e8a565b6040518663ffffffff1660e01b81526004016116f2959493929190612793565b600060405180830381600087803b15801561170c57600080fd5b505af1158015611720573d6000803e3d6000fd5b50505050506000601260006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a9906121e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890612276565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90612308565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119959190611bed565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119dd5780820151818401526020810190506119c2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a05826119a3565b611a0f81856119ae565b9350611a1f8185602086016119bf565b611a28816119e9565b840191505092915050565b60006020820190508181036000830152611a4d81846119fa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a8582611a5a565b9050919050565b611a9581611a7a565b8114611aa057600080fd5b50565b600081359050611ab281611a8c565b92915050565b6000819050919050565b611acb81611ab8565b8114611ad657600080fd5b50565b600081359050611ae881611ac2565b92915050565b60008060408385031215611b0557611b04611a55565b5b6000611b1385828601611aa3565b9250506020611b2485828601611ad9565b9150509250929050565b60008115159050919050565b611b4381611b2e565b82525050565b6000602082019050611b5e6000830184611b3a565b92915050565b6000819050919050565b6000611b89611b84611b7f84611a5a565b611b64565b611a5a565b9050919050565b6000611b9b82611b6e565b9050919050565b6000611bad82611b90565b9050919050565b611bbd81611ba2565b82525050565b6000602082019050611bd86000830184611bb4565b92915050565b611be781611ab8565b82525050565b6000602082019050611c026000830184611bde565b92915050565b600080600060608486031215611c2157611c20611a55565b5b6000611c2f86828701611aa3565b9350506020611c4086828701611aa3565b9250506040611c5186828701611ad9565b9150509250925092565b600060ff82169050919050565b611c7181611c5b565b82525050565b6000602082019050611c8c6000830184611c68565b92915050565b60008060408385031215611ca957611ca8611a55565b5b6000611cb785828601611ad9565b9250506020611cc885828601611ad9565b9150509250929050565b611cdb81611a7a565b82525050565b6000602082019050611cf66000830184611cd2565b92915050565b600060208284031215611d1257611d11611a55565b5b6000611d2084828501611aa3565b91505092915050565b60008060408385031215611d4057611d3f611a55565b5b6000611d4e85828601611aa3565b9250506020611d5f85828601611aa3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611db057607f821691505b602082108103611dc357611dc2611d69565b5b50919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2037300000000000000000000000000000000000000000602082015250565b6000611e25602c836119ae565b9150611e3082611dc9565b604082019050919050565b60006020820190508181036000830152611e5481611e18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e9582611ab8565b9150611ea083611ab8565b9250828201905080821115611eb857611eb7611e5b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f1a6025836119ae565b9150611f2582611ebe565b604082019050919050565b60006020820190508181036000830152611f4981611f0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611fac6026836119ae565b9150611fb782611f50565b604082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061203e6024836119ae565b915061204982611fe2565b604082019050919050565b6000602082019050818103600083015261206d81612031565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120d06022836119ae565b91506120db82612074565b604082019050919050565b600060208201905081810360008301526120ff816120c3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061213c601d836119ae565b915061214782612106565b602082019050919050565b6000602082019050818103600083015261216b8161212f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121ce6025836119ae565b91506121d982612172565b604082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122606023836119ae565b915061226b82612204565b604082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122f26026836119ae565b91506122fd82612296565b604082019050919050565b60006020820190508181036000830152612321816122e5565b9050919050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061235e6012836119ae565b915061236982612328565b602082019050919050565b6000602082019050818103600083015261238d81612351565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006123f06039836119ae565b91506123fb82612394565b604082019050919050565b6000602082019050818103600083015261241f816123e3565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006124826036836119ae565b915061248d82612426565b604082019050919050565b600060208201905081810360008301526124b181612475565b9050919050565b60006124c382611ab8565b91506124ce83611ab8565b92508282026124dc81611ab8565b915082820484148315176124f3576124f2611e5b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061253482611ab8565b915061253f83611ab8565b92508261254f5761254e6124fa565b5b828204905092915050565b600061256582611ab8565b915061257083611ab8565b925082820390508181111561258857612587611e5b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125c46020836119ae565b91506125cf8261258e565b602082019050919050565b600060208201905081810360008301526125f3816125b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061266781611a8c565b92915050565b60006020828403121561268357612682611a55565b5b600061269184828501612658565b91505092915050565b6000819050919050565b60006126bf6126ba6126b58461269a565b611b64565b611ab8565b9050919050565b6126cf816126a4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61270a81611a7a565b82525050565b600061271c8383612701565b60208301905092915050565b6000602082019050919050565b6000612740826126d5565b61274a81856126e0565b9350612755836126f1565b8060005b8381101561278657815161276d8882612710565b975061277883612728565b925050600181019050612759565b5085935050505092915050565b600060a0820190506127a86000830188611bde565b6127b560208301876126c6565b81810360408301526127c78186612735565b90506127d66060830185611cd2565b6127e36080830184611bde565b969550505050505056fea26469706673582212202338f7b0b37a01e521c58c94edea1ec42f1a18dfa45bcb442bef538b17364dab64736f6c6343000813003300000000000000000000000061a42353ff65aef0b7a95df727ab5e8cf12e5bfd
Deployed Bytecode
0x60806040526004361061014f5760003560e01c80638c0b5e22116100b6578063b60c30f91161006f578063b60c30f9146104cb578063bb85c6d1146104f6578063d0e1d26214610533578063d48684d81461055e578063dd62ed3e1461059b578063f2fde38b146105d857610156565b80638c0b5e22146103a55780638da5cb5b146103d057806395d89b41146103fb578063a457c2d714610426578063a9059cbb14610463578063aa4bde28146104a057610156565b80633441f06f116101085780633441f06f1461028157806339509351146102be57806349bd5a5e146102fb57806370a0823114610326578063715018a61461036357806375f0a8741461037a57610156565b806306fdde031461015b578063095ea7b3146101865780631694505e146101c357806318160ddd146101ee57806323b872dd14610219578063313ce5671461025657610156565b3661015657005b600080fd5b34801561016757600080fd5b50610170610601565b60405161017d9190611a33565b60405180910390f35b34801561019257600080fd5b506101ad60048036038101906101a89190611aee565b610693565b6040516101ba9190611b49565b60405180910390f35b3480156101cf57600080fd5b506101d86106b6565b6040516101e59190611bc3565b60405180910390f35b3480156101fa57600080fd5b506102036106da565b6040516102109190611bed565b60405180910390f35b34801561022557600080fd5b50610240600480360381019061023b9190611c08565b6106e4565b60405161024d9190611b49565b60405180910390f35b34801561026257600080fd5b5061026b610713565b6040516102789190611c77565b60405180910390f35b34801561028d57600080fd5b506102a860048036038101906102a39190611c92565b61071c565b6040516102b59190611b49565b60405180910390f35b3480156102ca57600080fd5b506102e560048036038101906102e09190611aee565b6107c6565b6040516102f29190611b49565b60405180910390f35b34801561030757600080fd5b506103106107fd565b60405161031d9190611ce1565b60405180910390f35b34801561033257600080fd5b5061034d60048036038101906103489190611cfc565b610821565b60405161035a9190611bed565b60405180910390f35b34801561036f57600080fd5b50610378610869565b005b34801561038657600080fd5b5061038f61087d565b60405161039c9190611ce1565b60405180910390f35b3480156103b157600080fd5b506103ba6108a3565b6040516103c79190611bed565b60405180910390f35b3480156103dc57600080fd5b506103e56108a9565b6040516103f29190611ce1565b60405180910390f35b34801561040757600080fd5b506104106108d3565b60405161041d9190611a33565b60405180910390f35b34801561043257600080fd5b5061044d60048036038101906104489190611aee565b610965565b60405161045a9190611b49565b60405180910390f35b34801561046f57600080fd5b5061048a60048036038101906104859190611aee565b6109dc565b6040516104979190611b49565b60405180910390f35b3480156104ac57600080fd5b506104b56109ff565b6040516104c29190611bed565b60405180910390f35b3480156104d757600080fd5b506104e0610a05565b6040516104ed9190611bed565b60405180910390f35b34801561050257600080fd5b5061051d60048036038101906105189190611cfc565b610a0b565b60405161052a9190611b49565b60405180910390f35b34801561053f57600080fd5b50610548610a5f565b6040516105559190611bed565b60405180910390f35b34801561056a57600080fd5b5061058560048036038101906105809190611c92565b610a65565b6040516105929190611b49565b60405180910390f35b3480156105a757600080fd5b506105c260048036038101906105bd9190611d29565b610a87565b6040516105cf9190611bed565b60405180910390f35b3480156105e457600080fd5b506105ff60048036038101906105fa9190611cfc565b610b0e565b005b60606003805461061090611d98565b80601f016020809104026020016040519081016040528092919081815260200182805461063c90611d98565b80156106895780601f1061065e57610100808354040283529160200191610689565b820191906000526020600020905b81548152906001019060200180831161066c57829003601f168201915b5050505050905090565b60008061069e610b91565b90506106ab818585610b99565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806106ef610b91565b90506106fc858285610d62565b610707858585610dee565b60019150509392505050565b60006009905090565b600061072661137f565b604683111561076a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161076190611e3b565b60405180910390fd5b60468211156107ae576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107a590611e3b565b60405180910390fd5b82600a8190555081600b819055506001905092915050565b6000806107d1610b91565b90506107f28185856107e38589610a87565b6107ed9190611e8a565b610b99565b600191505092915050565b7f000000000000000000000000d39a377c1e630cc5e9542224e38b3e319504fd9681565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61087161137f565b61087b60006113fd565b565b600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b600c5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b6060600480546108e290611d98565b80601f016020809104026020016040519081016040528092919081815260200182805461090e90611d98565b801561095b5780601f106109305761010080835404028352916020019161095b565b820191906000526020600020905b81548152906001019060200180831161093e57829003601f168201915b5050505050905090565b600080610970610b91565b9050600061097e8286610a87565b9050838110156109c3576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ba90611f30565b60405180910390fd5b6109d08286868403610b99565b60019250505092915050565b6000806109e7610b91565b90506109f4818585610dee565b600191505092915050565b600d5481565b600a5481565b6000610a1561137f565b81600e60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b600b5481565b6000610a6f61137f565b81600d8190555082600c819055506001905092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610b1661137f565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610b85576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b7c90611fc2565b60405180910390fd5b610b8e816113fd565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610c08576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610bff90612054565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610c77576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c6e906120e6565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610d559190611bed565b60405180910390a3505050565b6000610d6e8484610a87565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610de85781811015610dda576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dd190612152565b60405180910390fd5b610de78484848403610b99565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610e5d576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e54906121e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610ecc576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ec390612276565b60405180910390fd5b80610ed684610821565b1015610f17576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0e90612308565b60405180910390fd5b7f000000000000000000000000d39a377c1e630cc5e9542224e38b3e319504fd9673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161480610fbc57507f000000000000000000000000d39a377c1e630cc5e9542224e38b3e319504fd9673ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b8015610fd55750601260009054906101000a900460ff16155b1561136e577f000000000000000000000000d39a377c1e630cc5e9542224e38b3e319504fd9673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146110f557600061103830610821565b9050601154601054106110f35761104e816114c3565b60006010819055506000600e60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806110f1576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110e890612374565b60405180910390fd5b505b505b6000600f60008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16806111985750600f60008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156111a55781905061135d565b600c548211156111ea576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111e190612406565b60405180910390fd5b7f000000000000000000000000d39a377c1e630cc5e9542224e38b3e319504fd9673ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361129657600d5461124984610821565b836112549190611e8a565b1115611295576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161128c90612498565b60405180910390fd5b5b60007f000000000000000000000000d39a377c1e630cc5e9542224e38b3e319504fd9673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff160361130c576064600a54846112fb91906124b8565b6113059190612529565b9050611329565b6064600b548461131c91906124b8565b6113269190612529565b90505b8083611335919061255a565b915080601060008282546113499190611e8a565b9250508190555061135b853083611743565b505b611368848483611743565b5061137a565b611379838383611743565b5b505050565b611387610b91565b73ffffffffffffffffffffffffffffffffffffffff166113a56108a9565b73ffffffffffffffffffffffffffffffffffffffff16146113fb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113f2906125da565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6001601260006101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156114fb576114fa6125fa565b5b6040519080825280602002602001820160405280156115295781602001602082028036833780820191505090505b509050308160008151811061154157611540612629565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156115e6573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061160a919061266d565b8160018151811061161e5761161d612629565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611683307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610b99565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c426116d29190611e8a565b6040518663ffffffff1660e01b81526004016116f2959493929190612793565b600060405180830381600087803b15801561170c57600080fd5b505af1158015611720573d6000803e3d6000fd5b50505050506000601260006101000a81548160ff02191690831515021790555050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036117b2576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117a9906121e4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611821576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161181890612276565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156118a7576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161189e90612308565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516119959190611bed565b60405180910390a350505050565b600081519050919050565b600082825260208201905092915050565b60005b838110156119dd5780820151818401526020810190506119c2565b60008484015250505050565b6000601f19601f8301169050919050565b6000611a05826119a3565b611a0f81856119ae565b9350611a1f8185602086016119bf565b611a28816119e9565b840191505092915050565b60006020820190508181036000830152611a4d81846119fa565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611a8582611a5a565b9050919050565b611a9581611a7a565b8114611aa057600080fd5b50565b600081359050611ab281611a8c565b92915050565b6000819050919050565b611acb81611ab8565b8114611ad657600080fd5b50565b600081359050611ae881611ac2565b92915050565b60008060408385031215611b0557611b04611a55565b5b6000611b1385828601611aa3565b9250506020611b2485828601611ad9565b9150509250929050565b60008115159050919050565b611b4381611b2e565b82525050565b6000602082019050611b5e6000830184611b3a565b92915050565b6000819050919050565b6000611b89611b84611b7f84611a5a565b611b64565b611a5a565b9050919050565b6000611b9b82611b6e565b9050919050565b6000611bad82611b90565b9050919050565b611bbd81611ba2565b82525050565b6000602082019050611bd86000830184611bb4565b92915050565b611be781611ab8565b82525050565b6000602082019050611c026000830184611bde565b92915050565b600080600060608486031215611c2157611c20611a55565b5b6000611c2f86828701611aa3565b9350506020611c4086828701611aa3565b9250506040611c5186828701611ad9565b9150509250925092565b600060ff82169050919050565b611c7181611c5b565b82525050565b6000602082019050611c8c6000830184611c68565b92915050565b60008060408385031215611ca957611ca8611a55565b5b6000611cb785828601611ad9565b9250506020611cc885828601611ad9565b9150509250929050565b611cdb81611a7a565b82525050565b6000602082019050611cf66000830184611cd2565b92915050565b600060208284031215611d1257611d11611a55565b5b6000611d2084828501611aa3565b91505092915050565b60008060408385031215611d4057611d3f611a55565b5b6000611d4e85828601611aa3565b9250506020611d5f85828601611aa3565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680611db057607f821691505b602082108103611dc357611dc2611d69565b5b50919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2037300000000000000000000000000000000000000000602082015250565b6000611e25602c836119ae565b9150611e3082611dc9565b604082019050919050565b60006020820190508181036000830152611e5481611e18565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b6000611e9582611ab8565b9150611ea083611ab8565b9250828201905080821115611eb857611eb7611e5b565b5b92915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000611f1a6025836119ae565b9150611f2582611ebe565b604082019050919050565b60006020820190508181036000830152611f4981611f0d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000611fac6026836119ae565b9150611fb782611f50565b604082019050919050565b60006020820190508181036000830152611fdb81611f9f565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b600061203e6024836119ae565b915061204982611fe2565b604082019050919050565b6000602082019050818103600083015261206d81612031565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006120d06022836119ae565b91506120db82612074565b604082019050919050565b600060208201905081810360008301526120ff816120c3565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061213c601d836119ae565b915061214782612106565b602082019050919050565b6000602082019050818103600083015261216b8161212f565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006121ce6025836119ae565b91506121d982612172565b604082019050919050565b600060208201905081810360008301526121fd816121c1565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b60006122606023836119ae565b915061226b82612204565b604082019050919050565b6000602082019050818103600083015261228f81612253565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b60006122f26026836119ae565b91506122fd82612296565b604082019050919050565b60006020820190508181036000830152612321816122e5565b9050919050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b600061235e6012836119ae565b915061236982612328565b602082019050919050565b6000602082019050818103600083015261238d81612351565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b60006123f06039836119ae565b91506123fb82612394565b604082019050919050565b6000602082019050818103600083015261241f816123e3565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b60006124826036836119ae565b915061248d82612426565b604082019050919050565b600060208201905081810360008301526124b181612475565b9050919050565b60006124c382611ab8565b91506124ce83611ab8565b92508282026124dc81611ab8565b915082820484148315176124f3576124f2611e5b565b5b5092915050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b600061253482611ab8565b915061253f83611ab8565b92508261254f5761254e6124fa565b5b828204905092915050565b600061256582611ab8565b915061257083611ab8565b925082820390508181111561258857612587611e5b565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006125c46020836119ae565b91506125cf8261258e565b602082019050919050565b600060208201905081810360008301526125f3816125b7565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b60008151905061266781611a8c565b92915050565b60006020828403121561268357612682611a55565b5b600061269184828501612658565b91505092915050565b6000819050919050565b60006126bf6126ba6126b58461269a565b611b64565b611ab8565b9050919050565b6126cf816126a4565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61270a81611a7a565b82525050565b600061271c8383612701565b60208301905092915050565b6000602082019050919050565b6000612740826126d5565b61274a81856126e0565b9350612755836126f1565b8060005b8381101561278657815161276d8882612710565b975061277883612728565b925050600181019050612759565b5085935050505092915050565b600060a0820190506127a86000830188611bde565b6127b560208301876126c6565b81810360408301526127c78186612735565b90506127d66060830185611cd2565b6127e36080830184611bde565b969550505050505056fea26469706673582212202338f7b0b37a01e521c58c94edea1ec42f1a18dfa45bcb442bef538b17364dab64736f6c63430008130033
Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)
00000000000000000000000061a42353ff65aef0b7a95df727ab5e8cf12e5bfd
-----Decoded View---------------
Arg [0] : _add (address): 0x61a42353FF65Aef0b7A95Df727aB5E8CF12e5bFD
-----Encoded View---------------
1 Constructor Arguments found :
Arg [0] : 00000000000000000000000061a42353ff65aef0b7a95df727ab5e8cf12e5bfd
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.