ERC-20
Overview
Max Total Supply
1,000,000,000 dMEME
Holders
205
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
MemeDAO
Compiler Version
v0.8.16+commit.07a7930e
Optimization Enabled:
No with 200 runs
Other Settings:
default evmVersion
Contract Source Code (Solidity Standard Json-Input format)
// SPDX-License-Identifier: MIT 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 removeLiquidityETHWithPermit( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountToken, uint256 amountETH); 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); function quote( uint256 amountA, uint256 reserveA, uint256 reserveB ) external pure returns (uint256 amountB); function getAmountOut( uint256 amountIn, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountOut); function getAmountIn( uint256 amountOut, uint256 reserveIn, uint256 reserveOut ) external pure returns (uint256 amountIn); function getAmountsOut(uint256 amountIn, address[] calldata path) external view returns (uint256[] memory amounts); function getAmountsIn(uint256 amountOut, address[] calldata path) external view returns (uint256[] memory amounts); } interface IUniswapV2Router02 is IUniswapV2Router01 { function removeLiquidityETHSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external returns (uint256 amountETH); function removeLiquidityETHWithPermitSupportingFeeOnTransferTokens( address token, uint256 liquidity, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline, bool approveMax, uint8 v, bytes32 r, bytes32 s ) external returns (uint256 amountETH); 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); } /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } } /** * @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); } } /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin Contracts guidelines: functions revert * instead returning `false` on failure. This behavior is nonetheless * conventional and does not conflict with the expectations of ERC20 * applications. * * Additionally, an {Approval} event is emitted on calls to {transferFrom}. * This allows applications to reconstruct the allowance for all accounts just * by listening to said events. Other implementations of the EIP may not emit * these events, as it isn't required by the specification. * * Finally, the non-standard {decreaseAllowance} and {increaseAllowance} * functions have been added to mitigate the well-known issues around setting * allowances. See {IERC20-approve}. */ contract ERC20 is Context, IERC20, IERC20Metadata { mapping(address => uint256) private _balances; mapping(address => mapping(address => uint256)) private _allowances; uint256 private _totalSupply; string private _name; string private _symbol; 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 18; } /** * @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 MemeDAO is ERC20, Ownable { address public immutable uniswapV2Pair; IUniswapV2Router02 public immutable uniswapV2Router; bool inSwapAndLiquify; uint256 private _marketingReserves = 0; mapping(address => bool) private _isExcludedFromFee; // TOKENOMICS START string private _name = "MEME DAO"; string private _symbol = "dMEME"; uint8 private _decimals = 18; uint256 private _supply = 1000000000; uint256 public taxForLiquidity = 1; uint256 public taxForMarketing = 4; uint256 public maxTxAmount = 30000000 * 10**_decimals; uint256 public maxWalletAmount = 30000000 * 10**_decimals; uint256 private _numTokensSellToAddToLiquidity = 5000000 * 10**_decimals; uint256 private _numTokensSellToAddToETH = 5000000 * 10**_decimals; address public marketingWallet = 0x4d7d08F446fFf9358b2bc661Fa8c903293d915e0; // TOKENOMICS END event SwapAndLiquify( uint256 tokensSwapped, uint256 ethReceived, uint256 tokensIntoLiqudity ); modifier lockTheSwap() { inSwapAndLiquify = true; _; inSwapAndLiquify = false; } /** * @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() 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[address(uniswapV2Router)] = true; _isExcludedFromFee[msg.sender] = true; _isExcludedFromFee[marketingWallet] = true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer(address from, address to, uint256 amount) internal 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)) - _marketingReserves; if (contractLiquidityBalance >= _numTokensSellToAddToLiquidity) { _swapAndLiquify(_numTokensSellToAddToLiquidity); } if ((_marketingReserves) >= _numTokensSellToAddToETH) { _swapTokensForEth(_numTokensSellToAddToETH); _marketingReserves -= _numTokensSellToAddToETH; 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 = ((amount * taxForMarketing) / 100); uint256 liquidityShare = ((amount * taxForLiquidity) / 100); transferAmount = amount - (marketingShare + liquidityShare); _marketingReserves += marketingShare; super._transfer(from, address(this), (marketingShare + liquidityShare)); } super._transfer(from, to, transferAmount); } else { super._transfer(from, to, amount); } } function clearStuckETH() external { payable(marketingWallet).transfer(address(this).balance); } function clearStuckToken() external { require(balanceOf(address(this)) > 0, "Insufficient Balance"); super._transfer(address(this), marketingWallet, balanceOf(address(this))); } 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, marketingWallet, block.timestamp ); } function changeMarketingWallet(address newWallet) public onlyOwner returns (bool) { marketingWallet = newWallet; return true; } function changeTaxForLiquidityAndMarketing(uint256 _taxForLiquidity, uint256 _taxForMarketing) public onlyOwner returns (bool) { require((_taxForLiquidity+_taxForMarketing) <= 100, "ERC20: total tax must not be greater than 100"); taxForLiquidity = _taxForLiquidity; taxForMarketing = _taxForMarketing; return true; } function changeMaxTxAmount(uint256 _maxTxAmount) public onlyOwner returns (bool) { maxTxAmount = _maxTxAmount * 10**_decimals; return true; } function changeMaxWalletAmount(uint256 _maxWalletAmount) public onlyOwner returns (bool) { maxWalletAmount = _maxWalletAmount * 10**_decimals; 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":[],"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":"address","name":"newWallet","type":"address"}],"name":"changeMarketingWallet","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxTxAmount","type":"uint256"}],"name":"changeMaxTxAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_maxWalletAmount","type":"uint256"}],"name":"changeMaxWalletAmount","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"_taxForLiquidity","type":"uint256"},{"internalType":"uint256","name":"_taxForMarketing","type":"uint256"}],"name":"changeTaxForLiquidityAndMarketing","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckETH","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"clearStuckToken","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":[{"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":"taxForLiquidity","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"taxForMarketing","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
60c060405260006006556040518060400160405280600881526020017f4d454d452044414f000000000000000000000000000000000000000000000000815250600890816200004f919062000b3d565b506040518060400160405280600581526020017f644d454d450000000000000000000000000000000000000000000000000000008152506009908162000096919062000b3d565b506012600a60006101000a81548160ff021916908360ff160217905550633b9aca00600b556001600c556004600d55600a60009054906101000a900460ff16600a620000e3919062000db4565b6301c9c380620000f4919062000e05565b600e55600a60009054906101000a900460ff16600a62000115919062000db4565b6301c9c38062000126919062000e05565b600f55600a60009054906101000a900460ff16600a62000147919062000db4565b624c4b4062000157919062000e05565b601055600a60009054906101000a900460ff16600a62000178919062000db4565b624c4b4062000188919062000e05565b601155734d7d08f446fff9358b2bc661fa8c903293d915e0601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550348015620001ed57600080fd5b5060088054620001fd906200092c565b80601f01602080910402602001604051908101604052809291908181526020018280546200022b906200092c565b80156200027c5780601f1062000250576101008083540402835291602001916200027c565b820191906000526020600020905b8154815290600101906020018083116200025e57829003601f168201915b50505050506009805462000290906200092c565b80601f0160208091040260200160405190810160405280929190818152602001828054620002be906200092c565b80156200030f5780601f10620002e3576101008083540402835291602001916200030f565b820191906000526020600020905b815481529060010190602001808311620002f157829003601f168201915b5050505050816003908162000325919062000b3d565b50806004908162000337919062000b3d565b5050506200035a6200034e620006b060201b60201c565b620006b860201b60201c565b6200039833600a60009054906101000a900460ff16600a6200037d919062000db4565b600b546200038c919062000e05565b6200077e60201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015620003fd573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000423919062000ed0565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa1580156200048b573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190620004b1919062000ed0565b6040518363ffffffff1660e01b8152600401620004d092919062000f13565b6020604051808303816000875af1158015620004f0573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019062000516919062000ed0565b73ffffffffffffffffffffffffffffffffffffffff1660808173ffffffffffffffffffffffffffffffffffffffff16815250508073ffffffffffffffffffffffffffffffffffffffff1660a08173ffffffffffffffffffffffffffffffffffffffff168152505060016007600060a05173ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550506200102c565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603620007f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620007e79062000fa1565b60405180910390fd5b806002600082825462000804919062000fc3565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620008b791906200100f565b60405180910390a35050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094557607f821691505b6020821081036200095b576200095a620008fd565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009c57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000986565b620009d1868362000986565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a1e62000a1862000a1284620009e9565b620009f3565b620009e9565b9050919050565b6000819050919050565b62000a3a83620009fd565b62000a5262000a498262000a25565b84845462000993565b825550505050565b600090565b62000a6962000a5a565b62000a7681848462000a2f565b505050565b5b8181101562000a9e5762000a9260008262000a5f565b60018101905062000a7c565b5050565b601f82111562000aed5762000ab78162000961565b62000ac28462000976565b8101602085101562000ad2578190505b62000aea62000ae18562000976565b83018262000a7b565b50505b505050565b600082821c905092915050565b600062000b126000198460080262000af2565b1980831691505092915050565b600062000b2d838362000aff565b9150826002028217905092915050565b62000b4882620008c3565b67ffffffffffffffff81111562000b645762000b63620008ce565b5b62000b7082546200092c565b62000b7d82828562000aa2565b600060209050601f83116001811462000bb5576000841562000ba0578287015190505b62000bac858262000b1f565b86555062000c1c565b601f19841662000bc58662000961565b60005b8281101562000bef5784890151825560018201915060208501945060208101905062000bc8565b8683101562000c0f578489015162000c0b601f89168262000aff565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000cb25780860481111562000c8a5762000c8962000c24565b5b600185161562000c9a5780820291505b808102905062000caa8562000c53565b945062000c6a565b94509492505050565b60008262000ccd576001905062000da0565b8162000cdd576000905062000da0565b816001811462000cf6576002811462000d015762000d37565b600191505062000da0565b60ff84111562000d165762000d1562000c24565b5b8360020a91508482111562000d305762000d2f62000c24565b5b5062000da0565b5060208310610133831016604e8410600b841016171562000d715782820a90508381111562000d6b5762000d6a62000c24565b5b62000da0565b62000d80848484600162000c60565b9250905081840481111562000d9a5762000d9962000c24565b5b81810290505b9392505050565b600060ff82169050919050565b600062000dc182620009e9565b915062000dce8362000da7565b925062000dfd7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000cbb565b905092915050565b600062000e1282620009e9565b915062000e1f83620009e9565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff048311821515161562000e5b5762000e5a62000c24565b5b828202905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b600062000e988262000e6b565b9050919050565b62000eaa8162000e8b565b811462000eb657600080fd5b50565b60008151905062000eca8162000e9f565b92915050565b60006020828403121562000ee95762000ee862000e66565b5b600062000ef98482850162000eb9565b91505092915050565b62000f0d8162000e8b565b82525050565b600060408201905062000f2a600083018562000f02565b62000f39602083018462000f02565b9392505050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000f89601f8362000f40565b915062000f968262000f51565b602082019050919050565b6000602082019050818103600083015262000fbc8162000f7a565b9050919050565b600062000fd082620009e9565b915062000fdd83620009e9565b925082820190508082111562000ff85762000ff762000c24565b5b92915050565b6200100981620009e9565b82525050565b600060208201905062001026600083018462000ffe565b92915050565b60805160a051612f0a620010916000396000818161077401528181611a6301528181611b4401528181611b6b01528181611c4a0152611c71015260008181610811015281816110e70152818161113c015281816111aa01526113f10152612f0a6000f3fe6080604052600436106101a05760003560e01c806381bfdcca116100ec578063af8af6901161008a578063dd62ed3e11610064578063dd62ed3e14610615578063f2fde38b14610652578063f345bd851461067b578063f88de0c3146106a6576101a7565b8063af8af69014610584578063bb85c6d1146105c1578063d85a2828146105fe576101a7565b806395d89b41116100c657806395d89b41146104b4578063a457c2d7146104df578063a9059cbb1461051c578063aa4bde2814610559576101a7565b806381bfdcca146104215780638c0b5e221461045e5780638da5cb5b14610489576101a7565b80633950935111610159578063677daa5711610133578063677daa571461036557806370a08231146103a2578063715018a6146103df57806375f0a874146103f6576101a7565b806339509351146102d257806349bd5a5e1461030f578063527ffabd1461033a576101a7565b806306fdde03146101ac578063095ea7b3146101d75780631694505e1461021457806318160ddd1461023f57806323b872dd1461026a578063313ce567146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106bd565b6040516101ce9190611deb565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611ea6565b61074f565b60405161020b9190611f01565b60405180910390f35b34801561022057600080fd5b50610229610772565b6040516102369190611f7b565b60405180910390f35b34801561024b57600080fd5b50610254610796565b6040516102619190611fa5565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611fc0565b6107a0565b60405161029e9190611f01565b60405180910390f35b3480156102b357600080fd5b506102bc6107cf565b6040516102c9919061202f565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190611ea6565b6107d8565b6040516103069190611f01565b60405180910390f35b34801561031b57600080fd5b5061032461080f565b6040516103319190612059565b60405180910390f35b34801561034657600080fd5b5061034f610833565b60405161035c9190611fa5565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190612074565b610839565b6040516103999190611f01565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906120a1565b610879565b6040516103d69190611fa5565b60405180910390f35b3480156103eb57600080fd5b506103f46108c1565b005b34801561040257600080fd5b5061040b6108d5565b6040516104189190612059565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612074565b6108fb565b6040516104559190611f01565b60405180910390f35b34801561046a57600080fd5b5061047361093b565b6040516104809190611fa5565b60405180910390f35b34801561049557600080fd5b5061049e610941565b6040516104ab9190612059565b60405180910390f35b3480156104c057600080fd5b506104c961096b565b6040516104d69190611deb565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190611ea6565b6109fd565b6040516105139190611f01565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190611ea6565b610a74565b6040516105509190611f01565b60405180910390f35b34801561056557600080fd5b5061056e610a97565b60405161057b9190611fa5565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906120ce565b610a9d565b6040516105b89190611f01565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e391906120a1565b610b0e565b6040516105f59190611f01565b60405180910390f35b34801561060a57600080fd5b50610613610b62565b005b34801561062157600080fd5b5061063c6004803603810190610637919061210e565b610be4565b6040516106499190611fa5565b60405180910390f35b34801561065e57600080fd5b50610679600480360381019061067491906120a1565b610c6b565b005b34801561068757600080fd5b50610690610cee565b60405161069d9190611fa5565b60405180910390f35b3480156106b257600080fd5b506106bb610cf4565b005b6060600380546106cc9061217d565b80601f01602080910402602001604051908101604052809291908181526020018280546106f89061217d565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b60008061075a610d5f565b9050610767818585610d67565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b6000600254905090565b6000806107ab610d5f565b90506107b8858285610f30565b6107c3858585610fbc565b60019150509392505050565b60006012905090565b6000806107e3610d5f565b90506108048185856107f58589610be4565b6107ff91906121dd565b610d67565b600191505092915050565b7f000000000000000000000000000000000000000000000000000000000000000081565b600d5481565b6000610843611544565b600a60009054906101000a900460ff16600a61085f9190612344565b8261086a919061238f565b600e8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c9611544565b6108d360006115c2565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610905611544565b600a60009054906101000a900460ff16600a6109219190612344565b8261092c919061238f565b600f8190555060019050919050565b600e5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461097a9061217d565b80601f01602080910402602001604051908101604052809291908181526020018280546109a69061217d565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b600080610a08610d5f565b90506000610a168286610be4565b905083811015610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a529061245b565b60405180910390fd5b610a688286868403610d67565b60019250505092915050565b600080610a7f610d5f565b9050610a8c818585610fbc565b600191505092915050565b600f5481565b6000610aa7611544565b60648284610ab591906121dd565b1115610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed906124ed565b60405180910390fd5b82600c8190555081600d819055506001905092915050565b6000610b18611544565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610b6d30610879565b11610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490612559565b60405180910390fd5b610be230601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610bdd30610879565b611688565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c73611544565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906125eb565b60405180910390fd5b610ceb816115c2565b50565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d5c573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd9061267d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c9061270f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f239190611fa5565b60405180910390a3505050565b6000610f3c8484610be4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb65781811015610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061277b565b60405180910390fd5b610fb58484848403610d67565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110229061280d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110919061289f565b60405180910390fd5b806110a484610879565b10156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612931565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061118a57507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156111a35750600560149054906101000a900460ff16155b15611533577f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112fa57600060065461120930610879565b6112139190612951565b9050601054811061122a576112296010546118e8565b5b601154600654106112f8576112406011546119a9565b601154600660008282546112549190612951565b925050819055506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906129d1565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061139d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113aa57819050611522565b600e548211156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690612a63565b60405180910390fd5b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361149b57600f5461144e84610879565b8361145991906121dd565b111561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190612af5565b60405180910390fd5b5b60006064600d54846114ad919061238f565b6114b79190612b44565b905060006064600c54856114cb919061238f565b6114d59190612b44565b905080826114e391906121dd565b846114ee9190612951565b9250816006600082825461150291906121dd565b9250508190555061151f8630838561151a91906121dd565b611688565b50505b61152d848483611688565b5061153f565b61153e838383611688565b5b505050565b61154c610d5f565b73ffffffffffffffffffffffffffffffffffffffff1661156a610941565b73ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612bc1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061280d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d9061289f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390612931565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118da9190611fa5565b60405180910390a350505050565b6001600560146101000a81548160ff02191690831515021790555060006002826119129190612b44565b9050600081836119229190612951565b90506000479050611932836119a9565b600081476119409190612951565b905061194c8382611c29565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161197f93929190612be1565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156119e1576119e0612c18565b5b604051908082528060200260200182016040528015611a0f5781602001602082028036833780820191505090505b5090503081600081518110611a2757611a26612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af09190612c8b565b81600181518110611b0457611b03612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b69307f000000000000000000000000000000000000000000000000000000000000000084610d67565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611bb891906121dd565b6040518663ffffffff1660e01b8152600401611bd8959493929190612db1565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611c6f307f000000000000000000000000000000000000000000000000000000000000000084610d67565b7f000000000000000000000000000000000000000000000000000000000000000073ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611cf696959493929190612e0b565b60606040518083038185885af1158015611d14573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d399190612e81565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d95578082015181840152602081019050611d7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dbd82611d5b565b611dc78185611d66565b9350611dd7818560208601611d77565b611de081611da1565b840191505092915050565b60006020820190508181036000830152611e058184611db2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e3d82611e12565b9050919050565b611e4d81611e32565b8114611e5857600080fd5b50565b600081359050611e6a81611e44565b92915050565b6000819050919050565b611e8381611e70565b8114611e8e57600080fd5b50565b600081359050611ea081611e7a565b92915050565b60008060408385031215611ebd57611ebc611e0d565b5b6000611ecb85828601611e5b565b9250506020611edc85828601611e91565b9150509250929050565b60008115159050919050565b611efb81611ee6565b82525050565b6000602082019050611f166000830184611ef2565b92915050565b6000819050919050565b6000611f41611f3c611f3784611e12565b611f1c565b611e12565b9050919050565b6000611f5382611f26565b9050919050565b6000611f6582611f48565b9050919050565b611f7581611f5a565b82525050565b6000602082019050611f906000830184611f6c565b92915050565b611f9f81611e70565b82525050565b6000602082019050611fba6000830184611f96565b92915050565b600080600060608486031215611fd957611fd8611e0d565b5b6000611fe786828701611e5b565b9350506020611ff886828701611e5b565b925050604061200986828701611e91565b9150509250925092565b600060ff82169050919050565b61202981612013565b82525050565b60006020820190506120446000830184612020565b92915050565b61205381611e32565b82525050565b600060208201905061206e600083018461204a565b92915050565b60006020828403121561208a57612089611e0d565b5b600061209884828501611e91565b91505092915050565b6000602082840312156120b7576120b6611e0d565b5b60006120c584828501611e5b565b91505092915050565b600080604083850312156120e5576120e4611e0d565b5b60006120f385828601611e91565b925050602061210485828601611e91565b9150509250929050565b6000806040838503121561212557612124611e0d565b5b600061213385828601611e5b565b925050602061214485828601611e5b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061219557607f821691505b6020821081036121a8576121a761214e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121e882611e70565b91506121f383611e70565b925082820190508082111561220b5761220a6121ae565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561226857808604811115612244576122436121ae565b5b60018516156122535780820291505b808102905061226185612211565b9450612228565b94509492505050565b600082612281576001905061233d565b8161228f576000905061233d565b81600181146122a557600281146122af576122de565b600191505061233d565b60ff8411156122c1576122c06121ae565b5b8360020a9150848211156122d8576122d76121ae565b5b5061233d565b5060208310610133831016604e8410600b84101617156123135782820a90508381111561230e5761230d6121ae565b5b61233d565b612320848484600161221e565b92509050818404811115612337576123366121ae565b5b81810290505b9392505050565b600061234f82611e70565b915061235a83612013565b92506123877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612271565b905092915050565b600061239a82611e70565b91506123a583611e70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123de576123dd6121ae565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612445602583611d66565b9150612450826123e9565b604082019050919050565b6000602082019050818103600083015261247481612438565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b60006124d7602d83611d66565b91506124e28261247b565b604082019050919050565b60006020820190508181036000830152612506816124ca565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b6000612543601483611d66565b915061254e8261250d565b602082019050919050565b6000602082019050818103600083015261257281612536565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125d5602683611d66565b91506125e082612579565b604082019050919050565b60006020820190508181036000830152612604816125c8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612667602483611d66565b91506126728261260b565b604082019050919050565b600060208201905081810360008301526126968161265a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f9602283611d66565b91506127048261269d565b604082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612765601d83611d66565b91506127708261272f565b602082019050919050565b6000602082019050818103600083015261279481612758565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127f7602583611d66565b91506128028261279b565b604082019050919050565b60006020820190508181036000830152612826816127ea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612889602383611d66565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061291b602683611d66565b9150612926826128bf565b604082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b600061295c82611e70565b915061296783611e70565b925082820390508181111561297f5761297e6121ae565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006129bb601283611d66565b91506129c682612985565b602082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612a4d603983611d66565b9150612a58826129f1565b604082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612adf603683611d66565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b4f82611e70565b9150612b5a83611e70565b925082612b6a57612b69612b15565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bab602083611d66565b9150612bb682612b75565b602082019050919050565b60006020820190508181036000830152612bda81612b9e565b9050919050565b6000606082019050612bf66000830186611f96565b612c036020830185611f96565b612c106040830184611f96565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c8581611e44565b92915050565b600060208284031215612ca157612ca0611e0d565b5b6000612caf84828501612c76565b91505092915050565b6000819050919050565b6000612cdd612cd8612cd384612cb8565b611f1c565b611e70565b9050919050565b612ced81612cc2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d2881611e32565b82525050565b6000612d3a8383612d1f565b60208301905092915050565b6000602082019050919050565b6000612d5e82612cf3565b612d688185612cfe565b9350612d7383612d0f565b8060005b83811015612da4578151612d8b8882612d2e565b9750612d9683612d46565b925050600181019050612d77565b5085935050505092915050565b600060a082019050612dc66000830188611f96565b612dd36020830187612ce4565b8181036040830152612de58186612d53565b9050612df4606083018561204a565b612e016080830184611f96565b9695505050505050565b600060c082019050612e20600083018961204a565b612e2d6020830188611f96565b612e3a6040830187612ce4565b612e476060830186612ce4565b612e54608083018561204a565b612e6160a0830184611f96565b979650505050505050565b600081519050612e7b81611e7a565b92915050565b600080600060608486031215612e9a57612e99611e0d565b5b6000612ea886828701612e6c565b9350506020612eb986828701612e6c565b9250506040612eca86828701612e6c565b915050925092509256fea26469706673582212205f8740e8baad88a90ba3ab467123ededdb3bb9bb6567e9acc9a020f4bd14cecf64736f6c63430008100033
Deployed Bytecode
0x6080604052600436106101a05760003560e01c806381bfdcca116100ec578063af8af6901161008a578063dd62ed3e11610064578063dd62ed3e14610615578063f2fde38b14610652578063f345bd851461067b578063f88de0c3146106a6576101a7565b8063af8af69014610584578063bb85c6d1146105c1578063d85a2828146105fe576101a7565b806395d89b41116100c657806395d89b41146104b4578063a457c2d7146104df578063a9059cbb1461051c578063aa4bde2814610559576101a7565b806381bfdcca146104215780638c0b5e221461045e5780638da5cb5b14610489576101a7565b80633950935111610159578063677daa5711610133578063677daa571461036557806370a08231146103a2578063715018a6146103df57806375f0a874146103f6576101a7565b806339509351146102d257806349bd5a5e1461030f578063527ffabd1461033a576101a7565b806306fdde03146101ac578063095ea7b3146101d75780631694505e1461021457806318160ddd1461023f57806323b872dd1461026a578063313ce567146102a7576101a7565b366101a757005b600080fd5b3480156101b857600080fd5b506101c16106bd565b6040516101ce9190611deb565b60405180910390f35b3480156101e357600080fd5b506101fe60048036038101906101f99190611ea6565b61074f565b60405161020b9190611f01565b60405180910390f35b34801561022057600080fd5b50610229610772565b6040516102369190611f7b565b60405180910390f35b34801561024b57600080fd5b50610254610796565b6040516102619190611fa5565b60405180910390f35b34801561027657600080fd5b50610291600480360381019061028c9190611fc0565b6107a0565b60405161029e9190611f01565b60405180910390f35b3480156102b357600080fd5b506102bc6107cf565b6040516102c9919061202f565b60405180910390f35b3480156102de57600080fd5b506102f960048036038101906102f49190611ea6565b6107d8565b6040516103069190611f01565b60405180910390f35b34801561031b57600080fd5b5061032461080f565b6040516103319190612059565b60405180910390f35b34801561034657600080fd5b5061034f610833565b60405161035c9190611fa5565b60405180910390f35b34801561037157600080fd5b5061038c60048036038101906103879190612074565b610839565b6040516103999190611f01565b60405180910390f35b3480156103ae57600080fd5b506103c960048036038101906103c491906120a1565b610879565b6040516103d69190611fa5565b60405180910390f35b3480156103eb57600080fd5b506103f46108c1565b005b34801561040257600080fd5b5061040b6108d5565b6040516104189190612059565b60405180910390f35b34801561042d57600080fd5b5061044860048036038101906104439190612074565b6108fb565b6040516104559190611f01565b60405180910390f35b34801561046a57600080fd5b5061047361093b565b6040516104809190611fa5565b60405180910390f35b34801561049557600080fd5b5061049e610941565b6040516104ab9190612059565b60405180910390f35b3480156104c057600080fd5b506104c961096b565b6040516104d69190611deb565b60405180910390f35b3480156104eb57600080fd5b5061050660048036038101906105019190611ea6565b6109fd565b6040516105139190611f01565b60405180910390f35b34801561052857600080fd5b50610543600480360381019061053e9190611ea6565b610a74565b6040516105509190611f01565b60405180910390f35b34801561056557600080fd5b5061056e610a97565b60405161057b9190611fa5565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906120ce565b610a9d565b6040516105b89190611f01565b60405180910390f35b3480156105cd57600080fd5b506105e860048036038101906105e391906120a1565b610b0e565b6040516105f59190611f01565b60405180910390f35b34801561060a57600080fd5b50610613610b62565b005b34801561062157600080fd5b5061063c6004803603810190610637919061210e565b610be4565b6040516106499190611fa5565b60405180910390f35b34801561065e57600080fd5b50610679600480360381019061067491906120a1565b610c6b565b005b34801561068757600080fd5b50610690610cee565b60405161069d9190611fa5565b60405180910390f35b3480156106b257600080fd5b506106bb610cf4565b005b6060600380546106cc9061217d565b80601f01602080910402602001604051908101604052809291908181526020018280546106f89061217d565b80156107455780601f1061071a57610100808354040283529160200191610745565b820191906000526020600020905b81548152906001019060200180831161072857829003601f168201915b5050505050905090565b60008061075a610d5f565b9050610767818585610d67565b600191505092915050565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000600254905090565b6000806107ab610d5f565b90506107b8858285610f30565b6107c3858585610fbc565b60019150509392505050565b60006012905090565b6000806107e3610d5f565b90506108048185856107f58589610be4565b6107ff91906121dd565b610d67565b600191505092915050565b7f00000000000000000000000019ea20740d974a1233575ddfae332edfe79564b781565b600d5481565b6000610843611544565b600a60009054906101000a900460ff16600a61085f9190612344565b8261086a919061238f565b600e8190555060019050919050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108c9611544565b6108d360006115c2565b565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6000610905611544565b600a60009054906101000a900460ff16600a6109219190612344565b8261092c919061238f565b600f8190555060019050919050565b600e5481565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461097a9061217d565b80601f01602080910402602001604051908101604052809291908181526020018280546109a69061217d565b80156109f35780601f106109c8576101008083540402835291602001916109f3565b820191906000526020600020905b8154815290600101906020018083116109d657829003601f168201915b5050505050905090565b600080610a08610d5f565b90506000610a168286610be4565b905083811015610a5b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610a529061245b565b60405180910390fd5b610a688286868403610d67565b60019250505092915050565b600080610a7f610d5f565b9050610a8c818585610fbc565b600191505092915050565b600f5481565b6000610aa7611544565b60648284610ab591906121dd565b1115610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed906124ed565b60405180910390fd5b82600c8190555081600d819055506001905092915050565b6000610b18611544565b81601260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060019050919050565b6000610b6d30610879565b11610bad576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ba490612559565b60405180910390fd5b610be230601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16610bdd30610879565b611688565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610c73611544565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603610ce2576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cd9906125eb565b60405180910390fd5b610ceb816115c2565b50565b600c5481565b601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610d5c573d6000803e3d6000fd5b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610dd6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610dcd9061267d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610e45576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e3c9061270f565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610f239190611fa5565b60405180910390a3505050565b6000610f3c8484610be4565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610fb65781811015610fa8576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f9f9061277b565b60405180910390fd5b610fb58484848403610d67565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff160361102b576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110229061280d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160361109a576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110919061289f565b60405180910390fd5b806110a484610879565b10156110e5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016110dc90612931565b60405180910390fd5b7f00000000000000000000000019ea20740d974a1233575ddfae332edfe79564b773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16148061118a57507f00000000000000000000000019ea20740d974a1233575ddfae332edfe79564b773ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16145b80156111a35750600560149054906101000a900460ff16155b15611533577f00000000000000000000000019ea20740d974a1233575ddfae332edfe79564b773ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16146112fa57600060065461120930610879565b6112139190612951565b9050601054811061122a576112296010546118e8565b5b601154600654106112f8576112406011546119a9565b601154600660008282546112549190612951565b925050819055506000601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f193505050509050806112f6576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112ed906129d1565b60405180910390fd5b505b505b6000600760008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff168061139d5750600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff165b156113aa57819050611522565b600e548211156113ef576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113e690612a63565b60405180910390fd5b7f00000000000000000000000019ea20740d974a1233575ddfae332edfe79564b773ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff160361149b57600f5461144e84610879565b8361145991906121dd565b111561149a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161149190612af5565b60405180910390fd5b5b60006064600d54846114ad919061238f565b6114b79190612b44565b905060006064600c54856114cb919061238f565b6114d59190612b44565b905080826114e391906121dd565b846114ee9190612951565b9250816006600082825461150291906121dd565b9250508190555061151f8630838561151a91906121dd565b611688565b50505b61152d848483611688565b5061153f565b61153e838383611688565b5b505050565b61154c610d5f565b73ffffffffffffffffffffffffffffffffffffffff1661156a610941565b73ffffffffffffffffffffffffffffffffffffffff16146115c0576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115b790612bc1565b60405180910390fd5b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16036116f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016116ee9061280d565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611766576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161175d9061289f565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156117ec576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016117e390612931565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516118da9190611fa5565b60405180910390a350505050565b6001600560146101000a81548160ff02191690831515021790555060006002826119129190612b44565b9050600081836119229190612951565b90506000479050611932836119a9565b600081476119409190612951565b905061194c8382611c29565b7f17bbfb9a6069321b6ded73bd96327c9e6b7212a5cd51ff219cd61370acafb56184828560405161197f93929190612be1565b60405180910390a1505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff0219169083151502179055506000600267ffffffffffffffff8111156119e1576119e0612c18565b5b604051908082528060200260200182016040528015611a0f5781602001602082028036833780820191505090505b5090503081600081518110611a2757611a26612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250507f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015611acc573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190611af09190612c8b565b81600181518110611b0457611b03612c47565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff1681525050611b69307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d67565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663791ac947836000843061012c42611bb891906121dd565b6040518663ffffffff1660e01b8152600401611bd8959493929190612db1565b600060405180830381600087803b158015611bf257600080fd5b505af1158015611c06573d6000803e3d6000fd5b50505050506000600560146101000a81548160ff02191690831515021790555050565b6001600560146101000a81548160ff021916908315150217905550611c6f307f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d84610d67565b7f0000000000000000000000007a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1663f305d719823085600080601260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16426040518863ffffffff1660e01b8152600401611cf696959493929190612e0b565b60606040518083038185885af1158015611d14573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190611d399190612e81565b5050506000600560146101000a81548160ff0219169083151502179055505050565b600081519050919050565b600082825260208201905092915050565b60005b83811015611d95578082015181840152602081019050611d7a565b60008484015250505050565b6000601f19601f8301169050919050565b6000611dbd82611d5b565b611dc78185611d66565b9350611dd7818560208601611d77565b611de081611da1565b840191505092915050565b60006020820190508181036000830152611e058184611db2565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000611e3d82611e12565b9050919050565b611e4d81611e32565b8114611e5857600080fd5b50565b600081359050611e6a81611e44565b92915050565b6000819050919050565b611e8381611e70565b8114611e8e57600080fd5b50565b600081359050611ea081611e7a565b92915050565b60008060408385031215611ebd57611ebc611e0d565b5b6000611ecb85828601611e5b565b9250506020611edc85828601611e91565b9150509250929050565b60008115159050919050565b611efb81611ee6565b82525050565b6000602082019050611f166000830184611ef2565b92915050565b6000819050919050565b6000611f41611f3c611f3784611e12565b611f1c565b611e12565b9050919050565b6000611f5382611f26565b9050919050565b6000611f6582611f48565b9050919050565b611f7581611f5a565b82525050565b6000602082019050611f906000830184611f6c565b92915050565b611f9f81611e70565b82525050565b6000602082019050611fba6000830184611f96565b92915050565b600080600060608486031215611fd957611fd8611e0d565b5b6000611fe786828701611e5b565b9350506020611ff886828701611e5b565b925050604061200986828701611e91565b9150509250925092565b600060ff82169050919050565b61202981612013565b82525050565b60006020820190506120446000830184612020565b92915050565b61205381611e32565b82525050565b600060208201905061206e600083018461204a565b92915050565b60006020828403121561208a57612089611e0d565b5b600061209884828501611e91565b91505092915050565b6000602082840312156120b7576120b6611e0d565b5b60006120c584828501611e5b565b91505092915050565b600080604083850312156120e5576120e4611e0d565b5b60006120f385828601611e91565b925050602061210485828601611e91565b9150509250929050565b6000806040838503121561212557612124611e0d565b5b600061213385828601611e5b565b925050602061214485828601611e5b565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000600282049050600182168061219557607f821691505b6020821081036121a8576121a761214e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006121e882611e70565b91506121f383611e70565b925082820190508082111561220b5761220a6121ae565b5b92915050565b60008160011c9050919050565b6000808291508390505b600185111561226857808604811115612244576122436121ae565b5b60018516156122535780820291505b808102905061226185612211565b9450612228565b94509492505050565b600082612281576001905061233d565b8161228f576000905061233d565b81600181146122a557600281146122af576122de565b600191505061233d565b60ff8411156122c1576122c06121ae565b5b8360020a9150848211156122d8576122d76121ae565b5b5061233d565b5060208310610133831016604e8410600b84101617156123135782820a90508381111561230e5761230d6121ae565b5b61233d565b612320848484600161221e565b92509050818404811115612337576123366121ae565b5b81810290505b9392505050565b600061234f82611e70565b915061235a83612013565b92506123877fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8484612271565b905092915050565b600061239a82611e70565b91506123a583611e70565b9250817fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff04831182151516156123de576123dd6121ae565b5b828202905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612445602583611d66565b9150612450826123e9565b604082019050919050565b6000602082019050818103600083015261247481612438565b9050919050565b7f45524332303a20746f74616c20746178206d757374206e6f742062652067726560008201527f61746572207468616e2031303000000000000000000000000000000000000000602082015250565b60006124d7602d83611d66565b91506124e28261247b565b604082019050919050565b60006020820190508181036000830152612506816124ca565b9050919050565b7f496e73756666696369656e742042616c616e6365000000000000000000000000600082015250565b6000612543601483611d66565b915061254e8261250d565b602082019050919050565b6000602082019050818103600083015261257281612536565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006125d5602683611d66565b91506125e082612579565b604082019050919050565b60006020820190508181036000830152612604816125c8565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612667602483611d66565b91506126728261260b565b604082019050919050565b600060208201905081810360008301526126968161265a565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006126f9602283611d66565b91506127048261269d565b604082019050919050565b60006020820190508181036000830152612728816126ec565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612765601d83611d66565b91506127708261272f565b602082019050919050565b6000602082019050818103600083015261279481612758565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006127f7602583611d66565b91506128028261279b565b604082019050919050565b60006020820190508181036000830152612826816127ea565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612889602383611d66565b91506128948261282d565b604082019050919050565b600060208201905081810360008301526128b88161287c565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b600061291b602683611d66565b9150612926826128bf565b604082019050919050565b6000602082019050818103600083015261294a8161290e565b9050919050565b600061295c82611e70565b915061296783611e70565b925082820390508181111561297f5761297e6121ae565b5b92915050565b7f4661696c656420746f2073656e64204554480000000000000000000000000000600082015250565b60006129bb601283611d66565b91506129c682612985565b602082019050919050565b600060208201905081810360008301526129ea816129ae565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473207460008201527f6865206d6178207472616e73616374696f6e20616d6f756e7400000000000000602082015250565b6000612a4d603983611d66565b9150612a58826129f1565b604082019050919050565b60006020820190508181036000830152612a7c81612a40565b9050919050565b7f45524332303a2062616c616e636520616d6f756e74206578636565646564206d60008201527f61782077616c6c657420616d6f756e74206c696d697400000000000000000000602082015250565b6000612adf603683611d66565b9150612aea82612a83565b604082019050919050565b60006020820190508181036000830152612b0e81612ad2565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612b4f82611e70565b9150612b5a83611e70565b925082612b6a57612b69612b15565b5b828204905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612bab602083611d66565b9150612bb682612b75565b602082019050919050565b60006020820190508181036000830152612bda81612b9e565b9050919050565b6000606082019050612bf66000830186611f96565b612c036020830185611f96565b612c106040830184611f96565b949350505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050612c8581611e44565b92915050565b600060208284031215612ca157612ca0611e0d565b5b6000612caf84828501612c76565b91505092915050565b6000819050919050565b6000612cdd612cd8612cd384612cb8565b611f1c565b611e70565b9050919050565b612ced81612cc2565b82525050565b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b612d2881611e32565b82525050565b6000612d3a8383612d1f565b60208301905092915050565b6000602082019050919050565b6000612d5e82612cf3565b612d688185612cfe565b9350612d7383612d0f565b8060005b83811015612da4578151612d8b8882612d2e565b9750612d9683612d46565b925050600181019050612d77565b5085935050505092915050565b600060a082019050612dc66000830188611f96565b612dd36020830187612ce4565b8181036040830152612de58186612d53565b9050612df4606083018561204a565b612e016080830184611f96565b9695505050505050565b600060c082019050612e20600083018961204a565b612e2d6020830188611f96565b612e3a6040830187612ce4565b612e476060830186612ce4565b612e54608083018561204a565b612e6160a0830184611f96565b979650505050505050565b600081519050612e7b81611e7a565b92915050565b600080600060608486031215612e9a57612e99611e0d565b5b6000612ea886828701612e6c565b9350506020612eb986828701612e6c565b9250506040612eca86828701612e6c565b915050925092509256fea26469706673582212205f8740e8baad88a90ba3ab467123ededdb3bb9bb6567e9acc9a020f4bd14cecf64736f6c63430008100033
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.