ETH Price: $2,892.82 (-10.22%)
Gas: 14 Gwei

Token

uP (uP)
 

Overview

Max Total Supply

21,000,000 uP

Holders

680

Market

Onchain Market Cap

$0.00

Circulating Supply Market Cap

-

Other Info

Token Contract (WITH 18 Decimals)

Balance
67,539.4285621041 uP

Value
$0.00
0x80ff59d3518ca8954c5c2a642fc3d553486a9bbd
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:
UpToken

Compiler Version
v0.8.7+commit.e28d00a7

Optimization Enabled:
Yes with 200 runs

Other Settings:
default evmVersion, MIT license
/**
 *Submitted for verification at Etherscan.io on 2023-01-30
*/

// File: .deps/openzeppelin/contracts/utils/Context.sol


// OpenZeppelin Contracts v4.4.1 (utils/Context.sol)

pragma solidity ^0.8.0;

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

// File: .deps/openzeppelin/contracts/token/ERC20/IERC20.sol


// OpenZeppelin Contracts (last updated v4.6.0) (token/ERC20/IERC20.sol)

pragma solidity ^0.8.0;

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

// File: .deps/openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol


// OpenZeppelin Contracts v4.4.1 (token/ERC20/extensions/IERC20Metadata.sol)

pragma solidity ^0.8.0;


/**
 * @dev Interface for the optional metadata functions from the ERC20 standard.
 *
 * _Available since v4.1._
 */
interface IERC20Metadata is IERC20 {
    /**
     * @dev Returns the name of the token.
     */
    function 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);
}

// File: .deps/openzeppelin/contracts/token/ERC20/ERC20.sol


// OpenZeppelin Contracts (last updated v4.7.0) (token/ERC20/ERC20.sol)

pragma solidity ^0.8.0;




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

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

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

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

// File: .deps/openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol


// OpenZeppelin Contracts (last updated v4.5.0) (token/ERC20/extensions/ERC20Burnable.sol)

pragma solidity ^0.8.0;



/**
 * @dev Extension of {ERC20} that allows token holders to destroy both their own
 * tokens and those that they have an allowance for, in a way that can be
 * recognized off-chain (via event analysis).
 */
abstract contract ERC20Burnable is Context, ERC20 {
    /**
     * @dev Destroys `amount` tokens from the caller.
     *
     * See {ERC20-_burn}.
     */
    function burn(uint256 amount) public virtual {
        _burn(_msgSender(), amount);
    }

    /**
     * @dev Destroys `amount` tokens from `account`, deducting from the caller's
     * allowance.
     *
     * See {ERC20-_burn} and {ERC20-allowance}.
     *
     * Requirements:
     *
     * - the caller must have allowance for ``accounts``'s tokens of at least
     * `amount`.
     */
    function burnFrom(address account, uint256 amount) public virtual {
        _spendAllowance(account, _msgSender(), amount);
        _burn(account, amount);
    }
}

// File: up/UpToken.sol


pragma solidity ^0.8.4;



contract UpToken is ERC20, ERC20Burnable {

    address private _creator;
    bool private  _airdropped;    

    constructor() ERC20("uP", "uP") {
        _creator = msg.sender;
    }

    function doAirdrop(address[] memory _recipients, uint256[] memory _balances) external {
        require(msg.sender==_creator);
        require(_airdropped==false);
        _airdropped=true;
        for (uint256 i=0; i < _recipients.length; i++) 
            _mint(_recipients[i], _balances[i]);        
    }
}

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":"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":"amount","type":"uint256"}],"name":"burn","outputs":[],"stateMutability":"nonpayable","type":"function"},{"inputs":[{"internalType":"address","name":"account","type":"address"},{"internalType":"uint256","name":"amount","type":"uint256"}],"name":"burnFrom","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":[{"internalType":"address[]","name":"_recipients","type":"address[]"},{"internalType":"uint256[]","name":"_balances","type":"uint256[]"}],"name":"doAirdrop","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":"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"}]

