ETH Price: $3,676.71 (+1.15%)
 

Overview

Max Total Supply

69,420,000,000 PEP3

Holders

15

Total Transfers

-

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 9 Decimals)

Loading...
Loading
Loading...
Loading
Loading...
Loading

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

Contract Source Code Verified (Exact Match)

Contract Name:
Pep3Token

Compiler Version
v0.8.15+commit.e14f2714

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license

Contract Source Code (Solidity)

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

// SPDX-License-Identifier: MIT

pragma solidity ^0.8.15;

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

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


pragma solidity ^0.8.15;

/**
 * @dev Interface of the ERC20 standard as defined in the EIP.
 */
interface IERC20 {
    /**
     * @dev Returns the amount of tokens in existence.
     */
    function totalSupply() external view returns (uint256);

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

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

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

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

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

    /**
     * @dev Emitted when `value` tokens are moved from one account (`from`) to
     * another (`to`).
     *
     * Note that `value` may be zero.
     */
    event Transfer(address indexed from, address indexed to, uint256 value);

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

pragma solidity ^0.8.15;

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

pragma solidity ^0.8.15;

/**
 * @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 Returns the address of the current owner.
     */
    function owner() public view virtual returns (address) {
        return _owner;
    }

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

    /**
     * @dev Leaves the contract without owner. It will not be possible to call
     * `onlyOwner` functions anymore. Can only be called by the current owner.
     *
     * NOTE: Renouncing ownership will leave the contract without an owner,
     * thereby removing any functionality that is only available to the owner.
     */
    function renounceOwnership() public virtual onlyOwner {
        _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);
    }
}

pragma solidity ^0.8.15;

/**
 * @dev Implementation of the {IERC20} interface.
 *
 * This implementation is agnostic to the way tokens are created. This means
 * that a supply mechanism has to be added in a derived contract using {_mint}.
 * For a generic mechanism see {ERC20PresetMinterPauser}.
 *
 * TIP: For a detailed writeup see our guide
 * https://forum.zeppelin.solutions/t/how-to-implement-erc20-supply-mechanisms/226[How
 * to implement supply mechanisms].
 *
 * We have followed general OpenZeppelin 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 Context, IERC20, IERC20Metadata {
    mapping(address => uint256) private _balances;

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

    uint256 private _totalSupply;

    string private _name;
    string private _symbol;

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

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

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

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

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

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

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

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

    /**
     * @dev See {IERC20-approve}.
     *
     * Requirements:
     *
     * - `spender` cannot be the zero address.
     */
    function approve(address spender, uint256 amount) public virtual override returns (bool) {
        _approve(_msgSender(), spender, amount);
        return true;
    }

    /**
     * @dev See {IERC20-transferFrom}.
     *
     * Emits an {Approval} event indicating the updated allowance. This is not
     * required by the EIP. See the note at the beginning of {ERC20}.
     *
     * Requirements:
     *
     * - `sender` and `recipient` cannot be the zero address.
     * - `sender` must have a balance of at least `amount`.
     * - the caller must have allowance for ``sender``'s tokens of at least
     * `amount`.
     */
    function transferFrom(
        address sender,
        address recipient,
        uint256 amount
    ) public virtual override returns (bool) {
        _transfer(sender, recipient, amount);

        uint256 currentAllowance = _allowances[sender][_msgSender()];
        require(currentAllowance >= amount, "ERC20: transfer amount exceeds allowance");
        unchecked {
            _approve(sender, _msgSender(), currentAllowance - amount);
        }

        return true;
    }

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

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

        return true;
    }

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

        _beforeTokenTransfer(sender, recipient);

        uint256 senderBalance = _balances[sender];
        require(senderBalance >= amount, "ERC20: transfer amount exceeds balance");
        unchecked {
            _balances[sender] = senderBalance - amount;
        }
        _balances[recipient] += amount;

        emit Transfer(sender, recipient, amount);

        _afterTokenTransfer(sender, recipient, amount);
    }

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

        _beforeTokenTransfer(address(0), account);

        _totalSupply += amount;
        _balances[account] += amount;
        emit Transfer(address(0), account, amount);

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

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

        _beforeTokenTransfer(account, address(0));

        uint256 accountBalance = _balances[account];
        require(accountBalance >= amount, "ERC20: burn amount exceeds balance");
        unchecked {
            _balances[account] = accountBalance - amount;
        }
        _totalSupply -= amount;

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

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

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

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

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

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


