ERC-20
Overview
Max Total Supply
1,000,000,000,000 $MAKER
Holders
23
Market
Onchain Market Cap
$0.00
Circulating Supply Market Cap
-
Other Info
Token Contract (WITH 18 Decimals)
Balance
0.000019302962809025 $MAKERValue
$0.00Loading...
Loading
Loading...
Loading
Loading...
Loading
# | Exchange | Pair | Price | 24H Volume | % Volume |
---|
Contract Name:
TheMaker
Compiler Version
v0.8.4+commit.c7e474f2
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.4; import './IUniswapV2Factory.sol'; import '@openzeppelin/contracts/token/ERC20/ERC20.sol'; import '@openzeppelin/contracts/access/Ownable.sol'; import '@openzeppelin/contracts/utils/math/SafeMath.sol'; import '@openzeppelin/contracts/token/ERC20/IERC20.sol'; // TheMaker Token Summary // No fee, no tax contract TheMaker is ERC20, Ownable { using SafeMath for uint256; bool private _startTrading = false; address private _uniswapPair; constructor() ERC20("The Maker", "$MAKER") { IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _uniswapPair = IUniswapV2Factory(router.factory()).createPair(address(this), router.WETH()); _mint(owner(), 1e12*1e18); } function _beforeTokenTransfer(address from, address to, uint256) override internal view { if(from != owner() && to != owner() && from == _uniswapPair) require(_startTrading, "Trading has not started"); } function openTrading() external onlyOwner { _startTrading = true; } function addLiquidity() external onlyOwner { require(!_startTrading, "Trading has already started"); IUniswapV2Router02 router = IUniswapV2Router02(0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D); _approve(address(this), address(router), type(uint256).max); router.addLiquidityETH{ value: address(this).balance }(address(this),balanceOf(address(this)),0,0,owner(),block.timestamp); } function recoverEth() external onlyOwner { payable(_msgSender()).transfer(address(this).balance); } function recoverTokens(address tokenAddress) external onlyOwner { IERC20 token = IERC20(tokenAddress); token.transfer(_msgSender(), token.balanceOf(address(this))); } receive() external payable {} }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.4; interface IUniswapV2Factory { function createPair(address tokenA, address tokenB) external returns (address pair); } interface IUniswapV2Router02 { function swapExactTokensForETHSupportingFeeOnTransferTokens( uint amountIn, uint amountOutMin, address[] calldata path, address to, uint deadline ) external; function factory() external pure returns (address); function WETH() external pure returns (address); function addLiquidityETH( address token, uint amountTokenDesired, uint amountTokenMin, uint amountETHMin, address to, uint deadline ) external payable returns (uint amountToken, uint amountETH, uint liquidity); }
// SPDX-License-Identifier: MIT 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.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How * to implement supply mechanisms]. * * We have followed general OpenZeppelin guidelines: functions revert instead * of 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: * * - `recipient` cannot be the zero address. * - the caller must have a balance of at least `amount`. */ function transfer(address recipient, uint256 amount) public virtual override returns (bool) { _transfer(_msgSender(), recipient, amount); return true; } /** * @dev See {IERC20-allowance}. */ function allowance(address owner, address spender) public view virtual override returns (uint256) { return _allowances[owner][spender]; } /** * @dev See {IERC20-approve}. * * Requirements: * * - `spender` cannot be the zero address. */ function approve(address spender, uint256 amount) public virtual override returns (bool) { _approve(_msgSender(), spender, amount); return true; } /** * @dev See {IERC20-transferFrom}. * * Emits an {Approval} event indicating the updated allowance. This is not * required by the EIP. See the note at the beginning of {ERC20}. * * Requirements: * * - `sender` and `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. * - the caller must have allowance for ``sender``'s tokens of at least * `amount`. */ function transferFrom( address sender, address recipient, uint256 amount ) public virtual override returns (bool) { _transfer(sender, recipient, amount); uint256 currentAllowance = _allowances[sender][_msgSender()]; require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance"); unchecked { _approve(sender, _msgSender(), currentAllowance - 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) { _approve(_msgSender(), spender, _allowances[_msgSender()][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) { uint256 currentAllowance = _allowances[_msgSender()][spender]; require(currentAllowance >= subtractedValue, "ERC20: decreased allowance below zero"); unchecked { _approve(_msgSender(), spender, currentAllowance - subtractedValue); } return true; } /** * @dev Moves `amount` of tokens from `sender` to `recipient`. * * 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: * * - `sender` cannot be the zero address. * - `recipient` cannot be the zero address. * - `sender` must have a balance of at least `amount`. */ function _transfer( address sender, address recipient, uint256 amount ) internal virtual { require(sender != address(0), "ERC20: transfer from the zero address"); require(recipient != address(0), "ERC20: transfer to the zero address"); _beforeTokenTransfer(sender, recipient, amount); uint256 senderBalance = _balances[sender]; require(senderBalance >= amount, "ERC20: transfer amount exceeds balance"); unchecked { _balances[sender] = senderBalance - amount; } _balances[recipient] += amount; emit Transfer(sender, recipient, amount); _afterTokenTransfer(sender, recipient, amount); } /** @dev Creates `amount` tokens and assigns them to `account`, increasing * the total supply. * * Emits a {Transfer} event with `from` set to the zero address. * * Requirements: * * - `account` cannot be the zero address. */ function _mint(address account, uint256 amount) internal virtual { require(account != address(0), "ERC20: mint to the zero address"); _beforeTokenTransfer(address(0), account, amount); _totalSupply += amount; _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; } _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 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 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() { _setOwner(_msgSender()); } /** * @dev Returns the address of the current owner. */ function owner() public view virtual returns (address) { return _owner; } /** * @dev Throws if called by any account other than the owner. */ modifier onlyOwner() { require(owner() == _msgSender(), "Ownable: caller is not the owner"); _; } /** * @dev Leaves the contract without owner. It will not be possible to call * `onlyOwner` functions anymore. Can only be called by the current owner. * * NOTE: Renouncing ownership will leave the contract without an owner, * thereby removing any functionality that is only available to the owner. */ function renounceOwnership() public virtual onlyOwner { _setOwner(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"); _setOwner(newOwner); } function _setOwner(address newOwner) private { address oldOwner = _owner; _owner = newOwner; emit OwnershipTransferred(oldOwner, newOwner); } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; // CAUTION // This version of SafeMath should only be used with Solidity 0.8 or later, // because it relies on the compiler's built in overflow checks. /** * @dev Wrappers over Solidity's arithmetic operations. * * NOTE: `SafeMath` is no longer needed starting with Solidity 0.8. The compiler * now has built in overflow checking. */ library SafeMath { /** * @dev Returns the addition of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryAdd(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { uint256 c = a + b; if (c < a) return (false, 0); return (true, c); } } /** * @dev Returns the substraction of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function trySub(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b > a) return (false, 0); return (true, a - b); } } /** * @dev Returns the multiplication of two unsigned integers, with an overflow flag. * * _Available since v3.4._ */ function tryMul(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { // Gas optimization: this is cheaper than requiring 'a' not being zero, but the // benefit is lost if 'b' is also tested. // See: https://github.com/OpenZeppelin/openzeppelin-contracts/pull/522 if (a == 0) return (true, 0); uint256 c = a * b; if (c / a != b) return (false, 0); return (true, c); } } /** * @dev Returns the division of two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a / b); } } /** * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag. * * _Available since v3.4._ */ function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) { unchecked { if (b == 0) return (false, 0); return (true, a % b); } } /** * @dev Returns the addition of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `+` operator. * * Requirements: * * - Addition cannot overflow. */ function add(uint256 a, uint256 b) internal pure returns (uint256) { return a + b; } /** * @dev Returns the subtraction of two unsigned integers, reverting on * overflow (when the result is negative). * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub(uint256 a, uint256 b) internal pure returns (uint256) { return a - b; } /** * @dev Returns the multiplication of two unsigned integers, reverting on * overflow. * * Counterpart to Solidity's `*` operator. * * Requirements: * * - Multiplication cannot overflow. */ function mul(uint256 a, uint256 b) internal pure returns (uint256) { return a * b; } /** * @dev Returns the integer division of two unsigned integers, reverting on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. * * Requirements: * * - The divisor cannot be zero. */ function div(uint256 a, uint256 b) internal pure returns (uint256) { return a / b; } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting when dividing by zero. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod(uint256 a, uint256 b) internal pure returns (uint256) { return a % b; } /** * @dev Returns the subtraction of two unsigned integers, reverting with custom message on * overflow (when the result is negative). * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {trySub}. * * Counterpart to Solidity's `-` operator. * * Requirements: * * - Subtraction cannot overflow. */ function sub( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b <= a, errorMessage); return a - b; } } /** * @dev Returns the integer division of two unsigned integers, reverting with custom message on * division by zero. The result is rounded towards zero. * * Counterpart to Solidity's `/` operator. Note: this function uses a * `revert` opcode (which leaves remaining gas untouched) while Solidity * uses an invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function div( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a / b; } } /** * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo), * reverting with custom message when dividing by zero. * * CAUTION: This function is deprecated because it requires allocating memory for the error * message unnecessarily. For custom revert reasons use {tryMod}. * * Counterpart to Solidity's `%` operator. This function uses a `revert` * opcode (which leaves remaining gas untouched) while Solidity uses an * invalid opcode to revert (consuming all remaining gas). * * Requirements: * * - The divisor cannot be zero. */ function mod( uint256 a, uint256 b, string memory errorMessage ) internal pure returns (uint256) { unchecked { require(b > 0, errorMessage); return a % b; } } }
// SPDX-License-Identifier: MIT pragma solidity ^0.8.0; /** * @dev Interface of the ERC20 standard as defined in the EIP. */ interface IERC20 { /** * @dev Returns the amount of tokens in existence. */ function totalSupply() external view returns (uint256); /** * @dev Returns the amount of tokens owned by `account`. */ function balanceOf(address account) external view returns (uint256); /** * @dev Moves `amount` tokens from the caller's account to `recipient`. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transfer(address recipient, uint256 amount) external returns (bool); /** * @dev Returns the remaining number of tokens that `spender` will be * allowed to spend on behalf of `owner` through {transferFrom}. This is * zero by default. * * This value changes when {approve} or {transferFrom} are called. */ function allowance(address owner, address spender) external view returns (uint256); /** * @dev Sets `amount` as the allowance of `spender` over the caller's tokens. * * Returns a boolean value indicating whether the operation succeeded. * * IMPORTANT: Beware that changing an allowance with this method brings the risk * that someone may use both the old and the new allowance by unfortunate * transaction ordering. One possible solution to mitigate this race * condition is to first reduce the spender's allowance to 0 and set the * desired value afterwards: * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729 * * Emits an {Approval} event. */ function approve(address spender, uint256 amount) external returns (bool); /** * @dev Moves `amount` tokens from `sender` to `recipient` using the * allowance mechanism. `amount` is then deducted from the caller's * allowance. * * Returns a boolean value indicating whether the operation succeeded. * * Emits a {Transfer} event. */ function transferFrom( address sender, address recipient, uint256 amount ) external returns (bool); /** * @dev Emitted when `value` tokens are moved from one account (`from`) to * another (`to`). * * Note that `value` may be zero. */ event Transfer(address indexed from, address indexed to, uint256 value); /** * @dev Emitted when the allowance of a `spender` for an `owner` is set by * a call to {approve}. `value` is the new allowance. */ event Approval(address indexed owner, address indexed spender, uint256 value); }
// SPDX-License-Identifier: MIT 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 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; } }
{ "optimizer": { "enabled": false, "runs": 200 }, "outputSelection": { "*": { "*": [ "evm.bytecode", "evm.deployedBytecode", "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":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":[],"name":"addLiquidity","outputs":[],"stateMutability":"nonpayable","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":"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":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"openTrading","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"recoverEth","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"tokenAddress","type":"address"}],"name":"recoverTokens","outputs":[],"stateMutability":"nonpayable","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":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"stateMutability":"payable","type":"receive"}]
Contract Creation Code
60806040526000600560146101000a81548160ff0219169083151502179055503480156200002c57600080fd5b506040518060400160405280600981526020017f546865204d616b657200000000000000000000000000000000000000000000008152506040518060400160405280600681526020017f244d414b455200000000000000000000000000000000000000000000000000008152508160039080519060200190620000b1929190620006c5565b508060049080519060200190620000ca929190620006c5565b505050620000ed620000e16200031060201b60201c565b6200031860201b60201c565b6000737a250d5630b4cf539739df2c5dacb4c659f2488d90508073ffffffffffffffffffffffffffffffffffffffff1663c45a01556040518163ffffffff1660e01b815260040160206040518083038186803b1580156200014d57600080fd5b505afa15801562000162573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200018891906200078c565b73ffffffffffffffffffffffffffffffffffffffff1663c9c65396308373ffffffffffffffffffffffffffffffffffffffff1663ad5c46486040518163ffffffff1660e01b815260040160206040518083038186803b158015620001eb57600080fd5b505afa15801562000200573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200022691906200078c565b6040518363ffffffff1660e01b81526004016200024592919062000828565b602060405180830381600087803b1580156200026057600080fd5b505af115801562000275573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906200029b91906200078c565b600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555062000309620002ef620003de60201b60201c565b6c0c9f2c9cd04674edea400000006200040860201b60201c565b5062000a62565b600033905090565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614156200047b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620004729062000877565b60405180910390fd5b6200048f600083836200058160201b60201c565b8060026000828254620004a39190620008c7565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000206000828254620004fa9190620008c7565b925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000561919062000899565b60405180910390a36200057d60008383620006c060201b60201c565b5050565b62000591620003de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614158015620006085750620005d8620003de60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b8015620006625750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b15620006bb57600560149054906101000a900460ff16620006ba576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620006b19062000855565b60405180910390fd5b5b505050565b505050565b828054620006d39062000962565b90600052602060002090601f016020900481019282620006f7576000855562000743565b82601f106200071257805160ff191683800117855562000743565b8280016001018555821562000743579182015b828111156200074257825182559160200191906001019062000725565b5b50905062000752919062000756565b5090565b5b808211156200077157600081600090555060010162000757565b5090565b600081519050620007868162000a48565b92915050565b6000602082840312156200079f57600080fd5b6000620007af8482850162000775565b91505092915050565b620007c38162000924565b82525050565b6000620007d8601783620008b6565b9150620007e582620009f6565b602082019050919050565b6000620007ff601f83620008b6565b91506200080c8262000a1f565b602082019050919050565b620008228162000958565b82525050565b60006040820190506200083f6000830185620007b8565b6200084e6020830184620007b8565b9392505050565b600060208201905081810360008301526200087081620007c9565b9050919050565b600060208201905081810360008301526200089281620007f0565b9050919050565b6000602082019050620008b0600083018462000817565b92915050565b600082825260208201905092915050565b6000620008d48262000958565b9150620008e18362000958565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff0382111562000919576200091862000998565b5b828201905092915050565b6000620009318262000938565b9050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060028204905060018216806200097b57607f821691505b60208210811415620009925762000991620009c7565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b62000a538162000924565b811462000a5f57600080fd5b50565b61214c8062000a726000396000f3fe60806040526004361061010d5760003560e01c80638da5cb5b11610095578063bcdb446b11610064578063bcdb446b1461039e578063c9567bf9146103b5578063dd62ed3e146103cc578063e8078d9414610409578063f2fde38b1461042057610114565b80638da5cb5b146102ce57806395d89b41146102f9578063a457c2d714610324578063a9059cbb1461036157610114565b806323b872dd116100dc57806323b872dd146101d5578063313ce56714610212578063395093511461023d57806370a082311461027a578063715018a6146102b757610114565b806306fdde0314610119578063095ea7b31461014457806316114acd1461018157806318160ddd146101aa57610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e610449565b60405161013b9190611a79565b60405180910390f35b34801561015057600080fd5b5061016b600480360381019061016691906116d7565b6104db565b6040516101789190611a5e565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190611623565b6104f9565b005b3480156101b657600080fd5b506101bf61069b565b6040516101cc9190611bfb565b60405180910390f35b3480156101e157600080fd5b506101fc60048036038101906101f79190611688565b6106a5565b6040516102099190611a5e565b60405180910390f35b34801561021e57600080fd5b5061022761079d565b6040516102349190611c16565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f91906116d7565b6107a6565b6040516102719190611a5e565b60405180910390f35b34801561028657600080fd5b506102a1600480360381019061029c9190611623565b610852565b6040516102ae9190611bfb565b60405180910390f35b3480156102c357600080fd5b506102cc61089a565b005b3480156102da57600080fd5b506102e3610922565b6040516102f091906119b9565b60405180910390f35b34801561030557600080fd5b5061030e61094c565b60405161031b9190611a79565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906116d7565b6109de565b6040516103589190611a5e565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906116d7565b610ac9565b6040516103959190611a5e565b60405180910390f35b3480156103aa57600080fd5b506103b3610ae7565b005b3480156103c157600080fd5b506103ca610bb3565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061164c565b610c4c565b6040516104009190611bfb565b60405180910390f35b34801561041557600080fd5b5061041e610cd3565b005b34801561042c57600080fd5b5061044760048036038101906104429190611623565b610e8f565b005b60606003805461045890611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461048490611d3d565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b60006104ef6104e8610f87565b8484610f8f565b6001905092915050565b610501610f87565b73ffffffffffffffffffffffffffffffffffffffff1661051f610922565b73ffffffffffffffffffffffffffffffffffffffff1614610575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056c90611b7b565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61059e610f87565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105d791906119b9565b60206040518083038186803b1580156105ef57600080fd5b505afa158015610603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610627919061173c565b6040518363ffffffff1660e01b81526004016106449291906119d4565b602060405180830381600087803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106969190611713565b505050565b6000600254905090565b60006106b284848461115a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106fd610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077490611b5b565b60405180910390fd5b61079185610789610f87565b858403610f8f565b60019150509392505050565b60006012905090565b60006108486107b3610f87565b8484600160006107c1610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108439190611c4d565b610f8f565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a2610f87565b73ffffffffffffffffffffffffffffffffffffffff166108c0610922565b73ffffffffffffffffffffffffffffffffffffffff1614610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90611b7b565b60405180910390fd5b61092060006113db565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095b90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611d3d565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b600080600160006109ed610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190611bdb565b60405180910390fd5b610abe610ab5610f87565b85858403610f8f565b600191505092915050565b6000610add610ad6610f87565b848461115a565b6001905092915050565b610aef610f87565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610922565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611b7b565b60405180910390fd5b610b6b610f87565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb0573d6000803e3d6000fd5b50565b610bbb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690611b7b565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cdb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610cf9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b7b565b60405180910390fd5b600560149054906101000a900460ff1615610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611abb565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050610de330827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610f8f565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e0a30610852565b600080610e15610922565b426040518863ffffffff1660e01b8152600401610e37969594939291906119fd565b6060604051808303818588803b158015610e5057600080fd5b505af1158015610e64573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e899190611765565b50505050565b610e97610f87565b73ffffffffffffffffffffffffffffffffffffffff16610eb5610922565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290611b7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290611adb565b60405180910390fd5b610f84816113db565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611bbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690611afb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161114d9190611bfb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190611b9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190611a9b565b60405180910390fd5b6112458383836114a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611b1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135e9190611c4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c29190611bfb565b60405180910390a36113d58484846115ca565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114a9610922565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561151757506114e7610922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115705750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c557600560149054906101000a900460ff166115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90611b3b565b60405180910390fd5b5b505050565b505050565b6000813590506115de816120d1565b92915050565b6000815190506115f3816120e8565b92915050565b600081359050611608816120ff565b92915050565b60008151905061161d816120ff565b92915050565b60006020828403121561163557600080fd5b6000611643848285016115cf565b91505092915050565b6000806040838503121561165f57600080fd5b600061166d858286016115cf565b925050602061167e858286016115cf565b9150509250929050565b60008060006060848603121561169d57600080fd5b60006116ab868287016115cf565b93505060206116bc868287016115cf565b92505060406116cd868287016115f9565b9150509250925092565b600080604083850312156116ea57600080fd5b60006116f8858286016115cf565b9250506020611709858286016115f9565b9150509250929050565b60006020828403121561172557600080fd5b6000611733848285016115e4565b91505092915050565b60006020828403121561174e57600080fd5b600061175c8482850161160e565b91505092915050565b60008060006060848603121561177a57600080fd5b60006117888682870161160e565b93505060206117998682870161160e565b92505060406117aa8682870161160e565b9150509250925092565b6117bd81611ca3565b82525050565b6117cc81611cb5565b82525050565b6117db81611cf8565b82525050565b60006117ec82611c31565b6117f68185611c3c565b9350611806818560208601611d0a565b61180f81611dcd565b840191505092915050565b6000611827602383611c3c565b915061183282611dde565b604082019050919050565b600061184a601b83611c3c565b915061185582611e2d565b602082019050919050565b600061186d602683611c3c565b915061187882611e56565b604082019050919050565b6000611890602283611c3c565b915061189b82611ea5565b604082019050919050565b60006118b3602683611c3c565b91506118be82611ef4565b604082019050919050565b60006118d6601783611c3c565b91506118e182611f43565b602082019050919050565b60006118f9602883611c3c565b915061190482611f6c565b604082019050919050565b600061191c602083611c3c565b915061192782611fbb565b602082019050919050565b600061193f602583611c3c565b915061194a82611fe4565b604082019050919050565b6000611962602483611c3c565b915061196d82612033565b604082019050919050565b6000611985602583611c3c565b915061199082612082565b604082019050919050565b6119a481611ce1565b82525050565b6119b381611ceb565b82525050565b60006020820190506119ce60008301846117b4565b92915050565b60006040820190506119e960008301856117b4565b6119f6602083018461199b565b9392505050565b600060c082019050611a1260008301896117b4565b611a1f602083018861199b565b611a2c60408301876117d2565b611a3960608301866117d2565b611a4660808301856117b4565b611a5360a083018461199b565b979650505050505050565b6000602082019050611a7360008301846117c3565b92915050565b60006020820190508181036000830152611a9381846117e1565b905092915050565b60006020820190508181036000830152611ab48161181a565b9050919050565b60006020820190508181036000830152611ad48161183d565b9050919050565b60006020820190508181036000830152611af481611860565b9050919050565b60006020820190508181036000830152611b1481611883565b9050919050565b60006020820190508181036000830152611b34816118a6565b9050919050565b60006020820190508181036000830152611b54816118c9565b9050919050565b60006020820190508181036000830152611b74816118ec565b9050919050565b60006020820190508181036000830152611b948161190f565b9050919050565b60006020820190508181036000830152611bb481611932565b9050919050565b60006020820190508181036000830152611bd481611955565b9050919050565b60006020820190508181036000830152611bf481611978565b9050919050565b6000602082019050611c10600083018461199b565b92915050565b6000602082019050611c2b60008301846119aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5882611ce1565b9150611c6383611ce1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9857611c97611d6f565b5b828201905092915050565b6000611cae82611cc1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611d0382611ce1565b9050919050565b60005b83811015611d28578082015181840152602081019050611d0d565b83811115611d37576000848401525b50505050565b60006002820490506001821680611d5557607f821691505b60208210811415611d6957611d68611d9e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e672068617320616c726561647920737461727465640000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120da81611ca3565b81146120e557600080fd5b50565b6120f181611cb5565b81146120fc57600080fd5b50565b61210881611ce1565b811461211357600080fd5b5056fea264697066735822122018fca602c957a0ec384d60a2b6d918d2379e7982cfc423b7eca377eabd04614164736f6c63430008040033
Deployed Bytecode
0x60806040526004361061010d5760003560e01c80638da5cb5b11610095578063bcdb446b11610064578063bcdb446b1461039e578063c9567bf9146103b5578063dd62ed3e146103cc578063e8078d9414610409578063f2fde38b1461042057610114565b80638da5cb5b146102ce57806395d89b41146102f9578063a457c2d714610324578063a9059cbb1461036157610114565b806323b872dd116100dc57806323b872dd146101d5578063313ce56714610212578063395093511461023d57806370a082311461027a578063715018a6146102b757610114565b806306fdde0314610119578063095ea7b31461014457806316114acd1461018157806318160ddd146101aa57610114565b3661011457005b600080fd5b34801561012557600080fd5b5061012e610449565b60405161013b9190611a79565b60405180910390f35b34801561015057600080fd5b5061016b600480360381019061016691906116d7565b6104db565b6040516101789190611a5e565b60405180910390f35b34801561018d57600080fd5b506101a860048036038101906101a39190611623565b6104f9565b005b3480156101b657600080fd5b506101bf61069b565b6040516101cc9190611bfb565b60405180910390f35b3480156101e157600080fd5b506101fc60048036038101906101f79190611688565b6106a5565b6040516102099190611a5e565b60405180910390f35b34801561021e57600080fd5b5061022761079d565b6040516102349190611c16565b60405180910390f35b34801561024957600080fd5b50610264600480360381019061025f91906116d7565b6107a6565b6040516102719190611a5e565b60405180910390f35b34801561028657600080fd5b506102a1600480360381019061029c9190611623565b610852565b6040516102ae9190611bfb565b60405180910390f35b3480156102c357600080fd5b506102cc61089a565b005b3480156102da57600080fd5b506102e3610922565b6040516102f091906119b9565b60405180910390f35b34801561030557600080fd5b5061030e61094c565b60405161031b9190611a79565b60405180910390f35b34801561033057600080fd5b5061034b600480360381019061034691906116d7565b6109de565b6040516103589190611a5e565b60405180910390f35b34801561036d57600080fd5b50610388600480360381019061038391906116d7565b610ac9565b6040516103959190611a5e565b60405180910390f35b3480156103aa57600080fd5b506103b3610ae7565b005b3480156103c157600080fd5b506103ca610bb3565b005b3480156103d857600080fd5b506103f360048036038101906103ee919061164c565b610c4c565b6040516104009190611bfb565b60405180910390f35b34801561041557600080fd5b5061041e610cd3565b005b34801561042c57600080fd5b5061044760048036038101906104429190611623565b610e8f565b005b60606003805461045890611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461048490611d3d565b80156104d15780601f106104a6576101008083540402835291602001916104d1565b820191906000526020600020905b8154815290600101906020018083116104b457829003601f168201915b5050505050905090565b60006104ef6104e8610f87565b8484610f8f565b6001905092915050565b610501610f87565b73ffffffffffffffffffffffffffffffffffffffff1661051f610922565b73ffffffffffffffffffffffffffffffffffffffff1614610575576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161056c90611b7b565b60405180910390fd5b60008190508073ffffffffffffffffffffffffffffffffffffffff1663a9059cbb61059e610f87565b8373ffffffffffffffffffffffffffffffffffffffff166370a08231306040518263ffffffff1660e01b81526004016105d791906119b9565b60206040518083038186803b1580156105ef57600080fd5b505afa158015610603573d6000803e3d6000fd5b505050506040513d601f19601f82011682018060405250810190610627919061173c565b6040518363ffffffff1660e01b81526004016106449291906119d4565b602060405180830381600087803b15801561065e57600080fd5b505af1158015610672573d6000803e3d6000fd5b505050506040513d601f19601f820116820180604052508101906106969190611713565b505050565b6000600254905090565b60006106b284848461115a565b6000600160008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060006106fd610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205490508281101561077d576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161077490611b5b565b60405180910390fd5b61079185610789610f87565b858403610f8f565b60019150509392505050565b60006012905090565b60006108486107b3610f87565b8484600160006107c1610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008873ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020546108439190611c4d565b610f8f565b6001905092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b6108a2610f87565b73ffffffffffffffffffffffffffffffffffffffff166108c0610922565b73ffffffffffffffffffffffffffffffffffffffff1614610916576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161090d90611b7b565b60405180910390fd5b61092060006113db565b565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461095b90611d3d565b80601f016020809104026020016040519081016040528092919081815260200182805461098790611d3d565b80156109d45780601f106109a9576101008083540402835291602001916109d4565b820191906000526020600020905b8154815290600101906020018083116109b757829003601f168201915b5050505050905090565b600080600160006109ed610f87565b73ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905082811015610aaa576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aa190611bdb565b60405180910390fd5b610abe610ab5610f87565b85858403610f8f565b600191505092915050565b6000610add610ad6610f87565b848461115a565b6001905092915050565b610aef610f87565b73ffffffffffffffffffffffffffffffffffffffff16610b0d610922565b73ffffffffffffffffffffffffffffffffffffffff1614610b63576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5a90611b7b565b60405180910390fd5b610b6b610f87565b73ffffffffffffffffffffffffffffffffffffffff166108fc479081150290604051600060405180830381858888f19350505050158015610bb0573d6000803e3d6000fd5b50565b610bbb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610bd9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610c2f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610c2690611b7b565b60405180910390fd5b6001600560146101000a81548160ff021916908315150217905550565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b610cdb610f87565b73ffffffffffffffffffffffffffffffffffffffff16610cf9610922565b73ffffffffffffffffffffffffffffffffffffffff1614610d4f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4690611b7b565b60405180910390fd5b600560149054906101000a900460ff1615610d9f576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d9690611abb565b60405180910390fd5b6000737a250d5630b4cf539739df2c5dacb4c659f2488d9050610de330827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff610f8f565b8073ffffffffffffffffffffffffffffffffffffffff1663f305d7194730610e0a30610852565b600080610e15610922565b426040518863ffffffff1660e01b8152600401610e37969594939291906119fd565b6060604051808303818588803b158015610e5057600080fd5b505af1158015610e64573d6000803e3d6000fd5b50505050506040513d601f19601f82011682018060405250810190610e899190611765565b50505050565b610e97610f87565b73ffffffffffffffffffffffffffffffffffffffff16610eb5610922565b73ffffffffffffffffffffffffffffffffffffffff1614610f0b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f0290611b7b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff161415610f7b576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610f7290611adb565b60405180910390fd5b610f84816113db565b50565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415610fff576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ff690611bbb565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561106f576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161106690611afb565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258360405161114d9190611bfb565b60405180910390a3505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1614156111ca576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016111c190611b9b565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff16141561123a576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161123190611a9b565b60405180910390fd5b6112458383836114a1565b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050818110156112cb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016112c290611b1b565b60405180910390fd5b8181036000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550816000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825461135e9190611c4d565b925050819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516113c29190611bfb565b60405180910390a36113d58484846115ca565b50505050565b6000600560009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905081600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508173ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a35050565b6114a9610922565b73ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff161415801561151757506114e7610922565b73ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1614155b80156115705750600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff16145b156115c557600560149054906101000a900460ff166115c4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016115bb90611b3b565b60405180910390fd5b5b505050565b505050565b6000813590506115de816120d1565b92915050565b6000815190506115f3816120e8565b92915050565b600081359050611608816120ff565b92915050565b60008151905061161d816120ff565b92915050565b60006020828403121561163557600080fd5b6000611643848285016115cf565b91505092915050565b6000806040838503121561165f57600080fd5b600061166d858286016115cf565b925050602061167e858286016115cf565b9150509250929050565b60008060006060848603121561169d57600080fd5b60006116ab868287016115cf565b93505060206116bc868287016115cf565b92505060406116cd868287016115f9565b9150509250925092565b600080604083850312156116ea57600080fd5b60006116f8858286016115cf565b9250506020611709858286016115f9565b9150509250929050565b60006020828403121561172557600080fd5b6000611733848285016115e4565b91505092915050565b60006020828403121561174e57600080fd5b600061175c8482850161160e565b91505092915050565b60008060006060848603121561177a57600080fd5b60006117888682870161160e565b93505060206117998682870161160e565b92505060406117aa8682870161160e565b9150509250925092565b6117bd81611ca3565b82525050565b6117cc81611cb5565b82525050565b6117db81611cf8565b82525050565b60006117ec82611c31565b6117f68185611c3c565b9350611806818560208601611d0a565b61180f81611dcd565b840191505092915050565b6000611827602383611c3c565b915061183282611dde565b604082019050919050565b600061184a601b83611c3c565b915061185582611e2d565b602082019050919050565b600061186d602683611c3c565b915061187882611e56565b604082019050919050565b6000611890602283611c3c565b915061189b82611ea5565b604082019050919050565b60006118b3602683611c3c565b91506118be82611ef4565b604082019050919050565b60006118d6601783611c3c565b91506118e182611f43565b602082019050919050565b60006118f9602883611c3c565b915061190482611f6c565b604082019050919050565b600061191c602083611c3c565b915061192782611fbb565b602082019050919050565b600061193f602583611c3c565b915061194a82611fe4565b604082019050919050565b6000611962602483611c3c565b915061196d82612033565b604082019050919050565b6000611985602583611c3c565b915061199082612082565b604082019050919050565b6119a481611ce1565b82525050565b6119b381611ceb565b82525050565b60006020820190506119ce60008301846117b4565b92915050565b60006040820190506119e960008301856117b4565b6119f6602083018461199b565b9392505050565b600060c082019050611a1260008301896117b4565b611a1f602083018861199b565b611a2c60408301876117d2565b611a3960608301866117d2565b611a4660808301856117b4565b611a5360a083018461199b565b979650505050505050565b6000602082019050611a7360008301846117c3565b92915050565b60006020820190508181036000830152611a9381846117e1565b905092915050565b60006020820190508181036000830152611ab48161181a565b9050919050565b60006020820190508181036000830152611ad48161183d565b9050919050565b60006020820190508181036000830152611af481611860565b9050919050565b60006020820190508181036000830152611b1481611883565b9050919050565b60006020820190508181036000830152611b34816118a6565b9050919050565b60006020820190508181036000830152611b54816118c9565b9050919050565b60006020820190508181036000830152611b74816118ec565b9050919050565b60006020820190508181036000830152611b948161190f565b9050919050565b60006020820190508181036000830152611bb481611932565b9050919050565b60006020820190508181036000830152611bd481611955565b9050919050565b60006020820190508181036000830152611bf481611978565b9050919050565b6000602082019050611c10600083018461199b565b92915050565b6000602082019050611c2b60008301846119aa565b92915050565b600081519050919050565b600082825260208201905092915050565b6000611c5882611ce1565b9150611c6383611ce1565b9250827fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff03821115611c9857611c97611d6f565b5b828201905092915050565b6000611cae82611cc1565b9050919050565b60008115159050919050565b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b6000819050919050565b600060ff82169050919050565b6000611d0382611ce1565b9050919050565b60005b83811015611d28578082015181840152602081019050611d0d565b83811115611d37576000848401525b50505050565b60006002820490506001821680611d5557607f821691505b60208210811415611d6957611d68611d9e565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b6000601f19601f8301169050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e672068617320616c726561647920737461727465640000000000600082015250565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b7f54726164696e6720686173206e6f742073746172746564000000000000000000600082015250565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206160008201527f6c6c6f77616e6365000000000000000000000000000000000000000000000000602082015250565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b6120da81611ca3565b81146120e557600080fd5b50565b6120f181611cb5565b81146120fc57600080fd5b50565b61210881611ce1565b811461211357600080fd5b5056fea264697066735822122018fca602c957a0ec384d60a2b6d918d2379e7982cfc423b7eca377eabd04614164736f6c63430008040033
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.