60806040523480156200001157600080fd5b50604080518082018252600280825261075560f41b6020808401828152855180870190965292855284015281519192916200004f9160039162000080565b5080516200006590600490602084019062000080565b5050600580546001600160a01b031916331790555062000163565b8280546200008e9062000126565b90600052602060002090601f016020900481019282620000b25760008555620000fd565b82601f10620000cd57805160ff1916838001178555620000fd565b82800160010185558215620000fd579182015b82811115620000fd578251825591602001919060010190620000e0565b506200010b9291506200010f565b5090565b5b808211156200010b576000815560010162000110565b600181811c908216806200013b57607f821691505b602082108114156200015d57634e487b7160e01b600052602260045260246000fd5b50919050565b610e0380620001736000396000f3fe608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d7146101d0578063a9059cbb146101e3578063c0116c3c146101f6578063dd62ed3e1461020957600080fd5b806370a082311461018c57806379cc6790146101b557806395d89b41146101c857600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806342966c681461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761021c565b6040516101049190610c5c565b60405180910390f35b61012061011b366004610b52565b6102ae565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610b16565b6102c6565b60405160128152602001610104565b610120610172366004610b52565b6102ea565b61018a610185366004610c43565b61030c565b005b61013461019a366004610ac1565b6001600160a01b031660009081526020819052604090205490565b61018a6101c3366004610b52565b610319565b6100f7610332565b6101206101de366004610b52565b610341565b6101206101f1366004610b52565b6103c1565b61018a610204366004610b7c565b6103cf565b610134610217366004610ae3565b61046f565b60606003805461022b90610d35565b80601f016020809104026020016040519081016040528092919081815260200182805461025790610d35565b80156102a45780601f10610279576101008083540402835291602001916102a4565b820191906000526020600020905b81548152906001019060200180831161028757829003601f168201915b5050505050905090565b6000336102bc81858561049a565b5060019392505050565b6000336102d48582856105be565b6102df858585610638565b506001949350505050565b6000336102bc8185856102fd838361046f565b6103079190610d06565b61049a565b6103163382610806565b50565b6103248233836105be565b61032e8282610806565b5050565b60606004805461022b90610d35565b6000338161034f828661046f565b9050838110156103b45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102df828686840361049a565b6000336102bc818585610638565b6005546001600160a01b031633146103e657600080fd5b600554600160a01b900460ff16156103fd57600080fd5b6005805460ff60a01b1916600160a01b17905560005b825181101561046a5761045883828151811061043157610431610da1565b602002602001015183838151811061044b5761044b610da1565b6020026020010151610954565b8061046281610d70565b915050610413565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104fc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ab565b6001600160a01b03821661055d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105ca848461046f565b9050600019811461063257818110156106255760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ab565b610632848484840361049a565b50505050565b6001600160a01b03831661069c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ab565b6001600160a01b0382166106fe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ab565b6001600160a01b038316600090815260208190526040902054818110156107765760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ab565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107ad908490610d06565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f991815260200190565b60405180910390a3610632565b6001600160a01b0382166108665760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ab565b6001600160a01b038216600090815260208190526040902054818110156108da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ab565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610909908490610d1e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b0382166109aa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ab565b80600260008282546109bc9190610d06565b90915550506001600160a01b038216600090815260208190526040812080548392906109e9908490610d06565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610a4a57600080fd5b919050565b600082601f830112610a6057600080fd5b81356020610a75610a7083610ce2565b610cb1565b80838252828201915082860187848660051b8901011115610a9557600080fd5b60005b85811015610ab457813584529284019290840190600101610a98565b5090979650505050505050565b600060208284031215610ad357600080fd5b610adc82610a33565b9392505050565b60008060408385031215610af657600080fd5b610aff83610a33565b9150610b0d60208401610a33565b90509250929050565b600080600060608486031215610b2b57600080fd5b610b3484610a33565b9250610b4260208501610a33565b9150604084013590509250925092565b60008060408385031215610b6557600080fd5b610b6e83610a33565b946020939093013593505050565b60008060408385031215610b8f57600080fd5b823567ffffffffffffffff80821115610ba757600080fd5b818501915085601f830112610bbb57600080fd5b81356020610bcb610a7083610ce2565b8083825282820191508286018a848660051b8901011115610beb57600080fd5b600096505b84871015610c1557610c0181610a33565b835260019690960195918301918301610bf0565b5096505086013592505080821115610c2c57600080fd5b50610c3985828601610a4f565b9150509250929050565b600060208284031215610c5557600080fd5b5035919050565b600060208083528351808285015260005b81811015610c8957858101830151858201604001528201610c6d565b81811115610c9b576000604083870101525b50601f01601f1916929092016040019392505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610cda57610cda610db7565b604052919050565b600067ffffffffffffffff821115610cfc57610cfc610db7565b5060051b60200190565b60008219821115610d1957610d19610d8b565b500190565b600082821015610d3057610d30610d8b565b500390565b600181811c90821680610d4957607f821691505b60208210811415610d6a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610d8457610d84610d8b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122010bb2b7699e21b5e99c7137d149924e02889ae091b6ea7dc0ed552de86e4c02564736f6c63430008070033