pragma solidity ^0.8.15;
contract Pep3Token is Ownable, ERC20 {

    uint256 _totalSupply ;
    bool tradeEnabled = false;

    constructor() ERC20("PEP3", "PEP3") {
        _totalSupply = 69420000000 * 10 ** 9;
        _mint(msg.sender, _totalSupply);
    }

    function enableTrading() external onlyOwner {
        require(!tradeEnabled);
        tradeEnabled = true;
    }

    function _beforeTokenTransfer(
        address from,
        address to
    ) override internal virtual {

        if (!tradeEnabled) {
            require(from == owner() || to == owner(), "trading not started");
            return;
        }
    }
        function burn(uint256 value) external {
        _burn(msg.sender, value);
    }
}

Contract Security Audit

Contract ABI

[{"inputs":[],"stateMutability":"nonpayable","type":"constructor"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"owner","type":"address"},{"indexed":true,"internalType":"address","name":"spender","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"previousOwner","type":"address"},{"indexed":true,"internalType":"address","name":"newOwner","type":"address"}],"name":"OwnershipTransferred","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"internalType":"address","name":"from","type":"address"},{"indexed":true,"internalType":"address","name":"to","type":"address"},{"indexed":false,"internalType":"uint256","name":"value","type":"uint256"}],"name":"Transfer","type":"event"},{"inputs":[{"internalType":"address","name":"owner","type":"address"},{"internalType":"address","name":"spender","type":"address"}],"name":"allowance","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"spender","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"approve","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"}],"name":"balanceOf","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"uint256","name":"value","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","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":[],"name":"enableTrading","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":[],"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":[],"name":"symbol","outputs":[{"internalType":"string","name":"","type":"string"}],"stateMutability":"view","type":"function"},{"inputs":[],"name":"totalSupply","outputs":[{"internalType":"uint256","name":"","type":"uint256"}],"stateMutability":"view","type":"function"},{"inputs":[{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transfer","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"sender","type":"address"},{"internalType":"address","name":"recipient","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"transferFrom","outputs":[{"internalType":"bool","name":"","type":"bool"}],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"newOwner","type":"address"}],"name":"transferOwnership","outputs":[],"stateMutability":"nonpayable","type":"function"}]

