ERC-20
Overview
Max Total Supply
10,000,000 AZK
Holders
174
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
86,965.215124920516651448 AZKValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
AnonZK
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 pragma solidity ^0.8.19; import { ERC20, IERC20 } from "@openzeppelin/[email protected]/token/ERC20/ERC20.sol"; import {Ownable} from "@openzeppelin/[email protected]/access/Ownable.sol"; /** * Website: https://anonzk.io/ * VCC: https://vcc.anonzk.io/ * Twitter: https://twitter.com/AnonAZK * Telegram: https://t.me/AnonZKPortal * Docs: https://anonzk-documents.gitbook.io/anonzk/ * * ▄████████ ███▄▄▄▄ ▄██████▄ ███▄▄▄▄ ▄███████▄ ▄█ ▄█▄ * ███ ███ ███▀▀▀██▄ ███ ███ ███▀▀▀██▄ ██▀ ▄██ ███ ▄███▀ * ███ ███ ███ ███ ███ ███ ███ ███ ▄███▀ ███▐██▀ * ███ ███ ███ ███ ███ ███ ███ ███ ▀█▀▄███▀▄▄ ▄█████▀ * ▀███████████ ███ ███ ███ ███ ███ ███ ▄███▀ ▀ ▀▀█████▄ * ███ ███ ███ ███ ███ ███ ███ ███ ▄███▀ ███▐██▄ * ███ ███ ███ ███ ███ ███ ███ ███ ███▄ ▄█ ███ ▀███▄ * ███ █▀ ▀█ █▀ ▀██████▀ ▀█ █▀ ▀████████▀ ███ ▀█▀ * ▀ */ interface IUniswapV2Router02 { function factory() external pure returns (address); function WETH() external pure returns (address); function swapExactTokensForETHSupportingFeeOnTransferTokens( uint256 amountIn, uint256 amountOutMin, address[] calldata path, address to, uint256 deadline ) external; function addLiquidityETH( address token, uint256 amountTokenDesired, uint256 amountTokenMin, uint256 amountETHMin, address to, uint256 deadline ) external payable returns (uint256 amountToken, uint256 amountETH, uint256 liquidity); } interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } contract AnonZK is ERC20, Ownable { // errors error ErrAlreadySetup(); error ErrAlreadyLaunched(); error ErrMaxBalance(); error ErrMaxTx(); error ErrInvalidFees(); error ErrInvalidSwapThreshold(); error ErrAddressZero(); error ErrZeroValue(); error ErrZeroToken(); error ErrTradingNotStarted(); // states address constant FEE_RECEIVER = 0xC8aFc08747213Da2Ab68373E5B261dd304390270; uint256 public constant MAX_SUPPLY = 10 * 1e6 ether; IUniswapV2Router02 public constant UNISWAP_V2_ROUTER = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); uint256 private constant INITIAL_MAX_TRANSACTION_AMOUNT = 3 * 1e5 ether; // 3% from total supply maxTransactionAmountTxn uint256 private constant INITIAL_MAX_WALLET = 3 * 1e5 ether; // 3% from total supply maxWallet uint256 private constant INITIAL_BUY_FEE = 5; uint256 private constant INITIAL_SELL_FEE = 30; address public uniswapPair; mapping(address => bool) private _limitExempted; mapping(address => bool) private _feeExempted; uint256 public maxWallet; uint256 public maxTx; address public feeReceiver; uint256 public buyFee; uint256 public sellFee; uint256 private _swapThreshold; bool private _isSwapping; bool public tradingStarted; constructor() ERC20("AnonZK", unicode"AZK") { // set states _limitExempted[tx.origin] = true; _limitExempted[address(0)] = true; _limitExempted[address(0xdead)] = true; _limitExempted[address(this)] = true; _limitExempted[address(UNISWAP_V2_ROUTER)] = true; _feeExempted[address(this)] = true; _feeExempted[tx.origin] = true; maxWallet = INITIAL_MAX_WALLET; maxTx = INITIAL_MAX_TRANSACTION_AMOUNT; buyFee = INITIAL_BUY_FEE; sellFee = INITIAL_SELL_FEE; feeReceiver = FEE_RECEIVER; _swapThreshold = MAX_SUPPLY / 100; // mint _mint(tx.origin, MAX_SUPPLY); } receive() external payable {} fallback() external payable {} // erc20 function _beforeTokenTransfer(address from_, address to_, uint256 amount_) internal view override { // check limits max wallet if (!_limitExempted[to_]) { if (balanceOf(to_) + amount_ > maxWallet) { revert ErrMaxBalance(); } } // check max tx if (!_limitExempted[from_]) { if (amount_ > maxTx) { revert ErrMaxTx(); } } // check trading started if (!tradingStarted) { if (!_feeExempted[from_] && !_feeExempted[to_]) { revert ErrTradingNotStarted(); } } } function _transfer(address from_, address to_, uint256 amount_) internal override { // check if (to_ == address(0)) revert ErrAddressZero(); // zero amount if (amount_ == 0) { super._transfer(from_, to_, 0); return; } // swap if ( !_isSwapping && balanceOf(address(this)) >= _swapThreshold && from_ != uniswapPair && !_feeExempted[from_] && !_feeExempted[to_] ) { _isSwapping = true; _swap(); _isSwapping = false; } // fees uint256 fees = 0; if (!_isSwapping && !_feeExempted[from_] && !_feeExempted[to_]) { uint256 _sellTax = sellFee; uint256 _buyTax = buyFee; // on sell if (to_ == uniswapPair && _sellTax > 0) { fees = (amount_ * _sellTax) / 100; super._transfer(from_, address(this), fees); } // on buy else if (from_ == uniswapPair && _buyTax > 0) { fees = (amount_ * _buyTax) / 100; super._transfer(from_, address(this), fees); } } super._transfer(from_, to_, amount_ - fees); } // owners function launch(uint256 tokenAmount_) external payable onlyOwner { // check if already launched if (uniswapPair != address(0)) revert ErrAlreadyLaunched(); // check token & value if (msg.value == 0) revert ErrZeroValue(); if (tokenAmount_ == 0) revert ErrZeroToken(); // transfer token _transfer(msg.sender, address(this), tokenAmount_); // create pair IUniswapV2Router02 __router = UNISWAP_V2_ROUTER; address __uniswapPair = IUniswapV2Factory(__router.factory()).createPair(address(this), __router.WETH()); // update state _limitExempted[__uniswapPair] = true; // approve tokens _approve(address(this), address(__router), type(uint256).max); _approve(address(this), address(__uniswapPair), type(uint256).max); IERC20(__uniswapPair).approve(address(__router), type(uint256).max); // add liq __router.addLiquidityETH{value: address(this).balance}( address(this), balanceOf(address(this)), 0, 0, owner(), block.timestamp ); uniswapPair = __uniswapPair; } function clearStuck() external onlyOwner { (bool success,) = payable(msg.sender).call{value: address(this).balance}(""); require(success); } function clearStuckToken() external onlyOwner { _transfer(address(this), msg.sender, balanceOf(address(this))); } function setLimitExempted(address addr_, bool exempted_) external onlyOwner { _limitExempted[addr_] = exempted_; } function setFeeExempted(address addr_, bool exempted_) external onlyOwner { _feeExempted[addr_] = exempted_; } function setMaxWallet(uint256 maxWallet_) external onlyOwner { maxWallet = maxWallet_; } function setMaxTx(uint256 maxTx_) external onlyOwner { maxTx = maxTx_; } function setFeeReceiver(address addr_) external onlyOwner { feeReceiver = addr_; } function setFees(uint256 buyFee_, uint256 sellFee_) external onlyOwner { if (buyFee_ > 100 || sellFee_ > 100) { revert ErrInvalidFees(); } sellFee = sellFee_; buyFee = buyFee_; } function setSwapThreshold(uint256 swapThreshold_) external onlyOwner { uint256 __totalSupply = MAX_SUPPLY; if (swapThreshold_ < __totalSupply / 1000 || swapThreshold_ > __totalSupply / 20) { revert ErrInvalidSwapThreshold(); } _swapThreshold = swapThreshold_; } function enableTrading() external onlyOwner { tradingStarted = true; } // internal function _swapTokensForEth(uint256 tokenAmount) private { IUniswapV2Router02 __swapRouter = UNISWAP_V2_ROUTER; // generate the uniswap pair path of token -> weth address[] memory path = new address[](2); path[0] = address(this); path[1] = __swapRouter.WETH(); _approve(address(this), address(__swapRouter), tokenAmount); // make the swap __swapRouter.swapExactTokensForETHSupportingFeeOnTransferTokens( tokenAmount, 0, path, address(this), block.timestamp ); } function _swap() private { uint256 __contractBalance = balanceOf(address(this)); uint256 __swapThreshold = _swapThreshold; // nothing to swap if (__contractBalance == 0) { return; } // swap amount uint256 __swapAmount = __contractBalance; if (__swapAmount > __swapThreshold * 20) { __swapAmount = __swapThreshold * 20; } // swap to ETH _swapTokensForEth(__swapAmount); // send uint256 __balance = address(this).balance; (bool success,) = payable(address(feeReceiver)).call{value: __balance}(""); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.7.0) (access/Ownable.sol) pragma solidity ^0.8.0; import "../utils/Context.sol"; /** * @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); } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.8.0) (token/ERC20/ERC20.sol) pragma solidity ^0.8.0; import "./IERC20.sol"; import "./extensions/IERC20Metadata.sol"; import "../../utils/Context.sol"; /** * @dev Implementation of the {IERC20} interface. * * This implementation is agnostic to the way tokens are created. This means * that a supply mechanism has to be added in a derived contract using {_mint}. * For a generic mechanism see {ERC20PresetMinterPauser}. * * TIP: For a detailed writeup see our guide * https://forum.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; /** * @dev Sets the values for {name} and {symbol}. * * The default value of {decimals} is 18. To select a different value for * {decimals} you should overload it. * * All two of these values are immutable: they can only be set once during * construction. */ constructor(string memory name_, string memory symbol_) { _name = name_; _symbol = symbol_; } /** * @dev Returns the name of the token. */ function name() public view virtual override returns (string memory) { return _name; } /** * @dev Returns the symbol of the token, usually a shorter version of the * name. */ function symbol() public view virtual override returns (string memory) { return _symbol; } /** * @dev Returns the number of decimals used to get its user representation. * For example, if `decimals` equals `2`, a balance of `505` tokens should * be displayed to a user as `5.05` (`505 / 10 ** 2`). * * Tokens usually opt for a value of 18, imitating the relationship between * Ether and Wei. This is the value {ERC20} uses, unless this function is * overridden; * * NOTE: This information is only used for _display_ purposes: it in * no way affects any of the arithmetic of the contract, including * {IERC20-balanceOf} and {IERC20-transfer}. */ function decimals() public view virtual override returns (uint8) { return 18; } /** * @dev See {IERC20-totalSupply}. */ function totalSupply() public view virtual override returns (uint256) { return _totalSupply; } /** * @dev See {IERC20-balanceOf}. */ function balanceOf(address account) public view virtual override returns (uint256) { return _balances[account]; } /** * @dev See {IERC20-transfer}. * * Requirements: * * - `to` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address to, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _transfer(owner, to, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on * `transferFrom`. This is semantically equivalent to an infinite approval. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { address owner = _msgSender(); _approve(owner, spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * NOTE: Does not update the allowance if the current allowance * is the maximum `uint256`. * * Requirements: * * - `from` and `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. * - the caller must have allowance for ``from``'s tokens of at least * `amount`. */ function transferFrom( address from, address to, uint256 amount ) public virtual override returns (bool) { address spender = _msgSender(); _spendAllowance(from, spender, amount); _transfer(from, to, amount); return true; } /** * @dev Atomically increases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. */ function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) { address owner = _msgSender(); _approve(owner, spender, allowance(owner, spender) + addedValue); return true; } /** * @dev Atomically decreases the allowance granted to `spender` by the caller. * * This is an alternative to {approve} that can be used as a mitigation for * problems described in {IERC20-approve}. * * Emits an {Approval} event indicating the updated allowance. * * Requirements: * * - `spender` cannot be the zero address. * - `spender` must have allowance for the caller of at least * `subtractedValue`. */ function decreaseAllowance(address spender, uint256 subtractedValue) public virtual returns (bool) { address owner = _msgSender(); uint256 currentAllowance = allowance(owner, spender); require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(owner, spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `from` to `to`. * * This internal function is equivalent to {transfer}, and can be used to * e.g. implement automatic token fees, slashing mechanisms, etc. * * Emits a {Transfer} event. * * Requirements: * * - `from` cannot be the zero address. * - `to` cannot be the zero address. * - `from` must have a balance of at least `amount`. */ function _transfer( address from, address to, uint256 amount ) internal virtual { require(from != address(0), "ERC20: transfer from the zero address"); require(to != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(from, to, amount); uint256 fromBalance = _balances[from]; require(fromBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[from] = fromBalance - amount; // 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); _afterTokenTransfer(from, to, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; unchecked { // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above. _balances[account] += amount; } emit Transfer(address(0), account, amount); _afterTokenTransfer(address(0), account, amount); } /** * @dev Destroys `amount` tokens from `account`, reducing the * total supply. * * Emits a {Transfer} event with `to` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. * - `account` must have at least `amount` tokens. */ function _burn(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: burn from the zero address"); _beforeTokenTransfer(account, address(0), amount); uint256 accountBalance = _balances[account]; require(accountBalance >= amount, "ERC20: burn amount exceeds balance"); unchecked { _balances[account] = accountBalance - amount; // Overflow not possible: amount <= accountBalance <= totalSupply. _totalSupply -= amount; } emit Transfer(account, address(0), amount); _afterTokenTransfer(account, address(0), amount); } /** * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens. * * This internal function is equivalent to `approve`, and can be used to * e.g. set automatic allowances for certain subsystems, etc. * * Emits an {Approval} event. * * Requirements: * * - `owner` cannot be the zero address. * - `spender` cannot be the zero address. */ function _approve( address owner, address spender, uint256 amount ) internal virtual { require(owner != address(0), "ERC20: approve from the zero address"); require(spender != address(0), "ERC20: approve to the zero address"); _allowances[owner][spender] = amount; emit Approval(owner, spender, amount); } /** * @dev Updates `owner` s allowance for `spender` based on spent `amount`. * * Does not update the allowance amount in case of infinite allowance. * Revert if not enough allowance is available. * * Might emit an {Approval} event. */ function _spendAllowance( address owner, address spender, uint256 amount ) internal virtual { uint256 currentAllowance = allowance(owner, spender); if (currentAllowance != type(uint256).max) { require(currentAllowance >= amount, "ERC20: insufficient allowance"); unchecked { _approve(owner, spender, currentAllowance - amount); } } } /** * @dev Hook that is called before any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * will be transferred to `to`. * - when `from` is zero, `amount` tokens will be minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens will be burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _beforeTokenTransfer( address from, address to, uint256 amount ) internal virtual {} /** * @dev Hook that is called after any transfer of tokens. This includes * minting and burning. * * Calling conditions: * * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens * has been transferred to `to`. * - when `from` is zero, `amount` tokens have been minted for `to`. * - when `to` is zero, `amount` of ``from``'s tokens have been burned. * - `from` and `to` are never both zero. * * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks]. */ function _afterTokenTransfer( address from, address to, uint256 amount ) internal virtual {} }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (utils/Context.sol) pragma solidity ^0.8.0; /** * @dev Provides information about the current execution context, including the * sender of the transaction and its data. While these are generally available * via msg.sender and msg.data, they should not be accessed in such a direct * manner, since when dealing with meta-transactions the account sending and * paying for execution may not be the actual sender (as far as an application * is concerned). * * This contract is only required for intermediate, library-like contracts. */ abstract contract Context { function _msgSender() internal view virtual returns (address) { return msg.sender; } function _msgData() internal view virtual returns (bytes calldata) { return msg.data; } }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol) pragma solidity ^0.8.0; import "../IERC20.sol"; /** * @dev Interface for the optional metadata functions from the ERC20 standard. * * _Available since v4.1._ */ interface IERC20Metadata is IERC20 { /** * @dev Returns the name of the token. */ function name() external view returns (string memory); /** * @dev Returns the symbol of the token. */ function symbol() external view returns (string memory); /** * @dev Returns the decimals places of the token. */ function decimals() external view returns (uint8); }
// SPDX-License-Identifier: MIT // OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol) pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `to`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address to, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `from` to `to` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address from, address to, uint256 amount ) external returns (bool); }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "devdoc", "userdoc", "metadata", "abi" ] } } }
Contract Security Audit
- No Contract Security Audit Submitted- Submit Audit Here
[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[],"name":"ErrAddressZero","type":"error"},{"inputs":[],"name":"ErrAlreadyLaunched","type":"error"},{"inputs":[],"name":"ErrAlreadySetup","type":"error"},{"inputs":[],"name":"ErrInvalidFees","type":"error"},{"inputs":[],"name":"ErrInvalidSwapThreshold","type":"error"},{"inputs":[],"name":"ErrMaxBalance","type":"error"},{"inputs":[],"name":"ErrMaxTx","type":"error"},{"inputs":[],"name":"ErrTradingNotStarted","type":"error"},{"inputs":[],"name":"ErrZeroToken","type":"error"},{"inputs":[],"name":"ErrZeroValue","type":"error"},{"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":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"},{"stateMutability":"payable","type":"fallback"},{"inputs":[],"name":"MAX_SUPPLY","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"UNISWAP_V2_ROUTER","outputs":[{"internalType":"contract IUniswapV2Router02","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"buyFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"clearStuck","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":[],"name":"enableTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"feeReceiver","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"addedValue","type":"uint256"}],"name":"increaseAllowance","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"tokenAmount_","type":"uint256"}],"name":"launch","outputs":[],"stateMutability":"payable","type":"function"},{"inputs":[],"name":"maxTx","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"maxWallet","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"sellFee","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"},{"internalType":"bool","name":"exempted_","type":"bool"}],"name":"setFeeExempted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"}],"name":"setFeeReceiver","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"buyFee_","type":"uint256"},{"internalType":"uint256","name":"sellFee_","type":"uint256"}],"name":"setFees","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"addr_","type":"address"},{"internalType":"bool","name":"exempted_","type":"bool"}],"name":"setLimitExempted","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxTx_","type":"uint256"}],"name":"setMaxTx","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"maxWallet_","type":"uint256"}],"name":"setMaxWallet","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"uint256","name":"swapThreshold_","type":"uint256"}],"name":"setSwapThreshold","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"tradingStarted","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"from","type":"address"},{"internalType":"address","name":"to","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"uniswapPair","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040523480156200001157600080fd5b506040518060400160405280600681526020017f416e6f6e5a4b00000000000000000000000000000000000000000000000000008152506040518060400160405280600381526020017f415a4b000000000000000000000000000000000000000000000000000000000081525081600390816200008f919062000b43565b508060049081620000a1919062000b43565b505050620000c4620000b86200040c60201b60201c565b6200041460201b60201c565b6001600760003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760008073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff02191690831515021790555060016007600061dead73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600760003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550600160076000737a250d5630b4cf539739df2c5dacb4c659f2488d73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003073ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055506001600860003273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550693f870857a3e0e3800000600981905550693f870857a3e0e3800000600a819055506005600c81905550601e600d8190555073c8afc08747213da2ab68373e5b261dd304390270600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060646a084595161401484a000000620003e3919062000c88565b600e8190555062000406326a084595161401484a000000620004da60201b60201c565b62000dac565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036200054c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005439062000d21565b60405180910390fd5b62000560600083836200064760201b60201c565b806002600082825462000574919062000d43565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000627919062000d8f565b60405180910390a362000643600083836200087c60201b60201c565b5050565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16620006f45760095481620006ae846200088160201b60201c565b620006ba919062000d43565b1115620006f3576040517f89c8475000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff166200078457600a5481111562000783576040517f07be2e6c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600f60019054906101000a900460ff166200087757600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156200083e5750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b1562000876576040517fe0507a2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b505050565b505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200094b57607f821691505b60208210810362000961576200096062000903565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620009cb7fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff826200098c565b620009d786836200098c565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b600062000a2462000a1e62000a1884620009ef565b620009f9565b620009ef565b9050919050565b6000819050919050565b62000a408362000a03565b62000a5862000a4f8262000a2b565b84845462000999565b825550505050565b600090565b62000a6f62000a60565b62000a7c81848462000a35565b505050565b5b8181101562000aa45762000a9860008262000a65565b60018101905062000a82565b5050565b601f82111562000af35762000abd8162000967565b62000ac8846200097c565b8101602085101562000ad8578190505b62000af062000ae7856200097c565b83018262000a81565b50505b505050565b600082821c905092915050565b600062000b186000198460080262000af8565b1980831691505092915050565b600062000b33838362000b05565b9150826002028217905092915050565b62000b4e82620008c9565b67ffffffffffffffff81111562000b6a5762000b69620008d4565b5b62000b76825462000932565b62000b8382828562000aa8565b600060209050601f83116001811462000bbb576000841562000ba6578287015190505b62000bb2858262000b25565b86555062000c22565b601f19841662000bcb8662000967565b60005b8281101562000bf55784890151825560018201915060208501945060208101905062000bce565b8683101562000c15578489015162000c11601f89168262000b05565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000c9582620009ef565b915062000ca283620009ef565b92508262000cb55762000cb462000c2a565b5b828204905092915050565b600082825260208201905092915050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000d09601f8362000cc0565b915062000d168262000cd1565b602082019050919050565b6000602082019050818103600083015262000d3c8162000cfa565b9050919050565b600062000d5082620009ef565b915062000d5d83620009ef565b925082820190508082111562000d785762000d7762000c59565b5b92915050565b62000d8981620009ef565b82525050565b600060208201905062000da6600083018462000d7e565b92915050565b6131978062000dbc6000396000f3fe6080604052600436106101fd5760003560e01c80638a8c523c1161010d578063a9059cbb116100a0578063d85a28281161006f578063d85a2828146106fa578063dd62ed3e14610711578063efdcd9741461074e578063f2fde38b14610777578063f8b45b05146107a057610204565b8063a9059cbb1461063e578063b3f006741461067b578063bc337182146106a6578063c816841b146106cf57610204565b80639d0014b1116100dc5780639d0014b1146105845780639e29d684146105ad578063a457c2d7146105d6578063a82ed9ec1461061357610204565b80638a8c523c146105005780638da5cb5b146105175780638de5c0641461054257806395d89b411461055957610204565b8063395093511161019057806360553fef1161015f57806360553fef1461043c57806370a0823114610465578063715018a6146104a25780637437681e146104b957806385b12c7c146104e457610204565b8063395093511461038057806347062402146103bd5780635b4f472a146103e85780635d0044ca1461041357610204565b806323b872dd116101cc57806323b872dd146102c25780632b14ca56146102ff578063313ce5671461032a57806332cb6b0c1461035557610204565b806306fdde0314610206578063095ea7b3146102315780630b78f9c01461026e57806318160ddd1461029757610204565b3661020457005b005b34801561021257600080fd5b5061021b6107cb565b604051610228919061238d565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190612448565b61085d565b60405161026591906124a3565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906124be565b610880565b005b3480156102a357600080fd5b506102ac6108e0565b6040516102b9919061250d565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612528565b6108ea565b6040516102f691906124a3565b60405180910390f35b34801561030b57600080fd5b50610314610919565b604051610321919061250d565b60405180910390f35b34801561033657600080fd5b5061033f61091f565b60405161034c9190612597565b60405180910390f35b34801561036157600080fd5b5061036a610928565b604051610377919061250d565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612448565b610937565b6040516103b491906124a3565b60405180910390f35b3480156103c957600080fd5b506103d261096e565b6040516103df919061250d565b60405180910390f35b3480156103f457600080fd5b506103fd610974565b60405161040a91906124a3565b60405180910390f35b34801561041f57600080fd5b5061043a600480360381019061043591906125b2565b610987565b005b34801561044857600080fd5b50610463600480360381019061045e919061260b565b610999565b005b34801561047157600080fd5b5061048c6004803603810190610487919061264b565b6109fc565b604051610499919061250d565b60405180910390f35b3480156104ae57600080fd5b506104b7610a44565b005b3480156104c557600080fd5b506104ce610a58565b6040516104db919061250d565b60405180910390f35b6104fe60048036038101906104f991906125b2565b610a5e565b005b34801561050c57600080fd5b50610515610f11565b005b34801561052357600080fd5b5061052c610f36565b6040516105399190612687565b60405180910390f35b34801561054e57600080fd5b50610557610f60565b005b34801561056557600080fd5b5061056e610fe1565b60405161057b919061238d565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906125b2565b611073565b005b3480156105b957600080fd5b506105d460048036038101906105cf919061260b565b6110f3565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612448565b611156565b60405161060a91906124a3565b60405180910390f35b34801561061f57600080fd5b506106286111cd565b6040516106359190612701565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612448565b6111e5565b60405161067291906124a3565b60405180910390f35b34801561068757600080fd5b50610690611208565b60405161069d9190612687565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906125b2565b61122e565b005b3480156106db57600080fd5b506106e4611240565b6040516106f19190612687565b60405180910390f35b34801561070657600080fd5b5061070f611266565b005b34801561071d57600080fd5b506107386004803603810190610733919061271c565b611283565b604051610745919061250d565b60405180910390f35b34801561075a57600080fd5b506107756004803603810190610770919061264b565b61130a565b005b34801561078357600080fd5b5061079e6004803603810190610799919061264b565b611356565b005b3480156107ac57600080fd5b506107b56113d9565b6040516107c2919061250d565b60405180910390f35b6060600380546107da9061278b565b80601f01602080910402602001604051908101604052809291908181526020018280546108069061278b565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b6000806108686113df565b90506108758185856113e7565b600191505092915050565b6108886115b0565b60648211806108975750606481115b156108ce576040517fb6b51a8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d8190555081600c819055505050565b6000600254905090565b6000806108f56113df565b905061090285828561162e565b61090d8585856116ba565b60019150509392505050565b600d5481565b60006012905090565b6a084595161401484a00000081565b6000806109426113df565b90506109638185856109548589611283565b61095e91906127eb565b6113e7565b600191505092915050565b600c5481565b600f60019054906101000a900460ff1681565b61098f6115b0565b8060098190555050565b6109a16115b0565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a4c6115b0565b610a566000611ab1565b565b600a5481565b610a666115b0565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aee576040517fa1e6f62d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003403610b28576040517fdbf97bca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610b62576040517ff419c8e000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6d3330836116ba565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf79190612834565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c829190612834565b6040518363ffffffff1660e01b8152600401610c9f929190612861565b6020604051808303816000875af1158015610cbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce29190612834565b90506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d6730837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6113e7565b610d9230827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6113e7565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610ded92919061288a565b6020604051808303816000875af1158015610e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3091906128c8565b508173ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e58306109fc565b600080610e63610f36565b426040518863ffffffff1660e01b8152600401610e8596959493929190612930565b60606040518083038185885af1158015610ea3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ec891906129a6565b50505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b610f196115b0565b6001600f60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f686115b0565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f8e90612a2a565b60006040518083038185875af1925050503d8060008114610fcb576040519150601f19603f3d011682016040523d82523d6000602084013e610fd0565b606091505b5050905080610fde57600080fd5b50565b606060048054610ff09061278b565b80601f016020809104026020016040519081016040528092919081815260200182805461101c9061278b565b80156110695780601f1061103e57610100808354040283529160200191611069565b820191906000526020600020905b81548152906001019060200180831161104c57829003601f168201915b5050505050905090565b61107b6115b0565b60006a084595161401484a00000090506103e8816110999190612a6e565b8210806110b157506014816110ae9190612a6e565b82115b156110e8576040517f942084f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600e819055505050565b6110fb6115b0565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806111616113df565b9050600061116f8286611283565b9050838110156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612b11565b60405180910390fd5b6111c182868684036113e7565b60019250505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000806111f06113df565b90506111fd8185856116ba565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112366115b0565b80600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61126e6115b0565b611281303361127c306109fc565b6116ba565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113126115b0565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61135e6115b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490612ba3565b60405180910390fd5b6113d681611ab1565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612c35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90612cc7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115a3919061250d565b60405180910390a3505050565b6115b86113df565b73ffffffffffffffffffffffffffffffffffffffff166115d6610f36565b73ffffffffffffffffffffffffffffffffffffffff161461162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390612d33565b60405180910390fd5b565b600061163a8484611283565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116b457818110156116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90612d9f565b60405180910390fd5b6116b384848484036113e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611720576040517fbac2912f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081036117395761173483836000611b77565b611aac565b600f60009054906101000a900460ff161580156117605750600e5461175d306109fc565b10155b80156117ba5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156118105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118665750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118aa576001600f60006101000a81548160ff02191690831515021790555061188e611ded565b6000600f60006101000a81548160ff0219169083151502179055505b6000600f60009054906101000a900460ff161580156119135750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119695750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a94576000600d5490506000600c549050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156119d95750600082115b15611a0857606482856119ec9190612dbf565b6119f69190612a6e565b9250611a03863085611b77565b611a91565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611a655750600081115b15611a905760648185611a789190612dbf565b611a829190612a6e565b9250611a8f863085611b77565b5b5b50505b611aaa84848385611aa59190612e01565b611b77565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90612f39565b60405180910390fd5b611c60838383611edd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90612fcb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dd4919061250d565b60405180910390a3611de7848484612101565b50505050565b6000611df8306109fc565b90506000600e54905060008203611e10575050611edb565b6000829050601482611e229190612dbf565b811115611e3957601482611e369190612dbf565b90505b611e4281612106565b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e8f90612a2a565b60006040518083038185875af1925050503d8060008114611ecc576040519150601f19603f3d011682016040523d82523d6000602084013e611ed1565b606091505b5050905050505050505b565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f7e5760095481611f3b846109fc565b611f4591906127eb565b1115611f7d576040517f89c8475000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661200c57600a5481111561200b576040517f07be2e6c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600f60019054906101000a900460ff166120fc57600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120c45750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fb576040517fe0507a2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b505050565b505050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000600267ffffffffffffffff81111561213c5761213b612feb565b5b60405190808252806020026020018201604052801561216a5781602001602082028036833780820191505090505b50905030816000815181106121825761218161301a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612207573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222b9190612834565b8160018151811061223f5761223e61301a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506122843083856113e7565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016122c6959493929190613107565b600060405180830381600087803b1580156122e057600080fd5b505af11580156122f4573d6000803e3d6000fd5b50505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561233757808201518184015260208101905061231c565b60008484015250505050565b6000601f19601f8301169050919050565b600061235f826122fd565b6123698185612308565b9350612379818560208601612319565b61238281612343565b840191505092915050565b600060208201905081810360008301526123a78184612354565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123df826123b4565b9050919050565b6123ef816123d4565b81146123fa57600080fd5b50565b60008135905061240c816123e6565b92915050565b6000819050919050565b61242581612412565b811461243057600080fd5b50565b6000813590506124428161241c565b92915050565b6000806040838503121561245f5761245e6123af565b5b600061246d858286016123fd565b925050602061247e85828601612433565b9150509250929050565b60008115159050919050565b61249d81612488565b82525050565b60006020820190506124b86000830184612494565b92915050565b600080604083850312156124d5576124d46123af565b5b60006124e385828601612433565b92505060206124f485828601612433565b9150509250929050565b61250781612412565b82525050565b600060208201905061252260008301846124fe565b92915050565b600080600060608486031215612541576125406123af565b5b600061254f868287016123fd565b9350506020612560868287016123fd565b925050604061257186828701612433565b9150509250925092565b600060ff82169050919050565b6125918161257b565b82525050565b60006020820190506125ac6000830184612588565b92915050565b6000602082840312156125c8576125c76123af565b5b60006125d684828501612433565b91505092915050565b6125e881612488565b81146125f357600080fd5b50565b600081359050612605816125df565b92915050565b60008060408385031215612622576126216123af565b5b6000612630858286016123fd565b9250506020612641858286016125f6565b9150509250929050565b600060208284031215612661576126606123af565b5b600061266f848285016123fd565b91505092915050565b612681816123d4565b82525050565b600060208201905061269c6000830184612678565b92915050565b6000819050919050565b60006126c76126c26126bd846123b4565b6126a2565b6123b4565b9050919050565b60006126d9826126ac565b9050919050565b60006126eb826126ce565b9050919050565b6126fb816126e0565b82525050565b600060208201905061271660008301846126f2565b92915050565b60008060408385031215612733576127326123af565b5b6000612741858286016123fd565b9250506020612752858286016123fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127a357607f821691505b6020821081036127b6576127b561275c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127f682612412565b915061280183612412565b9250828201905080821115612819576128186127bc565b5b92915050565b60008151905061282e816123e6565b92915050565b60006020828403121561284a576128496123af565b5b60006128588482850161281f565b91505092915050565b60006040820190506128766000830185612678565b6128836020830184612678565b9392505050565b600060408201905061289f6000830185612678565b6128ac60208301846124fe565b9392505050565b6000815190506128c2816125df565b92915050565b6000602082840312156128de576128dd6123af565b5b60006128ec848285016128b3565b91505092915050565b6000819050919050565b600061291a612915612910846128f5565b6126a2565b612412565b9050919050565b61292a816128ff565b82525050565b600060c0820190506129456000830189612678565b61295260208301886124fe565b61295f6040830187612921565b61296c6060830186612921565b6129796080830185612678565b61298660a08301846124fe565b979650505050505050565b6000815190506129a08161241c565b92915050565b6000806000606084860312156129bf576129be6123af565b5b60006129cd86828701612991565b93505060206129de86828701612991565b92505060406129ef86828701612991565b9150509250925092565b600081905092915050565b50565b6000612a146000836129f9565b9150612a1f82612a04565b600082019050919050565b6000612a3582612a07565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a7982612412565b9150612a8483612412565b925082612a9457612a93612a3f565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612afb602583612308565b9150612b0682612a9f565b604082019050919050565b60006020820190508181036000830152612b2a81612aee565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b8d602683612308565b9150612b9882612b31565b604082019050919050565b60006020820190508181036000830152612bbc81612b80565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c1f602483612308565b9150612c2a82612bc3565b604082019050919050565b60006020820190508181036000830152612c4e81612c12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb1602283612308565b9150612cbc82612c55565b604082019050919050565b60006020820190508181036000830152612ce081612ca4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d1d602083612308565b9150612d2882612ce7565b602082019050919050565b60006020820190508181036000830152612d4c81612d10565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d89601d83612308565b9150612d9482612d53565b602082019050919050565b60006020820190508181036000830152612db881612d7c565b9050919050565b6000612dca82612412565b9150612dd583612412565b9250828202612de381612412565b91508282048414831517612dfa57612df96127bc565b5b5092915050565b6000612e0c82612412565b9150612e1783612412565b9250828203905081811115612e2f57612e2e6127bc565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e91602583612308565b9150612e9c82612e35565b604082019050919050565b60006020820190508181036000830152612ec081612e84565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f23602383612308565b9150612f2e82612ec7565b604082019050919050565b60006020820190508181036000830152612f5281612f16565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fb5602683612308565b9150612fc082612f59565b604082019050919050565b60006020820190508181036000830152612fe481612fa8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61307e816123d4565b82525050565b60006130908383613075565b60208301905092915050565b6000602082019050919050565b60006130b482613049565b6130be8185613054565b93506130c983613065565b8060005b838110156130fa5781516130e18882613084565b97506130ec8361309c565b9250506001810190506130cd565b5085935050505092915050565b600060a08201905061311c60008301886124fe565b6131296020830187612921565b818103604083015261313b81866130a9565b905061314a6060830185612678565b61315760808301846124fe565b969550505050505056fea2646970667358221220b062b424a434bf11dcd2d9d2f7331bdefa9d1ffc154d7d05a50b228811f2752f64736f6c63430008130033
Deployed Bytecode
0x6080604052600436106101fd5760003560e01c80638a8c523c1161010d578063a9059cbb116100a0578063d85a28281161006f578063d85a2828146106fa578063dd62ed3e14610711578063efdcd9741461074e578063f2fde38b14610777578063f8b45b05146107a057610204565b8063a9059cbb1461063e578063b3f006741461067b578063bc337182146106a6578063c816841b146106cf57610204565b80639d0014b1116100dc5780639d0014b1146105845780639e29d684146105ad578063a457c2d7146105d6578063a82ed9ec1461061357610204565b80638a8c523c146105005780638da5cb5b146105175780638de5c0641461054257806395d89b411461055957610204565b8063395093511161019057806360553fef1161015f57806360553fef1461043c57806370a0823114610465578063715018a6146104a25780637437681e146104b957806385b12c7c146104e457610204565b8063395093511461038057806347062402146103bd5780635b4f472a146103e85780635d0044ca1461041357610204565b806323b872dd116101cc57806323b872dd146102c25780632b14ca56146102ff578063313ce5671461032a57806332cb6b0c1461035557610204565b806306fdde0314610206578063095ea7b3146102315780630b78f9c01461026e57806318160ddd1461029757610204565b3661020457005b005b34801561021257600080fd5b5061021b6107cb565b604051610228919061238d565b60405180910390f35b34801561023d57600080fd5b5061025860048036038101906102539190612448565b61085d565b60405161026591906124a3565b60405180910390f35b34801561027a57600080fd5b50610295600480360381019061029091906124be565b610880565b005b3480156102a357600080fd5b506102ac6108e0565b6040516102b9919061250d565b60405180910390f35b3480156102ce57600080fd5b506102e960048036038101906102e49190612528565b6108ea565b6040516102f691906124a3565b60405180910390f35b34801561030b57600080fd5b50610314610919565b604051610321919061250d565b60405180910390f35b34801561033657600080fd5b5061033f61091f565b60405161034c9190612597565b60405180910390f35b34801561036157600080fd5b5061036a610928565b604051610377919061250d565b60405180910390f35b34801561038c57600080fd5b506103a760048036038101906103a29190612448565b610937565b6040516103b491906124a3565b60405180910390f35b3480156103c957600080fd5b506103d261096e565b6040516103df919061250d565b60405180910390f35b3480156103f457600080fd5b506103fd610974565b60405161040a91906124a3565b60405180910390f35b34801561041f57600080fd5b5061043a600480360381019061043591906125b2565b610987565b005b34801561044857600080fd5b50610463600480360381019061045e919061260b565b610999565b005b34801561047157600080fd5b5061048c6004803603810190610487919061264b565b6109fc565b604051610499919061250d565b60405180910390f35b3480156104ae57600080fd5b506104b7610a44565b005b3480156104c557600080fd5b506104ce610a58565b6040516104db919061250d565b60405180910390f35b6104fe60048036038101906104f991906125b2565b610a5e565b005b34801561050c57600080fd5b50610515610f11565b005b34801561052357600080fd5b5061052c610f36565b6040516105399190612687565b60405180910390f35b34801561054e57600080fd5b50610557610f60565b005b34801561056557600080fd5b5061056e610fe1565b60405161057b919061238d565b60405180910390f35b34801561059057600080fd5b506105ab60048036038101906105a691906125b2565b611073565b005b3480156105b957600080fd5b506105d460048036038101906105cf919061260b565b6110f3565b005b3480156105e257600080fd5b506105fd60048036038101906105f89190612448565b611156565b60405161060a91906124a3565b60405180910390f35b34801561061f57600080fd5b506106286111cd565b6040516106359190612701565b60405180910390f35b34801561064a57600080fd5b5061066560048036038101906106609190612448565b6111e5565b60405161067291906124a3565b60405180910390f35b34801561068757600080fd5b50610690611208565b60405161069d9190612687565b60405180910390f35b3480156106b257600080fd5b506106cd60048036038101906106c891906125b2565b61122e565b005b3480156106db57600080fd5b506106e4611240565b6040516106f19190612687565b60405180910390f35b34801561070657600080fd5b5061070f611266565b005b34801561071d57600080fd5b506107386004803603810190610733919061271c565b611283565b604051610745919061250d565b60405180910390f35b34801561075a57600080fd5b506107756004803603810190610770919061264b565b61130a565b005b34801561078357600080fd5b5061079e6004803603810190610799919061264b565b611356565b005b3480156107ac57600080fd5b506107b56113d9565b6040516107c2919061250d565b60405180910390f35b6060600380546107da9061278b565b80601f01602080910402602001604051908101604052809291908181526020018280546108069061278b565b80156108535780601f1061082857610100808354040283529160200191610853565b820191906000526020600020905b81548152906001019060200180831161083657829003601f168201915b5050505050905090565b6000806108686113df565b90506108758185856113e7565b600191505092915050565b6108886115b0565b60648211806108975750606481115b156108ce576040517fb6b51a8c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b80600d8190555081600c819055505050565b6000600254905090565b6000806108f56113df565b905061090285828561162e565b61090d8585856116ba565b60019150509392505050565b600d5481565b60006012905090565b6a084595161401484a00000081565b6000806109426113df565b90506109638185856109548589611283565b61095e91906127eb565b6113e7565b600191505092915050565b600c5481565b600f60019054906101000a900460ff1681565b61098f6115b0565b8060098190555050565b6109a16115b0565b80600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610a4c6115b0565b610a566000611ab1565b565b600a5481565b610a666115b0565b600073ffffffffffffffffffffffffffffffffffffffff16600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610aee576040517fa1e6f62d00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60003403610b28576040517fdbf97bca00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b60008103610b62576040517ff419c8e000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b610b6d3330836116ba565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d905060008173ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b8152600401602060405180830381865afa158015610bd3573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610bf79190612834565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308473ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015610c5e573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610c829190612834565b6040518363ffffffff1660e01b8152600401610c9f929190612861565b6020604051808303816000875af1158015610cbe573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610ce29190612834565b90506001600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff021916908315150217905550610d6730837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6113e7565b610d9230827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6113e7565b8073ffffffffffffffffffffffffffffffffffffffff1663095ea7b3837fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff6040518363ffffffff1660e01b8152600401610ded92919061288a565b6020604051808303816000875af1158015610e0c573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610e3091906128c8565b508173ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e58306109fc565b600080610e63610f36565b426040518863ffffffff1660e01b8152600401610e8596959493929190612930565b60606040518083038185885af1158015610ea3573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610ec891906129a6565b50505080600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550505050565b610f196115b0565b6001600f60016101000a81548160ff021916908315150217905550565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b610f686115b0565b60003373ffffffffffffffffffffffffffffffffffffffff1647604051610f8e90612a2a565b60006040518083038185875af1925050503d8060008114610fcb576040519150601f19603f3d011682016040523d82523d6000602084013e610fd0565b606091505b5050905080610fde57600080fd5b50565b606060048054610ff09061278b565b80601f016020809104026020016040519081016040528092919081815260200182805461101c9061278b565b80156110695780601f1061103e57610100808354040283529160200191611069565b820191906000526020600020905b81548152906001019060200180831161104c57829003601f168201915b5050505050905090565b61107b6115b0565b60006a084595161401484a00000090506103e8816110999190612a6e565b8210806110b157506014816110ae9190612a6e565b82115b156110e8576040517f942084f200000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b81600e819055505050565b6110fb6115b0565b80600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006101000a81548160ff0219169083151502179055505050565b6000806111616113df565b9050600061116f8286611283565b9050838110156111b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111ab90612b11565b60405180910390fd5b6111c182868684036113e7565b60019250505092915050565b737a250d5630b4cf539739df2c5dacb4c659f2488d81565b6000806111f06113df565b90506111fd8185856116ba565b600191505092915050565b600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b6112366115b0565b80600a8190555050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1681565b61126e6115b0565b611281303361127c306109fc565b6116ba565b565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6113126115b0565b80600b60006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b61135e6115b0565b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036113cd576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016113c490612ba3565b60405180910390fd5b6113d681611ab1565b50565b60095481565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611456576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161144d90612c35565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16036114c5576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016114bc90612cc7565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925836040516115a3919061250d565b60405180910390a3505050565b6115b86113df565b73ffffffffffffffffffffffffffffffffffffffff166115d6610f36565b73ffffffffffffffffffffffffffffffffffffffff161461162c576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161162390612d33565b60405180910390fd5b565b600061163a8484611283565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff81146116b457818110156116a6576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161169d90612d9f565b60405180910390fd5b6116b384848484036113e7565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611720576040517fbac2912f00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b600081036117395761173483836000611b77565b611aac565b600f60009054906101000a900460ff161580156117605750600e5461175d306109fc565b10155b80156117ba5750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614155b80156118105750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156118665750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156118aa576001600f60006101000a81548160ff02191690831515021790555061188e611ded565b6000600f60006101000a81548160ff0219169083151502179055505b6000600f60009054906101000a900460ff161580156119135750600860008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b80156119695750600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b15611a94576000600d5490506000600c549050600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168573ffffffffffffffffffffffffffffffffffffffff161480156119d95750600082115b15611a0857606482856119ec9190612dbf565b6119f69190612a6e565b9250611a03863085611b77565b611a91565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168673ffffffffffffffffffffffffffffffffffffffff16148015611a655750600081115b15611a905760648185611a789190612dbf565b611a829190612a6e565b9250611a8f863085611b77565b5b5b50505b611aaa84848385611aa59190612e01565b611b77565b505b505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603611be6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611bdd90612ea7565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603611c55576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611c4c90612f39565b60405180910390fd5b611c60838383611edd565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015611ce6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401611cdd90612fcb565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051611dd4919061250d565b60405180910390a3611de7848484612101565b50505050565b6000611df8306109fc565b90506000600e54905060008203611e10575050611edb565b6000829050601482611e229190612dbf565b811115611e3957601482611e369190612dbf565b90505b611e4281612106565b60004790506000600b60009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1682604051611e8f90612a2a565b60006040518083038185875af1925050503d8060008114611ecc576040519150601f19603f3d011682016040523d82523d6000602084013e611ed1565b606091505b5050905050505050505b565b600760008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16611f7e5760095481611f3b846109fc565b611f4591906127eb565b1115611f7d576040517f89c8475000000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600760008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff1661200c57600a5481111561200b576040517f07be2e6c00000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b600f60019054906101000a900460ff166120fc57600860008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff161580156120c45750600860008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060009054906101000a900460ff16155b156120fb576040517fe0507a2500000000000000000000000000000000000000000000000000000000815260040160405180910390fd5b5b505050565b505050565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90506000600267ffffffffffffffff81111561213c5761213b612feb565b5b60405190808252806020026020018201604052801561216a5781602001602082028036833780820191505090505b50905030816000815181106121825761218161301a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250508173ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b8152600401602060405180830381865afa158015612207573d6000803e3d6000fd5b505050506040513d601f19601f8201168201806040525081019061222b9190612834565b8160018151811061223f5761223e61301a565b5b602002602001019073ffffffffffffffffffffffffffffffffffffffff16908173ffffffffffffffffffffffffffffffffffffffff16815250506122843083856113e7565b8173ffffffffffffffffffffffffffffffffffffffff1663791ac9478460008430426040518663ffffffff1660e01b81526004016122c6959493929190613107565b600060405180830381600087803b1580156122e057600080fd5b505af11580156122f4573d6000803e3d6000fd5b50505050505050565b600081519050919050565b600082825260208201905092915050565b60005b8381101561233757808201518184015260208101905061231c565b60008484015250505050565b6000601f19601f8301169050919050565b600061235f826122fd565b6123698185612308565b9350612379818560208601612319565b61238281612343565b840191505092915050565b600060208201905081810360008301526123a78184612354565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006123df826123b4565b9050919050565b6123ef816123d4565b81146123fa57600080fd5b50565b60008135905061240c816123e6565b92915050565b6000819050919050565b61242581612412565b811461243057600080fd5b50565b6000813590506124428161241c565b92915050565b6000806040838503121561245f5761245e6123af565b5b600061246d858286016123fd565b925050602061247e85828601612433565b9150509250929050565b60008115159050919050565b61249d81612488565b82525050565b60006020820190506124b86000830184612494565b92915050565b600080604083850312156124d5576124d46123af565b5b60006124e385828601612433565b92505060206124f485828601612433565b9150509250929050565b61250781612412565b82525050565b600060208201905061252260008301846124fe565b92915050565b600080600060608486031215612541576125406123af565b5b600061254f868287016123fd565b9350506020612560868287016123fd565b925050604061257186828701612433565b9150509250925092565b600060ff82169050919050565b6125918161257b565b82525050565b60006020820190506125ac6000830184612588565b92915050565b6000602082840312156125c8576125c76123af565b5b60006125d684828501612433565b91505092915050565b6125e881612488565b81146125f357600080fd5b50565b600081359050612605816125df565b92915050565b60008060408385031215612622576126216123af565b5b6000612630858286016123fd565b9250506020612641858286016125f6565b9150509250929050565b600060208284031215612661576126606123af565b5b600061266f848285016123fd565b91505092915050565b612681816123d4565b82525050565b600060208201905061269c6000830184612678565b92915050565b6000819050919050565b60006126c76126c26126bd846123b4565b6126a2565b6123b4565b9050919050565b60006126d9826126ac565b9050919050565b60006126eb826126ce565b9050919050565b6126fb816126e0565b82525050565b600060208201905061271660008301846126f2565b92915050565b60008060408385031215612733576127326123af565b5b6000612741858286016123fd565b9250506020612752858286016123fd565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806127a357607f821691505b6020821081036127b6576127b561275c565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60006127f682612412565b915061280183612412565b9250828201905080821115612819576128186127bc565b5b92915050565b60008151905061282e816123e6565b92915050565b60006020828403121561284a576128496123af565b5b60006128588482850161281f565b91505092915050565b60006040820190506128766000830185612678565b6128836020830184612678565b9392505050565b600060408201905061289f6000830185612678565b6128ac60208301846124fe565b9392505050565b6000815190506128c2816125df565b92915050565b6000602082840312156128de576128dd6123af565b5b60006128ec848285016128b3565b91505092915050565b6000819050919050565b600061291a612915612910846128f5565b6126a2565b612412565b9050919050565b61292a816128ff565b82525050565b600060c0820190506129456000830189612678565b61295260208301886124fe565b61295f6040830187612921565b61296c6060830186612921565b6129796080830185612678565b61298660a08301846124fe565b979650505050505050565b6000815190506129a08161241c565b92915050565b6000806000606084860312156129bf576129be6123af565b5b60006129cd86828701612991565b93505060206129de86828701612991565b92505060406129ef86828701612991565b9150509250925092565b600081905092915050565b50565b6000612a146000836129f9565b9150612a1f82612a04565b600082019050919050565b6000612a3582612a07565b9150819050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601260045260246000fd5b6000612a7982612412565b9150612a8483612412565b925082612a9457612a93612a3f565b5b828204905092915050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6000612afb602583612308565b9150612b0682612a9f565b604082019050919050565b60006020820190508181036000830152612b2a81612aee565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b6000612b8d602683612308565b9150612b9882612b31565b604082019050919050565b60006020820190508181036000830152612bbc81612b80565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000612c1f602483612308565b9150612c2a82612bc3565b604082019050919050565b60006020820190508181036000830152612c4e81612c12565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b6000612cb1602283612308565b9150612cbc82612c55565b604082019050919050565b60006020820190508181036000830152612ce081612ca4565b9050919050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000612d1d602083612308565b9150612d2882612ce7565b602082019050919050565b60006020820190508181036000830152612d4c81612d10565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000612d89601d83612308565b9150612d9482612d53565b602082019050919050565b60006020820190508181036000830152612db881612d7c565b9050919050565b6000612dca82612412565b9150612dd583612412565b9250828202612de381612412565b91508282048414831517612dfa57612df96127bc565b5b5092915050565b6000612e0c82612412565b9150612e1783612412565b9250828203905081811115612e2f57612e2e6127bc565b5b92915050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b6000612e91602583612308565b9150612e9c82612e35565b604082019050919050565b60006020820190508181036000830152612ec081612e84565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000612f23602383612308565b9150612f2e82612ec7565b604082019050919050565b60006020820190508181036000830152612f5281612f16565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000612fb5602683612308565b9150612fc082612f59565b604082019050919050565b60006020820190508181036000830152612fe481612fa8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052603260045260246000fd5b600081519050919050565b600082825260208201905092915050565b6000819050602082019050919050565b61307e816123d4565b82525050565b60006130908383613075565b60208301905092915050565b6000602082019050919050565b60006130b482613049565b6130be8185613054565b93506130c983613065565b8060005b838110156130fa5781516130e18882613084565b97506130ec8361309c565b9250506001810190506130cd565b5085935050505092915050565b600060a08201905061311c60008301886124fe565b6131296020830187612921565b818103604083015261313b81866130a9565b905061314a6060830185612678565b61315760808301846124fe565b969550505050505056fea2646970667358221220b062b424a434bf11dcd2d9d2f7331bdefa9d1ffc154d7d05a50b228811f2752f64736f6c63430008130033
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.