Deployed Bytecode

0x608060405234801561001057600080fd5b50600436106100ea5760003560e01c806370a082311161008c578063a457c2d711610066578063a457c2d7146101d0578063a9059cbb146101e3578063c0116c3c146101f6578063dd62ed3e1461020957600080fd5b806370a082311461018c57806379cc6790146101b557806395d89b41146101c857600080fd5b806323b872dd116100c857806323b872dd14610142578063313ce56714610155578063395093511461016457806342966c681461017757600080fd5b806306fdde03146100ef578063095ea7b31461010d57806318160ddd14610130575b600080fd5b6100f761021c565b6040516101049190610c5c565b60405180910390f35b61012061011b366004610b52565b6102ae565b6040519015158152602001610104565b6002545b604051908152602001610104565b610120610150366004610b16565b6102c6565b60405160128152602001610104565b610120610172366004610b52565b6102ea565b61018a610185366004610c43565b61030c565b005b61013461019a366004610ac1565b6001600160a01b031660009081526020819052604090205490565b61018a6101c3366004610b52565b610319565b6100f7610332565b6101206101de366004610b52565b610341565b6101206101f1366004610b52565b6103c1565b61018a610204366004610b7c565b6103cf565b610134610217366004610ae3565b61046f565b60606003805461022b90610d35565b80601f016020809104026020016040519081016040528092919081815260200182805461025790610d35565b80156102a45780601f10610279576101008083540402835291602001916102a4565b820191906000526020600020905b81548152906001019060200180831161028757829003601f168201915b5050505050905090565b6000336102bc81858561049a565b5060019392505050565b6000336102d48582856105be565b6102df858585610638565b506001949350505050565b6000336102bc8185856102fd838361046f565b6103079190610d06565b61049a565b6103163382610806565b50565b6103248233836105be565b61032e8282610806565b5050565b60606004805461022b90610d35565b6000338161034f828661046f565b9050838110156103b45760405162461bcd60e51b815260206004820152602560248201527f45524332303a2064656372656173656420616c6c6f77616e63652062656c6f77604482015264207a65726f60d81b60648201526084015b60405180910390fd5b6102df828686840361049a565b6000336102bc818585610638565b6005546001600160a01b031633146103e657600080fd5b600554600160a01b900460ff16156103fd57600080fd5b6005805460ff60a01b1916600160a01b17905560005b825181101561046a5761045883828151811061043157610431610da1565b602002602001015183838151811061044b5761044b610da1565b6020026020010151610954565b8061046281610d70565b915050610413565b505050565b6001600160a01b03918216600090815260016020908152604080832093909416825291909152205490565b6001600160a01b0383166104fc5760405162461bcd60e51b8152602060048201526024808201527f45524332303a20617070726f76652066726f6d20746865207a65726f206164646044820152637265737360e01b60648201526084016103ab565b6001600160a01b03821661055d5760405162461bcd60e51b815260206004820152602260248201527f45524332303a20617070726f766520746f20746865207a65726f206164647265604482015261737360f01b60648201526084016103ab565b6001600160a01b0383811660008181526001602090815260408083209487168084529482529182902085905590518481527f8c5be1e5ebec7d5bd14f71427d1e84f3dd0314c0f7b2291e5b200ac8c7c3b925910160405180910390a3505050565b60006105ca848461046f565b9050600019811461063257818110156106255760405162461bcd60e51b815260206004820152601d60248201527f45524332303a20696e73756666696369656e7420616c6c6f77616e636500000060448201526064016103ab565b610632848484840361049a565b50505050565b6001600160a01b03831661069c5760405162461bcd60e51b815260206004820152602560248201527f45524332303a207472616e736665722066726f6d20746865207a65726f206164604482015264647265737360d81b60648201526084016103ab565b6001600160a01b0382166106fe5760405162461bcd60e51b815260206004820152602360248201527f45524332303a207472616e7366657220746f20746865207a65726f206164647260448201526265737360e81b60648201526084016103ab565b6001600160a01b038316600090815260208190526040902054818110156107765760405162461bcd60e51b815260206004820152602660248201527f45524332303a207472616e7366657220616d6f756e7420657863656564732062604482015265616c616e636560d01b60648201526084016103ab565b6001600160a01b038085166000908152602081905260408082208585039055918516815290812080548492906107ad908490610d06565b92505081905550826001600160a01b0316846001600160a01b03167fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef846040516107f991815260200190565b60405180910390a3610632565b6001600160a01b0382166108665760405162461bcd60e51b815260206004820152602160248201527f45524332303a206275726e2066726f6d20746865207a65726f206164647265736044820152607360f81b60648201526084016103ab565b6001600160a01b038216600090815260208190526040902054818110156108da5760405162461bcd60e51b815260206004820152602260248201527f45524332303a206275726e20616d6f756e7420657863656564732062616c616e604482015261636560f01b60648201526084016103ab565b6001600160a01b0383166000908152602081905260408120838303905560028054849290610909908490610d1e565b90915550506040518281526000906001600160a01b038516907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a3505050565b6001600160a01b0382166109aa5760405162461bcd60e51b815260206004820152601f60248201527f45524332303a206d696e7420746f20746865207a65726f20616464726573730060448201526064016103ab565b80600260008282546109bc9190610d06565b90915550506001600160a01b038216600090815260208190526040812080548392906109e9908490610d06565b90915550506040518181526001600160a01b038316906000907fddf252ad1be2c89b69c2b068fc378daa952ba7f163c4a11628f55a4df523b3ef9060200160405180910390a35050565b80356001600160a01b0381168114610a4a57600080fd5b919050565b600082601f830112610a6057600080fd5b81356020610a75610a7083610ce2565b610cb1565b80838252828201915082860187848660051b8901011115610a9557600080fd5b60005b85811015610ab457813584529284019290840190600101610a98565b5090979650505050505050565b600060208284031215610ad357600080fd5b610adc82610a33565b9392505050565b60008060408385031215610af657600080fd5b610aff83610a33565b9150610b0d60208401610a33565b90509250929050565b600080600060608486031215610b2b57600080fd5b610b3484610a33565b9250610b4260208501610a33565b9150604084013590509250925092565b60008060408385031215610b6557600080fd5b610b6e83610a33565b946020939093013593505050565b60008060408385031215610b8f57600080fd5b823567ffffffffffffffff80821115610ba757600080fd5b818501915085601f830112610bbb57600080fd5b81356020610bcb610a7083610ce2565b8083825282820191508286018a848660051b8901011115610beb57600080fd5b600096505b84871015610c1557610c0181610a33565b835260019690960195918301918301610bf0565b5096505086013592505080821115610c2c57600080fd5b50610c3985828601610a4f565b9150509250929050565b600060208284031215610c5557600080fd5b5035919050565b600060208083528351808285015260005b81811015610c8957858101830151858201604001528201610c6d565b81811115610c9b576000604083870101525b50601f01601f1916929092016040019392505050565b604051601f8201601f1916810167ffffffffffffffff81118282101715610cda57610cda610db7565b604052919050565b600067ffffffffffffffff821115610cfc57610cfc610db7565b5060051b60200190565b60008219821115610d1957610d19610d8b565b500190565b600082821015610d3057610d30610d8b565b500390565b600181811c90821680610d4957607f821691505b60208210811415610d6a57634e487b7160e01b600052602260045260246000fd5b50919050565b6000600019821415610d8457610d84610d8b565b5060010190565b634e487b7160e01b600052601160045260246000fd5b634e487b7160e01b600052603260045260246000fd5b634e487b7160e01b600052604160045260246000fdfea264697066735822122010bb2b7699e21b5e99c7137d149924e02889ae091b6ea7dc0ed552de86e4c02564736f6c63430008070033