60806040526007805460ff191690553480156200001b57600080fd5b50604051806040016040528060048152602001635045503360e01b815250604051806040016040528060048152602001635045503360e01b815250620000706200006a620000b260201b60201c565b620000b6565b60046200007e838262000329565b5060056200008d828262000329565b50506803c3656232739e00006006819055620000ac9150339062000106565b6200041c565b3390565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b6001600160a01b038216620001625760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064015b60405180910390fd5b6200016f600083620001fd565b8060036000828254620001839190620003f5565b90915550506001600160a01b03821660009081526001602052604081208054839290620001b2908490620003f5565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35b5050565b60075460ff16620001f9576000546001600160a01b03838116911614806200023257506000546001600160a01b038281169116145b620001f95760405162461bcd60e51b815260206004820152601360248201527f74726164696e67206e6f74207374617274656400000000000000000000000000604482015260640162000159565b505050565b634e487b7160e01b600052604160045260246000fd5b600181811c90821680620002b057607f821691505b602082108103620002d157634e487b7160e01b600052602260045260246000fd5b50919050565b601f8211156200028057600081815260208120601f850160051c81016020861015620003005750805b601f850160051c820191505b8181101562000321578281556001016200030c565b505050505050565b81516001600160401b0381111562000345576200034562000285565b6200035d816200035684546200029b565b84620002d7565b602080601f8311600181146200039557600084156200037c5750858301515b600019600386901b1c1916600185901b17855562000321565b600085815260208120601f198616915b82811015620003c657888601518255948401946001909101908401620003a5565b5085821015620003e55787850151600019600388901b60f8161c191681555b5050505050600190811b01905550565b600082198211156200041757634e487b7160e01b600052601160045260246000fd5b500190565b610d23806200042c6000396000f3fe608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101fe578063a9059cbb14610211578063dd62ed3e14610224578063f2fde38b1461025d57600080fd5b8063715018a6146101cb5780638a8c523c146101d35780638da5cb5b146101db57806395d89b41146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610af4565b60405180910390f35b610136610131366004610b65565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b8f565b610318565b6040516009815260200161011a565b610136610188366004610b65565b6103c7565b6101a061019b366004610bcb565b610403565b005b61014a6101b0366004610be4565b6001600160a01b031660009081526001602052604090205490565b6101a0610410565b6101a0610446565b6000546040516001600160a01b03909116815260200161011a565b61010d61048f565b61013661020c366004610b65565b61049e565b61013661021f366004610b65565b610537565b61014a610232366004610c06565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a061026b366004610be4565b610544565b60606004805461027f90610c39565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610c39565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f3384846105dc565b50600192915050565b6000610325848484610701565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103af5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bc85338584036105dc565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103fe908690610c89565b6105dc565b61040d33826108da565b50565b6000546001600160a01b0316331461043a5760405162461bcd60e51b81526004016103a690610ca1565b6104446000610a2b565b565b6000546001600160a01b031633146104705760405162461bcd60e51b81526004016103a690610ca1565b60075460ff161561048057600080fd5b6007805460ff19166001179055565b60606005805461027f90610c39565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105205760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a6565b61052d33858584036105dc565b5060019392505050565b600061030f338484610701565b6000546001600160a01b0316331461056e5760405162461bcd60e51b81526004016103a690610ca1565b6001600160a01b0381166105d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a6565b61040d81610a2b565b6001600160a01b03831661063e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a6565b6001600160a01b03821661069f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a6565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a6565b6107d18383610a7b565b6001600160a01b038316600090815260016020526040902054818110156108495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a6565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610880908490610c89565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108cc91815260200190565b60405180910390a350505050565b6001600160a01b03821661093a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a6565b610945826000610a7b565b6001600160a01b038216600090815260016020526040902054818110156109b95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a6565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109e8908490610cd6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106f4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff16610af0576000546001600160a01b0383811691161480610aae57506000546001600160a01b038281169116145b610af05760405162461bcd60e51b81526020600482015260136024820152721d1c98591a5b99c81b9bdd081cdd185c9d1959606a1b60448201526064016103a6565b5050565b600060208083528351808285015260005b81811015610b2157858101830151858201604001528201610b05565b81811115610b33576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b6057600080fd5b919050565b60008060408385031215610b7857600080fd5b610b8183610b49565b946020939093013593505050565b600080600060608486031215610ba457600080fd5b610bad84610b49565b9250610bbb60208501610b49565b9150604084013590509250925092565b600060208284031215610bdd57600080fd5b5035919050565b600060208284031215610bf657600080fd5b610bff82610b49565b9392505050565b60008060408385031215610c1957600080fd5b610c2283610b49565b9150610c3060208401610b49565b90509250929050565b600181811c90821680610c4d57607f821691505b602082108103610c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c9c57610c9c610c73565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610ce857610ce8610c73565b50039056fea2646970667358221220b8c6b966def7b3210797f940872d8536bfd03d84814bdc4ed0bba1286e3328a864736f6c634300080f0033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106101005760003560e01c8063715018a611610097578063a457c2d711610066578063a457c2d7146101fe578063a9059cbb14610211578063dd62ed3e14610224578063f2fde38b1461025d57600080fd5b8063715018a6146101cb5780638a8c523c146101d35780638da5cb5b146101db57806395d89b41146101f657600080fd5b8063313ce567116100d3578063313ce5671461016b578063395093511461017a57806342966c681461018d57806370a08231146101a257600080fd5b806306fdde0314610105578063095ea7b31461012357806318160ddd1461014657806323b872dd14610158575b600080fd5b61010d610270565b60405161011a9190610af4565b60405180910390f35b610136610131366004610b65565b610302565b604051901515815260200161011a565b6003545b60405190815260200161011a565b610136610166366004610b8f565b610318565b6040516009815260200161011a565b610136610188366004610b65565b6103c7565b6101a061019b366004610bcb565b610403565b005b61014a6101b0366004610be4565b6001600160a01b031660009081526001602052604090205490565b6101a0610410565b6101a0610446565b6000546040516001600160a01b03909116815260200161011a565b61010d61048f565b61013661020c366004610b65565b61049e565b61013661021f366004610b65565b610537565b61014a610232366004610c06565b6001600160a01b03918216600090815260026020908152604080832093909416825291909152205490565b6101a061026b366004610be4565b610544565b60606004805461027f90610c39565b80601f01602080910402602001604051908101604052809291908181526020018280546102ab90610c39565b80156102f85780601f106102cd576101008083540402835291602001916102f8565b820191906000526020600020905b8154815290600101906020018083116102db57829003601f168201915b5050505050905090565b600061030f3384846105dc565b50600192915050565b6000610325848484610701565b6001600160a01b0384166000908152600260209081526040808320338452909152902054828110156103af5760405162461bcd60e51b815260206004820152602860248201527f45524332303a207472616e7366657220616d6f756e74206578636565647320616044820152676c6c6f77616e636560c01b60648201526084015b60405180910390fd5b6103bc85338584036105dc565b506001949350505050565b3360008181526002602090815260408083206001600160a01b0387168452909152812054909161030f9185906103fe908690610c89565b6105dc565b61040d33826108da565b50565b6000546001600160a01b0316331461043a5760405162461bcd60e51b81526004016103a690610ca1565b6104446000610a2b565b565b6000546001600160a01b031633146104705760405162461bcd60e51b81526004016103a690610ca1565b60075460ff161561048057600080fd5b6007805460ff19166001179055565b60606005805461027f90610c39565b3360009081526002602090815260408083206001600160a01b0386168452909152812054828110156105205760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084016103a6565b61052d33858584036105dc565b5060019392505050565b600061030f338484610701565b6000546001600160a01b0316331461056e5760405162461bcd60e51b81526004016103a690610ca1565b6001600160a01b0381166105d35760405162461bcd60e51b815260206004820152602660248201527f4f776e61626c653a206e6577206f776e657220697320746865207a65726f206160448201526564647265737360d01b60648201526084016103a6565b61040d81610a2b565b6001600160a01b03831661063e5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103a6565b6001600160a01b03821661069f5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103a6565b6001600160a01b0383811660008181526002602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b92591015b60405180910390a3505050565b6001600160a01b0383166107655760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103a6565b6001600160a01b0382166107c75760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103a6565b6107d18383610a7b565b6001600160a01b038316600090815260016020526040902054818110156108495760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103a6565b6001600160a01b03808516600090815260016020526040808220858503905591851681529081208054849290610880908490610c89565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516108cc91815260200190565b60405180910390a350505050565b6001600160a01b03821661093a5760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103a6565b610945826000610a7b565b6001600160a01b038216600090815260016020526040902054818110156109b95760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103a6565b6001600160a01b03831660009081526001602052604081208383039055600380548492906109e8908490610cd6565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef906020016106f4565b600080546001600160a01b038381166001600160a01b0319831681178455604051919092169283917f8be0079c531659141344cd1fd0a4f28419497f9722a3daafe3b4186f6b6457e09190a35050565b60075460ff16610af0576000546001600160a01b0383811691161480610aae57506000546001600160a01b038281169116145b610af05760405162461bcd60e51b81526020600482015260136024820152721d1c98591a5b99c81b9bdd081cdd185c9d1959606a1b60448201526064016103a6565b5050565b600060208083528351808285015260005b81811015610b2157858101830151858201604001528201610b05565b81811115610b33576000604083870101525b50601f01601f1916929092016040019392505050565b80356001600160a01b0381168114610b6057600080fd5b919050565b60008060408385031215610b7857600080fd5b610b8183610b49565b946020939093013593505050565b600080600060608486031215610ba457600080fd5b610bad84610b49565b9250610bbb60208501610b49565b9150604084013590509250925092565b600060208284031215610bdd57600080fd5b5035919050565b600060208284031215610bf657600080fd5b610bff82610b49565b9392505050565b60008060408385031215610c1957600080fd5b610c2283610b49565b9150610c3060208401610b49565b90509250929050565b600181811c90821680610c4d57607f821691505b602082108103610c6d57634e487b7160e01b600052602260045260246000fd5b50919050565b634e487b7160e01b600052601160045260246000fd5b60008219821115610c9c57610c9c610c73565b500190565b6020808252818101527f4f776e61626c653a2063616c6c6572206973206e6f7420746865206f776e6572604082015260600190565b600082821015610ce857610ce8610c73565b50039056fea2646970667358221220b8c6b966def7b3210797f940872d8536bfd03d84814bdc4ed0bba1286e3328a864736f6c634300080f0033