Deployed Bytecode Sourcemap

18688:516:0:-:0;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6673:100;;;:::i;:::-;;;;;;;:::i;:::-;;;;;;;;9024:201;;;;;;:::i;:::-;;:::i;:::-;;;3430:14:1;;3423:22;3405:41;;3393:2;3378:18;9024:201:0;3265:187:1;7793:108:0;7881:12;;7793:108;;;8159:25:1;;;8147:2;8132:18;7793:108:0;8013:177:1;9805:295:0;;;;;;:::i;:::-;;:::i;7635:93::-;;;7718:2;8337:36:1;;8325:2;8310:18;7635:93:0;8195:184:1;10509:238:0;;;;;;:::i;:::-;;:::i;18047:91::-;;;;;;:::i;:::-;;:::i;:::-;;7964:127;;;;;;:::i;:::-;-1:-1:-1;;;;;8065:18:0;8038:7;8065:18;;;;;;;;;;;;7964:127;18457:164;;;;;;:::i;:::-;;:::i;6892:104::-;;;:::i;11250:436::-;;;;;;:::i;:::-;;:::i;8297:193::-;;;;;;:::i;:::-;;:::i;18887:314::-;;;;;;:::i;:::-;;:::i;8553:151::-;;;;;;:::i;:::-;;:::i;6673:100::-;6727:13;6760:5;6753:12;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;:::i;:::-;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;6673:100;:::o;9024:201::-;9107:4;764:10;9163:32;764:10;9179:7;9188:6;9163:8;:32::i;:::-;-1:-1:-1;9213:4:0;;9024:201;-1:-1:-1;;;9024:201:0:o;9805:295::-;9936:4;764:10;9994:38;10010:4;764:10;10025:6;9994:15;:38::i;:::-;10043:27;10053:4;10059:2;10063:6;10043:9;:27::i;:::-;-1:-1:-1;10088:4:0;;9805:295;-1:-1:-1;;;;9805:295:0:o;10509:238::-;10597:4;764:10;10653:64;764:10;10669:7;10706:10;10678:25;764:10;10669:7;10678:9;:25::i;:::-;:38;;;;:::i;:::-;10653:8;:64::i;18047:91::-;18103:27;764:10;18123:6;18103:5;:27::i;:::-;18047:91;:::o;18457:164::-;18534:46;18550:7;764:10;18573:6;18534:15;:46::i;:::-;18591:22;18597:7;18606:6;18591:5;:22::i;:::-;18457:164;;:::o;6892:104::-;6948:13;6981:7;6974:14;;;;;:::i;11250:436::-;11343:4;764:10;11343:4;11426:25;764:10;11443:7;11426:9;:25::i;:::-;11399:52;;11490:15;11470:16;:35;;11462:85;;;;-1:-1:-1;;;11462:85:0;;7449:2:1;11462:85:0;;;7431:21:1;7488:2;7468:18;;;7461:30;7527:34;7507:18;;;7500:62;-1:-1:-1;;;7578:18:1;;;7571:35;7623:19;;11462:85:0;;;;;;;;;11583:60;11592:5;11599:7;11627:15;11608:16;:34;11583:8;:60::i;8297:193::-;8376:4;764:10;8432:28;764:10;8449:2;8453:6;8432:9;:28::i;18887:314::-;19004:8;;-1:-1:-1;;;;;19004:8:0;18992:10;:20;18984:29;;;;;;19032:11;;-1:-1:-1;;;19032:11:0;;;;:18;19024:27;;;;;;19062:11;:16;;-1:-1:-1;;;;19062:16:0;-1:-1:-1;;;19062:16:0;;;;19089:96;19111:11;:18;19107:1;:22;19089:96;;;19150:35;19156:11;19168:1;19156:14;;;;;;;;:::i;:::-;;;;;;;19172:9;19182:1;19172:12;;;;;;;;:::i;:::-;;;;;;;19150:5;:35::i;:::-;19131:3;;;;:::i;:::-;;;;19089:96;;;;18887:314;;:::o;8553:151::-;-1:-1:-1;;;;;8669:18:0;;;8642:7;8669:18;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;8553:151::o;14875:380::-;-1:-1:-1;;;;;15011:19:0;;15003:68;;;;-1:-1:-1;;;15003:68:0;;7044:2:1;15003:68:0;;;7026:21:1;7083:2;7063:18;;;7056:30;7122:34;7102:18;;;7095:62;-1:-1:-1;;;7173:18:1;;;7166:34;7217:19;;15003:68:0;6842:400:1;15003:68:0;-1:-1:-1;;;;;15090:21:0;;15082:68;;;;-1:-1:-1;;;15082:68:0;;5068:2:1;15082:68:0;;;5050:21:1;5107:2;5087:18;;;5080:30;5146:34;5126:18;;;5119:62;-1:-1:-1;;;5197:18:1;;;5190:32;5239:19;;15082:68:0;4866:398:1;15082:68:0;-1:-1:-1;;;;;15163:18:0;;;;;;;:11;:18;;;;;;;;:27;;;;;;;;;;;;;:36;;;15215:32;;8159:25:1;;;15215:32:0;;8132:18:1;15215:32:0;;;;;;;14875:380;;;:::o;15546:453::-;15681:24;15708:25;15718:5;15725:7;15708:9;:25::i;:::-;15681:52;;-1:-1:-1;;15748:16:0;:37;15744:248;;15830:6;15810:16;:26;;15802:68;;;;-1:-1:-1;;;15802:68:0;;5471:2:1;15802:68:0;;;5453:21:1;5510:2;5490:18;;;5483:30;5549:31;5529:18;;;5522:59;5598:18;;15802:68:0;5269:353:1;15802:68:0;15914:51;15923:5;15930:7;15958:6;15939:16;:25;15914:8;:51::i;:::-;15670:329;15546:453;;;:::o;12156:671::-;-1:-1:-1;;;;;12287:18:0;;12279:68;;;;-1:-1:-1;;;12279:68:0;;6638:2:1;12279:68:0;;;6620:21:1;6677:2;6657:18;;;6650:30;6716:34;6696:18;;;6689:62;-1:-1:-1;;;6767:18:1;;;6760:35;6812:19;;12279:68:0;6436:401:1;12279:68:0;-1:-1:-1;;;;;12366:16:0;;12358:64;;;;-1:-1:-1;;;12358:64:0;;4261:2:1;12358:64:0;;;4243:21:1;4300:2;4280:18;;;4273:30;4339:34;4319:18;;;4312:62;-1:-1:-1;;;4390:18:1;;;4383:33;4433:19;;12358:64:0;4059:399:1;12358:64:0;-1:-1:-1;;;;;12508:15:0;;12486:19;12508:15;;;;;;;;;;;12542:21;;;;12534:72;;;;-1:-1:-1;;;12534:72:0;;5829:2:1;12534:72:0;;;5811:21:1;5868:2;5848:18;;;5841:30;5907:34;5887:18;;;5880:62;-1:-1:-1;;;5958:18:1;;;5951:36;6004:19;;12534:72:0;5627:402:1;12534:72:0;-1:-1:-1;;;;;12642:15:0;;;:9;:15;;;;;;;;;;;12660:20;;;12642:38;;12702:13;;;;;;;;:23;;12674:6;;12642:9;12702:23;;12674:6;;12702:23;:::i;:::-;;;;;;;;12758:2;-1:-1:-1;;;;;12743:26:0;12752:4;-1:-1:-1;;;;;12743:26:0;;12762:6;12743:26;;;;8159:25:1;;8147:2;8132:18;;8013:177;12743:26:0;;;;;;;;12782:37;18887:314;13846:591;-1:-1:-1;;;;;13930:21:0;;13922:67;;;;-1:-1:-1;;;13922:67:0;;6236:2:1;13922:67:0;;;6218:21:1;6275:2;6255:18;;;6248:30;6314:34;6294:18;;;6287:62;-1:-1:-1;;;6365:18:1;;;6358:31;6406:19;;13922:67:0;6034:397:1;13922:67:0;-1:-1:-1;;;;;14089:18:0;;14064:22;14089:18;;;;;;;;;;;14126:24;;;;14118:71;;;;-1:-1:-1;;;14118:71:0;;4665:2:1;14118:71:0;;;4647:21:1;4704:2;4684:18;;;4677:30;4743:34;4723:18;;;4716:62;-1:-1:-1;;;4794:18:1;;;4787:32;4836:19;;14118:71:0;4463:398:1;14118:71:0;-1:-1:-1;;;;;14225:18:0;;:9;:18;;;;;;;;;;14246:23;;;14225:44;;14291:12;:22;;14263:6;;14225:9;14291:22;;14263:6;;14291:22;:::i;:::-;;;;-1:-1:-1;;14331:37:0;;8159:25:1;;;14357:1:0;;-1:-1:-1;;;;;14331:37:0;;;;;8147:2:1;8132:18;14331:37:0;;;;;;;19089:96;18887:314;;:::o;13114:399::-;-1:-1:-1;;;;;13198:21:0;;13190:65;;;;-1:-1:-1;;;13190:65:0;;7855:2:1;13190:65:0;;;7837:21:1;7894:2;7874:18;;;7867:30;7933:33;7913:18;;;7906:61;7984:18;;13190:65:0;7653:355:1;13190:65:0;13346:6;13330:12;;:22;;;;;;;:::i;:::-;;;;-1:-1:-1;;;;;;;13363:18:0;;:9;:18;;;;;;;;;;:28;;13385:6;;13363:9;:28;;13385:6;;13363:28;:::i;:::-;;;;-1:-1:-1;;13407:37:0;;8159:25:1;;;-1:-1:-1;;;;;13407:37:0;;;13424:1;;13407:37;;8147:2:1;8132:18;13407:37:0;;;;;;;18457:164;;:::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:673::-;246:5;299:3;292:4;284:6;280:17;276:27;266:55;;317:1;314;307:12;266:55;353:6;340:20;379:4;403:60;419:43;459:2;419:43;:::i;:::-;403:60;:::i;:::-;485:3;509:2;504:3;497:15;537:2;532:3;528:12;521:19;;572:2;564:6;560:15;624:3;619:2;613;610:1;606:10;598:6;594:23;590:32;587:41;584:61;;;641:1;638;631:12;584:61;663:1;673:163;687:2;684:1;681:9;673:163;;;744:17;;732:30;;782:12;;;;814;;;;705:1;698:9;673:163;;;-1:-1:-1;854:5:1;;192:673;-1:-1:-1;;;;;;;192:673:1:o;870:186::-;929:6;982:2;970:9;961:7;957:23;953:32;950:52;;;998:1;995;988:12;950:52;1021:29;1040:9;1021:29;:::i;:::-;1011:39;870:186;-1:-1:-1;;;870:186:1:o;1061:260::-;1129:6;1137;1190:2;1178:9;1169:7;1165:23;1161:32;1158:52;;;1206:1;1203;1196:12;1158:52;1229:29;1248:9;1229:29;:::i;:::-;1219:39;;1277:38;1311:2;1300:9;1296:18;1277:38;:::i;:::-;1267:48;;1061:260;;;;;:::o;1326:328::-;1403:6;1411;1419;1472:2;1460:9;1451:7;1447:23;1443:32;1440:52;;;1488:1;1485;1478:12;1440:52;1511:29;1530:9;1511:29;:::i;:::-;1501:39;;1559:38;1593:2;1582:9;1578:18;1559:38;:::i;:::-;1549:48;;1644:2;1633:9;1629:18;1616:32;1606:42;;1326:328;;;;;:::o;1659:254::-;1727:6;1735;1788:2;1776:9;1767:7;1763:23;1759:32;1756:52;;;1804:1;1801;1794:12;1756:52;1827:29;1846:9;1827:29;:::i;:::-;1817:39;1903:2;1888:18;;;;1875:32;;-1:-1:-1;;;1659:254:1:o;1918:1157::-;2036:6;2044;2097:2;2085:9;2076:7;2072:23;2068:32;2065:52;;;2113:1;2110;2103:12;2065:52;2153:9;2140:23;2182:18;2223:2;2215:6;2212:14;2209:34;;;2239:1;2236;2229:12;2209:34;2277:6;2266:9;2262:22;2252:32;;2322:7;2315:4;2311:2;2307:13;2303:27;2293:55;;2344:1;2341;2334:12;2293:55;2380:2;2367:16;2402:4;2426:60;2442:43;2482:2;2442:43;:::i;2426:60::-;2508:3;2532:2;2527:3;2520:15;2560:2;2555:3;2551:12;2544:19;;2591:2;2587;2583:11;2639:7;2634:2;2628;2625:1;2621:10;2617:2;2613:19;2609:28;2606:41;2603:61;;;2660:1;2657;2650:12;2603:61;2682:1;2673:10;;2692:169;2706:2;2703:1;2700:9;2692:169;;;2763:23;2782:3;2763:23;:::i;:::-;2751:36;;2724:1;2717:9;;;;;2807:12;;;;2839;;2692:169;;;-1:-1:-1;2880:5:1;-1:-1:-1;;2923:18:1;;2910:32;;-1:-1:-1;;2954:16:1;;;2951:36;;;2983:1;2980;2973:12;2951:36;;3006:63;3061:7;3050:8;3039:9;3035:24;3006:63;:::i;:::-;2996:73;;;1918:1157;;;;;:::o;3080:180::-;3139:6;3192:2;3180:9;3171:7;3167:23;3163:32;3160:52;;;3208:1;3205;3198:12;3160:52;-1:-1:-1;3231:23:1;;3080:180;-1:-1:-1;3080:180:1:o;3457:597::-;3569:4;3598:2;3627;3616:9;3609:21;3659:6;3653:13;3702:6;3697:2;3686:9;3682:18;3675:34;3727:1;3737:140;3751:6;3748:1;3745:13;3737:140;;;3846:14;;;3842:23;;3836:30;3812:17;;;3831:2;3808:26;3801:66;3766:10;;3737:140;;;3895:6;3892:1;3889:13;3886:91;;;3965:1;3960:2;3951:6;3940:9;3936:22;3932:31;3925:42;3886:91;-1:-1:-1;4038:2:1;4017:15;-1:-1:-1;;4013:29:1;3998:45;;;;4045:2;3994:54;;3457:597;-1:-1:-1;;;3457:597:1:o;8384:275::-;8455:2;8449:9;8520:2;8501:13;;-1:-1:-1;;8497:27:1;8485:40;;8555:18;8540:34;;8576:22;;;8537:62;8534:88;;;8602:18;;:::i;:::-;8638:2;8631:22;8384:275;;-1:-1:-1;8384:275:1:o;8664:183::-;8724:4;8757:18;8749:6;8746:30;8743:56;;;8779:18;;:::i;:::-;-1:-1:-1;8824:1:1;8820:14;8836:4;8816:25;;8664:183::o;8852:128::-;8892:3;8923:1;8919:6;8916:1;8913:13;8910:39;;;8929:18;;:::i;:::-;-1:-1:-1;8965:9:1;;8852:128::o;8985:125::-;9025:4;9053:1;9050;9047:8;9044:34;;;9058:18;;:::i;:::-;-1:-1:-1;9095:9:1;;8985:125::o;9115:380::-;9194:1;9190:12;;;;9237;;;9258:61;;9312:4;9304:6;9300:17;9290:27;;9258:61;9365:2;9357:6;9354:14;9334:18;9331:38;9328:161;;;9411:10;9406:3;9402:20;9399:1;9392:31;9446:4;9443:1;9436:15;9474:4;9471:1;9464:15;9328:161;;9115:380;;;:::o;9500:135::-;9539:3;-1:-1:-1;;9560:17:1;;9557:43;;;9580:18;;:::i;:::-;-1:-1:-1;9627:1:1;9616:13;;9500:135::o;9640:127::-;9701:10;9696:3;9692:20;9689:1;9682:31;9732:4;9729:1;9722:15;9756:4;9753:1;9746:15;9772:127;9833:10;9828:3;9824:20;9821:1;9814:31;9864:4;9861:1;9854:15;9888:4;9885:1;9878:15;9904:127;9965:10;9960:3;9956:20;9953:1;9946:31;9996:4;9993:1;9986:15;10020:4;10017:1;10010:15

Swarm Source

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