Deployed Bytecode Sourcemap

18021:724:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8082:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;10248:169;;;;;;:::i;:::-;;:::i;:::-;;;1218:14:1;;1211:22;1193:41;;1181:2;1166:18;10248:169:0;1053:187:1;9201:108:0;9289:12;;9201:108;;;1391:25:1;;;1379:2;1364:18;9201:108:0;1245:177:1;10899:492:0;;;;;;:::i;:::-;;:::i;9044:92::-;;;9127:1;1902:36:1;;1890:2;1875:18;9044:92:0;1760:184:1;11800:215:0;;;;;;:::i;:::-;;:::i;18661:81::-;;;;;;:::i;:::-;;:::i;:::-;;9372:127;;;;;;:::i;:::-;-1:-1:-1;;;;;9473:18:0;9446:7;9473:18;;;:9;:18;;;;;;;9372:127;5259:103;;;:::i;18270:115::-;;;:::i;4608:87::-;4654:7;4681:6;4608:87;;-1:-1:-1;;;;;4681:6:0;;;2471:51:1;;2459:2;2444:18;4608:87:0;2325:203:1;8301:104:0;;;:::i;12518:413::-;;;;;;:::i;:::-;;:::i;9712:175::-;;;;;;:::i;:::-;;:::i;9950:151::-;;;;;;:::i;:::-;-1:-1:-1;;;;;10066:18:0;;;10039:7;10066:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;9950:151;5517:201;;;;;;:::i;:::-;;:::i;8082:100::-;8136:13;8169:5;8162:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8082:100;:::o;10248:169::-;10331:4;10348:39;176:10;10371:7;10380:6;10348:8;:39::i;:::-;-1:-1:-1;10405:4:0;10248:169;;;;:::o;10899:492::-;11039:4;11056:36;11066:6;11074:9;11085:6;11056:9;:36::i;:::-;-1:-1:-1;;;;;11132:19:0;;11105:24;11132:19;;;:11;:19;;;;;;;;176:10;11132:33;;;;;;;;11184:26;;;;11176:79;;;;-1:-1:-1;;;11176:79:0;;3385:2:1;11176:79:0;;;3367:21:1;3424:2;3404:18;;;3397:30;3463:34;3443:18;;;3436:62;-1:-1:-1;;;3514:18:1;;;3507:38;3562:19;;11176:79:0;;;;;;;;;11291:57;11300:6;176:10;11341:6;11322:16;:25;11291:8;:57::i;:::-;-1:-1:-1;11379:4:0;;10899:492;-1:-1:-1;;;;10899:492:0:o;11800:215::-;176:10;11888:4;11937:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;11937:34:0;;;;;;;;;;11888:4;;11905:80;;11928:7;;11937:47;;11974:10;;11937:47;:::i;:::-;11905:8;:80::i;18661:81::-;18710:24;18716:10;18728:5;18710;:24::i;:::-;18661:81;:::o;5259:103::-;4654:7;4681:6;-1:-1:-1;;;;;4681:6:0;176:10;4828:23;4820:68;;;;-1:-1:-1;;;4820:68:0;;;;;;;:::i;:::-;5324:30:::1;5351:1;5324:18;:30::i;:::-;5259:103::o:0;18270:115::-;4654:7;4681:6;-1:-1:-1;;;;;4681:6:0;176:10;4828:23;4820:68;;;;-1:-1:-1;;;4820:68:0;;;;;;;:::i;:::-;18334:12:::1;::::0;::::1;;18333:13;18325:22;;;::::0;::::1;;18358:12;:19:::0;;-1:-1:-1;;18358:19:0::1;18373:4;18358:19;::::0;;18270:115::o;8301:104::-;8357:13;8390:7;8383:14;;;;;:::i;12518:413::-;176:10;12611:4;12655:25;;;:11;:25;;;;;;;;-1:-1:-1;;;;;12655:34:0;;;;;;;;;;12708:35;;;;12700:85;;;;-1:-1:-1;;;12700:85:0;;4420:2:1;12700:85:0;;;4402:21:1;4459:2;4439:18;;;4432:30;4498:34;4478:18;;;4471:62;-1:-1:-1;;;4549:18:1;;;4542:35;4594:19;;12700:85:0;4218:401:1;12700:85:0;12821:67;176:10;12844:7;12872:15;12853:16;:34;12821:8;:67::i;:::-;-1:-1:-1;12919:4:0;;12518:413;-1:-1:-1;;;12518:413:0:o;9712:175::-;9798:4;9815:42;176:10;9839:9;9850:6;9815:9;:42::i;5517:201::-;4654:7;4681:6;-1:-1:-1;;;;;4681:6:0;176:10;4828:23;4820:68;;;;-1:-1:-1;;;4820:68:0;;;;;;;:::i;:::-;-1:-1:-1;;;;;5606:22:0;::::1;5598:73;;;::::0;-1:-1:-1;;;5598:73:0;;4826:2:1;5598:73:0::1;::::0;::::1;4808:21:1::0;4865:2;4845:18;;;4838:30;4904:34;4884:18;;;4877:62;-1:-1:-1;;;4955:18:1;;;4948:36;5001:19;;5598:73:0::1;4624:402:1::0;5598:73:0::1;5682:28;5701:8;5682:18;:28::i;16178:380::-:0;-1:-1:-1;;;;;16314:19:0;;16306:68;;;;-1:-1:-1;;;16306:68:0;;5233:2:1;16306:68:0;;;5215:21:1;5272:2;5252:18;;;5245:30;5311:34;5291:18;;;5284:62;-1:-1:-1;;;5362:18:1;;;5355:34;5406:19;;16306:68:0;5031:400:1;16306:68:0;-1:-1:-1;;;;;16393:21:0;;16385:68;;;;-1:-1:-1;;;16385:68:0;;5638:2:1;16385:68:0;;;5620:21:1;5677:2;5657:18;;;5650:30;5716:34;5696:18;;;5689:62;-1:-1:-1;;;5767:18:1;;;5760:32;5809:19;;16385:68:0;5436:398:1;16385:68:0;-1:-1:-1;;;;;16466:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;16518:32;;1391:25:1;;;16518:32:0;;1364:18:1;16518:32:0;;;;;;;;16178:380;;;:::o;13421:725::-;-1:-1:-1;;;;;13561:20:0;;13553:70;;;;-1:-1:-1;;;13553:70:0;;6041:2:1;13553:70:0;;;6023:21:1;6080:2;6060:18;;;6053:30;6119:34;6099:18;;;6092:62;-1:-1:-1;;;6170:18:1;;;6163:35;6215:19;;13553:70:0;5839:401:1;13553:70:0;-1:-1:-1;;;;;13642:23:0;;13634:71;;;;-1:-1:-1;;;13634:71:0;;6447:2:1;13634:71:0;;;6429:21:1;6486:2;6466:18;;;6459:30;6525:34;6505:18;;;6498:62;-1:-1:-1;;;6576:18:1;;;6569:33;6619:19;;13634:71:0;6245:399:1;13634:71:0;13718:39;13739:6;13747:9;13718:20;:39::i;:::-;-1:-1:-1;;;;;13794:17:0;;13770:21;13794:17;;;:9;:17;;;;;;13830:23;;;;13822:74;;;;-1:-1:-1;;;13822:74:0;;6851:2:1;13822:74:0;;;6833:21:1;6890:2;6870:18;;;6863:30;6929:34;6909:18;;;6902:62;-1:-1:-1;;;6980:18:1;;;6973:36;7026:19;;13822:74:0;6649:402:1;13822:74:0;-1:-1:-1;;;;;13932:17:0;;;;;;;:9;:17;;;;;;13952:22;;;13932:42;;13996:20;;;;;;;;:30;;13968:6;;13932:17;13996:30;;13968:6;;13996:30;:::i;:::-;;;;;;;;14061:9;-1:-1:-1;;;;;14044:35:0;14053:6;-1:-1:-1;;;;;14044:35:0;;14072:6;14044:35;;;;1391:25:1;;1379:2;1364:18;;1245:177;14044:35:0;;;;;;;;13542:604;13421:725;;;:::o;15157:583::-;-1:-1:-1;;;;;15241:21:0;;15233:67;;;;-1:-1:-1;;;15233:67:0;;7258:2:1;15233:67:0;;;7240:21:1;7297:2;7277:18;;;7270:30;7336:34;7316:18;;;7309:62;-1:-1:-1;;;7387:18:1;;;7380:31;7428:19;;15233:67:0;7056:397:1;15233:67:0;15313:41;15334:7;15351:1;15313:20;:41::i;:::-;-1:-1:-1;;;;;15392:18:0;;15367:22;15392:18;;;:9;:18;;;;;;15429:24;;;;15421:71;;;;-1:-1:-1;;;15421:71:0;;7660:2:1;15421:71:0;;;7642:21:1;7699:2;7679:18;;;7672:30;7738:34;7718:18;;;7711:62;-1:-1:-1;;;7789:18:1;;;7782:32;7831:19;;15421:71:0;7458:398:1;15421:71:0;-1:-1:-1;;;;;15528:18:0;;;;;;:9;:18;;;;;15549:23;;;15528:44;;15594:12;:22;;15566:6;;15528:18;15594:22;;15566:6;;15594:22;:::i;:::-;;;;-1:-1:-1;;15634:37:0;;1391:25:1;;;15660:1:0;;-1:-1:-1;;;;;15634:37:0;;;;;1379:2:1;1364:18;15634:37:0;1245:177:1;5878:191:0;5952:16;5971:6;;-1:-1:-1;;;;;5988:17:0;;;-1:-1:-1;;;;;;5988:17:0;;;;;;6021:40;;5971:6;;;;;;;6021:40;;5952:16;6021:40;5941:128;5878:191;:::o;18393:258::-;18518:12;;;;18513:131;;4654:7;4681:6;-1:-1:-1;;;;;18555:15:0;;;4681:6;;18555:15;;:32;;-1:-1:-1;4654:7:0;4681:6;-1:-1:-1;;;;;18574:13:0;;;4681:6;;18574:13;18555:32;18547:64;;;;-1:-1:-1;;;18547:64:0;;8193:2:1;18547:64:0;;;8175:21:1;8232:2;8212:18;;;8205:30;-1:-1:-1;;;8251:18:1;;;8244:49;8310:18;;18547:64:0;7991:343:1;18547:64:0;18393:258;;:::o;14:597:1:-;126:4;155:2;184;173:9;166:21;216:6;210:13;259:6;254:2;243:9;239:18;232:34;284:1;294:140;308:6;305:1;302:13;294:140;;;403:14;;;399:23;;393:30;369:17;;;388:2;365:26;358:66;323:10;;294:140;;;452:6;449:1;446:13;443:91;;;522:1;517:2;508:6;497:9;493:22;489:31;482:42;443:91;-1:-1:-1;595:2:1;574:15;-1:-1:-1;;570:29:1;555:45;;;;602:2;551:54;;14:597;-1:-1:-1;;;14:597:1:o;616:173::-;684:20;;-1:-1:-1;;;;;733:31:1;;723:42;;713:70;;779:1;776;769:12;713:70;616:173;;;:::o;794:254::-;862:6;870;923:2;911:9;902:7;898:23;894:32;891:52;;;939:1;936;929:12;891:52;962:29;981:9;962:29;:::i;:::-;952:39;1038:2;1023:18;;;;1010:32;;-1:-1:-1;;;794:254:1:o;1427:328::-;1504:6;1512;1520;1573:2;1561:9;1552:7;1548:23;1544:32;1541:52;;;1589:1;1586;1579:12;1541:52;1612:29;1631:9;1612:29;:::i;:::-;1602:39;;1660:38;1694:2;1683:9;1679:18;1660:38;:::i;:::-;1650:48;;1745:2;1734:9;1730:18;1717:32;1707:42;;1427:328;;;;;:::o;1949:180::-;2008:6;2061:2;2049:9;2040:7;2036:23;2032:32;2029:52;;;2077:1;2074;2067:12;2029:52;-1:-1:-1;2100:23:1;;1949:180;-1:-1:-1;1949:180:1:o;2134:186::-;2193:6;2246:2;2234:9;2225:7;2221:23;2217:32;2214:52;;;2262:1;2259;2252:12;2214:52;2285:29;2304:9;2285:29;:::i;:::-;2275:39;2134:186;-1:-1:-1;;;2134:186:1:o;2533:260::-;2601:6;2609;2662:2;2650:9;2641:7;2637:23;2633:32;2630:52;;;2678:1;2675;2668:12;2630:52;2701:29;2720:9;2701:29;:::i;:::-;2691:39;;2749:38;2783:2;2772:9;2768:18;2749:38;:::i;:::-;2739:48;;2533:260;;;;;:::o;2798:380::-;2877:1;2873:12;;;;2920;;;2941:61;;2995:4;2987:6;2983:17;2973:27;;2941:61;3048:2;3040:6;3037:14;3017:18;3014:38;3011:161;;3094:10;3089:3;3085:20;3082:1;3075:31;3129:4;3126:1;3119:15;3157:4;3154:1;3147:15;3011:161;;2798:380;;;:::o;3592:127::-;3653:10;3648:3;3644:20;3641:1;3634:31;3684:4;3681:1;3674:15;3708:4;3705:1;3698:15;3724:128;3764:3;3795:1;3791:6;3788:1;3785:13;3782:39;;;3801:18;;:::i;:::-;-1:-1:-1;3837:9:1;;3724:128::o;3857:356::-;4059:2;4041:21;;;4078:18;;;4071:30;4137:34;4132:2;4117:18;;4110:62;4204:2;4189:18;;3857:356::o;7861:125::-;7901:4;7929:1;7926;7923:8;7920:34;;;7934:18;;:::i;:::-;-1:-1:-1;7971:9:1;;7861:125::o

Swarm Source

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